@lessly/sdk-app 30.5.0 → 30.7.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 (40) 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.d.cts +1 -1
  4. package/dist/brain/index.d.ts +1 -1
  5. package/dist/{client.gen-TuN8pGec.d.cts → client.gen-p_iZK5OO.d.cts} +441 -4
  6. package/dist/{client.gen-TuN8pGec.d.ts → client.gen-p_iZK5OO.d.ts} +441 -4
  7. package/dist/consent/index.d.cts +1 -1
  8. package/dist/consent/index.d.ts +1 -1
  9. package/dist/deployment/index.d.cts +1 -1
  10. package/dist/deployment/index.d.ts +1 -1
  11. package/dist/index.cjs +144 -0
  12. package/dist/index.cjs.map +1 -1
  13. package/dist/index.d.cts +1 -1
  14. package/dist/index.d.ts +1 -1
  15. package/dist/index.js +144 -0
  16. package/dist/index.js.map +1 -1
  17. package/dist/mail/index.d.cts +2 -2
  18. package/dist/mail/index.d.ts +2 -2
  19. package/dist/organization/index.d.cts +1 -1
  20. package/dist/organization/index.d.ts +1 -1
  21. package/dist/realtime/index.d.cts +1 -1
  22. package/dist/realtime/index.d.ts +1 -1
  23. package/dist/support/index.cjs +40 -0
  24. package/dist/support/index.cjs.map +1 -1
  25. package/dist/support/index.d.cts +34 -2
  26. package/dist/support/index.d.ts +34 -2
  27. package/dist/support/index.js +33 -1
  28. package/dist/support/index.js.map +1 -1
  29. package/dist/tracking/index.d.cts +1 -1
  30. package/dist/tracking/index.d.ts +1 -1
  31. package/dist/users/index.d.cts +1 -1
  32. package/dist/users/index.d.ts +1 -1
  33. package/dist/waitlist/index.d.cts +1 -1
  34. package/dist/waitlist/index.d.ts +1 -1
  35. package/package.json +2 -2
  36. package/src/gen/bindings.gen.ts +144 -0
  37. package/src/gen/client.gen.ts +30 -0
  38. package/src/gen/support/index.ts +1 -1
  39. package/src/gen/support/queryOptions.gen.ts +51 -0
  40. package/src/gen/types.gen.ts +443 -3
package/dist/index.d.cts CHANGED
@@ -1,4 +1,4 @@
1
- import { G as GeneratedClient } from './client.gen-TuN8pGec.cjs';
1
+ import { G as GeneratedClient } from './client.gen-p_iZK5OO.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-TuN8pGec.js';
1
+ import { G as GeneratedClient } from './client.gen-p_iZK5OO.js';
2
2
 
3
3
  type HttpMethod = 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE';
4
4
  type ParamIn = 'path' | 'query' | 'body';
package/dist/index.js CHANGED
@@ -5249,6 +5249,14 @@ var bindings = {
5249
5249
  "in": "query",
5250
5250
  "name": "visibility"
5251
5251
  },
5252
+ {
5253
+ "in": "query",
5254
+ "name": "since"
5255
+ },
5256
+ {
5257
+ "in": "query",
5258
+ "name": "cursor"
5259
+ },
5252
5260
  {
5253
5261
  "in": "query",
5254
5262
  "name": "limit"
@@ -5493,6 +5501,142 @@ var bindings = {
5493
5501
  "path": "/support/threads/:id/status",
5494
5502
  "readOnly": false
5495
5503
  }
5504
+ },
5505
+ "webhook": {
5506
+ "create": {
5507
+ "method": "POST",
5508
+ "params": [
5509
+ {
5510
+ "in": "body",
5511
+ "name": "url"
5512
+ },
5513
+ {
5514
+ "in": "body",
5515
+ "name": "eventTypes"
5516
+ },
5517
+ {
5518
+ "in": "body",
5519
+ "name": "description"
5520
+ }
5521
+ ],
5522
+ "path": "/support/webhooks",
5523
+ "readOnly": false
5524
+ },
5525
+ "delete": {
5526
+ "method": "DELETE",
5527
+ "params": [
5528
+ {
5529
+ "in": "path",
5530
+ "name": "id"
5531
+ }
5532
+ ],
5533
+ "path": "/support/webhooks/:id",
5534
+ "readOnly": false
5535
+ },
5536
+ "get": {
5537
+ "method": "GET",
5538
+ "params": [
5539
+ {
5540
+ "in": "path",
5541
+ "name": "id"
5542
+ }
5543
+ ],
5544
+ "path": "/support/webhooks/:id",
5545
+ "readOnly": true
5546
+ },
5547
+ "list": {
5548
+ "method": "GET",
5549
+ "path": "/support/webhooks",
5550
+ "readOnly": true
5551
+ },
5552
+ "redeliver": {
5553
+ "method": "POST",
5554
+ "params": [
5555
+ {
5556
+ "in": "body",
5557
+ "name": "id"
5558
+ }
5559
+ ],
5560
+ "path": "/support/webhook-deliveries/redeliver",
5561
+ "readOnly": false
5562
+ },
5563
+ "update": {
5564
+ "method": "PATCH",
5565
+ "params": [
5566
+ {
5567
+ "in": "body",
5568
+ "name": "url"
5569
+ },
5570
+ {
5571
+ "in": "body",
5572
+ "name": "eventTypes"
5573
+ },
5574
+ {
5575
+ "in": "body",
5576
+ "name": "description"
5577
+ },
5578
+ {
5579
+ "in": "body",
5580
+ "name": "status"
5581
+ },
5582
+ {
5583
+ "in": "path",
5584
+ "name": "id"
5585
+ }
5586
+ ],
5587
+ "path": "/support/webhooks/:id",
5588
+ "readOnly": false
5589
+ }
5590
+ },
5591
+ "webhook-deliveries": {
5592
+ "list": {
5593
+ "method": "GET",
5594
+ "params": [
5595
+ {
5596
+ "in": "query",
5597
+ "name": "webhookId"
5598
+ },
5599
+ {
5600
+ "in": "query",
5601
+ "name": "state"
5602
+ },
5603
+ {
5604
+ "in": "query",
5605
+ "name": "eventType"
5606
+ },
5607
+ {
5608
+ "in": "query",
5609
+ "name": "createdFrom"
5610
+ },
5611
+ {
5612
+ "in": "query",
5613
+ "name": "createdTo"
5614
+ },
5615
+ {
5616
+ "in": "query",
5617
+ "name": "limit"
5618
+ },
5619
+ {
5620
+ "in": "query",
5621
+ "name": "offset"
5622
+ }
5623
+ ],
5624
+ "path": "/support/webhook-deliveries",
5625
+ "readOnly": true
5626
+ }
5627
+ },
5628
+ "webhook-rotate": {
5629
+ "secret": {
5630
+ "method": "POST",
5631
+ "params": [
5632
+ {
5633
+ "in": "path",
5634
+ "name": "id"
5635
+ }
5636
+ ],
5637
+ "path": "/support/webhooks/:id/rotate-secret",
5638
+ "readOnly": false
5639
+ }
5496
5640
  }
5497
5641
  },
5498
5642
  "tracking": {