@lessly/sdk-app 35.0.0 → 35.1.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 (44) 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-CvgJUdcU.d.cts → client.gen-B_GMJlI1.d.cts} +378 -1
  6. package/dist/{client.gen-CvgJUdcU.d.ts → client.gen-B_GMJlI1.d.ts} +378 -1
  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 +131 -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 +131 -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/observe/index.cjs +45 -0
  20. package/dist/observe/index.cjs.map +1 -1
  21. package/dist/observe/index.d.cts +38 -2
  22. package/dist/observe/index.d.ts +38 -2
  23. package/dist/observe/index.js +37 -1
  24. package/dist/observe/index.js.map +1 -1
  25. package/dist/organization/index.d.cts +1 -1
  26. package/dist/organization/index.d.ts +1 -1
  27. package/dist/playground/index.d.cts +1 -1
  28. package/dist/playground/index.d.ts +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 -2
  40. package/src/gen/bindings.gen.ts +131 -0
  41. package/src/gen/client.gen.ts +33 -0
  42. package/src/gen/observe/index.ts +1 -1
  43. package/src/gen/observe/queryOptions.gen.ts +58 -0
  44. package/src/gen/types.gen.ts +381 -0
package/dist/index.d.cts CHANGED
@@ -1,4 +1,4 @@
1
- import { G as GeneratedClient } from './client.gen-CvgJUdcU.cjs';
1
+ import { G as GeneratedClient } from './client.gen-B_GMJlI1.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-CvgJUdcU.js';
1
+ import { G as GeneratedClient } from './client.gen-B_GMJlI1.js';
2
2
 
3
3
  type HttpMethod = 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE';
4
4
  type ParamIn = 'path' | 'query' | 'body';
package/dist/index.js CHANGED
@@ -3761,6 +3761,17 @@ var bindings = {
3761
3761
  }
3762
3762
  },
3763
3763
  "logs": {
3764
+ "facets": {
3765
+ "method": "GET",
3766
+ "params": [
3767
+ {
3768
+ "in": "query",
3769
+ "name": "window"
3770
+ }
3771
+ ],
3772
+ "path": "/observe/logs/facets",
3773
+ "readOnly": true
3774
+ },
3764
3775
  "search": {
3765
3776
  "method": "GET",
3766
3777
  "params": [
@@ -3784,6 +3795,10 @@ var bindings = {
3784
3795
  "in": "query",
3785
3796
  "name": "traceId"
3786
3797
  },
3798
+ {
3799
+ "in": "query",
3800
+ "name": "q"
3801
+ },
3787
3802
  {
3788
3803
  "in": "query",
3789
3804
  "name": "from"
@@ -3827,6 +3842,122 @@ var bindings = {
3827
3842
  "path": "/observe/logs/tail",
3828
3843
  "readOnly": true
3829
3844
  }
3845
+ },
3846
+ "webhooks": {
3847
+ "create": {
3848
+ "method": "POST",
3849
+ "params": [
3850
+ {
3851
+ "in": "body",
3852
+ "name": "url"
3853
+ },
3854
+ {
3855
+ "in": "body",
3856
+ "name": "description"
3857
+ }
3858
+ ],
3859
+ "path": "/observe/webhooks",
3860
+ "readOnly": false
3861
+ },
3862
+ "delete": {
3863
+ "method": "DELETE",
3864
+ "params": [
3865
+ {
3866
+ "in": "path",
3867
+ "name": "id"
3868
+ }
3869
+ ],
3870
+ "path": "/observe/webhooks/:id",
3871
+ "readOnly": false
3872
+ },
3873
+ "get": {
3874
+ "method": "GET",
3875
+ "params": [
3876
+ {
3877
+ "in": "path",
3878
+ "name": "id"
3879
+ }
3880
+ ],
3881
+ "path": "/observe/webhooks/:id",
3882
+ "readOnly": true
3883
+ },
3884
+ "list": {
3885
+ "method": "GET",
3886
+ "path": "/observe/webhooks",
3887
+ "readOnly": true
3888
+ },
3889
+ "redeliver": {
3890
+ "method": "POST",
3891
+ "params": [
3892
+ {
3893
+ "in": "path",
3894
+ "name": "id"
3895
+ }
3896
+ ],
3897
+ "path": "/observe/webhooks/deliveries/:id/redeliver",
3898
+ "readOnly": false
3899
+ },
3900
+ "update": {
3901
+ "method": "PATCH",
3902
+ "params": [
3903
+ {
3904
+ "in": "path",
3905
+ "name": "id"
3906
+ },
3907
+ {
3908
+ "in": "body",
3909
+ "name": "url"
3910
+ },
3911
+ {
3912
+ "in": "body",
3913
+ "name": "active"
3914
+ },
3915
+ {
3916
+ "in": "body",
3917
+ "name": "description"
3918
+ }
3919
+ ],
3920
+ "path": "/observe/webhooks/:id",
3921
+ "readOnly": false
3922
+ }
3923
+ },
3924
+ "webhooks-deliveries": {
3925
+ "list": {
3926
+ "method": "GET",
3927
+ "params": [
3928
+ {
3929
+ "in": "query",
3930
+ "name": "webhookId"
3931
+ },
3932
+ {
3933
+ "in": "query",
3934
+ "name": "status"
3935
+ },
3936
+ {
3937
+ "in": "query",
3938
+ "name": "limit"
3939
+ },
3940
+ {
3941
+ "in": "query",
3942
+ "name": "offset"
3943
+ }
3944
+ ],
3945
+ "path": "/observe/webhooks/deliveries",
3946
+ "readOnly": true
3947
+ }
3948
+ },
3949
+ "webhooks-rotate": {
3950
+ "secret": {
3951
+ "method": "POST",
3952
+ "params": [
3953
+ {
3954
+ "in": "path",
3955
+ "name": "id"
3956
+ }
3957
+ ],
3958
+ "path": "/observe/webhooks/:id/rotate-secret",
3959
+ "readOnly": false
3960
+ }
3830
3961
  }
3831
3962
  },
3832
3963
  "organization": {