@cloudfleet/sdk 0.0.1-76812fb → 0.0.1-76e2a56
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/client.gen.d.ts +13 -0
- package/dist/client.gen.d.ts.map +1 -0
- package/dist/client.gen.js +6 -0
- package/dist/client.gen.js.map +1 -0
- 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 +33 -17
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/sdk.gen.js +71 -63
- package/dist/sdk.gen.js.map +1 -1
- package/dist/types.gen.d.ts +125 -216
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +295 -697
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +63 -67
- package/dist/zod.gen.js.map +1 -1
- package/package.json +5 -5
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;
|
|
@@ -73,18 +133,19 @@ export declare const zCluster: z.ZodObject<{
|
|
|
73
133
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
74
134
|
tier: "basic" | "pro";
|
|
75
135
|
version_channel: string;
|
|
136
|
+
ready?: boolean | undefined;
|
|
76
137
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
77
138
|
endpoint?: string | undefined;
|
|
78
139
|
certificate_ca?: string | undefined;
|
|
79
140
|
version_current?: string | undefined;
|
|
80
141
|
created_at?: string | undefined;
|
|
81
142
|
updated_at?: string | undefined;
|
|
82
|
-
ready?: boolean | undefined;
|
|
83
143
|
}, {
|
|
84
144
|
name: string;
|
|
85
145
|
id: string;
|
|
86
146
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
87
147
|
tier: "basic" | "pro";
|
|
148
|
+
ready?: boolean | undefined;
|
|
88
149
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
89
150
|
endpoint?: string | undefined;
|
|
90
151
|
version_channel?: string | undefined;
|
|
@@ -92,7 +153,6 @@ export declare const zCluster: z.ZodObject<{
|
|
|
92
153
|
version_current?: string | undefined;
|
|
93
154
|
created_at?: string | undefined;
|
|
94
155
|
updated_at?: string | undefined;
|
|
95
|
-
ready?: boolean | undefined;
|
|
96
156
|
}>;
|
|
97
157
|
export declare const zClusterUpdateInput: z.ZodObject<{
|
|
98
158
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -563,7 +623,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
563
623
|
catalogEffectiveDate: z.ZodOptional<z.ZodString>;
|
|
564
624
|
childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
565
625
|
}, "strip", z.ZodTypeAny, {
|
|
566
|
-
currency?: "
|
|
626
|
+
currency?: "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" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
|
|
567
627
|
id?: string | undefined;
|
|
568
628
|
description?: string | undefined;
|
|
569
629
|
amount?: number | undefined;
|
|
@@ -585,7 +645,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
585
645
|
catalogEffectiveDate?: string | undefined;
|
|
586
646
|
childItems?: unknown[] | undefined;
|
|
587
647
|
}, {
|
|
588
|
-
currency?: "
|
|
648
|
+
currency?: "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" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
|
|
589
649
|
id?: string | undefined;
|
|
590
650
|
description?: string | undefined;
|
|
591
651
|
amount?: number | undefined;
|
|
@@ -630,7 +690,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
630
690
|
catalogEffectiveDate: z.ZodOptional<z.ZodString>;
|
|
631
691
|
childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
632
692
|
}, "strip", z.ZodTypeAny, {
|
|
633
|
-
currency?: "
|
|
693
|
+
currency?: "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" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
|
|
634
694
|
id?: string | undefined;
|
|
635
695
|
description?: string | undefined;
|
|
636
696
|
amount?: number | undefined;
|
|
@@ -652,7 +712,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
652
712
|
catalogEffectiveDate?: string | undefined;
|
|
653
713
|
childItems?: unknown[] | undefined;
|
|
654
714
|
}, {
|
|
655
|
-
currency?: "
|
|
715
|
+
currency?: "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" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
|
|
656
716
|
id?: string | undefined;
|
|
657
717
|
description?: string | undefined;
|
|
658
718
|
amount?: number | undefined;
|
|
@@ -675,12 +735,11 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
675
735
|
childItems?: unknown[] | undefined;
|
|
676
736
|
}>, "many">>;
|
|
677
737
|
}, "strip", z.ZodTypeAny, {
|
|
678
|
-
currency?: "
|
|
738
|
+
currency?: "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" | "USD" | "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
|
-
currency?: "
|
|
742
|
+
currency?: "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" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
|
|
684
743
|
id?: string | undefined;
|
|
685
744
|
description?: string | undefined;
|
|
686
745
|
amount?: number | 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;
|
|
@@ -711,7 +771,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
711
771
|
balance?: number | undefined;
|
|
712
772
|
bundleKeys?: string | undefined;
|
|
713
773
|
credits?: {
|
|
714
|
-
currency?: "
|
|
774
|
+
currency?: "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" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
|
|
715
775
|
id?: string | undefined;
|
|
716
776
|
description?: string | undefined;
|
|
717
777
|
amount?: number | undefined;
|
|
@@ -734,12 +794,11 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
734
794
|
childItems?: unknown[] | undefined;
|
|
735
795
|
}[] | undefined;
|
|
736
796
|
}, {
|
|
737
|
-
currency?: "
|
|
797
|
+
currency?: "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" | "USD" | "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
|
-
currency?: "
|
|
801
|
+
currency?: "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" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
|
|
743
802
|
id?: string | undefined;
|
|
744
803
|
description?: string | undefined;
|
|
745
804
|
amount?: number | 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;
|
|
@@ -770,7 +830,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
770
830
|
balance?: number | undefined;
|
|
771
831
|
bundleKeys?: string | undefined;
|
|
772
832
|
credits?: {
|
|
773
|
-
currency?: "
|
|
833
|
+
currency?: "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" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
|
|
774
834
|
id?: string | undefined;
|
|
775
835
|
description?: string | undefined;
|
|
776
836
|
amount?: number | 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<{
|
|
@@ -1126,7 +977,7 @@ export declare const zPaymentMethod: z.ZodObject<{
|
|
|
1126
977
|
last4: string;
|
|
1127
978
|
exp_month: number;
|
|
1128
979
|
exp_year: number;
|
|
1129
|
-
brand: "unknown" | "
|
|
980
|
+
brand: "unknown" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay" | "visa";
|
|
1130
981
|
}, {
|
|
1131
982
|
type: "card";
|
|
1132
983
|
id: string;
|
|
@@ -1134,17 +985,17 @@ export declare const zPaymentMethod: z.ZodObject<{
|
|
|
1134
985
|
last4: string;
|
|
1135
986
|
exp_month: number;
|
|
1136
987
|
exp_year: number;
|
|
1137
|
-
brand: "unknown" | "
|
|
988
|
+
brand: "unknown" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay" | "visa";
|
|
1138
989
|
}>;
|
|
1139
990
|
export declare const zTokenCreateInput: z.ZodObject<{
|
|
1140
991
|
name: z.ZodString;
|
|
1141
992
|
role: z.ZodEnum<["Administrator", "User"]>;
|
|
1142
993
|
}, "strip", z.ZodTypeAny, {
|
|
1143
994
|
name: string;
|
|
1144
|
-
role: "
|
|
995
|
+
role: "Administrator" | "User";
|
|
1145
996
|
}, {
|
|
1146
997
|
name: string;
|
|
1147
|
-
role: "
|
|
998
|
+
role: "Administrator" | "User";
|
|
1148
999
|
}>;
|
|
1149
1000
|
export declare const zToken: z.ZodObject<{
|
|
1150
1001
|
name: z.ZodString;
|
|
@@ -1154,13 +1005,13 @@ export declare const zToken: z.ZodObject<{
|
|
|
1154
1005
|
date_created: z.ZodString;
|
|
1155
1006
|
}, "strip", z.ZodTypeAny, {
|
|
1156
1007
|
name: string;
|
|
1157
|
-
role: "
|
|
1008
|
+
role: "Administrator" | "User";
|
|
1158
1009
|
date_created: string;
|
|
1159
1010
|
id?: string | undefined;
|
|
1160
1011
|
secret?: string | undefined;
|
|
1161
1012
|
}, {
|
|
1162
1013
|
name: string;
|
|
1163
|
-
role: "
|
|
1014
|
+
role: "Administrator" | "User";
|
|
1164
1015
|
date_created: string;
|
|
1165
1016
|
id?: string | undefined;
|
|
1166
1017
|
secret?: string | undefined;
|
|
@@ -1170,26 +1021,44 @@ export declare const zTokenUpdateInput: z.ZodObject<{
|
|
|
1170
1021
|
role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
|
|
1171
1022
|
}, "strip", z.ZodTypeAny, {
|
|
1172
1023
|
name?: string | undefined;
|
|
1173
|
-
role?: "
|
|
1024
|
+
role?: "Administrator" | "User" | undefined;
|
|
1174
1025
|
}, {
|
|
1175
1026
|
name?: string | undefined;
|
|
1176
|
-
role?: "
|
|
1027
|
+
role?: "Administrator" | "User" | 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
|
+
cpu: number | "";
|
|
1043
|
+
product: "cfke_infra_compute" | "cfke_nodes" | "cfke_controlplane";
|
|
1044
|
+
value: 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
|
+
cpu: number | "";
|
|
1054
|
+
product: "cfke_infra_compute" | "cfke_nodes" | "cfke_controlplane";
|
|
1055
|
+
value: 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;
|
|
@@ -1205,7 +1074,7 @@ export declare const zUserCreateInput: z.ZodObject<{
|
|
|
1205
1074
|
first_name: string;
|
|
1206
1075
|
last_name: string;
|
|
1207
1076
|
password: string;
|
|
1208
|
-
role?: "
|
|
1077
|
+
role?: "Administrator" | "User" | undefined;
|
|
1209
1078
|
status?: "active" | "inactive" | undefined;
|
|
1210
1079
|
}, {
|
|
1211
1080
|
code: string;
|
|
@@ -1213,7 +1082,7 @@ export declare const zUserCreateInput: z.ZodObject<{
|
|
|
1213
1082
|
first_name: string;
|
|
1214
1083
|
last_name: string;
|
|
1215
1084
|
password: string;
|
|
1216
|
-
role?: "
|
|
1085
|
+
role?: "Administrator" | "User" | undefined;
|
|
1217
1086
|
status?: "active" | "inactive" | undefined;
|
|
1218
1087
|
}>;
|
|
1219
1088
|
export declare const zUser: z.ZodObject<{
|
|
@@ -1236,24 +1105,24 @@ export declare const zUser: z.ZodObject<{
|
|
|
1236
1105
|
}>, "many">>;
|
|
1237
1106
|
}, "strip", z.ZodTypeAny, {
|
|
1238
1107
|
id: string;
|
|
1239
|
-
role: "
|
|
1108
|
+
role: "Administrator" | "User";
|
|
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";
|
|
1248
1117
|
}[] | undefined;
|
|
1249
1118
|
}, {
|
|
1250
1119
|
id: string;
|
|
1251
|
-
role: "
|
|
1120
|
+
role: "Administrator" | "User";
|
|
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";
|
|
@@ -1266,33 +1135,51 @@ export declare const zUserUpdateInput: z.ZodObject<{
|
|
|
1266
1135
|
role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
|
|
1267
1136
|
status: z.ZodOptional<z.ZodEnum<["active", "inactive"]>>;
|
|
1268
1137
|
}, "strip", z.ZodTypeAny, {
|
|
1269
|
-
role?: "
|
|
1138
|
+
role?: "Administrator" | "User" | undefined;
|
|
1270
1139
|
email?: string | undefined;
|
|
1271
1140
|
status?: "active" | "inactive" | undefined;
|
|
1272
1141
|
first_name?: string | undefined;
|
|
1273
1142
|
last_name?: string | undefined;
|
|
1274
1143
|
}, {
|
|
1275
|
-
role?: "
|
|
1144
|
+
role?: "Administrator" | "User" | undefined;
|
|
1276
1145
|
email?: string | undefined;
|
|
1277
1146
|
status?: "active" | "inactive" | undefined;
|
|
1278
1147
|
first_name?: string | undefined;
|
|
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
|
+
cpu: number | "";
|
|
1164
|
+
product: "cfke_infra_compute" | "cfke_nodes" | "cfke_controlplane";
|
|
1165
|
+
value: 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
|
+
cpu: number | "";
|
|
1175
|
+
product: "cfke_infra_compute" | "cfke_nodes" | "cfke_controlplane";
|
|
1176
|
+
value: 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<{
|
|
@@ -1310,7 +1197,7 @@ export declare const zGetPaymentMethodResponse: z.ZodObject<{
|
|
|
1310
1197
|
last4: string;
|
|
1311
1198
|
exp_month: number;
|
|
1312
1199
|
exp_year: number;
|
|
1313
|
-
brand: "unknown" | "
|
|
1200
|
+
brand: "unknown" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay" | "visa";
|
|
1314
1201
|
}, {
|
|
1315
1202
|
type: "card";
|
|
1316
1203
|
id: string;
|
|
@@ -1318,7 +1205,7 @@ export declare const zGetPaymentMethodResponse: z.ZodObject<{
|
|
|
1318
1205
|
last4: string;
|
|
1319
1206
|
exp_month: number;
|
|
1320
1207
|
exp_year: number;
|
|
1321
|
-
brand: "unknown" | "
|
|
1208
|
+
brand: "unknown" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay" | "visa";
|
|
1322
1209
|
}>;
|
|
1323
1210
|
export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
|
|
1324
1211
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -1363,7 +1250,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1363
1250
|
catalogEffectiveDate: z.ZodOptional<z.ZodString>;
|
|
1364
1251
|
childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
1365
1252
|
}, "strip", z.ZodTypeAny, {
|
|
1366
|
-
currency?: "
|
|
1253
|
+
currency?: "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" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
|
|
1367
1254
|
id?: string | undefined;
|
|
1368
1255
|
description?: string | undefined;
|
|
1369
1256
|
amount?: number | undefined;
|
|
@@ -1385,7 +1272,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1385
1272
|
catalogEffectiveDate?: string | undefined;
|
|
1386
1273
|
childItems?: unknown[] | undefined;
|
|
1387
1274
|
}, {
|
|
1388
|
-
currency?: "
|
|
1275
|
+
currency?: "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" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
|
|
1389
1276
|
id?: string | undefined;
|
|
1390
1277
|
description?: string | undefined;
|
|
1391
1278
|
amount?: number | undefined;
|
|
@@ -1430,7 +1317,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1430
1317
|
catalogEffectiveDate: z.ZodOptional<z.ZodString>;
|
|
1431
1318
|
childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
1432
1319
|
}, "strip", z.ZodTypeAny, {
|
|
1433
|
-
currency?: "
|
|
1320
|
+
currency?: "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" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
|
|
1434
1321
|
id?: string | undefined;
|
|
1435
1322
|
description?: string | undefined;
|
|
1436
1323
|
amount?: number | undefined;
|
|
@@ -1452,7 +1339,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1452
1339
|
catalogEffectiveDate?: string | undefined;
|
|
1453
1340
|
childItems?: unknown[] | undefined;
|
|
1454
1341
|
}, {
|
|
1455
|
-
currency?: "
|
|
1342
|
+
currency?: "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" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
|
|
1456
1343
|
id?: string | undefined;
|
|
1457
1344
|
description?: string | undefined;
|
|
1458
1345
|
amount?: number | undefined;
|
|
@@ -1475,12 +1362,11 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1475
1362
|
childItems?: unknown[] | undefined;
|
|
1476
1363
|
}>, "many">>;
|
|
1477
1364
|
}, "strip", z.ZodTypeAny, {
|
|
1478
|
-
currency?: "
|
|
1365
|
+
currency?: "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" | "USD" | "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
|
-
currency?: "
|
|
1369
|
+
currency?: "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" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
|
|
1484
1370
|
id?: string | undefined;
|
|
1485
1371
|
description?: string | undefined;
|
|
1486
1372
|
amount?: number | 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;
|
|
@@ -1511,7 +1398,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1511
1398
|
balance?: number | undefined;
|
|
1512
1399
|
bundleKeys?: string | undefined;
|
|
1513
1400
|
credits?: {
|
|
1514
|
-
currency?: "
|
|
1401
|
+
currency?: "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" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
|
|
1515
1402
|
id?: string | undefined;
|
|
1516
1403
|
description?: string | undefined;
|
|
1517
1404
|
amount?: number | undefined;
|
|
@@ -1534,12 +1421,11 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1534
1421
|
childItems?: unknown[] | undefined;
|
|
1535
1422
|
}[] | undefined;
|
|
1536
1423
|
}, {
|
|
1537
|
-
currency?: "
|
|
1424
|
+
currency?: "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" | "USD" | "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
|
-
currency?: "
|
|
1428
|
+
currency?: "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" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
|
|
1543
1429
|
id?: string | undefined;
|
|
1544
1430
|
description?: string | undefined;
|
|
1545
1431
|
amount?: number | 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;
|
|
@@ -1570,7 +1457,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1570
1457
|
balance?: number | undefined;
|
|
1571
1458
|
bundleKeys?: string | undefined;
|
|
1572
1459
|
credits?: {
|
|
1573
|
-
currency?: "
|
|
1460
|
+
currency?: "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" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
|
|
1574
1461
|
id?: string | undefined;
|
|
1575
1462
|
description?: string | undefined;
|
|
1576
1463
|
amount?: number | 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;
|
|
@@ -1806,18 +1767,19 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
|
1806
1767
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1807
1768
|
tier: "basic" | "pro";
|
|
1808
1769
|
version_channel: string;
|
|
1770
|
+
ready?: boolean | undefined;
|
|
1809
1771
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1810
1772
|
endpoint?: string | undefined;
|
|
1811
1773
|
certificate_ca?: string | undefined;
|
|
1812
1774
|
version_current?: string | undefined;
|
|
1813
1775
|
created_at?: string | undefined;
|
|
1814
1776
|
updated_at?: string | undefined;
|
|
1815
|
-
ready?: boolean | undefined;
|
|
1816
1777
|
}, {
|
|
1817
1778
|
name: string;
|
|
1818
1779
|
id: string;
|
|
1819
1780
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1820
1781
|
tier: "basic" | "pro";
|
|
1782
|
+
ready?: boolean | undefined;
|
|
1821
1783
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1822
1784
|
endpoint?: string | undefined;
|
|
1823
1785
|
version_channel?: string | undefined;
|
|
@@ -1825,7 +1787,6 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
|
1825
1787
|
version_current?: string | undefined;
|
|
1826
1788
|
created_at?: string | undefined;
|
|
1827
1789
|
updated_at?: string | undefined;
|
|
1828
|
-
ready?: boolean | undefined;
|
|
1829
1790
|
}>, "many">;
|
|
1830
1791
|
export declare const zCreateClusterResponse: z.ZodString;
|
|
1831
1792
|
export declare const zDeleteClusterResponse: z.ZodString;
|
|
@@ -1848,18 +1809,19 @@ export declare const zGetClusterResponse: z.ZodObject<{
|
|
|
1848
1809
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1849
1810
|
tier: "basic" | "pro";
|
|
1850
1811
|
version_channel: string;
|
|
1812
|
+
ready?: boolean | undefined;
|
|
1851
1813
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1852
1814
|
endpoint?: string | undefined;
|
|
1853
1815
|
certificate_ca?: string | undefined;
|
|
1854
1816
|
version_current?: string | undefined;
|
|
1855
1817
|
created_at?: string | undefined;
|
|
1856
1818
|
updated_at?: string | undefined;
|
|
1857
|
-
ready?: boolean | undefined;
|
|
1858
1819
|
}, {
|
|
1859
1820
|
name: string;
|
|
1860
1821
|
id: string;
|
|
1861
1822
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1862
1823
|
tier: "basic" | "pro";
|
|
1824
|
+
ready?: boolean | undefined;
|
|
1863
1825
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1864
1826
|
endpoint?: string | undefined;
|
|
1865
1827
|
version_channel?: string | undefined;
|
|
@@ -1867,7 +1829,6 @@ export declare const zGetClusterResponse: z.ZodObject<{
|
|
|
1867
1829
|
version_current?: string | undefined;
|
|
1868
1830
|
created_at?: string | undefined;
|
|
1869
1831
|
updated_at?: string | undefined;
|
|
1870
|
-
ready?: boolean | undefined;
|
|
1871
1832
|
}>;
|
|
1872
1833
|
export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
1873
1834
|
name: z.ZodString;
|
|
@@ -1888,18 +1849,19 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
|
1888
1849
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1889
1850
|
tier: "basic" | "pro";
|
|
1890
1851
|
version_channel: string;
|
|
1852
|
+
ready?: boolean | undefined;
|
|
1891
1853
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1892
1854
|
endpoint?: string | undefined;
|
|
1893
1855
|
certificate_ca?: string | undefined;
|
|
1894
1856
|
version_current?: string | undefined;
|
|
1895
1857
|
created_at?: string | undefined;
|
|
1896
1858
|
updated_at?: string | undefined;
|
|
1897
|
-
ready?: boolean | undefined;
|
|
1898
1859
|
}, {
|
|
1899
1860
|
name: string;
|
|
1900
1861
|
id: string;
|
|
1901
1862
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1902
1863
|
tier: "basic" | "pro";
|
|
1864
|
+
ready?: boolean | undefined;
|
|
1903
1865
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1904
1866
|
endpoint?: string | undefined;
|
|
1905
1867
|
version_channel?: string | undefined;
|
|
@@ -1907,7 +1869,6 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
|
1907
1869
|
version_current?: string | undefined;
|
|
1908
1870
|
created_at?: string | undefined;
|
|
1909
1871
|
updated_at?: string | undefined;
|
|
1910
|
-
ready?: boolean | undefined;
|
|
1911
1872
|
}>;
|
|
1912
1873
|
export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
1913
1874
|
name: z.ZodString;
|
|
@@ -1928,18 +1889,19 @@ export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
|
1928
1889
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1929
1890
|
tier: "basic" | "pro";
|
|
1930
1891
|
version_channel: string;
|
|
1892
|
+
ready?: boolean | undefined;
|
|
1931
1893
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1932
1894
|
endpoint?: string | undefined;
|
|
1933
1895
|
certificate_ca?: string | undefined;
|
|
1934
1896
|
version_current?: string | undefined;
|
|
1935
1897
|
created_at?: string | undefined;
|
|
1936
1898
|
updated_at?: string | undefined;
|
|
1937
|
-
ready?: boolean | undefined;
|
|
1938
1899
|
}, {
|
|
1939
1900
|
name: string;
|
|
1940
1901
|
id: string;
|
|
1941
1902
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1942
1903
|
tier: "basic" | "pro";
|
|
1904
|
+
ready?: boolean | undefined;
|
|
1943
1905
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1944
1906
|
endpoint?: string | undefined;
|
|
1945
1907
|
version_channel?: string | undefined;
|
|
@@ -1947,7 +1909,6 @@ export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
|
1947
1909
|
version_current?: string | undefined;
|
|
1948
1910
|
created_at?: string | undefined;
|
|
1949
1911
|
updated_at?: string | undefined;
|
|
1950
|
-
ready?: boolean | undefined;
|
|
1951
1912
|
}>;
|
|
1952
1913
|
export declare const zGetInfrastructureResponse: z.ZodArray<z.ZodObject<{
|
|
1953
1914
|
sku: z.ZodString;
|
|
@@ -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;
|
|
@@ -2638,13 +2236,13 @@ export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
|
|
|
2638
2236
|
date_created: z.ZodString;
|
|
2639
2237
|
}, "strip", z.ZodTypeAny, {
|
|
2640
2238
|
name: string;
|
|
2641
|
-
role: "
|
|
2239
|
+
role: "Administrator" | "User";
|
|
2642
2240
|
date_created: string;
|
|
2643
2241
|
id?: string | undefined;
|
|
2644
2242
|
secret?: string | undefined;
|
|
2645
2243
|
}, {
|
|
2646
2244
|
name: string;
|
|
2647
|
-
role: "
|
|
2245
|
+
role: "Administrator" | "User";
|
|
2648
2246
|
date_created: string;
|
|
2649
2247
|
id?: string | undefined;
|
|
2650
2248
|
secret?: string | undefined;
|
|
@@ -2657,13 +2255,13 @@ export declare const zCreateTokenResponse: z.ZodObject<{
|
|
|
2657
2255
|
date_created: z.ZodString;
|
|
2658
2256
|
}, "strip", z.ZodTypeAny, {
|
|
2659
2257
|
name: string;
|
|
2660
|
-
role: "
|
|
2258
|
+
role: "Administrator" | "User";
|
|
2661
2259
|
date_created: string;
|
|
2662
2260
|
id?: string | undefined;
|
|
2663
2261
|
secret?: string | undefined;
|
|
2664
2262
|
}, {
|
|
2665
2263
|
name: string;
|
|
2666
|
-
role: "
|
|
2264
|
+
role: "Administrator" | "User";
|
|
2667
2265
|
date_created: string;
|
|
2668
2266
|
id?: string | undefined;
|
|
2669
2267
|
secret?: string | undefined;
|
|
@@ -2676,13 +2274,13 @@ export declare const zGetTokenResponse: z.ZodObject<{
|
|
|
2676
2274
|
date_created: z.ZodString;
|
|
2677
2275
|
}, "strip", z.ZodTypeAny, {
|
|
2678
2276
|
name: string;
|
|
2679
|
-
role: "
|
|
2277
|
+
role: "Administrator" | "User";
|
|
2680
2278
|
date_created: string;
|
|
2681
2279
|
id?: string | undefined;
|
|
2682
2280
|
secret?: string | undefined;
|
|
2683
2281
|
}, {
|
|
2684
2282
|
name: string;
|
|
2685
|
-
role: "
|
|
2283
|
+
role: "Administrator" | "User";
|
|
2686
2284
|
date_created: string;
|
|
2687
2285
|
id?: string | undefined;
|
|
2688
2286
|
secret?: string | undefined;
|
|
@@ -2695,13 +2293,13 @@ export declare const zUpdateTokenResponse: z.ZodObject<{
|
|
|
2695
2293
|
date_created: z.ZodString;
|
|
2696
2294
|
}, "strip", z.ZodTypeAny, {
|
|
2697
2295
|
name: string;
|
|
2698
|
-
role: "
|
|
2296
|
+
role: "Administrator" | "User";
|
|
2699
2297
|
date_created: string;
|
|
2700
2298
|
id?: string | undefined;
|
|
2701
2299
|
secret?: string | undefined;
|
|
2702
2300
|
}, {
|
|
2703
2301
|
name: string;
|
|
2704
|
-
role: "
|
|
2302
|
+
role: "Administrator" | "User";
|
|
2705
2303
|
date_created: string;
|
|
2706
2304
|
id?: string | undefined;
|
|
2707
2305
|
secret?: string | undefined;
|
|
@@ -2714,13 +2312,13 @@ export declare const zRegenerateTokenResponse: z.ZodObject<{
|
|
|
2714
2312
|
date_created: z.ZodString;
|
|
2715
2313
|
}, "strip", z.ZodTypeAny, {
|
|
2716
2314
|
name: string;
|
|
2717
|
-
role: "
|
|
2315
|
+
role: "Administrator" | "User";
|
|
2718
2316
|
date_created: string;
|
|
2719
2317
|
id?: string | undefined;
|
|
2720
2318
|
secret?: string | undefined;
|
|
2721
2319
|
}, {
|
|
2722
2320
|
name: string;
|
|
2723
|
-
role: "
|
|
2321
|
+
role: "Administrator" | "User";
|
|
2724
2322
|
date_created: string;
|
|
2725
2323
|
id?: string | undefined;
|
|
2726
2324
|
secret?: string | undefined;
|
|
@@ -2755,24 +2353,24 @@ export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
|
|
|
2755
2353
|
}>, "many">>;
|
|
2756
2354
|
}, "strip", z.ZodTypeAny, {
|
|
2757
2355
|
id: string;
|
|
2758
|
-
role: "
|
|
2356
|
+
role: "Administrator" | "User";
|
|
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";
|
|
2767
2365
|
}[] | undefined;
|
|
2768
2366
|
}, {
|
|
2769
2367
|
id: string;
|
|
2770
|
-
role: "
|
|
2368
|
+
role: "Administrator" | "User";
|
|
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";
|
|
@@ -2798,24 +2396,24 @@ export declare const zCreateUserResponse: z.ZodObject<{
|
|
|
2798
2396
|
}>, "many">>;
|
|
2799
2397
|
}, "strip", z.ZodTypeAny, {
|
|
2800
2398
|
id: string;
|
|
2801
|
-
role: "
|
|
2399
|
+
role: "Administrator" | "User";
|
|
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";
|
|
2810
2408
|
}[] | undefined;
|
|
2811
2409
|
}, {
|
|
2812
2410
|
id: string;
|
|
2813
|
-
role: "
|
|
2411
|
+
role: "Administrator" | "User";
|
|
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";
|
|
@@ -2841,24 +2439,24 @@ export declare const zDeleteUserResponse: z.ZodObject<{
|
|
|
2841
2439
|
}>, "many">>;
|
|
2842
2440
|
}, "strip", z.ZodTypeAny, {
|
|
2843
2441
|
id: string;
|
|
2844
|
-
role: "
|
|
2442
|
+
role: "Administrator" | "User";
|
|
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";
|
|
2853
2451
|
}[] | undefined;
|
|
2854
2452
|
}, {
|
|
2855
2453
|
id: string;
|
|
2856
|
-
role: "
|
|
2454
|
+
role: "Administrator" | "User";
|
|
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";
|
|
@@ -2884,24 +2482,24 @@ export declare const zGetUserResponse: z.ZodObject<{
|
|
|
2884
2482
|
}>, "many">>;
|
|
2885
2483
|
}, "strip", z.ZodTypeAny, {
|
|
2886
2484
|
id: string;
|
|
2887
|
-
role: "
|
|
2485
|
+
role: "Administrator" | "User";
|
|
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";
|
|
2896
2494
|
}[] | undefined;
|
|
2897
2495
|
}, {
|
|
2898
2496
|
id: string;
|
|
2899
|
-
role: "
|
|
2497
|
+
role: "Administrator" | "User";
|
|
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";
|
|
@@ -2927,24 +2525,24 @@ export declare const zUpdateUserResponse: z.ZodObject<{
|
|
|
2927
2525
|
}>, "many">>;
|
|
2928
2526
|
}, "strip", z.ZodTypeAny, {
|
|
2929
2527
|
id: string;
|
|
2930
|
-
role: "
|
|
2528
|
+
role: "Administrator" | "User";
|
|
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";
|
|
2939
2537
|
}[] | undefined;
|
|
2940
2538
|
}, {
|
|
2941
2539
|
id: string;
|
|
2942
|
-
role: "
|
|
2540
|
+
role: "Administrator" | "User";
|
|
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";
|
|
@@ -2970,24 +2568,24 @@ export declare const zDeleteClusterPermissionsResponse: z.ZodObject<{
|
|
|
2970
2568
|
}>, "many">>;
|
|
2971
2569
|
}, "strip", z.ZodTypeAny, {
|
|
2972
2570
|
id: string;
|
|
2973
|
-
role: "
|
|
2571
|
+
role: "Administrator" | "User";
|
|
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";
|
|
2982
2580
|
}[] | undefined;
|
|
2983
2581
|
}, {
|
|
2984
2582
|
id: string;
|
|
2985
|
-
role: "
|
|
2583
|
+
role: "Administrator" | "User";
|
|
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";
|
|
@@ -3013,24 +2611,24 @@ export declare const zSetClusterPermissionsResponse: z.ZodObject<{
|
|
|
3013
2611
|
}>, "many">>;
|
|
3014
2612
|
}, "strip", z.ZodTypeAny, {
|
|
3015
2613
|
id: string;
|
|
3016
|
-
role: "
|
|
2614
|
+
role: "Administrator" | "User";
|
|
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";
|
|
3025
2623
|
}[] | undefined;
|
|
3026
2624
|
}, {
|
|
3027
2625
|
id: string;
|
|
3028
|
-
role: "
|
|
2626
|
+
role: "Administrator" | "User";
|
|
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";
|