@cloudfleet/sdk 0.0.1-dba2400 → 0.0.1-dc16042

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 (60) 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.map +1 -1
  6. package/dist/client/client.gen.js +113 -98
  7. package/dist/client/client.gen.js.map +1 -1
  8. package/dist/client/index.d.ts +1 -1
  9. package/dist/client/index.d.ts.map +1 -1
  10. package/dist/client/index.js.map +1 -1
  11. package/dist/client/types.gen.d.ts +9 -13
  12. package/dist/client/types.gen.d.ts.map +1 -1
  13. package/dist/client/utils.gen.d.ts +6 -2
  14. package/dist/client/utils.gen.d.ts.map +1 -1
  15. package/dist/client/utils.gen.js +10 -12
  16. package/dist/client/utils.gen.js.map +1 -1
  17. package/dist/client.gen.d.ts.map +1 -1
  18. package/dist/client.gen.js +1 -3
  19. package/dist/client.gen.js.map +1 -1
  20. package/dist/core/auth.gen.d.ts.map +1 -1
  21. package/dist/core/auth.gen.js.map +1 -1
  22. package/dist/core/bodySerializer.gen.d.ts +16 -8
  23. package/dist/core/bodySerializer.gen.d.ts.map +1 -1
  24. package/dist/core/bodySerializer.gen.js +1 -1
  25. package/dist/core/bodySerializer.gen.js.map +1 -1
  26. package/dist/core/params.gen.d.ts +10 -0
  27. package/dist/core/params.gen.d.ts.map +1 -1
  28. package/dist/core/params.gen.js +18 -6
  29. package/dist/core/params.gen.js.map +1 -1
  30. package/dist/core/pathSerializer.gen.d.ts.map +1 -1
  31. package/dist/core/pathSerializer.gen.js +3 -11
  32. package/dist/core/pathSerializer.gen.js.map +1 -1
  33. package/dist/core/queryKeySerializer.gen.d.ts.map +1 -1
  34. package/dist/core/queryKeySerializer.gen.js +4 -11
  35. package/dist/core/queryKeySerializer.gen.js.map +1 -1
  36. package/dist/core/serverSentEvents.gen.d.ts +1 -1
  37. package/dist/core/serverSentEvents.gen.d.ts.map +1 -1
  38. package/dist/core/serverSentEvents.gen.js +6 -9
  39. package/dist/core/serverSentEvents.gen.js.map +1 -1
  40. package/dist/core/types.gen.d.ts +1 -1
  41. package/dist/core/types.gen.d.ts.map +1 -1
  42. package/dist/core/utils.gen.d.ts.map +1 -1
  43. package/dist/core/utils.gen.js +1 -1
  44. package/dist/core/utils.gen.js.map +1 -1
  45. package/dist/schemas.gen.d.ts +1020 -484
  46. package/dist/schemas.gen.d.ts.map +1 -1
  47. package/dist/schemas.gen.js +1629 -574
  48. package/dist/schemas.gen.js.map +1 -1
  49. package/dist/sdk.gen.d.ts +86 -22
  50. package/dist/sdk.gen.d.ts.map +1 -1
  51. package/dist/sdk.gen.js +158 -151
  52. package/dist/sdk.gen.js.map +1 -1
  53. package/dist/services/kubernetes/api.d.ts +8 -8
  54. package/dist/types.gen.d.ts +920 -323
  55. package/dist/types.gen.d.ts.map +1 -1
  56. package/dist/zod.gen.d.ts +1041 -1936
  57. package/dist/zod.gen.d.ts.map +1 -1
  58. package/dist/zod.gen.js +501 -1075
  59. package/dist/zod.gen.js.map +1 -1
  60. package/package.json +28 -5
@@ -39,13 +39,9 @@ export type BillingContact = {
39
39
  */
40
40
  email: string;
41
41
  /**
42
- * First name of the billing contact person.
43
- */
44
- first_name: string;
45
- /**
46
- * Last name of the billing contact person.
42
+ * Name of the billing contact person.
47
43
  */
48
- last_name: string;
44
+ individual_name: string;
49
45
  /**
50
46
  * Tax ID of the organization.
51
47
  */
@@ -61,35 +57,31 @@ export type BillingCredits = {
61
57
  */
62
58
  id?: string;
63
59
  /**
64
- * Date of the credit application. ISO 8601 date string in the UTC timezone.
65
- */
66
- date_created: string;
67
- /**
68
- * Promotional code used by the customer.
60
+ * Type of the promotional code.
69
61
  */
70
- code: string;
62
+ type: 'credit' | 'discount';
71
63
  /**
72
- * Description of the promotional code.
64
+ * Timestamp when the credit becomes active. ISO 8601 date string in the UTC timezone.
73
65
  */
74
- description?: string;
66
+ date_start: string;
75
67
  /**
76
- * 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.
77
69
  */
78
- products?: Array<string>;
70
+ date_end?: string;
79
71
  /**
80
- * Type of the promotional code.
72
+ * Promotional code used by the customer.
81
73
  */
82
- type: 'credit' | 'discount';
74
+ code: string;
83
75
  /**
84
- * Value of the promotional code.
76
+ * Description of the promotional code.
85
77
  */
86
- value: number;
78
+ description?: string;
87
79
  /**
88
- * Date of the billing cycle. An ISO 8601 date string in the UTC timezone.
80
+ * Total value of the promotional code.
89
81
  */
90
- billing_period: string;
82
+ value_total: number;
91
83
  /**
92
- * Value of the promotional code.
84
+ * Remaining value of the promotional code.
93
85
  */
94
86
  value_remaining?: number;
95
87
  };
@@ -177,13 +169,13 @@ export type ClusterCreateInput = {
177
169
  */
178
170
  tier: 'basic' | 'pro';
179
171
  /**
180
- * Cloudfleet control plane region. One of "staging", "northamerica-central-1", "europe-central-1a", "northamerica-central-1a". This field can not be updated after creation.
172
+ * 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.
181
173
  */
182
- region?: 'staging' | 'northamerica-central-1' | 'europe-central-1a' | 'northamerica-central-1a';
174
+ region?: 'staging-1a' | 'northamerica-central-1' | 'europe-central-1a' | 'northamerica-central-1a';
183
175
  /**
184
176
  * Version of the kubernetes cluster.
185
177
  */
186
- 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';
187
179
  };
188
180
  export type ClusterJoinInformation = {
189
181
  /**
@@ -194,6 +186,10 @@ export type ClusterJoinInformation = {
194
186
  * Internal URL of the Kubernetes cluster control plane. This is the endpoint that kubelet uses to connect to the cluster.
195
187
  */
196
188
  endpoint: string;
189
+ /**
190
+ * Cluster DNS IP address. This is the IP address of the kube-dns service in the cluster.
191
+ */
192
+ cluster_dns: string;
197
193
  /**
198
194
  * Authentication key for the cluster.
199
195
  */
@@ -251,13 +247,9 @@ export type Cluster = {
251
247
  */
252
248
  tier: 'basic' | 'pro';
253
249
  /**
254
- * Cloudfleet control plane region. One of "staging", "northamerica-central-1", "europe-central-1a", "northamerica-central-1a". This field can not be updated after creation.
255
- */
256
- region?: 'staging' | 'northamerica-central-1' | 'europe-central-1a' | 'northamerica-central-1a';
257
- /**
258
- * Version of the kubernetes cluster.
250
+ * 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.
259
251
  */
260
- version_channel?: string;
252
+ region?: 'staging-1a' | 'northamerica-central-1' | 'europe-central-1a' | 'northamerica-central-1a';
261
253
  /**
262
254
  * Unique identifier of the kubernetes cluster. UUID v4 string in canonical form
263
255
  */
@@ -267,6 +259,7 @@ export type Cluster = {
267
259
  */
268
260
  status: 'active' | 'disabled' | 'deleted' | 'creating' | 'deployed' | 'failed' | 'updating';
269
261
  endpoint?: string | '';
262
+ endpoint_public?: string | '';
270
263
  /**
271
264
  * Certificate authority data for the kubernetes cluster. This is the root certificate authority for the cluster.
272
265
  */
@@ -287,6 +280,10 @@ export type Cluster = {
287
280
  * Indicates if the cluster is ready to be used.
288
281
  */
289
282
  ready?: boolean;
283
+ /**
284
+ * Version of the kubernetes cluster.
285
+ */
286
+ version_channel?: string;
290
287
  };
291
288
  export type ClusterUpdateInput = {
292
289
  /**
@@ -430,280 +427,121 @@ export type Invite = {
430
427
  };
431
428
  export type Invoice = {
432
429
  /**
433
- * Unique identifier of the invoice. UUID v4 string in canonical form
430
+ * Unique identifier of the invoice.
434
431
  */
435
432
  id?: string;
436
- /**
437
- * Unique identifier of the organization. UUID v4 string in canonical form
438
- */
439
- organizationId?: string;
433
+ number?: string;
440
434
  /**
441
435
  * Status of the invoice
442
436
  */
443
- status?: 'DRAFT' | 'COMMITTED' | 'VOID';
437
+ status?: string;
444
438
  /**
445
439
  * Total amount of the invoice
446
440
  */
447
- amount?: number;
441
+ total?: number;
448
442
  /**
449
443
  * Currency of the invoice
450
444
  */
451
- 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';
445
+ currency?: string;
452
446
  /**
453
- * Total amount of credit adjustments
447
+ * Timestamp when the invoice was issued. ISO 8601 date string in the UTC timezone.
454
448
  */
455
- creditAdj?: number;
449
+ created: string;
456
450
  /**
457
- * Total amount of refund adjustments
451
+ * Billing period start timestamp. ISO 8601 date string in the UTC timezone.
458
452
  */
459
- refundAdj?: number;
453
+ period_start: string;
460
454
  /**
461
- * Date of the invoice
455
+ * Billing period end timestamp. ISO 8601 date string in the UTC timezone.
462
456
  */
463
- invoiceDate?: string;
457
+ period_end: string;
458
+ invoice_pdf?: string;
459
+ };
460
+ export type MarketplaceListingFiles = {
464
461
  /**
465
- * Target date of the invoice
462
+ * Raw Chart.yaml content from the Helm chart
466
463
  */
467
- targetDate?: string;
464
+ chartYaml?: string;
468
465
  /**
469
- * Number of the invoice
466
+ * Raw values.yaml content from the Helm chart
470
467
  */
471
- invoiceNumber?: string;
468
+ valuesYaml?: string;
472
469
  /**
473
- * Balance of the invoice
470
+ * JSON schema for values.yaml as a string
474
471
  */
475
- balance?: number;
472
+ valuesSchemaJson?: string;
473
+ };
474
+ export type MarketplaceListing = {
476
475
  /**
477
- * Bundle keys of the invoice
476
+ * Name of the chart
478
477
  */
479
- bundleKeys?: string;
478
+ name: string;
480
479
  /**
481
- * Credits of the invoice
480
+ * Available versions of the chart
482
481
  */
483
- credits?: Array<{
484
- /**
485
- * Unique identifier of the invoice item. UUID v4 string in canonical form
486
- */
487
- id?: string;
488
- /**
489
- * Unique identifier of the linked invoice item. UUID v4 string in canonical form
490
- */
491
- linkedInvoiceItemId?: string;
492
- /**
493
- * Name of the product
494
- */
495
- productName?: string;
496
- /**
497
- * Name of the plan
498
- */
499
- planName?: string;
500
- /**
501
- * Name of the phase
502
- */
503
- phaseName?: string;
504
- /**
505
- * Name of the usage
506
- */
507
- usageName?: string;
508
- /**
509
- * Pretty name of the product
510
- */
511
- prettyProductName?: string;
512
- /**
513
- * Pretty name of the plan
514
- */
515
- prettyPlanName?: string;
516
- /**
517
- * Pretty name of the phase
518
- */
519
- prettyPhaseName?: string;
520
- /**
521
- * Pretty name of the usage
522
- */
523
- prettyUsageName?: string;
524
- /**
525
- * Type of the invoice item
526
- */
527
- itemType?: 'EXTERNAL_CHARGE' | 'FIXED' | 'RECURRING' | 'REPAIR_ADJ' | 'CBA_ADJ' | 'CREDIT_ADJ' | 'ITEM_ADJ' | 'USAGE' | 'TAX' | 'PARENT_SUMMARY';
528
- /**
529
- * Description of the invoice item
530
- */
531
- description?: string;
532
- /**
533
- * Start date of the invoice item
534
- */
535
- startDate?: string;
536
- /**
537
- * End date of the invoice item
538
- */
539
- endDate?: string;
540
- /**
541
- * Amount of the invoice item
542
- */
543
- amount?: number;
544
- /**
545
- * Rate of the invoice item
546
- */
547
- rate?: number;
548
- /**
549
- * Currency of the invoice item
550
- */
551
- 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';
552
- /**
553
- * Quantity of the invoice item
554
- */
555
- quantity?: number;
556
- /**
557
- * Details of the invoice item
558
- */
559
- itemDetails?: string;
560
- /**
561
- * Effective date of the catalog
562
- */
563
- catalogEffectiveDate?: string;
564
- /**
565
- * Child items of the invoice item
566
- */
567
- childItems?: Array<Array<unknown> | boolean | number | {
568
- [key: string]: unknown;
569
- } | string>;
570
- }>;
482
+ versions: Array<string>;
571
483
  /**
572
- * Items of the invoice
484
+ * Version channels for the chart
573
485
  */
574
- items?: Array<{
575
- /**
576
- * Unique identifier of the invoice item. UUID v4 string in canonical form
577
- */
578
- id?: string;
579
- /**
580
- * Unique identifier of the linked invoice item. UUID v4 string in canonical form
581
- */
582
- linkedInvoiceItemId?: string;
583
- /**
584
- * Name of the product
585
- */
586
- productName?: string;
587
- /**
588
- * Name of the plan
589
- */
590
- planName?: string;
591
- /**
592
- * Name of the phase
593
- */
594
- phaseName?: string;
595
- /**
596
- * Name of the usage
597
- */
598
- usageName?: string;
599
- /**
600
- * Pretty name of the product
601
- */
602
- prettyProductName?: string;
603
- /**
604
- * Pretty name of the plan
605
- */
606
- prettyPlanName?: string;
607
- /**
608
- * Pretty name of the phase
609
- */
610
- prettyPhaseName?: string;
486
+ version_channels: Array<string>;
487
+ /**
488
+ * Latest version of the chart
489
+ */
490
+ latestVersion: string;
491
+ /**
492
+ * Chart metadata
493
+ */
494
+ metadata?: {
611
495
  /**
612
- * Pretty name of the usage
496
+ * Chart name from metadata
613
497
  */
614
- prettyUsageName?: string;
498
+ name: string;
615
499
  /**
616
- * Type of the invoice item
500
+ * Chart version from metadata
617
501
  */
618
- itemType?: 'EXTERNAL_CHARGE' | 'FIXED' | 'RECURRING' | 'REPAIR_ADJ' | 'CBA_ADJ' | 'CREDIT_ADJ' | 'ITEM_ADJ' | 'USAGE' | 'TAX' | 'PARENT_SUMMARY';
502
+ version: string;
619
503
  /**
620
- * Description of the invoice item
504
+ * Chart description
621
505
  */
622
506
  description?: string;
623
507
  /**
624
- * Start date of the invoice item
625
- */
626
- startDate?: string;
627
- /**
628
- * End date of the invoice item
629
- */
630
- endDate?: string;
631
- /**
632
- * Amount of the invoice item
508
+ * Application version
633
509
  */
634
- amount?: number;
510
+ appVersion?: string;
635
511
  /**
636
- * Rate of the invoice item
512
+ * Helm API version
637
513
  */
638
- rate?: number;
514
+ apiVersion?: string;
639
515
  /**
640
- * Currency of the invoice item
516
+ * Chart keywords
641
517
  */
642
- 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';
518
+ keywords?: Array<string>;
643
519
  /**
644
- * Quantity of the invoice item
520
+ * Chart home URL
645
521
  */
646
- quantity?: number;
522
+ home?: string;
647
523
  /**
648
- * Details of the invoice item
524
+ * A URL to an SVG or PNG image to be used as an icon
649
525
  */
650
- itemDetails?: string;
526
+ icon?: string;
651
527
  /**
652
- * Effective date of the catalog
528
+ * Chart source URLs
653
529
  */
654
- catalogEffectiveDate?: string;
530
+ sources?: Array<string>;
655
531
  /**
656
- * Child items of the invoice item
532
+ * Chart maintainers
657
533
  */
658
- childItems?: Array<Array<unknown> | boolean | number | {
659
- [key: string]: unknown;
660
- } | string>;
661
- }>;
662
- };
663
- export type MarketplaceListing = {
664
- /**
665
- * Id of the chart listing
666
- */
667
- id: string;
668
- /**
669
- * Name of the chart listing
670
- */
671
- name: string;
672
- /**
673
- * Author of the chart listing
674
- */
675
- developer: string;
676
- /**
677
- * Short description of the chart listing
678
- */
679
- description: string;
680
- /**
681
- * Logo of the chart listing
682
- */
683
- logoUrl: string;
684
- /**
685
- * Long description of the chart listing
686
- */
687
- longDescription: string;
688
- /**
689
- * Tags of the chart
690
- */
691
- categories: Array<string>;
692
- version_channels: Array<string>;
693
- value_schemas: Array<{
694
- /**
695
- * Version of the chart.
696
- */
697
- version: string;
698
- /**
699
- * Schema of the chart values. JSON Schema as string
700
- */
701
- schema: string;
702
- /**
703
- * Schema of the chart values
704
- */
705
- placeholder: string;
706
- }>;
534
+ maintainers?: Array<{
535
+ /**
536
+ * Maintainer name
537
+ */
538
+ name: string;
539
+ /**
540
+ * Maintainer email
541
+ */
542
+ email?: string;
543
+ }>;
544
+ };
707
545
  };
708
546
  export type OrganizationCreateInput = {
709
547
  /**
@@ -785,6 +623,10 @@ export type Organization = {
785
623
  */
786
624
  label: string;
787
625
  }>;
626
+ /**
627
+ * Organization-level maximum CFCR storage volume in GB. -1 means no limit.
628
+ */
629
+ cfcr_storage_gb: number;
788
630
  };
789
631
  /**
790
632
  * Status of the organization. Can be `active` or `closed`, or `suspended`.
@@ -821,6 +663,453 @@ export type PaymentMethod = {
821
663
  */
822
664
  brand: 'amex' | 'diners' | 'discover' | 'eftpos_au' | 'jcb' | 'mastercard' | 'unionpay' | 'visa' | 'unknown';
823
665
  };
666
+ export type PlatformQuota = {
667
+ /**
668
+ * Maximum number of Basic clusters that can be created.
669
+ */
670
+ basic_clusters_max: number;
671
+ /**
672
+ * Available number of Basic clusters that can be created.
673
+ */
674
+ basic_clusters_available: number;
675
+ /**
676
+ * Maximum number of Pro clusters that can be created.
677
+ */
678
+ pro_clusters_max: number;
679
+ /**
680
+ * Available number of Pro clusters that can be created.
681
+ */
682
+ pro_clusters_available: number;
683
+ /**
684
+ * Maximum number of fleets that can be created per cluster.
685
+ */
686
+ fleets_max: number;
687
+ /**
688
+ * List of Cloudfleet cluster tiers available for the organization.
689
+ */
690
+ cluster_tiers: Array<string>;
691
+ /**
692
+ * List of Cloudfleet control plane regions available for the organization.
693
+ */
694
+ regions: Array<string>;
695
+ /**
696
+ * List of CFKE control plane versions available for the organization.
697
+ */
698
+ versions: Array<{
699
+ /**
700
+ * Id of the control plane version. Used in API calls.
701
+ */
702
+ id: string;
703
+ /**
704
+ * Label of the control plane version. Used in frontent UI.
705
+ */
706
+ label: string;
707
+ }>;
708
+ /**
709
+ * Organization-level maximum CFCR storage volume in GB. -1 means no limit.
710
+ */
711
+ cfcr_storage_gb: number;
712
+ };
713
+ export type RegistryRepository = {
714
+ /**
715
+ * Repository name.
716
+ */
717
+ name: string;
718
+ /**
719
+ * Registry region.
720
+ */
721
+ region: string;
722
+ /**
723
+ * Full URI of the repository.
724
+ */
725
+ uri: string;
726
+ };
727
+ export type RegistryRepositoryWithTags = {
728
+ /**
729
+ * Repository name.
730
+ */
731
+ name: string;
732
+ /**
733
+ * Registry region.
734
+ */
735
+ region: string;
736
+ /**
737
+ * Full URI of the repository.
738
+ */
739
+ uri: string;
740
+ /**
741
+ * Array of tags in the repository.
742
+ */
743
+ tags: Array<{
744
+ /**
745
+ * Tag name.
746
+ */
747
+ name: string;
748
+ /**
749
+ * Size of the tag in bytes.
750
+ */
751
+ size: number;
752
+ /**
753
+ * Media type of the manifest.
754
+ */
755
+ mediaType?: string;
756
+ /**
757
+ * Array of platform strings for multi-arch images (e.g., linux/amd64, linux/arm64).
758
+ */
759
+ platforms?: Array<string>;
760
+ }>;
761
+ /**
762
+ * Total size of all tags in the repository in bytes.
763
+ */
764
+ totalSize: number;
765
+ };
766
+ export type RegistryTag = {
767
+ /**
768
+ * Tag name.
769
+ */
770
+ name: string;
771
+ /**
772
+ * Manifest digest for pulling by digest.
773
+ */
774
+ digest: string;
775
+ /**
776
+ * Media type of the manifest.
777
+ */
778
+ mediaType?: string;
779
+ /**
780
+ * Manifest config metadata.
781
+ */
782
+ config?: {
783
+ /**
784
+ * Size of the config in bytes.
785
+ */
786
+ size: number;
787
+ };
788
+ /**
789
+ * Array of layer metadata.
790
+ */
791
+ layers?: Array<{
792
+ /**
793
+ * Digest of the layer.
794
+ */
795
+ digest?: string;
796
+ /**
797
+ * Size of the layer in bytes.
798
+ */
799
+ size: number;
800
+ }>;
801
+ /**
802
+ * Array of manifests for multi-arch images.
803
+ */
804
+ manifests?: Array<{
805
+ /**
806
+ * Digest of the manifest.
807
+ */
808
+ digest: string;
809
+ /**
810
+ * Platform information for the manifest.
811
+ */
812
+ platform?: {
813
+ /**
814
+ * Architecture of the platform.
815
+ */
816
+ architecture: string;
817
+ /**
818
+ * Operating system of the platform.
819
+ */
820
+ os: string;
821
+ /**
822
+ * Variant of the platform (e.g., v7, v8 for ARM).
823
+ */
824
+ variant?: string;
825
+ };
826
+ /**
827
+ * Layers for this platform.
828
+ */
829
+ layers?: Array<{
830
+ /**
831
+ * Digest of the layer.
832
+ */
833
+ digest?: string;
834
+ /**
835
+ * Size of the layer in bytes.
836
+ */
837
+ size: number;
838
+ }>;
839
+ /**
840
+ * Total size of this platform manifest in bytes.
841
+ */
842
+ size?: number;
843
+ }>;
844
+ /**
845
+ * Total size of the tag in bytes.
846
+ */
847
+ size: number;
848
+ /**
849
+ * Registry region.
850
+ */
851
+ region: string;
852
+ /**
853
+ * Repository name.
854
+ */
855
+ repository: string;
856
+ /**
857
+ * Full URI of the tag.
858
+ */
859
+ uri: string;
860
+ };
861
+ export type TicketAttachment = {
862
+ /**
863
+ * Unique identifier of the attachment (Mongo ObjectId).
864
+ */
865
+ id: string;
866
+ /**
867
+ * Original filename as uploaded.
868
+ */
869
+ filename: string;
870
+ /**
871
+ * MIME content type of the attachment.
872
+ */
873
+ content_type: string;
874
+ /**
875
+ * Size of the attachment in bytes.
876
+ */
877
+ size: number;
878
+ };
879
+ export type TicketCreateInput = {
880
+ /**
881
+ * Ticket category. Drives auto-assignment and may carry a subcategory in `properties`.
882
+ */
883
+ category: 'billing' | 'technical' | 'general';
884
+ /**
885
+ * Initial message body in markdown. There is no separate subject — the first message body is the description.
886
+ */
887
+ body: string;
888
+ /**
889
+ * Free-form key/value bag set by the UI (e.g. `subcategory`, `cluster_id`, `cluster_name`, `region`).
890
+ */
891
+ properties?: {
892
+ [key: string]: unknown;
893
+ };
894
+ };
895
+ export type TicketListResponse = {
896
+ /**
897
+ * Tickets for the organization, ordered newest first. Messages are omitted from list responses.
898
+ */
899
+ items: Array<{
900
+ /**
901
+ * Unique identifier of the ticket (Mongo ObjectId).
902
+ */
903
+ id: string;
904
+ /**
905
+ * Current state of the ticket.
906
+ */
907
+ status: 'waiting_on_us' | 'waiting_on_user' | 'closed';
908
+ /**
909
+ * Ticket category.
910
+ */
911
+ category: 'billing' | 'technical' | 'general';
912
+ /**
913
+ * First 128 characters of the initial message body, with markdown formatting and newlines stripped. Used for ticket list previews.
914
+ */
915
+ summary: string;
916
+ /**
917
+ * Closure timestamp. Null while the ticket is open.
918
+ */
919
+ closed_at?: string;
920
+ /**
921
+ * Creation date of the ticket. ISO 8601 UTC.
922
+ */
923
+ date_created: string;
924
+ /**
925
+ * Last update date of the ticket. ISO 8601 UTC.
926
+ */
927
+ date_updated: string;
928
+ /**
929
+ * Messages on the ticket in chronological order. Internal notes are excluded. Returned by the detail endpoint only.
930
+ */
931
+ messages?: Array<{
932
+ /**
933
+ * Unique identifier of the message (Mongo ObjectId).
934
+ */
935
+ id: string;
936
+ /**
937
+ * Message type. Internal notes are filtered out of customer-facing responses.
938
+ */
939
+ type: 'customer_reply' | 'agent_reply';
940
+ /**
941
+ * Message body in markdown.
942
+ */
943
+ body: string;
944
+ /**
945
+ * First name of the author. Null when not provided.
946
+ */
947
+ author_first_name?: string;
948
+ /**
949
+ * Last name of the author. Null when not provided.
950
+ */
951
+ author_last_name?: string;
952
+ /**
953
+ * Attachments associated with this message.
954
+ */
955
+ attachments?: Array<{
956
+ /**
957
+ * Unique identifier of the attachment (Mongo ObjectId).
958
+ */
959
+ id: string;
960
+ /**
961
+ * Original filename as uploaded.
962
+ */
963
+ filename: string;
964
+ /**
965
+ * MIME content type of the attachment.
966
+ */
967
+ content_type: string;
968
+ /**
969
+ * Size of the attachment in bytes.
970
+ */
971
+ size: number;
972
+ }>;
973
+ /**
974
+ * Creation date of the message. ISO 8601 UTC.
975
+ */
976
+ date_created: string;
977
+ }>;
978
+ }>;
979
+ };
980
+ export type TicketMessageInput = {
981
+ /**
982
+ * Reply body in markdown.
983
+ */
984
+ body: string;
985
+ };
986
+ export type TicketMessage = {
987
+ /**
988
+ * Unique identifier of the message (Mongo ObjectId).
989
+ */
990
+ id: string;
991
+ /**
992
+ * Message type. Internal notes are filtered out of customer-facing responses.
993
+ */
994
+ type: 'customer_reply' | 'agent_reply';
995
+ /**
996
+ * Message body in markdown.
997
+ */
998
+ body: string;
999
+ /**
1000
+ * First name of the author. Null when not provided.
1001
+ */
1002
+ author_first_name?: string;
1003
+ /**
1004
+ * Last name of the author. Null when not provided.
1005
+ */
1006
+ author_last_name?: string;
1007
+ /**
1008
+ * Attachments associated with this message.
1009
+ */
1010
+ attachments?: Array<{
1011
+ /**
1012
+ * Unique identifier of the attachment (Mongo ObjectId).
1013
+ */
1014
+ id: string;
1015
+ /**
1016
+ * Original filename as uploaded.
1017
+ */
1018
+ filename: string;
1019
+ /**
1020
+ * MIME content type of the attachment.
1021
+ */
1022
+ content_type: string;
1023
+ /**
1024
+ * Size of the attachment in bytes.
1025
+ */
1026
+ size: number;
1027
+ }>;
1028
+ /**
1029
+ * Creation date of the message. ISO 8601 UTC.
1030
+ */
1031
+ date_created: string;
1032
+ };
1033
+ export type Ticket = {
1034
+ /**
1035
+ * Unique identifier of the ticket (Mongo ObjectId).
1036
+ */
1037
+ id: string;
1038
+ /**
1039
+ * Current state of the ticket.
1040
+ */
1041
+ status: 'waiting_on_us' | 'waiting_on_user' | 'closed';
1042
+ /**
1043
+ * Ticket category.
1044
+ */
1045
+ category: 'billing' | 'technical' | 'general';
1046
+ /**
1047
+ * First 128 characters of the initial message body, with markdown formatting and newlines stripped. Used for ticket list previews.
1048
+ */
1049
+ summary: string;
1050
+ /**
1051
+ * Closure timestamp. Null while the ticket is open.
1052
+ */
1053
+ closed_at?: string;
1054
+ /**
1055
+ * Creation date of the ticket. ISO 8601 UTC.
1056
+ */
1057
+ date_created: string;
1058
+ /**
1059
+ * Last update date of the ticket. ISO 8601 UTC.
1060
+ */
1061
+ date_updated: string;
1062
+ /**
1063
+ * Messages on the ticket in chronological order. Internal notes are excluded. Returned by the detail endpoint only.
1064
+ */
1065
+ messages?: Array<{
1066
+ /**
1067
+ * Unique identifier of the message (Mongo ObjectId).
1068
+ */
1069
+ id: string;
1070
+ /**
1071
+ * Message type. Internal notes are filtered out of customer-facing responses.
1072
+ */
1073
+ type: 'customer_reply' | 'agent_reply';
1074
+ /**
1075
+ * Message body in markdown.
1076
+ */
1077
+ body: string;
1078
+ /**
1079
+ * First name of the author. Null when not provided.
1080
+ */
1081
+ author_first_name?: string;
1082
+ /**
1083
+ * Last name of the author. Null when not provided.
1084
+ */
1085
+ author_last_name?: string;
1086
+ /**
1087
+ * Attachments associated with this message.
1088
+ */
1089
+ attachments?: Array<{
1090
+ /**
1091
+ * Unique identifier of the attachment (Mongo ObjectId).
1092
+ */
1093
+ id: string;
1094
+ /**
1095
+ * Original filename as uploaded.
1096
+ */
1097
+ filename: string;
1098
+ /**
1099
+ * MIME content type of the attachment.
1100
+ */
1101
+ content_type: string;
1102
+ /**
1103
+ * Size of the attachment in bytes.
1104
+ */
1105
+ size: number;
1106
+ }>;
1107
+ /**
1108
+ * Creation date of the message. ISO 8601 UTC.
1109
+ */
1110
+ date_created: string;
1111
+ }>;
1112
+ };
824
1113
  export type TokenCreateInput = {
825
1114
  /**
826
1115
  * Human readable access token name.
@@ -863,35 +1152,85 @@ export type TokenUpdateInput = {
863
1152
  */
864
1153
  role?: 'Administrator' | 'User';
865
1154
  };
1155
+ export type UsageFacets = {
1156
+ /**
1157
+ * List of unique cluster IDs
1158
+ */
1159
+ cluster_id?: Array<string>;
1160
+ /**
1161
+ * List of unique products
1162
+ */
1163
+ product?: Array<string>;
1164
+ };
1165
+ export type UsageResponse = {
1166
+ /**
1167
+ * Usage data
1168
+ */
1169
+ data: Array<{
1170
+ /**
1171
+ * Hour of the usage
1172
+ */
1173
+ hour: string;
1174
+ /**
1175
+ * Unique identifier of the kubernetes cluster. UUID v4 string in canonical form
1176
+ */
1177
+ cluster_id: string;
1178
+ /**
1179
+ * The product the usage is associated with
1180
+ */
1181
+ product: string;
1182
+ /**
1183
+ * Consumption
1184
+ */
1185
+ value: number;
1186
+ /**
1187
+ * Price per unit
1188
+ */
1189
+ price: number;
1190
+ /**
1191
+ * Total cost
1192
+ */
1193
+ total: number;
1194
+ }>;
1195
+ /**
1196
+ * Facets for filtering
1197
+ */
1198
+ facets: {
1199
+ /**
1200
+ * List of unique cluster IDs
1201
+ */
1202
+ cluster_id?: Array<string>;
1203
+ /**
1204
+ * List of unique products
1205
+ */
1206
+ product?: Array<string>;
1207
+ };
1208
+ };
866
1209
  export type Usage = {
867
1210
  /**
868
1211
  * Hour of the usage
869
1212
  */
870
- hour?: string;
1213
+ hour: string;
871
1214
  /**
872
1215
  * Unique identifier of the kubernetes cluster. UUID v4 string in canonical form
873
1216
  */
874
1217
  cluster_id: string;
875
1218
  /**
876
- * Tier of the cluster.
1219
+ * The product the usage is associated with
877
1220
  */
878
- cluster_tier: 'basic' | 'pro' | '';
1221
+ product: string;
879
1222
  /**
880
- * The product the usage is associated with
1223
+ * Consumption
881
1224
  */
882
- product: 'cfke_controlplane' | 'cfke_connected_nodes' | 'infra_compute' | 'infra_storage' | 'infra_loadbalancing' | 'infra_traffic' | 'cfcr_storage';
1225
+ value: number;
883
1226
  /**
884
- * Name of the Kubernetes node
1227
+ * Price per unit
885
1228
  */
886
- node_name: string;
1229
+ price: number;
887
1230
  /**
888
- * SKU of the Kubernetes node
1231
+ * Total cost
889
1232
  */
890
- sku: string;
891
- cpu: number | '';
892
- price: number | '';
893
- value: number | '';
894
- total: number | '';
1233
+ total: number;
895
1234
  };
896
1235
  export type UserCreateInput = {
897
1236
  /**
@@ -978,7 +1317,12 @@ export type UserUpdateInput = {
978
1317
  export type GetUsageData = {
979
1318
  body?: never;
980
1319
  path?: never;
981
- query?: never;
1320
+ query?: {
1321
+ /**
1322
+ * 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)
1323
+ */
1324
+ granularity?: 'hourly' | 'daily' | 'monthly';
1325
+ };
982
1326
  url: '/billing/usage';
983
1327
  };
984
1328
  export type GetUsageErrors = {
@@ -989,24 +1333,11 @@ export type GetUsageErrors = {
989
1333
  };
990
1334
  export type GetUsageResponses = {
991
1335
  /**
992
- * An array of usage records.
1336
+ * Usage data with facets for filtering
993
1337
  */
994
- 200: Array<Usage>;
1338
+ 200: UsageResponse;
995
1339
  };
996
1340
  export type GetUsageResponse = GetUsageResponses[keyof GetUsageResponses];
997
- export type GetBalanceData = {
998
- body?: never;
999
- path?: never;
1000
- query?: never;
1001
- url: '/billing/balance';
1002
- };
1003
- export type GetBalanceResponses = {
1004
- /**
1005
- * Current balance of the organization in USD as a floating-point number.
1006
- */
1007
- 200: number;
1008
- };
1009
- export type GetBalanceResponse = GetBalanceResponses[keyof GetBalanceResponses];
1010
1341
  export type GetPaymentMethodData = {
1011
1342
  body?: never;
1012
1343
  path?: never;
@@ -1048,16 +1379,7 @@ export type GetPaymentMethodSecretResponse = GetPaymentMethodSecretResponses[key
1048
1379
  export type ListInvoicesData = {
1049
1380
  body?: never;
1050
1381
  path?: never;
1051
- query: {
1052
- /**
1053
- * Start date for the usage. Date of oldest data point to retrieve.
1054
- */
1055
- start_date: string;
1056
- /**
1057
- * End date for the usage. Date of newest data point to retrieve.
1058
- */
1059
- end_date: string;
1060
- };
1382
+ query?: never;
1061
1383
  url: '/billing/invoices';
1062
1384
  };
1063
1385
  export type ListInvoicesErrors = {
@@ -1073,26 +1395,6 @@ export type ListInvoicesResponses = {
1073
1395
  200: Array<Invoice>;
1074
1396
  };
1075
1397
  export type ListInvoicesResponse = ListInvoicesResponses[keyof ListInvoicesResponses];
1076
- export type GetInvoiceData = {
1077
- body?: never;
1078
- path: {
1079
- /**
1080
- * Unique invoice identifier. UUID v4 string in canonical form
1081
- */
1082
- id: string;
1083
- };
1084
- query?: never;
1085
- url: '/billing/invoices/{id}';
1086
- };
1087
- export type GetInvoiceResponses = {
1088
- /**
1089
- * Returns a single Invoice HTML representation under `html` property.
1090
- */
1091
- 200: {
1092
- html?: string;
1093
- };
1094
- };
1095
- export type GetInvoiceResponse = GetInvoiceResponses[keyof GetInvoiceResponses];
1096
1398
  export type GetContactData = {
1097
1399
  body?: never;
1098
1400
  path?: never;
@@ -1622,24 +1924,76 @@ export type ListMarketplaceChartsResponses = {
1622
1924
  200: Array<MarketplaceListing>;
1623
1925
  };
1624
1926
  export type ListMarketplaceChartsResponse = ListMarketplaceChartsResponses[keyof ListMarketplaceChartsResponses];
1625
- export type GetMarketplaceChartData = {
1927
+ export type GetMarketplaceChartFilesData = {
1626
1928
  body?: never;
1627
1929
  path: {
1628
1930
  /**
1629
- * Unique identifier of the chart listing in the marketplace.
1931
+ * Name of the chart in the marketplace.
1932
+ */
1933
+ chart_name: string;
1934
+ /**
1935
+ * 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).
1936
+ */
1937
+ version_channel: string;
1938
+ };
1939
+ query?: never;
1940
+ url: '/marketplace/{chart_name}/files/{version_channel}';
1941
+ };
1942
+ export type GetMarketplaceChartFilesErrors = {
1943
+ /**
1944
+ * Chart not found or no version matches the channel
1945
+ */
1946
+ 404: unknown;
1947
+ };
1948
+ export type GetMarketplaceChartFilesResponses = {
1949
+ /**
1950
+ * Returns an object containing the chart files for the latest matching version.
1951
+ */
1952
+ 200: MarketplaceListingFiles;
1953
+ };
1954
+ export type GetMarketplaceChartFilesResponse = GetMarketplaceChartFilesResponses[keyof GetMarketplaceChartFilesResponses];
1955
+ export type PostMcpData = {
1956
+ /**
1957
+ * JSON-RPC 2.0 request payload
1958
+ */
1959
+ body: {
1960
+ jsonrpc?: string;
1961
+ method?: string;
1962
+ id?: string | number;
1963
+ /**
1964
+ * Method-specific parameters
1630
1965
  */
1631
- listing_id: string;
1966
+ params?: {
1967
+ [key: string]: unknown;
1968
+ };
1632
1969
  };
1970
+ path?: never;
1633
1971
  query?: never;
1634
- url: '/marketplace/{listing_id}';
1972
+ url: '/mcp';
1973
+ };
1974
+ export type PostMcpErrors = {
1975
+ /**
1976
+ * Not authenticated
1977
+ */
1978
+ 401: unknown;
1635
1979
  };
1636
- export type GetMarketplaceChartResponses = {
1980
+ export type PostMcpResponses = {
1637
1981
  /**
1638
- * Returns an object containing the chart listing details.
1982
+ * JSON-RPC 2.0 success or error response
1639
1983
  */
1640
- 200: MarketplaceListing;
1984
+ 200: {
1985
+ jsonrpc?: string;
1986
+ id?: string | number;
1987
+ result?: {
1988
+ [key: string]: unknown;
1989
+ };
1990
+ error?: {
1991
+ code?: number;
1992
+ message?: string;
1993
+ };
1994
+ };
1641
1995
  };
1642
- export type GetMarketplaceChartResponse = GetMarketplaceChartResponses[keyof GetMarketplaceChartResponses];
1996
+ export type PostMcpResponse = PostMcpResponses[keyof PostMcpResponses];
1643
1997
  export type GetOrganizationData = {
1644
1998
  body?: never;
1645
1999
  path?: never;
@@ -1665,6 +2019,249 @@ export type CreateOrganizationResponses = {
1665
2019
  */
1666
2020
  200: unknown;
1667
2021
  };
2022
+ export type ListRepositoriesData = {
2023
+ body?: never;
2024
+ path?: never;
2025
+ query?: never;
2026
+ url: '/registry';
2027
+ };
2028
+ export type ListRepositoriesErrors = {
2029
+ /**
2030
+ * Not authenticated
2031
+ */
2032
+ 401: unknown;
2033
+ /**
2034
+ * Internal server error
2035
+ */
2036
+ 500: unknown;
2037
+ };
2038
+ export type ListRepositoriesResponses = {
2039
+ /**
2040
+ * List of repositories
2041
+ */
2042
+ 200: Array<RegistryRepository>;
2043
+ };
2044
+ export type ListRepositoriesResponse = ListRepositoriesResponses[keyof ListRepositoriesResponses];
2045
+ export type ListTagsData = {
2046
+ body?: never;
2047
+ path: {
2048
+ /**
2049
+ * Region where the repository is located
2050
+ */
2051
+ region: string;
2052
+ /**
2053
+ * Name of the repository
2054
+ */
2055
+ repository: string;
2056
+ };
2057
+ query?: never;
2058
+ url: '/registry/{region}/{repository}';
2059
+ };
2060
+ export type ListTagsErrors = {
2061
+ /**
2062
+ * Not authenticated
2063
+ */
2064
+ 401: unknown;
2065
+ /**
2066
+ * Repository not found
2067
+ */
2068
+ 404: unknown;
2069
+ /**
2070
+ * Internal server error
2071
+ */
2072
+ 500: unknown;
2073
+ };
2074
+ export type ListTagsResponses = {
2075
+ /**
2076
+ * Repository with tags
2077
+ */
2078
+ 200: RegistryRepositoryWithTags;
2079
+ };
2080
+ export type ListTagsResponse = ListTagsResponses[keyof ListTagsResponses];
2081
+ export type DeleteTagData = {
2082
+ body?: never;
2083
+ path: {
2084
+ /**
2085
+ * Region where the repository is located
2086
+ */
2087
+ region: string;
2088
+ /**
2089
+ * Name of the repository
2090
+ */
2091
+ repository: string;
2092
+ /**
2093
+ * Name of the tag
2094
+ */
2095
+ tag: string;
2096
+ };
2097
+ query?: never;
2098
+ url: '/registry/{region}/{repository}/{tag}';
2099
+ };
2100
+ export type DeleteTagErrors = {
2101
+ /**
2102
+ * Not authenticated
2103
+ */
2104
+ 401: unknown;
2105
+ /**
2106
+ * Tag not found
2107
+ */
2108
+ 404: unknown;
2109
+ /**
2110
+ * Internal server error
2111
+ */
2112
+ 500: unknown;
2113
+ };
2114
+ export type DeleteTagResponses = {
2115
+ /**
2116
+ * Tag successfully deleted
2117
+ */
2118
+ 200: unknown;
2119
+ };
2120
+ export type GetTagData = {
2121
+ body?: never;
2122
+ path: {
2123
+ /**
2124
+ * Region where the repository is located
2125
+ */
2126
+ region: string;
2127
+ /**
2128
+ * Name of the repository
2129
+ */
2130
+ repository: string;
2131
+ /**
2132
+ * Name of the tag
2133
+ */
2134
+ tag: string;
2135
+ };
2136
+ query?: never;
2137
+ url: '/registry/{region}/{repository}/{tag}';
2138
+ };
2139
+ export type GetTagErrors = {
2140
+ /**
2141
+ * Not authenticated
2142
+ */
2143
+ 401: unknown;
2144
+ /**
2145
+ * Tag not found
2146
+ */
2147
+ 404: unknown;
2148
+ /**
2149
+ * Internal server error
2150
+ */
2151
+ 500: unknown;
2152
+ };
2153
+ export type GetTagResponses = {
2154
+ /**
2155
+ * Tag details
2156
+ */
2157
+ 200: RegistryTag;
2158
+ };
2159
+ export type GetTagResponse = GetTagResponses[keyof GetTagResponses];
2160
+ export type ListTicketsData = {
2161
+ body?: never;
2162
+ path?: never;
2163
+ query?: never;
2164
+ url: '/tickets';
2165
+ };
2166
+ export type ListTicketsResponses = {
2167
+ /**
2168
+ * Tickets for the organization.
2169
+ */
2170
+ 200: TicketListResponse;
2171
+ };
2172
+ export type ListTicketsResponse = ListTicketsResponses[keyof ListTicketsResponses];
2173
+ export type CreateTicketData = {
2174
+ body: {
2175
+ /**
2176
+ * JSON-encoded TicketCreateInput.
2177
+ */
2178
+ payload?: string;
2179
+ attachments?: Array<Blob | File>;
2180
+ };
2181
+ path?: never;
2182
+ query?: never;
2183
+ url: '/tickets';
2184
+ };
2185
+ export type CreateTicketResponses = {
2186
+ /**
2187
+ * Ticket created.
2188
+ */
2189
+ 200: Ticket;
2190
+ };
2191
+ export type CreateTicketResponse = CreateTicketResponses[keyof CreateTicketResponses];
2192
+ export type CloseTicketData = {
2193
+ body?: never;
2194
+ path: {
2195
+ ticket_id: string;
2196
+ };
2197
+ query?: never;
2198
+ url: '/tickets/{ticket_id}';
2199
+ };
2200
+ export type CloseTicketResponses = {
2201
+ /**
2202
+ * Ticket closed.
2203
+ */
2204
+ 200: Ticket;
2205
+ };
2206
+ export type CloseTicketResponse = CloseTicketResponses[keyof CloseTicketResponses];
2207
+ export type GetTicketData = {
2208
+ body?: never;
2209
+ path: {
2210
+ ticket_id: string;
2211
+ };
2212
+ query?: never;
2213
+ url: '/tickets/{ticket_id}';
2214
+ };
2215
+ export type GetTicketResponses = {
2216
+ /**
2217
+ * Ticket with messages (internal notes excluded).
2218
+ */
2219
+ 200: Ticket;
2220
+ };
2221
+ export type GetTicketResponse = GetTicketResponses[keyof GetTicketResponses];
2222
+ export type ReplyTicketData = {
2223
+ body: {
2224
+ /**
2225
+ * JSON-encoded TicketMessageInput.
2226
+ */
2227
+ payload?: string;
2228
+ attachments?: Array<Blob | File>;
2229
+ };
2230
+ path: {
2231
+ ticket_id: string;
2232
+ };
2233
+ query?: never;
2234
+ url: '/tickets/{ticket_id}/messages';
2235
+ };
2236
+ export type ReplyTicketErrors = {
2237
+ /**
2238
+ * Ticket is closed. Open a new ticket instead.
2239
+ */
2240
+ 409: unknown;
2241
+ };
2242
+ export type ReplyTicketResponses = {
2243
+ /**
2244
+ * Reply appended.
2245
+ */
2246
+ 200: TicketMessage;
2247
+ };
2248
+ export type ReplyTicketResponse = ReplyTicketResponses[keyof ReplyTicketResponses];
2249
+ export type GetTicketAttachmentData = {
2250
+ body?: never;
2251
+ path: {
2252
+ ticket_id: string;
2253
+ attachment_id: string;
2254
+ };
2255
+ query?: never;
2256
+ url: '/tickets/{ticket_id}/attachments/{attachment_id}';
2257
+ };
2258
+ export type GetTicketAttachmentResponses = {
2259
+ /**
2260
+ * Attachment binary stream.
2261
+ */
2262
+ 200: Blob | File;
2263
+ };
2264
+ export type GetTicketAttachmentResponse = GetTicketAttachmentResponses[keyof GetTicketAttachmentResponses];
1668
2265
  export type ListTokensData = {
1669
2266
  body?: never;
1670
2267
  path?: never;