chore(ui): regen api client

This commit is contained in:
psychedelicious 2023-05-19 15:54:52 +10:00 committed by Kent Keirsey
parent 324e9eb74b
commit 6999d28c7f
2 changed files with 26 additions and 0 deletions

View File

@ -14,5 +14,15 @@ export const $ControlOutput = {
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;

View File

@ -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;