mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
chore(ui): regen api client
This commit is contained in:
committed by
Kent Keirsey
parent
324e9eb74b
commit
6999d28c7f
@ -14,5 +14,15 @@ export const $ControlOutput = {
|
|||||||
type: 'ControlField',
|
type: 'ControlField',
|
||||||
}],
|
}],
|
||||||
},
|
},
|
||||||
|
width: {
|
||||||
|
type: 'number',
|
||||||
|
description: `The width of the noise in pixels`,
|
||||||
|
isRequired: true,
|
||||||
|
},
|
||||||
|
height: {
|
||||||
|
type: 'number',
|
||||||
|
description: `The height of the noise in pixels`,
|
||||||
|
isRequired: true,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
} as const;
|
} as const;
|
||||||
|
@ -0,0 +1,16 @@
|
|||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
export const $RandomIntInvocation = {
|
||||||
|
description: `Outputs a single random integer.`,
|
||||||
|
properties: {
|
||||||
|
id: {
|
||||||
|
type: 'string',
|
||||||
|
description: `The id of this node. Must be unique among all nodes.`,
|
||||||
|
isRequired: true,
|
||||||
|
},
|
||||||
|
type: {
|
||||||
|
type: 'Enum',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
} as const;
|
Reference in New Issue
Block a user