@lessly/sdk-app 64.1.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 +5 -1
- package/dist/_types/gen/types.gen.d.ts +191 -8
- package/dist/_types/gen/workflow/index.d.ts +1 -1
- package/dist/_types/gen/workflow/queryOptions.gen.d.ts +9 -1
- package/dist/{chunk-E5DOALAH.js → chunk-6MZMAF4Y.js} +38 -2
- package/dist/{chunk-E5DOALAH.js.map → chunk-6MZMAF4Y.js.map} +1 -1
- package/dist/index.cjs +38 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +3 -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 +10 -0
- package/dist/workflow/index.cjs.map +1 -1
- package/dist/workflow/index.js +9 -1
- package/dist/workflow/index.js.map +1 -1
- package/package.json +2 -2
- package/src/gen/bindings.gen.ts +36 -0
- package/src/gen/client.gen.ts +8 -0
- package/src/gen/manifest.gen.ts +2 -0
- package/src/gen/types.gen.ts +195 -8
- package/src/gen/workflow/index.ts +1 -1
- package/src/gen/workflow/queryOptions.gen.ts +14 -0
|
@@ -25,8 +25,12 @@ import type {
|
|
|
25
25
|
WorkflowDefinitionUpdateInput,
|
|
26
26
|
WorkflowDefinitionValidateInput,
|
|
27
27
|
WorkflowDefinitionValidateOutput,
|
|
28
|
+
WorkflowDependencyListInput,
|
|
29
|
+
WorkflowDependencyListOutput,
|
|
28
30
|
WorkflowGrantListInput,
|
|
29
31
|
WorkflowGrantListOutput,
|
|
32
|
+
WorkflowHealthListInput,
|
|
33
|
+
WorkflowHealthListOutput,
|
|
30
34
|
WorkflowHealthPingInput,
|
|
31
35
|
WorkflowHealthPingOutput,
|
|
32
36
|
WorkflowKillswitchGetInput,
|
|
@@ -126,11 +130,21 @@ export const workflowDefinitionValidateQueryOptions = (sdk: GeneratedClient, inp
|
|
|
126
130
|
queryFn: () => sdk['workflow']['definition']['validate'](input),
|
|
127
131
|
});
|
|
128
132
|
|
|
133
|
+
export const workflowDependencyListQueryOptions = (sdk: GeneratedClient, input: WorkflowDependencyListInput) => ({
|
|
134
|
+
queryKey: ['workflow', 'dependency', 'list', input] as const,
|
|
135
|
+
queryFn: () => sdk['workflow']['dependency']['list'](input),
|
|
136
|
+
});
|
|
137
|
+
|
|
129
138
|
export const workflowGrantListQueryOptions = (sdk: GeneratedClient, input: WorkflowGrantListInput) => ({
|
|
130
139
|
queryKey: ['workflow', 'grant', 'list', input] as const,
|
|
131
140
|
queryFn: () => sdk['workflow']['grant']['list'](input),
|
|
132
141
|
});
|
|
133
142
|
|
|
143
|
+
export const workflowHealthListQueryOptions = (sdk: GeneratedClient, input: WorkflowHealthListInput) => ({
|
|
144
|
+
queryKey: ['workflow', 'health', 'list', input] as const,
|
|
145
|
+
queryFn: () => sdk['workflow']['health']['list'](input),
|
|
146
|
+
});
|
|
147
|
+
|
|
134
148
|
export const workflowHealthPingQueryOptions = (sdk: GeneratedClient, input: WorkflowHealthPingInput) => ({
|
|
135
149
|
queryKey: ['workflow', 'health', 'ping', input] as const,
|
|
136
150
|
queryFn: () => sdk['workflow']['health']['ping'](input),
|