@lessly/sdk-app 63.2.5 → 63.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 +6 -1
- package/dist/_types/gen/manifest.gen.d.ts +1 -1
- 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/{chunk-2YAA3AF4.js → chunk-ELVZARJQ.js} +13 -2
- package/dist/{chunk-2YAA3AF4.js.map → chunk-ELVZARJQ.js.map} +1 -1
- package/dist/index.cjs +13 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +3 -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 +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 +2 -1
- 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,7 +11205,8 @@ 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
|
};
|
|
11199
11211
|
|
|
11200
11212
|
// src/runtime/permission-match.ts
|