@lessly/sdk-app 31.0.0 → 31.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 (51) 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-Cn7kIdt-.d.cts → client.gen-CgxJO9Bv.d.cts} +827 -1
  6. package/dist/{client.gen-Cn7kIdt-.d.ts → client.gen-CgxJO9Bv.d.ts} +827 -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 +270 -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 +270 -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 +71 -0
  20. package/dist/observe/index.cjs.map +1 -0
  21. package/dist/observe/index.d.cts +56 -0
  22. package/dist/observe/index.d.ts +56 -0
  23. package/dist/observe/index.js +57 -0
  24. package/dist/observe/index.js.map +1 -0
  25. package/dist/organization/index.cjs +15 -0
  26. package/dist/organization/index.cjs.map +1 -1
  27. package/dist/organization/index.d.cts +14 -2
  28. package/dist/organization/index.d.ts +14 -2
  29. package/dist/organization/index.js +13 -1
  30. package/dist/organization/index.js.map +1 -1
  31. package/dist/playground/index.d.cts +1 -1
  32. package/dist/playground/index.d.ts +1 -1
  33. package/dist/realtime/index.d.cts +1 -1
  34. package/dist/realtime/index.d.ts +1 -1
  35. package/dist/support/index.d.cts +1 -1
  36. package/dist/support/index.d.ts +1 -1
  37. package/dist/tracking/index.d.cts +1 -1
  38. package/dist/tracking/index.d.ts +1 -1
  39. package/dist/users/index.d.cts +1 -1
  40. package/dist/users/index.d.ts +1 -1
  41. package/dist/waitlist/index.d.cts +1 -1
  42. package/dist/waitlist/index.d.ts +1 -1
  43. package/package.json +7 -2
  44. package/src/gen/bindings.gen.ts +270 -0
  45. package/src/gen/client.gen.ts +58 -0
  46. package/src/gen/manifest.gen.ts +1 -1
  47. package/src/gen/observe/index.ts +3 -0
  48. package/src/gen/observe/queryOptions.gen.ts +89 -0
  49. package/src/gen/organization/index.ts +1 -1
  50. package/src/gen/organization/queryOptions.gen.ts +19 -0
  51. package/src/gen/types.gen.ts +832 -0
package/dist/index.d.cts CHANGED
@@ -1,4 +1,4 @@
1
- import { G as GeneratedClient } from './client.gen-Cn7kIdt-.cjs';
1
+ import { G as GeneratedClient } from './client.gen-CgxJO9Bv.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-Cn7kIdt-.js';
1
+ import { G as GeneratedClient } from './client.gen-CgxJO9Bv.js';
2
2
 
3
3
  type HttpMethod = 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE';
4
4
  type ParamIn = 'path' | 'query' | 'body';
package/dist/index.js CHANGED
@@ -3590,6 +3590,227 @@ var bindings = {
3590
3590
  }
3591
3591
  }
3592
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
+ },
3593
3814
  "organization": {
3594
3815
  "$root": {
3595
3816
  "create": {
@@ -4303,6 +4524,17 @@ var bindings = {
4303
4524
  "path": "/governance/api/v1/products",
4304
4525
  "readOnly": true
4305
4526
  },
4527
+ "list-access": {
4528
+ "method": "GET",
4529
+ "params": [
4530
+ {
4531
+ "in": "path",
4532
+ "name": "productId"
4533
+ }
4534
+ ],
4535
+ "path": "/governance/api/v1/products/:productId/access",
4536
+ "readOnly": true
4537
+ },
4306
4538
  "list-invitations": {
4307
4539
  "method": "GET",
4308
4540
  "params": [
@@ -4351,6 +4583,21 @@ var bindings = {
4351
4583
  "path": "/governance/api/v1/products/:productId/invitations/:id/resend",
4352
4584
  "readOnly": false
4353
4585
  },
4586
+ "revoke-access": {
4587
+ "method": "DELETE",
4588
+ "params": [
4589
+ {
4590
+ "in": "path",
4591
+ "name": "productId"
4592
+ },
4593
+ {
4594
+ "in": "path",
4595
+ "name": "userId"
4596
+ }
4597
+ ],
4598
+ "path": "/governance/api/v1/products/:productId/access/:userId",
4599
+ "readOnly": false
4600
+ },
4354
4601
  "revoke-invitation": {
4355
4602
  "method": "POST",
4356
4603
  "params": [
@@ -4377,6 +4624,29 @@ var bindings = {
4377
4624
  "path": "/governance/api/v1/products/select",
4378
4625
  "readOnly": false
4379
4626
  },
4627
+ "set-access": {
4628
+ "method": "PUT",
4629
+ "params": [
4630
+ {
4631
+ "in": "path",
4632
+ "name": "productId"
4633
+ },
4634
+ {
4635
+ "in": "path",
4636
+ "name": "userId"
4637
+ },
4638
+ {
4639
+ "in": "body",
4640
+ "name": "role"
4641
+ },
4642
+ {
4643
+ "in": "body",
4644
+ "name": "roleId"
4645
+ }
4646
+ ],
4647
+ "path": "/governance/api/v1/products/:productId/access/:userId",
4648
+ "readOnly": false
4649
+ },
4380
4650
  "update": {
4381
4651
  "method": "PATCH",
4382
4652
  "params": [