@lessly/sdk-app 36.3.0 → 38.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/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-C6K8y7em.d.cts → client.gen-Bv2flLeO.d.cts} +2163 -248
- package/dist/{client.gen-C6K8y7em.d.ts → client.gen-Bv2flLeO.d.ts} +2163 -248
- 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 +875 -217
- 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 +875 -217
- 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 +156 -0
- package/dist/observe/index.cjs.map +1 -0
- package/dist/observe/index.d.cts +124 -0
- package/dist/observe/index.d.ts +124 -0
- package/dist/observe/index.js +125 -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.d.cts +1 -1
- package/dist/support/index.d.ts +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 +875 -217
- package/src/gen/brain/index.ts +1 -1
- package/src/gen/brain/queryOptions.gen.ts +0 -7
- package/src/gen/client.gen.ts +189 -17
- package/src/gen/manifest.gen.ts +1 -1
- package/src/gen/observe/index.ts +3 -0
- package/src/gen/observe/queryOptions.gen.ts +200 -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/types.gen.ts +2178 -248
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
// src/gen/observe/queryOptions.gen.ts
|
|
2
|
+
var observeAlertsCreateMutationOptions = (sdk) => ({
|
|
3
|
+
mutationKey: ["observe", "alerts", "create"],
|
|
4
|
+
mutationFn: (input) => sdk["observe"]["alerts"]["create"](input)
|
|
5
|
+
});
|
|
6
|
+
var observeAlertsDeleteMutationOptions = (sdk) => ({
|
|
7
|
+
mutationKey: ["observe", "alerts", "delete"],
|
|
8
|
+
mutationFn: (input) => sdk["observe"]["alerts"]["delete"](input)
|
|
9
|
+
});
|
|
10
|
+
var observeAlertsEventsListQueryOptions = (sdk, input) => ({
|
|
11
|
+
queryKey: ["observe", "alerts-events", "list", input],
|
|
12
|
+
queryFn: () => sdk["observe"]["alerts-events"]["list"](input)
|
|
13
|
+
});
|
|
14
|
+
var observeAlertsGetQueryOptions = (sdk, input) => ({
|
|
15
|
+
queryKey: ["observe", "alerts", "get", input],
|
|
16
|
+
queryFn: () => sdk["observe"]["alerts"]["get"](input)
|
|
17
|
+
});
|
|
18
|
+
var observeAlertsListQueryOptions = (sdk, input) => ({
|
|
19
|
+
queryKey: ["observe", "alerts", "list", input],
|
|
20
|
+
queryFn: () => sdk["observe"]["alerts"]["list"](input)
|
|
21
|
+
});
|
|
22
|
+
var observeAlertsUpdateMutationOptions = (sdk) => ({
|
|
23
|
+
mutationKey: ["observe", "alerts", "update"],
|
|
24
|
+
mutationFn: (input) => sdk["observe"]["alerts"]["update"](input)
|
|
25
|
+
});
|
|
26
|
+
var observeArtifactsDeleteMutationOptions = (sdk) => ({
|
|
27
|
+
mutationKey: ["observe", "artifacts", "delete"],
|
|
28
|
+
mutationFn: (input) => sdk["observe"]["artifacts"]["delete"](input)
|
|
29
|
+
});
|
|
30
|
+
var observeArtifactsListQueryOptions = (sdk, input) => ({
|
|
31
|
+
queryKey: ["observe", "artifacts", "list", input],
|
|
32
|
+
queryFn: () => sdk["observe"]["artifacts"]["list"](input)
|
|
33
|
+
});
|
|
34
|
+
var observeArtifactsResolveQueryOptions = (sdk, input) => ({
|
|
35
|
+
queryKey: ["observe", "artifacts", "resolve", input],
|
|
36
|
+
queryFn: () => sdk["observe"]["artifacts"]["resolve"](input)
|
|
37
|
+
});
|
|
38
|
+
var observeIssuesArchiveMutationOptions = (sdk) => ({
|
|
39
|
+
mutationKey: ["observe", "issues", "archive"],
|
|
40
|
+
mutationFn: (input) => sdk["observe"]["issues"]["archive"](input)
|
|
41
|
+
});
|
|
42
|
+
var observeIssuesAssignMutationOptions = (sdk) => ({
|
|
43
|
+
mutationKey: ["observe", "issues", "assign"],
|
|
44
|
+
mutationFn: (input) => sdk["observe"]["issues"]["assign"](input)
|
|
45
|
+
});
|
|
46
|
+
var observeIssuesGetQueryOptions = (sdk, input) => ({
|
|
47
|
+
queryKey: ["observe", "issues", "get", input],
|
|
48
|
+
queryFn: () => sdk["observe"]["issues"]["get"](input)
|
|
49
|
+
});
|
|
50
|
+
var observeIssuesListQueryOptions = (sdk, input) => ({
|
|
51
|
+
queryKey: ["observe", "issues", "list", input],
|
|
52
|
+
queryFn: () => sdk["observe"]["issues"]["list"](input)
|
|
53
|
+
});
|
|
54
|
+
var observeIssuesResolveMutationOptions = (sdk) => ({
|
|
55
|
+
mutationKey: ["observe", "issues", "resolve"],
|
|
56
|
+
mutationFn: (input) => sdk["observe"]["issues"]["resolve"](input)
|
|
57
|
+
});
|
|
58
|
+
var observeKeysCreateMutationOptions = (sdk) => ({
|
|
59
|
+
mutationKey: ["observe", "keys", "create"],
|
|
60
|
+
mutationFn: (input) => sdk["observe"]["keys"]["create"](input)
|
|
61
|
+
});
|
|
62
|
+
var observeKeysListQueryOptions = (sdk, input) => ({
|
|
63
|
+
queryKey: ["observe", "keys", "list", input],
|
|
64
|
+
queryFn: () => sdk["observe"]["keys"]["list"](input)
|
|
65
|
+
});
|
|
66
|
+
var observeKeysRevokeMutationOptions = (sdk) => ({
|
|
67
|
+
mutationKey: ["observe", "keys", "revoke"],
|
|
68
|
+
mutationFn: (input) => sdk["observe"]["keys"]["revoke"](input)
|
|
69
|
+
});
|
|
70
|
+
var observeLogsFacetsQueryOptions = (sdk, input) => ({
|
|
71
|
+
queryKey: ["observe", "logs", "facets", input],
|
|
72
|
+
queryFn: () => sdk["observe"]["logs"]["facets"](input)
|
|
73
|
+
});
|
|
74
|
+
var observeLogsSearchQueryOptions = (sdk, input) => ({
|
|
75
|
+
queryKey: ["observe", "logs", "search", input],
|
|
76
|
+
queryFn: () => sdk["observe"]["logs"]["search"](input)
|
|
77
|
+
});
|
|
78
|
+
var observeLogsTailQueryOptions = (sdk, input) => ({
|
|
79
|
+
queryKey: ["observe", "logs", "tail", input],
|
|
80
|
+
queryFn: () => sdk["observe"]["logs"]["tail"](input)
|
|
81
|
+
});
|
|
82
|
+
var observeTracesGetQueryOptions = (sdk, input) => ({
|
|
83
|
+
queryKey: ["observe", "traces", "get", input],
|
|
84
|
+
queryFn: () => sdk["observe"]["traces"]["get"](input)
|
|
85
|
+
});
|
|
86
|
+
var observeTracesSearchQueryOptions = (sdk, input) => ({
|
|
87
|
+
queryKey: ["observe", "traces", "search", input],
|
|
88
|
+
queryFn: () => sdk["observe"]["traces"]["search"](input)
|
|
89
|
+
});
|
|
90
|
+
var observeWebhooksCreateMutationOptions = (sdk) => ({
|
|
91
|
+
mutationKey: ["observe", "webhooks", "create"],
|
|
92
|
+
mutationFn: (input) => sdk["observe"]["webhooks"]["create"](input)
|
|
93
|
+
});
|
|
94
|
+
var observeWebhooksDeleteMutationOptions = (sdk) => ({
|
|
95
|
+
mutationKey: ["observe", "webhooks", "delete"],
|
|
96
|
+
mutationFn: (input) => sdk["observe"]["webhooks"]["delete"](input)
|
|
97
|
+
});
|
|
98
|
+
var observeWebhooksDeliveriesListQueryOptions = (sdk, input) => ({
|
|
99
|
+
queryKey: ["observe", "webhooks-deliveries", "list", input],
|
|
100
|
+
queryFn: () => sdk["observe"]["webhooks-deliveries"]["list"](input)
|
|
101
|
+
});
|
|
102
|
+
var observeWebhooksGetQueryOptions = (sdk, input) => ({
|
|
103
|
+
queryKey: ["observe", "webhooks", "get", input],
|
|
104
|
+
queryFn: () => sdk["observe"]["webhooks"]["get"](input)
|
|
105
|
+
});
|
|
106
|
+
var observeWebhooksListQueryOptions = (sdk, input) => ({
|
|
107
|
+
queryKey: ["observe", "webhooks", "list", input],
|
|
108
|
+
queryFn: () => sdk["observe"]["webhooks"]["list"](input)
|
|
109
|
+
});
|
|
110
|
+
var observeWebhooksRedeliverMutationOptions = (sdk) => ({
|
|
111
|
+
mutationKey: ["observe", "webhooks", "redeliver"],
|
|
112
|
+
mutationFn: (input) => sdk["observe"]["webhooks"]["redeliver"](input)
|
|
113
|
+
});
|
|
114
|
+
var observeWebhooksRotateSecretMutationOptions = (sdk) => ({
|
|
115
|
+
mutationKey: ["observe", "webhooks-rotate", "secret"],
|
|
116
|
+
mutationFn: (input) => sdk["observe"]["webhooks-rotate"]["secret"](input)
|
|
117
|
+
});
|
|
118
|
+
var observeWebhooksUpdateMutationOptions = (sdk) => ({
|
|
119
|
+
mutationKey: ["observe", "webhooks", "update"],
|
|
120
|
+
mutationFn: (input) => sdk["observe"]["webhooks"]["update"](input)
|
|
121
|
+
});
|
|
122
|
+
|
|
123
|
+
export { observeAlertsCreateMutationOptions, observeAlertsDeleteMutationOptions, observeAlertsEventsListQueryOptions, observeAlertsGetQueryOptions, observeAlertsListQueryOptions, observeAlertsUpdateMutationOptions, observeArtifactsDeleteMutationOptions, observeArtifactsListQueryOptions, observeArtifactsResolveQueryOptions, observeIssuesArchiveMutationOptions, observeIssuesAssignMutationOptions, observeIssuesGetQueryOptions, observeIssuesListQueryOptions, observeIssuesResolveMutationOptions, observeKeysCreateMutationOptions, observeKeysListQueryOptions, observeKeysRevokeMutationOptions, observeLogsFacetsQueryOptions, observeLogsSearchQueryOptions, observeLogsTailQueryOptions, observeTracesGetQueryOptions, observeTracesSearchQueryOptions, observeWebhooksCreateMutationOptions, observeWebhooksDeleteMutationOptions, observeWebhooksDeliveriesListQueryOptions, observeWebhooksGetQueryOptions, observeWebhooksListQueryOptions, observeWebhooksRedeliverMutationOptions, observeWebhooksRotateSecretMutationOptions, observeWebhooksUpdateMutationOptions };
|
|
124
|
+
//# sourceMappingURL=index.js.map
|
|
125
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/gen/observe/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 ObserveAlertsCreateInput,\n ObserveAlertsDeleteInput,\n ObserveAlertsEventsListInput,\n ObserveAlertsEventsListOutput,\n ObserveAlertsGetInput,\n ObserveAlertsGetOutput,\n ObserveAlertsListInput,\n ObserveAlertsListOutput,\n ObserveAlertsUpdateInput,\n ObserveArtifactsDeleteInput,\n ObserveArtifactsListInput,\n ObserveArtifactsListOutput,\n ObserveArtifactsResolveInput,\n ObserveArtifactsResolveOutput,\n ObserveIssuesArchiveInput,\n ObserveIssuesAssignInput,\n ObserveIssuesGetInput,\n ObserveIssuesGetOutput,\n ObserveIssuesListInput,\n ObserveIssuesListOutput,\n ObserveIssuesResolveInput,\n ObserveKeysCreateInput,\n ObserveKeysListInput,\n ObserveKeysListOutput,\n ObserveKeysRevokeInput,\n ObserveLogsFacetsInput,\n ObserveLogsFacetsOutput,\n ObserveLogsSearchInput,\n ObserveLogsSearchOutput,\n ObserveLogsTailInput,\n ObserveLogsTailOutput,\n ObserveTracesGetInput,\n ObserveTracesGetOutput,\n ObserveTracesSearchInput,\n ObserveTracesSearchOutput,\n ObserveWebhooksCreateInput,\n ObserveWebhooksDeleteInput,\n ObserveWebhooksDeliveriesListInput,\n ObserveWebhooksDeliveriesListOutput,\n ObserveWebhooksGetInput,\n ObserveWebhooksGetOutput,\n ObserveWebhooksListInput,\n ObserveWebhooksListOutput,\n ObserveWebhooksRedeliverInput,\n ObserveWebhooksRotateSecretInput,\n ObserveWebhooksUpdateInput,\n} from '../types.gen';\n\nexport const observeAlertsCreateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['observe', 'alerts', 'create'],\n mutationFn: (input: ObserveAlertsCreateInput) => sdk['observe']['alerts']['create'](input),\n});\n\nexport const observeAlertsDeleteMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['observe', 'alerts', 'delete'],\n mutationFn: (input: ObserveAlertsDeleteInput) => sdk['observe']['alerts']['delete'](input),\n});\n\nexport const observeAlertsEventsListQueryOptions = (sdk: GeneratedClient, input: ObserveAlertsEventsListInput) => ({\n queryKey: ['observe', 'alerts-events', 'list', input] as const,\n queryFn: () => sdk['observe']['alerts-events']['list'](input),\n});\n\nexport const observeAlertsGetQueryOptions = (sdk: GeneratedClient, input: ObserveAlertsGetInput) => ({\n queryKey: ['observe', 'alerts', 'get', input] as const,\n queryFn: () => sdk['observe']['alerts']['get'](input),\n});\n\nexport const observeAlertsListQueryOptions = (sdk: GeneratedClient, input: ObserveAlertsListInput) => ({\n queryKey: ['observe', 'alerts', 'list', input] as const,\n queryFn: () => sdk['observe']['alerts']['list'](input),\n});\n\nexport const observeAlertsUpdateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['observe', 'alerts', 'update'],\n mutationFn: (input: ObserveAlertsUpdateInput) => sdk['observe']['alerts']['update'](input),\n});\n\nexport const observeArtifactsDeleteMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['observe', 'artifacts', 'delete'],\n mutationFn: (input: ObserveArtifactsDeleteInput) => sdk['observe']['artifacts']['delete'](input),\n});\n\nexport const observeArtifactsListQueryOptions = (sdk: GeneratedClient, input: ObserveArtifactsListInput) => ({\n queryKey: ['observe', 'artifacts', 'list', input] as const,\n queryFn: () => sdk['observe']['artifacts']['list'](input),\n});\n\nexport const observeArtifactsResolveQueryOptions = (sdk: GeneratedClient, input: ObserveArtifactsResolveInput) => ({\n queryKey: ['observe', 'artifacts', 'resolve', input] as const,\n queryFn: () => sdk['observe']['artifacts']['resolve'](input),\n});\n\nexport const observeIssuesArchiveMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['observe', 'issues', 'archive'],\n mutationFn: (input: ObserveIssuesArchiveInput) => sdk['observe']['issues']['archive'](input),\n});\n\nexport const observeIssuesAssignMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['observe', 'issues', 'assign'],\n mutationFn: (input: ObserveIssuesAssignInput) => sdk['observe']['issues']['assign'](input),\n});\n\nexport const observeIssuesGetQueryOptions = (sdk: GeneratedClient, input: ObserveIssuesGetInput) => ({\n queryKey: ['observe', 'issues', 'get', input] as const,\n queryFn: () => sdk['observe']['issues']['get'](input),\n});\n\nexport const observeIssuesListQueryOptions = (sdk: GeneratedClient, input: ObserveIssuesListInput) => ({\n queryKey: ['observe', 'issues', 'list', input] as const,\n queryFn: () => sdk['observe']['issues']['list'](input),\n});\n\nexport const observeIssuesResolveMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['observe', 'issues', 'resolve'],\n mutationFn: (input: ObserveIssuesResolveInput) => sdk['observe']['issues']['resolve'](input),\n});\n\nexport const observeKeysCreateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['observe', 'keys', 'create'],\n mutationFn: (input: ObserveKeysCreateInput) => sdk['observe']['keys']['create'](input),\n});\n\nexport const observeKeysListQueryOptions = (sdk: GeneratedClient, input: ObserveKeysListInput) => ({\n queryKey: ['observe', 'keys', 'list', input] as const,\n queryFn: () => sdk['observe']['keys']['list'](input),\n});\n\nexport const observeKeysRevokeMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['observe', 'keys', 'revoke'],\n mutationFn: (input: ObserveKeysRevokeInput) => sdk['observe']['keys']['revoke'](input),\n});\n\nexport const observeLogsFacetsQueryOptions = (sdk: GeneratedClient, input: ObserveLogsFacetsInput) => ({\n queryKey: ['observe', 'logs', 'facets', input] as const,\n queryFn: () => sdk['observe']['logs']['facets'](input),\n});\n\nexport const observeLogsSearchQueryOptions = (sdk: GeneratedClient, input: ObserveLogsSearchInput) => ({\n queryKey: ['observe', 'logs', 'search', input] as const,\n queryFn: () => sdk['observe']['logs']['search'](input),\n});\n\nexport const observeLogsTailQueryOptions = (sdk: GeneratedClient, input: ObserveLogsTailInput) => ({\n queryKey: ['observe', 'logs', 'tail', input] as const,\n queryFn: () => sdk['observe']['logs']['tail'](input),\n});\n\nexport const observeTracesGetQueryOptions = (sdk: GeneratedClient, input: ObserveTracesGetInput) => ({\n queryKey: ['observe', 'traces', 'get', input] as const,\n queryFn: () => sdk['observe']['traces']['get'](input),\n});\n\nexport const observeTracesSearchQueryOptions = (sdk: GeneratedClient, input: ObserveTracesSearchInput) => ({\n queryKey: ['observe', 'traces', 'search', input] as const,\n queryFn: () => sdk['observe']['traces']['search'](input),\n});\n\nexport const observeWebhooksCreateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['observe', 'webhooks', 'create'],\n mutationFn: (input: ObserveWebhooksCreateInput) => sdk['observe']['webhooks']['create'](input),\n});\n\nexport const observeWebhooksDeleteMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['observe', 'webhooks', 'delete'],\n mutationFn: (input: ObserveWebhooksDeleteInput) => sdk['observe']['webhooks']['delete'](input),\n});\n\nexport const observeWebhooksDeliveriesListQueryOptions = (sdk: GeneratedClient, input: ObserveWebhooksDeliveriesListInput) => ({\n queryKey: ['observe', 'webhooks-deliveries', 'list', input] as const,\n queryFn: () => sdk['observe']['webhooks-deliveries']['list'](input),\n});\n\nexport const observeWebhooksGetQueryOptions = (sdk: GeneratedClient, input: ObserveWebhooksGetInput) => ({\n queryKey: ['observe', 'webhooks', 'get', input] as const,\n queryFn: () => sdk['observe']['webhooks']['get'](input),\n});\n\nexport const observeWebhooksListQueryOptions = (sdk: GeneratedClient, input: ObserveWebhooksListInput) => ({\n queryKey: ['observe', 'webhooks', 'list', input] as const,\n queryFn: () => sdk['observe']['webhooks']['list'](input),\n});\n\nexport const observeWebhooksRedeliverMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['observe', 'webhooks', 'redeliver'],\n mutationFn: (input: ObserveWebhooksRedeliverInput) => sdk['observe']['webhooks']['redeliver'](input),\n});\n\nexport const observeWebhooksRotateSecretMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['observe', 'webhooks-rotate', 'secret'],\n mutationFn: (input: ObserveWebhooksRotateSecretInput) => sdk['observe']['webhooks-rotate']['secret'](input),\n});\n\nexport const observeWebhooksUpdateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['observe', 'webhooks', 'update'],\n mutationFn: (input: ObserveWebhooksUpdateInput) => sdk['observe']['webhooks']['update'](input),\n});\n"]}
|
|
@@ -185,25 +185,17 @@ var organizationPermissionCatalogQueryOptions = (sdk, input) => ({
|
|
|
185
185
|
queryKey: ["organization", "permission", "catalog", input],
|
|
186
186
|
queryFn: () => sdk["organization"]["permission"]["catalog"](input)
|
|
187
187
|
});
|
|
188
|
-
var organizationProductAcceptInvitationMutationOptions = (sdk) => ({
|
|
189
|
-
mutationKey: ["organization", "product", "accept-invitation"],
|
|
190
|
-
mutationFn: (input) => sdk["organization"]["product"]["accept-invitation"](input)
|
|
191
|
-
});
|
|
192
188
|
var organizationProductCreateMutationOptions = (sdk) => ({
|
|
193
189
|
mutationKey: ["organization", "product", "create"],
|
|
194
190
|
mutationFn: (input) => sdk["organization"]["product"]["create"](input)
|
|
195
191
|
});
|
|
196
|
-
var organizationProductInviteMutationOptions = (sdk) => ({
|
|
197
|
-
mutationKey: ["organization", "product", "invite"],
|
|
198
|
-
mutationFn: (input) => sdk["organization"]["product"]["invite"](input)
|
|
199
|
-
});
|
|
200
192
|
var organizationProductListQueryOptions = (sdk, input) => ({
|
|
201
193
|
queryKey: ["organization", "product", "list", input],
|
|
202
194
|
queryFn: () => sdk["organization"]["product"]["list"](input)
|
|
203
195
|
});
|
|
204
|
-
var
|
|
205
|
-
queryKey: ["organization", "product", "list-
|
|
206
|
-
queryFn: () => sdk["organization"]["product"]["list-
|
|
196
|
+
var organizationProductListAccessQueryOptions = (sdk, input) => ({
|
|
197
|
+
queryKey: ["organization", "product", "list-access", input],
|
|
198
|
+
queryFn: () => sdk["organization"]["product"]["list-access"](input)
|
|
207
199
|
});
|
|
208
200
|
var organizationProductListMembersQueryOptions = (sdk, input) => ({
|
|
209
201
|
queryKey: ["organization", "product", "list-members", input],
|
|
@@ -213,14 +205,18 @@ var organizationProductListRolesQueryOptions = (sdk, input) => ({
|
|
|
213
205
|
queryKey: ["organization", "product", "list-roles", input],
|
|
214
206
|
queryFn: () => sdk["organization"]["product"]["list-roles"](input)
|
|
215
207
|
});
|
|
216
|
-
var
|
|
217
|
-
mutationKey: ["organization", "product", "revoke-
|
|
218
|
-
mutationFn: (input) => sdk["organization"]["product"]["revoke-
|
|
208
|
+
var organizationProductRevokeAccessMutationOptions = (sdk) => ({
|
|
209
|
+
mutationKey: ["organization", "product", "revoke-access"],
|
|
210
|
+
mutationFn: (input) => sdk["organization"]["product"]["revoke-access"](input)
|
|
219
211
|
});
|
|
220
212
|
var organizationProductSelectMutationOptions = (sdk) => ({
|
|
221
213
|
mutationKey: ["organization", "product", "select"],
|
|
222
214
|
mutationFn: (input) => sdk["organization"]["product"]["select"](input)
|
|
223
215
|
});
|
|
216
|
+
var organizationProductSetAccessMutationOptions = (sdk) => ({
|
|
217
|
+
mutationKey: ["organization", "product", "set-access"],
|
|
218
|
+
mutationFn: (input) => sdk["organization"]["product"]["set-access"](input)
|
|
219
|
+
});
|
|
224
220
|
var organizationProductUpdateMutationOptions = (sdk) => ({
|
|
225
221
|
mutationKey: ["organization", "product", "update"],
|
|
226
222
|
mutationFn: (input) => sdk["organization"]["product"]["update"](input)
|
|
@@ -273,6 +269,22 @@ var organizationSelectMutationOptions = (sdk) => ({
|
|
|
273
269
|
mutationKey: ["organization", "select"],
|
|
274
270
|
mutationFn: (input) => sdk["organization"]["select"](input)
|
|
275
271
|
});
|
|
272
|
+
var organizationSupportThreadCreateMutationOptions = (sdk) => ({
|
|
273
|
+
mutationKey: ["organization", "support-thread", "create"],
|
|
274
|
+
mutationFn: (input) => sdk["organization"]["support-thread"]["create"](input)
|
|
275
|
+
});
|
|
276
|
+
var organizationSupportThreadGetQueryOptions = (sdk, input) => ({
|
|
277
|
+
queryKey: ["organization", "support-thread", "get", input],
|
|
278
|
+
queryFn: () => sdk["organization"]["support-thread"]["get"](input)
|
|
279
|
+
});
|
|
280
|
+
var organizationSupportThreadReplyMutationOptions = (sdk) => ({
|
|
281
|
+
mutationKey: ["organization", "support-thread", "reply"],
|
|
282
|
+
mutationFn: (input) => sdk["organization"]["support-thread"]["reply"](input)
|
|
283
|
+
});
|
|
284
|
+
var organizationSupportThreadsListQueryOptions = (sdk, input) => ({
|
|
285
|
+
queryKey: ["organization", "support-threads", "list", input],
|
|
286
|
+
queryFn: () => sdk["organization"]["support-threads"]["list"](input)
|
|
287
|
+
});
|
|
276
288
|
|
|
277
289
|
exports.organizationAuthMeQueryOptions = organizationAuthMeQueryOptions;
|
|
278
290
|
exports.organizationBillingBudgetsGetQueryOptions = organizationBillingBudgetsGetQueryOptions;
|
|
@@ -320,15 +332,14 @@ exports.organizationMemberShareProductMutationOptions = organizationMemberShareP
|
|
|
320
332
|
exports.organizationMemberUnshareProductMutationOptions = organizationMemberUnshareProductMutationOptions;
|
|
321
333
|
exports.organizationMembersAssignRoleMutationOptions = organizationMembersAssignRoleMutationOptions;
|
|
322
334
|
exports.organizationPermissionCatalogQueryOptions = organizationPermissionCatalogQueryOptions;
|
|
323
|
-
exports.organizationProductAcceptInvitationMutationOptions = organizationProductAcceptInvitationMutationOptions;
|
|
324
335
|
exports.organizationProductCreateMutationOptions = organizationProductCreateMutationOptions;
|
|
325
|
-
exports.
|
|
326
|
-
exports.organizationProductListInvitationsQueryOptions = organizationProductListInvitationsQueryOptions;
|
|
336
|
+
exports.organizationProductListAccessQueryOptions = organizationProductListAccessQueryOptions;
|
|
327
337
|
exports.organizationProductListMembersQueryOptions = organizationProductListMembersQueryOptions;
|
|
328
338
|
exports.organizationProductListQueryOptions = organizationProductListQueryOptions;
|
|
329
339
|
exports.organizationProductListRolesQueryOptions = organizationProductListRolesQueryOptions;
|
|
330
|
-
exports.
|
|
340
|
+
exports.organizationProductRevokeAccessMutationOptions = organizationProductRevokeAccessMutationOptions;
|
|
331
341
|
exports.organizationProductSelectMutationOptions = organizationProductSelectMutationOptions;
|
|
342
|
+
exports.organizationProductSetAccessMutationOptions = organizationProductSetAccessMutationOptions;
|
|
332
343
|
exports.organizationProductUpdateMutationOptions = organizationProductUpdateMutationOptions;
|
|
333
344
|
exports.organizationPublicKeysCreateMutationOptions = organizationPublicKeysCreateMutationOptions;
|
|
334
345
|
exports.organizationPublicKeysListQueryOptions = organizationPublicKeysListQueryOptions;
|
|
@@ -342,5 +353,9 @@ exports.organizationRolesListQueryOptions = organizationRolesListQueryOptions;
|
|
|
342
353
|
exports.organizationRolesUpdateMutationOptions = organizationRolesUpdateMutationOptions;
|
|
343
354
|
exports.organizationSecurityMfaEnableMutationOptions = organizationSecurityMfaEnableMutationOptions;
|
|
344
355
|
exports.organizationSelectMutationOptions = organizationSelectMutationOptions;
|
|
356
|
+
exports.organizationSupportThreadCreateMutationOptions = organizationSupportThreadCreateMutationOptions;
|
|
357
|
+
exports.organizationSupportThreadGetQueryOptions = organizationSupportThreadGetQueryOptions;
|
|
358
|
+
exports.organizationSupportThreadReplyMutationOptions = organizationSupportThreadReplyMutationOptions;
|
|
359
|
+
exports.organizationSupportThreadsListQueryOptions = organizationSupportThreadsListQueryOptions;
|
|
345
360
|
//# sourceMappingURL=index.cjs.map
|
|
346
361
|
//# sourceMappingURL=index.cjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/gen/organization/queryOptions.gen.ts"],"names":[],"mappings":"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","file":"index.cjs","sourcesContent":["// AUTOGENERATED by scripts/generate.ts — do not edit.\nimport type { GeneratedClient } from '../client.gen';\nimport type {\n OrganizationAuthMeInput,\n OrganizationAuthMeOutput,\n OrganizationBillingBudgetsGetInput,\n OrganizationBillingBudgetsGetOutput,\n OrganizationBillingBudgetsSetInput,\n OrganizationBillingCapsClearInput,\n OrganizationBillingCapsSetInput,\n OrganizationBindingsListInput,\n OrganizationBindingsListOutput,\n OrganizationClickupInstallInput,\n OrganizationClickupListInstallationsInput,\n OrganizationClickupListInstallationsOutput,\n OrganizationCloudflareInstallInput,\n OrganizationConnectorsApproveRequestInput,\n OrganizationConnectorsAttachInput,\n OrganizationConnectorsDeleteInput,\n OrganizationConnectorsDenyRequestInput,\n OrganizationConnectorsDetachInput,\n OrganizationConnectorsListAttachmentsInput,\n OrganizationConnectorsListAttachmentsOutput,\n OrganizationConnectorsListAvailableInput,\n OrganizationConnectorsListAvailableOutput,\n OrganizationConnectorsListInput,\n OrganizationConnectorsListOrgInput,\n OrganizationConnectorsListOrgOutput,\n OrganizationConnectorsListOutput,\n OrganizationConnectorsListRequestsInput,\n OrganizationConnectorsListRequestsOutput,\n OrganizationConnectorsRemoveInput,\n OrganizationConnectorsRequestInput,\n OrganizationCreateInput,\n OrganizationDomainsAddInput,\n OrganizationDomainsGetInput,\n OrganizationDomainsGetOutput,\n OrganizationDomainsListInput,\n OrganizationDomainsListOutput,\n OrganizationDomainsRemoveInput,\n OrganizationDomainsSetModeInput,\n OrganizationExtensionsListInstalledInput,\n OrganizationExtensionsListInstalledOutput,\n OrganizationFeedbackSubmitInput,\n OrganizationGdriveInstallInput,\n OrganizationGithubInstallInput,\n OrganizationGithubListInstallationsInput,\n OrganizationGithubListInstallationsOutput,\n OrganizationGoogleadsInstallInput,\n OrganizationListInput,\n OrganizationListOutput,\n OrganizationMemberAcceptInviteInput,\n OrganizationMemberInviteInput,\n OrganizationMemberListInput,\n OrganizationMemberListInvitationsInput,\n OrganizationMemberListInvitationsOutput,\n OrganizationMemberListOutput,\n OrganizationMemberListProductAccessInput,\n OrganizationMemberListProductAccessOutput,\n OrganizationMemberRemoveInput,\n OrganizationMemberRevokeInvitationInput,\n OrganizationMemberSetRoleInput,\n OrganizationMemberShareProductInput,\n OrganizationMemberUnshareProductInput,\n OrganizationMembersAssignRoleInput,\n OrganizationPermissionCatalogInput,\n OrganizationPermissionCatalogOutput,\n 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.cjs","sourcesContent":["// AUTOGENERATED by scripts/generate.ts — do not edit.\nimport type { GeneratedClient } from '../client.gen';\nimport type {\n OrganizationAuthMeInput,\n OrganizationAuthMeOutput,\n OrganizationBillingBudgetsGetInput,\n OrganizationBillingBudgetsGetOutput,\n OrganizationBillingBudgetsSetInput,\n OrganizationBillingCapsClearInput,\n OrganizationBillingCapsSetInput,\n OrganizationBindingsListInput,\n OrganizationBindingsListOutput,\n OrganizationClickupInstallInput,\n OrganizationClickupListInstallationsInput,\n OrganizationClickupListInstallationsOutput,\n OrganizationCloudflareInstallInput,\n OrganizationConnectorsApproveRequestInput,\n OrganizationConnectorsAttachInput,\n OrganizationConnectorsDeleteInput,\n OrganizationConnectorsDenyRequestInput,\n OrganizationConnectorsDetachInput,\n OrganizationConnectorsListAttachmentsInput,\n OrganizationConnectorsListAttachmentsOutput,\n OrganizationConnectorsListAvailableInput,\n OrganizationConnectorsListAvailableOutput,\n OrganizationConnectorsListInput,\n OrganizationConnectorsListOrgInput,\n OrganizationConnectorsListOrgOutput,\n OrganizationConnectorsListOutput,\n OrganizationConnectorsListRequestsInput,\n OrganizationConnectorsListRequestsOutput,\n OrganizationConnectorsRemoveInput,\n OrganizationConnectorsRequestInput,\n OrganizationCreateInput,\n OrganizationDomainsAddInput,\n OrganizationDomainsGetInput,\n OrganizationDomainsGetOutput,\n OrganizationDomainsListInput,\n OrganizationDomainsListOutput,\n OrganizationDomainsRemoveInput,\n OrganizationDomainsSetModeInput,\n OrganizationExtensionsListInstalledInput,\n OrganizationExtensionsListInstalledOutput,\n OrganizationFeedbackSubmitInput,\n OrganizationGdriveInstallInput,\n OrganizationGithubInstallInput,\n OrganizationGithubListInstallationsInput,\n OrganizationGithubListInstallationsOutput,\n OrganizationGoogleadsInstallInput,\n OrganizationListInput,\n OrganizationListOutput,\n OrganizationMemberAcceptInviteInput,\n OrganizationMemberInviteInput,\n OrganizationMemberListInput,\n OrganizationMemberListInvitationsInput,\n OrganizationMemberListInvitationsOutput,\n OrganizationMemberListOutput,\n OrganizationMemberListProductAccessInput,\n OrganizationMemberListProductAccessOutput,\n OrganizationMemberRemoveInput,\n OrganizationMemberRevokeInvitationInput,\n OrganizationMemberSetRoleInput,\n OrganizationMemberShareProductInput,\n OrganizationMemberUnshareProductInput,\n OrganizationMembersAssignRoleInput,\n OrganizationPermissionCatalogInput,\n OrganizationPermissionCatalogOutput,\n OrganizationProductCreateInput,\n OrganizationProductListAccessInput,\n OrganizationProductListAccessOutput,\n OrganizationProductListInput,\n OrganizationProductListMembersInput,\n OrganizationProductListMembersOutput,\n OrganizationProductListOutput,\n OrganizationProductListRolesInput,\n OrganizationProductListRolesOutput,\n OrganizationProductRevokeAccessInput,\n OrganizationProductSelectInput,\n OrganizationProductSetAccessInput,\n OrganizationProductUpdateInput,\n OrganizationPublicKeysCreateInput,\n OrganizationPublicKeysListInput,\n OrganizationPublicKeysListOutput,\n OrganizationPublicKeysRevokeInput,\n OrganizationPublicKeysUpdateScopeInput,\n OrganizationPublicRoutesListInput,\n OrganizationPublicRoutesListOutput,\n OrganizationRolesCreateInput,\n OrganizationRolesDeleteInput,\n OrganizationRolesGetInput,\n OrganizationRolesGetOutput,\n OrganizationRolesListInput,\n OrganizationRolesListOutput,\n OrganizationRolesUpdateInput,\n OrganizationSecurityMfaEnableInput,\n OrganizationSelectInput,\n OrganizationSupportThreadCreateInput,\n OrganizationSupportThreadGetInput,\n OrganizationSupportThreadGetOutput,\n OrganizationSupportThreadReplyInput,\n OrganizationSupportThreadsListInput,\n OrganizationSupportThreadsListOutput,\n} from '../types.gen';\n\nexport const organizationAuthMeQueryOptions = (sdk: GeneratedClient, input: OrganizationAuthMeInput) => ({\n queryKey: ['organization', 'auth', 'me', input] as const,\n queryFn: () => sdk['organization']['auth']['me'](input),\n});\n\nexport const organizationBillingBudgetsGetQueryOptions = (sdk: GeneratedClient, input: OrganizationBillingBudgetsGetInput) => ({\n queryKey: ['organization', 'billing-budgets', 'get', input] as const,\n queryFn: () => sdk['organization']['billing-budgets']['get'](input),\n});\n\nexport const organizationBillingBudgetsSetMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'billing-budgets', 'set'],\n mutationFn: (input: OrganizationBillingBudgetsSetInput) => sdk['organization']['billing-budgets']['set'](input),\n});\n\nexport const organizationBillingCapsClearMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'billing-caps', 'clear'],\n mutationFn: (input: OrganizationBillingCapsClearInput) => sdk['organization']['billing-caps']['clear'](input),\n});\n\nexport const organizationBillingCapsSetMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'billing-caps', 'set'],\n mutationFn: (input: OrganizationBillingCapsSetInput) => sdk['organization']['billing-caps']['set'](input),\n});\n\nexport const organizationBindingsListQueryOptions = (sdk: GeneratedClient, input: OrganizationBindingsListInput) => ({\n queryKey: ['organization', 'bindings', 'list', input] as const,\n queryFn: () => sdk['organization']['bindings']['list'](input),\n});\n\nexport const organizationClickupInstallMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'clickup', 'install'],\n mutationFn: (input: OrganizationClickupInstallInput) => sdk['organization']['clickup']['install'](input),\n});\n\nexport const organizationClickupListInstallationsQueryOptions = (sdk: GeneratedClient, input: OrganizationClickupListInstallationsInput) => ({\n queryKey: ['organization', 'clickup', 'list-installations', input] as const,\n queryFn: () => sdk['organization']['clickup']['list-installations'](input),\n});\n\nexport const organizationCloudflareInstallMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'cloudflare', 'install'],\n mutationFn: (input: OrganizationCloudflareInstallInput) => sdk['organization']['cloudflare']['install'](input),\n});\n\nexport const organizationConnectorsApproveRequestMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'connectors', 'approve-request'],\n mutationFn: (input: OrganizationConnectorsApproveRequestInput) => sdk['organization']['connectors']['approve-request'](input),\n});\n\nexport const organizationConnectorsAttachMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'connectors', 'attach'],\n mutationFn: (input: OrganizationConnectorsAttachInput) => sdk['organization']['connectors']['attach'](input),\n});\n\nexport const organizationConnectorsDeleteMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'connectors', 'delete'],\n mutationFn: (input: OrganizationConnectorsDeleteInput) => sdk['organization']['connectors']['delete'](input),\n});\n\nexport const organizationConnectorsDenyRequestMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'connectors', 'deny-request'],\n mutationFn: (input: OrganizationConnectorsDenyRequestInput) => sdk['organization']['connectors']['deny-request'](input),\n});\n\nexport const organizationConnectorsDetachMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'connectors', 'detach'],\n mutationFn: (input: OrganizationConnectorsDetachInput) => sdk['organization']['connectors']['detach'](input),\n});\n\nexport const organizationConnectorsListQueryOptions = (sdk: GeneratedClient, input: OrganizationConnectorsListInput) => ({\n queryKey: ['organization', 'connectors', 'list', input] as const,\n queryFn: () => sdk['organization']['connectors']['list'](input),\n});\n\nexport const organizationConnectorsListAttachmentsQueryOptions = (sdk: GeneratedClient, input: OrganizationConnectorsListAttachmentsInput) => ({\n queryKey: ['organization', 'connectors', 'list-attachments', input] as const,\n queryFn: () => sdk['organization']['connectors']['list-attachments'](input),\n});\n\nexport const organizationConnectorsListAvailableQueryOptions = (sdk: GeneratedClient, input: OrganizationConnectorsListAvailableInput) => ({\n queryKey: ['organization', 'connectors', 'list-available', input] as const,\n queryFn: () => sdk['organization']['connectors']['list-available'](input),\n});\n\nexport const organizationConnectorsListOrgQueryOptions = (sdk: GeneratedClient, input: OrganizationConnectorsListOrgInput) => ({\n queryKey: ['organization', 'connectors', 'list-org', input] as const,\n queryFn: () => sdk['organization']['connectors']['list-org'](input),\n});\n\nexport const organizationConnectorsListRequestsQueryOptions = (sdk: GeneratedClient, input: OrganizationConnectorsListRequestsInput) => ({\n queryKey: ['organization', 'connectors', 'list-requests', input] as const,\n queryFn: () => sdk['organization']['connectors']['list-requests'](input),\n});\n\nexport const organizationConnectorsRemoveMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'connectors', 'remove'],\n mutationFn: (input: OrganizationConnectorsRemoveInput) => sdk['organization']['connectors']['remove'](input),\n});\n\nexport const organizationConnectorsRequestMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'connectors', 'request'],\n mutationFn: (input: OrganizationConnectorsRequestInput) => sdk['organization']['connectors']['request'](input),\n});\n\nexport const organizationCreateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'create'],\n mutationFn: (input: OrganizationCreateInput) => sdk['organization']['create'](input),\n});\n\nexport const organizationDomainsAddMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'domains', 'add'],\n mutationFn: (input: OrganizationDomainsAddInput) => sdk['organization']['domains']['add'](input),\n});\n\nexport const organizationDomainsGetQueryOptions = (sdk: GeneratedClient, input: OrganizationDomainsGetInput) => ({\n queryKey: ['organization', 'domains', 'get', input] as const,\n queryFn: () => sdk['organization']['domains']['get'](input),\n});\n\nexport const organizationDomainsListQueryOptions = (sdk: GeneratedClient, input: OrganizationDomainsListInput) => ({\n queryKey: ['organization', 'domains', 'list', input] as const,\n queryFn: () => sdk['organization']['domains']['list'](input),\n});\n\nexport const organizationDomainsRemoveMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'domains', 'remove'],\n mutationFn: (input: OrganizationDomainsRemoveInput) => sdk['organization']['domains']['remove'](input),\n});\n\nexport const organizationDomainsSetModeMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'domains', 'set-mode'],\n mutationFn: (input: OrganizationDomainsSetModeInput) => sdk['organization']['domains']['set-mode'](input),\n});\n\nexport const organizationExtensionsListInstalledQueryOptions = (sdk: GeneratedClient, input: OrganizationExtensionsListInstalledInput) => ({\n queryKey: ['organization', 'extensions', 'list-installed', input] as const,\n queryFn: () => sdk['organization']['extensions']['list-installed'](input),\n});\n\nexport const organizationFeedbackSubmitMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'feedback', 'submit'],\n mutationFn: (input: OrganizationFeedbackSubmitInput) => sdk['organization']['feedback']['submit'](input),\n});\n\nexport const organizationGdriveInstallMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'gdrive', 'install'],\n mutationFn: (input: OrganizationGdriveInstallInput) => sdk['organization']['gdrive']['install'](input),\n});\n\nexport const organizationGithubInstallMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'github', 'install'],\n mutationFn: (input: OrganizationGithubInstallInput) => sdk['organization']['github']['install'](input),\n});\n\nexport const organizationGithubListInstallationsQueryOptions = (sdk: GeneratedClient, input: OrganizationGithubListInstallationsInput) => ({\n queryKey: ['organization', 'github', 'list-installations', input] as const,\n queryFn: () => sdk['organization']['github']['list-installations'](input),\n});\n\nexport const organizationGoogleadsInstallMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'googleads', 'install'],\n mutationFn: (input: OrganizationGoogleadsInstallInput) => sdk['organization']['googleads']['install'](input),\n});\n\nexport const organizationListQueryOptions = (sdk: GeneratedClient, input: OrganizationListInput) => ({\n queryKey: ['organization', 'list', input] as const,\n queryFn: () => sdk['organization']['list'](input),\n});\n\nexport const organizationMemberAcceptInviteMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'member', 'accept-invite'],\n mutationFn: (input: OrganizationMemberAcceptInviteInput) => sdk['organization']['member']['accept-invite'](input),\n});\n\nexport const organizationMemberInviteMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'member', 'invite'],\n mutationFn: (input: OrganizationMemberInviteInput) => sdk['organization']['member']['invite'](input),\n});\n\nexport const organizationMemberListQueryOptions = (sdk: GeneratedClient, input: OrganizationMemberListInput) => ({\n queryKey: ['organization', 'member', 'list', input] as const,\n queryFn: () => sdk['organization']['member']['list'](input),\n});\n\nexport const organizationMemberListInvitationsQueryOptions = (sdk: GeneratedClient, input: OrganizationMemberListInvitationsInput) => ({\n queryKey: ['organization', 'member', 'list-invitations', input] as const,\n queryFn: () => sdk['organization']['member']['list-invitations'](input),\n});\n\nexport const organizationMemberListProductAccessQueryOptions = (sdk: GeneratedClient, input: OrganizationMemberListProductAccessInput) => ({\n queryKey: ['organization', 'member', 'list-product-access', input] as const,\n queryFn: () => sdk['organization']['member']['list-product-access'](input),\n});\n\nexport const organizationMemberRemoveMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'member', 'remove'],\n mutationFn: (input: OrganizationMemberRemoveInput) => sdk['organization']['member']['remove'](input),\n});\n\nexport const organizationMemberRevokeInvitationMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'member', 'revoke-invitation'],\n mutationFn: (input: OrganizationMemberRevokeInvitationInput) => sdk['organization']['member']['revoke-invitation'](input),\n});\n\nexport const organizationMemberSetRoleMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'member', 'set-role'],\n mutationFn: (input: OrganizationMemberSetRoleInput) => sdk['organization']['member']['set-role'](input),\n});\n\nexport const organizationMemberShareProductMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'member', 'share-product'],\n mutationFn: (input: OrganizationMemberShareProductInput) => sdk['organization']['member']['share-product'](input),\n});\n\nexport const organizationMemberUnshareProductMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'member', 'unshare-product'],\n mutationFn: (input: OrganizationMemberUnshareProductInput) => sdk['organization']['member']['unshare-product'](input),\n});\n\nexport const organizationMembersAssignRoleMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'members', 'assign-role'],\n mutationFn: (input: OrganizationMembersAssignRoleInput) => sdk['organization']['members']['assign-role'](input),\n});\n\nexport const organizationPermissionCatalogQueryOptions = (sdk: GeneratedClient, input: OrganizationPermissionCatalogInput) => ({\n queryKey: ['organization', 'permission', 'catalog', input] as const,\n queryFn: () => sdk['organization']['permission']['catalog'](input),\n});\n\nexport const organizationProductCreateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'product', 'create'],\n mutationFn: (input: OrganizationProductCreateInput) => sdk['organization']['product']['create'](input),\n});\n\nexport const organizationProductListQueryOptions = (sdk: GeneratedClient, input: OrganizationProductListInput) => ({\n queryKey: ['organization', 'product', 'list', input] as const,\n queryFn: () => sdk['organization']['product']['list'](input),\n});\n\nexport const organizationProductListAccessQueryOptions = (sdk: GeneratedClient, input: OrganizationProductListAccessInput) => ({\n queryKey: ['organization', 'product', 'list-access', input] as const,\n queryFn: () => sdk['organization']['product']['list-access'](input),\n});\n\nexport const organizationProductListMembersQueryOptions = (sdk: GeneratedClient, input: OrganizationProductListMembersInput) => ({\n queryKey: ['organization', 'product', 'list-members', input] as const,\n queryFn: () => sdk['organization']['product']['list-members'](input),\n});\n\nexport const organizationProductListRolesQueryOptions = (sdk: GeneratedClient, input: OrganizationProductListRolesInput) => ({\n queryKey: ['organization', 'product', 'list-roles', input] as const,\n queryFn: () => sdk['organization']['product']['list-roles'](input),\n});\n\nexport const organizationProductRevokeAccessMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'product', 'revoke-access'],\n mutationFn: (input: OrganizationProductRevokeAccessInput) => sdk['organization']['product']['revoke-access'](input),\n});\n\nexport const organizationProductSelectMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'product', 'select'],\n mutationFn: (input: OrganizationProductSelectInput) => sdk['organization']['product']['select'](input),\n});\n\nexport const organizationProductSetAccessMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'product', 'set-access'],\n mutationFn: (input: OrganizationProductSetAccessInput) => sdk['organization']['product']['set-access'](input),\n});\n\nexport const organizationProductUpdateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'product', 'update'],\n mutationFn: (input: OrganizationProductUpdateInput) => sdk['organization']['product']['update'](input),\n});\n\nexport const organizationPublicKeysCreateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'public-keys', 'create'],\n mutationFn: (input: OrganizationPublicKeysCreateInput) => sdk['organization']['public-keys']['create'](input),\n});\n\nexport const organizationPublicKeysListQueryOptions = (sdk: GeneratedClient, input: OrganizationPublicKeysListInput) => ({\n queryKey: ['organization', 'public-keys', 'list', input] as const,\n queryFn: () => sdk['organization']['public-keys']['list'](input),\n});\n\nexport const organizationPublicKeysRevokeMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'public-keys', 'revoke'],\n mutationFn: (input: OrganizationPublicKeysRevokeInput) => sdk['organization']['public-keys']['revoke'](input),\n});\n\nexport const organizationPublicKeysUpdateScopeMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'public-keys', 'update-scope'],\n mutationFn: (input: OrganizationPublicKeysUpdateScopeInput) => sdk['organization']['public-keys']['update-scope'](input),\n});\n\nexport const organizationPublicRoutesListQueryOptions = (sdk: GeneratedClient, input: OrganizationPublicRoutesListInput) => ({\n queryKey: ['organization', 'public-routes', 'list', input] as const,\n queryFn: () => sdk['organization']['public-routes']['list'](input),\n});\n\nexport const organizationRolesCreateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'roles', 'create'],\n mutationFn: (input: OrganizationRolesCreateInput) => sdk['organization']['roles']['create'](input),\n});\n\nexport const organizationRolesDeleteMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'roles', 'delete'],\n mutationFn: (input: OrganizationRolesDeleteInput) => sdk['organization']['roles']['delete'](input),\n});\n\nexport const organizationRolesGetQueryOptions = (sdk: GeneratedClient, input: OrganizationRolesGetInput) => ({\n queryKey: ['organization', 'roles', 'get', input] as const,\n queryFn: () => sdk['organization']['roles']['get'](input),\n});\n\nexport const organizationRolesListQueryOptions = (sdk: GeneratedClient, input: OrganizationRolesListInput) => ({\n queryKey: ['organization', 'roles', 'list', input] as const,\n queryFn: () => sdk['organization']['roles']['list'](input),\n});\n\nexport const organizationRolesUpdateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'roles', 'update'],\n mutationFn: (input: OrganizationRolesUpdateInput) => sdk['organization']['roles']['update'](input),\n});\n\nexport const organizationSecurityMfaEnableMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'security-mfa', 'enable'],\n mutationFn: (input: OrganizationSecurityMfaEnableInput) => sdk['organization']['security-mfa']['enable'](input),\n});\n\nexport const organizationSelectMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'select'],\n mutationFn: (input: OrganizationSelectInput) => sdk['organization']['select'](input),\n});\n\nexport const organizationSupportThreadCreateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'support-thread', 'create'],\n mutationFn: (input: OrganizationSupportThreadCreateInput) => sdk['organization']['support-thread']['create'](input),\n});\n\nexport const organizationSupportThreadGetQueryOptions = (sdk: GeneratedClient, input: OrganizationSupportThreadGetInput) => ({\n queryKey: ['organization', 'support-thread', 'get', input] as const,\n queryFn: () => sdk['organization']['support-thread']['get'](input),\n});\n\nexport const organizationSupportThreadReplyMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['organization', 'support-thread', 'reply'],\n mutationFn: (input: OrganizationSupportThreadReplyInput) => sdk['organization']['support-thread']['reply'](input),\n});\n\nexport const organizationSupportThreadsListQueryOptions = (sdk: GeneratedClient, input: OrganizationSupportThreadsListInput) => ({\n queryKey: ['organization', 'support-threads', 'list', input] as const,\n queryFn: () => sdk['organization']['support-threads']['list'](input),\n});\n"]}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { G as GeneratedClient,
|
|
1
|
+
import { G as GeneratedClient, gQ as OrganizationAuthMeInput, gR as OrganizationAuthMeOutput, gS as OrganizationBillingBudgetsGetInput, gT as OrganizationBillingBudgetsGetOutput, gU as OrganizationBillingBudgetsSetInput, gV as OrganizationBillingBudgetsSetOutput, gW as OrganizationBillingCapsClearInput, gX as OrganizationBillingCapsClearOutput, gY as OrganizationBillingCapsSetInput, gZ as OrganizationBillingCapsSetOutput, g_ as OrganizationBindingsListInput, g$ as OrganizationBindingsListOutput, h0 as OrganizationClickupInstallInput, h1 as OrganizationClickupInstallOutput, h2 as OrganizationClickupListInstallationsInput, h3 as OrganizationClickupListInstallationsOutput, h4 as OrganizationCloudflareInstallInput, h5 as OrganizationCloudflareInstallOutput, h6 as OrganizationConnectorsApproveRequestInput, h7 as OrganizationConnectorsApproveRequestOutput, h8 as OrganizationConnectorsAttachInput, h9 as OrganizationConnectorsAttachOutput, ha as OrganizationConnectorsDeleteInput, hb as OrganizationConnectorsDeleteOutput, hc as OrganizationConnectorsDenyRequestInput, hd as OrganizationConnectorsDenyRequestOutput, he as OrganizationConnectorsDetachInput, hf as OrganizationConnectorsDetachOutput, hg as OrganizationConnectorsListAttachmentsInput, hh as OrganizationConnectorsListAttachmentsOutput, hi as OrganizationConnectorsListAvailableInput, hj as OrganizationConnectorsListAvailableOutput, hk as OrganizationConnectorsListOrgInput, hl as OrganizationConnectorsListOrgOutput, hm as OrganizationConnectorsListInput, hn as OrganizationConnectorsListOutput, ho as OrganizationConnectorsListRequestsInput, hp as OrganizationConnectorsListRequestsOutput, hq as OrganizationConnectorsRemoveInput, hr as OrganizationConnectorsRemoveOutput, hs as OrganizationConnectorsRequestInput, ht as OrganizationConnectorsRequestOutput, hu as OrganizationCreateInput, hv as OrganizationCreateOutput, hw as OrganizationDomainsAddInput, hx as OrganizationDomainsAddOutput, hy as OrganizationDomainsGetInput, hz as OrganizationDomainsGetOutput, hA as OrganizationDomainsListInput, hB as OrganizationDomainsListOutput, hC as OrganizationDomainsRemoveInput, hD as OrganizationDomainsRemoveOutput, hE as OrganizationDomainsSetModeInput, hF as OrganizationDomainsSetModeOutput, hG as OrganizationExtensionsListInstalledInput, hH as OrganizationExtensionsListInstalledOutput, hI as OrganizationFeedbackSubmitInput, hJ as OrganizationFeedbackSubmitOutput, hK as OrganizationGdriveInstallInput, hL as OrganizationGdriveInstallOutput, hM as OrganizationGithubInstallInput, hN as OrganizationGithubInstallOutput, hO as OrganizationGithubListInstallationsInput, hP as OrganizationGithubListInstallationsOutput, hQ as OrganizationGoogleadsInstallInput, hR as OrganizationGoogleadsInstallOutput, hS as OrganizationListInput, hT as OrganizationListOutput, hU as OrganizationMemberAcceptInviteInput, hV as OrganizationMemberAcceptInviteOutput, hW as OrganizationMemberInviteInput, hX as OrganizationMemberInviteOutput, hY as OrganizationMemberListInvitationsInput, hZ as OrganizationMemberListInvitationsOutput, h_ as OrganizationMemberListProductAccessInput, h$ as OrganizationMemberListProductAccessOutput, i0 as OrganizationMemberListInput, i1 as OrganizationMemberListOutput, i2 as OrganizationMemberRemoveInput, i3 as OrganizationMemberRemoveOutput, i4 as OrganizationMemberRevokeInvitationInput, i5 as OrganizationMemberRevokeInvitationOutput, i6 as OrganizationMemberSetRoleInput, i7 as OrganizationMemberSetRoleOutput, i8 as OrganizationMemberShareProductInput, i9 as OrganizationMemberShareProductOutput, ia as OrganizationMemberUnshareProductInput, ib as OrganizationMemberUnshareProductOutput, ic as OrganizationMembersAssignRoleInput, id as OrganizationMembersAssignRoleOutput, ie as OrganizationPermissionCatalogInput, ig as OrganizationPermissionCatalogOutput, ih as OrganizationProductCreateInput, ii as OrganizationProductCreateOutput, ij as OrganizationProductListAccessInput, ik as OrganizationProductListAccessOutput, il as OrganizationProductListMembersInput, im as OrganizationProductListMembersOutput, io as OrganizationProductListInput, ip as OrganizationProductListOutput, iq as OrganizationProductListRolesInput, ir as OrganizationProductListRolesOutput, is as OrganizationProductRevokeAccessInput, it as OrganizationProductRevokeAccessOutput, iu as OrganizationProductSelectInput, iv as OrganizationProductSelectOutput, iw as OrganizationProductSetAccessInput, ix as OrganizationProductSetAccessOutput, iy as OrganizationProductUpdateInput, iz as OrganizationProductUpdateOutput, iA as OrganizationPublicKeysCreateInput, iB as OrganizationPublicKeysCreateOutput, iC as OrganizationPublicKeysListInput, iD as OrganizationPublicKeysListOutput, iE as OrganizationPublicKeysRevokeInput, iF as OrganizationPublicKeysRevokeOutput, iG as OrganizationPublicKeysUpdateScopeInput, iH as OrganizationPublicKeysUpdateScopeOutput, iI as OrganizationPublicRoutesListInput, iJ as OrganizationPublicRoutesListOutput, iK as OrganizationRolesCreateInput, iL as OrganizationRolesCreateOutput, iM as OrganizationRolesDeleteInput, iN as OrganizationRolesDeleteOutput, iO as OrganizationRolesGetInput, iP as OrganizationRolesGetOutput, iQ as OrganizationRolesListInput, iR as OrganizationRolesListOutput, iS as OrganizationRolesUpdateInput, iT as OrganizationRolesUpdateOutput, iU as OrganizationSecurityMfaEnableInput, iV as OrganizationSecurityMfaEnableOutput, iW as OrganizationSelectInput, iX as OrganizationSelectOutput, iY as OrganizationSupportThreadCreateInput, iZ as OrganizationSupportThreadCreateOutput, i_ as OrganizationSupportThreadGetInput, i$ as OrganizationSupportThreadGetOutput, j0 as OrganizationSupportThreadReplyInput, j1 as OrganizationSupportThreadReplyOutput, j2 as OrganizationSupportThreadsListInput, j3 as OrganizationSupportThreadsListOutput } from '../client.gen-Bv2flLeO.cjs';
|
|
2
2
|
|
|
3
3
|
declare const organizationAuthMeQueryOptions: (sdk: GeneratedClient, input: OrganizationAuthMeInput) => {
|
|
4
4
|
queryKey: readonly ["organization", "auth", "me", OrganizationAuthMeInput];
|
|
@@ -184,25 +184,17 @@ declare const organizationPermissionCatalogQueryOptions: (sdk: GeneratedClient,
|
|
|
184
184
|
queryKey: readonly ["organization", "permission", "catalog", OrganizationPermissionCatalogInput];
|
|
185
185
|
queryFn: () => Promise<OrganizationPermissionCatalogOutput>;
|
|
186
186
|
};
|
|
187
|
-
declare const organizationProductAcceptInvitationMutationOptions: (sdk: GeneratedClient) => {
|
|
188
|
-
mutationKey: string[];
|
|
189
|
-
mutationFn: (input: OrganizationProductAcceptInvitationInput) => Promise<OrganizationProductAcceptInvitationOutput>;
|
|
190
|
-
};
|
|
191
187
|
declare const organizationProductCreateMutationOptions: (sdk: GeneratedClient) => {
|
|
192
188
|
mutationKey: string[];
|
|
193
189
|
mutationFn: (input: OrganizationProductCreateInput) => Promise<OrganizationProductCreateOutput>;
|
|
194
190
|
};
|
|
195
|
-
declare const organizationProductInviteMutationOptions: (sdk: GeneratedClient) => {
|
|
196
|
-
mutationKey: string[];
|
|
197
|
-
mutationFn: (input: OrganizationProductInviteInput) => Promise<OrganizationProductInviteOutput>;
|
|
198
|
-
};
|
|
199
191
|
declare const organizationProductListQueryOptions: (sdk: GeneratedClient, input: OrganizationProductListInput) => {
|
|
200
192
|
queryKey: readonly ["organization", "product", "list", OrganizationProductListInput];
|
|
201
193
|
queryFn: () => Promise<OrganizationProductListOutput>;
|
|
202
194
|
};
|
|
203
|
-
declare const
|
|
204
|
-
queryKey: readonly ["organization", "product", "list-
|
|
205
|
-
queryFn: () => Promise<
|
|
195
|
+
declare const organizationProductListAccessQueryOptions: (sdk: GeneratedClient, input: OrganizationProductListAccessInput) => {
|
|
196
|
+
queryKey: readonly ["organization", "product", "list-access", OrganizationProductListAccessInput];
|
|
197
|
+
queryFn: () => Promise<OrganizationProductListAccessOutput>;
|
|
206
198
|
};
|
|
207
199
|
declare const organizationProductListMembersQueryOptions: (sdk: GeneratedClient, input: OrganizationProductListMembersInput) => {
|
|
208
200
|
queryKey: readonly ["organization", "product", "list-members", OrganizationProductListMembersInput];
|
|
@@ -212,14 +204,18 @@ declare const organizationProductListRolesQueryOptions: (sdk: GeneratedClient, i
|
|
|
212
204
|
queryKey: readonly ["organization", "product", "list-roles", OrganizationProductListRolesInput];
|
|
213
205
|
queryFn: () => Promise<OrganizationProductListRolesOutput>;
|
|
214
206
|
};
|
|
215
|
-
declare const
|
|
207
|
+
declare const organizationProductRevokeAccessMutationOptions: (sdk: GeneratedClient) => {
|
|
216
208
|
mutationKey: string[];
|
|
217
|
-
mutationFn: (input:
|
|
209
|
+
mutationFn: (input: OrganizationProductRevokeAccessInput) => Promise<OrganizationProductRevokeAccessOutput>;
|
|
218
210
|
};
|
|
219
211
|
declare const organizationProductSelectMutationOptions: (sdk: GeneratedClient) => {
|
|
220
212
|
mutationKey: string[];
|
|
221
213
|
mutationFn: (input: OrganizationProductSelectInput) => Promise<OrganizationProductSelectOutput>;
|
|
222
214
|
};
|
|
215
|
+
declare const organizationProductSetAccessMutationOptions: (sdk: GeneratedClient) => {
|
|
216
|
+
mutationKey: string[];
|
|
217
|
+
mutationFn: (input: OrganizationProductSetAccessInput) => Promise<OrganizationProductSetAccessOutput>;
|
|
218
|
+
};
|
|
223
219
|
declare const organizationProductUpdateMutationOptions: (sdk: GeneratedClient) => {
|
|
224
220
|
mutationKey: string[];
|
|
225
221
|
mutationFn: (input: OrganizationProductUpdateInput) => Promise<OrganizationProductUpdateOutput>;
|
|
@@ -272,5 +268,21 @@ declare const organizationSelectMutationOptions: (sdk: GeneratedClient) => {
|
|
|
272
268
|
mutationKey: string[];
|
|
273
269
|
mutationFn: (input: OrganizationSelectInput) => Promise<OrganizationSelectOutput>;
|
|
274
270
|
};
|
|
271
|
+
declare const organizationSupportThreadCreateMutationOptions: (sdk: GeneratedClient) => {
|
|
272
|
+
mutationKey: string[];
|
|
273
|
+
mutationFn: (input: OrganizationSupportThreadCreateInput) => Promise<OrganizationSupportThreadCreateOutput>;
|
|
274
|
+
};
|
|
275
|
+
declare const organizationSupportThreadGetQueryOptions: (sdk: GeneratedClient, input: OrganizationSupportThreadGetInput) => {
|
|
276
|
+
queryKey: readonly ["organization", "support-thread", "get", OrganizationSupportThreadGetInput];
|
|
277
|
+
queryFn: () => Promise<OrganizationSupportThreadGetOutput>;
|
|
278
|
+
};
|
|
279
|
+
declare const organizationSupportThreadReplyMutationOptions: (sdk: GeneratedClient) => {
|
|
280
|
+
mutationKey: string[];
|
|
281
|
+
mutationFn: (input: OrganizationSupportThreadReplyInput) => Promise<OrganizationSupportThreadReplyOutput>;
|
|
282
|
+
};
|
|
283
|
+
declare const organizationSupportThreadsListQueryOptions: (sdk: GeneratedClient, input: OrganizationSupportThreadsListInput) => {
|
|
284
|
+
queryKey: readonly ["organization", "support-threads", "list", OrganizationSupportThreadsListInput];
|
|
285
|
+
queryFn: () => Promise<OrganizationSupportThreadsListOutput>;
|
|
286
|
+
};
|
|
275
287
|
|
|
276
|
-
export { OrganizationAuthMeInput, OrganizationAuthMeOutput, OrganizationBillingBudgetsGetInput, OrganizationBillingBudgetsGetOutput, OrganizationBillingBudgetsSetInput, OrganizationBillingBudgetsSetOutput, OrganizationBillingCapsClearInput, OrganizationBillingCapsClearOutput, OrganizationBillingCapsSetInput, OrganizationBillingCapsSetOutput, OrganizationBindingsListInput, OrganizationBindingsListOutput, OrganizationClickupInstallInput, OrganizationClickupInstallOutput, OrganizationClickupListInstallationsInput, OrganizationClickupListInstallationsOutput, OrganizationCloudflareInstallInput, OrganizationCloudflareInstallOutput, OrganizationConnectorsApproveRequestInput, OrganizationConnectorsApproveRequestOutput, OrganizationConnectorsAttachInput, OrganizationConnectorsAttachOutput, OrganizationConnectorsDeleteInput, OrganizationConnectorsDeleteOutput, OrganizationConnectorsDenyRequestInput, OrganizationConnectorsDenyRequestOutput, OrganizationConnectorsDetachInput, OrganizationConnectorsDetachOutput, OrganizationConnectorsListAttachmentsInput, OrganizationConnectorsListAttachmentsOutput, OrganizationConnectorsListAvailableInput, OrganizationConnectorsListAvailableOutput, OrganizationConnectorsListInput, OrganizationConnectorsListOrgInput, OrganizationConnectorsListOrgOutput, OrganizationConnectorsListOutput, OrganizationConnectorsListRequestsInput, OrganizationConnectorsListRequestsOutput, OrganizationConnectorsRemoveInput, OrganizationConnectorsRemoveOutput, OrganizationConnectorsRequestInput, OrganizationConnectorsRequestOutput, OrganizationCreateInput, OrganizationCreateOutput, OrganizationDomainsAddInput, OrganizationDomainsAddOutput, OrganizationDomainsGetInput, OrganizationDomainsGetOutput, OrganizationDomainsListInput, OrganizationDomainsListOutput, OrganizationDomainsRemoveInput, OrganizationDomainsRemoveOutput, OrganizationDomainsSetModeInput, OrganizationDomainsSetModeOutput, OrganizationExtensionsListInstalledInput, OrganizationExtensionsListInstalledOutput, OrganizationFeedbackSubmitInput, OrganizationFeedbackSubmitOutput, OrganizationGdriveInstallInput, OrganizationGdriveInstallOutput, OrganizationGithubInstallInput, OrganizationGithubInstallOutput, OrganizationGithubListInstallationsInput, OrganizationGithubListInstallationsOutput, OrganizationGoogleadsInstallInput, OrganizationGoogleadsInstallOutput, OrganizationListInput, OrganizationListOutput, OrganizationMemberAcceptInviteInput, OrganizationMemberAcceptInviteOutput, OrganizationMemberInviteInput, OrganizationMemberInviteOutput, OrganizationMemberListInput, OrganizationMemberListInvitationsInput, OrganizationMemberListInvitationsOutput, OrganizationMemberListOutput, OrganizationMemberListProductAccessInput, OrganizationMemberListProductAccessOutput, OrganizationMemberRemoveInput, OrganizationMemberRemoveOutput, OrganizationMemberRevokeInvitationInput, OrganizationMemberRevokeInvitationOutput, OrganizationMemberSetRoleInput, OrganizationMemberSetRoleOutput, OrganizationMemberShareProductInput, OrganizationMemberShareProductOutput, OrganizationMemberUnshareProductInput, OrganizationMemberUnshareProductOutput, OrganizationMembersAssignRoleInput, OrganizationMembersAssignRoleOutput, OrganizationPermissionCatalogInput, OrganizationPermissionCatalogOutput,
|
|
288
|
+
export { OrganizationAuthMeInput, OrganizationAuthMeOutput, OrganizationBillingBudgetsGetInput, OrganizationBillingBudgetsGetOutput, OrganizationBillingBudgetsSetInput, OrganizationBillingBudgetsSetOutput, OrganizationBillingCapsClearInput, OrganizationBillingCapsClearOutput, OrganizationBillingCapsSetInput, OrganizationBillingCapsSetOutput, OrganizationBindingsListInput, OrganizationBindingsListOutput, OrganizationClickupInstallInput, OrganizationClickupInstallOutput, OrganizationClickupListInstallationsInput, OrganizationClickupListInstallationsOutput, OrganizationCloudflareInstallInput, OrganizationCloudflareInstallOutput, OrganizationConnectorsApproveRequestInput, OrganizationConnectorsApproveRequestOutput, OrganizationConnectorsAttachInput, OrganizationConnectorsAttachOutput, OrganizationConnectorsDeleteInput, OrganizationConnectorsDeleteOutput, OrganizationConnectorsDenyRequestInput, OrganizationConnectorsDenyRequestOutput, OrganizationConnectorsDetachInput, OrganizationConnectorsDetachOutput, OrganizationConnectorsListAttachmentsInput, OrganizationConnectorsListAttachmentsOutput, OrganizationConnectorsListAvailableInput, OrganizationConnectorsListAvailableOutput, OrganizationConnectorsListInput, OrganizationConnectorsListOrgInput, OrganizationConnectorsListOrgOutput, OrganizationConnectorsListOutput, OrganizationConnectorsListRequestsInput, OrganizationConnectorsListRequestsOutput, OrganizationConnectorsRemoveInput, OrganizationConnectorsRemoveOutput, OrganizationConnectorsRequestInput, OrganizationConnectorsRequestOutput, OrganizationCreateInput, OrganizationCreateOutput, OrganizationDomainsAddInput, OrganizationDomainsAddOutput, OrganizationDomainsGetInput, OrganizationDomainsGetOutput, OrganizationDomainsListInput, OrganizationDomainsListOutput, OrganizationDomainsRemoveInput, OrganizationDomainsRemoveOutput, OrganizationDomainsSetModeInput, OrganizationDomainsSetModeOutput, OrganizationExtensionsListInstalledInput, OrganizationExtensionsListInstalledOutput, OrganizationFeedbackSubmitInput, OrganizationFeedbackSubmitOutput, OrganizationGdriveInstallInput, OrganizationGdriveInstallOutput, OrganizationGithubInstallInput, OrganizationGithubInstallOutput, OrganizationGithubListInstallationsInput, OrganizationGithubListInstallationsOutput, OrganizationGoogleadsInstallInput, OrganizationGoogleadsInstallOutput, OrganizationListInput, OrganizationListOutput, OrganizationMemberAcceptInviteInput, OrganizationMemberAcceptInviteOutput, OrganizationMemberInviteInput, OrganizationMemberInviteOutput, OrganizationMemberListInput, OrganizationMemberListInvitationsInput, OrganizationMemberListInvitationsOutput, OrganizationMemberListOutput, OrganizationMemberListProductAccessInput, OrganizationMemberListProductAccessOutput, OrganizationMemberRemoveInput, OrganizationMemberRemoveOutput, OrganizationMemberRevokeInvitationInput, OrganizationMemberRevokeInvitationOutput, OrganizationMemberSetRoleInput, OrganizationMemberSetRoleOutput, OrganizationMemberShareProductInput, OrganizationMemberShareProductOutput, OrganizationMemberUnshareProductInput, OrganizationMemberUnshareProductOutput, OrganizationMembersAssignRoleInput, OrganizationMembersAssignRoleOutput, OrganizationPermissionCatalogInput, OrganizationPermissionCatalogOutput, OrganizationProductCreateInput, OrganizationProductCreateOutput, OrganizationProductListAccessInput, OrganizationProductListAccessOutput, OrganizationProductListInput, OrganizationProductListMembersInput, OrganizationProductListMembersOutput, OrganizationProductListOutput, OrganizationProductListRolesInput, OrganizationProductListRolesOutput, OrganizationProductRevokeAccessInput, OrganizationProductRevokeAccessOutput, OrganizationProductSelectInput, OrganizationProductSelectOutput, OrganizationProductSetAccessInput, OrganizationProductSetAccessOutput, OrganizationProductUpdateInput, OrganizationProductUpdateOutput, OrganizationPublicKeysCreateInput, OrganizationPublicKeysCreateOutput, OrganizationPublicKeysListInput, OrganizationPublicKeysListOutput, OrganizationPublicKeysRevokeInput, OrganizationPublicKeysRevokeOutput, OrganizationPublicKeysUpdateScopeInput, OrganizationPublicKeysUpdateScopeOutput, OrganizationPublicRoutesListInput, OrganizationPublicRoutesListOutput, OrganizationRolesCreateInput, OrganizationRolesCreateOutput, OrganizationRolesDeleteInput, OrganizationRolesDeleteOutput, OrganizationRolesGetInput, OrganizationRolesGetOutput, OrganizationRolesListInput, OrganizationRolesListOutput, OrganizationRolesUpdateInput, OrganizationRolesUpdateOutput, OrganizationSecurityMfaEnableInput, OrganizationSecurityMfaEnableOutput, OrganizationSelectInput, OrganizationSelectOutput, OrganizationSupportThreadCreateInput, OrganizationSupportThreadCreateOutput, OrganizationSupportThreadGetInput, OrganizationSupportThreadGetOutput, OrganizationSupportThreadReplyInput, OrganizationSupportThreadReplyOutput, OrganizationSupportThreadsListInput, OrganizationSupportThreadsListOutput, 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 };
|