@lessly/sdk-app 61.2.0 → 62.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.
Files changed (38) hide show
  1. package/dist/_types/gen/client.gen.d.ts +53 -2
  2. package/dist/_types/gen/manifest.gen.d.ts +1 -1
  3. package/dist/_types/gen/organization/index.d.ts +1 -1
  4. package/dist/_types/gen/organization/queryOptions.gen.d.ts +57 -5
  5. package/dist/_types/gen/playground/connect.gen.d.ts +3 -0
  6. package/dist/_types/gen/playground/index.d.ts +3 -0
  7. package/dist/_types/gen/playground/queryOptions.gen.d.ts +50 -0
  8. package/dist/_types/gen/types.gen.d.ts +374 -10
  9. package/dist/_types/index.d.ts +1 -0
  10. package/dist/_types/runtime/access-reason.d.ts +20 -0
  11. package/dist/chunk-2YAA3AF4.js +10437 -0
  12. package/dist/chunk-2YAA3AF4.js.map +1 -0
  13. package/dist/index.cjs +444 -66
  14. package/dist/index.cjs.map +1 -1
  15. package/dist/index.js +60 -10106
  16. package/dist/index.js.map +1 -1
  17. package/dist/organization/index.cjs +70 -5
  18. package/dist/organization/index.cjs.map +1 -1
  19. package/dist/organization/index.js +57 -5
  20. package/dist/organization/index.js.map +1 -1
  21. package/dist/playground/index.cjs +81 -0
  22. package/dist/playground/index.cjs.map +1 -0
  23. package/dist/playground/index.d.cts +1 -0
  24. package/dist/playground/index.d.ts +1 -0
  25. package/dist/playground/index.js +58 -0
  26. package/dist/playground/index.js.map +1 -0
  27. package/docs/recipes/access.md +456 -15
  28. package/docs/rules.md +92 -0
  29. package/package.json +12 -2
  30. package/src/gen/bindings.gen.ts +395 -40
  31. package/src/gen/client.gen.ts +104 -3
  32. package/src/gen/manifest.gen.ts +53 -28
  33. package/src/gen/organization/index.ts +1 -1
  34. package/src/gen/organization/queryOptions.gen.ts +87 -6
  35. package/src/gen/playground/connect.gen.ts +9 -0
  36. package/src/gen/playground/index.ts +4 -0
  37. package/src/gen/playground/queryOptions.gen.ts +86 -0
  38. package/src/gen/types.gen.ts +441 -12
@@ -474,7 +474,7 @@ export const bindings: BindingsMap = {
474
474
  "readOnly": false
475
475
  },
476
476
  "restore": {
477
- "level": "write",
477
+ "level": "admin",
478
478
  "method": "POST",
479
479
  "operationKey": "brain_backup_restore",
480
480
  "params": [
@@ -1071,7 +1071,7 @@ export const bindings: BindingsMap = {
1071
1071
  "readOnly": false
1072
1072
  },
1073
1073
  "delete": {
1074
- "level": "admin",
1074
+ "level": "write",
1075
1075
  "method": "DELETE",
1076
1076
  "operationKey": "brain_memory_delete",
1077
1077
  "params": [
@@ -1175,7 +1175,7 @@ export const bindings: BindingsMap = {
1175
1175
  },
1176
1176
  "product-shared-memory": {
1177
1177
  "reset": {
1178
- "level": "write",
1178
+ "level": "admin",
1179
1179
  "method": "POST",
1180
1180
  "operationKey": "brain_product_shared_memory_reset",
1181
1181
  "params": [
@@ -1230,7 +1230,7 @@ export const bindings: BindingsMap = {
1230
1230
  "consent": {
1231
1231
  "config-cookie-domain": {
1232
1232
  "upsert": {
1233
- "level": "write",
1233
+ "level": "admin",
1234
1234
  "method": "PATCH",
1235
1235
  "operationKey": "consent_config_cookie_domain_upsert",
1236
1236
  "params": [
@@ -1481,7 +1481,7 @@ export const bindings: BindingsMap = {
1481
1481
  },
1482
1482
  "records": {
1483
1483
  "export": {
1484
- "level": "read",
1484
+ "level": "admin",
1485
1485
  "method": "POST",
1486
1486
  "operationKey": "consent_records_export",
1487
1487
  "params": [
@@ -4087,7 +4087,7 @@ export const bindings: BindingsMap = {
4087
4087
  "mail": {
4088
4088
  "apikey": {
4089
4089
  "create": {
4090
- "level": "write",
4090
+ "level": "admin",
4091
4091
  "method": "POST",
4092
4092
  "operationKey": "mail_apikey_create",
4093
4093
  "params": [
@@ -4504,7 +4504,7 @@ export const bindings: BindingsMap = {
4504
4504
  },
4505
4505
  "domain": {
4506
4506
  "create": {
4507
- "level": "write",
4507
+ "level": "admin",
4508
4508
  "method": "POST",
4509
4509
  "operationKey": "mail_domain_create",
4510
4510
  "params": [
@@ -4554,7 +4554,7 @@ export const bindings: BindingsMap = {
4554
4554
  "readOnly": true
4555
4555
  },
4556
4556
  "update": {
4557
- "level": "write",
4557
+ "level": "admin",
4558
4558
  "method": "PATCH",
4559
4559
  "operationKey": "mail_domain_update",
4560
4560
  "params": [
@@ -4924,7 +4924,7 @@ export const bindings: BindingsMap = {
4924
4924
  },
4925
4925
  "webhook": {
4926
4926
  "create": {
4927
- "level": "write",
4927
+ "level": "admin",
4928
4928
  "method": "POST",
4929
4929
  "operationKey": "mail_webhook_create",
4930
4930
  "params": [
@@ -4978,7 +4978,7 @@ export const bindings: BindingsMap = {
4978
4978
  "readOnly": true
4979
4979
  },
4980
4980
  "update": {
4981
- "level": "write",
4981
+ "level": "admin",
4982
4982
  "method": "PATCH",
4983
4983
  "operationKey": "mail_webhook_update",
4984
4984
  "params": [
@@ -5191,7 +5191,7 @@ export const bindings: BindingsMap = {
5191
5191
  },
5192
5192
  "issues": {
5193
5193
  "archive": {
5194
- "level": "admin",
5194
+ "level": "write",
5195
5195
  "method": "POST",
5196
5196
  "operationKey": "observe_issues_archive",
5197
5197
  "params": [
@@ -5720,7 +5720,7 @@ export const bindings: BindingsMap = {
5720
5720
  },
5721
5721
  "webhooks-rotate": {
5722
5722
  "secret": {
5723
- "level": "write",
5723
+ "level": "admin",
5724
5724
  "method": "POST",
5725
5725
  "operationKey": "observe_webhooks_rotate_secret",
5726
5726
  "params": [
@@ -5810,19 +5810,6 @@ export const bindings: BindingsMap = {
5810
5810
  "operationKey": "organization_billing_budgets_get",
5811
5811
  "path": "/governance/api/v1/billing/budgets",
5812
5812
  "readOnly": true
5813
- },
5814
- "set": {
5815
- "level": "write",
5816
- "method": "PUT",
5817
- "operationKey": "organization_billing_budgets_set",
5818
- "params": [
5819
- {
5820
- "in": "body",
5821
- "name": "ceiling_minor"
5822
- }
5823
- ],
5824
- "path": "/governance/api/v1/billing/budgets",
5825
- "readOnly": false
5826
5813
  }
5827
5814
  },
5828
5815
  "billing-caps": {
@@ -6252,6 +6239,198 @@ export const bindings: BindingsMap = {
6252
6239
  "readOnly": false
6253
6240
  }
6254
6241
  },
6242
+ "groups": {
6243
+ "create": {
6244
+ "level": "write",
6245
+ "method": "POST",
6246
+ "operationKey": "organization_groups_create",
6247
+ "params": [
6248
+ {
6249
+ "in": "path",
6250
+ "name": "orgId"
6251
+ },
6252
+ {
6253
+ "in": "body",
6254
+ "name": "name"
6255
+ },
6256
+ {
6257
+ "in": "body",
6258
+ "name": "description"
6259
+ }
6260
+ ],
6261
+ "path": "/governance/api/v1/organizations/:orgId/groups",
6262
+ "readOnly": false
6263
+ },
6264
+ "delete": {
6265
+ "level": "admin",
6266
+ "method": "DELETE",
6267
+ "operationKey": "organization_groups_delete",
6268
+ "params": [
6269
+ {
6270
+ "in": "path",
6271
+ "name": "orgId"
6272
+ },
6273
+ {
6274
+ "in": "path",
6275
+ "name": "groupId"
6276
+ }
6277
+ ],
6278
+ "path": "/governance/api/v1/organizations/:orgId/groups/:groupId",
6279
+ "readOnly": false
6280
+ },
6281
+ "get": {
6282
+ "level": "read",
6283
+ "method": "GET",
6284
+ "operationKey": "organization_groups_get",
6285
+ "params": [
6286
+ {
6287
+ "in": "path",
6288
+ "name": "orgId"
6289
+ },
6290
+ {
6291
+ "in": "path",
6292
+ "name": "groupId"
6293
+ }
6294
+ ],
6295
+ "path": "/governance/api/v1/organizations/:orgId/groups/:groupId",
6296
+ "readOnly": true
6297
+ },
6298
+ "grant-remove": {
6299
+ "level": "write",
6300
+ "method": "DELETE",
6301
+ "operationKey": "organization_groups_grant-remove",
6302
+ "params": [
6303
+ {
6304
+ "in": "path",
6305
+ "name": "orgId"
6306
+ },
6307
+ {
6308
+ "in": "path",
6309
+ "name": "groupId"
6310
+ },
6311
+ {
6312
+ "in": "path",
6313
+ "name": "productId"
6314
+ }
6315
+ ],
6316
+ "path": "/governance/api/v1/organizations/:orgId/groups/:groupId/grants/:productId",
6317
+ "readOnly": false
6318
+ },
6319
+ "grant-set": {
6320
+ "level": "write",
6321
+ "method": "PUT",
6322
+ "operationKey": "organization_groups_grant-set",
6323
+ "params": [
6324
+ {
6325
+ "in": "path",
6326
+ "name": "orgId"
6327
+ },
6328
+ {
6329
+ "in": "path",
6330
+ "name": "groupId"
6331
+ },
6332
+ {
6333
+ "in": "path",
6334
+ "name": "productId"
6335
+ },
6336
+ {
6337
+ "in": "body",
6338
+ "name": "roleId"
6339
+ }
6340
+ ],
6341
+ "path": "/governance/api/v1/organizations/:orgId/groups/:groupId/grants/:productId",
6342
+ "readOnly": false
6343
+ },
6344
+ "list": {
6345
+ "level": "read",
6346
+ "method": "GET",
6347
+ "operationKey": "organization_groups_list",
6348
+ "params": [
6349
+ {
6350
+ "in": "path",
6351
+ "name": "orgId"
6352
+ }
6353
+ ],
6354
+ "path": "/governance/api/v1/organizations/:orgId/groups",
6355
+ "readOnly": true
6356
+ },
6357
+ "member-add": {
6358
+ "level": "write",
6359
+ "method": "POST",
6360
+ "operationKey": "organization_groups_member-add",
6361
+ "params": [
6362
+ {
6363
+ "in": "path",
6364
+ "name": "orgId"
6365
+ },
6366
+ {
6367
+ "in": "path",
6368
+ "name": "groupId"
6369
+ },
6370
+ {
6371
+ "in": "body",
6372
+ "name": "userId"
6373
+ }
6374
+ ],
6375
+ "path": "/governance/api/v1/organizations/:orgId/groups/:groupId/members",
6376
+ "readOnly": false
6377
+ },
6378
+ "member-remove": {
6379
+ "level": "write",
6380
+ "method": "DELETE",
6381
+ "operationKey": "organization_groups_member-remove",
6382
+ "params": [
6383
+ {
6384
+ "in": "path",
6385
+ "name": "orgId"
6386
+ },
6387
+ {
6388
+ "in": "path",
6389
+ "name": "groupId"
6390
+ },
6391
+ {
6392
+ "in": "path",
6393
+ "name": "userId"
6394
+ }
6395
+ ],
6396
+ "path": "/governance/api/v1/organizations/:orgId/groups/:groupId/members/:userId",
6397
+ "readOnly": false
6398
+ },
6399
+ "update": {
6400
+ "level": "write",
6401
+ "method": "PATCH",
6402
+ "operationKey": "organization_groups_update",
6403
+ "params": [
6404
+ {
6405
+ "in": "path",
6406
+ "name": "orgId"
6407
+ },
6408
+ {
6409
+ "in": "path",
6410
+ "name": "groupId"
6411
+ },
6412
+ {
6413
+ "in": "body",
6414
+ "name": "name"
6415
+ },
6416
+ {
6417
+ "in": "body",
6418
+ "name": "description"
6419
+ }
6420
+ ],
6421
+ "path": "/governance/api/v1/organizations/:orgId/groups/:groupId",
6422
+ "readOnly": false
6423
+ }
6424
+ },
6425
+ "linkedin-member": {
6426
+ "install": {
6427
+ "level": "read",
6428
+ "method": "GET",
6429
+ "operationKey": "organization_linkedin_member_install",
6430
+ "path": "/governance/api/v1/connectors/linkedin-member/install",
6431
+ "readOnly": false
6432
+ }
6433
+ },
6255
6434
  "member": {
6256
6435
  "accept-invite": {
6257
6436
  "level": "write",
@@ -6554,6 +6733,19 @@ export const bindings: BindingsMap = {
6554
6733
  "path": "/governance/api/v1/products/:productId/roles",
6555
6734
  "readOnly": true
6556
6735
  },
6736
+ "me": {
6737
+ "level": "read",
6738
+ "method": "GET",
6739
+ "operationKey": "organization_product_me",
6740
+ "params": [
6741
+ {
6742
+ "in": "path",
6743
+ "name": "productId"
6744
+ }
6745
+ ],
6746
+ "path": "/governance/api/v1/products/:productId/me",
6747
+ "readOnly": true
6748
+ },
6557
6749
  "revoke-access": {
6558
6750
  "level": "write",
6559
6751
  "method": "DELETE",
@@ -6720,6 +6912,15 @@ export const bindings: BindingsMap = {
6720
6912
  "readOnly": true
6721
6913
  }
6722
6914
  },
6915
+ "reddit": {
6916
+ "install": {
6917
+ "level": "read",
6918
+ "method": "GET",
6919
+ "operationKey": "organization_reddit_install",
6920
+ "path": "/governance/api/v1/connectors/reddit/install",
6921
+ "readOnly": false
6922
+ }
6923
+ },
6723
6924
  "roles": {
6724
6925
  "create": {
6725
6926
  "level": "write",
@@ -6895,12 +7096,158 @@ export const bindings: BindingsMap = {
6895
7096
  "path": "/governance/api/v1/support/threads",
6896
7097
  "readOnly": true
6897
7098
  }
7099
+ },
7100
+ "x": {
7101
+ "install": {
7102
+ "level": "read",
7103
+ "method": "GET",
7104
+ "operationKey": "organization_x_install",
7105
+ "path": "/governance/api/v1/connectors/x/install",
7106
+ "readOnly": false
7107
+ }
7108
+ },
7109
+ "youtube": {
7110
+ "install": {
7111
+ "level": "read",
7112
+ "method": "GET",
7113
+ "operationKey": "organization_youtube_install",
7114
+ "path": "/governance/api/v1/connectors/youtube/install",
7115
+ "readOnly": false
7116
+ }
7117
+ }
7118
+ },
7119
+ "playground": {
7120
+ "analytics": {
7121
+ "overview": {
7122
+ "level": "read",
7123
+ "method": "POST",
7124
+ "operationKey": "playground_analytics_overview",
7125
+ "params": [
7126
+ {
7127
+ "in": "body",
7128
+ "name": "limit"
7129
+ }
7130
+ ],
7131
+ "path": "/playground/analytics/overview",
7132
+ "readOnly": true
7133
+ }
7134
+ },
7135
+ "billing": {
7136
+ "entitlements": {
7137
+ "level": "read",
7138
+ "method": "POST",
7139
+ "operationKey": "playground_billing_entitlements",
7140
+ "path": "/playground/billing/entitlements",
7141
+ "readOnly": true
7142
+ },
7143
+ "record-usage": {
7144
+ "level": "write",
7145
+ "method": "POST",
7146
+ "operationKey": "playground_billing_record-usage",
7147
+ "params": [
7148
+ {
7149
+ "in": "body",
7150
+ "name": "value"
7151
+ }
7152
+ ],
7153
+ "path": "/playground/billing/usage",
7154
+ "readOnly": false
7155
+ }
7156
+ },
7157
+ "clickup": {
7158
+ "create-task": {
7159
+ "level": "write",
7160
+ "method": "POST",
7161
+ "operationKey": "playground_clickup_create-task",
7162
+ "params": [
7163
+ {
7164
+ "in": "body",
7165
+ "name": "listId"
7166
+ },
7167
+ {
7168
+ "in": "body",
7169
+ "name": "name"
7170
+ }
7171
+ ],
7172
+ "path": "/playground/clickup/tasks",
7173
+ "readOnly": false
7174
+ },
7175
+ "get-last-webhook": {
7176
+ "level": "read",
7177
+ "method": "GET",
7178
+ "operationKey": "playground_clickup_get-last-webhook",
7179
+ "path": "/playground/clickup/webhooks/last",
7180
+ "readOnly": true
7181
+ },
7182
+ "get-overview": {
7183
+ "level": "read",
7184
+ "method": "GET",
7185
+ "operationKey": "playground_clickup_get-overview",
7186
+ "path": "/playground/clickup/overview",
7187
+ "readOnly": true
7188
+ }
7189
+ },
7190
+ "gdrive": {
7191
+ "get-last-change": {
7192
+ "level": "read",
7193
+ "method": "GET",
7194
+ "operationKey": "playground_gdrive_get-last-change",
7195
+ "path": "/playground/gdrive/changes/last",
7196
+ "readOnly": true
7197
+ },
7198
+ "read-file": {
7199
+ "level": "read",
7200
+ "method": "POST",
7201
+ "operationKey": "playground_gdrive_read-file",
7202
+ "params": [
7203
+ {
7204
+ "in": "body",
7205
+ "name": "fileId"
7206
+ }
7207
+ ],
7208
+ "path": "/playground/gdrive/file",
7209
+ "readOnly": true
7210
+ }
7211
+ },
7212
+ "googleads": {
7213
+ "read-customer": {
7214
+ "level": "read",
7215
+ "method": "POST",
7216
+ "operationKey": "playground_googleads_read-customer",
7217
+ "path": "/playground/googleads/customer",
7218
+ "readOnly": true
7219
+ }
7220
+ },
7221
+ "lifecycle": {
7222
+ "get-state": {
7223
+ "level": "read",
7224
+ "method": "GET",
7225
+ "operationKey": "playground_lifecycle_get-state",
7226
+ "path": "/playground/lifecycle/state",
7227
+ "readOnly": true
7228
+ },
7229
+ "list-events": {
7230
+ "level": "read",
7231
+ "method": "GET",
7232
+ "operationKey": "playground_lifecycle_list-events",
7233
+ "path": "/playground/lifecycle/events",
7234
+ "readOnly": true
7235
+ }
7236
+ },
7237
+ "webhook": {
7238
+ "get-last": {
7239
+ "level": "read",
7240
+ "method": "GET",
7241
+ "operationKey": "playground_webhook_get-last",
7242
+ "path": "/playground/webhooks/last",
7243
+ "readOnly": true
7244
+ }
6898
7245
  }
6899
7246
  },
6900
7247
  "realtime": {
6901
7248
  "archive": {
6902
7249
  "export": {
6903
- "level": "write",
7250
+ "level": "admin",
6904
7251
  "method": "POST",
6905
7252
  "operationKey": "realtime_archive_export",
6906
7253
  "params": [
@@ -6959,7 +7306,7 @@ export const bindings: BindingsMap = {
6959
7306
  },
6960
7307
  "grant": {
6961
7308
  "create": {
6962
- "level": "write",
7309
+ "level": "admin",
6963
7310
  "method": "POST",
6964
7311
  "operationKey": "realtime_grant_create",
6965
7312
  "params": [
@@ -7423,7 +7770,7 @@ export const bindings: BindingsMap = {
7423
7770
  },
7424
7771
  "webhook-secret": {
7425
7772
  "rotate": {
7426
- "level": "write",
7773
+ "level": "admin",
7427
7774
  "method": "POST",
7428
7775
  "operationKey": "realtime_webhook_secret_rotate",
7429
7776
  "params": [
@@ -8022,7 +8369,7 @@ export const bindings: BindingsMap = {
8022
8369
  "readOnly": true
8023
8370
  },
8024
8371
  "publish": {
8025
- "level": "write",
8372
+ "level": "admin",
8026
8373
  "method": "POST",
8027
8374
  "operationKey": "support_survey_publish",
8028
8375
  "params": [
@@ -8056,7 +8403,7 @@ export const bindings: BindingsMap = {
8056
8403
  "readOnly": true
8057
8404
  },
8058
8405
  "unpublish": {
8059
- "level": "write",
8406
+ "level": "admin",
8060
8407
  "method": "POST",
8061
8408
  "operationKey": "support_survey_unpublish",
8062
8409
  "params": [
@@ -8270,7 +8617,7 @@ export const bindings: BindingsMap = {
8270
8617
  },
8271
8618
  "webhook": {
8272
8619
  "create": {
8273
- "level": "write",
8620
+ "level": "admin",
8274
8621
  "method": "POST",
8275
8622
  "operationKey": "support_webhook_create",
8276
8623
  "params": [
@@ -8304,7 +8651,7 @@ export const bindings: BindingsMap = {
8304
8651
  "readOnly": false
8305
8652
  },
8306
8653
  "get": {
8307
- "level": "read",
8654
+ "level": "admin",
8308
8655
  "method": "GET",
8309
8656
  "operationKey": "support_webhook_get",
8310
8657
  "params": [
@@ -8317,14 +8664,14 @@ export const bindings: BindingsMap = {
8317
8664
  "readOnly": true
8318
8665
  },
8319
8666
  "list": {
8320
- "level": "read",
8667
+ "level": "admin",
8321
8668
  "method": "GET",
8322
8669
  "operationKey": "support_webhook_list",
8323
8670
  "path": "/support/webhooks",
8324
8671
  "readOnly": true
8325
8672
  },
8326
8673
  "redeliver": {
8327
- "level": "write",
8674
+ "level": "admin",
8328
8675
  "method": "POST",
8329
8676
  "operationKey": "support_webhook_redeliver",
8330
8677
  "params": [
@@ -8337,7 +8684,7 @@ export const bindings: BindingsMap = {
8337
8684
  "readOnly": false
8338
8685
  },
8339
8686
  "update": {
8340
- "level": "write",
8687
+ "level": "admin",
8341
8688
  "method": "PATCH",
8342
8689
  "operationKey": "support_webhook_update",
8343
8690
  "params": [
@@ -8368,7 +8715,7 @@ export const bindings: BindingsMap = {
8368
8715
  },
8369
8716
  "webhook-deliveries": {
8370
8717
  "list": {
8371
- "level": "read",
8718
+ "level": "admin",
8372
8719
  "method": "GET",
8373
8720
  "operationKey": "support_webhook_deliveries_list",
8374
8721
  "params": [
@@ -8407,7 +8754,7 @@ export const bindings: BindingsMap = {
8407
8754
  },
8408
8755
  "webhook-rotate": {
8409
8756
  "secret": {
8410
- "level": "write",
8757
+ "level": "admin",
8411
8758
  "method": "POST",
8412
8759
  "operationKey": "support_webhook_rotate_secret",
8413
8760
  "params": [
@@ -8493,7 +8840,7 @@ export const bindings: BindingsMap = {
8493
8840
  },
8494
8841
  "event-names": {
8495
8842
  "archive": {
8496
- "level": "admin",
8843
+ "level": "write",
8497
8844
  "method": "POST",
8498
8845
  "operationKey": "tracking_event-names_archive",
8499
8846
  "params": [
@@ -8531,7 +8878,7 @@ export const bindings: BindingsMap = {
8531
8878
  "readOnly": true
8532
8879
  },
8533
8880
  "unarchive": {
8534
- "level": "admin",
8881
+ "level": "write",
8535
8882
  "method": "POST",
8536
8883
  "operationKey": "tracking_event-names_unarchive",
8537
8884
  "params": [
@@ -10078,4 +10425,12 @@ export const bindings: BindingsMap = {
10078
10425
  }
10079
10426
  };
10080
10427
 
10081
- export const wsBindings: WsBindingsMap = {};
10428
+ export const wsBindings: WsBindingsMap = {
10429
+ "playground": {
10430
+ "ws": {
10431
+ "echo": {
10432
+ "path": "/playground/ws/echo"
10433
+ }
10434
+ }
10435
+ }
10436
+ };