@cloudfleet/sdk 0.0.1-869c561 → 0.0.1-882a962

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.
Files changed (73) hide show
  1. package/README.md +26 -2
  2. package/dist/@tanstack/react-query.gen.d.ts +1199 -0
  3. package/dist/@tanstack/react-query.gen.d.ts.map +1 -0
  4. package/dist/@tanstack/react-query.gen.js +1215 -0
  5. package/dist/@tanstack/react-query.gen.js.map +1 -0
  6. package/dist/client/client.gen.d.ts +3 -0
  7. package/dist/client/client.gen.d.ts.map +1 -0
  8. package/dist/client/client.gen.js +217 -0
  9. package/dist/client/client.gen.js.map +1 -0
  10. package/dist/client/index.d.ts +9 -0
  11. package/dist/client/index.d.ts.map +1 -0
  12. package/dist/client/index.js +7 -0
  13. package/dist/client/index.js.map +1 -0
  14. package/dist/client/types.gen.d.ts +121 -0
  15. package/dist/client/types.gen.d.ts.map +1 -0
  16. package/dist/client/types.gen.js +3 -0
  17. package/dist/client/types.gen.js.map +1 -0
  18. package/dist/client/utils.gen.d.ts +38 -0
  19. package/dist/client/utils.gen.d.ts.map +1 -0
  20. package/dist/client/utils.gen.js +229 -0
  21. package/dist/client/utils.gen.js.map +1 -0
  22. package/dist/client.gen.d.ts +4 -4
  23. package/dist/client.gen.d.ts.map +1 -1
  24. package/dist/client.gen.js +2 -4
  25. package/dist/client.gen.js.map +1 -1
  26. package/dist/core/auth.gen.d.ts +19 -0
  27. package/dist/core/auth.gen.d.ts.map +1 -0
  28. package/dist/core/auth.gen.js +15 -0
  29. package/dist/core/auth.gen.js.map +1 -0
  30. package/dist/core/bodySerializer.gen.d.ts +26 -0
  31. package/dist/core/bodySerializer.gen.d.ts.map +1 -0
  32. package/dist/core/bodySerializer.gen.js +58 -0
  33. package/dist/core/bodySerializer.gen.js.map +1 -0
  34. package/dist/core/params.gen.d.ts +44 -0
  35. package/dist/core/params.gen.d.ts.map +1 -0
  36. package/dist/core/params.gen.js +101 -0
  37. package/dist/core/params.gen.js.map +1 -0
  38. package/dist/core/pathSerializer.gen.d.ts +34 -0
  39. package/dist/core/pathSerializer.gen.d.ts.map +1 -0
  40. package/dist/core/pathSerializer.gen.js +107 -0
  41. package/dist/core/pathSerializer.gen.js.map +1 -0
  42. package/dist/core/queryKeySerializer.gen.d.ts +19 -0
  43. package/dist/core/queryKeySerializer.gen.d.ts.map +1 -0
  44. package/dist/core/queryKeySerializer.gen.js +93 -0
  45. package/dist/core/queryKeySerializer.gen.js.map +1 -0
  46. package/dist/core/serverSentEvents.gen.d.ts +72 -0
  47. package/dist/core/serverSentEvents.gen.d.ts.map +1 -0
  48. package/dist/core/serverSentEvents.gen.js +133 -0
  49. package/dist/core/serverSentEvents.gen.js.map +1 -0
  50. package/dist/core/types.gen.d.ts +79 -0
  51. package/dist/core/types.gen.d.ts.map +1 -0
  52. package/dist/core/types.gen.js +3 -0
  53. package/dist/core/types.gen.js.map +1 -0
  54. package/dist/core/utils.gen.d.ts +20 -0
  55. package/dist/core/utils.gen.d.ts.map +1 -0
  56. package/dist/core/utils.gen.js +88 -0
  57. package/dist/core/utils.gen.js.map +1 -0
  58. package/dist/schemas.gen.d.ts +1615 -663
  59. package/dist/schemas.gen.d.ts.map +1 -1
  60. package/dist/schemas.gen.js +2974 -727
  61. package/dist/schemas.gen.js.map +1 -1
  62. package/dist/sdk.gen.d.ts +316 -168
  63. package/dist/sdk.gen.d.ts.map +1 -1
  64. package/dist/sdk.gen.js +441 -335
  65. package/dist/sdk.gen.js.map +1 -1
  66. package/dist/services/kubernetes/api.d.ts +20 -20
  67. package/dist/types.gen.d.ts +1826 -830
  68. package/dist/types.gen.d.ts.map +1 -1
  69. package/dist/zod.gen.d.ts +3843 -2736
  70. package/dist/zod.gen.d.ts.map +1 -1
  71. package/dist/zod.gen.js +1433 -995
  72. package/dist/zod.gen.js.map +1 -1
  73. package/package.json +28 -9
package/dist/sdk.gen.js CHANGED
@@ -1,91 +1,134 @@
1
1
  // This file is auto-generated by @hey-api/openapi-ts
2
- import { client as _heyApiClient } from './client.gen';
3
- export class BillingService {
2
+ import { formDataBodySerializer } from './client';
3
+ import { client } from './client.gen';
4
+ export class UsersService {
4
5
  /**
5
- * Get billing usage information.
6
- * Returns aggregated usage information 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.
6
+ * Get a list of organizations the user belongs to. Used during authentication process.
7
+ */
8
+ static listUserOrganizations(options) {
9
+ return (options.client ?? client).get({ url: '/users/organizations/{email}', ...options });
10
+ }
11
+ /**
12
+ * List users in organization.
13
+ *
14
+ * 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.
15
+ *
16
+ * This endpoint is available to all users in the organization.
7
17
  *
8
18
  */
9
- static getUsage(options) {
10
- return (options?.client ?? _heyApiClient).get({
11
- url: '/billing/usage',
12
- ...options
13
- });
19
+ static listUsers(options) {
20
+ return (options?.client ?? client).get({ url: '/users', ...options });
14
21
  }
15
22
  /**
16
- * Get billing balance information.
17
- * Returns the current balance of the organization in USD as a floating-point number. 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.
23
+ * Create a new user.
24
+ *
25
+ * 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.
18
26
  *
19
27
  */
20
- static getBalance(options) {
21
- return (options?.client ?? _heyApiClient).get({
22
- url: '/billing/balance',
23
- ...options
28
+ static createUser(options) {
29
+ return (options.client ?? client).post({
30
+ url: '/users',
31
+ ...options,
32
+ headers: {
33
+ 'Content-Type': 'application/json',
34
+ ...options.headers
35
+ }
24
36
  });
25
37
  }
26
38
  /**
27
- * Get organization payment method information.
28
- * Returns the information about the payment card associated with the organization with sensitive information redacted. Payment details can be updated in the Cloudfleet console only, please visit https://console.cloudfleet.ai. This endpoint is available to all users in the organization.
39
+ * Delete user by id.
40
+ *
41
+ * Sets user status to `inactive`. Inactive users cannot log in and manage organization resources. This endpoint is available to administrators of the organization only.
29
42
  *
30
43
  */
31
- static getPaymentMethod(options) {
32
- return (options?.client ?? _heyApiClient).get({
33
- url: '/billing/payment-method',
34
- ...options
35
- });
44
+ static deleteUser(options) {
45
+ return (options.client ?? client).delete({ url: '/users/{user_id}', ...options });
36
46
  }
37
47
  /**
38
- * Get Stripe client secret.
39
- * 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.
48
+ * Get user profile information by id.
49
+ *
50
+ * Returns user details including their roles. For more information on identity access management, see [Users](https://cloudfleet.ai/docs/organization/users/) section of documentaiton.
51
+ *
52
+ * This endpoint is available to all users in the organization.
40
53
  *
41
54
  */
42
- static getPaymentMethodSecret(options) {
43
- return (options?.client ?? _heyApiClient).put({
44
- url: '/billing/payment-method',
45
- ...options
46
- });
55
+ static getUser(options) {
56
+ return (options.client ?? client).get({ url: '/users/{user_id}', ...options });
47
57
  }
48
58
  /**
49
- * List issued invoices.
50
- * 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.
59
+ * Update user profile information.
60
+ *
61
+ * 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.
51
62
  *
52
63
  */
53
- static listInvoices(options) {
54
- return (options.client ?? _heyApiClient).get({
55
- url: '/billing/invoices',
56
- ...options
64
+ static updateUser(options) {
65
+ return (options.client ?? client).put({
66
+ url: '/users/{user_id}',
67
+ ...options,
68
+ headers: {
69
+ 'Content-Type': 'application/json',
70
+ ...options.headers
71
+ }
57
72
  });
58
73
  }
74
+ }
75
+ export class TokensService {
59
76
  /**
60
- * Get invoice information.
61
- * Returns a single Invoice as HTML referenced by id. This endpoint is available to all users in the organization.
77
+ * List access tokens in organization.
78
+ *
79
+ * 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.
62
80
  *
63
81
  */
64
- static getInvoice(options) {
65
- return (options.client ?? _heyApiClient).get({
66
- url: '/billing/invoices/{id}',
67
- ...options
68
- });
82
+ static listTokens(options) {
83
+ return (options?.client ?? client).get({ url: '/tokens', ...options });
69
84
  }
70
85
  /**
71
- * Get organization contact and billing address information.
72
- * Returns the organization contact and billing address information. This endpoint is available to all users in the organization.
86
+ * Create a new access token.
87
+ *
88
+ * 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.
89
+ *
90
+ * This endpoint is available to administrators of the organization only.
73
91
  *
74
92
  */
75
- static getContact(options) {
76
- return (options?.client ?? _heyApiClient).get({
77
- url: '/billing/contact',
78
- ...options
93
+ static createToken(options) {
94
+ return (options.client ?? client).post({
95
+ url: '/tokens',
96
+ ...options,
97
+ headers: {
98
+ 'Content-Type': 'application/json',
99
+ ...options.headers
100
+ }
79
101
  });
80
102
  }
81
103
  /**
82
- * Update organization contact information and billing address.
83
- * This endpoint allows you to update organization details with its contact information. This endpoint is available to administrators of the organization only.
104
+ * Permanently delete access token.
105
+ *
106
+ * 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.
84
107
  *
85
108
  */
86
- static updateContact(options) {
87
- return (options.client ?? _heyApiClient).put({
88
- url: '/billing/contact',
109
+ static deleteToken(options) {
110
+ return (options.client ?? client).delete({ url: '/tokens/{token_id}', ...options });
111
+ }
112
+ /**
113
+ * Get access token information.
114
+ *
115
+ * 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.
116
+ *
117
+ */
118
+ static getToken(options) {
119
+ return (options.client ?? client).get({ url: '/tokens/{token_id}', ...options });
120
+ }
121
+ /**
122
+ * Update access token information.
123
+ *
124
+ * 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.
125
+ *
126
+ * This endpoint is available to administrators of the organization only.
127
+ *
128
+ */
129
+ static updateToken(options) {
130
+ return (options.client ?? client).put({
131
+ url: '/tokens/{token_id}',
89
132
  ...options,
90
133
  headers: {
91
134
  'Content-Type': 'application/json',
@@ -94,56 +137,139 @@ export class BillingService {
94
137
  });
95
138
  }
96
139
  /**
97
- * Get applied promotional credits
98
- * 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.
140
+ * Regenerate access token secret key.
99
141
  *
142
+ * Generates a new access token secret. Old secret will not be valid anymore.
100
143
  */
101
- static getCredits(options) {
102
- return (options?.client ?? _heyApiClient).get({
103
- url: '/billing/credits',
104
- ...options
144
+ static regenerateToken(options) {
145
+ return (options.client ?? client).put({ url: '/tokens/{token_id}/secret', ...options });
146
+ }
147
+ }
148
+ export class TicketsService {
149
+ /**
150
+ * List tickets for the current organization.
151
+ *
152
+ * Returns all tickets belonging to the caller's organization, newest first.
153
+ *
154
+ */
155
+ static listTickets(options) {
156
+ return (options?.client ?? client).get({ url: '/tickets', ...options });
157
+ }
158
+ /**
159
+ * Create a new support ticket.
160
+ *
161
+ * 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).
162
+ *
163
+ */
164
+ static createTicket(options) {
165
+ return (options.client ?? client).post({
166
+ ...formDataBodySerializer,
167
+ url: '/tickets',
168
+ ...options,
169
+ headers: {
170
+ 'Content-Type': null,
171
+ ...options.headers
172
+ }
105
173
  });
106
174
  }
107
175
  /**
108
- * Redeem promotional credits code.
109
- * 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.
176
+ * Close a ticket (soft close).
177
+ *
178
+ * Marks the ticket as closed. Closed is a terminal state — users cannot reply to a closed ticket; a new ticket must be opened instead.
110
179
  *
111
180
  */
112
- static redeemCredits(options) {
113
- return (options.client ?? _heyApiClient).post({
114
- url: '/billing/credits',
181
+ static closeTicket(options) {
182
+ return (options.client ?? client).delete({ url: '/tickets/{ticket_id}', ...options });
183
+ }
184
+ /**
185
+ * Get a ticket and its messages.
186
+ */
187
+ static getTicket(options) {
188
+ return (options.client ?? client).get({ url: '/tickets/{ticket_id}', ...options });
189
+ }
190
+ /**
191
+ * Append a customer reply to a ticket.
192
+ *
193
+ * Multipart form-data with a JSON-encoded `payload` field carrying `body`, plus up to 3 `attachments` files. Returns 409 if the ticket is closed.
194
+ *
195
+ */
196
+ static replyTicket(options) {
197
+ return (options.client ?? client).post({
198
+ ...formDataBodySerializer,
199
+ url: '/tickets/{ticket_id}/messages',
115
200
  ...options,
116
201
  headers: {
117
- 'Content-Type': 'application/json',
202
+ 'Content-Type': null,
118
203
  ...options.headers
119
204
  }
120
205
  });
121
206
  }
207
+ /**
208
+ * Download a ticket attachment.
209
+ */
210
+ static getTicketAttachment(options) {
211
+ return (options.client ?? client).get({ url: '/tickets/{ticket_id}/attachments/{attachment_id}', ...options });
212
+ }
122
213
  }
123
- export class ClustersService {
214
+ export class RegistryService {
124
215
  /**
125
- * List charts.
126
- * Returns a list of charts in the cluster.
216
+ * List repositories
217
+ *
218
+ * Returns a list of repositories in the registry across all regions. This endpoint is available to all users in the organization.
219
+ *
220
+ */
221
+ static listRepositories(options) {
222
+ return (options?.client ?? client).get({ url: '/registry', ...options });
223
+ }
224
+ /**
225
+ * List tags for a repository
226
+ *
227
+ * 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.
228
+ *
229
+ */
230
+ static listTags(options) {
231
+ return (options.client ?? client).get({ url: '/registry/{region}/{repository}', ...options });
232
+ }
233
+ /**
234
+ * Delete tag
235
+ *
236
+ * Permanently deletes a specific tag from a repository. This endpoint is available to administrators of the organization only.
237
+ *
238
+ */
239
+ static deleteTag(options) {
240
+ return (options.client ?? client).delete({ url: '/registry/{region}/{repository}/{tag}', ...options });
241
+ }
242
+ /**
243
+ * Get tag details
244
+ *
245
+ * 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.
246
+ *
247
+ */
248
+ static getTag(options) {
249
+ return (options.client ?? client).get({ url: '/registry/{region}/{repository}/{tag}', ...options });
250
+ }
251
+ }
252
+ export class OrganizationService {
253
+ /**
254
+ * Get organization information.
255
+ *
256
+ * Returns organization details including quota. For more information about quotas, see [Quotas and limits](https://cloudfleet.ai/docs/organization/quotas/) section of documentaiton.
127
257
  *
128
258
  * This endpoint is available to all users in the organization.
129
259
  *
130
260
  */
131
- static listCharts(options) {
132
- return (options.client ?? _heyApiClient).get({
133
- url: '/clusters/{cluster_id}/charts',
134
- ...options
135
- });
261
+ static getOrganization(options) {
262
+ return (options?.client ?? client).get({ url: '/organization', ...options });
136
263
  }
137
264
  /**
138
- * Create a new chart.
139
- * Create a new chart deployment.
265
+ * Create a new organization / Cloudfleet account signup.
140
266
  *
141
- * This endpoint is available to administrators of the organization only.
267
+ * This endpoint allows you to create a new Cloudfleet organization and an administrator user.
142
268
  *
143
269
  */
144
- static createChart(options) {
145
- return (options.client ?? _heyApiClient).post({
146
- url: '/clusters/{cluster_id}/charts',
270
+ static createOrganization(options) {
271
+ return (options.client ?? client).post({
272
+ url: '/organization',
147
273
  ...options,
148
274
  headers: {
149
275
  'Content-Type': 'application/json',
@@ -152,41 +278,95 @@ export class ClustersService {
152
278
  });
153
279
  }
154
280
  /**
155
- * Permanently delete the chart deployment from the cluster.
156
- * This endpoint will permanently delete chart. This operation cannot be undone.
281
+ * Get the organization's consent status for the new Basic price.
157
282
  *
158
- * This endpoint is available to administrators of the organization only.
283
+ * 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.
284
+ *
285
+ * This endpoint is available to all users in the organization and drives the consent dialog in the console.
159
286
  *
160
287
  */
161
- static deleteChart(options) {
162
- return (options.client ?? _heyApiClient).delete({
163
- url: '/clusters/{cluster_id}/charts/{chart_name}',
164
- ...options
288
+ static getBasicPriceConsent(options) {
289
+ return (options?.client ?? client).get({ url: '/organization/basic-price-consent', ...options });
290
+ }
291
+ /**
292
+ * Record an administrator's decision on the new Basic price.
293
+ *
294
+ * 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.
295
+ *
296
+ */
297
+ static setBasicPriceConsent(options) {
298
+ return (options.client ?? client).post({
299
+ url: '/organization/basic-price-consent',
300
+ ...options,
301
+ headers: {
302
+ 'Content-Type': 'application/json',
303
+ ...options.headers
304
+ }
165
305
  });
166
306
  }
307
+ }
308
+ export class McpService {
167
309
  /**
168
- * Get chart information.
169
- * Returns the details of the chart deployment.
310
+ * MCP endpoint
311
+ *
312
+ * MCP endpoint for handling Model Context Protocol JSON-RPC 2.0 messages.
313
+ */
314
+ static postMcp(options) {
315
+ return (options.client ?? client).post({
316
+ url: '/mcp',
317
+ ...options,
318
+ headers: {
319
+ 'Content-Type': 'application/json',
320
+ ...options.headers
321
+ }
322
+ });
323
+ }
324
+ }
325
+ export class ChartsMarketplaceService {
326
+ /**
327
+ * List chart listings available in the marketplace.
328
+ *
329
+ * Returns a list of available charts in the marketplace.
170
330
  *
171
331
  * This endpoint is available to all users in the organization.
172
332
  *
173
333
  */
174
- static getChart(options) {
175
- return (options.client ?? _heyApiClient).get({
176
- url: '/clusters/{cluster_id}/charts/{chart_name}',
177
- ...options
178
- });
334
+ static listMarketplaceCharts(options) {
335
+ return (options?.client ?? client).get({ url: '/marketplace', ...options });
179
336
  }
180
337
  /**
181
- * Update chart information.
182
- * This endpoint allows you to update the values of a chart deployment.
338
+ * Get chart files for a specific version channel.
183
339
  *
184
- * This endpoint is available to administrators of the organization only.
340
+ * Returns the Chart.yaml, values.yaml, and values.schema.json files for the latest version matching the specified version channel.
341
+ *
342
+ * Version channels use patterns like "1.31.x-cfke.x" to match the latest patch version, or "1.x.x-cfke.x" to match the latest minor version.
343
+ *
344
+ * This endpoint is available to all users in the organization.
185
345
  *
186
346
  */
187
- static updateChart(options) {
188
- return (options.client ?? _heyApiClient).put({
189
- url: '/clusters/{cluster_id}/charts/{chart_name}',
347
+ static getMarketplaceChartFiles(options) {
348
+ return (options.client ?? client).get({ url: '/marketplace/{chart_name}/files/{version_channel}', ...options });
349
+ }
350
+ }
351
+ export class InvitesService {
352
+ /**
353
+ * List invites.
354
+ *
355
+ * Returns a list of pending (non-expired) invites under the current organization. This endpoint is available to administrators of the organization only.
356
+ *
357
+ */
358
+ static listInvites(options) {
359
+ return (options?.client ?? client).get({ url: '/invites', ...options });
360
+ }
361
+ /**
362
+ * Create a new invite.
363
+ *
364
+ * 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.
365
+ *
366
+ */
367
+ static createInvite(options) {
368
+ return (options.client ?? client).post({
369
+ url: '/invites',
190
370
  ...options,
191
371
  headers: {
192
372
  'Content-Type': 'application/json',
@@ -194,28 +374,57 @@ export class ClustersService {
194
374
  }
195
375
  });
196
376
  }
377
+ /**
378
+ * Get invite information.
379
+ *
380
+ * 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.
381
+ *
382
+ */
383
+ static getInvite(options) {
384
+ return (options.client ?? client).get({ url: '/invites/{code}', ...options });
385
+ }
386
+ /**
387
+ * Permanently delete invite.
388
+ *
389
+ * Permanently deletes invite from the organization. This endpoint is available to administrators of the organization only.
390
+ *
391
+ */
392
+ static deleteInvite(options) {
393
+ return (options.client ?? client).delete({ url: '/invites/{email}', ...options });
394
+ }
395
+ }
396
+ export class ClustersService {
397
+ /**
398
+ * Query Kubernetes cluster API
399
+ *
400
+ * 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.
401
+ */
402
+ static queryCluster(options) {
403
+ return (options.client ?? client).get({ url: '/clusters/{cluster_id}/query', ...options });
404
+ }
197
405
  /**
198
406
  * List fleets.
407
+ *
199
408
  * Returns a list of fleets belonging to the cluster. For more information, see [Fleets](https://cloudfleet.ai/docs/cloud-infrastructure/fleets/) section of documentaiton.
200
409
  *
201
410
  * This endpoint is available to all users in the organization.
202
411
  *
203
412
  */
204
413
  static listFleets(options) {
205
- return (options.client ?? _heyApiClient).get({
206
- url: '/clusters/{cluster_id}/fleets',
207
- ...options
208
- });
414
+ return (options.client ?? client).get({ url: '/clusters/{cluster_id}/fleets', ...options });
209
415
  }
210
416
  /**
211
417
  * Create a new fleet.
418
+ *
212
419
  * 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.
213
420
  *
421
+ * The cluster must be ready (status `deployed`) before a fleet can be added. Adding a fleet while the cluster is still provisioning returns `409`.
422
+ *
214
423
  * This endpoint is available to administrators of the organization only.
215
424
  *
216
425
  */
217
426
  static createFleet(options) {
218
- return (options.client ?? _heyApiClient).post({
427
+ return (options.client ?? client).post({
219
428
  url: '/clusters/{cluster_id}/fleets',
220
429
  ...options,
221
430
  headers: {
@@ -226,43 +435,42 @@ export class ClustersService {
226
435
  }
227
436
  /**
228
437
  * Permanently delete fleet.
229
- * 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.
438
+ *
439
+ * 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.
440
+ *
441
+ * 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.
230
442
  *
231
443
  * This endpoint is available to administrators of the organization only.
232
444
  *
233
445
  */
234
446
  static deleteFleet(options) {
235
- return (options.client ?? _heyApiClient).delete({
236
- url: '/clusters/{cluster_id}/fleets/{fleet_name}',
237
- ...options
238
- });
447
+ return (options.client ?? client).delete({ url: '/clusters/{cluster_id}/fleets/{fleet_name}', ...options });
239
448
  }
240
449
  /**
241
450
  * Get fleet information.
451
+ *
242
452
  * Returns fleet details. For more information, see [Fleets](https://cloudfleet.ai/docs/cloud-infrastructure/fleets/) section of documentaiton.
243
453
  *
244
454
  * This endpoint is available to all users in the organization.
245
455
  *
246
456
  */
247
457
  static getFleet(options) {
248
- return (options.client ?? _heyApiClient).get({
249
- url: '/clusters/{cluster_id}/fleets/{fleet_name}',
250
- ...options
251
- });
458
+ return (options.client ?? client).get({ url: '/clusters/{cluster_id}/fleets/{fleet_name}', ...options });
252
459
  }
253
460
  /**
254
461
  * Update fleet information.
255
- * This endpoint allows you to update fleet details.
256
462
  *
257
- * 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`.
463
+ * This endpoint allows you to update fleet details.
258
464
  *
259
465
  * For more information, see [Fleets](https://cloudfleet.ai/docs/cloud-infrastructure/fleets/) section of documentaiton.
260
466
  *
467
+ * 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).
468
+ *
261
469
  * This endpoint is available to administrators of the organization only.
262
470
  *
263
471
  */
264
472
  static updateFleet(options) {
265
- return (options.client ?? _heyApiClient).put({
473
+ return (options.client ?? client).put({
266
474
  url: '/clusters/{cluster_id}/fleets/{fleet_name}',
267
475
  ...options,
268
476
  headers: {
@@ -272,38 +480,27 @@ export class ClustersService {
272
480
  });
273
481
  }
274
482
  /**
275
- * Query Kubernetes cluster API
276
- * 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.
277
- */
278
- static queryCluster(options) {
279
- return (options.client ?? _heyApiClient).get({
280
- url: '/clusters/{cluster_id}/query',
281
- ...options
282
- });
283
- }
284
- /**
285
- * List clusters.
286
- * 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.
483
+ * List charts.
484
+ *
485
+ * Returns a list of charts in the cluster.
287
486
  *
288
487
  * This endpoint is available to all users in the organization.
289
488
  *
290
489
  */
291
- static listClusters(options) {
292
- return (options?.client ?? _heyApiClient).get({
293
- url: '/clusters',
294
- ...options
295
- });
490
+ static listCharts(options) {
491
+ return (options.client ?? client).get({ url: '/clusters/{cluster_id}/charts', ...options });
296
492
  }
297
493
  /**
298
- * Create a new cluster.
299
- * 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.
494
+ * Create a new chart.
495
+ *
496
+ * Create a new chart deployment.
300
497
  *
301
498
  * This endpoint is available to administrators of the organization only.
302
499
  *
303
500
  */
304
- static createCluster(options) {
305
- return (options.client ?? _heyApiClient).post({
306
- url: '/clusters',
501
+ static createChart(options) {
502
+ return (options.client ?? client).post({
503
+ url: '/clusters/{cluster_id}/charts',
307
504
  ...options,
308
505
  headers: {
309
506
  'Content-Type': 'application/json',
@@ -312,41 +509,38 @@ export class ClustersService {
312
509
  });
313
510
  }
314
511
  /**
315
- * Permanently delete cluster.
316
- * This endpoint will permanently delete the cluster. This operation cannot be undone.
512
+ * Permanently delete the chart deployment from the cluster.
513
+ *
514
+ * This endpoint will permanently delete chart. This operation cannot be undone.
317
515
  *
318
516
  * This endpoint is available to administrators of the organization only.
319
517
  *
320
518
  */
321
- static deleteCluster(options) {
322
- return (options.client ?? _heyApiClient).delete({
323
- url: '/clusters/{cluster_id}',
324
- ...options
325
- });
519
+ static deleteChart(options) {
520
+ return (options.client ?? client).delete({ url: '/clusters/{cluster_id}/charts/{chart_name}', ...options });
326
521
  }
327
522
  /**
328
- * Get cluster information.
329
- * 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.
523
+ * Get chart information.
524
+ *
525
+ * Returns the details of the chart deployment.
330
526
  *
331
527
  * This endpoint is available to all users in the organization.
332
528
  *
333
529
  */
334
- static getCluster(options) {
335
- return (options.client ?? _heyApiClient).get({
336
- url: '/clusters/{cluster_id}',
337
- ...options
338
- });
530
+ static getChart(options) {
531
+ return (options.client ?? client).get({ url: '/clusters/{cluster_id}/charts/{chart_name}', ...options });
339
532
  }
340
533
  /**
341
- * Update cluster information.
342
- * This endpoint allows you to update cluster details, including quota and cluster status. For more information about clusters, see [Clusters](https://cloudfleet.ai/docs/cluster-management/cluster-types/) section of documentaiton.
534
+ * Update chart information.
535
+ *
536
+ * This endpoint allows you to update the values of a chart deployment.
343
537
  *
344
538
  * This endpoint is available to administrators of the organization only.
345
539
  *
346
540
  */
347
- static updateCluster(options) {
348
- return (options.client ?? _heyApiClient).put({
349
- url: '/clusters/{cluster_id}',
541
+ static updateChart(options) {
542
+ return (options.client ?? client).put({
543
+ url: '/clusters/{cluster_id}/charts/{chart_name}',
350
544
  ...options,
351
545
  headers: {
352
546
  'Content-Type': 'application/json',
@@ -355,37 +549,27 @@ export class ClustersService {
355
549
  });
356
550
  }
357
551
  /**
358
- * Node join information for the cluster
359
- * 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.
552
+ * List clusters.
360
553
  *
361
- */
362
- static getJoinInformation(options) {
363
- return (options.client ?? _heyApiClient).post({
364
- url: '/clusters/{cluster_id}/join_information',
365
- ...options
366
- });
367
- }
368
- }
369
- export class InvitesService {
370
- /**
371
- * List invites.
372
- * Returns a list of invites under the current organization. This endpoint is available to all users in the organization.
554
+ * Returns a list of clusters under the current organization.
555
+ *
556
+ * This endpoint is available to all users in the organization.
373
557
  *
374
558
  */
375
- static listInvites(options) {
376
- return (options?.client ?? _heyApiClient).get({
377
- url: '/invites',
378
- ...options
379
- });
559
+ static listClusters(options) {
560
+ return (options?.client ?? client).get({ url: '/clusters', ...options });
380
561
  }
381
562
  /**
382
- * Create a new invite.
383
- * 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.
563
+ * Create a new cluster.
564
+ *
565
+ * 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.
566
+ *
567
+ * This endpoint is available to administrators of the organization only.
384
568
  *
385
569
  */
386
- static createInvite(options) {
387
- return (options.client ?? _heyApiClient).post({
388
- url: '/invites',
570
+ static createCluster(options) {
571
+ return (options.client ?? client).post({
572
+ url: '/clusters',
389
573
  ...options,
390
574
  headers: {
391
575
  'Content-Type': 'application/json',
@@ -394,78 +578,42 @@ export class InvitesService {
394
578
  });
395
579
  }
396
580
  /**
397
- * Get invite information.
398
- * Returns invite details.
581
+ * Permanently delete cluster.
399
582
  *
400
- */
401
- static getInvite(options) {
402
- return (options.client ?? _heyApiClient).get({
403
- url: '/invites/{code}',
404
- ...options
405
- });
406
- }
407
- /**
408
- * Permanently delete invite.
409
- * Permanently deletes invite from the organization. This endpoint is available to administrators of the organization only.
583
+ * This endpoint will permanently delete the cluster. This operation cannot be undone.
410
584
  *
411
- */
412
- static deleteInvite(options) {
413
- return (options.client ?? _heyApiClient).delete({
414
- url: '/invites/{email}',
415
- ...options
416
- });
417
- }
418
- }
419
- export class ChartsMarketplaceService {
420
- /**
421
- * List chart listings available in the marketplace.
422
- * Returns a list of available charts in the marketplace.
585
+ * 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.
423
586
  *
424
- * This endpoint is available to all users in the organization.
587
+ * This endpoint is available to administrators of the organization only.
425
588
  *
426
589
  */
427
- static listMarketplaceCharts(options) {
428
- return (options?.client ?? _heyApiClient).get({
429
- url: '/marketplace',
430
- ...options
431
- });
590
+ static deleteCluster(options) {
591
+ return (options.client ?? client).delete({ url: '/clusters/{cluster_id}', ...options });
432
592
  }
433
593
  /**
434
- * Get chart listing details.
435
- * Returns details of the chart listing.
594
+ * Get cluster information.
595
+ *
596
+ * Returns cluster details.
436
597
  *
437
598
  * This endpoint is available to all users in the organization.
438
599
  *
439
600
  */
440
- static getMarketplaceChart(options) {
441
- return (options.client ?? _heyApiClient).get({
442
- url: '/marketplace/{listing_id}',
443
- ...options
444
- });
601
+ static getCluster(options) {
602
+ return (options.client ?? client).get({ url: '/clusters/{cluster_id}', ...options });
445
603
  }
446
- }
447
- export class OrganizationService {
448
604
  /**
449
- * Get organization information.
450
- * Returns organization details including quota. For more information about quotas, see [Quotas and limits](https://cloudfleet.ai/docs/organization/quotas/) section of documentaiton.
605
+ * Update cluster information.
451
606
  *
452
- * This endpoint is available to all users in the organization.
607
+ * 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.
453
608
  *
454
- */
455
- static getOrganization(options) {
456
- return (options?.client ?? _heyApiClient).get({
457
- url: '/organization',
458
- ...options
459
- });
460
- }
461
- /**
462
- * Create a new organization / Cloudfleet account signup.
463
- * This endpoint allows you to create a new Cloudfleet organization and an administrator user.
609
+ * This is a full overwrite: any field omitted from the request is reset to its default rather than left unchanged.
610
+ *
611
+ * This endpoint is available to administrators of the organization only.
464
612
  *
465
613
  */
466
- static createOrganization(options) {
467
- return (options.client ?? _heyApiClient).post({
468
- url: '/organization',
614
+ static updateCluster(options) {
615
+ return (options.client ?? client).put({
616
+ url: '/clusters/{cluster_id}',
469
617
  ...options,
470
618
  headers: {
471
619
  'Content-Type': 'application/json',
@@ -473,117 +621,89 @@ export class OrganizationService {
473
621
  }
474
622
  });
475
623
  }
476
- }
477
- export class TokensService {
478
624
  /**
479
- * List access tokens in organization.
480
- * 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.
625
+ * Node join information for the cluster
626
+ *
627
+ * 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.
481
628
  *
482
629
  */
483
- static listTokens(options) {
484
- return (options?.client ?? _heyApiClient).get({
485
- url: '/tokens',
486
- ...options
487
- });
630
+ static getJoinInformation(options) {
631
+ return (options.client ?? client).post({ url: '/clusters/{cluster_id}/join_information', ...options });
488
632
  }
633
+ }
634
+ export class BillingService {
489
635
  /**
490
- * Create a new access token.
491
- * 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.
636
+ * Get billing usage information.
492
637
  *
493
- * This endpoint is available to administrators of the organization only.
638
+ * 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.
494
639
  *
495
640
  */
496
- static createToken(options) {
497
- return (options.client ?? _heyApiClient).post({
498
- url: '/tokens',
499
- ...options,
500
- headers: {
501
- 'Content-Type': 'application/json',
502
- ...options.headers
503
- }
504
- });
641
+ static getUsage(options) {
642
+ return (options?.client ?? client).get({ url: '/billing/usage', ...options });
505
643
  }
506
644
  /**
507
- * Permanently delete access token.
508
- * 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.
645
+ * Get Stripe client secret.
646
+ *
647
+ * 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.
509
648
  *
510
649
  */
511
- static deleteToken(options) {
512
- return (options.client ?? _heyApiClient).delete({
513
- url: '/tokens/{token_id}',
514
- ...options
515
- });
650
+ static getPaymentMethodSecret(options) {
651
+ return (options?.client ?? client).put({ url: '/billing/payment-method', ...options });
516
652
  }
517
653
  /**
518
- * Get access token information.
519
- * 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.
654
+ * List organization payment methods.
655
+ *
656
+ * 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.
520
657
  *
521
658
  */
522
- static getToken(options) {
523
- return (options.client ?? _heyApiClient).get({
524
- url: '/tokens/{token_id}',
525
- ...options
526
- });
659
+ static listPaymentMethods(options) {
660
+ return (options?.client ?? client).get({ url: '/billing/payment-methods', ...options });
527
661
  }
528
662
  /**
529
- * Update access token information.
530
- * 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.
663
+ * Set the default payment method.
531
664
  *
532
- * This endpoint is available to administrators of the organization only.
665
+ * Sets the given payment method as the default used for invoices and active subscriptions. Requires the Administrator role.
533
666
  *
534
667
  */
535
- static updateToken(options) {
536
- return (options.client ?? _heyApiClient).put({
537
- url: '/tokens/{token_id}',
538
- ...options,
539
- headers: {
540
- 'Content-Type': 'application/json',
541
- ...options.headers
542
- }
543
- });
668
+ static setDefaultPaymentMethod(options) {
669
+ return (options.client ?? client).put({ url: '/billing/payment-methods/{paymentMethodId}/default', ...options });
544
670
  }
545
671
  /**
546
- * Regenerate access token secret key.
547
- * Generates a new access token secret. Old secret will not be valid anymore.
672
+ * Delete a payment method.
673
+ *
674
+ * 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.
675
+ *
548
676
  */
549
- static regenerateToken(options) {
550
- return (options.client ?? _heyApiClient).put({
551
- url: '/tokens/{token_id}/secret',
552
- ...options
553
- });
677
+ static deletePaymentMethod(options) {
678
+ return (options.client ?? client).delete({ url: '/billing/payment-methods/{paymentMethodId}', ...options });
554
679
  }
555
- }
556
- export class UsersService {
557
680
  /**
558
- * Get a list of organizations the user belongs to. Used during authentication process.
681
+ * List issued invoices.
682
+ *
683
+ * 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.
684
+ *
559
685
  */
560
- static listUserOrganizations(options) {
561
- return (options.client ?? _heyApiClient).get({
562
- url: '/users/organizations/{email}',
563
- ...options
564
- });
686
+ static listInvoices(options) {
687
+ return (options?.client ?? client).get({ url: '/billing/invoices', ...options });
565
688
  }
566
689
  /**
567
- * List users in organization.
568
- * 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.
690
+ * Get organization contact and billing address information.
569
691
  *
570
- * This endpoint is available to all users in the organization.
692
+ * Returns the organization contact and billing address information. This endpoint is available to all users in the organization.
571
693
  *
572
694
  */
573
- static listUsers(options) {
574
- return (options?.client ?? _heyApiClient).get({
575
- url: '/users',
576
- ...options
577
- });
695
+ static getContact(options) {
696
+ return (options?.client ?? client).get({ url: '/billing/contact', ...options });
578
697
  }
579
698
  /**
580
- * Create a new user.
581
- * 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.
699
+ * Update organization contact information and billing address.
700
+ *
701
+ * This endpoint allows you to update organization details with its contact information. This endpoint is available to administrators of the organization only.
582
702
  *
583
703
  */
584
- static createUser(options) {
585
- return (options.client ?? _heyApiClient).post({
586
- url: '/users',
704
+ static updateContact(options) {
705
+ return (options.client ?? client).put({
706
+ url: '/billing/contact',
587
707
  ...options,
588
708
  headers: {
589
709
  'Content-Type': 'application/json',
@@ -592,37 +712,23 @@ export class UsersService {
592
712
  });
593
713
  }
594
714
  /**
595
- * Delete user by id.
596
- * Sets user status to `inactive`. Inactive users cannot log in and manage organization resources. This endpoint is available to administrators of the organization only.
597
- *
598
- */
599
- static deleteUser(options) {
600
- return (options.client ?? _heyApiClient).delete({
601
- url: '/users/{user_id}',
602
- ...options
603
- });
604
- }
605
- /**
606
- * Get user profile information by id.
607
- * Returns user details including their roles. For more information on identity access management, see [Users](https://cloudfleet.ai/docs/organization/users/) section of documentaiton.
715
+ * Get applied promotional credits
608
716
  *
609
- * This endpoint is available to all users in the organization.
717
+ * 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.
610
718
  *
611
719
  */
612
- static getUser(options) {
613
- return (options.client ?? _heyApiClient).get({
614
- url: '/users/{user_id}',
615
- ...options
616
- });
720
+ static getCredits(options) {
721
+ return (options?.client ?? client).get({ url: '/billing/credits', ...options });
617
722
  }
618
723
  /**
619
- * Update user profile information.
620
- * 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.
724
+ * Redeem promotional credits code.
725
+ *
726
+ * 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.
621
727
  *
622
728
  */
623
- static updateUser(options) {
624
- return (options.client ?? _heyApiClient).put({
625
- url: '/users/{user_id}',
729
+ static redeemCredits(options) {
730
+ return (options.client ?? client).post({
731
+ url: '/billing/credits',
626
732
  ...options,
627
733
  headers: {
628
734
  'Content-Type': 'application/json',