@lessly/sdk-app 36.1.0 → 36.2.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-DmyTGPoI.d.cts → client.gen-B78AtFRC.d.cts} +18209 -1
  6. package/dist/{client.gen-DmyTGPoI.d.ts → client.gen-B78AtFRC.d.ts} +18209 -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 +125 -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 +125 -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.d.cts +1 -1
  20. package/dist/observe/index.d.ts +1 -1
  21. package/dist/organization/index.d.cts +1 -1
  22. package/dist/organization/index.d.ts +1 -1
  23. package/dist/playground/index.d.cts +1 -1
  24. package/dist/playground/index.d.ts +1 -1
  25. package/dist/realtime/index.d.cts +1 -1
  26. package/dist/realtime/index.d.ts +1 -1
  27. package/dist/support/index.cjs +25 -0
  28. package/dist/support/index.cjs.map +1 -1
  29. package/dist/support/index.d.cts +22 -2
  30. package/dist/support/index.d.ts +22 -2
  31. package/dist/support/index.js +21 -1
  32. package/dist/support/index.js.map +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 +125 -0
  41. package/src/gen/client.gen.ts +17 -0
  42. package/src/gen/support/index.ts +1 -1
  43. package/src/gen/support/queryOptions.gen.ts +32 -0
  44. package/src/gen/types.gen.ts +16831 -0
package/dist/index.d.cts CHANGED
@@ -1,4 +1,4 @@
1
- import { G as GeneratedClient } from './client.gen-DmyTGPoI.cjs';
1
+ import { G as GeneratedClient } from './client.gen-B78AtFRC.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-DmyTGPoI.js';
1
+ import { G as GeneratedClient } from './client.gen-B78AtFRC.js';
2
2
 
3
3
  type HttpMethod = 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE';
4
4
  type ParamIn = 'path' | 'query' | 'body';
package/dist/index.js CHANGED
@@ -5905,6 +5905,131 @@ var bindings = {
5905
5905
  "readOnly": true
5906
5906
  }
5907
5907
  },
5908
+ "rule": {
5909
+ "create": {
5910
+ "method": "POST",
5911
+ "params": [
5912
+ {
5913
+ "in": "body",
5914
+ "name": "surveyId"
5915
+ },
5916
+ {
5917
+ "in": "body",
5918
+ "name": "urlMatch"
5919
+ },
5920
+ {
5921
+ "in": "body",
5922
+ "name": "trigger"
5923
+ },
5924
+ {
5925
+ "in": "body",
5926
+ "name": "frequency"
5927
+ },
5928
+ {
5929
+ "in": "body",
5930
+ "name": "device"
5931
+ },
5932
+ {
5933
+ "in": "body",
5934
+ "name": "enabled"
5935
+ },
5936
+ {
5937
+ "in": "body",
5938
+ "name": "attributeConditions"
5939
+ }
5940
+ ],
5941
+ "path": "/support/rules",
5942
+ "readOnly": false
5943
+ },
5944
+ "delete": {
5945
+ "method": "DELETE",
5946
+ "params": [
5947
+ {
5948
+ "in": "path",
5949
+ "name": "id"
5950
+ }
5951
+ ],
5952
+ "path": "/support/rules/:id",
5953
+ "readOnly": false
5954
+ },
5955
+ "get": {
5956
+ "method": "GET",
5957
+ "params": [
5958
+ {
5959
+ "in": "path",
5960
+ "name": "id"
5961
+ }
5962
+ ],
5963
+ "path": "/support/rules/:id",
5964
+ "readOnly": true
5965
+ },
5966
+ "list": {
5967
+ "method": "GET",
5968
+ "params": [
5969
+ {
5970
+ "in": "query",
5971
+ "name": "surveyId"
5972
+ },
5973
+ {
5974
+ "in": "query",
5975
+ "name": "enabled"
5976
+ },
5977
+ {
5978
+ "in": "query",
5979
+ "name": "url"
5980
+ },
5981
+ {
5982
+ "in": "query",
5983
+ "name": "device"
5984
+ },
5985
+ {
5986
+ "in": "query",
5987
+ "name": "limit"
5988
+ },
5989
+ {
5990
+ "in": "query",
5991
+ "name": "offset"
5992
+ }
5993
+ ],
5994
+ "path": "/support/rules",
5995
+ "readOnly": true
5996
+ },
5997
+ "update": {
5998
+ "method": "PATCH",
5999
+ "params": [
6000
+ {
6001
+ "in": "path",
6002
+ "name": "id"
6003
+ },
6004
+ {
6005
+ "in": "body",
6006
+ "name": "urlMatch"
6007
+ },
6008
+ {
6009
+ "in": "body",
6010
+ "name": "trigger"
6011
+ },
6012
+ {
6013
+ "in": "body",
6014
+ "name": "frequency"
6015
+ },
6016
+ {
6017
+ "in": "body",
6018
+ "name": "device"
6019
+ },
6020
+ {
6021
+ "in": "body",
6022
+ "name": "enabled"
6023
+ },
6024
+ {
6025
+ "in": "body",
6026
+ "name": "attributeConditions"
6027
+ }
6028
+ ],
6029
+ "path": "/support/rules/:id",
6030
+ "readOnly": false
6031
+ }
6032
+ },
5908
6033
  "status": {
5909
6034
  "archive": {
5910
6035
  "method": "POST",