@lessly/sdk-app 61.1.0 → 62.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.
package/dist/index.cjs CHANGED
@@ -6023,19 +6023,6 @@ var bindings = {
6023
6023
  "operationKey": "organization_billing_budgets_get",
6024
6024
  "path": "/governance/api/v1/billing/budgets",
6025
6025
  "readOnly": true
6026
- },
6027
- "set": {
6028
- "level": "write",
6029
- "method": "PUT",
6030
- "operationKey": "organization_billing_budgets_set",
6031
- "params": [
6032
- {
6033
- "in": "body",
6034
- "name": "ceiling_minor"
6035
- }
6036
- ],
6037
- "path": "/governance/api/v1/billing/budgets",
6038
- "readOnly": false
6039
6026
  }
6040
6027
  },
6041
6028
  "billing-caps": {
@@ -6465,6 +6452,198 @@ var bindings = {
6465
6452
  "readOnly": false
6466
6453
  }
6467
6454
  },
6455
+ "groups": {
6456
+ "create": {
6457
+ "level": "write",
6458
+ "method": "POST",
6459
+ "operationKey": "organization_groups_create",
6460
+ "params": [
6461
+ {
6462
+ "in": "path",
6463
+ "name": "orgId"
6464
+ },
6465
+ {
6466
+ "in": "body",
6467
+ "name": "name"
6468
+ },
6469
+ {
6470
+ "in": "body",
6471
+ "name": "description"
6472
+ }
6473
+ ],
6474
+ "path": "/governance/api/v1/organizations/:orgId/groups",
6475
+ "readOnly": false
6476
+ },
6477
+ "delete": {
6478
+ "level": "admin",
6479
+ "method": "DELETE",
6480
+ "operationKey": "organization_groups_delete",
6481
+ "params": [
6482
+ {
6483
+ "in": "path",
6484
+ "name": "orgId"
6485
+ },
6486
+ {
6487
+ "in": "path",
6488
+ "name": "groupId"
6489
+ }
6490
+ ],
6491
+ "path": "/governance/api/v1/organizations/:orgId/groups/:groupId",
6492
+ "readOnly": false
6493
+ },
6494
+ "get": {
6495
+ "level": "read",
6496
+ "method": "GET",
6497
+ "operationKey": "organization_groups_get",
6498
+ "params": [
6499
+ {
6500
+ "in": "path",
6501
+ "name": "orgId"
6502
+ },
6503
+ {
6504
+ "in": "path",
6505
+ "name": "groupId"
6506
+ }
6507
+ ],
6508
+ "path": "/governance/api/v1/organizations/:orgId/groups/:groupId",
6509
+ "readOnly": true
6510
+ },
6511
+ "grant-remove": {
6512
+ "level": "write",
6513
+ "method": "DELETE",
6514
+ "operationKey": "organization_groups_grant-remove",
6515
+ "params": [
6516
+ {
6517
+ "in": "path",
6518
+ "name": "orgId"
6519
+ },
6520
+ {
6521
+ "in": "path",
6522
+ "name": "groupId"
6523
+ },
6524
+ {
6525
+ "in": "path",
6526
+ "name": "productId"
6527
+ }
6528
+ ],
6529
+ "path": "/governance/api/v1/organizations/:orgId/groups/:groupId/grants/:productId",
6530
+ "readOnly": false
6531
+ },
6532
+ "grant-set": {
6533
+ "level": "write",
6534
+ "method": "PUT",
6535
+ "operationKey": "organization_groups_grant-set",
6536
+ "params": [
6537
+ {
6538
+ "in": "path",
6539
+ "name": "orgId"
6540
+ },
6541
+ {
6542
+ "in": "path",
6543
+ "name": "groupId"
6544
+ },
6545
+ {
6546
+ "in": "path",
6547
+ "name": "productId"
6548
+ },
6549
+ {
6550
+ "in": "body",
6551
+ "name": "roleId"
6552
+ }
6553
+ ],
6554
+ "path": "/governance/api/v1/organizations/:orgId/groups/:groupId/grants/:productId",
6555
+ "readOnly": false
6556
+ },
6557
+ "list": {
6558
+ "level": "read",
6559
+ "method": "GET",
6560
+ "operationKey": "organization_groups_list",
6561
+ "params": [
6562
+ {
6563
+ "in": "path",
6564
+ "name": "orgId"
6565
+ }
6566
+ ],
6567
+ "path": "/governance/api/v1/organizations/:orgId/groups",
6568
+ "readOnly": true
6569
+ },
6570
+ "member-add": {
6571
+ "level": "write",
6572
+ "method": "POST",
6573
+ "operationKey": "organization_groups_member-add",
6574
+ "params": [
6575
+ {
6576
+ "in": "path",
6577
+ "name": "orgId"
6578
+ },
6579
+ {
6580
+ "in": "path",
6581
+ "name": "groupId"
6582
+ },
6583
+ {
6584
+ "in": "body",
6585
+ "name": "userId"
6586
+ }
6587
+ ],
6588
+ "path": "/governance/api/v1/organizations/:orgId/groups/:groupId/members",
6589
+ "readOnly": false
6590
+ },
6591
+ "member-remove": {
6592
+ "level": "write",
6593
+ "method": "DELETE",
6594
+ "operationKey": "organization_groups_member-remove",
6595
+ "params": [
6596
+ {
6597
+ "in": "path",
6598
+ "name": "orgId"
6599
+ },
6600
+ {
6601
+ "in": "path",
6602
+ "name": "groupId"
6603
+ },
6604
+ {
6605
+ "in": "path",
6606
+ "name": "userId"
6607
+ }
6608
+ ],
6609
+ "path": "/governance/api/v1/organizations/:orgId/groups/:groupId/members/:userId",
6610
+ "readOnly": false
6611
+ },
6612
+ "update": {
6613
+ "level": "write",
6614
+ "method": "PATCH",
6615
+ "operationKey": "organization_groups_update",
6616
+ "params": [
6617
+ {
6618
+ "in": "path",
6619
+ "name": "orgId"
6620
+ },
6621
+ {
6622
+ "in": "path",
6623
+ "name": "groupId"
6624
+ },
6625
+ {
6626
+ "in": "body",
6627
+ "name": "name"
6628
+ },
6629
+ {
6630
+ "in": "body",
6631
+ "name": "description"
6632
+ }
6633
+ ],
6634
+ "path": "/governance/api/v1/organizations/:orgId/groups/:groupId",
6635
+ "readOnly": false
6636
+ }
6637
+ },
6638
+ "linkedin-member": {
6639
+ "install": {
6640
+ "level": "read",
6641
+ "method": "GET",
6642
+ "operationKey": "organization_linkedin_member_install",
6643
+ "path": "/governance/api/v1/connectors/linkedin-member/install",
6644
+ "readOnly": false
6645
+ }
6646
+ },
6468
6647
  "member": {
6469
6648
  "accept-invite": {
6470
6649
  "level": "write",
@@ -6767,6 +6946,19 @@ var bindings = {
6767
6946
  "path": "/governance/api/v1/products/:productId/roles",
6768
6947
  "readOnly": true
6769
6948
  },
6949
+ "me": {
6950
+ "level": "read",
6951
+ "method": "GET",
6952
+ "operationKey": "organization_product_me",
6953
+ "params": [
6954
+ {
6955
+ "in": "path",
6956
+ "name": "productId"
6957
+ }
6958
+ ],
6959
+ "path": "/governance/api/v1/products/:productId/me",
6960
+ "readOnly": true
6961
+ },
6770
6962
  "revoke-access": {
6771
6963
  "level": "write",
6772
6964
  "method": "DELETE",
@@ -6933,6 +7125,15 @@ var bindings = {
6933
7125
  "readOnly": true
6934
7126
  }
6935
7127
  },
7128
+ "reddit": {
7129
+ "install": {
7130
+ "level": "read",
7131
+ "method": "GET",
7132
+ "operationKey": "organization_reddit_install",
7133
+ "path": "/governance/api/v1/connectors/reddit/install",
7134
+ "readOnly": false
7135
+ }
7136
+ },
6936
7137
  "roles": {
6937
7138
  "create": {
6938
7139
  "level": "write",
@@ -7108,6 +7309,24 @@ var bindings = {
7108
7309
  "path": "/governance/api/v1/support/threads",
7109
7310
  "readOnly": true
7110
7311
  }
7312
+ },
7313
+ "x": {
7314
+ "install": {
7315
+ "level": "read",
7316
+ "method": "GET",
7317
+ "operationKey": "organization_x_install",
7318
+ "path": "/governance/api/v1/connectors/x/install",
7319
+ "readOnly": false
7320
+ }
7321
+ },
7322
+ "youtube": {
7323
+ "install": {
7324
+ "level": "read",
7325
+ "method": "GET",
7326
+ "operationKey": "organization_youtube_install",
7327
+ "path": "/governance/api/v1/connectors/youtube/install",
7328
+ "readOnly": false
7329
+ }
7111
7330
  }
7112
7331
  },
7113
7332
  "playground": {
@@ -10723,7 +10942,6 @@ var operations = {
10723
10942
  "observe_webhooks_update": "write",
10724
10943
  "organization_auth_me": "read",
10725
10944
  "organization_billing_budgets_get": "read",
10726
- "organization_billing_budgets_set": "write",
10727
10945
  "organization_billing_caps_clear": "write",
10728
10946
  "organization_billing_caps_set": "write",
10729
10947
  "organization_bindings_list": "read",
@@ -10754,6 +10972,16 @@ var operations = {
10754
10972
  "organization_github_install": "read",
10755
10973
  "organization_github_list-installations": "read",
10756
10974
  "organization_googleads_install": "read",
10975
+ "organization_groups_create": "write",
10976
+ "organization_groups_delete": "admin",
10977
+ "organization_groups_get": "read",
10978
+ "organization_groups_grant-remove": "write",
10979
+ "organization_groups_grant-set": "write",
10980
+ "organization_groups_list": "read",
10981
+ "organization_groups_member-add": "write",
10982
+ "organization_groups_member-remove": "write",
10983
+ "organization_groups_update": "write",
10984
+ "organization_linkedin_member_install": "read",
10757
10985
  "organization_list": "read",
10758
10986
  "organization_member_accept-invite": "write",
10759
10987
  "organization_member_invite": "write",
@@ -10772,6 +11000,7 @@ var operations = {
10772
11000
  "organization_product_list-access": "read",
10773
11001
  "organization_product_list-members": "read",
10774
11002
  "organization_product_list-roles": "read",
11003
+ "organization_product_me": "read",
10775
11004
  "organization_product_revoke-access": "write",
10776
11005
  "organization_product_select": "read",
10777
11006
  "organization_product_set-access": "write",
@@ -10781,6 +11010,7 @@ var operations = {
10781
11010
  "organization_public-keys_revoke": "admin",
10782
11011
  "organization_public-keys_update-scope": "write",
10783
11012
  "organization_public-routes_list": "read",
11013
+ "organization_reddit_install": "read",
10784
11014
  "organization_roles_create": "write",
10785
11015
  "organization_roles_delete": "admin",
10786
11016
  "organization_roles_get": "read",
@@ -10792,6 +11022,8 @@ var operations = {
10792
11022
  "organization_support_thread_get": "read",
10793
11023
  "organization_support_thread_reply": "write",
10794
11024
  "organization_support_threads_list": "read",
11025
+ "organization_x_install": "read",
11026
+ "organization_youtube_install": "read",
10795
11027
  "playground_analytics_overview": "read",
10796
11028
  "playground_billing_entitlements": "read",
10797
11029
  "playground_billing_record-usage": "write",