windmill-components 1.22.42 → 1.28.1

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 (248) 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 +23 -7
  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 +150 -71
  17. package/components/FlowEditor.svelte +75 -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 +77 -45
  26. package/components/FlowViewer.svelte.d.ts +1 -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/InviteGlobalUser.svelte +2 -2
  31. package/components/InviteUser.svelte +2 -2
  32. package/components/JobStatus.svelte +32 -25
  33. package/components/Modal.svelte +44 -42
  34. package/components/ModuleStep.svelte +94 -79
  35. package/components/ObjectResourceInput.svelte +58 -38
  36. package/components/ObjectTypeNarrowing.svelte +4 -19
  37. package/components/Path.svelte +1 -0
  38. package/components/Path.svelte.d.ts +1 -1
  39. package/components/RadioButton.svelte +11 -96
  40. package/components/RadioButton.svelte.d.ts +4 -2
  41. package/components/ResourceEditor.svelte +4 -5
  42. package/components/ResourceEditor.svelte.d.ts +2 -2
  43. package/components/ResourcePicker.svelte +25 -2
  44. package/components/ResourcePicker.svelte.d.ts +3 -0
  45. package/components/ResourceTypePicker.svelte +17 -29
  46. package/components/ResourceTypePicker.svelte.d.ts +1 -0
  47. package/components/RunForm.svelte +14 -15
  48. package/components/RunForm.svelte.d.ts +1 -1
  49. package/components/SchemaEditor.svelte +87 -71
  50. package/components/SchemaEditor.svelte.d.ts +2 -0
  51. package/components/SchemaEditorProperty.svelte +11 -0
  52. package/components/SchemaEditorProperty.svelte.d.ts +17 -0
  53. package/components/SchemaForm.svelte +21 -127
  54. package/components/SchemaForm.svelte.d.ts +3 -4
  55. package/components/SchemaModal.svelte +20 -33
  56. package/components/SchemaModal.svelte.d.ts +1 -1
  57. package/components/SchemaViewer.svelte +4 -6
  58. package/components/ScriptBuilder.svelte +40 -43
  59. package/components/ScriptEditor.svelte +71 -66
  60. package/components/ScriptPicker.svelte +10 -12
  61. package/components/ScriptPicker.svelte.d.ts +1 -1
  62. package/components/ScriptSchema.svelte +0 -5
  63. package/components/ShareModal.svelte +1 -1
  64. package/components/SharedBadge.svelte +12 -10
  65. package/components/StringTypeNarrowing.svelte +8 -4
  66. package/components/StringTypeNarrowing.svelte.d.ts +1 -0
  67. package/components/TableCustom.svelte +7 -9
  68. package/components/TableSimple.svelte +1 -1
  69. package/components/Toggle.svelte +8 -10
  70. package/components/Toggle.svelte.d.ts +5 -11
  71. package/components/Tooltip.svelte +3 -2
  72. package/components/VariableEditor.svelte +21 -6
  73. package/components/flows/CopyFirstStepSchema.svelte +7 -5
  74. package/components/flows/DynamicInputHelpBox.svelte +1 -1
  75. package/components/flows/FlowBox.svelte +3 -0
  76. package/components/flows/FlowBox.svelte.d.ts +23 -0
  77. package/components/flows/FlowBoxHeader.svelte +9 -0
  78. package/components/flows/FlowBoxHeader.svelte.d.ts +18 -0
  79. package/components/flows/FlowInput.svelte +20 -0
  80. package/components/flows/FlowInput.svelte.d.ts +14 -0
  81. package/components/flows/FlowInputs.svelte +7 -3
  82. package/components/flows/FlowModuleHeader.svelte +42 -40
  83. package/components/flows/FlowModuleHeader.svelte.d.ts +1 -1
  84. package/components/flows/FlowSettings.svelte +174 -0
  85. package/components/flows/FlowSettings.svelte.d.ts +21 -0
  86. package/components/flows/flowStore.d.ts +5 -2
  87. package/components/flows/flowStore.js +65 -9
  88. package/components/flows/pickers/FlowScriptPicker.svelte +6 -1
  89. package/components/flows/pickers/FlowScriptPicker.svelte.d.ts +1 -0
  90. package/components/flows/utils.d.ts +11 -7
  91. package/components/flows/utils.js +104 -43
  92. package/components/icons/AirtableIcon.svelte +17 -0
  93. package/components/icons/AirtableIcon.svelte.d.ts +17 -0
  94. package/components/icons/GCloudIcon.svelte +16 -0
  95. package/components/icons/GCloudIcon.svelte.d.ts +17 -0
  96. package/components/icons/GItlabIcon.svelte +16 -0
  97. package/components/icons/GItlabIcon.svelte.d.ts +17 -0
  98. package/components/icons/GSheetsIcon.svelte +16 -0
  99. package/components/icons/GSheetsIcon.svelte.d.ts +17 -0
  100. package/components/icons/GcalIcon.svelte +16 -0
  101. package/components/icons/GcalIcon.svelte.d.ts +17 -0
  102. package/components/icons/GdriveIcon.svelte +16 -0
  103. package/components/icons/GdriveIcon.svelte.d.ts +17 -0
  104. package/components/icons/GmailIcon.svelte +16 -0
  105. package/components/icons/GmailIcon.svelte.d.ts +17 -0
  106. package/components/icons/PostgresIcon.svelte +8 -49
  107. package/components/icons/Slack.svelte +9 -18
  108. package/components/icons/TogglIcon.svelte +59 -0
  109. package/components/icons/TogglIcon.svelte.d.ts +17 -0
  110. package/components/propertyPicker/ObjectViewer.svelte +35 -37
  111. package/components/propertyPicker/ObjectViewer.svelte.d.ts +1 -0
  112. package/components/propertyPicker/OverlayPropertyPicker.svelte +53 -53
  113. package/components/propertyPicker/OverlayPropertyPicker.svelte.d.ts +5 -2
  114. package/components/propertyPicker/PropPicker.svelte +13 -15
  115. package/components/propertyPicker/PropPicker.svelte.d.ts +1 -1
  116. package/components/propertyPicker/WarningMessage.svelte +14 -41
  117. package/components/propertyPicker/WarningMessage.svelte.d.ts +11 -8
  118. package/components/propertyPicker/utils.d.ts +1 -0
  119. package/components/propertyPicker/utils.js +25 -0
  120. package/gen/core/OpenAPI.js +1 -1
  121. package/gen/index.d.ts +11 -2
  122. package/gen/index.js +1 -2
  123. package/gen/models/CompletedJob.d.ts +1 -1
  124. package/gen/models/Flow.d.ts +3 -13
  125. package/gen/models/FlowMetadata.d.ts +9 -0
  126. package/gen/models/FlowMetadata.js +4 -0
  127. package/gen/models/FlowModuleValue.d.ts +5 -22
  128. package/gen/models/FlowModuleValue.js +1 -15
  129. package/gen/models/ForloopFlow.d.ts +8 -0
  130. package/gen/models/ForloopFlow.js +4 -0
  131. package/gen/models/InputTransform.d.ts +3 -12
  132. package/gen/models/InputTransform.js +1 -8
  133. package/gen/models/JavascriptTransform.d.ts +4 -0
  134. package/gen/models/JavascriptTransform.js +4 -0
  135. package/gen/models/MainArgSignature.d.ts +1 -1
  136. package/gen/models/NewSchedule.d.ts +1 -0
  137. package/gen/models/OpenFlowWPath.d.ts +4 -0
  138. package/gen/models/OpenFlowWPath.js +4 -0
  139. package/gen/models/PathFlow.d.ts +4 -0
  140. package/gen/models/PathFlow.js +4 -0
  141. package/gen/models/PathScript.d.ts +4 -0
  142. package/gen/models/PathScript.js +4 -0
  143. package/gen/models/RawScript.d.ts +12 -0
  144. package/gen/models/RawScript.js +11 -0
  145. package/gen/models/Schedule.d.ts +1 -1
  146. package/gen/models/StaticTransform.d.ts +4 -0
  147. package/gen/models/StaticTransform.js +4 -0
  148. package/gen/models/TokenResponse.d.ts +3 -3
  149. package/gen/models/Usage.d.ts +5 -0
  150. package/gen/models/Usage.js +4 -0
  151. package/gen/models/User.d.ts +2 -0
  152. package/gen/schemas/$AuditLog.d.ts +32 -0
  153. package/gen/schemas/$AuditLog.js +35 -0
  154. package/gen/schemas/$CompletedJob.d.ts +98 -0
  155. package/gen/schemas/$CompletedJob.js +103 -0
  156. package/gen/schemas/$ContextualVariable.d.ts +16 -0
  157. package/gen/schemas/$ContextualVariable.js +19 -0
  158. package/gen/schemas/$CreateResource.d.ts +22 -0
  159. package/gen/schemas/$CreateResource.js +25 -0
  160. package/gen/schemas/$CreateVariable.d.ts +26 -0
  161. package/gen/schemas/$CreateVariable.js +29 -0
  162. package/gen/schemas/$CreateWorkspace.d.ts +20 -0
  163. package/gen/schemas/$CreateWorkspace.js +23 -0
  164. package/gen/schemas/$EditResource.d.ts +13 -0
  165. package/gen/schemas/$EditResource.js +16 -0
  166. package/gen/schemas/$EditResourceType.d.ts +10 -0
  167. package/gen/schemas/$EditResourceType.js +13 -0
  168. package/gen/schemas/$EditSchedule.d.ts +20 -0
  169. package/gen/schemas/$EditSchedule.js +23 -0
  170. package/gen/schemas/$EditVariable.d.ts +16 -0
  171. package/gen/schemas/$EditVariable.js +19 -0
  172. package/gen/schemas/$EditWorkspaceUser.d.ts +7 -0
  173. package/gen/schemas/$EditWorkspaceUser.js +10 -0
  174. package/gen/schemas/$Flow.d.ts +23 -0
  175. package/gen/schemas/$Flow.js +26 -0
  176. package/gen/schemas/$FlowMetadata.d.ts +31 -0
  177. package/gen/schemas/$FlowMetadata.js +34 -0
  178. package/gen/schemas/$FlowPreview.d.ts +80 -0
  179. package/gen/schemas/$FlowPreview.js +83 -0
  180. package/gen/schemas/$GlobalUserInfo.d.ts +26 -0
  181. package/gen/schemas/$GlobalUserInfo.js +29 -0
  182. package/gen/schemas/$Group.d.ts +23 -0
  183. package/gen/schemas/$Group.js +26 -0
  184. package/gen/schemas/$Job.d.ts +17 -0
  185. package/gen/schemas/$Job.js +20 -0
  186. package/gen/schemas/$ListableVariable.d.ts +35 -0
  187. package/gen/schemas/$ListableVariable.js +38 -0
  188. package/gen/schemas/$Login.d.ts +12 -0
  189. package/gen/schemas/$Login.js +15 -0
  190. package/gen/schemas/$MainArgSignature.d.ts +50 -0
  191. package/gen/schemas/$MainArgSignature.js +53 -0
  192. package/gen/schemas/$NewSchedule.d.ts +30 -0
  193. package/gen/schemas/$NewSchedule.js +33 -0
  194. package/gen/schemas/$NewToken.d.ts +11 -0
  195. package/gen/schemas/$NewToken.js +14 -0
  196. package/gen/schemas/$NewUser.d.ts +16 -0
  197. package/gen/schemas/$NewUser.js +19 -0
  198. package/gen/schemas/$Preview.d.ts +19 -0
  199. package/gen/schemas/$Preview.js +22 -0
  200. package/gen/schemas/$QueuedJob.d.ts +139 -0
  201. package/gen/schemas/$QueuedJob.js +144 -0
  202. package/gen/schemas/$Resource.d.ts +31 -0
  203. package/gen/schemas/$Resource.js +34 -0
  204. package/gen/schemas/$ResourceType.d.ts +17 -0
  205. package/gen/schemas/$ResourceType.js +20 -0
  206. package/gen/schemas/$Schedule.d.ts +47 -0
  207. package/gen/schemas/$Schedule.js +50 -0
  208. package/gen/schemas/$Script.d.ts +77 -0
  209. package/gen/schemas/$Script.js +80 -0
  210. package/gen/schemas/$ScriptArgs.d.ts +6 -0
  211. package/gen/schemas/$ScriptArgs.js +9 -0
  212. package/gen/schemas/$SlackToken.d.ts +24 -0
  213. package/gen/schemas/$SlackToken.js +27 -0
  214. package/gen/schemas/$TokenResponse.d.ts +23 -0
  215. package/gen/schemas/$TokenResponse.js +26 -0
  216. package/gen/schemas/$TruncatedToken.d.ts +25 -0
  217. package/gen/schemas/$TruncatedToken.js +28 -0
  218. package/gen/schemas/$Usage.d.ts +13 -0
  219. package/gen/schemas/$Usage.js +16 -0
  220. package/gen/schemas/$User.d.ts +42 -0
  221. package/gen/schemas/$User.js +45 -0
  222. package/gen/schemas/$UserWorkspaceList.d.ts +28 -0
  223. package/gen/schemas/$UserWorkspaceList.js +31 -0
  224. package/gen/schemas/$WorkerPing.d.ts +31 -0
  225. package/gen/schemas/$WorkerPing.js +34 -0
  226. package/gen/schemas/$Workspace.d.ts +19 -0
  227. package/gen/schemas/$Workspace.js +22 -0
  228. package/gen/schemas/$WorkspaceInvite.d.ts +16 -0
  229. package/gen/schemas/$WorkspaceInvite.js +19 -0
  230. package/gen/services/FlowService.d.ts +24 -23
  231. package/gen/services/FlowService.js +14 -0
  232. package/gen/services/JobService.d.ts +1 -1
  233. package/gen/services/ScriptService.d.ts +13 -19
  234. package/gen/services/ScriptService.js +0 -14
  235. package/gen/services/WorkspaceService.d.ts +1 -1
  236. package/gen/services/WorkspaceService.js +1 -1
  237. package/infer.js +8 -1
  238. package/package.json +83 -15
  239. package/script_helpers.d.ts +1 -1
  240. package/script_helpers.js +7 -6
  241. package/sql.d.ts +89 -0
  242. package/sql.js +817 -0
  243. package/stores.d.ts +0 -1
  244. package/stores.js +0 -6
  245. package/utils.d.ts +12 -5
  246. package/utils.js +55 -9
  247. package/components/RadioButtonV2.svelte +0 -33
  248. package/components/RadioButtonV2.svelte.d.ts +0 -20
@@ -1,16 +1,19 @@
1
+ /** @typedef {typeof __propDef.props} WarningMessageProps */
2
+ /** @typedef {typeof __propDef.events} WarningMessageEvents */
3
+ /** @typedef {typeof __propDef.slots} WarningMessageSlots */
4
+ export default class WarningMessage extends SvelteComponentTyped<{}, {
5
+ [evt: string]: CustomEvent<any>;
6
+ }, {}> {
7
+ }
8
+ export type WarningMessageProps = typeof __propDef.props;
9
+ export type WarningMessageEvents = typeof __propDef.events;
10
+ export type WarningMessageSlots = typeof __propDef.slots;
1
11
  import { SvelteComponentTyped } from "svelte";
2
12
  declare const __propDef: {
3
- props: {
4
- close: () => void;
5
- };
13
+ props: {};
6
14
  events: {
7
15
  [evt: string]: CustomEvent<any>;
8
16
  };
9
17
  slots: {};
10
18
  };
11
- export declare type WarningMessageProps = typeof __propDef.props;
12
- export declare type WarningMessageEvents = typeof __propDef.events;
13
- export declare type WarningMessageSlots = typeof __propDef.slots;
14
- export default class WarningMessage extends SvelteComponentTyped<WarningMessageProps, WarningMessageEvents, WarningMessageSlots> {
15
- }
16
19
  export {};
@@ -1,2 +1,3 @@
1
1
  export declare function keepByKey(json: Object, key: string): Object;
2
2
  export declare function getTypeAsString(arg: any): string;
3
+ export declare function computeKey(key: string, isArray: boolean, currentPath?: string): string;
@@ -38,3 +38,28 @@ export function getTypeAsString(arg) {
38
38
  }
39
39
  return typeof arg;
40
40
  }
41
+ // https://stackoverflow.com/questions/23377217/way-to-test-if-a-string-is-valid-identifier-name-in-javascript
42
+ const validJSExpressionRegex = new RegExp(/^(?!(?:do|if|in|for|let|new|try|var|case|else|enum|eval|false|null|this|true|void|with|break|catch|class|const|super|throw|while|yield|delete|export|import|public|return|static|switch|typeof|default|extends|finally|package|private|continue|debugger|function|arguments|interface|protected|implements|instanceof)$)[$A-Z\_a-z\xaa\xb5\xba\xc0-\xd6\xd8-\xf6\xf8-\u02c1\u02c6-\u02d1\u02e0-\u02e4\u02ec\u02ee\u0370-\u0374\u0376\u0377\u037a-\u037d\u0386\u0388-\u038a\u038c\u038e-\u03a1\u03a3-\u03f5\u03f7-\u0481\u048a-\u0527\u0531-\u0556\u0559\u0561-\u0587\u05d0-\u05ea\u05f0-\u05f2\u0620-\u064a\u066e\u066f\u0671-\u06d3\u06d5\u06e5\u06e6\u06ee\u06ef\u06fa-\u06fc\u06ff\u0710\u0712-\u072f\u074d-\u07a5\u07b1\u07ca-\u07ea\u07f4\u07f5\u07fa\u0800-\u0815\u081a\u0824\u0828\u0840-\u0858\u08a0\u08a2-\u08ac\u0904-\u0939\u093d\u0950\u0958-\u0961\u0971-\u0977\u0979-\u097f\u0985-\u098c\u098f\u0990\u0993-\u09a8\u09aa-\u09b0\u09b2\u09b6-\u09b9\u09bd\u09ce\u09dc\u09dd\u09df-\u09e1\u09f0\u09f1\u0a05-\u0a0a\u0a0f\u0a10\u0a13-\u0a28\u0a2a-\u0a30\u0a32\u0a33\u0a35\u0a36\u0a38\u0a39\u0a59-\u0a5c\u0a5e\u0a72-\u0a74\u0a85-\u0a8d\u0a8f-\u0a91\u0a93-\u0aa8\u0aaa-\u0ab0\u0ab2\u0ab3\u0ab5-\u0ab9\u0abd\u0ad0\u0ae0\u0ae1\u0b05-\u0b0c\u0b0f\u0b10\u0b13-\u0b28\u0b2a-\u0b30\u0b32\u0b33\u0b35-\u0b39\u0b3d\u0b5c\u0b5d\u0b5f-\u0b61\u0b71\u0b83\u0b85-\u0b8a\u0b8e-\u0b90\u0b92-\u0b95\u0b99\u0b9a\u0b9c\u0b9e\u0b9f\u0ba3\u0ba4\u0ba8-\u0baa\u0bae-\u0bb9\u0bd0\u0c05-\u0c0c\u0c0e-\u0c10\u0c12-\u0c28\u0c2a-\u0c33\u0c35-\u0c39\u0c3d\u0c58\u0c59\u0c60\u0c61\u0c85-\u0c8c\u0c8e-\u0c90\u0c92-\u0ca8\u0caa-\u0cb3\u0cb5-\u0cb9\u0cbd\u0cde\u0ce0\u0ce1\u0cf1\u0cf2\u0d05-\u0d0c\u0d0e-\u0d10\u0d12-\u0d3a\u0d3d\u0d4e\u0d60\u0d61\u0d7a-\u0d7f\u0d85-\u0d96\u0d9a-\u0db1\u0db3-\u0dbb\u0dbd\u0dc0-\u0dc6\u0e01-\u0e30\u0e32\u0e33\u0e40-\u0e46\u0e81\u0e82\u0e84\u0e87\u0e88\u0e8a\u0e8d\u0e94-\u0e97\u0e99-\u0e9f\u0ea1-\u0ea3\u0ea5\u0ea7\u0eaa\u0eab\u0ead-\u0eb0\u0eb2\u0eb3\u0ebd\u0ec0-\u0ec4\u0ec6\u0edc-\u0edf\u0f00\u0f40-\u0f47\u0f49-\u0f6c\u0f88-\u0f8c\u1000-\u102a\u103f\u1050-\u1055\u105a-\u105d\u1061\u1065\u1066\u106e-\u1070\u1075-\u1081\u108e\u10a0-\u10c5\u10c7\u10cd\u10d0-\u10fa\u10fc-\u1248\u124a-\u124d\u1250-\u1256\u1258\u125a-\u125d\u1260-\u1288\u128a-\u128d\u1290-\u12b0\u12b2-\u12b5\u12b8-\u12be\u12c0\u12c2-\u12c5\u12c8-\u12d6\u12d8-\u1310\u1312-\u1315\u1318-\u135a\u1380-\u138f\u13a0-\u13f4\u1401-\u166c\u166f-\u167f\u1681-\u169a\u16a0-\u16ea\u16ee-\u16f0\u1700-\u170c\u170e-\u1711\u1720-\u1731\u1740-\u1751\u1760-\u176c\u176e-\u1770\u1780-\u17b3\u17d7\u17dc\u1820-\u1877\u1880-\u18a8\u18aa\u18b0-\u18f5\u1900-\u191c\u1950-\u196d\u1970-\u1974\u1980-\u19ab\u19c1-\u19c7\u1a00-\u1a16\u1a20-\u1a54\u1aa7\u1b05-\u1b33\u1b45-\u1b4b\u1b83-\u1ba0\u1bae\u1baf\u1bba-\u1be5\u1c00-\u1c23\u1c4d-\u1c4f\u1c5a-\u1c7d\u1ce9-\u1cec\u1cee-\u1cf1\u1cf5\u1cf6\u1d00-\u1dbf\u1e00-\u1f15\u1f18-\u1f1d\u1f20-\u1f45\u1f48-\u1f4d\u1f50-\u1f57\u1f59\u1f5b\u1f5d\u1f5f-\u1f7d\u1f80-\u1fb4\u1fb6-\u1fbc\u1fbe\u1fc2-\u1fc4\u1fc6-\u1fcc\u1fd0-\u1fd3\u1fd6-\u1fdb\u1fe0-\u1fec\u1ff2-\u1ff4\u1ff6-\u1ffc\u2071\u207f\u2090-\u209c\u2102\u2107\u210a-\u2113\u2115\u2119-\u211d\u2124\u2126\u2128\u212a-\u212d\u212f-\u2139\u213c-\u213f\u2145-\u2149\u214e\u2160-\u2188\u2c00-\u2c2e\u2c30-\u2c5e\u2c60-\u2ce4\u2ceb-\u2cee\u2cf2\u2cf3\u2d00-\u2d25\u2d27\u2d2d\u2d30-\u2d67\u2d6f\u2d80-\u2d96\u2da0-\u2da6\u2da8-\u2dae\u2db0-\u2db6\u2db8-\u2dbe\u2dc0-\u2dc6\u2dc8-\u2dce\u2dd0-\u2dd6\u2dd8-\u2dde\u2e2f\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303c\u3041-\u3096\u309d-\u309f\u30a1-\u30fa\u30fc-\u30ff\u3105-\u312d\u3131-\u318e\u31a0-\u31ba\u31f0-\u31ff\u3400-\u4db5\u4e00-\u9fcc\ua000-\ua48c\ua4d0-\ua4fd\ua500-\ua60c\ua610-\ua61f\ua62a\ua62b\ua640-\ua66e\ua67f-\ua697\ua6a0-\ua6ef\ua717-\ua71f\ua722-\ua788\ua78b-\ua78e\ua790-\ua793\ua7a0-\ua7aa\ua7f8-\ua801\ua803-\ua805\ua807-\ua80a\ua80c-\ua822\ua840-\ua873\ua882-\ua8b3\ua8f2-\ua8f7\ua8fb\ua90a-\ua925\ua930-\ua946\ua960-\ua97c\ua984-\ua9b2\ua9cf\uaa00-\uaa28\uaa40-\uaa42\uaa44-\uaa4b\uaa60-\uaa76\uaa7a\uaa80-\uaaaf\uaab1\uaab5\uaab6\uaab9-\uaabd\uaac0\uaac2\uaadb-\uaadd\uaae0-\uaaea\uaaf2-\uaaf4\uab01-\uab06\uab09-\uab0e\uab11-\uab16\uab20-\uab26\uab28-\uab2e\uabc0-\uabe2\uac00-\ud7a3\ud7b0-\ud7c6\ud7cb-\ud7fb\uf900-\ufa6d\ufa70-\ufad9\ufb00-\ufb06\ufb13-\ufb17\ufb1d\ufb1f-\ufb28\ufb2a-\ufb36\ufb38-\ufb3c\ufb3e\ufb40\ufb41\ufb43\ufb44\ufb46-\ufbb1\ufbd3-\ufd3d\ufd50-\ufd8f\ufd92-\ufdc7\ufdf0-\ufdfb\ufe70-\ufe74\ufe76-\ufefc\uff21-\uff3a\uff41-\uff5a\uff66-\uffbe\uffc2-\uffc7\uffca-\uffcf\uffd2-\uffd7\uffda-\uffdc][$A-Z\_a-z\xaa\xb5\xba\xc0-\xd6\xd8-\xf6\xf8-\u02c1\u02c6-\u02d1\u02e0-\u02e4\u02ec\u02ee\u0370-\u0374\u0376\u0377\u037a-\u037d\u0386\u0388-\u038a\u038c\u038e-\u03a1\u03a3-\u03f5\u03f7-\u0481\u048a-\u0527\u0531-\u0556\u0559\u0561-\u0587\u05d0-\u05ea\u05f0-\u05f2\u0620-\u064a\u066e\u066f\u0671-\u06d3\u06d5\u06e5\u06e6\u06ee\u06ef\u06fa-\u06fc\u06ff\u0710\u0712-\u072f\u074d-\u07a5\u07b1\u07ca-\u07ea\u07f4\u07f5\u07fa\u0800-\u0815\u081a\u0824\u0828\u0840-\u0858\u08a0\u08a2-\u08ac\u0904-\u0939\u093d\u0950\u0958-\u0961\u0971-\u0977\u0979-\u097f\u0985-\u098c\u098f\u0990\u0993-\u09a8\u09aa-\u09b0\u09b2\u09b6-\u09b9\u09bd\u09ce\u09dc\u09dd\u09df-\u09e1\u09f0\u09f1\u0a05-\u0a0a\u0a0f\u0a10\u0a13-\u0a28\u0a2a-\u0a30\u0a32\u0a33\u0a35\u0a36\u0a38\u0a39\u0a59-\u0a5c\u0a5e\u0a72-\u0a74\u0a85-\u0a8d\u0a8f-\u0a91\u0a93-\u0aa8\u0aaa-\u0ab0\u0ab2\u0ab3\u0ab5-\u0ab9\u0abd\u0ad0\u0ae0\u0ae1\u0b05-\u0b0c\u0b0f\u0b10\u0b13-\u0b28\u0b2a-\u0b30\u0b32\u0b33\u0b35-\u0b39\u0b3d\u0b5c\u0b5d\u0b5f-\u0b61\u0b71\u0b83\u0b85-\u0b8a\u0b8e-\u0b90\u0b92-\u0b95\u0b99\u0b9a\u0b9c\u0b9e\u0b9f\u0ba3\u0ba4\u0ba8-\u0baa\u0bae-\u0bb9\u0bd0\u0c05-\u0c0c\u0c0e-\u0c10\u0c12-\u0c28\u0c2a-\u0c33\u0c35-\u0c39\u0c3d\u0c58\u0c59\u0c60\u0c61\u0c85-\u0c8c\u0c8e-\u0c90\u0c92-\u0ca8\u0caa-\u0cb3\u0cb5-\u0cb9\u0cbd\u0cde\u0ce0\u0ce1\u0cf1\u0cf2\u0d05-\u0d0c\u0d0e-\u0d10\u0d12-\u0d3a\u0d3d\u0d4e\u0d60\u0d61\u0d7a-\u0d7f\u0d85-\u0d96\u0d9a-\u0db1\u0db3-\u0dbb\u0dbd\u0dc0-\u0dc6\u0e01-\u0e30\u0e32\u0e33\u0e40-\u0e46\u0e81\u0e82\u0e84\u0e87\u0e88\u0e8a\u0e8d\u0e94-\u0e97\u0e99-\u0e9f\u0ea1-\u0ea3\u0ea5\u0ea7\u0eaa\u0eab\u0ead-\u0eb0\u0eb2\u0eb3\u0ebd\u0ec0-\u0ec4\u0ec6\u0edc-\u0edf\u0f00\u0f40-\u0f47\u0f49-\u0f6c\u0f88-\u0f8c\u1000-\u102a\u103f\u1050-\u1055\u105a-\u105d\u1061\u1065\u1066\u106e-\u1070\u1075-\u1081\u108e\u10a0-\u10c5\u10c7\u10cd\u10d0-\u10fa\u10fc-\u1248\u124a-\u124d\u1250-\u1256\u1258\u125a-\u125d\u1260-\u1288\u128a-\u128d\u1290-\u12b0\u12b2-\u12b5\u12b8-\u12be\u12c0\u12c2-\u12c5\u12c8-\u12d6\u12d8-\u1310\u1312-\u1315\u1318-\u135a\u1380-\u138f\u13a0-\u13f4\u1401-\u166c\u166f-\u167f\u1681-\u169a\u16a0-\u16ea\u16ee-\u16f0\u1700-\u170c\u170e-\u1711\u1720-\u1731\u1740-\u1751\u1760-\u176c\u176e-\u1770\u1780-\u17b3\u17d7\u17dc\u1820-\u1877\u1880-\u18a8\u18aa\u18b0-\u18f5\u1900-\u191c\u1950-\u196d\u1970-\u1974\u1980-\u19ab\u19c1-\u19c7\u1a00-\u1a16\u1a20-\u1a54\u1aa7\u1b05-\u1b33\u1b45-\u1b4b\u1b83-\u1ba0\u1bae\u1baf\u1bba-\u1be5\u1c00-\u1c23\u1c4d-\u1c4f\u1c5a-\u1c7d\u1ce9-\u1cec\u1cee-\u1cf1\u1cf5\u1cf6\u1d00-\u1dbf\u1e00-\u1f15\u1f18-\u1f1d\u1f20-\u1f45\u1f48-\u1f4d\u1f50-\u1f57\u1f59\u1f5b\u1f5d\u1f5f-\u1f7d\u1f80-\u1fb4\u1fb6-\u1fbc\u1fbe\u1fc2-\u1fc4\u1fc6-\u1fcc\u1fd0-\u1fd3\u1fd6-\u1fdb\u1fe0-\u1fec\u1ff2-\u1ff4\u1ff6-\u1ffc\u2071\u207f\u2090-\u209c\u2102\u2107\u210a-\u2113\u2115\u2119-\u211d\u2124\u2126\u2128\u212a-\u212d\u212f-\u2139\u213c-\u213f\u2145-\u2149\u214e\u2160-\u2188\u2c00-\u2c2e\u2c30-\u2c5e\u2c60-\u2ce4\u2ceb-\u2cee\u2cf2\u2cf3\u2d00-\u2d25\u2d27\u2d2d\u2d30-\u2d67\u2d6f\u2d80-\u2d96\u2da0-\u2da6\u2da8-\u2dae\u2db0-\u2db6\u2db8-\u2dbe\u2dc0-\u2dc6\u2dc8-\u2dce\u2dd0-\u2dd6\u2dd8-\u2dde\u2e2f\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303c\u3041-\u3096\u309d-\u309f\u30a1-\u30fa\u30fc-\u30ff\u3105-\u312d\u3131-\u318e\u31a0-\u31ba\u31f0-\u31ff\u3400-\u4db5\u4e00-\u9fcc\ua000-\ua48c\ua4d0-\ua4fd\ua500-\ua60c\ua610-\ua61f\ua62a\ua62b\ua640-\ua66e\ua67f-\ua697\ua6a0-\ua6ef\ua717-\ua71f\ua722-\ua788\ua78b-\ua78e\ua790-\ua793\ua7a0-\ua7aa\ua7f8-\ua801\ua803-\ua805\ua807-\ua80a\ua80c-\ua822\ua840-\ua873\ua882-\ua8b3\ua8f2-\ua8f7\ua8fb\ua90a-\ua925\ua930-\ua946\ua960-\ua97c\ua984-\ua9b2\ua9cf\uaa00-\uaa28\uaa40-\uaa42\uaa44-\uaa4b\uaa60-\uaa76\uaa7a\uaa80-\uaaaf\uaab1\uaab5\uaab6\uaab9-\uaabd\uaac0\uaac2\uaadb-\uaadd\uaae0-\uaaea\uaaf2-\uaaf4\uab01-\uab06\uab09-\uab0e\uab11-\uab16\uab20-\uab26\uab28-\uab2e\uabc0-\uabe2\uac00-\ud7a3\ud7b0-\ud7c6\ud7cb-\ud7fb\uf900-\ufa6d\ufa70-\ufad9\ufb00-\ufb06\ufb13-\ufb17\ufb1d\ufb1f-\ufb28\ufb2a-\ufb36\ufb38-\ufb3c\ufb3e\ufb40\ufb41\ufb43\ufb44\ufb46-\ufbb1\ufbd3-\ufd3d\ufd50-\ufd8f\ufd92-\ufdc7\ufdf0-\ufdfb\ufe70-\ufe74\ufe76-\ufefc\uff21-\uff3a\uff41-\uff5a\uff66-\uffbe\uffc2-\uffc7\uffca-\uffcf\uffd2-\uffd7\uffda-\uffdc0-9\u0300-\u036f\u0483-\u0487\u0591-\u05bd\u05bf\u05c1\u05c2\u05c4\u05c5\u05c7\u0610-\u061a\u064b-\u0669\u0670\u06d6-\u06dc\u06df-\u06e4\u06e7\u06e8\u06ea-\u06ed\u06f0-\u06f9\u0711\u0730-\u074a\u07a6-\u07b0\u07c0-\u07c9\u07eb-\u07f3\u0816-\u0819\u081b-\u0823\u0825-\u0827\u0829-\u082d\u0859-\u085b\u08e4-\u08fe\u0900-\u0903\u093a-\u093c\u093e-\u094f\u0951-\u0957\u0962\u0963\u0966-\u096f\u0981-\u0983\u09bc\u09be-\u09c4\u09c7\u09c8\u09cb-\u09cd\u09d7\u09e2\u09e3\u09e6-\u09ef\u0a01-\u0a03\u0a3c\u0a3e-\u0a42\u0a47\u0a48\u0a4b-\u0a4d\u0a51\u0a66-\u0a71\u0a75\u0a81-\u0a83\u0abc\u0abe-\u0ac5\u0ac7-\u0ac9\u0acb-\u0acd\u0ae2\u0ae3\u0ae6-\u0aef\u0b01-\u0b03\u0b3c\u0b3e-\u0b44\u0b47\u0b48\u0b4b-\u0b4d\u0b56\u0b57\u0b62\u0b63\u0b66-\u0b6f\u0b82\u0bbe-\u0bc2\u0bc6-\u0bc8\u0bca-\u0bcd\u0bd7\u0be6-\u0bef\u0c01-\u0c03\u0c3e-\u0c44\u0c46-\u0c48\u0c4a-\u0c4d\u0c55\u0c56\u0c62\u0c63\u0c66-\u0c6f\u0c82\u0c83\u0cbc\u0cbe-\u0cc4\u0cc6-\u0cc8\u0cca-\u0ccd\u0cd5\u0cd6\u0ce2\u0ce3\u0ce6-\u0cef\u0d02\u0d03\u0d3e-\u0d44\u0d46-\u0d48\u0d4a-\u0d4d\u0d57\u0d62\u0d63\u0d66-\u0d6f\u0d82\u0d83\u0dca\u0dcf-\u0dd4\u0dd6\u0dd8-\u0ddf\u0df2\u0df3\u0e31\u0e34-\u0e3a\u0e47-\u0e4e\u0e50-\u0e59\u0eb1\u0eb4-\u0eb9\u0ebb\u0ebc\u0ec8-\u0ecd\u0ed0-\u0ed9\u0f18\u0f19\u0f20-\u0f29\u0f35\u0f37\u0f39\u0f3e\u0f3f\u0f71-\u0f84\u0f86\u0f87\u0f8d-\u0f97\u0f99-\u0fbc\u0fc6\u102b-\u103e\u1040-\u1049\u1056-\u1059\u105e-\u1060\u1062-\u1064\u1067-\u106d\u1071-\u1074\u1082-\u108d\u108f-\u109d\u135d-\u135f\u1712-\u1714\u1732-\u1734\u1752\u1753\u1772\u1773\u17b4-\u17d3\u17dd\u17e0-\u17e9\u180b-\u180d\u1810-\u1819\u18a9\u1920-\u192b\u1930-\u193b\u1946-\u194f\u19b0-\u19c0\u19c8\u19c9\u19d0-\u19d9\u1a17-\u1a1b\u1a55-\u1a5e\u1a60-\u1a7c\u1a7f-\u1a89\u1a90-\u1a99\u1b00-\u1b04\u1b34-\u1b44\u1b50-\u1b59\u1b6b-\u1b73\u1b80-\u1b82\u1ba1-\u1bad\u1bb0-\u1bb9\u1be6-\u1bf3\u1c24-\u1c37\u1c40-\u1c49\u1c50-\u1c59\u1cd0-\u1cd2\u1cd4-\u1ce8\u1ced\u1cf2-\u1cf4\u1dc0-\u1de6\u1dfc-\u1dff\u200c\u200d\u203f\u2040\u2054\u20d0-\u20dc\u20e1\u20e5-\u20f0\u2cef-\u2cf1\u2d7f\u2de0-\u2dff\u302a-\u302f\u3099\u309a\ua620-\ua629\ua66f\ua674-\ua67d\ua69f\ua6f0\ua6f1\ua802\ua806\ua80b\ua823-\ua827\ua880\ua881\ua8b4-\ua8c4\ua8d0-\ua8d9\ua8e0-\ua8f1\ua900-\ua909\ua926-\ua92d\ua947-\ua953\ua980-\ua983\ua9b3-\ua9c0\ua9d0-\ua9d9\uaa29-\uaa36\uaa43\uaa4c\uaa4d\uaa50-\uaa59\uaa7b\uaab0\uaab2-\uaab4\uaab7\uaab8\uaabe\uaabf\uaac1\uaaeb-\uaaef\uaaf5\uaaf6\uabe3-\uabea\uabec\uabed\uabf0-\uabf9\ufb1e\ufe00-\ufe0f\ufe20-\ufe26\ufe33\ufe34\ufe4d-\ufe4f\uff10-\uff19\uff3f]*$/);
43
+ export function computeKey(key, isArray, currentPath) {
44
+ const isIdentifierValid = validJSExpressionRegex.test(key);
45
+ // When an identifier is not a valid JS expression, we must use the bracket notation
46
+ if (!isIdentifierValid) {
47
+ key = `["${key}"]`;
48
+ }
49
+ if (isArray) {
50
+ if (currentPath === 'step') {
51
+ return `${currentPath}(${key})?`;
52
+ }
53
+ return `${currentPath}[${key}]`;
54
+ }
55
+ else {
56
+ if (currentPath) {
57
+ // We add a dot only when the identifier is valid
58
+ const separator = isIdentifierValid ? '.' : '';
59
+ return `${currentPath}${separator}${key}`;
60
+ }
61
+ else {
62
+ return key;
63
+ }
64
+ }
65
+ }
@@ -1,6 +1,6 @@
1
1
  export const OpenAPI = {
2
2
  BASE: '/api',
3
- VERSION: '1.22.0',
3
+ VERSION: '1.27.2',
4
4
  WITH_CREDENTIALS: false,
5
5
  CREDENTIALS: 'include',
6
6
  TOKEN: undefined,
package/gen/index.d.ts CHANGED
@@ -14,15 +14,18 @@ export type { EditSchedule } from './models/EditSchedule';
14
14
  export type { EditVariable } from './models/EditVariable';
15
15
  export type { EditWorkspaceUser } from './models/EditWorkspaceUser';
16
16
  export type { Flow } from './models/Flow';
17
+ export type { FlowMetadata } from './models/FlowMetadata';
17
18
  export type { FlowModule } from './models/FlowModule';
18
- export { FlowModuleValue } from './models/FlowModuleValue';
19
+ export type { FlowModuleValue } from './models/FlowModuleValue';
19
20
  export type { FlowPreview } from './models/FlowPreview';
20
21
  export type { FlowStatus } from './models/FlowStatus';
21
22
  export { FlowStatusModule } from './models/FlowStatusModule';
22
23
  export type { FlowValue } from './models/FlowValue';
24
+ export type { ForloopFlow } from './models/ForloopFlow';
23
25
  export { GlobalUserInfo } from './models/GlobalUserInfo';
24
26
  export type { Group } from './models/Group';
25
- export { InputTransform } from './models/InputTransform';
27
+ export type { InputTransform } from './models/InputTransform';
28
+ export type { JavascriptTransform } from './models/JavascriptTransform';
26
29
  export { Job } from './models/Job';
27
30
  export type { ListableVariable } from './models/ListableVariable';
28
31
  export type { Login } from './models/Login';
@@ -31,16 +34,22 @@ export type { NewSchedule } from './models/NewSchedule';
31
34
  export type { NewToken } from './models/NewToken';
32
35
  export type { NewUser } from './models/NewUser';
33
36
  export type { OpenFlow } from './models/OpenFlow';
37
+ export type { OpenFlowWPath } from './models/OpenFlowWPath';
38
+ export type { PathFlow } from './models/PathFlow';
39
+ export type { PathScript } from './models/PathScript';
34
40
  export { Preview } from './models/Preview';
35
41
  export { QueuedJob } from './models/QueuedJob';
42
+ export { RawScript } from './models/RawScript';
36
43
  export type { Resource } from './models/Resource';
37
44
  export type { ResourceType } from './models/ResourceType';
38
45
  export type { Schedule } from './models/Schedule';
39
46
  export { Script } from './models/Script';
40
47
  export type { ScriptArgs } from './models/ScriptArgs';
41
48
  export type { SlackToken } from './models/SlackToken';
49
+ export type { StaticTransform } from './models/StaticTransform';
42
50
  export type { TokenResponse } from './models/TokenResponse';
43
51
  export type { TruncatedToken } from './models/TruncatedToken';
52
+ export type { Usage } from './models/Usage';
44
53
  export type { User } from './models/User';
45
54
  export type { UserWorkspaceList } from './models/UserWorkspaceList';
46
55
  export type { WorkerPing } from './models/WorkerPing';
package/gen/index.js CHANGED
@@ -6,13 +6,12 @@ export { CancelablePromise, CancelError } from './core/CancelablePromise';
6
6
  export { OpenAPI } from './core/OpenAPI';
7
7
  export { AuditLog } from './models/AuditLog';
8
8
  export { CompletedJob } from './models/CompletedJob';
9
- export { FlowModuleValue } from './models/FlowModuleValue';
10
9
  export { FlowStatusModule } from './models/FlowStatusModule';
11
10
  export { GlobalUserInfo } from './models/GlobalUserInfo';
12
- export { InputTransform } from './models/InputTransform';
13
11
  export { Job } from './models/Job';
14
12
  export { Preview } from './models/Preview';
15
13
  export { QueuedJob } from './models/QueuedJob';
14
+ export { RawScript } from './models/RawScript';
16
15
  export { Script } from './models/Script';
17
16
  export { AdminService } from './services/AdminService';
18
17
  export { AuditService } from './services/AuditService';
@@ -8,7 +8,7 @@ export declare type CompletedJob = {
8
8
  created_by: string;
9
9
  created_at: string;
10
10
  started_at: string;
11
- duration: number;
11
+ duration_ms: number;
12
12
  success: boolean;
13
13
  script_path?: string;
14
14
  script_hash?: string;
@@ -1,13 +1,3 @@
1
- import type { FlowValue } from './FlowValue';
2
- export declare type Flow = {
3
- workspace_id?: string;
4
- path: string;
5
- summary: string;
6
- description?: string;
7
- value: FlowValue;
8
- edited_by: string;
9
- edited_at: string;
10
- archived: boolean;
11
- schema?: any;
12
- extra_perms: Record<string, boolean>;
13
- };
1
+ import type { FlowMetadata } from './FlowMetadata';
2
+ import type { OpenFlow } from './OpenFlow';
3
+ export declare type Flow = (OpenFlow & FlowMetadata);
@@ -0,0 +1,9 @@
1
+ export declare type FlowMetadata = {
2
+ workspace_id?: string;
3
+ path: string;
4
+ edited_by: string;
5
+ edited_at: string;
6
+ archived: boolean;
7
+ extra_perms: any;
8
+ additionalProperties?: boolean;
9
+ };
@@ -0,0 +1,4 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ export {};
@@ -1,22 +1,5 @@
1
- import type { FlowValue } from './FlowValue';
2
- import type { InputTransform } from './InputTransform';
3
- export declare type FlowModuleValue = {
4
- value?: FlowValue;
5
- iterator?: InputTransform;
6
- path?: string;
7
- content?: string;
8
- language?: FlowModuleValue.language;
9
- type: FlowModuleValue.type;
10
- };
11
- export declare namespace FlowModuleValue {
12
- enum language {
13
- DENO = "deno",
14
- PYTHON3 = "python3"
15
- }
16
- enum type {
17
- SCRIPT = "script",
18
- FLOW = "flow",
19
- RAWSCRIPT = "rawscript",
20
- FORLOOPFLOW = "forloopflow"
21
- }
22
- }
1
+ import type { ForloopFlow } from './ForloopFlow';
2
+ import type { PathFlow } from './PathFlow';
3
+ import type { PathScript } from './PathScript';
4
+ import type { RawScript } from './RawScript';
5
+ export declare type FlowModuleValue = (RawScript | PathScript | ForloopFlow | PathFlow);
@@ -1,18 +1,4 @@
1
1
  /* istanbul ignore file */
2
2
  /* tslint:disable */
3
3
  /* eslint-disable */
4
- export var FlowModuleValue;
5
- (function (FlowModuleValue) {
6
- let language;
7
- (function (language) {
8
- language["DENO"] = "deno";
9
- language["PYTHON3"] = "python3";
10
- })(language = FlowModuleValue.language || (FlowModuleValue.language = {}));
11
- let type;
12
- (function (type) {
13
- type["SCRIPT"] = "script";
14
- type["FLOW"] = "flow";
15
- type["RAWSCRIPT"] = "rawscript";
16
- type["FORLOOPFLOW"] = "forloopflow";
17
- })(type = FlowModuleValue.type || (FlowModuleValue.type = {}));
18
- })(FlowModuleValue || (FlowModuleValue = {}));
4
+ export {};
@@ -0,0 +1,8 @@
1
+ import type { FlowValue } from './FlowValue';
2
+ import type { InputTransform } from './InputTransform';
3
+ export declare type ForloopFlow = {
4
+ value: FlowValue;
5
+ iterator: InputTransform;
6
+ skip_failures: boolean;
7
+ type: 'forloopflow';
8
+ };
@@ -0,0 +1,4 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ export {};
@@ -1,12 +1,3 @@
1
- export declare type InputTransform = {
2
- type?: InputTransform.type;
3
- step?: number;
4
- value?: any;
5
- expr?: string;
6
- };
7
- export declare namespace InputTransform {
8
- enum type {
9
- STATIC = "static",
10
- JAVASCRIPT = "javascript"
11
- }
12
- }
1
+ import type { JavascriptTransform } from './JavascriptTransform';
2
+ import type { StaticTransform } from './StaticTransform';
3
+ export declare type InputTransform = (StaticTransform | JavascriptTransform);
@@ -1,11 +1,4 @@
1
1
  /* istanbul ignore file */
2
2
  /* tslint:disable */
3
3
  /* eslint-disable */
4
- export var InputTransform;
5
- (function (InputTransform) {
6
- let type;
7
- (function (type) {
8
- type["STATIC"] = "static";
9
- type["JAVASCRIPT"] = "javascript";
10
- })(type = InputTransform.type || (InputTransform.type = {}));
11
- })(InputTransform || (InputTransform = {}));
4
+ export {};
@@ -0,0 +1,4 @@
1
+ export declare type JavascriptTransform = {
2
+ expr: string;
3
+ type: 'javascript';
4
+ };
@@ -0,0 +1,4 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ export {};
@@ -3,7 +3,7 @@ export declare type MainArgSignature = {
3
3
  star_kwargs?: boolean;
4
4
  args: Array<{
5
5
  name: string;
6
- typ: ('str' | 'float' | 'int' | 'bool' | 'email' | 'unknown' | {
6
+ typ: ('str' | 'float' | 'int' | 'bool' | 'email' | 'unknown' | 'bytes' | 'dict' | 'datetime' | 'sql' | {
7
7
  resource: string;
8
8
  } | {
9
9
  list: 'str' | 'float' | 'int' | 'email';
@@ -6,4 +6,5 @@ export declare type NewSchedule = {
6
6
  script_path: string;
7
7
  is_flow: boolean;
8
8
  args: ScriptArgs;
9
+ enabled?: boolean;
9
10
  };
@@ -0,0 +1,4 @@
1
+ import type { OpenFlow } from './OpenFlow';
2
+ export declare type OpenFlowWPath = (OpenFlow & {
3
+ path: string;
4
+ });
@@ -0,0 +1,4 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ export {};
@@ -0,0 +1,4 @@
1
+ export declare type PathFlow = {
2
+ path?: string;
3
+ type: 'flow';
4
+ };
@@ -0,0 +1,4 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ export {};
@@ -0,0 +1,4 @@
1
+ export declare type PathScript = {
2
+ path: string;
3
+ type: 'script';
4
+ };
@@ -0,0 +1,4 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ export {};
@@ -0,0 +1,12 @@
1
+ export declare type RawScript = {
2
+ content: string;
3
+ language: RawScript.language;
4
+ path?: string;
5
+ type: 'rawscript';
6
+ };
7
+ export declare namespace RawScript {
8
+ enum language {
9
+ DENO = "deno",
10
+ PYTHON3 = "python3"
11
+ }
12
+ }
@@ -0,0 +1,11 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ export var RawScript;
5
+ (function (RawScript) {
6
+ let language;
7
+ (function (language) {
8
+ language["DENO"] = "deno";
9
+ language["PYTHON3"] = "python3";
10
+ })(language = RawScript.language || (RawScript.language = {}));
11
+ })(RawScript || (RawScript = {}));
@@ -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
+ };