@lessly/sdk-app 30.4.0 → 30.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.
Files changed (55) 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 +5 -0
  4. package/dist/brain/index.cjs.map +1 -1
  5. package/dist/brain/index.d.cts +6 -2
  6. package/dist/brain/index.d.ts +6 -2
  7. package/dist/brain/index.js +5 -1
  8. package/dist/brain/index.js.map +1 -1
  9. package/dist/{client.gen-D6GSULBV.d.cts → client.gen-TuN8pGec.d.cts} +119 -217
  10. package/dist/{client.gen-D6GSULBV.d.ts → client.gen-TuN8pGec.d.ts} +119 -217
  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 +36 -104
  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 +36 -104
  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/organization/index.cjs +5 -0
  24. package/dist/organization/index.cjs.map +1 -1
  25. package/dist/organization/index.d.cts +6 -2
  26. package/dist/organization/index.d.ts +6 -2
  27. package/dist/organization/index.js +5 -1
  28. package/dist/organization/index.js.map +1 -1
  29. package/dist/realtime/index.d.cts +1 -1
  30. package/dist/realtime/index.d.ts +1 -1
  31. package/dist/support/index.d.cts +1 -1
  32. package/dist/support/index.d.ts +1 -1
  33. package/dist/tracking/index.d.cts +1 -1
  34. package/dist/tracking/index.d.ts +1 -1
  35. package/dist/users/index.d.cts +1 -1
  36. package/dist/users/index.d.ts +1 -1
  37. package/dist/waitlist/index.d.cts +1 -1
  38. package/dist/waitlist/index.d.ts +1 -1
  39. package/package.json +2 -7
  40. package/src/gen/bindings.gen.ts +36 -104
  41. package/src/gen/brain/index.ts +1 -1
  42. package/src/gen/brain/queryOptions.gen.ts +7 -0
  43. package/src/gen/client.gen.ts +8 -52
  44. package/src/gen/manifest.gen.ts +1 -1
  45. package/src/gen/organization/index.ts +1 -1
  46. package/src/gen/organization/queryOptions.gen.ts +6 -0
  47. package/src/gen/types.gen.ts +118 -220
  48. package/dist/playground/index.cjs +0 -66
  49. package/dist/playground/index.cjs.map +0 -1
  50. package/dist/playground/index.d.cts +0 -52
  51. package/dist/playground/index.d.ts +0 -52
  52. package/dist/playground/index.js +0 -53
  53. package/dist/playground/index.js.map +0 -1
  54. package/src/gen/playground/index.ts +0 -3
  55. package/src/gen/playground/queryOptions.gen.ts +0 -86
package/dist/index.d.cts CHANGED
@@ -1,4 +1,4 @@
1
- import { G as GeneratedClient } from './client.gen-D6GSULBV.cjs';
1
+ import { G as GeneratedClient } from './client.gen-TuN8pGec.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-D6GSULBV.js';
1
+ import { G as GeneratedClient } from './client.gen-TuN8pGec.js';
2
2
 
3
3
  type HttpMethod = 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE';
4
4
  type ParamIn = 'path' | 'query' | 'body';
package/dist/index.js CHANGED
@@ -803,6 +803,19 @@ var bindings = {
803
803
  "path": "/brain/restores/:restoreId",
804
804
  "readOnly": true
805
805
  }
806
+ },
807
+ "usage": {
808
+ "report": {
809
+ "method": "GET",
810
+ "params": [
811
+ {
812
+ "in": "query",
813
+ "name": "days"
814
+ }
815
+ ],
816
+ "path": "/brain/usage/report",
817
+ "readOnly": true
818
+ }
806
819
  }
807
820
  },
808
821
  "consent": {
@@ -3947,6 +3960,29 @@ var bindings = {
3947
3960
  ],
3948
3961
  "path": "/governance/api/v1/products/:productId/domains/:domainId",
3949
3962
  "readOnly": false
3963
+ },
3964
+ "set-mode": {
3965
+ "method": "PUT",
3966
+ "params": [
3967
+ {
3968
+ "in": "path",
3969
+ "name": "productId"
3970
+ },
3971
+ {
3972
+ "in": "path",
3973
+ "name": "domainId"
3974
+ },
3975
+ {
3976
+ "in": "body",
3977
+ "name": "mode"
3978
+ },
3979
+ {
3980
+ "in": "body",
3981
+ "name": "providerConnectorId"
3982
+ }
3983
+ ],
3984
+ "path": "/governance/api/v1/products/:productId/domains/:domainId/mode",
3985
+ "readOnly": false
3950
3986
  }
3951
3987
  },
3952
3988
  "extensions": {
@@ -4541,110 +4577,6 @@ var bindings = {
4541
4577
  }
4542
4578
  }
4543
4579
  },
4544
- "playground": {
4545
- "analytics": {
4546
- "overview": {
4547
- "method": "POST",
4548
- "params": [
4549
- {
4550
- "in": "body",
4551
- "name": "limit"
4552
- }
4553
- ],
4554
- "path": "/playground/analytics/overview",
4555
- "readOnly": true
4556
- }
4557
- },
4558
- "billing": {
4559
- "entitlements": {
4560
- "method": "POST",
4561
- "path": "/playground/billing/entitlements",
4562
- "readOnly": true
4563
- },
4564
- "record-usage": {
4565
- "method": "POST",
4566
- "params": [
4567
- {
4568
- "in": "body",
4569
- "name": "value"
4570
- }
4571
- ],
4572
- "path": "/playground/billing/usage",
4573
- "readOnly": false
4574
- }
4575
- },
4576
- "clickup": {
4577
- "create-task": {
4578
- "method": "POST",
4579
- "params": [
4580
- {
4581
- "in": "body",
4582
- "name": "listId"
4583
- },
4584
- {
4585
- "in": "body",
4586
- "name": "name"
4587
- }
4588
- ],
4589
- "path": "/playground/clickup/tasks",
4590
- "readOnly": false
4591
- },
4592
- "get-last-webhook": {
4593
- "method": "GET",
4594
- "path": "/playground/clickup/webhooks/last",
4595
- "readOnly": true
4596
- },
4597
- "get-overview": {
4598
- "method": "GET",
4599
- "path": "/playground/clickup/overview",
4600
- "readOnly": true
4601
- }
4602
- },
4603
- "gdrive": {
4604
- "get-last-change": {
4605
- "method": "GET",
4606
- "path": "/playground/gdrive/changes/last",
4607
- "readOnly": true
4608
- },
4609
- "read-file": {
4610
- "method": "POST",
4611
- "params": [
4612
- {
4613
- "in": "body",
4614
- "name": "fileId"
4615
- }
4616
- ],
4617
- "path": "/playground/gdrive/file",
4618
- "readOnly": true
4619
- }
4620
- },
4621
- "googleads": {
4622
- "read-customer": {
4623
- "method": "POST",
4624
- "path": "/playground/googleads/customer",
4625
- "readOnly": true
4626
- }
4627
- },
4628
- "lifecycle": {
4629
- "get-state": {
4630
- "method": "GET",
4631
- "path": "/playground/lifecycle/state",
4632
- "readOnly": true
4633
- },
4634
- "list-events": {
4635
- "method": "GET",
4636
- "path": "/playground/lifecycle/events",
4637
- "readOnly": true
4638
- }
4639
- },
4640
- "webhook": {
4641
- "get-last": {
4642
- "method": "GET",
4643
- "path": "/playground/webhooks/last",
4644
- "readOnly": true
4645
- }
4646
- }
4647
- },
4648
4580
  "realtime": {
4649
4581
  "archive": {
4650
4582
  "export": {