@cloudfleet/sdk 0.0.1-8e8e76c → 0.0.1-8ec217c

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 (68) hide show
  1. package/dist/client/client.gen.d.ts +3 -0
  2. package/dist/client/client.gen.d.ts.map +1 -0
  3. package/dist/client/client.gen.js +235 -0
  4. package/dist/client/client.gen.js.map +1 -0
  5. package/dist/client/index.d.ts +9 -0
  6. package/dist/client/index.d.ts.map +1 -0
  7. package/dist/client/index.js +7 -0
  8. package/dist/client/index.js.map +1 -0
  9. package/dist/client/types.gen.d.ts +118 -0
  10. package/dist/client/types.gen.d.ts.map +1 -0
  11. package/dist/client/types.gen.js +3 -0
  12. package/dist/client/types.gen.js.map +1 -0
  13. package/dist/client/utils.gen.d.ts +34 -0
  14. package/dist/client/utils.gen.d.ts.map +1 -0
  15. package/dist/client/utils.gen.js +229 -0
  16. package/dist/client/utils.gen.js.map +1 -0
  17. package/dist/client.gen.d.ts +4 -4
  18. package/dist/client.gen.d.ts.map +1 -1
  19. package/dist/client.gen.js +2 -4
  20. package/dist/client.gen.js.map +1 -1
  21. package/dist/core/auth.gen.d.ts +19 -0
  22. package/dist/core/auth.gen.d.ts.map +1 -0
  23. package/dist/core/auth.gen.js +15 -0
  24. package/dist/core/auth.gen.js.map +1 -0
  25. package/dist/core/bodySerializer.gen.d.ts +26 -0
  26. package/dist/core/bodySerializer.gen.d.ts.map +1 -0
  27. package/dist/core/bodySerializer.gen.js +58 -0
  28. package/dist/core/bodySerializer.gen.js.map +1 -0
  29. package/dist/core/params.gen.d.ts +44 -0
  30. package/dist/core/params.gen.d.ts.map +1 -0
  31. package/dist/core/params.gen.js +101 -0
  32. package/dist/core/params.gen.js.map +1 -0
  33. package/dist/core/pathSerializer.gen.d.ts +34 -0
  34. package/dist/core/pathSerializer.gen.d.ts.map +1 -0
  35. package/dist/core/pathSerializer.gen.js +107 -0
  36. package/dist/core/pathSerializer.gen.js.map +1 -0
  37. package/dist/core/queryKeySerializer.gen.d.ts +19 -0
  38. package/dist/core/queryKeySerializer.gen.d.ts.map +1 -0
  39. package/dist/core/queryKeySerializer.gen.js +93 -0
  40. package/dist/core/queryKeySerializer.gen.js.map +1 -0
  41. package/dist/core/serverSentEvents.gen.d.ts +72 -0
  42. package/dist/core/serverSentEvents.gen.d.ts.map +1 -0
  43. package/dist/core/serverSentEvents.gen.js +134 -0
  44. package/dist/core/serverSentEvents.gen.js.map +1 -0
  45. package/dist/core/types.gen.d.ts +79 -0
  46. package/dist/core/types.gen.d.ts.map +1 -0
  47. package/dist/core/types.gen.js +3 -0
  48. package/dist/core/types.gen.js.map +1 -0
  49. package/dist/core/utils.gen.d.ts +20 -0
  50. package/dist/core/utils.gen.d.ts.map +1 -0
  51. package/dist/core/utils.gen.js +88 -0
  52. package/dist/core/utils.gen.js.map +1 -0
  53. package/dist/schemas.gen.d.ts +832 -504
  54. package/dist/schemas.gen.d.ts.map +1 -1
  55. package/dist/schemas.gen.js +1341 -588
  56. package/dist/schemas.gen.js.map +1 -1
  57. package/dist/sdk.gen.d.ts +190 -67
  58. package/dist/sdk.gen.d.ts.map +1 -1
  59. package/dist/sdk.gen.js +245 -158
  60. package/dist/sdk.gen.js.map +1 -1
  61. package/dist/services/kubernetes/api.d.ts +12 -12
  62. package/dist/types.gen.d.ts +819 -296
  63. package/dist/types.gen.d.ts.map +1 -1
  64. package/dist/zod.gen.d.ts +1871 -1954
  65. package/dist/zod.gen.d.ts.map +1 -1
  66. package/dist/zod.gen.js +865 -757
  67. package/dist/zod.gen.js.map +1 -1
  68. package/package.json +10 -7
package/dist/sdk.gen.js CHANGED
@@ -1,455 +1,549 @@
1
1
  // This file is auto-generated by @hey-api/openapi-ts
2
- import { client as _heyApiClient } from './client.gen';
2
+ import { client } from './client.gen';
3
3
  export class BillingService {
4
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.
7
6
  *
8
- */
9
- static getUsage(options) {
10
- return (options?.client ?? _heyApiClient).get({
11
- url: '/billing/usage',
12
- ...options
13
- });
14
- }
15
- /**
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.
7
+ * 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.
18
8
  *
19
9
  */
20
- static getBalance(options) {
21
- return (options?.client ?? _heyApiClient).get({
22
- url: '/billing/balance',
23
- ...options
24
- });
10
+ static getUsage(options) {
11
+ return (options?.client ?? client).get({ url: '/billing/usage', ...options });
25
12
  }
26
13
  /**
27
14
  * Get organization payment method information.
15
+ *
28
16
  * 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.
29
17
  *
30
18
  */
31
19
  static getPaymentMethod(options) {
32
- return (options?.client ?? _heyApiClient).get({
33
- url: '/billing/payment-method',
34
- ...options
35
- });
20
+ return (options?.client ?? client).get({ url: '/billing/payment-method', ...options });
36
21
  }
37
22
  /**
38
23
  * Get Stripe client secret.
24
+ *
39
25
  * 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.
40
26
  *
41
27
  */
42
28
  static getPaymentMethodSecret(options) {
43
- return (options?.client ?? _heyApiClient).put({
44
- url: '/billing/payment-method',
45
- ...options
46
- });
29
+ return (options?.client ?? client).put({ url: '/billing/payment-method', ...options });
47
30
  }
48
31
  /**
49
32
  * List issued invoices.
33
+ *
50
34
  * 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.
51
35
  *
52
36
  */
53
37
  static listInvoices(options) {
54
- return (options.client ?? _heyApiClient).get({
55
- url: '/billing/invoices',
56
- ...options
57
- });
58
- }
59
- /**
60
- * Get invoice information.
61
- * Returns a single Invoice as HTML referenced by id. This endpoint is available to all users in the organization.
62
- *
63
- */
64
- static getInvoice(options) {
65
- return (options.client ?? _heyApiClient).get({
66
- url: '/billing/invoices/{id}',
67
- ...options
68
- });
38
+ return (options?.client ?? client).get({ url: '/billing/invoices', ...options });
69
39
  }
70
40
  /**
71
41
  * Get organization contact and billing address information.
42
+ *
72
43
  * Returns the organization contact and billing address information. This endpoint is available to all users in the organization.
73
44
  *
74
45
  */
75
46
  static getContact(options) {
76
- return (options?.client ?? _heyApiClient).get({
77
- url: '/billing/contact',
78
- ...options
79
- });
47
+ return (options?.client ?? client).get({ url: '/billing/contact', ...options });
80
48
  }
81
49
  /**
82
50
  * Update organization contact information and billing address.
51
+ *
83
52
  * This endpoint allows you to update organization details with its contact information. This endpoint is available to administrators of the organization only.
84
53
  *
85
54
  */
86
55
  static updateContact(options) {
87
- return (options.client ?? _heyApiClient).put({
56
+ return (options.client ?? client).put({
88
57
  url: '/billing/contact',
89
58
  ...options,
90
59
  headers: {
91
60
  'Content-Type': 'application/json',
92
- ...options?.headers
61
+ ...options.headers
93
62
  }
94
63
  });
95
64
  }
96
65
  /**
97
66
  * Get applied promotional credits
67
+ *
98
68
  * 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.
99
69
  *
100
70
  */
101
71
  static getCredits(options) {
102
- return (options?.client ?? _heyApiClient).get({
103
- url: '/billing/credits',
104
- ...options
105
- });
72
+ return (options?.client ?? client).get({ url: '/billing/credits', ...options });
106
73
  }
107
74
  /**
108
75
  * Redeem promotional credits code.
76
+ *
109
77
  * 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.
110
78
  *
111
79
  */
112
80
  static redeemCredits(options) {
113
- return (options.client ?? _heyApiClient).post({
81
+ return (options.client ?? client).post({
114
82
  url: '/billing/credits',
115
83
  ...options,
116
84
  headers: {
117
85
  'Content-Type': 'application/json',
118
- ...options?.headers
86
+ ...options.headers
119
87
  }
120
88
  });
121
89
  }
122
90
  }
123
91
  export class ClustersService {
92
+ /**
93
+ * List charts.
94
+ *
95
+ * Returns a list of charts in the cluster.
96
+ *
97
+ * This endpoint is available to all users in the organization.
98
+ *
99
+ */
100
+ static listCharts(options) {
101
+ return (options.client ?? client).get({ url: '/clusters/{cluster_id}/charts', ...options });
102
+ }
103
+ /**
104
+ * Create a new chart.
105
+ *
106
+ * Create a new chart deployment.
107
+ *
108
+ * This endpoint is available to administrators of the organization only.
109
+ *
110
+ */
111
+ static createChart(options) {
112
+ return (options.client ?? client).post({
113
+ url: '/clusters/{cluster_id}/charts',
114
+ ...options,
115
+ headers: {
116
+ 'Content-Type': 'application/json',
117
+ ...options.headers
118
+ }
119
+ });
120
+ }
121
+ /**
122
+ * Permanently delete the chart deployment from the cluster.
123
+ *
124
+ * This endpoint will permanently delete chart. This operation cannot be undone.
125
+ *
126
+ * This endpoint is available to administrators of the organization only.
127
+ *
128
+ */
129
+ static deleteChart(options) {
130
+ return (options.client ?? client).delete({ url: '/clusters/{cluster_id}/charts/{chart_name}', ...options });
131
+ }
132
+ /**
133
+ * Get chart information.
134
+ *
135
+ * Returns the details of the chart deployment.
136
+ *
137
+ * This endpoint is available to all users in the organization.
138
+ *
139
+ */
140
+ static getChart(options) {
141
+ return (options.client ?? client).get({ url: '/clusters/{cluster_id}/charts/{chart_name}', ...options });
142
+ }
143
+ /**
144
+ * Update chart information.
145
+ *
146
+ * This endpoint allows you to update the values of a chart deployment.
147
+ *
148
+ * This endpoint is available to administrators of the organization only.
149
+ *
150
+ */
151
+ static updateChart(options) {
152
+ return (options.client ?? client).put({
153
+ url: '/clusters/{cluster_id}/charts/{chart_name}',
154
+ ...options,
155
+ headers: {
156
+ 'Content-Type': 'application/json',
157
+ ...options.headers
158
+ }
159
+ });
160
+ }
124
161
  /**
125
162
  * List fleets.
126
- * Returns a list of fleets belonging to the cluster. For more information, see [Fleets and fleet types](https://cloudfleet.ai/docs/cloud-infrastructure/fleets-and-fleet-types/) section of documentaiton.
163
+ *
164
+ * Returns a list of fleets belonging to the cluster. For more information, see [Fleets](https://cloudfleet.ai/docs/cloud-infrastructure/fleets/) section of documentaiton.
127
165
  *
128
166
  * This endpoint is available to all users in the organization.
129
167
  *
130
168
  */
131
169
  static listFleets(options) {
132
- return (options.client ?? _heyApiClient).get({
133
- url: '/clusters/{cluster_id}/fleets',
134
- ...options
135
- });
170
+ return (options.client ?? client).get({ url: '/clusters/{cluster_id}/fleets', ...options });
136
171
  }
137
172
  /**
138
173
  * Create a new fleet.
139
- * 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 and fleet types](https://cloudfleet.ai/docs/cloud-infrastructure/fleets-and-fleet-types/) section of documentaiton.
174
+ *
175
+ * 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.
140
176
  *
141
177
  * This endpoint is available to administrators of the organization only.
142
178
  *
143
179
  */
144
180
  static createFleet(options) {
145
- return (options.client ?? _heyApiClient).post({
181
+ return (options.client ?? client).post({
146
182
  url: '/clusters/{cluster_id}/fleets',
147
183
  ...options,
148
184
  headers: {
149
185
  'Content-Type': 'application/json',
150
- ...options?.headers
186
+ ...options.headers
151
187
  }
152
188
  });
153
189
  }
154
190
  /**
155
191
  * Permanently delete fleet.
156
- * 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 Connected Fleet until the end of the billing period, set the status to `cancelling`. For more information, see [Fleets and fleet types](https://cloudfleet.ai/docs/cloud-infrastructure/fleets-and-fleet-types/) section of documentaiton.
192
+ *
193
+ * 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.
157
194
  *
158
195
  * This endpoint is available to administrators of the organization only.
159
196
  *
160
197
  */
161
198
  static deleteFleet(options) {
162
- return (options.client ?? _heyApiClient).delete({
163
- url: '/clusters/{cluster_id}/fleets/{fleet_name}',
164
- ...options
165
- });
199
+ return (options.client ?? client).delete({ url: '/clusters/{cluster_id}/fleets/{fleet_name}', ...options });
166
200
  }
167
201
  /**
168
202
  * Get fleet information.
169
- * Returns fleet details. For more information, see [Fleets and fleet types](https://cloudfleet.ai/docs/cloud-infrastructure/fleets-and-fleet-types/) section of documentaiton.
203
+ *
204
+ * Returns fleet details. For more information, see [Fleets](https://cloudfleet.ai/docs/cloud-infrastructure/fleets/) section of documentaiton.
170
205
  *
171
206
  * This endpoint is available to all users in the organization.
172
207
  *
173
208
  */
174
209
  static getFleet(options) {
175
- return (options.client ?? _heyApiClient).get({
176
- url: '/clusters/{cluster_id}/fleets/{fleet_name}',
177
- ...options
178
- });
210
+ return (options.client ?? client).get({ url: '/clusters/{cluster_id}/fleets/{fleet_name}', ...options });
179
211
  }
180
212
  /**
181
213
  * Update fleet information.
214
+ *
182
215
  * This endpoint allows you to update fleet details.
183
216
  *
184
- * 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 Connected Fleet until the end of the billing period, set the status to `cancelling`.
217
+ * 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`.
185
218
  *
186
- * For more information, see [Fleets and fleet types](https://cloudfleet.ai/docs/cloud-infrastructure/fleets-and-fleet-types/) section of documentaiton.
219
+ * For more information, see [Fleets](https://cloudfleet.ai/docs/cloud-infrastructure/fleets/) section of documentaiton.
187
220
  *
188
221
  * This endpoint is available to administrators of the organization only.
189
222
  *
190
223
  */
191
224
  static updateFleet(options) {
192
- return (options.client ?? _heyApiClient).put({
225
+ return (options.client ?? client).put({
193
226
  url: '/clusters/{cluster_id}/fleets/{fleet_name}',
194
227
  ...options,
195
228
  headers: {
196
229
  'Content-Type': 'application/json',
197
- ...options?.headers
230
+ ...options.headers
198
231
  }
199
232
  });
200
233
  }
201
234
  /**
202
235
  * Query Kubernetes cluster API
236
+ *
203
237
  * 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.
204
238
  */
205
239
  static queryCluster(options) {
206
- return (options.client ?? _heyApiClient).get({
207
- url: '/clusters/{cluster_id}/query',
208
- ...options
209
- });
240
+ return (options.client ?? client).get({ url: '/clusters/{cluster_id}/query', ...options });
210
241
  }
211
242
  /**
212
243
  * List clusters.
244
+ *
213
245
  * 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.
214
246
  *
215
247
  * This endpoint is available to all users in the organization.
216
248
  *
217
249
  */
218
250
  static listClusters(options) {
219
- return (options?.client ?? _heyApiClient).get({
220
- url: '/clusters',
221
- ...options
222
- });
251
+ return (options?.client ?? client).get({ url: '/clusters', ...options });
223
252
  }
224
253
  /**
225
254
  * Create a new cluster.
255
+ *
226
256
  * 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.
227
257
  *
228
258
  * This endpoint is available to administrators of the organization only.
229
259
  *
230
260
  */
231
261
  static createCluster(options) {
232
- return (options.client ?? _heyApiClient).post({
262
+ return (options.client ?? client).post({
233
263
  url: '/clusters',
234
264
  ...options,
235
265
  headers: {
236
266
  'Content-Type': 'application/json',
237
- ...options?.headers
267
+ ...options.headers
238
268
  }
239
269
  });
240
270
  }
241
271
  /**
242
272
  * Permanently delete cluster.
273
+ *
243
274
  * This endpoint will permanently delete the cluster. This operation cannot be undone.
244
275
  *
245
276
  * This endpoint is available to administrators of the organization only.
246
277
  *
247
278
  */
248
279
  static deleteCluster(options) {
249
- return (options.client ?? _heyApiClient).delete({
250
- url: '/clusters/{cluster_id}',
251
- ...options
252
- });
280
+ return (options.client ?? client).delete({ url: '/clusters/{cluster_id}', ...options });
253
281
  }
254
282
  /**
255
283
  * Get cluster information.
284
+ *
256
285
  * 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.
257
286
  *
258
287
  * This endpoint is available to all users in the organization.
259
288
  *
260
289
  */
261
290
  static getCluster(options) {
262
- return (options.client ?? _heyApiClient).get({
263
- url: '/clusters/{cluster_id}',
264
- ...options
265
- });
291
+ return (options.client ?? client).get({ url: '/clusters/{cluster_id}', ...options });
266
292
  }
267
293
  /**
268
294
  * Update cluster information.
295
+ *
269
296
  * 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.
270
297
  *
271
298
  * This endpoint is available to administrators of the organization only.
272
299
  *
273
300
  */
274
301
  static updateCluster(options) {
275
- return (options.client ?? _heyApiClient).put({
302
+ return (options.client ?? client).put({
276
303
  url: '/clusters/{cluster_id}',
277
304
  ...options,
278
305
  headers: {
279
306
  'Content-Type': 'application/json',
280
- ...options?.headers
307
+ ...options.headers
281
308
  }
282
309
  });
283
310
  }
284
311
  /**
285
312
  * Node join information for the cluster
286
- * Returns the join information for the cluster. This information is used to add a self-managed cluster to the CFKE cluster. This endpoint is available to only admins of the organization.
313
+ *
314
+ * 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.
287
315
  *
288
316
  */
289
317
  static getJoinInformation(options) {
290
- return (options.client ?? _heyApiClient).post({
291
- url: '/clusters/{cluster_id}/join_information',
292
- ...options
293
- });
318
+ return (options.client ?? client).post({ url: '/clusters/{cluster_id}/join_information', ...options });
294
319
  }
295
320
  }
296
321
  export class InvitesService {
297
322
  /**
298
323
  * List invites.
324
+ *
299
325
  * Returns a list of invites under the current organization. This endpoint is available to all users in the organization.
300
326
  *
301
327
  */
302
328
  static listInvites(options) {
303
- return (options?.client ?? _heyApiClient).get({
304
- url: '/invites',
305
- ...options
306
- });
329
+ return (options?.client ?? client).get({ url: '/invites', ...options });
307
330
  }
308
331
  /**
309
332
  * Create a new invite.
333
+ *
310
334
  * 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.
311
335
  *
312
336
  */
313
337
  static createInvite(options) {
314
- return (options.client ?? _heyApiClient).post({
338
+ return (options.client ?? client).post({
315
339
  url: '/invites',
316
340
  ...options,
317
341
  headers: {
318
342
  'Content-Type': 'application/json',
319
- ...options?.headers
343
+ ...options.headers
320
344
  }
321
345
  });
322
346
  }
323
347
  /**
324
348
  * Get invite information.
349
+ *
325
350
  * Returns invite details.
326
351
  *
327
352
  */
328
353
  static getInvite(options) {
329
- return (options.client ?? _heyApiClient).get({
330
- url: '/invites/{code}',
331
- ...options
332
- });
354
+ return (options.client ?? client).get({ url: '/invites/{code}', ...options });
333
355
  }
334
356
  /**
335
357
  * Permanently delete invite.
358
+ *
336
359
  * Permanently deletes invite from the organization. This endpoint is available to administrators of the organization only.
337
360
  *
338
361
  */
339
362
  static deleteInvite(options) {
340
- return (options.client ?? _heyApiClient).delete({
341
- url: '/invites/{email}',
342
- ...options
363
+ return (options.client ?? client).delete({ url: '/invites/{email}', ...options });
364
+ }
365
+ }
366
+ export class ChartsMarketplaceService {
367
+ /**
368
+ * List chart listings available in the marketplace.
369
+ *
370
+ * Returns a list of available charts in the marketplace.
371
+ *
372
+ * This endpoint is available to all users in the organization.
373
+ *
374
+ */
375
+ static listMarketplaceCharts(options) {
376
+ return (options?.client ?? client).get({ url: '/marketplace', ...options });
377
+ }
378
+ /**
379
+ * Get chart files for a specific version channel.
380
+ *
381
+ * Returns the Chart.yaml, values.yaml, and values.schema.json files for the latest version matching the specified version channel.
382
+ *
383
+ * 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.
384
+ *
385
+ * This endpoint is available to all users in the organization.
386
+ *
387
+ */
388
+ static getMarketplaceChartFiles(options) {
389
+ return (options.client ?? client).get({ url: '/marketplace/{chart_name}/files/{version_channel}', ...options });
390
+ }
391
+ }
392
+ export class McpService {
393
+ /**
394
+ * MCP endpoint
395
+ *
396
+ * MCP endpoint for handling Model Context Protocol JSON-RPC 2.0 messages.
397
+ */
398
+ static postMcp(options) {
399
+ return (options.client ?? client).post({
400
+ url: '/mcp',
401
+ ...options,
402
+ headers: {
403
+ 'Content-Type': 'application/json',
404
+ ...options.headers
405
+ }
343
406
  });
344
407
  }
345
408
  }
346
409
  export class OrganizationService {
347
410
  /**
348
411
  * Get organization information.
412
+ *
349
413
  * Returns organization details including quota. For more information about quotas, see [Quotas and limits](https://cloudfleet.ai/docs/organization/quotas/) section of documentaiton.
350
414
  *
351
415
  * This endpoint is available to all users in the organization.
352
416
  *
353
417
  */
354
418
  static getOrganization(options) {
355
- return (options?.client ?? _heyApiClient).get({
356
- url: '/organization',
357
- ...options
358
- });
419
+ return (options?.client ?? client).get({ url: '/organization', ...options });
359
420
  }
360
421
  /**
361
422
  * Create a new organization / Cloudfleet account signup.
423
+ *
362
424
  * This endpoint allows you to create a new Cloudfleet organization and an administrator user.
363
425
  *
364
426
  */
365
427
  static createOrganization(options) {
366
- return (options.client ?? _heyApiClient).post({
428
+ return (options.client ?? client).post({
367
429
  url: '/organization',
368
430
  ...options,
369
431
  headers: {
370
432
  'Content-Type': 'application/json',
371
- ...options?.headers
433
+ ...options.headers
372
434
  }
373
435
  });
374
436
  }
375
437
  }
438
+ export class RegistryService {
439
+ /**
440
+ * List repositories
441
+ *
442
+ * Returns a list of repositories in the registry across all regions. This endpoint is available to all users in the organization.
443
+ *
444
+ */
445
+ static listRepositories(options) {
446
+ return (options?.client ?? client).get({ url: '/registry', ...options });
447
+ }
448
+ /**
449
+ * List tags for a repository
450
+ *
451
+ * 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.
452
+ *
453
+ */
454
+ static listTags(options) {
455
+ return (options.client ?? client).get({ url: '/registry/{region}/{repository}', ...options });
456
+ }
457
+ /**
458
+ * Delete tag
459
+ *
460
+ * Permanently deletes a specific tag from a repository. This endpoint is available to administrators of the organization only.
461
+ *
462
+ */
463
+ static deleteTag(options) {
464
+ return (options.client ?? client).delete({ url: '/registry/{region}/{repository}/{tag}', ...options });
465
+ }
466
+ /**
467
+ * Get tag details
468
+ *
469
+ * 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.
470
+ *
471
+ */
472
+ static getTag(options) {
473
+ return (options.client ?? client).get({ url: '/registry/{region}/{repository}/{tag}', ...options });
474
+ }
475
+ }
376
476
  export class TokensService {
377
477
  /**
378
478
  * List access tokens in organization.
479
+ *
379
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.
380
481
  *
381
482
  */
382
483
  static listTokens(options) {
383
- return (options?.client ?? _heyApiClient).get({
384
- url: '/tokens',
385
- ...options
386
- });
484
+ return (options?.client ?? client).get({ url: '/tokens', ...options });
387
485
  }
388
486
  /**
389
487
  * Create a new access token.
488
+ *
390
489
  * 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.
391
490
  *
392
491
  * This endpoint is available to administrators of the organization only.
393
492
  *
394
493
  */
395
494
  static createToken(options) {
396
- return (options.client ?? _heyApiClient).post({
495
+ return (options.client ?? client).post({
397
496
  url: '/tokens',
398
497
  ...options,
399
498
  headers: {
400
499
  'Content-Type': 'application/json',
401
- ...options?.headers
500
+ ...options.headers
402
501
  }
403
502
  });
404
503
  }
405
504
  /**
406
505
  * Permanently delete access token.
506
+ *
407
507
  * 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.
408
508
  *
409
509
  */
410
510
  static deleteToken(options) {
411
- return (options.client ?? _heyApiClient).delete({
412
- url: '/tokens/{token_id}',
413
- ...options
414
- });
511
+ return (options.client ?? client).delete({ url: '/tokens/{token_id}', ...options });
415
512
  }
416
513
  /**
417
514
  * Get access token information.
515
+ *
418
516
  * 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.
419
517
  *
420
518
  */
421
519
  static getToken(options) {
422
- return (options.client ?? _heyApiClient).get({
423
- url: '/tokens/{token_id}',
424
- ...options
425
- });
520
+ return (options.client ?? client).get({ url: '/tokens/{token_id}', ...options });
426
521
  }
427
522
  /**
428
523
  * Update access token information.
524
+ *
429
525
  * 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.
430
526
  *
431
527
  * This endpoint is available to administrators of the organization only.
432
528
  *
433
529
  */
434
530
  static updateToken(options) {
435
- return (options.client ?? _heyApiClient).put({
531
+ return (options.client ?? client).put({
436
532
  url: '/tokens/{token_id}',
437
533
  ...options,
438
534
  headers: {
439
535
  'Content-Type': 'application/json',
440
- ...options?.headers
536
+ ...options.headers
441
537
  }
442
538
  });
443
539
  }
444
540
  /**
445
541
  * Regenerate access token secret key.
542
+ *
446
543
  * Generates a new access token secret. Old secret will not be valid anymore.
447
544
  */
448
545
  static regenerateToken(options) {
449
- return (options.client ?? _heyApiClient).put({
450
- url: '/tokens/{token_id}/secret',
451
- ...options
452
- });
546
+ return (options.client ?? client).put({ url: '/tokens/{token_id}/secret', ...options });
453
547
  }
454
548
  }
455
549
  export class UsersService {
@@ -457,75 +551,68 @@ export class UsersService {
457
551
  * Get a list of organizations the user belongs to. Used during authentication process.
458
552
  */
459
553
  static listUserOrganizations(options) {
460
- return (options.client ?? _heyApiClient).get({
461
- url: '/users/organizations/{email}',
462
- ...options
463
- });
554
+ return (options.client ?? client).get({ url: '/users/organizations/{email}', ...options });
464
555
  }
465
556
  /**
466
557
  * List users in organization.
558
+ *
467
559
  * 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.
468
560
  *
469
561
  * This endpoint is available to all users in the organization.
470
562
  *
471
563
  */
472
564
  static listUsers(options) {
473
- return (options?.client ?? _heyApiClient).get({
474
- url: '/users',
475
- ...options
476
- });
565
+ return (options?.client ?? client).get({ url: '/users', ...options });
477
566
  }
478
567
  /**
479
568
  * Create a new user.
569
+ *
480
570
  * 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.
481
571
  *
482
572
  */
483
573
  static createUser(options) {
484
- return (options.client ?? _heyApiClient).post({
574
+ return (options.client ?? client).post({
485
575
  url: '/users',
486
576
  ...options,
487
577
  headers: {
488
578
  'Content-Type': 'application/json',
489
- ...options?.headers
579
+ ...options.headers
490
580
  }
491
581
  });
492
582
  }
493
583
  /**
494
584
  * Delete user by id.
585
+ *
495
586
  * Sets user status to `inactive`. Inactive users cannot log in and manage organization resources. This endpoint is available to administrators of the organization only.
496
587
  *
497
588
  */
498
589
  static deleteUser(options) {
499
- return (options.client ?? _heyApiClient).delete({
500
- url: '/users/{user_id}',
501
- ...options
502
- });
590
+ return (options.client ?? client).delete({ url: '/users/{user_id}', ...options });
503
591
  }
504
592
  /**
505
593
  * Get user profile information by id.
594
+ *
506
595
  * Returns user details including their roles. For more information on identity access management, see [Users](https://cloudfleet.ai/docs/organization/users/) section of documentaiton.
507
596
  *
508
597
  * This endpoint is available to all users in the organization.
509
598
  *
510
599
  */
511
600
  static getUser(options) {
512
- return (options.client ?? _heyApiClient).get({
513
- url: '/users/{user_id}',
514
- ...options
515
- });
601
+ return (options.client ?? client).get({ url: '/users/{user_id}', ...options });
516
602
  }
517
603
  /**
518
604
  * Update user profile information.
605
+ *
519
606
  * 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.
520
607
  *
521
608
  */
522
609
  static updateUser(options) {
523
- return (options.client ?? _heyApiClient).put({
610
+ return (options.client ?? client).put({
524
611
  url: '/users/{user_id}',
525
612
  ...options,
526
613
  headers: {
527
614
  'Content-Type': 'application/json',
528
- ...options?.headers
615
+ ...options.headers
529
616
  }
530
617
  });
531
618
  }