@lessly/sdk-app 64.0.0 → 64.2.0
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.
- package/dist/_types/gen/client.gen.d.ts +12 -1
- package/dist/_types/gen/types.gen.d.ts +250 -13
- package/dist/_types/gen/workflow/index.d.ts +1 -1
- package/dist/_types/gen/workflow/queryOptions.gen.d.ts +21 -1
- package/dist/{chunk-PRFCIXWX.js → chunk-6MZMAF4Y.js} +83 -2
- package/dist/{chunk-PRFCIXWX.js.map → chunk-6MZMAF4Y.js.map} +1 -1
- package/dist/index.cjs +86 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +6 -1
- package/dist/index.js.map +1 -1
- package/dist/playground/index.cjs.map +1 -1
- package/dist/playground/index.js +1 -1
- package/dist/workflow/index.cjs +25 -0
- package/dist/workflow/index.cjs.map +1 -1
- package/dist/workflow/index.js +21 -1
- package/dist/workflow/index.js.map +1 -1
- package/package.json +2 -2
- package/src/gen/bindings.gen.ts +81 -0
- package/src/gen/client.gen.ts +21 -0
- package/src/gen/manifest.gen.ts +5 -0
- package/src/gen/types.gen.ts +261 -13
- package/src/gen/workflow/index.ts +1 -1
- package/src/gen/workflow/queryOptions.gen.ts +33 -0
package/dist/playground/index.js
CHANGED
package/dist/workflow/index.cjs
CHANGED
|
@@ -65,14 +65,30 @@ var workflowDefinitionValidateQueryOptions = (sdk, input) => ({
|
|
|
65
65
|
queryKey: ["workflow", "definition", "validate", input],
|
|
66
66
|
queryFn: () => sdk["workflow"]["definition"]["validate"](input)
|
|
67
67
|
});
|
|
68
|
+
var workflowDependencyListQueryOptions = (sdk, input) => ({
|
|
69
|
+
queryKey: ["workflow", "dependency", "list", input],
|
|
70
|
+
queryFn: () => sdk["workflow"]["dependency"]["list"](input)
|
|
71
|
+
});
|
|
68
72
|
var workflowGrantListQueryOptions = (sdk, input) => ({
|
|
69
73
|
queryKey: ["workflow", "grant", "list", input],
|
|
70
74
|
queryFn: () => sdk["workflow"]["grant"]["list"](input)
|
|
71
75
|
});
|
|
76
|
+
var workflowHealthListQueryOptions = (sdk, input) => ({
|
|
77
|
+
queryKey: ["workflow", "health", "list", input],
|
|
78
|
+
queryFn: () => sdk["workflow"]["health"]["list"](input)
|
|
79
|
+
});
|
|
72
80
|
var workflowHealthPingQueryOptions = (sdk, input) => ({
|
|
73
81
|
queryKey: ["workflow", "health", "ping", input],
|
|
74
82
|
queryFn: () => sdk["workflow"]["health"]["ping"](input)
|
|
75
83
|
});
|
|
84
|
+
var workflowKillswitchGetQueryOptions = (sdk, input) => ({
|
|
85
|
+
queryKey: ["workflow", "killswitch", "get", input],
|
|
86
|
+
queryFn: () => sdk["workflow"]["killswitch"]["get"](input)
|
|
87
|
+
});
|
|
88
|
+
var workflowKillswitchSetMutationOptions = (sdk) => ({
|
|
89
|
+
mutationKey: ["workflow", "killswitch", "set"],
|
|
90
|
+
mutationFn: (input) => sdk["workflow"]["killswitch"]["set"](input)
|
|
91
|
+
});
|
|
76
92
|
var workflowRunCancelMutationOptions = (sdk) => ({
|
|
77
93
|
mutationKey: ["workflow", "run", "cancel"],
|
|
78
94
|
mutationFn: (input) => sdk["workflow"]["run"]["cancel"](input)
|
|
@@ -89,6 +105,10 @@ var workflowRunReplayMutationOptions = (sdk) => ({
|
|
|
89
105
|
mutationKey: ["workflow", "run", "replay"],
|
|
90
106
|
mutationFn: (input) => sdk["workflow"]["run"]["replay"](input)
|
|
91
107
|
});
|
|
108
|
+
var workflowRunReplayAllMutationOptions = (sdk) => ({
|
|
109
|
+
mutationKey: ["workflow", "run-replay", "all"],
|
|
110
|
+
mutationFn: (input) => sdk["workflow"]["run-replay"]["all"](input)
|
|
111
|
+
});
|
|
92
112
|
var workflowRunStartMutationOptions = (sdk) => ({
|
|
93
113
|
mutationKey: ["workflow", "run", "start"],
|
|
94
114
|
mutationFn: (input) => sdk["workflow"]["run"]["start"](input)
|
|
@@ -118,11 +138,16 @@ exports.workflowDefinitionListQueryOptions = workflowDefinitionListQueryOptions;
|
|
|
118
138
|
exports.workflowDefinitionPublishMutationOptions = workflowDefinitionPublishMutationOptions;
|
|
119
139
|
exports.workflowDefinitionUpdateMutationOptions = workflowDefinitionUpdateMutationOptions;
|
|
120
140
|
exports.workflowDefinitionValidateQueryOptions = workflowDefinitionValidateQueryOptions;
|
|
141
|
+
exports.workflowDependencyListQueryOptions = workflowDependencyListQueryOptions;
|
|
121
142
|
exports.workflowGrantListQueryOptions = workflowGrantListQueryOptions;
|
|
143
|
+
exports.workflowHealthListQueryOptions = workflowHealthListQueryOptions;
|
|
122
144
|
exports.workflowHealthPingQueryOptions = workflowHealthPingQueryOptions;
|
|
145
|
+
exports.workflowKillswitchGetQueryOptions = workflowKillswitchGetQueryOptions;
|
|
146
|
+
exports.workflowKillswitchSetMutationOptions = workflowKillswitchSetMutationOptions;
|
|
123
147
|
exports.workflowRunCancelMutationOptions = workflowRunCancelMutationOptions;
|
|
124
148
|
exports.workflowRunGetQueryOptions = workflowRunGetQueryOptions;
|
|
125
149
|
exports.workflowRunListQueryOptions = workflowRunListQueryOptions;
|
|
150
|
+
exports.workflowRunReplayAllMutationOptions = workflowRunReplayAllMutationOptions;
|
|
126
151
|
exports.workflowRunReplayMutationOptions = workflowRunReplayMutationOptions;
|
|
127
152
|
exports.workflowRunStartMutationOptions = workflowRunStartMutationOptions;
|
|
128
153
|
exports.workflowVersionGetQueryOptions = workflowVersionGetQueryOptions;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/gen/workflow/queryOptions.gen.ts"],"names":[],"mappings":"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","file":"index.cjs","sourcesContent":["// AUTOGENERATED by scripts/generate.ts — do not edit.\nimport type { GeneratedClient } from '../client.gen';\nimport type {\n WorkflowCapabilityGetInput,\n WorkflowCapabilityGetOutput,\n WorkflowCapabilityListInput,\n WorkflowCapabilityListOutput,\n WorkflowConfigDeleteInput,\n WorkflowConfigListInput,\n WorkflowConfigListOutput,\n WorkflowConfigSetInput,\n WorkflowDefinitionCreateInput,\n WorkflowDefinitionDisableInput,\n WorkflowDefinitionDryrunInput,\n WorkflowDefinitionDryrunOutput,\n WorkflowDefinitionEnableInput,\n WorkflowDefinitionExportInput,\n WorkflowDefinitionExportOutput,\n WorkflowDefinitionGetInput,\n WorkflowDefinitionGetOutput,\n WorkflowDefinitionImportInput,\n WorkflowDefinitionListInput,\n WorkflowDefinitionListOutput,\n WorkflowDefinitionPublishInput,\n WorkflowDefinitionUpdateInput,\n WorkflowDefinitionValidateInput,\n WorkflowDefinitionValidateOutput,\n WorkflowGrantListInput,\n WorkflowGrantListOutput,\n WorkflowHealthPingInput,\n WorkflowHealthPingOutput,\n WorkflowRunCancelInput,\n WorkflowRunGetInput,\n WorkflowRunGetOutput,\n WorkflowRunListInput,\n WorkflowRunListOutput,\n WorkflowRunReplayInput,\n WorkflowRunStartInput,\n WorkflowVersionGetInput,\n WorkflowVersionGetOutput,\n WorkflowVersionListInput,\n WorkflowVersionListOutput,\n} from '../types.gen';\n\nexport const workflowCapabilityGetQueryOptions = (sdk: GeneratedClient, input: WorkflowCapabilityGetInput) => ({\n queryKey: ['workflow', 'capability', 'get', input] as const,\n queryFn: () => sdk['workflow']['capability']['get'](input),\n});\n\nexport const workflowCapabilityListQueryOptions = (sdk: GeneratedClient, input: WorkflowCapabilityListInput) => ({\n queryKey: ['workflow', 'capability', 'list', input] as const,\n queryFn: () => sdk['workflow']['capability']['list'](input),\n});\n\nexport const workflowConfigDeleteMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['workflow', 'config', 'delete'],\n mutationFn: (input: WorkflowConfigDeleteInput) => sdk['workflow']['config']['delete'](input),\n});\n\nexport const workflowConfigListQueryOptions = (sdk: GeneratedClient, input: WorkflowConfigListInput) => ({\n queryKey: ['workflow', 'config', 'list', input] as const,\n queryFn: () => sdk['workflow']['config']['list'](input),\n});\n\nexport const workflowConfigSetMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['workflow', 'config', 'set'],\n mutationFn: (input: WorkflowConfigSetInput) => sdk['workflow']['config']['set'](input),\n});\n\nexport const workflowDefinitionCreateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['workflow', 'definition', 'create'],\n mutationFn: (input: WorkflowDefinitionCreateInput) => sdk['workflow']['definition']['create'](input),\n});\n\nexport const workflowDefinitionDisableMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['workflow', 'definition', 'disable'],\n mutationFn: (input: WorkflowDefinitionDisableInput) => sdk['workflow']['definition']['disable'](input),\n});\n\nexport const workflowDefinitionDryrunQueryOptions = (sdk: GeneratedClient, input: WorkflowDefinitionDryrunInput) => ({\n queryKey: ['workflow', 'definition', 'dryrun', input] as const,\n queryFn: () => sdk['workflow']['definition']['dryrun'](input),\n});\n\nexport const workflowDefinitionEnableMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['workflow', 'definition', 'enable'],\n mutationFn: (input: WorkflowDefinitionEnableInput) => sdk['workflow']['definition']['enable'](input),\n});\n\nexport const workflowDefinitionExportQueryOptions = (sdk: GeneratedClient, input: WorkflowDefinitionExportInput) => ({\n queryKey: ['workflow', 'definition', 'export', input] as const,\n queryFn: () => sdk['workflow']['definition']['export'](input),\n});\n\nexport const workflowDefinitionGetQueryOptions = (sdk: GeneratedClient, input: WorkflowDefinitionGetInput) => ({\n queryKey: ['workflow', 'definition', 'get', input] as const,\n queryFn: () => sdk['workflow']['definition']['get'](input),\n});\n\nexport const workflowDefinitionImportMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['workflow', 'definition', 'import'],\n mutationFn: (input: WorkflowDefinitionImportInput) => sdk['workflow']['definition']['import'](input),\n});\n\nexport const workflowDefinitionListQueryOptions = (sdk: GeneratedClient, input: WorkflowDefinitionListInput) => ({\n queryKey: ['workflow', 'definition', 'list', input] as const,\n queryFn: () => sdk['workflow']['definition']['list'](input),\n});\n\nexport const workflowDefinitionPublishMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['workflow', 'definition', 'publish'],\n mutationFn: (input: WorkflowDefinitionPublishInput) => sdk['workflow']['definition']['publish'](input),\n});\n\nexport const workflowDefinitionUpdateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['workflow', 'definition', 'update'],\n mutationFn: (input: WorkflowDefinitionUpdateInput) => sdk['workflow']['definition']['update'](input),\n});\n\nexport const workflowDefinitionValidateQueryOptions = (sdk: GeneratedClient, input: WorkflowDefinitionValidateInput) => ({\n queryKey: ['workflow', 'definition', 'validate', input] as const,\n queryFn: () => sdk['workflow']['definition']['validate'](input),\n});\n\nexport const workflowGrantListQueryOptions = (sdk: GeneratedClient, input: WorkflowGrantListInput) => ({\n queryKey: ['workflow', 'grant', 'list', input] as const,\n queryFn: () => sdk['workflow']['grant']['list'](input),\n});\n\nexport const workflowHealthPingQueryOptions = (sdk: GeneratedClient, input: WorkflowHealthPingInput) => ({\n queryKey: ['workflow', 'health', 'ping', input] as const,\n queryFn: () => sdk['workflow']['health']['ping'](input),\n});\n\nexport const workflowRunCancelMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['workflow', 'run', 'cancel'],\n mutationFn: (input: WorkflowRunCancelInput) => sdk['workflow']['run']['cancel'](input),\n});\n\nexport const workflowRunGetQueryOptions = (sdk: GeneratedClient, input: WorkflowRunGetInput) => ({\n queryKey: ['workflow', 'run', 'get', input] as const,\n queryFn: () => sdk['workflow']['run']['get'](input),\n});\n\nexport const workflowRunListQueryOptions = (sdk: GeneratedClient, input: WorkflowRunListInput) => ({\n queryKey: ['workflow', 'run', 'list', input] as const,\n queryFn: () => sdk['workflow']['run']['list'](input),\n});\n\nexport const workflowRunReplayMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['workflow', 'run', 'replay'],\n mutationFn: (input: WorkflowRunReplayInput) => sdk['workflow']['run']['replay'](input),\n});\n\nexport const workflowRunStartMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['workflow', 'run', 'start'],\n mutationFn: (input: WorkflowRunStartInput) => sdk['workflow']['run']['start'](input),\n});\n\nexport const workflowVersionGetQueryOptions = (sdk: GeneratedClient, input: WorkflowVersionGetInput) => ({\n queryKey: ['workflow', 'version', 'get', input] as const,\n queryFn: () => sdk['workflow']['version']['get'](input),\n});\n\nexport const workflowVersionListQueryOptions = (sdk: GeneratedClient, input: WorkflowVersionListInput) => ({\n queryKey: ['workflow', 'version', 'list', input] as const,\n queryFn: () => sdk['workflow']['version']['list'](input),\n});\n"]}
|
|
1
|
+
{"version":3,"sources":["../../src/gen/workflow/queryOptions.gen.ts"],"names":[],"mappings":"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","file":"index.cjs","sourcesContent":["// AUTOGENERATED by scripts/generate.ts — do not edit.\nimport type { GeneratedClient } from '../client.gen';\nimport type {\n WorkflowCapabilityGetInput,\n WorkflowCapabilityGetOutput,\n WorkflowCapabilityListInput,\n WorkflowCapabilityListOutput,\n WorkflowConfigDeleteInput,\n WorkflowConfigListInput,\n WorkflowConfigListOutput,\n WorkflowConfigSetInput,\n WorkflowDefinitionCreateInput,\n WorkflowDefinitionDisableInput,\n WorkflowDefinitionDryrunInput,\n WorkflowDefinitionDryrunOutput,\n WorkflowDefinitionEnableInput,\n WorkflowDefinitionExportInput,\n WorkflowDefinitionExportOutput,\n WorkflowDefinitionGetInput,\n WorkflowDefinitionGetOutput,\n WorkflowDefinitionImportInput,\n WorkflowDefinitionListInput,\n WorkflowDefinitionListOutput,\n WorkflowDefinitionPublishInput,\n WorkflowDefinitionUpdateInput,\n WorkflowDefinitionValidateInput,\n WorkflowDefinitionValidateOutput,\n WorkflowDependencyListInput,\n WorkflowDependencyListOutput,\n WorkflowGrantListInput,\n WorkflowGrantListOutput,\n WorkflowHealthListInput,\n WorkflowHealthListOutput,\n WorkflowHealthPingInput,\n WorkflowHealthPingOutput,\n WorkflowKillswitchGetInput,\n WorkflowKillswitchGetOutput,\n WorkflowKillswitchSetInput,\n WorkflowRunCancelInput,\n WorkflowRunGetInput,\n WorkflowRunGetOutput,\n WorkflowRunListInput,\n WorkflowRunListOutput,\n WorkflowRunReplayAllInput,\n WorkflowRunReplayInput,\n WorkflowRunStartInput,\n WorkflowVersionGetInput,\n WorkflowVersionGetOutput,\n WorkflowVersionListInput,\n WorkflowVersionListOutput,\n} from '../types.gen';\n\nexport const workflowCapabilityGetQueryOptions = (sdk: GeneratedClient, input: WorkflowCapabilityGetInput) => ({\n queryKey: ['workflow', 'capability', 'get', input] as const,\n queryFn: () => sdk['workflow']['capability']['get'](input),\n});\n\nexport const workflowCapabilityListQueryOptions = (sdk: GeneratedClient, input: WorkflowCapabilityListInput) => ({\n queryKey: ['workflow', 'capability', 'list', input] as const,\n queryFn: () => sdk['workflow']['capability']['list'](input),\n});\n\nexport const workflowConfigDeleteMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['workflow', 'config', 'delete'],\n mutationFn: (input: WorkflowConfigDeleteInput) => sdk['workflow']['config']['delete'](input),\n});\n\nexport const workflowConfigListQueryOptions = (sdk: GeneratedClient, input: WorkflowConfigListInput) => ({\n queryKey: ['workflow', 'config', 'list', input] as const,\n queryFn: () => sdk['workflow']['config']['list'](input),\n});\n\nexport const workflowConfigSetMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['workflow', 'config', 'set'],\n mutationFn: (input: WorkflowConfigSetInput) => sdk['workflow']['config']['set'](input),\n});\n\nexport const workflowDefinitionCreateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['workflow', 'definition', 'create'],\n mutationFn: (input: WorkflowDefinitionCreateInput) => sdk['workflow']['definition']['create'](input),\n});\n\nexport const workflowDefinitionDisableMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['workflow', 'definition', 'disable'],\n mutationFn: (input: WorkflowDefinitionDisableInput) => sdk['workflow']['definition']['disable'](input),\n});\n\nexport const workflowDefinitionDryrunQueryOptions = (sdk: GeneratedClient, input: WorkflowDefinitionDryrunInput) => ({\n queryKey: ['workflow', 'definition', 'dryrun', input] as const,\n queryFn: () => sdk['workflow']['definition']['dryrun'](input),\n});\n\nexport const workflowDefinitionEnableMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['workflow', 'definition', 'enable'],\n mutationFn: (input: WorkflowDefinitionEnableInput) => sdk['workflow']['definition']['enable'](input),\n});\n\nexport const workflowDefinitionExportQueryOptions = (sdk: GeneratedClient, input: WorkflowDefinitionExportInput) => ({\n queryKey: ['workflow', 'definition', 'export', input] as const,\n queryFn: () => sdk['workflow']['definition']['export'](input),\n});\n\nexport const workflowDefinitionGetQueryOptions = (sdk: GeneratedClient, input: WorkflowDefinitionGetInput) => ({\n queryKey: ['workflow', 'definition', 'get', input] as const,\n queryFn: () => sdk['workflow']['definition']['get'](input),\n});\n\nexport const workflowDefinitionImportMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['workflow', 'definition', 'import'],\n mutationFn: (input: WorkflowDefinitionImportInput) => sdk['workflow']['definition']['import'](input),\n});\n\nexport const workflowDefinitionListQueryOptions = (sdk: GeneratedClient, input: WorkflowDefinitionListInput) => ({\n queryKey: ['workflow', 'definition', 'list', input] as const,\n queryFn: () => sdk['workflow']['definition']['list'](input),\n});\n\nexport const workflowDefinitionPublishMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['workflow', 'definition', 'publish'],\n mutationFn: (input: WorkflowDefinitionPublishInput) => sdk['workflow']['definition']['publish'](input),\n});\n\nexport const workflowDefinitionUpdateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['workflow', 'definition', 'update'],\n mutationFn: (input: WorkflowDefinitionUpdateInput) => sdk['workflow']['definition']['update'](input),\n});\n\nexport const workflowDefinitionValidateQueryOptions = (sdk: GeneratedClient, input: WorkflowDefinitionValidateInput) => ({\n queryKey: ['workflow', 'definition', 'validate', input] as const,\n queryFn: () => sdk['workflow']['definition']['validate'](input),\n});\n\nexport const workflowDependencyListQueryOptions = (sdk: GeneratedClient, input: WorkflowDependencyListInput) => ({\n queryKey: ['workflow', 'dependency', 'list', input] as const,\n queryFn: () => sdk['workflow']['dependency']['list'](input),\n});\n\nexport const workflowGrantListQueryOptions = (sdk: GeneratedClient, input: WorkflowGrantListInput) => ({\n queryKey: ['workflow', 'grant', 'list', input] as const,\n queryFn: () => sdk['workflow']['grant']['list'](input),\n});\n\nexport const workflowHealthListQueryOptions = (sdk: GeneratedClient, input: WorkflowHealthListInput) => ({\n queryKey: ['workflow', 'health', 'list', input] as const,\n queryFn: () => sdk['workflow']['health']['list'](input),\n});\n\nexport const workflowHealthPingQueryOptions = (sdk: GeneratedClient, input: WorkflowHealthPingInput) => ({\n queryKey: ['workflow', 'health', 'ping', input] as const,\n queryFn: () => sdk['workflow']['health']['ping'](input),\n});\n\nexport const workflowKillswitchGetQueryOptions = (sdk: GeneratedClient, input: WorkflowKillswitchGetInput) => ({\n queryKey: ['workflow', 'killswitch', 'get', input] as const,\n queryFn: () => sdk['workflow']['killswitch']['get'](input),\n});\n\nexport const workflowKillswitchSetMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['workflow', 'killswitch', 'set'],\n mutationFn: (input: WorkflowKillswitchSetInput) => sdk['workflow']['killswitch']['set'](input),\n});\n\nexport const workflowRunCancelMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['workflow', 'run', 'cancel'],\n mutationFn: (input: WorkflowRunCancelInput) => sdk['workflow']['run']['cancel'](input),\n});\n\nexport const workflowRunGetQueryOptions = (sdk: GeneratedClient, input: WorkflowRunGetInput) => ({\n queryKey: ['workflow', 'run', 'get', input] as const,\n queryFn: () => sdk['workflow']['run']['get'](input),\n});\n\nexport const workflowRunListQueryOptions = (sdk: GeneratedClient, input: WorkflowRunListInput) => ({\n queryKey: ['workflow', 'run', 'list', input] as const,\n queryFn: () => sdk['workflow']['run']['list'](input),\n});\n\nexport const workflowRunReplayMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['workflow', 'run', 'replay'],\n mutationFn: (input: WorkflowRunReplayInput) => sdk['workflow']['run']['replay'](input),\n});\n\nexport const workflowRunReplayAllMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['workflow', 'run-replay', 'all'],\n mutationFn: (input: WorkflowRunReplayAllInput) => sdk['workflow']['run-replay']['all'](input),\n});\n\nexport const workflowRunStartMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['workflow', 'run', 'start'],\n mutationFn: (input: WorkflowRunStartInput) => sdk['workflow']['run']['start'](input),\n});\n\nexport const workflowVersionGetQueryOptions = (sdk: GeneratedClient, input: WorkflowVersionGetInput) => ({\n queryKey: ['workflow', 'version', 'get', input] as const,\n queryFn: () => sdk['workflow']['version']['get'](input),\n});\n\nexport const workflowVersionListQueryOptions = (sdk: GeneratedClient, input: WorkflowVersionListInput) => ({\n queryKey: ['workflow', 'version', 'list', input] as const,\n queryFn: () => sdk['workflow']['version']['list'](input),\n});\n"]}
|
package/dist/workflow/index.js
CHANGED
|
@@ -63,14 +63,30 @@ var workflowDefinitionValidateQueryOptions = (sdk, input) => ({
|
|
|
63
63
|
queryKey: ["workflow", "definition", "validate", input],
|
|
64
64
|
queryFn: () => sdk["workflow"]["definition"]["validate"](input)
|
|
65
65
|
});
|
|
66
|
+
var workflowDependencyListQueryOptions = (sdk, input) => ({
|
|
67
|
+
queryKey: ["workflow", "dependency", "list", input],
|
|
68
|
+
queryFn: () => sdk["workflow"]["dependency"]["list"](input)
|
|
69
|
+
});
|
|
66
70
|
var workflowGrantListQueryOptions = (sdk, input) => ({
|
|
67
71
|
queryKey: ["workflow", "grant", "list", input],
|
|
68
72
|
queryFn: () => sdk["workflow"]["grant"]["list"](input)
|
|
69
73
|
});
|
|
74
|
+
var workflowHealthListQueryOptions = (sdk, input) => ({
|
|
75
|
+
queryKey: ["workflow", "health", "list", input],
|
|
76
|
+
queryFn: () => sdk["workflow"]["health"]["list"](input)
|
|
77
|
+
});
|
|
70
78
|
var workflowHealthPingQueryOptions = (sdk, input) => ({
|
|
71
79
|
queryKey: ["workflow", "health", "ping", input],
|
|
72
80
|
queryFn: () => sdk["workflow"]["health"]["ping"](input)
|
|
73
81
|
});
|
|
82
|
+
var workflowKillswitchGetQueryOptions = (sdk, input) => ({
|
|
83
|
+
queryKey: ["workflow", "killswitch", "get", input],
|
|
84
|
+
queryFn: () => sdk["workflow"]["killswitch"]["get"](input)
|
|
85
|
+
});
|
|
86
|
+
var workflowKillswitchSetMutationOptions = (sdk) => ({
|
|
87
|
+
mutationKey: ["workflow", "killswitch", "set"],
|
|
88
|
+
mutationFn: (input) => sdk["workflow"]["killswitch"]["set"](input)
|
|
89
|
+
});
|
|
74
90
|
var workflowRunCancelMutationOptions = (sdk) => ({
|
|
75
91
|
mutationKey: ["workflow", "run", "cancel"],
|
|
76
92
|
mutationFn: (input) => sdk["workflow"]["run"]["cancel"](input)
|
|
@@ -87,6 +103,10 @@ var workflowRunReplayMutationOptions = (sdk) => ({
|
|
|
87
103
|
mutationKey: ["workflow", "run", "replay"],
|
|
88
104
|
mutationFn: (input) => sdk["workflow"]["run"]["replay"](input)
|
|
89
105
|
});
|
|
106
|
+
var workflowRunReplayAllMutationOptions = (sdk) => ({
|
|
107
|
+
mutationKey: ["workflow", "run-replay", "all"],
|
|
108
|
+
mutationFn: (input) => sdk["workflow"]["run-replay"]["all"](input)
|
|
109
|
+
});
|
|
90
110
|
var workflowRunStartMutationOptions = (sdk) => ({
|
|
91
111
|
mutationKey: ["workflow", "run", "start"],
|
|
92
112
|
mutationFn: (input) => sdk["workflow"]["run"]["start"](input)
|
|
@@ -100,6 +120,6 @@ var workflowVersionListQueryOptions = (sdk, input) => ({
|
|
|
100
120
|
queryFn: () => sdk["workflow"]["version"]["list"](input)
|
|
101
121
|
});
|
|
102
122
|
|
|
103
|
-
export { workflowCapabilityGetQueryOptions, workflowCapabilityListQueryOptions, workflowConfigDeleteMutationOptions, workflowConfigListQueryOptions, workflowConfigSetMutationOptions, workflowDefinitionCreateMutationOptions, workflowDefinitionDisableMutationOptions, workflowDefinitionDryrunQueryOptions, workflowDefinitionEnableMutationOptions, workflowDefinitionExportQueryOptions, workflowDefinitionGetQueryOptions, workflowDefinitionImportMutationOptions, workflowDefinitionListQueryOptions, workflowDefinitionPublishMutationOptions, workflowDefinitionUpdateMutationOptions, workflowDefinitionValidateQueryOptions, workflowGrantListQueryOptions, workflowHealthPingQueryOptions, workflowRunCancelMutationOptions, workflowRunGetQueryOptions, workflowRunListQueryOptions, workflowRunReplayMutationOptions, workflowRunStartMutationOptions, workflowVersionGetQueryOptions, workflowVersionListQueryOptions };
|
|
123
|
+
export { workflowCapabilityGetQueryOptions, workflowCapabilityListQueryOptions, workflowConfigDeleteMutationOptions, workflowConfigListQueryOptions, workflowConfigSetMutationOptions, workflowDefinitionCreateMutationOptions, workflowDefinitionDisableMutationOptions, workflowDefinitionDryrunQueryOptions, workflowDefinitionEnableMutationOptions, workflowDefinitionExportQueryOptions, workflowDefinitionGetQueryOptions, workflowDefinitionImportMutationOptions, workflowDefinitionListQueryOptions, workflowDefinitionPublishMutationOptions, workflowDefinitionUpdateMutationOptions, workflowDefinitionValidateQueryOptions, workflowDependencyListQueryOptions, workflowGrantListQueryOptions, workflowHealthListQueryOptions, workflowHealthPingQueryOptions, workflowKillswitchGetQueryOptions, workflowKillswitchSetMutationOptions, workflowRunCancelMutationOptions, workflowRunGetQueryOptions, workflowRunListQueryOptions, workflowRunReplayAllMutationOptions, workflowRunReplayMutationOptions, workflowRunStartMutationOptions, workflowVersionGetQueryOptions, workflowVersionListQueryOptions };
|
|
104
124
|
//# sourceMappingURL=index.js.map
|
|
105
125
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/gen/workflow/queryOptions.gen.ts"],"names":[],"mappings":"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","file":"index.js","sourcesContent":["// AUTOGENERATED by scripts/generate.ts — do not edit.\nimport type { GeneratedClient } from '../client.gen';\nimport type {\n WorkflowCapabilityGetInput,\n WorkflowCapabilityGetOutput,\n WorkflowCapabilityListInput,\n WorkflowCapabilityListOutput,\n WorkflowConfigDeleteInput,\n WorkflowConfigListInput,\n WorkflowConfigListOutput,\n WorkflowConfigSetInput,\n WorkflowDefinitionCreateInput,\n WorkflowDefinitionDisableInput,\n WorkflowDefinitionDryrunInput,\n WorkflowDefinitionDryrunOutput,\n WorkflowDefinitionEnableInput,\n WorkflowDefinitionExportInput,\n WorkflowDefinitionExportOutput,\n WorkflowDefinitionGetInput,\n WorkflowDefinitionGetOutput,\n WorkflowDefinitionImportInput,\n WorkflowDefinitionListInput,\n WorkflowDefinitionListOutput,\n WorkflowDefinitionPublishInput,\n WorkflowDefinitionUpdateInput,\n WorkflowDefinitionValidateInput,\n WorkflowDefinitionValidateOutput,\n WorkflowGrantListInput,\n WorkflowGrantListOutput,\n WorkflowHealthPingInput,\n WorkflowHealthPingOutput,\n WorkflowRunCancelInput,\n WorkflowRunGetInput,\n WorkflowRunGetOutput,\n WorkflowRunListInput,\n WorkflowRunListOutput,\n WorkflowRunReplayInput,\n WorkflowRunStartInput,\n WorkflowVersionGetInput,\n WorkflowVersionGetOutput,\n WorkflowVersionListInput,\n WorkflowVersionListOutput,\n} from '../types.gen';\n\nexport const workflowCapabilityGetQueryOptions = (sdk: GeneratedClient, input: WorkflowCapabilityGetInput) => ({\n queryKey: ['workflow', 'capability', 'get', input] as const,\n queryFn: () => sdk['workflow']['capability']['get'](input),\n});\n\nexport const workflowCapabilityListQueryOptions = (sdk: GeneratedClient, input: WorkflowCapabilityListInput) => ({\n queryKey: ['workflow', 'capability', 'list', input] as const,\n queryFn: () => sdk['workflow']['capability']['list'](input),\n});\n\nexport const workflowConfigDeleteMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['workflow', 'config', 'delete'],\n mutationFn: (input: WorkflowConfigDeleteInput) => sdk['workflow']['config']['delete'](input),\n});\n\nexport const workflowConfigListQueryOptions = (sdk: GeneratedClient, input: WorkflowConfigListInput) => ({\n queryKey: ['workflow', 'config', 'list', input] as const,\n queryFn: () => sdk['workflow']['config']['list'](input),\n});\n\nexport const workflowConfigSetMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['workflow', 'config', 'set'],\n mutationFn: (input: WorkflowConfigSetInput) => sdk['workflow']['config']['set'](input),\n});\n\nexport const workflowDefinitionCreateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['workflow', 'definition', 'create'],\n mutationFn: (input: WorkflowDefinitionCreateInput) => sdk['workflow']['definition']['create'](input),\n});\n\nexport const workflowDefinitionDisableMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['workflow', 'definition', 'disable'],\n mutationFn: (input: WorkflowDefinitionDisableInput) => sdk['workflow']['definition']['disable'](input),\n});\n\nexport const workflowDefinitionDryrunQueryOptions = (sdk: GeneratedClient, input: WorkflowDefinitionDryrunInput) => ({\n queryKey: ['workflow', 'definition', 'dryrun', input] as const,\n queryFn: () => sdk['workflow']['definition']['dryrun'](input),\n});\n\nexport const workflowDefinitionEnableMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['workflow', 'definition', 'enable'],\n mutationFn: (input: WorkflowDefinitionEnableInput) => sdk['workflow']['definition']['enable'](input),\n});\n\nexport const workflowDefinitionExportQueryOptions = (sdk: GeneratedClient, input: WorkflowDefinitionExportInput) => ({\n queryKey: ['workflow', 'definition', 'export', input] as const,\n queryFn: () => sdk['workflow']['definition']['export'](input),\n});\n\nexport const workflowDefinitionGetQueryOptions = (sdk: GeneratedClient, input: WorkflowDefinitionGetInput) => ({\n queryKey: ['workflow', 'definition', 'get', input] as const,\n queryFn: () => sdk['workflow']['definition']['get'](input),\n});\n\nexport const workflowDefinitionImportMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['workflow', 'definition', 'import'],\n mutationFn: (input: WorkflowDefinitionImportInput) => sdk['workflow']['definition']['import'](input),\n});\n\nexport const workflowDefinitionListQueryOptions = (sdk: GeneratedClient, input: WorkflowDefinitionListInput) => ({\n queryKey: ['workflow', 'definition', 'list', input] as const,\n queryFn: () => sdk['workflow']['definition']['list'](input),\n});\n\nexport const workflowDefinitionPublishMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['workflow', 'definition', 'publish'],\n mutationFn: (input: WorkflowDefinitionPublishInput) => sdk['workflow']['definition']['publish'](input),\n});\n\nexport const workflowDefinitionUpdateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['workflow', 'definition', 'update'],\n mutationFn: (input: WorkflowDefinitionUpdateInput) => sdk['workflow']['definition']['update'](input),\n});\n\nexport const workflowDefinitionValidateQueryOptions = (sdk: GeneratedClient, input: WorkflowDefinitionValidateInput) => ({\n queryKey: ['workflow', 'definition', 'validate', input] as const,\n queryFn: () => sdk['workflow']['definition']['validate'](input),\n});\n\nexport const workflowGrantListQueryOptions = (sdk: GeneratedClient, input: WorkflowGrantListInput) => ({\n queryKey: ['workflow', 'grant', 'list', input] as const,\n queryFn: () => sdk['workflow']['grant']['list'](input),\n});\n\nexport const workflowHealthPingQueryOptions = (sdk: GeneratedClient, input: WorkflowHealthPingInput) => ({\n queryKey: ['workflow', 'health', 'ping', input] as const,\n queryFn: () => sdk['workflow']['health']['ping'](input),\n});\n\nexport const workflowRunCancelMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['workflow', 'run', 'cancel'],\n mutationFn: (input: WorkflowRunCancelInput) => sdk['workflow']['run']['cancel'](input),\n});\n\nexport const workflowRunGetQueryOptions = (sdk: GeneratedClient, input: WorkflowRunGetInput) => ({\n queryKey: ['workflow', 'run', 'get', input] as const,\n queryFn: () => sdk['workflow']['run']['get'](input),\n});\n\nexport const workflowRunListQueryOptions = (sdk: GeneratedClient, input: WorkflowRunListInput) => ({\n queryKey: ['workflow', 'run', 'list', input] as const,\n queryFn: () => sdk['workflow']['run']['list'](input),\n});\n\nexport const workflowRunReplayMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['workflow', 'run', 'replay'],\n mutationFn: (input: WorkflowRunReplayInput) => sdk['workflow']['run']['replay'](input),\n});\n\nexport const workflowRunStartMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['workflow', 'run', 'start'],\n mutationFn: (input: WorkflowRunStartInput) => sdk['workflow']['run']['start'](input),\n});\n\nexport const workflowVersionGetQueryOptions = (sdk: GeneratedClient, input: WorkflowVersionGetInput) => ({\n queryKey: ['workflow', 'version', 'get', input] as const,\n queryFn: () => sdk['workflow']['version']['get'](input),\n});\n\nexport const workflowVersionListQueryOptions = (sdk: GeneratedClient, input: WorkflowVersionListInput) => ({\n queryKey: ['workflow', 'version', 'list', input] as const,\n queryFn: () => sdk['workflow']['version']['list'](input),\n});\n"]}
|
|
1
|
+
{"version":3,"sources":["../../src/gen/workflow/queryOptions.gen.ts"],"names":[],"mappings":"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","file":"index.js","sourcesContent":["// AUTOGENERATED by scripts/generate.ts — do not edit.\nimport type { GeneratedClient } from '../client.gen';\nimport type {\n WorkflowCapabilityGetInput,\n WorkflowCapabilityGetOutput,\n WorkflowCapabilityListInput,\n WorkflowCapabilityListOutput,\n WorkflowConfigDeleteInput,\n WorkflowConfigListInput,\n WorkflowConfigListOutput,\n WorkflowConfigSetInput,\n WorkflowDefinitionCreateInput,\n WorkflowDefinitionDisableInput,\n WorkflowDefinitionDryrunInput,\n WorkflowDefinitionDryrunOutput,\n WorkflowDefinitionEnableInput,\n WorkflowDefinitionExportInput,\n WorkflowDefinitionExportOutput,\n WorkflowDefinitionGetInput,\n WorkflowDefinitionGetOutput,\n WorkflowDefinitionImportInput,\n WorkflowDefinitionListInput,\n WorkflowDefinitionListOutput,\n WorkflowDefinitionPublishInput,\n WorkflowDefinitionUpdateInput,\n WorkflowDefinitionValidateInput,\n WorkflowDefinitionValidateOutput,\n WorkflowDependencyListInput,\n WorkflowDependencyListOutput,\n WorkflowGrantListInput,\n WorkflowGrantListOutput,\n WorkflowHealthListInput,\n WorkflowHealthListOutput,\n WorkflowHealthPingInput,\n WorkflowHealthPingOutput,\n WorkflowKillswitchGetInput,\n WorkflowKillswitchGetOutput,\n WorkflowKillswitchSetInput,\n WorkflowRunCancelInput,\n WorkflowRunGetInput,\n WorkflowRunGetOutput,\n WorkflowRunListInput,\n WorkflowRunListOutput,\n WorkflowRunReplayAllInput,\n WorkflowRunReplayInput,\n WorkflowRunStartInput,\n WorkflowVersionGetInput,\n WorkflowVersionGetOutput,\n WorkflowVersionListInput,\n WorkflowVersionListOutput,\n} from '../types.gen';\n\nexport const workflowCapabilityGetQueryOptions = (sdk: GeneratedClient, input: WorkflowCapabilityGetInput) => ({\n queryKey: ['workflow', 'capability', 'get', input] as const,\n queryFn: () => sdk['workflow']['capability']['get'](input),\n});\n\nexport const workflowCapabilityListQueryOptions = (sdk: GeneratedClient, input: WorkflowCapabilityListInput) => ({\n queryKey: ['workflow', 'capability', 'list', input] as const,\n queryFn: () => sdk['workflow']['capability']['list'](input),\n});\n\nexport const workflowConfigDeleteMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['workflow', 'config', 'delete'],\n mutationFn: (input: WorkflowConfigDeleteInput) => sdk['workflow']['config']['delete'](input),\n});\n\nexport const workflowConfigListQueryOptions = (sdk: GeneratedClient, input: WorkflowConfigListInput) => ({\n queryKey: ['workflow', 'config', 'list', input] as const,\n queryFn: () => sdk['workflow']['config']['list'](input),\n});\n\nexport const workflowConfigSetMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['workflow', 'config', 'set'],\n mutationFn: (input: WorkflowConfigSetInput) => sdk['workflow']['config']['set'](input),\n});\n\nexport const workflowDefinitionCreateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['workflow', 'definition', 'create'],\n mutationFn: (input: WorkflowDefinitionCreateInput) => sdk['workflow']['definition']['create'](input),\n});\n\nexport const workflowDefinitionDisableMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['workflow', 'definition', 'disable'],\n mutationFn: (input: WorkflowDefinitionDisableInput) => sdk['workflow']['definition']['disable'](input),\n});\n\nexport const workflowDefinitionDryrunQueryOptions = (sdk: GeneratedClient, input: WorkflowDefinitionDryrunInput) => ({\n queryKey: ['workflow', 'definition', 'dryrun', input] as const,\n queryFn: () => sdk['workflow']['definition']['dryrun'](input),\n});\n\nexport const workflowDefinitionEnableMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['workflow', 'definition', 'enable'],\n mutationFn: (input: WorkflowDefinitionEnableInput) => sdk['workflow']['definition']['enable'](input),\n});\n\nexport const workflowDefinitionExportQueryOptions = (sdk: GeneratedClient, input: WorkflowDefinitionExportInput) => ({\n queryKey: ['workflow', 'definition', 'export', input] as const,\n queryFn: () => sdk['workflow']['definition']['export'](input),\n});\n\nexport const workflowDefinitionGetQueryOptions = (sdk: GeneratedClient, input: WorkflowDefinitionGetInput) => ({\n queryKey: ['workflow', 'definition', 'get', input] as const,\n queryFn: () => sdk['workflow']['definition']['get'](input),\n});\n\nexport const workflowDefinitionImportMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['workflow', 'definition', 'import'],\n mutationFn: (input: WorkflowDefinitionImportInput) => sdk['workflow']['definition']['import'](input),\n});\n\nexport const workflowDefinitionListQueryOptions = (sdk: GeneratedClient, input: WorkflowDefinitionListInput) => ({\n queryKey: ['workflow', 'definition', 'list', input] as const,\n queryFn: () => sdk['workflow']['definition']['list'](input),\n});\n\nexport const workflowDefinitionPublishMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['workflow', 'definition', 'publish'],\n mutationFn: (input: WorkflowDefinitionPublishInput) => sdk['workflow']['definition']['publish'](input),\n});\n\nexport const workflowDefinitionUpdateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['workflow', 'definition', 'update'],\n mutationFn: (input: WorkflowDefinitionUpdateInput) => sdk['workflow']['definition']['update'](input),\n});\n\nexport const workflowDefinitionValidateQueryOptions = (sdk: GeneratedClient, input: WorkflowDefinitionValidateInput) => ({\n queryKey: ['workflow', 'definition', 'validate', input] as const,\n queryFn: () => sdk['workflow']['definition']['validate'](input),\n});\n\nexport const workflowDependencyListQueryOptions = (sdk: GeneratedClient, input: WorkflowDependencyListInput) => ({\n queryKey: ['workflow', 'dependency', 'list', input] as const,\n queryFn: () => sdk['workflow']['dependency']['list'](input),\n});\n\nexport const workflowGrantListQueryOptions = (sdk: GeneratedClient, input: WorkflowGrantListInput) => ({\n queryKey: ['workflow', 'grant', 'list', input] as const,\n queryFn: () => sdk['workflow']['grant']['list'](input),\n});\n\nexport const workflowHealthListQueryOptions = (sdk: GeneratedClient, input: WorkflowHealthListInput) => ({\n queryKey: ['workflow', 'health', 'list', input] as const,\n queryFn: () => sdk['workflow']['health']['list'](input),\n});\n\nexport const workflowHealthPingQueryOptions = (sdk: GeneratedClient, input: WorkflowHealthPingInput) => ({\n queryKey: ['workflow', 'health', 'ping', input] as const,\n queryFn: () => sdk['workflow']['health']['ping'](input),\n});\n\nexport const workflowKillswitchGetQueryOptions = (sdk: GeneratedClient, input: WorkflowKillswitchGetInput) => ({\n queryKey: ['workflow', 'killswitch', 'get', input] as const,\n queryFn: () => sdk['workflow']['killswitch']['get'](input),\n});\n\nexport const workflowKillswitchSetMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['workflow', 'killswitch', 'set'],\n mutationFn: (input: WorkflowKillswitchSetInput) => sdk['workflow']['killswitch']['set'](input),\n});\n\nexport const workflowRunCancelMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['workflow', 'run', 'cancel'],\n mutationFn: (input: WorkflowRunCancelInput) => sdk['workflow']['run']['cancel'](input),\n});\n\nexport const workflowRunGetQueryOptions = (sdk: GeneratedClient, input: WorkflowRunGetInput) => ({\n queryKey: ['workflow', 'run', 'get', input] as const,\n queryFn: () => sdk['workflow']['run']['get'](input),\n});\n\nexport const workflowRunListQueryOptions = (sdk: GeneratedClient, input: WorkflowRunListInput) => ({\n queryKey: ['workflow', 'run', 'list', input] as const,\n queryFn: () => sdk['workflow']['run']['list'](input),\n});\n\nexport const workflowRunReplayMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['workflow', 'run', 'replay'],\n mutationFn: (input: WorkflowRunReplayInput) => sdk['workflow']['run']['replay'](input),\n});\n\nexport const workflowRunReplayAllMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['workflow', 'run-replay', 'all'],\n mutationFn: (input: WorkflowRunReplayAllInput) => sdk['workflow']['run-replay']['all'](input),\n});\n\nexport const workflowRunStartMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['workflow', 'run', 'start'],\n mutationFn: (input: WorkflowRunStartInput) => sdk['workflow']['run']['start'](input),\n});\n\nexport const workflowVersionGetQueryOptions = (sdk: GeneratedClient, input: WorkflowVersionGetInput) => ({\n queryKey: ['workflow', 'version', 'get', input] as const,\n queryFn: () => sdk['workflow']['version']['get'](input),\n});\n\nexport const workflowVersionListQueryOptions = (sdk: GeneratedClient, input: WorkflowVersionListInput) => ({\n queryKey: ['workflow', 'version', 'list', input] as const,\n queryFn: () => sdk['workflow']['version']['list'](input),\n});\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lessly/sdk-app",
|
|
3
|
-
"version": "64.
|
|
3
|
+
"version": "64.2.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"engines": {
|
|
@@ -219,5 +219,5 @@
|
|
|
219
219
|
}
|
|
220
220
|
}
|
|
221
221
|
},
|
|
222
|
-
"sdkContentHash": "sha256:
|
|
222
|
+
"sdkContentHash": "sha256:9baa394f0d88d7461a17232e218d83d2e3277d56170cd48d61525e0be2fe3da9"
|
|
223
223
|
}
|
package/src/gen/bindings.gen.ts
CHANGED
|
@@ -10761,6 +10761,21 @@ export const bindings: BindingsMap = {
|
|
|
10761
10761
|
"readOnly": true
|
|
10762
10762
|
}
|
|
10763
10763
|
},
|
|
10764
|
+
"dependency": {
|
|
10765
|
+
"list": {
|
|
10766
|
+
"level": "read",
|
|
10767
|
+
"method": "GET",
|
|
10768
|
+
"operationKey": "workflow_dependency_list",
|
|
10769
|
+
"params": [
|
|
10770
|
+
{
|
|
10771
|
+
"in": "query",
|
|
10772
|
+
"name": "toolkit"
|
|
10773
|
+
}
|
|
10774
|
+
],
|
|
10775
|
+
"path": "/workflow/health/dependencies",
|
|
10776
|
+
"readOnly": true
|
|
10777
|
+
}
|
|
10778
|
+
},
|
|
10764
10779
|
"grant": {
|
|
10765
10780
|
"list": {
|
|
10766
10781
|
"level": "read",
|
|
@@ -10777,6 +10792,27 @@ export const bindings: BindingsMap = {
|
|
|
10777
10792
|
}
|
|
10778
10793
|
},
|
|
10779
10794
|
"health": {
|
|
10795
|
+
"list": {
|
|
10796
|
+
"level": "read",
|
|
10797
|
+
"method": "GET",
|
|
10798
|
+
"operationKey": "workflow_health_list",
|
|
10799
|
+
"params": [
|
|
10800
|
+
{
|
|
10801
|
+
"in": "query",
|
|
10802
|
+
"name": "workflow_id"
|
|
10803
|
+
},
|
|
10804
|
+
{
|
|
10805
|
+
"in": "query",
|
|
10806
|
+
"name": "cursor"
|
|
10807
|
+
},
|
|
10808
|
+
{
|
|
10809
|
+
"in": "query",
|
|
10810
|
+
"name": "limit"
|
|
10811
|
+
}
|
|
10812
|
+
],
|
|
10813
|
+
"path": "/workflow/health/list",
|
|
10814
|
+
"readOnly": true
|
|
10815
|
+
},
|
|
10780
10816
|
"ping": {
|
|
10781
10817
|
"level": "read",
|
|
10782
10818
|
"method": "GET",
|
|
@@ -10785,6 +10821,28 @@ export const bindings: BindingsMap = {
|
|
|
10785
10821
|
"readOnly": true
|
|
10786
10822
|
}
|
|
10787
10823
|
},
|
|
10824
|
+
"killswitch": {
|
|
10825
|
+
"get": {
|
|
10826
|
+
"level": "read",
|
|
10827
|
+
"method": "GET",
|
|
10828
|
+
"operationKey": "workflow_killswitch_get",
|
|
10829
|
+
"path": "/workflow/killswitch",
|
|
10830
|
+
"readOnly": true
|
|
10831
|
+
},
|
|
10832
|
+
"set": {
|
|
10833
|
+
"level": "write",
|
|
10834
|
+
"method": "POST",
|
|
10835
|
+
"operationKey": "workflow_killswitch_set",
|
|
10836
|
+
"params": [
|
|
10837
|
+
{
|
|
10838
|
+
"in": "body",
|
|
10839
|
+
"name": "on"
|
|
10840
|
+
}
|
|
10841
|
+
],
|
|
10842
|
+
"path": "/workflow/killswitch",
|
|
10843
|
+
"readOnly": false
|
|
10844
|
+
}
|
|
10845
|
+
},
|
|
10788
10846
|
"run": {
|
|
10789
10847
|
"cancel": {
|
|
10790
10848
|
"level": "write",
|
|
@@ -10876,6 +10934,29 @@ export const bindings: BindingsMap = {
|
|
|
10876
10934
|
"readOnly": false
|
|
10877
10935
|
}
|
|
10878
10936
|
},
|
|
10937
|
+
"run-replay": {
|
|
10938
|
+
"all": {
|
|
10939
|
+
"level": "write",
|
|
10940
|
+
"method": "POST",
|
|
10941
|
+
"operationKey": "workflow_run_replay_all",
|
|
10942
|
+
"params": [
|
|
10943
|
+
{
|
|
10944
|
+
"in": "body",
|
|
10945
|
+
"name": "workflow_id"
|
|
10946
|
+
},
|
|
10947
|
+
{
|
|
10948
|
+
"in": "body",
|
|
10949
|
+
"name": "status"
|
|
10950
|
+
},
|
|
10951
|
+
{
|
|
10952
|
+
"in": "body",
|
|
10953
|
+
"name": "limit"
|
|
10954
|
+
}
|
|
10955
|
+
],
|
|
10956
|
+
"path": "/workflow/runs/replay-all",
|
|
10957
|
+
"readOnly": false
|
|
10958
|
+
}
|
|
10959
|
+
},
|
|
10879
10960
|
"version": {
|
|
10880
10961
|
"get": {
|
|
10881
10962
|
"level": "read",
|
package/src/gen/client.gen.ts
CHANGED
|
@@ -1149,16 +1149,26 @@ import type {
|
|
|
1149
1149
|
WorkflowDefinitionUpdateOutput,
|
|
1150
1150
|
WorkflowDefinitionValidateInput,
|
|
1151
1151
|
WorkflowDefinitionValidateOutput,
|
|
1152
|
+
WorkflowDependencyListInput,
|
|
1153
|
+
WorkflowDependencyListOutput,
|
|
1152
1154
|
WorkflowGrantListInput,
|
|
1153
1155
|
WorkflowGrantListOutput,
|
|
1156
|
+
WorkflowHealthListInput,
|
|
1157
|
+
WorkflowHealthListOutput,
|
|
1154
1158
|
WorkflowHealthPingInput,
|
|
1155
1159
|
WorkflowHealthPingOutput,
|
|
1160
|
+
WorkflowKillswitchGetInput,
|
|
1161
|
+
WorkflowKillswitchGetOutput,
|
|
1162
|
+
WorkflowKillswitchSetInput,
|
|
1163
|
+
WorkflowKillswitchSetOutput,
|
|
1156
1164
|
WorkflowRunCancelInput,
|
|
1157
1165
|
WorkflowRunCancelOutput,
|
|
1158
1166
|
WorkflowRunGetInput,
|
|
1159
1167
|
WorkflowRunGetOutput,
|
|
1160
1168
|
WorkflowRunListInput,
|
|
1161
1169
|
WorkflowRunListOutput,
|
|
1170
|
+
WorkflowRunReplayAllInput,
|
|
1171
|
+
WorkflowRunReplayAllOutput,
|
|
1162
1172
|
WorkflowRunReplayInput,
|
|
1163
1173
|
WorkflowRunReplayOutput,
|
|
1164
1174
|
WorkflowRunStartInput,
|
|
@@ -2215,12 +2225,20 @@ export interface GeneratedClient {
|
|
|
2215
2225
|
update: ((input: WorkflowDefinitionUpdateInput) => Promise<WorkflowDefinitionUpdateOutput>) & Operation;
|
|
2216
2226
|
validate: ((input: WorkflowDefinitionValidateInput) => Promise<WorkflowDefinitionValidateOutput>) & Operation;
|
|
2217
2227
|
};
|
|
2228
|
+
dependency: {
|
|
2229
|
+
list: ((input: WorkflowDependencyListInput) => Promise<WorkflowDependencyListOutput>) & Operation;
|
|
2230
|
+
};
|
|
2218
2231
|
grant: {
|
|
2219
2232
|
list: ((input: WorkflowGrantListInput) => Promise<WorkflowGrantListOutput>) & Operation;
|
|
2220
2233
|
};
|
|
2221
2234
|
health: {
|
|
2235
|
+
list: ((input: WorkflowHealthListInput) => Promise<WorkflowHealthListOutput>) & Operation;
|
|
2222
2236
|
ping: ((input: WorkflowHealthPingInput) => Promise<WorkflowHealthPingOutput>) & Operation;
|
|
2223
2237
|
};
|
|
2238
|
+
killswitch: {
|
|
2239
|
+
get: ((input: WorkflowKillswitchGetInput) => Promise<WorkflowKillswitchGetOutput>) & Operation;
|
|
2240
|
+
set: ((input: WorkflowKillswitchSetInput) => Promise<WorkflowKillswitchSetOutput>) & Operation;
|
|
2241
|
+
};
|
|
2224
2242
|
run: {
|
|
2225
2243
|
cancel: ((input: WorkflowRunCancelInput) => Promise<WorkflowRunCancelOutput>) & Operation;
|
|
2226
2244
|
get: ((input: WorkflowRunGetInput) => Promise<WorkflowRunGetOutput>) & Operation;
|
|
@@ -2228,6 +2246,9 @@ export interface GeneratedClient {
|
|
|
2228
2246
|
replay: ((input: WorkflowRunReplayInput) => Promise<WorkflowRunReplayOutput>) & Operation;
|
|
2229
2247
|
start: ((input: WorkflowRunStartInput) => Promise<WorkflowRunStartOutput>) & Operation;
|
|
2230
2248
|
};
|
|
2249
|
+
'run-replay': {
|
|
2250
|
+
all: ((input: WorkflowRunReplayAllInput) => Promise<WorkflowRunReplayAllOutput>) & Operation;
|
|
2251
|
+
};
|
|
2231
2252
|
version: {
|
|
2232
2253
|
get: ((input: WorkflowVersionGetInput) => Promise<WorkflowVersionGetOutput>) & Operation;
|
|
2233
2254
|
list: ((input: WorkflowVersionListInput) => Promise<WorkflowVersionListOutput>) & Operation;
|
package/src/gen/manifest.gen.ts
CHANGED
|
@@ -578,12 +578,17 @@ export const operations: Record<string, ToolLevel> = {
|
|
|
578
578
|
'workflow_definition_publish': 'write',
|
|
579
579
|
'workflow_definition_update': 'write',
|
|
580
580
|
'workflow_definition_validate': 'read',
|
|
581
|
+
'workflow_dependency_list': 'read',
|
|
581
582
|
'workflow_grant_list': 'read',
|
|
583
|
+
'workflow_health_list': 'read',
|
|
582
584
|
'workflow_health_ping': 'read',
|
|
585
|
+
'workflow_killswitch_get': 'read',
|
|
586
|
+
'workflow_killswitch_set': 'write',
|
|
583
587
|
'workflow_run_cancel': 'write',
|
|
584
588
|
'workflow_run_get': 'read',
|
|
585
589
|
'workflow_run_list': 'read',
|
|
586
590
|
'workflow_run_replay': 'write',
|
|
591
|
+
'workflow_run_replay_all': 'write',
|
|
587
592
|
'workflow_run_start': 'write',
|
|
588
593
|
'workflow_version_get': 'read',
|
|
589
594
|
'workflow_version_list': 'read',
|