@lessly/sdk-app 64.0.0 → 64.1.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 +8 -1
- package/dist/_types/gen/types.gen.d.ts +59 -5
- package/dist/_types/gen/workflow/index.d.ts +1 -1
- package/dist/_types/gen/workflow/queryOptions.gen.d.ts +13 -1
- package/dist/{chunk-PRFCIXWX.js → chunk-E5DOALAH.js} +47 -2
- package/dist/{chunk-PRFCIXWX.js.map → chunk-E5DOALAH.js.map} +1 -1
- package/dist/index.cjs +48 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +4 -1
- 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 +15 -0
- package/dist/workflow/index.cjs.map +1 -1
- package/dist/workflow/index.js +13 -1
- package/dist/workflow/index.js.map +1 -1
- package/package.json +2 -2
- package/src/gen/bindings.gen.ts +45 -0
- package/src/gen/client.gen.ts +13 -0
- package/src/gen/manifest.gen.ts +3 -0
- package/src/gen/types.gen.ts +66 -5
- package/src/gen/workflow/index.ts +1 -1
- package/src/gen/workflow/queryOptions.gen.ts +19 -0
package/dist/index.cjs
CHANGED
|
@@ -10998,6 +10998,28 @@ var bindings = {
|
|
|
10998
10998
|
"readOnly": true
|
|
10999
10999
|
}
|
|
11000
11000
|
},
|
|
11001
|
+
"killswitch": {
|
|
11002
|
+
"get": {
|
|
11003
|
+
"level": "read",
|
|
11004
|
+
"method": "GET",
|
|
11005
|
+
"operationKey": "workflow_killswitch_get",
|
|
11006
|
+
"path": "/workflow/killswitch",
|
|
11007
|
+
"readOnly": true
|
|
11008
|
+
},
|
|
11009
|
+
"set": {
|
|
11010
|
+
"level": "write",
|
|
11011
|
+
"method": "POST",
|
|
11012
|
+
"operationKey": "workflow_killswitch_set",
|
|
11013
|
+
"params": [
|
|
11014
|
+
{
|
|
11015
|
+
"in": "body",
|
|
11016
|
+
"name": "on"
|
|
11017
|
+
}
|
|
11018
|
+
],
|
|
11019
|
+
"path": "/workflow/killswitch",
|
|
11020
|
+
"readOnly": false
|
|
11021
|
+
}
|
|
11022
|
+
},
|
|
11001
11023
|
"run": {
|
|
11002
11024
|
"cancel": {
|
|
11003
11025
|
"level": "write",
|
|
@@ -11089,6 +11111,29 @@ var bindings = {
|
|
|
11089
11111
|
"readOnly": false
|
|
11090
11112
|
}
|
|
11091
11113
|
},
|
|
11114
|
+
"run-replay": {
|
|
11115
|
+
"all": {
|
|
11116
|
+
"level": "write",
|
|
11117
|
+
"method": "POST",
|
|
11118
|
+
"operationKey": "workflow_run_replay_all",
|
|
11119
|
+
"params": [
|
|
11120
|
+
{
|
|
11121
|
+
"in": "body",
|
|
11122
|
+
"name": "workflow_id"
|
|
11123
|
+
},
|
|
11124
|
+
{
|
|
11125
|
+
"in": "body",
|
|
11126
|
+
"name": "status"
|
|
11127
|
+
},
|
|
11128
|
+
{
|
|
11129
|
+
"in": "body",
|
|
11130
|
+
"name": "limit"
|
|
11131
|
+
}
|
|
11132
|
+
],
|
|
11133
|
+
"path": "/workflow/runs/replay-all",
|
|
11134
|
+
"readOnly": false
|
|
11135
|
+
}
|
|
11136
|
+
},
|
|
11092
11137
|
"version": {
|
|
11093
11138
|
"get": {
|
|
11094
11139
|
"level": "read",
|
|
@@ -11710,10 +11755,13 @@ var operations = {
|
|
|
11710
11755
|
"workflow_definition_validate": "read",
|
|
11711
11756
|
"workflow_grant_list": "read",
|
|
11712
11757
|
"workflow_health_ping": "read",
|
|
11758
|
+
"workflow_killswitch_get": "read",
|
|
11759
|
+
"workflow_killswitch_set": "write",
|
|
11713
11760
|
"workflow_run_cancel": "write",
|
|
11714
11761
|
"workflow_run_get": "read",
|
|
11715
11762
|
"workflow_run_list": "read",
|
|
11716
11763
|
"workflow_run_replay": "write",
|
|
11764
|
+
"workflow_run_replay_all": "write",
|
|
11717
11765
|
"workflow_run_start": "write",
|
|
11718
11766
|
"workflow_version_get": "read",
|
|
11719
11767
|
"workflow_version_list": "read"
|