@cloudfleet/sdk 0.0.1-e2d1408 → 0.0.1-e644e0d
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 +97 -275
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +98 -276
- package/dist/schemas.gen.js.map +1 -1
- package/dist/sdk.gen.d.ts +14 -10
- 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 +89 -206
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +152 -613
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +26 -67
- 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<{
|
|
@@ -1199,37 +1027,37 @@ export declare const zTokenUpdateInput: z.ZodObject<{
|
|
|
1199
1027
|
role?: "User" | "Administrator" | undefined;
|
|
1200
1028
|
}>;
|
|
1201
1029
|
export declare const zUsage: z.ZodObject<{
|
|
1202
|
-
cluster_id: z.ZodString;
|
|
1203
1030
|
hour: z.ZodOptional<z.ZodString>;
|
|
1031
|
+
cluster_id: z.ZodString;
|
|
1204
1032
|
cluster_tier: z.ZodEnum<[""]>;
|
|
1033
|
+
product: z.ZodEnum<["cfke_infra_compute", "cfke_nodes", "cfke_controlplane"]>;
|
|
1205
1034
|
node_name: z.ZodString;
|
|
1206
1035
|
sku: z.ZodString;
|
|
1207
1036
|
cpu: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1208
1037
|
price: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1209
|
-
|
|
1038
|
+
value: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1210
1039
|
total: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1211
|
-
usage_type: z.ZodEnum<["managed-compute", "control-plane-nodes", "control-plane"]>;
|
|
1212
1040
|
}, "strip", z.ZodTypeAny, {
|
|
1213
1041
|
total: number | "";
|
|
1042
|
+
product: "cfke_infra_compute" | "cfke_nodes" | "cfke_controlplane";
|
|
1043
|
+
value: number | "";
|
|
1214
1044
|
cpu: number | "";
|
|
1215
1045
|
sku: string;
|
|
1216
1046
|
price: number | "";
|
|
1217
1047
|
cluster_id: string;
|
|
1218
1048
|
cluster_tier: "";
|
|
1219
1049
|
node_name: string;
|
|
1220
|
-
volume: number | "";
|
|
1221
|
-
usage_type: "managed-compute" | "control-plane-nodes" | "control-plane";
|
|
1222
1050
|
hour?: string | undefined;
|
|
1223
1051
|
}, {
|
|
1224
1052
|
total: number | "";
|
|
1053
|
+
product: "cfke_infra_compute" | "cfke_nodes" | "cfke_controlplane";
|
|
1054
|
+
value: number | "";
|
|
1225
1055
|
cpu: number | "";
|
|
1226
1056
|
sku: string;
|
|
1227
1057
|
price: number | "";
|
|
1228
1058
|
cluster_id: string;
|
|
1229
1059
|
cluster_tier: "";
|
|
1230
1060
|
node_name: string;
|
|
1231
|
-
volume: number | "";
|
|
1232
|
-
usage_type: "managed-compute" | "control-plane-nodes" | "control-plane";
|
|
1233
1061
|
hour?: string | undefined;
|
|
1234
1062
|
}>;
|
|
1235
1063
|
export declare const zUserCreateInput: 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";
|
|
@@ -1320,37 +1148,37 @@ export declare const zUserUpdateInput: z.ZodObject<{
|
|
|
1320
1148
|
last_name?: string | undefined;
|
|
1321
1149
|
}>;
|
|
1322
1150
|
export declare const zGetUsageResponse: z.ZodArray<z.ZodObject<{
|
|
1323
|
-
cluster_id: z.ZodString;
|
|
1324
1151
|
hour: z.ZodOptional<z.ZodString>;
|
|
1152
|
+
cluster_id: z.ZodString;
|
|
1325
1153
|
cluster_tier: z.ZodEnum<[""]>;
|
|
1154
|
+
product: z.ZodEnum<["cfke_infra_compute", "cfke_nodes", "cfke_controlplane"]>;
|
|
1326
1155
|
node_name: z.ZodString;
|
|
1327
1156
|
sku: z.ZodString;
|
|
1328
1157
|
cpu: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1329
1158
|
price: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1330
|
-
|
|
1159
|
+
value: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1331
1160
|
total: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1332
|
-
usage_type: z.ZodEnum<["managed-compute", "control-plane-nodes", "control-plane"]>;
|
|
1333
1161
|
}, "strip", z.ZodTypeAny, {
|
|
1334
1162
|
total: number | "";
|
|
1163
|
+
product: "cfke_infra_compute" | "cfke_nodes" | "cfke_controlplane";
|
|
1164
|
+
value: number | "";
|
|
1335
1165
|
cpu: number | "";
|
|
1336
1166
|
sku: string;
|
|
1337
1167
|
price: number | "";
|
|
1338
1168
|
cluster_id: string;
|
|
1339
1169
|
cluster_tier: "";
|
|
1340
1170
|
node_name: string;
|
|
1341
|
-
volume: number | "";
|
|
1342
|
-
usage_type: "managed-compute" | "control-plane-nodes" | "control-plane";
|
|
1343
1171
|
hour?: string | undefined;
|
|
1344
1172
|
}, {
|
|
1345
1173
|
total: number | "";
|
|
1174
|
+
product: "cfke_infra_compute" | "cfke_nodes" | "cfke_controlplane";
|
|
1175
|
+
value: number | "";
|
|
1346
1176
|
cpu: number | "";
|
|
1347
1177
|
sku: string;
|
|
1348
1178
|
price: number | "";
|
|
1349
1179
|
cluster_id: string;
|
|
1350
1180
|
cluster_tier: "";
|
|
1351
1181
|
node_name: string;
|
|
1352
|
-
volume: number | "";
|
|
1353
|
-
usage_type: "managed-compute" | "control-plane-nodes" | "control-plane";
|
|
1354
1182
|
hour?: string | undefined;
|
|
1355
1183
|
}>, "many">;
|
|
1356
1184
|
export declare const zGetBalanceResponse: z.ZodNumber;
|
|
@@ -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,344 +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 zCreateOrganizationResponse: 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
|
-
id: z.ZodString;
|
|
2427
|
-
date_created: z.ZodString;
|
|
2428
|
-
quota: z.ZodObject<{
|
|
2429
|
-
basic_clusters_max: z.ZodNumber;
|
|
2430
|
-
basic_clusters_available: z.ZodNumber;
|
|
2431
|
-
pro_clusters_max: z.ZodNumber;
|
|
2432
|
-
pro_clusters_available: z.ZodNumber;
|
|
2433
|
-
fleets_max: z.ZodNumber;
|
|
2434
|
-
managed_fleets_cpu_max: z.ZodNumber;
|
|
2435
|
-
cluster_tiers: z.ZodArray<z.ZodString, "many">;
|
|
2436
|
-
regions: z.ZodArray<z.ZodString, "many">;
|
|
2437
|
-
versions: z.ZodArray<z.ZodObject<{
|
|
2438
|
-
id: z.ZodString;
|
|
2439
|
-
label: z.ZodString;
|
|
2440
|
-
}, "strip", z.ZodTypeAny, {
|
|
2441
|
-
id: string;
|
|
2442
|
-
label: string;
|
|
2443
|
-
}, {
|
|
2444
|
-
id: string;
|
|
2445
|
-
label: string;
|
|
2446
|
-
}>, "many">;
|
|
2447
|
-
}, "strip", z.ZodTypeAny, {
|
|
2448
|
-
versions: {
|
|
2449
|
-
id: string;
|
|
2450
|
-
label: string;
|
|
2451
|
-
}[];
|
|
2452
|
-
basic_clusters_max: number;
|
|
2453
|
-
basic_clusters_available: number;
|
|
2454
|
-
pro_clusters_max: number;
|
|
2455
|
-
pro_clusters_available: number;
|
|
2456
|
-
fleets_max: number;
|
|
2457
|
-
managed_fleets_cpu_max: number;
|
|
2458
|
-
cluster_tiers: string[];
|
|
2459
|
-
regions: string[];
|
|
2460
|
-
}, {
|
|
2461
|
-
versions: {
|
|
2462
|
-
id: string;
|
|
2463
|
-
label: string;
|
|
2464
|
-
}[];
|
|
2465
|
-
basic_clusters_max: number;
|
|
2466
|
-
basic_clusters_available: number;
|
|
2467
|
-
pro_clusters_max: number;
|
|
2468
|
-
pro_clusters_available: number;
|
|
2469
|
-
fleets_max: number;
|
|
2470
|
-
managed_fleets_cpu_max: number;
|
|
2471
|
-
cluster_tiers: string[];
|
|
2472
|
-
regions: string[];
|
|
2473
|
-
}>;
|
|
2474
|
-
pending_actions: z.ZodArray<z.ZodEnum<["signup-billing-address", "signup-payment-method", "signup-invite-team", "signup-create-cluster"]>, "many">;
|
|
2475
|
-
status: z.ZodEnum<["active", "closed", "suspended"]>;
|
|
2476
|
-
}, "strip", z.ZodTypeAny, {
|
|
2477
|
-
name: string;
|
|
2478
|
-
id: string;
|
|
2479
|
-
status: "active" | "closed" | "suspended";
|
|
2480
|
-
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
|
-
quota: {
|
|
2494
|
-
versions: {
|
|
2495
|
-
id: string;
|
|
2496
|
-
label: string;
|
|
2497
|
-
}[];
|
|
2498
|
-
basic_clusters_max: number;
|
|
2499
|
-
basic_clusters_available: number;
|
|
2500
|
-
pro_clusters_max: number;
|
|
2501
|
-
pro_clusters_available: number;
|
|
2502
|
-
fleets_max: number;
|
|
2503
|
-
managed_fleets_cpu_max: number;
|
|
2504
|
-
cluster_tiers: string[];
|
|
2505
|
-
regions: string[];
|
|
2506
|
-
};
|
|
2507
|
-
pending_actions: ("signup-payment-method" | "signup-billing-address" | "signup-invite-team" | "signup-create-cluster")[];
|
|
2508
|
-
}, {
|
|
2509
|
-
name: string;
|
|
2510
|
-
id: string;
|
|
2511
|
-
status: "active" | "closed" | "suspended";
|
|
2512
|
-
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
|
-
quota: {
|
|
2526
|
-
versions: {
|
|
2527
|
-
id: string;
|
|
2528
|
-
label: string;
|
|
2529
|
-
}[];
|
|
2530
|
-
basic_clusters_max: number;
|
|
2531
|
-
basic_clusters_available: number;
|
|
2532
|
-
pro_clusters_max: number;
|
|
2533
|
-
pro_clusters_available: number;
|
|
2534
|
-
fleets_max: number;
|
|
2535
|
-
managed_fleets_cpu_max: number;
|
|
2536
|
-
cluster_tiers: string[];
|
|
2537
|
-
regions: string[];
|
|
2538
|
-
};
|
|
2539
|
-
pending_actions: ("signup-payment-method" | "signup-billing-address" | "signup-invite-team" | "signup-create-cluster")[];
|
|
2540
|
-
}>;
|
|
2541
|
-
export declare const zUpdateOrganizationResponse: z.ZodObject<{
|
|
2542
|
-
name: z.ZodString;
|
|
2543
|
-
contactInfo: z.ZodObject<{
|
|
2544
|
-
address1: z.ZodOptional<z.ZodString>;
|
|
2545
|
-
address2: z.ZodOptional<z.ZodString>;
|
|
2546
|
-
postalCode: z.ZodOptional<z.ZodString>;
|
|
2547
|
-
city: z.ZodOptional<z.ZodString>;
|
|
2548
|
-
state: z.ZodOptional<z.ZodString>;
|
|
2549
|
-
country: z.ZodOptional<z.ZodString>;
|
|
2550
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
2551
|
-
email: z.ZodString;
|
|
2552
|
-
first_name: z.ZodString;
|
|
2553
|
-
last_name: z.ZodString;
|
|
2554
|
-
}, "strip", z.ZodTypeAny, {
|
|
2555
|
-
email: string;
|
|
2556
|
-
first_name: string;
|
|
2557
|
-
last_name: string;
|
|
2558
|
-
state?: string | undefined;
|
|
2559
|
-
country?: string | undefined;
|
|
2560
|
-
address1?: string | undefined;
|
|
2561
|
-
address2?: string | undefined;
|
|
2562
|
-
postalCode?: string | undefined;
|
|
2563
|
-
city?: string | undefined;
|
|
2564
|
-
phone?: string | undefined;
|
|
2565
|
-
}, {
|
|
2566
|
-
email: string;
|
|
2567
|
-
first_name: string;
|
|
2568
|
-
last_name: string;
|
|
2569
|
-
state?: string | undefined;
|
|
2570
|
-
country?: string | undefined;
|
|
2571
|
-
address1?: string | undefined;
|
|
2572
|
-
address2?: string | undefined;
|
|
2573
|
-
postalCode?: string | undefined;
|
|
2574
|
-
city?: string | undefined;
|
|
2575
|
-
phone?: string | undefined;
|
|
2576
|
-
}>;
|
|
2577
2142
|
id: z.ZodString;
|
|
2143
|
+
name: z.ZodOptional<z.ZodString>;
|
|
2578
2144
|
date_created: z.ZodString;
|
|
2579
2145
|
quota: z.ZodObject<{
|
|
2580
2146
|
basic_clusters_max: z.ZodNumber;
|
|
@@ -2622,25 +2188,11 @@ export declare const zUpdateOrganizationResponse: z.ZodObject<{
|
|
|
2622
2188
|
cluster_tiers: string[];
|
|
2623
2189
|
regions: string[];
|
|
2624
2190
|
}>;
|
|
2625
|
-
pending_actions: z.ZodArray<z.ZodEnum<["signup-billing-address", "signup-payment-method", "signup-invite-team", "signup-create-cluster"]>, "many">;
|
|
2626
2191
|
status: z.ZodEnum<["active", "closed", "suspended"]>;
|
|
2627
2192
|
}, "strip", z.ZodTypeAny, {
|
|
2628
|
-
name: string;
|
|
2629
2193
|
id: string;
|
|
2630
2194
|
status: "active" | "closed" | "suspended";
|
|
2631
2195
|
date_created: string;
|
|
2632
|
-
contactInfo: {
|
|
2633
|
-
email: string;
|
|
2634
|
-
first_name: string;
|
|
2635
|
-
last_name: string;
|
|
2636
|
-
state?: string | undefined;
|
|
2637
|
-
country?: string | undefined;
|
|
2638
|
-
address1?: string | undefined;
|
|
2639
|
-
address2?: string | undefined;
|
|
2640
|
-
postalCode?: string | undefined;
|
|
2641
|
-
city?: string | undefined;
|
|
2642
|
-
phone?: string | undefined;
|
|
2643
|
-
};
|
|
2644
2196
|
quota: {
|
|
2645
2197
|
versions: {
|
|
2646
2198
|
id: string;
|
|
@@ -2655,24 +2207,11 @@ export declare const zUpdateOrganizationResponse: z.ZodObject<{
|
|
|
2655
2207
|
cluster_tiers: string[];
|
|
2656
2208
|
regions: string[];
|
|
2657
2209
|
};
|
|
2658
|
-
|
|
2210
|
+
name?: string | undefined;
|
|
2659
2211
|
}, {
|
|
2660
|
-
name: string;
|
|
2661
2212
|
id: string;
|
|
2662
2213
|
status: "active" | "closed" | "suspended";
|
|
2663
2214
|
date_created: string;
|
|
2664
|
-
contactInfo: {
|
|
2665
|
-
email: string;
|
|
2666
|
-
first_name: string;
|
|
2667
|
-
last_name: string;
|
|
2668
|
-
state?: string | undefined;
|
|
2669
|
-
country?: string | undefined;
|
|
2670
|
-
address1?: string | undefined;
|
|
2671
|
-
address2?: string | undefined;
|
|
2672
|
-
postalCode?: string | undefined;
|
|
2673
|
-
city?: string | undefined;
|
|
2674
|
-
phone?: string | undefined;
|
|
2675
|
-
};
|
|
2676
2215
|
quota: {
|
|
2677
2216
|
versions: {
|
|
2678
2217
|
id: string;
|
|
@@ -2687,7 +2226,7 @@ export declare const zUpdateOrganizationResponse: z.ZodObject<{
|
|
|
2687
2226
|
cluster_tiers: string[];
|
|
2688
2227
|
regions: string[];
|
|
2689
2228
|
};
|
|
2690
|
-
|
|
2229
|
+
name?: string | undefined;
|
|
2691
2230
|
}>;
|
|
2692
2231
|
export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
|
|
2693
2232
|
name: z.ZodString;
|
|
@@ -2817,9 +2356,9 @@ export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
|
|
|
2817
2356
|
role: "User" | "Administrator";
|
|
2818
2357
|
email: string;
|
|
2819
2358
|
status: "active" | "inactive";
|
|
2820
|
-
date_created: string;
|
|
2821
2359
|
first_name: string;
|
|
2822
2360
|
last_name: string;
|
|
2361
|
+
date_created: string;
|
|
2823
2362
|
cluster_permissions?: {
|
|
2824
2363
|
cluster_id: string;
|
|
2825
2364
|
permissions: "readonly" | "readwrite";
|
|
@@ -2829,9 +2368,9 @@ export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
|
|
|
2829
2368
|
role: "User" | "Administrator";
|
|
2830
2369
|
email: string;
|
|
2831
2370
|
status: "active" | "inactive";
|
|
2832
|
-
date_created: string;
|
|
2833
2371
|
first_name: string;
|
|
2834
2372
|
last_name: string;
|
|
2373
|
+
date_created: string;
|
|
2835
2374
|
cluster_permissions?: {
|
|
2836
2375
|
cluster_id: string;
|
|
2837
2376
|
permissions: "readonly" | "readwrite";
|
|
@@ -2860,9 +2399,9 @@ export declare const zCreateUserResponse: z.ZodObject<{
|
|
|
2860
2399
|
role: "User" | "Administrator";
|
|
2861
2400
|
email: string;
|
|
2862
2401
|
status: "active" | "inactive";
|
|
2863
|
-
date_created: string;
|
|
2864
2402
|
first_name: string;
|
|
2865
2403
|
last_name: string;
|
|
2404
|
+
date_created: string;
|
|
2866
2405
|
cluster_permissions?: {
|
|
2867
2406
|
cluster_id: string;
|
|
2868
2407
|
permissions: "readonly" | "readwrite";
|
|
@@ -2872,9 +2411,9 @@ export declare const zCreateUserResponse: z.ZodObject<{
|
|
|
2872
2411
|
role: "User" | "Administrator";
|
|
2873
2412
|
email: string;
|
|
2874
2413
|
status: "active" | "inactive";
|
|
2875
|
-
date_created: string;
|
|
2876
2414
|
first_name: string;
|
|
2877
2415
|
last_name: string;
|
|
2416
|
+
date_created: string;
|
|
2878
2417
|
cluster_permissions?: {
|
|
2879
2418
|
cluster_id: string;
|
|
2880
2419
|
permissions: "readonly" | "readwrite";
|
|
@@ -2903,9 +2442,9 @@ export declare const zDeleteUserResponse: z.ZodObject<{
|
|
|
2903
2442
|
role: "User" | "Administrator";
|
|
2904
2443
|
email: string;
|
|
2905
2444
|
status: "active" | "inactive";
|
|
2906
|
-
date_created: string;
|
|
2907
2445
|
first_name: string;
|
|
2908
2446
|
last_name: string;
|
|
2447
|
+
date_created: string;
|
|
2909
2448
|
cluster_permissions?: {
|
|
2910
2449
|
cluster_id: string;
|
|
2911
2450
|
permissions: "readonly" | "readwrite";
|
|
@@ -2915,9 +2454,9 @@ export declare const zDeleteUserResponse: z.ZodObject<{
|
|
|
2915
2454
|
role: "User" | "Administrator";
|
|
2916
2455
|
email: string;
|
|
2917
2456
|
status: "active" | "inactive";
|
|
2918
|
-
date_created: string;
|
|
2919
2457
|
first_name: string;
|
|
2920
2458
|
last_name: string;
|
|
2459
|
+
date_created: string;
|
|
2921
2460
|
cluster_permissions?: {
|
|
2922
2461
|
cluster_id: string;
|
|
2923
2462
|
permissions: "readonly" | "readwrite";
|
|
@@ -2946,9 +2485,9 @@ export declare const zGetUserResponse: z.ZodObject<{
|
|
|
2946
2485
|
role: "User" | "Administrator";
|
|
2947
2486
|
email: string;
|
|
2948
2487
|
status: "active" | "inactive";
|
|
2949
|
-
date_created: string;
|
|
2950
2488
|
first_name: string;
|
|
2951
2489
|
last_name: string;
|
|
2490
|
+
date_created: string;
|
|
2952
2491
|
cluster_permissions?: {
|
|
2953
2492
|
cluster_id: string;
|
|
2954
2493
|
permissions: "readonly" | "readwrite";
|
|
@@ -2958,9 +2497,9 @@ export declare const zGetUserResponse: z.ZodObject<{
|
|
|
2958
2497
|
role: "User" | "Administrator";
|
|
2959
2498
|
email: string;
|
|
2960
2499
|
status: "active" | "inactive";
|
|
2961
|
-
date_created: string;
|
|
2962
2500
|
first_name: string;
|
|
2963
2501
|
last_name: string;
|
|
2502
|
+
date_created: string;
|
|
2964
2503
|
cluster_permissions?: {
|
|
2965
2504
|
cluster_id: string;
|
|
2966
2505
|
permissions: "readonly" | "readwrite";
|
|
@@ -2989,9 +2528,9 @@ export declare const zUpdateUserResponse: z.ZodObject<{
|
|
|
2989
2528
|
role: "User" | "Administrator";
|
|
2990
2529
|
email: string;
|
|
2991
2530
|
status: "active" | "inactive";
|
|
2992
|
-
date_created: string;
|
|
2993
2531
|
first_name: string;
|
|
2994
2532
|
last_name: string;
|
|
2533
|
+
date_created: string;
|
|
2995
2534
|
cluster_permissions?: {
|
|
2996
2535
|
cluster_id: string;
|
|
2997
2536
|
permissions: "readonly" | "readwrite";
|
|
@@ -3001,9 +2540,9 @@ export declare const zUpdateUserResponse: z.ZodObject<{
|
|
|
3001
2540
|
role: "User" | "Administrator";
|
|
3002
2541
|
email: string;
|
|
3003
2542
|
status: "active" | "inactive";
|
|
3004
|
-
date_created: string;
|
|
3005
2543
|
first_name: string;
|
|
3006
2544
|
last_name: string;
|
|
2545
|
+
date_created: string;
|
|
3007
2546
|
cluster_permissions?: {
|
|
3008
2547
|
cluster_id: string;
|
|
3009
2548
|
permissions: "readonly" | "readwrite";
|
|
@@ -3032,9 +2571,9 @@ export declare const zDeleteClusterPermissionsResponse: z.ZodObject<{
|
|
|
3032
2571
|
role: "User" | "Administrator";
|
|
3033
2572
|
email: string;
|
|
3034
2573
|
status: "active" | "inactive";
|
|
3035
|
-
date_created: string;
|
|
3036
2574
|
first_name: string;
|
|
3037
2575
|
last_name: string;
|
|
2576
|
+
date_created: string;
|
|
3038
2577
|
cluster_permissions?: {
|
|
3039
2578
|
cluster_id: string;
|
|
3040
2579
|
permissions: "readonly" | "readwrite";
|
|
@@ -3044,9 +2583,9 @@ export declare const zDeleteClusterPermissionsResponse: z.ZodObject<{
|
|
|
3044
2583
|
role: "User" | "Administrator";
|
|
3045
2584
|
email: string;
|
|
3046
2585
|
status: "active" | "inactive";
|
|
3047
|
-
date_created: string;
|
|
3048
2586
|
first_name: string;
|
|
3049
2587
|
last_name: string;
|
|
2588
|
+
date_created: string;
|
|
3050
2589
|
cluster_permissions?: {
|
|
3051
2590
|
cluster_id: string;
|
|
3052
2591
|
permissions: "readonly" | "readwrite";
|
|
@@ -3075,9 +2614,9 @@ export declare const zSetClusterPermissionsResponse: z.ZodObject<{
|
|
|
3075
2614
|
role: "User" | "Administrator";
|
|
3076
2615
|
email: string;
|
|
3077
2616
|
status: "active" | "inactive";
|
|
3078
|
-
date_created: string;
|
|
3079
2617
|
first_name: string;
|
|
3080
2618
|
last_name: string;
|
|
2619
|
+
date_created: string;
|
|
3081
2620
|
cluster_permissions?: {
|
|
3082
2621
|
cluster_id: string;
|
|
3083
2622
|
permissions: "readonly" | "readwrite";
|
|
@@ -3087,9 +2626,9 @@ export declare const zSetClusterPermissionsResponse: z.ZodObject<{
|
|
|
3087
2626
|
role: "User" | "Administrator";
|
|
3088
2627
|
email: string;
|
|
3089
2628
|
status: "active" | "inactive";
|
|
3090
|
-
date_created: string;
|
|
3091
2629
|
first_name: string;
|
|
3092
2630
|
last_name: string;
|
|
2631
|
+
date_created: string;
|
|
3093
2632
|
cluster_permissions?: {
|
|
3094
2633
|
cluster_id: string;
|
|
3095
2634
|
permissions: "readonly" | "readwrite";
|