@cloudfleet/sdk 0.0.1-cfddf24 → 0.0.1-d32b155
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/README.md +26 -2
- package/dist/@tanstack/react-query.gen.d.ts +446 -372
- package/dist/@tanstack/react-query.gen.d.ts.map +1 -1
- package/dist/@tanstack/react-query.gen.js +478 -392
- package/dist/@tanstack/react-query.gen.js.map +1 -1
- package/dist/client/client.gen.d.ts.map +1 -1
- package/dist/client/client.gen.js +1 -4
- package/dist/client/client.gen.js.map +1 -1
- package/dist/client/types.gen.d.ts +1 -1
- package/dist/client/types.gen.d.ts.map +1 -1
- package/dist/client/utils.gen.d.ts +2 -2
- package/dist/client/utils.gen.d.ts.map +1 -1
- package/dist/client/utils.gen.js +3 -3
- package/dist/client/utils.gen.js.map +1 -1
- package/dist/core/params.gen.js +4 -4
- package/dist/core/params.gen.js.map +1 -1
- package/dist/schemas.gen.d.ts +474 -225
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +636 -317
- package/dist/schemas.gen.js.map +1 -1
- package/dist/sdk.gen.d.ts +249 -211
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/sdk.gen.js +357 -304
- package/dist/sdk.gen.js.map +1 -1
- package/dist/types.gen.d.ts +1103 -787
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +1695 -1474
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +502 -349
- package/dist/zod.gen.js.map +1 -1
- package/package.json +8 -11
|
@@ -24,16 +24,13 @@ const createQueryKey = (id, options, infinite, tags) => {
|
|
|
24
24
|
}
|
|
25
25
|
return [params];
|
|
26
26
|
};
|
|
27
|
-
export const
|
|
27
|
+
export const listUserOrganizationsQueryKey = (options) => createQueryKey('listUserOrganizations', options);
|
|
28
28
|
/**
|
|
29
|
-
* Get
|
|
30
|
-
*
|
|
31
|
-
* Returns aggregated usage information for the organization with facets for filtering. For more information on billing and payments, see [Billing and pricing](https://cloudfleet.ai/docs/organization/billing/) section of documentaiton. This endpoint is available to all users in the organization.
|
|
32
|
-
*
|
|
29
|
+
* Get a list of organizations the user belongs to. Used during authentication process.
|
|
33
30
|
*/
|
|
34
|
-
export const
|
|
31
|
+
export const listUserOrganizationsOptions = (options) => queryOptions({
|
|
35
32
|
queryFn: async ({ queryKey, signal }) => {
|
|
36
|
-
const { data } = await
|
|
33
|
+
const { data } = await UsersService.listUserOrganizations({
|
|
37
34
|
...options,
|
|
38
35
|
...queryKey[0],
|
|
39
36
|
signal,
|
|
@@ -41,18 +38,20 @@ export const getUsageOptions = (options) => queryOptions({
|
|
|
41
38
|
});
|
|
42
39
|
return data;
|
|
43
40
|
},
|
|
44
|
-
queryKey:
|
|
41
|
+
queryKey: listUserOrganizationsQueryKey(options)
|
|
45
42
|
});
|
|
46
|
-
export const
|
|
43
|
+
export const listUsersQueryKey = (options) => createQueryKey('listUsers', options);
|
|
47
44
|
/**
|
|
48
|
-
*
|
|
45
|
+
* List users in organization.
|
|
46
|
+
*
|
|
47
|
+
* Returns a list of user details and their roles. For more information on identity access management, see [Users](https://cloudfleet.ai/docs/organization/users/) section of documentaiton.
|
|
49
48
|
*
|
|
50
|
-
*
|
|
49
|
+
* This endpoint is available to all users in the organization.
|
|
51
50
|
*
|
|
52
51
|
*/
|
|
53
|
-
export const
|
|
52
|
+
export const listUsersOptions = (options) => queryOptions({
|
|
54
53
|
queryFn: async ({ queryKey, signal }) => {
|
|
55
|
-
const { data } = await
|
|
54
|
+
const { data } = await UsersService.listUsers({
|
|
56
55
|
...options,
|
|
57
56
|
...queryKey[0],
|
|
58
57
|
signal,
|
|
@@ -60,18 +59,18 @@ export const getPaymentMethodOptions = (options) => queryOptions({
|
|
|
60
59
|
});
|
|
61
60
|
return data;
|
|
62
61
|
},
|
|
63
|
-
queryKey:
|
|
62
|
+
queryKey: listUsersQueryKey(options)
|
|
64
63
|
});
|
|
65
64
|
/**
|
|
66
|
-
*
|
|
65
|
+
* Create a new user.
|
|
67
66
|
*
|
|
68
|
-
*
|
|
67
|
+
* Create a new user in your Cloudfleet organization. Requires a valid invite code generated by the `invites create` command. The invite code is a unique string that can be used only once to create a new user. The invite code is generated by the `POST /invites` endpoint.
|
|
69
68
|
*
|
|
70
69
|
*/
|
|
71
|
-
export const
|
|
70
|
+
export const createUserMutation = (options) => {
|
|
72
71
|
const mutationOptions = {
|
|
73
72
|
mutationFn: async (fnOptions) => {
|
|
74
|
-
const { data } = await
|
|
73
|
+
const { data } = await UsersService.createUser({
|
|
75
74
|
...options,
|
|
76
75
|
...fnOptions,
|
|
77
76
|
throwOnError: true
|
|
@@ -81,54 +80,16 @@ export const getPaymentMethodSecretMutation = (options) => {
|
|
|
81
80
|
};
|
|
82
81
|
return mutationOptions;
|
|
83
82
|
};
|
|
84
|
-
export const listInvoicesQueryKey = (options) => createQueryKey('listInvoices', options);
|
|
85
|
-
/**
|
|
86
|
-
* List issued invoices.
|
|
87
|
-
*
|
|
88
|
-
* Returns a list of invoices for the organization. For more information on billing and payments, see [Billing and pricing](https://cloudfleet.ai/docs/organization/billing/) section of documentaiton. This endpoint is available to all users in the organization.
|
|
89
|
-
*
|
|
90
|
-
*/
|
|
91
|
-
export const listInvoicesOptions = (options) => queryOptions({
|
|
92
|
-
queryFn: async ({ queryKey, signal }) => {
|
|
93
|
-
const { data } = await BillingService.listInvoices({
|
|
94
|
-
...options,
|
|
95
|
-
...queryKey[0],
|
|
96
|
-
signal,
|
|
97
|
-
throwOnError: true
|
|
98
|
-
});
|
|
99
|
-
return data;
|
|
100
|
-
},
|
|
101
|
-
queryKey: listInvoicesQueryKey(options)
|
|
102
|
-
});
|
|
103
|
-
export const getContactQueryKey = (options) => createQueryKey('getContact', options);
|
|
104
|
-
/**
|
|
105
|
-
* Get organization contact and billing address information.
|
|
106
|
-
*
|
|
107
|
-
* Returns the organization contact and billing address information. This endpoint is available to all users in the organization.
|
|
108
|
-
*
|
|
109
|
-
*/
|
|
110
|
-
export const getContactOptions = (options) => queryOptions({
|
|
111
|
-
queryFn: async ({ queryKey, signal }) => {
|
|
112
|
-
const { data } = await BillingService.getContact({
|
|
113
|
-
...options,
|
|
114
|
-
...queryKey[0],
|
|
115
|
-
signal,
|
|
116
|
-
throwOnError: true
|
|
117
|
-
});
|
|
118
|
-
return data;
|
|
119
|
-
},
|
|
120
|
-
queryKey: getContactQueryKey(options)
|
|
121
|
-
});
|
|
122
83
|
/**
|
|
123
|
-
*
|
|
84
|
+
* Delete user by id.
|
|
124
85
|
*
|
|
125
|
-
*
|
|
86
|
+
* Sets user status to `inactive`. Inactive users cannot log in and manage organization resources. This endpoint is available to administrators of the organization only.
|
|
126
87
|
*
|
|
127
88
|
*/
|
|
128
|
-
export const
|
|
89
|
+
export const deleteUserMutation = (options) => {
|
|
129
90
|
const mutationOptions = {
|
|
130
91
|
mutationFn: async (fnOptions) => {
|
|
131
|
-
const { data } = await
|
|
92
|
+
const { data } = await UsersService.deleteUser({
|
|
132
93
|
...options,
|
|
133
94
|
...fnOptions,
|
|
134
95
|
throwOnError: true
|
|
@@ -138,16 +99,18 @@ export const updateContactMutation = (options) => {
|
|
|
138
99
|
};
|
|
139
100
|
return mutationOptions;
|
|
140
101
|
};
|
|
141
|
-
export const
|
|
102
|
+
export const getUserQueryKey = (options) => createQueryKey('getUser', options);
|
|
142
103
|
/**
|
|
143
|
-
* Get
|
|
104
|
+
* Get user profile information by id.
|
|
144
105
|
*
|
|
145
|
-
* Returns
|
|
106
|
+
* Returns user details including their roles. For more information on identity access management, see [Users](https://cloudfleet.ai/docs/organization/users/) section of documentaiton.
|
|
107
|
+
*
|
|
108
|
+
* This endpoint is available to all users in the organization.
|
|
146
109
|
*
|
|
147
110
|
*/
|
|
148
|
-
export const
|
|
111
|
+
export const getUserOptions = (options) => queryOptions({
|
|
149
112
|
queryFn: async ({ queryKey, signal }) => {
|
|
150
|
-
const { data } = await
|
|
113
|
+
const { data } = await UsersService.getUser({
|
|
151
114
|
...options,
|
|
152
115
|
...queryKey[0],
|
|
153
116
|
signal,
|
|
@@ -155,18 +118,18 @@ export const getCreditsOptions = (options) => queryOptions({
|
|
|
155
118
|
});
|
|
156
119
|
return data;
|
|
157
120
|
},
|
|
158
|
-
queryKey:
|
|
121
|
+
queryKey: getUserQueryKey(options)
|
|
159
122
|
});
|
|
160
123
|
/**
|
|
161
|
-
*
|
|
124
|
+
* Update user profile information.
|
|
162
125
|
*
|
|
163
|
-
*
|
|
126
|
+
* Update user profile information: email, first name, last name, role. This endpoint can be accessed by administrators and the user itself. Role and status can be changed by administrators only.
|
|
164
127
|
*
|
|
165
128
|
*/
|
|
166
|
-
export const
|
|
129
|
+
export const updateUserMutation = (options) => {
|
|
167
130
|
const mutationOptions = {
|
|
168
131
|
mutationFn: async (fnOptions) => {
|
|
169
|
-
const { data } = await
|
|
132
|
+
const { data } = await UsersService.updateUser({
|
|
170
133
|
...options,
|
|
171
134
|
...fnOptions,
|
|
172
135
|
throwOnError: true
|
|
@@ -176,18 +139,16 @@ export const redeemCreditsMutation = (options) => {
|
|
|
176
139
|
};
|
|
177
140
|
return mutationOptions;
|
|
178
141
|
};
|
|
179
|
-
export const
|
|
142
|
+
export const listTokensQueryKey = (options) => createQueryKey('listTokens', options);
|
|
180
143
|
/**
|
|
181
|
-
* List
|
|
182
|
-
*
|
|
183
|
-
* Returns a list of charts in the cluster.
|
|
144
|
+
* List access tokens in organization.
|
|
184
145
|
*
|
|
185
|
-
* This endpoint is available to all users in the organization.
|
|
146
|
+
* This endpoint allows you to get a list of all access tokens details in organization. For more information about identity access management and security, see [Service Accounts](https://cloudfleet.ai/docs/organization/api-tokens/) section of documentaiton. This endpoint is available to all users in the organization.
|
|
186
147
|
*
|
|
187
148
|
*/
|
|
188
|
-
export const
|
|
149
|
+
export const listTokensOptions = (options) => queryOptions({
|
|
189
150
|
queryFn: async ({ queryKey, signal }) => {
|
|
190
|
-
const { data } = await
|
|
151
|
+
const { data } = await TokensService.listTokens({
|
|
191
152
|
...options,
|
|
192
153
|
...queryKey[0],
|
|
193
154
|
signal,
|
|
@@ -195,20 +156,20 @@ export const listChartsOptions = (options) => queryOptions({
|
|
|
195
156
|
});
|
|
196
157
|
return data;
|
|
197
158
|
},
|
|
198
|
-
queryKey:
|
|
159
|
+
queryKey: listTokensQueryKey(options)
|
|
199
160
|
});
|
|
200
161
|
/**
|
|
201
|
-
* Create a new
|
|
162
|
+
* Create a new access token.
|
|
202
163
|
*
|
|
203
|
-
*
|
|
164
|
+
* This endpoint allows you to create a new access token. For more information about identity access management and security, see [Service Accounts](https://cloudfleet.ai/docs/organization/api-tokens/) section of documentaiton.
|
|
204
165
|
*
|
|
205
166
|
* This endpoint is available to administrators of the organization only.
|
|
206
167
|
*
|
|
207
168
|
*/
|
|
208
|
-
export const
|
|
169
|
+
export const createTokenMutation = (options) => {
|
|
209
170
|
const mutationOptions = {
|
|
210
171
|
mutationFn: async (fnOptions) => {
|
|
211
|
-
const { data } = await
|
|
172
|
+
const { data } = await TokensService.createToken({
|
|
212
173
|
...options,
|
|
213
174
|
...fnOptions,
|
|
214
175
|
throwOnError: true
|
|
@@ -219,17 +180,15 @@ export const createChartMutation = (options) => {
|
|
|
219
180
|
return mutationOptions;
|
|
220
181
|
};
|
|
221
182
|
/**
|
|
222
|
-
* Permanently delete
|
|
223
|
-
*
|
|
224
|
-
* This endpoint will permanently delete chart. This operation cannot be undone.
|
|
183
|
+
* Permanently delete access token.
|
|
225
184
|
*
|
|
226
|
-
* This endpoint is available to administrators of the organization only.
|
|
185
|
+
* This endpoint allows you to delete an access token. For more information about identity access management and security, see [Service Accounts](https://cloudfleet.ai/docs/organization/api-tokens/) section of documentaiton. This endpoint is available to administrators of the organization only.
|
|
227
186
|
*
|
|
228
187
|
*/
|
|
229
|
-
export const
|
|
188
|
+
export const deleteTokenMutation = (options) => {
|
|
230
189
|
const mutationOptions = {
|
|
231
190
|
mutationFn: async (fnOptions) => {
|
|
232
|
-
const { data } = await
|
|
191
|
+
const { data } = await TokensService.deleteToken({
|
|
233
192
|
...options,
|
|
234
193
|
...fnOptions,
|
|
235
194
|
throwOnError: true
|
|
@@ -239,18 +198,16 @@ export const deleteChartMutation = (options) => {
|
|
|
239
198
|
};
|
|
240
199
|
return mutationOptions;
|
|
241
200
|
};
|
|
242
|
-
export const
|
|
201
|
+
export const getTokenQueryKey = (options) => createQueryKey('getToken', options);
|
|
243
202
|
/**
|
|
244
|
-
* Get
|
|
245
|
-
*
|
|
246
|
-
* Returns the details of the chart deployment.
|
|
203
|
+
* Get access token information.
|
|
247
204
|
*
|
|
248
|
-
* This endpoint is available to all users in the organization.
|
|
205
|
+
* This endpoint allows you to get access token details. For more information about identity access management and security, see [Service Accounts](https://cloudfleet.ai/docs/organization/api-tokens/) section of documentaiton. This endpoint is available to all users in the organization.
|
|
249
206
|
*
|
|
250
207
|
*/
|
|
251
|
-
export const
|
|
208
|
+
export const getTokenOptions = (options) => queryOptions({
|
|
252
209
|
queryFn: async ({ queryKey, signal }) => {
|
|
253
|
-
const { data } = await
|
|
210
|
+
const { data } = await TokensService.getToken({
|
|
254
211
|
...options,
|
|
255
212
|
...queryKey[0],
|
|
256
213
|
signal,
|
|
@@ -258,20 +215,20 @@ export const getChartOptions = (options) => queryOptions({
|
|
|
258
215
|
});
|
|
259
216
|
return data;
|
|
260
217
|
},
|
|
261
|
-
queryKey:
|
|
218
|
+
queryKey: getTokenQueryKey(options)
|
|
262
219
|
});
|
|
263
220
|
/**
|
|
264
|
-
* Update
|
|
221
|
+
* Update access token information.
|
|
265
222
|
*
|
|
266
|
-
* This endpoint allows you to update
|
|
223
|
+
* This endpoint allows you to update access token details. For more information about identity access management and security, see [Service Accounts](https://cloudfleet.ai/docs/organization/api-tokens/) section of documentaiton.
|
|
267
224
|
*
|
|
268
225
|
* This endpoint is available to administrators of the organization only.
|
|
269
226
|
*
|
|
270
227
|
*/
|
|
271
|
-
export const
|
|
228
|
+
export const updateTokenMutation = (options) => {
|
|
272
229
|
const mutationOptions = {
|
|
273
230
|
mutationFn: async (fnOptions) => {
|
|
274
|
-
const { data } = await
|
|
231
|
+
const { data } = await TokensService.updateToken({
|
|
275
232
|
...options,
|
|
276
233
|
...fnOptions,
|
|
277
234
|
throwOnError: true
|
|
@@ -281,18 +238,34 @@ export const updateChartMutation = (options) => {
|
|
|
281
238
|
};
|
|
282
239
|
return mutationOptions;
|
|
283
240
|
};
|
|
284
|
-
export const listFleetsQueryKey = (options) => createQueryKey('listFleets', options);
|
|
285
241
|
/**
|
|
286
|
-
*
|
|
242
|
+
* Regenerate access token secret key.
|
|
287
243
|
*
|
|
288
|
-
*
|
|
244
|
+
* Generates a new access token secret. Old secret will not be valid anymore.
|
|
245
|
+
*/
|
|
246
|
+
export const regenerateTokenMutation = (options) => {
|
|
247
|
+
const mutationOptions = {
|
|
248
|
+
mutationFn: async (fnOptions) => {
|
|
249
|
+
const { data } = await TokensService.regenerateToken({
|
|
250
|
+
...options,
|
|
251
|
+
...fnOptions,
|
|
252
|
+
throwOnError: true
|
|
253
|
+
});
|
|
254
|
+
return data;
|
|
255
|
+
}
|
|
256
|
+
};
|
|
257
|
+
return mutationOptions;
|
|
258
|
+
};
|
|
259
|
+
export const listTicketsQueryKey = (options) => createQueryKey('listTickets', options);
|
|
260
|
+
/**
|
|
261
|
+
* List tickets for the current organization.
|
|
289
262
|
*
|
|
290
|
-
*
|
|
263
|
+
* Returns all tickets belonging to the caller's organization, newest first.
|
|
291
264
|
*
|
|
292
265
|
*/
|
|
293
|
-
export const
|
|
266
|
+
export const listTicketsOptions = (options) => queryOptions({
|
|
294
267
|
queryFn: async ({ queryKey, signal }) => {
|
|
295
|
-
const { data } = await
|
|
268
|
+
const { data } = await TicketsService.listTickets({
|
|
296
269
|
...options,
|
|
297
270
|
...queryKey[0],
|
|
298
271
|
signal,
|
|
@@ -300,20 +273,18 @@ export const listFleetsOptions = (options) => queryOptions({
|
|
|
300
273
|
});
|
|
301
274
|
return data;
|
|
302
275
|
},
|
|
303
|
-
queryKey:
|
|
276
|
+
queryKey: listTicketsQueryKey(options)
|
|
304
277
|
});
|
|
305
278
|
/**
|
|
306
|
-
* Create a new
|
|
307
|
-
*
|
|
308
|
-
* Create a new fleet under the current organization. fleets allow you to to schedule workloads in cloud service provider accounts owned by you. For more information, see [Fleets](https://cloudfleet.ai/docs/cloud-infrastructure/fleets/) section of documentaiton.
|
|
279
|
+
* Create a new support ticket.
|
|
309
280
|
*
|
|
310
|
-
*
|
|
281
|
+
* Creates a new support ticket with an initial customer message. The request is `multipart/form-data` with a JSON-encoded `payload` field carrying `category`, `body`, and optional `properties`, plus up to 3 `attachments` files (10 MB max each).
|
|
311
282
|
*
|
|
312
283
|
*/
|
|
313
|
-
export const
|
|
284
|
+
export const createTicketMutation = (options) => {
|
|
314
285
|
const mutationOptions = {
|
|
315
286
|
mutationFn: async (fnOptions) => {
|
|
316
|
-
const { data } = await
|
|
287
|
+
const { data } = await TicketsService.createTicket({
|
|
317
288
|
...options,
|
|
318
289
|
...fnOptions,
|
|
319
290
|
throwOnError: true
|
|
@@ -324,17 +295,15 @@ export const createFleetMutation = (options) => {
|
|
|
324
295
|
return mutationOptions;
|
|
325
296
|
};
|
|
326
297
|
/**
|
|
327
|
-
*
|
|
328
|
-
*
|
|
329
|
-
* This endpoint will permanently delete fleet. This operation cannot be undone. Your subscription will end by the end of the current billing period and you will not be able to receive credit for unused time. If you want to keep using the Fleet until the end of the billing period, set the status to `cancelling`. For more information, see [Fleets](https://cloudfleet.ai/docs/cloud-infrastructure/fleets/) section of documentaiton.
|
|
298
|
+
* Close a ticket (soft close).
|
|
330
299
|
*
|
|
331
|
-
*
|
|
300
|
+
* Marks the ticket as closed. Closed is a terminal state — users cannot reply to a closed ticket; a new ticket must be opened instead.
|
|
332
301
|
*
|
|
333
302
|
*/
|
|
334
|
-
export const
|
|
303
|
+
export const closeTicketMutation = (options) => {
|
|
335
304
|
const mutationOptions = {
|
|
336
305
|
mutationFn: async (fnOptions) => {
|
|
337
|
-
const { data } = await
|
|
306
|
+
const { data } = await TicketsService.closeTicket({
|
|
338
307
|
...options,
|
|
339
308
|
...fnOptions,
|
|
340
309
|
throwOnError: true
|
|
@@ -344,18 +313,13 @@ export const deleteFleetMutation = (options) => {
|
|
|
344
313
|
};
|
|
345
314
|
return mutationOptions;
|
|
346
315
|
};
|
|
347
|
-
export const
|
|
316
|
+
export const getTicketQueryKey = (options) => createQueryKey('getTicket', options);
|
|
348
317
|
/**
|
|
349
|
-
* Get
|
|
350
|
-
*
|
|
351
|
-
* Returns fleet details. For more information, see [Fleets](https://cloudfleet.ai/docs/cloud-infrastructure/fleets/) section of documentaiton.
|
|
352
|
-
*
|
|
353
|
-
* This endpoint is available to all users in the organization.
|
|
354
|
-
*
|
|
318
|
+
* Get a ticket and its messages.
|
|
355
319
|
*/
|
|
356
|
-
export const
|
|
320
|
+
export const getTicketOptions = (options) => queryOptions({
|
|
357
321
|
queryFn: async ({ queryKey, signal }) => {
|
|
358
|
-
const { data } = await
|
|
322
|
+
const { data } = await TicketsService.getTicket({
|
|
359
323
|
...options,
|
|
360
324
|
...queryKey[0],
|
|
361
325
|
signal,
|
|
@@ -363,24 +327,18 @@ export const getFleetOptions = (options) => queryOptions({
|
|
|
363
327
|
});
|
|
364
328
|
return data;
|
|
365
329
|
},
|
|
366
|
-
queryKey:
|
|
330
|
+
queryKey: getTicketQueryKey(options)
|
|
367
331
|
});
|
|
368
332
|
/**
|
|
369
|
-
*
|
|
370
|
-
*
|
|
371
|
-
* This endpoint allows you to update fleet details.
|
|
372
|
-
*
|
|
373
|
-
* Setting status to `deleted` will permanently delete fleet. This operation cannot be undone. Your subscription will end by the end of the current billing period and you will not be able to receive credit for unused time. If you want to keep using the Fleet until the end of the billing period, set the status to `cancelling`.
|
|
374
|
-
*
|
|
375
|
-
* For more information, see [Fleets](https://cloudfleet.ai/docs/cloud-infrastructure/fleets/) section of documentaiton.
|
|
333
|
+
* Append a customer reply to a ticket.
|
|
376
334
|
*
|
|
377
|
-
*
|
|
335
|
+
* Multipart form-data with a JSON-encoded `payload` field carrying `body`, plus up to 3 `attachments` files. Returns 409 if the ticket is closed.
|
|
378
336
|
*
|
|
379
337
|
*/
|
|
380
|
-
export const
|
|
338
|
+
export const replyTicketMutation = (options) => {
|
|
381
339
|
const mutationOptions = {
|
|
382
340
|
mutationFn: async (fnOptions) => {
|
|
383
|
-
const { data } = await
|
|
341
|
+
const { data } = await TicketsService.replyTicket({
|
|
384
342
|
...options,
|
|
385
343
|
...fnOptions,
|
|
386
344
|
throwOnError: true
|
|
@@ -390,15 +348,13 @@ export const updateFleetMutation = (options) => {
|
|
|
390
348
|
};
|
|
391
349
|
return mutationOptions;
|
|
392
350
|
};
|
|
393
|
-
export const
|
|
351
|
+
export const getTicketAttachmentQueryKey = (options) => createQueryKey('getTicketAttachment', options);
|
|
394
352
|
/**
|
|
395
|
-
*
|
|
396
|
-
*
|
|
397
|
-
* An API endpoint for directly querying a Kubernetes cluster API without requiring kubectl or other tools. This endpoint is ideal for automation and scripting, as well as for internal use in fetching data for the Cloudfleet Console. It acts as a passthrough to the Kubernetes API, allowing access to any valid Kubernetes API endpoint, including those not exposed in the Cloudfleet Console. The endpoint is strictly read-only, ensuring no modifications to the cluster state. It is accessible to all users within the organization and uses the same authentication mechanisms as other Cloudfleet API endpoints.
|
|
353
|
+
* Download a ticket attachment.
|
|
398
354
|
*/
|
|
399
|
-
export const
|
|
355
|
+
export const getTicketAttachmentOptions = (options) => queryOptions({
|
|
400
356
|
queryFn: async ({ queryKey, signal }) => {
|
|
401
|
-
const { data } = await
|
|
357
|
+
const { data } = await TicketsService.getTicketAttachment({
|
|
402
358
|
...options,
|
|
403
359
|
...queryKey[0],
|
|
404
360
|
signal,
|
|
@@ -406,20 +362,18 @@ export const queryClusterOptions = (options) => queryOptions({
|
|
|
406
362
|
});
|
|
407
363
|
return data;
|
|
408
364
|
},
|
|
409
|
-
queryKey:
|
|
365
|
+
queryKey: getTicketAttachmentQueryKey(options)
|
|
410
366
|
});
|
|
411
|
-
export const
|
|
367
|
+
export const listRepositoriesQueryKey = (options) => createQueryKey('listRepositories', options);
|
|
412
368
|
/**
|
|
413
|
-
* List
|
|
414
|
-
*
|
|
415
|
-
* Returns a list of clusters under the current organization, including quota. Quota is a set of filters defined by the admin of the organization that will be applied to all resources created in the cluster. Quota information returned here does not take into account quota set on organization or platform level. For calculated quota applied to this account, use /clusters/{cluster_id}/quota endpoint. For more information about quotas, see [Quotas and limits](https://cloudfleet.ai/docs/organization/quotas/) section of documentaiton.
|
|
369
|
+
* List repositories
|
|
416
370
|
*
|
|
417
|
-
* This endpoint is available to all users in the organization.
|
|
371
|
+
* Returns a list of repositories in the registry across all regions. This endpoint is available to all users in the organization.
|
|
418
372
|
*
|
|
419
373
|
*/
|
|
420
|
-
export const
|
|
374
|
+
export const listRepositoriesOptions = (options) => queryOptions({
|
|
421
375
|
queryFn: async ({ queryKey, signal }) => {
|
|
422
|
-
const { data } = await
|
|
376
|
+
const { data } = await RegistryService.listRepositories({
|
|
423
377
|
...options,
|
|
424
378
|
...queryKey[0],
|
|
425
379
|
signal,
|
|
@@ -427,41 +381,37 @@ export const listClustersOptions = (options) => queryOptions({
|
|
|
427
381
|
});
|
|
428
382
|
return data;
|
|
429
383
|
},
|
|
430
|
-
queryKey:
|
|
384
|
+
queryKey: listRepositoriesQueryKey(options)
|
|
431
385
|
});
|
|
386
|
+
export const listTagsQueryKey = (options) => createQueryKey('listTags', options);
|
|
432
387
|
/**
|
|
433
|
-
*
|
|
388
|
+
* List tags for a repository
|
|
434
389
|
*
|
|
435
|
-
*
|
|
436
|
-
*
|
|
437
|
-
* This endpoint is available to administrators of the organization only.
|
|
390
|
+
* Returns a list of tags for a specific repository, including size and metadata for each tag. This endpoint is available to all users in the organization.
|
|
438
391
|
*
|
|
439
392
|
*/
|
|
440
|
-
export const
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
};
|
|
393
|
+
export const listTagsOptions = (options) => queryOptions({
|
|
394
|
+
queryFn: async ({ queryKey, signal }) => {
|
|
395
|
+
const { data } = await RegistryService.listTags({
|
|
396
|
+
...options,
|
|
397
|
+
...queryKey[0],
|
|
398
|
+
signal,
|
|
399
|
+
throwOnError: true
|
|
400
|
+
});
|
|
401
|
+
return data;
|
|
402
|
+
},
|
|
403
|
+
queryKey: listTagsQueryKey(options)
|
|
404
|
+
});
|
|
453
405
|
/**
|
|
454
|
-
*
|
|
455
|
-
*
|
|
456
|
-
* This endpoint will permanently delete the cluster. This operation cannot be undone.
|
|
406
|
+
* Delete tag
|
|
457
407
|
*
|
|
458
|
-
* This endpoint is available to administrators of the organization only.
|
|
408
|
+
* Permanently deletes a specific tag from a repository. This endpoint is available to administrators of the organization only.
|
|
459
409
|
*
|
|
460
410
|
*/
|
|
461
|
-
export const
|
|
411
|
+
export const deleteTagMutation = (options) => {
|
|
462
412
|
const mutationOptions = {
|
|
463
413
|
mutationFn: async (fnOptions) => {
|
|
464
|
-
const { data } = await
|
|
414
|
+
const { data } = await RegistryService.deleteTag({
|
|
465
415
|
...options,
|
|
466
416
|
...fnOptions,
|
|
467
417
|
throwOnError: true
|
|
@@ -471,18 +421,16 @@ export const deleteClusterMutation = (options) => {
|
|
|
471
421
|
};
|
|
472
422
|
return mutationOptions;
|
|
473
423
|
};
|
|
474
|
-
export const
|
|
424
|
+
export const getTagQueryKey = (options) => createQueryKey('getTag', options);
|
|
475
425
|
/**
|
|
476
|
-
* Get
|
|
477
|
-
*
|
|
478
|
-
* Returns cluster details including quota. Quota is a set of filters defined by the admin of the organization that will be applied to all resources created in the cluster. Quota information returned here does not take into account quota set on organization or platform level. For calculated quota applied to this account, use /clusters/{cluster_id}/quota endpoint. For more information about quotas, see [Quotas and limits](https://cloudfleet.ai/docs/organization/quotas/) section of documentaiton.
|
|
426
|
+
* Get tag details
|
|
479
427
|
*
|
|
480
|
-
* This endpoint is available to all users in the organization.
|
|
428
|
+
* Returns detailed information for a specific tag in a repository, including manifest details, size, and URI. This endpoint is available to all users in the organization.
|
|
481
429
|
*
|
|
482
430
|
*/
|
|
483
|
-
export const
|
|
431
|
+
export const getTagOptions = (options) => queryOptions({
|
|
484
432
|
queryFn: async ({ queryKey, signal }) => {
|
|
485
|
-
const { data } = await
|
|
433
|
+
const { data } = await RegistryService.getTag({
|
|
486
434
|
...options,
|
|
487
435
|
...queryKey[0],
|
|
488
436
|
signal,
|
|
@@ -490,39 +438,39 @@ export const getClusterOptions = (options) => queryOptions({
|
|
|
490
438
|
});
|
|
491
439
|
return data;
|
|
492
440
|
},
|
|
493
|
-
queryKey:
|
|
441
|
+
queryKey: getTagQueryKey(options)
|
|
494
442
|
});
|
|
443
|
+
export const getOrganizationQueryKey = (options) => createQueryKey('getOrganization', options);
|
|
495
444
|
/**
|
|
496
|
-
*
|
|
445
|
+
* Get organization information.
|
|
497
446
|
*
|
|
498
|
-
*
|
|
447
|
+
* Returns organization details including quota. For more information about quotas, see [Quotas and limits](https://cloudfleet.ai/docs/organization/quotas/) section of documentaiton.
|
|
499
448
|
*
|
|
500
|
-
* This endpoint is available to
|
|
449
|
+
* This endpoint is available to all users in the organization.
|
|
501
450
|
*
|
|
502
451
|
*/
|
|
503
|
-
export const
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
};
|
|
452
|
+
export const getOrganizationOptions = (options) => queryOptions({
|
|
453
|
+
queryFn: async ({ queryKey, signal }) => {
|
|
454
|
+
const { data } = await OrganizationService.getOrganization({
|
|
455
|
+
...options,
|
|
456
|
+
...queryKey[0],
|
|
457
|
+
signal,
|
|
458
|
+
throwOnError: true
|
|
459
|
+
});
|
|
460
|
+
return data;
|
|
461
|
+
},
|
|
462
|
+
queryKey: getOrganizationQueryKey(options)
|
|
463
|
+
});
|
|
516
464
|
/**
|
|
517
|
-
*
|
|
465
|
+
* Create a new organization / Cloudfleet account signup.
|
|
518
466
|
*
|
|
519
|
-
*
|
|
467
|
+
* This endpoint allows you to create a new Cloudfleet organization and an administrator user.
|
|
520
468
|
*
|
|
521
469
|
*/
|
|
522
|
-
export const
|
|
470
|
+
export const createOrganizationMutation = (options) => {
|
|
523
471
|
const mutationOptions = {
|
|
524
472
|
mutationFn: async (fnOptions) => {
|
|
525
|
-
const { data } = await
|
|
473
|
+
const { data } = await OrganizationService.createOrganization({
|
|
526
474
|
...options,
|
|
527
475
|
...fnOptions,
|
|
528
476
|
throwOnError: true
|
|
@@ -532,16 +480,18 @@ export const getJoinInformationMutation = (options) => {
|
|
|
532
480
|
};
|
|
533
481
|
return mutationOptions;
|
|
534
482
|
};
|
|
535
|
-
export const
|
|
483
|
+
export const getBasicPriceConsentQueryKey = (options) => createQueryKey('getBasicPriceConsent', options);
|
|
536
484
|
/**
|
|
537
|
-
*
|
|
485
|
+
* Get the organization's consent status for the new Basic price.
|
|
486
|
+
*
|
|
487
|
+
* Returns the organization's consent status for the migration from the free tier to the paid Basic plan. `pending` means an administrator must opt in; `not_applicable` means the organization is not in scope for the migration; `accepted` / `rejected` reflect a recorded decision.
|
|
538
488
|
*
|
|
539
|
-
*
|
|
489
|
+
* This endpoint is available to all users in the organization and drives the consent dialog in the console.
|
|
540
490
|
*
|
|
541
491
|
*/
|
|
542
|
-
export const
|
|
492
|
+
export const getBasicPriceConsentOptions = (options) => queryOptions({
|
|
543
493
|
queryFn: async ({ queryKey, signal }) => {
|
|
544
|
-
const { data } = await
|
|
494
|
+
const { data } = await OrganizationService.getBasicPriceConsent({
|
|
545
495
|
...options,
|
|
546
496
|
...queryKey[0],
|
|
547
497
|
signal,
|
|
@@ -549,18 +499,18 @@ export const listInvitesOptions = (options) => queryOptions({
|
|
|
549
499
|
});
|
|
550
500
|
return data;
|
|
551
501
|
},
|
|
552
|
-
queryKey:
|
|
502
|
+
queryKey: getBasicPriceConsentQueryKey(options)
|
|
553
503
|
});
|
|
554
504
|
/**
|
|
555
|
-
*
|
|
505
|
+
* Record an administrator's decision on the new Basic price.
|
|
556
506
|
*
|
|
557
|
-
*
|
|
507
|
+
* Records an affirmative decision to continue on the paid Basic plan (`accepted`) or to opt out (`rejected`). This is an organization-binding financial decision, so it is restricted to administrators. Each call appends an immutable audit entry (who and when) and sends a confirmation email to the acting administrator.
|
|
558
508
|
*
|
|
559
509
|
*/
|
|
560
|
-
export const
|
|
510
|
+
export const setBasicPriceConsentMutation = (options) => {
|
|
561
511
|
const mutationOptions = {
|
|
562
512
|
mutationFn: async (fnOptions) => {
|
|
563
|
-
const { data } = await
|
|
513
|
+
const { data } = await OrganizationService.setBasicPriceConsent({
|
|
564
514
|
...options,
|
|
565
515
|
...fnOptions,
|
|
566
516
|
throwOnError: true
|
|
@@ -570,35 +520,15 @@ export const createInviteMutation = (options) => {
|
|
|
570
520
|
};
|
|
571
521
|
return mutationOptions;
|
|
572
522
|
};
|
|
573
|
-
export const getInviteQueryKey = (options) => createQueryKey('getInvite', options);
|
|
574
|
-
/**
|
|
575
|
-
* Get invite information.
|
|
576
|
-
*
|
|
577
|
-
* Returns invite details.
|
|
578
|
-
*
|
|
579
|
-
*/
|
|
580
|
-
export const getInviteOptions = (options) => queryOptions({
|
|
581
|
-
queryFn: async ({ queryKey, signal }) => {
|
|
582
|
-
const { data } = await InvitesService.getInvite({
|
|
583
|
-
...options,
|
|
584
|
-
...queryKey[0],
|
|
585
|
-
signal,
|
|
586
|
-
throwOnError: true
|
|
587
|
-
});
|
|
588
|
-
return data;
|
|
589
|
-
},
|
|
590
|
-
queryKey: getInviteQueryKey(options)
|
|
591
|
-
});
|
|
592
523
|
/**
|
|
593
|
-
*
|
|
594
|
-
*
|
|
595
|
-
* Permanently deletes invite from the organization. This endpoint is available to administrators of the organization only.
|
|
524
|
+
* MCP endpoint
|
|
596
525
|
*
|
|
526
|
+
* MCP endpoint for handling Model Context Protocol JSON-RPC 2.0 messages.
|
|
597
527
|
*/
|
|
598
|
-
export const
|
|
528
|
+
export const postMcpMutation = (options) => {
|
|
599
529
|
const mutationOptions = {
|
|
600
530
|
mutationFn: async (fnOptions) => {
|
|
601
|
-
const { data } = await
|
|
531
|
+
const { data } = await McpService.postMcp({
|
|
602
532
|
...options,
|
|
603
533
|
...fnOptions,
|
|
604
534
|
throwOnError: true
|
|
@@ -652,36 +582,16 @@ export const getMarketplaceChartFilesOptions = (options) => queryOptions({
|
|
|
652
582
|
},
|
|
653
583
|
queryKey: getMarketplaceChartFilesQueryKey(options)
|
|
654
584
|
});
|
|
585
|
+
export const listInvitesQueryKey = (options) => createQueryKey('listInvites', options);
|
|
655
586
|
/**
|
|
656
|
-
*
|
|
657
|
-
*
|
|
658
|
-
* MCP endpoint for handling Model Context Protocol JSON-RPC 2.0 messages.
|
|
659
|
-
*/
|
|
660
|
-
export const postMcpMutation = (options) => {
|
|
661
|
-
const mutationOptions = {
|
|
662
|
-
mutationFn: async (fnOptions) => {
|
|
663
|
-
const { data } = await McpService.postMcp({
|
|
664
|
-
...options,
|
|
665
|
-
...fnOptions,
|
|
666
|
-
throwOnError: true
|
|
667
|
-
});
|
|
668
|
-
return data;
|
|
669
|
-
}
|
|
670
|
-
};
|
|
671
|
-
return mutationOptions;
|
|
672
|
-
};
|
|
673
|
-
export const getOrganizationQueryKey = (options) => createQueryKey('getOrganization', options);
|
|
674
|
-
/**
|
|
675
|
-
* Get organization information.
|
|
676
|
-
*
|
|
677
|
-
* Returns organization details including quota. For more information about quotas, see [Quotas and limits](https://cloudfleet.ai/docs/organization/quotas/) section of documentaiton.
|
|
587
|
+
* List invites.
|
|
678
588
|
*
|
|
679
|
-
* This endpoint is available to
|
|
589
|
+
* Returns a list of pending (non-expired) invites under the current organization. This endpoint is available to administrators of the organization only.
|
|
680
590
|
*
|
|
681
591
|
*/
|
|
682
|
-
export const
|
|
592
|
+
export const listInvitesOptions = (options) => queryOptions({
|
|
683
593
|
queryFn: async ({ queryKey, signal }) => {
|
|
684
|
-
const { data } = await
|
|
594
|
+
const { data } = await InvitesService.listInvites({
|
|
685
595
|
...options,
|
|
686
596
|
...queryKey[0],
|
|
687
597
|
signal,
|
|
@@ -689,18 +599,18 @@ export const getOrganizationOptions = (options) => queryOptions({
|
|
|
689
599
|
});
|
|
690
600
|
return data;
|
|
691
601
|
},
|
|
692
|
-
queryKey:
|
|
602
|
+
queryKey: listInvitesQueryKey(options)
|
|
693
603
|
});
|
|
694
604
|
/**
|
|
695
|
-
* Create a new
|
|
605
|
+
* Create a new invite.
|
|
696
606
|
*
|
|
697
|
-
*
|
|
607
|
+
* Invite a new user to your Cloudfleet organization. The user will receive an email with a link to create a new account. This endpoint is available to administrators of the organization only.
|
|
698
608
|
*
|
|
699
609
|
*/
|
|
700
|
-
export const
|
|
610
|
+
export const createInviteMutation = (options) => {
|
|
701
611
|
const mutationOptions = {
|
|
702
612
|
mutationFn: async (fnOptions) => {
|
|
703
|
-
const { data } = await
|
|
613
|
+
const { data } = await InvitesService.createInvite({
|
|
704
614
|
...options,
|
|
705
615
|
...fnOptions,
|
|
706
616
|
throwOnError: true
|
|
@@ -710,35 +620,16 @@ export const createOrganizationMutation = (options) => {
|
|
|
710
620
|
};
|
|
711
621
|
return mutationOptions;
|
|
712
622
|
};
|
|
713
|
-
export const
|
|
714
|
-
/**
|
|
715
|
-
* List repositories
|
|
716
|
-
*
|
|
717
|
-
* Returns a list of repositories in the registry across all regions. This endpoint is available to all users in the organization.
|
|
718
|
-
*
|
|
719
|
-
*/
|
|
720
|
-
export const listRepositoriesOptions = (options) => queryOptions({
|
|
721
|
-
queryFn: async ({ queryKey, signal }) => {
|
|
722
|
-
const { data } = await RegistryService.listRepositories({
|
|
723
|
-
...options,
|
|
724
|
-
...queryKey[0],
|
|
725
|
-
signal,
|
|
726
|
-
throwOnError: true
|
|
727
|
-
});
|
|
728
|
-
return data;
|
|
729
|
-
},
|
|
730
|
-
queryKey: listRepositoriesQueryKey(options)
|
|
731
|
-
});
|
|
732
|
-
export const listTagsQueryKey = (options) => createQueryKey('listTags', options);
|
|
623
|
+
export const getInviteQueryKey = (options) => createQueryKey('getInvite', options);
|
|
733
624
|
/**
|
|
734
|
-
*
|
|
625
|
+
* Get invite information.
|
|
735
626
|
*
|
|
736
|
-
*
|
|
627
|
+
* Validates an invitation code and returns the email address it was issued to (to pre-fill the signup form) and the organization it grants access to. This endpoint is unauthenticated, so no other invite details (such as the invited role) are disclosed.
|
|
737
628
|
*
|
|
738
629
|
*/
|
|
739
|
-
export const
|
|
630
|
+
export const getInviteOptions = (options) => queryOptions({
|
|
740
631
|
queryFn: async ({ queryKey, signal }) => {
|
|
741
|
-
const { data } = await
|
|
632
|
+
const { data } = await InvitesService.getInvite({
|
|
742
633
|
...options,
|
|
743
634
|
...queryKey[0],
|
|
744
635
|
signal,
|
|
@@ -746,18 +637,18 @@ export const listTagsOptions = (options) => queryOptions({
|
|
|
746
637
|
});
|
|
747
638
|
return data;
|
|
748
639
|
},
|
|
749
|
-
queryKey:
|
|
640
|
+
queryKey: getInviteQueryKey(options)
|
|
750
641
|
});
|
|
751
642
|
/**
|
|
752
|
-
*
|
|
643
|
+
* Permanently delete invite.
|
|
753
644
|
*
|
|
754
|
-
* Permanently deletes
|
|
645
|
+
* Permanently deletes invite from the organization. This endpoint is available to administrators of the organization only.
|
|
755
646
|
*
|
|
756
647
|
*/
|
|
757
|
-
export const
|
|
648
|
+
export const deleteInviteMutation = (options) => {
|
|
758
649
|
const mutationOptions = {
|
|
759
650
|
mutationFn: async (fnOptions) => {
|
|
760
|
-
const { data } = await
|
|
651
|
+
const { data } = await InvitesService.deleteInvite({
|
|
761
652
|
...options,
|
|
762
653
|
...fnOptions,
|
|
763
654
|
throwOnError: true
|
|
@@ -767,16 +658,15 @@ export const deleteTagMutation = (options) => {
|
|
|
767
658
|
};
|
|
768
659
|
return mutationOptions;
|
|
769
660
|
};
|
|
770
|
-
export const
|
|
661
|
+
export const queryClusterQueryKey = (options) => createQueryKey('queryCluster', options);
|
|
771
662
|
/**
|
|
772
|
-
*
|
|
773
|
-
*
|
|
774
|
-
* Returns detailed information for a specific tag in a repository, including manifest details, size, and URI. This endpoint is available to all users in the organization.
|
|
663
|
+
* Query Kubernetes cluster API
|
|
775
664
|
*
|
|
665
|
+
* An API endpoint for directly querying a Kubernetes cluster API without requiring kubectl or other tools. This endpoint is ideal for automation and scripting, as well as for internal use in fetching data for the Cloudfleet Console. It acts as a passthrough to the Kubernetes API, allowing access to any valid Kubernetes API endpoint, including those not exposed in the Cloudfleet Console. The endpoint is strictly read-only, ensuring no modifications to the cluster state. It is accessible to all users within the organization and uses the same authentication mechanisms as other Cloudfleet API endpoints.
|
|
776
666
|
*/
|
|
777
|
-
export const
|
|
667
|
+
export const queryClusterOptions = (options) => queryOptions({
|
|
778
668
|
queryFn: async ({ queryKey, signal }) => {
|
|
779
|
-
const { data } = await
|
|
669
|
+
const { data } = await ClustersService.queryCluster({
|
|
780
670
|
...options,
|
|
781
671
|
...queryKey[0],
|
|
782
672
|
signal,
|
|
@@ -784,18 +674,20 @@ export const getTagOptions = (options) => queryOptions({
|
|
|
784
674
|
});
|
|
785
675
|
return data;
|
|
786
676
|
},
|
|
787
|
-
queryKey:
|
|
677
|
+
queryKey: queryClusterQueryKey(options)
|
|
788
678
|
});
|
|
789
|
-
export const
|
|
679
|
+
export const listFleetsQueryKey = (options) => createQueryKey('listFleets', options);
|
|
790
680
|
/**
|
|
791
|
-
* List
|
|
681
|
+
* List fleets.
|
|
792
682
|
*
|
|
793
|
-
* Returns
|
|
683
|
+
* Returns a list of fleets belonging to the cluster. For more information, see [Fleets](https://cloudfleet.ai/docs/cloud-infrastructure/fleets/) section of documentaiton.
|
|
684
|
+
*
|
|
685
|
+
* This endpoint is available to all users in the organization.
|
|
794
686
|
*
|
|
795
687
|
*/
|
|
796
|
-
export const
|
|
688
|
+
export const listFleetsOptions = (options) => queryOptions({
|
|
797
689
|
queryFn: async ({ queryKey, signal }) => {
|
|
798
|
-
const { data } = await
|
|
690
|
+
const { data } = await ClustersService.listFleets({
|
|
799
691
|
...options,
|
|
800
692
|
...queryKey[0],
|
|
801
693
|
signal,
|
|
@@ -803,18 +695,22 @@ export const listTicketsOptions = (options) => queryOptions({
|
|
|
803
695
|
});
|
|
804
696
|
return data;
|
|
805
697
|
},
|
|
806
|
-
queryKey:
|
|
698
|
+
queryKey: listFleetsQueryKey(options)
|
|
807
699
|
});
|
|
808
700
|
/**
|
|
809
|
-
* Create a new
|
|
701
|
+
* Create a new fleet.
|
|
810
702
|
*
|
|
811
|
-
*
|
|
703
|
+
* Create a new fleet under the current organization. fleets allow you to to schedule workloads in cloud service provider accounts owned by you. For more information, see [Fleets](https://cloudfleet.ai/docs/cloud-infrastructure/fleets/) section of documentaiton.
|
|
704
|
+
*
|
|
705
|
+
* The cluster must be ready (status `deployed`) before a fleet can be added. Adding a fleet while the cluster is still provisioning returns `409`.
|
|
706
|
+
*
|
|
707
|
+
* This endpoint is available to administrators of the organization only.
|
|
812
708
|
*
|
|
813
709
|
*/
|
|
814
|
-
export const
|
|
710
|
+
export const createFleetMutation = (options) => {
|
|
815
711
|
const mutationOptions = {
|
|
816
712
|
mutationFn: async (fnOptions) => {
|
|
817
|
-
const { data } = await
|
|
713
|
+
const { data } = await ClustersService.createFleet({
|
|
818
714
|
...options,
|
|
819
715
|
...fnOptions,
|
|
820
716
|
throwOnError: true
|
|
@@ -825,15 +721,19 @@ export const createTicketMutation = (options) => {
|
|
|
825
721
|
return mutationOptions;
|
|
826
722
|
};
|
|
827
723
|
/**
|
|
828
|
-
*
|
|
724
|
+
* Permanently delete fleet.
|
|
829
725
|
*
|
|
830
|
-
*
|
|
726
|
+
* This endpoint will permanently delete fleet. This operation cannot be undone. Your subscription will end by the end of the current billing period and you will not be able to receive credit for unused time. For more information, see [Fleets](https://cloudfleet.ai/docs/cloud-infrastructure/fleets/) section of documentaiton.
|
|
727
|
+
*
|
|
728
|
+
* Deleting a fleet does not deprovision the cloud infrastructure it provisioned: nodes and other resources keep running. Scale the cluster down first, or remove the infrastructure manually, to avoid orphaned resources.
|
|
729
|
+
*
|
|
730
|
+
* This endpoint is available to administrators of the organization only.
|
|
831
731
|
*
|
|
832
732
|
*/
|
|
833
|
-
export const
|
|
733
|
+
export const deleteFleetMutation = (options) => {
|
|
834
734
|
const mutationOptions = {
|
|
835
735
|
mutationFn: async (fnOptions) => {
|
|
836
|
-
const { data } = await
|
|
736
|
+
const { data } = await ClustersService.deleteFleet({
|
|
837
737
|
...options,
|
|
838
738
|
...fnOptions,
|
|
839
739
|
throwOnError: true
|
|
@@ -843,13 +743,18 @@ export const closeTicketMutation = (options) => {
|
|
|
843
743
|
};
|
|
844
744
|
return mutationOptions;
|
|
845
745
|
};
|
|
846
|
-
export const
|
|
746
|
+
export const getFleetQueryKey = (options) => createQueryKey('getFleet', options);
|
|
847
747
|
/**
|
|
848
|
-
* Get
|
|
748
|
+
* Get fleet information.
|
|
749
|
+
*
|
|
750
|
+
* Returns fleet details. For more information, see [Fleets](https://cloudfleet.ai/docs/cloud-infrastructure/fleets/) section of documentaiton.
|
|
751
|
+
*
|
|
752
|
+
* This endpoint is available to all users in the organization.
|
|
753
|
+
*
|
|
849
754
|
*/
|
|
850
|
-
export const
|
|
755
|
+
export const getFleetOptions = (options) => queryOptions({
|
|
851
756
|
queryFn: async ({ queryKey, signal }) => {
|
|
852
|
-
const { data } = await
|
|
757
|
+
const { data } = await ClustersService.getFleet({
|
|
853
758
|
...options,
|
|
854
759
|
...queryKey[0],
|
|
855
760
|
signal,
|
|
@@ -857,18 +762,24 @@ export const getTicketOptions = (options) => queryOptions({
|
|
|
857
762
|
});
|
|
858
763
|
return data;
|
|
859
764
|
},
|
|
860
|
-
queryKey:
|
|
765
|
+
queryKey: getFleetQueryKey(options)
|
|
861
766
|
});
|
|
862
767
|
/**
|
|
863
|
-
*
|
|
768
|
+
* Update fleet information.
|
|
864
769
|
*
|
|
865
|
-
*
|
|
770
|
+
* This endpoint allows you to update fleet details.
|
|
771
|
+
*
|
|
772
|
+
* For more information, see [Fleets](https://cloudfleet.ai/docs/cloud-infrastructure/fleets/) section of documentaiton.
|
|
773
|
+
*
|
|
774
|
+
* This is a full overwrite: any field omitted from the request is reset to its default rather than left unchanged. The Hetzner API key is the exception: it is kept when omitted (send a new value to rotate it).
|
|
775
|
+
*
|
|
776
|
+
* This endpoint is available to administrators of the organization only.
|
|
866
777
|
*
|
|
867
778
|
*/
|
|
868
|
-
export const
|
|
779
|
+
export const updateFleetMutation = (options) => {
|
|
869
780
|
const mutationOptions = {
|
|
870
781
|
mutationFn: async (fnOptions) => {
|
|
871
|
-
const { data } = await
|
|
782
|
+
const { data } = await ClustersService.updateFleet({
|
|
872
783
|
...options,
|
|
873
784
|
...fnOptions,
|
|
874
785
|
throwOnError: true
|
|
@@ -878,13 +789,18 @@ export const replyTicketMutation = (options) => {
|
|
|
878
789
|
};
|
|
879
790
|
return mutationOptions;
|
|
880
791
|
};
|
|
881
|
-
export const
|
|
792
|
+
export const listChartsQueryKey = (options) => createQueryKey('listCharts', options);
|
|
882
793
|
/**
|
|
883
|
-
*
|
|
794
|
+
* List charts.
|
|
795
|
+
*
|
|
796
|
+
* Returns a list of charts in the cluster.
|
|
797
|
+
*
|
|
798
|
+
* This endpoint is available to all users in the organization.
|
|
799
|
+
*
|
|
884
800
|
*/
|
|
885
|
-
export const
|
|
801
|
+
export const listChartsOptions = (options) => queryOptions({
|
|
886
802
|
queryFn: async ({ queryKey, signal }) => {
|
|
887
|
-
const { data } = await
|
|
803
|
+
const { data } = await ClustersService.listCharts({
|
|
888
804
|
...options,
|
|
889
805
|
...queryKey[0],
|
|
890
806
|
signal,
|
|
@@ -892,18 +808,62 @@ export const getTicketAttachmentOptions = (options) => queryOptions({
|
|
|
892
808
|
});
|
|
893
809
|
return data;
|
|
894
810
|
},
|
|
895
|
-
queryKey:
|
|
811
|
+
queryKey: listChartsQueryKey(options)
|
|
896
812
|
});
|
|
897
|
-
export const listTokensQueryKey = (options) => createQueryKey('listTokens', options);
|
|
898
813
|
/**
|
|
899
|
-
*
|
|
814
|
+
* Create a new chart.
|
|
900
815
|
*
|
|
901
|
-
*
|
|
816
|
+
* Create a new chart deployment.
|
|
817
|
+
*
|
|
818
|
+
* This endpoint is available to administrators of the organization only.
|
|
902
819
|
*
|
|
903
820
|
*/
|
|
904
|
-
export const
|
|
821
|
+
export const createChartMutation = (options) => {
|
|
822
|
+
const mutationOptions = {
|
|
823
|
+
mutationFn: async (fnOptions) => {
|
|
824
|
+
const { data } = await ClustersService.createChart({
|
|
825
|
+
...options,
|
|
826
|
+
...fnOptions,
|
|
827
|
+
throwOnError: true
|
|
828
|
+
});
|
|
829
|
+
return data;
|
|
830
|
+
}
|
|
831
|
+
};
|
|
832
|
+
return mutationOptions;
|
|
833
|
+
};
|
|
834
|
+
/**
|
|
835
|
+
* Permanently delete the chart deployment from the cluster.
|
|
836
|
+
*
|
|
837
|
+
* This endpoint will permanently delete chart. This operation cannot be undone.
|
|
838
|
+
*
|
|
839
|
+
* This endpoint is available to administrators of the organization only.
|
|
840
|
+
*
|
|
841
|
+
*/
|
|
842
|
+
export const deleteChartMutation = (options) => {
|
|
843
|
+
const mutationOptions = {
|
|
844
|
+
mutationFn: async (fnOptions) => {
|
|
845
|
+
const { data } = await ClustersService.deleteChart({
|
|
846
|
+
...options,
|
|
847
|
+
...fnOptions,
|
|
848
|
+
throwOnError: true
|
|
849
|
+
});
|
|
850
|
+
return data;
|
|
851
|
+
}
|
|
852
|
+
};
|
|
853
|
+
return mutationOptions;
|
|
854
|
+
};
|
|
855
|
+
export const getChartQueryKey = (options) => createQueryKey('getChart', options);
|
|
856
|
+
/**
|
|
857
|
+
* Get chart information.
|
|
858
|
+
*
|
|
859
|
+
* Returns the details of the chart deployment.
|
|
860
|
+
*
|
|
861
|
+
* This endpoint is available to all users in the organization.
|
|
862
|
+
*
|
|
863
|
+
*/
|
|
864
|
+
export const getChartOptions = (options) => queryOptions({
|
|
905
865
|
queryFn: async ({ queryKey, signal }) => {
|
|
906
|
-
const { data } = await
|
|
866
|
+
const { data } = await ClustersService.getChart({
|
|
907
867
|
...options,
|
|
908
868
|
...queryKey[0],
|
|
909
869
|
signal,
|
|
@@ -911,20 +871,20 @@ export const listTokensOptions = (options) => queryOptions({
|
|
|
911
871
|
});
|
|
912
872
|
return data;
|
|
913
873
|
},
|
|
914
|
-
queryKey:
|
|
874
|
+
queryKey: getChartQueryKey(options)
|
|
915
875
|
});
|
|
916
876
|
/**
|
|
917
|
-
*
|
|
877
|
+
* Update chart information.
|
|
918
878
|
*
|
|
919
|
-
* This endpoint allows you to
|
|
879
|
+
* This endpoint allows you to update the values of a chart deployment.
|
|
920
880
|
*
|
|
921
881
|
* This endpoint is available to administrators of the organization only.
|
|
922
882
|
*
|
|
923
883
|
*/
|
|
924
|
-
export const
|
|
884
|
+
export const updateChartMutation = (options) => {
|
|
925
885
|
const mutationOptions = {
|
|
926
886
|
mutationFn: async (fnOptions) => {
|
|
927
|
-
const { data } = await
|
|
887
|
+
const { data } = await ClustersService.updateChart({
|
|
928
888
|
...options,
|
|
929
889
|
...fnOptions,
|
|
930
890
|
throwOnError: true
|
|
@@ -934,16 +894,39 @@ export const createTokenMutation = (options) => {
|
|
|
934
894
|
};
|
|
935
895
|
return mutationOptions;
|
|
936
896
|
};
|
|
897
|
+
export const listClustersQueryKey = (options) => createQueryKey('listClusters', options);
|
|
937
898
|
/**
|
|
938
|
-
*
|
|
899
|
+
* List clusters.
|
|
939
900
|
*
|
|
940
|
-
*
|
|
901
|
+
* Returns a list of clusters under the current organization.
|
|
902
|
+
*
|
|
903
|
+
* This endpoint is available to all users in the organization.
|
|
941
904
|
*
|
|
942
905
|
*/
|
|
943
|
-
export const
|
|
906
|
+
export const listClustersOptions = (options) => queryOptions({
|
|
907
|
+
queryFn: async ({ queryKey, signal }) => {
|
|
908
|
+
const { data } = await ClustersService.listClusters({
|
|
909
|
+
...options,
|
|
910
|
+
...queryKey[0],
|
|
911
|
+
signal,
|
|
912
|
+
throwOnError: true
|
|
913
|
+
});
|
|
914
|
+
return data;
|
|
915
|
+
},
|
|
916
|
+
queryKey: listClustersQueryKey(options)
|
|
917
|
+
});
|
|
918
|
+
/**
|
|
919
|
+
* Create a new cluster.
|
|
920
|
+
*
|
|
921
|
+
* Create a new cluster under the current organization. Clusters allow you to group resources and you can create multiple clusters under the same organization, with billing delegated to the parent organization.
|
|
922
|
+
*
|
|
923
|
+
* This endpoint is available to administrators of the organization only.
|
|
924
|
+
*
|
|
925
|
+
*/
|
|
926
|
+
export const createClusterMutation = (options) => {
|
|
944
927
|
const mutationOptions = {
|
|
945
928
|
mutationFn: async (fnOptions) => {
|
|
946
|
-
const { data } = await
|
|
929
|
+
const { data } = await ClustersService.createCluster({
|
|
947
930
|
...options,
|
|
948
931
|
...fnOptions,
|
|
949
932
|
throwOnError: true
|
|
@@ -953,16 +936,41 @@ export const deleteTokenMutation = (options) => {
|
|
|
953
936
|
};
|
|
954
937
|
return mutationOptions;
|
|
955
938
|
};
|
|
956
|
-
export const getTokenQueryKey = (options) => createQueryKey('getToken', options);
|
|
957
939
|
/**
|
|
958
|
-
*
|
|
940
|
+
* Permanently delete cluster.
|
|
959
941
|
*
|
|
960
|
-
* This endpoint
|
|
942
|
+
* This endpoint will permanently delete the cluster. This operation cannot be undone.
|
|
943
|
+
*
|
|
944
|
+
* Deleting a cluster also deletes its fleets. This does not deprovision the cloud infrastructure those fleets provisioned: nodes and other resources keep running. Scale the cluster down first, or remove the infrastructure manually, to avoid orphaned resources.
|
|
945
|
+
*
|
|
946
|
+
* This endpoint is available to administrators of the organization only.
|
|
961
947
|
*
|
|
962
948
|
*/
|
|
963
|
-
export const
|
|
949
|
+
export const deleteClusterMutation = (options) => {
|
|
950
|
+
const mutationOptions = {
|
|
951
|
+
mutationFn: async (fnOptions) => {
|
|
952
|
+
const { data } = await ClustersService.deleteCluster({
|
|
953
|
+
...options,
|
|
954
|
+
...fnOptions,
|
|
955
|
+
throwOnError: true
|
|
956
|
+
});
|
|
957
|
+
return data;
|
|
958
|
+
}
|
|
959
|
+
};
|
|
960
|
+
return mutationOptions;
|
|
961
|
+
};
|
|
962
|
+
export const getClusterQueryKey = (options) => createQueryKey('getCluster', options);
|
|
963
|
+
/**
|
|
964
|
+
* Get cluster information.
|
|
965
|
+
*
|
|
966
|
+
* Returns cluster details.
|
|
967
|
+
*
|
|
968
|
+
* This endpoint is available to all users in the organization.
|
|
969
|
+
*
|
|
970
|
+
*/
|
|
971
|
+
export const getClusterOptions = (options) => queryOptions({
|
|
964
972
|
queryFn: async ({ queryKey, signal }) => {
|
|
965
|
-
const { data } = await
|
|
973
|
+
const { data } = await ClustersService.getCluster({
|
|
966
974
|
...options,
|
|
967
975
|
...queryKey[0],
|
|
968
976
|
signal,
|
|
@@ -970,20 +978,22 @@ export const getTokenOptions = (options) => queryOptions({
|
|
|
970
978
|
});
|
|
971
979
|
return data;
|
|
972
980
|
},
|
|
973
|
-
queryKey:
|
|
981
|
+
queryKey: getClusterQueryKey(options)
|
|
974
982
|
});
|
|
975
983
|
/**
|
|
976
|
-
* Update
|
|
984
|
+
* Update cluster information.
|
|
977
985
|
*
|
|
978
|
-
* This endpoint allows you to update
|
|
986
|
+
* This endpoint allows you to update cluster details. For more information about clusters, see [Clusters](https://cloudfleet.ai/docs/cluster-management/cluster-types/) section of documentation.
|
|
987
|
+
*
|
|
988
|
+
* This is a full overwrite: any field omitted from the request is reset to its default rather than left unchanged.
|
|
979
989
|
*
|
|
980
990
|
* This endpoint is available to administrators of the organization only.
|
|
981
991
|
*
|
|
982
992
|
*/
|
|
983
|
-
export const
|
|
993
|
+
export const updateClusterMutation = (options) => {
|
|
984
994
|
const mutationOptions = {
|
|
985
995
|
mutationFn: async (fnOptions) => {
|
|
986
|
-
const { data } = await
|
|
996
|
+
const { data } = await ClustersService.updateCluster({
|
|
987
997
|
...options,
|
|
988
998
|
...fnOptions,
|
|
989
999
|
throwOnError: true
|
|
@@ -994,14 +1004,15 @@ export const updateTokenMutation = (options) => {
|
|
|
994
1004
|
return mutationOptions;
|
|
995
1005
|
};
|
|
996
1006
|
/**
|
|
997
|
-
*
|
|
1007
|
+
* Node join information for the cluster
|
|
1008
|
+
*
|
|
1009
|
+
* Returns the join information for the cluster. This information is used to add a self-managed nodes to the CFKE cluster. This endpoint is available to only admins of the organization.
|
|
998
1010
|
*
|
|
999
|
-
* Generates a new access token secret. Old secret will not be valid anymore.
|
|
1000
1011
|
*/
|
|
1001
|
-
export const
|
|
1012
|
+
export const getJoinInformationMutation = (options) => {
|
|
1002
1013
|
const mutationOptions = {
|
|
1003
1014
|
mutationFn: async (fnOptions) => {
|
|
1004
|
-
const { data } = await
|
|
1015
|
+
const { data } = await ClustersService.getJoinInformation({
|
|
1005
1016
|
...options,
|
|
1006
1017
|
...fnOptions,
|
|
1007
1018
|
throwOnError: true
|
|
@@ -1011,13 +1022,16 @@ export const regenerateTokenMutation = (options) => {
|
|
|
1011
1022
|
};
|
|
1012
1023
|
return mutationOptions;
|
|
1013
1024
|
};
|
|
1014
|
-
export const
|
|
1025
|
+
export const getUsageQueryKey = (options) => createQueryKey('getUsage', options);
|
|
1015
1026
|
/**
|
|
1016
|
-
* Get
|
|
1027
|
+
* Get billing usage information.
|
|
1028
|
+
*
|
|
1029
|
+
* Returns aggregated usage information for the organization with facets for filtering. For more information on billing and payments, see [Billing and pricing](https://cloudfleet.ai/docs/organization/billing/) section of documentaiton. This endpoint is available to all users in the organization.
|
|
1030
|
+
*
|
|
1017
1031
|
*/
|
|
1018
|
-
export const
|
|
1032
|
+
export const getUsageOptions = (options) => queryOptions({
|
|
1019
1033
|
queryFn: async ({ queryKey, signal }) => {
|
|
1020
|
-
const { data } = await
|
|
1034
|
+
const { data } = await BillingService.getUsage({
|
|
1021
1035
|
...options,
|
|
1022
1036
|
...queryKey[0],
|
|
1023
1037
|
signal,
|
|
@@ -1025,20 +1039,37 @@ export const listUserOrganizationsOptions = (options) => queryOptions({
|
|
|
1025
1039
|
});
|
|
1026
1040
|
return data;
|
|
1027
1041
|
},
|
|
1028
|
-
queryKey:
|
|
1042
|
+
queryKey: getUsageQueryKey(options)
|
|
1029
1043
|
});
|
|
1030
|
-
export const listUsersQueryKey = (options) => createQueryKey('listUsers', options);
|
|
1031
1044
|
/**
|
|
1032
|
-
*
|
|
1045
|
+
* Get Stripe client secret.
|
|
1033
1046
|
*
|
|
1034
|
-
*
|
|
1047
|
+
* Endpoint returns the Stripe secret key for the organization. This key is used to securely update the payment method in the Cloudfleet console only, please visit https://console.cloudfleet.ai. This endpoint is available to administrators of the organization only.
|
|
1035
1048
|
*
|
|
1036
|
-
|
|
1049
|
+
*/
|
|
1050
|
+
export const getPaymentMethodSecretMutation = (options) => {
|
|
1051
|
+
const mutationOptions = {
|
|
1052
|
+
mutationFn: async (fnOptions) => {
|
|
1053
|
+
const { data } = await BillingService.getPaymentMethodSecret({
|
|
1054
|
+
...options,
|
|
1055
|
+
...fnOptions,
|
|
1056
|
+
throwOnError: true
|
|
1057
|
+
});
|
|
1058
|
+
return data;
|
|
1059
|
+
}
|
|
1060
|
+
};
|
|
1061
|
+
return mutationOptions;
|
|
1062
|
+
};
|
|
1063
|
+
export const listPaymentMethodsQueryKey = (options) => createQueryKey('listPaymentMethods', options);
|
|
1064
|
+
/**
|
|
1065
|
+
* List organization payment methods.
|
|
1066
|
+
*
|
|
1067
|
+
* Returns all payment methods (cards and SEPA Direct Debit) attached to the organization, most recently added first, with the default flagged. This endpoint is available to all users in the organization.
|
|
1037
1068
|
*
|
|
1038
1069
|
*/
|
|
1039
|
-
export const
|
|
1070
|
+
export const listPaymentMethodsOptions = (options) => queryOptions({
|
|
1040
1071
|
queryFn: async ({ queryKey, signal }) => {
|
|
1041
|
-
const { data } = await
|
|
1072
|
+
const { data } = await BillingService.listPaymentMethods({
|
|
1042
1073
|
...options,
|
|
1043
1074
|
...queryKey[0],
|
|
1044
1075
|
signal,
|
|
@@ -1046,18 +1077,18 @@ export const listUsersOptions = (options) => queryOptions({
|
|
|
1046
1077
|
});
|
|
1047
1078
|
return data;
|
|
1048
1079
|
},
|
|
1049
|
-
queryKey:
|
|
1080
|
+
queryKey: listPaymentMethodsQueryKey(options)
|
|
1050
1081
|
});
|
|
1051
1082
|
/**
|
|
1052
|
-
*
|
|
1083
|
+
* Set the default payment method.
|
|
1053
1084
|
*
|
|
1054
|
-
*
|
|
1085
|
+
* Sets the given payment method as the default used for invoices and active subscriptions. Requires the Administrator role.
|
|
1055
1086
|
*
|
|
1056
1087
|
*/
|
|
1057
|
-
export const
|
|
1088
|
+
export const setDefaultPaymentMethodMutation = (options) => {
|
|
1058
1089
|
const mutationOptions = {
|
|
1059
1090
|
mutationFn: async (fnOptions) => {
|
|
1060
|
-
const { data } = await
|
|
1091
|
+
const { data } = await BillingService.setDefaultPaymentMethod({
|
|
1061
1092
|
...options,
|
|
1062
1093
|
...fnOptions,
|
|
1063
1094
|
throwOnError: true
|
|
@@ -1068,15 +1099,15 @@ export const createUserMutation = (options) => {
|
|
|
1068
1099
|
return mutationOptions;
|
|
1069
1100
|
};
|
|
1070
1101
|
/**
|
|
1071
|
-
* Delete
|
|
1102
|
+
* Delete a payment method.
|
|
1072
1103
|
*
|
|
1073
|
-
*
|
|
1104
|
+
* Detaches the given payment method from the organization. Requires the Administrator role. An organization must keep at least one payment method, so deleting the only remaining method is rejected.
|
|
1074
1105
|
*
|
|
1075
1106
|
*/
|
|
1076
|
-
export const
|
|
1107
|
+
export const deletePaymentMethodMutation = (options) => {
|
|
1077
1108
|
const mutationOptions = {
|
|
1078
1109
|
mutationFn: async (fnOptions) => {
|
|
1079
|
-
const { data } = await
|
|
1110
|
+
const { data } = await BillingService.deletePaymentMethod({
|
|
1080
1111
|
...options,
|
|
1081
1112
|
...fnOptions,
|
|
1082
1113
|
throwOnError: true
|
|
@@ -1086,18 +1117,35 @@ export const deleteUserMutation = (options) => {
|
|
|
1086
1117
|
};
|
|
1087
1118
|
return mutationOptions;
|
|
1088
1119
|
};
|
|
1089
|
-
export const
|
|
1120
|
+
export const listInvoicesQueryKey = (options) => createQueryKey('listInvoices', options);
|
|
1090
1121
|
/**
|
|
1091
|
-
*
|
|
1122
|
+
* List issued invoices.
|
|
1092
1123
|
*
|
|
1093
|
-
* Returns
|
|
1124
|
+
* Returns a list of invoices for the organization. For more information on billing and payments, see [Billing and pricing](https://cloudfleet.ai/docs/organization/billing/) section of documentaiton. This endpoint is available to all users in the organization.
|
|
1094
1125
|
*
|
|
1095
|
-
|
|
1126
|
+
*/
|
|
1127
|
+
export const listInvoicesOptions = (options) => queryOptions({
|
|
1128
|
+
queryFn: async ({ queryKey, signal }) => {
|
|
1129
|
+
const { data } = await BillingService.listInvoices({
|
|
1130
|
+
...options,
|
|
1131
|
+
...queryKey[0],
|
|
1132
|
+
signal,
|
|
1133
|
+
throwOnError: true
|
|
1134
|
+
});
|
|
1135
|
+
return data;
|
|
1136
|
+
},
|
|
1137
|
+
queryKey: listInvoicesQueryKey(options)
|
|
1138
|
+
});
|
|
1139
|
+
export const getContactQueryKey = (options) => createQueryKey('getContact', options);
|
|
1140
|
+
/**
|
|
1141
|
+
* Get organization contact and billing address information.
|
|
1142
|
+
*
|
|
1143
|
+
* Returns the organization contact and billing address information. This endpoint is available to all users in the organization.
|
|
1096
1144
|
*
|
|
1097
1145
|
*/
|
|
1098
|
-
export const
|
|
1146
|
+
export const getContactOptions = (options) => queryOptions({
|
|
1099
1147
|
queryFn: async ({ queryKey, signal }) => {
|
|
1100
|
-
const { data } = await
|
|
1148
|
+
const { data } = await BillingService.getContact({
|
|
1101
1149
|
...options,
|
|
1102
1150
|
...queryKey[0],
|
|
1103
1151
|
signal,
|
|
@@ -1105,18 +1153,56 @@ export const getUserOptions = (options) => queryOptions({
|
|
|
1105
1153
|
});
|
|
1106
1154
|
return data;
|
|
1107
1155
|
},
|
|
1108
|
-
queryKey:
|
|
1156
|
+
queryKey: getContactQueryKey(options)
|
|
1109
1157
|
});
|
|
1110
1158
|
/**
|
|
1111
|
-
* Update
|
|
1159
|
+
* Update organization contact information and billing address.
|
|
1112
1160
|
*
|
|
1113
|
-
*
|
|
1161
|
+
* This endpoint allows you to update organization details with its contact information. This endpoint is available to administrators of the organization only.
|
|
1114
1162
|
*
|
|
1115
1163
|
*/
|
|
1116
|
-
export const
|
|
1164
|
+
export const updateContactMutation = (options) => {
|
|
1117
1165
|
const mutationOptions = {
|
|
1118
1166
|
mutationFn: async (fnOptions) => {
|
|
1119
|
-
const { data } = await
|
|
1167
|
+
const { data } = await BillingService.updateContact({
|
|
1168
|
+
...options,
|
|
1169
|
+
...fnOptions,
|
|
1170
|
+
throwOnError: true
|
|
1171
|
+
});
|
|
1172
|
+
return data;
|
|
1173
|
+
}
|
|
1174
|
+
};
|
|
1175
|
+
return mutationOptions;
|
|
1176
|
+
};
|
|
1177
|
+
export const getCreditsQueryKey = (options) => createQueryKey('getCredits', options);
|
|
1178
|
+
/**
|
|
1179
|
+
* Get applied promotional credits
|
|
1180
|
+
*
|
|
1181
|
+
* Returns applied promotional credits for the organization. For more information on billing and payments, see [Billing and pricing](https://cloudfleet.ai/docs/organization/billing/) section of documentaiton. This endpoint is available to all users in the organization.
|
|
1182
|
+
*
|
|
1183
|
+
*/
|
|
1184
|
+
export const getCreditsOptions = (options) => queryOptions({
|
|
1185
|
+
queryFn: async ({ queryKey, signal }) => {
|
|
1186
|
+
const { data } = await BillingService.getCredits({
|
|
1187
|
+
...options,
|
|
1188
|
+
...queryKey[0],
|
|
1189
|
+
signal,
|
|
1190
|
+
throwOnError: true
|
|
1191
|
+
});
|
|
1192
|
+
return data;
|
|
1193
|
+
},
|
|
1194
|
+
queryKey: getCreditsQueryKey(options)
|
|
1195
|
+
});
|
|
1196
|
+
/**
|
|
1197
|
+
* Redeem promotional credits code.
|
|
1198
|
+
*
|
|
1199
|
+
* Applies promotional credits for the organization. For more information on billing and payments, see [Billing and pricing](https://cloudfleet.ai/docs/organization/billing/) section of documentaiton. This endpoint is available to all users in the organization.
|
|
1200
|
+
*
|
|
1201
|
+
*/
|
|
1202
|
+
export const redeemCreditsMutation = (options) => {
|
|
1203
|
+
const mutationOptions = {
|
|
1204
|
+
mutationFn: async (fnOptions) => {
|
|
1205
|
+
const { data } = await BillingService.redeemCredits({
|
|
1120
1206
|
...options,
|
|
1121
1207
|
...fnOptions,
|
|
1122
1208
|
throwOnError: true
|