@lessly/sdk-app 66.1.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 +10 -1
- package/dist/_types/gen/types.gen.d.ts +257 -0
- package/dist/_types/gen/workflow/index.d.ts +1 -1
- package/dist/_types/gen/workflow/queryOptions.gen.d.ts +21 -1
- package/dist/{chunk-ORP3C4MA.js → chunk-G3EFA6KW.js} +119 -2
- package/dist/{chunk-ORP3C4MA.js.map → chunk-G3EFA6KW.js.map} +1 -1
- package/dist/index.cjs +123 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +7 -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 +25 -0
- package/dist/workflow/index.cjs.map +1 -1
- package/dist/workflow/index.js +21 -1
- package/dist/workflow/index.js.map +1 -1
- package/package.json +2 -2
- package/src/gen/bindings.gen.ts +117 -0
- package/src/gen/client.gen.ts +19 -0
- package/src/gen/manifest.gen.ts +5 -0
- package/src/gen/types.gen.ts +267 -0
- package/src/gen/workflow/index.ts +1 -1
- package/src/gen/workflow/queryOptions.gen.ts +33 -0
|
@@ -10967,6 +10967,10 @@ var bindings = {
|
|
|
10967
10967
|
"in": "query",
|
|
10968
10968
|
"name": "status"
|
|
10969
10969
|
},
|
|
10970
|
+
{
|
|
10971
|
+
"in": "query",
|
|
10972
|
+
"name": "test"
|
|
10973
|
+
},
|
|
10970
10974
|
{
|
|
10971
10975
|
"in": "query",
|
|
10972
10976
|
"name": "cursor"
|
|
@@ -11016,6 +11020,23 @@ var bindings = {
|
|
|
11016
11020
|
],
|
|
11017
11021
|
"path": "/workflow/runs/start",
|
|
11018
11022
|
"readOnly": false
|
|
11023
|
+
},
|
|
11024
|
+
"test": {
|
|
11025
|
+
"level": "write",
|
|
11026
|
+
"method": "POST",
|
|
11027
|
+
"operationKey": "workflow_run_test",
|
|
11028
|
+
"params": [
|
|
11029
|
+
{
|
|
11030
|
+
"in": "body",
|
|
11031
|
+
"name": "workflow_id"
|
|
11032
|
+
},
|
|
11033
|
+
{
|
|
11034
|
+
"in": "body",
|
|
11035
|
+
"name": "trigger_payload"
|
|
11036
|
+
}
|
|
11037
|
+
],
|
|
11038
|
+
"path": "/workflow/runs/test",
|
|
11039
|
+
"readOnly": false
|
|
11019
11040
|
}
|
|
11020
11041
|
},
|
|
11021
11042
|
"run-replay": {
|
|
@@ -11080,6 +11101,102 @@ var bindings = {
|
|
|
11080
11101
|
"path": "/workflow/version",
|
|
11081
11102
|
"readOnly": true
|
|
11082
11103
|
}
|
|
11104
|
+
},
|
|
11105
|
+
"wait": {
|
|
11106
|
+
"get": {
|
|
11107
|
+
"level": "read",
|
|
11108
|
+
"method": "GET",
|
|
11109
|
+
"operationKey": "workflow_wait_get",
|
|
11110
|
+
"params": [
|
|
11111
|
+
{
|
|
11112
|
+
"in": "query",
|
|
11113
|
+
"name": "wait_id"
|
|
11114
|
+
}
|
|
11115
|
+
],
|
|
11116
|
+
"path": "/workflow/waits/get",
|
|
11117
|
+
"readOnly": true
|
|
11118
|
+
},
|
|
11119
|
+
"list": {
|
|
11120
|
+
"level": "read",
|
|
11121
|
+
"method": "GET",
|
|
11122
|
+
"operationKey": "workflow_wait_list",
|
|
11123
|
+
"params": [
|
|
11124
|
+
{
|
|
11125
|
+
"in": "query",
|
|
11126
|
+
"name": "workflow_id"
|
|
11127
|
+
},
|
|
11128
|
+
{
|
|
11129
|
+
"in": "query",
|
|
11130
|
+
"name": "status"
|
|
11131
|
+
},
|
|
11132
|
+
{
|
|
11133
|
+
"in": "query",
|
|
11134
|
+
"name": "cursor"
|
|
11135
|
+
},
|
|
11136
|
+
{
|
|
11137
|
+
"in": "query",
|
|
11138
|
+
"name": "limit"
|
|
11139
|
+
}
|
|
11140
|
+
],
|
|
11141
|
+
"path": "/workflow/waits",
|
|
11142
|
+
"readOnly": true
|
|
11143
|
+
},
|
|
11144
|
+
"resolve": {
|
|
11145
|
+
"level": "write",
|
|
11146
|
+
"method": "POST",
|
|
11147
|
+
"operationKey": "workflow_wait_resolve",
|
|
11148
|
+
"params": [
|
|
11149
|
+
{
|
|
11150
|
+
"in": "body",
|
|
11151
|
+
"name": "wait_id"
|
|
11152
|
+
},
|
|
11153
|
+
{
|
|
11154
|
+
"in": "body",
|
|
11155
|
+
"name": "decision"
|
|
11156
|
+
},
|
|
11157
|
+
{
|
|
11158
|
+
"in": "body",
|
|
11159
|
+
"name": "comment"
|
|
11160
|
+
},
|
|
11161
|
+
{
|
|
11162
|
+
"in": "body",
|
|
11163
|
+
"name": "payload"
|
|
11164
|
+
},
|
|
11165
|
+
{
|
|
11166
|
+
"in": "body",
|
|
11167
|
+
"name": "link_token"
|
|
11168
|
+
}
|
|
11169
|
+
],
|
|
11170
|
+
"path": "/workflow/waits/resolve",
|
|
11171
|
+
"readOnly": false
|
|
11172
|
+
}
|
|
11173
|
+
},
|
|
11174
|
+
"wait-list": {
|
|
11175
|
+
"all": {
|
|
11176
|
+
"level": "read",
|
|
11177
|
+
"method": "GET",
|
|
11178
|
+
"operationKey": "workflow_wait_list_all",
|
|
11179
|
+
"params": [
|
|
11180
|
+
{
|
|
11181
|
+
"in": "query",
|
|
11182
|
+
"name": "workflow_id"
|
|
11183
|
+
},
|
|
11184
|
+
{
|
|
11185
|
+
"in": "query",
|
|
11186
|
+
"name": "status"
|
|
11187
|
+
},
|
|
11188
|
+
{
|
|
11189
|
+
"in": "query",
|
|
11190
|
+
"name": "cursor"
|
|
11191
|
+
},
|
|
11192
|
+
{
|
|
11193
|
+
"in": "query",
|
|
11194
|
+
"name": "limit"
|
|
11195
|
+
}
|
|
11196
|
+
],
|
|
11197
|
+
"path": "/workflow/waits/all",
|
|
11198
|
+
"readOnly": true
|
|
11199
|
+
}
|
|
11083
11200
|
}
|
|
11084
11201
|
}
|
|
11085
11202
|
};
|
|
@@ -11094,5 +11211,5 @@ var wsBindings = {
|
|
|
11094
11211
|
};
|
|
11095
11212
|
|
|
11096
11213
|
export { bindings, wsBindings };
|
|
11097
|
-
//# sourceMappingURL=chunk-
|
|
11098
|
-
//# sourceMappingURL=chunk-
|
|
11214
|
+
//# sourceMappingURL=chunk-G3EFA6KW.js.map
|
|
11215
|
+
//# sourceMappingURL=chunk-G3EFA6KW.js.map
|