@lessly/sdk-app 66.2.0 → 66.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 +9 -1
- package/dist/_types/gen/types.gen.d.ts +207 -0
- package/dist/_types/gen/workflow/index.d.ts +1 -1
- package/dist/_types/gen/workflow/queryOptions.gen.d.ts +17 -1
- package/dist/{chunk-G2BY65T7.js → chunk-G3EFA6KW.js} +98 -2
- package/dist/{chunk-G2BY65T7.js.map → chunk-G3EFA6KW.js.map} +1 -1
- package/dist/index.cjs +101 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +6 -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 +20 -0
- package/dist/workflow/index.cjs.map +1 -1
- package/dist/workflow/index.js +17 -1
- package/dist/workflow/index.js.map +1 -1
- package/package.json +2 -2
- package/src/gen/bindings.gen.ts +96 -0
- package/src/gen/client.gen.ts +16 -0
- package/src/gen/manifest.gen.ts +4 -0
- package/src/gen/types.gen.ts +215 -0
- package/src/gen/workflow/index.ts +1 -1
- package/src/gen/workflow/queryOptions.gen.ts +27 -0
package/dist/index.cjs
CHANGED
|
@@ -11316,6 +11316,102 @@ var bindings = {
|
|
|
11316
11316
|
"path": "/workflow/version",
|
|
11317
11317
|
"readOnly": true
|
|
11318
11318
|
}
|
|
11319
|
+
},
|
|
11320
|
+
"wait": {
|
|
11321
|
+
"get": {
|
|
11322
|
+
"level": "read",
|
|
11323
|
+
"method": "GET",
|
|
11324
|
+
"operationKey": "workflow_wait_get",
|
|
11325
|
+
"params": [
|
|
11326
|
+
{
|
|
11327
|
+
"in": "query",
|
|
11328
|
+
"name": "wait_id"
|
|
11329
|
+
}
|
|
11330
|
+
],
|
|
11331
|
+
"path": "/workflow/waits/get",
|
|
11332
|
+
"readOnly": true
|
|
11333
|
+
},
|
|
11334
|
+
"list": {
|
|
11335
|
+
"level": "read",
|
|
11336
|
+
"method": "GET",
|
|
11337
|
+
"operationKey": "workflow_wait_list",
|
|
11338
|
+
"params": [
|
|
11339
|
+
{
|
|
11340
|
+
"in": "query",
|
|
11341
|
+
"name": "workflow_id"
|
|
11342
|
+
},
|
|
11343
|
+
{
|
|
11344
|
+
"in": "query",
|
|
11345
|
+
"name": "status"
|
|
11346
|
+
},
|
|
11347
|
+
{
|
|
11348
|
+
"in": "query",
|
|
11349
|
+
"name": "cursor"
|
|
11350
|
+
},
|
|
11351
|
+
{
|
|
11352
|
+
"in": "query",
|
|
11353
|
+
"name": "limit"
|
|
11354
|
+
}
|
|
11355
|
+
],
|
|
11356
|
+
"path": "/workflow/waits",
|
|
11357
|
+
"readOnly": true
|
|
11358
|
+
},
|
|
11359
|
+
"resolve": {
|
|
11360
|
+
"level": "write",
|
|
11361
|
+
"method": "POST",
|
|
11362
|
+
"operationKey": "workflow_wait_resolve",
|
|
11363
|
+
"params": [
|
|
11364
|
+
{
|
|
11365
|
+
"in": "body",
|
|
11366
|
+
"name": "wait_id"
|
|
11367
|
+
},
|
|
11368
|
+
{
|
|
11369
|
+
"in": "body",
|
|
11370
|
+
"name": "decision"
|
|
11371
|
+
},
|
|
11372
|
+
{
|
|
11373
|
+
"in": "body",
|
|
11374
|
+
"name": "comment"
|
|
11375
|
+
},
|
|
11376
|
+
{
|
|
11377
|
+
"in": "body",
|
|
11378
|
+
"name": "payload"
|
|
11379
|
+
},
|
|
11380
|
+
{
|
|
11381
|
+
"in": "body",
|
|
11382
|
+
"name": "link_token"
|
|
11383
|
+
}
|
|
11384
|
+
],
|
|
11385
|
+
"path": "/workflow/waits/resolve",
|
|
11386
|
+
"readOnly": false
|
|
11387
|
+
}
|
|
11388
|
+
},
|
|
11389
|
+
"wait-list": {
|
|
11390
|
+
"all": {
|
|
11391
|
+
"level": "read",
|
|
11392
|
+
"method": "GET",
|
|
11393
|
+
"operationKey": "workflow_wait_list_all",
|
|
11394
|
+
"params": [
|
|
11395
|
+
{
|
|
11396
|
+
"in": "query",
|
|
11397
|
+
"name": "workflow_id"
|
|
11398
|
+
},
|
|
11399
|
+
{
|
|
11400
|
+
"in": "query",
|
|
11401
|
+
"name": "status"
|
|
11402
|
+
},
|
|
11403
|
+
{
|
|
11404
|
+
"in": "query",
|
|
11405
|
+
"name": "cursor"
|
|
11406
|
+
},
|
|
11407
|
+
{
|
|
11408
|
+
"in": "query",
|
|
11409
|
+
"name": "limit"
|
|
11410
|
+
}
|
|
11411
|
+
],
|
|
11412
|
+
"path": "/workflow/waits/all",
|
|
11413
|
+
"readOnly": true
|
|
11414
|
+
}
|
|
11319
11415
|
}
|
|
11320
11416
|
}
|
|
11321
11417
|
};
|
|
@@ -11914,7 +12010,11 @@ var operations = {
|
|
|
11914
12010
|
"workflow_run_start": "write",
|
|
11915
12011
|
"workflow_run_test": "write",
|
|
11916
12012
|
"workflow_version_get": "read",
|
|
11917
|
-
"workflow_version_list": "read"
|
|
12013
|
+
"workflow_version_list": "read",
|
|
12014
|
+
"workflow_wait_get": "read",
|
|
12015
|
+
"workflow_wait_list": "read",
|
|
12016
|
+
"workflow_wait_list_all": "read",
|
|
12017
|
+
"workflow_wait_resolve": "write"
|
|
11918
12018
|
};
|
|
11919
12019
|
var compositions = {
|
|
11920
12020
|
"mail_audience_create": { "label": "Create audience" },
|