@cloudfleet/sdk 0.3.39 → 0.4.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.
- package/dist/schemas.gen.d.ts +83 -261
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +84 -262
- package/dist/schemas.gen.js.map +1 -1
- package/dist/sdk.gen.d.ts +13 -9
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/sdk.gen.js +26 -17
- package/dist/sdk.gen.js.map +1 -1
- package/dist/types.gen.d.ts +78 -194
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +138 -448
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +19 -59
- package/dist/zod.gen.js.map +1 -1
- package/package.json +1 -1
package/dist/zod.gen.d.ts
CHANGED
|
@@ -1,4 +1,41 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
+
export declare const zBillingContact: z.ZodObject<{
|
|
3
|
+
company: z.ZodOptional<z.ZodString>;
|
|
4
|
+
address1: z.ZodOptional<z.ZodString>;
|
|
5
|
+
address2: z.ZodOptional<z.ZodString>;
|
|
6
|
+
postalCode: z.ZodOptional<z.ZodString>;
|
|
7
|
+
city: z.ZodOptional<z.ZodString>;
|
|
8
|
+
state: z.ZodOptional<z.ZodString>;
|
|
9
|
+
country: z.ZodOptional<z.ZodString>;
|
|
10
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
11
|
+
email: z.ZodString;
|
|
12
|
+
first_name: z.ZodString;
|
|
13
|
+
last_name: z.ZodString;
|
|
14
|
+
}, "strip", z.ZodTypeAny, {
|
|
15
|
+
email: string;
|
|
16
|
+
first_name: string;
|
|
17
|
+
last_name: string;
|
|
18
|
+
state?: string | undefined;
|
|
19
|
+
country?: string | undefined;
|
|
20
|
+
company?: string | undefined;
|
|
21
|
+
address1?: string | undefined;
|
|
22
|
+
address2?: string | undefined;
|
|
23
|
+
postalCode?: string | undefined;
|
|
24
|
+
city?: string | undefined;
|
|
25
|
+
phone?: string | undefined;
|
|
26
|
+
}, {
|
|
27
|
+
email: string;
|
|
28
|
+
first_name: string;
|
|
29
|
+
last_name: string;
|
|
30
|
+
state?: string | undefined;
|
|
31
|
+
country?: string | undefined;
|
|
32
|
+
company?: string | undefined;
|
|
33
|
+
address1?: string | undefined;
|
|
34
|
+
address2?: string | undefined;
|
|
35
|
+
postalCode?: string | undefined;
|
|
36
|
+
city?: string | undefined;
|
|
37
|
+
phone?: string | undefined;
|
|
38
|
+
}>;
|
|
2
39
|
export declare const zClusterCreateInput: z.ZodObject<{
|
|
3
40
|
name: z.ZodString;
|
|
4
41
|
region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
|
|
@@ -816,145 +853,28 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
816
853
|
childItems?: unknown[] | undefined;
|
|
817
854
|
}[] | undefined;
|
|
818
855
|
}>;
|
|
819
|
-
export declare const
|
|
820
|
-
address1: z.ZodOptional<z.ZodString>;
|
|
821
|
-
address2: z.ZodOptional<z.ZodString>;
|
|
822
|
-
postalCode: z.ZodOptional<z.ZodString>;
|
|
823
|
-
city: z.ZodOptional<z.ZodString>;
|
|
824
|
-
state: z.ZodOptional<z.ZodString>;
|
|
825
|
-
country: z.ZodOptional<z.ZodString>;
|
|
826
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
856
|
+
export declare const zOrganizationCreateInput: z.ZodObject<{
|
|
827
857
|
email: z.ZodString;
|
|
828
858
|
first_name: z.ZodString;
|
|
829
859
|
last_name: z.ZodString;
|
|
860
|
+
company_name: z.ZodString;
|
|
861
|
+
password: z.ZodString;
|
|
830
862
|
}, "strip", z.ZodTypeAny, {
|
|
831
863
|
email: string;
|
|
832
864
|
first_name: string;
|
|
833
865
|
last_name: string;
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
address1?: string | undefined;
|
|
837
|
-
address2?: string | undefined;
|
|
838
|
-
postalCode?: string | undefined;
|
|
839
|
-
city?: string | undefined;
|
|
840
|
-
phone?: string | undefined;
|
|
866
|
+
company_name: string;
|
|
867
|
+
password: string;
|
|
841
868
|
}, {
|
|
842
869
|
email: string;
|
|
843
870
|
first_name: string;
|
|
844
871
|
last_name: string;
|
|
845
|
-
|
|
846
|
-
country?: string | undefined;
|
|
847
|
-
address1?: string | undefined;
|
|
848
|
-
address2?: string | undefined;
|
|
849
|
-
postalCode?: string | undefined;
|
|
850
|
-
city?: string | undefined;
|
|
851
|
-
phone?: string | undefined;
|
|
852
|
-
}>;
|
|
853
|
-
export declare const zOrganizationCreateInput: z.ZodObject<{
|
|
854
|
-
name: z.ZodString;
|
|
855
|
-
contactInfo: z.ZodObject<{
|
|
856
|
-
address1: z.ZodOptional<z.ZodString>;
|
|
857
|
-
address2: z.ZodOptional<z.ZodString>;
|
|
858
|
-
postalCode: z.ZodOptional<z.ZodString>;
|
|
859
|
-
city: z.ZodOptional<z.ZodString>;
|
|
860
|
-
state: z.ZodOptional<z.ZodString>;
|
|
861
|
-
country: z.ZodOptional<z.ZodString>;
|
|
862
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
863
|
-
email: z.ZodString;
|
|
864
|
-
first_name: z.ZodString;
|
|
865
|
-
last_name: z.ZodString;
|
|
866
|
-
}, "strip", z.ZodTypeAny, {
|
|
867
|
-
email: string;
|
|
868
|
-
first_name: string;
|
|
869
|
-
last_name: string;
|
|
870
|
-
state?: string | undefined;
|
|
871
|
-
country?: string | undefined;
|
|
872
|
-
address1?: string | undefined;
|
|
873
|
-
address2?: string | undefined;
|
|
874
|
-
postalCode?: string | undefined;
|
|
875
|
-
city?: string | undefined;
|
|
876
|
-
phone?: string | undefined;
|
|
877
|
-
}, {
|
|
878
|
-
email: string;
|
|
879
|
-
first_name: string;
|
|
880
|
-
last_name: string;
|
|
881
|
-
state?: string | undefined;
|
|
882
|
-
country?: string | undefined;
|
|
883
|
-
address1?: string | undefined;
|
|
884
|
-
address2?: string | undefined;
|
|
885
|
-
postalCode?: string | undefined;
|
|
886
|
-
city?: string | undefined;
|
|
887
|
-
phone?: string | undefined;
|
|
888
|
-
}>;
|
|
889
|
-
password: z.ZodString;
|
|
890
|
-
}, "strip", z.ZodTypeAny, {
|
|
891
|
-
name: string;
|
|
892
|
-
contactInfo: {
|
|
893
|
-
email: string;
|
|
894
|
-
first_name: string;
|
|
895
|
-
last_name: string;
|
|
896
|
-
state?: string | undefined;
|
|
897
|
-
country?: string | undefined;
|
|
898
|
-
address1?: string | undefined;
|
|
899
|
-
address2?: string | undefined;
|
|
900
|
-
postalCode?: string | undefined;
|
|
901
|
-
city?: string | undefined;
|
|
902
|
-
phone?: string | undefined;
|
|
903
|
-
};
|
|
904
|
-
password: string;
|
|
905
|
-
}, {
|
|
906
|
-
name: string;
|
|
907
|
-
contactInfo: {
|
|
908
|
-
email: string;
|
|
909
|
-
first_name: string;
|
|
910
|
-
last_name: string;
|
|
911
|
-
state?: string | undefined;
|
|
912
|
-
country?: string | undefined;
|
|
913
|
-
address1?: string | undefined;
|
|
914
|
-
address2?: string | undefined;
|
|
915
|
-
postalCode?: string | undefined;
|
|
916
|
-
city?: string | undefined;
|
|
917
|
-
phone?: string | undefined;
|
|
918
|
-
};
|
|
872
|
+
company_name: string;
|
|
919
873
|
password: string;
|
|
920
874
|
}>;
|
|
921
875
|
export declare const zOrganization: z.ZodObject<{
|
|
922
|
-
name: z.ZodString;
|
|
923
|
-
contactInfo: z.ZodObject<{
|
|
924
|
-
address1: z.ZodOptional<z.ZodString>;
|
|
925
|
-
address2: z.ZodOptional<z.ZodString>;
|
|
926
|
-
postalCode: z.ZodOptional<z.ZodString>;
|
|
927
|
-
city: z.ZodOptional<z.ZodString>;
|
|
928
|
-
state: z.ZodOptional<z.ZodString>;
|
|
929
|
-
country: z.ZodOptional<z.ZodString>;
|
|
930
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
931
|
-
email: z.ZodString;
|
|
932
|
-
first_name: z.ZodString;
|
|
933
|
-
last_name: z.ZodString;
|
|
934
|
-
}, "strip", z.ZodTypeAny, {
|
|
935
|
-
email: string;
|
|
936
|
-
first_name: string;
|
|
937
|
-
last_name: string;
|
|
938
|
-
state?: string | undefined;
|
|
939
|
-
country?: string | undefined;
|
|
940
|
-
address1?: string | undefined;
|
|
941
|
-
address2?: string | undefined;
|
|
942
|
-
postalCode?: string | undefined;
|
|
943
|
-
city?: string | undefined;
|
|
944
|
-
phone?: string | undefined;
|
|
945
|
-
}, {
|
|
946
|
-
email: string;
|
|
947
|
-
first_name: string;
|
|
948
|
-
last_name: string;
|
|
949
|
-
state?: string | undefined;
|
|
950
|
-
country?: string | undefined;
|
|
951
|
-
address1?: string | undefined;
|
|
952
|
-
address2?: string | undefined;
|
|
953
|
-
postalCode?: string | undefined;
|
|
954
|
-
city?: string | undefined;
|
|
955
|
-
phone?: string | undefined;
|
|
956
|
-
}>;
|
|
957
876
|
id: z.ZodString;
|
|
877
|
+
name: z.ZodOptional<z.ZodString>;
|
|
958
878
|
date_created: z.ZodString;
|
|
959
879
|
quota: z.ZodObject<{
|
|
960
880
|
basic_clusters_max: z.ZodNumber;
|
|
@@ -1002,25 +922,11 @@ export declare const zOrganization: z.ZodObject<{
|
|
|
1002
922
|
cluster_tiers: string[];
|
|
1003
923
|
regions: string[];
|
|
1004
924
|
}>;
|
|
1005
|
-
pending_actions: z.ZodArray<z.ZodEnum<["signup-billing-address", "signup-payment-method", "signup-invite-team", "signup-create-cluster"]>, "many">;
|
|
1006
925
|
status: z.ZodEnum<["active", "closed", "suspended"]>;
|
|
1007
926
|
}, "strip", z.ZodTypeAny, {
|
|
1008
|
-
name: string;
|
|
1009
927
|
id: string;
|
|
1010
928
|
status: "active" | "closed" | "suspended";
|
|
1011
929
|
date_created: string;
|
|
1012
|
-
contactInfo: {
|
|
1013
|
-
email: string;
|
|
1014
|
-
first_name: string;
|
|
1015
|
-
last_name: string;
|
|
1016
|
-
state?: string | undefined;
|
|
1017
|
-
country?: string | undefined;
|
|
1018
|
-
address1?: string | undefined;
|
|
1019
|
-
address2?: string | undefined;
|
|
1020
|
-
postalCode?: string | undefined;
|
|
1021
|
-
city?: string | undefined;
|
|
1022
|
-
phone?: string | undefined;
|
|
1023
|
-
};
|
|
1024
930
|
quota: {
|
|
1025
931
|
versions: {
|
|
1026
932
|
id: string;
|
|
@@ -1035,24 +941,11 @@ export declare const zOrganization: z.ZodObject<{
|
|
|
1035
941
|
cluster_tiers: string[];
|
|
1036
942
|
regions: string[];
|
|
1037
943
|
};
|
|
1038
|
-
|
|
944
|
+
name?: string | undefined;
|
|
1039
945
|
}, {
|
|
1040
|
-
name: string;
|
|
1041
946
|
id: string;
|
|
1042
947
|
status: "active" | "closed" | "suspended";
|
|
1043
948
|
date_created: string;
|
|
1044
|
-
contactInfo: {
|
|
1045
|
-
email: string;
|
|
1046
|
-
first_name: string;
|
|
1047
|
-
last_name: string;
|
|
1048
|
-
state?: string | undefined;
|
|
1049
|
-
country?: string | undefined;
|
|
1050
|
-
address1?: string | undefined;
|
|
1051
|
-
address2?: string | undefined;
|
|
1052
|
-
postalCode?: string | undefined;
|
|
1053
|
-
city?: string | undefined;
|
|
1054
|
-
phone?: string | undefined;
|
|
1055
|
-
};
|
|
1056
949
|
quota: {
|
|
1057
950
|
versions: {
|
|
1058
951
|
id: string;
|
|
@@ -1067,71 +960,6 @@ export declare const zOrganization: z.ZodObject<{
|
|
|
1067
960
|
cluster_tiers: string[];
|
|
1068
961
|
regions: string[];
|
|
1069
962
|
};
|
|
1070
|
-
pending_actions: ("signup-payment-method" | "signup-billing-address" | "signup-invite-team" | "signup-create-cluster")[];
|
|
1071
|
-
}>;
|
|
1072
|
-
export declare const zOrganizationUpdateInput: z.ZodObject<{
|
|
1073
|
-
name: z.ZodOptional<z.ZodString>;
|
|
1074
|
-
contactInfo: z.ZodObject<{
|
|
1075
|
-
address1: z.ZodOptional<z.ZodString>;
|
|
1076
|
-
address2: z.ZodOptional<z.ZodString>;
|
|
1077
|
-
postalCode: z.ZodOptional<z.ZodString>;
|
|
1078
|
-
city: z.ZodOptional<z.ZodString>;
|
|
1079
|
-
state: z.ZodOptional<z.ZodString>;
|
|
1080
|
-
country: z.ZodOptional<z.ZodString>;
|
|
1081
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
1082
|
-
email: z.ZodString;
|
|
1083
|
-
first_name: z.ZodString;
|
|
1084
|
-
last_name: z.ZodString;
|
|
1085
|
-
}, "strip", z.ZodTypeAny, {
|
|
1086
|
-
email: string;
|
|
1087
|
-
first_name: string;
|
|
1088
|
-
last_name: string;
|
|
1089
|
-
state?: string | undefined;
|
|
1090
|
-
country?: string | undefined;
|
|
1091
|
-
address1?: string | undefined;
|
|
1092
|
-
address2?: string | undefined;
|
|
1093
|
-
postalCode?: string | undefined;
|
|
1094
|
-
city?: string | undefined;
|
|
1095
|
-
phone?: string | undefined;
|
|
1096
|
-
}, {
|
|
1097
|
-
email: string;
|
|
1098
|
-
first_name: string;
|
|
1099
|
-
last_name: string;
|
|
1100
|
-
state?: string | undefined;
|
|
1101
|
-
country?: string | undefined;
|
|
1102
|
-
address1?: string | undefined;
|
|
1103
|
-
address2?: string | undefined;
|
|
1104
|
-
postalCode?: string | undefined;
|
|
1105
|
-
city?: string | undefined;
|
|
1106
|
-
phone?: string | undefined;
|
|
1107
|
-
}>;
|
|
1108
|
-
}, "strip", z.ZodTypeAny, {
|
|
1109
|
-
contactInfo: {
|
|
1110
|
-
email: string;
|
|
1111
|
-
first_name: string;
|
|
1112
|
-
last_name: string;
|
|
1113
|
-
state?: string | undefined;
|
|
1114
|
-
country?: string | undefined;
|
|
1115
|
-
address1?: string | undefined;
|
|
1116
|
-
address2?: string | undefined;
|
|
1117
|
-
postalCode?: string | undefined;
|
|
1118
|
-
city?: string | undefined;
|
|
1119
|
-
phone?: string | undefined;
|
|
1120
|
-
};
|
|
1121
|
-
name?: string | undefined;
|
|
1122
|
-
}, {
|
|
1123
|
-
contactInfo: {
|
|
1124
|
-
email: string;
|
|
1125
|
-
first_name: string;
|
|
1126
|
-
last_name: string;
|
|
1127
|
-
state?: string | undefined;
|
|
1128
|
-
country?: string | undefined;
|
|
1129
|
-
address1?: string | undefined;
|
|
1130
|
-
address2?: string | undefined;
|
|
1131
|
-
postalCode?: string | undefined;
|
|
1132
|
-
city?: string | undefined;
|
|
1133
|
-
phone?: string | undefined;
|
|
1134
|
-
};
|
|
1135
963
|
name?: string | undefined;
|
|
1136
964
|
}>;
|
|
1137
965
|
export declare const zPaymentMethod: z.ZodObject<{
|
|
@@ -1280,9 +1108,9 @@ export declare const zUser: z.ZodObject<{
|
|
|
1280
1108
|
role: "User" | "Administrator";
|
|
1281
1109
|
email: string;
|
|
1282
1110
|
status: "active" | "inactive";
|
|
1283
|
-
date_created: string;
|
|
1284
1111
|
first_name: string;
|
|
1285
1112
|
last_name: string;
|
|
1113
|
+
date_created: string;
|
|
1286
1114
|
cluster_permissions?: {
|
|
1287
1115
|
cluster_id: string;
|
|
1288
1116
|
permissions: "readonly" | "readwrite";
|
|
@@ -1292,9 +1120,9 @@ export declare const zUser: z.ZodObject<{
|
|
|
1292
1120
|
role: "User" | "Administrator";
|
|
1293
1121
|
email: string;
|
|
1294
1122
|
status: "active" | "inactive";
|
|
1295
|
-
date_created: string;
|
|
1296
1123
|
first_name: string;
|
|
1297
1124
|
last_name: string;
|
|
1125
|
+
date_created: string;
|
|
1298
1126
|
cluster_permissions?: {
|
|
1299
1127
|
cluster_id: string;
|
|
1300
1128
|
permissions: "readonly" | "readwrite";
|
|
@@ -1659,6 +1487,80 @@ export declare const zGetInvoiceResponse: z.ZodObject<{
|
|
|
1659
1487
|
}, {
|
|
1660
1488
|
html?: string | undefined;
|
|
1661
1489
|
}>;
|
|
1490
|
+
export declare const zGetContactResponse: z.ZodObject<{
|
|
1491
|
+
company: z.ZodOptional<z.ZodString>;
|
|
1492
|
+
address1: z.ZodOptional<z.ZodString>;
|
|
1493
|
+
address2: z.ZodOptional<z.ZodString>;
|
|
1494
|
+
postalCode: z.ZodOptional<z.ZodString>;
|
|
1495
|
+
city: z.ZodOptional<z.ZodString>;
|
|
1496
|
+
state: z.ZodOptional<z.ZodString>;
|
|
1497
|
+
country: z.ZodOptional<z.ZodString>;
|
|
1498
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
1499
|
+
email: z.ZodString;
|
|
1500
|
+
first_name: z.ZodString;
|
|
1501
|
+
last_name: z.ZodString;
|
|
1502
|
+
}, "strip", z.ZodTypeAny, {
|
|
1503
|
+
email: string;
|
|
1504
|
+
first_name: string;
|
|
1505
|
+
last_name: string;
|
|
1506
|
+
state?: string | undefined;
|
|
1507
|
+
country?: string | undefined;
|
|
1508
|
+
company?: string | undefined;
|
|
1509
|
+
address1?: string | undefined;
|
|
1510
|
+
address2?: string | undefined;
|
|
1511
|
+
postalCode?: string | undefined;
|
|
1512
|
+
city?: string | undefined;
|
|
1513
|
+
phone?: string | undefined;
|
|
1514
|
+
}, {
|
|
1515
|
+
email: string;
|
|
1516
|
+
first_name: string;
|
|
1517
|
+
last_name: string;
|
|
1518
|
+
state?: string | undefined;
|
|
1519
|
+
country?: string | undefined;
|
|
1520
|
+
company?: string | undefined;
|
|
1521
|
+
address1?: string | undefined;
|
|
1522
|
+
address2?: string | undefined;
|
|
1523
|
+
postalCode?: string | undefined;
|
|
1524
|
+
city?: string | undefined;
|
|
1525
|
+
phone?: string | undefined;
|
|
1526
|
+
}>;
|
|
1527
|
+
export declare const zUpdateContactResponse: z.ZodObject<{
|
|
1528
|
+
company: z.ZodOptional<z.ZodString>;
|
|
1529
|
+
address1: z.ZodOptional<z.ZodString>;
|
|
1530
|
+
address2: z.ZodOptional<z.ZodString>;
|
|
1531
|
+
postalCode: z.ZodOptional<z.ZodString>;
|
|
1532
|
+
city: z.ZodOptional<z.ZodString>;
|
|
1533
|
+
state: z.ZodOptional<z.ZodString>;
|
|
1534
|
+
country: z.ZodOptional<z.ZodString>;
|
|
1535
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
1536
|
+
email: z.ZodString;
|
|
1537
|
+
first_name: z.ZodString;
|
|
1538
|
+
last_name: z.ZodString;
|
|
1539
|
+
}, "strip", z.ZodTypeAny, {
|
|
1540
|
+
email: string;
|
|
1541
|
+
first_name: string;
|
|
1542
|
+
last_name: string;
|
|
1543
|
+
state?: string | undefined;
|
|
1544
|
+
country?: string | undefined;
|
|
1545
|
+
company?: string | undefined;
|
|
1546
|
+
address1?: string | undefined;
|
|
1547
|
+
address2?: string | undefined;
|
|
1548
|
+
postalCode?: string | undefined;
|
|
1549
|
+
city?: string | undefined;
|
|
1550
|
+
phone?: string | undefined;
|
|
1551
|
+
}, {
|
|
1552
|
+
email: string;
|
|
1553
|
+
first_name: string;
|
|
1554
|
+
last_name: string;
|
|
1555
|
+
state?: string | undefined;
|
|
1556
|
+
country?: string | undefined;
|
|
1557
|
+
company?: string | undefined;
|
|
1558
|
+
address1?: string | undefined;
|
|
1559
|
+
address2?: string | undefined;
|
|
1560
|
+
postalCode?: string | undefined;
|
|
1561
|
+
city?: string | undefined;
|
|
1562
|
+
phone?: string | undefined;
|
|
1563
|
+
}>;
|
|
1662
1564
|
export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
1663
1565
|
limits: z.ZodOptional<z.ZodObject<{
|
|
1664
1566
|
cpu: z.ZodNumber;
|
|
@@ -2237,193 +2139,8 @@ export declare const zGetInviteResponse: z.ZodObject<{
|
|
|
2237
2139
|
organization_id?: string | undefined;
|
|
2238
2140
|
}>;
|
|
2239
2141
|
export declare const zGetOrganizationResponse: z.ZodObject<{
|
|
2240
|
-
name: z.ZodString;
|
|
2241
|
-
contactInfo: z.ZodObject<{
|
|
2242
|
-
address1: z.ZodOptional<z.ZodString>;
|
|
2243
|
-
address2: z.ZodOptional<z.ZodString>;
|
|
2244
|
-
postalCode: z.ZodOptional<z.ZodString>;
|
|
2245
|
-
city: z.ZodOptional<z.ZodString>;
|
|
2246
|
-
state: z.ZodOptional<z.ZodString>;
|
|
2247
|
-
country: z.ZodOptional<z.ZodString>;
|
|
2248
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
2249
|
-
email: z.ZodString;
|
|
2250
|
-
first_name: z.ZodString;
|
|
2251
|
-
last_name: z.ZodString;
|
|
2252
|
-
}, "strip", z.ZodTypeAny, {
|
|
2253
|
-
email: string;
|
|
2254
|
-
first_name: string;
|
|
2255
|
-
last_name: string;
|
|
2256
|
-
state?: string | undefined;
|
|
2257
|
-
country?: string | undefined;
|
|
2258
|
-
address1?: string | undefined;
|
|
2259
|
-
address2?: string | undefined;
|
|
2260
|
-
postalCode?: string | undefined;
|
|
2261
|
-
city?: string | undefined;
|
|
2262
|
-
phone?: string | undefined;
|
|
2263
|
-
}, {
|
|
2264
|
-
email: string;
|
|
2265
|
-
first_name: string;
|
|
2266
|
-
last_name: string;
|
|
2267
|
-
state?: string | undefined;
|
|
2268
|
-
country?: string | undefined;
|
|
2269
|
-
address1?: string | undefined;
|
|
2270
|
-
address2?: string | undefined;
|
|
2271
|
-
postalCode?: string | undefined;
|
|
2272
|
-
city?: string | undefined;
|
|
2273
|
-
phone?: string | undefined;
|
|
2274
|
-
}>;
|
|
2275
|
-
id: z.ZodString;
|
|
2276
|
-
date_created: z.ZodString;
|
|
2277
|
-
quota: z.ZodObject<{
|
|
2278
|
-
basic_clusters_max: z.ZodNumber;
|
|
2279
|
-
basic_clusters_available: z.ZodNumber;
|
|
2280
|
-
pro_clusters_max: z.ZodNumber;
|
|
2281
|
-
pro_clusters_available: z.ZodNumber;
|
|
2282
|
-
fleets_max: z.ZodNumber;
|
|
2283
|
-
managed_fleets_cpu_max: z.ZodNumber;
|
|
2284
|
-
cluster_tiers: z.ZodArray<z.ZodString, "many">;
|
|
2285
|
-
regions: z.ZodArray<z.ZodString, "many">;
|
|
2286
|
-
versions: z.ZodArray<z.ZodObject<{
|
|
2287
|
-
id: z.ZodString;
|
|
2288
|
-
label: z.ZodString;
|
|
2289
|
-
}, "strip", z.ZodTypeAny, {
|
|
2290
|
-
id: string;
|
|
2291
|
-
label: string;
|
|
2292
|
-
}, {
|
|
2293
|
-
id: string;
|
|
2294
|
-
label: string;
|
|
2295
|
-
}>, "many">;
|
|
2296
|
-
}, "strip", z.ZodTypeAny, {
|
|
2297
|
-
versions: {
|
|
2298
|
-
id: string;
|
|
2299
|
-
label: string;
|
|
2300
|
-
}[];
|
|
2301
|
-
basic_clusters_max: number;
|
|
2302
|
-
basic_clusters_available: number;
|
|
2303
|
-
pro_clusters_max: number;
|
|
2304
|
-
pro_clusters_available: number;
|
|
2305
|
-
fleets_max: number;
|
|
2306
|
-
managed_fleets_cpu_max: number;
|
|
2307
|
-
cluster_tiers: string[];
|
|
2308
|
-
regions: string[];
|
|
2309
|
-
}, {
|
|
2310
|
-
versions: {
|
|
2311
|
-
id: string;
|
|
2312
|
-
label: string;
|
|
2313
|
-
}[];
|
|
2314
|
-
basic_clusters_max: number;
|
|
2315
|
-
basic_clusters_available: number;
|
|
2316
|
-
pro_clusters_max: number;
|
|
2317
|
-
pro_clusters_available: number;
|
|
2318
|
-
fleets_max: number;
|
|
2319
|
-
managed_fleets_cpu_max: number;
|
|
2320
|
-
cluster_tiers: string[];
|
|
2321
|
-
regions: string[];
|
|
2322
|
-
}>;
|
|
2323
|
-
pending_actions: z.ZodArray<z.ZodEnum<["signup-billing-address", "signup-payment-method", "signup-invite-team", "signup-create-cluster"]>, "many">;
|
|
2324
|
-
status: z.ZodEnum<["active", "closed", "suspended"]>;
|
|
2325
|
-
}, "strip", z.ZodTypeAny, {
|
|
2326
|
-
name: string;
|
|
2327
|
-
id: string;
|
|
2328
|
-
status: "active" | "closed" | "suspended";
|
|
2329
|
-
date_created: string;
|
|
2330
|
-
contactInfo: {
|
|
2331
|
-
email: string;
|
|
2332
|
-
first_name: string;
|
|
2333
|
-
last_name: string;
|
|
2334
|
-
state?: string | undefined;
|
|
2335
|
-
country?: string | undefined;
|
|
2336
|
-
address1?: string | undefined;
|
|
2337
|
-
address2?: string | undefined;
|
|
2338
|
-
postalCode?: string | undefined;
|
|
2339
|
-
city?: string | undefined;
|
|
2340
|
-
phone?: string | undefined;
|
|
2341
|
-
};
|
|
2342
|
-
quota: {
|
|
2343
|
-
versions: {
|
|
2344
|
-
id: string;
|
|
2345
|
-
label: string;
|
|
2346
|
-
}[];
|
|
2347
|
-
basic_clusters_max: number;
|
|
2348
|
-
basic_clusters_available: number;
|
|
2349
|
-
pro_clusters_max: number;
|
|
2350
|
-
pro_clusters_available: number;
|
|
2351
|
-
fleets_max: number;
|
|
2352
|
-
managed_fleets_cpu_max: number;
|
|
2353
|
-
cluster_tiers: string[];
|
|
2354
|
-
regions: string[];
|
|
2355
|
-
};
|
|
2356
|
-
pending_actions: ("signup-payment-method" | "signup-billing-address" | "signup-invite-team" | "signup-create-cluster")[];
|
|
2357
|
-
}, {
|
|
2358
|
-
name: string;
|
|
2359
|
-
id: string;
|
|
2360
|
-
status: "active" | "closed" | "suspended";
|
|
2361
|
-
date_created: string;
|
|
2362
|
-
contactInfo: {
|
|
2363
|
-
email: string;
|
|
2364
|
-
first_name: string;
|
|
2365
|
-
last_name: string;
|
|
2366
|
-
state?: string | undefined;
|
|
2367
|
-
country?: string | undefined;
|
|
2368
|
-
address1?: string | undefined;
|
|
2369
|
-
address2?: string | undefined;
|
|
2370
|
-
postalCode?: string | undefined;
|
|
2371
|
-
city?: string | undefined;
|
|
2372
|
-
phone?: string | undefined;
|
|
2373
|
-
};
|
|
2374
|
-
quota: {
|
|
2375
|
-
versions: {
|
|
2376
|
-
id: string;
|
|
2377
|
-
label: string;
|
|
2378
|
-
}[];
|
|
2379
|
-
basic_clusters_max: number;
|
|
2380
|
-
basic_clusters_available: number;
|
|
2381
|
-
pro_clusters_max: number;
|
|
2382
|
-
pro_clusters_available: number;
|
|
2383
|
-
fleets_max: number;
|
|
2384
|
-
managed_fleets_cpu_max: number;
|
|
2385
|
-
cluster_tiers: string[];
|
|
2386
|
-
regions: string[];
|
|
2387
|
-
};
|
|
2388
|
-
pending_actions: ("signup-payment-method" | "signup-billing-address" | "signup-invite-team" | "signup-create-cluster")[];
|
|
2389
|
-
}>;
|
|
2390
|
-
export declare const zUpdateOrganizationResponse: z.ZodObject<{
|
|
2391
|
-
name: z.ZodString;
|
|
2392
|
-
contactInfo: z.ZodObject<{
|
|
2393
|
-
address1: z.ZodOptional<z.ZodString>;
|
|
2394
|
-
address2: z.ZodOptional<z.ZodString>;
|
|
2395
|
-
postalCode: z.ZodOptional<z.ZodString>;
|
|
2396
|
-
city: z.ZodOptional<z.ZodString>;
|
|
2397
|
-
state: z.ZodOptional<z.ZodString>;
|
|
2398
|
-
country: z.ZodOptional<z.ZodString>;
|
|
2399
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
2400
|
-
email: z.ZodString;
|
|
2401
|
-
first_name: z.ZodString;
|
|
2402
|
-
last_name: z.ZodString;
|
|
2403
|
-
}, "strip", z.ZodTypeAny, {
|
|
2404
|
-
email: string;
|
|
2405
|
-
first_name: string;
|
|
2406
|
-
last_name: string;
|
|
2407
|
-
state?: string | undefined;
|
|
2408
|
-
country?: string | undefined;
|
|
2409
|
-
address1?: string | undefined;
|
|
2410
|
-
address2?: string | undefined;
|
|
2411
|
-
postalCode?: string | undefined;
|
|
2412
|
-
city?: string | undefined;
|
|
2413
|
-
phone?: string | undefined;
|
|
2414
|
-
}, {
|
|
2415
|
-
email: string;
|
|
2416
|
-
first_name: string;
|
|
2417
|
-
last_name: string;
|
|
2418
|
-
state?: string | undefined;
|
|
2419
|
-
country?: string | undefined;
|
|
2420
|
-
address1?: string | undefined;
|
|
2421
|
-
address2?: string | undefined;
|
|
2422
|
-
postalCode?: string | undefined;
|
|
2423
|
-
city?: string | undefined;
|
|
2424
|
-
phone?: string | undefined;
|
|
2425
|
-
}>;
|
|
2426
2142
|
id: z.ZodString;
|
|
2143
|
+
name: z.ZodOptional<z.ZodString>;
|
|
2427
2144
|
date_created: z.ZodString;
|
|
2428
2145
|
quota: z.ZodObject<{
|
|
2429
2146
|
basic_clusters_max: z.ZodNumber;
|
|
@@ -2471,25 +2188,11 @@ export declare const zUpdateOrganizationResponse: z.ZodObject<{
|
|
|
2471
2188
|
cluster_tiers: string[];
|
|
2472
2189
|
regions: string[];
|
|
2473
2190
|
}>;
|
|
2474
|
-
pending_actions: z.ZodArray<z.ZodEnum<["signup-billing-address", "signup-payment-method", "signup-invite-team", "signup-create-cluster"]>, "many">;
|
|
2475
2191
|
status: z.ZodEnum<["active", "closed", "suspended"]>;
|
|
2476
2192
|
}, "strip", z.ZodTypeAny, {
|
|
2477
|
-
name: string;
|
|
2478
2193
|
id: string;
|
|
2479
2194
|
status: "active" | "closed" | "suspended";
|
|
2480
2195
|
date_created: string;
|
|
2481
|
-
contactInfo: {
|
|
2482
|
-
email: string;
|
|
2483
|
-
first_name: string;
|
|
2484
|
-
last_name: string;
|
|
2485
|
-
state?: string | undefined;
|
|
2486
|
-
country?: string | undefined;
|
|
2487
|
-
address1?: string | undefined;
|
|
2488
|
-
address2?: string | undefined;
|
|
2489
|
-
postalCode?: string | undefined;
|
|
2490
|
-
city?: string | undefined;
|
|
2491
|
-
phone?: string | undefined;
|
|
2492
|
-
};
|
|
2493
2196
|
quota: {
|
|
2494
2197
|
versions: {
|
|
2495
2198
|
id: string;
|
|
@@ -2504,24 +2207,11 @@ export declare const zUpdateOrganizationResponse: z.ZodObject<{
|
|
|
2504
2207
|
cluster_tiers: string[];
|
|
2505
2208
|
regions: string[];
|
|
2506
2209
|
};
|
|
2507
|
-
|
|
2210
|
+
name?: string | undefined;
|
|
2508
2211
|
}, {
|
|
2509
|
-
name: string;
|
|
2510
2212
|
id: string;
|
|
2511
2213
|
status: "active" | "closed" | "suspended";
|
|
2512
2214
|
date_created: string;
|
|
2513
|
-
contactInfo: {
|
|
2514
|
-
email: string;
|
|
2515
|
-
first_name: string;
|
|
2516
|
-
last_name: string;
|
|
2517
|
-
state?: string | undefined;
|
|
2518
|
-
country?: string | undefined;
|
|
2519
|
-
address1?: string | undefined;
|
|
2520
|
-
address2?: string | undefined;
|
|
2521
|
-
postalCode?: string | undefined;
|
|
2522
|
-
city?: string | undefined;
|
|
2523
|
-
phone?: string | undefined;
|
|
2524
|
-
};
|
|
2525
2215
|
quota: {
|
|
2526
2216
|
versions: {
|
|
2527
2217
|
id: string;
|
|
@@ -2536,7 +2226,7 @@ export declare const zUpdateOrganizationResponse: z.ZodObject<{
|
|
|
2536
2226
|
cluster_tiers: string[];
|
|
2537
2227
|
regions: string[];
|
|
2538
2228
|
};
|
|
2539
|
-
|
|
2229
|
+
name?: string | undefined;
|
|
2540
2230
|
}>;
|
|
2541
2231
|
export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
|
|
2542
2232
|
name: z.ZodString;
|
|
@@ -2666,9 +2356,9 @@ export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
|
|
|
2666
2356
|
role: "User" | "Administrator";
|
|
2667
2357
|
email: string;
|
|
2668
2358
|
status: "active" | "inactive";
|
|
2669
|
-
date_created: string;
|
|
2670
2359
|
first_name: string;
|
|
2671
2360
|
last_name: string;
|
|
2361
|
+
date_created: string;
|
|
2672
2362
|
cluster_permissions?: {
|
|
2673
2363
|
cluster_id: string;
|
|
2674
2364
|
permissions: "readonly" | "readwrite";
|
|
@@ -2678,9 +2368,9 @@ export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
|
|
|
2678
2368
|
role: "User" | "Administrator";
|
|
2679
2369
|
email: string;
|
|
2680
2370
|
status: "active" | "inactive";
|
|
2681
|
-
date_created: string;
|
|
2682
2371
|
first_name: string;
|
|
2683
2372
|
last_name: string;
|
|
2373
|
+
date_created: string;
|
|
2684
2374
|
cluster_permissions?: {
|
|
2685
2375
|
cluster_id: string;
|
|
2686
2376
|
permissions: "readonly" | "readwrite";
|
|
@@ -2709,9 +2399,9 @@ export declare const zCreateUserResponse: z.ZodObject<{
|
|
|
2709
2399
|
role: "User" | "Administrator";
|
|
2710
2400
|
email: string;
|
|
2711
2401
|
status: "active" | "inactive";
|
|
2712
|
-
date_created: string;
|
|
2713
2402
|
first_name: string;
|
|
2714
2403
|
last_name: string;
|
|
2404
|
+
date_created: string;
|
|
2715
2405
|
cluster_permissions?: {
|
|
2716
2406
|
cluster_id: string;
|
|
2717
2407
|
permissions: "readonly" | "readwrite";
|
|
@@ -2721,9 +2411,9 @@ export declare const zCreateUserResponse: z.ZodObject<{
|
|
|
2721
2411
|
role: "User" | "Administrator";
|
|
2722
2412
|
email: string;
|
|
2723
2413
|
status: "active" | "inactive";
|
|
2724
|
-
date_created: string;
|
|
2725
2414
|
first_name: string;
|
|
2726
2415
|
last_name: string;
|
|
2416
|
+
date_created: string;
|
|
2727
2417
|
cluster_permissions?: {
|
|
2728
2418
|
cluster_id: string;
|
|
2729
2419
|
permissions: "readonly" | "readwrite";
|
|
@@ -2752,9 +2442,9 @@ export declare const zDeleteUserResponse: z.ZodObject<{
|
|
|
2752
2442
|
role: "User" | "Administrator";
|
|
2753
2443
|
email: string;
|
|
2754
2444
|
status: "active" | "inactive";
|
|
2755
|
-
date_created: string;
|
|
2756
2445
|
first_name: string;
|
|
2757
2446
|
last_name: string;
|
|
2447
|
+
date_created: string;
|
|
2758
2448
|
cluster_permissions?: {
|
|
2759
2449
|
cluster_id: string;
|
|
2760
2450
|
permissions: "readonly" | "readwrite";
|
|
@@ -2764,9 +2454,9 @@ export declare const zDeleteUserResponse: z.ZodObject<{
|
|
|
2764
2454
|
role: "User" | "Administrator";
|
|
2765
2455
|
email: string;
|
|
2766
2456
|
status: "active" | "inactive";
|
|
2767
|
-
date_created: string;
|
|
2768
2457
|
first_name: string;
|
|
2769
2458
|
last_name: string;
|
|
2459
|
+
date_created: string;
|
|
2770
2460
|
cluster_permissions?: {
|
|
2771
2461
|
cluster_id: string;
|
|
2772
2462
|
permissions: "readonly" | "readwrite";
|
|
@@ -2795,9 +2485,9 @@ export declare const zGetUserResponse: z.ZodObject<{
|
|
|
2795
2485
|
role: "User" | "Administrator";
|
|
2796
2486
|
email: string;
|
|
2797
2487
|
status: "active" | "inactive";
|
|
2798
|
-
date_created: string;
|
|
2799
2488
|
first_name: string;
|
|
2800
2489
|
last_name: string;
|
|
2490
|
+
date_created: string;
|
|
2801
2491
|
cluster_permissions?: {
|
|
2802
2492
|
cluster_id: string;
|
|
2803
2493
|
permissions: "readonly" | "readwrite";
|
|
@@ -2807,9 +2497,9 @@ export declare const zGetUserResponse: z.ZodObject<{
|
|
|
2807
2497
|
role: "User" | "Administrator";
|
|
2808
2498
|
email: string;
|
|
2809
2499
|
status: "active" | "inactive";
|
|
2810
|
-
date_created: string;
|
|
2811
2500
|
first_name: string;
|
|
2812
2501
|
last_name: string;
|
|
2502
|
+
date_created: string;
|
|
2813
2503
|
cluster_permissions?: {
|
|
2814
2504
|
cluster_id: string;
|
|
2815
2505
|
permissions: "readonly" | "readwrite";
|
|
@@ -2838,9 +2528,9 @@ export declare const zUpdateUserResponse: z.ZodObject<{
|
|
|
2838
2528
|
role: "User" | "Administrator";
|
|
2839
2529
|
email: string;
|
|
2840
2530
|
status: "active" | "inactive";
|
|
2841
|
-
date_created: string;
|
|
2842
2531
|
first_name: string;
|
|
2843
2532
|
last_name: string;
|
|
2533
|
+
date_created: string;
|
|
2844
2534
|
cluster_permissions?: {
|
|
2845
2535
|
cluster_id: string;
|
|
2846
2536
|
permissions: "readonly" | "readwrite";
|
|
@@ -2850,9 +2540,9 @@ export declare const zUpdateUserResponse: z.ZodObject<{
|
|
|
2850
2540
|
role: "User" | "Administrator";
|
|
2851
2541
|
email: string;
|
|
2852
2542
|
status: "active" | "inactive";
|
|
2853
|
-
date_created: string;
|
|
2854
2543
|
first_name: string;
|
|
2855
2544
|
last_name: string;
|
|
2545
|
+
date_created: string;
|
|
2856
2546
|
cluster_permissions?: {
|
|
2857
2547
|
cluster_id: string;
|
|
2858
2548
|
permissions: "readonly" | "readwrite";
|
|
@@ -2881,9 +2571,9 @@ export declare const zDeleteClusterPermissionsResponse: z.ZodObject<{
|
|
|
2881
2571
|
role: "User" | "Administrator";
|
|
2882
2572
|
email: string;
|
|
2883
2573
|
status: "active" | "inactive";
|
|
2884
|
-
date_created: string;
|
|
2885
2574
|
first_name: string;
|
|
2886
2575
|
last_name: string;
|
|
2576
|
+
date_created: string;
|
|
2887
2577
|
cluster_permissions?: {
|
|
2888
2578
|
cluster_id: string;
|
|
2889
2579
|
permissions: "readonly" | "readwrite";
|
|
@@ -2893,9 +2583,9 @@ export declare const zDeleteClusterPermissionsResponse: z.ZodObject<{
|
|
|
2893
2583
|
role: "User" | "Administrator";
|
|
2894
2584
|
email: string;
|
|
2895
2585
|
status: "active" | "inactive";
|
|
2896
|
-
date_created: string;
|
|
2897
2586
|
first_name: string;
|
|
2898
2587
|
last_name: string;
|
|
2588
|
+
date_created: string;
|
|
2899
2589
|
cluster_permissions?: {
|
|
2900
2590
|
cluster_id: string;
|
|
2901
2591
|
permissions: "readonly" | "readwrite";
|
|
@@ -2924,9 +2614,9 @@ export declare const zSetClusterPermissionsResponse: z.ZodObject<{
|
|
|
2924
2614
|
role: "User" | "Administrator";
|
|
2925
2615
|
email: string;
|
|
2926
2616
|
status: "active" | "inactive";
|
|
2927
|
-
date_created: string;
|
|
2928
2617
|
first_name: string;
|
|
2929
2618
|
last_name: string;
|
|
2619
|
+
date_created: string;
|
|
2930
2620
|
cluster_permissions?: {
|
|
2931
2621
|
cluster_id: string;
|
|
2932
2622
|
permissions: "readonly" | "readwrite";
|
|
@@ -2936,9 +2626,9 @@ export declare const zSetClusterPermissionsResponse: z.ZodObject<{
|
|
|
2936
2626
|
role: "User" | "Administrator";
|
|
2937
2627
|
email: string;
|
|
2938
2628
|
status: "active" | "inactive";
|
|
2939
|
-
date_created: string;
|
|
2940
2629
|
first_name: string;
|
|
2941
2630
|
last_name: string;
|
|
2631
|
+
date_created: string;
|
|
2942
2632
|
cluster_permissions?: {
|
|
2943
2633
|
cluster_id: string;
|
|
2944
2634
|
permissions: "readonly" | "readwrite";
|