@cloudfleet/sdk 0.0.1-2b670e2 → 0.0.1-2bacf54

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 +205 -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 +125 -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 +231 -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 +1 -1
  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 +18 -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 +34 -0
  30. package/dist/core/params.gen.d.ts.map +1 -0
  31. package/dist/core/params.gen.js +89 -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 +115 -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 +100 -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 +136 -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 +622 -484
  54. package/dist/schemas.gen.d.ts.map +1 -1
  55. package/dist/schemas.gen.js +641 -522
  56. package/dist/schemas.gen.js.map +1 -1
  57. package/dist/sdk.gen.d.ts +134 -62
  58. package/dist/sdk.gen.d.ts.map +1 -1
  59. package/dist/sdk.gen.js +164 -73
  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 +579 -332
  63. package/dist/types.gen.d.ts.map +1 -1
  64. package/dist/zod.gen.d.ts +1674 -2579
  65. package/dist/zod.gen.d.ts.map +1 -1
  66. package/dist/zod.gen.js +614 -922
  67. package/dist/zod.gen.js.map +1 -1
  68. package/package.json +5 -6
@@ -1,3 +1,6 @@
1
+ export type ClientOptions = {
2
+ baseUrl: 'https://api.cloudfleet.ai/v1' | (string & {});
3
+ };
1
4
  export type BillingContact = {
2
5
  /**
3
6
  * Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.
@@ -36,13 +39,9 @@ export type BillingContact = {
36
39
  */
37
40
  email: string;
38
41
  /**
39
- * First name of the billing contact person.
42
+ * Name of the billing contact person.
40
43
  */
41
- first_name: string;
42
- /**
43
- * Last name of the billing contact person.
44
- */
45
- last_name: string;
44
+ individual_name: string;
46
45
  /**
47
46
  * Tax ID of the organization.
48
47
  */
@@ -58,35 +57,31 @@ export type BillingCredits = {
58
57
  */
59
58
  id?: string;
60
59
  /**
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.
60
+ * Type of the promotional code.
66
61
  */
67
- code: string;
62
+ type: 'credit' | 'discount';
68
63
  /**
69
- * Description of the promotional code.
64
+ * Timestamp when the credit becomes active. ISO 8601 date string in the UTC timezone.
70
65
  */
71
- description?: string;
66
+ date_start: string;
72
67
  /**
73
- * List of product SKUs that the promotional code can be used on.
68
+ * Timestamp when the credit expires or becomes inactive. ISO 8601 date string in the UTC timezone.
74
69
  */
75
- products?: Array<string>;
70
+ date_end?: string;
76
71
  /**
77
- * Type of the promotional code.
72
+ * Promotional code used by the customer.
78
73
  */
79
- type: 'credit' | 'discount';
74
+ code: string;
80
75
  /**
81
- * Value of the promotional code.
76
+ * Description of the promotional code.
82
77
  */
83
- value: number;
78
+ description?: string;
84
79
  /**
85
- * Date of the billing cycle. An ISO 8601 date string in the UTC timezone.
80
+ * Total value of the promotional code.
86
81
  */
87
- billing_period: string;
82
+ value_total: number;
88
83
  /**
89
- * Value of the promotional code.
84
+ * Remaining value of the promotional code.
90
85
  */
91
86
  value_remaining?: number;
92
87
  };
@@ -169,18 +164,18 @@ export type ClusterCreateInput = {
169
164
  * Name of the cluster.
170
165
  */
171
166
  name: string;
172
- /**
173
- * Cloudfleet control plane region. One of "staging", "northamerica-central-1". This field can not be updated after creation.
174
- */
175
- region?: 'staging' | 'northamerica-central-1';
176
167
  /**
177
168
  * Tier of the cluster.
178
169
  */
179
170
  tier: 'basic' | 'pro';
171
+ /**
172
+ * Cloudfleet control plane region. One of "staging", "northamerica-central-1", "europe-central-1a", "northamerica-central-1a". This field can not be updated after creation.
173
+ */
174
+ region?: 'staging' | 'northamerica-central-1' | 'europe-central-1a' | 'northamerica-central-1a';
180
175
  /**
181
176
  * Version of the kubernetes cluster.
182
177
  */
183
- version_channel?: string;
178
+ version_channel?: '1.x.x-cfke.x' | '1.31.x-cfke.x' | '1.32.x-cfke.x' | '1.33.x-cfke.x';
184
179
  };
185
180
  export type ClusterJoinInformation = {
186
181
  /**
@@ -215,6 +210,10 @@ export type ClusterJoinInformation = {
215
210
  * Containerd version of the cluster.
216
211
  */
217
212
  containerd: string;
213
+ /**
214
+ * NVIDIA driver version of the cluster.
215
+ */
216
+ nvidia_driver: string;
218
217
  };
219
218
  /**
220
219
  * OIDC Information for hosts to access to third party API's.
@@ -239,18 +238,14 @@ export type Cluster = {
239
238
  * Name of the cluster.
240
239
  */
241
240
  name: string;
242
- /**
243
- * Cloudfleet control plane region. One of "staging", "northamerica-central-1". This field can not be updated after creation.
244
- */
245
- region?: 'staging' | 'northamerica-central-1';
246
241
  /**
247
242
  * Tier of the cluster.
248
243
  */
249
244
  tier: 'basic' | 'pro';
250
245
  /**
251
- * Version of the kubernetes cluster.
246
+ * Cloudfleet control plane region. One of "staging", "northamerica-central-1", "europe-central-1a", "northamerica-central-1a". This field can not be updated after creation.
252
247
  */
253
- version_channel?: string;
248
+ region?: 'staging' | 'northamerica-central-1' | 'europe-central-1a' | 'northamerica-central-1a';
254
249
  /**
255
250
  * Unique identifier of the kubernetes cluster. UUID v4 string in canonical form
256
251
  */
@@ -258,7 +253,7 @@ export type Cluster = {
258
253
  /**
259
254
  * Status of the cluster. When creating a new cluster, set to `active`. When deleting a clusters, set to `deleted`.
260
255
  */
261
- status: 'active' | 'deleted' | 'creating' | 'deployed' | 'failed' | 'updating';
256
+ status: 'active' | 'disabled' | 'deleted' | 'creating' | 'deployed' | 'failed' | 'updating';
262
257
  endpoint?: string | '';
263
258
  /**
264
259
  * Certificate authority data for the kubernetes cluster. This is the root certificate authority for the cluster.
@@ -280,12 +275,20 @@ export type Cluster = {
280
275
  * Indicates if the cluster is ready to be used.
281
276
  */
282
277
  ready?: boolean;
278
+ /**
279
+ * Version of the kubernetes cluster.
280
+ */
281
+ version_channel?: string;
283
282
  };
284
283
  export type ClusterUpdateInput = {
285
284
  /**
286
285
  * Name of the cluster.
287
286
  */
288
287
  name?: string;
288
+ /**
289
+ * Tier of the cluster.
290
+ */
291
+ tier: 'basic' | 'pro';
289
292
  /**
290
293
  * Version of the kubernetes cluster.
291
294
  */
@@ -419,280 +422,117 @@ export type Invite = {
419
422
  };
420
423
  export type Invoice = {
421
424
  /**
422
- * Unique identifier of the invoice. UUID v4 string in canonical form
425
+ * Unique identifier of the invoice.
423
426
  */
424
427
  id?: string;
425
- /**
426
- * Unique identifier of the organization. UUID v4 string in canonical form
427
- */
428
- organizationId?: string;
428
+ number?: string;
429
429
  /**
430
430
  * Status of the invoice
431
431
  */
432
- status?: 'DRAFT' | 'COMMITTED' | 'VOID';
432
+ status?: string;
433
433
  /**
434
434
  * Total amount of the invoice
435
435
  */
436
- amount?: number;
436
+ total?: number;
437
437
  /**
438
438
  * Currency of the invoice
439
439
  */
440
- 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';
440
+ currency?: string;
441
441
  /**
442
- * Total amount of credit adjustments
442
+ * Timestamp when the invoice was issued. ISO 8601 date string in the UTC timezone.
443
443
  */
444
- creditAdj?: number;
444
+ created: string;
445
445
  /**
446
- * Total amount of refund adjustments
446
+ * Billing period start timestamp. ISO 8601 date string in the UTC timezone.
447
447
  */
448
- refundAdj?: number;
448
+ period_start: string;
449
449
  /**
450
- * Date of the invoice
450
+ * Billing period end timestamp. ISO 8601 date string in the UTC timezone.
451
451
  */
452
- invoiceDate?: string;
452
+ period_end: string;
453
+ invoice_pdf?: string;
454
+ };
455
+ export type MarketplaceListingFiles = {
453
456
  /**
454
- * Target date of the invoice
457
+ * Raw Chart.yaml content from the Helm chart
455
458
  */
456
- targetDate?: string;
459
+ chartYaml?: string;
457
460
  /**
458
- * Number of the invoice
461
+ * Raw values.yaml content from the Helm chart
459
462
  */
460
- invoiceNumber?: string;
463
+ valuesYaml?: string;
461
464
  /**
462
- * Balance of the invoice
465
+ * JSON schema for values.yaml as a string
463
466
  */
464
- balance?: number;
467
+ valuesSchemaJson?: string;
468
+ };
469
+ export type MarketplaceListing = {
465
470
  /**
466
- * Bundle keys of the invoice
471
+ * Name of the chart
467
472
  */
468
- bundleKeys?: string;
473
+ name: string;
469
474
  /**
470
- * Credits of the invoice
475
+ * Available versions of the chart
471
476
  */
472
- credits?: Array<{
473
- /**
474
- * Unique identifier of the invoice item. UUID v4 string in canonical form
475
- */
476
- id?: string;
477
- /**
478
- * Unique identifier of the linked invoice item. UUID v4 string in canonical form
479
- */
480
- linkedInvoiceItemId?: string;
481
- /**
482
- * Name of the product
483
- */
484
- productName?: string;
485
- /**
486
- * Name of the plan
487
- */
488
- planName?: string;
489
- /**
490
- * Name of the phase
491
- */
492
- phaseName?: string;
493
- /**
494
- * Name of the usage
495
- */
496
- usageName?: string;
497
- /**
498
- * Pretty name of the product
499
- */
500
- prettyProductName?: string;
501
- /**
502
- * Pretty name of the plan
503
- */
504
- prettyPlanName?: string;
505
- /**
506
- * Pretty name of the phase
507
- */
508
- prettyPhaseName?: string;
509
- /**
510
- * Pretty name of the usage
511
- */
512
- prettyUsageName?: string;
513
- /**
514
- * Type of the invoice item
515
- */
516
- itemType?: 'EXTERNAL_CHARGE' | 'FIXED' | 'RECURRING' | 'REPAIR_ADJ' | 'CBA_ADJ' | 'CREDIT_ADJ' | 'ITEM_ADJ' | 'USAGE' | 'TAX' | 'PARENT_SUMMARY';
517
- /**
518
- * Description of the invoice item
519
- */
520
- description?: string;
521
- /**
522
- * Start date of the invoice item
523
- */
524
- startDate?: string;
525
- /**
526
- * End date of the invoice item
527
- */
528
- endDate?: string;
529
- /**
530
- * Amount of the invoice item
531
- */
532
- amount?: number;
533
- /**
534
- * Rate of the invoice item
535
- */
536
- rate?: number;
537
- /**
538
- * Currency of the invoice item
539
- */
540
- 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';
541
- /**
542
- * Quantity of the invoice item
543
- */
544
- quantity?: number;
545
- /**
546
- * Details of the invoice item
547
- */
548
- itemDetails?: string;
549
- /**
550
- * Effective date of the catalog
551
- */
552
- catalogEffectiveDate?: string;
553
- /**
554
- * Child items of the invoice item
555
- */
556
- childItems?: Array<Array<unknown> | boolean | number | {
557
- [key: string]: unknown;
558
- } | string>;
559
- }>;
477
+ versions: Array<string>;
560
478
  /**
561
- * Items of the invoice
479
+ * Version channels for the chart
562
480
  */
563
- items?: Array<{
564
- /**
565
- * Unique identifier of the invoice item. UUID v4 string in canonical form
566
- */
567
- id?: string;
568
- /**
569
- * Unique identifier of the linked invoice item. UUID v4 string in canonical form
570
- */
571
- linkedInvoiceItemId?: string;
572
- /**
573
- * Name of the product
574
- */
575
- productName?: string;
576
- /**
577
- * Name of the plan
578
- */
579
- planName?: string;
580
- /**
581
- * Name of the phase
582
- */
583
- phaseName?: string;
584
- /**
585
- * Name of the usage
586
- */
587
- usageName?: string;
588
- /**
589
- * Pretty name of the product
590
- */
591
- prettyProductName?: string;
592
- /**
593
- * Pretty name of the plan
594
- */
595
- prettyPlanName?: string;
596
- /**
597
- * Pretty name of the phase
598
- */
599
- prettyPhaseName?: string;
481
+ version_channels: Array<string>;
482
+ /**
483
+ * Latest version of the chart
484
+ */
485
+ latestVersion: string;
486
+ /**
487
+ * Chart metadata
488
+ */
489
+ metadata?: {
600
490
  /**
601
- * Pretty name of the usage
491
+ * Chart name from metadata
602
492
  */
603
- prettyUsageName?: string;
493
+ name: string;
604
494
  /**
605
- * Type of the invoice item
495
+ * Chart version from metadata
606
496
  */
607
- itemType?: 'EXTERNAL_CHARGE' | 'FIXED' | 'RECURRING' | 'REPAIR_ADJ' | 'CBA_ADJ' | 'CREDIT_ADJ' | 'ITEM_ADJ' | 'USAGE' | 'TAX' | 'PARENT_SUMMARY';
497
+ version: string;
608
498
  /**
609
- * Description of the invoice item
499
+ * Chart description
610
500
  */
611
501
  description?: string;
612
502
  /**
613
- * Start date of the invoice item
503
+ * Application version
614
504
  */
615
- startDate?: string;
505
+ appVersion?: string;
616
506
  /**
617
- * End date of the invoice item
507
+ * Helm API version
618
508
  */
619
- endDate?: string;
509
+ apiVersion?: string;
620
510
  /**
621
- * Amount of the invoice item
511
+ * Chart keywords
622
512
  */
623
- amount?: number;
513
+ keywords?: Array<string>;
624
514
  /**
625
- * Rate of the invoice item
515
+ * Chart home URL
626
516
  */
627
- rate?: number;
517
+ home?: string;
628
518
  /**
629
- * Currency of the invoice item
519
+ * Chart source URLs
630
520
  */
631
- 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';
521
+ sources?: Array<string>;
632
522
  /**
633
- * Quantity of the invoice item
523
+ * Chart maintainers
634
524
  */
635
- quantity?: number;
636
- /**
637
- * Details of the invoice item
638
- */
639
- itemDetails?: string;
640
- /**
641
- * Effective date of the catalog
642
- */
643
- catalogEffectiveDate?: string;
644
- /**
645
- * Child items of the invoice item
646
- */
647
- childItems?: Array<Array<unknown> | boolean | number | {
648
- [key: string]: unknown;
649
- } | string>;
650
- }>;
651
- };
652
- export type MarketplaceListing = {
653
- /**
654
- * Id of the chart listing
655
- */
656
- id: string;
657
- /**
658
- * Name of the chart listing
659
- */
660
- name: string;
661
- /**
662
- * Author of the chart listing
663
- */
664
- developer: string;
665
- /**
666
- * Short description of the chart listing
667
- */
668
- description: string;
669
- /**
670
- * Logo of the chart listing
671
- */
672
- logoUrl: string;
673
- /**
674
- * Long description of the chart listing
675
- */
676
- longDescription: string;
677
- /**
678
- * Tags of the chart
679
- */
680
- categories: Array<string>;
681
- version_channels: Array<string>;
682
- value_schemas: Array<{
683
- /**
684
- * Version of the chart.
685
- */
686
- version: string;
687
- /**
688
- * Schema of the chart values. JSON Schema as string
689
- */
690
- schema: string;
691
- /**
692
- * Schema of the chart values
693
- */
694
- placeholder: string;
695
- }>;
525
+ maintainers?: Array<{
526
+ /**
527
+ * Maintainer name
528
+ */
529
+ name: string;
530
+ /**
531
+ * Maintainer email
532
+ */
533
+ email?: string;
534
+ }>;
535
+ };
696
536
  };
697
537
  export type OrganizationCreateInput = {
698
538
  /**
@@ -774,6 +614,14 @@ export type Organization = {
774
614
  */
775
615
  label: string;
776
616
  }>;
617
+ /**
618
+ * User-level maximum number of tokens Cloudfleet Copilot can process per hour.
619
+ */
620
+ copilot_user_hourly_tokens: number;
621
+ /**
622
+ * Organization-level maximum number of tokens Cloudfleet Copilot can process per hour.
623
+ */
624
+ copilot_organization_hourly_tokens: number;
777
625
  };
778
626
  /**
779
627
  * Status of the organization. Can be `active` or `closed`, or `suspended`.
@@ -810,6 +658,205 @@ export type PaymentMethod = {
810
658
  */
811
659
  brand: 'amex' | 'diners' | 'discover' | 'eftpos_au' | 'jcb' | 'mastercard' | 'unionpay' | 'visa' | 'unknown';
812
660
  };
661
+ export type PlatformQuota = {
662
+ /**
663
+ * Maximum number of Basic clusters that can be created.
664
+ */
665
+ basic_clusters_max: number;
666
+ /**
667
+ * Available number of Basic clusters that can be created.
668
+ */
669
+ basic_clusters_available: number;
670
+ /**
671
+ * Maximum number of Pro clusters that can be created.
672
+ */
673
+ pro_clusters_max: number;
674
+ /**
675
+ * Available number of Pro clusters that can be created.
676
+ */
677
+ pro_clusters_available: number;
678
+ /**
679
+ * Maximum number of fleets that can be created per cluster.
680
+ */
681
+ fleets_max: number;
682
+ /**
683
+ * List of Cloudfleet cluster tiers available for the organization.
684
+ */
685
+ cluster_tiers: Array<string>;
686
+ /**
687
+ * List of Cloudfleet control plane regions available for the organization.
688
+ */
689
+ regions: Array<string>;
690
+ /**
691
+ * List of CFKE control plane versions available for the organization.
692
+ */
693
+ versions: Array<{
694
+ /**
695
+ * Id of the control plane version. Used in API calls.
696
+ */
697
+ id: string;
698
+ /**
699
+ * Label of the control plane version. Used in frontent UI.
700
+ */
701
+ label: string;
702
+ }>;
703
+ /**
704
+ * User-level maximum number of tokens Cloudfleet Copilot can process per hour.
705
+ */
706
+ copilot_user_hourly_tokens: number;
707
+ /**
708
+ * Organization-level maximum number of tokens Cloudfleet Copilot can process per hour.
709
+ */
710
+ copilot_organization_hourly_tokens: number;
711
+ };
712
+ export type RegistryRepository = {
713
+ /**
714
+ * Repository name.
715
+ */
716
+ name: string;
717
+ /**
718
+ * Registry region.
719
+ */
720
+ region: string;
721
+ /**
722
+ * Full URI of the repository.
723
+ */
724
+ uri: string;
725
+ };
726
+ export type RegistryRepositoryWithTags = {
727
+ /**
728
+ * Repository name.
729
+ */
730
+ name: string;
731
+ /**
732
+ * Registry region.
733
+ */
734
+ region: string;
735
+ /**
736
+ * Full URI of the repository.
737
+ */
738
+ uri: string;
739
+ /**
740
+ * Array of tags in the repository.
741
+ */
742
+ tags: Array<{
743
+ /**
744
+ * Tag name.
745
+ */
746
+ name: string;
747
+ /**
748
+ * Size of the tag in bytes.
749
+ */
750
+ size: number;
751
+ /**
752
+ * Media type of the manifest.
753
+ */
754
+ mediaType?: string;
755
+ /**
756
+ * Array of platform strings for multi-arch images (e.g., linux/amd64, linux/arm64).
757
+ */
758
+ platforms?: Array<string>;
759
+ }>;
760
+ /**
761
+ * Total size of all tags in the repository in bytes.
762
+ */
763
+ totalSize: number;
764
+ };
765
+ export type RegistryTag = {
766
+ /**
767
+ * Tag name.
768
+ */
769
+ name: string;
770
+ /**
771
+ * Manifest digest for pulling by digest.
772
+ */
773
+ digest: string;
774
+ /**
775
+ * Media type of the manifest.
776
+ */
777
+ mediaType?: string;
778
+ /**
779
+ * Manifest config metadata.
780
+ */
781
+ config?: {
782
+ /**
783
+ * Size of the config in bytes.
784
+ */
785
+ size: number;
786
+ };
787
+ /**
788
+ * Array of layer metadata.
789
+ */
790
+ layers?: Array<{
791
+ /**
792
+ * Digest of the layer.
793
+ */
794
+ digest?: string;
795
+ /**
796
+ * Size of the layer in bytes.
797
+ */
798
+ size: number;
799
+ }>;
800
+ /**
801
+ * Array of manifests for multi-arch images.
802
+ */
803
+ manifests?: Array<{
804
+ /**
805
+ * Digest of the manifest.
806
+ */
807
+ digest: string;
808
+ /**
809
+ * Platform information for the manifest.
810
+ */
811
+ platform?: {
812
+ /**
813
+ * Architecture of the platform.
814
+ */
815
+ architecture: string;
816
+ /**
817
+ * Operating system of the platform.
818
+ */
819
+ os: string;
820
+ /**
821
+ * Variant of the platform (e.g., v7, v8 for ARM).
822
+ */
823
+ variant?: string;
824
+ };
825
+ /**
826
+ * Layers for this platform.
827
+ */
828
+ layers?: Array<{
829
+ /**
830
+ * Digest of the layer.
831
+ */
832
+ digest?: string;
833
+ /**
834
+ * Size of the layer in bytes.
835
+ */
836
+ size: number;
837
+ }>;
838
+ /**
839
+ * Total size of this platform manifest in bytes.
840
+ */
841
+ size?: number;
842
+ }>;
843
+ /**
844
+ * Total size of the tag in bytes.
845
+ */
846
+ size: number;
847
+ /**
848
+ * Registry region.
849
+ */
850
+ region: string;
851
+ /**
852
+ * Repository name.
853
+ */
854
+ repository: string;
855
+ /**
856
+ * Full URI of the tag.
857
+ */
858
+ uri: string;
859
+ };
813
860
  export type TokenCreateInput = {
814
861
  /**
815
862
  * Human readable access token name.
@@ -852,35 +899,85 @@ export type TokenUpdateInput = {
852
899
  */
853
900
  role?: 'Administrator' | 'User';
854
901
  };
902
+ export type UsageFacets = {
903
+ /**
904
+ * List of unique cluster IDs
905
+ */
906
+ cluster_id?: Array<string>;
907
+ /**
908
+ * List of unique products
909
+ */
910
+ product?: Array<string>;
911
+ };
912
+ export type UsageResponse = {
913
+ /**
914
+ * Usage data
915
+ */
916
+ data: Array<{
917
+ /**
918
+ * Hour of the usage
919
+ */
920
+ hour: string;
921
+ /**
922
+ * Unique identifier of the kubernetes cluster. UUID v4 string in canonical form
923
+ */
924
+ cluster_id: string;
925
+ /**
926
+ * The product the usage is associated with
927
+ */
928
+ product: string;
929
+ /**
930
+ * Consumption
931
+ */
932
+ value: number;
933
+ /**
934
+ * Price per unit
935
+ */
936
+ price: number;
937
+ /**
938
+ * Total cost
939
+ */
940
+ total: number;
941
+ }>;
942
+ /**
943
+ * Facets for filtering
944
+ */
945
+ facets: {
946
+ /**
947
+ * List of unique cluster IDs
948
+ */
949
+ cluster_id?: Array<string>;
950
+ /**
951
+ * List of unique products
952
+ */
953
+ product?: Array<string>;
954
+ };
955
+ };
855
956
  export type Usage = {
856
957
  /**
857
958
  * Hour of the usage
858
959
  */
859
- hour?: string;
960
+ hour: string;
860
961
  /**
861
962
  * Unique identifier of the kubernetes cluster. UUID v4 string in canonical form
862
963
  */
863
964
  cluster_id: string;
864
965
  /**
865
- * Tier of the cluster.
966
+ * The product the usage is associated with
866
967
  */
867
- cluster_tier: 'basic' | 'pro' | '';
968
+ product: string;
868
969
  /**
869
- * The product the usage is associated with
970
+ * Consumption
870
971
  */
871
- product: 'cfke_controlplane' | 'cfke_connected_nodes' | 'infra_compute' | 'infra_storage' | 'infra_loadbalancing' | 'infra_traffic' | 'cfcr_storage';
972
+ value: number;
872
973
  /**
873
- * Name of the Kubernetes node
974
+ * Price per unit
874
975
  */
875
- node_name: string;
976
+ price: number;
876
977
  /**
877
- * SKU of the Kubernetes node
978
+ * Total cost
878
979
  */
879
- sku: string;
880
- cpu: number | '';
881
- price: number | '';
882
- value: number | '';
883
- total: number | '';
980
+ total: number;
884
981
  };
885
982
  export type UserCreateInput = {
886
983
  /**
@@ -967,7 +1064,12 @@ export type UserUpdateInput = {
967
1064
  export type GetUsageData = {
968
1065
  body?: never;
969
1066
  path?: never;
970
- query?: never;
1067
+ query?: {
1068
+ /**
1069
+ * 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)
1070
+ */
1071
+ granularity?: 'hourly' | 'daily' | 'monthly';
1072
+ };
971
1073
  url: '/billing/usage';
972
1074
  };
973
1075
  export type GetUsageErrors = {
@@ -978,24 +1080,11 @@ export type GetUsageErrors = {
978
1080
  };
979
1081
  export type GetUsageResponses = {
980
1082
  /**
981
- * An array of usage records.
1083
+ * Usage data with facets for filtering
982
1084
  */
983
- 200: Array<Usage>;
1085
+ 200: UsageResponse;
984
1086
  };
985
1087
  export type GetUsageResponse = GetUsageResponses[keyof GetUsageResponses];
986
- export type GetBalanceData = {
987
- body?: never;
988
- path?: never;
989
- query?: never;
990
- url: '/billing/balance';
991
- };
992
- export type GetBalanceResponses = {
993
- /**
994
- * Current balance of the organization in USD as a floating-point number.
995
- */
996
- 200: number;
997
- };
998
- export type GetBalanceResponse = GetBalanceResponses[keyof GetBalanceResponses];
999
1088
  export type GetPaymentMethodData = {
1000
1089
  body?: never;
1001
1090
  path?: never;
@@ -1037,16 +1126,7 @@ export type GetPaymentMethodSecretResponse = GetPaymentMethodSecretResponses[key
1037
1126
  export type ListInvoicesData = {
1038
1127
  body?: never;
1039
1128
  path?: never;
1040
- query: {
1041
- /**
1042
- * Start date for the usage. Date of oldest data point to retrieve.
1043
- */
1044
- start_date: string;
1045
- /**
1046
- * End date for the usage. Date of newest data point to retrieve.
1047
- */
1048
- end_date: string;
1049
- };
1129
+ query?: never;
1050
1130
  url: '/billing/invoices';
1051
1131
  };
1052
1132
  export type ListInvoicesErrors = {
@@ -1062,26 +1142,6 @@ export type ListInvoicesResponses = {
1062
1142
  200: Array<Invoice>;
1063
1143
  };
1064
1144
  export type ListInvoicesResponse = ListInvoicesResponses[keyof ListInvoicesResponses];
1065
- export type GetInvoiceData = {
1066
- body?: never;
1067
- path: {
1068
- /**
1069
- * Unique invoice identifier. UUID v4 string in canonical form
1070
- */
1071
- id: string;
1072
- };
1073
- query?: never;
1074
- url: '/billing/invoices/{id}';
1075
- };
1076
- export type GetInvoiceResponses = {
1077
- /**
1078
- * Returns a single Invoice HTML representation under `html` property.
1079
- */
1080
- 200: {
1081
- html?: string;
1082
- };
1083
- };
1084
- export type GetInvoiceResponse = GetInvoiceResponses[keyof GetInvoiceResponses];
1085
1145
  export type GetContactData = {
1086
1146
  body?: never;
1087
1147
  path?: never;
@@ -1517,7 +1577,7 @@ export type GetJoinInformationResponses = {
1517
1577
  /**
1518
1578
  * An object of cluster join information
1519
1579
  */
1520
- 200: Cluster;
1580
+ 200: ClusterJoinInformation;
1521
1581
  };
1522
1582
  export type GetJoinInformationResponse = GetJoinInformationResponses[keyof GetJoinInformationResponses];
1523
1583
  export type ListInvitesData = {
@@ -1611,24 +1671,76 @@ export type ListMarketplaceChartsResponses = {
1611
1671
  200: Array<MarketplaceListing>;
1612
1672
  };
1613
1673
  export type ListMarketplaceChartsResponse = ListMarketplaceChartsResponses[keyof ListMarketplaceChartsResponses];
1614
- export type GetMarketplaceChartData = {
1674
+ export type GetMarketplaceChartFilesData = {
1615
1675
  body?: never;
1616
1676
  path: {
1617
1677
  /**
1618
- * Unique identifier of the chart listing in the marketplace.
1678
+ * Name of the chart in the marketplace.
1679
+ */
1680
+ chart_name: string;
1681
+ /**
1682
+ * 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).
1619
1683
  */
1620
- listing_id: string;
1684
+ version_channel: string;
1621
1685
  };
1622
1686
  query?: never;
1623
- url: '/marketplace/{listing_id}';
1687
+ url: '/marketplace/{chart_name}/files/{version_channel}';
1624
1688
  };
1625
- export type GetMarketplaceChartResponses = {
1689
+ export type GetMarketplaceChartFilesErrors = {
1626
1690
  /**
1627
- * Returns an object containing the chart listing details.
1691
+ * Chart not found or no version matches the channel
1628
1692
  */
1629
- 200: MarketplaceListing;
1693
+ 404: unknown;
1694
+ };
1695
+ export type GetMarketplaceChartFilesResponses = {
1696
+ /**
1697
+ * Returns an object containing the chart files for the latest matching version.
1698
+ */
1699
+ 200: MarketplaceListingFiles;
1630
1700
  };
1631
- export type GetMarketplaceChartResponse = GetMarketplaceChartResponses[keyof GetMarketplaceChartResponses];
1701
+ export type GetMarketplaceChartFilesResponse = GetMarketplaceChartFilesResponses[keyof GetMarketplaceChartFilesResponses];
1702
+ export type PostMcpData = {
1703
+ /**
1704
+ * JSON-RPC 2.0 request payload
1705
+ */
1706
+ body: {
1707
+ jsonrpc?: string;
1708
+ method?: string;
1709
+ id?: string | number;
1710
+ /**
1711
+ * Method-specific parameters
1712
+ */
1713
+ params?: {
1714
+ [key: string]: unknown;
1715
+ };
1716
+ };
1717
+ path?: never;
1718
+ query?: never;
1719
+ url: '/mcp';
1720
+ };
1721
+ export type PostMcpErrors = {
1722
+ /**
1723
+ * Not authenticated
1724
+ */
1725
+ 401: unknown;
1726
+ };
1727
+ export type PostMcpResponses = {
1728
+ /**
1729
+ * JSON-RPC 2.0 success or error response
1730
+ */
1731
+ 200: {
1732
+ jsonrpc?: string;
1733
+ id?: string | number;
1734
+ result?: {
1735
+ [key: string]: unknown;
1736
+ };
1737
+ error?: {
1738
+ code?: number;
1739
+ message?: string;
1740
+ };
1741
+ };
1742
+ };
1743
+ export type PostMcpResponse = PostMcpResponses[keyof PostMcpResponses];
1632
1744
  export type GetOrganizationData = {
1633
1745
  body?: never;
1634
1746
  path?: never;
@@ -1654,6 +1766,144 @@ export type CreateOrganizationResponses = {
1654
1766
  */
1655
1767
  200: unknown;
1656
1768
  };
1769
+ export type ListRepositoriesData = {
1770
+ body?: never;
1771
+ path?: never;
1772
+ query?: never;
1773
+ url: '/registry';
1774
+ };
1775
+ export type ListRepositoriesErrors = {
1776
+ /**
1777
+ * Not authenticated
1778
+ */
1779
+ 401: unknown;
1780
+ /**
1781
+ * Internal server error
1782
+ */
1783
+ 500: unknown;
1784
+ };
1785
+ export type ListRepositoriesResponses = {
1786
+ /**
1787
+ * List of repositories
1788
+ */
1789
+ 200: Array<RegistryRepository>;
1790
+ };
1791
+ export type ListRepositoriesResponse = ListRepositoriesResponses[keyof ListRepositoriesResponses];
1792
+ export type ListTagsData = {
1793
+ body?: never;
1794
+ path: {
1795
+ /**
1796
+ * Region where the repository is located
1797
+ */
1798
+ region: string;
1799
+ /**
1800
+ * Name of the repository
1801
+ */
1802
+ repository: string;
1803
+ };
1804
+ query?: never;
1805
+ url: '/registry/{region}/{repository}';
1806
+ };
1807
+ export type ListTagsErrors = {
1808
+ /**
1809
+ * Not authenticated
1810
+ */
1811
+ 401: unknown;
1812
+ /**
1813
+ * Repository not found
1814
+ */
1815
+ 404: unknown;
1816
+ /**
1817
+ * Internal server error
1818
+ */
1819
+ 500: unknown;
1820
+ };
1821
+ export type ListTagsResponses = {
1822
+ /**
1823
+ * Repository with tags
1824
+ */
1825
+ 200: RegistryRepositoryWithTags;
1826
+ };
1827
+ export type ListTagsResponse = ListTagsResponses[keyof ListTagsResponses];
1828
+ export type DeleteTagData = {
1829
+ body?: never;
1830
+ path: {
1831
+ /**
1832
+ * Region where the repository is located
1833
+ */
1834
+ region: string;
1835
+ /**
1836
+ * Name of the repository
1837
+ */
1838
+ repository: string;
1839
+ /**
1840
+ * Name of the tag
1841
+ */
1842
+ tag: string;
1843
+ };
1844
+ query?: never;
1845
+ url: '/registry/{region}/{repository}/{tag}';
1846
+ };
1847
+ export type DeleteTagErrors = {
1848
+ /**
1849
+ * Not authenticated
1850
+ */
1851
+ 401: unknown;
1852
+ /**
1853
+ * Tag not found
1854
+ */
1855
+ 404: unknown;
1856
+ /**
1857
+ * Internal server error
1858
+ */
1859
+ 500: unknown;
1860
+ };
1861
+ export type DeleteTagResponses = {
1862
+ /**
1863
+ * Tag successfully deleted
1864
+ */
1865
+ 200: unknown;
1866
+ };
1867
+ export type GetTagData = {
1868
+ body?: never;
1869
+ path: {
1870
+ /**
1871
+ * Region where the repository is located
1872
+ */
1873
+ region: string;
1874
+ /**
1875
+ * Name of the repository
1876
+ */
1877
+ repository: string;
1878
+ /**
1879
+ * Name of the tag
1880
+ */
1881
+ tag: string;
1882
+ };
1883
+ query?: never;
1884
+ url: '/registry/{region}/{repository}/{tag}';
1885
+ };
1886
+ export type GetTagErrors = {
1887
+ /**
1888
+ * Not authenticated
1889
+ */
1890
+ 401: unknown;
1891
+ /**
1892
+ * Tag not found
1893
+ */
1894
+ 404: unknown;
1895
+ /**
1896
+ * Internal server error
1897
+ */
1898
+ 500: unknown;
1899
+ };
1900
+ export type GetTagResponses = {
1901
+ /**
1902
+ * Tag details
1903
+ */
1904
+ 200: RegistryTag;
1905
+ };
1906
+ export type GetTagResponse = GetTagResponses[keyof GetTagResponses];
1657
1907
  export type ListTokensData = {
1658
1908
  body?: never;
1659
1909
  path?: never;
@@ -1910,7 +2160,4 @@ export type UpdateUserResponses = {
1910
2160
  200: User;
1911
2161
  };
1912
2162
  export type UpdateUserResponse = UpdateUserResponses[keyof UpdateUserResponses];
1913
- export type ClientOptions = {
1914
- baseUrl: 'https://api.cloudfleet.ai/v1' | (string & {});
1915
- };
1916
2163
  //# sourceMappingURL=types.gen.d.ts.map