@cloudfleet/sdk 0.0.1-d824507 → 0.0.1-d940b00

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.
@@ -1,6 +1,12 @@
1
1
  export declare const BillingContactSchema: {
2
2
  readonly type: "object";
3
3
  readonly properties: {
4
+ readonly type: {
5
+ readonly type: "string";
6
+ readonly description: "Type of the organization. `business` for legal entities, `personal` for individuals.";
7
+ readonly example: "business";
8
+ readonly enum: readonly ["business", "personal"];
9
+ };
4
10
  readonly company: {
5
11
  readonly type: "string";
6
12
  readonly maxLength: 120;
@@ -76,7 +82,7 @@ export declare const BillingContactSchema: {
76
82
  readonly enum: readonly ["ad_nrt", "ae_trn", "al_tin", "am_tin", "ao_tin", "ar_cuit", "at_vat", "au_abn", "au_arn", "ba_tin", "bb_tin", "be_vat", "bg_uic", "bg_vat", "bh_vat", "bo_tin", "br_cnpj", "br_cpf", "bs_tin", "by_tin", "ca_bn", "ca_gst_hst", "ca_pst_bc", "ca_pst_mb", "ca_pst_sk", "ca_qst", "cd_nif", "ch_uid", "ch_vat", "cl_tin", "cn_tin", "co_nit", "cr_tin", "cy_vat", "cz_vat", "de_stn", "de_vat", "dk_vat", "do_rcn", "ec_ruc", "ee_vat", "eg_tin", "es_cif", "es_vat", "eu_oss_vat", "fi_vat", "fr_vat", "gb_vat", "ge_vat", "gn_nif", "gr_vat", "hk_br", "hr_oib", "hr_vat", "hu_tin", "hu_vat", "id_npwp", "ie_vat", "il_vat", "in_gst", "is_vat", "it_vat", "jp_cn", "jp_rn", "jp_trn", "ke_pin", "kh_tin", "kr_brn", "kz_bin", "li_uid", "li_vat", "lt_vat", "lu_vat", "lv_vat", "ma_vat", "md_vat", "me_pib", "mk_vat", "mr_nif", "mt_vat", "mx_rfc", "my_frp", "my_itn", "my_sst", "ng_tin", "nl_vat", "no_vat", "no_voec", "np_pan", "nz_gst", "om_vat", "pe_ruc", "ph_tin", "pl_vat", "pt_vat", "ro_tin", "ro_vat", "rs_pib", "ru_inn", "ru_kpp", "sa_vat", "se_vat", "sg_gst", "sg_uen", "si_tin", "si_vat", "sk_vat", "sn_ninea", "sr_fin", "sv_nit", "th_vat", "tj_tin", "tr_tin", "tw_vat", "tz_vat", "ua_vat", "ug_tin", "us_ein", "uy_ruc", "uz_tin", "uz_vat", "ve_rif", "vn_tin", "xi_vat", "za_vat", "zm_tin", "zw_tin", ""];
77
83
  };
78
84
  };
79
- readonly required: readonly ["email", "individual_name"];
85
+ readonly required: readonly ["type", "email", "individual_name"];
80
86
  readonly additionalProperties: false;
81
87
  };
82
88
  export declare const BillingCreditsSchema: {
@@ -211,9 +217,8 @@ export declare const ChartSchema: {
211
217
  };
212
218
  readonly status: {
213
219
  readonly type: "string";
214
- readonly description: "Status of the chart deployment.";
215
- readonly example: "active";
216
- readonly enum: readonly ["InstallSucceeded", "InstallFailed", "UpgradeSucceeded", "UpgradeFailed", "TestSucceeded", "TestFailed", "RollbackSucceeded", "RollbackFailed", "UninstallSucceeded", "UninstallFailed", "ArtifactFailed", "DependencyNotReady", "Progressing", "SourceNotReady"];
220
+ readonly description: "Status of the chart deployment (Flux HelmRelease Ready condition reason, e.g. InstallSucceeded, UpgradeFailed, Progressing).";
221
+ readonly example: "InstallSucceeded";
217
222
  };
218
223
  readonly version_current: {
219
224
  readonly type: "string";
@@ -275,10 +280,8 @@ export declare const ClusterCreateInputSchema: {
275
280
  };
276
281
  readonly region: {
277
282
  readonly type: "string";
278
- readonly description: "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.";
279
- readonly default: "staging-1a";
280
- readonly example: "northamerica-central-1a";
281
- readonly enum: readonly ["staging-1a", "northamerica-central-1", "europe-central-1a", "northamerica-central-1a"];
283
+ readonly description: "Cloudfleet control plane region. This field can not be updated after creation.";
284
+ readonly example: "europe-central-1a";
282
285
  };
283
286
  readonly version_channel: {
284
287
  readonly type: "string";
@@ -286,10 +289,84 @@ export declare const ClusterCreateInputSchema: {
286
289
  readonly description: "Version of the kubernetes cluster.";
287
290
  readonly default: "1.x.x-cfke.x";
288
291
  readonly example: "1.x.x-cfke.x";
289
- readonly enum: readonly ["1.x.x-cfke.x", "1.31.x-cfke.x", "1.32.x-cfke.x", "1.33.x-cfke.x"];
292
+ };
293
+ readonly release_channel: {
294
+ readonly type: "string";
295
+ readonly description: "Release channel for the cluster's control plane.";
296
+ readonly default: "rapid";
297
+ readonly example: "rapid";
298
+ readonly enum: readonly ["rapid", "stable", "extended"];
299
+ };
300
+ readonly features: {
301
+ readonly type: "object";
302
+ readonly properties: {
303
+ readonly gpu_sharing_strategy: {
304
+ readonly type: "string";
305
+ readonly description: "GPU sharing strategy.";
306
+ readonly example: "none";
307
+ readonly enum: readonly ["none", "mps", "time_slicing"];
308
+ };
309
+ readonly gpu_max_shared_clients_per_gpu: {
310
+ readonly type: "integer";
311
+ readonly minimum: 1;
312
+ readonly maximum: 48;
313
+ readonly description: "Maximum number of pods that may share a single GPU.";
314
+ readonly example: 10;
315
+ };
316
+ readonly cilium_socket_lb_host_namespace_only: {
317
+ readonly type: "boolean";
318
+ readonly description: "Restrict Cilium socket load-balancing to the host namespace. Required for the Tailscale operator and Istio.";
319
+ readonly example: false;
320
+ };
321
+ };
322
+ readonly required: readonly ["gpu_sharing_strategy", "gpu_max_shared_clients_per_gpu"];
323
+ readonly additionalProperties: false;
324
+ readonly description: "Cluster feature toggles.";
325
+ readonly default: {
326
+ readonly gpu_sharing_strategy: "none";
327
+ readonly gpu_max_shared_clients_per_gpu: 10;
328
+ readonly cilium_socket_lb_host_namespace_only: false;
329
+ };
330
+ };
331
+ readonly networking: {
332
+ readonly type: "object";
333
+ readonly properties: {
334
+ readonly pod_cidr: {
335
+ readonly type: "string";
336
+ readonly description: "CIDR block for pod IPs.";
337
+ readonly example: "10.244.0.0/16";
338
+ };
339
+ readonly service_cidr: {
340
+ readonly type: "string";
341
+ readonly description: "CIDR block for service IPs.";
342
+ readonly example: "10.96.0.0/12";
343
+ };
344
+ readonly cluster_dns: {
345
+ readonly type: "string";
346
+ readonly description: "CoreDNS service IP.";
347
+ readonly example: "10.96.0.10";
348
+ };
349
+ readonly dual_stack: {
350
+ readonly type: "boolean";
351
+ readonly description: "Enable IPv4+IPv6 dual-stack networking.";
352
+ readonly example: false;
353
+ };
354
+ readonly pod_cidr_v6: {
355
+ readonly type: "string";
356
+ readonly description: "IPv6 pod CIDR. Requires dual_stack.";
357
+ readonly example: "fd00:10:244::/56";
358
+ };
359
+ readonly service_cidr_v6: {
360
+ readonly type: "string";
361
+ readonly description: "IPv6 service CIDR. Requires dual_stack.";
362
+ readonly example: "fd00:10:96::/112";
363
+ };
364
+ };
365
+ readonly additionalProperties: false;
366
+ readonly description: "Cluster networking configuration. Immutable after creation.";
290
367
  };
291
368
  };
292
- readonly required: readonly ["name", "tier"];
369
+ readonly required: readonly ["name", "tier", "region"];
293
370
  readonly additionalProperties: false;
294
371
  };
295
372
  export declare const ClusterJoinInformationSchema: {
@@ -311,6 +388,11 @@ export declare const ClusterJoinInformationSchema: {
311
388
  readonly description: "Cluster DNS IP address. This is the IP address of the kube-dns service in the cluster.";
312
389
  readonly example: "10.96.0.10";
313
390
  };
391
+ readonly pod_cidr: {
392
+ readonly type: "string";
393
+ readonly description: "Pod CIDR for the cluster. Used to configure iptables rules on nodes to prevent Tailscale routing loops.";
394
+ readonly example: "10.244.0.0/16";
395
+ };
314
396
  readonly auth_key: {
315
397
  readonly type: "string";
316
398
  readonly description: "Authentication key for the cluster.";
@@ -373,7 +455,7 @@ export declare const ClusterJoinInformationSchema: {
373
455
  readonly description: "OIDC Information for hosts to access to third party API's.";
374
456
  };
375
457
  };
376
- readonly required: readonly ["certificate_authority", "endpoint", "cluster_dns", "auth_key", "bootstrap_token", "versions", "third_party_api_access_config"];
458
+ readonly required: readonly ["certificate_authority", "endpoint", "cluster_dns", "pod_cidr", "auth_key", "bootstrap_token", "versions", "third_party_api_access_config"];
377
459
  readonly additionalProperties: false;
378
460
  };
379
461
  export declare const ClusterSchema: {
@@ -395,10 +477,77 @@ export declare const ClusterSchema: {
395
477
  };
396
478
  readonly region: {
397
479
  readonly type: "string";
398
- readonly description: "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.";
399
- readonly default: "staging-1a";
400
- readonly example: "northamerica-central-1a";
401
- readonly enum: readonly ["staging-1a", "northamerica-central-1", "europe-central-1a", "northamerica-central-1a"];
480
+ readonly description: "Cloudfleet control plane region. This field can not be updated after creation.";
481
+ readonly example: "europe-central-1a";
482
+ };
483
+ readonly networking: {
484
+ readonly type: "object";
485
+ readonly properties: {
486
+ readonly pod_cidr: {
487
+ readonly type: "string";
488
+ readonly description: "CIDR block for pod IPs.";
489
+ readonly example: "10.244.0.0/16";
490
+ };
491
+ readonly service_cidr: {
492
+ readonly type: "string";
493
+ readonly description: "CIDR block for service IPs.";
494
+ readonly example: "10.96.0.0/12";
495
+ };
496
+ readonly cluster_dns: {
497
+ readonly type: "string";
498
+ readonly description: "CoreDNS service IP.";
499
+ readonly example: "10.96.0.10";
500
+ };
501
+ readonly dual_stack: {
502
+ readonly type: "boolean";
503
+ readonly description: "Enable IPv4+IPv6 dual-stack networking.";
504
+ readonly example: false;
505
+ };
506
+ readonly pod_cidr_v6: {
507
+ readonly type: "string";
508
+ readonly description: "IPv6 pod CIDR. Requires dual_stack.";
509
+ readonly example: "fd00:10:244::/56";
510
+ };
511
+ readonly service_cidr_v6: {
512
+ readonly type: "string";
513
+ readonly description: "IPv6 service CIDR. Requires dual_stack.";
514
+ readonly example: "fd00:10:96::/112";
515
+ };
516
+ };
517
+ readonly additionalProperties: false;
518
+ readonly description: "Cluster networking configuration. Immutable after creation.";
519
+ };
520
+ readonly release_channel: {
521
+ readonly type: "string";
522
+ readonly description: "Release channel for the cluster's control plane.";
523
+ readonly example: "rapid";
524
+ readonly enum: readonly ["rapid", "stable", "extended"];
525
+ };
526
+ readonly features: {
527
+ readonly type: "object";
528
+ readonly properties: {
529
+ readonly gpu_sharing_strategy: {
530
+ readonly type: "string";
531
+ readonly description: "GPU sharing strategy.";
532
+ readonly example: "none";
533
+ readonly enum: readonly ["none", "mps", "time_slicing"];
534
+ };
535
+ readonly gpu_max_shared_clients_per_gpu: {
536
+ readonly type: "integer";
537
+ readonly minimum: 1;
538
+ readonly maximum: 48;
539
+ readonly description: "Maximum number of pods that may share a single GPU.";
540
+ readonly example: 10;
541
+ };
542
+ readonly cilium_socket_lb_host_namespace_only: {
543
+ readonly type: "boolean";
544
+ readonly description: "Restrict Cilium socket load-balancing to the host namespace. Required for the Tailscale operator and Istio.";
545
+ readonly example: false;
546
+ };
547
+ };
548
+ readonly required: readonly ["gpu_sharing_strategy", "gpu_max_shared_clients_per_gpu"];
549
+ readonly additionalProperties: false;
550
+ readonly description: "Cluster feature toggles.";
402
551
  };
403
552
  readonly id: {
404
553
  readonly type: "string";
@@ -408,16 +557,27 @@ export declare const ClusterSchema: {
408
557
  };
409
558
  readonly status: {
410
559
  readonly type: "string";
411
- readonly description: "Status of the cluster. When creating a new cluster, set to `active`. When deleting a clusters, set to `deleted`.";
412
- readonly example: "active";
413
- readonly enum: readonly ["active", "disabled", "deleted", "creating", "deployed", "failed", "updating"];
560
+ readonly description: "Status of the cluster.";
561
+ readonly example: "deployed";
562
+ readonly enum: readonly ["creating", "deployed", "updating", "disabled"];
414
563
  };
415
564
  readonly endpoint: {
416
565
  readonly anyOf: readonly [{
417
566
  readonly type: "string";
418
567
  readonly format: "uri";
419
- readonly description: "URL of the Kubernetes cluster control plane. This is the endpoint that kubectl uses to connect to the cluster.";
420
- readonly example: "https://2ae6557c-c61f-49c6-b4c1-a65473470a03.staging.cfke.cloudfleet.dev:6443";
568
+ readonly description: "URL signed by a public CA of the Kubernetes cluster control plane. This is the endpoint that kubectl uses to connect to the cluster.";
569
+ readonly example: "https://2ae6557c-c61f-49c6-b4c1-a65473470a03.staging.cfke.io";
570
+ }, {
571
+ readonly type: "string";
572
+ readonly enum: readonly [""];
573
+ }];
574
+ };
575
+ readonly endpoint_public: {
576
+ readonly anyOf: readonly [{
577
+ readonly type: "string";
578
+ readonly format: "uri";
579
+ readonly description: "Deprecated alias of `endpoint`; retained for backward compatibility.";
580
+ readonly example: "https://2ae6557c-c61f-49c6-b4c1-a65473470a03.staging.cfke.io";
421
581
  }, {
422
582
  readonly type: "string";
423
583
  readonly enum: readonly [""];
@@ -455,7 +615,7 @@ export declare const ClusterSchema: {
455
615
  readonly example: "1.x.x-cfke.x";
456
616
  };
457
617
  };
458
- readonly required: readonly ["name", "tier", "id", "status"];
618
+ readonly required: readonly ["name", "tier", "region", "id", "status"];
459
619
  readonly additionalProperties: false;
460
620
  };
461
621
  export declare const ClusterUpdateInputSchema: {
@@ -481,6 +641,38 @@ export declare const ClusterUpdateInputSchema: {
481
641
  readonly description: "Version of the kubernetes cluster.";
482
642
  readonly example: "1.x.x-cfke.x";
483
643
  };
644
+ readonly release_channel: {
645
+ readonly type: "string";
646
+ readonly description: "Release channel for the cluster's control plane.";
647
+ readonly example: "rapid";
648
+ readonly enum: readonly ["rapid", "stable", "extended"];
649
+ };
650
+ readonly features: {
651
+ readonly type: "object";
652
+ readonly properties: {
653
+ readonly gpu_sharing_strategy: {
654
+ readonly type: "string";
655
+ readonly description: "GPU sharing strategy.";
656
+ readonly example: "none";
657
+ readonly enum: readonly ["none", "mps", "time_slicing"];
658
+ };
659
+ readonly gpu_max_shared_clients_per_gpu: {
660
+ readonly type: "integer";
661
+ readonly minimum: 1;
662
+ readonly maximum: 48;
663
+ readonly description: "Maximum number of pods that may share a single GPU.";
664
+ readonly example: 10;
665
+ };
666
+ readonly cilium_socket_lb_host_namespace_only: {
667
+ readonly type: "boolean";
668
+ readonly description: "Restrict Cilium socket load-balancing to the host namespace. Required for the Tailscale operator and Istio.";
669
+ readonly example: false;
670
+ };
671
+ };
672
+ readonly required: readonly ["gpu_sharing_strategy", "gpu_max_shared_clients_per_gpu"];
673
+ readonly additionalProperties: false;
674
+ readonly description: "Cluster feature toggles.";
675
+ };
484
676
  };
485
677
  readonly required: readonly ["tier"];
486
678
  readonly additionalProperties: false;
@@ -492,13 +684,12 @@ export declare const FleetCreateInputSchema: {
492
684
  readonly type: "object";
493
685
  readonly properties: {
494
686
  readonly cpu: {
495
- readonly type: "number";
496
- readonly format: "float";
687
+ readonly type: "integer";
497
688
  readonly minimum: 0;
498
- readonly description: "CPU limit in cores.";
689
+ readonly maximum: 100000;
690
+ readonly description: "CPU limit in cores. Maximum 100,000.";
499
691
  };
500
692
  };
501
- readonly required: readonly ["cpu"];
502
693
  readonly additionalProperties: false;
503
694
  readonly description: "Limits define a set of bounds for provisioning capacity.";
504
695
  };
@@ -507,14 +698,15 @@ export declare const FleetCreateInputSchema: {
507
698
  readonly properties: {
508
699
  readonly enabled: {
509
700
  readonly type: "boolean";
510
- readonly default: true;
511
701
  };
512
702
  readonly project: {
513
703
  readonly type: "string";
514
- readonly description: "Project GCP Project id to deploy instances into";
704
+ readonly pattern: "^[a-z][a-z0-9-]{4,28}[a-z0-9]$";
705
+ readonly description: "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.";
706
+ readonly example: "my-cloudfleet-project";
515
707
  };
516
708
  };
517
- readonly required: readonly ["project"];
709
+ readonly required: readonly ["enabled"];
518
710
  readonly additionalProperties: false;
519
711
  };
520
712
  readonly hetzner: {
@@ -522,14 +714,16 @@ export declare const FleetCreateInputSchema: {
522
714
  readonly properties: {
523
715
  readonly enabled: {
524
716
  readonly type: "boolean";
525
- readonly default: true;
526
717
  };
527
718
  readonly apiKey: {
528
719
  readonly type: "string";
529
- readonly description: "Hetzner Cloud API key with read / write access";
720
+ readonly maxLength: 64;
721
+ readonly minLength: 64;
722
+ readonly pattern: "^[A-Za-z0-9]+$";
723
+ readonly description: "Hetzner Cloud API token with read / write access (64 alphanumeric characters). Omit this field to keep the existing value.";
530
724
  };
531
725
  };
532
- readonly required: readonly ["apiKey"];
726
+ readonly required: readonly ["enabled"];
533
727
  readonly additionalProperties: false;
534
728
  };
535
729
  readonly aws: {
@@ -537,16 +731,67 @@ export declare const FleetCreateInputSchema: {
537
731
  readonly properties: {
538
732
  readonly enabled: {
539
733
  readonly type: "boolean";
540
- readonly default: true;
541
734
  };
542
735
  readonly controllerRoleArn: {
543
736
  readonly type: "string";
544
- readonly description: "ControllerRoleArn is the AWS IAM role that Karpenter uses to manage resources.";
737
+ readonly pattern: "^arn:aws(-[a-z]+)*:iam::\\d{12}:role\\/[\\w+=,.@/-]+$";
738
+ readonly description: "AWS IAM role ARN that Karpenter uses to manage resources. Omit when AWS is disabled.";
739
+ readonly example: "arn:aws:iam::123456789012:role/Cloudfleet";
545
740
  };
546
741
  };
547
- readonly required: readonly ["controllerRoleArn"];
742
+ readonly required: readonly ["enabled"];
548
743
  readonly additionalProperties: false;
549
744
  };
745
+ readonly constraints: {
746
+ readonly type: "object";
747
+ readonly properties: {
748
+ readonly 'karpenter.sh/capacity-type': {
749
+ readonly type: "array";
750
+ readonly items: {
751
+ readonly type: "string";
752
+ readonly enum: readonly ["on-demand", "spot"];
753
+ };
754
+ readonly minItems: 1;
755
+ readonly description: "Allowed values for `karpenter.sh/capacity-type`.";
756
+ readonly default: readonly ["on-demand", "spot"];
757
+ };
758
+ readonly 'kubernetes.io/arch': {
759
+ readonly type: "array";
760
+ readonly items: {
761
+ readonly type: "string";
762
+ readonly enum: readonly ["amd64", "arm64"];
763
+ };
764
+ readonly minItems: 1;
765
+ readonly description: "Allowed values for `kubernetes.io/arch`.";
766
+ readonly default: readonly ["amd64"];
767
+ };
768
+ readonly 'cfke.io/instance-family': {
769
+ readonly type: "array";
770
+ readonly items: {
771
+ readonly type: "string";
772
+ readonly enum: readonly ["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"];
773
+ };
774
+ readonly description: "Allowed values for `cfke.io/instance-family`.";
775
+ };
776
+ readonly 'topology.kubernetes.io/region': {
777
+ readonly type: "array";
778
+ readonly items: {
779
+ readonly type: "string";
780
+ readonly enum: readonly ["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"];
781
+ };
782
+ readonly description: "Allowed values for `topology.kubernetes.io/region`.";
783
+ };
784
+ };
785
+ readonly additionalProperties: false;
786
+ readonly description: "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.";
787
+ };
788
+ readonly scalingProfile: {
789
+ readonly type: "string";
790
+ readonly description: "Controls scale-up / scale-down responsiveness. `aggressive` prioritizes cost-optimization. `conservative` prioritizes stability of the fleet.";
791
+ readonly default: "conservative";
792
+ readonly example: "conservative";
793
+ readonly enum: readonly ["aggressive", "conservative"];
794
+ };
550
795
  readonly id: {
551
796
  readonly type: "string";
552
797
  readonly maxLength: 63;
@@ -566,13 +811,12 @@ export declare const FleetSchema: {
566
811
  readonly type: "object";
567
812
  readonly properties: {
568
813
  readonly cpu: {
569
- readonly type: "number";
570
- readonly format: "float";
814
+ readonly type: "integer";
571
815
  readonly minimum: 0;
572
- readonly description: "CPU limit in cores.";
816
+ readonly maximum: 100000;
817
+ readonly description: "CPU limit in cores. Maximum 100,000.";
573
818
  };
574
819
  };
575
- readonly required: readonly ["cpu"];
576
820
  readonly additionalProperties: false;
577
821
  readonly description: "Limits define a set of bounds for provisioning capacity.";
578
822
  };
@@ -581,14 +825,15 @@ export declare const FleetSchema: {
581
825
  readonly properties: {
582
826
  readonly enabled: {
583
827
  readonly type: "boolean";
584
- readonly default: true;
585
828
  };
586
829
  readonly project: {
587
830
  readonly type: "string";
588
- readonly description: "Project GCP Project id to deploy instances into";
831
+ readonly pattern: "^[a-z][a-z0-9-]{4,28}[a-z0-9]$";
832
+ readonly description: "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.";
833
+ readonly example: "my-cloudfleet-project";
589
834
  };
590
835
  };
591
- readonly required: readonly ["project"];
836
+ readonly required: readonly ["enabled"];
592
837
  readonly additionalProperties: false;
593
838
  };
594
839
  readonly hetzner: {
@@ -596,14 +841,14 @@ export declare const FleetSchema: {
596
841
  readonly properties: {
597
842
  readonly enabled: {
598
843
  readonly type: "boolean";
599
- readonly default: true;
600
844
  };
601
845
  readonly apiKey: {
602
846
  readonly type: "string";
603
- readonly description: "Hetzner Cloud API key with read / write access";
847
+ readonly pattern: "^\\*{64}$";
848
+ readonly description: "Redacted Hetzner API token. Returned as 64 asterisks when a token is configured; omitted otherwise. The real value is never echoed by the API.";
604
849
  };
605
850
  };
606
- readonly required: readonly ["apiKey"];
851
+ readonly required: readonly ["enabled"];
607
852
  readonly additionalProperties: false;
608
853
  };
609
854
  readonly aws: {
@@ -611,16 +856,67 @@ export declare const FleetSchema: {
611
856
  readonly properties: {
612
857
  readonly enabled: {
613
858
  readonly type: "boolean";
614
- readonly default: true;
615
859
  };
616
860
  readonly controllerRoleArn: {
617
861
  readonly type: "string";
618
- readonly description: "ControllerRoleArn is the AWS IAM role that Karpenter uses to manage resources.";
862
+ readonly pattern: "^arn:aws(-[a-z]+)*:iam::\\d{12}:role\\/[\\w+=,.@/-]+$";
863
+ readonly description: "AWS IAM role ARN that Karpenter uses to manage resources. Omit when AWS is disabled.";
864
+ readonly example: "arn:aws:iam::123456789012:role/Cloudfleet";
619
865
  };
620
866
  };
621
- readonly required: readonly ["controllerRoleArn"];
867
+ readonly required: readonly ["enabled"];
622
868
  readonly additionalProperties: false;
623
869
  };
870
+ readonly constraints: {
871
+ readonly type: "object";
872
+ readonly properties: {
873
+ readonly 'karpenter.sh/capacity-type': {
874
+ readonly type: "array";
875
+ readonly items: {
876
+ readonly type: "string";
877
+ readonly enum: readonly ["on-demand", "spot"];
878
+ };
879
+ readonly minItems: 1;
880
+ readonly description: "Allowed values for `karpenter.sh/capacity-type`.";
881
+ readonly default: readonly ["on-demand", "spot"];
882
+ };
883
+ readonly 'kubernetes.io/arch': {
884
+ readonly type: "array";
885
+ readonly items: {
886
+ readonly type: "string";
887
+ readonly enum: readonly ["amd64", "arm64"];
888
+ };
889
+ readonly minItems: 1;
890
+ readonly description: "Allowed values for `kubernetes.io/arch`.";
891
+ readonly default: readonly ["amd64"];
892
+ };
893
+ readonly 'cfke.io/instance-family': {
894
+ readonly type: "array";
895
+ readonly items: {
896
+ readonly type: "string";
897
+ readonly enum: readonly ["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"];
898
+ };
899
+ readonly description: "Allowed values for `cfke.io/instance-family`.";
900
+ };
901
+ readonly 'topology.kubernetes.io/region': {
902
+ readonly type: "array";
903
+ readonly items: {
904
+ readonly type: "string";
905
+ readonly enum: readonly ["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"];
906
+ };
907
+ readonly description: "Allowed values for `topology.kubernetes.io/region`.";
908
+ };
909
+ };
910
+ readonly additionalProperties: false;
911
+ readonly description: "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.";
912
+ };
913
+ readonly scalingProfile: {
914
+ readonly type: "string";
915
+ readonly description: "Controls scale-up / scale-down responsiveness. `aggressive` prioritizes cost-optimization. `conservative` prioritizes stability of the fleet.";
916
+ readonly default: "conservative";
917
+ readonly example: "conservative";
918
+ readonly enum: readonly ["aggressive", "conservative"];
919
+ };
624
920
  readonly id: {
625
921
  readonly type: "string";
626
922
  readonly maxLength: 63;
@@ -629,8 +925,28 @@ export declare const FleetSchema: {
629
925
  readonly description: "Unique identifier of the kubernetes fleet.";
630
926
  readonly example: "new-clouds-fleet";
631
927
  };
928
+ readonly ready: {
929
+ readonly type: "boolean";
930
+ readonly description: "Indicates whether the fleet configuration is healthy.";
931
+ readonly example: true;
932
+ };
933
+ readonly status_message: {
934
+ readonly type: "string";
935
+ readonly description: "Human-readable reason the fleet is not ready. Present only when `ready` is false.";
936
+ readonly example: "Invalid provider permissions.";
937
+ };
938
+ readonly created_at: {
939
+ readonly type: "string";
940
+ readonly description: "Creation date and time of the fleet.";
941
+ readonly example: "2024-09-12T09:11:27Z";
942
+ };
943
+ readonly updated_at: {
944
+ readonly type: "string";
945
+ readonly description: "Date and time the fleet was last updated.";
946
+ readonly example: "2024-09-12T09:11:27Z";
947
+ };
632
948
  };
633
- readonly required: readonly ["id"];
949
+ readonly required: readonly ["scalingProfile", "id", "ready", "created_at", "updated_at"];
634
950
  readonly additionalProperties: false;
635
951
  };
636
952
  export declare const FleetUpdateInputSchema: {
@@ -640,13 +956,12 @@ export declare const FleetUpdateInputSchema: {
640
956
  readonly type: "object";
641
957
  readonly properties: {
642
958
  readonly cpu: {
643
- readonly type: "number";
644
- readonly format: "float";
959
+ readonly type: "integer";
645
960
  readonly minimum: 0;
646
- readonly description: "CPU limit in cores.";
961
+ readonly maximum: 100000;
962
+ readonly description: "CPU limit in cores. Maximum 100,000.";
647
963
  };
648
964
  };
649
- readonly required: readonly ["cpu"];
650
965
  readonly additionalProperties: false;
651
966
  readonly description: "Limits define a set of bounds for provisioning capacity.";
652
967
  };
@@ -655,14 +970,15 @@ export declare const FleetUpdateInputSchema: {
655
970
  readonly properties: {
656
971
  readonly enabled: {
657
972
  readonly type: "boolean";
658
- readonly default: true;
659
973
  };
660
974
  readonly project: {
661
975
  readonly type: "string";
662
- readonly description: "Project GCP Project id to deploy instances into";
976
+ readonly pattern: "^[a-z][a-z0-9-]{4,28}[a-z0-9]$";
977
+ readonly description: "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.";
978
+ readonly example: "my-cloudfleet-project";
663
979
  };
664
980
  };
665
- readonly required: readonly ["project"];
981
+ readonly required: readonly ["enabled"];
666
982
  readonly additionalProperties: false;
667
983
  };
668
984
  readonly hetzner: {
@@ -670,14 +986,16 @@ export declare const FleetUpdateInputSchema: {
670
986
  readonly properties: {
671
987
  readonly enabled: {
672
988
  readonly type: "boolean";
673
- readonly default: true;
674
989
  };
675
990
  readonly apiKey: {
676
991
  readonly type: "string";
677
- readonly description: "Hetzner Cloud API key with read / write access";
992
+ readonly maxLength: 64;
993
+ readonly minLength: 64;
994
+ readonly pattern: "^[A-Za-z0-9]+$";
995
+ readonly description: "Hetzner Cloud API token with read / write access (64 alphanumeric characters). Omit this field to keep the existing value.";
678
996
  };
679
997
  };
680
- readonly required: readonly ["apiKey"];
998
+ readonly required: readonly ["enabled"];
681
999
  readonly additionalProperties: false;
682
1000
  };
683
1001
  readonly aws: {
@@ -685,17 +1003,86 @@ export declare const FleetUpdateInputSchema: {
685
1003
  readonly properties: {
686
1004
  readonly enabled: {
687
1005
  readonly type: "boolean";
688
- readonly default: true;
689
1006
  };
690
1007
  readonly controllerRoleArn: {
691
1008
  readonly type: "string";
692
- readonly description: "ControllerRoleArn is the AWS IAM role that Karpenter uses to manage resources.";
1009
+ readonly pattern: "^arn:aws(-[a-z]+)*:iam::\\d{12}:role\\/[\\w+=,.@/-]+$";
1010
+ readonly description: "AWS IAM role ARN that Karpenter uses to manage resources. Omit when AWS is disabled.";
1011
+ readonly example: "arn:aws:iam::123456789012:role/Cloudfleet";
693
1012
  };
694
1013
  };
695
- readonly required: readonly ["controllerRoleArn"];
1014
+ readonly required: readonly ["enabled"];
696
1015
  readonly additionalProperties: false;
697
1016
  };
1017
+ readonly constraints: {
1018
+ readonly type: "object";
1019
+ readonly properties: {
1020
+ readonly 'karpenter.sh/capacity-type': {
1021
+ readonly type: "array";
1022
+ readonly items: {
1023
+ readonly type: "string";
1024
+ readonly enum: readonly ["on-demand", "spot"];
1025
+ };
1026
+ readonly minItems: 1;
1027
+ readonly description: "Allowed values for `karpenter.sh/capacity-type`.";
1028
+ };
1029
+ readonly 'kubernetes.io/arch': {
1030
+ readonly type: "array";
1031
+ readonly items: {
1032
+ readonly type: "string";
1033
+ readonly enum: readonly ["amd64", "arm64"];
1034
+ };
1035
+ readonly minItems: 1;
1036
+ readonly description: "Allowed values for `kubernetes.io/arch`.";
1037
+ };
1038
+ readonly 'cfke.io/instance-family': {
1039
+ readonly type: "array";
1040
+ readonly items: {
1041
+ readonly type: "string";
1042
+ readonly enum: readonly ["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"];
1043
+ };
1044
+ readonly description: "Allowed values for `cfke.io/instance-family`.";
1045
+ };
1046
+ readonly 'topology.kubernetes.io/region': {
1047
+ readonly type: "array";
1048
+ readonly items: {
1049
+ readonly type: "string";
1050
+ readonly enum: readonly ["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"];
1051
+ };
1052
+ readonly description: "Allowed values for `topology.kubernetes.io/region`.";
1053
+ };
1054
+ };
1055
+ readonly additionalProperties: false;
1056
+ readonly description: "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.";
1057
+ };
1058
+ readonly scalingProfile: {
1059
+ readonly type: "string";
1060
+ readonly description: "Controls scale-up / scale-down responsiveness. `aggressive` prioritizes cost-optimization. `conservative` prioritizes stability of the fleet.";
1061
+ readonly example: "conservative";
1062
+ readonly enum: readonly ["aggressive", "conservative"];
1063
+ };
1064
+ };
1065
+ readonly required: readonly ["scalingProfile"];
1066
+ readonly additionalProperties: false;
1067
+ };
1068
+ export declare const InviteCreateInputSchema: {
1069
+ readonly type: "object";
1070
+ readonly properties: {
1071
+ readonly email: {
1072
+ readonly type: "string";
1073
+ readonly format: "email";
1074
+ readonly description: "Email address of the user to invite.";
1075
+ readonly example: "email@example.com";
1076
+ };
1077
+ readonly role: {
1078
+ readonly type: "string";
1079
+ readonly description: "Role the invited user will be assigned on redemption. Can be 'Administrator' or 'User'.";
1080
+ readonly default: "User";
1081
+ readonly example: "User";
1082
+ readonly enum: readonly ["Administrator", "User"];
1083
+ };
698
1084
  };
1085
+ readonly required: readonly ["email"];
699
1086
  readonly additionalProperties: false;
700
1087
  };
701
1088
  export declare const InviteSchema: {
@@ -729,6 +1116,13 @@ export declare const InviteSchema: {
729
1116
  readonly description: "Generated unique invite code.";
730
1117
  readonly example: "7kUZnH7nnKUFfvc4NK2KQF";
731
1118
  };
1119
+ readonly role: {
1120
+ readonly type: "string";
1121
+ readonly description: "Role the invited user will be assigned on redemption. Can be 'Administrator' or 'User'.";
1122
+ readonly default: "User";
1123
+ readonly example: "User";
1124
+ readonly enum: readonly ["Administrator", "User"];
1125
+ };
732
1126
  };
733
1127
  readonly required: readonly ["date_created"];
734
1128
  readonly additionalProperties: false;
@@ -926,6 +1320,12 @@ export declare const MarketplaceListingSchema: {
926
1320
  export declare const OrganizationCreateInputSchema: {
927
1321
  readonly type: "object";
928
1322
  readonly properties: {
1323
+ readonly type: {
1324
+ readonly type: "string";
1325
+ readonly description: "Type of the organization. `business` for legal entities, `personal` for individuals.";
1326
+ readonly example: "business";
1327
+ readonly enum: readonly ["business", "personal"];
1328
+ };
929
1329
  readonly email: {
930
1330
  readonly type: "string";
931
1331
  readonly format: "email";
@@ -934,11 +1334,13 @@ export declare const OrganizationCreateInputSchema: {
934
1334
  };
935
1335
  readonly first_name: {
936
1336
  readonly type: "string";
1337
+ readonly minLength: 1;
937
1338
  readonly description: "First name of the billing contact person.";
938
1339
  readonly example: "John";
939
1340
  };
940
1341
  readonly last_name: {
941
1342
  readonly type: "string";
1343
+ readonly minLength: 1;
942
1344
  readonly description: "Last name of the billing contact person.";
943
1345
  readonly example: "Doe";
944
1346
  };
@@ -956,7 +1358,19 @@ export declare const OrganizationCreateInputSchema: {
956
1358
  readonly description: "Password for the root account. Must be at least 8 characters long and contain at least one uppercase letter, one lowercase letter, one number and one special character.";
957
1359
  };
958
1360
  };
959
- readonly required: readonly ["email", "first_name", "last_name", "company_name", "password"];
1361
+ readonly required: readonly ["type", "email", "first_name", "last_name", "company_name", "password"];
1362
+ readonly additionalProperties: false;
1363
+ };
1364
+ export declare const OrganizationCreateOutputSchema: {
1365
+ readonly type: "object";
1366
+ readonly properties: {
1367
+ readonly id: {
1368
+ readonly type: "string";
1369
+ readonly description: "Unique identifier of the newly created organization. Generated by the API and safe to use for client-side tracking immediately.";
1370
+ readonly example: "organization-id";
1371
+ };
1372
+ };
1373
+ readonly required: readonly ["id"];
960
1374
  readonly additionalProperties: false;
961
1375
  };
962
1376
  export declare const OrganizationSchema: {
@@ -975,6 +1389,12 @@ export declare const OrganizationSchema: {
975
1389
  readonly description: "Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.";
976
1390
  readonly example: "ACME Corp.";
977
1391
  };
1392
+ readonly type: {
1393
+ readonly type: "string";
1394
+ readonly description: "Type of the organization. `business` for legal entities, `personal` for individuals.";
1395
+ readonly example: "business";
1396
+ readonly enum: readonly ["business", "personal"];
1397
+ };
978
1398
  readonly date_created: {
979
1399
  readonly type: "string";
980
1400
  readonly format: "date-time";
@@ -1025,7 +1445,7 @@ export declare const OrganizationSchema: {
1025
1445
  readonly type: "array";
1026
1446
  readonly items: {
1027
1447
  readonly type: "string";
1028
- readonly example: "northamerica-central-1";
1448
+ readonly example: "northamerica-central-1a";
1029
1449
  };
1030
1450
  readonly minItems: 1;
1031
1451
  readonly description: "List of Cloudfleet control plane regions available for the organization.";
@@ -1068,8 +1488,14 @@ export declare const OrganizationSchema: {
1068
1488
  readonly description: "Status of the organization. Can be `active` or `closed`, or `suspended`.";
1069
1489
  readonly enum: readonly ["active", "closed", "suspended"];
1070
1490
  };
1491
+ readonly verification: {
1492
+ readonly type: "string";
1493
+ readonly description: "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.";
1494
+ readonly example: "verified";
1495
+ readonly enum: readonly ["none", "submitted", "verified"];
1496
+ };
1071
1497
  };
1072
- readonly required: readonly ["id", "date_created", "quota", "status"];
1498
+ readonly required: readonly ["id", "type", "date_created", "quota", "status", "verification"];
1073
1499
  readonly additionalProperties: false;
1074
1500
  };
1075
1501
  export declare const PaymentMethodSchema: {
@@ -1077,26 +1503,19 @@ export declare const PaymentMethodSchema: {
1077
1503
  readonly properties: {
1078
1504
  readonly id: {
1079
1505
  readonly type: "string";
1080
- readonly format: "uuid";
1081
- readonly description: "Unique identifier of the organization. UUID v4 string in canonical form.";
1082
- readonly example: "e94d30ec-a2dd-4dcb-832c-ac2be144ba91";
1083
- };
1084
- readonly setup: {
1085
- readonly type: "boolean";
1086
- readonly description: "Whether organization payment method was set up and ready to use for payments.";
1087
- readonly example: true;
1506
+ readonly description: "Payment method identifier. Stripe payment method id for cards/SEPA; the constant `bank_transfer` for the invoice/bank-transfer method. Used to set as default or delete the payment method.";
1507
+ readonly example: "pm_1MtwBwLkdIwHu7ix28a3tqPa";
1088
1508
  };
1089
1509
  readonly type: {
1090
1510
  readonly type: "string";
1091
- readonly nullable: true;
1092
- readonly description: "Payment method type type. Only `card` payments supported at the moment.";
1511
+ readonly description: "Payment method type. `card`, `sepa_debit` for SEPA Direct Debit (business accounts only), or `bank_transfer` for paying invoices by bank transfer.";
1093
1512
  readonly example: "card";
1094
- readonly enum: readonly ["card"];
1513
+ readonly enum: readonly ["card", "sepa_debit", "bank_transfer"];
1095
1514
  };
1096
1515
  readonly last4: {
1097
1516
  readonly type: "string";
1098
1517
  readonly nullable: true;
1099
- readonly description: "Last 4 digits of the payment card number.";
1518
+ readonly description: "Last 4 digits of the payment card number, of the bank account (IBAN) for SEPA Direct Debit, or of the destination IBAN for bank transfer.";
1100
1519
  readonly example: "4242";
1101
1520
  };
1102
1521
  readonly exp_month: {
@@ -1104,25 +1523,46 @@ export declare const PaymentMethodSchema: {
1104
1523
  readonly minimum: 1;
1105
1524
  readonly maximum: 12;
1106
1525
  readonly nullable: true;
1107
- readonly description: "Two-digit number representing the card's expiration month.";
1108
- readonly example: "12";
1526
+ readonly description: "Two-digit number representing the card's expiration month. Null for SEPA Direct Debit and bank transfer.";
1527
+ readonly example: 12;
1109
1528
  };
1110
1529
  readonly exp_year: {
1111
1530
  readonly type: "integer";
1112
- readonly minimum: 2024;
1113
1531
  readonly nullable: true;
1114
- readonly description: "Four-digit number representing the card's expiration year.";
1115
- readonly example: "2028";
1532
+ readonly description: "Four-digit number representing the card's expiration year. May be in the past for an expired card still on file. Null for SEPA Direct Debit and bank transfer.";
1533
+ readonly example: 2028;
1116
1534
  };
1117
1535
  readonly brand: {
1118
1536
  readonly type: "string";
1119
1537
  readonly nullable: true;
1120
- readonly description: "Payment card brand. Can be `amex`, `diners`, `discover`, `eftpos_au`, `jcb`, `mastercard`, `unionpay`, `visa`, or `unknown`.";
1538
+ readonly description: "Payment card brand as reported by Stripe, e.g. `visa`, `mastercard`, `amex`, `cartes_bancaires`, or `unknown`. Null for SEPA Direct Debit and bank transfer.";
1121
1539
  readonly example: "visa";
1122
- readonly enum: readonly ["amex", "diners", "discover", "eftpos_au", "jcb", "mastercard", "unionpay", "visa", "unknown"];
1540
+ };
1541
+ readonly iban: {
1542
+ readonly type: "string";
1543
+ readonly nullable: true;
1544
+ readonly description: "Full destination IBAN to send bank transfers to. Set only for `bank_transfer`; null otherwise. This is Cloudfleet's virtual receiving account, shown in full so the customer can pay into it.";
1545
+ readonly example: "DE11243015658023127510";
1546
+ };
1547
+ readonly bic: {
1548
+ readonly type: "string";
1549
+ readonly nullable: true;
1550
+ readonly description: "BIC/SWIFT of the destination bank for bank transfers. Set only for `bank_transfer`; null otherwise.";
1551
+ readonly example: "SOGEDEFFXXX";
1552
+ };
1553
+ readonly account_holder_name: {
1554
+ readonly type: "string";
1555
+ readonly nullable: true;
1556
+ readonly description: "Account holder name of the destination bank account for bank transfers. Set only for `bank_transfer`; null otherwise.";
1557
+ readonly example: "Cloudfleet GmbH";
1558
+ };
1559
+ readonly is_default: {
1560
+ readonly type: "boolean";
1561
+ readonly description: "Whether this payment method is the default used for invoices and active subscriptions. Always false for `bank_transfer` (it cannot be a Stripe default payment method).";
1562
+ readonly example: true;
1123
1563
  };
1124
1564
  };
1125
- readonly required: readonly ["id", "setup", "type", "last4", "exp_month", "exp_year", "brand"];
1565
+ readonly required: readonly ["id", "type", "last4", "exp_month", "exp_year", "brand", "iban", "bic", "account_holder_name", "is_default"];
1126
1566
  readonly additionalProperties: false;
1127
1567
  };
1128
1568
  export declare const PlatformQuotaSchema: {
@@ -1169,7 +1609,7 @@ export declare const PlatformQuotaSchema: {
1169
1609
  readonly type: "array";
1170
1610
  readonly items: {
1171
1611
  readonly type: "string";
1172
- readonly example: "northamerica-central-1";
1612
+ readonly example: "northamerica-central-1a";
1173
1613
  };
1174
1614
  readonly minItems: 1;
1175
1615
  readonly description: "List of Cloudfleet control plane regions available for the organization.";
@@ -2084,18 +2524,6 @@ export declare const UserCreateInputSchema: {
2084
2524
  readonly minLength: 8;
2085
2525
  readonly description: "User password. Must be at least 8 characters long.";
2086
2526
  };
2087
- readonly status: {
2088
- readonly type: "string";
2089
- readonly description: "Status of the user. Can be `active` or `inactive`. Inactive users cannot log in or manage organization resources.";
2090
- readonly example: "active";
2091
- readonly enum: readonly ["active", "inactive"];
2092
- };
2093
- readonly role: {
2094
- readonly type: "string";
2095
- readonly description: "User role. Can be 'Administrator', 'User'.";
2096
- readonly example: "User";
2097
- readonly enum: readonly ["Administrator", "User"];
2098
- };
2099
2527
  };
2100
2528
  readonly required: readonly ["email", "first_name", "last_name", "code", "password"];
2101
2529
  readonly additionalProperties: false;