@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
|
@@ -9,10 +9,6 @@ var organizationBillingBudgetsGetQueryOptions = (sdk, input) => ({
|
|
|
9
9
|
queryKey: ["organization", "billing-budgets", "get", input],
|
|
10
10
|
queryFn: () => sdk["organization"]["billing-budgets"]["get"](input)
|
|
11
11
|
});
|
|
12
|
-
var organizationBillingBudgetsSetMutationOptions = (sdk) => ({
|
|
13
|
-
mutationKey: ["organization", "billing-budgets", "set"],
|
|
14
|
-
mutationFn: (input) => sdk["organization"]["billing-budgets"]["set"](input)
|
|
15
|
-
});
|
|
16
12
|
var organizationBillingCapsClearMutationOptions = (sdk) => ({
|
|
17
13
|
mutationKey: ["organization", "billing-caps", "clear"],
|
|
18
14
|
mutationFn: (input) => sdk["organization"]["billing-caps"]["clear"](input)
|
|
@@ -133,6 +129,46 @@ var organizationGoogleadsInstallMutationOptions = (sdk) => ({
|
|
|
133
129
|
mutationKey: ["organization", "googleads", "install"],
|
|
134
130
|
mutationFn: (input) => sdk["organization"]["googleads"]["install"](input)
|
|
135
131
|
});
|
|
132
|
+
var organizationGroupsCreateMutationOptions = (sdk) => ({
|
|
133
|
+
mutationKey: ["organization", "groups", "create"],
|
|
134
|
+
mutationFn: (input) => sdk["organization"]["groups"]["create"](input)
|
|
135
|
+
});
|
|
136
|
+
var organizationGroupsDeleteMutationOptions = (sdk) => ({
|
|
137
|
+
mutationKey: ["organization", "groups", "delete"],
|
|
138
|
+
mutationFn: (input) => sdk["organization"]["groups"]["delete"](input)
|
|
139
|
+
});
|
|
140
|
+
var organizationGroupsGetQueryOptions = (sdk, input) => ({
|
|
141
|
+
queryKey: ["organization", "groups", "get", input],
|
|
142
|
+
queryFn: () => sdk["organization"]["groups"]["get"](input)
|
|
143
|
+
});
|
|
144
|
+
var organizationGroupsGrantRemoveMutationOptions = (sdk) => ({
|
|
145
|
+
mutationKey: ["organization", "groups", "grant-remove"],
|
|
146
|
+
mutationFn: (input) => sdk["organization"]["groups"]["grant-remove"](input)
|
|
147
|
+
});
|
|
148
|
+
var organizationGroupsGrantSetMutationOptions = (sdk) => ({
|
|
149
|
+
mutationKey: ["organization", "groups", "grant-set"],
|
|
150
|
+
mutationFn: (input) => sdk["organization"]["groups"]["grant-set"](input)
|
|
151
|
+
});
|
|
152
|
+
var organizationGroupsListQueryOptions = (sdk, input) => ({
|
|
153
|
+
queryKey: ["organization", "groups", "list", input],
|
|
154
|
+
queryFn: () => sdk["organization"]["groups"]["list"](input)
|
|
155
|
+
});
|
|
156
|
+
var organizationGroupsMemberAddMutationOptions = (sdk) => ({
|
|
157
|
+
mutationKey: ["organization", "groups", "member-add"],
|
|
158
|
+
mutationFn: (input) => sdk["organization"]["groups"]["member-add"](input)
|
|
159
|
+
});
|
|
160
|
+
var organizationGroupsMemberRemoveMutationOptions = (sdk) => ({
|
|
161
|
+
mutationKey: ["organization", "groups", "member-remove"],
|
|
162
|
+
mutationFn: (input) => sdk["organization"]["groups"]["member-remove"](input)
|
|
163
|
+
});
|
|
164
|
+
var organizationGroupsUpdateMutationOptions = (sdk) => ({
|
|
165
|
+
mutationKey: ["organization", "groups", "update"],
|
|
166
|
+
mutationFn: (input) => sdk["organization"]["groups"]["update"](input)
|
|
167
|
+
});
|
|
168
|
+
var organizationLinkedinMemberInstallMutationOptions = (sdk) => ({
|
|
169
|
+
mutationKey: ["organization", "linkedin-member", "install"],
|
|
170
|
+
mutationFn: (input) => sdk["organization"]["linkedin-member"]["install"](input)
|
|
171
|
+
});
|
|
136
172
|
var organizationListQueryOptions = (sdk, input) => ({
|
|
137
173
|
queryKey: ["organization", "list", input],
|
|
138
174
|
queryFn: () => sdk["organization"]["list"](input)
|
|
@@ -205,6 +241,10 @@ var organizationProductListRolesQueryOptions = (sdk, input) => ({
|
|
|
205
241
|
queryKey: ["organization", "product", "list-roles", input],
|
|
206
242
|
queryFn: () => sdk["organization"]["product"]["list-roles"](input)
|
|
207
243
|
});
|
|
244
|
+
var organizationProductMeQueryOptions = (sdk, input) => ({
|
|
245
|
+
queryKey: ["organization", "product", "me", input],
|
|
246
|
+
queryFn: () => sdk["organization"]["product"]["me"](input)
|
|
247
|
+
});
|
|
208
248
|
var organizationProductRevokeAccessMutationOptions = (sdk) => ({
|
|
209
249
|
mutationKey: ["organization", "product", "revoke-access"],
|
|
210
250
|
mutationFn: (input) => sdk["organization"]["product"]["revoke-access"](input)
|
|
@@ -241,6 +281,10 @@ var organizationPublicRoutesListQueryOptions = (sdk, input) => ({
|
|
|
241
281
|
queryKey: ["organization", "public-routes", "list", input],
|
|
242
282
|
queryFn: () => sdk["organization"]["public-routes"]["list"](input)
|
|
243
283
|
});
|
|
284
|
+
var organizationRedditInstallMutationOptions = (sdk) => ({
|
|
285
|
+
mutationKey: ["organization", "reddit", "install"],
|
|
286
|
+
mutationFn: (input) => sdk["organization"]["reddit"]["install"](input)
|
|
287
|
+
});
|
|
244
288
|
var organizationRolesCreateMutationOptions = (sdk) => ({
|
|
245
289
|
mutationKey: ["organization", "roles", "create"],
|
|
246
290
|
mutationFn: (input) => sdk["organization"]["roles"]["create"](input)
|
|
@@ -285,10 +329,17 @@ var organizationSupportThreadsListQueryOptions = (sdk, input) => ({
|
|
|
285
329
|
queryKey: ["organization", "support-threads", "list", input],
|
|
286
330
|
queryFn: () => sdk["organization"]["support-threads"]["list"](input)
|
|
287
331
|
});
|
|
332
|
+
var organizationXInstallMutationOptions = (sdk) => ({
|
|
333
|
+
mutationKey: ["organization", "x", "install"],
|
|
334
|
+
mutationFn: (input) => sdk["organization"]["x"]["install"](input)
|
|
335
|
+
});
|
|
336
|
+
var organizationYoutubeInstallMutationOptions = (sdk) => ({
|
|
337
|
+
mutationKey: ["organization", "youtube", "install"],
|
|
338
|
+
mutationFn: (input) => sdk["organization"]["youtube"]["install"](input)
|
|
339
|
+
});
|
|
288
340
|
|
|
289
341
|
exports.organizationAuthMeQueryOptions = organizationAuthMeQueryOptions;
|
|
290
342
|
exports.organizationBillingBudgetsGetQueryOptions = organizationBillingBudgetsGetQueryOptions;
|
|
291
|
-
exports.organizationBillingBudgetsSetMutationOptions = organizationBillingBudgetsSetMutationOptions;
|
|
292
343
|
exports.organizationBillingCapsClearMutationOptions = organizationBillingCapsClearMutationOptions;
|
|
293
344
|
exports.organizationBillingCapsSetMutationOptions = organizationBillingCapsSetMutationOptions;
|
|
294
345
|
exports.organizationBindingsListQueryOptions = organizationBindingsListQueryOptions;
|
|
@@ -319,6 +370,16 @@ exports.organizationGdriveInstallMutationOptions = organizationGdriveInstallMuta
|
|
|
319
370
|
exports.organizationGithubInstallMutationOptions = organizationGithubInstallMutationOptions;
|
|
320
371
|
exports.organizationGithubListInstallationsQueryOptions = organizationGithubListInstallationsQueryOptions;
|
|
321
372
|
exports.organizationGoogleadsInstallMutationOptions = organizationGoogleadsInstallMutationOptions;
|
|
373
|
+
exports.organizationGroupsCreateMutationOptions = organizationGroupsCreateMutationOptions;
|
|
374
|
+
exports.organizationGroupsDeleteMutationOptions = organizationGroupsDeleteMutationOptions;
|
|
375
|
+
exports.organizationGroupsGetQueryOptions = organizationGroupsGetQueryOptions;
|
|
376
|
+
exports.organizationGroupsGrantRemoveMutationOptions = organizationGroupsGrantRemoveMutationOptions;
|
|
377
|
+
exports.organizationGroupsGrantSetMutationOptions = organizationGroupsGrantSetMutationOptions;
|
|
378
|
+
exports.organizationGroupsListQueryOptions = organizationGroupsListQueryOptions;
|
|
379
|
+
exports.organizationGroupsMemberAddMutationOptions = organizationGroupsMemberAddMutationOptions;
|
|
380
|
+
exports.organizationGroupsMemberRemoveMutationOptions = organizationGroupsMemberRemoveMutationOptions;
|
|
381
|
+
exports.organizationGroupsUpdateMutationOptions = organizationGroupsUpdateMutationOptions;
|
|
382
|
+
exports.organizationLinkedinMemberInstallMutationOptions = organizationLinkedinMemberInstallMutationOptions;
|
|
322
383
|
exports.organizationListQueryOptions = organizationListQueryOptions;
|
|
323
384
|
exports.organizationMemberAcceptInviteMutationOptions = organizationMemberAcceptInviteMutationOptions;
|
|
324
385
|
exports.organizationMemberInviteMutationOptions = organizationMemberInviteMutationOptions;
|
|
@@ -337,6 +398,7 @@ exports.organizationProductListAccessQueryOptions = organizationProductListAcces
|
|
|
337
398
|
exports.organizationProductListMembersQueryOptions = organizationProductListMembersQueryOptions;
|
|
338
399
|
exports.organizationProductListQueryOptions = organizationProductListQueryOptions;
|
|
339
400
|
exports.organizationProductListRolesQueryOptions = organizationProductListRolesQueryOptions;
|
|
401
|
+
exports.organizationProductMeQueryOptions = organizationProductMeQueryOptions;
|
|
340
402
|
exports.organizationProductRevokeAccessMutationOptions = organizationProductRevokeAccessMutationOptions;
|
|
341
403
|
exports.organizationProductSelectMutationOptions = organizationProductSelectMutationOptions;
|
|
342
404
|
exports.organizationProductSetAccessMutationOptions = organizationProductSetAccessMutationOptions;
|
|
@@ -346,6 +408,7 @@ exports.organizationPublicKeysListQueryOptions = organizationPublicKeysListQuery
|
|
|
346
408
|
exports.organizationPublicKeysRevokeMutationOptions = organizationPublicKeysRevokeMutationOptions;
|
|
347
409
|
exports.organizationPublicKeysUpdateScopeMutationOptions = organizationPublicKeysUpdateScopeMutationOptions;
|
|
348
410
|
exports.organizationPublicRoutesListQueryOptions = organizationPublicRoutesListQueryOptions;
|
|
411
|
+
exports.organizationRedditInstallMutationOptions = organizationRedditInstallMutationOptions;
|
|
349
412
|
exports.organizationRolesCreateMutationOptions = organizationRolesCreateMutationOptions;
|
|
350
413
|
exports.organizationRolesDeleteMutationOptions = organizationRolesDeleteMutationOptions;
|
|
351
414
|
exports.organizationRolesGetQueryOptions = organizationRolesGetQueryOptions;
|
|
@@ -357,5 +420,7 @@ exports.organizationSupportThreadCreateMutationOptions = organizationSupportThre
|
|
|
357
420
|
exports.organizationSupportThreadGetQueryOptions = organizationSupportThreadGetQueryOptions;
|
|
358
421
|
exports.organizationSupportThreadReplyMutationOptions = organizationSupportThreadReplyMutationOptions;
|
|
359
422
|
exports.organizationSupportThreadsListQueryOptions = organizationSupportThreadsListQueryOptions;
|
|
423
|
+
exports.organizationXInstallMutationOptions = organizationXInstallMutationOptions;
|
|
424
|
+
exports.organizationYoutubeInstallMutationOptions = organizationYoutubeInstallMutationOptions;
|
|
360
425
|
//# sourceMappingURL=index.cjs.map
|
|
361
426
|
//# sourceMappingURL=index.cjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/gen/organization/queryOptions.gen.ts"],"names":[],"mappings":"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","file":"index.cjs","sourcesContent":["// AUTOGENERATED by scripts/generate.ts — do not edit.\nimport type { GeneratedClient } from '../client.gen';\nimport type {\n OrganizationAuthMeInput,\n OrganizationAuthMeOutput,\n OrganizationBillingBudgetsGetInput,\n OrganizationBillingBudgetsGetOutput,\n OrganizationBillingBudgetsSetInput,\n OrganizationBillingCapsClearInput,\n OrganizationBillingCapsSetInput,\n OrganizationBindingsListInput,\n OrganizationBindingsListOutput,\n OrganizationClickupInstallInput,\n OrganizationClickupListInstallationsInput,\n OrganizationClickupListInstallationsOutput,\n OrganizationCloudflareInstallInput,\n OrganizationConnectorsApproveRequestInput,\n OrganizationConnectorsAttachInput,\n OrganizationConnectorsDeleteInput,\n OrganizationConnectorsDenyRequestInput,\n OrganizationConnectorsDetachInput,\n OrganizationConnectorsListAttachmentsInput,\n OrganizationConnectorsListAttachmentsOutput,\n OrganizationConnectorsListAvailableInput,\n OrganizationConnectorsListAvailableOutput,\n OrganizationConnectorsListInput,\n OrganizationConnectorsListOrgInput,\n OrganizationConnectorsListOrgOutput,\n OrganizationConnectorsListOutput,\n OrganizationConnectorsListRequestsInput,\n OrganizationConnectorsListRequestsOutput,\n OrganizationConnectorsRemoveInput,\n OrganizationConnectorsRequestInput,\n OrganizationCreateInput,\n OrganizationDomainsAddInput,\n OrganizationDomainsGetInput,\n OrganizationDomainsGetOutput,\n OrganizationDomainsListInput,\n OrganizationDomainsListOutput,\n OrganizationDomainsRemoveInput,\n OrganizationDomainsSetModeInput,\n OrganizationExtensionsListInstalledInput,\n OrganizationExtensionsListInstalledOutput,\n OrganizationFeedbackSubmitInput,\n OrganizationGdriveInstallInput,\n OrganizationGithubInstallInput,\n OrganizationGithubListInstallationsInput,\n OrganizationGithubListInstallationsOutput,\n OrganizationGoogleadsInstallInput,\n OrganizationListInput,\n OrganizationListOutput,\n OrganizationMemberAcceptInviteInput,\n OrganizationMemberInviteInput,\n OrganizationMemberListInput,\n OrganizationMemberListInvitationsInput,\n OrganizationMemberListInvitationsOutput,\n OrganizationMemberListOutput,\n OrganizationMemberListProductAccessInput,\n OrganizationMemberListProductAccessOutput,\n OrganizationMemberRemoveInput,\n OrganizationMemberRevokeInvitationInput,\n OrganizationMemberSetRoleInput,\n OrganizationMemberShareProductInput,\n OrganizationMemberUnshareProductInput,\n OrganizationMembersAssignRoleInput,\n OrganizationPermissionCatalogInput,\n OrganizationPermissionCatalogOutput,\n OrganizationProductCreateInput,\n OrganizationProductListAccessInput,\n OrganizationProductListAccessOutput,\n OrganizationProductListInput,\n OrganizationProductListMembersInput,\n OrganizationProductListMembersOutput,\n OrganizationProductListOutput,\n OrganizationProductListRolesInput,\n OrganizationProductListRolesOutput,\n OrganizationProductRevokeAccessInput,\n OrganizationProductSelectInput,\n OrganizationProductSetAccessInput,\n OrganizationProductUpdateInput,\n OrganizationPublicKeysCreateInput,\n OrganizationPublicKeysListInput,\n OrganizationPublicKeysListOutput,\n OrganizationPublicKeysRevokeInput,\n OrganizationPublicKeysUpdateScopeInput,\n OrganizationPublicRoutesListInput,\n OrganizationPublicRoutesListOutput,\n OrganizationRolesCreateInput,\n OrganizationRolesDeleteInput,\n OrganizationRolesGetInput,\n OrganizationRolesGetOutput,\n OrganizationRolesListInput,\n OrganizationRolesListOutput,\n OrganizationRolesUpdateInput,\n OrganizationSecurityMfaEnableInput,\n OrganizationSelectInput,\n OrganizationSupportThreadCreateInput,\n OrganizationSupportThreadGetInput,\n OrganizationSupportThreadGetOutput,\n OrganizationSupportThreadReplyInput,\n OrganizationSupportThreadsListInput,\n OrganizationSupportThreadsListOutput,\n} from '../types.gen';\n\nexport const organizationAuthMeQueryOptions = (sdk: GeneratedClient, input: OrganizationAuthMeInput) => ({\n queryKey: ['organization', 'auth', 'me', input] as const,\n queryFn: () => sdk['organization']['auth']['me'](input),\n});\n\nexport const organizationBillingBudgetsGetQueryOptions = (sdk: GeneratedClient, input: OrganizationBillingBudgetsGetInput) => ({\n queryKey: ['organization', 'billing-budgets', 'get', input] as const,\n queryFn: () => sdk['organization']['billing-budgets']['get'](input),\n});\n\nexport const organizationBillingBudgetsSetMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'billing-budgets', 'set'],\n mutationFn: (input: OrganizationBillingBudgetsSetInput) => sdk['organization']['billing-budgets']['set'](input),\n});\n\nexport const organizationBillingCapsClearMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'billing-caps', 'clear'],\n mutationFn: (input: OrganizationBillingCapsClearInput) => sdk['organization']['billing-caps']['clear'](input),\n});\n\nexport const organizationBillingCapsSetMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'billing-caps', 'set'],\n mutationFn: (input: OrganizationBillingCapsSetInput) => sdk['organization']['billing-caps']['set'](input),\n});\n\nexport const organizationBindingsListQueryOptions = (sdk: GeneratedClient, input: OrganizationBindingsListInput) => ({\n queryKey: ['organization', 'bindings', 'list', input] as const,\n queryFn: () => sdk['organization']['bindings']['list'](input),\n});\n\nexport const organizationClickupInstallMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'clickup', 'install'],\n mutationFn: (input: OrganizationClickupInstallInput) => sdk['organization']['clickup']['install'](input),\n});\n\nexport const organizationClickupListInstallationsQueryOptions = (sdk: GeneratedClient, input: OrganizationClickupListInstallationsInput) => ({\n queryKey: ['organization', 'clickup', 'list-installations', input] as const,\n queryFn: () => sdk['organization']['clickup']['list-installations'](input),\n});\n\nexport const organizationCloudflareInstallMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'cloudflare', 'install'],\n mutationFn: (input: OrganizationCloudflareInstallInput) => sdk['organization']['cloudflare']['install'](input),\n});\n\nexport const organizationConnectorsApproveRequestMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'connectors', 'approve-request'],\n mutationFn: (input: OrganizationConnectorsApproveRequestInput) => sdk['organization']['connectors']['approve-request'](input),\n});\n\nexport const organizationConnectorsAttachMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'connectors', 'attach'],\n mutationFn: (input: OrganizationConnectorsAttachInput) => sdk['organization']['connectors']['attach'](input),\n});\n\nexport const organizationConnectorsDeleteMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'connectors', 'delete'],\n mutationFn: (input: OrganizationConnectorsDeleteInput) => sdk['organization']['connectors']['delete'](input),\n});\n\nexport const organizationConnectorsDenyRequestMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'connectors', 'deny-request'],\n mutationFn: (input: OrganizationConnectorsDenyRequestInput) => sdk['organization']['connectors']['deny-request'](input),\n});\n\nexport const organizationConnectorsDetachMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'connectors', 'detach'],\n mutationFn: (input: OrganizationConnectorsDetachInput) => sdk['organization']['connectors']['detach'](input),\n});\n\nexport const organizationConnectorsListQueryOptions = (sdk: GeneratedClient, input: OrganizationConnectorsListInput) => ({\n queryKey: ['organization', 'connectors', 'list', input] as const,\n queryFn: () => sdk['organization']['connectors']['list'](input),\n});\n\nexport const organizationConnectorsListAttachmentsQueryOptions = (sdk: GeneratedClient, input: OrganizationConnectorsListAttachmentsInput) => ({\n queryKey: ['organization', 'connectors', 'list-attachments', input] as const,\n queryFn: () => sdk['organization']['connectors']['list-attachments'](input),\n});\n\nexport const organizationConnectorsListAvailableQueryOptions = (sdk: GeneratedClient, input: OrganizationConnectorsListAvailableInput) => ({\n queryKey: ['organization', 'connectors', 'list-available', input] as const,\n queryFn: () => sdk['organization']['connectors']['list-available'](input),\n});\n\nexport const organizationConnectorsListOrgQueryOptions = (sdk: GeneratedClient, input: OrganizationConnectorsListOrgInput) => ({\n queryKey: ['organization', 'connectors', 'list-org', input] as const,\n queryFn: () => sdk['organization']['connectors']['list-org'](input),\n});\n\nexport const organizationConnectorsListRequestsQueryOptions = (sdk: GeneratedClient, input: OrganizationConnectorsListRequestsInput) => ({\n queryKey: ['organization', 'connectors', 'list-requests', input] as const,\n queryFn: () => sdk['organization']['connectors']['list-requests'](input),\n});\n\nexport const organizationConnectorsRemoveMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'connectors', 'remove'],\n mutationFn: (input: OrganizationConnectorsRemoveInput) => sdk['organization']['connectors']['remove'](input),\n});\n\nexport const organizationConnectorsRequestMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'connectors', 'request'],\n mutationFn: (input: OrganizationConnectorsRequestInput) => sdk['organization']['connectors']['request'](input),\n});\n\nexport const organizationCreateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'create'],\n mutationFn: (input: OrganizationCreateInput) => sdk['organization']['create'](input),\n});\n\nexport const organizationDomainsAddMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'domains', 'add'],\n mutationFn: (input: OrganizationDomainsAddInput) => sdk['organization']['domains']['add'](input),\n});\n\nexport const organizationDomainsGetQueryOptions = (sdk: GeneratedClient, input: OrganizationDomainsGetInput) => ({\n queryKey: ['organization', 'domains', 'get', input] as const,\n queryFn: () => sdk['organization']['domains']['get'](input),\n});\n\nexport const organizationDomainsListQueryOptions = (sdk: GeneratedClient, input: OrganizationDomainsListInput) => ({\n queryKey: ['organization', 'domains', 'list', input] as const,\n queryFn: () => sdk['organization']['domains']['list'](input),\n});\n\nexport const organizationDomainsRemoveMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'domains', 'remove'],\n mutationFn: (input: OrganizationDomainsRemoveInput) => sdk['organization']['domains']['remove'](input),\n});\n\nexport const organizationDomainsSetModeMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'domains', 'set-mode'],\n mutationFn: (input: OrganizationDomainsSetModeInput) => sdk['organization']['domains']['set-mode'](input),\n});\n\nexport const organizationExtensionsListInstalledQueryOptions = (sdk: GeneratedClient, input: OrganizationExtensionsListInstalledInput) => ({\n queryKey: ['organization', 'extensions', 'list-installed', input] as const,\n queryFn: () => sdk['organization']['extensions']['list-installed'](input),\n});\n\nexport const organizationFeedbackSubmitMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'feedback', 'submit'],\n mutationFn: (input: OrganizationFeedbackSubmitInput) => sdk['organization']['feedback']['submit'](input),\n});\n\nexport const organizationGdriveInstallMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'gdrive', 'install'],\n mutationFn: (input: OrganizationGdriveInstallInput) => sdk['organization']['gdrive']['install'](input),\n});\n\nexport const organizationGithubInstallMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'github', 'install'],\n mutationFn: (input: OrganizationGithubInstallInput) => sdk['organization']['github']['install'](input),\n});\n\nexport const organizationGithubListInstallationsQueryOptions = (sdk: GeneratedClient, input: OrganizationGithubListInstallationsInput) => ({\n queryKey: ['organization', 'github', 'list-installations', input] as const,\n queryFn: () => sdk['organization']['github']['list-installations'](input),\n});\n\nexport const organizationGoogleadsInstallMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'googleads', 'install'],\n mutationFn: (input: OrganizationGoogleadsInstallInput) => sdk['organization']['googleads']['install'](input),\n});\n\nexport const organizationListQueryOptions = (sdk: GeneratedClient, input: OrganizationListInput) => ({\n queryKey: ['organization', 'list', input] as const,\n queryFn: () => sdk['organization']['list'](input),\n});\n\nexport const organizationMemberAcceptInviteMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'member', 'accept-invite'],\n mutationFn: (input: OrganizationMemberAcceptInviteInput) => sdk['organization']['member']['accept-invite'](input),\n});\n\nexport const organizationMemberInviteMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'member', 'invite'],\n mutationFn: (input: OrganizationMemberInviteInput) => sdk['organization']['member']['invite'](input),\n});\n\nexport const organizationMemberListQueryOptions = (sdk: GeneratedClient, input: OrganizationMemberListInput) => ({\n queryKey: ['organization', 'member', 'list', input] as const,\n queryFn: () => sdk['organization']['member']['list'](input),\n});\n\nexport const organizationMemberListInvitationsQueryOptions = (sdk: GeneratedClient, input: OrganizationMemberListInvitationsInput) => ({\n queryKey: ['organization', 'member', 'list-invitations', input] as const,\n queryFn: () => sdk['organization']['member']['list-invitations'](input),\n});\n\nexport const organizationMemberListProductAccessQueryOptions = (sdk: GeneratedClient, input: OrganizationMemberListProductAccessInput) => ({\n queryKey: ['organization', 'member', 'list-product-access', input] as const,\n queryFn: () => sdk['organization']['member']['list-product-access'](input),\n});\n\nexport const organizationMemberRemoveMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'member', 'remove'],\n mutationFn: (input: OrganizationMemberRemoveInput) => sdk['organization']['member']['remove'](input),\n});\n\nexport const organizationMemberRevokeInvitationMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'member', 'revoke-invitation'],\n mutationFn: (input: OrganizationMemberRevokeInvitationInput) => sdk['organization']['member']['revoke-invitation'](input),\n});\n\nexport const organizationMemberSetRoleMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'member', 'set-role'],\n mutationFn: (input: OrganizationMemberSetRoleInput) => sdk['organization']['member']['set-role'](input),\n});\n\nexport const organizationMemberShareProductMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'member', 'share-product'],\n mutationFn: (input: OrganizationMemberShareProductInput) => sdk['organization']['member']['share-product'](input),\n});\n\nexport const organizationMemberUnshareProductMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'member', 'unshare-product'],\n mutationFn: (input: OrganizationMemberUnshareProductInput) => sdk['organization']['member']['unshare-product'](input),\n});\n\nexport const organizationMembersAssignRoleMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'members', 'assign-role'],\n mutationFn: (input: OrganizationMembersAssignRoleInput) => sdk['organization']['members']['assign-role'](input),\n});\n\nexport const organizationPermissionCatalogQueryOptions = (sdk: GeneratedClient, input: OrganizationPermissionCatalogInput) => ({\n queryKey: ['organization', 'permission', 'catalog', input] as const,\n queryFn: () => sdk['organization']['permission']['catalog'](input),\n});\n\nexport const organizationProductCreateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'product', 'create'],\n mutationFn: (input: OrganizationProductCreateInput) => sdk['organization']['product']['create'](input),\n});\n\nexport const organizationProductListQueryOptions = (sdk: GeneratedClient, input: OrganizationProductListInput) => ({\n queryKey: ['organization', 'product', 'list', input] as const,\n queryFn: () => sdk['organization']['product']['list'](input),\n});\n\nexport const organizationProductListAccessQueryOptions = (sdk: GeneratedClient, input: OrganizationProductListAccessInput) => ({\n queryKey: ['organization', 'product', 'list-access', input] as const,\n queryFn: () => sdk['organization']['product']['list-access'](input),\n});\n\nexport const organizationProductListMembersQueryOptions = (sdk: GeneratedClient, input: OrganizationProductListMembersInput) => ({\n queryKey: ['organization', 'product', 'list-members', input] as const,\n queryFn: () => sdk['organization']['product']['list-members'](input),\n});\n\nexport const organizationProductListRolesQueryOptions = (sdk: GeneratedClient, input: OrganizationProductListRolesInput) => ({\n queryKey: ['organization', 'product', 'list-roles', input] as const,\n queryFn: () => sdk['organization']['product']['list-roles'](input),\n});\n\nexport const organizationProductRevokeAccessMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'product', 'revoke-access'],\n mutationFn: (input: OrganizationProductRevokeAccessInput) => sdk['organization']['product']['revoke-access'](input),\n});\n\nexport const organizationProductSelectMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'product', 'select'],\n mutationFn: (input: OrganizationProductSelectInput) => sdk['organization']['product']['select'](input),\n});\n\nexport const organizationProductSetAccessMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'product', 'set-access'],\n mutationFn: (input: OrganizationProductSetAccessInput) => sdk['organization']['product']['set-access'](input),\n});\n\nexport const organizationProductUpdateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'product', 'update'],\n mutationFn: (input: OrganizationProductUpdateInput) => sdk['organization']['product']['update'](input),\n});\n\nexport const organizationPublicKeysCreateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'public-keys', 'create'],\n mutationFn: (input: OrganizationPublicKeysCreateInput) => sdk['organization']['public-keys']['create'](input),\n});\n\nexport const organizationPublicKeysListQueryOptions = (sdk: GeneratedClient, input: OrganizationPublicKeysListInput) => ({\n queryKey: ['organization', 'public-keys', 'list', input] as const,\n queryFn: () => sdk['organization']['public-keys']['list'](input),\n});\n\nexport const organizationPublicKeysRevokeMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'public-keys', 'revoke'],\n mutationFn: (input: OrganizationPublicKeysRevokeInput) => sdk['organization']['public-keys']['revoke'](input),\n});\n\nexport const organizationPublicKeysUpdateScopeMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'public-keys', 'update-scope'],\n mutationFn: (input: OrganizationPublicKeysUpdateScopeInput) => sdk['organization']['public-keys']['update-scope'](input),\n});\n\nexport const organizationPublicRoutesListQueryOptions = (sdk: GeneratedClient, input: OrganizationPublicRoutesListInput) => ({\n queryKey: ['organization', 'public-routes', 'list', input] as const,\n queryFn: () => sdk['organization']['public-routes']['list'](input),\n});\n\nexport const organizationRolesCreateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'roles', 'create'],\n mutationFn: (input: OrganizationRolesCreateInput) => sdk['organization']['roles']['create'](input),\n});\n\nexport const organizationRolesDeleteMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'roles', 'delete'],\n mutationFn: (input: OrganizationRolesDeleteInput) => sdk['organization']['roles']['delete'](input),\n});\n\nexport const organizationRolesGetQueryOptions = (sdk: GeneratedClient, input: OrganizationRolesGetInput) => ({\n queryKey: ['organization', 'roles', 'get', input] as const,\n queryFn: () => sdk['organization']['roles']['get'](input),\n});\n\nexport const organizationRolesListQueryOptions = (sdk: GeneratedClient, input: OrganizationRolesListInput) => ({\n queryKey: ['organization', 'roles', 'list', input] as const,\n queryFn: () => sdk['organization']['roles']['list'](input),\n});\n\nexport const organizationRolesUpdateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'roles', 'update'],\n mutationFn: (input: OrganizationRolesUpdateInput) => sdk['organization']['roles']['update'](input),\n});\n\nexport const organizationSecurityMfaEnableMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'security-mfa', 'enable'],\n mutationFn: (input: OrganizationSecurityMfaEnableInput) => sdk['organization']['security-mfa']['enable'](input),\n});\n\nexport const organizationSelectMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'select'],\n mutationFn: (input: OrganizationSelectInput) => sdk['organization']['select'](input),\n});\n\nexport const organizationSupportThreadCreateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'support-thread', 'create'],\n mutationFn: (input: OrganizationSupportThreadCreateInput) => sdk['organization']['support-thread']['create'](input),\n});\n\nexport const organizationSupportThreadGetQueryOptions = (sdk: GeneratedClient, input: OrganizationSupportThreadGetInput) => ({\n queryKey: ['organization', 'support-thread', 'get', input] as const,\n queryFn: () => sdk['organization']['support-thread']['get'](input),\n});\n\nexport const organizationSupportThreadReplyMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'support-thread', 'reply'],\n mutationFn: (input: OrganizationSupportThreadReplyInput) => sdk['organization']['support-thread']['reply'](input),\n});\n\nexport const organizationSupportThreadsListQueryOptions = (sdk: GeneratedClient, input: OrganizationSupportThreadsListInput) => ({\n queryKey: ['organization', 'support-threads', 'list', input] as const,\n queryFn: () => sdk['organization']['support-threads']['list'](input),\n});\n"]}
|
|
1
|
+
{"version":3,"sources":["../../src/gen/organization/queryOptions.gen.ts"],"names":[],"mappings":"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","file":"index.cjs","sourcesContent":["// AUTOGENERATED by scripts/generate.ts — do not edit.\nimport type { GeneratedClient } from '../client.gen';\nimport type {\n OrganizationAuthMeInput,\n OrganizationAuthMeOutput,\n OrganizationBillingBudgetsGetInput,\n OrganizationBillingBudgetsGetOutput,\n OrganizationBillingCapsClearInput,\n OrganizationBillingCapsSetInput,\n OrganizationBindingsListInput,\n OrganizationBindingsListOutput,\n OrganizationClickupInstallInput,\n OrganizationClickupListInstallationsInput,\n OrganizationClickupListInstallationsOutput,\n OrganizationCloudflareInstallInput,\n OrganizationConnectorsApproveRequestInput,\n OrganizationConnectorsAttachInput,\n OrganizationConnectorsDeleteInput,\n OrganizationConnectorsDenyRequestInput,\n OrganizationConnectorsDetachInput,\n OrganizationConnectorsListAttachmentsInput,\n OrganizationConnectorsListAttachmentsOutput,\n OrganizationConnectorsListAvailableInput,\n OrganizationConnectorsListAvailableOutput,\n OrganizationConnectorsListInput,\n OrganizationConnectorsListOrgInput,\n OrganizationConnectorsListOrgOutput,\n OrganizationConnectorsListOutput,\n OrganizationConnectorsListRequestsInput,\n OrganizationConnectorsListRequestsOutput,\n OrganizationConnectorsRemoveInput,\n OrganizationConnectorsRequestInput,\n OrganizationCreateInput,\n OrganizationDomainsAddInput,\n OrganizationDomainsGetInput,\n OrganizationDomainsGetOutput,\n OrganizationDomainsListInput,\n OrganizationDomainsListOutput,\n OrganizationDomainsRemoveInput,\n OrganizationDomainsSetModeInput,\n OrganizationExtensionsListInstalledInput,\n OrganizationExtensionsListInstalledOutput,\n OrganizationFeedbackSubmitInput,\n OrganizationGdriveInstallInput,\n OrganizationGithubInstallInput,\n OrganizationGithubListInstallationsInput,\n OrganizationGithubListInstallationsOutput,\n OrganizationGoogleadsInstallInput,\n OrganizationGroupsCreateInput,\n OrganizationGroupsDeleteInput,\n OrganizationGroupsGetInput,\n OrganizationGroupsGetOutput,\n OrganizationGroupsGrantRemoveInput,\n OrganizationGroupsGrantSetInput,\n OrganizationGroupsListInput,\n OrganizationGroupsListOutput,\n OrganizationGroupsMemberAddInput,\n OrganizationGroupsMemberRemoveInput,\n OrganizationGroupsUpdateInput,\n OrganizationLinkedinMemberInstallInput,\n OrganizationListInput,\n OrganizationListOutput,\n OrganizationMemberAcceptInviteInput,\n OrganizationMemberInviteInput,\n OrganizationMemberListInput,\n OrganizationMemberListInvitationsInput,\n OrganizationMemberListInvitationsOutput,\n OrganizationMemberListOutput,\n OrganizationMemberListProductAccessInput,\n OrganizationMemberListProductAccessOutput,\n OrganizationMemberRemoveInput,\n OrganizationMemberRevokeInvitationInput,\n OrganizationMemberSetRoleInput,\n OrganizationMemberShareProductInput,\n OrganizationMemberUnshareProductInput,\n OrganizationMembersAssignRoleInput,\n OrganizationPermissionCatalogInput,\n OrganizationPermissionCatalogOutput,\n OrganizationProductCreateInput,\n OrganizationProductListAccessInput,\n OrganizationProductListAccessOutput,\n OrganizationProductListInput,\n OrganizationProductListMembersInput,\n OrganizationProductListMembersOutput,\n OrganizationProductListOutput,\n OrganizationProductListRolesInput,\n OrganizationProductListRolesOutput,\n OrganizationProductMeInput,\n OrganizationProductMeOutput,\n OrganizationProductRevokeAccessInput,\n OrganizationProductSelectInput,\n OrganizationProductSetAccessInput,\n OrganizationProductUpdateInput,\n OrganizationPublicKeysCreateInput,\n OrganizationPublicKeysListInput,\n OrganizationPublicKeysListOutput,\n OrganizationPublicKeysRevokeInput,\n OrganizationPublicKeysUpdateScopeInput,\n OrganizationPublicRoutesListInput,\n OrganizationPublicRoutesListOutput,\n OrganizationRedditInstallInput,\n OrganizationRolesCreateInput,\n OrganizationRolesDeleteInput,\n OrganizationRolesGetInput,\n OrganizationRolesGetOutput,\n OrganizationRolesListInput,\n OrganizationRolesListOutput,\n OrganizationRolesUpdateInput,\n OrganizationSecurityMfaEnableInput,\n OrganizationSelectInput,\n OrganizationSupportThreadCreateInput,\n OrganizationSupportThreadGetInput,\n OrganizationSupportThreadGetOutput,\n OrganizationSupportThreadReplyInput,\n OrganizationSupportThreadsListInput,\n OrganizationSupportThreadsListOutput,\n OrganizationXInstallInput,\n OrganizationYoutubeInstallInput,\n} from '../types.gen';\n\nexport const organizationAuthMeQueryOptions = (sdk: GeneratedClient, input: OrganizationAuthMeInput) => ({\n queryKey: ['organization', 'auth', 'me', input] as const,\n queryFn: () => sdk['organization']['auth']['me'](input),\n});\n\nexport const organizationBillingBudgetsGetQueryOptions = (sdk: GeneratedClient, input: OrganizationBillingBudgetsGetInput) => ({\n queryKey: ['organization', 'billing-budgets', 'get', input] as const,\n queryFn: () => sdk['organization']['billing-budgets']['get'](input),\n});\n\nexport const organizationBillingCapsClearMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'billing-caps', 'clear'],\n mutationFn: (input: OrganizationBillingCapsClearInput) => sdk['organization']['billing-caps']['clear'](input),\n});\n\nexport const organizationBillingCapsSetMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'billing-caps', 'set'],\n mutationFn: (input: OrganizationBillingCapsSetInput) => sdk['organization']['billing-caps']['set'](input),\n});\n\nexport const organizationBindingsListQueryOptions = (sdk: GeneratedClient, input: OrganizationBindingsListInput) => ({\n queryKey: ['organization', 'bindings', 'list', input] as const,\n queryFn: () => sdk['organization']['bindings']['list'](input),\n});\n\nexport const organizationClickupInstallMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'clickup', 'install'],\n mutationFn: (input: OrganizationClickupInstallInput) => sdk['organization']['clickup']['install'](input),\n});\n\nexport const organizationClickupListInstallationsQueryOptions = (sdk: GeneratedClient, input: OrganizationClickupListInstallationsInput) => ({\n queryKey: ['organization', 'clickup', 'list-installations', input] as const,\n queryFn: () => sdk['organization']['clickup']['list-installations'](input),\n});\n\nexport const organizationCloudflareInstallMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'cloudflare', 'install'],\n mutationFn: (input: OrganizationCloudflareInstallInput) => sdk['organization']['cloudflare']['install'](input),\n});\n\nexport const organizationConnectorsApproveRequestMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'connectors', 'approve-request'],\n mutationFn: (input: OrganizationConnectorsApproveRequestInput) => sdk['organization']['connectors']['approve-request'](input),\n});\n\nexport const organizationConnectorsAttachMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'connectors', 'attach'],\n mutationFn: (input: OrganizationConnectorsAttachInput) => sdk['organization']['connectors']['attach'](input),\n});\n\nexport const organizationConnectorsDeleteMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'connectors', 'delete'],\n mutationFn: (input: OrganizationConnectorsDeleteInput) => sdk['organization']['connectors']['delete'](input),\n});\n\nexport const organizationConnectorsDenyRequestMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'connectors', 'deny-request'],\n mutationFn: (input: OrganizationConnectorsDenyRequestInput) => sdk['organization']['connectors']['deny-request'](input),\n});\n\nexport const organizationConnectorsDetachMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'connectors', 'detach'],\n mutationFn: (input: OrganizationConnectorsDetachInput) => sdk['organization']['connectors']['detach'](input),\n});\n\nexport const organizationConnectorsListQueryOptions = (sdk: GeneratedClient, input: OrganizationConnectorsListInput) => ({\n queryKey: ['organization', 'connectors', 'list', input] as const,\n queryFn: () => sdk['organization']['connectors']['list'](input),\n});\n\nexport const organizationConnectorsListAttachmentsQueryOptions = (sdk: GeneratedClient, input: OrganizationConnectorsListAttachmentsInput) => ({\n queryKey: ['organization', 'connectors', 'list-attachments', input] as const,\n queryFn: () => sdk['organization']['connectors']['list-attachments'](input),\n});\n\nexport const organizationConnectorsListAvailableQueryOptions = (sdk: GeneratedClient, input: OrganizationConnectorsListAvailableInput) => ({\n queryKey: ['organization', 'connectors', 'list-available', input] as const,\n queryFn: () => sdk['organization']['connectors']['list-available'](input),\n});\n\nexport const organizationConnectorsListOrgQueryOptions = (sdk: GeneratedClient, input: OrganizationConnectorsListOrgInput) => ({\n queryKey: ['organization', 'connectors', 'list-org', input] as const,\n queryFn: () => sdk['organization']['connectors']['list-org'](input),\n});\n\nexport const organizationConnectorsListRequestsQueryOptions = (sdk: GeneratedClient, input: OrganizationConnectorsListRequestsInput) => ({\n queryKey: ['organization', 'connectors', 'list-requests', input] as const,\n queryFn: () => sdk['organization']['connectors']['list-requests'](input),\n});\n\nexport const organizationConnectorsRemoveMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'connectors', 'remove'],\n mutationFn: (input: OrganizationConnectorsRemoveInput) => sdk['organization']['connectors']['remove'](input),\n});\n\nexport const organizationConnectorsRequestMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'connectors', 'request'],\n mutationFn: (input: OrganizationConnectorsRequestInput) => sdk['organization']['connectors']['request'](input),\n});\n\nexport const organizationCreateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'create'],\n mutationFn: (input: OrganizationCreateInput) => sdk['organization']['create'](input),\n});\n\nexport const organizationDomainsAddMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'domains', 'add'],\n mutationFn: (input: OrganizationDomainsAddInput) => sdk['organization']['domains']['add'](input),\n});\n\nexport const organizationDomainsGetQueryOptions = (sdk: GeneratedClient, input: OrganizationDomainsGetInput) => ({\n queryKey: ['organization', 'domains', 'get', input] as const,\n queryFn: () => sdk['organization']['domains']['get'](input),\n});\n\nexport const organizationDomainsListQueryOptions = (sdk: GeneratedClient, input: OrganizationDomainsListInput) => ({\n queryKey: ['organization', 'domains', 'list', input] as const,\n queryFn: () => sdk['organization']['domains']['list'](input),\n});\n\nexport const organizationDomainsRemoveMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'domains', 'remove'],\n mutationFn: (input: OrganizationDomainsRemoveInput) => sdk['organization']['domains']['remove'](input),\n});\n\nexport const organizationDomainsSetModeMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'domains', 'set-mode'],\n mutationFn: (input: OrganizationDomainsSetModeInput) => sdk['organization']['domains']['set-mode'](input),\n});\n\nexport const organizationExtensionsListInstalledQueryOptions = (sdk: GeneratedClient, input: OrganizationExtensionsListInstalledInput) => ({\n queryKey: ['organization', 'extensions', 'list-installed', input] as const,\n queryFn: () => sdk['organization']['extensions']['list-installed'](input),\n});\n\nexport const organizationFeedbackSubmitMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'feedback', 'submit'],\n mutationFn: (input: OrganizationFeedbackSubmitInput) => sdk['organization']['feedback']['submit'](input),\n});\n\nexport const organizationGdriveInstallMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'gdrive', 'install'],\n mutationFn: (input: OrganizationGdriveInstallInput) => sdk['organization']['gdrive']['install'](input),\n});\n\nexport const organizationGithubInstallMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'github', 'install'],\n mutationFn: (input: OrganizationGithubInstallInput) => sdk['organization']['github']['install'](input),\n});\n\nexport const organizationGithubListInstallationsQueryOptions = (sdk: GeneratedClient, input: OrganizationGithubListInstallationsInput) => ({\n queryKey: ['organization', 'github', 'list-installations', input] as const,\n queryFn: () => sdk['organization']['github']['list-installations'](input),\n});\n\nexport const organizationGoogleadsInstallMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'googleads', 'install'],\n mutationFn: (input: OrganizationGoogleadsInstallInput) => sdk['organization']['googleads']['install'](input),\n});\n\nexport const organizationGroupsCreateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'groups', 'create'],\n mutationFn: (input: OrganizationGroupsCreateInput) => sdk['organization']['groups']['create'](input),\n});\n\nexport const organizationGroupsDeleteMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'groups', 'delete'],\n mutationFn: (input: OrganizationGroupsDeleteInput) => sdk['organization']['groups']['delete'](input),\n});\n\nexport const organizationGroupsGetQueryOptions = (sdk: GeneratedClient, input: OrganizationGroupsGetInput) => ({\n queryKey: ['organization', 'groups', 'get', input] as const,\n queryFn: () => sdk['organization']['groups']['get'](input),\n});\n\nexport const organizationGroupsGrantRemoveMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'groups', 'grant-remove'],\n mutationFn: (input: OrganizationGroupsGrantRemoveInput) => sdk['organization']['groups']['grant-remove'](input),\n});\n\nexport const organizationGroupsGrantSetMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'groups', 'grant-set'],\n mutationFn: (input: OrganizationGroupsGrantSetInput) => sdk['organization']['groups']['grant-set'](input),\n});\n\nexport const organizationGroupsListQueryOptions = (sdk: GeneratedClient, input: OrganizationGroupsListInput) => ({\n queryKey: ['organization', 'groups', 'list', input] as const,\n queryFn: () => sdk['organization']['groups']['list'](input),\n});\n\nexport const organizationGroupsMemberAddMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'groups', 'member-add'],\n mutationFn: (input: OrganizationGroupsMemberAddInput) => sdk['organization']['groups']['member-add'](input),\n});\n\nexport const organizationGroupsMemberRemoveMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'groups', 'member-remove'],\n mutationFn: (input: OrganizationGroupsMemberRemoveInput) => sdk['organization']['groups']['member-remove'](input),\n});\n\nexport const organizationGroupsUpdateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'groups', 'update'],\n mutationFn: (input: OrganizationGroupsUpdateInput) => sdk['organization']['groups']['update'](input),\n});\n\nexport const organizationLinkedinMemberInstallMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'linkedin-member', 'install'],\n mutationFn: (input: OrganizationLinkedinMemberInstallInput) => sdk['organization']['linkedin-member']['install'](input),\n});\n\nexport const organizationListQueryOptions = (sdk: GeneratedClient, input: OrganizationListInput) => ({\n queryKey: ['organization', 'list', input] as const,\n queryFn: () => sdk['organization']['list'](input),\n});\n\nexport const organizationMemberAcceptInviteMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'member', 'accept-invite'],\n mutationFn: (input: OrganizationMemberAcceptInviteInput) => sdk['organization']['member']['accept-invite'](input),\n});\n\nexport const organizationMemberInviteMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'member', 'invite'],\n mutationFn: (input: OrganizationMemberInviteInput) => sdk['organization']['member']['invite'](input),\n});\n\nexport const organizationMemberListQueryOptions = (sdk: GeneratedClient, input: OrganizationMemberListInput) => ({\n queryKey: ['organization', 'member', 'list', input] as const,\n queryFn: () => sdk['organization']['member']['list'](input),\n});\n\nexport const organizationMemberListInvitationsQueryOptions = (sdk: GeneratedClient, input: OrganizationMemberListInvitationsInput) => ({\n queryKey: ['organization', 'member', 'list-invitations', input] as const,\n queryFn: () => sdk['organization']['member']['list-invitations'](input),\n});\n\nexport const organizationMemberListProductAccessQueryOptions = (sdk: GeneratedClient, input: OrganizationMemberListProductAccessInput) => ({\n queryKey: ['organization', 'member', 'list-product-access', input] as const,\n queryFn: () => sdk['organization']['member']['list-product-access'](input),\n});\n\nexport const organizationMemberRemoveMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'member', 'remove'],\n mutationFn: (input: OrganizationMemberRemoveInput) => sdk['organization']['member']['remove'](input),\n});\n\nexport const organizationMemberRevokeInvitationMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'member', 'revoke-invitation'],\n mutationFn: (input: OrganizationMemberRevokeInvitationInput) => sdk['organization']['member']['revoke-invitation'](input),\n});\n\nexport const organizationMemberSetRoleMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'member', 'set-role'],\n mutationFn: (input: OrganizationMemberSetRoleInput) => sdk['organization']['member']['set-role'](input),\n});\n\nexport const organizationMemberShareProductMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'member', 'share-product'],\n mutationFn: (input: OrganizationMemberShareProductInput) => sdk['organization']['member']['share-product'](input),\n});\n\nexport const organizationMemberUnshareProductMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'member', 'unshare-product'],\n mutationFn: (input: OrganizationMemberUnshareProductInput) => sdk['organization']['member']['unshare-product'](input),\n});\n\nexport const organizationMembersAssignRoleMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'members', 'assign-role'],\n mutationFn: (input: OrganizationMembersAssignRoleInput) => sdk['organization']['members']['assign-role'](input),\n});\n\nexport const organizationPermissionCatalogQueryOptions = (sdk: GeneratedClient, input: OrganizationPermissionCatalogInput) => ({\n queryKey: ['organization', 'permission', 'catalog', input] as const,\n queryFn: () => sdk['organization']['permission']['catalog'](input),\n});\n\nexport const organizationProductCreateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'product', 'create'],\n mutationFn: (input: OrganizationProductCreateInput) => sdk['organization']['product']['create'](input),\n});\n\nexport const organizationProductListQueryOptions = (sdk: GeneratedClient, input: OrganizationProductListInput) => ({\n queryKey: ['organization', 'product', 'list', input] as const,\n queryFn: () => sdk['organization']['product']['list'](input),\n});\n\nexport const organizationProductListAccessQueryOptions = (sdk: GeneratedClient, input: OrganizationProductListAccessInput) => ({\n queryKey: ['organization', 'product', 'list-access', input] as const,\n queryFn: () => sdk['organization']['product']['list-access'](input),\n});\n\nexport const organizationProductListMembersQueryOptions = (sdk: GeneratedClient, input: OrganizationProductListMembersInput) => ({\n queryKey: ['organization', 'product', 'list-members', input] as const,\n queryFn: () => sdk['organization']['product']['list-members'](input),\n});\n\nexport const organizationProductListRolesQueryOptions = (sdk: GeneratedClient, input: OrganizationProductListRolesInput) => ({\n queryKey: ['organization', 'product', 'list-roles', input] as const,\n queryFn: () => sdk['organization']['product']['list-roles'](input),\n});\n\nexport const organizationProductMeQueryOptions = (sdk: GeneratedClient, input: OrganizationProductMeInput) => ({\n queryKey: ['organization', 'product', 'me', input] as const,\n queryFn: () => sdk['organization']['product']['me'](input),\n});\n\nexport const organizationProductRevokeAccessMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'product', 'revoke-access'],\n mutationFn: (input: OrganizationProductRevokeAccessInput) => sdk['organization']['product']['revoke-access'](input),\n});\n\nexport const organizationProductSelectMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'product', 'select'],\n mutationFn: (input: OrganizationProductSelectInput) => sdk['organization']['product']['select'](input),\n});\n\nexport const organizationProductSetAccessMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'product', 'set-access'],\n mutationFn: (input: OrganizationProductSetAccessInput) => sdk['organization']['product']['set-access'](input),\n});\n\nexport const organizationProductUpdateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'product', 'update'],\n mutationFn: (input: OrganizationProductUpdateInput) => sdk['organization']['product']['update'](input),\n});\n\nexport const organizationPublicKeysCreateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'public-keys', 'create'],\n mutationFn: (input: OrganizationPublicKeysCreateInput) => sdk['organization']['public-keys']['create'](input),\n});\n\nexport const organizationPublicKeysListQueryOptions = (sdk: GeneratedClient, input: OrganizationPublicKeysListInput) => ({\n queryKey: ['organization', 'public-keys', 'list', input] as const,\n queryFn: () => sdk['organization']['public-keys']['list'](input),\n});\n\nexport const organizationPublicKeysRevokeMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'public-keys', 'revoke'],\n mutationFn: (input: OrganizationPublicKeysRevokeInput) => sdk['organization']['public-keys']['revoke'](input),\n});\n\nexport const organizationPublicKeysUpdateScopeMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'public-keys', 'update-scope'],\n mutationFn: (input: OrganizationPublicKeysUpdateScopeInput) => sdk['organization']['public-keys']['update-scope'](input),\n});\n\nexport const organizationPublicRoutesListQueryOptions = (sdk: GeneratedClient, input: OrganizationPublicRoutesListInput) => ({\n queryKey: ['organization', 'public-routes', 'list', input] as const,\n queryFn: () => sdk['organization']['public-routes']['list'](input),\n});\n\nexport const organizationRedditInstallMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'reddit', 'install'],\n mutationFn: (input: OrganizationRedditInstallInput) => sdk['organization']['reddit']['install'](input),\n});\n\nexport const organizationRolesCreateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'roles', 'create'],\n mutationFn: (input: OrganizationRolesCreateInput) => sdk['organization']['roles']['create'](input),\n});\n\nexport const organizationRolesDeleteMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'roles', 'delete'],\n mutationFn: (input: OrganizationRolesDeleteInput) => sdk['organization']['roles']['delete'](input),\n});\n\nexport const organizationRolesGetQueryOptions = (sdk: GeneratedClient, input: OrganizationRolesGetInput) => ({\n queryKey: ['organization', 'roles', 'get', input] as const,\n queryFn: () => sdk['organization']['roles']['get'](input),\n});\n\nexport const organizationRolesListQueryOptions = (sdk: GeneratedClient, input: OrganizationRolesListInput) => ({\n queryKey: ['organization', 'roles', 'list', input] as const,\n queryFn: () => sdk['organization']['roles']['list'](input),\n});\n\nexport const organizationRolesUpdateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'roles', 'update'],\n mutationFn: (input: OrganizationRolesUpdateInput) => sdk['organization']['roles']['update'](input),\n});\n\nexport const organizationSecurityMfaEnableMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'security-mfa', 'enable'],\n mutationFn: (input: OrganizationSecurityMfaEnableInput) => sdk['organization']['security-mfa']['enable'](input),\n});\n\nexport const organizationSelectMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'select'],\n mutationFn: (input: OrganizationSelectInput) => sdk['organization']['select'](input),\n});\n\nexport const organizationSupportThreadCreateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'support-thread', 'create'],\n mutationFn: (input: OrganizationSupportThreadCreateInput) => sdk['organization']['support-thread']['create'](input),\n});\n\nexport const organizationSupportThreadGetQueryOptions = (sdk: GeneratedClient, input: OrganizationSupportThreadGetInput) => ({\n queryKey: ['organization', 'support-thread', 'get', input] as const,\n queryFn: () => sdk['organization']['support-thread']['get'](input),\n});\n\nexport const organizationSupportThreadReplyMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'support-thread', 'reply'],\n mutationFn: (input: OrganizationSupportThreadReplyInput) => sdk['organization']['support-thread']['reply'](input),\n});\n\nexport const organizationSupportThreadsListQueryOptions = (sdk: GeneratedClient, input: OrganizationSupportThreadsListInput) => ({\n queryKey: ['organization', 'support-threads', 'list', input] as const,\n queryFn: () => sdk['organization']['support-threads']['list'](input),\n});\n\nexport const organizationXInstallMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'x', 'install'],\n mutationFn: (input: OrganizationXInstallInput) => sdk['organization']['x']['install'](input),\n});\n\nexport const organizationYoutubeInstallMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'youtube', 'install'],\n mutationFn: (input: OrganizationYoutubeInstallInput) => sdk['organization']['youtube']['install'](input),\n});\n"]}
|
|
@@ -7,10 +7,6 @@ var organizationBillingBudgetsGetQueryOptions = (sdk, input) => ({
|
|
|
7
7
|
queryKey: ["organization", "billing-budgets", "get", input],
|
|
8
8
|
queryFn: () => sdk["organization"]["billing-budgets"]["get"](input)
|
|
9
9
|
});
|
|
10
|
-
var organizationBillingBudgetsSetMutationOptions = (sdk) => ({
|
|
11
|
-
mutationKey: ["organization", "billing-budgets", "set"],
|
|
12
|
-
mutationFn: (input) => sdk["organization"]["billing-budgets"]["set"](input)
|
|
13
|
-
});
|
|
14
10
|
var organizationBillingCapsClearMutationOptions = (sdk) => ({
|
|
15
11
|
mutationKey: ["organization", "billing-caps", "clear"],
|
|
16
12
|
mutationFn: (input) => sdk["organization"]["billing-caps"]["clear"](input)
|
|
@@ -131,6 +127,46 @@ var organizationGoogleadsInstallMutationOptions = (sdk) => ({
|
|
|
131
127
|
mutationKey: ["organization", "googleads", "install"],
|
|
132
128
|
mutationFn: (input) => sdk["organization"]["googleads"]["install"](input)
|
|
133
129
|
});
|
|
130
|
+
var organizationGroupsCreateMutationOptions = (sdk) => ({
|
|
131
|
+
mutationKey: ["organization", "groups", "create"],
|
|
132
|
+
mutationFn: (input) => sdk["organization"]["groups"]["create"](input)
|
|
133
|
+
});
|
|
134
|
+
var organizationGroupsDeleteMutationOptions = (sdk) => ({
|
|
135
|
+
mutationKey: ["organization", "groups", "delete"],
|
|
136
|
+
mutationFn: (input) => sdk["organization"]["groups"]["delete"](input)
|
|
137
|
+
});
|
|
138
|
+
var organizationGroupsGetQueryOptions = (sdk, input) => ({
|
|
139
|
+
queryKey: ["organization", "groups", "get", input],
|
|
140
|
+
queryFn: () => sdk["organization"]["groups"]["get"](input)
|
|
141
|
+
});
|
|
142
|
+
var organizationGroupsGrantRemoveMutationOptions = (sdk) => ({
|
|
143
|
+
mutationKey: ["organization", "groups", "grant-remove"],
|
|
144
|
+
mutationFn: (input) => sdk["organization"]["groups"]["grant-remove"](input)
|
|
145
|
+
});
|
|
146
|
+
var organizationGroupsGrantSetMutationOptions = (sdk) => ({
|
|
147
|
+
mutationKey: ["organization", "groups", "grant-set"],
|
|
148
|
+
mutationFn: (input) => sdk["organization"]["groups"]["grant-set"](input)
|
|
149
|
+
});
|
|
150
|
+
var organizationGroupsListQueryOptions = (sdk, input) => ({
|
|
151
|
+
queryKey: ["organization", "groups", "list", input],
|
|
152
|
+
queryFn: () => sdk["organization"]["groups"]["list"](input)
|
|
153
|
+
});
|
|
154
|
+
var organizationGroupsMemberAddMutationOptions = (sdk) => ({
|
|
155
|
+
mutationKey: ["organization", "groups", "member-add"],
|
|
156
|
+
mutationFn: (input) => sdk["organization"]["groups"]["member-add"](input)
|
|
157
|
+
});
|
|
158
|
+
var organizationGroupsMemberRemoveMutationOptions = (sdk) => ({
|
|
159
|
+
mutationKey: ["organization", "groups", "member-remove"],
|
|
160
|
+
mutationFn: (input) => sdk["organization"]["groups"]["member-remove"](input)
|
|
161
|
+
});
|
|
162
|
+
var organizationGroupsUpdateMutationOptions = (sdk) => ({
|
|
163
|
+
mutationKey: ["organization", "groups", "update"],
|
|
164
|
+
mutationFn: (input) => sdk["organization"]["groups"]["update"](input)
|
|
165
|
+
});
|
|
166
|
+
var organizationLinkedinMemberInstallMutationOptions = (sdk) => ({
|
|
167
|
+
mutationKey: ["organization", "linkedin-member", "install"],
|
|
168
|
+
mutationFn: (input) => sdk["organization"]["linkedin-member"]["install"](input)
|
|
169
|
+
});
|
|
134
170
|
var organizationListQueryOptions = (sdk, input) => ({
|
|
135
171
|
queryKey: ["organization", "list", input],
|
|
136
172
|
queryFn: () => sdk["organization"]["list"](input)
|
|
@@ -203,6 +239,10 @@ var organizationProductListRolesQueryOptions = (sdk, input) => ({
|
|
|
203
239
|
queryKey: ["organization", "product", "list-roles", input],
|
|
204
240
|
queryFn: () => sdk["organization"]["product"]["list-roles"](input)
|
|
205
241
|
});
|
|
242
|
+
var organizationProductMeQueryOptions = (sdk, input) => ({
|
|
243
|
+
queryKey: ["organization", "product", "me", input],
|
|
244
|
+
queryFn: () => sdk["organization"]["product"]["me"](input)
|
|
245
|
+
});
|
|
206
246
|
var organizationProductRevokeAccessMutationOptions = (sdk) => ({
|
|
207
247
|
mutationKey: ["organization", "product", "revoke-access"],
|
|
208
248
|
mutationFn: (input) => sdk["organization"]["product"]["revoke-access"](input)
|
|
@@ -239,6 +279,10 @@ var organizationPublicRoutesListQueryOptions = (sdk, input) => ({
|
|
|
239
279
|
queryKey: ["organization", "public-routes", "list", input],
|
|
240
280
|
queryFn: () => sdk["organization"]["public-routes"]["list"](input)
|
|
241
281
|
});
|
|
282
|
+
var organizationRedditInstallMutationOptions = (sdk) => ({
|
|
283
|
+
mutationKey: ["organization", "reddit", "install"],
|
|
284
|
+
mutationFn: (input) => sdk["organization"]["reddit"]["install"](input)
|
|
285
|
+
});
|
|
242
286
|
var organizationRolesCreateMutationOptions = (sdk) => ({
|
|
243
287
|
mutationKey: ["organization", "roles", "create"],
|
|
244
288
|
mutationFn: (input) => sdk["organization"]["roles"]["create"](input)
|
|
@@ -283,7 +327,15 @@ var organizationSupportThreadsListQueryOptions = (sdk, input) => ({
|
|
|
283
327
|
queryKey: ["organization", "support-threads", "list", input],
|
|
284
328
|
queryFn: () => sdk["organization"]["support-threads"]["list"](input)
|
|
285
329
|
});
|
|
330
|
+
var organizationXInstallMutationOptions = (sdk) => ({
|
|
331
|
+
mutationKey: ["organization", "x", "install"],
|
|
332
|
+
mutationFn: (input) => sdk["organization"]["x"]["install"](input)
|
|
333
|
+
});
|
|
334
|
+
var organizationYoutubeInstallMutationOptions = (sdk) => ({
|
|
335
|
+
mutationKey: ["organization", "youtube", "install"],
|
|
336
|
+
mutationFn: (input) => sdk["organization"]["youtube"]["install"](input)
|
|
337
|
+
});
|
|
286
338
|
|
|
287
|
-
export { organizationAuthMeQueryOptions, organizationBillingBudgetsGetQueryOptions,
|
|
339
|
+
export { organizationAuthMeQueryOptions, organizationBillingBudgetsGetQueryOptions, organizationBillingCapsClearMutationOptions, organizationBillingCapsSetMutationOptions, organizationBindingsListQueryOptions, organizationClickupInstallMutationOptions, organizationClickupListInstallationsQueryOptions, organizationCloudflareInstallMutationOptions, organizationConnectorsApproveRequestMutationOptions, organizationConnectorsAttachMutationOptions, organizationConnectorsDeleteMutationOptions, organizationConnectorsDenyRequestMutationOptions, organizationConnectorsDetachMutationOptions, organizationConnectorsListAttachmentsQueryOptions, organizationConnectorsListAvailableQueryOptions, organizationConnectorsListOrgQueryOptions, organizationConnectorsListQueryOptions, organizationConnectorsListRequestsQueryOptions, organizationConnectorsRemoveMutationOptions, organizationConnectorsRequestMutationOptions, organizationCreateMutationOptions, organizationDomainsAddMutationOptions, organizationDomainsGetQueryOptions, organizationDomainsListQueryOptions, organizationDomainsRemoveMutationOptions, organizationDomainsSetModeMutationOptions, organizationExtensionsListInstalledQueryOptions, organizationFeedbackSubmitMutationOptions, organizationGdriveInstallMutationOptions, organizationGithubInstallMutationOptions, organizationGithubListInstallationsQueryOptions, organizationGoogleadsInstallMutationOptions, organizationGroupsCreateMutationOptions, organizationGroupsDeleteMutationOptions, organizationGroupsGetQueryOptions, organizationGroupsGrantRemoveMutationOptions, organizationGroupsGrantSetMutationOptions, organizationGroupsListQueryOptions, organizationGroupsMemberAddMutationOptions, organizationGroupsMemberRemoveMutationOptions, organizationGroupsUpdateMutationOptions, organizationLinkedinMemberInstallMutationOptions, organizationListQueryOptions, organizationMemberAcceptInviteMutationOptions, organizationMemberInviteMutationOptions, organizationMemberListInvitationsQueryOptions, organizationMemberListProductAccessQueryOptions, organizationMemberListQueryOptions, organizationMemberRemoveMutationOptions, organizationMemberRevokeInvitationMutationOptions, organizationMemberSetRoleMutationOptions, organizationMemberShareProductMutationOptions, organizationMemberUnshareProductMutationOptions, organizationMembersAssignRoleMutationOptions, organizationPermissionCatalogQueryOptions, organizationProductCreateMutationOptions, organizationProductListAccessQueryOptions, organizationProductListMembersQueryOptions, organizationProductListQueryOptions, organizationProductListRolesQueryOptions, organizationProductMeQueryOptions, organizationProductRevokeAccessMutationOptions, organizationProductSelectMutationOptions, organizationProductSetAccessMutationOptions, organizationProductUpdateMutationOptions, organizationPublicKeysCreateMutationOptions, organizationPublicKeysListQueryOptions, organizationPublicKeysRevokeMutationOptions, organizationPublicKeysUpdateScopeMutationOptions, organizationPublicRoutesListQueryOptions, organizationRedditInstallMutationOptions, organizationRolesCreateMutationOptions, organizationRolesDeleteMutationOptions, organizationRolesGetQueryOptions, organizationRolesListQueryOptions, organizationRolesUpdateMutationOptions, organizationSecurityMfaEnableMutationOptions, organizationSelectMutationOptions, organizationSupportThreadCreateMutationOptions, organizationSupportThreadGetQueryOptions, organizationSupportThreadReplyMutationOptions, organizationSupportThreadsListQueryOptions, organizationXInstallMutationOptions, organizationYoutubeInstallMutationOptions };
|
|
288
340
|
//# sourceMappingURL=index.js.map
|
|
289
341
|
//# sourceMappingURL=index.js.map
|