@lessly/sdk-app 63.6.0 → 63.8.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 +72 -1
- package/dist/_types/gen/manifest.gen.d.ts +1 -1
- package/dist/_types/gen/playground/connect.gen.d.ts +3 -0
- package/dist/_types/gen/playground/index.d.ts +3 -0
- package/dist/_types/gen/playground/queryOptions.gen.d.ts +62 -0
- package/dist/_types/gen/types.gen.d.ts +913 -0
- package/dist/_types/gen/workflow/index.d.ts +2 -0
- package/dist/_types/gen/workflow/queryOptions.gen.d.ts +98 -0
- package/dist/chunk-ETSAJJIN.js +10902 -0
- package/dist/chunk-ETSAJJIN.js.map +1 -0
- package/dist/index.cjs +676 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +85 -10299
- package/dist/index.js.map +1 -1
- package/dist/playground/index.cjs +96 -0
- package/dist/playground/index.cjs.map +1 -0
- package/dist/playground/index.d.cts +1 -0
- package/dist/playground/index.d.ts +1 -0
- package/dist/playground/index.js +70 -0
- package/dist/playground/index.js.map +1 -0
- package/dist/workflow/index.cjs +126 -0
- package/dist/workflow/index.cjs.map +1 -0
- package/dist/workflow/index.d.cts +1 -0
- package/dist/workflow/index.d.ts +1 -0
- package/dist/workflow/index.js +101 -0
- package/dist/workflow/index.js.map +1 -0
- package/package.json +22 -2
- package/src/gen/bindings.gen.ts +602 -1
- package/src/gen/client.gen.ts +149 -0
- package/src/gen/manifest.gen.ts +83 -2
- package/src/gen/playground/connect.gen.ts +9 -0
- package/src/gen/playground/index.ts +4 -0
- package/src/gen/playground/queryOptions.gen.ts +105 -0
- package/src/gen/types.gen.ts +1004 -0
- package/src/gen/workflow/index.ts +3 -0
- package/src/gen/workflow/queryOptions.gen.ts +161 -0
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './queryOptions.gen.js';
|
|
2
|
+
export type { WorkflowCapabilityGetInput, WorkflowCapabilityGetOutput, WorkflowCapabilityListInput, WorkflowCapabilityListOutput, WorkflowConfigDeleteInput, WorkflowConfigDeleteOutput, WorkflowConfigListInput, WorkflowConfigListOutput, WorkflowConfigSetInput, WorkflowConfigSetOutput, WorkflowDefinitionCreateInput, WorkflowDefinitionCreateOutput, WorkflowDefinitionDisableInput, WorkflowDefinitionDisableOutput, WorkflowDefinitionDryrunInput, WorkflowDefinitionDryrunOutput, WorkflowDefinitionEnableInput, WorkflowDefinitionEnableOutput, WorkflowDefinitionExportInput, WorkflowDefinitionExportOutput, WorkflowDefinitionGetInput, WorkflowDefinitionGetOutput, WorkflowDefinitionImportInput, WorkflowDefinitionImportOutput, WorkflowDefinitionListInput, WorkflowDefinitionListOutput, WorkflowDefinitionPublishInput, WorkflowDefinitionPublishOutput, WorkflowDefinitionUpdateInput, WorkflowDefinitionUpdateOutput, WorkflowDefinitionValidateInput, WorkflowDefinitionValidateOutput, WorkflowHealthPingInput, WorkflowHealthPingOutput, WorkflowRunCancelInput, WorkflowRunCancelOutput, WorkflowRunGetInput, WorkflowRunGetOutput, WorkflowRunListInput, WorkflowRunListOutput, WorkflowRunReplayInput, WorkflowRunReplayOutput, WorkflowRunStartInput, WorkflowRunStartOutput, WorkflowVersionGetInput, WorkflowVersionGetOutput, WorkflowVersionListInput, WorkflowVersionListOutput } from '../types.gen.js';
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
import type { GeneratedClient } from '../client.gen.js';
|
|
2
|
+
import type { WorkflowCapabilityGetInput, WorkflowCapabilityGetOutput, WorkflowCapabilityListInput, WorkflowCapabilityListOutput, WorkflowConfigDeleteInput, WorkflowConfigListInput, WorkflowConfigListOutput, WorkflowConfigSetInput, WorkflowDefinitionCreateInput, WorkflowDefinitionDisableInput, WorkflowDefinitionDryrunInput, WorkflowDefinitionDryrunOutput, WorkflowDefinitionEnableInput, WorkflowDefinitionExportInput, WorkflowDefinitionExportOutput, WorkflowDefinitionGetInput, WorkflowDefinitionGetOutput, WorkflowDefinitionImportInput, WorkflowDefinitionListInput, WorkflowDefinitionListOutput, WorkflowDefinitionPublishInput, WorkflowDefinitionUpdateInput, WorkflowDefinitionValidateInput, WorkflowDefinitionValidateOutput, WorkflowHealthPingInput, WorkflowHealthPingOutput, WorkflowRunCancelInput, WorkflowRunGetInput, WorkflowRunGetOutput, WorkflowRunListInput, WorkflowRunListOutput, WorkflowRunReplayInput, WorkflowRunStartInput, WorkflowVersionGetInput, WorkflowVersionGetOutput, WorkflowVersionListInput, WorkflowVersionListOutput } from '../types.gen.js';
|
|
3
|
+
export declare const workflowCapabilityGetQueryOptions: (sdk: GeneratedClient, input: WorkflowCapabilityGetInput) => {
|
|
4
|
+
queryKey: readonly ["workflow", "capability", "get", WorkflowCapabilityGetInput];
|
|
5
|
+
queryFn: () => Promise<WorkflowCapabilityGetOutput>;
|
|
6
|
+
};
|
|
7
|
+
export declare const workflowCapabilityListQueryOptions: (sdk: GeneratedClient, input: WorkflowCapabilityListInput) => {
|
|
8
|
+
queryKey: readonly ["workflow", "capability", "list", WorkflowCapabilityListInput];
|
|
9
|
+
queryFn: () => Promise<WorkflowCapabilityListOutput>;
|
|
10
|
+
};
|
|
11
|
+
export declare const workflowConfigDeleteMutationOptions: (sdk: GeneratedClient) => {
|
|
12
|
+
mutationKey: string[];
|
|
13
|
+
mutationFn: (input: WorkflowConfigDeleteInput) => Promise<import(".").WorkflowConfigDeleteOutput>;
|
|
14
|
+
};
|
|
15
|
+
export declare const workflowConfigListQueryOptions: (sdk: GeneratedClient, input: WorkflowConfigListInput) => {
|
|
16
|
+
queryKey: readonly ["workflow", "config", "list", WorkflowConfigListInput];
|
|
17
|
+
queryFn: () => Promise<WorkflowConfigListOutput>;
|
|
18
|
+
};
|
|
19
|
+
export declare const workflowConfigSetMutationOptions: (sdk: GeneratedClient) => {
|
|
20
|
+
mutationKey: string[];
|
|
21
|
+
mutationFn: (input: WorkflowConfigSetInput) => Promise<import(".").WorkflowConfigSetOutput>;
|
|
22
|
+
};
|
|
23
|
+
export declare const workflowDefinitionCreateMutationOptions: (sdk: GeneratedClient) => {
|
|
24
|
+
mutationKey: string[];
|
|
25
|
+
mutationFn: (input: WorkflowDefinitionCreateInput) => Promise<import(".").WorkflowDefinitionCreateOutput>;
|
|
26
|
+
};
|
|
27
|
+
export declare const workflowDefinitionDisableMutationOptions: (sdk: GeneratedClient) => {
|
|
28
|
+
mutationKey: string[];
|
|
29
|
+
mutationFn: (input: WorkflowDefinitionDisableInput) => Promise<import(".").WorkflowDefinitionDisableOutput>;
|
|
30
|
+
};
|
|
31
|
+
export declare const workflowDefinitionDryrunQueryOptions: (sdk: GeneratedClient, input: WorkflowDefinitionDryrunInput) => {
|
|
32
|
+
queryKey: readonly ["workflow", "definition", "dryrun", WorkflowDefinitionDryrunInput];
|
|
33
|
+
queryFn: () => Promise<WorkflowDefinitionDryrunOutput>;
|
|
34
|
+
};
|
|
35
|
+
export declare const workflowDefinitionEnableMutationOptions: (sdk: GeneratedClient) => {
|
|
36
|
+
mutationKey: string[];
|
|
37
|
+
mutationFn: (input: WorkflowDefinitionEnableInput) => Promise<import(".").WorkflowDefinitionEnableOutput>;
|
|
38
|
+
};
|
|
39
|
+
export declare const workflowDefinitionExportQueryOptions: (sdk: GeneratedClient, input: WorkflowDefinitionExportInput) => {
|
|
40
|
+
queryKey: readonly ["workflow", "definition", "export", WorkflowDefinitionExportInput];
|
|
41
|
+
queryFn: () => Promise<WorkflowDefinitionExportOutput>;
|
|
42
|
+
};
|
|
43
|
+
export declare const workflowDefinitionGetQueryOptions: (sdk: GeneratedClient, input: WorkflowDefinitionGetInput) => {
|
|
44
|
+
queryKey: readonly ["workflow", "definition", "get", WorkflowDefinitionGetInput];
|
|
45
|
+
queryFn: () => Promise<WorkflowDefinitionGetOutput>;
|
|
46
|
+
};
|
|
47
|
+
export declare const workflowDefinitionImportMutationOptions: (sdk: GeneratedClient) => {
|
|
48
|
+
mutationKey: string[];
|
|
49
|
+
mutationFn: (input: WorkflowDefinitionImportInput) => Promise<import(".").WorkflowDefinitionImportOutput>;
|
|
50
|
+
};
|
|
51
|
+
export declare const workflowDefinitionListQueryOptions: (sdk: GeneratedClient, input: WorkflowDefinitionListInput) => {
|
|
52
|
+
queryKey: readonly ["workflow", "definition", "list", WorkflowDefinitionListInput];
|
|
53
|
+
queryFn: () => Promise<WorkflowDefinitionListOutput>;
|
|
54
|
+
};
|
|
55
|
+
export declare const workflowDefinitionPublishMutationOptions: (sdk: GeneratedClient) => {
|
|
56
|
+
mutationKey: string[];
|
|
57
|
+
mutationFn: (input: WorkflowDefinitionPublishInput) => Promise<import(".").WorkflowDefinitionPublishOutput>;
|
|
58
|
+
};
|
|
59
|
+
export declare const workflowDefinitionUpdateMutationOptions: (sdk: GeneratedClient) => {
|
|
60
|
+
mutationKey: string[];
|
|
61
|
+
mutationFn: (input: WorkflowDefinitionUpdateInput) => Promise<import(".").WorkflowDefinitionUpdateOutput>;
|
|
62
|
+
};
|
|
63
|
+
export declare const workflowDefinitionValidateQueryOptions: (sdk: GeneratedClient, input: WorkflowDefinitionValidateInput) => {
|
|
64
|
+
queryKey: readonly ["workflow", "definition", "validate", WorkflowDefinitionValidateInput];
|
|
65
|
+
queryFn: () => Promise<WorkflowDefinitionValidateOutput>;
|
|
66
|
+
};
|
|
67
|
+
export declare const workflowHealthPingQueryOptions: (sdk: GeneratedClient, input: WorkflowHealthPingInput) => {
|
|
68
|
+
queryKey: readonly ["workflow", "health", "ping", WorkflowHealthPingInput];
|
|
69
|
+
queryFn: () => Promise<WorkflowHealthPingOutput>;
|
|
70
|
+
};
|
|
71
|
+
export declare const workflowRunCancelMutationOptions: (sdk: GeneratedClient) => {
|
|
72
|
+
mutationKey: string[];
|
|
73
|
+
mutationFn: (input: WorkflowRunCancelInput) => Promise<import(".").WorkflowRunCancelOutput>;
|
|
74
|
+
};
|
|
75
|
+
export declare const workflowRunGetQueryOptions: (sdk: GeneratedClient, input: WorkflowRunGetInput) => {
|
|
76
|
+
queryKey: readonly ["workflow", "run", "get", WorkflowRunGetInput];
|
|
77
|
+
queryFn: () => Promise<WorkflowRunGetOutput>;
|
|
78
|
+
};
|
|
79
|
+
export declare const workflowRunListQueryOptions: (sdk: GeneratedClient, input: WorkflowRunListInput) => {
|
|
80
|
+
queryKey: readonly ["workflow", "run", "list", WorkflowRunListInput];
|
|
81
|
+
queryFn: () => Promise<WorkflowRunListOutput>;
|
|
82
|
+
};
|
|
83
|
+
export declare const workflowRunReplayMutationOptions: (sdk: GeneratedClient) => {
|
|
84
|
+
mutationKey: string[];
|
|
85
|
+
mutationFn: (input: WorkflowRunReplayInput) => Promise<import(".").WorkflowRunReplayOutput>;
|
|
86
|
+
};
|
|
87
|
+
export declare const workflowRunStartMutationOptions: (sdk: GeneratedClient) => {
|
|
88
|
+
mutationKey: string[];
|
|
89
|
+
mutationFn: (input: WorkflowRunStartInput) => Promise<import(".").WorkflowRunStartOutput>;
|
|
90
|
+
};
|
|
91
|
+
export declare const workflowVersionGetQueryOptions: (sdk: GeneratedClient, input: WorkflowVersionGetInput) => {
|
|
92
|
+
queryKey: readonly ["workflow", "version", "get", WorkflowVersionGetInput];
|
|
93
|
+
queryFn: () => Promise<WorkflowVersionGetOutput>;
|
|
94
|
+
};
|
|
95
|
+
export declare const workflowVersionListQueryOptions: (sdk: GeneratedClient, input: WorkflowVersionListInput) => {
|
|
96
|
+
queryKey: readonly ["workflow", "version", "list", WorkflowVersionListInput];
|
|
97
|
+
queryFn: () => Promise<WorkflowVersionListOutput>;
|
|
98
|
+
};
|