@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.
@@ -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),