@lessly/sdk-app 63.2.5 → 63.3.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 +6 -1
- package/dist/_types/gen/manifest.gen.d.ts +1 -1
- package/dist/_types/gen/types.gen.d.ts +7 -0
- package/dist/_types/gen/workflow/index.d.ts +2 -0
- package/dist/_types/gen/workflow/queryOptions.gen.d.ts +6 -0
- package/dist/{chunk-2YAA3AF4.js → chunk-ELVZARJQ.js} +13 -2
- package/dist/{chunk-2YAA3AF4.js.map → chunk-ELVZARJQ.js.map} +1 -1
- package/dist/index.cjs +13 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +3 -2
- 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 +11 -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 +9 -0
- package/dist/workflow/index.js.map +1 -0
- package/package.json +12 -2
- package/src/gen/bindings.gen.ts +11 -0
- package/src/gen/client.gen.ts +7 -0
- package/src/gen/manifest.gen.ts +2 -1
- package/src/gen/types.gen.ts +10 -0
- package/src/gen/workflow/index.ts +3 -0
- package/src/gen/workflow/queryOptions.gen.ts +11 -0
package/dist/playground/index.js
CHANGED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
// src/gen/workflow/queryOptions.gen.ts
|
|
4
|
+
var workflowHealthPingQueryOptions = (sdk, input) => ({
|
|
5
|
+
queryKey: ["workflow", "health", "ping", input],
|
|
6
|
+
queryFn: () => sdk["workflow"]["health"]["ping"](input)
|
|
7
|
+
});
|
|
8
|
+
|
|
9
|
+
exports.workflowHealthPingQueryOptions = workflowHealthPingQueryOptions;
|
|
10
|
+
//# sourceMappingURL=index.cjs.map
|
|
11
|
+
//# sourceMappingURL=index.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/gen/workflow/queryOptions.gen.ts"],"names":[],"mappings":";;;AAOO,IAAM,8BAAA,GAAiC,CAAC,GAAA,EAAsB,KAAA,MAAoC;AAAA,EACvG,QAAA,EAAU,CAAC,UAAA,EAAY,QAAA,EAAU,QAAQ,KAAK,CAAA;AAAA,EAC9C,OAAA,EAAS,MAAM,GAAA,CAAI,UAAU,EAAE,QAAQ,CAAA,CAAE,MAAM,CAAA,CAAE,KAAK;AACxD,CAAA","file":"index.cjs","sourcesContent":["// AUTOGENERATED by scripts/generate.ts — do not edit.\nimport type { GeneratedClient } from '../client.gen';\nimport type {\n WorkflowHealthPingInput,\n WorkflowHealthPingOutput,\n} from '../types.gen';\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"]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_types/gen/workflow/index.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_types/gen/workflow/index.js';
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
// src/gen/workflow/queryOptions.gen.ts
|
|
2
|
+
var workflowHealthPingQueryOptions = (sdk, input) => ({
|
|
3
|
+
queryKey: ["workflow", "health", "ping", input],
|
|
4
|
+
queryFn: () => sdk["workflow"]["health"]["ping"](input)
|
|
5
|
+
});
|
|
6
|
+
|
|
7
|
+
export { workflowHealthPingQueryOptions };
|
|
8
|
+
//# sourceMappingURL=index.js.map
|
|
9
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/gen/workflow/queryOptions.gen.ts"],"names":[],"mappings":";AAOO,IAAM,8BAAA,GAAiC,CAAC,GAAA,EAAsB,KAAA,MAAoC;AAAA,EACvG,QAAA,EAAU,CAAC,UAAA,EAAY,QAAA,EAAU,QAAQ,KAAK,CAAA;AAAA,EAC9C,OAAA,EAAS,MAAM,GAAA,CAAI,UAAU,EAAE,QAAQ,CAAA,CAAE,MAAM,CAAA,CAAE,KAAK;AACxD,CAAA","file":"index.js","sourcesContent":["// AUTOGENERATED by scripts/generate.ts — do not edit.\nimport type { GeneratedClient } from '../client.gen';\nimport type {\n WorkflowHealthPingInput,\n WorkflowHealthPingOutput,\n} from '../types.gen';\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"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lessly/sdk-app",
|
|
3
|
-
"version": "63.
|
|
3
|
+
"version": "63.3.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"engines": {
|
|
@@ -207,7 +207,17 @@
|
|
|
207
207
|
"types": "./dist/waitlist/index.d.cts",
|
|
208
208
|
"default": "./dist/waitlist/index.cjs"
|
|
209
209
|
}
|
|
210
|
+
},
|
|
211
|
+
"./workflow": {
|
|
212
|
+
"import": {
|
|
213
|
+
"types": "./dist/workflow/index.d.ts",
|
|
214
|
+
"default": "./dist/workflow/index.js"
|
|
215
|
+
},
|
|
216
|
+
"require": {
|
|
217
|
+
"types": "./dist/workflow/index.d.cts",
|
|
218
|
+
"default": "./dist/workflow/index.cjs"
|
|
219
|
+
}
|
|
210
220
|
}
|
|
211
221
|
},
|
|
212
|
-
"sdkContentHash": "sha256:
|
|
222
|
+
"sdkContentHash": "sha256:d966a5382822c3a1c8e55abc571a5ca08c19ccd8434f966ca55ed6d8ec79bd82"
|
|
213
223
|
}
|
package/src/gen/bindings.gen.ts
CHANGED
|
@@ -10422,6 +10422,17 @@ export const bindings: BindingsMap = {
|
|
|
10422
10422
|
"readOnly": true
|
|
10423
10423
|
}
|
|
10424
10424
|
}
|
|
10425
|
+
},
|
|
10426
|
+
"workflow": {
|
|
10427
|
+
"health": {
|
|
10428
|
+
"ping": {
|
|
10429
|
+
"level": "read",
|
|
10430
|
+
"method": "GET",
|
|
10431
|
+
"operationKey": "workflow_health_ping",
|
|
10432
|
+
"path": "/workflow/health/ping",
|
|
10433
|
+
"readOnly": true
|
|
10434
|
+
}
|
|
10435
|
+
}
|
|
10425
10436
|
}
|
|
10426
10437
|
};
|
|
10427
10438
|
|
package/src/gen/client.gen.ts
CHANGED
|
@@ -1111,6 +1111,8 @@ import type {
|
|
|
1111
1111
|
WaitlistSignupsFunnelOutput,
|
|
1112
1112
|
WaitlistSignupsListInput,
|
|
1113
1113
|
WaitlistSignupsListOutput,
|
|
1114
|
+
WorkflowHealthPingInput,
|
|
1115
|
+
WorkflowHealthPingOutput,
|
|
1114
1116
|
} from './types.gen';
|
|
1115
1117
|
|
|
1116
1118
|
export interface GeneratedClient {
|
|
@@ -2131,4 +2133,9 @@ export interface GeneratedClient {
|
|
|
2131
2133
|
list: ((input: WaitlistSignupsListInput) => Promise<WaitlistSignupsListOutput>) & Operation;
|
|
2132
2134
|
};
|
|
2133
2135
|
};
|
|
2136
|
+
workflow: {
|
|
2137
|
+
health: {
|
|
2138
|
+
ping: ((input: WorkflowHealthPingInput) => Promise<WorkflowHealthPingOutput>) & Operation;
|
|
2139
|
+
};
|
|
2140
|
+
};
|
|
2134
2141
|
}
|
package/src/gen/manifest.gen.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// AUTOGENERATED by scripts/generate.ts — do not edit.
|
|
2
2
|
import type { ToolLevel } from '../runtime/types';
|
|
3
3
|
|
|
4
|
-
export const namespaces = ['analytics', 'brain', 'consent', 'content', 'deployment', 'mail', 'observe', 'organization', 'playground', 'realtime', 'support', 'tracking', 'users', 'waitlist'] as const;
|
|
4
|
+
export const namespaces = ['analytics', 'brain', 'consent', 'content', 'deployment', 'mail', 'observe', 'organization', 'playground', 'realtime', 'support', 'tracking', 'users', 'waitlist', 'workflow'] as const;
|
|
5
5
|
|
|
6
6
|
export const operations: Record<string, ToolLevel> = {
|
|
7
7
|
'analytics_catalog_get': 'read',
|
|
@@ -559,4 +559,5 @@ export const operations: Record<string, ToolLevel> = {
|
|
|
559
559
|
'waitlist_signups_erase': 'write',
|
|
560
560
|
'waitlist_signups_funnel': 'read',
|
|
561
561
|
'waitlist_signups_list': 'read',
|
|
562
|
+
'workflow_health_ping': 'read',
|
|
562
563
|
};
|
package/src/gen/types.gen.ts
CHANGED
|
@@ -110849,3 +110849,13 @@ items: {
|
|
|
110849
110849
|
has_more: boolean
|
|
110850
110850
|
next_cursor: (string | null)
|
|
110851
110851
|
}
|
|
110852
|
+
|
|
110853
|
+
export interface WorkflowHealthPingInput {
|
|
110854
|
+
|
|
110855
|
+
}
|
|
110856
|
+
|
|
110857
|
+
export interface WorkflowHealthPingOutput {
|
|
110858
|
+
ok: boolean
|
|
110859
|
+
toolkit: string
|
|
110860
|
+
productId: string
|
|
110861
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
// AUTOGENERATED by scripts/generate.ts — do not edit.
|
|
2
|
+
import type { GeneratedClient } from '../client.gen';
|
|
3
|
+
import type {
|
|
4
|
+
WorkflowHealthPingInput,
|
|
5
|
+
WorkflowHealthPingOutput,
|
|
6
|
+
} from '../types.gen';
|
|
7
|
+
|
|
8
|
+
export const workflowHealthPingQueryOptions = (sdk: GeneratedClient, input: WorkflowHealthPingInput) => ({
|
|
9
|
+
queryKey: ['workflow', 'health', 'ping', input] as const,
|
|
10
|
+
queryFn: () => sdk['workflow']['health']['ping'](input),
|
|
11
|
+
});
|