re-uploading work
This commit is contained in:
26
web/src/api/models/WorkflowSyncResult.ts
Normal file
26
web/src/api/models/WorkflowSyncResult.ts
Normal file
@@ -0,0 +1,26 @@
|
||||
/* generated using openapi-typescript-codegen -- do not edit */
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
/**
|
||||
* Individual workflow sync result
|
||||
*/
|
||||
export type WorkflowSyncResult = {
|
||||
/**
|
||||
* Whether the workflow was created (false = updated)
|
||||
*/
|
||||
created: boolean;
|
||||
/**
|
||||
* Workflow reference name
|
||||
*/
|
||||
ref_name: string;
|
||||
/**
|
||||
* Any warnings during registration
|
||||
*/
|
||||
warnings: Array<string>;
|
||||
/**
|
||||
* Workflow definition ID
|
||||
*/
|
||||
workflow_def_id: number;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user