@cloudfleet/sdk 0.0.1-82e92ad → 0.0.1-84adc67

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,16 @@ 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 signed by the private CA of the Kubernetes cluster control plane. This is the endpoint that kubectl uses to connect to the cluster. (Deprecated, use endpoint_public instead)";
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";
421
570
  }, {
422
571
  readonly type: "string";
423
572
  readonly enum: readonly [""];
@@ -427,7 +576,7 @@ export declare const ClusterSchema: {
427
576
  readonly anyOf: readonly [{
428
577
  readonly type: "string";
429
578
  readonly format: "uri";
430
- 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.";
579
+ readonly description: "Deprecated alias of `endpoint`; retained for backward compatibility.";
431
580
  readonly example: "https://2ae6557c-c61f-49c6-b4c1-a65473470a03.staging.cfke.io";
432
581
  }, {
433
582
  readonly type: "string";
@@ -466,7 +615,7 @@ export declare const ClusterSchema: {
466
615
  readonly example: "1.x.x-cfke.x";
467
616
  };
468
617
  };
469
- readonly required: readonly ["name", "tier", "id", "status"];
618
+ readonly required: readonly ["name", "tier", "region", "id", "status"];
470
619
  readonly additionalProperties: false;
471
620
  };
472
621
  export declare const ClusterUpdateInputSchema: {
@@ -492,6 +641,38 @@ export declare const ClusterUpdateInputSchema: {
492
641
  readonly description: "Version of the kubernetes cluster.";
493
642
  readonly example: "1.x.x-cfke.x";
494
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
+ };
495
676
  };
496
677
  readonly required: readonly ["tier"];
497
678
  readonly additionalProperties: false;
@@ -503,13 +684,12 @@ export declare const FleetCreateInputSchema: {
503
684
  readonly type: "object";
504
685
  readonly properties: {
505
686
  readonly cpu: {
506
- readonly type: "number";
507
- readonly format: "float";
687
+ readonly type: "integer";
508
688
  readonly minimum: 0;
509
- readonly description: "CPU limit in cores.";
689
+ readonly maximum: 100000;
690
+ readonly description: "CPU limit in cores. Maximum 100,000.";
510
691
  };
511
692
  };
512
- readonly required: readonly ["cpu"];
513
693
  readonly additionalProperties: false;
514
694
  readonly description: "Limits define a set of bounds for provisioning capacity.";
515
695
  };
@@ -518,14 +698,15 @@ export declare const FleetCreateInputSchema: {
518
698
  readonly properties: {
519
699
  readonly enabled: {
520
700
  readonly type: "boolean";
521
- readonly default: true;
522
701
  };
523
702
  readonly project: {
524
703
  readonly type: "string";
525
- 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";
526
707
  };
527
708
  };
528
- readonly required: readonly ["project"];
709
+ readonly required: readonly ["enabled"];
529
710
  readonly additionalProperties: false;
530
711
  };
531
712
  readonly hetzner: {
@@ -533,14 +714,16 @@ export declare const FleetCreateInputSchema: {
533
714
  readonly properties: {
534
715
  readonly enabled: {
535
716
  readonly type: "boolean";
536
- readonly default: true;
537
717
  };
538
718
  readonly apiKey: {
539
719
  readonly type: "string";
540
- 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.";
541
724
  };
542
725
  };
543
- readonly required: readonly ["apiKey"];
726
+ readonly required: readonly ["enabled"];
544
727
  readonly additionalProperties: false;
545
728
  };
546
729
  readonly aws: {
@@ -548,15 +731,66 @@ export declare const FleetCreateInputSchema: {
548
731
  readonly properties: {
549
732
  readonly enabled: {
550
733
  readonly type: "boolean";
551
- readonly default: true;
552
734
  };
553
735
  readonly controllerRoleArn: {
554
736
  readonly type: "string";
555
- 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";
740
+ };
741
+ };
742
+ readonly required: readonly ["enabled"];
743
+ readonly additionalProperties: false;
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`.";
556
783
  };
557
784
  };
558
- readonly required: readonly ["controllerRoleArn"];
559
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"];
560
794
  };
561
795
  readonly id: {
562
796
  readonly type: "string";
@@ -577,13 +811,12 @@ export declare const FleetSchema: {
577
811
  readonly type: "object";
578
812
  readonly properties: {
579
813
  readonly cpu: {
580
- readonly type: "number";
581
- readonly format: "float";
814
+ readonly type: "integer";
582
815
  readonly minimum: 0;
583
- readonly description: "CPU limit in cores.";
816
+ readonly maximum: 100000;
817
+ readonly description: "CPU limit in cores. Maximum 100,000.";
584
818
  };
585
819
  };
586
- readonly required: readonly ["cpu"];
587
820
  readonly additionalProperties: false;
588
821
  readonly description: "Limits define a set of bounds for provisioning capacity.";
589
822
  };
@@ -592,14 +825,15 @@ export declare const FleetSchema: {
592
825
  readonly properties: {
593
826
  readonly enabled: {
594
827
  readonly type: "boolean";
595
- readonly default: true;
596
828
  };
597
829
  readonly project: {
598
830
  readonly type: "string";
599
- 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";
600
834
  };
601
835
  };
602
- readonly required: readonly ["project"];
836
+ readonly required: readonly ["enabled"];
603
837
  readonly additionalProperties: false;
604
838
  };
605
839
  readonly hetzner: {
@@ -607,14 +841,14 @@ export declare const FleetSchema: {
607
841
  readonly properties: {
608
842
  readonly enabled: {
609
843
  readonly type: "boolean";
610
- readonly default: true;
611
844
  };
612
845
  readonly apiKey: {
613
846
  readonly type: "string";
614
- 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.";
615
849
  };
616
850
  };
617
- readonly required: readonly ["apiKey"];
851
+ readonly required: readonly ["enabled"];
618
852
  readonly additionalProperties: false;
619
853
  };
620
854
  readonly aws: {
@@ -622,15 +856,66 @@ export declare const FleetSchema: {
622
856
  readonly properties: {
623
857
  readonly enabled: {
624
858
  readonly type: "boolean";
625
- readonly default: true;
626
859
  };
627
860
  readonly controllerRoleArn: {
628
861
  readonly type: "string";
629
- 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";
865
+ };
866
+ };
867
+ readonly required: readonly ["enabled"];
868
+ readonly additionalProperties: false;
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`.";
630
908
  };
631
909
  };
632
- readonly required: readonly ["controllerRoleArn"];
633
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"];
634
919
  };
635
920
  readonly id: {
636
921
  readonly type: "string";
@@ -640,8 +925,28 @@ export declare const FleetSchema: {
640
925
  readonly description: "Unique identifier of the kubernetes fleet.";
641
926
  readonly example: "new-clouds-fleet";
642
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
+ };
643
948
  };
644
- readonly required: readonly ["id"];
949
+ readonly required: readonly ["scalingProfile", "id", "ready", "created_at", "updated_at"];
645
950
  readonly additionalProperties: false;
646
951
  };
647
952
  export declare const FleetUpdateInputSchema: {
@@ -651,13 +956,12 @@ export declare const FleetUpdateInputSchema: {
651
956
  readonly type: "object";
652
957
  readonly properties: {
653
958
  readonly cpu: {
654
- readonly type: "number";
655
- readonly format: "float";
959
+ readonly type: "integer";
656
960
  readonly minimum: 0;
657
- readonly description: "CPU limit in cores.";
961
+ readonly maximum: 100000;
962
+ readonly description: "CPU limit in cores. Maximum 100,000.";
658
963
  };
659
964
  };
660
- readonly required: readonly ["cpu"];
661
965
  readonly additionalProperties: false;
662
966
  readonly description: "Limits define a set of bounds for provisioning capacity.";
663
967
  };
@@ -666,14 +970,15 @@ export declare const FleetUpdateInputSchema: {
666
970
  readonly properties: {
667
971
  readonly enabled: {
668
972
  readonly type: "boolean";
669
- readonly default: true;
670
973
  };
671
974
  readonly project: {
672
975
  readonly type: "string";
673
- 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";
674
979
  };
675
980
  };
676
- readonly required: readonly ["project"];
981
+ readonly required: readonly ["enabled"];
677
982
  readonly additionalProperties: false;
678
983
  };
679
984
  readonly hetzner: {
@@ -681,14 +986,16 @@ export declare const FleetUpdateInputSchema: {
681
986
  readonly properties: {
682
987
  readonly enabled: {
683
988
  readonly type: "boolean";
684
- readonly default: true;
685
989
  };
686
990
  readonly apiKey: {
687
991
  readonly type: "string";
688
- 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.";
689
996
  };
690
997
  };
691
- readonly required: readonly ["apiKey"];
998
+ readonly required: readonly ["enabled"];
692
999
  readonly additionalProperties: false;
693
1000
  };
694
1001
  readonly aws: {
@@ -696,17 +1003,86 @@ export declare const FleetUpdateInputSchema: {
696
1003
  readonly properties: {
697
1004
  readonly enabled: {
698
1005
  readonly type: "boolean";
699
- readonly default: true;
700
1006
  };
701
1007
  readonly controllerRoleArn: {
702
1008
  readonly type: "string";
703
- 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";
704
1012
  };
705
1013
  };
706
- readonly required: readonly ["controllerRoleArn"];
1014
+ readonly required: readonly ["enabled"];
707
1015
  readonly additionalProperties: false;
708
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
+ };
709
1084
  };
1085
+ readonly required: readonly ["email"];
710
1086
  readonly additionalProperties: false;
711
1087
  };
712
1088
  export declare const InviteSchema: {
@@ -740,6 +1116,13 @@ export declare const InviteSchema: {
740
1116
  readonly description: "Generated unique invite code.";
741
1117
  readonly example: "7kUZnH7nnKUFfvc4NK2KQF";
742
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
+ };
743
1126
  };
744
1127
  readonly required: readonly ["date_created"];
745
1128
  readonly additionalProperties: false;
@@ -937,6 +1320,12 @@ export declare const MarketplaceListingSchema: {
937
1320
  export declare const OrganizationCreateInputSchema: {
938
1321
  readonly type: "object";
939
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
+ };
940
1329
  readonly email: {
941
1330
  readonly type: "string";
942
1331
  readonly format: "email";
@@ -945,11 +1334,13 @@ export declare const OrganizationCreateInputSchema: {
945
1334
  };
946
1335
  readonly first_name: {
947
1336
  readonly type: "string";
1337
+ readonly minLength: 1;
948
1338
  readonly description: "First name of the billing contact person.";
949
1339
  readonly example: "John";
950
1340
  };
951
1341
  readonly last_name: {
952
1342
  readonly type: "string";
1343
+ readonly minLength: 1;
953
1344
  readonly description: "Last name of the billing contact person.";
954
1345
  readonly example: "Doe";
955
1346
  };
@@ -967,7 +1358,19 @@ export declare const OrganizationCreateInputSchema: {
967
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.";
968
1359
  };
969
1360
  };
970
- 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"];
971
1374
  readonly additionalProperties: false;
972
1375
  };
973
1376
  export declare const OrganizationSchema: {
@@ -986,6 +1389,12 @@ export declare const OrganizationSchema: {
986
1389
  readonly description: "Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.";
987
1390
  readonly example: "ACME Corp.";
988
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
+ };
989
1398
  readonly date_created: {
990
1399
  readonly type: "string";
991
1400
  readonly format: "date-time";
@@ -1036,7 +1445,7 @@ export declare const OrganizationSchema: {
1036
1445
  readonly type: "array";
1037
1446
  readonly items: {
1038
1447
  readonly type: "string";
1039
- readonly example: "northamerica-central-1";
1448
+ readonly example: "northamerica-central-1a";
1040
1449
  };
1041
1450
  readonly minItems: 1;
1042
1451
  readonly description: "List of Cloudfleet control plane regions available for the organization.";
@@ -1079,8 +1488,14 @@ export declare const OrganizationSchema: {
1079
1488
  readonly description: "Status of the organization. Can be `active` or `closed`, or `suspended`.";
1080
1489
  readonly enum: readonly ["active", "closed", "suspended"];
1081
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
+ };
1082
1497
  };
1083
- readonly required: readonly ["id", "date_created", "quota", "status"];
1498
+ readonly required: readonly ["id", "type", "date_created", "quota", "status", "verification"];
1084
1499
  readonly additionalProperties: false;
1085
1500
  };
1086
1501
  export declare const PaymentMethodSchema: {
@@ -1088,26 +1503,19 @@ export declare const PaymentMethodSchema: {
1088
1503
  readonly properties: {
1089
1504
  readonly id: {
1090
1505
  readonly type: "string";
1091
- readonly format: "uuid";
1092
- readonly description: "Unique identifier of the organization. UUID v4 string in canonical form.";
1093
- readonly example: "e94d30ec-a2dd-4dcb-832c-ac2be144ba91";
1094
- };
1095
- readonly setup: {
1096
- readonly type: "boolean";
1097
- readonly description: "Whether organization payment method was set up and ready to use for payments.";
1098
- 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";
1099
1508
  };
1100
1509
  readonly type: {
1101
1510
  readonly type: "string";
1102
- readonly nullable: true;
1103
- 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.";
1104
1512
  readonly example: "card";
1105
- readonly enum: readonly ["card"];
1513
+ readonly enum: readonly ["card", "sepa_debit", "bank_transfer"];
1106
1514
  };
1107
1515
  readonly last4: {
1108
1516
  readonly type: "string";
1109
1517
  readonly nullable: true;
1110
- 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.";
1111
1519
  readonly example: "4242";
1112
1520
  };
1113
1521
  readonly exp_month: {
@@ -1115,25 +1523,46 @@ export declare const PaymentMethodSchema: {
1115
1523
  readonly minimum: 1;
1116
1524
  readonly maximum: 12;
1117
1525
  readonly nullable: true;
1118
- readonly description: "Two-digit number representing the card's expiration month.";
1119
- 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;
1120
1528
  };
1121
1529
  readonly exp_year: {
1122
1530
  readonly type: "integer";
1123
- readonly minimum: 2024;
1124
1531
  readonly nullable: true;
1125
- readonly description: "Four-digit number representing the card's expiration year.";
1126
- 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;
1127
1534
  };
1128
1535
  readonly brand: {
1129
1536
  readonly type: "string";
1130
1537
  readonly nullable: true;
1131
- 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.";
1132
1539
  readonly example: "visa";
1133
- 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;
1134
1563
  };
1135
1564
  };
1136
- 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"];
1137
1566
  readonly additionalProperties: false;
1138
1567
  };
1139
1568
  export declare const PlatformQuotaSchema: {
@@ -1180,7 +1609,7 @@ export declare const PlatformQuotaSchema: {
1180
1609
  readonly type: "array";
1181
1610
  readonly items: {
1182
1611
  readonly type: "string";
1183
- readonly example: "northamerica-central-1";
1612
+ readonly example: "northamerica-central-1a";
1184
1613
  };
1185
1614
  readonly minItems: 1;
1186
1615
  readonly description: "List of Cloudfleet control plane regions available for the organization.";
@@ -2095,18 +2524,6 @@ export declare const UserCreateInputSchema: {
2095
2524
  readonly minLength: 8;
2096
2525
  readonly description: "User password. Must be at least 8 characters long.";
2097
2526
  };
2098
- readonly status: {
2099
- readonly type: "string";
2100
- readonly description: "Status of the user. Can be `active` or `inactive`. Inactive users cannot log in or manage organization resources.";
2101
- readonly example: "active";
2102
- readonly enum: readonly ["active", "inactive"];
2103
- };
2104
- readonly role: {
2105
- readonly type: "string";
2106
- readonly description: "User role. Can be 'Administrator', 'User'.";
2107
- readonly example: "User";
2108
- readonly enum: readonly ["Administrator", "User"];
2109
- };
2110
2527
  };
2111
2528
  readonly required: readonly ["email", "first_name", "last_name", "code", "password"];
2112
2529
  readonly additionalProperties: false;