@cloudfleet/sdk 0.0.1-5a83a44 → 0.0.1-638a41b
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 +180 -279
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +193 -280
- package/dist/schemas.gen.js.map +1 -1
- package/dist/sdk.gen.d.ts +18 -14
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/sdk.gen.js +29 -20
- package/dist/sdk.gen.js.map +1 -1
- package/dist/types.gen.d.ts +121 -215
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +225 -627
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +60 -64
- 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"]>>;
|
|
@@ -33,6 +70,19 @@ export declare const zClusterJoinInformation: z.ZodObject<{
|
|
|
33
70
|
tailscale: string;
|
|
34
71
|
containerd: string;
|
|
35
72
|
}>;
|
|
73
|
+
third_party_api_access_config: z.ZodObject<{
|
|
74
|
+
metadata_url: z.ZodString;
|
|
75
|
+
aws_role_arn: z.ZodString;
|
|
76
|
+
gcp_workload_identity_provider: z.ZodString;
|
|
77
|
+
}, "strip", z.ZodTypeAny, {
|
|
78
|
+
metadata_url: string;
|
|
79
|
+
aws_role_arn: string;
|
|
80
|
+
gcp_workload_identity_provider: string;
|
|
81
|
+
}, {
|
|
82
|
+
metadata_url: string;
|
|
83
|
+
aws_role_arn: string;
|
|
84
|
+
gcp_workload_identity_provider: string;
|
|
85
|
+
}>;
|
|
36
86
|
}, "strip", z.ZodTypeAny, {
|
|
37
87
|
certificate_authority: string;
|
|
38
88
|
endpoint: string;
|
|
@@ -43,6 +93,11 @@ export declare const zClusterJoinInformation: z.ZodObject<{
|
|
|
43
93
|
tailscale: string;
|
|
44
94
|
containerd: string;
|
|
45
95
|
};
|
|
96
|
+
third_party_api_access_config: {
|
|
97
|
+
metadata_url: string;
|
|
98
|
+
aws_role_arn: string;
|
|
99
|
+
gcp_workload_identity_provider: string;
|
|
100
|
+
};
|
|
46
101
|
}, {
|
|
47
102
|
certificate_authority: string;
|
|
48
103
|
endpoint: string;
|
|
@@ -53,6 +108,11 @@ export declare const zClusterJoinInformation: z.ZodObject<{
|
|
|
53
108
|
tailscale: string;
|
|
54
109
|
containerd: string;
|
|
55
110
|
};
|
|
111
|
+
third_party_api_access_config: {
|
|
112
|
+
metadata_url: string;
|
|
113
|
+
aws_role_arn: string;
|
|
114
|
+
gcp_workload_identity_provider: string;
|
|
115
|
+
};
|
|
56
116
|
}>;
|
|
57
117
|
export declare const zCluster: z.ZodObject<{
|
|
58
118
|
name: z.ZodString;
|
|
@@ -678,7 +738,6 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
678
738
|
currency?: "USD" | "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
|
|
679
739
|
id?: string | undefined;
|
|
680
740
|
status?: "DRAFT" | "COMMITTED" | "VOID" | undefined;
|
|
681
|
-
amount?: number | undefined;
|
|
682
741
|
items?: {
|
|
683
742
|
currency?: "USD" | "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
|
|
684
743
|
id?: string | undefined;
|
|
@@ -703,6 +762,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
703
762
|
childItems?: unknown[] | undefined;
|
|
704
763
|
}[] | undefined;
|
|
705
764
|
organizationId?: string | undefined;
|
|
765
|
+
amount?: number | undefined;
|
|
706
766
|
creditAdj?: number | undefined;
|
|
707
767
|
refundAdj?: number | undefined;
|
|
708
768
|
invoiceDate?: string | undefined;
|
|
@@ -737,7 +797,6 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
737
797
|
currency?: "USD" | "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
|
|
738
798
|
id?: string | undefined;
|
|
739
799
|
status?: "DRAFT" | "COMMITTED" | "VOID" | undefined;
|
|
740
|
-
amount?: number | undefined;
|
|
741
800
|
items?: {
|
|
742
801
|
currency?: "USD" | "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
|
|
743
802
|
id?: string | undefined;
|
|
@@ -762,6 +821,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
762
821
|
childItems?: unknown[] | undefined;
|
|
763
822
|
}[] | undefined;
|
|
764
823
|
organizationId?: string | undefined;
|
|
824
|
+
amount?: number | undefined;
|
|
765
825
|
creditAdj?: number | undefined;
|
|
766
826
|
refundAdj?: number | undefined;
|
|
767
827
|
invoiceDate?: string | undefined;
|
|
@@ -793,145 +853,28 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
793
853
|
childItems?: unknown[] | undefined;
|
|
794
854
|
}[] | undefined;
|
|
795
855
|
}>;
|
|
796
|
-
export declare const
|
|
797
|
-
address1: z.ZodOptional<z.ZodString>;
|
|
798
|
-
address2: z.ZodOptional<z.ZodString>;
|
|
799
|
-
postalCode: z.ZodOptional<z.ZodString>;
|
|
800
|
-
city: z.ZodOptional<z.ZodString>;
|
|
801
|
-
state: z.ZodOptional<z.ZodString>;
|
|
802
|
-
country: z.ZodOptional<z.ZodString>;
|
|
803
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
856
|
+
export declare const zOrganizationCreateInput: z.ZodObject<{
|
|
804
857
|
email: z.ZodString;
|
|
805
858
|
first_name: z.ZodString;
|
|
806
859
|
last_name: z.ZodString;
|
|
860
|
+
company_name: z.ZodString;
|
|
861
|
+
password: z.ZodString;
|
|
807
862
|
}, "strip", z.ZodTypeAny, {
|
|
808
863
|
email: string;
|
|
809
864
|
first_name: string;
|
|
810
865
|
last_name: string;
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
address1?: string | undefined;
|
|
814
|
-
address2?: string | undefined;
|
|
815
|
-
postalCode?: string | undefined;
|
|
816
|
-
city?: string | undefined;
|
|
817
|
-
phone?: string | undefined;
|
|
866
|
+
company_name: string;
|
|
867
|
+
password: string;
|
|
818
868
|
}, {
|
|
819
869
|
email: string;
|
|
820
870
|
first_name: string;
|
|
821
871
|
last_name: string;
|
|
822
|
-
|
|
823
|
-
country?: string | undefined;
|
|
824
|
-
address1?: string | undefined;
|
|
825
|
-
address2?: string | undefined;
|
|
826
|
-
postalCode?: string | undefined;
|
|
827
|
-
city?: string | undefined;
|
|
828
|
-
phone?: string | undefined;
|
|
829
|
-
}>;
|
|
830
|
-
export declare const zOrganizationCreateInput: z.ZodObject<{
|
|
831
|
-
name: z.ZodString;
|
|
832
|
-
contactInfo: z.ZodObject<{
|
|
833
|
-
address1: z.ZodOptional<z.ZodString>;
|
|
834
|
-
address2: z.ZodOptional<z.ZodString>;
|
|
835
|
-
postalCode: z.ZodOptional<z.ZodString>;
|
|
836
|
-
city: z.ZodOptional<z.ZodString>;
|
|
837
|
-
state: z.ZodOptional<z.ZodString>;
|
|
838
|
-
country: z.ZodOptional<z.ZodString>;
|
|
839
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
840
|
-
email: z.ZodString;
|
|
841
|
-
first_name: z.ZodString;
|
|
842
|
-
last_name: z.ZodString;
|
|
843
|
-
}, "strip", z.ZodTypeAny, {
|
|
844
|
-
email: string;
|
|
845
|
-
first_name: string;
|
|
846
|
-
last_name: string;
|
|
847
|
-
state?: string | undefined;
|
|
848
|
-
country?: string | undefined;
|
|
849
|
-
address1?: string | undefined;
|
|
850
|
-
address2?: string | undefined;
|
|
851
|
-
postalCode?: string | undefined;
|
|
852
|
-
city?: string | undefined;
|
|
853
|
-
phone?: string | undefined;
|
|
854
|
-
}, {
|
|
855
|
-
email: string;
|
|
856
|
-
first_name: string;
|
|
857
|
-
last_name: string;
|
|
858
|
-
state?: string | undefined;
|
|
859
|
-
country?: string | undefined;
|
|
860
|
-
address1?: string | undefined;
|
|
861
|
-
address2?: string | undefined;
|
|
862
|
-
postalCode?: string | undefined;
|
|
863
|
-
city?: string | undefined;
|
|
864
|
-
phone?: string | undefined;
|
|
865
|
-
}>;
|
|
866
|
-
password: z.ZodString;
|
|
867
|
-
}, "strip", z.ZodTypeAny, {
|
|
868
|
-
name: string;
|
|
869
|
-
contactInfo: {
|
|
870
|
-
email: string;
|
|
871
|
-
first_name: string;
|
|
872
|
-
last_name: string;
|
|
873
|
-
state?: string | undefined;
|
|
874
|
-
country?: string | undefined;
|
|
875
|
-
address1?: string | undefined;
|
|
876
|
-
address2?: string | undefined;
|
|
877
|
-
postalCode?: string | undefined;
|
|
878
|
-
city?: string | undefined;
|
|
879
|
-
phone?: string | undefined;
|
|
880
|
-
};
|
|
881
|
-
password: string;
|
|
882
|
-
}, {
|
|
883
|
-
name: string;
|
|
884
|
-
contactInfo: {
|
|
885
|
-
email: string;
|
|
886
|
-
first_name: string;
|
|
887
|
-
last_name: string;
|
|
888
|
-
state?: string | undefined;
|
|
889
|
-
country?: string | undefined;
|
|
890
|
-
address1?: string | undefined;
|
|
891
|
-
address2?: string | undefined;
|
|
892
|
-
postalCode?: string | undefined;
|
|
893
|
-
city?: string | undefined;
|
|
894
|
-
phone?: string | undefined;
|
|
895
|
-
};
|
|
872
|
+
company_name: string;
|
|
896
873
|
password: string;
|
|
897
874
|
}>;
|
|
898
875
|
export declare const zOrganization: z.ZodObject<{
|
|
899
|
-
name: z.ZodString;
|
|
900
|
-
contactInfo: z.ZodObject<{
|
|
901
|
-
address1: z.ZodOptional<z.ZodString>;
|
|
902
|
-
address2: z.ZodOptional<z.ZodString>;
|
|
903
|
-
postalCode: z.ZodOptional<z.ZodString>;
|
|
904
|
-
city: z.ZodOptional<z.ZodString>;
|
|
905
|
-
state: z.ZodOptional<z.ZodString>;
|
|
906
|
-
country: z.ZodOptional<z.ZodString>;
|
|
907
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
908
|
-
email: z.ZodString;
|
|
909
|
-
first_name: z.ZodString;
|
|
910
|
-
last_name: z.ZodString;
|
|
911
|
-
}, "strip", z.ZodTypeAny, {
|
|
912
|
-
email: string;
|
|
913
|
-
first_name: string;
|
|
914
|
-
last_name: string;
|
|
915
|
-
state?: string | undefined;
|
|
916
|
-
country?: string | undefined;
|
|
917
|
-
address1?: string | undefined;
|
|
918
|
-
address2?: string | undefined;
|
|
919
|
-
postalCode?: string | undefined;
|
|
920
|
-
city?: string | undefined;
|
|
921
|
-
phone?: string | undefined;
|
|
922
|
-
}, {
|
|
923
|
-
email: string;
|
|
924
|
-
first_name: string;
|
|
925
|
-
last_name: string;
|
|
926
|
-
state?: string | undefined;
|
|
927
|
-
country?: string | undefined;
|
|
928
|
-
address1?: string | undefined;
|
|
929
|
-
address2?: string | undefined;
|
|
930
|
-
postalCode?: string | undefined;
|
|
931
|
-
city?: string | undefined;
|
|
932
|
-
phone?: string | undefined;
|
|
933
|
-
}>;
|
|
934
876
|
id: z.ZodString;
|
|
877
|
+
name: z.ZodOptional<z.ZodString>;
|
|
935
878
|
date_created: z.ZodString;
|
|
936
879
|
quota: z.ZodObject<{
|
|
937
880
|
basic_clusters_max: z.ZodNumber;
|
|
@@ -979,25 +922,11 @@ export declare const zOrganization: z.ZodObject<{
|
|
|
979
922
|
cluster_tiers: string[];
|
|
980
923
|
regions: string[];
|
|
981
924
|
}>;
|
|
982
|
-
pending_actions: z.ZodArray<z.ZodEnum<["signup-billing-address", "signup-payment-method", "signup-invite-team", "signup-create-cluster"]>, "many">;
|
|
983
925
|
status: z.ZodEnum<["active", "closed", "suspended"]>;
|
|
984
926
|
}, "strip", z.ZodTypeAny, {
|
|
985
|
-
name: string;
|
|
986
927
|
id: string;
|
|
987
928
|
status: "active" | "closed" | "suspended";
|
|
988
929
|
date_created: string;
|
|
989
|
-
contactInfo: {
|
|
990
|
-
email: string;
|
|
991
|
-
first_name: string;
|
|
992
|
-
last_name: string;
|
|
993
|
-
state?: string | undefined;
|
|
994
|
-
country?: string | undefined;
|
|
995
|
-
address1?: string | undefined;
|
|
996
|
-
address2?: string | undefined;
|
|
997
|
-
postalCode?: string | undefined;
|
|
998
|
-
city?: string | undefined;
|
|
999
|
-
phone?: string | undefined;
|
|
1000
|
-
};
|
|
1001
930
|
quota: {
|
|
1002
931
|
versions: {
|
|
1003
932
|
id: string;
|
|
@@ -1012,24 +941,11 @@ export declare const zOrganization: z.ZodObject<{
|
|
|
1012
941
|
cluster_tiers: string[];
|
|
1013
942
|
regions: string[];
|
|
1014
943
|
};
|
|
1015
|
-
|
|
944
|
+
name?: string | undefined;
|
|
1016
945
|
}, {
|
|
1017
|
-
name: string;
|
|
1018
946
|
id: string;
|
|
1019
947
|
status: "active" | "closed" | "suspended";
|
|
1020
948
|
date_created: string;
|
|
1021
|
-
contactInfo: {
|
|
1022
|
-
email: string;
|
|
1023
|
-
first_name: string;
|
|
1024
|
-
last_name: string;
|
|
1025
|
-
state?: string | undefined;
|
|
1026
|
-
country?: string | undefined;
|
|
1027
|
-
address1?: string | undefined;
|
|
1028
|
-
address2?: string | undefined;
|
|
1029
|
-
postalCode?: string | undefined;
|
|
1030
|
-
city?: string | undefined;
|
|
1031
|
-
phone?: string | undefined;
|
|
1032
|
-
};
|
|
1033
949
|
quota: {
|
|
1034
950
|
versions: {
|
|
1035
951
|
id: string;
|
|
@@ -1044,71 +960,6 @@ export declare const zOrganization: z.ZodObject<{
|
|
|
1044
960
|
cluster_tiers: string[];
|
|
1045
961
|
regions: string[];
|
|
1046
962
|
};
|
|
1047
|
-
pending_actions: ("signup-payment-method" | "signup-billing-address" | "signup-invite-team" | "signup-create-cluster")[];
|
|
1048
|
-
}>;
|
|
1049
|
-
export declare const zOrganizationUpdateInput: z.ZodObject<{
|
|
1050
|
-
name: z.ZodOptional<z.ZodString>;
|
|
1051
|
-
contactInfo: z.ZodObject<{
|
|
1052
|
-
address1: z.ZodOptional<z.ZodString>;
|
|
1053
|
-
address2: z.ZodOptional<z.ZodString>;
|
|
1054
|
-
postalCode: z.ZodOptional<z.ZodString>;
|
|
1055
|
-
city: z.ZodOptional<z.ZodString>;
|
|
1056
|
-
state: z.ZodOptional<z.ZodString>;
|
|
1057
|
-
country: z.ZodOptional<z.ZodString>;
|
|
1058
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
1059
|
-
email: z.ZodString;
|
|
1060
|
-
first_name: z.ZodString;
|
|
1061
|
-
last_name: z.ZodString;
|
|
1062
|
-
}, "strip", z.ZodTypeAny, {
|
|
1063
|
-
email: string;
|
|
1064
|
-
first_name: string;
|
|
1065
|
-
last_name: string;
|
|
1066
|
-
state?: string | undefined;
|
|
1067
|
-
country?: string | undefined;
|
|
1068
|
-
address1?: string | undefined;
|
|
1069
|
-
address2?: string | undefined;
|
|
1070
|
-
postalCode?: string | undefined;
|
|
1071
|
-
city?: string | undefined;
|
|
1072
|
-
phone?: string | undefined;
|
|
1073
|
-
}, {
|
|
1074
|
-
email: string;
|
|
1075
|
-
first_name: string;
|
|
1076
|
-
last_name: string;
|
|
1077
|
-
state?: string | undefined;
|
|
1078
|
-
country?: string | undefined;
|
|
1079
|
-
address1?: string | undefined;
|
|
1080
|
-
address2?: string | undefined;
|
|
1081
|
-
postalCode?: string | undefined;
|
|
1082
|
-
city?: string | undefined;
|
|
1083
|
-
phone?: string | undefined;
|
|
1084
|
-
}>;
|
|
1085
|
-
}, "strip", z.ZodTypeAny, {
|
|
1086
|
-
contactInfo: {
|
|
1087
|
-
email: string;
|
|
1088
|
-
first_name: string;
|
|
1089
|
-
last_name: string;
|
|
1090
|
-
state?: string | undefined;
|
|
1091
|
-
country?: string | undefined;
|
|
1092
|
-
address1?: string | undefined;
|
|
1093
|
-
address2?: string | undefined;
|
|
1094
|
-
postalCode?: string | undefined;
|
|
1095
|
-
city?: string | undefined;
|
|
1096
|
-
phone?: string | undefined;
|
|
1097
|
-
};
|
|
1098
|
-
name?: string | undefined;
|
|
1099
|
-
}, {
|
|
1100
|
-
contactInfo: {
|
|
1101
|
-
email: string;
|
|
1102
|
-
first_name: string;
|
|
1103
|
-
last_name: string;
|
|
1104
|
-
state?: string | undefined;
|
|
1105
|
-
country?: string | undefined;
|
|
1106
|
-
address1?: string | undefined;
|
|
1107
|
-
address2?: string | undefined;
|
|
1108
|
-
postalCode?: string | undefined;
|
|
1109
|
-
city?: string | undefined;
|
|
1110
|
-
phone?: string | undefined;
|
|
1111
|
-
};
|
|
1112
963
|
name?: string | undefined;
|
|
1113
964
|
}>;
|
|
1114
965
|
export declare const zPaymentMethod: z.ZodObject<{
|
|
@@ -1176,20 +1027,38 @@ export declare const zTokenUpdateInput: z.ZodObject<{
|
|
|
1176
1027
|
role?: "User" | "Administrator" | undefined;
|
|
1177
1028
|
}>;
|
|
1178
1029
|
export declare const zUsage: z.ZodObject<{
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1030
|
+
hour: z.ZodOptional<z.ZodString>;
|
|
1031
|
+
cluster_id: z.ZodString;
|
|
1032
|
+
cluster_tier: z.ZodEnum<[""]>;
|
|
1033
|
+
product: z.ZodEnum<["cfke_infra_compute", "cfke_nodes", "cfke_controlplane"]>;
|
|
1034
|
+
node_name: z.ZodString;
|
|
1035
|
+
sku: z.ZodString;
|
|
1036
|
+
cpu: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1037
|
+
price: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1038
|
+
value: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1039
|
+
total: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1183
1040
|
}, "strip", z.ZodTypeAny, {
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1041
|
+
total: number | "";
|
|
1042
|
+
product: "cfke_infra_compute" | "cfke_nodes" | "cfke_controlplane";
|
|
1043
|
+
value: number | "";
|
|
1044
|
+
cpu: number | "";
|
|
1045
|
+
sku: string;
|
|
1046
|
+
price: number | "";
|
|
1047
|
+
cluster_id: string;
|
|
1048
|
+
cluster_tier: "";
|
|
1049
|
+
node_name: string;
|
|
1050
|
+
hour?: string | undefined;
|
|
1188
1051
|
}, {
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1052
|
+
total: number | "";
|
|
1053
|
+
product: "cfke_infra_compute" | "cfke_nodes" | "cfke_controlplane";
|
|
1054
|
+
value: number | "";
|
|
1055
|
+
cpu: number | "";
|
|
1056
|
+
sku: string;
|
|
1057
|
+
price: number | "";
|
|
1058
|
+
cluster_id: string;
|
|
1059
|
+
cluster_tier: "";
|
|
1060
|
+
node_name: string;
|
|
1061
|
+
hour?: string | undefined;
|
|
1193
1062
|
}>;
|
|
1194
1063
|
export declare const zUserCreateInput: z.ZodObject<{
|
|
1195
1064
|
email: z.ZodString;
|
|
@@ -1239,9 +1108,9 @@ export declare const zUser: z.ZodObject<{
|
|
|
1239
1108
|
role: "User" | "Administrator";
|
|
1240
1109
|
email: string;
|
|
1241
1110
|
status: "active" | "inactive";
|
|
1242
|
-
date_created: string;
|
|
1243
1111
|
first_name: string;
|
|
1244
1112
|
last_name: string;
|
|
1113
|
+
date_created: string;
|
|
1245
1114
|
cluster_permissions?: {
|
|
1246
1115
|
cluster_id: string;
|
|
1247
1116
|
permissions: "readonly" | "readwrite";
|
|
@@ -1251,9 +1120,9 @@ export declare const zUser: z.ZodObject<{
|
|
|
1251
1120
|
role: "User" | "Administrator";
|
|
1252
1121
|
email: string;
|
|
1253
1122
|
status: "active" | "inactive";
|
|
1254
|
-
date_created: string;
|
|
1255
1123
|
first_name: string;
|
|
1256
1124
|
last_name: string;
|
|
1125
|
+
date_created: string;
|
|
1257
1126
|
cluster_permissions?: {
|
|
1258
1127
|
cluster_id: string;
|
|
1259
1128
|
permissions: "readonly" | "readwrite";
|
|
@@ -1279,20 +1148,38 @@ export declare const zUserUpdateInput: z.ZodObject<{
|
|
|
1279
1148
|
last_name?: string | undefined;
|
|
1280
1149
|
}>;
|
|
1281
1150
|
export declare const zGetUsageResponse: z.ZodArray<z.ZodObject<{
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1151
|
+
hour: z.ZodOptional<z.ZodString>;
|
|
1152
|
+
cluster_id: z.ZodString;
|
|
1153
|
+
cluster_tier: z.ZodEnum<[""]>;
|
|
1154
|
+
product: z.ZodEnum<["cfke_infra_compute", "cfke_nodes", "cfke_controlplane"]>;
|
|
1155
|
+
node_name: z.ZodString;
|
|
1156
|
+
sku: z.ZodString;
|
|
1157
|
+
cpu: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1158
|
+
price: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1159
|
+
value: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1160
|
+
total: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1286
1161
|
}, "strip", z.ZodTypeAny, {
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
1162
|
+
total: number | "";
|
|
1163
|
+
product: "cfke_infra_compute" | "cfke_nodes" | "cfke_controlplane";
|
|
1164
|
+
value: number | "";
|
|
1165
|
+
cpu: number | "";
|
|
1166
|
+
sku: string;
|
|
1167
|
+
price: number | "";
|
|
1168
|
+
cluster_id: string;
|
|
1169
|
+
cluster_tier: "";
|
|
1170
|
+
node_name: string;
|
|
1171
|
+
hour?: string | undefined;
|
|
1291
1172
|
}, {
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
|
|
1173
|
+
total: number | "";
|
|
1174
|
+
product: "cfke_infra_compute" | "cfke_nodes" | "cfke_controlplane";
|
|
1175
|
+
value: number | "";
|
|
1176
|
+
cpu: number | "";
|
|
1177
|
+
sku: string;
|
|
1178
|
+
price: number | "";
|
|
1179
|
+
cluster_id: string;
|
|
1180
|
+
cluster_tier: "";
|
|
1181
|
+
node_name: string;
|
|
1182
|
+
hour?: string | undefined;
|
|
1296
1183
|
}>, "many">;
|
|
1297
1184
|
export declare const zGetBalanceResponse: z.ZodNumber;
|
|
1298
1185
|
export declare const zGetPaymentMethodResponse: z.ZodObject<{
|
|
@@ -1478,7 +1365,6 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1478
1365
|
currency?: "USD" | "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
|
|
1479
1366
|
id?: string | undefined;
|
|
1480
1367
|
status?: "DRAFT" | "COMMITTED" | "VOID" | undefined;
|
|
1481
|
-
amount?: number | undefined;
|
|
1482
1368
|
items?: {
|
|
1483
1369
|
currency?: "USD" | "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
|
|
1484
1370
|
id?: string | undefined;
|
|
@@ -1503,6 +1389,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1503
1389
|
childItems?: unknown[] | undefined;
|
|
1504
1390
|
}[] | undefined;
|
|
1505
1391
|
organizationId?: string | undefined;
|
|
1392
|
+
amount?: number | undefined;
|
|
1506
1393
|
creditAdj?: number | undefined;
|
|
1507
1394
|
refundAdj?: number | undefined;
|
|
1508
1395
|
invoiceDate?: string | undefined;
|
|
@@ -1537,7 +1424,6 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1537
1424
|
currency?: "USD" | "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
|
|
1538
1425
|
id?: string | undefined;
|
|
1539
1426
|
status?: "DRAFT" | "COMMITTED" | "VOID" | undefined;
|
|
1540
|
-
amount?: number | undefined;
|
|
1541
1427
|
items?: {
|
|
1542
1428
|
currency?: "USD" | "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
|
|
1543
1429
|
id?: string | undefined;
|
|
@@ -1562,6 +1448,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1562
1448
|
childItems?: unknown[] | undefined;
|
|
1563
1449
|
}[] | undefined;
|
|
1564
1450
|
organizationId?: string | undefined;
|
|
1451
|
+
amount?: number | undefined;
|
|
1565
1452
|
creditAdj?: number | undefined;
|
|
1566
1453
|
refundAdj?: number | undefined;
|
|
1567
1454
|
invoiceDate?: string | undefined;
|
|
@@ -1600,6 +1487,80 @@ export declare const zGetInvoiceResponse: z.ZodObject<{
|
|
|
1600
1487
|
}, {
|
|
1601
1488
|
html?: string | undefined;
|
|
1602
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
|
+
}>;
|
|
1603
1564
|
export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
1604
1565
|
limits: z.ZodOptional<z.ZodObject<{
|
|
1605
1566
|
cpu: z.ZodNumber;
|
|
@@ -2178,344 +2139,8 @@ export declare const zGetInviteResponse: z.ZodObject<{
|
|
|
2178
2139
|
organization_id?: string | undefined;
|
|
2179
2140
|
}>;
|
|
2180
2141
|
export declare const zGetOrganizationResponse: z.ZodObject<{
|
|
2181
|
-
name: z.ZodString;
|
|
2182
|
-
contactInfo: z.ZodObject<{
|
|
2183
|
-
address1: z.ZodOptional<z.ZodString>;
|
|
2184
|
-
address2: z.ZodOptional<z.ZodString>;
|
|
2185
|
-
postalCode: z.ZodOptional<z.ZodString>;
|
|
2186
|
-
city: z.ZodOptional<z.ZodString>;
|
|
2187
|
-
state: z.ZodOptional<z.ZodString>;
|
|
2188
|
-
country: z.ZodOptional<z.ZodString>;
|
|
2189
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
2190
|
-
email: z.ZodString;
|
|
2191
|
-
first_name: z.ZodString;
|
|
2192
|
-
last_name: z.ZodString;
|
|
2193
|
-
}, "strip", z.ZodTypeAny, {
|
|
2194
|
-
email: string;
|
|
2195
|
-
first_name: string;
|
|
2196
|
-
last_name: string;
|
|
2197
|
-
state?: string | undefined;
|
|
2198
|
-
country?: string | undefined;
|
|
2199
|
-
address1?: string | undefined;
|
|
2200
|
-
address2?: string | undefined;
|
|
2201
|
-
postalCode?: string | undefined;
|
|
2202
|
-
city?: string | undefined;
|
|
2203
|
-
phone?: string | undefined;
|
|
2204
|
-
}, {
|
|
2205
|
-
email: string;
|
|
2206
|
-
first_name: string;
|
|
2207
|
-
last_name: string;
|
|
2208
|
-
state?: string | undefined;
|
|
2209
|
-
country?: string | undefined;
|
|
2210
|
-
address1?: string | undefined;
|
|
2211
|
-
address2?: string | undefined;
|
|
2212
|
-
postalCode?: string | undefined;
|
|
2213
|
-
city?: string | undefined;
|
|
2214
|
-
phone?: string | undefined;
|
|
2215
|
-
}>;
|
|
2216
|
-
id: z.ZodString;
|
|
2217
|
-
date_created: z.ZodString;
|
|
2218
|
-
quota: z.ZodObject<{
|
|
2219
|
-
basic_clusters_max: z.ZodNumber;
|
|
2220
|
-
basic_clusters_available: z.ZodNumber;
|
|
2221
|
-
pro_clusters_max: z.ZodNumber;
|
|
2222
|
-
pro_clusters_available: z.ZodNumber;
|
|
2223
|
-
fleets_max: z.ZodNumber;
|
|
2224
|
-
managed_fleets_cpu_max: z.ZodNumber;
|
|
2225
|
-
cluster_tiers: z.ZodArray<z.ZodString, "many">;
|
|
2226
|
-
regions: z.ZodArray<z.ZodString, "many">;
|
|
2227
|
-
versions: z.ZodArray<z.ZodObject<{
|
|
2228
|
-
id: z.ZodString;
|
|
2229
|
-
label: z.ZodString;
|
|
2230
|
-
}, "strip", z.ZodTypeAny, {
|
|
2231
|
-
id: string;
|
|
2232
|
-
label: string;
|
|
2233
|
-
}, {
|
|
2234
|
-
id: string;
|
|
2235
|
-
label: string;
|
|
2236
|
-
}>, "many">;
|
|
2237
|
-
}, "strip", z.ZodTypeAny, {
|
|
2238
|
-
versions: {
|
|
2239
|
-
id: string;
|
|
2240
|
-
label: string;
|
|
2241
|
-
}[];
|
|
2242
|
-
basic_clusters_max: number;
|
|
2243
|
-
basic_clusters_available: number;
|
|
2244
|
-
pro_clusters_max: number;
|
|
2245
|
-
pro_clusters_available: number;
|
|
2246
|
-
fleets_max: number;
|
|
2247
|
-
managed_fleets_cpu_max: number;
|
|
2248
|
-
cluster_tiers: string[];
|
|
2249
|
-
regions: string[];
|
|
2250
|
-
}, {
|
|
2251
|
-
versions: {
|
|
2252
|
-
id: string;
|
|
2253
|
-
label: string;
|
|
2254
|
-
}[];
|
|
2255
|
-
basic_clusters_max: number;
|
|
2256
|
-
basic_clusters_available: number;
|
|
2257
|
-
pro_clusters_max: number;
|
|
2258
|
-
pro_clusters_available: number;
|
|
2259
|
-
fleets_max: number;
|
|
2260
|
-
managed_fleets_cpu_max: number;
|
|
2261
|
-
cluster_tiers: string[];
|
|
2262
|
-
regions: string[];
|
|
2263
|
-
}>;
|
|
2264
|
-
pending_actions: z.ZodArray<z.ZodEnum<["signup-billing-address", "signup-payment-method", "signup-invite-team", "signup-create-cluster"]>, "many">;
|
|
2265
|
-
status: z.ZodEnum<["active", "closed", "suspended"]>;
|
|
2266
|
-
}, "strip", z.ZodTypeAny, {
|
|
2267
|
-
name: string;
|
|
2268
|
-
id: string;
|
|
2269
|
-
status: "active" | "closed" | "suspended";
|
|
2270
|
-
date_created: string;
|
|
2271
|
-
contactInfo: {
|
|
2272
|
-
email: string;
|
|
2273
|
-
first_name: string;
|
|
2274
|
-
last_name: string;
|
|
2275
|
-
state?: string | undefined;
|
|
2276
|
-
country?: string | undefined;
|
|
2277
|
-
address1?: string | undefined;
|
|
2278
|
-
address2?: string | undefined;
|
|
2279
|
-
postalCode?: string | undefined;
|
|
2280
|
-
city?: string | undefined;
|
|
2281
|
-
phone?: string | undefined;
|
|
2282
|
-
};
|
|
2283
|
-
quota: {
|
|
2284
|
-
versions: {
|
|
2285
|
-
id: string;
|
|
2286
|
-
label: string;
|
|
2287
|
-
}[];
|
|
2288
|
-
basic_clusters_max: number;
|
|
2289
|
-
basic_clusters_available: number;
|
|
2290
|
-
pro_clusters_max: number;
|
|
2291
|
-
pro_clusters_available: number;
|
|
2292
|
-
fleets_max: number;
|
|
2293
|
-
managed_fleets_cpu_max: number;
|
|
2294
|
-
cluster_tiers: string[];
|
|
2295
|
-
regions: string[];
|
|
2296
|
-
};
|
|
2297
|
-
pending_actions: ("signup-payment-method" | "signup-billing-address" | "signup-invite-team" | "signup-create-cluster")[];
|
|
2298
|
-
}, {
|
|
2299
|
-
name: string;
|
|
2300
|
-
id: string;
|
|
2301
|
-
status: "active" | "closed" | "suspended";
|
|
2302
|
-
date_created: string;
|
|
2303
|
-
contactInfo: {
|
|
2304
|
-
email: string;
|
|
2305
|
-
first_name: string;
|
|
2306
|
-
last_name: string;
|
|
2307
|
-
state?: string | undefined;
|
|
2308
|
-
country?: string | undefined;
|
|
2309
|
-
address1?: string | undefined;
|
|
2310
|
-
address2?: string | undefined;
|
|
2311
|
-
postalCode?: string | undefined;
|
|
2312
|
-
city?: string | undefined;
|
|
2313
|
-
phone?: string | undefined;
|
|
2314
|
-
};
|
|
2315
|
-
quota: {
|
|
2316
|
-
versions: {
|
|
2317
|
-
id: string;
|
|
2318
|
-
label: string;
|
|
2319
|
-
}[];
|
|
2320
|
-
basic_clusters_max: number;
|
|
2321
|
-
basic_clusters_available: number;
|
|
2322
|
-
pro_clusters_max: number;
|
|
2323
|
-
pro_clusters_available: number;
|
|
2324
|
-
fleets_max: number;
|
|
2325
|
-
managed_fleets_cpu_max: number;
|
|
2326
|
-
cluster_tiers: string[];
|
|
2327
|
-
regions: string[];
|
|
2328
|
-
};
|
|
2329
|
-
pending_actions: ("signup-payment-method" | "signup-billing-address" | "signup-invite-team" | "signup-create-cluster")[];
|
|
2330
|
-
}>;
|
|
2331
|
-
export declare const zCreateOrganizationResponse: z.ZodObject<{
|
|
2332
|
-
name: z.ZodString;
|
|
2333
|
-
contactInfo: z.ZodObject<{
|
|
2334
|
-
address1: z.ZodOptional<z.ZodString>;
|
|
2335
|
-
address2: z.ZodOptional<z.ZodString>;
|
|
2336
|
-
postalCode: z.ZodOptional<z.ZodString>;
|
|
2337
|
-
city: z.ZodOptional<z.ZodString>;
|
|
2338
|
-
state: z.ZodOptional<z.ZodString>;
|
|
2339
|
-
country: z.ZodOptional<z.ZodString>;
|
|
2340
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
2341
|
-
email: z.ZodString;
|
|
2342
|
-
first_name: z.ZodString;
|
|
2343
|
-
last_name: z.ZodString;
|
|
2344
|
-
}, "strip", z.ZodTypeAny, {
|
|
2345
|
-
email: string;
|
|
2346
|
-
first_name: string;
|
|
2347
|
-
last_name: string;
|
|
2348
|
-
state?: string | undefined;
|
|
2349
|
-
country?: string | undefined;
|
|
2350
|
-
address1?: string | undefined;
|
|
2351
|
-
address2?: string | undefined;
|
|
2352
|
-
postalCode?: string | undefined;
|
|
2353
|
-
city?: string | undefined;
|
|
2354
|
-
phone?: string | undefined;
|
|
2355
|
-
}, {
|
|
2356
|
-
email: string;
|
|
2357
|
-
first_name: string;
|
|
2358
|
-
last_name: string;
|
|
2359
|
-
state?: string | undefined;
|
|
2360
|
-
country?: string | undefined;
|
|
2361
|
-
address1?: string | undefined;
|
|
2362
|
-
address2?: string | undefined;
|
|
2363
|
-
postalCode?: string | undefined;
|
|
2364
|
-
city?: string | undefined;
|
|
2365
|
-
phone?: string | undefined;
|
|
2366
|
-
}>;
|
|
2367
|
-
id: z.ZodString;
|
|
2368
|
-
date_created: z.ZodString;
|
|
2369
|
-
quota: z.ZodObject<{
|
|
2370
|
-
basic_clusters_max: z.ZodNumber;
|
|
2371
|
-
basic_clusters_available: z.ZodNumber;
|
|
2372
|
-
pro_clusters_max: z.ZodNumber;
|
|
2373
|
-
pro_clusters_available: z.ZodNumber;
|
|
2374
|
-
fleets_max: z.ZodNumber;
|
|
2375
|
-
managed_fleets_cpu_max: z.ZodNumber;
|
|
2376
|
-
cluster_tiers: z.ZodArray<z.ZodString, "many">;
|
|
2377
|
-
regions: z.ZodArray<z.ZodString, "many">;
|
|
2378
|
-
versions: z.ZodArray<z.ZodObject<{
|
|
2379
|
-
id: z.ZodString;
|
|
2380
|
-
label: z.ZodString;
|
|
2381
|
-
}, "strip", z.ZodTypeAny, {
|
|
2382
|
-
id: string;
|
|
2383
|
-
label: string;
|
|
2384
|
-
}, {
|
|
2385
|
-
id: string;
|
|
2386
|
-
label: string;
|
|
2387
|
-
}>, "many">;
|
|
2388
|
-
}, "strip", z.ZodTypeAny, {
|
|
2389
|
-
versions: {
|
|
2390
|
-
id: string;
|
|
2391
|
-
label: string;
|
|
2392
|
-
}[];
|
|
2393
|
-
basic_clusters_max: number;
|
|
2394
|
-
basic_clusters_available: number;
|
|
2395
|
-
pro_clusters_max: number;
|
|
2396
|
-
pro_clusters_available: number;
|
|
2397
|
-
fleets_max: number;
|
|
2398
|
-
managed_fleets_cpu_max: number;
|
|
2399
|
-
cluster_tiers: string[];
|
|
2400
|
-
regions: string[];
|
|
2401
|
-
}, {
|
|
2402
|
-
versions: {
|
|
2403
|
-
id: string;
|
|
2404
|
-
label: string;
|
|
2405
|
-
}[];
|
|
2406
|
-
basic_clusters_max: number;
|
|
2407
|
-
basic_clusters_available: number;
|
|
2408
|
-
pro_clusters_max: number;
|
|
2409
|
-
pro_clusters_available: number;
|
|
2410
|
-
fleets_max: number;
|
|
2411
|
-
managed_fleets_cpu_max: number;
|
|
2412
|
-
cluster_tiers: string[];
|
|
2413
|
-
regions: string[];
|
|
2414
|
-
}>;
|
|
2415
|
-
pending_actions: z.ZodArray<z.ZodEnum<["signup-billing-address", "signup-payment-method", "signup-invite-team", "signup-create-cluster"]>, "many">;
|
|
2416
|
-
status: z.ZodEnum<["active", "closed", "suspended"]>;
|
|
2417
|
-
}, "strip", z.ZodTypeAny, {
|
|
2418
|
-
name: string;
|
|
2419
|
-
id: string;
|
|
2420
|
-
status: "active" | "closed" | "suspended";
|
|
2421
|
-
date_created: string;
|
|
2422
|
-
contactInfo: {
|
|
2423
|
-
email: string;
|
|
2424
|
-
first_name: string;
|
|
2425
|
-
last_name: string;
|
|
2426
|
-
state?: string | undefined;
|
|
2427
|
-
country?: string | undefined;
|
|
2428
|
-
address1?: string | undefined;
|
|
2429
|
-
address2?: string | undefined;
|
|
2430
|
-
postalCode?: string | undefined;
|
|
2431
|
-
city?: string | undefined;
|
|
2432
|
-
phone?: string | undefined;
|
|
2433
|
-
};
|
|
2434
|
-
quota: {
|
|
2435
|
-
versions: {
|
|
2436
|
-
id: string;
|
|
2437
|
-
label: string;
|
|
2438
|
-
}[];
|
|
2439
|
-
basic_clusters_max: number;
|
|
2440
|
-
basic_clusters_available: number;
|
|
2441
|
-
pro_clusters_max: number;
|
|
2442
|
-
pro_clusters_available: number;
|
|
2443
|
-
fleets_max: number;
|
|
2444
|
-
managed_fleets_cpu_max: number;
|
|
2445
|
-
cluster_tiers: string[];
|
|
2446
|
-
regions: string[];
|
|
2447
|
-
};
|
|
2448
|
-
pending_actions: ("signup-payment-method" | "signup-billing-address" | "signup-invite-team" | "signup-create-cluster")[];
|
|
2449
|
-
}, {
|
|
2450
|
-
name: string;
|
|
2451
|
-
id: string;
|
|
2452
|
-
status: "active" | "closed" | "suspended";
|
|
2453
|
-
date_created: string;
|
|
2454
|
-
contactInfo: {
|
|
2455
|
-
email: string;
|
|
2456
|
-
first_name: string;
|
|
2457
|
-
last_name: string;
|
|
2458
|
-
state?: string | undefined;
|
|
2459
|
-
country?: string | undefined;
|
|
2460
|
-
address1?: string | undefined;
|
|
2461
|
-
address2?: string | undefined;
|
|
2462
|
-
postalCode?: string | undefined;
|
|
2463
|
-
city?: string | undefined;
|
|
2464
|
-
phone?: string | undefined;
|
|
2465
|
-
};
|
|
2466
|
-
quota: {
|
|
2467
|
-
versions: {
|
|
2468
|
-
id: string;
|
|
2469
|
-
label: string;
|
|
2470
|
-
}[];
|
|
2471
|
-
basic_clusters_max: number;
|
|
2472
|
-
basic_clusters_available: number;
|
|
2473
|
-
pro_clusters_max: number;
|
|
2474
|
-
pro_clusters_available: number;
|
|
2475
|
-
fleets_max: number;
|
|
2476
|
-
managed_fleets_cpu_max: number;
|
|
2477
|
-
cluster_tiers: string[];
|
|
2478
|
-
regions: string[];
|
|
2479
|
-
};
|
|
2480
|
-
pending_actions: ("signup-payment-method" | "signup-billing-address" | "signup-invite-team" | "signup-create-cluster")[];
|
|
2481
|
-
}>;
|
|
2482
|
-
export declare const zUpdateOrganizationResponse: z.ZodObject<{
|
|
2483
|
-
name: z.ZodString;
|
|
2484
|
-
contactInfo: z.ZodObject<{
|
|
2485
|
-
address1: z.ZodOptional<z.ZodString>;
|
|
2486
|
-
address2: z.ZodOptional<z.ZodString>;
|
|
2487
|
-
postalCode: z.ZodOptional<z.ZodString>;
|
|
2488
|
-
city: z.ZodOptional<z.ZodString>;
|
|
2489
|
-
state: z.ZodOptional<z.ZodString>;
|
|
2490
|
-
country: z.ZodOptional<z.ZodString>;
|
|
2491
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
2492
|
-
email: z.ZodString;
|
|
2493
|
-
first_name: z.ZodString;
|
|
2494
|
-
last_name: z.ZodString;
|
|
2495
|
-
}, "strip", z.ZodTypeAny, {
|
|
2496
|
-
email: string;
|
|
2497
|
-
first_name: string;
|
|
2498
|
-
last_name: string;
|
|
2499
|
-
state?: string | undefined;
|
|
2500
|
-
country?: string | undefined;
|
|
2501
|
-
address1?: string | undefined;
|
|
2502
|
-
address2?: string | undefined;
|
|
2503
|
-
postalCode?: string | undefined;
|
|
2504
|
-
city?: string | undefined;
|
|
2505
|
-
phone?: string | undefined;
|
|
2506
|
-
}, {
|
|
2507
|
-
email: string;
|
|
2508
|
-
first_name: string;
|
|
2509
|
-
last_name: string;
|
|
2510
|
-
state?: string | undefined;
|
|
2511
|
-
country?: string | undefined;
|
|
2512
|
-
address1?: string | undefined;
|
|
2513
|
-
address2?: string | undefined;
|
|
2514
|
-
postalCode?: string | undefined;
|
|
2515
|
-
city?: string | undefined;
|
|
2516
|
-
phone?: string | undefined;
|
|
2517
|
-
}>;
|
|
2518
2142
|
id: z.ZodString;
|
|
2143
|
+
name: z.ZodOptional<z.ZodString>;
|
|
2519
2144
|
date_created: z.ZodString;
|
|
2520
2145
|
quota: z.ZodObject<{
|
|
2521
2146
|
basic_clusters_max: z.ZodNumber;
|
|
@@ -2563,25 +2188,11 @@ export declare const zUpdateOrganizationResponse: z.ZodObject<{
|
|
|
2563
2188
|
cluster_tiers: string[];
|
|
2564
2189
|
regions: string[];
|
|
2565
2190
|
}>;
|
|
2566
|
-
pending_actions: z.ZodArray<z.ZodEnum<["signup-billing-address", "signup-payment-method", "signup-invite-team", "signup-create-cluster"]>, "many">;
|
|
2567
2191
|
status: z.ZodEnum<["active", "closed", "suspended"]>;
|
|
2568
2192
|
}, "strip", z.ZodTypeAny, {
|
|
2569
|
-
name: string;
|
|
2570
2193
|
id: string;
|
|
2571
2194
|
status: "active" | "closed" | "suspended";
|
|
2572
2195
|
date_created: string;
|
|
2573
|
-
contactInfo: {
|
|
2574
|
-
email: string;
|
|
2575
|
-
first_name: string;
|
|
2576
|
-
last_name: string;
|
|
2577
|
-
state?: string | undefined;
|
|
2578
|
-
country?: string | undefined;
|
|
2579
|
-
address1?: string | undefined;
|
|
2580
|
-
address2?: string | undefined;
|
|
2581
|
-
postalCode?: string | undefined;
|
|
2582
|
-
city?: string | undefined;
|
|
2583
|
-
phone?: string | undefined;
|
|
2584
|
-
};
|
|
2585
2196
|
quota: {
|
|
2586
2197
|
versions: {
|
|
2587
2198
|
id: string;
|
|
@@ -2596,24 +2207,11 @@ export declare const zUpdateOrganizationResponse: z.ZodObject<{
|
|
|
2596
2207
|
cluster_tiers: string[];
|
|
2597
2208
|
regions: string[];
|
|
2598
2209
|
};
|
|
2599
|
-
|
|
2210
|
+
name?: string | undefined;
|
|
2600
2211
|
}, {
|
|
2601
|
-
name: string;
|
|
2602
2212
|
id: string;
|
|
2603
2213
|
status: "active" | "closed" | "suspended";
|
|
2604
2214
|
date_created: string;
|
|
2605
|
-
contactInfo: {
|
|
2606
|
-
email: string;
|
|
2607
|
-
first_name: string;
|
|
2608
|
-
last_name: string;
|
|
2609
|
-
state?: string | undefined;
|
|
2610
|
-
country?: string | undefined;
|
|
2611
|
-
address1?: string | undefined;
|
|
2612
|
-
address2?: string | undefined;
|
|
2613
|
-
postalCode?: string | undefined;
|
|
2614
|
-
city?: string | undefined;
|
|
2615
|
-
phone?: string | undefined;
|
|
2616
|
-
};
|
|
2617
2215
|
quota: {
|
|
2618
2216
|
versions: {
|
|
2619
2217
|
id: string;
|
|
@@ -2628,7 +2226,7 @@ export declare const zUpdateOrganizationResponse: z.ZodObject<{
|
|
|
2628
2226
|
cluster_tiers: string[];
|
|
2629
2227
|
regions: string[];
|
|
2630
2228
|
};
|
|
2631
|
-
|
|
2229
|
+
name?: string | undefined;
|
|
2632
2230
|
}>;
|
|
2633
2231
|
export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
|
|
2634
2232
|
name: z.ZodString;
|
|
@@ -2758,9 +2356,9 @@ export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
|
|
|
2758
2356
|
role: "User" | "Administrator";
|
|
2759
2357
|
email: string;
|
|
2760
2358
|
status: "active" | "inactive";
|
|
2761
|
-
date_created: string;
|
|
2762
2359
|
first_name: string;
|
|
2763
2360
|
last_name: string;
|
|
2361
|
+
date_created: string;
|
|
2764
2362
|
cluster_permissions?: {
|
|
2765
2363
|
cluster_id: string;
|
|
2766
2364
|
permissions: "readonly" | "readwrite";
|
|
@@ -2770,9 +2368,9 @@ export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
|
|
|
2770
2368
|
role: "User" | "Administrator";
|
|
2771
2369
|
email: string;
|
|
2772
2370
|
status: "active" | "inactive";
|
|
2773
|
-
date_created: string;
|
|
2774
2371
|
first_name: string;
|
|
2775
2372
|
last_name: string;
|
|
2373
|
+
date_created: string;
|
|
2776
2374
|
cluster_permissions?: {
|
|
2777
2375
|
cluster_id: string;
|
|
2778
2376
|
permissions: "readonly" | "readwrite";
|
|
@@ -2801,9 +2399,9 @@ export declare const zCreateUserResponse: z.ZodObject<{
|
|
|
2801
2399
|
role: "User" | "Administrator";
|
|
2802
2400
|
email: string;
|
|
2803
2401
|
status: "active" | "inactive";
|
|
2804
|
-
date_created: string;
|
|
2805
2402
|
first_name: string;
|
|
2806
2403
|
last_name: string;
|
|
2404
|
+
date_created: string;
|
|
2807
2405
|
cluster_permissions?: {
|
|
2808
2406
|
cluster_id: string;
|
|
2809
2407
|
permissions: "readonly" | "readwrite";
|
|
@@ -2813,9 +2411,9 @@ export declare const zCreateUserResponse: z.ZodObject<{
|
|
|
2813
2411
|
role: "User" | "Administrator";
|
|
2814
2412
|
email: string;
|
|
2815
2413
|
status: "active" | "inactive";
|
|
2816
|
-
date_created: string;
|
|
2817
2414
|
first_name: string;
|
|
2818
2415
|
last_name: string;
|
|
2416
|
+
date_created: string;
|
|
2819
2417
|
cluster_permissions?: {
|
|
2820
2418
|
cluster_id: string;
|
|
2821
2419
|
permissions: "readonly" | "readwrite";
|
|
@@ -2844,9 +2442,9 @@ export declare const zDeleteUserResponse: z.ZodObject<{
|
|
|
2844
2442
|
role: "User" | "Administrator";
|
|
2845
2443
|
email: string;
|
|
2846
2444
|
status: "active" | "inactive";
|
|
2847
|
-
date_created: string;
|
|
2848
2445
|
first_name: string;
|
|
2849
2446
|
last_name: string;
|
|
2447
|
+
date_created: string;
|
|
2850
2448
|
cluster_permissions?: {
|
|
2851
2449
|
cluster_id: string;
|
|
2852
2450
|
permissions: "readonly" | "readwrite";
|
|
@@ -2856,9 +2454,9 @@ export declare const zDeleteUserResponse: z.ZodObject<{
|
|
|
2856
2454
|
role: "User" | "Administrator";
|
|
2857
2455
|
email: string;
|
|
2858
2456
|
status: "active" | "inactive";
|
|
2859
|
-
date_created: string;
|
|
2860
2457
|
first_name: string;
|
|
2861
2458
|
last_name: string;
|
|
2459
|
+
date_created: string;
|
|
2862
2460
|
cluster_permissions?: {
|
|
2863
2461
|
cluster_id: string;
|
|
2864
2462
|
permissions: "readonly" | "readwrite";
|
|
@@ -2887,9 +2485,9 @@ export declare const zGetUserResponse: z.ZodObject<{
|
|
|
2887
2485
|
role: "User" | "Administrator";
|
|
2888
2486
|
email: string;
|
|
2889
2487
|
status: "active" | "inactive";
|
|
2890
|
-
date_created: string;
|
|
2891
2488
|
first_name: string;
|
|
2892
2489
|
last_name: string;
|
|
2490
|
+
date_created: string;
|
|
2893
2491
|
cluster_permissions?: {
|
|
2894
2492
|
cluster_id: string;
|
|
2895
2493
|
permissions: "readonly" | "readwrite";
|
|
@@ -2899,9 +2497,9 @@ export declare const zGetUserResponse: z.ZodObject<{
|
|
|
2899
2497
|
role: "User" | "Administrator";
|
|
2900
2498
|
email: string;
|
|
2901
2499
|
status: "active" | "inactive";
|
|
2902
|
-
date_created: string;
|
|
2903
2500
|
first_name: string;
|
|
2904
2501
|
last_name: string;
|
|
2502
|
+
date_created: string;
|
|
2905
2503
|
cluster_permissions?: {
|
|
2906
2504
|
cluster_id: string;
|
|
2907
2505
|
permissions: "readonly" | "readwrite";
|
|
@@ -2930,9 +2528,9 @@ export declare const zUpdateUserResponse: z.ZodObject<{
|
|
|
2930
2528
|
role: "User" | "Administrator";
|
|
2931
2529
|
email: string;
|
|
2932
2530
|
status: "active" | "inactive";
|
|
2933
|
-
date_created: string;
|
|
2934
2531
|
first_name: string;
|
|
2935
2532
|
last_name: string;
|
|
2533
|
+
date_created: string;
|
|
2936
2534
|
cluster_permissions?: {
|
|
2937
2535
|
cluster_id: string;
|
|
2938
2536
|
permissions: "readonly" | "readwrite";
|
|
@@ -2942,9 +2540,9 @@ export declare const zUpdateUserResponse: z.ZodObject<{
|
|
|
2942
2540
|
role: "User" | "Administrator";
|
|
2943
2541
|
email: string;
|
|
2944
2542
|
status: "active" | "inactive";
|
|
2945
|
-
date_created: string;
|
|
2946
2543
|
first_name: string;
|
|
2947
2544
|
last_name: string;
|
|
2545
|
+
date_created: string;
|
|
2948
2546
|
cluster_permissions?: {
|
|
2949
2547
|
cluster_id: string;
|
|
2950
2548
|
permissions: "readonly" | "readwrite";
|
|
@@ -2973,9 +2571,9 @@ export declare const zDeleteClusterPermissionsResponse: z.ZodObject<{
|
|
|
2973
2571
|
role: "User" | "Administrator";
|
|
2974
2572
|
email: string;
|
|
2975
2573
|
status: "active" | "inactive";
|
|
2976
|
-
date_created: string;
|
|
2977
2574
|
first_name: string;
|
|
2978
2575
|
last_name: string;
|
|
2576
|
+
date_created: string;
|
|
2979
2577
|
cluster_permissions?: {
|
|
2980
2578
|
cluster_id: string;
|
|
2981
2579
|
permissions: "readonly" | "readwrite";
|
|
@@ -2985,9 +2583,9 @@ export declare const zDeleteClusterPermissionsResponse: z.ZodObject<{
|
|
|
2985
2583
|
role: "User" | "Administrator";
|
|
2986
2584
|
email: string;
|
|
2987
2585
|
status: "active" | "inactive";
|
|
2988
|
-
date_created: string;
|
|
2989
2586
|
first_name: string;
|
|
2990
2587
|
last_name: string;
|
|
2588
|
+
date_created: string;
|
|
2991
2589
|
cluster_permissions?: {
|
|
2992
2590
|
cluster_id: string;
|
|
2993
2591
|
permissions: "readonly" | "readwrite";
|
|
@@ -3016,9 +2614,9 @@ export declare const zSetClusterPermissionsResponse: z.ZodObject<{
|
|
|
3016
2614
|
role: "User" | "Administrator";
|
|
3017
2615
|
email: string;
|
|
3018
2616
|
status: "active" | "inactive";
|
|
3019
|
-
date_created: string;
|
|
3020
2617
|
first_name: string;
|
|
3021
2618
|
last_name: string;
|
|
2619
|
+
date_created: string;
|
|
3022
2620
|
cluster_permissions?: {
|
|
3023
2621
|
cluster_id: string;
|
|
3024
2622
|
permissions: "readonly" | "readwrite";
|
|
@@ -3028,9 +2626,9 @@ export declare const zSetClusterPermissionsResponse: z.ZodObject<{
|
|
|
3028
2626
|
role: "User" | "Administrator";
|
|
3029
2627
|
email: string;
|
|
3030
2628
|
status: "active" | "inactive";
|
|
3031
|
-
date_created: string;
|
|
3032
2629
|
first_name: string;
|
|
3033
2630
|
last_name: string;
|
|
2631
|
+
date_created: string;
|
|
3034
2632
|
cluster_permissions?: {
|
|
3035
2633
|
cluster_id: string;
|
|
3036
2634
|
permissions: "readonly" | "readwrite";
|