@lessly/sdk-app 15.0.0 → 15.0.1

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 (47) hide show
  1. package/README.md +12 -8
  2. package/dist/analytics/index.d.cts +1 -1
  3. package/dist/analytics/index.d.ts +1 -1
  4. package/dist/brain/index.cjs +0 -5
  5. package/dist/brain/index.cjs.map +1 -1
  6. package/dist/brain/index.d.cts +2 -6
  7. package/dist/brain/index.d.ts +2 -6
  8. package/dist/brain/index.js +1 -5
  9. package/dist/brain/index.js.map +1 -1
  10. package/dist/{client.gen-CxFsxxHW.d.cts → client.gen-ClvT4E7P.d.cts} +221 -98
  11. package/dist/{client.gen-CxFsxxHW.d.ts → client.gen-ClvT4E7P.d.ts} +221 -98
  12. package/dist/consent/index.d.cts +1 -1
  13. package/dist/consent/index.d.ts +1 -1
  14. package/dist/deployment/index.d.cts +1 -1
  15. package/dist/deployment/index.d.ts +1 -1
  16. package/dist/index.cjs +104 -13
  17. package/dist/index.cjs.map +1 -1
  18. package/dist/index.d.cts +1 -1
  19. package/dist/index.d.ts +1 -1
  20. package/dist/index.js +104 -13
  21. package/dist/index.js.map +1 -1
  22. package/dist/mail/index.d.cts +2 -2
  23. package/dist/mail/index.d.ts +2 -2
  24. package/dist/organization/index.d.cts +1 -1
  25. package/dist/organization/index.d.ts +1 -1
  26. package/dist/playground/index.cjs +66 -0
  27. package/dist/playground/index.cjs.map +1 -0
  28. package/dist/playground/index.d.cts +52 -0
  29. package/dist/playground/index.d.ts +52 -0
  30. package/dist/playground/index.js +53 -0
  31. package/dist/playground/index.js.map +1 -0
  32. package/dist/realtime/index.d.cts +1 -1
  33. package/dist/realtime/index.d.ts +1 -1
  34. package/dist/tracking/index.d.cts +1 -1
  35. package/dist/tracking/index.d.ts +1 -1
  36. package/dist/waitlist/index.d.cts +1 -1
  37. package/dist/waitlist/index.d.ts +1 -1
  38. package/docs/recipes/sdk-usage.md +1 -1
  39. package/package.json +8 -2
  40. package/src/gen/bindings.gen.ts +104 -13
  41. package/src/gen/brain/index.ts +1 -1
  42. package/src/gen/brain/queryOptions.gen.ts +0 -7
  43. package/src/gen/client.gen.ts +52 -5
  44. package/src/gen/manifest.gen.ts +1 -1
  45. package/src/gen/playground/index.ts +3 -0
  46. package/src/gen/playground/queryOptions.gen.ts +86 -0
  47. package/src/gen/types.gen.ts +224 -96
package/dist/index.cjs CHANGED
@@ -797,19 +797,6 @@ var bindings = {
797
797
  "path": "/brain/restores/:restoreId",
798
798
  "readOnly": true
799
799
  }
800
- },
801
- "usage": {
802
- "report": {
803
- "method": "GET",
804
- "params": [
805
- {
806
- "in": "query",
807
- "name": "days"
808
- }
809
- ],
810
- "path": "/brain/usage/report",
811
- "readOnly": true
812
- }
813
800
  }
814
801
  },
815
802
  "consent": {
@@ -4383,6 +4370,110 @@ var bindings = {
4383
4370
  }
4384
4371
  }
4385
4372
  },
4373
+ "playground": {
4374
+ "analytics": {
4375
+ "overview": {
4376
+ "method": "POST",
4377
+ "params": [
4378
+ {
4379
+ "in": "body",
4380
+ "name": "limit"
4381
+ }
4382
+ ],
4383
+ "path": "/playground/analytics/overview",
4384
+ "readOnly": true
4385
+ }
4386
+ },
4387
+ "billing": {
4388
+ "entitlements": {
4389
+ "method": "POST",
4390
+ "path": "/playground/billing/entitlements",
4391
+ "readOnly": true
4392
+ },
4393
+ "record-usage": {
4394
+ "method": "POST",
4395
+ "params": [
4396
+ {
4397
+ "in": "body",
4398
+ "name": "value"
4399
+ }
4400
+ ],
4401
+ "path": "/playground/billing/usage",
4402
+ "readOnly": false
4403
+ }
4404
+ },
4405
+ "clickup": {
4406
+ "create-task": {
4407
+ "method": "POST",
4408
+ "params": [
4409
+ {
4410
+ "in": "body",
4411
+ "name": "listId"
4412
+ },
4413
+ {
4414
+ "in": "body",
4415
+ "name": "name"
4416
+ }
4417
+ ],
4418
+ "path": "/playground/clickup/tasks",
4419
+ "readOnly": false
4420
+ },
4421
+ "get-last-webhook": {
4422
+ "method": "GET",
4423
+ "path": "/playground/clickup/webhooks/last",
4424
+ "readOnly": true
4425
+ },
4426
+ "get-overview": {
4427
+ "method": "GET",
4428
+ "path": "/playground/clickup/overview",
4429
+ "readOnly": true
4430
+ }
4431
+ },
4432
+ "gdrive": {
4433
+ "get-last-change": {
4434
+ "method": "GET",
4435
+ "path": "/playground/gdrive/changes/last",
4436
+ "readOnly": true
4437
+ },
4438
+ "read-file": {
4439
+ "method": "POST",
4440
+ "params": [
4441
+ {
4442
+ "in": "body",
4443
+ "name": "fileId"
4444
+ }
4445
+ ],
4446
+ "path": "/playground/gdrive/file",
4447
+ "readOnly": true
4448
+ }
4449
+ },
4450
+ "googleads": {
4451
+ "read-customer": {
4452
+ "method": "POST",
4453
+ "path": "/playground/googleads/customer",
4454
+ "readOnly": true
4455
+ }
4456
+ },
4457
+ "lifecycle": {
4458
+ "get-state": {
4459
+ "method": "GET",
4460
+ "path": "/playground/lifecycle/state",
4461
+ "readOnly": true
4462
+ },
4463
+ "list-events": {
4464
+ "method": "GET",
4465
+ "path": "/playground/lifecycle/events",
4466
+ "readOnly": true
4467
+ }
4468
+ },
4469
+ "webhook": {
4470
+ "get-last": {
4471
+ "method": "GET",
4472
+ "path": "/playground/webhooks/last",
4473
+ "readOnly": true
4474
+ }
4475
+ }
4476
+ },
4386
4477
  "realtime": {
4387
4478
  "apikey": {
4388
4479
  "create": {