windmill-components 1.22.42 → 1.28.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (250) hide show
  1. package/components/AppConnect.svelte +93 -47
  2. package/components/AppConnect.svelte.d.ts +2 -2
  3. package/components/ArgInfo.svelte +0 -5
  4. package/components/ArgInput.svelte +91 -64
  5. package/components/ArgInput.svelte.d.ts +8 -3
  6. package/components/Button.svelte +4 -4
  7. package/components/CenteredPage.svelte +1 -1
  8. package/components/CollapseLink.svelte +12 -0
  9. package/components/CollapseLink.svelte.d.ts +19 -0
  10. package/components/CronInput.svelte +84 -0
  11. package/components/CronInput.svelte.d.ts +18 -0
  12. package/components/DisplayResult.svelte +28 -15
  13. package/components/Editor.svelte +136 -66
  14. package/components/Editor.svelte.d.ts +2 -0
  15. package/components/EditorBar.svelte +56 -45
  16. package/components/FlowBuilder.svelte +155 -70
  17. package/components/FlowEditor.svelte +79 -200
  18. package/components/FlowEditor.svelte.d.ts +3 -2
  19. package/components/FlowJobResult.svelte +1 -1
  20. package/components/FlowPreview.svelte +18 -24
  21. package/components/FlowPreviewContent.svelte +68 -0
  22. package/components/FlowPreviewContent.svelte.d.ts +21 -0
  23. package/components/FlowStatusViewer.svelte +85 -37
  24. package/components/FlowStatusViewer.svelte.d.ts +3 -2
  25. package/components/FlowViewer.svelte +85 -45
  26. package/components/FlowViewer.svelte.d.ts +2 -1
  27. package/components/IconedResourceType.svelte +30 -5
  28. package/components/InputTransformForm.svelte +209 -0
  29. package/components/InputTransformForm.svelte.d.ts +26 -0
  30. package/components/InputTransformsViewer.svelte +19 -0
  31. package/components/InputTransformsViewer.svelte.d.ts +17 -0
  32. package/components/InviteGlobalUser.svelte +2 -2
  33. package/components/InviteUser.svelte +2 -2
  34. package/components/JobStatus.svelte +32 -25
  35. package/components/Modal.svelte +44 -42
  36. package/components/ModuleStep.svelte +94 -79
  37. package/components/ObjectResourceInput.svelte +58 -38
  38. package/components/ObjectTypeNarrowing.svelte +4 -19
  39. package/components/Path.svelte +1 -0
  40. package/components/Path.svelte.d.ts +1 -1
  41. package/components/RadioButton.svelte +11 -96
  42. package/components/RadioButton.svelte.d.ts +4 -2
  43. package/components/ResourceEditor.svelte +4 -5
  44. package/components/ResourceEditor.svelte.d.ts +2 -2
  45. package/components/ResourcePicker.svelte +25 -2
  46. package/components/ResourcePicker.svelte.d.ts +3 -0
  47. package/components/ResourceTypePicker.svelte +17 -29
  48. package/components/ResourceTypePicker.svelte.d.ts +1 -0
  49. package/components/RunForm.svelte +14 -15
  50. package/components/RunForm.svelte.d.ts +1 -1
  51. package/components/SchemaEditor.svelte +87 -71
  52. package/components/SchemaEditor.svelte.d.ts +2 -0
  53. package/components/SchemaEditorProperty.svelte +11 -0
  54. package/components/SchemaEditorProperty.svelte.d.ts +17 -0
  55. package/components/SchemaForm.svelte +21 -127
  56. package/components/SchemaForm.svelte.d.ts +3 -4
  57. package/components/SchemaModal.svelte +20 -33
  58. package/components/SchemaModal.svelte.d.ts +1 -1
  59. package/components/SchemaViewer.svelte +4 -6
  60. package/components/ScriptBuilder.svelte +40 -43
  61. package/components/ScriptEditor.svelte +71 -66
  62. package/components/ScriptPicker.svelte +10 -12
  63. package/components/ScriptPicker.svelte.d.ts +1 -1
  64. package/components/ScriptSchema.svelte +0 -5
  65. package/components/ShareModal.svelte +1 -1
  66. package/components/SharedBadge.svelte +12 -10
  67. package/components/StringTypeNarrowing.svelte +8 -4
  68. package/components/StringTypeNarrowing.svelte.d.ts +1 -0
  69. package/components/TableCustom.svelte +7 -9
  70. package/components/TableSimple.svelte +1 -1
  71. package/components/Toggle.svelte +8 -10
  72. package/components/Toggle.svelte.d.ts +5 -11
  73. package/components/Tooltip.svelte +3 -2
  74. package/components/VariableEditor.svelte +21 -6
  75. package/components/flows/CopyFirstStepSchema.svelte +7 -5
  76. package/components/flows/DynamicInputHelpBox.svelte +1 -1
  77. package/components/flows/FlowBox.svelte +3 -0
  78. package/components/flows/FlowBox.svelte.d.ts +23 -0
  79. package/components/flows/FlowBoxHeader.svelte +9 -0
  80. package/components/flows/FlowBoxHeader.svelte.d.ts +18 -0
  81. package/components/flows/FlowInput.svelte +20 -0
  82. package/components/flows/FlowInput.svelte.d.ts +14 -0
  83. package/components/flows/FlowInputs.svelte +7 -3
  84. package/components/flows/FlowModuleHeader.svelte +42 -40
  85. package/components/flows/FlowModuleHeader.svelte.d.ts +1 -1
  86. package/components/flows/FlowSettings.svelte +174 -0
  87. package/components/flows/FlowSettings.svelte.d.ts +21 -0
  88. package/components/flows/flowStore.d.ts +5 -2
  89. package/components/flows/flowStore.js +65 -9
  90. package/components/flows/pickers/FlowScriptPicker.svelte +6 -1
  91. package/components/flows/pickers/FlowScriptPicker.svelte.d.ts +1 -0
  92. package/components/flows/utils.d.ts +11 -7
  93. package/components/flows/utils.js +114 -45
  94. package/components/icons/AirtableIcon.svelte +17 -0
  95. package/components/icons/AirtableIcon.svelte.d.ts +17 -0
  96. package/components/icons/GCloudIcon.svelte +16 -0
  97. package/components/icons/GCloudIcon.svelte.d.ts +17 -0
  98. package/components/icons/GItlabIcon.svelte +16 -0
  99. package/components/icons/GItlabIcon.svelte.d.ts +17 -0
  100. package/components/icons/GSheetsIcon.svelte +16 -0
  101. package/components/icons/GSheetsIcon.svelte.d.ts +17 -0
  102. package/components/icons/GcalIcon.svelte +16 -0
  103. package/components/icons/GcalIcon.svelte.d.ts +17 -0
  104. package/components/icons/GdriveIcon.svelte +16 -0
  105. package/components/icons/GdriveIcon.svelte.d.ts +17 -0
  106. package/components/icons/GmailIcon.svelte +16 -0
  107. package/components/icons/GmailIcon.svelte.d.ts +17 -0
  108. package/components/icons/PostgresIcon.svelte +8 -49
  109. package/components/icons/Slack.svelte +9 -18
  110. package/components/icons/TogglIcon.svelte +59 -0
  111. package/components/icons/TogglIcon.svelte.d.ts +17 -0
  112. package/components/propertyPicker/ObjectViewer.svelte +35 -37
  113. package/components/propertyPicker/ObjectViewer.svelte.d.ts +2 -0
  114. package/components/propertyPicker/OverlayPropertyPicker.svelte +53 -53
  115. package/components/propertyPicker/OverlayPropertyPicker.svelte.d.ts +5 -2
  116. package/components/propertyPicker/PropPicker.svelte +13 -15
  117. package/components/propertyPicker/PropPicker.svelte.d.ts +1 -1
  118. package/components/propertyPicker/WarningMessage.svelte +14 -41
  119. package/components/propertyPicker/WarningMessage.svelte.d.ts +11 -8
  120. package/components/propertyPicker/utils.d.ts +1 -0
  121. package/components/propertyPicker/utils.js +25 -0
  122. package/gen/core/OpenAPI.js +1 -1
  123. package/gen/index.d.ts +11 -2
  124. package/gen/index.js +1 -2
  125. package/gen/models/CompletedJob.d.ts +1 -1
  126. package/gen/models/Flow.d.ts +3 -13
  127. package/gen/models/FlowMetadata.d.ts +9 -0
  128. package/gen/models/FlowMetadata.js +4 -0
  129. package/gen/models/FlowModuleValue.d.ts +5 -22
  130. package/gen/models/FlowModuleValue.js +1 -15
  131. package/gen/models/ForloopFlow.d.ts +8 -0
  132. package/gen/models/ForloopFlow.js +4 -0
  133. package/gen/models/InputTransform.d.ts +3 -12
  134. package/gen/models/InputTransform.js +1 -8
  135. package/gen/models/JavascriptTransform.d.ts +4 -0
  136. package/gen/models/JavascriptTransform.js +4 -0
  137. package/gen/models/MainArgSignature.d.ts +1 -1
  138. package/gen/models/NewSchedule.d.ts +1 -0
  139. package/gen/models/OpenFlowWPath.d.ts +4 -0
  140. package/gen/models/OpenFlowWPath.js +4 -0
  141. package/gen/models/PathFlow.d.ts +4 -0
  142. package/gen/models/PathFlow.js +4 -0
  143. package/gen/models/PathScript.d.ts +4 -0
  144. package/gen/models/PathScript.js +4 -0
  145. package/gen/models/RawScript.d.ts +12 -0
  146. package/gen/models/RawScript.js +11 -0
  147. package/gen/models/Schedule.d.ts +1 -1
  148. package/gen/models/StaticTransform.d.ts +4 -0
  149. package/gen/models/StaticTransform.js +4 -0
  150. package/gen/models/TokenResponse.d.ts +3 -3
  151. package/gen/models/Usage.d.ts +5 -0
  152. package/gen/models/Usage.js +4 -0
  153. package/gen/models/User.d.ts +2 -0
  154. package/gen/schemas/$AuditLog.d.ts +32 -0
  155. package/gen/schemas/$AuditLog.js +35 -0
  156. package/gen/schemas/$CompletedJob.d.ts +98 -0
  157. package/gen/schemas/$CompletedJob.js +103 -0
  158. package/gen/schemas/$ContextualVariable.d.ts +16 -0
  159. package/gen/schemas/$ContextualVariable.js +19 -0
  160. package/gen/schemas/$CreateResource.d.ts +22 -0
  161. package/gen/schemas/$CreateResource.js +25 -0
  162. package/gen/schemas/$CreateVariable.d.ts +26 -0
  163. package/gen/schemas/$CreateVariable.js +29 -0
  164. package/gen/schemas/$CreateWorkspace.d.ts +20 -0
  165. package/gen/schemas/$CreateWorkspace.js +23 -0
  166. package/gen/schemas/$EditResource.d.ts +13 -0
  167. package/gen/schemas/$EditResource.js +16 -0
  168. package/gen/schemas/$EditResourceType.d.ts +10 -0
  169. package/gen/schemas/$EditResourceType.js +13 -0
  170. package/gen/schemas/$EditSchedule.d.ts +20 -0
  171. package/gen/schemas/$EditSchedule.js +23 -0
  172. package/gen/schemas/$EditVariable.d.ts +16 -0
  173. package/gen/schemas/$EditVariable.js +19 -0
  174. package/gen/schemas/$EditWorkspaceUser.d.ts +7 -0
  175. package/gen/schemas/$EditWorkspaceUser.js +10 -0
  176. package/gen/schemas/$Flow.d.ts +23 -0
  177. package/gen/schemas/$Flow.js +26 -0
  178. package/gen/schemas/$FlowMetadata.d.ts +31 -0
  179. package/gen/schemas/$FlowMetadata.js +34 -0
  180. package/gen/schemas/$FlowPreview.d.ts +80 -0
  181. package/gen/schemas/$FlowPreview.js +83 -0
  182. package/gen/schemas/$GlobalUserInfo.d.ts +26 -0
  183. package/gen/schemas/$GlobalUserInfo.js +29 -0
  184. package/gen/schemas/$Group.d.ts +23 -0
  185. package/gen/schemas/$Group.js +26 -0
  186. package/gen/schemas/$Job.d.ts +17 -0
  187. package/gen/schemas/$Job.js +20 -0
  188. package/gen/schemas/$ListableVariable.d.ts +35 -0
  189. package/gen/schemas/$ListableVariable.js +38 -0
  190. package/gen/schemas/$Login.d.ts +12 -0
  191. package/gen/schemas/$Login.js +15 -0
  192. package/gen/schemas/$MainArgSignature.d.ts +50 -0
  193. package/gen/schemas/$MainArgSignature.js +53 -0
  194. package/gen/schemas/$NewSchedule.d.ts +30 -0
  195. package/gen/schemas/$NewSchedule.js +33 -0
  196. package/gen/schemas/$NewToken.d.ts +11 -0
  197. package/gen/schemas/$NewToken.js +14 -0
  198. package/gen/schemas/$NewUser.d.ts +16 -0
  199. package/gen/schemas/$NewUser.js +19 -0
  200. package/gen/schemas/$Preview.d.ts +19 -0
  201. package/gen/schemas/$Preview.js +22 -0
  202. package/gen/schemas/$QueuedJob.d.ts +139 -0
  203. package/gen/schemas/$QueuedJob.js +144 -0
  204. package/gen/schemas/$Resource.d.ts +31 -0
  205. package/gen/schemas/$Resource.js +34 -0
  206. package/gen/schemas/$ResourceType.d.ts +17 -0
  207. package/gen/schemas/$ResourceType.js +20 -0
  208. package/gen/schemas/$Schedule.d.ts +47 -0
  209. package/gen/schemas/$Schedule.js +50 -0
  210. package/gen/schemas/$Script.d.ts +77 -0
  211. package/gen/schemas/$Script.js +80 -0
  212. package/gen/schemas/$ScriptArgs.d.ts +6 -0
  213. package/gen/schemas/$ScriptArgs.js +9 -0
  214. package/gen/schemas/$SlackToken.d.ts +24 -0
  215. package/gen/schemas/$SlackToken.js +27 -0
  216. package/gen/schemas/$TokenResponse.d.ts +23 -0
  217. package/gen/schemas/$TokenResponse.js +26 -0
  218. package/gen/schemas/$TruncatedToken.d.ts +25 -0
  219. package/gen/schemas/$TruncatedToken.js +28 -0
  220. package/gen/schemas/$Usage.d.ts +13 -0
  221. package/gen/schemas/$Usage.js +16 -0
  222. package/gen/schemas/$User.d.ts +42 -0
  223. package/gen/schemas/$User.js +45 -0
  224. package/gen/schemas/$UserWorkspaceList.d.ts +28 -0
  225. package/gen/schemas/$UserWorkspaceList.js +31 -0
  226. package/gen/schemas/$WorkerPing.d.ts +31 -0
  227. package/gen/schemas/$WorkerPing.js +34 -0
  228. package/gen/schemas/$Workspace.d.ts +19 -0
  229. package/gen/schemas/$Workspace.js +22 -0
  230. package/gen/schemas/$WorkspaceInvite.d.ts +16 -0
  231. package/gen/schemas/$WorkspaceInvite.js +19 -0
  232. package/gen/services/FlowService.d.ts +24 -23
  233. package/gen/services/FlowService.js +14 -0
  234. package/gen/services/JobService.d.ts +1 -1
  235. package/gen/services/ScriptService.d.ts +13 -19
  236. package/gen/services/ScriptService.js +0 -14
  237. package/gen/services/WorkspaceService.d.ts +1 -1
  238. package/gen/services/WorkspaceService.js +1 -1
  239. package/infer.js +8 -1
  240. package/package.json +85 -16
  241. package/script_helpers.d.ts +1 -1
  242. package/script_helpers.js +11 -13
  243. package/sql.d.ts +89 -0
  244. package/sql.js +817 -0
  245. package/stores.d.ts +0 -1
  246. package/stores.js +0 -6
  247. package/utils.d.ts +12 -5
  248. package/utils.js +55 -9
  249. package/components/RadioButtonV2.svelte +0 -33
  250. package/components/RadioButtonV2.svelte.d.ts +0 -20
@@ -5,7 +5,7 @@ export declare type Schedule = {
5
5
  edited_at: string;
6
6
  schedule: string;
7
7
  offset_: number;
8
- enabled?: boolean;
8
+ enabled: boolean;
9
9
  script_path: string;
10
10
  is_flow: boolean;
11
11
  args?: ScriptArgs;
@@ -0,0 +1,4 @@
1
+ export declare type StaticTransform = {
2
+ value?: any;
3
+ type: 'static';
4
+ };
@@ -0,0 +1,4 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ export {};
@@ -1,6 +1,6 @@
1
1
  export declare type TokenResponse = {
2
2
  access_token: string;
3
- expires_in: number;
4
- refresh_token: string;
5
- scope: Array<string>;
3
+ expires_in?: number;
4
+ refresh_token?: string;
5
+ scope?: Array<string>;
6
6
  };
@@ -0,0 +1,5 @@
1
+ export declare type Usage = {
2
+ duration_ms?: number;
3
+ jobs?: number;
4
+ flows?: number;
5
+ };
@@ -0,0 +1,4 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ export {};
@@ -1,3 +1,4 @@
1
+ import type { Usage } from './Usage';
1
2
  export declare type User = {
2
3
  email: string;
3
4
  username: string;
@@ -7,4 +8,5 @@ export declare type User = {
7
8
  operator: boolean;
8
9
  disabled: boolean;
9
10
  groups?: Array<string>;
11
+ usage?: Usage;
10
12
  };
@@ -0,0 +1,32 @@
1
+ export declare const $AuditLog: {
2
+ readonly properties: {
3
+ readonly id: {
4
+ readonly type: "number";
5
+ readonly isRequired: true;
6
+ readonly format: "int32";
7
+ };
8
+ readonly timestamp: {
9
+ readonly type: "string";
10
+ readonly isRequired: true;
11
+ readonly format: "date-time";
12
+ };
13
+ readonly username: {
14
+ readonly type: "string";
15
+ readonly isRequired: true;
16
+ };
17
+ readonly operation: {
18
+ readonly type: "Enum";
19
+ readonly isRequired: true;
20
+ };
21
+ readonly action_kind: {
22
+ readonly type: "Enum";
23
+ readonly isRequired: true;
24
+ };
25
+ readonly resource: {
26
+ readonly type: "string";
27
+ };
28
+ readonly parameters: {
29
+ readonly properties: {};
30
+ };
31
+ };
32
+ };
@@ -0,0 +1,35 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ export const $AuditLog = {
5
+ properties: {
6
+ id: {
7
+ type: 'number',
8
+ isRequired: true,
9
+ format: 'int32',
10
+ },
11
+ timestamp: {
12
+ type: 'string',
13
+ isRequired: true,
14
+ format: 'date-time',
15
+ },
16
+ username: {
17
+ type: 'string',
18
+ isRequired: true,
19
+ },
20
+ operation: {
21
+ type: 'Enum',
22
+ isRequired: true,
23
+ },
24
+ action_kind: {
25
+ type: 'Enum',
26
+ isRequired: true,
27
+ },
28
+ resource: {
29
+ type: 'string',
30
+ },
31
+ parameters: {
32
+ properties: {},
33
+ },
34
+ },
35
+ };
@@ -0,0 +1,98 @@
1
+ export declare const $CompletedJob: {
2
+ readonly properties: {
3
+ readonly workspace_id: {
4
+ readonly type: "string";
5
+ };
6
+ readonly id: {
7
+ readonly type: "string";
8
+ readonly isRequired: true;
9
+ readonly format: "uuid";
10
+ };
11
+ readonly parent_job: {
12
+ readonly type: "string";
13
+ readonly format: "uuid";
14
+ };
15
+ readonly created_by: {
16
+ readonly type: "string";
17
+ readonly isRequired: true;
18
+ };
19
+ readonly created_at: {
20
+ readonly type: "string";
21
+ readonly isRequired: true;
22
+ readonly format: "date-time";
23
+ };
24
+ readonly started_at: {
25
+ readonly type: "string";
26
+ readonly isRequired: true;
27
+ readonly format: "date-time";
28
+ };
29
+ readonly duration_ms: {
30
+ readonly type: "number";
31
+ readonly isRequired: true;
32
+ };
33
+ readonly success: {
34
+ readonly type: "boolean";
35
+ readonly isRequired: true;
36
+ };
37
+ readonly script_path: {
38
+ readonly type: "string";
39
+ };
40
+ readonly script_hash: {
41
+ readonly type: "string";
42
+ };
43
+ readonly args: {
44
+ readonly type: "ScriptArgs";
45
+ };
46
+ readonly result: {
47
+ readonly properties: {};
48
+ };
49
+ readonly logs: {
50
+ readonly type: "string";
51
+ };
52
+ readonly deleted: {
53
+ readonly type: "boolean";
54
+ };
55
+ readonly raw_code: {
56
+ readonly type: "string";
57
+ };
58
+ readonly canceled: {
59
+ readonly type: "boolean";
60
+ readonly isRequired: true;
61
+ };
62
+ readonly canceled_by: {
63
+ readonly type: "string";
64
+ };
65
+ readonly canceled_reason: {
66
+ readonly type: "string";
67
+ };
68
+ readonly job_kind: {
69
+ readonly type: "Enum";
70
+ readonly isRequired: true;
71
+ };
72
+ readonly schedule_path: {
73
+ readonly type: "string";
74
+ };
75
+ readonly permissioned_as: {
76
+ readonly type: "string";
77
+ readonly description: "The user (u/userfoo) or group (g/groupfoo) whom\n the execution of this script will be permissioned_as and by extension its DT_TOKEN.\n ";
78
+ readonly isRequired: true;
79
+ };
80
+ readonly flow_status: {
81
+ readonly type: "QueuedJob_properties_flow_status";
82
+ };
83
+ readonly raw_flow: {
84
+ readonly type: "FlowPreview_properties_value";
85
+ };
86
+ readonly is_flow_step: {
87
+ readonly type: "boolean";
88
+ readonly isRequired: true;
89
+ };
90
+ readonly language: {
91
+ readonly type: "Enum";
92
+ };
93
+ readonly is_skipped: {
94
+ readonly type: "boolean";
95
+ readonly isRequired: true;
96
+ };
97
+ };
98
+ };
@@ -0,0 +1,103 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ export const $CompletedJob = {
5
+ properties: {
6
+ workspace_id: {
7
+ type: 'string',
8
+ },
9
+ id: {
10
+ type: 'string',
11
+ isRequired: true,
12
+ format: 'uuid',
13
+ },
14
+ parent_job: {
15
+ type: 'string',
16
+ format: 'uuid',
17
+ },
18
+ created_by: {
19
+ type: 'string',
20
+ isRequired: true,
21
+ },
22
+ created_at: {
23
+ type: 'string',
24
+ isRequired: true,
25
+ format: 'date-time',
26
+ },
27
+ started_at: {
28
+ type: 'string',
29
+ isRequired: true,
30
+ format: 'date-time',
31
+ },
32
+ duration_ms: {
33
+ type: 'number',
34
+ isRequired: true,
35
+ },
36
+ success: {
37
+ type: 'boolean',
38
+ isRequired: true,
39
+ },
40
+ script_path: {
41
+ type: 'string',
42
+ },
43
+ script_hash: {
44
+ type: 'string',
45
+ },
46
+ args: {
47
+ type: 'ScriptArgs',
48
+ },
49
+ result: {
50
+ properties: {},
51
+ },
52
+ logs: {
53
+ type: 'string',
54
+ },
55
+ deleted: {
56
+ type: 'boolean',
57
+ },
58
+ raw_code: {
59
+ type: 'string',
60
+ },
61
+ canceled: {
62
+ type: 'boolean',
63
+ isRequired: true,
64
+ },
65
+ canceled_by: {
66
+ type: 'string',
67
+ },
68
+ canceled_reason: {
69
+ type: 'string',
70
+ },
71
+ job_kind: {
72
+ type: 'Enum',
73
+ isRequired: true,
74
+ },
75
+ schedule_path: {
76
+ type: 'string',
77
+ },
78
+ permissioned_as: {
79
+ type: 'string',
80
+ description: `The user (u/userfoo) or group (g/groupfoo) whom
81
+ the execution of this script will be permissioned_as and by extension its DT_TOKEN.
82
+ `,
83
+ isRequired: true,
84
+ },
85
+ flow_status: {
86
+ type: 'QueuedJob_properties_flow_status',
87
+ },
88
+ raw_flow: {
89
+ type: 'FlowPreview_properties_value',
90
+ },
91
+ is_flow_step: {
92
+ type: 'boolean',
93
+ isRequired: true,
94
+ },
95
+ language: {
96
+ type: 'Enum',
97
+ },
98
+ is_skipped: {
99
+ type: 'boolean',
100
+ isRequired: true,
101
+ },
102
+ },
103
+ };
@@ -0,0 +1,16 @@
1
+ export declare const $ContextualVariable: {
2
+ readonly properties: {
3
+ readonly name: {
4
+ readonly type: "string";
5
+ readonly isRequired: true;
6
+ };
7
+ readonly value: {
8
+ readonly type: "string";
9
+ readonly isRequired: true;
10
+ };
11
+ readonly description: {
12
+ readonly type: "string";
13
+ readonly isRequired: true;
14
+ };
15
+ };
16
+ };
@@ -0,0 +1,19 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ export const $ContextualVariable = {
5
+ properties: {
6
+ name: {
7
+ type: 'string',
8
+ isRequired: true,
9
+ },
10
+ value: {
11
+ type: 'string',
12
+ isRequired: true,
13
+ },
14
+ description: {
15
+ type: 'string',
16
+ isRequired: true,
17
+ },
18
+ },
19
+ };
@@ -0,0 +1,22 @@
1
+ export declare const $CreateResource: {
2
+ readonly properties: {
3
+ readonly path: {
4
+ readonly type: "string";
5
+ readonly isRequired: true;
6
+ };
7
+ readonly value: {
8
+ readonly properties: {};
9
+ readonly isRequired: true;
10
+ };
11
+ readonly description: {
12
+ readonly type: "string";
13
+ };
14
+ readonly resource_type: {
15
+ readonly type: "string";
16
+ readonly isRequired: true;
17
+ };
18
+ readonly is_oauth: {
19
+ readonly type: "boolean";
20
+ };
21
+ };
22
+ };
@@ -0,0 +1,25 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ export const $CreateResource = {
5
+ properties: {
6
+ path: {
7
+ type: 'string',
8
+ isRequired: true,
9
+ },
10
+ value: {
11
+ properties: {},
12
+ isRequired: true,
13
+ },
14
+ description: {
15
+ type: 'string',
16
+ },
17
+ resource_type: {
18
+ type: 'string',
19
+ isRequired: true,
20
+ },
21
+ is_oauth: {
22
+ type: 'boolean',
23
+ },
24
+ },
25
+ };
@@ -0,0 +1,26 @@
1
+ export declare const $CreateVariable: {
2
+ readonly properties: {
3
+ readonly path: {
4
+ readonly type: "string";
5
+ readonly isRequired: true;
6
+ };
7
+ readonly value: {
8
+ readonly type: "string";
9
+ readonly isRequired: true;
10
+ };
11
+ readonly is_secret: {
12
+ readonly type: "boolean";
13
+ readonly isRequired: true;
14
+ };
15
+ readonly description: {
16
+ readonly type: "string";
17
+ readonly isRequired: true;
18
+ };
19
+ readonly account: {
20
+ readonly type: "number";
21
+ };
22
+ readonly is_oauth: {
23
+ readonly type: "boolean";
24
+ };
25
+ };
26
+ };
@@ -0,0 +1,29 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ export const $CreateVariable = {
5
+ properties: {
6
+ path: {
7
+ type: 'string',
8
+ isRequired: true,
9
+ },
10
+ value: {
11
+ type: 'string',
12
+ isRequired: true,
13
+ },
14
+ is_secret: {
15
+ type: 'boolean',
16
+ isRequired: true,
17
+ },
18
+ description: {
19
+ type: 'string',
20
+ isRequired: true,
21
+ },
22
+ account: {
23
+ type: 'number',
24
+ },
25
+ is_oauth: {
26
+ type: 'boolean',
27
+ },
28
+ },
29
+ };
@@ -0,0 +1,20 @@
1
+ export declare const $CreateWorkspace: {
2
+ readonly properties: {
3
+ readonly id: {
4
+ readonly type: "string";
5
+ readonly isRequired: true;
6
+ };
7
+ readonly name: {
8
+ readonly type: "string";
9
+ readonly isRequired: true;
10
+ };
11
+ readonly username: {
12
+ readonly type: "string";
13
+ readonly isRequired: true;
14
+ };
15
+ readonly domain: {
16
+ readonly type: "string";
17
+ readonly isRequired: true;
18
+ };
19
+ };
20
+ };
@@ -0,0 +1,23 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ export const $CreateWorkspace = {
5
+ properties: {
6
+ id: {
7
+ type: 'string',
8
+ isRequired: true,
9
+ },
10
+ name: {
11
+ type: 'string',
12
+ isRequired: true,
13
+ },
14
+ username: {
15
+ type: 'string',
16
+ isRequired: true,
17
+ },
18
+ domain: {
19
+ type: 'string',
20
+ isRequired: true,
21
+ },
22
+ },
23
+ };
@@ -0,0 +1,13 @@
1
+ export declare const $EditResource: {
2
+ readonly properties: {
3
+ readonly path: {
4
+ readonly type: "string";
5
+ };
6
+ readonly description: {
7
+ readonly type: "string";
8
+ };
9
+ readonly value: {
10
+ readonly properties: {};
11
+ };
12
+ };
13
+ };
@@ -0,0 +1,16 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ export const $EditResource = {
5
+ properties: {
6
+ path: {
7
+ type: 'string',
8
+ },
9
+ description: {
10
+ type: 'string',
11
+ },
12
+ value: {
13
+ properties: {},
14
+ },
15
+ },
16
+ };
@@ -0,0 +1,10 @@
1
+ export declare const $EditResourceType: {
2
+ readonly properties: {
3
+ readonly schema: {
4
+ readonly type: "string";
5
+ };
6
+ readonly description: {
7
+ readonly type: "string";
8
+ };
9
+ };
10
+ };
@@ -0,0 +1,13 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ export const $EditResourceType = {
5
+ properties: {
6
+ schema: {
7
+ type: 'string',
8
+ },
9
+ description: {
10
+ type: 'string',
11
+ },
12
+ },
13
+ };
@@ -0,0 +1,20 @@
1
+ export declare const $EditSchedule: {
2
+ readonly properties: {
3
+ readonly schedule: {
4
+ readonly type: "string";
5
+ readonly isRequired: true;
6
+ };
7
+ readonly script_path: {
8
+ readonly type: "string";
9
+ readonly isRequired: true;
10
+ };
11
+ readonly is_flow: {
12
+ readonly type: "boolean";
13
+ readonly isRequired: true;
14
+ };
15
+ readonly args: {
16
+ readonly type: "ScriptArgs";
17
+ readonly isRequired: true;
18
+ };
19
+ };
20
+ };
@@ -0,0 +1,23 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ export const $EditSchedule = {
5
+ properties: {
6
+ schedule: {
7
+ type: 'string',
8
+ isRequired: true,
9
+ },
10
+ script_path: {
11
+ type: 'string',
12
+ isRequired: true,
13
+ },
14
+ is_flow: {
15
+ type: 'boolean',
16
+ isRequired: true,
17
+ },
18
+ args: {
19
+ type: 'ScriptArgs',
20
+ isRequired: true,
21
+ },
22
+ },
23
+ };
@@ -0,0 +1,16 @@
1
+ export declare const $EditVariable: {
2
+ readonly properties: {
3
+ readonly path: {
4
+ readonly type: "string";
5
+ };
6
+ readonly value: {
7
+ readonly type: "string";
8
+ };
9
+ readonly is_secret: {
10
+ readonly type: "boolean";
11
+ };
12
+ readonly description: {
13
+ readonly type: "string";
14
+ };
15
+ };
16
+ };
@@ -0,0 +1,19 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ export const $EditVariable = {
5
+ properties: {
6
+ path: {
7
+ type: 'string',
8
+ },
9
+ value: {
10
+ type: 'string',
11
+ },
12
+ is_secret: {
13
+ type: 'boolean',
14
+ },
15
+ description: {
16
+ type: 'string',
17
+ },
18
+ },
19
+ };
@@ -0,0 +1,7 @@
1
+ export declare const $EditWorkspaceUser: {
2
+ readonly properties: {
3
+ readonly is_admin: {
4
+ readonly type: "boolean";
5
+ };
6
+ };
7
+ };
@@ -0,0 +1,10 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ export const $EditWorkspaceUser = {
5
+ properties: {
6
+ is_admin: {
7
+ type: 'boolean',
8
+ },
9
+ },
10
+ };