@lessly/sdk-app 63.4.0 → 63.5.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/index.cjs CHANGED
@@ -7455,6 +7455,45 @@ var bindings = {
7455
7455
  "path": "/playground/webhooks/last",
7456
7456
  "readOnly": true
7457
7457
  }
7458
+ },
7459
+ "workflow": {
7460
+ "echo": {
7461
+ "level": "write",
7462
+ "method": "POST",
7463
+ "operationKey": "playground_workflow_echo",
7464
+ "params": [
7465
+ {
7466
+ "in": "body",
7467
+ "name": "note"
7468
+ },
7469
+ {
7470
+ "in": "body",
7471
+ "name": "tags"
7472
+ }
7473
+ ],
7474
+ "path": "/playground/workflow/echo",
7475
+ "readOnly": false
7476
+ },
7477
+ "echo-list": {
7478
+ "level": "read",
7479
+ "method": "GET",
7480
+ "operationKey": "playground_workflow_echo-list",
7481
+ "path": "/playground/workflow/echoes",
7482
+ "readOnly": true
7483
+ },
7484
+ "ping": {
7485
+ "level": "write",
7486
+ "method": "POST",
7487
+ "operationKey": "playground_workflow_ping",
7488
+ "params": [
7489
+ {
7490
+ "in": "body",
7491
+ "name": "kind"
7492
+ }
7493
+ ],
7494
+ "path": "/playground/workflow/ping",
7495
+ "readOnly": false
7496
+ }
7458
7497
  }
7459
7498
  },
7460
7499
  "realtime": {
@@ -11047,6 +11086,9 @@ var operations = {
11047
11086
  "playground_lifecycle_get-state": "read",
11048
11087
  "playground_lifecycle_list-events": "read",
11049
11088
  "playground_webhook_get-last": "read",
11089
+ "playground_workflow_echo": "write",
11090
+ "playground_workflow_echo-list": "read",
11091
+ "playground_workflow_ping": "write",
11050
11092
  "realtime_archive_export": "admin",
11051
11093
  "realtime_archive_export_status": "read",
11052
11094
  "realtime_archive_get": "read",
@@ -11208,7 +11250,10 @@ var operations = {
11208
11250
  "waitlist_signups_list": "read",
11209
11251
  "workflow_health_ping": "read"
11210
11252
  };
11211
- var compositions = {};
11253
+ var compositions = {
11254
+ "playground_workflow_echo": { "pii": ["input.note"], "label": "Store workflow echo" },
11255
+ "playground_workflow_ping": { "label": "Fire workflow ping", "completion_event": "playground/workflow.ping" }
11256
+ };
11212
11257
 
11213
11258
  // src/runtime/permission-match.ts
11214
11259
  var LEVELS = ["read", "write", "admin"];