@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.
- package/README.md +32 -0
- package/dist/_types/gen/client.gen.d.ts +6 -1
- package/dist/_types/gen/manifest.gen.d.ts +3 -2
- 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/_types/index.d.ts +2 -1
- package/dist/_types/runtime/compositions.d.ts +16 -0
- package/dist/_types/runtime/types.d.ts +20 -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 +18 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +8 -3
- 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 +5 -2
- 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/index.cjs
CHANGED
|
@@ -10635,6 +10635,17 @@ var bindings = {
|
|
|
10635
10635
|
"readOnly": true
|
|
10636
10636
|
}
|
|
10637
10637
|
}
|
|
10638
|
+
},
|
|
10639
|
+
"workflow": {
|
|
10640
|
+
"health": {
|
|
10641
|
+
"ping": {
|
|
10642
|
+
"level": "read",
|
|
10643
|
+
"method": "GET",
|
|
10644
|
+
"operationKey": "workflow_health_ping",
|
|
10645
|
+
"path": "/workflow/health/ping",
|
|
10646
|
+
"readOnly": true
|
|
10647
|
+
}
|
|
10648
|
+
}
|
|
10638
10649
|
}
|
|
10639
10650
|
};
|
|
10640
10651
|
|
|
@@ -11194,8 +11205,10 @@ var operations = {
|
|
|
11194
11205
|
"waitlist_invites_send": "write",
|
|
11195
11206
|
"waitlist_signups_erase": "write",
|
|
11196
11207
|
"waitlist_signups_funnel": "read",
|
|
11197
|
-
"waitlist_signups_list": "read"
|
|
11208
|
+
"waitlist_signups_list": "read",
|
|
11209
|
+
"workflow_health_ping": "read"
|
|
11198
11210
|
};
|
|
11211
|
+
var compositions = {};
|
|
11199
11212
|
|
|
11200
11213
|
// src/runtime/permission-match.ts
|
|
11201
11214
|
var LEVELS = ["read", "write", "admin"];
|
|
@@ -11432,8 +11445,12 @@ function accessReason(op) {
|
|
|
11432
11445
|
// src/runtime/operations.ts
|
|
11433
11446
|
var operations2 = operations;
|
|
11434
11447
|
|
|
11448
|
+
// src/runtime/compositions.ts
|
|
11449
|
+
var compositions2 = compositions;
|
|
11450
|
+
|
|
11435
11451
|
exports.LesslyApiError = LesslyApiError;
|
|
11436
11452
|
exports.accessReason = accessReason;
|
|
11453
|
+
exports.compositions = compositions2;
|
|
11437
11454
|
exports.connectStream = connectStream;
|
|
11438
11455
|
exports.createLesslyApp = createLesslyApp;
|
|
11439
11456
|
exports.isAccessDenied = isAccessDenied;
|