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 Apr 1, 2024
1 parent acca5eb commit 1aa8ae2
Showing 1 changed file with 22 additions and 4 deletions.
26 changes: 22 additions & 4 deletions client/src/api/schema/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4699,6 +4699,8 @@ export interface components {
* @enum {string}
*/
ElementsFromType: "archive" | "bagit" | "bagit_archive" | "directory";
/** EmptyDict */
EmptyDict: Record<string, never>;
/** EncodedDataItemSourceId */
EncodedDataItemSourceId: {
/**
Expand Down Expand Up @@ -12786,7 +12788,11 @@ export interface components {
* Post Job Actions
* @description Set of actions that will be run when the job finishes.
*/
post_job_actions?: components["schemas"]["PostJobAction"] | components["schemas"]["PostJobAction"][] | null;
post_job_actions?:
| components["schemas"]["PostJobAction"]
| (components["schemas"]["PostJobAction"] | components["schemas"]["EmptyDict"])[]
| components["schemas"]["EmptyDict"]
| null;
/**
* Tool ID
* @description The unique name of the tool associated with this step.
Expand Down Expand Up @@ -12954,7 +12960,11 @@ export interface components {
* Post Job Actions
* @description Set of actions that will be run when the job finishes.
*/
post_job_actions?: components["schemas"]["PostJobAction"] | components["schemas"]["PostJobAction"][] | null;
post_job_actions?:
| components["schemas"]["PostJobAction"]
| (components["schemas"]["PostJobAction"] | components["schemas"]["EmptyDict"])[]
| components["schemas"]["EmptyDict"]
| null;
/**
* Sub Workflow
* @description Full information about the subworkflow associated with this step.
Expand Down Expand Up @@ -13198,7 +13208,11 @@ export interface components {
* Post Job Actions
* @description Set of actions that will be run when the job finishes.
*/
post_job_actions?: components["schemas"]["PostJobAction"] | components["schemas"]["PostJobAction"][] | null;
post_job_actions?:
| components["schemas"]["PostJobAction"]
| (components["schemas"]["PostJobAction"] | components["schemas"]["EmptyDict"])[]
| components["schemas"]["EmptyDict"]
| null;
/**
* Tool ID
* @description The unique name of the tool associated with this step.
Expand Down Expand Up @@ -13294,7 +13308,11 @@ export interface components {
* Post Job Actions
* @description Set of actions that will be run when the job finishes.
*/
post_job_actions?: components["schemas"]["PostJobAction"] | components["schemas"]["PostJobAction"][] | null;
post_job_actions?:
| components["schemas"]["PostJobAction"]
| (components["schemas"]["PostJobAction"] | components["schemas"]["EmptyDict"])[]
| components["schemas"]["EmptyDict"]
| null;
/**
* Replacement Parameters
* @description Informal replacement parameters for the step.
Expand Down

0 comments on commit 1aa8ae2

Please sign in to comment.