@lessly/sdk-app 30.7.0 → 31.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 (63) 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 +0 -5
  4. package/dist/brain/index.cjs.map +1 -1
  5. package/dist/brain/index.d.cts +2 -6
  6. package/dist/brain/index.d.ts +2 -6
  7. package/dist/brain/index.js +1 -5
  8. package/dist/brain/index.js.map +1 -1
  9. package/dist/{client.gen-p_iZK5OO.d.cts → client.gen-3v2tDsvG.d.cts} +1197 -204
  10. package/dist/{client.gen-p_iZK5OO.d.ts → client.gen-3v2tDsvG.d.ts} +1197 -204
  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 +390 -13
  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 +390 -13
  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/observe/index.cjs +71 -0
  24. package/dist/observe/index.cjs.map +1 -0
  25. package/dist/observe/index.d.cts +56 -0
  26. package/dist/observe/index.d.ts +56 -0
  27. package/dist/observe/index.js +57 -0
  28. package/dist/observe/index.js.map +1 -0
  29. package/dist/organization/index.cjs +25 -0
  30. package/dist/organization/index.cjs.map +1 -1
  31. package/dist/organization/index.d.cts +22 -2
  32. package/dist/organization/index.d.ts +22 -2
  33. package/dist/organization/index.js +21 -1
  34. package/dist/organization/index.js.map +1 -1
  35. package/dist/playground/index.cjs +66 -0
  36. package/dist/playground/index.cjs.map +1 -0
  37. package/dist/playground/index.d.cts +52 -0
  38. package/dist/playground/index.d.ts +52 -0
  39. package/dist/playground/index.js +53 -0
  40. package/dist/playground/index.js.map +1 -0
  41. package/dist/realtime/index.d.cts +1 -1
  42. package/dist/realtime/index.d.ts +1 -1
  43. package/dist/support/index.d.cts +1 -1
  44. package/dist/support/index.d.ts +1 -1
  45. package/dist/tracking/index.d.cts +1 -1
  46. package/dist/tracking/index.d.ts +1 -1
  47. package/dist/users/index.d.cts +1 -1
  48. package/dist/users/index.d.ts +1 -1
  49. package/dist/waitlist/index.d.cts +1 -1
  50. package/dist/waitlist/index.d.ts +1 -1
  51. package/package.json +12 -2
  52. package/src/gen/bindings.gen.ts +390 -13
  53. package/src/gen/brain/index.ts +1 -1
  54. package/src/gen/brain/queryOptions.gen.ts +0 -7
  55. package/src/gen/client.gen.ts +120 -5
  56. package/src/gen/manifest.gen.ts +1 -1
  57. package/src/gen/observe/index.ts +3 -0
  58. package/src/gen/observe/queryOptions.gen.ts +89 -0
  59. package/src/gen/organization/index.ts +1 -1
  60. package/src/gen/organization/queryOptions.gen.ts +32 -0
  61. package/src/gen/playground/index.ts +3 -0
  62. package/src/gen/playground/queryOptions.gen.ts +86 -0
  63. package/src/gen/types.gen.ts +1198 -195
package/dist/index.d.cts CHANGED
@@ -1,4 +1,4 @@
1
- import { G as GeneratedClient } from './client.gen-p_iZK5OO.cjs';
1
+ import { G as GeneratedClient } from './client.gen-3v2tDsvG.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-p_iZK5OO.js';
1
+ import { G as GeneratedClient } from './client.gen-3v2tDsvG.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,19 +803,6 @@ 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
- }
819
806
  }
820
807
  },
821
808
  "consent": {
@@ -3603,6 +3590,227 @@ var bindings = {
3603
3590
  }
3604
3591
  }
3605
3592
  },
3593
+ "observe": {
3594
+ "artifacts": {
3595
+ "delete": {
3596
+ "method": "DELETE",
3597
+ "params": [
3598
+ {
3599
+ "in": "path",
3600
+ "name": "id"
3601
+ }
3602
+ ],
3603
+ "path": "/observe/artifacts/:id",
3604
+ "readOnly": false
3605
+ },
3606
+ "list": {
3607
+ "method": "GET",
3608
+ "params": [
3609
+ {
3610
+ "in": "query",
3611
+ "name": "debugId"
3612
+ },
3613
+ {
3614
+ "in": "query",
3615
+ "name": "limit"
3616
+ }
3617
+ ],
3618
+ "path": "/observe/artifacts",
3619
+ "readOnly": true
3620
+ },
3621
+ "resolve": {
3622
+ "method": "GET",
3623
+ "params": [
3624
+ {
3625
+ "in": "path",
3626
+ "name": "issueId"
3627
+ }
3628
+ ],
3629
+ "path": "/observe/artifacts/:issueId/resolve",
3630
+ "readOnly": true
3631
+ }
3632
+ },
3633
+ "issues": {
3634
+ "archive": {
3635
+ "method": "POST",
3636
+ "params": [
3637
+ {
3638
+ "in": "path",
3639
+ "name": "id"
3640
+ }
3641
+ ],
3642
+ "path": "/observe/issues/:id/archive",
3643
+ "readOnly": false
3644
+ },
3645
+ "assign": {
3646
+ "method": "POST",
3647
+ "params": [
3648
+ {
3649
+ "in": "path",
3650
+ "name": "id"
3651
+ },
3652
+ {
3653
+ "in": "body",
3654
+ "name": "assignee"
3655
+ }
3656
+ ],
3657
+ "path": "/observe/issues/:id/assign",
3658
+ "readOnly": false
3659
+ },
3660
+ "get": {
3661
+ "method": "GET",
3662
+ "params": [
3663
+ {
3664
+ "in": "path",
3665
+ "name": "id"
3666
+ }
3667
+ ],
3668
+ "path": "/observe/issues/:id",
3669
+ "readOnly": true
3670
+ },
3671
+ "list": {
3672
+ "method": "GET",
3673
+ "params": [
3674
+ {
3675
+ "in": "query",
3676
+ "name": "status"
3677
+ },
3678
+ {
3679
+ "in": "query",
3680
+ "name": "assignee"
3681
+ },
3682
+ {
3683
+ "in": "query",
3684
+ "name": "limit"
3685
+ }
3686
+ ],
3687
+ "path": "/observe/issues",
3688
+ "readOnly": true
3689
+ },
3690
+ "resolve": {
3691
+ "method": "POST",
3692
+ "params": [
3693
+ {
3694
+ "in": "path",
3695
+ "name": "id"
3696
+ }
3697
+ ],
3698
+ "path": "/observe/issues/:id/resolve",
3699
+ "readOnly": false
3700
+ }
3701
+ },
3702
+ "keys": {
3703
+ "create": {
3704
+ "method": "POST",
3705
+ "params": [
3706
+ {
3707
+ "in": "body",
3708
+ "name": "environment"
3709
+ },
3710
+ {
3711
+ "in": "body",
3712
+ "name": "name"
3713
+ },
3714
+ {
3715
+ "in": "body",
3716
+ "name": "kind"
3717
+ }
3718
+ ],
3719
+ "path": "/observe/keys",
3720
+ "readOnly": false
3721
+ },
3722
+ "list": {
3723
+ "method": "GET",
3724
+ "params": [
3725
+ {
3726
+ "in": "query",
3727
+ "name": "environment"
3728
+ }
3729
+ ],
3730
+ "path": "/observe/keys",
3731
+ "readOnly": true
3732
+ },
3733
+ "revoke": {
3734
+ "method": "POST",
3735
+ "params": [
3736
+ {
3737
+ "in": "path",
3738
+ "name": "id"
3739
+ }
3740
+ ],
3741
+ "path": "/observe/keys/:id/revoke",
3742
+ "readOnly": false
3743
+ }
3744
+ },
3745
+ "logs": {
3746
+ "search": {
3747
+ "method": "GET",
3748
+ "params": [
3749
+ {
3750
+ "in": "query",
3751
+ "name": "environment"
3752
+ },
3753
+ {
3754
+ "in": "query",
3755
+ "name": "service"
3756
+ },
3757
+ {
3758
+ "in": "query",
3759
+ "name": "severityIn"
3760
+ },
3761
+ {
3762
+ "in": "query",
3763
+ "name": "search"
3764
+ },
3765
+ {
3766
+ "in": "query",
3767
+ "name": "traceId"
3768
+ },
3769
+ {
3770
+ "in": "query",
3771
+ "name": "from"
3772
+ },
3773
+ {
3774
+ "in": "query",
3775
+ "name": "to"
3776
+ },
3777
+ {
3778
+ "in": "query",
3779
+ "name": "limit"
3780
+ },
3781
+ {
3782
+ "in": "query",
3783
+ "name": "cursor"
3784
+ }
3785
+ ],
3786
+ "path": "/observe/logs/search",
3787
+ "readOnly": true
3788
+ },
3789
+ "tail": {
3790
+ "method": "GET",
3791
+ "params": [
3792
+ {
3793
+ "in": "query",
3794
+ "name": "environment"
3795
+ },
3796
+ {
3797
+ "in": "query",
3798
+ "name": "service"
3799
+ },
3800
+ {
3801
+ "in": "query",
3802
+ "name": "severityIn"
3803
+ },
3804
+ {
3805
+ "in": "query",
3806
+ "name": "cursor"
3807
+ }
3808
+ ],
3809
+ "path": "/observe/logs/tail",
3810
+ "readOnly": true
3811
+ }
3812
+ }
3813
+ },
3606
3814
  "organization": {
3607
3815
  "$root": {
3608
3816
  "create": {
@@ -4349,6 +4557,21 @@ var bindings = {
4349
4557
  "path": "/governance/api/v1/products/:productId/roles",
4350
4558
  "readOnly": true
4351
4559
  },
4560
+ "resend-invitation": {
4561
+ "method": "POST",
4562
+ "params": [
4563
+ {
4564
+ "in": "path",
4565
+ "name": "productId"
4566
+ },
4567
+ {
4568
+ "in": "path",
4569
+ "name": "id"
4570
+ }
4571
+ ],
4572
+ "path": "/governance/api/v1/products/:productId/invitations/:id/resend",
4573
+ "readOnly": false
4574
+ },
4352
4575
  "revoke-invitation": {
4353
4576
  "method": "POST",
4354
4577
  "params": [
@@ -4575,6 +4798,160 @@ var bindings = {
4575
4798
  "path": "/governance/api/v1/organizations/:organizationId/security/mfa/enable",
4576
4799
  "readOnly": false
4577
4800
  }
4801
+ },
4802
+ "support-thread": {
4803
+ "create": {
4804
+ "method": "POST",
4805
+ "params": [
4806
+ {
4807
+ "in": "body",
4808
+ "name": "title"
4809
+ },
4810
+ {
4811
+ "in": "body",
4812
+ "name": "body"
4813
+ }
4814
+ ],
4815
+ "path": "/governance/api/v1/support/threads",
4816
+ "readOnly": false
4817
+ },
4818
+ "get": {
4819
+ "method": "GET",
4820
+ "params": [
4821
+ {
4822
+ "in": "path",
4823
+ "name": "id"
4824
+ }
4825
+ ],
4826
+ "path": "/governance/api/v1/support/threads/:id",
4827
+ "readOnly": true
4828
+ },
4829
+ "reply": {
4830
+ "method": "POST",
4831
+ "params": [
4832
+ {
4833
+ "in": "path",
4834
+ "name": "id"
4835
+ },
4836
+ {
4837
+ "in": "body",
4838
+ "name": "body"
4839
+ }
4840
+ ],
4841
+ "path": "/governance/api/v1/support/threads/:id/messages",
4842
+ "readOnly": false
4843
+ }
4844
+ },
4845
+ "support-threads": {
4846
+ "list": {
4847
+ "method": "GET",
4848
+ "path": "/governance/api/v1/support/threads",
4849
+ "readOnly": true
4850
+ }
4851
+ }
4852
+ },
4853
+ "playground": {
4854
+ "analytics": {
4855
+ "overview": {
4856
+ "method": "POST",
4857
+ "params": [
4858
+ {
4859
+ "in": "body",
4860
+ "name": "limit"
4861
+ }
4862
+ ],
4863
+ "path": "/playground/analytics/overview",
4864
+ "readOnly": true
4865
+ }
4866
+ },
4867
+ "billing": {
4868
+ "entitlements": {
4869
+ "method": "POST",
4870
+ "path": "/playground/billing/entitlements",
4871
+ "readOnly": true
4872
+ },
4873
+ "record-usage": {
4874
+ "method": "POST",
4875
+ "params": [
4876
+ {
4877
+ "in": "body",
4878
+ "name": "value"
4879
+ }
4880
+ ],
4881
+ "path": "/playground/billing/usage",
4882
+ "readOnly": false
4883
+ }
4884
+ },
4885
+ "clickup": {
4886
+ "create-task": {
4887
+ "method": "POST",
4888
+ "params": [
4889
+ {
4890
+ "in": "body",
4891
+ "name": "listId"
4892
+ },
4893
+ {
4894
+ "in": "body",
4895
+ "name": "name"
4896
+ }
4897
+ ],
4898
+ "path": "/playground/clickup/tasks",
4899
+ "readOnly": false
4900
+ },
4901
+ "get-last-webhook": {
4902
+ "method": "GET",
4903
+ "path": "/playground/clickup/webhooks/last",
4904
+ "readOnly": true
4905
+ },
4906
+ "get-overview": {
4907
+ "method": "GET",
4908
+ "path": "/playground/clickup/overview",
4909
+ "readOnly": true
4910
+ }
4911
+ },
4912
+ "gdrive": {
4913
+ "get-last-change": {
4914
+ "method": "GET",
4915
+ "path": "/playground/gdrive/changes/last",
4916
+ "readOnly": true
4917
+ },
4918
+ "read-file": {
4919
+ "method": "POST",
4920
+ "params": [
4921
+ {
4922
+ "in": "body",
4923
+ "name": "fileId"
4924
+ }
4925
+ ],
4926
+ "path": "/playground/gdrive/file",
4927
+ "readOnly": true
4928
+ }
4929
+ },
4930
+ "googleads": {
4931
+ "read-customer": {
4932
+ "method": "POST",
4933
+ "path": "/playground/googleads/customer",
4934
+ "readOnly": true
4935
+ }
4936
+ },
4937
+ "lifecycle": {
4938
+ "get-state": {
4939
+ "method": "GET",
4940
+ "path": "/playground/lifecycle/state",
4941
+ "readOnly": true
4942
+ },
4943
+ "list-events": {
4944
+ "method": "GET",
4945
+ "path": "/playground/lifecycle/events",
4946
+ "readOnly": true
4947
+ }
4948
+ },
4949
+ "webhook": {
4950
+ "get-last": {
4951
+ "method": "GET",
4952
+ "path": "/playground/webhooks/last",
4953
+ "readOnly": true
4954
+ }
4578
4955
  }
4579
4956
  },
4580
4957
  "realtime": {