@lessly/sdk-app 63.2.5 → 63.4.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.
@@ -1,4 +1,4 @@
1
- import { wsBindings } from '../chunk-2YAA3AF4.js';
1
+ import { wsBindings } from '../chunk-ELVZARJQ.js';
2
2
 
3
3
  // src/gen/playground/queryOptions.gen.ts
4
4
  var playgroundAnalyticsOverviewQueryOptions = (sdk, input) => ({
@@ -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.2.5",
3
+ "version": "63.4.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:965d6441024647f1461d4e50bedeba9d79dca805ea4668ca8c9ecedefc1c0d0a"
222
+ "sdkContentHash": "sha256:1a9f8d866668383511a597b6a424e307306a3d1fa39ed1de949f8c5446fc101a"
213
223
  }
@@ -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
 
@@ -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
  }
@@ -1,7 +1,7 @@
1
1
  // AUTOGENERATED by scripts/generate.ts — do not edit.
2
- import type { ToolLevel } from '../runtime/types';
2
+ import type { ToolLevel, ToolComposition } 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,7 @@ 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
  };
564
+
565
+ export const compositions: Record<string, ToolComposition> = {};
@@ -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,3 @@
1
+ // AUTOGENERATED by scripts/generate.ts — do not edit.
2
+ export * from './queryOptions.gen';
3
+ export type { WorkflowHealthPingInput, WorkflowHealthPingOutput } from '../types.gen';
@@ -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
+ });