Skip to content

Commit

Permalink
Regenerate the client schema
Browse files Browse the repository at this point in the history
  • Loading branch information
heisner-tillman committed Mar 28, 2024
1 parent d1e5fdb commit d27d6f3
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions client/src/api/schema/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13230,7 +13230,7 @@ export interface components {
* Replacement Parameters
* @description Informal replacement parameters for the step.
*/
replacement_parameters?: Record<string, never>[] | null;
replacement_parameters?: (string | Record<string, never>)[] | null;
/**
* Step Index
* @description The order index of the step.
Expand Down Expand Up @@ -13552,44 +13552,44 @@ export interface components {
WorkflowStepLayoutPosition: {
/**
* Bottom
* @description Position in pixels of the bottom of the box.
* @description Position of the bottom of the box.
*/
bottom?: number | null;
bottom?: number | number | null;
/**
* Height
* @description Height of the box in pixels.
* @description Height of the box.
*/
height?: number | null;
height?: number | number | null;
/**
* Left
* @description Left margin or left-most position of the box.
*/
left: number;
left: number | number;
/**
* Right
* @description Right margin or right-most position of the box.
*/
right?: number | null;
right?: number | number | null;
/**
* Top
* @description Position in pixels of the top of the box.
* @description Position of the top of the box.
*/
top: number;
top: number | number;
/**
* Width
* @description Width of the box in pixels.
* @description Width of the box.
*/
width?: number | null;
width?: number | number | null;
/**
* X
* @description Horizontal pixel coordinate of the top right corner of the box.
* @description Horizontal coordinate of the top right corner of the box.
*/
x?: number | null;
x?: number | number | null;
/**
* Y
* @description Vertical pixel coordinate of the top right corner of the box.
* @description Vertical coordinate of the top right corner of the box.
*/
y?: number | null;
y?: number | number | null;
};
/** WriteInvocationStoreToPayload */
WriteInvocationStoreToPayload: {
Expand Down

0 comments on commit d27d6f3

Please sign in to comment.