@cloudfleet/sdk 0.0.1-ac7f6c7 → 0.0.1-aca000f

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 (72) hide show
  1. package/dist/@tanstack/react-query.gen.d.ts +1125 -0
  2. package/dist/@tanstack/react-query.gen.d.ts.map +1 -0
  3. package/dist/@tanstack/react-query.gen.js +1129 -0
  4. package/dist/@tanstack/react-query.gen.js.map +1 -0
  5. package/dist/client/client.gen.d.ts +3 -0
  6. package/dist/client/client.gen.d.ts.map +1 -0
  7. package/dist/client/client.gen.js +220 -0
  8. package/dist/client/client.gen.js.map +1 -0
  9. package/dist/client/index.d.ts +9 -0
  10. package/dist/client/index.d.ts.map +1 -0
  11. package/dist/client/index.js +7 -0
  12. package/dist/client/index.js.map +1 -0
  13. package/dist/client/types.gen.d.ts +121 -0
  14. package/dist/client/types.gen.d.ts.map +1 -0
  15. package/dist/client/types.gen.js +3 -0
  16. package/dist/client/types.gen.js.map +1 -0
  17. package/dist/client/utils.gen.d.ts +38 -0
  18. package/dist/client/utils.gen.d.ts.map +1 -0
  19. package/dist/client/utils.gen.js +229 -0
  20. package/dist/client/utils.gen.js.map +1 -0
  21. package/dist/client.gen.d.ts +4 -4
  22. package/dist/client.gen.d.ts.map +1 -1
  23. package/dist/client.gen.js +2 -4
  24. package/dist/client.gen.js.map +1 -1
  25. package/dist/core/auth.gen.d.ts +19 -0
  26. package/dist/core/auth.gen.d.ts.map +1 -0
  27. package/dist/core/auth.gen.js +15 -0
  28. package/dist/core/auth.gen.js.map +1 -0
  29. package/dist/core/bodySerializer.gen.d.ts +26 -0
  30. package/dist/core/bodySerializer.gen.d.ts.map +1 -0
  31. package/dist/core/bodySerializer.gen.js +58 -0
  32. package/dist/core/bodySerializer.gen.js.map +1 -0
  33. package/dist/core/params.gen.d.ts +44 -0
  34. package/dist/core/params.gen.d.ts.map +1 -0
  35. package/dist/core/params.gen.js +101 -0
  36. package/dist/core/params.gen.js.map +1 -0
  37. package/dist/core/pathSerializer.gen.d.ts +34 -0
  38. package/dist/core/pathSerializer.gen.d.ts.map +1 -0
  39. package/dist/core/pathSerializer.gen.js +107 -0
  40. package/dist/core/pathSerializer.gen.js.map +1 -0
  41. package/dist/core/queryKeySerializer.gen.d.ts +19 -0
  42. package/dist/core/queryKeySerializer.gen.d.ts.map +1 -0
  43. package/dist/core/queryKeySerializer.gen.js +93 -0
  44. package/dist/core/queryKeySerializer.gen.js.map +1 -0
  45. package/dist/core/serverSentEvents.gen.d.ts +72 -0
  46. package/dist/core/serverSentEvents.gen.d.ts.map +1 -0
  47. package/dist/core/serverSentEvents.gen.js +133 -0
  48. package/dist/core/serverSentEvents.gen.js.map +1 -0
  49. package/dist/core/types.gen.d.ts +79 -0
  50. package/dist/core/types.gen.d.ts.map +1 -0
  51. package/dist/core/types.gen.js +3 -0
  52. package/dist/core/types.gen.js.map +1 -0
  53. package/dist/core/utils.gen.d.ts +20 -0
  54. package/dist/core/utils.gen.d.ts.map +1 -0
  55. package/dist/core/utils.gen.js +88 -0
  56. package/dist/core/utils.gen.js.map +1 -0
  57. package/dist/schemas.gen.d.ts +1321 -599
  58. package/dist/schemas.gen.d.ts.map +1 -1
  59. package/dist/schemas.gen.js +2652 -688
  60. package/dist/schemas.gen.js.map +1 -1
  61. package/dist/sdk.gen.d.ts +172 -62
  62. package/dist/sdk.gen.d.ts.map +1 -1
  63. package/dist/sdk.gen.js +217 -164
  64. package/dist/sdk.gen.js.map +1 -1
  65. package/dist/services/kubernetes/api.d.ts +20 -20
  66. package/dist/types.gen.d.ts +1052 -360
  67. package/dist/types.gen.d.ts.map +1 -1
  68. package/dist/zod.gen.d.ts +3510 -2588
  69. package/dist/zod.gen.d.ts.map +1 -1
  70. package/dist/zod.gen.js +1213 -926
  71. package/dist/zod.gen.js.map +1 -1
  72. package/package.json +29 -7
@@ -1,4 +1,11 @@
1
+ export type ClientOptions = {
2
+ baseUrl: 'https://api.cloudfleet.ai/v1' | (string & {});
3
+ };
1
4
  export type BillingContact = {
5
+ /**
6
+ * Type of the organization. `business` for legal entities, `personal` for individuals.
7
+ */
8
+ type: 'business' | 'personal';
2
9
  /**
3
10
  * Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.
4
11
  */
@@ -36,13 +43,9 @@ export type BillingContact = {
36
43
  */
37
44
  email: string;
38
45
  /**
39
- * First name of the billing contact person.
40
- */
41
- first_name: string;
42
- /**
43
- * Last name of the billing contact person.
46
+ * Name of the billing contact person.
44
47
  */
45
- last_name: string;
48
+ individual_name: string;
46
49
  /**
47
50
  * Tax ID of the organization.
48
51
  */
@@ -58,35 +61,31 @@ export type BillingCredits = {
58
61
  */
59
62
  id?: string;
60
63
  /**
61
- * Date of the credit application. ISO 8601 date string in the UTC timezone.
62
- */
63
- date_created: string;
64
- /**
65
- * Promotional code used by the customer.
64
+ * Type of the promotional code.
66
65
  */
67
- code: string;
66
+ type: 'credit' | 'discount';
68
67
  /**
69
- * Description of the promotional code.
68
+ * Timestamp when the credit becomes active. ISO 8601 date string in the UTC timezone.
70
69
  */
71
- description?: string;
70
+ date_start: string;
72
71
  /**
73
- * List of product SKUs that the promotional code can be used on.
72
+ * Timestamp when the credit expires or becomes inactive. ISO 8601 date string in the UTC timezone.
74
73
  */
75
- products?: Array<string>;
74
+ date_end?: string;
76
75
  /**
77
- * Type of the promotional code.
76
+ * Promotional code used by the customer.
78
77
  */
79
- type: 'credit' | 'discount';
78
+ code: string;
80
79
  /**
81
- * Value of the promotional code.
80
+ * Description of the promotional code.
82
81
  */
83
- value: number;
82
+ description?: string;
84
83
  /**
85
- * Date of the billing cycle. An ISO 8601 date string in the UTC timezone.
84
+ * Total value of the promotional code.
86
85
  */
87
- billing_period: string;
86
+ value_total: number;
88
87
  /**
89
- * Value of the promotional code.
88
+ * Remaining value of the promotional code.
90
89
  */
91
90
  value_remaining?: number;
92
91
  };
@@ -174,13 +173,13 @@ export type ClusterCreateInput = {
174
173
  */
175
174
  tier: 'basic' | 'pro';
176
175
  /**
177
- * Cloudfleet control plane region. One of "staging", "northamerica-central-1", "europe-central-1a". This field can not be updated after creation.
176
+ * Cloudfleet control plane region. One of "staging-1a", "northamerica-central-1", "europe-central-1a", "northamerica-central-1a". This field can not be updated after creation.
178
177
  */
179
- region?: 'staging' | 'northamerica-central-1' | 'europe-central-1a';
178
+ region?: 'staging-1a' | 'northamerica-central-1' | 'europe-central-1a' | 'northamerica-central-1a';
180
179
  /**
181
180
  * Version of the kubernetes cluster.
182
181
  */
183
- version_channel?: string;
182
+ version_channel?: '1.x.x-cfke.x' | '1.31.x-cfke.x' | '1.32.x-cfke.x' | '1.33.x-cfke.x';
184
183
  };
185
184
  export type ClusterJoinInformation = {
186
185
  /**
@@ -191,6 +190,10 @@ export type ClusterJoinInformation = {
191
190
  * Internal URL of the Kubernetes cluster control plane. This is the endpoint that kubelet uses to connect to the cluster.
192
191
  */
193
192
  endpoint: string;
193
+ /**
194
+ * Cluster DNS IP address. This is the IP address of the kube-dns service in the cluster.
195
+ */
196
+ cluster_dns: string;
194
197
  /**
195
198
  * Authentication key for the cluster.
196
199
  */
@@ -215,6 +218,10 @@ export type ClusterJoinInformation = {
215
218
  * Containerd version of the cluster.
216
219
  */
217
220
  containerd: string;
221
+ /**
222
+ * NVIDIA driver version of the cluster.
223
+ */
224
+ nvidia_driver: string;
218
225
  };
219
226
  /**
220
227
  * OIDC Information for hosts to access to third party API's.
@@ -244,13 +251,9 @@ export type Cluster = {
244
251
  */
245
252
  tier: 'basic' | 'pro';
246
253
  /**
247
- * Cloudfleet control plane region. One of "staging", "northamerica-central-1", "europe-central-1a". This field can not be updated after creation.
254
+ * Cloudfleet control plane region. One of "staging-1a", "northamerica-central-1", "europe-central-1a", "northamerica-central-1a". This field can not be updated after creation.
248
255
  */
249
- region?: 'staging' | 'northamerica-central-1' | 'europe-central-1a';
250
- /**
251
- * Version of the kubernetes cluster.
252
- */
253
- version_channel?: string;
256
+ region?: 'staging-1a' | 'northamerica-central-1' | 'europe-central-1a' | 'northamerica-central-1a';
254
257
  /**
255
258
  * Unique identifier of the kubernetes cluster. UUID v4 string in canonical form
256
259
  */
@@ -258,8 +261,9 @@ export type Cluster = {
258
261
  /**
259
262
  * Status of the cluster. When creating a new cluster, set to `active`. When deleting a clusters, set to `deleted`.
260
263
  */
261
- status: 'active' | 'deleted' | 'creating' | 'deployed' | 'failed' | 'updating';
264
+ status: 'active' | 'disabled' | 'deleted' | 'creating' | 'deployed' | 'failed' | 'updating';
262
265
  endpoint?: string | '';
266
+ endpoint_public?: string | '';
263
267
  /**
264
268
  * Certificate authority data for the kubernetes cluster. This is the root certificate authority for the cluster.
265
269
  */
@@ -280,6 +284,10 @@ export type Cluster = {
280
284
  * Indicates if the cluster is ready to be used.
281
285
  */
282
286
  ready?: boolean;
287
+ /**
288
+ * Version of the kubernetes cluster.
289
+ */
290
+ version_channel?: string;
283
291
  };
284
292
  export type ClusterUpdateInput = {
285
293
  /**
@@ -301,31 +309,56 @@ export type FleetCreateInput = {
301
309
  */
302
310
  limits?: {
303
311
  /**
304
- * CPU limit in cores.
312
+ * CPU limit in cores. Maximum 100,000.
305
313
  */
306
- cpu: number;
314
+ cpu?: number;
307
315
  };
308
316
  gcp?: {
309
- enabled?: boolean;
317
+ enabled: boolean;
310
318
  /**
311
- * Project GCP Project id to deploy instances into
319
+ * GCP project ID to deploy instances into. 6-30 chars, lowercase letters/digits/hyphens, must start with a letter and not end with a hyphen. Omit when GCP is disabled.
312
320
  */
313
- project: string;
321
+ project?: string;
314
322
  };
315
323
  hetzner?: {
316
- enabled?: boolean;
324
+ enabled: boolean;
317
325
  /**
318
- * Hetzner Cloud API key with read / write access
326
+ * Hetzner Cloud API token with read / write access (64 alphanumeric characters). Omit this field to keep the existing value.
319
327
  */
320
- apiKey: string;
328
+ apiKey?: string;
321
329
  };
322
330
  aws?: {
323
- enabled?: boolean;
331
+ enabled: boolean;
324
332
  /**
325
- * ControllerRoleArn is the AWS IAM role that Karpenter uses to manage resources.
333
+ * AWS IAM role ARN that Karpenter uses to manage resources. Omit when AWS is disabled.
326
334
  */
327
- controllerRoleArn: string;
335
+ controllerRoleArn?: string;
328
336
  };
337
+ /**
338
+ * Constraints define scheduling and provisioning requirements for the fleet. Each field restricts the values allowed for a given Kubernetes label key. Multiple constraints are ANDed together. Omit a field to place no restriction on that key.
339
+ */
340
+ constraints?: {
341
+ /**
342
+ * Allowed values for `karpenter.sh/capacity-type`.
343
+ */
344
+ 'karpenter.sh/capacity-type'?: Array<'on-demand' | 'spot'>;
345
+ /**
346
+ * Allowed values for `kubernetes.io/arch`.
347
+ */
348
+ 'kubernetes.io/arch'?: Array<'amd64' | 'arm64'>;
349
+ /**
350
+ * Allowed values for `cfke.io/instance-family`.
351
+ */
352
+ 'cfke.io/instance-family'?: Array<'a1' | 'a2' | 'a3' | 'a4' | 'c1' | 'c2' | 'c2d' | 'c3' | 'c3d' | 'c4' | 'c4a' | 'c4d' | 'c5' | 'c5a' | 'c5ad' | 'c5d' | 'c5n' | 'c6a' | 'c6g' | 'c6gd' | 'c6gn' | 'c6i' | 'c6id' | 'c6in' | 'c7a' | 'c7g' | 'c7gd' | 'c7gn' | 'c7i' | 'c7i-flex' | 'c8g' | 'c8gd' | 'cax' | 'ccx' | 'cpx' | 'cx' | 'd2' | 'd3' | 'd3en' | 'dl1' | 'dl2q' | 'e2' | 'f1' | 'f2' | 'g1' | 'g2' | 'g4ad' | 'g4dn' | 'g5' | 'g5g' | 'g6' | 'g6e' | 'gr6' | 'h1' | 'h3' | 'hpc6a' | 'hpc6id' | 'hpc7a' | 'hpc7g' | 'i2' | 'i3' | 'i3en' | 'i4g' | 'i4i' | 'i7i' | 'i7ie' | 'i8g' | 'im4gn' | 'inf1' | 'inf2' | 'is4gen' | 'm1' | 'm2' | 'm3' | 'm4' | 'm5' | 'm5a' | 'm5ad' | 'm5d' | 'm5dn' | 'm5n' | 'm5zn' | 'm6a' | 'm6g' | 'm6gd' | 'm6i' | 'm6id' | 'm6idn' | 'm6in' | 'm7a' | 'm7g' | 'm7gd' | 'm7i' | 'm7i-flex' | 'm8g' | 'm8gd' | 'n1' | 'n2' | 'n2d' | 'n4' | 'p3' | 'p3dn' | 'p4d' | 'p4de' | 'p5' | 'p5e' | 'p5en' | 'p6-b200' | 'r3' | 'r4' | 'r5' | 'r5a' | 'r5ad' | 'r5b' | 'r5d' | 'r5dn' | 'r5n' | 'r6a' | 'r6g' | 'r6gd' | 'r6i' | 'r6id' | 'r6idn' | 'r6in' | 'r7a' | 'r7g' | 'r7gd' | 'r7i' | 'r7iz' | 'r8g' | 'r8gd' | 't2' | 't2a' | 't2d' | 't3' | 't3a' | 't4g' | 'trn1' | 'trn1n' | 'u-3tb1' | 'u-6tb1' | 'u7i-12tb' | 'u7i-6tb' | 'u7i-8tb' | 'u7in-16tb' | 'u7in-24tb' | 'u7in-32tb' | 'vt1' | 'x1' | 'x1e' | 'x2gd' | 'x2idn' | 'x2iedn' | 'x2iezn' | 'x4' | 'x8g' | 'z1d' | 'z3'>;
353
+ /**
354
+ * Allowed values for `topology.kubernetes.io/region`.
355
+ */
356
+ 'topology.kubernetes.io/region'?: Array<'africa-south1' | 'ap-northeast-1' | 'ap-northeast-2' | 'ap-northeast-3' | 'ap-south-1' | 'ap-southeast-1' | 'ap-southeast-2' | 'ash' | 'asia-east1' | 'asia-east2' | 'asia-northeast1' | 'asia-northeast2' | 'asia-northeast3' | 'asia-south1' | 'asia-south2' | 'asia-southeast1' | 'asia-southeast2' | 'australia-southeast1' | 'australia-southeast2' | 'ca-central-1' | 'eu-central-1' | 'eu-central-2' | 'eu-north-1' | 'eu-west-1' | 'eu-west-2' | 'eu-west-3' | 'europe-central2' | 'europe-north1' | 'europe-southwest1' | 'europe-west1' | 'europe-west10' | 'europe-west12' | 'europe-west2' | 'europe-west3' | 'europe-west4' | 'europe-west6' | 'europe-west8' | 'europe-west9' | 'fsn1' | 'hel1' | 'hil' | 'me-central1' | 'me-central2' | 'me-west1' | 'nbg1' | 'northamerica-northeast1' | 'northamerica-northeast2' | 'sa-east-1' | 'sin' | 'southamerica-east1' | 'southamerica-west1' | 'us-central1' | 'us-east-1' | 'us-east-2' | 'us-east1' | 'us-east4' | 'us-east5' | 'us-south1' | 'us-west-1' | 'us-west-2' | 'us-west1' | 'us-west2' | 'us-west3' | 'us-west4'>;
357
+ };
358
+ /**
359
+ * Controls scale-up / scale-down responsiveness. `aggressive` prioritizes cost-optimization. `conservative` prioritizes stability of the fleet.
360
+ */
361
+ scalingProfile?: 'aggressive' | 'conservative';
329
362
  /**
330
363
  * Unique identifier of the kubernetes fleet.
331
364
  */
@@ -337,31 +370,56 @@ export type Fleet = {
337
370
  */
338
371
  limits?: {
339
372
  /**
340
- * CPU limit in cores.
373
+ * CPU limit in cores. Maximum 100,000.
341
374
  */
342
- cpu: number;
375
+ cpu?: number;
343
376
  };
344
377
  gcp?: {
345
- enabled?: boolean;
378
+ enabled: boolean;
346
379
  /**
347
- * Project GCP Project id to deploy instances into
380
+ * GCP project ID to deploy instances into. 6-30 chars, lowercase letters/digits/hyphens, must start with a letter and not end with a hyphen. Omit when GCP is disabled.
348
381
  */
349
- project: string;
382
+ project?: string;
350
383
  };
351
384
  hetzner?: {
352
- enabled?: boolean;
385
+ enabled: boolean;
353
386
  /**
354
- * Hetzner Cloud API key with read / write access
387
+ * Redacted Hetzner API token. Returned as 64 asterisks when a token is configured; omitted otherwise. The real value is never echoed by the API.
355
388
  */
356
- apiKey: string;
389
+ apiKey?: string;
357
390
  };
358
391
  aws?: {
359
- enabled?: boolean;
392
+ enabled: boolean;
360
393
  /**
361
- * ControllerRoleArn is the AWS IAM role that Karpenter uses to manage resources.
394
+ * AWS IAM role ARN that Karpenter uses to manage resources. Omit when AWS is disabled.
362
395
  */
363
- controllerRoleArn: string;
396
+ controllerRoleArn?: string;
364
397
  };
398
+ /**
399
+ * Constraints define scheduling and provisioning requirements for the fleet. Each field restricts the values allowed for a given Kubernetes label key. Multiple constraints are ANDed together. Omit a field to place no restriction on that key.
400
+ */
401
+ constraints?: {
402
+ /**
403
+ * Allowed values for `karpenter.sh/capacity-type`.
404
+ */
405
+ 'karpenter.sh/capacity-type'?: Array<'on-demand' | 'spot'>;
406
+ /**
407
+ * Allowed values for `kubernetes.io/arch`.
408
+ */
409
+ 'kubernetes.io/arch'?: Array<'amd64' | 'arm64'>;
410
+ /**
411
+ * Allowed values for `cfke.io/instance-family`.
412
+ */
413
+ 'cfke.io/instance-family'?: Array<'a1' | 'a2' | 'a3' | 'a4' | 'c1' | 'c2' | 'c2d' | 'c3' | 'c3d' | 'c4' | 'c4a' | 'c4d' | 'c5' | 'c5a' | 'c5ad' | 'c5d' | 'c5n' | 'c6a' | 'c6g' | 'c6gd' | 'c6gn' | 'c6i' | 'c6id' | 'c6in' | 'c7a' | 'c7g' | 'c7gd' | 'c7gn' | 'c7i' | 'c7i-flex' | 'c8g' | 'c8gd' | 'cax' | 'ccx' | 'cpx' | 'cx' | 'd2' | 'd3' | 'd3en' | 'dl1' | 'dl2q' | 'e2' | 'f1' | 'f2' | 'g1' | 'g2' | 'g4ad' | 'g4dn' | 'g5' | 'g5g' | 'g6' | 'g6e' | 'gr6' | 'h1' | 'h3' | 'hpc6a' | 'hpc6id' | 'hpc7a' | 'hpc7g' | 'i2' | 'i3' | 'i3en' | 'i4g' | 'i4i' | 'i7i' | 'i7ie' | 'i8g' | 'im4gn' | 'inf1' | 'inf2' | 'is4gen' | 'm1' | 'm2' | 'm3' | 'm4' | 'm5' | 'm5a' | 'm5ad' | 'm5d' | 'm5dn' | 'm5n' | 'm5zn' | 'm6a' | 'm6g' | 'm6gd' | 'm6i' | 'm6id' | 'm6idn' | 'm6in' | 'm7a' | 'm7g' | 'm7gd' | 'm7i' | 'm7i-flex' | 'm8g' | 'm8gd' | 'n1' | 'n2' | 'n2d' | 'n4' | 'p3' | 'p3dn' | 'p4d' | 'p4de' | 'p5' | 'p5e' | 'p5en' | 'p6-b200' | 'r3' | 'r4' | 'r5' | 'r5a' | 'r5ad' | 'r5b' | 'r5d' | 'r5dn' | 'r5n' | 'r6a' | 'r6g' | 'r6gd' | 'r6i' | 'r6id' | 'r6idn' | 'r6in' | 'r7a' | 'r7g' | 'r7gd' | 'r7i' | 'r7iz' | 'r8g' | 'r8gd' | 't2' | 't2a' | 't2d' | 't3' | 't3a' | 't4g' | 'trn1' | 'trn1n' | 'u-3tb1' | 'u-6tb1' | 'u7i-12tb' | 'u7i-6tb' | 'u7i-8tb' | 'u7in-16tb' | 'u7in-24tb' | 'u7in-32tb' | 'vt1' | 'x1' | 'x1e' | 'x2gd' | 'x2idn' | 'x2iedn' | 'x2iezn' | 'x4' | 'x8g' | 'z1d' | 'z3'>;
414
+ /**
415
+ * Allowed values for `topology.kubernetes.io/region`.
416
+ */
417
+ 'topology.kubernetes.io/region'?: Array<'africa-south1' | 'ap-northeast-1' | 'ap-northeast-2' | 'ap-northeast-3' | 'ap-south-1' | 'ap-southeast-1' | 'ap-southeast-2' | 'ash' | 'asia-east1' | 'asia-east2' | 'asia-northeast1' | 'asia-northeast2' | 'asia-northeast3' | 'asia-south1' | 'asia-south2' | 'asia-southeast1' | 'asia-southeast2' | 'australia-southeast1' | 'australia-southeast2' | 'ca-central-1' | 'eu-central-1' | 'eu-central-2' | 'eu-north-1' | 'eu-west-1' | 'eu-west-2' | 'eu-west-3' | 'europe-central2' | 'europe-north1' | 'europe-southwest1' | 'europe-west1' | 'europe-west10' | 'europe-west12' | 'europe-west2' | 'europe-west3' | 'europe-west4' | 'europe-west6' | 'europe-west8' | 'europe-west9' | 'fsn1' | 'hel1' | 'hil' | 'me-central1' | 'me-central2' | 'me-west1' | 'nbg1' | 'northamerica-northeast1' | 'northamerica-northeast2' | 'sa-east-1' | 'sin' | 'southamerica-east1' | 'southamerica-west1' | 'us-central1' | 'us-east-1' | 'us-east-2' | 'us-east1' | 'us-east4' | 'us-east5' | 'us-south1' | 'us-west-1' | 'us-west-2' | 'us-west1' | 'us-west2' | 'us-west3' | 'us-west4'>;
418
+ };
419
+ /**
420
+ * Controls scale-up / scale-down responsiveness. `aggressive` prioritizes cost-optimization. `conservative` prioritizes stability of the fleet.
421
+ */
422
+ scalingProfile: 'aggressive' | 'conservative';
365
423
  /**
366
424
  * Unique identifier of the kubernetes fleet.
367
425
  */
@@ -373,31 +431,56 @@ export type FleetUpdateInput = {
373
431
  */
374
432
  limits?: {
375
433
  /**
376
- * CPU limit in cores.
434
+ * CPU limit in cores. Maximum 100,000.
377
435
  */
378
- cpu: number;
436
+ cpu?: number;
379
437
  };
380
438
  gcp?: {
381
- enabled?: boolean;
439
+ enabled: boolean;
382
440
  /**
383
- * Project GCP Project id to deploy instances into
441
+ * GCP project ID to deploy instances into. 6-30 chars, lowercase letters/digits/hyphens, must start with a letter and not end with a hyphen. Omit when GCP is disabled.
384
442
  */
385
- project: string;
443
+ project?: string;
386
444
  };
387
445
  hetzner?: {
388
- enabled?: boolean;
446
+ enabled: boolean;
389
447
  /**
390
- * Hetzner Cloud API key with read / write access
448
+ * Hetzner Cloud API token with read / write access (64 alphanumeric characters). Omit this field to keep the existing value.
391
449
  */
392
- apiKey: string;
450
+ apiKey?: string;
393
451
  };
394
452
  aws?: {
395
- enabled?: boolean;
453
+ enabled: boolean;
396
454
  /**
397
- * ControllerRoleArn is the AWS IAM role that Karpenter uses to manage resources.
455
+ * AWS IAM role ARN that Karpenter uses to manage resources. Omit when AWS is disabled.
398
456
  */
399
- controllerRoleArn: string;
457
+ controllerRoleArn?: string;
400
458
  };
459
+ /**
460
+ * Constraints define scheduling and provisioning requirements for the fleet. Each field restricts the values allowed for a given Kubernetes label key. Multiple constraints are ANDed together. Omit a field to place no restriction on that key.
461
+ */
462
+ constraints?: {
463
+ /**
464
+ * Allowed values for `karpenter.sh/capacity-type`.
465
+ */
466
+ 'karpenter.sh/capacity-type'?: Array<'on-demand' | 'spot'>;
467
+ /**
468
+ * Allowed values for `kubernetes.io/arch`.
469
+ */
470
+ 'kubernetes.io/arch'?: Array<'amd64' | 'arm64'>;
471
+ /**
472
+ * Allowed values for `cfke.io/instance-family`.
473
+ */
474
+ 'cfke.io/instance-family'?: Array<'a1' | 'a2' | 'a3' | 'a4' | 'c1' | 'c2' | 'c2d' | 'c3' | 'c3d' | 'c4' | 'c4a' | 'c4d' | 'c5' | 'c5a' | 'c5ad' | 'c5d' | 'c5n' | 'c6a' | 'c6g' | 'c6gd' | 'c6gn' | 'c6i' | 'c6id' | 'c6in' | 'c7a' | 'c7g' | 'c7gd' | 'c7gn' | 'c7i' | 'c7i-flex' | 'c8g' | 'c8gd' | 'cax' | 'ccx' | 'cpx' | 'cx' | 'd2' | 'd3' | 'd3en' | 'dl1' | 'dl2q' | 'e2' | 'f1' | 'f2' | 'g1' | 'g2' | 'g4ad' | 'g4dn' | 'g5' | 'g5g' | 'g6' | 'g6e' | 'gr6' | 'h1' | 'h3' | 'hpc6a' | 'hpc6id' | 'hpc7a' | 'hpc7g' | 'i2' | 'i3' | 'i3en' | 'i4g' | 'i4i' | 'i7i' | 'i7ie' | 'i8g' | 'im4gn' | 'inf1' | 'inf2' | 'is4gen' | 'm1' | 'm2' | 'm3' | 'm4' | 'm5' | 'm5a' | 'm5ad' | 'm5d' | 'm5dn' | 'm5n' | 'm5zn' | 'm6a' | 'm6g' | 'm6gd' | 'm6i' | 'm6id' | 'm6idn' | 'm6in' | 'm7a' | 'm7g' | 'm7gd' | 'm7i' | 'm7i-flex' | 'm8g' | 'm8gd' | 'n1' | 'n2' | 'n2d' | 'n4' | 'p3' | 'p3dn' | 'p4d' | 'p4de' | 'p5' | 'p5e' | 'p5en' | 'p6-b200' | 'r3' | 'r4' | 'r5' | 'r5a' | 'r5ad' | 'r5b' | 'r5d' | 'r5dn' | 'r5n' | 'r6a' | 'r6g' | 'r6gd' | 'r6i' | 'r6id' | 'r6idn' | 'r6in' | 'r7a' | 'r7g' | 'r7gd' | 'r7i' | 'r7iz' | 'r8g' | 'r8gd' | 't2' | 't2a' | 't2d' | 't3' | 't3a' | 't4g' | 'trn1' | 'trn1n' | 'u-3tb1' | 'u-6tb1' | 'u7i-12tb' | 'u7i-6tb' | 'u7i-8tb' | 'u7in-16tb' | 'u7in-24tb' | 'u7in-32tb' | 'vt1' | 'x1' | 'x1e' | 'x2gd' | 'x2idn' | 'x2iedn' | 'x2iezn' | 'x4' | 'x8g' | 'z1d' | 'z3'>;
475
+ /**
476
+ * Allowed values for `topology.kubernetes.io/region`.
477
+ */
478
+ 'topology.kubernetes.io/region'?: Array<'africa-south1' | 'ap-northeast-1' | 'ap-northeast-2' | 'ap-northeast-3' | 'ap-south-1' | 'ap-southeast-1' | 'ap-southeast-2' | 'ash' | 'asia-east1' | 'asia-east2' | 'asia-northeast1' | 'asia-northeast2' | 'asia-northeast3' | 'asia-south1' | 'asia-south2' | 'asia-southeast1' | 'asia-southeast2' | 'australia-southeast1' | 'australia-southeast2' | 'ca-central-1' | 'eu-central-1' | 'eu-central-2' | 'eu-north-1' | 'eu-west-1' | 'eu-west-2' | 'eu-west-3' | 'europe-central2' | 'europe-north1' | 'europe-southwest1' | 'europe-west1' | 'europe-west10' | 'europe-west12' | 'europe-west2' | 'europe-west3' | 'europe-west4' | 'europe-west6' | 'europe-west8' | 'europe-west9' | 'fsn1' | 'hel1' | 'hil' | 'me-central1' | 'me-central2' | 'me-west1' | 'nbg1' | 'northamerica-northeast1' | 'northamerica-northeast2' | 'sa-east-1' | 'sin' | 'southamerica-east1' | 'southamerica-west1' | 'us-central1' | 'us-east-1' | 'us-east-2' | 'us-east1' | 'us-east4' | 'us-east5' | 'us-south1' | 'us-west-1' | 'us-west-2' | 'us-west1' | 'us-west2' | 'us-west3' | 'us-west4'>;
479
+ };
480
+ /**
481
+ * Controls scale-up / scale-down responsiveness. `aggressive` prioritizes cost-optimization. `conservative` prioritizes stability of the fleet.
482
+ */
483
+ scalingProfile: 'aggressive' | 'conservative';
401
484
  };
402
485
  export type Invite = {
403
486
  /**
@@ -423,282 +506,127 @@ export type Invite = {
423
506
  };
424
507
  export type Invoice = {
425
508
  /**
426
- * Unique identifier of the invoice. UUID v4 string in canonical form
509
+ * Unique identifier of the invoice.
427
510
  */
428
511
  id?: string;
429
- /**
430
- * Unique identifier of the organization. UUID v4 string in canonical form
431
- */
432
- organizationId?: string;
512
+ number?: string;
433
513
  /**
434
514
  * Status of the invoice
435
515
  */
436
- status?: 'DRAFT' | 'COMMITTED' | 'VOID';
516
+ status?: string;
437
517
  /**
438
518
  * Total amount of the invoice
439
519
  */
440
- amount?: number;
520
+ total?: number;
441
521
  /**
442
522
  * Currency of the invoice
443
523
  */
444
- currency?: 'AED' | 'AFN' | 'ALL' | 'AMD' | 'ANG' | 'AOA' | 'ARS' | 'AUD' | 'AWG' | 'AZN' | 'BAM' | 'BBD' | 'BDT' | 'BGN' | 'BHD' | 'BIF' | 'BMD' | 'BND' | 'BOB' | 'BRL' | 'BSD' | 'BTN' | 'BWP' | 'BYR' | 'BZD' | 'CAD' | 'CDF' | 'CHF' | 'CLP' | 'CNY' | 'COP' | 'CRC' | 'CUC' | 'CUP' | 'CVE' | 'CZK' | 'DJF' | 'DKK' | 'DOP' | 'DZD' | 'EGP' | 'ERN' | 'ETB' | 'EUR' | 'FJD' | 'FKP' | 'GBP' | 'GEL' | 'GGP' | 'GHS' | 'GIP' | 'GMD' | 'GNF' | 'GTQ' | 'GYD' | 'HKD' | 'HNL' | 'HRK' | 'HTG' | 'HUF' | 'IDR' | 'ILS' | 'IMP' | 'INR' | 'IQD' | 'IRR' | 'ISK' | 'JEP' | 'JMD' | 'JOD' | 'JPY' | 'KES' | 'KGS' | 'KHR' | 'KMF' | 'KPW' | 'KRW' | 'KWD' | 'KYD' | 'KZT' | 'LAK' | 'LBP' | 'LKR' | 'LRD' | 'LSL' | 'LTL' | 'LVL' | 'LYD' | 'MAD' | 'MDL' | 'MGA' | 'MKD' | 'MMK' | 'MNT' | 'MOP' | 'MRO' | 'MUR' | 'MVR' | 'MWK' | 'MXN' | 'MYR' | 'MZN' | 'NAD' | 'NGN' | 'NIO' | 'NOK' | 'NPR' | 'NZD' | 'OMR' | 'PAB' | 'PEN' | 'PGK' | 'PHP' | 'PKR' | 'PLN' | 'PYG' | 'QAR' | 'RON' | 'RSD' | 'RUB' | 'RWF' | 'SAR' | 'SBD' | 'SCR' | 'SDG' | 'SEK' | 'SGD' | 'SHP' | 'SLL' | 'SOS' | 'SPL' | 'SRD' | 'STD' | 'SVC' | 'SYP' | 'SZL' | 'THB' | 'TJS' | 'TMT' | 'TND' | 'TOP' | 'TRY' | 'TTD' | 'TVD' | 'TWD' | 'TZS' | 'UAH' | 'UGX' | 'USD' | 'UYU' | 'UZS' | 'VEF' | 'VND' | 'VUV' | 'WST' | 'XAF' | 'XCD' | 'XDR' | 'XOF' | 'XPF' | 'YER' | 'ZAR' | 'ZMW' | 'ZWD' | 'BTC';
524
+ currency?: string;
445
525
  /**
446
- * Total amount of credit adjustments
526
+ * Timestamp when the invoice was issued. ISO 8601 date string in the UTC timezone.
447
527
  */
448
- creditAdj?: number;
528
+ created: string;
449
529
  /**
450
- * Total amount of refund adjustments
530
+ * Billing period start timestamp. ISO 8601 date string in the UTC timezone.
451
531
  */
452
- refundAdj?: number;
532
+ period_start: string;
453
533
  /**
454
- * Date of the invoice
534
+ * Billing period end timestamp. ISO 8601 date string in the UTC timezone.
455
535
  */
456
- invoiceDate?: string;
536
+ period_end: string;
537
+ invoice_pdf?: string;
538
+ };
539
+ export type MarketplaceListingFiles = {
457
540
  /**
458
- * Target date of the invoice
541
+ * Raw Chart.yaml content from the Helm chart
459
542
  */
460
- targetDate?: string;
543
+ chartYaml?: string;
461
544
  /**
462
- * Number of the invoice
545
+ * Raw values.yaml content from the Helm chart
463
546
  */
464
- invoiceNumber?: string;
547
+ valuesYaml?: string;
465
548
  /**
466
- * Balance of the invoice
549
+ * JSON schema for values.yaml as a string
467
550
  */
468
- balance?: number;
551
+ valuesSchemaJson?: string;
552
+ };
553
+ export type MarketplaceListing = {
469
554
  /**
470
- * Bundle keys of the invoice
555
+ * Name of the chart
471
556
  */
472
- bundleKeys?: string;
557
+ name: string;
473
558
  /**
474
- * Credits of the invoice
559
+ * Available versions of the chart
475
560
  */
476
- credits?: Array<{
477
- /**
478
- * Unique identifier of the invoice item. UUID v4 string in canonical form
479
- */
480
- id?: string;
481
- /**
482
- * Unique identifier of the linked invoice item. UUID v4 string in canonical form
483
- */
484
- linkedInvoiceItemId?: string;
485
- /**
486
- * Name of the product
487
- */
488
- productName?: string;
489
- /**
490
- * Name of the plan
491
- */
492
- planName?: string;
493
- /**
494
- * Name of the phase
495
- */
496
- phaseName?: string;
497
- /**
498
- * Name of the usage
499
- */
500
- usageName?: string;
501
- /**
502
- * Pretty name of the product
503
- */
504
- prettyProductName?: string;
505
- /**
506
- * Pretty name of the plan
507
- */
508
- prettyPlanName?: string;
509
- /**
510
- * Pretty name of the phase
511
- */
512
- prettyPhaseName?: string;
513
- /**
514
- * Pretty name of the usage
515
- */
516
- prettyUsageName?: string;
517
- /**
518
- * Type of the invoice item
519
- */
520
- itemType?: 'EXTERNAL_CHARGE' | 'FIXED' | 'RECURRING' | 'REPAIR_ADJ' | 'CBA_ADJ' | 'CREDIT_ADJ' | 'ITEM_ADJ' | 'USAGE' | 'TAX' | 'PARENT_SUMMARY';
521
- /**
522
- * Description of the invoice item
523
- */
524
- description?: string;
525
- /**
526
- * Start date of the invoice item
527
- */
528
- startDate?: string;
529
- /**
530
- * End date of the invoice item
531
- */
532
- endDate?: string;
533
- /**
534
- * Amount of the invoice item
535
- */
536
- amount?: number;
537
- /**
538
- * Rate of the invoice item
539
- */
540
- rate?: number;
541
- /**
542
- * Currency of the invoice item
543
- */
544
- currency?: 'AED' | 'AFN' | 'ALL' | 'AMD' | 'ANG' | 'AOA' | 'ARS' | 'AUD' | 'AWG' | 'AZN' | 'BAM' | 'BBD' | 'BDT' | 'BGN' | 'BHD' | 'BIF' | 'BMD' | 'BND' | 'BOB' | 'BRL' | 'BSD' | 'BTN' | 'BWP' | 'BYR' | 'BZD' | 'CAD' | 'CDF' | 'CHF' | 'CLP' | 'CNY' | 'COP' | 'CRC' | 'CUC' | 'CUP' | 'CVE' | 'CZK' | 'DJF' | 'DKK' | 'DOP' | 'DZD' | 'EGP' | 'ERN' | 'ETB' | 'EUR' | 'FJD' | 'FKP' | 'GBP' | 'GEL' | 'GGP' | 'GHS' | 'GIP' | 'GMD' | 'GNF' | 'GTQ' | 'GYD' | 'HKD' | 'HNL' | 'HRK' | 'HTG' | 'HUF' | 'IDR' | 'ILS' | 'IMP' | 'INR' | 'IQD' | 'IRR' | 'ISK' | 'JEP' | 'JMD' | 'JOD' | 'JPY' | 'KES' | 'KGS' | 'KHR' | 'KMF' | 'KPW' | 'KRW' | 'KWD' | 'KYD' | 'KZT' | 'LAK' | 'LBP' | 'LKR' | 'LRD' | 'LSL' | 'LTL' | 'LVL' | 'LYD' | 'MAD' | 'MDL' | 'MGA' | 'MKD' | 'MMK' | 'MNT' | 'MOP' | 'MRO' | 'MUR' | 'MVR' | 'MWK' | 'MXN' | 'MYR' | 'MZN' | 'NAD' | 'NGN' | 'NIO' | 'NOK' | 'NPR' | 'NZD' | 'OMR' | 'PAB' | 'PEN' | 'PGK' | 'PHP' | 'PKR' | 'PLN' | 'PYG' | 'QAR' | 'RON' | 'RSD' | 'RUB' | 'RWF' | 'SAR' | 'SBD' | 'SCR' | 'SDG' | 'SEK' | 'SGD' | 'SHP' | 'SLL' | 'SOS' | 'SPL' | 'SRD' | 'STD' | 'SVC' | 'SYP' | 'SZL' | 'THB' | 'TJS' | 'TMT' | 'TND' | 'TOP' | 'TRY' | 'TTD' | 'TVD' | 'TWD' | 'TZS' | 'UAH' | 'UGX' | 'USD' | 'UYU' | 'UZS' | 'VEF' | 'VND' | 'VUV' | 'WST' | 'XAF' | 'XCD' | 'XDR' | 'XOF' | 'XPF' | 'YER' | 'ZAR' | 'ZMW' | 'ZWD' | 'BTC';
545
- /**
546
- * Quantity of the invoice item
547
- */
548
- quantity?: number;
549
- /**
550
- * Details of the invoice item
551
- */
552
- itemDetails?: string;
553
- /**
554
- * Effective date of the catalog
555
- */
556
- catalogEffectiveDate?: string;
557
- /**
558
- * Child items of the invoice item
559
- */
560
- childItems?: Array<Array<unknown> | boolean | number | {
561
- [key: string]: unknown;
562
- } | string>;
563
- }>;
561
+ versions: Array<string>;
564
562
  /**
565
- * Items of the invoice
563
+ * Version channels for the chart
566
564
  */
567
- items?: Array<{
568
- /**
569
- * Unique identifier of the invoice item. UUID v4 string in canonical form
570
- */
571
- id?: string;
572
- /**
573
- * Unique identifier of the linked invoice item. UUID v4 string in canonical form
574
- */
575
- linkedInvoiceItemId?: string;
576
- /**
577
- * Name of the product
578
- */
579
- productName?: string;
580
- /**
581
- * Name of the plan
582
- */
583
- planName?: string;
584
- /**
585
- * Name of the phase
586
- */
587
- phaseName?: string;
588
- /**
589
- * Name of the usage
590
- */
591
- usageName?: string;
592
- /**
593
- * Pretty name of the product
594
- */
595
- prettyProductName?: string;
596
- /**
597
- * Pretty name of the plan
598
- */
599
- prettyPlanName?: string;
600
- /**
601
- * Pretty name of the phase
602
- */
603
- prettyPhaseName?: string;
565
+ version_channels: Array<string>;
566
+ /**
567
+ * Latest version of the chart
568
+ */
569
+ latestVersion: string;
570
+ /**
571
+ * Chart metadata
572
+ */
573
+ metadata?: {
604
574
  /**
605
- * Pretty name of the usage
575
+ * Chart name from metadata
606
576
  */
607
- prettyUsageName?: string;
577
+ name: string;
608
578
  /**
609
- * Type of the invoice item
579
+ * Chart version from metadata
610
580
  */
611
- itemType?: 'EXTERNAL_CHARGE' | 'FIXED' | 'RECURRING' | 'REPAIR_ADJ' | 'CBA_ADJ' | 'CREDIT_ADJ' | 'ITEM_ADJ' | 'USAGE' | 'TAX' | 'PARENT_SUMMARY';
581
+ version: string;
612
582
  /**
613
- * Description of the invoice item
583
+ * Chart description
614
584
  */
615
585
  description?: string;
616
586
  /**
617
- * Start date of the invoice item
587
+ * Application version
618
588
  */
619
- startDate?: string;
589
+ appVersion?: string;
620
590
  /**
621
- * End date of the invoice item
591
+ * Helm API version
622
592
  */
623
- endDate?: string;
593
+ apiVersion?: string;
624
594
  /**
625
- * Amount of the invoice item
595
+ * Chart keywords
626
596
  */
627
- amount?: number;
597
+ keywords?: Array<string>;
628
598
  /**
629
- * Rate of the invoice item
599
+ * Chart home URL
630
600
  */
631
- rate?: number;
601
+ home?: string;
632
602
  /**
633
- * Currency of the invoice item
603
+ * A URL to an SVG or PNG image to be used as an icon
634
604
  */
635
- currency?: 'AED' | 'AFN' | 'ALL' | 'AMD' | 'ANG' | 'AOA' | 'ARS' | 'AUD' | 'AWG' | 'AZN' | 'BAM' | 'BBD' | 'BDT' | 'BGN' | 'BHD' | 'BIF' | 'BMD' | 'BND' | 'BOB' | 'BRL' | 'BSD' | 'BTN' | 'BWP' | 'BYR' | 'BZD' | 'CAD' | 'CDF' | 'CHF' | 'CLP' | 'CNY' | 'COP' | 'CRC' | 'CUC' | 'CUP' | 'CVE' | 'CZK' | 'DJF' | 'DKK' | 'DOP' | 'DZD' | 'EGP' | 'ERN' | 'ETB' | 'EUR' | 'FJD' | 'FKP' | 'GBP' | 'GEL' | 'GGP' | 'GHS' | 'GIP' | 'GMD' | 'GNF' | 'GTQ' | 'GYD' | 'HKD' | 'HNL' | 'HRK' | 'HTG' | 'HUF' | 'IDR' | 'ILS' | 'IMP' | 'INR' | 'IQD' | 'IRR' | 'ISK' | 'JEP' | 'JMD' | 'JOD' | 'JPY' | 'KES' | 'KGS' | 'KHR' | 'KMF' | 'KPW' | 'KRW' | 'KWD' | 'KYD' | 'KZT' | 'LAK' | 'LBP' | 'LKR' | 'LRD' | 'LSL' | 'LTL' | 'LVL' | 'LYD' | 'MAD' | 'MDL' | 'MGA' | 'MKD' | 'MMK' | 'MNT' | 'MOP' | 'MRO' | 'MUR' | 'MVR' | 'MWK' | 'MXN' | 'MYR' | 'MZN' | 'NAD' | 'NGN' | 'NIO' | 'NOK' | 'NPR' | 'NZD' | 'OMR' | 'PAB' | 'PEN' | 'PGK' | 'PHP' | 'PKR' | 'PLN' | 'PYG' | 'QAR' | 'RON' | 'RSD' | 'RUB' | 'RWF' | 'SAR' | 'SBD' | 'SCR' | 'SDG' | 'SEK' | 'SGD' | 'SHP' | 'SLL' | 'SOS' | 'SPL' | 'SRD' | 'STD' | 'SVC' | 'SYP' | 'SZL' | 'THB' | 'TJS' | 'TMT' | 'TND' | 'TOP' | 'TRY' | 'TTD' | 'TVD' | 'TWD' | 'TZS' | 'UAH' | 'UGX' | 'USD' | 'UYU' | 'UZS' | 'VEF' | 'VND' | 'VUV' | 'WST' | 'XAF' | 'XCD' | 'XDR' | 'XOF' | 'XPF' | 'YER' | 'ZAR' | 'ZMW' | 'ZWD' | 'BTC';
605
+ icon?: string;
636
606
  /**
637
- * Quantity of the invoice item
607
+ * Chart source URLs
638
608
  */
639
- quantity?: number;
609
+ sources?: Array<string>;
640
610
  /**
641
- * Details of the invoice item
611
+ * Chart maintainers
642
612
  */
643
- itemDetails?: string;
644
- /**
645
- * Effective date of the catalog
646
- */
647
- catalogEffectiveDate?: string;
648
- /**
649
- * Child items of the invoice item
650
- */
651
- childItems?: Array<Array<unknown> | boolean | number | {
652
- [key: string]: unknown;
653
- } | string>;
654
- }>;
613
+ maintainers?: Array<{
614
+ /**
615
+ * Maintainer name
616
+ */
617
+ name: string;
618
+ /**
619
+ * Maintainer email
620
+ */
621
+ email?: string;
622
+ }>;
623
+ };
655
624
  };
656
- export type MarketplaceListing = {
657
- /**
658
- * Id of the chart listing
659
- */
660
- id: string;
661
- /**
662
- * Name of the chart listing
663
- */
664
- name: string;
665
- /**
666
- * Author of the chart listing
667
- */
668
- developer: string;
669
- /**
670
- * Short description of the chart listing
671
- */
672
- description: string;
673
- /**
674
- * Logo of the chart listing
675
- */
676
- logoUrl: string;
677
- /**
678
- * Long description of the chart listing
679
- */
680
- longDescription: string;
625
+ export type OrganizationCreateInput = {
681
626
  /**
682
- * Tags of the chart
627
+ * Type of the organization. `business` for legal entities, `personal` for individuals.
683
628
  */
684
- categories: Array<string>;
685
- version_channels: Array<string>;
686
- value_schemas: Array<{
687
- /**
688
- * Version of the chart.
689
- */
690
- version: string;
691
- /**
692
- * Schema of the chart values. JSON Schema as string
693
- */
694
- schema: string;
695
- /**
696
- * Schema of the chart values
697
- */
698
- placeholder: string;
699
- }>;
700
- };
701
- export type OrganizationCreateInput = {
629
+ type: 'business' | 'personal';
702
630
  /**
703
631
  * Email address used for billing as a string.
704
632
  */
@@ -729,6 +657,10 @@ export type Organization = {
729
657
  * Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.
730
658
  */
731
659
  name?: string;
660
+ /**
661
+ * Type of the organization. `business` for legal entities, `personal` for individuals.
662
+ */
663
+ type: 'business' | 'personal';
732
664
  /**
733
665
  * Creation date of the organization. ISO 8601 date string in UTC timezone
734
666
  */
@@ -778,11 +710,19 @@ export type Organization = {
778
710
  */
779
711
  label: string;
780
712
  }>;
713
+ /**
714
+ * Organization-level maximum CFCR storage volume in GB. -1 means no limit.
715
+ */
716
+ cfcr_storage_gb: number;
781
717
  };
782
718
  /**
783
719
  * Status of the organization. Can be `active` or `closed`, or `suspended`.
784
720
  */
785
721
  status: 'active' | 'closed' | 'suspended';
722
+ /**
723
+ * Verification status of the organization, which determines the assigned quota. `none` when billing information is incomplete, `submitted` when billing information is complete but the organization is not yet verified, `verified` when the organization is verified.
724
+ */
725
+ verification: 'none' | 'submitted' | 'verified';
786
726
  };
787
727
  export type PaymentMethod = {
788
728
  /**
@@ -814,6 +754,453 @@ export type PaymentMethod = {
814
754
  */
815
755
  brand: 'amex' | 'diners' | 'discover' | 'eftpos_au' | 'jcb' | 'mastercard' | 'unionpay' | 'visa' | 'unknown';
816
756
  };
757
+ export type PlatformQuota = {
758
+ /**
759
+ * Maximum number of Basic clusters that can be created.
760
+ */
761
+ basic_clusters_max: number;
762
+ /**
763
+ * Available number of Basic clusters that can be created.
764
+ */
765
+ basic_clusters_available: number;
766
+ /**
767
+ * Maximum number of Pro clusters that can be created.
768
+ */
769
+ pro_clusters_max: number;
770
+ /**
771
+ * Available number of Pro clusters that can be created.
772
+ */
773
+ pro_clusters_available: number;
774
+ /**
775
+ * Maximum number of fleets that can be created per cluster.
776
+ */
777
+ fleets_max: number;
778
+ /**
779
+ * List of Cloudfleet cluster tiers available for the organization.
780
+ */
781
+ cluster_tiers: Array<string>;
782
+ /**
783
+ * List of Cloudfleet control plane regions available for the organization.
784
+ */
785
+ regions: Array<string>;
786
+ /**
787
+ * List of CFKE control plane versions available for the organization.
788
+ */
789
+ versions: Array<{
790
+ /**
791
+ * Id of the control plane version. Used in API calls.
792
+ */
793
+ id: string;
794
+ /**
795
+ * Label of the control plane version. Used in frontent UI.
796
+ */
797
+ label: string;
798
+ }>;
799
+ /**
800
+ * Organization-level maximum CFCR storage volume in GB. -1 means no limit.
801
+ */
802
+ cfcr_storage_gb: number;
803
+ };
804
+ export type RegistryRepository = {
805
+ /**
806
+ * Repository name.
807
+ */
808
+ name: string;
809
+ /**
810
+ * Registry region.
811
+ */
812
+ region: string;
813
+ /**
814
+ * Full URI of the repository.
815
+ */
816
+ uri: string;
817
+ };
818
+ export type RegistryRepositoryWithTags = {
819
+ /**
820
+ * Repository name.
821
+ */
822
+ name: string;
823
+ /**
824
+ * Registry region.
825
+ */
826
+ region: string;
827
+ /**
828
+ * Full URI of the repository.
829
+ */
830
+ uri: string;
831
+ /**
832
+ * Array of tags in the repository.
833
+ */
834
+ tags: Array<{
835
+ /**
836
+ * Tag name.
837
+ */
838
+ name: string;
839
+ /**
840
+ * Size of the tag in bytes.
841
+ */
842
+ size: number;
843
+ /**
844
+ * Media type of the manifest.
845
+ */
846
+ mediaType?: string;
847
+ /**
848
+ * Array of platform strings for multi-arch images (e.g., linux/amd64, linux/arm64).
849
+ */
850
+ platforms?: Array<string>;
851
+ }>;
852
+ /**
853
+ * Total size of all tags in the repository in bytes.
854
+ */
855
+ totalSize: number;
856
+ };
857
+ export type RegistryTag = {
858
+ /**
859
+ * Tag name.
860
+ */
861
+ name: string;
862
+ /**
863
+ * Manifest digest for pulling by digest.
864
+ */
865
+ digest: string;
866
+ /**
867
+ * Media type of the manifest.
868
+ */
869
+ mediaType?: string;
870
+ /**
871
+ * Manifest config metadata.
872
+ */
873
+ config?: {
874
+ /**
875
+ * Size of the config in bytes.
876
+ */
877
+ size: number;
878
+ };
879
+ /**
880
+ * Array of layer metadata.
881
+ */
882
+ layers?: Array<{
883
+ /**
884
+ * Digest of the layer.
885
+ */
886
+ digest?: string;
887
+ /**
888
+ * Size of the layer in bytes.
889
+ */
890
+ size: number;
891
+ }>;
892
+ /**
893
+ * Array of manifests for multi-arch images.
894
+ */
895
+ manifests?: Array<{
896
+ /**
897
+ * Digest of the manifest.
898
+ */
899
+ digest: string;
900
+ /**
901
+ * Platform information for the manifest.
902
+ */
903
+ platform?: {
904
+ /**
905
+ * Architecture of the platform.
906
+ */
907
+ architecture: string;
908
+ /**
909
+ * Operating system of the platform.
910
+ */
911
+ os: string;
912
+ /**
913
+ * Variant of the platform (e.g., v7, v8 for ARM).
914
+ */
915
+ variant?: string;
916
+ };
917
+ /**
918
+ * Layers for this platform.
919
+ */
920
+ layers?: Array<{
921
+ /**
922
+ * Digest of the layer.
923
+ */
924
+ digest?: string;
925
+ /**
926
+ * Size of the layer in bytes.
927
+ */
928
+ size: number;
929
+ }>;
930
+ /**
931
+ * Total size of this platform manifest in bytes.
932
+ */
933
+ size?: number;
934
+ }>;
935
+ /**
936
+ * Total size of the tag in bytes.
937
+ */
938
+ size: number;
939
+ /**
940
+ * Registry region.
941
+ */
942
+ region: string;
943
+ /**
944
+ * Repository name.
945
+ */
946
+ repository: string;
947
+ /**
948
+ * Full URI of the tag.
949
+ */
950
+ uri: string;
951
+ };
952
+ export type TicketAttachment = {
953
+ /**
954
+ * Unique identifier of the attachment (Mongo ObjectId).
955
+ */
956
+ id: string;
957
+ /**
958
+ * Original filename as uploaded.
959
+ */
960
+ filename: string;
961
+ /**
962
+ * MIME content type of the attachment.
963
+ */
964
+ content_type: string;
965
+ /**
966
+ * Size of the attachment in bytes.
967
+ */
968
+ size: number;
969
+ };
970
+ export type TicketCreateInput = {
971
+ /**
972
+ * Ticket category. Drives auto-assignment and may carry a subcategory in `properties`.
973
+ */
974
+ category: 'billing' | 'technical' | 'general';
975
+ /**
976
+ * Initial message body in markdown. There is no separate subject — the first message body is the description.
977
+ */
978
+ body: string;
979
+ /**
980
+ * Free-form key/value bag set by the UI (e.g. `subcategory`, `cluster_id`, `cluster_name`, `region`).
981
+ */
982
+ properties?: {
983
+ [key: string]: unknown;
984
+ };
985
+ };
986
+ export type TicketListResponse = {
987
+ /**
988
+ * Tickets for the organization, ordered newest first. Messages are omitted from list responses.
989
+ */
990
+ items: Array<{
991
+ /**
992
+ * Unique identifier of the ticket (Mongo ObjectId).
993
+ */
994
+ id: string;
995
+ /**
996
+ * Current state of the ticket.
997
+ */
998
+ status: 'waiting_on_us' | 'waiting_on_user' | 'closed';
999
+ /**
1000
+ * Ticket category.
1001
+ */
1002
+ category: 'billing' | 'technical' | 'general';
1003
+ /**
1004
+ * First 128 characters of the initial message body, with markdown formatting and newlines stripped. Used for ticket list previews.
1005
+ */
1006
+ summary: string;
1007
+ /**
1008
+ * Closure timestamp. Null while the ticket is open.
1009
+ */
1010
+ closed_at?: string;
1011
+ /**
1012
+ * Creation date of the ticket. ISO 8601 UTC.
1013
+ */
1014
+ date_created: string;
1015
+ /**
1016
+ * Last update date of the ticket. ISO 8601 UTC.
1017
+ */
1018
+ date_updated: string;
1019
+ /**
1020
+ * Messages on the ticket in chronological order. Internal notes are excluded. Returned by the detail endpoint only.
1021
+ */
1022
+ messages?: Array<{
1023
+ /**
1024
+ * Unique identifier of the message (Mongo ObjectId).
1025
+ */
1026
+ id: string;
1027
+ /**
1028
+ * Message type. Internal notes are filtered out of customer-facing responses.
1029
+ */
1030
+ type: 'customer_reply' | 'agent_reply';
1031
+ /**
1032
+ * Message body in markdown.
1033
+ */
1034
+ body: string;
1035
+ /**
1036
+ * First name of the author. Null when not provided.
1037
+ */
1038
+ author_first_name?: string;
1039
+ /**
1040
+ * Last name of the author. Null when not provided.
1041
+ */
1042
+ author_last_name?: string;
1043
+ /**
1044
+ * Attachments associated with this message.
1045
+ */
1046
+ attachments?: Array<{
1047
+ /**
1048
+ * Unique identifier of the attachment (Mongo ObjectId).
1049
+ */
1050
+ id: string;
1051
+ /**
1052
+ * Original filename as uploaded.
1053
+ */
1054
+ filename: string;
1055
+ /**
1056
+ * MIME content type of the attachment.
1057
+ */
1058
+ content_type: string;
1059
+ /**
1060
+ * Size of the attachment in bytes.
1061
+ */
1062
+ size: number;
1063
+ }>;
1064
+ /**
1065
+ * Creation date of the message. ISO 8601 UTC.
1066
+ */
1067
+ date_created: string;
1068
+ }>;
1069
+ }>;
1070
+ };
1071
+ export type TicketMessageInput = {
1072
+ /**
1073
+ * Reply body in markdown.
1074
+ */
1075
+ body: string;
1076
+ };
1077
+ export type TicketMessage = {
1078
+ /**
1079
+ * Unique identifier of the message (Mongo ObjectId).
1080
+ */
1081
+ id: string;
1082
+ /**
1083
+ * Message type. Internal notes are filtered out of customer-facing responses.
1084
+ */
1085
+ type: 'customer_reply' | 'agent_reply';
1086
+ /**
1087
+ * Message body in markdown.
1088
+ */
1089
+ body: string;
1090
+ /**
1091
+ * First name of the author. Null when not provided.
1092
+ */
1093
+ author_first_name?: string;
1094
+ /**
1095
+ * Last name of the author. Null when not provided.
1096
+ */
1097
+ author_last_name?: string;
1098
+ /**
1099
+ * Attachments associated with this message.
1100
+ */
1101
+ attachments?: Array<{
1102
+ /**
1103
+ * Unique identifier of the attachment (Mongo ObjectId).
1104
+ */
1105
+ id: string;
1106
+ /**
1107
+ * Original filename as uploaded.
1108
+ */
1109
+ filename: string;
1110
+ /**
1111
+ * MIME content type of the attachment.
1112
+ */
1113
+ content_type: string;
1114
+ /**
1115
+ * Size of the attachment in bytes.
1116
+ */
1117
+ size: number;
1118
+ }>;
1119
+ /**
1120
+ * Creation date of the message. ISO 8601 UTC.
1121
+ */
1122
+ date_created: string;
1123
+ };
1124
+ export type Ticket = {
1125
+ /**
1126
+ * Unique identifier of the ticket (Mongo ObjectId).
1127
+ */
1128
+ id: string;
1129
+ /**
1130
+ * Current state of the ticket.
1131
+ */
1132
+ status: 'waiting_on_us' | 'waiting_on_user' | 'closed';
1133
+ /**
1134
+ * Ticket category.
1135
+ */
1136
+ category: 'billing' | 'technical' | 'general';
1137
+ /**
1138
+ * First 128 characters of the initial message body, with markdown formatting and newlines stripped. Used for ticket list previews.
1139
+ */
1140
+ summary: string;
1141
+ /**
1142
+ * Closure timestamp. Null while the ticket is open.
1143
+ */
1144
+ closed_at?: string;
1145
+ /**
1146
+ * Creation date of the ticket. ISO 8601 UTC.
1147
+ */
1148
+ date_created: string;
1149
+ /**
1150
+ * Last update date of the ticket. ISO 8601 UTC.
1151
+ */
1152
+ date_updated: string;
1153
+ /**
1154
+ * Messages on the ticket in chronological order. Internal notes are excluded. Returned by the detail endpoint only.
1155
+ */
1156
+ messages?: Array<{
1157
+ /**
1158
+ * Unique identifier of the message (Mongo ObjectId).
1159
+ */
1160
+ id: string;
1161
+ /**
1162
+ * Message type. Internal notes are filtered out of customer-facing responses.
1163
+ */
1164
+ type: 'customer_reply' | 'agent_reply';
1165
+ /**
1166
+ * Message body in markdown.
1167
+ */
1168
+ body: string;
1169
+ /**
1170
+ * First name of the author. Null when not provided.
1171
+ */
1172
+ author_first_name?: string;
1173
+ /**
1174
+ * Last name of the author. Null when not provided.
1175
+ */
1176
+ author_last_name?: string;
1177
+ /**
1178
+ * Attachments associated with this message.
1179
+ */
1180
+ attachments?: Array<{
1181
+ /**
1182
+ * Unique identifier of the attachment (Mongo ObjectId).
1183
+ */
1184
+ id: string;
1185
+ /**
1186
+ * Original filename as uploaded.
1187
+ */
1188
+ filename: string;
1189
+ /**
1190
+ * MIME content type of the attachment.
1191
+ */
1192
+ content_type: string;
1193
+ /**
1194
+ * Size of the attachment in bytes.
1195
+ */
1196
+ size: number;
1197
+ }>;
1198
+ /**
1199
+ * Creation date of the message. ISO 8601 UTC.
1200
+ */
1201
+ date_created: string;
1202
+ }>;
1203
+ };
817
1204
  export type TokenCreateInput = {
818
1205
  /**
819
1206
  * Human readable access token name.
@@ -856,35 +1243,85 @@ export type TokenUpdateInput = {
856
1243
  */
857
1244
  role?: 'Administrator' | 'User';
858
1245
  };
1246
+ export type UsageFacets = {
1247
+ /**
1248
+ * List of unique cluster IDs
1249
+ */
1250
+ cluster_id?: Array<string>;
1251
+ /**
1252
+ * List of unique products
1253
+ */
1254
+ product?: Array<string>;
1255
+ };
1256
+ export type UsageResponse = {
1257
+ /**
1258
+ * Usage data
1259
+ */
1260
+ data: Array<{
1261
+ /**
1262
+ * Hour of the usage
1263
+ */
1264
+ hour: string;
1265
+ /**
1266
+ * Unique identifier of the kubernetes cluster. UUID v4 string in canonical form
1267
+ */
1268
+ cluster_id: string;
1269
+ /**
1270
+ * The product the usage is associated with
1271
+ */
1272
+ product: string;
1273
+ /**
1274
+ * Consumption
1275
+ */
1276
+ value: number;
1277
+ /**
1278
+ * Price per unit
1279
+ */
1280
+ price: number;
1281
+ /**
1282
+ * Total cost
1283
+ */
1284
+ total: number;
1285
+ }>;
1286
+ /**
1287
+ * Facets for filtering
1288
+ */
1289
+ facets: {
1290
+ /**
1291
+ * List of unique cluster IDs
1292
+ */
1293
+ cluster_id?: Array<string>;
1294
+ /**
1295
+ * List of unique products
1296
+ */
1297
+ product?: Array<string>;
1298
+ };
1299
+ };
859
1300
  export type Usage = {
860
1301
  /**
861
1302
  * Hour of the usage
862
1303
  */
863
- hour?: string;
1304
+ hour: string;
864
1305
  /**
865
1306
  * Unique identifier of the kubernetes cluster. UUID v4 string in canonical form
866
1307
  */
867
1308
  cluster_id: string;
868
1309
  /**
869
- * Tier of the cluster.
1310
+ * The product the usage is associated with
870
1311
  */
871
- cluster_tier: 'basic' | 'pro' | '';
1312
+ product: string;
872
1313
  /**
873
- * The product the usage is associated with
1314
+ * Consumption
874
1315
  */
875
- product: 'cfke_controlplane' | 'cfke_connected_nodes' | 'infra_compute' | 'infra_storage' | 'infra_loadbalancing' | 'infra_traffic' | 'cfcr_storage';
1316
+ value: number;
876
1317
  /**
877
- * Name of the Kubernetes node
1318
+ * Price per unit
878
1319
  */
879
- node_name: string;
1320
+ price: number;
880
1321
  /**
881
- * SKU of the Kubernetes node
1322
+ * Total cost
882
1323
  */
883
- sku: string;
884
- cpu: number | '';
885
- price: number | '';
886
- value: number | '';
887
- total: number | '';
1324
+ total: number;
888
1325
  };
889
1326
  export type UserCreateInput = {
890
1327
  /**
@@ -971,7 +1408,12 @@ export type UserUpdateInput = {
971
1408
  export type GetUsageData = {
972
1409
  body?: never;
973
1410
  path?: never;
974
- query?: never;
1411
+ query?: {
1412
+ /**
1413
+ * Time granularity for usage aggregation - hourly (Past 48 hours aggregated by hour), daily (Past 30 days aggregated by day), monthly (Past 12 months aggregated by month)
1414
+ */
1415
+ granularity?: 'hourly' | 'daily' | 'monthly';
1416
+ };
975
1417
  url: '/billing/usage';
976
1418
  };
977
1419
  export type GetUsageErrors = {
@@ -982,24 +1424,11 @@ export type GetUsageErrors = {
982
1424
  };
983
1425
  export type GetUsageResponses = {
984
1426
  /**
985
- * An array of usage records.
1427
+ * Usage data with facets for filtering
986
1428
  */
987
- 200: Array<Usage>;
1429
+ 200: UsageResponse;
988
1430
  };
989
1431
  export type GetUsageResponse = GetUsageResponses[keyof GetUsageResponses];
990
- export type GetBalanceData = {
991
- body?: never;
992
- path?: never;
993
- query?: never;
994
- url: '/billing/balance';
995
- };
996
- export type GetBalanceResponses = {
997
- /**
998
- * Current balance of the organization in USD as a floating-point number.
999
- */
1000
- 200: number;
1001
- };
1002
- export type GetBalanceResponse = GetBalanceResponses[keyof GetBalanceResponses];
1003
1432
  export type GetPaymentMethodData = {
1004
1433
  body?: never;
1005
1434
  path?: never;
@@ -1041,16 +1470,7 @@ export type GetPaymentMethodSecretResponse = GetPaymentMethodSecretResponses[key
1041
1470
  export type ListInvoicesData = {
1042
1471
  body?: never;
1043
1472
  path?: never;
1044
- query: {
1045
- /**
1046
- * Start date for the usage. Date of oldest data point to retrieve.
1047
- */
1048
- start_date: string;
1049
- /**
1050
- * End date for the usage. Date of newest data point to retrieve.
1051
- */
1052
- end_date: string;
1053
- };
1473
+ query?: never;
1054
1474
  url: '/billing/invoices';
1055
1475
  };
1056
1476
  export type ListInvoicesErrors = {
@@ -1066,26 +1486,6 @@ export type ListInvoicesResponses = {
1066
1486
  200: Array<Invoice>;
1067
1487
  };
1068
1488
  export type ListInvoicesResponse = ListInvoicesResponses[keyof ListInvoicesResponses];
1069
- export type GetInvoiceData = {
1070
- body?: never;
1071
- path: {
1072
- /**
1073
- * Unique invoice identifier. UUID v4 string in canonical form
1074
- */
1075
- id: string;
1076
- };
1077
- query?: never;
1078
- url: '/billing/invoices/{id}';
1079
- };
1080
- export type GetInvoiceResponses = {
1081
- /**
1082
- * Returns a single Invoice HTML representation under `html` property.
1083
- */
1084
- 200: {
1085
- html?: string;
1086
- };
1087
- };
1088
- export type GetInvoiceResponse = GetInvoiceResponses[keyof GetInvoiceResponses];
1089
1489
  export type GetContactData = {
1090
1490
  body?: never;
1091
1491
  path?: never;
@@ -1521,7 +1921,7 @@ export type GetJoinInformationResponses = {
1521
1921
  /**
1522
1922
  * An object of cluster join information
1523
1923
  */
1524
- 200: Cluster;
1924
+ 200: ClusterJoinInformation;
1525
1925
  };
1526
1926
  export type GetJoinInformationResponse = GetJoinInformationResponses[keyof GetJoinInformationResponses];
1527
1927
  export type ListInvitesData = {
@@ -1615,24 +2015,76 @@ export type ListMarketplaceChartsResponses = {
1615
2015
  200: Array<MarketplaceListing>;
1616
2016
  };
1617
2017
  export type ListMarketplaceChartsResponse = ListMarketplaceChartsResponses[keyof ListMarketplaceChartsResponses];
1618
- export type GetMarketplaceChartData = {
2018
+ export type GetMarketplaceChartFilesData = {
1619
2019
  body?: never;
1620
2020
  path: {
1621
2021
  /**
1622
- * Unique identifier of the chart listing in the marketplace.
2022
+ * Name of the chart in the marketplace.
2023
+ */
2024
+ chart_name: string;
2025
+ /**
2026
+ * Version channel pattern to match (e.g., "1.31.x-cfke.x" for latest 1.31 patch, "1.x.x-cfke.x" for latest 1.x minor).
2027
+ */
2028
+ version_channel: string;
2029
+ };
2030
+ query?: never;
2031
+ url: '/marketplace/{chart_name}/files/{version_channel}';
2032
+ };
2033
+ export type GetMarketplaceChartFilesErrors = {
2034
+ /**
2035
+ * Chart not found or no version matches the channel
2036
+ */
2037
+ 404: unknown;
2038
+ };
2039
+ export type GetMarketplaceChartFilesResponses = {
2040
+ /**
2041
+ * Returns an object containing the chart files for the latest matching version.
2042
+ */
2043
+ 200: MarketplaceListingFiles;
2044
+ };
2045
+ export type GetMarketplaceChartFilesResponse = GetMarketplaceChartFilesResponses[keyof GetMarketplaceChartFilesResponses];
2046
+ export type PostMcpData = {
2047
+ /**
2048
+ * JSON-RPC 2.0 request payload
2049
+ */
2050
+ body: {
2051
+ jsonrpc?: string;
2052
+ method?: string;
2053
+ id?: string | number;
2054
+ /**
2055
+ * Method-specific parameters
1623
2056
  */
1624
- listing_id: string;
2057
+ params?: {
2058
+ [key: string]: unknown;
2059
+ };
1625
2060
  };
2061
+ path?: never;
1626
2062
  query?: never;
1627
- url: '/marketplace/{listing_id}';
2063
+ url: '/mcp';
2064
+ };
2065
+ export type PostMcpErrors = {
2066
+ /**
2067
+ * Not authenticated
2068
+ */
2069
+ 401: unknown;
1628
2070
  };
1629
- export type GetMarketplaceChartResponses = {
2071
+ export type PostMcpResponses = {
1630
2072
  /**
1631
- * Returns an object containing the chart listing details.
2073
+ * JSON-RPC 2.0 success or error response
1632
2074
  */
1633
- 200: MarketplaceListing;
2075
+ 200: {
2076
+ jsonrpc?: string;
2077
+ id?: string | number;
2078
+ result?: {
2079
+ [key: string]: unknown;
2080
+ };
2081
+ error?: {
2082
+ code?: number;
2083
+ message?: string;
2084
+ };
2085
+ };
1634
2086
  };
1635
- export type GetMarketplaceChartResponse = GetMarketplaceChartResponses[keyof GetMarketplaceChartResponses];
2087
+ export type PostMcpResponse = PostMcpResponses[keyof PostMcpResponses];
1636
2088
  export type GetOrganizationData = {
1637
2089
  body?: never;
1638
2090
  path?: never;
@@ -1658,6 +2110,249 @@ export type CreateOrganizationResponses = {
1658
2110
  */
1659
2111
  200: unknown;
1660
2112
  };
2113
+ export type ListRepositoriesData = {
2114
+ body?: never;
2115
+ path?: never;
2116
+ query?: never;
2117
+ url: '/registry';
2118
+ };
2119
+ export type ListRepositoriesErrors = {
2120
+ /**
2121
+ * Not authenticated
2122
+ */
2123
+ 401: unknown;
2124
+ /**
2125
+ * Internal server error
2126
+ */
2127
+ 500: unknown;
2128
+ };
2129
+ export type ListRepositoriesResponses = {
2130
+ /**
2131
+ * List of repositories
2132
+ */
2133
+ 200: Array<RegistryRepository>;
2134
+ };
2135
+ export type ListRepositoriesResponse = ListRepositoriesResponses[keyof ListRepositoriesResponses];
2136
+ export type ListTagsData = {
2137
+ body?: never;
2138
+ path: {
2139
+ /**
2140
+ * Region where the repository is located
2141
+ */
2142
+ region: string;
2143
+ /**
2144
+ * Name of the repository
2145
+ */
2146
+ repository: string;
2147
+ };
2148
+ query?: never;
2149
+ url: '/registry/{region}/{repository}';
2150
+ };
2151
+ export type ListTagsErrors = {
2152
+ /**
2153
+ * Not authenticated
2154
+ */
2155
+ 401: unknown;
2156
+ /**
2157
+ * Repository not found
2158
+ */
2159
+ 404: unknown;
2160
+ /**
2161
+ * Internal server error
2162
+ */
2163
+ 500: unknown;
2164
+ };
2165
+ export type ListTagsResponses = {
2166
+ /**
2167
+ * Repository with tags
2168
+ */
2169
+ 200: RegistryRepositoryWithTags;
2170
+ };
2171
+ export type ListTagsResponse = ListTagsResponses[keyof ListTagsResponses];
2172
+ export type DeleteTagData = {
2173
+ body?: never;
2174
+ path: {
2175
+ /**
2176
+ * Region where the repository is located
2177
+ */
2178
+ region: string;
2179
+ /**
2180
+ * Name of the repository
2181
+ */
2182
+ repository: string;
2183
+ /**
2184
+ * Name of the tag
2185
+ */
2186
+ tag: string;
2187
+ };
2188
+ query?: never;
2189
+ url: '/registry/{region}/{repository}/{tag}';
2190
+ };
2191
+ export type DeleteTagErrors = {
2192
+ /**
2193
+ * Not authenticated
2194
+ */
2195
+ 401: unknown;
2196
+ /**
2197
+ * Tag not found
2198
+ */
2199
+ 404: unknown;
2200
+ /**
2201
+ * Internal server error
2202
+ */
2203
+ 500: unknown;
2204
+ };
2205
+ export type DeleteTagResponses = {
2206
+ /**
2207
+ * Tag successfully deleted
2208
+ */
2209
+ 200: unknown;
2210
+ };
2211
+ export type GetTagData = {
2212
+ body?: never;
2213
+ path: {
2214
+ /**
2215
+ * Region where the repository is located
2216
+ */
2217
+ region: string;
2218
+ /**
2219
+ * Name of the repository
2220
+ */
2221
+ repository: string;
2222
+ /**
2223
+ * Name of the tag
2224
+ */
2225
+ tag: string;
2226
+ };
2227
+ query?: never;
2228
+ url: '/registry/{region}/{repository}/{tag}';
2229
+ };
2230
+ export type GetTagErrors = {
2231
+ /**
2232
+ * Not authenticated
2233
+ */
2234
+ 401: unknown;
2235
+ /**
2236
+ * Tag not found
2237
+ */
2238
+ 404: unknown;
2239
+ /**
2240
+ * Internal server error
2241
+ */
2242
+ 500: unknown;
2243
+ };
2244
+ export type GetTagResponses = {
2245
+ /**
2246
+ * Tag details
2247
+ */
2248
+ 200: RegistryTag;
2249
+ };
2250
+ export type GetTagResponse = GetTagResponses[keyof GetTagResponses];
2251
+ export type ListTicketsData = {
2252
+ body?: never;
2253
+ path?: never;
2254
+ query?: never;
2255
+ url: '/tickets';
2256
+ };
2257
+ export type ListTicketsResponses = {
2258
+ /**
2259
+ * Tickets for the organization.
2260
+ */
2261
+ 200: TicketListResponse;
2262
+ };
2263
+ export type ListTicketsResponse = ListTicketsResponses[keyof ListTicketsResponses];
2264
+ export type CreateTicketData = {
2265
+ body: {
2266
+ /**
2267
+ * JSON-encoded TicketCreateInput.
2268
+ */
2269
+ payload?: string;
2270
+ attachments?: Array<Blob | File>;
2271
+ };
2272
+ path?: never;
2273
+ query?: never;
2274
+ url: '/tickets';
2275
+ };
2276
+ export type CreateTicketResponses = {
2277
+ /**
2278
+ * Ticket created.
2279
+ */
2280
+ 200: Ticket;
2281
+ };
2282
+ export type CreateTicketResponse = CreateTicketResponses[keyof CreateTicketResponses];
2283
+ export type CloseTicketData = {
2284
+ body?: never;
2285
+ path: {
2286
+ ticket_id: string;
2287
+ };
2288
+ query?: never;
2289
+ url: '/tickets/{ticket_id}';
2290
+ };
2291
+ export type CloseTicketResponses = {
2292
+ /**
2293
+ * Ticket closed.
2294
+ */
2295
+ 200: Ticket;
2296
+ };
2297
+ export type CloseTicketResponse = CloseTicketResponses[keyof CloseTicketResponses];
2298
+ export type GetTicketData = {
2299
+ body?: never;
2300
+ path: {
2301
+ ticket_id: string;
2302
+ };
2303
+ query?: never;
2304
+ url: '/tickets/{ticket_id}';
2305
+ };
2306
+ export type GetTicketResponses = {
2307
+ /**
2308
+ * Ticket with messages (internal notes excluded).
2309
+ */
2310
+ 200: Ticket;
2311
+ };
2312
+ export type GetTicketResponse = GetTicketResponses[keyof GetTicketResponses];
2313
+ export type ReplyTicketData = {
2314
+ body: {
2315
+ /**
2316
+ * JSON-encoded TicketMessageInput.
2317
+ */
2318
+ payload?: string;
2319
+ attachments?: Array<Blob | File>;
2320
+ };
2321
+ path: {
2322
+ ticket_id: string;
2323
+ };
2324
+ query?: never;
2325
+ url: '/tickets/{ticket_id}/messages';
2326
+ };
2327
+ export type ReplyTicketErrors = {
2328
+ /**
2329
+ * Ticket is closed. Open a new ticket instead.
2330
+ */
2331
+ 409: unknown;
2332
+ };
2333
+ export type ReplyTicketResponses = {
2334
+ /**
2335
+ * Reply appended.
2336
+ */
2337
+ 200: TicketMessage;
2338
+ };
2339
+ export type ReplyTicketResponse = ReplyTicketResponses[keyof ReplyTicketResponses];
2340
+ export type GetTicketAttachmentData = {
2341
+ body?: never;
2342
+ path: {
2343
+ ticket_id: string;
2344
+ attachment_id: string;
2345
+ };
2346
+ query?: never;
2347
+ url: '/tickets/{ticket_id}/attachments/{attachment_id}';
2348
+ };
2349
+ export type GetTicketAttachmentResponses = {
2350
+ /**
2351
+ * Attachment binary stream.
2352
+ */
2353
+ 200: Blob | File;
2354
+ };
2355
+ export type GetTicketAttachmentResponse = GetTicketAttachmentResponses[keyof GetTicketAttachmentResponses];
1661
2356
  export type ListTokensData = {
1662
2357
  body?: never;
1663
2358
  path?: never;
@@ -1914,7 +2609,4 @@ export type UpdateUserResponses = {
1914
2609
  200: User;
1915
2610
  };
1916
2611
  export type UpdateUserResponse = UpdateUserResponses[keyof UpdateUserResponses];
1917
- export type ClientOptions = {
1918
- baseUrl: 'https://api.cloudfleet.ai/v1' | (string & {});
1919
- };
1920
2612
  //# sourceMappingURL=types.gen.d.ts.map