@cloudfleet/sdk 0.0.1-7a6b7de → 0.0.1-7aa2bb2

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: {
@@ -311,6 +317,11 @@ export declare const ClusterJoinInformationSchema: {
311
317
  readonly description: "Cluster DNS IP address. This is the IP address of the kube-dns service in the cluster.";
312
318
  readonly example: "10.96.0.10";
313
319
  };
320
+ readonly pod_cidr: {
321
+ readonly type: "string";
322
+ readonly description: "Pod CIDR for the cluster. Used to configure iptables rules on nodes to prevent Tailscale routing loops.";
323
+ readonly example: "10.244.0.0/16";
324
+ };
314
325
  readonly auth_key: {
315
326
  readonly type: "string";
316
327
  readonly description: "Authentication key for the cluster.";
@@ -373,7 +384,7 @@ export declare const ClusterJoinInformationSchema: {
373
384
  readonly description: "OIDC Information for hosts to access to third party API's.";
374
385
  };
375
386
  };
376
- readonly required: readonly ["certificate_authority", "endpoint", "cluster_dns", "auth_key", "bootstrap_token", "versions", "third_party_api_access_config"];
387
+ readonly required: readonly ["certificate_authority", "endpoint", "cluster_dns", "pod_cidr", "auth_key", "bootstrap_token", "versions", "third_party_api_access_config"];
377
388
  readonly additionalProperties: false;
378
389
  };
379
390
  export declare const ClusterSchema: {
@@ -416,13 +427,24 @@ export declare const ClusterSchema: {
416
427
  readonly anyOf: readonly [{
417
428
  readonly type: "string";
418
429
  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.";
430
+ 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
431
  readonly example: "https://2ae6557c-c61f-49c6-b4c1-a65473470a03.staging.cfke.cloudfleet.dev:6443";
421
432
  }, {
422
433
  readonly type: "string";
423
434
  readonly enum: readonly [""];
424
435
  }];
425
436
  };
437
+ readonly endpoint_public: {
438
+ readonly anyOf: readonly [{
439
+ readonly type: "string";
440
+ readonly format: "uri";
441
+ 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.";
442
+ readonly example: "https://2ae6557c-c61f-49c6-b4c1-a65473470a03.staging.cfke.io";
443
+ }, {
444
+ readonly type: "string";
445
+ readonly enum: readonly [""];
446
+ }];
447
+ };
426
448
  readonly certificate_ca: {
427
449
  readonly type: "string";
428
450
  readonly description: "Certificate authority data for the kubernetes cluster. This is the root certificate authority for the cluster.";
@@ -492,13 +514,12 @@ export declare const FleetCreateInputSchema: {
492
514
  readonly type: "object";
493
515
  readonly properties: {
494
516
  readonly cpu: {
495
- readonly type: "number";
496
- readonly format: "float";
517
+ readonly type: "integer";
497
518
  readonly minimum: 0;
498
- readonly description: "CPU limit in cores.";
519
+ readonly maximum: 100000;
520
+ readonly description: "CPU limit in cores. Maximum 100,000.";
499
521
  };
500
522
  };
501
- readonly required: readonly ["cpu"];
502
523
  readonly additionalProperties: false;
503
524
  readonly description: "Limits define a set of bounds for provisioning capacity.";
504
525
  };
@@ -507,14 +528,15 @@ export declare const FleetCreateInputSchema: {
507
528
  readonly properties: {
508
529
  readonly enabled: {
509
530
  readonly type: "boolean";
510
- readonly default: true;
511
531
  };
512
532
  readonly project: {
513
533
  readonly type: "string";
514
- readonly description: "Project GCP Project id to deploy instances into";
534
+ readonly pattern: "^[a-z][a-z0-9-]{4,28}[a-z0-9]$";
535
+ 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.";
536
+ readonly example: "my-cloudfleet-project";
515
537
  };
516
538
  };
517
- readonly required: readonly ["project"];
539
+ readonly required: readonly ["enabled"];
518
540
  readonly additionalProperties: false;
519
541
  };
520
542
  readonly hetzner: {
@@ -522,14 +544,16 @@ export declare const FleetCreateInputSchema: {
522
544
  readonly properties: {
523
545
  readonly enabled: {
524
546
  readonly type: "boolean";
525
- readonly default: true;
526
547
  };
527
548
  readonly apiKey: {
528
549
  readonly type: "string";
529
- readonly description: "Hetzner Cloud API key with read / write access";
550
+ readonly maxLength: 64;
551
+ readonly minLength: 64;
552
+ readonly pattern: "^[A-Za-z0-9]+$";
553
+ readonly description: "Hetzner Cloud API token with read / write access (64 alphanumeric characters). Omit this field to keep the existing value.";
530
554
  };
531
555
  };
532
- readonly required: readonly ["apiKey"];
556
+ readonly required: readonly ["enabled"];
533
557
  readonly additionalProperties: false;
534
558
  };
535
559
  readonly aws: {
@@ -537,15 +561,66 @@ export declare const FleetCreateInputSchema: {
537
561
  readonly properties: {
538
562
  readonly enabled: {
539
563
  readonly type: "boolean";
540
- readonly default: true;
541
564
  };
542
565
  readonly controllerRoleArn: {
543
566
  readonly type: "string";
544
- readonly description: "ControllerRoleArn is the AWS IAM role that Karpenter uses to manage resources.";
567
+ readonly pattern: "^arn:aws(-[a-z]+)*:iam::\\d{12}:role\\/[\\w+=,.@/-]+$";
568
+ readonly description: "AWS IAM role ARN that Karpenter uses to manage resources. Omit when AWS is disabled.";
569
+ readonly example: "arn:aws:iam::123456789012:role/Cloudfleet";
570
+ };
571
+ };
572
+ readonly required: readonly ["enabled"];
573
+ readonly additionalProperties: false;
574
+ };
575
+ readonly constraints: {
576
+ readonly type: "object";
577
+ readonly properties: {
578
+ readonly 'karpenter.sh/capacity-type': {
579
+ readonly type: "array";
580
+ readonly items: {
581
+ readonly type: "string";
582
+ readonly enum: readonly ["on-demand", "spot"];
583
+ };
584
+ readonly minItems: 1;
585
+ readonly description: "Allowed values for `karpenter.sh/capacity-type`.";
586
+ readonly default: readonly ["on-demand", "spot"];
587
+ };
588
+ readonly 'kubernetes.io/arch': {
589
+ readonly type: "array";
590
+ readonly items: {
591
+ readonly type: "string";
592
+ readonly enum: readonly ["amd64", "arm64"];
593
+ };
594
+ readonly minItems: 1;
595
+ readonly description: "Allowed values for `kubernetes.io/arch`.";
596
+ readonly default: readonly ["amd64"];
597
+ };
598
+ readonly 'cfke.io/instance-family': {
599
+ readonly type: "array";
600
+ readonly items: {
601
+ readonly type: "string";
602
+ 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"];
603
+ };
604
+ readonly description: "Allowed values for `cfke.io/instance-family`.";
605
+ };
606
+ readonly 'topology.kubernetes.io/region': {
607
+ readonly type: "array";
608
+ readonly items: {
609
+ readonly type: "string";
610
+ 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"];
611
+ };
612
+ readonly description: "Allowed values for `topology.kubernetes.io/region`.";
545
613
  };
546
614
  };
547
- readonly required: readonly ["controllerRoleArn"];
548
615
  readonly additionalProperties: false;
616
+ 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.";
617
+ };
618
+ readonly scalingProfile: {
619
+ readonly type: "string";
620
+ readonly description: "Controls scale-up / scale-down responsiveness. `aggressive` prioritizes cost-optimization. `conservative` prioritizes stability of the fleet.";
621
+ readonly default: "conservative";
622
+ readonly example: "conservative";
623
+ readonly enum: readonly ["aggressive", "conservative"];
549
624
  };
550
625
  readonly id: {
551
626
  readonly type: "string";
@@ -566,13 +641,12 @@ export declare const FleetSchema: {
566
641
  readonly type: "object";
567
642
  readonly properties: {
568
643
  readonly cpu: {
569
- readonly type: "number";
570
- readonly format: "float";
644
+ readonly type: "integer";
571
645
  readonly minimum: 0;
572
- readonly description: "CPU limit in cores.";
646
+ readonly maximum: 100000;
647
+ readonly description: "CPU limit in cores. Maximum 100,000.";
573
648
  };
574
649
  };
575
- readonly required: readonly ["cpu"];
576
650
  readonly additionalProperties: false;
577
651
  readonly description: "Limits define a set of bounds for provisioning capacity.";
578
652
  };
@@ -581,14 +655,15 @@ export declare const FleetSchema: {
581
655
  readonly properties: {
582
656
  readonly enabled: {
583
657
  readonly type: "boolean";
584
- readonly default: true;
585
658
  };
586
659
  readonly project: {
587
660
  readonly type: "string";
588
- readonly description: "Project GCP Project id to deploy instances into";
661
+ readonly pattern: "^[a-z][a-z0-9-]{4,28}[a-z0-9]$";
662
+ 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.";
663
+ readonly example: "my-cloudfleet-project";
589
664
  };
590
665
  };
591
- readonly required: readonly ["project"];
666
+ readonly required: readonly ["enabled"];
592
667
  readonly additionalProperties: false;
593
668
  };
594
669
  readonly hetzner: {
@@ -596,14 +671,14 @@ export declare const FleetSchema: {
596
671
  readonly properties: {
597
672
  readonly enabled: {
598
673
  readonly type: "boolean";
599
- readonly default: true;
600
674
  };
601
675
  readonly apiKey: {
602
676
  readonly type: "string";
603
- readonly description: "Hetzner Cloud API key with read / write access";
677
+ readonly pattern: "^\\*{64}$";
678
+ 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
679
  };
605
680
  };
606
- readonly required: readonly ["apiKey"];
681
+ readonly required: readonly ["enabled"];
607
682
  readonly additionalProperties: false;
608
683
  };
609
684
  readonly aws: {
@@ -611,15 +686,66 @@ export declare const FleetSchema: {
611
686
  readonly properties: {
612
687
  readonly enabled: {
613
688
  readonly type: "boolean";
614
- readonly default: true;
615
689
  };
616
690
  readonly controllerRoleArn: {
617
691
  readonly type: "string";
618
- readonly description: "ControllerRoleArn is the AWS IAM role that Karpenter uses to manage resources.";
692
+ readonly pattern: "^arn:aws(-[a-z]+)*:iam::\\d{12}:role\\/[\\w+=,.@/-]+$";
693
+ readonly description: "AWS IAM role ARN that Karpenter uses to manage resources. Omit when AWS is disabled.";
694
+ readonly example: "arn:aws:iam::123456789012:role/Cloudfleet";
695
+ };
696
+ };
697
+ readonly required: readonly ["enabled"];
698
+ readonly additionalProperties: false;
699
+ };
700
+ readonly constraints: {
701
+ readonly type: "object";
702
+ readonly properties: {
703
+ readonly 'karpenter.sh/capacity-type': {
704
+ readonly type: "array";
705
+ readonly items: {
706
+ readonly type: "string";
707
+ readonly enum: readonly ["on-demand", "spot"];
708
+ };
709
+ readonly minItems: 1;
710
+ readonly description: "Allowed values for `karpenter.sh/capacity-type`.";
711
+ readonly default: readonly ["on-demand", "spot"];
712
+ };
713
+ readonly 'kubernetes.io/arch': {
714
+ readonly type: "array";
715
+ readonly items: {
716
+ readonly type: "string";
717
+ readonly enum: readonly ["amd64", "arm64"];
718
+ };
719
+ readonly minItems: 1;
720
+ readonly description: "Allowed values for `kubernetes.io/arch`.";
721
+ readonly default: readonly ["amd64"];
722
+ };
723
+ readonly 'cfke.io/instance-family': {
724
+ readonly type: "array";
725
+ readonly items: {
726
+ readonly type: "string";
727
+ 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"];
728
+ };
729
+ readonly description: "Allowed values for `cfke.io/instance-family`.";
730
+ };
731
+ readonly 'topology.kubernetes.io/region': {
732
+ readonly type: "array";
733
+ readonly items: {
734
+ readonly type: "string";
735
+ 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"];
736
+ };
737
+ readonly description: "Allowed values for `topology.kubernetes.io/region`.";
619
738
  };
620
739
  };
621
- readonly required: readonly ["controllerRoleArn"];
622
740
  readonly additionalProperties: false;
741
+ 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.";
742
+ };
743
+ readonly scalingProfile: {
744
+ readonly type: "string";
745
+ readonly description: "Controls scale-up / scale-down responsiveness. `aggressive` prioritizes cost-optimization. `conservative` prioritizes stability of the fleet.";
746
+ readonly default: "conservative";
747
+ readonly example: "conservative";
748
+ readonly enum: readonly ["aggressive", "conservative"];
623
749
  };
624
750
  readonly id: {
625
751
  readonly type: "string";
@@ -630,7 +756,7 @@ export declare const FleetSchema: {
630
756
  readonly example: "new-clouds-fleet";
631
757
  };
632
758
  };
633
- readonly required: readonly ["id"];
759
+ readonly required: readonly ["scalingProfile", "id"];
634
760
  readonly additionalProperties: false;
635
761
  };
636
762
  export declare const FleetUpdateInputSchema: {
@@ -640,13 +766,12 @@ export declare const FleetUpdateInputSchema: {
640
766
  readonly type: "object";
641
767
  readonly properties: {
642
768
  readonly cpu: {
643
- readonly type: "number";
644
- readonly format: "float";
769
+ readonly type: "integer";
645
770
  readonly minimum: 0;
646
- readonly description: "CPU limit in cores.";
771
+ readonly maximum: 100000;
772
+ readonly description: "CPU limit in cores. Maximum 100,000.";
647
773
  };
648
774
  };
649
- readonly required: readonly ["cpu"];
650
775
  readonly additionalProperties: false;
651
776
  readonly description: "Limits define a set of bounds for provisioning capacity.";
652
777
  };
@@ -655,14 +780,15 @@ export declare const FleetUpdateInputSchema: {
655
780
  readonly properties: {
656
781
  readonly enabled: {
657
782
  readonly type: "boolean";
658
- readonly default: true;
659
783
  };
660
784
  readonly project: {
661
785
  readonly type: "string";
662
- readonly description: "Project GCP Project id to deploy instances into";
786
+ readonly pattern: "^[a-z][a-z0-9-]{4,28}[a-z0-9]$";
787
+ 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.";
788
+ readonly example: "my-cloudfleet-project";
663
789
  };
664
790
  };
665
- readonly required: readonly ["project"];
791
+ readonly required: readonly ["enabled"];
666
792
  readonly additionalProperties: false;
667
793
  };
668
794
  readonly hetzner: {
@@ -670,14 +796,16 @@ export declare const FleetUpdateInputSchema: {
670
796
  readonly properties: {
671
797
  readonly enabled: {
672
798
  readonly type: "boolean";
673
- readonly default: true;
674
799
  };
675
800
  readonly apiKey: {
676
801
  readonly type: "string";
677
- readonly description: "Hetzner Cloud API key with read / write access";
802
+ readonly maxLength: 64;
803
+ readonly minLength: 64;
804
+ readonly pattern: "^[A-Za-z0-9]+$";
805
+ readonly description: "Hetzner Cloud API token with read / write access (64 alphanumeric characters). Omit this field to keep the existing value.";
678
806
  };
679
807
  };
680
- readonly required: readonly ["apiKey"];
808
+ readonly required: readonly ["enabled"];
681
809
  readonly additionalProperties: false;
682
810
  };
683
811
  readonly aws: {
@@ -685,17 +813,86 @@ export declare const FleetUpdateInputSchema: {
685
813
  readonly properties: {
686
814
  readonly enabled: {
687
815
  readonly type: "boolean";
688
- readonly default: true;
689
816
  };
690
817
  readonly controllerRoleArn: {
691
818
  readonly type: "string";
692
- readonly description: "ControllerRoleArn is the AWS IAM role that Karpenter uses to manage resources.";
819
+ readonly pattern: "^arn:aws(-[a-z]+)*:iam::\\d{12}:role\\/[\\w+=,.@/-]+$";
820
+ readonly description: "AWS IAM role ARN that Karpenter uses to manage resources. Omit when AWS is disabled.";
821
+ readonly example: "arn:aws:iam::123456789012:role/Cloudfleet";
693
822
  };
694
823
  };
695
- readonly required: readonly ["controllerRoleArn"];
824
+ readonly required: readonly ["enabled"];
696
825
  readonly additionalProperties: false;
697
826
  };
827
+ readonly constraints: {
828
+ readonly type: "object";
829
+ readonly properties: {
830
+ readonly 'karpenter.sh/capacity-type': {
831
+ readonly type: "array";
832
+ readonly items: {
833
+ readonly type: "string";
834
+ readonly enum: readonly ["on-demand", "spot"];
835
+ };
836
+ readonly minItems: 1;
837
+ readonly description: "Allowed values for `karpenter.sh/capacity-type`.";
838
+ };
839
+ readonly 'kubernetes.io/arch': {
840
+ readonly type: "array";
841
+ readonly items: {
842
+ readonly type: "string";
843
+ readonly enum: readonly ["amd64", "arm64"];
844
+ };
845
+ readonly minItems: 1;
846
+ readonly description: "Allowed values for `kubernetes.io/arch`.";
847
+ };
848
+ readonly 'cfke.io/instance-family': {
849
+ readonly type: "array";
850
+ readonly items: {
851
+ readonly type: "string";
852
+ 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"];
853
+ };
854
+ readonly description: "Allowed values for `cfke.io/instance-family`.";
855
+ };
856
+ readonly 'topology.kubernetes.io/region': {
857
+ readonly type: "array";
858
+ readonly items: {
859
+ readonly type: "string";
860
+ 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"];
861
+ };
862
+ readonly description: "Allowed values for `topology.kubernetes.io/region`.";
863
+ };
864
+ };
865
+ readonly additionalProperties: false;
866
+ 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.";
867
+ };
868
+ readonly scalingProfile: {
869
+ readonly type: "string";
870
+ readonly description: "Controls scale-up / scale-down responsiveness. `aggressive` prioritizes cost-optimization. `conservative` prioritizes stability of the fleet.";
871
+ readonly example: "conservative";
872
+ readonly enum: readonly ["aggressive", "conservative"];
873
+ };
874
+ };
875
+ readonly required: readonly ["scalingProfile"];
876
+ readonly additionalProperties: false;
877
+ };
878
+ export declare const InviteCreateInputSchema: {
879
+ readonly type: "object";
880
+ readonly properties: {
881
+ readonly email: {
882
+ readonly type: "string";
883
+ readonly format: "email";
884
+ readonly description: "Email address of the user to invite.";
885
+ readonly example: "email@example.com";
886
+ };
887
+ readonly role: {
888
+ readonly type: "string";
889
+ readonly description: "Role the invited user will be assigned on redemption. Can be 'Administrator' or 'User'.";
890
+ readonly default: "User";
891
+ readonly example: "User";
892
+ readonly enum: readonly ["Administrator", "User"];
893
+ };
698
894
  };
895
+ readonly required: readonly ["email"];
699
896
  readonly additionalProperties: false;
700
897
  };
701
898
  export declare const InviteSchema: {
@@ -729,6 +926,13 @@ export declare const InviteSchema: {
729
926
  readonly description: "Generated unique invite code.";
730
927
  readonly example: "7kUZnH7nnKUFfvc4NK2KQF";
731
928
  };
929
+ readonly role: {
930
+ readonly type: "string";
931
+ readonly description: "Role the invited user will be assigned on redemption. Can be 'Administrator' or 'User'.";
932
+ readonly default: "User";
933
+ readonly example: "User";
934
+ readonly enum: readonly ["Administrator", "User"];
935
+ };
732
936
  };
733
937
  readonly required: readonly ["date_created"];
734
938
  readonly additionalProperties: false;
@@ -926,6 +1130,12 @@ export declare const MarketplaceListingSchema: {
926
1130
  export declare const OrganizationCreateInputSchema: {
927
1131
  readonly type: "object";
928
1132
  readonly properties: {
1133
+ readonly type: {
1134
+ readonly type: "string";
1135
+ readonly description: "Type of the organization. `business` for legal entities, `personal` for individuals.";
1136
+ readonly example: "business";
1137
+ readonly enum: readonly ["business", "personal"];
1138
+ };
929
1139
  readonly email: {
930
1140
  readonly type: "string";
931
1141
  readonly format: "email";
@@ -934,11 +1144,13 @@ export declare const OrganizationCreateInputSchema: {
934
1144
  };
935
1145
  readonly first_name: {
936
1146
  readonly type: "string";
1147
+ readonly minLength: 1;
937
1148
  readonly description: "First name of the billing contact person.";
938
1149
  readonly example: "John";
939
1150
  };
940
1151
  readonly last_name: {
941
1152
  readonly type: "string";
1153
+ readonly minLength: 1;
942
1154
  readonly description: "Last name of the billing contact person.";
943
1155
  readonly example: "Doe";
944
1156
  };
@@ -956,7 +1168,19 @@ export declare const OrganizationCreateInputSchema: {
956
1168
  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
1169
  };
958
1170
  };
959
- readonly required: readonly ["email", "first_name", "last_name", "company_name", "password"];
1171
+ readonly required: readonly ["type", "email", "first_name", "last_name", "company_name", "password"];
1172
+ readonly additionalProperties: false;
1173
+ };
1174
+ export declare const OrganizationCreateOutputSchema: {
1175
+ readonly type: "object";
1176
+ readonly properties: {
1177
+ readonly id: {
1178
+ readonly type: "string";
1179
+ readonly description: "Unique identifier of the newly created organization. Generated by the API and safe to use for client-side tracking immediately.";
1180
+ readonly example: "organization-id";
1181
+ };
1182
+ };
1183
+ readonly required: readonly ["id"];
960
1184
  readonly additionalProperties: false;
961
1185
  };
962
1186
  export declare const OrganizationSchema: {
@@ -975,6 +1199,12 @@ export declare const OrganizationSchema: {
975
1199
  readonly description: "Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.";
976
1200
  readonly example: "ACME Corp.";
977
1201
  };
1202
+ readonly type: {
1203
+ readonly type: "string";
1204
+ readonly description: "Type of the organization. `business` for legal entities, `personal` for individuals.";
1205
+ readonly example: "business";
1206
+ readonly enum: readonly ["business", "personal"];
1207
+ };
978
1208
  readonly date_created: {
979
1209
  readonly type: "string";
980
1210
  readonly format: "date-time";
@@ -1068,8 +1298,14 @@ export declare const OrganizationSchema: {
1068
1298
  readonly description: "Status of the organization. Can be `active` or `closed`, or `suspended`.";
1069
1299
  readonly enum: readonly ["active", "closed", "suspended"];
1070
1300
  };
1301
+ readonly verification: {
1302
+ readonly type: "string";
1303
+ 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.";
1304
+ readonly example: "verified";
1305
+ readonly enum: readonly ["none", "submitted", "verified"];
1306
+ };
1071
1307
  };
1072
- readonly required: readonly ["id", "date_created", "quota", "status"];
1308
+ readonly required: readonly ["id", "type", "date_created", "quota", "status", "verification"];
1073
1309
  readonly additionalProperties: false;
1074
1310
  };
1075
1311
  export declare const PaymentMethodSchema: {
@@ -1077,26 +1313,19 @@ export declare const PaymentMethodSchema: {
1077
1313
  readonly properties: {
1078
1314
  readonly id: {
1079
1315
  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;
1316
+ 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.";
1317
+ readonly example: "pm_1MtwBwLkdIwHu7ix28a3tqPa";
1088
1318
  };
1089
1319
  readonly type: {
1090
1320
  readonly type: "string";
1091
- readonly nullable: true;
1092
- readonly description: "Payment method type type. Only `card` payments supported at the moment.";
1321
+ 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
1322
  readonly example: "card";
1094
- readonly enum: readonly ["card"];
1323
+ readonly enum: readonly ["card", "sepa_debit", "bank_transfer"];
1095
1324
  };
1096
1325
  readonly last4: {
1097
1326
  readonly type: "string";
1098
1327
  readonly nullable: true;
1099
- readonly description: "Last 4 digits of the payment card number.";
1328
+ 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
1329
  readonly example: "4242";
1101
1330
  };
1102
1331
  readonly exp_month: {
@@ -1104,25 +1333,46 @@ export declare const PaymentMethodSchema: {
1104
1333
  readonly minimum: 1;
1105
1334
  readonly maximum: 12;
1106
1335
  readonly nullable: true;
1107
- readonly description: "Two-digit number representing the card's expiration month.";
1108
- readonly example: "12";
1336
+ readonly description: "Two-digit number representing the card's expiration month. Null for SEPA Direct Debit and bank transfer.";
1337
+ readonly example: 12;
1109
1338
  };
1110
1339
  readonly exp_year: {
1111
1340
  readonly type: "integer";
1112
- readonly minimum: 2024;
1113
1341
  readonly nullable: true;
1114
- readonly description: "Four-digit number representing the card's expiration year.";
1115
- readonly example: "2028";
1342
+ 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.";
1343
+ readonly example: 2028;
1116
1344
  };
1117
1345
  readonly brand: {
1118
1346
  readonly type: "string";
1119
1347
  readonly nullable: true;
1120
- readonly description: "Payment card brand. Can be `amex`, `diners`, `discover`, `eftpos_au`, `jcb`, `mastercard`, `unionpay`, `visa`, or `unknown`.";
1348
+ 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
1349
  readonly example: "visa";
1122
- readonly enum: readonly ["amex", "diners", "discover", "eftpos_au", "jcb", "mastercard", "unionpay", "visa", "unknown"];
1350
+ };
1351
+ readonly iban: {
1352
+ readonly type: "string";
1353
+ readonly nullable: true;
1354
+ 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.";
1355
+ readonly example: "DE11243015658023127510";
1356
+ };
1357
+ readonly bic: {
1358
+ readonly type: "string";
1359
+ readonly nullable: true;
1360
+ readonly description: "BIC/SWIFT of the destination bank for bank transfers. Set only for `bank_transfer`; null otherwise.";
1361
+ readonly example: "SOGEDEFFXXX";
1362
+ };
1363
+ readonly account_holder_name: {
1364
+ readonly type: "string";
1365
+ readonly nullable: true;
1366
+ readonly description: "Account holder name of the destination bank account for bank transfers. Set only for `bank_transfer`; null otherwise.";
1367
+ readonly example: "Cloudfleet GmbH";
1368
+ };
1369
+ readonly is_default: {
1370
+ readonly type: "boolean";
1371
+ 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).";
1372
+ readonly example: true;
1123
1373
  };
1124
1374
  };
1125
- readonly required: readonly ["id", "setup", "type", "last4", "exp_month", "exp_year", "brand"];
1375
+ readonly required: readonly ["id", "type", "last4", "exp_month", "exp_year", "brand", "iban", "bic", "account_holder_name", "is_default"];
1126
1376
  readonly additionalProperties: false;
1127
1377
  };
1128
1378
  export declare const PlatformQuotaSchema: {
@@ -1437,6 +1687,407 @@ export declare const RegistryTagSchema: {
1437
1687
  readonly required: readonly ["name", "digest", "size", "region", "repository", "uri"];
1438
1688
  readonly additionalProperties: false;
1439
1689
  };
1690
+ export declare const TicketAttachmentSchema: {
1691
+ readonly type: "object";
1692
+ readonly properties: {
1693
+ readonly id: {
1694
+ readonly type: "string";
1695
+ readonly description: "Unique identifier of the attachment (Mongo ObjectId).";
1696
+ readonly example: "60c72b2f9f1b2c001f8e4d3c";
1697
+ };
1698
+ readonly filename: {
1699
+ readonly type: "string";
1700
+ readonly description: "Original filename as uploaded.";
1701
+ readonly example: "debug.log";
1702
+ };
1703
+ readonly content_type: {
1704
+ readonly type: "string";
1705
+ readonly description: "MIME content type of the attachment.";
1706
+ readonly example: "text/plain";
1707
+ };
1708
+ readonly size: {
1709
+ readonly type: "integer";
1710
+ readonly description: "Size of the attachment in bytes.";
1711
+ readonly example: 12345;
1712
+ };
1713
+ };
1714
+ readonly required: readonly ["id", "filename", "content_type", "size"];
1715
+ readonly additionalProperties: false;
1716
+ };
1717
+ export declare const TicketCreateInputSchema: {
1718
+ readonly type: "object";
1719
+ readonly properties: {
1720
+ readonly category: {
1721
+ readonly type: "string";
1722
+ readonly description: "Ticket category. Drives auto-assignment and may carry a subcategory in `properties`.";
1723
+ readonly example: "technical";
1724
+ readonly enum: readonly ["billing", "technical", "general"];
1725
+ };
1726
+ readonly body: {
1727
+ readonly type: "string";
1728
+ readonly maxLength: 50000;
1729
+ readonly minLength: 1;
1730
+ readonly pattern: "\\S";
1731
+ readonly description: "Initial message body in markdown. There is no separate subject — the first message body is the description.";
1732
+ readonly example: "My cluster cannot reach the registry. Logs attached.";
1733
+ };
1734
+ readonly properties: {
1735
+ readonly type: "object";
1736
+ readonly additionalProperties: true;
1737
+ readonly description: "Free-form key/value bag set by the UI (e.g. `subcategory`, `cluster_id`, `cluster_name`, `region`).";
1738
+ readonly example: {
1739
+ readonly subcategory: "cluster-question";
1740
+ readonly cluster_id: "60c72b2f9f1b2c001f8e4d3a";
1741
+ };
1742
+ };
1743
+ };
1744
+ readonly required: readonly ["category", "body"];
1745
+ readonly additionalProperties: false;
1746
+ };
1747
+ export declare const TicketListResponseSchema: {
1748
+ readonly type: "object";
1749
+ readonly properties: {
1750
+ readonly items: {
1751
+ readonly type: "array";
1752
+ readonly items: {
1753
+ readonly type: "object";
1754
+ readonly properties: {
1755
+ readonly id: {
1756
+ readonly type: "string";
1757
+ readonly description: "Unique identifier of the ticket (Mongo ObjectId).";
1758
+ readonly example: "60c72b2f9f1b2c001f8e4d3a";
1759
+ };
1760
+ readonly status: {
1761
+ readonly type: "string";
1762
+ readonly description: "Current state of the ticket.";
1763
+ readonly example: "waiting_on_us";
1764
+ readonly enum: readonly ["waiting_on_us", "waiting_on_user", "closed"];
1765
+ };
1766
+ readonly category: {
1767
+ readonly type: "string";
1768
+ readonly description: "Ticket category.";
1769
+ readonly example: "technical";
1770
+ readonly enum: readonly ["billing", "technical", "general"];
1771
+ };
1772
+ readonly summary: {
1773
+ readonly type: "string";
1774
+ readonly description: "First 128 characters of the initial message body, with markdown formatting and newlines stripped. Used for ticket list previews.";
1775
+ readonly example: "My cluster cannot reach the registry. Logs attached.";
1776
+ };
1777
+ readonly closed_at: {
1778
+ readonly type: "string";
1779
+ readonly format: "date-time";
1780
+ readonly nullable: true;
1781
+ readonly description: "Closure timestamp. Null while the ticket is open.";
1782
+ readonly example: "2026-05-18T16:08:14.338Z";
1783
+ };
1784
+ readonly date_created: {
1785
+ readonly type: "string";
1786
+ readonly format: "date-time";
1787
+ readonly description: "Creation date of the ticket. ISO 8601 UTC.";
1788
+ readonly example: "2026-05-11T16:08:14.338Z";
1789
+ };
1790
+ readonly date_updated: {
1791
+ readonly type: "string";
1792
+ readonly format: "date-time";
1793
+ readonly description: "Last update date of the ticket. ISO 8601 UTC.";
1794
+ readonly example: "2026-05-11T16:08:14.338Z";
1795
+ };
1796
+ readonly messages: {
1797
+ readonly type: "array";
1798
+ readonly items: {
1799
+ readonly type: "object";
1800
+ readonly properties: {
1801
+ readonly id: {
1802
+ readonly type: "string";
1803
+ readonly description: "Unique identifier of the message (Mongo ObjectId).";
1804
+ readonly example: "60c72b2f9f1b2c001f8e4d3b";
1805
+ };
1806
+ readonly type: {
1807
+ readonly type: "string";
1808
+ readonly description: "Message type. Internal notes are filtered out of customer-facing responses.";
1809
+ readonly example: "customer_reply";
1810
+ readonly enum: readonly ["customer_reply", "agent_reply"];
1811
+ };
1812
+ readonly body: {
1813
+ readonly type: "string";
1814
+ readonly description: "Message body in markdown.";
1815
+ readonly example: "Thanks — that resolved it on my side.";
1816
+ };
1817
+ readonly author_first_name: {
1818
+ readonly type: "string";
1819
+ readonly nullable: true;
1820
+ readonly description: "First name of the author. Null when not provided.";
1821
+ readonly example: "Jane";
1822
+ };
1823
+ readonly author_last_name: {
1824
+ readonly type: "string";
1825
+ readonly nullable: true;
1826
+ readonly description: "Last name of the author. Null when not provided.";
1827
+ readonly example: "Doe";
1828
+ };
1829
+ readonly attachments: {
1830
+ readonly type: "array";
1831
+ readonly items: {
1832
+ readonly type: "object";
1833
+ readonly properties: {
1834
+ readonly id: {
1835
+ readonly type: "string";
1836
+ readonly description: "Unique identifier of the attachment (Mongo ObjectId).";
1837
+ readonly example: "60c72b2f9f1b2c001f8e4d3c";
1838
+ };
1839
+ readonly filename: {
1840
+ readonly type: "string";
1841
+ readonly description: "Original filename as uploaded.";
1842
+ readonly example: "debug.log";
1843
+ };
1844
+ readonly content_type: {
1845
+ readonly type: "string";
1846
+ readonly description: "MIME content type of the attachment.";
1847
+ readonly example: "text/plain";
1848
+ };
1849
+ readonly size: {
1850
+ readonly type: "integer";
1851
+ readonly description: "Size of the attachment in bytes.";
1852
+ readonly example: 12345;
1853
+ };
1854
+ };
1855
+ readonly required: readonly ["id", "filename", "content_type", "size"];
1856
+ readonly additionalProperties: false;
1857
+ };
1858
+ readonly description: "Attachments associated with this message.";
1859
+ readonly example: readonly [];
1860
+ };
1861
+ readonly date_created: {
1862
+ readonly type: "string";
1863
+ readonly format: "date-time";
1864
+ readonly description: "Creation date of the message. ISO 8601 UTC.";
1865
+ readonly example: "2026-05-11T16:08:14.338Z";
1866
+ };
1867
+ };
1868
+ readonly required: readonly ["id", "type", "body", "date_created"];
1869
+ readonly additionalProperties: false;
1870
+ };
1871
+ readonly description: "Messages on the ticket in chronological order. Internal notes are excluded. Returned by the detail endpoint only.";
1872
+ };
1873
+ };
1874
+ readonly required: readonly ["id", "status", "category", "summary", "date_created", "date_updated"];
1875
+ readonly additionalProperties: false;
1876
+ };
1877
+ readonly description: "Tickets for the organization, ordered newest first. Messages are omitted from list responses.";
1878
+ };
1879
+ };
1880
+ readonly required: readonly ["items"];
1881
+ readonly additionalProperties: false;
1882
+ };
1883
+ export declare const TicketMessageInputSchema: {
1884
+ readonly type: "object";
1885
+ readonly properties: {
1886
+ readonly body: {
1887
+ readonly type: "string";
1888
+ readonly maxLength: 50000;
1889
+ readonly minLength: 1;
1890
+ readonly pattern: "\\S";
1891
+ readonly description: "Reply body in markdown.";
1892
+ readonly example: "Thanks — that resolved it on my side.";
1893
+ };
1894
+ };
1895
+ readonly required: readonly ["body"];
1896
+ readonly additionalProperties: false;
1897
+ };
1898
+ export declare const TicketMessageSchema: {
1899
+ readonly type: "object";
1900
+ readonly properties: {
1901
+ readonly id: {
1902
+ readonly type: "string";
1903
+ readonly description: "Unique identifier of the message (Mongo ObjectId).";
1904
+ readonly example: "60c72b2f9f1b2c001f8e4d3b";
1905
+ };
1906
+ readonly type: {
1907
+ readonly type: "string";
1908
+ readonly description: "Message type. Internal notes are filtered out of customer-facing responses.";
1909
+ readonly example: "customer_reply";
1910
+ readonly enum: readonly ["customer_reply", "agent_reply"];
1911
+ };
1912
+ readonly body: {
1913
+ readonly type: "string";
1914
+ readonly description: "Message body in markdown.";
1915
+ readonly example: "Thanks — that resolved it on my side.";
1916
+ };
1917
+ readonly author_first_name: {
1918
+ readonly type: "string";
1919
+ readonly description: "First name of the author. Null when not provided.";
1920
+ readonly example: "Jane";
1921
+ };
1922
+ readonly author_last_name: {
1923
+ readonly type: "string";
1924
+ readonly description: "Last name of the author. Null when not provided.";
1925
+ readonly example: "Doe";
1926
+ };
1927
+ readonly attachments: {
1928
+ readonly type: "array";
1929
+ readonly items: {
1930
+ readonly type: "object";
1931
+ readonly properties: {
1932
+ readonly id: {
1933
+ readonly type: "string";
1934
+ readonly description: "Unique identifier of the attachment (Mongo ObjectId).";
1935
+ readonly example: "60c72b2f9f1b2c001f8e4d3c";
1936
+ };
1937
+ readonly filename: {
1938
+ readonly type: "string";
1939
+ readonly description: "Original filename as uploaded.";
1940
+ readonly example: "debug.log";
1941
+ };
1942
+ readonly content_type: {
1943
+ readonly type: "string";
1944
+ readonly description: "MIME content type of the attachment.";
1945
+ readonly example: "text/plain";
1946
+ };
1947
+ readonly size: {
1948
+ readonly type: "integer";
1949
+ readonly description: "Size of the attachment in bytes.";
1950
+ readonly example: 12345;
1951
+ };
1952
+ };
1953
+ readonly required: readonly ["id", "filename", "content_type", "size"];
1954
+ readonly additionalProperties: false;
1955
+ };
1956
+ readonly description: "Attachments associated with this message.";
1957
+ readonly example: readonly [];
1958
+ };
1959
+ readonly date_created: {
1960
+ readonly type: "string";
1961
+ readonly format: "date-time";
1962
+ readonly description: "Creation date of the message. ISO 8601 UTC.";
1963
+ readonly example: "2026-05-11T16:08:14.338Z";
1964
+ };
1965
+ };
1966
+ readonly required: readonly ["id", "type", "body", "date_created"];
1967
+ readonly additionalProperties: false;
1968
+ };
1969
+ export declare const TicketSchema: {
1970
+ readonly type: "object";
1971
+ readonly properties: {
1972
+ readonly id: {
1973
+ readonly type: "string";
1974
+ readonly description: "Unique identifier of the ticket (Mongo ObjectId).";
1975
+ readonly example: "60c72b2f9f1b2c001f8e4d3a";
1976
+ };
1977
+ readonly status: {
1978
+ readonly type: "string";
1979
+ readonly description: "Current state of the ticket.";
1980
+ readonly example: "waiting_on_us";
1981
+ readonly enum: readonly ["waiting_on_us", "waiting_on_user", "closed"];
1982
+ };
1983
+ readonly category: {
1984
+ readonly type: "string";
1985
+ readonly description: "Ticket category.";
1986
+ readonly example: "technical";
1987
+ readonly enum: readonly ["billing", "technical", "general"];
1988
+ };
1989
+ readonly summary: {
1990
+ readonly type: "string";
1991
+ readonly description: "First 128 characters of the initial message body, with markdown formatting and newlines stripped. Used for ticket list previews.";
1992
+ readonly example: "My cluster cannot reach the registry. Logs attached.";
1993
+ };
1994
+ readonly closed_at: {
1995
+ readonly type: "string";
1996
+ readonly format: "date-time";
1997
+ readonly description: "Closure timestamp. Null while the ticket is open.";
1998
+ readonly example: "2026-05-18T16:08:14.338Z";
1999
+ };
2000
+ readonly date_created: {
2001
+ readonly type: "string";
2002
+ readonly format: "date-time";
2003
+ readonly description: "Creation date of the ticket. ISO 8601 UTC.";
2004
+ readonly example: "2026-05-11T16:08:14.338Z";
2005
+ };
2006
+ readonly date_updated: {
2007
+ readonly type: "string";
2008
+ readonly format: "date-time";
2009
+ readonly description: "Last update date of the ticket. ISO 8601 UTC.";
2010
+ readonly example: "2026-05-11T16:08:14.338Z";
2011
+ };
2012
+ readonly messages: {
2013
+ readonly type: "array";
2014
+ readonly items: {
2015
+ readonly type: "object";
2016
+ readonly properties: {
2017
+ readonly id: {
2018
+ readonly type: "string";
2019
+ readonly description: "Unique identifier of the message (Mongo ObjectId).";
2020
+ readonly example: "60c72b2f9f1b2c001f8e4d3b";
2021
+ };
2022
+ readonly type: {
2023
+ readonly type: "string";
2024
+ readonly description: "Message type. Internal notes are filtered out of customer-facing responses.";
2025
+ readonly example: "customer_reply";
2026
+ readonly enum: readonly ["customer_reply", "agent_reply"];
2027
+ };
2028
+ readonly body: {
2029
+ readonly type: "string";
2030
+ readonly description: "Message body in markdown.";
2031
+ readonly example: "Thanks — that resolved it on my side.";
2032
+ };
2033
+ readonly author_first_name: {
2034
+ readonly type: "string";
2035
+ readonly description: "First name of the author. Null when not provided.";
2036
+ readonly example: "Jane";
2037
+ };
2038
+ readonly author_last_name: {
2039
+ readonly type: "string";
2040
+ readonly description: "Last name of the author. Null when not provided.";
2041
+ readonly example: "Doe";
2042
+ };
2043
+ readonly attachments: {
2044
+ readonly type: "array";
2045
+ readonly items: {
2046
+ readonly type: "object";
2047
+ readonly properties: {
2048
+ readonly id: {
2049
+ readonly type: "string";
2050
+ readonly description: "Unique identifier of the attachment (Mongo ObjectId).";
2051
+ readonly example: "60c72b2f9f1b2c001f8e4d3c";
2052
+ };
2053
+ readonly filename: {
2054
+ readonly type: "string";
2055
+ readonly description: "Original filename as uploaded.";
2056
+ readonly example: "debug.log";
2057
+ };
2058
+ readonly content_type: {
2059
+ readonly type: "string";
2060
+ readonly description: "MIME content type of the attachment.";
2061
+ readonly example: "text/plain";
2062
+ };
2063
+ readonly size: {
2064
+ readonly type: "integer";
2065
+ readonly description: "Size of the attachment in bytes.";
2066
+ readonly example: 12345;
2067
+ };
2068
+ };
2069
+ readonly required: readonly ["id", "filename", "content_type", "size"];
2070
+ readonly additionalProperties: false;
2071
+ };
2072
+ readonly description: "Attachments associated with this message.";
2073
+ readonly example: readonly [];
2074
+ };
2075
+ readonly date_created: {
2076
+ readonly type: "string";
2077
+ readonly format: "date-time";
2078
+ readonly description: "Creation date of the message. ISO 8601 UTC.";
2079
+ readonly example: "2026-05-11T16:08:14.338Z";
2080
+ };
2081
+ };
2082
+ readonly required: readonly ["id", "type", "body", "date_created"];
2083
+ readonly additionalProperties: false;
2084
+ };
2085
+ readonly description: "Messages on the ticket in chronological order. Internal notes are excluded. Returned by the detail endpoint only.";
2086
+ };
2087
+ };
2088
+ readonly required: readonly ["id", "status", "category", "summary", "date_created", "date_updated"];
2089
+ readonly additionalProperties: false;
2090
+ };
1440
2091
  export declare const TokenCreateInputSchema: {
1441
2092
  readonly type: "object";
1442
2093
  readonly properties: {
@@ -1683,18 +2334,6 @@ export declare const UserCreateInputSchema: {
1683
2334
  readonly minLength: 8;
1684
2335
  readonly description: "User password. Must be at least 8 characters long.";
1685
2336
  };
1686
- readonly status: {
1687
- readonly type: "string";
1688
- readonly description: "Status of the user. Can be `active` or `inactive`. Inactive users cannot log in or manage organization resources.";
1689
- readonly example: "active";
1690
- readonly enum: readonly ["active", "inactive"];
1691
- };
1692
- readonly role: {
1693
- readonly type: "string";
1694
- readonly description: "User role. Can be 'Administrator', 'User'.";
1695
- readonly example: "User";
1696
- readonly enum: readonly ["Administrator", "User"];
1697
- };
1698
2337
  };
1699
2338
  readonly required: readonly ["email", "first_name", "last_name", "code", "password"];
1700
2339
  readonly additionalProperties: false;