@lessly/sdk-app 9.2.0 → 10.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 (38) 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-BLMudoVx.d.cts → client.gen-XqieBmDz.d.cts} +411 -2
  6. package/dist/{client.gen-BLMudoVx.d.ts → client.gen-XqieBmDz.d.ts} +411 -2
  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 +190 -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 +190 -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/playground/index.d.cts +1 -1
  22. package/dist/playground/index.d.ts +1 -1
  23. package/dist/realtime/index.cjs +60 -0
  24. package/dist/realtime/index.cjs.map +1 -1
  25. package/dist/realtime/index.d.cts +50 -2
  26. package/dist/realtime/index.d.ts +50 -2
  27. package/dist/realtime/index.js +49 -1
  28. package/dist/realtime/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/waitlist/index.d.cts +1 -1
  32. package/dist/waitlist/index.d.ts +1 -1
  33. package/package.json +2 -2
  34. package/src/gen/bindings.gen.ts +190 -0
  35. package/src/gen/client.gen.ts +44 -0
  36. package/src/gen/realtime/index.ts +1 -1
  37. package/src/gen/realtime/queryOptions.gen.ts +77 -0
  38. package/src/gen/types.gen.ts +415 -1
package/dist/index.d.cts CHANGED
@@ -1,4 +1,4 @@
1
- import { G as GeneratedClient } from './client.gen-BLMudoVx.cjs';
1
+ import { G as GeneratedClient } from './client.gen-XqieBmDz.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-BLMudoVx.js';
1
+ import { G as GeneratedClient } from './client.gen-XqieBmDz.js';
2
2
 
3
3
  type HttpMethod = 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE';
4
4
  type ParamIn = 'path' | 'query' | 'body';
package/dist/index.js CHANGED
@@ -4610,6 +4610,91 @@ var bindings = {
4610
4610
  "readOnly": false
4611
4611
  }
4612
4612
  },
4613
+ "presence": {
4614
+ "enter": {
4615
+ "method": "POST",
4616
+ "params": [
4617
+ {
4618
+ "in": "body",
4619
+ "name": "channel"
4620
+ },
4621
+ {
4622
+ "in": "body",
4623
+ "name": "info"
4624
+ },
4625
+ {
4626
+ "in": "body",
4627
+ "name": "ttl_seconds"
4628
+ },
4629
+ {
4630
+ "in": "body",
4631
+ "name": "member_id"
4632
+ }
4633
+ ],
4634
+ "path": "/realtime/presence/enter",
4635
+ "readOnly": false
4636
+ },
4637
+ "get": {
4638
+ "method": "GET",
4639
+ "params": [
4640
+ {
4641
+ "in": "query",
4642
+ "name": "channel"
4643
+ }
4644
+ ],
4645
+ "path": "/realtime/presence",
4646
+ "readOnly": true
4647
+ },
4648
+ "leave": {
4649
+ "method": "POST",
4650
+ "params": [
4651
+ {
4652
+ "in": "body",
4653
+ "name": "channel"
4654
+ },
4655
+ {
4656
+ "in": "body",
4657
+ "name": "member_id"
4658
+ }
4659
+ ],
4660
+ "path": "/realtime/presence/leave",
4661
+ "readOnly": false
4662
+ },
4663
+ "stats": {
4664
+ "method": "GET",
4665
+ "params": [
4666
+ {
4667
+ "in": "query",
4668
+ "name": "channel"
4669
+ }
4670
+ ],
4671
+ "path": "/realtime/presence/stats",
4672
+ "readOnly": true
4673
+ },
4674
+ "update": {
4675
+ "method": "POST",
4676
+ "params": [
4677
+ {
4678
+ "in": "body",
4679
+ "name": "channel"
4680
+ },
4681
+ {
4682
+ "in": "body",
4683
+ "name": "info"
4684
+ },
4685
+ {
4686
+ "in": "body",
4687
+ "name": "ttl_seconds"
4688
+ },
4689
+ {
4690
+ "in": "body",
4691
+ "name": "member_id"
4692
+ }
4693
+ ],
4694
+ "path": "/realtime/presence/update",
4695
+ "readOnly": false
4696
+ }
4697
+ },
4613
4698
  "status": {
4614
4699
  "get": {
4615
4700
  "method": "GET",
@@ -4629,6 +4714,111 @@ var bindings = {
4629
4714
  "path": "/realtime/tokens",
4630
4715
  "readOnly": false
4631
4716
  }
4717
+ },
4718
+ "webhook": {
4719
+ "create": {
4720
+ "method": "POST",
4721
+ "params": [
4722
+ {
4723
+ "in": "body",
4724
+ "name": "url"
4725
+ },
4726
+ {
4727
+ "in": "body",
4728
+ "name": "events"
4729
+ },
4730
+ {
4731
+ "in": "body",
4732
+ "name": "description"
4733
+ }
4734
+ ],
4735
+ "path": "/realtime/webhooks",
4736
+ "readOnly": false
4737
+ },
4738
+ "delete": {
4739
+ "method": "DELETE",
4740
+ "params": [
4741
+ {
4742
+ "in": "path",
4743
+ "name": "webhookId"
4744
+ }
4745
+ ],
4746
+ "path": "/realtime/webhooks/:webhookId",
4747
+ "readOnly": false
4748
+ },
4749
+ "get": {
4750
+ "method": "GET",
4751
+ "params": [
4752
+ {
4753
+ "in": "path",
4754
+ "name": "webhookId"
4755
+ }
4756
+ ],
4757
+ "path": "/realtime/webhooks/:webhookId",
4758
+ "readOnly": true
4759
+ },
4760
+ "list": {
4761
+ "method": "GET",
4762
+ "path": "/realtime/webhooks",
4763
+ "readOnly": true
4764
+ },
4765
+ "update": {
4766
+ "method": "PATCH",
4767
+ "params": [
4768
+ {
4769
+ "in": "body",
4770
+ "name": "url"
4771
+ },
4772
+ {
4773
+ "in": "body",
4774
+ "name": "events"
4775
+ },
4776
+ {
4777
+ "in": "body",
4778
+ "name": "description"
4779
+ },
4780
+ {
4781
+ "in": "body",
4782
+ "name": "active"
4783
+ },
4784
+ {
4785
+ "in": "path",
4786
+ "name": "webhookId"
4787
+ }
4788
+ ],
4789
+ "path": "/realtime/webhooks/:webhookId",
4790
+ "readOnly": false
4791
+ }
4792
+ },
4793
+ "webhook-deliveries": {
4794
+ "list": {
4795
+ "method": "GET",
4796
+ "params": [
4797
+ {
4798
+ "in": "path",
4799
+ "name": "webhookId"
4800
+ },
4801
+ {
4802
+ "in": "query",
4803
+ "name": "limit"
4804
+ }
4805
+ ],
4806
+ "path": "/realtime/webhooks/:webhookId/deliveries",
4807
+ "readOnly": true
4808
+ }
4809
+ },
4810
+ "webhook-secret": {
4811
+ "rotate": {
4812
+ "method": "POST",
4813
+ "params": [
4814
+ {
4815
+ "in": "path",
4816
+ "name": "webhookId"
4817
+ }
4818
+ ],
4819
+ "path": "/realtime/webhooks/:webhookId/secret/rotate",
4820
+ "readOnly": false
4821
+ }
4632
4822
  }
4633
4823
  },
4634
4824
  "tracking": {