@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/_types/gen/client.gen.d.ts +25 -2
- package/dist/_types/gen/organization/index.d.ts +1 -1
- package/dist/_types/gen/organization/queryOptions.gen.d.ts +57 -5
- package/dist/_types/gen/types.gen.d.ts +183 -11
- package/dist/{chunk-T4K7L6V5.js → chunk-2YAA3AF4.js} +234 -15
- package/dist/chunk-2YAA3AF4.js.map +1 -0
- package/dist/index.cjs +246 -14
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +15 -2
- package/dist/index.js.map +1 -1
- package/dist/organization/index.cjs +70 -5
- package/dist/organization/index.cjs.map +1 -1
- package/dist/organization/index.js +57 -5
- package/dist/organization/index.js.map +1 -1
- package/dist/playground/index.cjs.map +1 -1
- package/dist/playground/index.js +1 -1
- package/package.json +2 -2
- package/src/gen/bindings.gen.ts +232 -13
- package/src/gen/client.gen.ts +52 -3
- package/src/gen/manifest.gen.ts +14 -1
- package/src/gen/organization/index.ts +1 -1
- package/src/gen/organization/queryOptions.gen.ts +87 -6
- package/src/gen/types.gen.ts +215 -13
- package/dist/chunk-T4K7L6V5.js.map +0 -1
package/dist/playground/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lessly/sdk-app",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "62.0.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"engines": {
|
|
@@ -209,5 +209,5 @@
|
|
|
209
209
|
}
|
|
210
210
|
}
|
|
211
211
|
},
|
|
212
|
-
"sdkContentHash": "sha256:
|
|
212
|
+
"sdkContentHash": "sha256:965d6441024647f1461d4e50bedeba9d79dca805ea4668ca8c9ecedefc1c0d0a"
|
|
213
213
|
}
|
package/src/gen/bindings.gen.ts
CHANGED
|
@@ -5810,19 +5810,6 @@ export const bindings: BindingsMap = {
|
|
|
5810
5810
|
"operationKey": "organization_billing_budgets_get",
|
|
5811
5811
|
"path": "/governance/api/v1/billing/budgets",
|
|
5812
5812
|
"readOnly": true
|
|
5813
|
-
},
|
|
5814
|
-
"set": {
|
|
5815
|
-
"level": "write",
|
|
5816
|
-
"method": "PUT",
|
|
5817
|
-
"operationKey": "organization_billing_budgets_set",
|
|
5818
|
-
"params": [
|
|
5819
|
-
{
|
|
5820
|
-
"in": "body",
|
|
5821
|
-
"name": "ceiling_minor"
|
|
5822
|
-
}
|
|
5823
|
-
],
|
|
5824
|
-
"path": "/governance/api/v1/billing/budgets",
|
|
5825
|
-
"readOnly": false
|
|
5826
5813
|
}
|
|
5827
5814
|
},
|
|
5828
5815
|
"billing-caps": {
|
|
@@ -6252,6 +6239,198 @@ export const bindings: BindingsMap = {
|
|
|
6252
6239
|
"readOnly": false
|
|
6253
6240
|
}
|
|
6254
6241
|
},
|
|
6242
|
+
"groups": {
|
|
6243
|
+
"create": {
|
|
6244
|
+
"level": "write",
|
|
6245
|
+
"method": "POST",
|
|
6246
|
+
"operationKey": "organization_groups_create",
|
|
6247
|
+
"params": [
|
|
6248
|
+
{
|
|
6249
|
+
"in": "path",
|
|
6250
|
+
"name": "orgId"
|
|
6251
|
+
},
|
|
6252
|
+
{
|
|
6253
|
+
"in": "body",
|
|
6254
|
+
"name": "name"
|
|
6255
|
+
},
|
|
6256
|
+
{
|
|
6257
|
+
"in": "body",
|
|
6258
|
+
"name": "description"
|
|
6259
|
+
}
|
|
6260
|
+
],
|
|
6261
|
+
"path": "/governance/api/v1/organizations/:orgId/groups",
|
|
6262
|
+
"readOnly": false
|
|
6263
|
+
},
|
|
6264
|
+
"delete": {
|
|
6265
|
+
"level": "admin",
|
|
6266
|
+
"method": "DELETE",
|
|
6267
|
+
"operationKey": "organization_groups_delete",
|
|
6268
|
+
"params": [
|
|
6269
|
+
{
|
|
6270
|
+
"in": "path",
|
|
6271
|
+
"name": "orgId"
|
|
6272
|
+
},
|
|
6273
|
+
{
|
|
6274
|
+
"in": "path",
|
|
6275
|
+
"name": "groupId"
|
|
6276
|
+
}
|
|
6277
|
+
],
|
|
6278
|
+
"path": "/governance/api/v1/organizations/:orgId/groups/:groupId",
|
|
6279
|
+
"readOnly": false
|
|
6280
|
+
},
|
|
6281
|
+
"get": {
|
|
6282
|
+
"level": "read",
|
|
6283
|
+
"method": "GET",
|
|
6284
|
+
"operationKey": "organization_groups_get",
|
|
6285
|
+
"params": [
|
|
6286
|
+
{
|
|
6287
|
+
"in": "path",
|
|
6288
|
+
"name": "orgId"
|
|
6289
|
+
},
|
|
6290
|
+
{
|
|
6291
|
+
"in": "path",
|
|
6292
|
+
"name": "groupId"
|
|
6293
|
+
}
|
|
6294
|
+
],
|
|
6295
|
+
"path": "/governance/api/v1/organizations/:orgId/groups/:groupId",
|
|
6296
|
+
"readOnly": true
|
|
6297
|
+
},
|
|
6298
|
+
"grant-remove": {
|
|
6299
|
+
"level": "write",
|
|
6300
|
+
"method": "DELETE",
|
|
6301
|
+
"operationKey": "organization_groups_grant-remove",
|
|
6302
|
+
"params": [
|
|
6303
|
+
{
|
|
6304
|
+
"in": "path",
|
|
6305
|
+
"name": "orgId"
|
|
6306
|
+
},
|
|
6307
|
+
{
|
|
6308
|
+
"in": "path",
|
|
6309
|
+
"name": "groupId"
|
|
6310
|
+
},
|
|
6311
|
+
{
|
|
6312
|
+
"in": "path",
|
|
6313
|
+
"name": "productId"
|
|
6314
|
+
}
|
|
6315
|
+
],
|
|
6316
|
+
"path": "/governance/api/v1/organizations/:orgId/groups/:groupId/grants/:productId",
|
|
6317
|
+
"readOnly": false
|
|
6318
|
+
},
|
|
6319
|
+
"grant-set": {
|
|
6320
|
+
"level": "write",
|
|
6321
|
+
"method": "PUT",
|
|
6322
|
+
"operationKey": "organization_groups_grant-set",
|
|
6323
|
+
"params": [
|
|
6324
|
+
{
|
|
6325
|
+
"in": "path",
|
|
6326
|
+
"name": "orgId"
|
|
6327
|
+
},
|
|
6328
|
+
{
|
|
6329
|
+
"in": "path",
|
|
6330
|
+
"name": "groupId"
|
|
6331
|
+
},
|
|
6332
|
+
{
|
|
6333
|
+
"in": "path",
|
|
6334
|
+
"name": "productId"
|
|
6335
|
+
},
|
|
6336
|
+
{
|
|
6337
|
+
"in": "body",
|
|
6338
|
+
"name": "roleId"
|
|
6339
|
+
}
|
|
6340
|
+
],
|
|
6341
|
+
"path": "/governance/api/v1/organizations/:orgId/groups/:groupId/grants/:productId",
|
|
6342
|
+
"readOnly": false
|
|
6343
|
+
},
|
|
6344
|
+
"list": {
|
|
6345
|
+
"level": "read",
|
|
6346
|
+
"method": "GET",
|
|
6347
|
+
"operationKey": "organization_groups_list",
|
|
6348
|
+
"params": [
|
|
6349
|
+
{
|
|
6350
|
+
"in": "path",
|
|
6351
|
+
"name": "orgId"
|
|
6352
|
+
}
|
|
6353
|
+
],
|
|
6354
|
+
"path": "/governance/api/v1/organizations/:orgId/groups",
|
|
6355
|
+
"readOnly": true
|
|
6356
|
+
},
|
|
6357
|
+
"member-add": {
|
|
6358
|
+
"level": "write",
|
|
6359
|
+
"method": "POST",
|
|
6360
|
+
"operationKey": "organization_groups_member-add",
|
|
6361
|
+
"params": [
|
|
6362
|
+
{
|
|
6363
|
+
"in": "path",
|
|
6364
|
+
"name": "orgId"
|
|
6365
|
+
},
|
|
6366
|
+
{
|
|
6367
|
+
"in": "path",
|
|
6368
|
+
"name": "groupId"
|
|
6369
|
+
},
|
|
6370
|
+
{
|
|
6371
|
+
"in": "body",
|
|
6372
|
+
"name": "userId"
|
|
6373
|
+
}
|
|
6374
|
+
],
|
|
6375
|
+
"path": "/governance/api/v1/organizations/:orgId/groups/:groupId/members",
|
|
6376
|
+
"readOnly": false
|
|
6377
|
+
},
|
|
6378
|
+
"member-remove": {
|
|
6379
|
+
"level": "write",
|
|
6380
|
+
"method": "DELETE",
|
|
6381
|
+
"operationKey": "organization_groups_member-remove",
|
|
6382
|
+
"params": [
|
|
6383
|
+
{
|
|
6384
|
+
"in": "path",
|
|
6385
|
+
"name": "orgId"
|
|
6386
|
+
},
|
|
6387
|
+
{
|
|
6388
|
+
"in": "path",
|
|
6389
|
+
"name": "groupId"
|
|
6390
|
+
},
|
|
6391
|
+
{
|
|
6392
|
+
"in": "path",
|
|
6393
|
+
"name": "userId"
|
|
6394
|
+
}
|
|
6395
|
+
],
|
|
6396
|
+
"path": "/governance/api/v1/organizations/:orgId/groups/:groupId/members/:userId",
|
|
6397
|
+
"readOnly": false
|
|
6398
|
+
},
|
|
6399
|
+
"update": {
|
|
6400
|
+
"level": "write",
|
|
6401
|
+
"method": "PATCH",
|
|
6402
|
+
"operationKey": "organization_groups_update",
|
|
6403
|
+
"params": [
|
|
6404
|
+
{
|
|
6405
|
+
"in": "path",
|
|
6406
|
+
"name": "orgId"
|
|
6407
|
+
},
|
|
6408
|
+
{
|
|
6409
|
+
"in": "path",
|
|
6410
|
+
"name": "groupId"
|
|
6411
|
+
},
|
|
6412
|
+
{
|
|
6413
|
+
"in": "body",
|
|
6414
|
+
"name": "name"
|
|
6415
|
+
},
|
|
6416
|
+
{
|
|
6417
|
+
"in": "body",
|
|
6418
|
+
"name": "description"
|
|
6419
|
+
}
|
|
6420
|
+
],
|
|
6421
|
+
"path": "/governance/api/v1/organizations/:orgId/groups/:groupId",
|
|
6422
|
+
"readOnly": false
|
|
6423
|
+
}
|
|
6424
|
+
},
|
|
6425
|
+
"linkedin-member": {
|
|
6426
|
+
"install": {
|
|
6427
|
+
"level": "read",
|
|
6428
|
+
"method": "GET",
|
|
6429
|
+
"operationKey": "organization_linkedin_member_install",
|
|
6430
|
+
"path": "/governance/api/v1/connectors/linkedin-member/install",
|
|
6431
|
+
"readOnly": false
|
|
6432
|
+
}
|
|
6433
|
+
},
|
|
6255
6434
|
"member": {
|
|
6256
6435
|
"accept-invite": {
|
|
6257
6436
|
"level": "write",
|
|
@@ -6554,6 +6733,19 @@ export const bindings: BindingsMap = {
|
|
|
6554
6733
|
"path": "/governance/api/v1/products/:productId/roles",
|
|
6555
6734
|
"readOnly": true
|
|
6556
6735
|
},
|
|
6736
|
+
"me": {
|
|
6737
|
+
"level": "read",
|
|
6738
|
+
"method": "GET",
|
|
6739
|
+
"operationKey": "organization_product_me",
|
|
6740
|
+
"params": [
|
|
6741
|
+
{
|
|
6742
|
+
"in": "path",
|
|
6743
|
+
"name": "productId"
|
|
6744
|
+
}
|
|
6745
|
+
],
|
|
6746
|
+
"path": "/governance/api/v1/products/:productId/me",
|
|
6747
|
+
"readOnly": true
|
|
6748
|
+
},
|
|
6557
6749
|
"revoke-access": {
|
|
6558
6750
|
"level": "write",
|
|
6559
6751
|
"method": "DELETE",
|
|
@@ -6720,6 +6912,15 @@ export const bindings: BindingsMap = {
|
|
|
6720
6912
|
"readOnly": true
|
|
6721
6913
|
}
|
|
6722
6914
|
},
|
|
6915
|
+
"reddit": {
|
|
6916
|
+
"install": {
|
|
6917
|
+
"level": "read",
|
|
6918
|
+
"method": "GET",
|
|
6919
|
+
"operationKey": "organization_reddit_install",
|
|
6920
|
+
"path": "/governance/api/v1/connectors/reddit/install",
|
|
6921
|
+
"readOnly": false
|
|
6922
|
+
}
|
|
6923
|
+
},
|
|
6723
6924
|
"roles": {
|
|
6724
6925
|
"create": {
|
|
6725
6926
|
"level": "write",
|
|
@@ -6895,6 +7096,24 @@ export const bindings: BindingsMap = {
|
|
|
6895
7096
|
"path": "/governance/api/v1/support/threads",
|
|
6896
7097
|
"readOnly": true
|
|
6897
7098
|
}
|
|
7099
|
+
},
|
|
7100
|
+
"x": {
|
|
7101
|
+
"install": {
|
|
7102
|
+
"level": "read",
|
|
7103
|
+
"method": "GET",
|
|
7104
|
+
"operationKey": "organization_x_install",
|
|
7105
|
+
"path": "/governance/api/v1/connectors/x/install",
|
|
7106
|
+
"readOnly": false
|
|
7107
|
+
}
|
|
7108
|
+
},
|
|
7109
|
+
"youtube": {
|
|
7110
|
+
"install": {
|
|
7111
|
+
"level": "read",
|
|
7112
|
+
"method": "GET",
|
|
7113
|
+
"operationKey": "organization_youtube_install",
|
|
7114
|
+
"path": "/governance/api/v1/connectors/youtube/install",
|
|
7115
|
+
"readOnly": false
|
|
7116
|
+
}
|
|
6898
7117
|
}
|
|
6899
7118
|
},
|
|
6900
7119
|
"playground": {
|
package/src/gen/client.gen.ts
CHANGED
|
@@ -605,8 +605,6 @@ import type {
|
|
|
605
605
|
OrganizationAuthMeOutput,
|
|
606
606
|
OrganizationBillingBudgetsGetInput,
|
|
607
607
|
OrganizationBillingBudgetsGetOutput,
|
|
608
|
-
OrganizationBillingBudgetsSetInput,
|
|
609
|
-
OrganizationBillingBudgetsSetOutput,
|
|
610
608
|
OrganizationBillingCapsClearInput,
|
|
611
609
|
OrganizationBillingCapsClearOutput,
|
|
612
610
|
OrganizationBillingCapsSetInput,
|
|
@@ -667,6 +665,26 @@ import type {
|
|
|
667
665
|
OrganizationGithubListInstallationsOutput,
|
|
668
666
|
OrganizationGoogleadsInstallInput,
|
|
669
667
|
OrganizationGoogleadsInstallOutput,
|
|
668
|
+
OrganizationGroupsCreateInput,
|
|
669
|
+
OrganizationGroupsCreateOutput,
|
|
670
|
+
OrganizationGroupsDeleteInput,
|
|
671
|
+
OrganizationGroupsDeleteOutput,
|
|
672
|
+
OrganizationGroupsGetInput,
|
|
673
|
+
OrganizationGroupsGetOutput,
|
|
674
|
+
OrganizationGroupsGrantRemoveInput,
|
|
675
|
+
OrganizationGroupsGrantRemoveOutput,
|
|
676
|
+
OrganizationGroupsGrantSetInput,
|
|
677
|
+
OrganizationGroupsGrantSetOutput,
|
|
678
|
+
OrganizationGroupsListInput,
|
|
679
|
+
OrganizationGroupsListOutput,
|
|
680
|
+
OrganizationGroupsMemberAddInput,
|
|
681
|
+
OrganizationGroupsMemberAddOutput,
|
|
682
|
+
OrganizationGroupsMemberRemoveInput,
|
|
683
|
+
OrganizationGroupsMemberRemoveOutput,
|
|
684
|
+
OrganizationGroupsUpdateInput,
|
|
685
|
+
OrganizationGroupsUpdateOutput,
|
|
686
|
+
OrganizationLinkedinMemberInstallInput,
|
|
687
|
+
OrganizationLinkedinMemberInstallOutput,
|
|
670
688
|
OrganizationListInput,
|
|
671
689
|
OrganizationListOutput,
|
|
672
690
|
OrganizationMemberAcceptInviteInput,
|
|
@@ -703,6 +721,8 @@ import type {
|
|
|
703
721
|
OrganizationProductListOutput,
|
|
704
722
|
OrganizationProductListRolesInput,
|
|
705
723
|
OrganizationProductListRolesOutput,
|
|
724
|
+
OrganizationProductMeInput,
|
|
725
|
+
OrganizationProductMeOutput,
|
|
706
726
|
OrganizationProductRevokeAccessInput,
|
|
707
727
|
OrganizationProductRevokeAccessOutput,
|
|
708
728
|
OrganizationProductSelectInput,
|
|
@@ -721,6 +741,8 @@ import type {
|
|
|
721
741
|
OrganizationPublicKeysUpdateScopeOutput,
|
|
722
742
|
OrganizationPublicRoutesListInput,
|
|
723
743
|
OrganizationPublicRoutesListOutput,
|
|
744
|
+
OrganizationRedditInstallInput,
|
|
745
|
+
OrganizationRedditInstallOutput,
|
|
724
746
|
OrganizationRolesCreateInput,
|
|
725
747
|
OrganizationRolesCreateOutput,
|
|
726
748
|
OrganizationRolesDeleteInput,
|
|
@@ -743,6 +765,10 @@ import type {
|
|
|
743
765
|
OrganizationSupportThreadReplyOutput,
|
|
744
766
|
OrganizationSupportThreadsListInput,
|
|
745
767
|
OrganizationSupportThreadsListOutput,
|
|
768
|
+
OrganizationXInstallInput,
|
|
769
|
+
OrganizationXInstallOutput,
|
|
770
|
+
OrganizationYoutubeInstallInput,
|
|
771
|
+
OrganizationYoutubeInstallOutput,
|
|
746
772
|
PlaygroundAnalyticsOverviewInput,
|
|
747
773
|
PlaygroundAnalyticsOverviewOutput,
|
|
748
774
|
PlaygroundBillingEntitlementsInput,
|
|
@@ -1643,7 +1669,6 @@ export interface GeneratedClient {
|
|
|
1643
1669
|
};
|
|
1644
1670
|
'billing-budgets': {
|
|
1645
1671
|
get: ((input: OrganizationBillingBudgetsGetInput) => Promise<OrganizationBillingBudgetsGetOutput>) & Operation;
|
|
1646
|
-
set: ((input: OrganizationBillingBudgetsSetInput) => Promise<OrganizationBillingBudgetsSetOutput>) & Operation;
|
|
1647
1672
|
};
|
|
1648
1673
|
'billing-caps': {
|
|
1649
1674
|
clear: ((input: OrganizationBillingCapsClearInput) => Promise<OrganizationBillingCapsClearOutput>) & Operation;
|
|
@@ -1696,6 +1721,20 @@ export interface GeneratedClient {
|
|
|
1696
1721
|
googleads: {
|
|
1697
1722
|
install: ((input: OrganizationGoogleadsInstallInput) => Promise<OrganizationGoogleadsInstallOutput>) & Operation;
|
|
1698
1723
|
};
|
|
1724
|
+
groups: {
|
|
1725
|
+
create: ((input: OrganizationGroupsCreateInput) => Promise<OrganizationGroupsCreateOutput>) & Operation;
|
|
1726
|
+
delete: ((input: OrganizationGroupsDeleteInput) => Promise<OrganizationGroupsDeleteOutput>) & Operation;
|
|
1727
|
+
get: ((input: OrganizationGroupsGetInput) => Promise<OrganizationGroupsGetOutput>) & Operation;
|
|
1728
|
+
'grant-remove': ((input: OrganizationGroupsGrantRemoveInput) => Promise<OrganizationGroupsGrantRemoveOutput>) & Operation;
|
|
1729
|
+
'grant-set': ((input: OrganizationGroupsGrantSetInput) => Promise<OrganizationGroupsGrantSetOutput>) & Operation;
|
|
1730
|
+
list: ((input: OrganizationGroupsListInput) => Promise<OrganizationGroupsListOutput>) & Operation;
|
|
1731
|
+
'member-add': ((input: OrganizationGroupsMemberAddInput) => Promise<OrganizationGroupsMemberAddOutput>) & Operation;
|
|
1732
|
+
'member-remove': ((input: OrganizationGroupsMemberRemoveInput) => Promise<OrganizationGroupsMemberRemoveOutput>) & Operation;
|
|
1733
|
+
update: ((input: OrganizationGroupsUpdateInput) => Promise<OrganizationGroupsUpdateOutput>) & Operation;
|
|
1734
|
+
};
|
|
1735
|
+
'linkedin-member': {
|
|
1736
|
+
install: ((input: OrganizationLinkedinMemberInstallInput) => Promise<OrganizationLinkedinMemberInstallOutput>) & Operation;
|
|
1737
|
+
};
|
|
1699
1738
|
member: {
|
|
1700
1739
|
'accept-invite': ((input: OrganizationMemberAcceptInviteInput) => Promise<OrganizationMemberAcceptInviteOutput>) & Operation;
|
|
1701
1740
|
invite: ((input: OrganizationMemberInviteInput) => Promise<OrganizationMemberInviteOutput>) & Operation;
|
|
@@ -1720,6 +1759,7 @@ export interface GeneratedClient {
|
|
|
1720
1759
|
'list-access': ((input: OrganizationProductListAccessInput) => Promise<OrganizationProductListAccessOutput>) & Operation;
|
|
1721
1760
|
'list-members': ((input: OrganizationProductListMembersInput) => Promise<OrganizationProductListMembersOutput>) & Operation;
|
|
1722
1761
|
'list-roles': ((input: OrganizationProductListRolesInput) => Promise<OrganizationProductListRolesOutput>) & Operation;
|
|
1762
|
+
me: ((input: OrganizationProductMeInput) => Promise<OrganizationProductMeOutput>) & Operation;
|
|
1723
1763
|
'revoke-access': ((input: OrganizationProductRevokeAccessInput) => Promise<OrganizationProductRevokeAccessOutput>) & Operation;
|
|
1724
1764
|
select: ((input: OrganizationProductSelectInput) => Promise<OrganizationProductSelectOutput>) & Operation;
|
|
1725
1765
|
'set-access': ((input: OrganizationProductSetAccessInput) => Promise<OrganizationProductSetAccessOutput>) & Operation;
|
|
@@ -1734,6 +1774,9 @@ export interface GeneratedClient {
|
|
|
1734
1774
|
'public-routes': {
|
|
1735
1775
|
list: ((input: OrganizationPublicRoutesListInput) => Promise<OrganizationPublicRoutesListOutput>) & Operation;
|
|
1736
1776
|
};
|
|
1777
|
+
reddit: {
|
|
1778
|
+
install: ((input: OrganizationRedditInstallInput) => Promise<OrganizationRedditInstallOutput>) & Operation;
|
|
1779
|
+
};
|
|
1737
1780
|
roles: {
|
|
1738
1781
|
create: ((input: OrganizationRolesCreateInput) => Promise<OrganizationRolesCreateOutput>) & Operation;
|
|
1739
1782
|
delete: ((input: OrganizationRolesDeleteInput) => Promise<OrganizationRolesDeleteOutput>) & Operation;
|
|
@@ -1752,6 +1795,12 @@ export interface GeneratedClient {
|
|
|
1752
1795
|
'support-threads': {
|
|
1753
1796
|
list: ((input: OrganizationSupportThreadsListInput) => Promise<OrganizationSupportThreadsListOutput>) & Operation;
|
|
1754
1797
|
};
|
|
1798
|
+
x: {
|
|
1799
|
+
install: ((input: OrganizationXInstallInput) => Promise<OrganizationXInstallOutput>) & Operation;
|
|
1800
|
+
};
|
|
1801
|
+
youtube: {
|
|
1802
|
+
install: ((input: OrganizationYoutubeInstallInput) => Promise<OrganizationYoutubeInstallOutput>) & Operation;
|
|
1803
|
+
};
|
|
1755
1804
|
};
|
|
1756
1805
|
playground: {
|
|
1757
1806
|
analytics: {
|
package/src/gen/manifest.gen.ts
CHANGED
|
@@ -306,7 +306,6 @@ export const operations: Record<string, ToolLevel> = {
|
|
|
306
306
|
'observe_webhooks_update': 'write',
|
|
307
307
|
'organization_auth_me': 'read',
|
|
308
308
|
'organization_billing_budgets_get': 'read',
|
|
309
|
-
'organization_billing_budgets_set': 'write',
|
|
310
309
|
'organization_billing_caps_clear': 'write',
|
|
311
310
|
'organization_billing_caps_set': 'write',
|
|
312
311
|
'organization_bindings_list': 'read',
|
|
@@ -337,6 +336,16 @@ export const operations: Record<string, ToolLevel> = {
|
|
|
337
336
|
'organization_github_install': 'read',
|
|
338
337
|
'organization_github_list-installations': 'read',
|
|
339
338
|
'organization_googleads_install': 'read',
|
|
339
|
+
'organization_groups_create': 'write',
|
|
340
|
+
'organization_groups_delete': 'admin',
|
|
341
|
+
'organization_groups_get': 'read',
|
|
342
|
+
'organization_groups_grant-remove': 'write',
|
|
343
|
+
'organization_groups_grant-set': 'write',
|
|
344
|
+
'organization_groups_list': 'read',
|
|
345
|
+
'organization_groups_member-add': 'write',
|
|
346
|
+
'organization_groups_member-remove': 'write',
|
|
347
|
+
'organization_groups_update': 'write',
|
|
348
|
+
'organization_linkedin_member_install': 'read',
|
|
340
349
|
'organization_list': 'read',
|
|
341
350
|
'organization_member_accept-invite': 'write',
|
|
342
351
|
'organization_member_invite': 'write',
|
|
@@ -355,6 +364,7 @@ export const operations: Record<string, ToolLevel> = {
|
|
|
355
364
|
'organization_product_list-access': 'read',
|
|
356
365
|
'organization_product_list-members': 'read',
|
|
357
366
|
'organization_product_list-roles': 'read',
|
|
367
|
+
'organization_product_me': 'read',
|
|
358
368
|
'organization_product_revoke-access': 'write',
|
|
359
369
|
'organization_product_select': 'read',
|
|
360
370
|
'organization_product_set-access': 'write',
|
|
@@ -364,6 +374,7 @@ export const operations: Record<string, ToolLevel> = {
|
|
|
364
374
|
'organization_public-keys_revoke': 'admin',
|
|
365
375
|
'organization_public-keys_update-scope': 'write',
|
|
366
376
|
'organization_public-routes_list': 'read',
|
|
377
|
+
'organization_reddit_install': 'read',
|
|
367
378
|
'organization_roles_create': 'write',
|
|
368
379
|
'organization_roles_delete': 'admin',
|
|
369
380
|
'organization_roles_get': 'read',
|
|
@@ -375,6 +386,8 @@ export const operations: Record<string, ToolLevel> = {
|
|
|
375
386
|
'organization_support_thread_get': 'read',
|
|
376
387
|
'organization_support_thread_reply': 'write',
|
|
377
388
|
'organization_support_threads_list': 'read',
|
|
389
|
+
'organization_x_install': 'read',
|
|
390
|
+
'organization_youtube_install': 'read',
|
|
378
391
|
'playground_analytics_overview': 'read',
|
|
379
392
|
'playground_billing_entitlements': 'read',
|
|
380
393
|
'playground_billing_record-usage': 'write',
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
// AUTOGENERATED by scripts/generate.ts — do not edit.
|
|
2
2
|
export * from './queryOptions.gen';
|
|
3
|
-
export type { OrganizationAuthMeInput, OrganizationAuthMeOutput, OrganizationBillingBudgetsGetInput, OrganizationBillingBudgetsGetOutput,
|
|
3
|
+
export type { OrganizationAuthMeInput, OrganizationAuthMeOutput, OrganizationBillingBudgetsGetInput, OrganizationBillingBudgetsGetOutput, OrganizationBillingCapsClearInput, OrganizationBillingCapsClearOutput, OrganizationBillingCapsSetInput, OrganizationBillingCapsSetOutput, OrganizationBindingsListInput, OrganizationBindingsListOutput, OrganizationClickupInstallInput, OrganizationClickupInstallOutput, OrganizationClickupListInstallationsInput, OrganizationClickupListInstallationsOutput, OrganizationCloudflareInstallInput, OrganizationCloudflareInstallOutput, OrganizationConnectorsApproveRequestInput, OrganizationConnectorsApproveRequestOutput, OrganizationConnectorsAttachInput, OrganizationConnectorsAttachOutput, OrganizationConnectorsDeleteInput, OrganizationConnectorsDeleteOutput, OrganizationConnectorsDenyRequestInput, OrganizationConnectorsDenyRequestOutput, OrganizationConnectorsDetachInput, OrganizationConnectorsDetachOutput, OrganizationConnectorsListAttachmentsInput, OrganizationConnectorsListAttachmentsOutput, OrganizationConnectorsListAvailableInput, OrganizationConnectorsListAvailableOutput, OrganizationConnectorsListInput, OrganizationConnectorsListOrgInput, OrganizationConnectorsListOrgOutput, OrganizationConnectorsListOutput, OrganizationConnectorsListRequestsInput, OrganizationConnectorsListRequestsOutput, OrganizationConnectorsRemoveInput, OrganizationConnectorsRemoveOutput, OrganizationConnectorsRequestInput, OrganizationConnectorsRequestOutput, OrganizationCreateInput, OrganizationCreateOutput, OrganizationDomainsAddInput, OrganizationDomainsAddOutput, OrganizationDomainsGetInput, OrganizationDomainsGetOutput, OrganizationDomainsListInput, OrganizationDomainsListOutput, OrganizationDomainsRemoveInput, OrganizationDomainsRemoveOutput, OrganizationDomainsSetModeInput, OrganizationDomainsSetModeOutput, OrganizationExtensionsListInstalledInput, OrganizationExtensionsListInstalledOutput, OrganizationFeedbackSubmitInput, OrganizationFeedbackSubmitOutput, OrganizationGdriveInstallInput, OrganizationGdriveInstallOutput, OrganizationGithubInstallInput, OrganizationGithubInstallOutput, OrganizationGithubListInstallationsInput, OrganizationGithubListInstallationsOutput, OrganizationGoogleadsInstallInput, OrganizationGoogleadsInstallOutput, OrganizationGroupsCreateInput, OrganizationGroupsCreateOutput, OrganizationGroupsDeleteInput, OrganizationGroupsDeleteOutput, OrganizationGroupsGetInput, OrganizationGroupsGetOutput, OrganizationGroupsGrantRemoveInput, OrganizationGroupsGrantRemoveOutput, OrganizationGroupsGrantSetInput, OrganizationGroupsGrantSetOutput, OrganizationGroupsListInput, OrganizationGroupsListOutput, OrganizationGroupsMemberAddInput, OrganizationGroupsMemberAddOutput, OrganizationGroupsMemberRemoveInput, OrganizationGroupsMemberRemoveOutput, OrganizationGroupsUpdateInput, OrganizationGroupsUpdateOutput, OrganizationLinkedinMemberInstallInput, OrganizationLinkedinMemberInstallOutput, OrganizationListInput, OrganizationListOutput, OrganizationMemberAcceptInviteInput, OrganizationMemberAcceptInviteOutput, OrganizationMemberInviteInput, OrganizationMemberInviteOutput, OrganizationMemberListInput, OrganizationMemberListInvitationsInput, OrganizationMemberListInvitationsOutput, OrganizationMemberListOutput, OrganizationMemberListProductAccessInput, OrganizationMemberListProductAccessOutput, OrganizationMemberRemoveInput, OrganizationMemberRemoveOutput, OrganizationMemberRevokeInvitationInput, OrganizationMemberRevokeInvitationOutput, OrganizationMemberSetRoleInput, OrganizationMemberSetRoleOutput, OrganizationMemberShareProductInput, OrganizationMemberShareProductOutput, OrganizationMemberUnshareProductInput, OrganizationMemberUnshareProductOutput, OrganizationMembersAssignRoleInput, OrganizationMembersAssignRoleOutput, OrganizationPermissionCatalogInput, OrganizationPermissionCatalogOutput, OrganizationProductCreateInput, OrganizationProductCreateOutput, OrganizationProductListAccessInput, OrganizationProductListAccessOutput, OrganizationProductListInput, OrganizationProductListMembersInput, OrganizationProductListMembersOutput, OrganizationProductListOutput, OrganizationProductListRolesInput, OrganizationProductListRolesOutput, OrganizationProductMeInput, OrganizationProductMeOutput, OrganizationProductRevokeAccessInput, OrganizationProductRevokeAccessOutput, OrganizationProductSelectInput, OrganizationProductSelectOutput, OrganizationProductSetAccessInput, OrganizationProductSetAccessOutput, OrganizationProductUpdateInput, OrganizationProductUpdateOutput, OrganizationPublicKeysCreateInput, OrganizationPublicKeysCreateOutput, OrganizationPublicKeysListInput, OrganizationPublicKeysListOutput, OrganizationPublicKeysRevokeInput, OrganizationPublicKeysRevokeOutput, OrganizationPublicKeysUpdateScopeInput, OrganizationPublicKeysUpdateScopeOutput, OrganizationPublicRoutesListInput, OrganizationPublicRoutesListOutput, OrganizationRedditInstallInput, OrganizationRedditInstallOutput, OrganizationRolesCreateInput, OrganizationRolesCreateOutput, OrganizationRolesDeleteInput, OrganizationRolesDeleteOutput, OrganizationRolesGetInput, OrganizationRolesGetOutput, OrganizationRolesListInput, OrganizationRolesListOutput, OrganizationRolesUpdateInput, OrganizationRolesUpdateOutput, OrganizationSecurityMfaEnableInput, OrganizationSecurityMfaEnableOutput, OrganizationSelectInput, OrganizationSelectOutput, OrganizationSupportThreadCreateInput, OrganizationSupportThreadCreateOutput, OrganizationSupportThreadGetInput, OrganizationSupportThreadGetOutput, OrganizationSupportThreadReplyInput, OrganizationSupportThreadReplyOutput, OrganizationSupportThreadsListInput, OrganizationSupportThreadsListOutput, OrganizationXInstallInput, OrganizationXInstallOutput, OrganizationYoutubeInstallInput, OrganizationYoutubeInstallOutput } from '../types.gen';
|
|
@@ -5,7 +5,6 @@ import type {
|
|
|
5
5
|
OrganizationAuthMeOutput,
|
|
6
6
|
OrganizationBillingBudgetsGetInput,
|
|
7
7
|
OrganizationBillingBudgetsGetOutput,
|
|
8
|
-
OrganizationBillingBudgetsSetInput,
|
|
9
8
|
OrganizationBillingCapsClearInput,
|
|
10
9
|
OrganizationBillingCapsSetInput,
|
|
11
10
|
OrganizationBindingsListInput,
|
|
@@ -47,6 +46,18 @@ import type {
|
|
|
47
46
|
OrganizationGithubListInstallationsInput,
|
|
48
47
|
OrganizationGithubListInstallationsOutput,
|
|
49
48
|
OrganizationGoogleadsInstallInput,
|
|
49
|
+
OrganizationGroupsCreateInput,
|
|
50
|
+
OrganizationGroupsDeleteInput,
|
|
51
|
+
OrganizationGroupsGetInput,
|
|
52
|
+
OrganizationGroupsGetOutput,
|
|
53
|
+
OrganizationGroupsGrantRemoveInput,
|
|
54
|
+
OrganizationGroupsGrantSetInput,
|
|
55
|
+
OrganizationGroupsListInput,
|
|
56
|
+
OrganizationGroupsListOutput,
|
|
57
|
+
OrganizationGroupsMemberAddInput,
|
|
58
|
+
OrganizationGroupsMemberRemoveInput,
|
|
59
|
+
OrganizationGroupsUpdateInput,
|
|
60
|
+
OrganizationLinkedinMemberInstallInput,
|
|
50
61
|
OrganizationListInput,
|
|
51
62
|
OrganizationListOutput,
|
|
52
63
|
OrganizationMemberAcceptInviteInput,
|
|
@@ -74,6 +85,8 @@ import type {
|
|
|
74
85
|
OrganizationProductListOutput,
|
|
75
86
|
OrganizationProductListRolesInput,
|
|
76
87
|
OrganizationProductListRolesOutput,
|
|
88
|
+
OrganizationProductMeInput,
|
|
89
|
+
OrganizationProductMeOutput,
|
|
77
90
|
OrganizationProductRevokeAccessInput,
|
|
78
91
|
OrganizationProductSelectInput,
|
|
79
92
|
OrganizationProductSetAccessInput,
|
|
@@ -85,6 +98,7 @@ import type {
|
|
|
85
98
|
OrganizationPublicKeysUpdateScopeInput,
|
|
86
99
|
OrganizationPublicRoutesListInput,
|
|
87
100
|
OrganizationPublicRoutesListOutput,
|
|
101
|
+
OrganizationRedditInstallInput,
|
|
88
102
|
OrganizationRolesCreateInput,
|
|
89
103
|
OrganizationRolesDeleteInput,
|
|
90
104
|
OrganizationRolesGetInput,
|
|
@@ -100,6 +114,8 @@ import type {
|
|
|
100
114
|
OrganizationSupportThreadReplyInput,
|
|
101
115
|
OrganizationSupportThreadsListInput,
|
|
102
116
|
OrganizationSupportThreadsListOutput,
|
|
117
|
+
OrganizationXInstallInput,
|
|
118
|
+
OrganizationYoutubeInstallInput,
|
|
103
119
|
} from '../types.gen';
|
|
104
120
|
|
|
105
121
|
export const organizationAuthMeQueryOptions = (sdk: GeneratedClient, input: OrganizationAuthMeInput) => ({
|
|
@@ -112,11 +128,6 @@ export const organizationBillingBudgetsGetQueryOptions = (sdk: GeneratedClient,
|
|
|
112
128
|
queryFn: () => sdk['organization']['billing-budgets']['get'](input),
|
|
113
129
|
});
|
|
114
130
|
|
|
115
|
-
export const organizationBillingBudgetsSetMutationOptions = (sdk: GeneratedClient) => ({
|
|
116
|
-
mutationKey: ['organization', 'billing-budgets', 'set'],
|
|
117
|
-
mutationFn: (input: OrganizationBillingBudgetsSetInput) => sdk['organization']['billing-budgets']['set'](input),
|
|
118
|
-
});
|
|
119
|
-
|
|
120
131
|
export const organizationBillingCapsClearMutationOptions = (sdk: GeneratedClient) => ({
|
|
121
132
|
mutationKey: ['organization', 'billing-caps', 'clear'],
|
|
122
133
|
mutationFn: (input: OrganizationBillingCapsClearInput) => sdk['organization']['billing-caps']['clear'](input),
|
|
@@ -267,6 +278,56 @@ export const organizationGoogleadsInstallMutationOptions = (sdk: GeneratedClient
|
|
|
267
278
|
mutationFn: (input: OrganizationGoogleadsInstallInput) => sdk['organization']['googleads']['install'](input),
|
|
268
279
|
});
|
|
269
280
|
|
|
281
|
+
export const organizationGroupsCreateMutationOptions = (sdk: GeneratedClient) => ({
|
|
282
|
+
mutationKey: ['organization', 'groups', 'create'],
|
|
283
|
+
mutationFn: (input: OrganizationGroupsCreateInput) => sdk['organization']['groups']['create'](input),
|
|
284
|
+
});
|
|
285
|
+
|
|
286
|
+
export const organizationGroupsDeleteMutationOptions = (sdk: GeneratedClient) => ({
|
|
287
|
+
mutationKey: ['organization', 'groups', 'delete'],
|
|
288
|
+
mutationFn: (input: OrganizationGroupsDeleteInput) => sdk['organization']['groups']['delete'](input),
|
|
289
|
+
});
|
|
290
|
+
|
|
291
|
+
export const organizationGroupsGetQueryOptions = (sdk: GeneratedClient, input: OrganizationGroupsGetInput) => ({
|
|
292
|
+
queryKey: ['organization', 'groups', 'get', input] as const,
|
|
293
|
+
queryFn: () => sdk['organization']['groups']['get'](input),
|
|
294
|
+
});
|
|
295
|
+
|
|
296
|
+
export const organizationGroupsGrantRemoveMutationOptions = (sdk: GeneratedClient) => ({
|
|
297
|
+
mutationKey: ['organization', 'groups', 'grant-remove'],
|
|
298
|
+
mutationFn: (input: OrganizationGroupsGrantRemoveInput) => sdk['organization']['groups']['grant-remove'](input),
|
|
299
|
+
});
|
|
300
|
+
|
|
301
|
+
export const organizationGroupsGrantSetMutationOptions = (sdk: GeneratedClient) => ({
|
|
302
|
+
mutationKey: ['organization', 'groups', 'grant-set'],
|
|
303
|
+
mutationFn: (input: OrganizationGroupsGrantSetInput) => sdk['organization']['groups']['grant-set'](input),
|
|
304
|
+
});
|
|
305
|
+
|
|
306
|
+
export const organizationGroupsListQueryOptions = (sdk: GeneratedClient, input: OrganizationGroupsListInput) => ({
|
|
307
|
+
queryKey: ['organization', 'groups', 'list', input] as const,
|
|
308
|
+
queryFn: () => sdk['organization']['groups']['list'](input),
|
|
309
|
+
});
|
|
310
|
+
|
|
311
|
+
export const organizationGroupsMemberAddMutationOptions = (sdk: GeneratedClient) => ({
|
|
312
|
+
mutationKey: ['organization', 'groups', 'member-add'],
|
|
313
|
+
mutationFn: (input: OrganizationGroupsMemberAddInput) => sdk['organization']['groups']['member-add'](input),
|
|
314
|
+
});
|
|
315
|
+
|
|
316
|
+
export const organizationGroupsMemberRemoveMutationOptions = (sdk: GeneratedClient) => ({
|
|
317
|
+
mutationKey: ['organization', 'groups', 'member-remove'],
|
|
318
|
+
mutationFn: (input: OrganizationGroupsMemberRemoveInput) => sdk['organization']['groups']['member-remove'](input),
|
|
319
|
+
});
|
|
320
|
+
|
|
321
|
+
export const organizationGroupsUpdateMutationOptions = (sdk: GeneratedClient) => ({
|
|
322
|
+
mutationKey: ['organization', 'groups', 'update'],
|
|
323
|
+
mutationFn: (input: OrganizationGroupsUpdateInput) => sdk['organization']['groups']['update'](input),
|
|
324
|
+
});
|
|
325
|
+
|
|
326
|
+
export const organizationLinkedinMemberInstallMutationOptions = (sdk: GeneratedClient) => ({
|
|
327
|
+
mutationKey: ['organization', 'linkedin-member', 'install'],
|
|
328
|
+
mutationFn: (input: OrganizationLinkedinMemberInstallInput) => sdk['organization']['linkedin-member']['install'](input),
|
|
329
|
+
});
|
|
330
|
+
|
|
270
331
|
export const organizationListQueryOptions = (sdk: GeneratedClient, input: OrganizationListInput) => ({
|
|
271
332
|
queryKey: ['organization', 'list', input] as const,
|
|
272
333
|
queryFn: () => sdk['organization']['list'](input),
|
|
@@ -357,6 +418,11 @@ export const organizationProductListRolesQueryOptions = (sdk: GeneratedClient, i
|
|
|
357
418
|
queryFn: () => sdk['organization']['product']['list-roles'](input),
|
|
358
419
|
});
|
|
359
420
|
|
|
421
|
+
export const organizationProductMeQueryOptions = (sdk: GeneratedClient, input: OrganizationProductMeInput) => ({
|
|
422
|
+
queryKey: ['organization', 'product', 'me', input] as const,
|
|
423
|
+
queryFn: () => sdk['organization']['product']['me'](input),
|
|
424
|
+
});
|
|
425
|
+
|
|
360
426
|
export const organizationProductRevokeAccessMutationOptions = (sdk: GeneratedClient) => ({
|
|
361
427
|
mutationKey: ['organization', 'product', 'revoke-access'],
|
|
362
428
|
mutationFn: (input: OrganizationProductRevokeAccessInput) => sdk['organization']['product']['revoke-access'](input),
|
|
@@ -402,6 +468,11 @@ export const organizationPublicRoutesListQueryOptions = (sdk: GeneratedClient, i
|
|
|
402
468
|
queryFn: () => sdk['organization']['public-routes']['list'](input),
|
|
403
469
|
});
|
|
404
470
|
|
|
471
|
+
export const organizationRedditInstallMutationOptions = (sdk: GeneratedClient) => ({
|
|
472
|
+
mutationKey: ['organization', 'reddit', 'install'],
|
|
473
|
+
mutationFn: (input: OrganizationRedditInstallInput) => sdk['organization']['reddit']['install'](input),
|
|
474
|
+
});
|
|
475
|
+
|
|
405
476
|
export const organizationRolesCreateMutationOptions = (sdk: GeneratedClient) => ({
|
|
406
477
|
mutationKey: ['organization', 'roles', 'create'],
|
|
407
478
|
mutationFn: (input: OrganizationRolesCreateInput) => sdk['organization']['roles']['create'](input),
|
|
@@ -456,3 +527,13 @@ export const organizationSupportThreadsListQueryOptions = (sdk: GeneratedClient,
|
|
|
456
527
|
queryKey: ['organization', 'support-threads', 'list', input] as const,
|
|
457
528
|
queryFn: () => sdk['organization']['support-threads']['list'](input),
|
|
458
529
|
});
|
|
530
|
+
|
|
531
|
+
export const organizationXInstallMutationOptions = (sdk: GeneratedClient) => ({
|
|
532
|
+
mutationKey: ['organization', 'x', 'install'],
|
|
533
|
+
mutationFn: (input: OrganizationXInstallInput) => sdk['organization']['x']['install'](input),
|
|
534
|
+
});
|
|
535
|
+
|
|
536
|
+
export const organizationYoutubeInstallMutationOptions = (sdk: GeneratedClient) => ({
|
|
537
|
+
mutationKey: ['organization', 'youtube', 'install'],
|
|
538
|
+
mutationFn: (input: OrganizationYoutubeInstallInput) => sdk['organization']['youtube']['install'](input),
|
|
539
|
+
});
|