@lessly/sdk-app 36.0.0 → 36.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/analytics/index.d.cts +1 -1
- package/dist/analytics/index.d.ts +1 -1
- package/dist/brain/index.cjs +0 -5
- package/dist/brain/index.cjs.map +1 -1
- package/dist/brain/index.d.cts +2 -6
- package/dist/brain/index.d.ts +2 -6
- package/dist/brain/index.js +1 -5
- package/dist/brain/index.js.map +1 -1
- package/dist/client.gen-B78AtFRC.d.cts +41744 -0
- package/dist/client.gen-B78AtFRC.d.ts +41744 -0
- package/dist/consent/index.d.cts +1 -1
- package/dist/consent/index.d.ts +1 -1
- package/dist/deployment/index.d.cts +1 -1
- package/dist/deployment/index.d.ts +1 -1
- package/dist/index.cjs +894 -215
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +894 -215
- package/dist/index.js.map +1 -1
- package/dist/mail/index.d.cts +2 -2
- package/dist/mail/index.d.ts +2 -2
- package/dist/observe/index.cjs +126 -0
- package/dist/observe/index.cjs.map +1 -0
- package/dist/observe/index.d.cts +100 -0
- package/dist/observe/index.d.ts +100 -0
- package/dist/observe/index.js +101 -0
- package/dist/observe/index.js.map +1 -0
- package/dist/organization/index.cjs +33 -18
- package/dist/organization/index.cjs.map +1 -1
- package/dist/organization/index.d.cts +27 -15
- package/dist/organization/index.d.ts +27 -15
- package/dist/organization/index.js +27 -15
- package/dist/organization/index.js.map +1 -1
- package/dist/playground/index.cjs +66 -0
- package/dist/playground/index.cjs.map +1 -0
- package/dist/playground/index.d.cts +52 -0
- package/dist/playground/index.d.ts +52 -0
- package/dist/playground/index.js +53 -0
- package/dist/playground/index.js.map +1 -0
- package/dist/realtime/index.d.cts +1 -1
- package/dist/realtime/index.d.ts +1 -1
- package/dist/support/index.cjs +25 -0
- package/dist/support/index.cjs.map +1 -1
- package/dist/support/index.d.cts +22 -2
- package/dist/support/index.d.ts +22 -2
- package/dist/support/index.js +21 -1
- package/dist/support/index.js.map +1 -1
- package/dist/tracking/index.d.cts +1 -1
- package/dist/tracking/index.d.ts +1 -1
- package/dist/users/index.d.cts +1 -1
- package/dist/users/index.d.ts +1 -1
- package/dist/waitlist/index.d.cts +1 -1
- package/dist/waitlist/index.d.ts +1 -1
- package/package.json +12 -2
- package/src/gen/bindings.gen.ts +894 -215
- package/src/gen/brain/index.ts +1 -1
- package/src/gen/brain/queryOptions.gen.ts +0 -7
- package/src/gen/client.gen.ts +184 -17
- package/src/gen/manifest.gen.ts +1 -1
- package/src/gen/observe/index.ts +3 -0
- package/src/gen/observe/queryOptions.gen.ts +161 -0
- package/src/gen/organization/index.ts +1 -1
- package/src/gen/organization/queryOptions.gen.ts +41 -21
- package/src/gen/playground/index.ts +3 -0
- package/src/gen/playground/queryOptions.gen.ts +86 -0
- package/src/gen/support/index.ts +1 -1
- package/src/gen/support/queryOptions.gen.ts +32 -0
- package/src/gen/types.gen.ts +20412 -1980
- package/dist/client.gen-BSiYBjET.d.cts +0 -21947
- package/dist/client.gen-BSiYBjET.d.ts +0 -21947
|
@@ -183,25 +183,17 @@ var organizationPermissionCatalogQueryOptions = (sdk, input) => ({
|
|
|
183
183
|
queryKey: ["organization", "permission", "catalog", input],
|
|
184
184
|
queryFn: () => sdk["organization"]["permission"]["catalog"](input)
|
|
185
185
|
});
|
|
186
|
-
var organizationProductAcceptInvitationMutationOptions = (sdk) => ({
|
|
187
|
-
mutationKey: ["organization", "product", "accept-invitation"],
|
|
188
|
-
mutationFn: (input) => sdk["organization"]["product"]["accept-invitation"](input)
|
|
189
|
-
});
|
|
190
186
|
var organizationProductCreateMutationOptions = (sdk) => ({
|
|
191
187
|
mutationKey: ["organization", "product", "create"],
|
|
192
188
|
mutationFn: (input) => sdk["organization"]["product"]["create"](input)
|
|
193
189
|
});
|
|
194
|
-
var organizationProductInviteMutationOptions = (sdk) => ({
|
|
195
|
-
mutationKey: ["organization", "product", "invite"],
|
|
196
|
-
mutationFn: (input) => sdk["organization"]["product"]["invite"](input)
|
|
197
|
-
});
|
|
198
190
|
var organizationProductListQueryOptions = (sdk, input) => ({
|
|
199
191
|
queryKey: ["organization", "product", "list", input],
|
|
200
192
|
queryFn: () => sdk["organization"]["product"]["list"](input)
|
|
201
193
|
});
|
|
202
|
-
var
|
|
203
|
-
queryKey: ["organization", "product", "list-
|
|
204
|
-
queryFn: () => sdk["organization"]["product"]["list-
|
|
194
|
+
var organizationProductListAccessQueryOptions = (sdk, input) => ({
|
|
195
|
+
queryKey: ["organization", "product", "list-access", input],
|
|
196
|
+
queryFn: () => sdk["organization"]["product"]["list-access"](input)
|
|
205
197
|
});
|
|
206
198
|
var organizationProductListMembersQueryOptions = (sdk, input) => ({
|
|
207
199
|
queryKey: ["organization", "product", "list-members", input],
|
|
@@ -211,14 +203,18 @@ var organizationProductListRolesQueryOptions = (sdk, input) => ({
|
|
|
211
203
|
queryKey: ["organization", "product", "list-roles", input],
|
|
212
204
|
queryFn: () => sdk["organization"]["product"]["list-roles"](input)
|
|
213
205
|
});
|
|
214
|
-
var
|
|
215
|
-
mutationKey: ["organization", "product", "revoke-
|
|
216
|
-
mutationFn: (input) => sdk["organization"]["product"]["revoke-
|
|
206
|
+
var organizationProductRevokeAccessMutationOptions = (sdk) => ({
|
|
207
|
+
mutationKey: ["organization", "product", "revoke-access"],
|
|
208
|
+
mutationFn: (input) => sdk["organization"]["product"]["revoke-access"](input)
|
|
217
209
|
});
|
|
218
210
|
var organizationProductSelectMutationOptions = (sdk) => ({
|
|
219
211
|
mutationKey: ["organization", "product", "select"],
|
|
220
212
|
mutationFn: (input) => sdk["organization"]["product"]["select"](input)
|
|
221
213
|
});
|
|
214
|
+
var organizationProductSetAccessMutationOptions = (sdk) => ({
|
|
215
|
+
mutationKey: ["organization", "product", "set-access"],
|
|
216
|
+
mutationFn: (input) => sdk["organization"]["product"]["set-access"](input)
|
|
217
|
+
});
|
|
222
218
|
var organizationProductUpdateMutationOptions = (sdk) => ({
|
|
223
219
|
mutationKey: ["organization", "product", "update"],
|
|
224
220
|
mutationFn: (input) => sdk["organization"]["product"]["update"](input)
|
|
@@ -271,7 +267,23 @@ var organizationSelectMutationOptions = (sdk) => ({
|
|
|
271
267
|
mutationKey: ["organization", "select"],
|
|
272
268
|
mutationFn: (input) => sdk["organization"]["select"](input)
|
|
273
269
|
});
|
|
270
|
+
var organizationSupportThreadCreateMutationOptions = (sdk) => ({
|
|
271
|
+
mutationKey: ["organization", "support-thread", "create"],
|
|
272
|
+
mutationFn: (input) => sdk["organization"]["support-thread"]["create"](input)
|
|
273
|
+
});
|
|
274
|
+
var organizationSupportThreadGetQueryOptions = (sdk, input) => ({
|
|
275
|
+
queryKey: ["organization", "support-thread", "get", input],
|
|
276
|
+
queryFn: () => sdk["organization"]["support-thread"]["get"](input)
|
|
277
|
+
});
|
|
278
|
+
var organizationSupportThreadReplyMutationOptions = (sdk) => ({
|
|
279
|
+
mutationKey: ["organization", "support-thread", "reply"],
|
|
280
|
+
mutationFn: (input) => sdk["organization"]["support-thread"]["reply"](input)
|
|
281
|
+
});
|
|
282
|
+
var organizationSupportThreadsListQueryOptions = (sdk, input) => ({
|
|
283
|
+
queryKey: ["organization", "support-threads", "list", input],
|
|
284
|
+
queryFn: () => sdk["organization"]["support-threads"]["list"](input)
|
|
285
|
+
});
|
|
274
286
|
|
|
275
|
-
export { organizationAuthMeQueryOptions, organizationBillingBudgetsGetQueryOptions, organizationBillingBudgetsSetMutationOptions, 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, organizationListQueryOptions, organizationMemberAcceptInviteMutationOptions, organizationMemberInviteMutationOptions, organizationMemberListInvitationsQueryOptions, organizationMemberListProductAccessQueryOptions, organizationMemberListQueryOptions, organizationMemberRemoveMutationOptions, organizationMemberRevokeInvitationMutationOptions, organizationMemberSetRoleMutationOptions, organizationMemberShareProductMutationOptions, organizationMemberUnshareProductMutationOptions, organizationMembersAssignRoleMutationOptions, organizationPermissionCatalogQueryOptions,
|
|
287
|
+
export { organizationAuthMeQueryOptions, organizationBillingBudgetsGetQueryOptions, organizationBillingBudgetsSetMutationOptions, 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, organizationListQueryOptions, organizationMemberAcceptInviteMutationOptions, organizationMemberInviteMutationOptions, organizationMemberListInvitationsQueryOptions, organizationMemberListProductAccessQueryOptions, organizationMemberListQueryOptions, organizationMemberRemoveMutationOptions, organizationMemberRevokeInvitationMutationOptions, organizationMemberSetRoleMutationOptions, organizationMemberShareProductMutationOptions, organizationMemberUnshareProductMutationOptions, organizationMembersAssignRoleMutationOptions, organizationPermissionCatalogQueryOptions, organizationProductCreateMutationOptions, organizationProductListAccessQueryOptions, organizationProductListMembersQueryOptions, organizationProductListQueryOptions, organizationProductListRolesQueryOptions, organizationProductRevokeAccessMutationOptions, organizationProductSelectMutationOptions, organizationProductSetAccessMutationOptions, organizationProductUpdateMutationOptions, organizationPublicKeysCreateMutationOptions, organizationPublicKeysListQueryOptions, organizationPublicKeysRevokeMutationOptions, organizationPublicKeysUpdateScopeMutationOptions, organizationPublicRoutesListQueryOptions, organizationRolesCreateMutationOptions, organizationRolesDeleteMutationOptions, organizationRolesGetQueryOptions, organizationRolesListQueryOptions, organizationRolesUpdateMutationOptions, organizationSecurityMfaEnableMutationOptions, organizationSelectMutationOptions, organizationSupportThreadCreateMutationOptions, organizationSupportThreadGetQueryOptions, organizationSupportThreadReplyMutationOptions, organizationSupportThreadsListQueryOptions };
|
|
276
288
|
//# sourceMappingURL=index.js.map
|
|
277
289
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/gen/organization/queryOptions.gen.ts"],"names":[],"mappings":"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","file":"index.js","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 OrganizationProductAcceptInvitationInput,\n OrganizationProductCreateInput,\n OrganizationProductInviteInput,\n OrganizationProductListInput,\n OrganizationProductListInvitationsInput,\n OrganizationProductListInvitationsOutput,\n OrganizationProductListMembersInput,\n OrganizationProductListMembersOutput,\n OrganizationProductListOutput,\n OrganizationProductListRolesInput,\n OrganizationProductListRolesOutput,\n OrganizationProductRevokeInvitationInput,\n OrganizationProductSelectInput,\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} 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 organizationProductAcceptInvitationMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'product', 'accept-invitation'],\n mutationFn: (input: OrganizationProductAcceptInvitationInput) => sdk['organization']['product']['accept-invitation'](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 organizationProductInviteMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'product', 'invite'],\n mutationFn: (input: OrganizationProductInviteInput) => sdk['organization']['product']['invite'](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 organizationProductListInvitationsQueryOptions = (sdk: GeneratedClient, input: OrganizationProductListInvitationsInput) => ({\n queryKey: ['organization', 'product', 'list-invitations', input] as const,\n queryFn: () => sdk['organization']['product']['list-invitations'](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 organizationProductRevokeInvitationMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'product', 'revoke-invitation'],\n mutationFn: (input: OrganizationProductRevokeInvitationInput) => sdk['organization']['product']['revoke-invitation'](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 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"]}
|
|
1
|
+
{"version":3,"sources":["../../src/gen/organization/queryOptions.gen.ts"],"names":[],"mappings":"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","file":"index.js","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"]}
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
// src/gen/playground/queryOptions.gen.ts
|
|
4
|
+
var playgroundAnalyticsOverviewQueryOptions = (sdk, input) => ({
|
|
5
|
+
queryKey: ["playground", "analytics", "overview", input],
|
|
6
|
+
queryFn: () => sdk["playground"]["analytics"]["overview"](input)
|
|
7
|
+
});
|
|
8
|
+
var playgroundBillingEntitlementsQueryOptions = (sdk, input) => ({
|
|
9
|
+
queryKey: ["playground", "billing", "entitlements", input],
|
|
10
|
+
queryFn: () => sdk["playground"]["billing"]["entitlements"](input)
|
|
11
|
+
});
|
|
12
|
+
var playgroundBillingRecordUsageMutationOptions = (sdk) => ({
|
|
13
|
+
mutationKey: ["playground", "billing", "record-usage"],
|
|
14
|
+
mutationFn: (input) => sdk["playground"]["billing"]["record-usage"](input)
|
|
15
|
+
});
|
|
16
|
+
var playgroundClickupCreateTaskMutationOptions = (sdk) => ({
|
|
17
|
+
mutationKey: ["playground", "clickup", "create-task"],
|
|
18
|
+
mutationFn: (input) => sdk["playground"]["clickup"]["create-task"](input)
|
|
19
|
+
});
|
|
20
|
+
var playgroundClickupGetLastWebhookQueryOptions = (sdk, input) => ({
|
|
21
|
+
queryKey: ["playground", "clickup", "get-last-webhook", input],
|
|
22
|
+
queryFn: () => sdk["playground"]["clickup"]["get-last-webhook"](input)
|
|
23
|
+
});
|
|
24
|
+
var playgroundClickupGetOverviewQueryOptions = (sdk, input) => ({
|
|
25
|
+
queryKey: ["playground", "clickup", "get-overview", input],
|
|
26
|
+
queryFn: () => sdk["playground"]["clickup"]["get-overview"](input)
|
|
27
|
+
});
|
|
28
|
+
var playgroundGdriveGetLastChangeQueryOptions = (sdk, input) => ({
|
|
29
|
+
queryKey: ["playground", "gdrive", "get-last-change", input],
|
|
30
|
+
queryFn: () => sdk["playground"]["gdrive"]["get-last-change"](input)
|
|
31
|
+
});
|
|
32
|
+
var playgroundGdriveReadFileQueryOptions = (sdk, input) => ({
|
|
33
|
+
queryKey: ["playground", "gdrive", "read-file", input],
|
|
34
|
+
queryFn: () => sdk["playground"]["gdrive"]["read-file"](input)
|
|
35
|
+
});
|
|
36
|
+
var playgroundGoogleadsReadCustomerQueryOptions = (sdk, input) => ({
|
|
37
|
+
queryKey: ["playground", "googleads", "read-customer", input],
|
|
38
|
+
queryFn: () => sdk["playground"]["googleads"]["read-customer"](input)
|
|
39
|
+
});
|
|
40
|
+
var playgroundLifecycleGetStateQueryOptions = (sdk, input) => ({
|
|
41
|
+
queryKey: ["playground", "lifecycle", "get-state", input],
|
|
42
|
+
queryFn: () => sdk["playground"]["lifecycle"]["get-state"](input)
|
|
43
|
+
});
|
|
44
|
+
var playgroundLifecycleListEventsQueryOptions = (sdk, input) => ({
|
|
45
|
+
queryKey: ["playground", "lifecycle", "list-events", input],
|
|
46
|
+
queryFn: () => sdk["playground"]["lifecycle"]["list-events"](input)
|
|
47
|
+
});
|
|
48
|
+
var playgroundWebhookGetLastQueryOptions = (sdk, input) => ({
|
|
49
|
+
queryKey: ["playground", "webhook", "get-last", input],
|
|
50
|
+
queryFn: () => sdk["playground"]["webhook"]["get-last"](input)
|
|
51
|
+
});
|
|
52
|
+
|
|
53
|
+
exports.playgroundAnalyticsOverviewQueryOptions = playgroundAnalyticsOverviewQueryOptions;
|
|
54
|
+
exports.playgroundBillingEntitlementsQueryOptions = playgroundBillingEntitlementsQueryOptions;
|
|
55
|
+
exports.playgroundBillingRecordUsageMutationOptions = playgroundBillingRecordUsageMutationOptions;
|
|
56
|
+
exports.playgroundClickupCreateTaskMutationOptions = playgroundClickupCreateTaskMutationOptions;
|
|
57
|
+
exports.playgroundClickupGetLastWebhookQueryOptions = playgroundClickupGetLastWebhookQueryOptions;
|
|
58
|
+
exports.playgroundClickupGetOverviewQueryOptions = playgroundClickupGetOverviewQueryOptions;
|
|
59
|
+
exports.playgroundGdriveGetLastChangeQueryOptions = playgroundGdriveGetLastChangeQueryOptions;
|
|
60
|
+
exports.playgroundGdriveReadFileQueryOptions = playgroundGdriveReadFileQueryOptions;
|
|
61
|
+
exports.playgroundGoogleadsReadCustomerQueryOptions = playgroundGoogleadsReadCustomerQueryOptions;
|
|
62
|
+
exports.playgroundLifecycleGetStateQueryOptions = playgroundLifecycleGetStateQueryOptions;
|
|
63
|
+
exports.playgroundLifecycleListEventsQueryOptions = playgroundLifecycleListEventsQueryOptions;
|
|
64
|
+
exports.playgroundWebhookGetLastQueryOptions = playgroundWebhookGetLastQueryOptions;
|
|
65
|
+
//# sourceMappingURL=index.cjs.map
|
|
66
|
+
//# sourceMappingURL=index.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/gen/playground/queryOptions.gen.ts"],"names":[],"mappings":";;;AA2BO,IAAM,uCAAA,GAA0C,CAAC,GAAA,EAAsB,KAAA,MAA6C;AAAA,EACzH,QAAA,EAAU,CAAC,YAAA,EAAc,WAAA,EAAa,YAAY,KAAK,CAAA;AAAA,EACvD,OAAA,EAAS,MAAM,GAAA,CAAI,YAAY,EAAE,WAAW,CAAA,CAAE,UAAU,CAAA,CAAE,KAAK;AACjE,CAAA;AAEO,IAAM,yCAAA,GAA4C,CAAC,GAAA,EAAsB,KAAA,MAA+C;AAAA,EAC7H,QAAA,EAAU,CAAC,YAAA,EAAc,SAAA,EAAW,gBAAgB,KAAK,CAAA;AAAA,EACzD,OAAA,EAAS,MAAM,GAAA,CAAI,YAAY,EAAE,SAAS,CAAA,CAAE,cAAc,CAAA,CAAE,KAAK;AACnE,CAAA;AAEO,IAAM,2CAAA,GAA8C,CAAC,GAAA,MAA0B;AAAA,EACpF,WAAA,EAAa,CAAC,YAAA,EAAc,SAAA,EAAW,cAAc,CAAA;AAAA,EACrD,UAAA,EAAY,CAAC,KAAA,KAA6C,GAAA,CAAI,YAAY,EAAE,SAAS,CAAA,CAAE,cAAc,CAAA,CAAE,KAAK;AAC9G,CAAA;AAEO,IAAM,0CAAA,GAA6C,CAAC,GAAA,MAA0B;AAAA,EACnF,WAAA,EAAa,CAAC,YAAA,EAAc,SAAA,EAAW,aAAa,CAAA;AAAA,EACpD,UAAA,EAAY,CAAC,KAAA,KAA4C,GAAA,CAAI,YAAY,EAAE,SAAS,CAAA,CAAE,aAAa,CAAA,CAAE,KAAK;AAC5G,CAAA;AAEO,IAAM,2CAAA,GAA8C,CAAC,GAAA,EAAsB,KAAA,MAAiD;AAAA,EACjI,QAAA,EAAU,CAAC,YAAA,EAAc,SAAA,EAAW,oBAAoB,KAAK,CAAA;AAAA,EAC7D,OAAA,EAAS,MAAM,GAAA,CAAI,YAAY,EAAE,SAAS,CAAA,CAAE,kBAAkB,CAAA,CAAE,KAAK;AACvE,CAAA;AAEO,IAAM,wCAAA,GAA2C,CAAC,GAAA,EAAsB,KAAA,MAA8C;AAAA,EAC3H,QAAA,EAAU,CAAC,YAAA,EAAc,SAAA,EAAW,gBAAgB,KAAK,CAAA;AAAA,EACzD,OAAA,EAAS,MAAM,GAAA,CAAI,YAAY,EAAE,SAAS,CAAA,CAAE,cAAc,CAAA,CAAE,KAAK;AACnE,CAAA;AAEO,IAAM,yCAAA,GAA4C,CAAC,GAAA,EAAsB,KAAA,MAA+C;AAAA,EAC7H,QAAA,EAAU,CAAC,YAAA,EAAc,QAAA,EAAU,mBAAmB,KAAK,CAAA;AAAA,EAC3D,OAAA,EAAS,MAAM,GAAA,CAAI,YAAY,EAAE,QAAQ,CAAA,CAAE,iBAAiB,CAAA,CAAE,KAAK;AACrE,CAAA;AAEO,IAAM,oCAAA,GAAuC,CAAC,GAAA,EAAsB,KAAA,MAA0C;AAAA,EACnH,QAAA,EAAU,CAAC,YAAA,EAAc,QAAA,EAAU,aAAa,KAAK,CAAA;AAAA,EACrD,OAAA,EAAS,MAAM,GAAA,CAAI,YAAY,EAAE,QAAQ,CAAA,CAAE,WAAW,CAAA,CAAE,KAAK;AAC/D,CAAA;AAEO,IAAM,2CAAA,GAA8C,CAAC,GAAA,EAAsB,KAAA,MAAiD;AAAA,EACjI,QAAA,EAAU,CAAC,YAAA,EAAc,WAAA,EAAa,iBAAiB,KAAK,CAAA;AAAA,EAC5D,OAAA,EAAS,MAAM,GAAA,CAAI,YAAY,EAAE,WAAW,CAAA,CAAE,eAAe,CAAA,CAAE,KAAK;AACtE,CAAA;AAEO,IAAM,uCAAA,GAA0C,CAAC,GAAA,EAAsB,KAAA,MAA6C;AAAA,EACzH,QAAA,EAAU,CAAC,YAAA,EAAc,WAAA,EAAa,aAAa,KAAK,CAAA;AAAA,EACxD,OAAA,EAAS,MAAM,GAAA,CAAI,YAAY,EAAE,WAAW,CAAA,CAAE,WAAW,CAAA,CAAE,KAAK;AAClE,CAAA;AAEO,IAAM,yCAAA,GAA4C,CAAC,GAAA,EAAsB,KAAA,MAA+C;AAAA,EAC7H,QAAA,EAAU,CAAC,YAAA,EAAc,WAAA,EAAa,eAAe,KAAK,CAAA;AAAA,EAC1D,OAAA,EAAS,MAAM,GAAA,CAAI,YAAY,EAAE,WAAW,CAAA,CAAE,aAAa,CAAA,CAAE,KAAK;AACpE,CAAA;AAEO,IAAM,oCAAA,GAAuC,CAAC,GAAA,EAAsB,KAAA,MAA0C;AAAA,EACnH,QAAA,EAAU,CAAC,YAAA,EAAc,SAAA,EAAW,YAAY,KAAK,CAAA;AAAA,EACrD,OAAA,EAAS,MAAM,GAAA,CAAI,YAAY,EAAE,SAAS,CAAA,CAAE,UAAU,CAAA,CAAE,KAAK;AAC/D,CAAA","file":"index.cjs","sourcesContent":["// AUTOGENERATED by scripts/generate.ts — do not edit.\nimport type { GeneratedClient } from '../client.gen';\nimport type {\n PlaygroundAnalyticsOverviewInput,\n PlaygroundAnalyticsOverviewOutput,\n PlaygroundBillingEntitlementsInput,\n PlaygroundBillingEntitlementsOutput,\n PlaygroundBillingRecordUsageInput,\n PlaygroundClickupCreateTaskInput,\n PlaygroundClickupGetLastWebhookInput,\n PlaygroundClickupGetLastWebhookOutput,\n PlaygroundClickupGetOverviewInput,\n PlaygroundClickupGetOverviewOutput,\n PlaygroundGdriveGetLastChangeInput,\n PlaygroundGdriveGetLastChangeOutput,\n PlaygroundGdriveReadFileInput,\n PlaygroundGdriveReadFileOutput,\n PlaygroundGoogleadsReadCustomerInput,\n PlaygroundGoogleadsReadCustomerOutput,\n PlaygroundLifecycleGetStateInput,\n PlaygroundLifecycleGetStateOutput,\n PlaygroundLifecycleListEventsInput,\n PlaygroundLifecycleListEventsOutput,\n PlaygroundWebhookGetLastInput,\n PlaygroundWebhookGetLastOutput,\n} from '../types.gen';\n\nexport const playgroundAnalyticsOverviewQueryOptions = (sdk: GeneratedClient, input: PlaygroundAnalyticsOverviewInput) => ({\n queryKey: ['playground', 'analytics', 'overview', input] as const,\n queryFn: () => sdk['playground']['analytics']['overview'](input),\n});\n\nexport const playgroundBillingEntitlementsQueryOptions = (sdk: GeneratedClient, input: PlaygroundBillingEntitlementsInput) => ({\n queryKey: ['playground', 'billing', 'entitlements', input] as const,\n queryFn: () => sdk['playground']['billing']['entitlements'](input),\n});\n\nexport const playgroundBillingRecordUsageMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['playground', 'billing', 'record-usage'],\n mutationFn: (input: PlaygroundBillingRecordUsageInput) => sdk['playground']['billing']['record-usage'](input),\n});\n\nexport const playgroundClickupCreateTaskMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['playground', 'clickup', 'create-task'],\n mutationFn: (input: PlaygroundClickupCreateTaskInput) => sdk['playground']['clickup']['create-task'](input),\n});\n\nexport const playgroundClickupGetLastWebhookQueryOptions = (sdk: GeneratedClient, input: PlaygroundClickupGetLastWebhookInput) => ({\n queryKey: ['playground', 'clickup', 'get-last-webhook', input] as const,\n queryFn: () => sdk['playground']['clickup']['get-last-webhook'](input),\n});\n\nexport const playgroundClickupGetOverviewQueryOptions = (sdk: GeneratedClient, input: PlaygroundClickupGetOverviewInput) => ({\n queryKey: ['playground', 'clickup', 'get-overview', input] as const,\n queryFn: () => sdk['playground']['clickup']['get-overview'](input),\n});\n\nexport const playgroundGdriveGetLastChangeQueryOptions = (sdk: GeneratedClient, input: PlaygroundGdriveGetLastChangeInput) => ({\n queryKey: ['playground', 'gdrive', 'get-last-change', input] as const,\n queryFn: () => sdk['playground']['gdrive']['get-last-change'](input),\n});\n\nexport const playgroundGdriveReadFileQueryOptions = (sdk: GeneratedClient, input: PlaygroundGdriveReadFileInput) => ({\n queryKey: ['playground', 'gdrive', 'read-file', input] as const,\n queryFn: () => sdk['playground']['gdrive']['read-file'](input),\n});\n\nexport const playgroundGoogleadsReadCustomerQueryOptions = (sdk: GeneratedClient, input: PlaygroundGoogleadsReadCustomerInput) => ({\n queryKey: ['playground', 'googleads', 'read-customer', input] as const,\n queryFn: () => sdk['playground']['googleads']['read-customer'](input),\n});\n\nexport const playgroundLifecycleGetStateQueryOptions = (sdk: GeneratedClient, input: PlaygroundLifecycleGetStateInput) => ({\n queryKey: ['playground', 'lifecycle', 'get-state', input] as const,\n queryFn: () => sdk['playground']['lifecycle']['get-state'](input),\n});\n\nexport const playgroundLifecycleListEventsQueryOptions = (sdk: GeneratedClient, input: PlaygroundLifecycleListEventsInput) => ({\n queryKey: ['playground', 'lifecycle', 'list-events', input] as const,\n queryFn: () => sdk['playground']['lifecycle']['list-events'](input),\n});\n\nexport const playgroundWebhookGetLastQueryOptions = (sdk: GeneratedClient, input: PlaygroundWebhookGetLastInput) => ({\n queryKey: ['playground', 'webhook', 'get-last', input] as const,\n queryFn: () => sdk['playground']['webhook']['get-last'](input),\n});\n"]}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { G as GeneratedClient, iU as PlaygroundAnalyticsOverviewInput, iV as PlaygroundAnalyticsOverviewOutput, iW as PlaygroundBillingEntitlementsInput, iX as PlaygroundBillingEntitlementsOutput, iY as PlaygroundBillingRecordUsageInput, iZ as PlaygroundBillingRecordUsageOutput, i_ as PlaygroundClickupCreateTaskInput, i$ as PlaygroundClickupCreateTaskOutput, j0 as PlaygroundClickupGetLastWebhookInput, j1 as PlaygroundClickupGetLastWebhookOutput, j2 as PlaygroundClickupGetOverviewInput, j3 as PlaygroundClickupGetOverviewOutput, j4 as PlaygroundGdriveGetLastChangeInput, j5 as PlaygroundGdriveGetLastChangeOutput, j6 as PlaygroundGdriveReadFileInput, j7 as PlaygroundGdriveReadFileOutput, j8 as PlaygroundGoogleadsReadCustomerInput, j9 as PlaygroundGoogleadsReadCustomerOutput, ja as PlaygroundLifecycleGetStateInput, jb as PlaygroundLifecycleGetStateOutput, jc as PlaygroundLifecycleListEventsInput, jd as PlaygroundLifecycleListEventsOutput, je as PlaygroundWebhookGetLastInput, jf as PlaygroundWebhookGetLastOutput } from '../client.gen-B78AtFRC.cjs';
|
|
2
|
+
|
|
3
|
+
declare const playgroundAnalyticsOverviewQueryOptions: (sdk: GeneratedClient, input: PlaygroundAnalyticsOverviewInput) => {
|
|
4
|
+
queryKey: readonly ["playground", "analytics", "overview", PlaygroundAnalyticsOverviewInput];
|
|
5
|
+
queryFn: () => Promise<PlaygroundAnalyticsOverviewOutput>;
|
|
6
|
+
};
|
|
7
|
+
declare const playgroundBillingEntitlementsQueryOptions: (sdk: GeneratedClient, input: PlaygroundBillingEntitlementsInput) => {
|
|
8
|
+
queryKey: readonly ["playground", "billing", "entitlements", PlaygroundBillingEntitlementsInput];
|
|
9
|
+
queryFn: () => Promise<PlaygroundBillingEntitlementsOutput>;
|
|
10
|
+
};
|
|
11
|
+
declare const playgroundBillingRecordUsageMutationOptions: (sdk: GeneratedClient) => {
|
|
12
|
+
mutationKey: string[];
|
|
13
|
+
mutationFn: (input: PlaygroundBillingRecordUsageInput) => Promise<PlaygroundBillingRecordUsageOutput>;
|
|
14
|
+
};
|
|
15
|
+
declare const playgroundClickupCreateTaskMutationOptions: (sdk: GeneratedClient) => {
|
|
16
|
+
mutationKey: string[];
|
|
17
|
+
mutationFn: (input: PlaygroundClickupCreateTaskInput) => Promise<PlaygroundClickupCreateTaskOutput>;
|
|
18
|
+
};
|
|
19
|
+
declare const playgroundClickupGetLastWebhookQueryOptions: (sdk: GeneratedClient, input: PlaygroundClickupGetLastWebhookInput) => {
|
|
20
|
+
queryKey: readonly ["playground", "clickup", "get-last-webhook", PlaygroundClickupGetLastWebhookInput];
|
|
21
|
+
queryFn: () => Promise<PlaygroundClickupGetLastWebhookOutput>;
|
|
22
|
+
};
|
|
23
|
+
declare const playgroundClickupGetOverviewQueryOptions: (sdk: GeneratedClient, input: PlaygroundClickupGetOverviewInput) => {
|
|
24
|
+
queryKey: readonly ["playground", "clickup", "get-overview", PlaygroundClickupGetOverviewInput];
|
|
25
|
+
queryFn: () => Promise<PlaygroundClickupGetOverviewOutput>;
|
|
26
|
+
};
|
|
27
|
+
declare const playgroundGdriveGetLastChangeQueryOptions: (sdk: GeneratedClient, input: PlaygroundGdriveGetLastChangeInput) => {
|
|
28
|
+
queryKey: readonly ["playground", "gdrive", "get-last-change", PlaygroundGdriveGetLastChangeInput];
|
|
29
|
+
queryFn: () => Promise<PlaygroundGdriveGetLastChangeOutput>;
|
|
30
|
+
};
|
|
31
|
+
declare const playgroundGdriveReadFileQueryOptions: (sdk: GeneratedClient, input: PlaygroundGdriveReadFileInput) => {
|
|
32
|
+
queryKey: readonly ["playground", "gdrive", "read-file", PlaygroundGdriveReadFileInput];
|
|
33
|
+
queryFn: () => Promise<PlaygroundGdriveReadFileOutput>;
|
|
34
|
+
};
|
|
35
|
+
declare const playgroundGoogleadsReadCustomerQueryOptions: (sdk: GeneratedClient, input: PlaygroundGoogleadsReadCustomerInput) => {
|
|
36
|
+
queryKey: readonly ["playground", "googleads", "read-customer", PlaygroundGoogleadsReadCustomerInput];
|
|
37
|
+
queryFn: () => Promise<PlaygroundGoogleadsReadCustomerOutput>;
|
|
38
|
+
};
|
|
39
|
+
declare const playgroundLifecycleGetStateQueryOptions: (sdk: GeneratedClient, input: PlaygroundLifecycleGetStateInput) => {
|
|
40
|
+
queryKey: readonly ["playground", "lifecycle", "get-state", PlaygroundLifecycleGetStateInput];
|
|
41
|
+
queryFn: () => Promise<PlaygroundLifecycleGetStateOutput>;
|
|
42
|
+
};
|
|
43
|
+
declare const playgroundLifecycleListEventsQueryOptions: (sdk: GeneratedClient, input: PlaygroundLifecycleListEventsInput) => {
|
|
44
|
+
queryKey: readonly ["playground", "lifecycle", "list-events", PlaygroundLifecycleListEventsInput];
|
|
45
|
+
queryFn: () => Promise<PlaygroundLifecycleListEventsOutput>;
|
|
46
|
+
};
|
|
47
|
+
declare const playgroundWebhookGetLastQueryOptions: (sdk: GeneratedClient, input: PlaygroundWebhookGetLastInput) => {
|
|
48
|
+
queryKey: readonly ["playground", "webhook", "get-last", PlaygroundWebhookGetLastInput];
|
|
49
|
+
queryFn: () => Promise<PlaygroundWebhookGetLastOutput>;
|
|
50
|
+
};
|
|
51
|
+
|
|
52
|
+
export { PlaygroundAnalyticsOverviewInput, PlaygroundAnalyticsOverviewOutput, PlaygroundBillingEntitlementsInput, PlaygroundBillingEntitlementsOutput, PlaygroundBillingRecordUsageInput, PlaygroundBillingRecordUsageOutput, PlaygroundClickupCreateTaskInput, PlaygroundClickupCreateTaskOutput, PlaygroundClickupGetLastWebhookInput, PlaygroundClickupGetLastWebhookOutput, PlaygroundClickupGetOverviewInput, PlaygroundClickupGetOverviewOutput, PlaygroundGdriveGetLastChangeInput, PlaygroundGdriveGetLastChangeOutput, PlaygroundGdriveReadFileInput, PlaygroundGdriveReadFileOutput, PlaygroundGoogleadsReadCustomerInput, PlaygroundGoogleadsReadCustomerOutput, PlaygroundLifecycleGetStateInput, PlaygroundLifecycleGetStateOutput, PlaygroundLifecycleListEventsInput, PlaygroundLifecycleListEventsOutput, PlaygroundWebhookGetLastInput, PlaygroundWebhookGetLastOutput, playgroundAnalyticsOverviewQueryOptions, playgroundBillingEntitlementsQueryOptions, playgroundBillingRecordUsageMutationOptions, playgroundClickupCreateTaskMutationOptions, playgroundClickupGetLastWebhookQueryOptions, playgroundClickupGetOverviewQueryOptions, playgroundGdriveGetLastChangeQueryOptions, playgroundGdriveReadFileQueryOptions, playgroundGoogleadsReadCustomerQueryOptions, playgroundLifecycleGetStateQueryOptions, playgroundLifecycleListEventsQueryOptions, playgroundWebhookGetLastQueryOptions };
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { G as GeneratedClient, iU as PlaygroundAnalyticsOverviewInput, iV as PlaygroundAnalyticsOverviewOutput, iW as PlaygroundBillingEntitlementsInput, iX as PlaygroundBillingEntitlementsOutput, iY as PlaygroundBillingRecordUsageInput, iZ as PlaygroundBillingRecordUsageOutput, i_ as PlaygroundClickupCreateTaskInput, i$ as PlaygroundClickupCreateTaskOutput, j0 as PlaygroundClickupGetLastWebhookInput, j1 as PlaygroundClickupGetLastWebhookOutput, j2 as PlaygroundClickupGetOverviewInput, j3 as PlaygroundClickupGetOverviewOutput, j4 as PlaygroundGdriveGetLastChangeInput, j5 as PlaygroundGdriveGetLastChangeOutput, j6 as PlaygroundGdriveReadFileInput, j7 as PlaygroundGdriveReadFileOutput, j8 as PlaygroundGoogleadsReadCustomerInput, j9 as PlaygroundGoogleadsReadCustomerOutput, ja as PlaygroundLifecycleGetStateInput, jb as PlaygroundLifecycleGetStateOutput, jc as PlaygroundLifecycleListEventsInput, jd as PlaygroundLifecycleListEventsOutput, je as PlaygroundWebhookGetLastInput, jf as PlaygroundWebhookGetLastOutput } from '../client.gen-B78AtFRC.js';
|
|
2
|
+
|
|
3
|
+
declare const playgroundAnalyticsOverviewQueryOptions: (sdk: GeneratedClient, input: PlaygroundAnalyticsOverviewInput) => {
|
|
4
|
+
queryKey: readonly ["playground", "analytics", "overview", PlaygroundAnalyticsOverviewInput];
|
|
5
|
+
queryFn: () => Promise<PlaygroundAnalyticsOverviewOutput>;
|
|
6
|
+
};
|
|
7
|
+
declare const playgroundBillingEntitlementsQueryOptions: (sdk: GeneratedClient, input: PlaygroundBillingEntitlementsInput) => {
|
|
8
|
+
queryKey: readonly ["playground", "billing", "entitlements", PlaygroundBillingEntitlementsInput];
|
|
9
|
+
queryFn: () => Promise<PlaygroundBillingEntitlementsOutput>;
|
|
10
|
+
};
|
|
11
|
+
declare const playgroundBillingRecordUsageMutationOptions: (sdk: GeneratedClient) => {
|
|
12
|
+
mutationKey: string[];
|
|
13
|
+
mutationFn: (input: PlaygroundBillingRecordUsageInput) => Promise<PlaygroundBillingRecordUsageOutput>;
|
|
14
|
+
};
|
|
15
|
+
declare const playgroundClickupCreateTaskMutationOptions: (sdk: GeneratedClient) => {
|
|
16
|
+
mutationKey: string[];
|
|
17
|
+
mutationFn: (input: PlaygroundClickupCreateTaskInput) => Promise<PlaygroundClickupCreateTaskOutput>;
|
|
18
|
+
};
|
|
19
|
+
declare const playgroundClickupGetLastWebhookQueryOptions: (sdk: GeneratedClient, input: PlaygroundClickupGetLastWebhookInput) => {
|
|
20
|
+
queryKey: readonly ["playground", "clickup", "get-last-webhook", PlaygroundClickupGetLastWebhookInput];
|
|
21
|
+
queryFn: () => Promise<PlaygroundClickupGetLastWebhookOutput>;
|
|
22
|
+
};
|
|
23
|
+
declare const playgroundClickupGetOverviewQueryOptions: (sdk: GeneratedClient, input: PlaygroundClickupGetOverviewInput) => {
|
|
24
|
+
queryKey: readonly ["playground", "clickup", "get-overview", PlaygroundClickupGetOverviewInput];
|
|
25
|
+
queryFn: () => Promise<PlaygroundClickupGetOverviewOutput>;
|
|
26
|
+
};
|
|
27
|
+
declare const playgroundGdriveGetLastChangeQueryOptions: (sdk: GeneratedClient, input: PlaygroundGdriveGetLastChangeInput) => {
|
|
28
|
+
queryKey: readonly ["playground", "gdrive", "get-last-change", PlaygroundGdriveGetLastChangeInput];
|
|
29
|
+
queryFn: () => Promise<PlaygroundGdriveGetLastChangeOutput>;
|
|
30
|
+
};
|
|
31
|
+
declare const playgroundGdriveReadFileQueryOptions: (sdk: GeneratedClient, input: PlaygroundGdriveReadFileInput) => {
|
|
32
|
+
queryKey: readonly ["playground", "gdrive", "read-file", PlaygroundGdriveReadFileInput];
|
|
33
|
+
queryFn: () => Promise<PlaygroundGdriveReadFileOutput>;
|
|
34
|
+
};
|
|
35
|
+
declare const playgroundGoogleadsReadCustomerQueryOptions: (sdk: GeneratedClient, input: PlaygroundGoogleadsReadCustomerInput) => {
|
|
36
|
+
queryKey: readonly ["playground", "googleads", "read-customer", PlaygroundGoogleadsReadCustomerInput];
|
|
37
|
+
queryFn: () => Promise<PlaygroundGoogleadsReadCustomerOutput>;
|
|
38
|
+
};
|
|
39
|
+
declare const playgroundLifecycleGetStateQueryOptions: (sdk: GeneratedClient, input: PlaygroundLifecycleGetStateInput) => {
|
|
40
|
+
queryKey: readonly ["playground", "lifecycle", "get-state", PlaygroundLifecycleGetStateInput];
|
|
41
|
+
queryFn: () => Promise<PlaygroundLifecycleGetStateOutput>;
|
|
42
|
+
};
|
|
43
|
+
declare const playgroundLifecycleListEventsQueryOptions: (sdk: GeneratedClient, input: PlaygroundLifecycleListEventsInput) => {
|
|
44
|
+
queryKey: readonly ["playground", "lifecycle", "list-events", PlaygroundLifecycleListEventsInput];
|
|
45
|
+
queryFn: () => Promise<PlaygroundLifecycleListEventsOutput>;
|
|
46
|
+
};
|
|
47
|
+
declare const playgroundWebhookGetLastQueryOptions: (sdk: GeneratedClient, input: PlaygroundWebhookGetLastInput) => {
|
|
48
|
+
queryKey: readonly ["playground", "webhook", "get-last", PlaygroundWebhookGetLastInput];
|
|
49
|
+
queryFn: () => Promise<PlaygroundWebhookGetLastOutput>;
|
|
50
|
+
};
|
|
51
|
+
|
|
52
|
+
export { PlaygroundAnalyticsOverviewInput, PlaygroundAnalyticsOverviewOutput, PlaygroundBillingEntitlementsInput, PlaygroundBillingEntitlementsOutput, PlaygroundBillingRecordUsageInput, PlaygroundBillingRecordUsageOutput, PlaygroundClickupCreateTaskInput, PlaygroundClickupCreateTaskOutput, PlaygroundClickupGetLastWebhookInput, PlaygroundClickupGetLastWebhookOutput, PlaygroundClickupGetOverviewInput, PlaygroundClickupGetOverviewOutput, PlaygroundGdriveGetLastChangeInput, PlaygroundGdriveGetLastChangeOutput, PlaygroundGdriveReadFileInput, PlaygroundGdriveReadFileOutput, PlaygroundGoogleadsReadCustomerInput, PlaygroundGoogleadsReadCustomerOutput, PlaygroundLifecycleGetStateInput, PlaygroundLifecycleGetStateOutput, PlaygroundLifecycleListEventsInput, PlaygroundLifecycleListEventsOutput, PlaygroundWebhookGetLastInput, PlaygroundWebhookGetLastOutput, playgroundAnalyticsOverviewQueryOptions, playgroundBillingEntitlementsQueryOptions, playgroundBillingRecordUsageMutationOptions, playgroundClickupCreateTaskMutationOptions, playgroundClickupGetLastWebhookQueryOptions, playgroundClickupGetOverviewQueryOptions, playgroundGdriveGetLastChangeQueryOptions, playgroundGdriveReadFileQueryOptions, playgroundGoogleadsReadCustomerQueryOptions, playgroundLifecycleGetStateQueryOptions, playgroundLifecycleListEventsQueryOptions, playgroundWebhookGetLastQueryOptions };
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
// src/gen/playground/queryOptions.gen.ts
|
|
2
|
+
var playgroundAnalyticsOverviewQueryOptions = (sdk, input) => ({
|
|
3
|
+
queryKey: ["playground", "analytics", "overview", input],
|
|
4
|
+
queryFn: () => sdk["playground"]["analytics"]["overview"](input)
|
|
5
|
+
});
|
|
6
|
+
var playgroundBillingEntitlementsQueryOptions = (sdk, input) => ({
|
|
7
|
+
queryKey: ["playground", "billing", "entitlements", input],
|
|
8
|
+
queryFn: () => sdk["playground"]["billing"]["entitlements"](input)
|
|
9
|
+
});
|
|
10
|
+
var playgroundBillingRecordUsageMutationOptions = (sdk) => ({
|
|
11
|
+
mutationKey: ["playground", "billing", "record-usage"],
|
|
12
|
+
mutationFn: (input) => sdk["playground"]["billing"]["record-usage"](input)
|
|
13
|
+
});
|
|
14
|
+
var playgroundClickupCreateTaskMutationOptions = (sdk) => ({
|
|
15
|
+
mutationKey: ["playground", "clickup", "create-task"],
|
|
16
|
+
mutationFn: (input) => sdk["playground"]["clickup"]["create-task"](input)
|
|
17
|
+
});
|
|
18
|
+
var playgroundClickupGetLastWebhookQueryOptions = (sdk, input) => ({
|
|
19
|
+
queryKey: ["playground", "clickup", "get-last-webhook", input],
|
|
20
|
+
queryFn: () => sdk["playground"]["clickup"]["get-last-webhook"](input)
|
|
21
|
+
});
|
|
22
|
+
var playgroundClickupGetOverviewQueryOptions = (sdk, input) => ({
|
|
23
|
+
queryKey: ["playground", "clickup", "get-overview", input],
|
|
24
|
+
queryFn: () => sdk["playground"]["clickup"]["get-overview"](input)
|
|
25
|
+
});
|
|
26
|
+
var playgroundGdriveGetLastChangeQueryOptions = (sdk, input) => ({
|
|
27
|
+
queryKey: ["playground", "gdrive", "get-last-change", input],
|
|
28
|
+
queryFn: () => sdk["playground"]["gdrive"]["get-last-change"](input)
|
|
29
|
+
});
|
|
30
|
+
var playgroundGdriveReadFileQueryOptions = (sdk, input) => ({
|
|
31
|
+
queryKey: ["playground", "gdrive", "read-file", input],
|
|
32
|
+
queryFn: () => sdk["playground"]["gdrive"]["read-file"](input)
|
|
33
|
+
});
|
|
34
|
+
var playgroundGoogleadsReadCustomerQueryOptions = (sdk, input) => ({
|
|
35
|
+
queryKey: ["playground", "googleads", "read-customer", input],
|
|
36
|
+
queryFn: () => sdk["playground"]["googleads"]["read-customer"](input)
|
|
37
|
+
});
|
|
38
|
+
var playgroundLifecycleGetStateQueryOptions = (sdk, input) => ({
|
|
39
|
+
queryKey: ["playground", "lifecycle", "get-state", input],
|
|
40
|
+
queryFn: () => sdk["playground"]["lifecycle"]["get-state"](input)
|
|
41
|
+
});
|
|
42
|
+
var playgroundLifecycleListEventsQueryOptions = (sdk, input) => ({
|
|
43
|
+
queryKey: ["playground", "lifecycle", "list-events", input],
|
|
44
|
+
queryFn: () => sdk["playground"]["lifecycle"]["list-events"](input)
|
|
45
|
+
});
|
|
46
|
+
var playgroundWebhookGetLastQueryOptions = (sdk, input) => ({
|
|
47
|
+
queryKey: ["playground", "webhook", "get-last", input],
|
|
48
|
+
queryFn: () => sdk["playground"]["webhook"]["get-last"](input)
|
|
49
|
+
});
|
|
50
|
+
|
|
51
|
+
export { playgroundAnalyticsOverviewQueryOptions, playgroundBillingEntitlementsQueryOptions, playgroundBillingRecordUsageMutationOptions, playgroundClickupCreateTaskMutationOptions, playgroundClickupGetLastWebhookQueryOptions, playgroundClickupGetOverviewQueryOptions, playgroundGdriveGetLastChangeQueryOptions, playgroundGdriveReadFileQueryOptions, playgroundGoogleadsReadCustomerQueryOptions, playgroundLifecycleGetStateQueryOptions, playgroundLifecycleListEventsQueryOptions, playgroundWebhookGetLastQueryOptions };
|
|
52
|
+
//# sourceMappingURL=index.js.map
|
|
53
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/gen/playground/queryOptions.gen.ts"],"names":[],"mappings":"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","file":"index.js","sourcesContent":["// AUTOGENERATED by scripts/generate.ts — do not edit.\nimport type { GeneratedClient } from '../client.gen';\nimport type {\n PlaygroundAnalyticsOverviewInput,\n PlaygroundAnalyticsOverviewOutput,\n PlaygroundBillingEntitlementsInput,\n PlaygroundBillingEntitlementsOutput,\n PlaygroundBillingRecordUsageInput,\n PlaygroundClickupCreateTaskInput,\n PlaygroundClickupGetLastWebhookInput,\n PlaygroundClickupGetLastWebhookOutput,\n PlaygroundClickupGetOverviewInput,\n PlaygroundClickupGetOverviewOutput,\n PlaygroundGdriveGetLastChangeInput,\n PlaygroundGdriveGetLastChangeOutput,\n PlaygroundGdriveReadFileInput,\n PlaygroundGdriveReadFileOutput,\n PlaygroundGoogleadsReadCustomerInput,\n PlaygroundGoogleadsReadCustomerOutput,\n PlaygroundLifecycleGetStateInput,\n PlaygroundLifecycleGetStateOutput,\n PlaygroundLifecycleListEventsInput,\n PlaygroundLifecycleListEventsOutput,\n PlaygroundWebhookGetLastInput,\n PlaygroundWebhookGetLastOutput,\n} from '../types.gen';\n\nexport const playgroundAnalyticsOverviewQueryOptions = (sdk: GeneratedClient, input: PlaygroundAnalyticsOverviewInput) => ({\n queryKey: ['playground', 'analytics', 'overview', input] as const,\n queryFn: () => sdk['playground']['analytics']['overview'](input),\n});\n\nexport const playgroundBillingEntitlementsQueryOptions = (sdk: GeneratedClient, input: PlaygroundBillingEntitlementsInput) => ({\n queryKey: ['playground', 'billing', 'entitlements', input] as const,\n queryFn: () => sdk['playground']['billing']['entitlements'](input),\n});\n\nexport const playgroundBillingRecordUsageMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['playground', 'billing', 'record-usage'],\n mutationFn: (input: PlaygroundBillingRecordUsageInput) => sdk['playground']['billing']['record-usage'](input),\n});\n\nexport const playgroundClickupCreateTaskMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['playground', 'clickup', 'create-task'],\n mutationFn: (input: PlaygroundClickupCreateTaskInput) => sdk['playground']['clickup']['create-task'](input),\n});\n\nexport const playgroundClickupGetLastWebhookQueryOptions = (sdk: GeneratedClient, input: PlaygroundClickupGetLastWebhookInput) => ({\n queryKey: ['playground', 'clickup', 'get-last-webhook', input] as const,\n queryFn: () => sdk['playground']['clickup']['get-last-webhook'](input),\n});\n\nexport const playgroundClickupGetOverviewQueryOptions = (sdk: GeneratedClient, input: PlaygroundClickupGetOverviewInput) => ({\n queryKey: ['playground', 'clickup', 'get-overview', input] as const,\n queryFn: () => sdk['playground']['clickup']['get-overview'](input),\n});\n\nexport const playgroundGdriveGetLastChangeQueryOptions = (sdk: GeneratedClient, input: PlaygroundGdriveGetLastChangeInput) => ({\n queryKey: ['playground', 'gdrive', 'get-last-change', input] as const,\n queryFn: () => sdk['playground']['gdrive']['get-last-change'](input),\n});\n\nexport const playgroundGdriveReadFileQueryOptions = (sdk: GeneratedClient, input: PlaygroundGdriveReadFileInput) => ({\n queryKey: ['playground', 'gdrive', 'read-file', input] as const,\n queryFn: () => sdk['playground']['gdrive']['read-file'](input),\n});\n\nexport const playgroundGoogleadsReadCustomerQueryOptions = (sdk: GeneratedClient, input: PlaygroundGoogleadsReadCustomerInput) => ({\n queryKey: ['playground', 'googleads', 'read-customer', input] as const,\n queryFn: () => sdk['playground']['googleads']['read-customer'](input),\n});\n\nexport const playgroundLifecycleGetStateQueryOptions = (sdk: GeneratedClient, input: PlaygroundLifecycleGetStateInput) => ({\n queryKey: ['playground', 'lifecycle', 'get-state', input] as const,\n queryFn: () => sdk['playground']['lifecycle']['get-state'](input),\n});\n\nexport const playgroundLifecycleListEventsQueryOptions = (sdk: GeneratedClient, input: PlaygroundLifecycleListEventsInput) => ({\n queryKey: ['playground', 'lifecycle', 'list-events', input] as const,\n queryFn: () => sdk['playground']['lifecycle']['list-events'](input),\n});\n\nexport const playgroundWebhookGetLastQueryOptions = (sdk: GeneratedClient, input: PlaygroundWebhookGetLastInput) => ({\n queryKey: ['playground', 'webhook', 'get-last', input] as const,\n queryFn: () => sdk['playground']['webhook']['get-last'](input),\n});\n"]}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { G as GeneratedClient,
|
|
1
|
+
import { G as GeneratedClient, jg as RealtimeArchiveExportInput, jh as RealtimeArchiveExportOutput, ji as RealtimeArchiveExportStatusInput, jj as RealtimeArchiveExportStatusOutput, jk as RealtimeArchiveGetInput, jl as RealtimeArchiveGetOutput, jm as RealtimeGrantCreateInput, jn as RealtimeGrantCreateOutput, jo as RealtimeGrantListInput, jp as RealtimeGrantListOutput, jq as RealtimeGrantRevokeInput, jr as RealtimeGrantRevokeOutput, js as RealtimeHistoryGetInput, jt as RealtimeHistoryGetOutput, ju as RealtimeMessagesPublishInput, jv as RealtimeMessagesPublishOutput, jw as RealtimeNamespaceCreateInput, jx as RealtimeNamespaceCreateOutput, jy as RealtimeNamespaceDeleteInput, jz as RealtimeNamespaceDeleteOutput, jA as RealtimeNamespaceGetInput, jB as RealtimeNamespaceGetOutput, jC as RealtimeNamespaceListInput, jD as RealtimeNamespaceListOutput, jE as RealtimeNamespaceUpdateInput, jF as RealtimeNamespaceUpdateOutput, jG as RealtimePresenceEnterInput, jH as RealtimePresenceEnterOutput, jI as RealtimePresenceGetInput, jJ as RealtimePresenceGetOutput, jK as RealtimePresenceLeaveInput, jL as RealtimePresenceLeaveOutput, jM as RealtimePresenceStatsInput, jN as RealtimePresenceStatsOutput, jO as RealtimePresenceUpdateInput, jP as RealtimePresenceUpdateOutput, jQ as RealtimePublicAccessStatusInput, jR as RealtimePublicAccessStatusOutput, jS as RealtimeStatusGetInput, jT as RealtimeStatusGetOutput, jU as RealtimeTokensCreateInput, jV as RealtimeTokensCreateOutput, jW as RealtimeWebhookCreateInput, jX as RealtimeWebhookCreateOutput, jY as RealtimeWebhookDeleteInput, jZ as RealtimeWebhookDeleteOutput, j_ as RealtimeWebhookDeliveriesListInput, j$ as RealtimeWebhookDeliveriesListOutput, k0 as RealtimeWebhookGetInput, k1 as RealtimeWebhookGetOutput, k2 as RealtimeWebhookListInput, k3 as RealtimeWebhookListOutput, k4 as RealtimeWebhookSecretRotateInput, k5 as RealtimeWebhookSecretRotateOutput, k6 as RealtimeWebhookUpdateInput, k7 as RealtimeWebhookUpdateOutput } from '../client.gen-B78AtFRC.cjs';
|
|
2
2
|
|
|
3
3
|
declare const realtimeArchiveExportMutationOptions: (sdk: GeneratedClient) => {
|
|
4
4
|
mutationKey: string[];
|
package/dist/realtime/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { G as GeneratedClient,
|
|
1
|
+
import { G as GeneratedClient, jg as RealtimeArchiveExportInput, jh as RealtimeArchiveExportOutput, ji as RealtimeArchiveExportStatusInput, jj as RealtimeArchiveExportStatusOutput, jk as RealtimeArchiveGetInput, jl as RealtimeArchiveGetOutput, jm as RealtimeGrantCreateInput, jn as RealtimeGrantCreateOutput, jo as RealtimeGrantListInput, jp as RealtimeGrantListOutput, jq as RealtimeGrantRevokeInput, jr as RealtimeGrantRevokeOutput, js as RealtimeHistoryGetInput, jt as RealtimeHistoryGetOutput, ju as RealtimeMessagesPublishInput, jv as RealtimeMessagesPublishOutput, jw as RealtimeNamespaceCreateInput, jx as RealtimeNamespaceCreateOutput, jy as RealtimeNamespaceDeleteInput, jz as RealtimeNamespaceDeleteOutput, jA as RealtimeNamespaceGetInput, jB as RealtimeNamespaceGetOutput, jC as RealtimeNamespaceListInput, jD as RealtimeNamespaceListOutput, jE as RealtimeNamespaceUpdateInput, jF as RealtimeNamespaceUpdateOutput, jG as RealtimePresenceEnterInput, jH as RealtimePresenceEnterOutput, jI as RealtimePresenceGetInput, jJ as RealtimePresenceGetOutput, jK as RealtimePresenceLeaveInput, jL as RealtimePresenceLeaveOutput, jM as RealtimePresenceStatsInput, jN as RealtimePresenceStatsOutput, jO as RealtimePresenceUpdateInput, jP as RealtimePresenceUpdateOutput, jQ as RealtimePublicAccessStatusInput, jR as RealtimePublicAccessStatusOutput, jS as RealtimeStatusGetInput, jT as RealtimeStatusGetOutput, jU as RealtimeTokensCreateInput, jV as RealtimeTokensCreateOutput, jW as RealtimeWebhookCreateInput, jX as RealtimeWebhookCreateOutput, jY as RealtimeWebhookDeleteInput, jZ as RealtimeWebhookDeleteOutput, j_ as RealtimeWebhookDeliveriesListInput, j$ as RealtimeWebhookDeliveriesListOutput, k0 as RealtimeWebhookGetInput, k1 as RealtimeWebhookGetOutput, k2 as RealtimeWebhookListInput, k3 as RealtimeWebhookListOutput, k4 as RealtimeWebhookSecretRotateInput, k5 as RealtimeWebhookSecretRotateOutput, k6 as RealtimeWebhookUpdateInput, k7 as RealtimeWebhookUpdateOutput } from '../client.gen-B78AtFRC.js';
|
|
2
2
|
|
|
3
3
|
declare const realtimeArchiveExportMutationOptions: (sdk: GeneratedClient) => {
|
|
4
4
|
mutationKey: string[];
|