@cloudfleet/sdk 0.3.39 → 0.5.0

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,3 +1,76 @@
1
+ export declare const BillingContactSchema: {
2
+ readonly type: "object";
3
+ readonly properties: {
4
+ readonly company: {
5
+ readonly type: "string";
6
+ readonly maxLength: 120;
7
+ readonly minLength: 2;
8
+ readonly pattern: "^(?!\\s)(?!.*\\s$)(?=.*[a-zA-ZÆÐƎƏƐƔIJŊŒẞÞǷȜæðǝəɛɣijŋœĸſßþƿȝĄƁÇĐƊĘĦĮƘŁØƠŞȘŢȚŦŲƯY̨Ƴąɓçđɗęħįƙłøơşșţțŧųưy̨ƴÁÀÂÄǍĂĀÃÅǺĄÆǼǢƁĆĊĈČÇĎḌĐƊÐÉÈĖÊËĚĔĒĘẸƎƏƐĠĜǦĞĢƔáàâäǎăāãåǻąæǽǣɓćċĉčçďḍđɗðéèėêëěĕēęẹǝəɛġĝǧğģɣĤḤĦIÍÌİÎÏǏĬĪĨĮỊIJĴĶƘĹĻŁĽĿʼNŃN̈ŇÑŅŊÓÒÔÖǑŎŌÕŐỌØǾƠŒĥḥħıíìiîïǐĭīĩįịijĵķƙĸĺļłľŀʼnńn̈ňñņŋóòôöǒŏōõőọøǿơœŔŘŖŚŜŠŞȘṢẞŤŢṬŦÞÚÙÛÜǓŬŪŨŰŮŲỤƯẂẀŴẄǷÝỲŶŸȲỸƳŹŻŽẒŕřŗſśŝšşșṣßťţṭŧþúùûüǔŭūũűůųụưẃẁŵẅƿýỳŷÿȳỹƴźżžẓ0-9])[a-zA-ZÆÐƎƏƐƔIJŊŒẞÞǷȜæðǝəɛɣijŋœĸſßþƿȝĄƁÇĐƊĘĦĮƘŁØƠŞȘŢȚŦŲƯY̨Ƴąɓçđɗęħįƙłøơşșţțŧųưy̨ƴÁÀÂÄǍĂĀÃÅǺĄÆǼǢƁĆĊĈČÇĎḌĐƊÐÉÈĖÊËĚĔĒĘẸƎƏƐĠĜǦĞĢƔáàâäǎăāãåǻąæǽǣɓćċĉčçďḍđɗðéèėêëěĕēęẹǝəɛġĝǧğģɣĤḤĦIÍÌİÎÏǏĬĪĨĮỊIJĴĶƘĹĻŁĽĿʼNŃN̈ŇÑŅŊÓÒÔÖǑŎŌÕŐỌØǾƠŒĥḥħıíìiîïǐĭīĩįịijĵķƙĸĺļłľŀʼnńn̈ňñņŋóòôöǒŏōõőọøǿơœŔŘŖŚŜŠŞȘṢẞŤŢṬŦÞÚÙÛÜǓŬŪŨŰŮŲỤƯẂẀŴẄǷÝỲŶŸȲỸƳŹŻŽẒŕřŗſśŝšşșṣßťţṭŧþúùûüǔŭūũűůųụưẃẁŵẅƿýỳŷÿȳỹƴźżžẓ0-9 -.]{2,}$";
9
+ readonly description: "Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.";
10
+ readonly example: "ACME Corp.";
11
+ };
12
+ readonly address1: {
13
+ readonly type: "string";
14
+ readonly nullable: true;
15
+ readonly description: "Street address, P.O. box, c/o";
16
+ readonly example: "123 Main St.";
17
+ };
18
+ readonly address2: {
19
+ readonly type: "string";
20
+ readonly nullable: true;
21
+ readonly description: "Apartment, suite, unit, building, floor, etc.";
22
+ readonly example: "Suite 100";
23
+ };
24
+ readonly postalCode: {
25
+ readonly type: "string";
26
+ readonly nullable: true;
27
+ readonly description: "Postal code as a string.";
28
+ readonly example: "94105";
29
+ };
30
+ readonly city: {
31
+ readonly type: "string";
32
+ readonly nullable: true;
33
+ readonly description: "City or town name.";
34
+ readonly example: "San Francisco";
35
+ };
36
+ readonly state: {
37
+ readonly type: "string";
38
+ readonly nullable: true;
39
+ readonly description: "State, province, or region name.";
40
+ readonly example: "CA";
41
+ };
42
+ readonly country: {
43
+ readonly type: "string";
44
+ readonly nullable: true;
45
+ readonly description: "Country as a ISO 3166-1 alpha-2 country code.";
46
+ readonly example: "US";
47
+ };
48
+ readonly phone: {
49
+ readonly type: "string";
50
+ readonly nullable: true;
51
+ readonly description: "Phone number as a string.";
52
+ readonly example: "+1 555 555 5555";
53
+ };
54
+ readonly email: {
55
+ readonly type: "string";
56
+ readonly format: "email";
57
+ readonly description: "Email address used for billing as a string.";
58
+ readonly example: "email@example.com";
59
+ };
60
+ readonly first_name: {
61
+ readonly type: "string";
62
+ readonly description: "First name of the billing contact person.";
63
+ readonly example: "John";
64
+ };
65
+ readonly last_name: {
66
+ readonly type: "string";
67
+ readonly description: "Last name of the billing contact person.";
68
+ readonly example: "Doe";
69
+ };
70
+ };
71
+ readonly required: readonly ["email", "first_name", "last_name"];
72
+ readonly additionalProperties: false;
73
+ };
1
74
  export declare const ClusterCreateInputSchema: {
2
75
  readonly type: "object";
3
76
  readonly properties: {
@@ -469,276 +542,6 @@ export declare const FleetUpdateInputSchema: {
469
542
  };
470
543
  readonly additionalProperties: false;
471
544
  };
472
- export declare const InfrastructureFilterSchema: {
473
- readonly type: "object";
474
- readonly properties: {
475
- readonly version: {
476
- readonly type: "integer";
477
- readonly description: "Version of the infrastructure filter definition. Currently only version 1 is supported.";
478
- readonly default: 1;
479
- readonly example: 1;
480
- readonly enum: readonly [1];
481
- };
482
- readonly provider: {
483
- readonly type: "array";
484
- readonly items: {
485
- readonly type: "string";
486
- };
487
- readonly description: "Limit selection of cloud providers to this list. For the full list of supported providers, see [Providers](https://cloudfleet.ai/docs/cloud-infrastructure/providers/)";
488
- readonly example: "AWS";
489
- };
490
- readonly region: {
491
- readonly type: "array";
492
- readonly items: {
493
- readonly type: "string";
494
- };
495
- readonly description: "Limits selection of cloud regions to this list of Cloudfleet regions. For the full list of normalized regions and their mapping to CSP regions, see [Regions](https://cloudfleet.ai/docs/cloud-infrastructure/node-regions/)";
496
- readonly example: "northamerica";
497
- };
498
- readonly sub_region: {
499
- readonly type: "array";
500
- readonly items: {
501
- readonly type: "string";
502
- };
503
- readonly description: "Limits selection of cloud regions to this list of Cloudfleet regions. For the full list of normalized regions and their mapping to CSP regions, see [Regions](https://cloudfleet.ai/docs/cloud-infrastructure/node-regions/)";
504
- readonly example: "west";
505
- };
506
- readonly csp_region: {
507
- readonly type: "array";
508
- readonly items: {
509
- readonly type: "string";
510
- };
511
- readonly description: "Limits selection of cloud regions to this list of canonical provider regions";
512
- readonly example: "eu-west-1";
513
- };
514
- readonly instance_type: {
515
- readonly type: "array";
516
- readonly items: {
517
- readonly type: "string";
518
- };
519
- readonly description: "Limits selection of instance types to this list. Instance / VM type as defined by the cloud service provider";
520
- readonly example: "p4d.24xlarge";
521
- };
522
- readonly accelerator_name: {
523
- readonly type: "array";
524
- readonly items: {
525
- readonly type: "string";
526
- };
527
- readonly description: "List of Normalized accelerator model names. For example, all variations of Nvidia A100 GPUs will have 'A100' as accelerator name with various memory configurations set in accelerator_memory field";
528
- readonly example: "A100";
529
- };
530
- readonly accelerator_manufacturer: {
531
- readonly type: "array";
532
- readonly items: {
533
- readonly type: "string";
534
- };
535
- readonly description: "List of normalized accelerator manufacturer names. For example, all Nvidia GPUs will have 'NVIDIA' as accelerator manufacturer";
536
- readonly example: "NVIDIA";
537
- };
538
- readonly accelerator_count_min: {
539
- readonly type: "integer";
540
- readonly minimum: 0;
541
- readonly description: "Minimum number of accelerators available on the instance. Some cloud providers support shared accelerators, so the number of accelerators may be a fraction of the number of physical accelerators.";
542
- readonly example: 1;
543
- };
544
- readonly accelerator_count_max: {
545
- readonly type: "integer";
546
- readonly minimum: 0;
547
- readonly description: "Maximum number of accelerators available on the instance. Some cloud providers support shared accelerators, so the number of accelerators may be a fraction of the number of physical accelerators.";
548
- readonly example: 8;
549
- };
550
- readonly accelerator_memory_min: {
551
- readonly type: "number";
552
- readonly format: "float";
553
- readonly description: "Minimum amount of accelerator memory available to each accelerator. For example, Nvidia A100 GPUs will typically have '40.0' gibibytes (GiB) of memory, while A100 GPUs with HBM2E memory will have '80.0' gibibytes (GiB) of memory";
554
- readonly example: 40;
555
- };
556
- readonly accelerator_memory_max: {
557
- readonly type: "number";
558
- readonly format: "float";
559
- readonly description: "Maximum amount of accelerator memory available to each accelerator. For example, Nvidia A100 GPUs will typically have '40.0' gibibytes (GiB) of memory, while A100 GPUs with HBM2E memory will have '80.0' gibibytes (GiB) of memory";
560
- readonly example: 80;
561
- };
562
- readonly memory_min: {
563
- readonly type: "integer";
564
- readonly minimum: 0;
565
- readonly description: "Minimum amount of RAM in gibibytes (GiB)";
566
- readonly example: 32;
567
- };
568
- readonly memory_max: {
569
- readonly type: "integer";
570
- readonly minimum: 0;
571
- readonly description: "Maximum amount of RAM in gibibytes (GiB)";
572
- readonly example: 64;
573
- };
574
- readonly vcpu_min: {
575
- readonly type: "integer";
576
- readonly minimum: 1;
577
- readonly description: "Minimum number of vCPUs as defined by the cloud service provider. Some cloud providers use hyperthreading, so the number of vCPUs may be twice as high as the number of physical cores.";
578
- readonly example: 32;
579
- };
580
- readonly vcpu_max: {
581
- readonly type: "integer";
582
- readonly minimum: 1;
583
- readonly description: "Maximum number of vCPUs as defined by the cloud service provider. Some cloud providers use hyperthreading, so the number of vCPUs may be twice as high as the number of physical cores.";
584
- readonly example: 128;
585
- };
586
- readonly storage_total_min: {
587
- readonly type: "number";
588
- readonly format: "float";
589
- readonly minimum: 10;
590
- readonly description: "Minimum total storage in GiB (attached and local)";
591
- readonly example: 128;
592
- };
593
- readonly storage_total_max: {
594
- readonly type: "number";
595
- readonly format: "float";
596
- readonly minimum: 10;
597
- readonly description: "Maximum total storage in GiB (attached and local)";
598
- readonly example: 256;
599
- };
600
- readonly storage_local_min: {
601
- readonly type: "number";
602
- readonly format: "float";
603
- readonly description: "Minimum volume of directly attached, block-device local storage in gibibytes (GiB)";
604
- readonly example: 24;
605
- };
606
- readonly storage_local_max: {
607
- readonly type: "number";
608
- readonly format: "float";
609
- readonly description: "Maximum volume of directly attached, block-device local storage in gibibytes (GiB)";
610
- readonly example: 128;
611
- };
612
- readonly price_min: {
613
- readonly type: "number";
614
- readonly format: "float";
615
- readonly description: "Minimum price of running the inctance per hour in USD as defined by the cloud service provider. The cheapest instance will be selected.";
616
- readonly example: 10;
617
- };
618
- readonly price_max: {
619
- readonly type: "number";
620
- readonly format: "float";
621
- readonly description: "Maximum price of running the inctance per hour in USD as defined by the cloud service provider. The cheapest instance will be selected.";
622
- readonly example: 50;
623
- };
624
- };
625
- readonly additionalProperties: false;
626
- };
627
- export declare const InfrastructureInstanceSchema: {
628
- readonly type: "object";
629
- readonly properties: {
630
- readonly sku: {
631
- readonly type: "string";
632
- readonly description: "Cloudfleet instance SKU. Has a format of <provider>-<csp_region>-<instance_type>.";
633
- readonly example: "AWS-EU-WEST-1C-P4D.24XLARGE";
634
- };
635
- readonly provider: {
636
- readonly type: "string";
637
- readonly description: "Normalized cloud service provider name. For the full list of supported providers, see [Providers](https://cloudfleet.ai/docs/cloud-infrastructure/providers/)";
638
- readonly example: "AWS";
639
- };
640
- readonly region: {
641
- readonly type: "string";
642
- readonly description: "Normalized region. For the full list of normalized regions and their mapping to CSP regions, see [Regions](https://cloudfleet.ai/docs/cloud-infrastructure/node-regions/)";
643
- readonly example: "europe";
644
- };
645
- readonly sub_region: {
646
- readonly type: "string";
647
- readonly description: "Normalized sub-region. For the full list of normalized regions and their mapping to CSP regions, see [Regions](https://cloudfleet.ai/docs/cloud-infrastructure/node-regions/)";
648
- readonly example: "west";
649
- };
650
- readonly csp_region: {
651
- readonly type: "string";
652
- readonly description: "Region as defined by the cloud service provider";
653
- readonly example: "eu-west-1";
654
- };
655
- readonly csp_zone: {
656
- readonly type: "string";
657
- readonly description: "Availability zone as defined by the cloud service provider";
658
- readonly example: "eu-west-1a";
659
- };
660
- readonly instance_type: {
661
- readonly type: "string";
662
- readonly description: "Instance / VM type as defined by the cloud service provider";
663
- readonly example: "p4d.24xlarge";
664
- };
665
- readonly architecture: {
666
- readonly type: "string";
667
- readonly description: "Instance CPU architecture";
668
- readonly example: "amd64";
669
- };
670
- readonly os: {
671
- readonly type: "string";
672
- readonly description: "Instance operating system";
673
- readonly example: "linux";
674
- };
675
- readonly vcpu: {
676
- readonly type: "number";
677
- readonly format: "float";
678
- readonly minimum: 1;
679
- readonly description: "CPU count as defined by the cloud service provider. Some cloud providers use hyperthreading, so the number of vCPUs may be twice as high as the number of physical cores.";
680
- readonly example: 96;
681
- };
682
- readonly memory: {
683
- readonly type: "number";
684
- readonly format: "float";
685
- readonly minimum: 1;
686
- readonly description: "Total amount of RAM in gibibytes (GiB)";
687
- readonly example: 1152;
688
- };
689
- readonly local_storage: {
690
- readonly type: "number";
691
- readonly format: "float";
692
- readonly description: "Volume of directly attached, block-device local storage in gibibytes (GiB)";
693
- readonly example: 8000;
694
- };
695
- readonly accelerator_name: {
696
- readonly type: "string";
697
- readonly description: "Normalized model name of accelerator. For example, all variations of Nvidia A100 GPUs will have 'A100' as accelerator name with various memory configurations set in accelerator_memory field";
698
- readonly example: "A100";
699
- };
700
- readonly accelerator_manufacturer: {
701
- readonly type: "string";
702
- readonly description: "Normalized manufacturer name of accelerator. For example, all Nvidia GPUs will have 'NVIDIA' as accelerator manufacturer";
703
- readonly example: "NVIDIA";
704
- };
705
- readonly accelerator_count: {
706
- readonly type: "integer";
707
- readonly description: "Number of accelerators available on the instance. Some cloud providers support shared accelerators, so the number of accelerators may be a fraction of the number of physical accelerators.";
708
- readonly example: 8;
709
- };
710
- readonly accelerator_memory: {
711
- readonly type: "number";
712
- readonly format: "float";
713
- readonly description: "Ammount of accelerator memory available to each accelerator. For example, Nvidia A100 GPUs will typically have '40.0' gibibytes (GiB) of memory, while A100 GPUs with HBM2E memory will have '80.0' gibibytes (GiB) of memory";
714
- readonly example: 40;
715
- };
716
- readonly pods_capacity: {
717
- readonly type: "number";
718
- readonly format: "float";
719
- readonly description: "Maximum number of pods that can be run on this instance type.";
720
- readonly example: 110;
721
- };
722
- readonly capacity_type: {
723
- readonly type: "string";
724
- readonly description: "Capacity type of the instance. E.g. `on-demand`, `spot`.";
725
- readonly example: "on-demand";
726
- };
727
- readonly price: {
728
- readonly type: "number";
729
- readonly format: "float";
730
- readonly description: "Price of running the inctance per hour in USD as defined by the cloud service provider";
731
- readonly example: 35.39655;
732
- };
733
- readonly available: {
734
- readonly type: "boolean";
735
- readonly description: "Whether this instance type is available.";
736
- readonly example: true;
737
- };
738
- };
739
- readonly required: readonly ["sku", "provider", "region", "sub_region", "csp_region", "csp_zone", "instance_type", "architecture", "os", "vcpu", "memory", "local_storage", "price"];
740
- readonly additionalProperties: false;
741
- };
742
545
  export declare const InviteSchema: {
743
546
  readonly type: "object";
744
547
  readonly properties: {
@@ -1118,51 +921,9 @@ export declare const InvoiceSchema: {
1118
921
  };
1119
922
  readonly additionalProperties: false;
1120
923
  };
1121
- export declare const OrganizationContactInfoSchema: {
924
+ export declare const OrganizationCreateInputSchema: {
1122
925
  readonly type: "object";
1123
926
  readonly properties: {
1124
- readonly address1: {
1125
- readonly type: "string";
1126
- readonly nullable: true;
1127
- readonly description: "Street address, P.O. box, c/o";
1128
- readonly example: "123 Main St.";
1129
- };
1130
- readonly address2: {
1131
- readonly type: "string";
1132
- readonly nullable: true;
1133
- readonly description: "Apartment, suite, unit, building, floor, etc.";
1134
- readonly example: "Suite 100";
1135
- };
1136
- readonly postalCode: {
1137
- readonly type: "string";
1138
- readonly nullable: true;
1139
- readonly description: "Postal code as a string.";
1140
- readonly example: "94105";
1141
- };
1142
- readonly city: {
1143
- readonly type: "string";
1144
- readonly nullable: true;
1145
- readonly description: "City or town name.";
1146
- readonly example: "San Francisco";
1147
- };
1148
- readonly state: {
1149
- readonly type: "string";
1150
- readonly nullable: true;
1151
- readonly description: "State, province, or region name.";
1152
- readonly example: "CA";
1153
- };
1154
- readonly country: {
1155
- readonly type: "string";
1156
- readonly nullable: true;
1157
- readonly description: "Country as a ISO 3166-1 alpha-2 country code.";
1158
- readonly example: "US";
1159
- };
1160
- readonly phone: {
1161
- readonly type: "string";
1162
- readonly nullable: true;
1163
- readonly description: "Phone number as a string.";
1164
- readonly example: "+1 555 555 5555";
1165
- };
1166
927
  readonly email: {
1167
928
  readonly type: "string";
1168
929
  readonly format: "email";
@@ -1179,14 +940,7 @@ export declare const OrganizationContactInfoSchema: {
1179
940
  readonly description: "Last name of the billing contact person.";
1180
941
  readonly example: "Doe";
1181
942
  };
1182
- };
1183
- readonly required: readonly ["email", "first_name", "last_name"];
1184
- readonly additionalProperties: false;
1185
- };
1186
- export declare const OrganizationCreateInputSchema: {
1187
- readonly type: "object";
1188
- readonly properties: {
1189
- readonly name: {
943
+ readonly company_name: {
1190
944
  readonly type: "string";
1191
945
  readonly maxLength: 120;
1192
946
  readonly minLength: 2;
@@ -1194,150 +948,31 @@ export declare const OrganizationCreateInputSchema: {
1194
948
  readonly description: "Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.";
1195
949
  readonly example: "ACME Corp.";
1196
950
  };
1197
- readonly contactInfo: {
1198
- readonly type: "object";
1199
- readonly properties: {
1200
- readonly address1: {
1201
- readonly type: "string";
1202
- readonly description: "Street address, P.O. box, c/o";
1203
- readonly example: "123 Main St.";
1204
- };
1205
- readonly address2: {
1206
- readonly type: "string";
1207
- readonly description: "Apartment, suite, unit, building, floor, etc.";
1208
- readonly example: "Suite 100";
1209
- };
1210
- readonly postalCode: {
1211
- readonly type: "string";
1212
- readonly description: "Postal code as a string.";
1213
- readonly example: "94105";
1214
- };
1215
- readonly city: {
1216
- readonly type: "string";
1217
- readonly description: "City or town name.";
1218
- readonly example: "San Francisco";
1219
- };
1220
- readonly state: {
1221
- readonly type: "string";
1222
- readonly description: "State, province, or region name.";
1223
- readonly example: "CA";
1224
- };
1225
- readonly country: {
1226
- readonly type: "string";
1227
- readonly description: "Country as a ISO 3166-1 alpha-2 country code.";
1228
- readonly example: "US";
1229
- };
1230
- readonly phone: {
1231
- readonly type: "string";
1232
- readonly description: "Phone number as a string.";
1233
- readonly example: "+1 555 555 5555";
1234
- };
1235
- readonly email: {
1236
- readonly type: "string";
1237
- readonly format: "email";
1238
- readonly description: "Email address used for billing as a string.";
1239
- readonly example: "email@example.com";
1240
- };
1241
- readonly first_name: {
1242
- readonly type: "string";
1243
- readonly description: "First name of the billing contact person.";
1244
- readonly example: "John";
1245
- };
1246
- readonly last_name: {
1247
- readonly type: "string";
1248
- readonly description: "Last name of the billing contact person.";
1249
- readonly example: "Doe";
1250
- };
1251
- };
1252
- readonly required: readonly ["email", "first_name", "last_name"];
1253
- readonly additionalProperties: false;
1254
- readonly description: "Organization contact information and billing address.";
1255
- };
1256
951
  readonly password: {
1257
952
  readonly type: "string";
1258
953
  readonly minLength: 8;
1259
954
  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.";
1260
955
  };
1261
956
  };
1262
- readonly required: readonly ["name", "contactInfo", "password"];
957
+ readonly required: readonly ["email", "first_name", "last_name", "company_name", "password"];
1263
958
  readonly additionalProperties: false;
1264
959
  };
1265
960
  export declare const OrganizationSchema: {
1266
961
  readonly type: "object";
1267
962
  readonly properties: {
963
+ readonly id: {
964
+ readonly type: "string";
965
+ readonly format: "uuid";
966
+ readonly description: "Unique identifier of the organization. UUID v4 string in canonical form";
967
+ readonly example: "e94d30ec-a2dd-4dcb-832c-ac2be144ba91";
968
+ };
1268
969
  readonly name: {
1269
970
  readonly type: "string";
1270
971
  readonly maxLength: 120;
1271
972
  readonly minLength: 2;
1272
- readonly pattern: "^(?!\\s)(?!.*\\s$)(?=.*[a-zA-ZÆÐƎƏƐƔIJŊŒẞÞǷȜæðǝəɛɣijŋœĸſßþƿȝĄƁÇĐƊĘĦĮƘŁØƠŞȘŢȚŦŲƯY̨Ƴąɓçđɗęħįƙłøơşșţțŧųưy̨ƴÁÀÂÄǍĂĀÃÅǺĄÆǼǢƁĆĊĈČÇĎḌĐƊÐÉÈĖÊËĚĔĒĘẸƎƏƐĠĜǦĞĢƔáàâäǎăāãåǻąæǽǣɓćċĉčçďḍđɗðéèėêëěĕēęẹǝəɛġĝǧğģɣĤḤĦIÍÌİÎÏǏĬĪĨĮỊIJĴĶƘĹĻŁĽĿʼNŃN̈ŇÑŅŊÓÒÔÖǑŎŌÕŐỌØǾƠŒĥḥħıíìiîïǐĭīĩįịijĵķƙĸĺļłľŀʼnńn̈ňñņŋóòôöǒŏōõőọøǿơœŔŘŖŚŜŠŞȘṢẞŤŢṬŦÞÚÙÛÜǓŬŪŨŰŮŲỤƯẂẀŴẄǷÝỲŶŸȲỸƳŹŻŽẒŕřŗſśŝšşșṣßťţṭŧþúùûüǔŭūũűůųụưẃẁŵẅƿýỳŷÿȳỹƴźżžẓ0-9])[a-zA-ZÆÐƎƏƐƔIJŊŒẞÞǷȜæðǝəɛɣijŋœĸſßþƿȝĄƁÇĐƊĘĦĮƘŁØƠŞȘŢȚŦŲƯY̨Ƴąɓçđɗęħįƙłøơşșţțŧųưy̨ƴÁÀÂÄǍĂĀÃÅǺĄÆǼǢƁĆĊĈČÇĎḌĐƊÐÉÈĖÊËĚĔĒĘẸƎƏƐĠĜǦĞĢƔáàâäǎăāãåǻąæǽǣɓćċĉčçďḍđɗðéèėêëěĕēęẹǝəɛġĝǧğģɣĤḤĦIÍÌİÎÏǏĬĪĨĮỊIJĴĶƘĹĻŁĽĿʼNŃN̈ŇÑŅŊÓÒÔÖǑŎŌÕŐỌØǾƠŒĥḥħıíìiîïǐĭīĩįịijĵķƙĸĺļłľŀʼnńn̈ňñņŋóòôöǒŏōõőọøǿơœŔŘŖŚŜŠŞȘṢẞŤŢṬŦÞÚÙÛÜǓŬŪŨŰŮŲỤƯẂẀŴẄǷÝỲŶŸȲỸƳŹŻŽẒŕřŗſśŝšşșṣßťţṭŧþúùûüǔŭūũűůųụưẃẁŵẅƿýỳŷÿȳỹƴźżžẓ0-9 -.]{2,}$";
1273
973
  readonly description: "Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.";
1274
974
  readonly example: "ACME Corp.";
1275
975
  };
1276
- readonly contactInfo: {
1277
- readonly type: "object";
1278
- readonly properties: {
1279
- readonly address1: {
1280
- readonly type: "string";
1281
- readonly description: "Street address, P.O. box, c/o";
1282
- readonly example: "123 Main St.";
1283
- };
1284
- readonly address2: {
1285
- readonly type: "string";
1286
- readonly description: "Apartment, suite, unit, building, floor, etc.";
1287
- readonly example: "Suite 100";
1288
- };
1289
- readonly postalCode: {
1290
- readonly type: "string";
1291
- readonly description: "Postal code as a string.";
1292
- readonly example: "94105";
1293
- };
1294
- readonly city: {
1295
- readonly type: "string";
1296
- readonly description: "City or town name.";
1297
- readonly example: "San Francisco";
1298
- };
1299
- readonly state: {
1300
- readonly type: "string";
1301
- readonly description: "State, province, or region name.";
1302
- readonly example: "CA";
1303
- };
1304
- readonly country: {
1305
- readonly type: "string";
1306
- readonly description: "Country as a ISO 3166-1 alpha-2 country code.";
1307
- readonly example: "US";
1308
- };
1309
- readonly phone: {
1310
- readonly type: "string";
1311
- readonly description: "Phone number as a string.";
1312
- readonly example: "+1 555 555 5555";
1313
- };
1314
- readonly email: {
1315
- readonly type: "string";
1316
- readonly format: "email";
1317
- readonly description: "Email address used for billing as a string.";
1318
- readonly example: "email@example.com";
1319
- };
1320
- readonly first_name: {
1321
- readonly type: "string";
1322
- readonly description: "First name of the billing contact person.";
1323
- readonly example: "John";
1324
- };
1325
- readonly last_name: {
1326
- readonly type: "string";
1327
- readonly description: "Last name of the billing contact person.";
1328
- readonly example: "Doe";
1329
- };
1330
- };
1331
- readonly required: readonly ["email", "first_name", "last_name"];
1332
- readonly additionalProperties: false;
1333
- readonly description: "Organization contact information and billing address.";
1334
- };
1335
- readonly id: {
1336
- readonly type: "string";
1337
- readonly format: "uuid";
1338
- readonly description: "Unique identifier of the organization. UUID v4 string in canonical form";
1339
- readonly example: "e94d30ec-a2dd-4dcb-832c-ac2be144ba91";
1340
- };
1341
976
  readonly date_created: {
1342
977
  readonly type: "string";
1343
978
  readonly format: "date-time";
@@ -1426,96 +1061,13 @@ export declare const OrganizationSchema: {
1426
1061
  readonly additionalProperties: false;
1427
1062
  readonly description: "For security reasons, platform quota is controlled by Cloudfleet and can be updated only by Cloudfleet administrators. Please open a support ticket if you need to change the platform quota.";
1428
1063
  };
1429
- readonly pending_actions: {
1430
- readonly type: "array";
1431
- readonly items: {
1432
- readonly type: "string";
1433
- readonly example: "signup-payment-method";
1434
- readonly enum: readonly ["signup-billing-address", "signup-payment-method", "signup-invite-team", "signup-create-cluster"];
1435
- };
1436
- readonly description: "List of pending actions that the user needs to complete. Used in Cloudfleet console to guide the user through the onboarding process.";
1437
- };
1438
1064
  readonly status: {
1439
1065
  readonly type: "string";
1440
1066
  readonly description: "Status of the organization. Can be `active` or `closed`, or `suspended`.";
1441
1067
  readonly enum: readonly ["active", "closed", "suspended"];
1442
1068
  };
1443
1069
  };
1444
- readonly required: readonly ["name", "contactInfo", "id", "date_created", "quota", "pending_actions", "status"];
1445
- readonly additionalProperties: false;
1446
- };
1447
- export declare const OrganizationUpdateInputSchema: {
1448
- readonly type: "object";
1449
- readonly properties: {
1450
- readonly name: {
1451
- readonly type: "string";
1452
- readonly maxLength: 120;
1453
- readonly minLength: 2;
1454
- readonly pattern: "^(?!\\s)(?!.*\\s$)(?=.*[a-zA-ZÆÐƎƏƐƔIJŊŒẞÞǷȜæðǝəɛɣijŋœĸſßþƿȝĄƁÇĐƊĘĦĮƘŁØƠŞȘŢȚŦŲƯY̨Ƴąɓçđɗęħįƙłøơşșţțŧųưy̨ƴÁÀÂÄǍĂĀÃÅǺĄÆǼǢƁĆĊĈČÇĎḌĐƊÐÉÈĖÊËĚĔĒĘẸƎƏƐĠĜǦĞĢƔáàâäǎăāãåǻąæǽǣɓćċĉčçďḍđɗðéèėêëěĕēęẹǝəɛġĝǧğģɣĤḤĦIÍÌİÎÏǏĬĪĨĮỊIJĴĶƘĹĻŁĽĿʼNŃN̈ŇÑŅŊÓÒÔÖǑŎŌÕŐỌØǾƠŒĥḥħıíìiîïǐĭīĩįịijĵķƙĸĺļłľŀʼnńn̈ňñņŋóòôöǒŏōõőọøǿơœŔŘŖŚŜŠŞȘṢẞŤŢṬŦÞÚÙÛÜǓŬŪŨŰŮŲỤƯẂẀŴẄǷÝỲŶŸȲỸƳŹŻŽẒŕřŗſśŝšşșṣßťţṭŧþúùûüǔŭūũűůųụưẃẁŵẅƿýỳŷÿȳỹƴźżžẓ0-9])[a-zA-ZÆÐƎƏƐƔIJŊŒẞÞǷȜæðǝəɛɣijŋœĸſßþƿȝĄƁÇĐƊĘĦĮƘŁØƠŞȘŢȚŦŲƯY̨Ƴąɓçđɗęħįƙłøơşșţțŧųưy̨ƴÁÀÂÄǍĂĀÃÅǺĄÆǼǢƁĆĊĈČÇĎḌĐƊÐÉÈĖÊËĚĔĒĘẸƎƏƐĠĜǦĞĢƔáàâäǎăāãåǻąæǽǣɓćċĉčçďḍđɗðéèėêëěĕēęẹǝəɛġĝǧğģɣĤḤĦIÍÌİÎÏǏĬĪĨĮỊIJĴĶƘĹĻŁĽĿʼNŃN̈ŇÑŅŊÓÒÔÖǑŎŌÕŐỌØǾƠŒĥḥħıíìiîïǐĭīĩįịijĵķƙĸĺļłľŀʼnńn̈ňñņŋóòôöǒŏōõőọøǿơœŔŘŖŚŜŠŞȘṢẞŤŢṬŦÞÚÙÛÜǓŬŪŨŰŮŲỤƯẂẀŴẄǷÝỲŶŸȲỸƳŹŻŽẒŕřŗſśŝšşșṣßťţṭŧþúùûüǔŭūũűůųụưẃẁŵẅƿýỳŷÿȳỹƴźżžẓ0-9 -.]{2,}$";
1455
- readonly description: "Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.";
1456
- readonly example: "ACME Corp.";
1457
- };
1458
- readonly contactInfo: {
1459
- readonly type: "object";
1460
- readonly properties: {
1461
- readonly address1: {
1462
- readonly type: "string";
1463
- readonly description: "Street address, P.O. box, c/o";
1464
- readonly example: "123 Main St.";
1465
- };
1466
- readonly address2: {
1467
- readonly type: "string";
1468
- readonly description: "Apartment, suite, unit, building, floor, etc.";
1469
- readonly example: "Suite 100";
1470
- };
1471
- readonly postalCode: {
1472
- readonly type: "string";
1473
- readonly description: "Postal code as a string.";
1474
- readonly example: "94105";
1475
- };
1476
- readonly city: {
1477
- readonly type: "string";
1478
- readonly description: "City or town name.";
1479
- readonly example: "San Francisco";
1480
- };
1481
- readonly state: {
1482
- readonly type: "string";
1483
- readonly description: "State, province, or region name.";
1484
- readonly example: "CA";
1485
- };
1486
- readonly country: {
1487
- readonly type: "string";
1488
- readonly description: "Country as a ISO 3166-1 alpha-2 country code.";
1489
- readonly example: "US";
1490
- };
1491
- readonly phone: {
1492
- readonly type: "string";
1493
- readonly description: "Phone number as a string.";
1494
- readonly example: "+1 555 555 5555";
1495
- };
1496
- readonly email: {
1497
- readonly type: "string";
1498
- readonly format: "email";
1499
- readonly description: "Email address used for billing as a string.";
1500
- readonly example: "email@example.com";
1501
- };
1502
- readonly first_name: {
1503
- readonly type: "string";
1504
- readonly description: "First name of the billing contact person.";
1505
- readonly example: "John";
1506
- };
1507
- readonly last_name: {
1508
- readonly type: "string";
1509
- readonly description: "Last name of the billing contact person.";
1510
- readonly example: "Doe";
1511
- };
1512
- };
1513
- readonly required: readonly ["email", "first_name", "last_name"];
1514
- readonly additionalProperties: false;
1515
- readonly description: "Organization contact information and billing address.";
1516
- };
1517
- };
1518
- readonly required: readonly ["contactInfo"];
1070
+ readonly required: readonly ["id", "date_created", "quota", "status"];
1519
1071
  readonly additionalProperties: false;
1520
1072
  };
1521
1073
  export declare const PaymentMethodSchema: {
@@ -1765,7 +1317,7 @@ export declare const UserCreateInputSchema: {
1765
1317
  readonly password: {
1766
1318
  readonly type: "string";
1767
1319
  readonly minLength: 8;
1768
- readonly description: "User password. Must be at least 8 characters long and contain at least one uppercase letter, one lowercase letter, one number and one special character.";
1320
+ readonly description: "User password. Must be at least 8 characters long.";
1769
1321
  };
1770
1322
  readonly status: {
1771
1323
  readonly type: "string";