@lessly/sdk-app 42.2.0 → 43.0.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 (57) hide show
  1. package/dist/analytics/index.d.cts +1 -1
  2. package/dist/analytics/index.d.ts +1 -1
  3. package/dist/brain/index.cjs +0 -5
  4. package/dist/brain/index.cjs.map +1 -1
  5. package/dist/brain/index.d.cts +2 -6
  6. package/dist/brain/index.d.ts +2 -6
  7. package/dist/brain/index.js +1 -5
  8. package/dist/brain/index.js.map +1 -1
  9. package/dist/{client.gen-Cyz4I2yE.d.cts → client.gen-BE8VaNrU.d.cts} +476 -94
  10. package/dist/{client.gen-Cyz4I2yE.d.ts → client.gen-BE8VaNrU.d.ts} +476 -94
  11. package/dist/consent/index.d.cts +1 -1
  12. package/dist/consent/index.d.ts +1 -1
  13. package/dist/deployment/index.d.cts +1 -1
  14. package/dist/deployment/index.d.ts +1 -1
  15. package/dist/index.cjs +153 -13
  16. package/dist/index.cjs.map +1 -1
  17. package/dist/index.d.cts +1 -1
  18. package/dist/index.d.ts +1 -1
  19. package/dist/index.js +153 -13
  20. package/dist/index.js.map +1 -1
  21. package/dist/mail/index.d.cts +2 -2
  22. package/dist/mail/index.d.ts +2 -2
  23. package/dist/observe/index.cjs +15 -0
  24. package/dist/observe/index.cjs.map +1 -1
  25. package/dist/observe/index.d.cts +14 -2
  26. package/dist/observe/index.d.ts +14 -2
  27. package/dist/observe/index.js +13 -1
  28. package/dist/observe/index.js.map +1 -1
  29. package/dist/organization/index.d.cts +1 -1
  30. package/dist/organization/index.d.ts +1 -1
  31. package/dist/playground/index.cjs +66 -0
  32. package/dist/playground/index.cjs.map +1 -0
  33. package/dist/playground/index.d.cts +52 -0
  34. package/dist/playground/index.d.ts +52 -0
  35. package/dist/playground/index.js +53 -0
  36. package/dist/playground/index.js.map +1 -0
  37. package/dist/realtime/index.d.cts +1 -1
  38. package/dist/realtime/index.d.ts +1 -1
  39. package/dist/support/index.d.cts +1 -1
  40. package/dist/support/index.d.ts +1 -1
  41. package/dist/tracking/index.d.cts +1 -1
  42. package/dist/tracking/index.d.ts +1 -1
  43. package/dist/users/index.d.cts +1 -1
  44. package/dist/users/index.d.ts +1 -1
  45. package/dist/waitlist/index.d.cts +1 -1
  46. package/dist/waitlist/index.d.ts +1 -1
  47. package/package.json +7 -2
  48. package/src/gen/bindings.gen.ts +153 -13
  49. package/src/gen/brain/index.ts +1 -1
  50. package/src/gen/brain/queryOptions.gen.ts +0 -7
  51. package/src/gen/client.gen.ts +61 -5
  52. package/src/gen/manifest.gen.ts +1 -1
  53. package/src/gen/observe/index.ts +1 -1
  54. package/src/gen/observe/queryOptions.gen.ts +21 -0
  55. package/src/gen/playground/index.ts +3 -0
  56. package/src/gen/playground/queryOptions.gen.ts +86 -0
  57. package/src/gen/types.gen.ts +482 -92
package/dist/index.d.cts CHANGED
@@ -1,4 +1,4 @@
1
- import { G as GeneratedClient } from './client.gen-Cyz4I2yE.cjs';
1
+ import { G as GeneratedClient } from './client.gen-BE8VaNrU.cjs';
2
2
 
3
3
  type HttpMethod = 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE';
4
4
  type ParamIn = 'path' | 'query' | 'body';
package/dist/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { G as GeneratedClient } from './client.gen-Cyz4I2yE.js';
1
+ import { G as GeneratedClient } from './client.gen-BE8VaNrU.js';
2
2
 
3
3
  type HttpMethod = 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE';
4
4
  type ParamIn = 'path' | 'query' | 'body';
package/dist/index.js CHANGED
@@ -821,19 +821,6 @@ var bindings = {
821
821
  "path": "/brain/restores/:restoreId",
822
822
  "readOnly": true
823
823
  }
824
- },
825
- "usage": {
826
- "report": {
827
- "method": "GET",
828
- "params": [
829
- {
830
- "in": "query",
831
- "name": "days"
832
- }
833
- ],
834
- "path": "/brain/usage/report",
835
- "readOnly": true
836
- }
837
824
  }
838
825
  },
839
826
  "consent": {
@@ -3800,6 +3787,40 @@ var bindings = {
3800
3787
  "path": "/observe/issues/:id/assign",
3801
3788
  "readOnly": false
3802
3789
  },
3790
+ "event": {
3791
+ "method": "GET",
3792
+ "params": [
3793
+ {
3794
+ "in": "path",
3795
+ "name": "id"
3796
+ },
3797
+ {
3798
+ "in": "query",
3799
+ "name": "eventId"
3800
+ }
3801
+ ],
3802
+ "path": "/observe/issues/:id/event",
3803
+ "readOnly": true
3804
+ },
3805
+ "events": {
3806
+ "method": "GET",
3807
+ "params": [
3808
+ {
3809
+ "in": "path",
3810
+ "name": "id"
3811
+ },
3812
+ {
3813
+ "in": "query",
3814
+ "name": "limit"
3815
+ },
3816
+ {
3817
+ "in": "query",
3818
+ "name": "cursor"
3819
+ }
3820
+ ],
3821
+ "path": "/observe/issues/:id/events",
3822
+ "readOnly": true
3823
+ },
3803
3824
  "get": {
3804
3825
  "method": "GET",
3805
3826
  "params": [
@@ -3811,6 +3832,21 @@ var bindings = {
3811
3832
  "path": "/observe/issues/:id",
3812
3833
  "readOnly": true
3813
3834
  },
3835
+ "histogram": {
3836
+ "method": "GET",
3837
+ "params": [
3838
+ {
3839
+ "in": "path",
3840
+ "name": "id"
3841
+ },
3842
+ {
3843
+ "in": "query",
3844
+ "name": "window"
3845
+ }
3846
+ ],
3847
+ "path": "/observe/issues/:id/histogram",
3848
+ "readOnly": true
3849
+ },
3814
3850
  "list": {
3815
3851
  "method": "GET",
3816
3852
  "params": [
@@ -5238,6 +5274,110 @@ var bindings = {
5238
5274
  }
5239
5275
  }
5240
5276
  },
5277
+ "playground": {
5278
+ "analytics": {
5279
+ "overview": {
5280
+ "method": "POST",
5281
+ "params": [
5282
+ {
5283
+ "in": "body",
5284
+ "name": "limit"
5285
+ }
5286
+ ],
5287
+ "path": "/playground/analytics/overview",
5288
+ "readOnly": true
5289
+ }
5290
+ },
5291
+ "billing": {
5292
+ "entitlements": {
5293
+ "method": "POST",
5294
+ "path": "/playground/billing/entitlements",
5295
+ "readOnly": true
5296
+ },
5297
+ "record-usage": {
5298
+ "method": "POST",
5299
+ "params": [
5300
+ {
5301
+ "in": "body",
5302
+ "name": "value"
5303
+ }
5304
+ ],
5305
+ "path": "/playground/billing/usage",
5306
+ "readOnly": false
5307
+ }
5308
+ },
5309
+ "clickup": {
5310
+ "create-task": {
5311
+ "method": "POST",
5312
+ "params": [
5313
+ {
5314
+ "in": "body",
5315
+ "name": "listId"
5316
+ },
5317
+ {
5318
+ "in": "body",
5319
+ "name": "name"
5320
+ }
5321
+ ],
5322
+ "path": "/playground/clickup/tasks",
5323
+ "readOnly": false
5324
+ },
5325
+ "get-last-webhook": {
5326
+ "method": "GET",
5327
+ "path": "/playground/clickup/webhooks/last",
5328
+ "readOnly": true
5329
+ },
5330
+ "get-overview": {
5331
+ "method": "GET",
5332
+ "path": "/playground/clickup/overview",
5333
+ "readOnly": true
5334
+ }
5335
+ },
5336
+ "gdrive": {
5337
+ "get-last-change": {
5338
+ "method": "GET",
5339
+ "path": "/playground/gdrive/changes/last",
5340
+ "readOnly": true
5341
+ },
5342
+ "read-file": {
5343
+ "method": "POST",
5344
+ "params": [
5345
+ {
5346
+ "in": "body",
5347
+ "name": "fileId"
5348
+ }
5349
+ ],
5350
+ "path": "/playground/gdrive/file",
5351
+ "readOnly": true
5352
+ }
5353
+ },
5354
+ "googleads": {
5355
+ "read-customer": {
5356
+ "method": "POST",
5357
+ "path": "/playground/googleads/customer",
5358
+ "readOnly": true
5359
+ }
5360
+ },
5361
+ "lifecycle": {
5362
+ "get-state": {
5363
+ "method": "GET",
5364
+ "path": "/playground/lifecycle/state",
5365
+ "readOnly": true
5366
+ },
5367
+ "list-events": {
5368
+ "method": "GET",
5369
+ "path": "/playground/lifecycle/events",
5370
+ "readOnly": true
5371
+ }
5372
+ },
5373
+ "webhook": {
5374
+ "get-last": {
5375
+ "method": "GET",
5376
+ "path": "/playground/webhooks/last",
5377
+ "readOnly": true
5378
+ }
5379
+ }
5380
+ },
5241
5381
  "realtime": {
5242
5382
  "archive": {
5243
5383
  "export": {