@cloudfleet/sdk 0.0.1-69c7f12 → 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 +154 -276
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +167 -277
- package/dist/schemas.gen.js.map +1 -1
- package/dist/sdk.gen.d.ts +32 -16
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/sdk.gen.js +70 -62
- package/dist/sdk.gen.js.map +1 -1
- package/dist/types.gen.d.ts +108 -216
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +272 -697
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +58 -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"]>>;
|
|
@@ -96,18 +133,19 @@ export declare const zCluster: z.ZodObject<{
|
|
|
96
133
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
97
134
|
tier: "basic" | "pro";
|
|
98
135
|
version_channel: string;
|
|
136
|
+
ready?: boolean | undefined;
|
|
99
137
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
100
138
|
endpoint?: string | undefined;
|
|
101
139
|
certificate_ca?: string | undefined;
|
|
102
140
|
version_current?: string | undefined;
|
|
103
141
|
created_at?: string | undefined;
|
|
104
142
|
updated_at?: string | undefined;
|
|
105
|
-
ready?: boolean | undefined;
|
|
106
143
|
}, {
|
|
107
144
|
name: string;
|
|
108
145
|
id: string;
|
|
109
146
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
110
147
|
tier: "basic" | "pro";
|
|
148
|
+
ready?: boolean | undefined;
|
|
111
149
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
112
150
|
endpoint?: string | undefined;
|
|
113
151
|
version_channel?: string | undefined;
|
|
@@ -115,7 +153,6 @@ export declare const zCluster: z.ZodObject<{
|
|
|
115
153
|
version_current?: string | undefined;
|
|
116
154
|
created_at?: string | undefined;
|
|
117
155
|
updated_at?: string | undefined;
|
|
118
|
-
ready?: boolean | undefined;
|
|
119
156
|
}>;
|
|
120
157
|
export declare const zClusterUpdateInput: z.ZodObject<{
|
|
121
158
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -586,7 +623,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
586
623
|
catalogEffectiveDate: z.ZodOptional<z.ZodString>;
|
|
587
624
|
childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
588
625
|
}, "strip", z.ZodTypeAny, {
|
|
589
|
-
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;
|
|
590
627
|
id?: string | undefined;
|
|
591
628
|
description?: string | undefined;
|
|
592
629
|
amount?: number | undefined;
|
|
@@ -608,7 +645,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
608
645
|
catalogEffectiveDate?: string | undefined;
|
|
609
646
|
childItems?: unknown[] | undefined;
|
|
610
647
|
}, {
|
|
611
|
-
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;
|
|
612
649
|
id?: string | undefined;
|
|
613
650
|
description?: string | undefined;
|
|
614
651
|
amount?: number | undefined;
|
|
@@ -653,7 +690,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
653
690
|
catalogEffectiveDate: z.ZodOptional<z.ZodString>;
|
|
654
691
|
childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
655
692
|
}, "strip", z.ZodTypeAny, {
|
|
656
|
-
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;
|
|
657
694
|
id?: string | undefined;
|
|
658
695
|
description?: string | undefined;
|
|
659
696
|
amount?: number | undefined;
|
|
@@ -675,7 +712,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
675
712
|
catalogEffectiveDate?: string | undefined;
|
|
676
713
|
childItems?: unknown[] | undefined;
|
|
677
714
|
}, {
|
|
678
|
-
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;
|
|
679
716
|
id?: string | undefined;
|
|
680
717
|
description?: string | undefined;
|
|
681
718
|
amount?: number | undefined;
|
|
@@ -698,12 +735,11 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
698
735
|
childItems?: unknown[] | undefined;
|
|
699
736
|
}>, "many">>;
|
|
700
737
|
}, "strip", z.ZodTypeAny, {
|
|
701
|
-
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;
|
|
702
739
|
id?: string | undefined;
|
|
703
740
|
status?: "DRAFT" | "COMMITTED" | "VOID" | undefined;
|
|
704
|
-
amount?: number | undefined;
|
|
705
741
|
items?: {
|
|
706
|
-
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;
|
|
707
743
|
id?: string | undefined;
|
|
708
744
|
description?: string | undefined;
|
|
709
745
|
amount?: number | undefined;
|
|
@@ -726,6 +762,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
726
762
|
childItems?: unknown[] | undefined;
|
|
727
763
|
}[] | undefined;
|
|
728
764
|
organizationId?: string | undefined;
|
|
765
|
+
amount?: number | undefined;
|
|
729
766
|
creditAdj?: number | undefined;
|
|
730
767
|
refundAdj?: number | undefined;
|
|
731
768
|
invoiceDate?: string | undefined;
|
|
@@ -734,7 +771,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
734
771
|
balance?: number | undefined;
|
|
735
772
|
bundleKeys?: string | undefined;
|
|
736
773
|
credits?: {
|
|
737
|
-
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;
|
|
738
775
|
id?: string | undefined;
|
|
739
776
|
description?: string | undefined;
|
|
740
777
|
amount?: number | undefined;
|
|
@@ -757,12 +794,11 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
757
794
|
childItems?: unknown[] | undefined;
|
|
758
795
|
}[] | undefined;
|
|
759
796
|
}, {
|
|
760
|
-
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;
|
|
761
798
|
id?: string | undefined;
|
|
762
799
|
status?: "DRAFT" | "COMMITTED" | "VOID" | undefined;
|
|
763
|
-
amount?: number | undefined;
|
|
764
800
|
items?: {
|
|
765
|
-
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;
|
|
766
802
|
id?: string | undefined;
|
|
767
803
|
description?: string | undefined;
|
|
768
804
|
amount?: number | undefined;
|
|
@@ -785,6 +821,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
785
821
|
childItems?: unknown[] | undefined;
|
|
786
822
|
}[] | undefined;
|
|
787
823
|
organizationId?: string | undefined;
|
|
824
|
+
amount?: number | undefined;
|
|
788
825
|
creditAdj?: number | undefined;
|
|
789
826
|
refundAdj?: number | undefined;
|
|
790
827
|
invoiceDate?: string | undefined;
|
|
@@ -793,7 +830,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
793
830
|
balance?: number | undefined;
|
|
794
831
|
bundleKeys?: string | undefined;
|
|
795
832
|
credits?: {
|
|
796
|
-
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;
|
|
797
834
|
id?: string | undefined;
|
|
798
835
|
description?: string | undefined;
|
|
799
836
|
amount?: number | undefined;
|
|
@@ -816,145 +853,28 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
816
853
|
childItems?: unknown[] | undefined;
|
|
817
854
|
}[] | undefined;
|
|
818
855
|
}>;
|
|
819
|
-
export declare const
|
|
820
|
-
address1: z.ZodOptional<z.ZodString>;
|
|
821
|
-
address2: z.ZodOptional<z.ZodString>;
|
|
822
|
-
postalCode: z.ZodOptional<z.ZodString>;
|
|
823
|
-
city: z.ZodOptional<z.ZodString>;
|
|
824
|
-
state: z.ZodOptional<z.ZodString>;
|
|
825
|
-
country: z.ZodOptional<z.ZodString>;
|
|
826
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
856
|
+
export declare const zOrganizationCreateInput: z.ZodObject<{
|
|
827
857
|
email: z.ZodString;
|
|
828
858
|
first_name: z.ZodString;
|
|
829
859
|
last_name: z.ZodString;
|
|
860
|
+
company_name: z.ZodString;
|
|
861
|
+
password: z.ZodString;
|
|
830
862
|
}, "strip", z.ZodTypeAny, {
|
|
831
863
|
email: string;
|
|
832
864
|
first_name: string;
|
|
833
865
|
last_name: string;
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
address1?: string | undefined;
|
|
837
|
-
address2?: string | undefined;
|
|
838
|
-
postalCode?: string | undefined;
|
|
839
|
-
city?: string | undefined;
|
|
840
|
-
phone?: string | undefined;
|
|
866
|
+
company_name: string;
|
|
867
|
+
password: string;
|
|
841
868
|
}, {
|
|
842
869
|
email: string;
|
|
843
870
|
first_name: string;
|
|
844
871
|
last_name: string;
|
|
845
|
-
|
|
846
|
-
country?: string | undefined;
|
|
847
|
-
address1?: string | undefined;
|
|
848
|
-
address2?: string | undefined;
|
|
849
|
-
postalCode?: string | undefined;
|
|
850
|
-
city?: string | undefined;
|
|
851
|
-
phone?: string | undefined;
|
|
852
|
-
}>;
|
|
853
|
-
export declare const zOrganizationCreateInput: z.ZodObject<{
|
|
854
|
-
name: z.ZodString;
|
|
855
|
-
contactInfo: z.ZodObject<{
|
|
856
|
-
address1: z.ZodOptional<z.ZodString>;
|
|
857
|
-
address2: z.ZodOptional<z.ZodString>;
|
|
858
|
-
postalCode: z.ZodOptional<z.ZodString>;
|
|
859
|
-
city: z.ZodOptional<z.ZodString>;
|
|
860
|
-
state: z.ZodOptional<z.ZodString>;
|
|
861
|
-
country: z.ZodOptional<z.ZodString>;
|
|
862
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
863
|
-
email: z.ZodString;
|
|
864
|
-
first_name: z.ZodString;
|
|
865
|
-
last_name: z.ZodString;
|
|
866
|
-
}, "strip", z.ZodTypeAny, {
|
|
867
|
-
email: string;
|
|
868
|
-
first_name: string;
|
|
869
|
-
last_name: string;
|
|
870
|
-
state?: string | undefined;
|
|
871
|
-
country?: string | undefined;
|
|
872
|
-
address1?: string | undefined;
|
|
873
|
-
address2?: string | undefined;
|
|
874
|
-
postalCode?: string | undefined;
|
|
875
|
-
city?: string | undefined;
|
|
876
|
-
phone?: string | undefined;
|
|
877
|
-
}, {
|
|
878
|
-
email: string;
|
|
879
|
-
first_name: string;
|
|
880
|
-
last_name: string;
|
|
881
|
-
state?: string | undefined;
|
|
882
|
-
country?: string | undefined;
|
|
883
|
-
address1?: string | undefined;
|
|
884
|
-
address2?: string | undefined;
|
|
885
|
-
postalCode?: string | undefined;
|
|
886
|
-
city?: string | undefined;
|
|
887
|
-
phone?: string | undefined;
|
|
888
|
-
}>;
|
|
889
|
-
password: z.ZodString;
|
|
890
|
-
}, "strip", z.ZodTypeAny, {
|
|
891
|
-
name: string;
|
|
892
|
-
contactInfo: {
|
|
893
|
-
email: string;
|
|
894
|
-
first_name: string;
|
|
895
|
-
last_name: string;
|
|
896
|
-
state?: string | undefined;
|
|
897
|
-
country?: string | undefined;
|
|
898
|
-
address1?: string | undefined;
|
|
899
|
-
address2?: string | undefined;
|
|
900
|
-
postalCode?: string | undefined;
|
|
901
|
-
city?: string | undefined;
|
|
902
|
-
phone?: string | undefined;
|
|
903
|
-
};
|
|
904
|
-
password: string;
|
|
905
|
-
}, {
|
|
906
|
-
name: string;
|
|
907
|
-
contactInfo: {
|
|
908
|
-
email: string;
|
|
909
|
-
first_name: string;
|
|
910
|
-
last_name: string;
|
|
911
|
-
state?: string | undefined;
|
|
912
|
-
country?: string | undefined;
|
|
913
|
-
address1?: string | undefined;
|
|
914
|
-
address2?: string | undefined;
|
|
915
|
-
postalCode?: string | undefined;
|
|
916
|
-
city?: string | undefined;
|
|
917
|
-
phone?: string | undefined;
|
|
918
|
-
};
|
|
872
|
+
company_name: string;
|
|
919
873
|
password: string;
|
|
920
874
|
}>;
|
|
921
875
|
export declare const zOrganization: z.ZodObject<{
|
|
922
|
-
name: z.ZodString;
|
|
923
|
-
contactInfo: z.ZodObject<{
|
|
924
|
-
address1: z.ZodOptional<z.ZodString>;
|
|
925
|
-
address2: z.ZodOptional<z.ZodString>;
|
|
926
|
-
postalCode: z.ZodOptional<z.ZodString>;
|
|
927
|
-
city: z.ZodOptional<z.ZodString>;
|
|
928
|
-
state: z.ZodOptional<z.ZodString>;
|
|
929
|
-
country: z.ZodOptional<z.ZodString>;
|
|
930
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
931
|
-
email: z.ZodString;
|
|
932
|
-
first_name: z.ZodString;
|
|
933
|
-
last_name: z.ZodString;
|
|
934
|
-
}, "strip", z.ZodTypeAny, {
|
|
935
|
-
email: string;
|
|
936
|
-
first_name: string;
|
|
937
|
-
last_name: string;
|
|
938
|
-
state?: string | undefined;
|
|
939
|
-
country?: string | undefined;
|
|
940
|
-
address1?: string | undefined;
|
|
941
|
-
address2?: string | undefined;
|
|
942
|
-
postalCode?: string | undefined;
|
|
943
|
-
city?: string | undefined;
|
|
944
|
-
phone?: string | undefined;
|
|
945
|
-
}, {
|
|
946
|
-
email: string;
|
|
947
|
-
first_name: string;
|
|
948
|
-
last_name: string;
|
|
949
|
-
state?: string | undefined;
|
|
950
|
-
country?: string | undefined;
|
|
951
|
-
address1?: string | undefined;
|
|
952
|
-
address2?: string | undefined;
|
|
953
|
-
postalCode?: string | undefined;
|
|
954
|
-
city?: string | undefined;
|
|
955
|
-
phone?: string | undefined;
|
|
956
|
-
}>;
|
|
957
876
|
id: z.ZodString;
|
|
877
|
+
name: z.ZodOptional<z.ZodString>;
|
|
958
878
|
date_created: z.ZodString;
|
|
959
879
|
quota: z.ZodObject<{
|
|
960
880
|
basic_clusters_max: z.ZodNumber;
|
|
@@ -1002,25 +922,11 @@ export declare const zOrganization: z.ZodObject<{
|
|
|
1002
922
|
cluster_tiers: string[];
|
|
1003
923
|
regions: string[];
|
|
1004
924
|
}>;
|
|
1005
|
-
pending_actions: z.ZodArray<z.ZodEnum<["signup-billing-address", "signup-payment-method", "signup-invite-team", "signup-create-cluster"]>, "many">;
|
|
1006
925
|
status: z.ZodEnum<["active", "closed", "suspended"]>;
|
|
1007
926
|
}, "strip", z.ZodTypeAny, {
|
|
1008
|
-
name: string;
|
|
1009
927
|
id: string;
|
|
1010
928
|
status: "active" | "closed" | "suspended";
|
|
1011
929
|
date_created: string;
|
|
1012
|
-
contactInfo: {
|
|
1013
|
-
email: string;
|
|
1014
|
-
first_name: string;
|
|
1015
|
-
last_name: string;
|
|
1016
|
-
state?: string | undefined;
|
|
1017
|
-
country?: string | undefined;
|
|
1018
|
-
address1?: string | undefined;
|
|
1019
|
-
address2?: string | undefined;
|
|
1020
|
-
postalCode?: string | undefined;
|
|
1021
|
-
city?: string | undefined;
|
|
1022
|
-
phone?: string | undefined;
|
|
1023
|
-
};
|
|
1024
930
|
quota: {
|
|
1025
931
|
versions: {
|
|
1026
932
|
id: string;
|
|
@@ -1035,24 +941,11 @@ export declare const zOrganization: z.ZodObject<{
|
|
|
1035
941
|
cluster_tiers: string[];
|
|
1036
942
|
regions: string[];
|
|
1037
943
|
};
|
|
1038
|
-
|
|
944
|
+
name?: string | undefined;
|
|
1039
945
|
}, {
|
|
1040
|
-
name: string;
|
|
1041
946
|
id: string;
|
|
1042
947
|
status: "active" | "closed" | "suspended";
|
|
1043
948
|
date_created: string;
|
|
1044
|
-
contactInfo: {
|
|
1045
|
-
email: string;
|
|
1046
|
-
first_name: string;
|
|
1047
|
-
last_name: string;
|
|
1048
|
-
state?: string | undefined;
|
|
1049
|
-
country?: string | undefined;
|
|
1050
|
-
address1?: string | undefined;
|
|
1051
|
-
address2?: string | undefined;
|
|
1052
|
-
postalCode?: string | undefined;
|
|
1053
|
-
city?: string | undefined;
|
|
1054
|
-
phone?: string | undefined;
|
|
1055
|
-
};
|
|
1056
949
|
quota: {
|
|
1057
950
|
versions: {
|
|
1058
951
|
id: string;
|
|
@@ -1067,71 +960,6 @@ export declare const zOrganization: z.ZodObject<{
|
|
|
1067
960
|
cluster_tiers: string[];
|
|
1068
961
|
regions: string[];
|
|
1069
962
|
};
|
|
1070
|
-
pending_actions: ("signup-payment-method" | "signup-billing-address" | "signup-invite-team" | "signup-create-cluster")[];
|
|
1071
|
-
}>;
|
|
1072
|
-
export declare const zOrganizationUpdateInput: z.ZodObject<{
|
|
1073
|
-
name: z.ZodOptional<z.ZodString>;
|
|
1074
|
-
contactInfo: z.ZodObject<{
|
|
1075
|
-
address1: z.ZodOptional<z.ZodString>;
|
|
1076
|
-
address2: z.ZodOptional<z.ZodString>;
|
|
1077
|
-
postalCode: z.ZodOptional<z.ZodString>;
|
|
1078
|
-
city: z.ZodOptional<z.ZodString>;
|
|
1079
|
-
state: z.ZodOptional<z.ZodString>;
|
|
1080
|
-
country: z.ZodOptional<z.ZodString>;
|
|
1081
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
1082
|
-
email: z.ZodString;
|
|
1083
|
-
first_name: z.ZodString;
|
|
1084
|
-
last_name: z.ZodString;
|
|
1085
|
-
}, "strip", z.ZodTypeAny, {
|
|
1086
|
-
email: string;
|
|
1087
|
-
first_name: string;
|
|
1088
|
-
last_name: string;
|
|
1089
|
-
state?: string | undefined;
|
|
1090
|
-
country?: string | undefined;
|
|
1091
|
-
address1?: string | undefined;
|
|
1092
|
-
address2?: string | undefined;
|
|
1093
|
-
postalCode?: string | undefined;
|
|
1094
|
-
city?: string | undefined;
|
|
1095
|
-
phone?: string | undefined;
|
|
1096
|
-
}, {
|
|
1097
|
-
email: string;
|
|
1098
|
-
first_name: string;
|
|
1099
|
-
last_name: string;
|
|
1100
|
-
state?: string | undefined;
|
|
1101
|
-
country?: string | undefined;
|
|
1102
|
-
address1?: string | undefined;
|
|
1103
|
-
address2?: string | undefined;
|
|
1104
|
-
postalCode?: string | undefined;
|
|
1105
|
-
city?: string | undefined;
|
|
1106
|
-
phone?: string | undefined;
|
|
1107
|
-
}>;
|
|
1108
|
-
}, "strip", z.ZodTypeAny, {
|
|
1109
|
-
contactInfo: {
|
|
1110
|
-
email: string;
|
|
1111
|
-
first_name: string;
|
|
1112
|
-
last_name: string;
|
|
1113
|
-
state?: string | undefined;
|
|
1114
|
-
country?: string | undefined;
|
|
1115
|
-
address1?: string | undefined;
|
|
1116
|
-
address2?: string | undefined;
|
|
1117
|
-
postalCode?: string | undefined;
|
|
1118
|
-
city?: string | undefined;
|
|
1119
|
-
phone?: string | undefined;
|
|
1120
|
-
};
|
|
1121
|
-
name?: string | undefined;
|
|
1122
|
-
}, {
|
|
1123
|
-
contactInfo: {
|
|
1124
|
-
email: string;
|
|
1125
|
-
first_name: string;
|
|
1126
|
-
last_name: string;
|
|
1127
|
-
state?: string | undefined;
|
|
1128
|
-
country?: string | undefined;
|
|
1129
|
-
address1?: string | undefined;
|
|
1130
|
-
address2?: string | undefined;
|
|
1131
|
-
postalCode?: string | undefined;
|
|
1132
|
-
city?: string | undefined;
|
|
1133
|
-
phone?: string | undefined;
|
|
1134
|
-
};
|
|
1135
963
|
name?: string | undefined;
|
|
1136
964
|
}>;
|
|
1137
965
|
export declare const zPaymentMethod: z.ZodObject<{
|
|
@@ -1149,7 +977,7 @@ export declare const zPaymentMethod: z.ZodObject<{
|
|
|
1149
977
|
last4: string;
|
|
1150
978
|
exp_month: number;
|
|
1151
979
|
exp_year: number;
|
|
1152
|
-
brand: "unknown" | "
|
|
980
|
+
brand: "unknown" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay" | "visa";
|
|
1153
981
|
}, {
|
|
1154
982
|
type: "card";
|
|
1155
983
|
id: string;
|
|
@@ -1157,17 +985,17 @@ export declare const zPaymentMethod: z.ZodObject<{
|
|
|
1157
985
|
last4: string;
|
|
1158
986
|
exp_month: number;
|
|
1159
987
|
exp_year: number;
|
|
1160
|
-
brand: "unknown" | "
|
|
988
|
+
brand: "unknown" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay" | "visa";
|
|
1161
989
|
}>;
|
|
1162
990
|
export declare const zTokenCreateInput: z.ZodObject<{
|
|
1163
991
|
name: z.ZodString;
|
|
1164
992
|
role: z.ZodEnum<["Administrator", "User"]>;
|
|
1165
993
|
}, "strip", z.ZodTypeAny, {
|
|
1166
994
|
name: string;
|
|
1167
|
-
role: "
|
|
995
|
+
role: "Administrator" | "User";
|
|
1168
996
|
}, {
|
|
1169
997
|
name: string;
|
|
1170
|
-
role: "
|
|
998
|
+
role: "Administrator" | "User";
|
|
1171
999
|
}>;
|
|
1172
1000
|
export declare const zToken: z.ZodObject<{
|
|
1173
1001
|
name: z.ZodString;
|
|
@@ -1177,13 +1005,13 @@ export declare const zToken: z.ZodObject<{
|
|
|
1177
1005
|
date_created: z.ZodString;
|
|
1178
1006
|
}, "strip", z.ZodTypeAny, {
|
|
1179
1007
|
name: string;
|
|
1180
|
-
role: "
|
|
1008
|
+
role: "Administrator" | "User";
|
|
1181
1009
|
date_created: string;
|
|
1182
1010
|
id?: string | undefined;
|
|
1183
1011
|
secret?: string | undefined;
|
|
1184
1012
|
}, {
|
|
1185
1013
|
name: string;
|
|
1186
|
-
role: "
|
|
1014
|
+
role: "Administrator" | "User";
|
|
1187
1015
|
date_created: string;
|
|
1188
1016
|
id?: string | undefined;
|
|
1189
1017
|
secret?: string | undefined;
|
|
@@ -1193,26 +1021,44 @@ export declare const zTokenUpdateInput: z.ZodObject<{
|
|
|
1193
1021
|
role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
|
|
1194
1022
|
}, "strip", z.ZodTypeAny, {
|
|
1195
1023
|
name?: string | undefined;
|
|
1196
|
-
role?: "
|
|
1024
|
+
role?: "Administrator" | "User" | undefined;
|
|
1197
1025
|
}, {
|
|
1198
1026
|
name?: string | undefined;
|
|
1199
|
-
role?: "
|
|
1027
|
+
role?: "Administrator" | "User" | undefined;
|
|
1200
1028
|
}>;
|
|
1201
1029
|
export declare const zUsage: z.ZodObject<{
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
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<[""]>]>;
|
|
1206
1040
|
}, "strip", z.ZodTypeAny, {
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
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;
|
|
1211
1051
|
}, {
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
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;
|
|
1216
1062
|
}>;
|
|
1217
1063
|
export declare const zUserCreateInput: z.ZodObject<{
|
|
1218
1064
|
email: z.ZodString;
|
|
@@ -1228,7 +1074,7 @@ export declare const zUserCreateInput: z.ZodObject<{
|
|
|
1228
1074
|
first_name: string;
|
|
1229
1075
|
last_name: string;
|
|
1230
1076
|
password: string;
|
|
1231
|
-
role?: "
|
|
1077
|
+
role?: "Administrator" | "User" | undefined;
|
|
1232
1078
|
status?: "active" | "inactive" | undefined;
|
|
1233
1079
|
}, {
|
|
1234
1080
|
code: string;
|
|
@@ -1236,7 +1082,7 @@ export declare const zUserCreateInput: z.ZodObject<{
|
|
|
1236
1082
|
first_name: string;
|
|
1237
1083
|
last_name: string;
|
|
1238
1084
|
password: string;
|
|
1239
|
-
role?: "
|
|
1085
|
+
role?: "Administrator" | "User" | undefined;
|
|
1240
1086
|
status?: "active" | "inactive" | undefined;
|
|
1241
1087
|
}>;
|
|
1242
1088
|
export declare const zUser: z.ZodObject<{
|
|
@@ -1259,24 +1105,24 @@ export declare const zUser: z.ZodObject<{
|
|
|
1259
1105
|
}>, "many">>;
|
|
1260
1106
|
}, "strip", z.ZodTypeAny, {
|
|
1261
1107
|
id: string;
|
|
1262
|
-
role: "
|
|
1108
|
+
role: "Administrator" | "User";
|
|
1263
1109
|
email: string;
|
|
1264
1110
|
status: "active" | "inactive";
|
|
1265
|
-
date_created: string;
|
|
1266
1111
|
first_name: string;
|
|
1267
1112
|
last_name: string;
|
|
1113
|
+
date_created: string;
|
|
1268
1114
|
cluster_permissions?: {
|
|
1269
1115
|
cluster_id: string;
|
|
1270
1116
|
permissions: "readonly" | "readwrite";
|
|
1271
1117
|
}[] | undefined;
|
|
1272
1118
|
}, {
|
|
1273
1119
|
id: string;
|
|
1274
|
-
role: "
|
|
1120
|
+
role: "Administrator" | "User";
|
|
1275
1121
|
email: string;
|
|
1276
1122
|
status: "active" | "inactive";
|
|
1277
|
-
date_created: string;
|
|
1278
1123
|
first_name: string;
|
|
1279
1124
|
last_name: string;
|
|
1125
|
+
date_created: string;
|
|
1280
1126
|
cluster_permissions?: {
|
|
1281
1127
|
cluster_id: string;
|
|
1282
1128
|
permissions: "readonly" | "readwrite";
|
|
@@ -1289,33 +1135,51 @@ export declare const zUserUpdateInput: z.ZodObject<{
|
|
|
1289
1135
|
role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
|
|
1290
1136
|
status: z.ZodOptional<z.ZodEnum<["active", "inactive"]>>;
|
|
1291
1137
|
}, "strip", z.ZodTypeAny, {
|
|
1292
|
-
role?: "
|
|
1138
|
+
role?: "Administrator" | "User" | undefined;
|
|
1293
1139
|
email?: string | undefined;
|
|
1294
1140
|
status?: "active" | "inactive" | undefined;
|
|
1295
1141
|
first_name?: string | undefined;
|
|
1296
1142
|
last_name?: string | undefined;
|
|
1297
1143
|
}, {
|
|
1298
|
-
role?: "
|
|
1144
|
+
role?: "Administrator" | "User" | undefined;
|
|
1299
1145
|
email?: string | undefined;
|
|
1300
1146
|
status?: "active" | "inactive" | undefined;
|
|
1301
1147
|
first_name?: string | undefined;
|
|
1302
1148
|
last_name?: string | undefined;
|
|
1303
1149
|
}>;
|
|
1304
1150
|
export declare const zGetUsageResponse: z.ZodArray<z.ZodObject<{
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
|
|
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<[""]>]>;
|
|
1309
1161
|
}, "strip", z.ZodTypeAny, {
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
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;
|
|
1314
1172
|
}, {
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
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;
|
|
1319
1183
|
}>, "many">;
|
|
1320
1184
|
export declare const zGetBalanceResponse: z.ZodNumber;
|
|
1321
1185
|
export declare const zGetPaymentMethodResponse: z.ZodObject<{
|
|
@@ -1333,7 +1197,7 @@ export declare const zGetPaymentMethodResponse: z.ZodObject<{
|
|
|
1333
1197
|
last4: string;
|
|
1334
1198
|
exp_month: number;
|
|
1335
1199
|
exp_year: number;
|
|
1336
|
-
brand: "unknown" | "
|
|
1200
|
+
brand: "unknown" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay" | "visa";
|
|
1337
1201
|
}, {
|
|
1338
1202
|
type: "card";
|
|
1339
1203
|
id: string;
|
|
@@ -1341,7 +1205,7 @@ export declare const zGetPaymentMethodResponse: z.ZodObject<{
|
|
|
1341
1205
|
last4: string;
|
|
1342
1206
|
exp_month: number;
|
|
1343
1207
|
exp_year: number;
|
|
1344
|
-
brand: "unknown" | "
|
|
1208
|
+
brand: "unknown" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay" | "visa";
|
|
1345
1209
|
}>;
|
|
1346
1210
|
export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
|
|
1347
1211
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -1386,7 +1250,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1386
1250
|
catalogEffectiveDate: z.ZodOptional<z.ZodString>;
|
|
1387
1251
|
childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
1388
1252
|
}, "strip", z.ZodTypeAny, {
|
|
1389
|
-
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;
|
|
1390
1254
|
id?: string | undefined;
|
|
1391
1255
|
description?: string | undefined;
|
|
1392
1256
|
amount?: number | undefined;
|
|
@@ -1408,7 +1272,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1408
1272
|
catalogEffectiveDate?: string | undefined;
|
|
1409
1273
|
childItems?: unknown[] | undefined;
|
|
1410
1274
|
}, {
|
|
1411
|
-
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;
|
|
1412
1276
|
id?: string | undefined;
|
|
1413
1277
|
description?: string | undefined;
|
|
1414
1278
|
amount?: number | undefined;
|
|
@@ -1453,7 +1317,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1453
1317
|
catalogEffectiveDate: z.ZodOptional<z.ZodString>;
|
|
1454
1318
|
childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
1455
1319
|
}, "strip", z.ZodTypeAny, {
|
|
1456
|
-
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;
|
|
1457
1321
|
id?: string | undefined;
|
|
1458
1322
|
description?: string | undefined;
|
|
1459
1323
|
amount?: number | undefined;
|
|
@@ -1475,7 +1339,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1475
1339
|
catalogEffectiveDate?: string | undefined;
|
|
1476
1340
|
childItems?: unknown[] | undefined;
|
|
1477
1341
|
}, {
|
|
1478
|
-
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;
|
|
1479
1343
|
id?: string | undefined;
|
|
1480
1344
|
description?: string | undefined;
|
|
1481
1345
|
amount?: number | undefined;
|
|
@@ -1498,12 +1362,11 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1498
1362
|
childItems?: unknown[] | undefined;
|
|
1499
1363
|
}>, "many">>;
|
|
1500
1364
|
}, "strip", z.ZodTypeAny, {
|
|
1501
|
-
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;
|
|
1502
1366
|
id?: string | undefined;
|
|
1503
1367
|
status?: "DRAFT" | "COMMITTED" | "VOID" | undefined;
|
|
1504
|
-
amount?: number | undefined;
|
|
1505
1368
|
items?: {
|
|
1506
|
-
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;
|
|
1507
1370
|
id?: string | undefined;
|
|
1508
1371
|
description?: string | undefined;
|
|
1509
1372
|
amount?: number | undefined;
|
|
@@ -1526,6 +1389,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1526
1389
|
childItems?: unknown[] | undefined;
|
|
1527
1390
|
}[] | undefined;
|
|
1528
1391
|
organizationId?: string | undefined;
|
|
1392
|
+
amount?: number | undefined;
|
|
1529
1393
|
creditAdj?: number | undefined;
|
|
1530
1394
|
refundAdj?: number | undefined;
|
|
1531
1395
|
invoiceDate?: string | undefined;
|
|
@@ -1534,7 +1398,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1534
1398
|
balance?: number | undefined;
|
|
1535
1399
|
bundleKeys?: string | undefined;
|
|
1536
1400
|
credits?: {
|
|
1537
|
-
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;
|
|
1538
1402
|
id?: string | undefined;
|
|
1539
1403
|
description?: string | undefined;
|
|
1540
1404
|
amount?: number | undefined;
|
|
@@ -1557,12 +1421,11 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1557
1421
|
childItems?: unknown[] | undefined;
|
|
1558
1422
|
}[] | undefined;
|
|
1559
1423
|
}, {
|
|
1560
|
-
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;
|
|
1561
1425
|
id?: string | undefined;
|
|
1562
1426
|
status?: "DRAFT" | "COMMITTED" | "VOID" | undefined;
|
|
1563
|
-
amount?: number | undefined;
|
|
1564
1427
|
items?: {
|
|
1565
|
-
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;
|
|
1566
1429
|
id?: string | undefined;
|
|
1567
1430
|
description?: string | undefined;
|
|
1568
1431
|
amount?: number | undefined;
|
|
@@ -1585,6 +1448,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1585
1448
|
childItems?: unknown[] | undefined;
|
|
1586
1449
|
}[] | undefined;
|
|
1587
1450
|
organizationId?: string | undefined;
|
|
1451
|
+
amount?: number | undefined;
|
|
1588
1452
|
creditAdj?: number | undefined;
|
|
1589
1453
|
refundAdj?: number | undefined;
|
|
1590
1454
|
invoiceDate?: string | undefined;
|
|
@@ -1593,7 +1457,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1593
1457
|
balance?: number | undefined;
|
|
1594
1458
|
bundleKeys?: string | undefined;
|
|
1595
1459
|
credits?: {
|
|
1596
|
-
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;
|
|
1597
1461
|
id?: string | undefined;
|
|
1598
1462
|
description?: string | undefined;
|
|
1599
1463
|
amount?: number | undefined;
|
|
@@ -1623,6 +1487,80 @@ export declare const zGetInvoiceResponse: z.ZodObject<{
|
|
|
1623
1487
|
}, {
|
|
1624
1488
|
html?: string | undefined;
|
|
1625
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
|
+
}>;
|
|
1626
1564
|
export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
1627
1565
|
limits: z.ZodOptional<z.ZodObject<{
|
|
1628
1566
|
cpu: z.ZodNumber;
|
|
@@ -1829,18 +1767,19 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
|
1829
1767
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1830
1768
|
tier: "basic" | "pro";
|
|
1831
1769
|
version_channel: string;
|
|
1770
|
+
ready?: boolean | undefined;
|
|
1832
1771
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1833
1772
|
endpoint?: string | undefined;
|
|
1834
1773
|
certificate_ca?: string | undefined;
|
|
1835
1774
|
version_current?: string | undefined;
|
|
1836
1775
|
created_at?: string | undefined;
|
|
1837
1776
|
updated_at?: string | undefined;
|
|
1838
|
-
ready?: boolean | undefined;
|
|
1839
1777
|
}, {
|
|
1840
1778
|
name: string;
|
|
1841
1779
|
id: string;
|
|
1842
1780
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1843
1781
|
tier: "basic" | "pro";
|
|
1782
|
+
ready?: boolean | undefined;
|
|
1844
1783
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1845
1784
|
endpoint?: string | undefined;
|
|
1846
1785
|
version_channel?: string | undefined;
|
|
@@ -1848,7 +1787,6 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
|
1848
1787
|
version_current?: string | undefined;
|
|
1849
1788
|
created_at?: string | undefined;
|
|
1850
1789
|
updated_at?: string | undefined;
|
|
1851
|
-
ready?: boolean | undefined;
|
|
1852
1790
|
}>, "many">;
|
|
1853
1791
|
export declare const zCreateClusterResponse: z.ZodString;
|
|
1854
1792
|
export declare const zDeleteClusterResponse: z.ZodString;
|
|
@@ -1871,18 +1809,19 @@ export declare const zGetClusterResponse: z.ZodObject<{
|
|
|
1871
1809
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1872
1810
|
tier: "basic" | "pro";
|
|
1873
1811
|
version_channel: string;
|
|
1812
|
+
ready?: boolean | undefined;
|
|
1874
1813
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1875
1814
|
endpoint?: string | undefined;
|
|
1876
1815
|
certificate_ca?: string | undefined;
|
|
1877
1816
|
version_current?: string | undefined;
|
|
1878
1817
|
created_at?: string | undefined;
|
|
1879
1818
|
updated_at?: string | undefined;
|
|
1880
|
-
ready?: boolean | undefined;
|
|
1881
1819
|
}, {
|
|
1882
1820
|
name: string;
|
|
1883
1821
|
id: string;
|
|
1884
1822
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1885
1823
|
tier: "basic" | "pro";
|
|
1824
|
+
ready?: boolean | undefined;
|
|
1886
1825
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1887
1826
|
endpoint?: string | undefined;
|
|
1888
1827
|
version_channel?: string | undefined;
|
|
@@ -1890,7 +1829,6 @@ export declare const zGetClusterResponse: z.ZodObject<{
|
|
|
1890
1829
|
version_current?: string | undefined;
|
|
1891
1830
|
created_at?: string | undefined;
|
|
1892
1831
|
updated_at?: string | undefined;
|
|
1893
|
-
ready?: boolean | undefined;
|
|
1894
1832
|
}>;
|
|
1895
1833
|
export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
1896
1834
|
name: z.ZodString;
|
|
@@ -1911,18 +1849,19 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
|
1911
1849
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1912
1850
|
tier: "basic" | "pro";
|
|
1913
1851
|
version_channel: string;
|
|
1852
|
+
ready?: boolean | undefined;
|
|
1914
1853
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1915
1854
|
endpoint?: string | undefined;
|
|
1916
1855
|
certificate_ca?: string | undefined;
|
|
1917
1856
|
version_current?: string | undefined;
|
|
1918
1857
|
created_at?: string | undefined;
|
|
1919
1858
|
updated_at?: string | undefined;
|
|
1920
|
-
ready?: boolean | undefined;
|
|
1921
1859
|
}, {
|
|
1922
1860
|
name: string;
|
|
1923
1861
|
id: string;
|
|
1924
1862
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1925
1863
|
tier: "basic" | "pro";
|
|
1864
|
+
ready?: boolean | undefined;
|
|
1926
1865
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1927
1866
|
endpoint?: string | undefined;
|
|
1928
1867
|
version_channel?: string | undefined;
|
|
@@ -1930,7 +1869,6 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
|
1930
1869
|
version_current?: string | undefined;
|
|
1931
1870
|
created_at?: string | undefined;
|
|
1932
1871
|
updated_at?: string | undefined;
|
|
1933
|
-
ready?: boolean | undefined;
|
|
1934
1872
|
}>;
|
|
1935
1873
|
export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
1936
1874
|
name: z.ZodString;
|
|
@@ -1951,18 +1889,19 @@ export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
|
1951
1889
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1952
1890
|
tier: "basic" | "pro";
|
|
1953
1891
|
version_channel: string;
|
|
1892
|
+
ready?: boolean | undefined;
|
|
1954
1893
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1955
1894
|
endpoint?: string | undefined;
|
|
1956
1895
|
certificate_ca?: string | undefined;
|
|
1957
1896
|
version_current?: string | undefined;
|
|
1958
1897
|
created_at?: string | undefined;
|
|
1959
1898
|
updated_at?: string | undefined;
|
|
1960
|
-
ready?: boolean | undefined;
|
|
1961
1899
|
}, {
|
|
1962
1900
|
name: string;
|
|
1963
1901
|
id: string;
|
|
1964
1902
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1965
1903
|
tier: "basic" | "pro";
|
|
1904
|
+
ready?: boolean | undefined;
|
|
1966
1905
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1967
1906
|
endpoint?: string | undefined;
|
|
1968
1907
|
version_channel?: string | undefined;
|
|
@@ -1970,7 +1909,6 @@ export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
|
1970
1909
|
version_current?: string | undefined;
|
|
1971
1910
|
created_at?: string | undefined;
|
|
1972
1911
|
updated_at?: string | undefined;
|
|
1973
|
-
ready?: boolean | undefined;
|
|
1974
1912
|
}>;
|
|
1975
1913
|
export declare const zGetInfrastructureResponse: z.ZodArray<z.ZodObject<{
|
|
1976
1914
|
sku: z.ZodString;
|
|
@@ -2201,344 +2139,8 @@ export declare const zGetInviteResponse: z.ZodObject<{
|
|
|
2201
2139
|
organization_id?: string | undefined;
|
|
2202
2140
|
}>;
|
|
2203
2141
|
export declare const zGetOrganizationResponse: z.ZodObject<{
|
|
2204
|
-
name: z.ZodString;
|
|
2205
|
-
contactInfo: z.ZodObject<{
|
|
2206
|
-
address1: z.ZodOptional<z.ZodString>;
|
|
2207
|
-
address2: z.ZodOptional<z.ZodString>;
|
|
2208
|
-
postalCode: z.ZodOptional<z.ZodString>;
|
|
2209
|
-
city: z.ZodOptional<z.ZodString>;
|
|
2210
|
-
state: z.ZodOptional<z.ZodString>;
|
|
2211
|
-
country: z.ZodOptional<z.ZodString>;
|
|
2212
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
2213
|
-
email: z.ZodString;
|
|
2214
|
-
first_name: z.ZodString;
|
|
2215
|
-
last_name: z.ZodString;
|
|
2216
|
-
}, "strip", z.ZodTypeAny, {
|
|
2217
|
-
email: string;
|
|
2218
|
-
first_name: string;
|
|
2219
|
-
last_name: string;
|
|
2220
|
-
state?: string | undefined;
|
|
2221
|
-
country?: string | undefined;
|
|
2222
|
-
address1?: string | undefined;
|
|
2223
|
-
address2?: string | undefined;
|
|
2224
|
-
postalCode?: string | undefined;
|
|
2225
|
-
city?: string | undefined;
|
|
2226
|
-
phone?: string | undefined;
|
|
2227
|
-
}, {
|
|
2228
|
-
email: string;
|
|
2229
|
-
first_name: string;
|
|
2230
|
-
last_name: string;
|
|
2231
|
-
state?: string | undefined;
|
|
2232
|
-
country?: string | undefined;
|
|
2233
|
-
address1?: string | undefined;
|
|
2234
|
-
address2?: string | undefined;
|
|
2235
|
-
postalCode?: string | undefined;
|
|
2236
|
-
city?: string | undefined;
|
|
2237
|
-
phone?: string | undefined;
|
|
2238
|
-
}>;
|
|
2239
|
-
id: z.ZodString;
|
|
2240
|
-
date_created: z.ZodString;
|
|
2241
|
-
quota: z.ZodObject<{
|
|
2242
|
-
basic_clusters_max: z.ZodNumber;
|
|
2243
|
-
basic_clusters_available: z.ZodNumber;
|
|
2244
|
-
pro_clusters_max: z.ZodNumber;
|
|
2245
|
-
pro_clusters_available: z.ZodNumber;
|
|
2246
|
-
fleets_max: z.ZodNumber;
|
|
2247
|
-
managed_fleets_cpu_max: z.ZodNumber;
|
|
2248
|
-
cluster_tiers: z.ZodArray<z.ZodString, "many">;
|
|
2249
|
-
regions: z.ZodArray<z.ZodString, "many">;
|
|
2250
|
-
versions: z.ZodArray<z.ZodObject<{
|
|
2251
|
-
id: z.ZodString;
|
|
2252
|
-
label: z.ZodString;
|
|
2253
|
-
}, "strip", z.ZodTypeAny, {
|
|
2254
|
-
id: string;
|
|
2255
|
-
label: string;
|
|
2256
|
-
}, {
|
|
2257
|
-
id: string;
|
|
2258
|
-
label: string;
|
|
2259
|
-
}>, "many">;
|
|
2260
|
-
}, "strip", z.ZodTypeAny, {
|
|
2261
|
-
versions: {
|
|
2262
|
-
id: string;
|
|
2263
|
-
label: string;
|
|
2264
|
-
}[];
|
|
2265
|
-
basic_clusters_max: number;
|
|
2266
|
-
basic_clusters_available: number;
|
|
2267
|
-
pro_clusters_max: number;
|
|
2268
|
-
pro_clusters_available: number;
|
|
2269
|
-
fleets_max: number;
|
|
2270
|
-
managed_fleets_cpu_max: number;
|
|
2271
|
-
cluster_tiers: string[];
|
|
2272
|
-
regions: string[];
|
|
2273
|
-
}, {
|
|
2274
|
-
versions: {
|
|
2275
|
-
id: string;
|
|
2276
|
-
label: string;
|
|
2277
|
-
}[];
|
|
2278
|
-
basic_clusters_max: number;
|
|
2279
|
-
basic_clusters_available: number;
|
|
2280
|
-
pro_clusters_max: number;
|
|
2281
|
-
pro_clusters_available: number;
|
|
2282
|
-
fleets_max: number;
|
|
2283
|
-
managed_fleets_cpu_max: number;
|
|
2284
|
-
cluster_tiers: string[];
|
|
2285
|
-
regions: string[];
|
|
2286
|
-
}>;
|
|
2287
|
-
pending_actions: z.ZodArray<z.ZodEnum<["signup-billing-address", "signup-payment-method", "signup-invite-team", "signup-create-cluster"]>, "many">;
|
|
2288
|
-
status: z.ZodEnum<["active", "closed", "suspended"]>;
|
|
2289
|
-
}, "strip", z.ZodTypeAny, {
|
|
2290
|
-
name: string;
|
|
2291
|
-
id: string;
|
|
2292
|
-
status: "active" | "closed" | "suspended";
|
|
2293
|
-
date_created: string;
|
|
2294
|
-
contactInfo: {
|
|
2295
|
-
email: string;
|
|
2296
|
-
first_name: string;
|
|
2297
|
-
last_name: string;
|
|
2298
|
-
state?: string | undefined;
|
|
2299
|
-
country?: string | undefined;
|
|
2300
|
-
address1?: string | undefined;
|
|
2301
|
-
address2?: string | undefined;
|
|
2302
|
-
postalCode?: string | undefined;
|
|
2303
|
-
city?: string | undefined;
|
|
2304
|
-
phone?: string | undefined;
|
|
2305
|
-
};
|
|
2306
|
-
quota: {
|
|
2307
|
-
versions: {
|
|
2308
|
-
id: string;
|
|
2309
|
-
label: string;
|
|
2310
|
-
}[];
|
|
2311
|
-
basic_clusters_max: number;
|
|
2312
|
-
basic_clusters_available: number;
|
|
2313
|
-
pro_clusters_max: number;
|
|
2314
|
-
pro_clusters_available: number;
|
|
2315
|
-
fleets_max: number;
|
|
2316
|
-
managed_fleets_cpu_max: number;
|
|
2317
|
-
cluster_tiers: string[];
|
|
2318
|
-
regions: string[];
|
|
2319
|
-
};
|
|
2320
|
-
pending_actions: ("signup-payment-method" | "signup-billing-address" | "signup-invite-team" | "signup-create-cluster")[];
|
|
2321
|
-
}, {
|
|
2322
|
-
name: string;
|
|
2323
|
-
id: string;
|
|
2324
|
-
status: "active" | "closed" | "suspended";
|
|
2325
|
-
date_created: string;
|
|
2326
|
-
contactInfo: {
|
|
2327
|
-
email: string;
|
|
2328
|
-
first_name: string;
|
|
2329
|
-
last_name: string;
|
|
2330
|
-
state?: string | undefined;
|
|
2331
|
-
country?: string | undefined;
|
|
2332
|
-
address1?: string | undefined;
|
|
2333
|
-
address2?: string | undefined;
|
|
2334
|
-
postalCode?: string | undefined;
|
|
2335
|
-
city?: string | undefined;
|
|
2336
|
-
phone?: string | undefined;
|
|
2337
|
-
};
|
|
2338
|
-
quota: {
|
|
2339
|
-
versions: {
|
|
2340
|
-
id: string;
|
|
2341
|
-
label: string;
|
|
2342
|
-
}[];
|
|
2343
|
-
basic_clusters_max: number;
|
|
2344
|
-
basic_clusters_available: number;
|
|
2345
|
-
pro_clusters_max: number;
|
|
2346
|
-
pro_clusters_available: number;
|
|
2347
|
-
fleets_max: number;
|
|
2348
|
-
managed_fleets_cpu_max: number;
|
|
2349
|
-
cluster_tiers: string[];
|
|
2350
|
-
regions: string[];
|
|
2351
|
-
};
|
|
2352
|
-
pending_actions: ("signup-payment-method" | "signup-billing-address" | "signup-invite-team" | "signup-create-cluster")[];
|
|
2353
|
-
}>;
|
|
2354
|
-
export declare const zCreateOrganizationResponse: z.ZodObject<{
|
|
2355
|
-
name: z.ZodString;
|
|
2356
|
-
contactInfo: z.ZodObject<{
|
|
2357
|
-
address1: z.ZodOptional<z.ZodString>;
|
|
2358
|
-
address2: z.ZodOptional<z.ZodString>;
|
|
2359
|
-
postalCode: z.ZodOptional<z.ZodString>;
|
|
2360
|
-
city: z.ZodOptional<z.ZodString>;
|
|
2361
|
-
state: z.ZodOptional<z.ZodString>;
|
|
2362
|
-
country: z.ZodOptional<z.ZodString>;
|
|
2363
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
2364
|
-
email: z.ZodString;
|
|
2365
|
-
first_name: z.ZodString;
|
|
2366
|
-
last_name: z.ZodString;
|
|
2367
|
-
}, "strip", z.ZodTypeAny, {
|
|
2368
|
-
email: string;
|
|
2369
|
-
first_name: string;
|
|
2370
|
-
last_name: string;
|
|
2371
|
-
state?: string | undefined;
|
|
2372
|
-
country?: string | undefined;
|
|
2373
|
-
address1?: string | undefined;
|
|
2374
|
-
address2?: string | undefined;
|
|
2375
|
-
postalCode?: string | undefined;
|
|
2376
|
-
city?: string | undefined;
|
|
2377
|
-
phone?: string | undefined;
|
|
2378
|
-
}, {
|
|
2379
|
-
email: string;
|
|
2380
|
-
first_name: string;
|
|
2381
|
-
last_name: string;
|
|
2382
|
-
state?: string | undefined;
|
|
2383
|
-
country?: string | undefined;
|
|
2384
|
-
address1?: string | undefined;
|
|
2385
|
-
address2?: string | undefined;
|
|
2386
|
-
postalCode?: string | undefined;
|
|
2387
|
-
city?: string | undefined;
|
|
2388
|
-
phone?: string | undefined;
|
|
2389
|
-
}>;
|
|
2390
|
-
id: z.ZodString;
|
|
2391
|
-
date_created: z.ZodString;
|
|
2392
|
-
quota: z.ZodObject<{
|
|
2393
|
-
basic_clusters_max: z.ZodNumber;
|
|
2394
|
-
basic_clusters_available: z.ZodNumber;
|
|
2395
|
-
pro_clusters_max: z.ZodNumber;
|
|
2396
|
-
pro_clusters_available: z.ZodNumber;
|
|
2397
|
-
fleets_max: z.ZodNumber;
|
|
2398
|
-
managed_fleets_cpu_max: z.ZodNumber;
|
|
2399
|
-
cluster_tiers: z.ZodArray<z.ZodString, "many">;
|
|
2400
|
-
regions: z.ZodArray<z.ZodString, "many">;
|
|
2401
|
-
versions: z.ZodArray<z.ZodObject<{
|
|
2402
|
-
id: z.ZodString;
|
|
2403
|
-
label: z.ZodString;
|
|
2404
|
-
}, "strip", z.ZodTypeAny, {
|
|
2405
|
-
id: string;
|
|
2406
|
-
label: string;
|
|
2407
|
-
}, {
|
|
2408
|
-
id: string;
|
|
2409
|
-
label: string;
|
|
2410
|
-
}>, "many">;
|
|
2411
|
-
}, "strip", z.ZodTypeAny, {
|
|
2412
|
-
versions: {
|
|
2413
|
-
id: string;
|
|
2414
|
-
label: string;
|
|
2415
|
-
}[];
|
|
2416
|
-
basic_clusters_max: number;
|
|
2417
|
-
basic_clusters_available: number;
|
|
2418
|
-
pro_clusters_max: number;
|
|
2419
|
-
pro_clusters_available: number;
|
|
2420
|
-
fleets_max: number;
|
|
2421
|
-
managed_fleets_cpu_max: number;
|
|
2422
|
-
cluster_tiers: string[];
|
|
2423
|
-
regions: string[];
|
|
2424
|
-
}, {
|
|
2425
|
-
versions: {
|
|
2426
|
-
id: string;
|
|
2427
|
-
label: string;
|
|
2428
|
-
}[];
|
|
2429
|
-
basic_clusters_max: number;
|
|
2430
|
-
basic_clusters_available: number;
|
|
2431
|
-
pro_clusters_max: number;
|
|
2432
|
-
pro_clusters_available: number;
|
|
2433
|
-
fleets_max: number;
|
|
2434
|
-
managed_fleets_cpu_max: number;
|
|
2435
|
-
cluster_tiers: string[];
|
|
2436
|
-
regions: string[];
|
|
2437
|
-
}>;
|
|
2438
|
-
pending_actions: z.ZodArray<z.ZodEnum<["signup-billing-address", "signup-payment-method", "signup-invite-team", "signup-create-cluster"]>, "many">;
|
|
2439
|
-
status: z.ZodEnum<["active", "closed", "suspended"]>;
|
|
2440
|
-
}, "strip", z.ZodTypeAny, {
|
|
2441
|
-
name: string;
|
|
2442
|
-
id: string;
|
|
2443
|
-
status: "active" | "closed" | "suspended";
|
|
2444
|
-
date_created: string;
|
|
2445
|
-
contactInfo: {
|
|
2446
|
-
email: string;
|
|
2447
|
-
first_name: string;
|
|
2448
|
-
last_name: string;
|
|
2449
|
-
state?: string | undefined;
|
|
2450
|
-
country?: string | undefined;
|
|
2451
|
-
address1?: string | undefined;
|
|
2452
|
-
address2?: string | undefined;
|
|
2453
|
-
postalCode?: string | undefined;
|
|
2454
|
-
city?: string | undefined;
|
|
2455
|
-
phone?: string | undefined;
|
|
2456
|
-
};
|
|
2457
|
-
quota: {
|
|
2458
|
-
versions: {
|
|
2459
|
-
id: string;
|
|
2460
|
-
label: string;
|
|
2461
|
-
}[];
|
|
2462
|
-
basic_clusters_max: number;
|
|
2463
|
-
basic_clusters_available: number;
|
|
2464
|
-
pro_clusters_max: number;
|
|
2465
|
-
pro_clusters_available: number;
|
|
2466
|
-
fleets_max: number;
|
|
2467
|
-
managed_fleets_cpu_max: number;
|
|
2468
|
-
cluster_tiers: string[];
|
|
2469
|
-
regions: string[];
|
|
2470
|
-
};
|
|
2471
|
-
pending_actions: ("signup-payment-method" | "signup-billing-address" | "signup-invite-team" | "signup-create-cluster")[];
|
|
2472
|
-
}, {
|
|
2473
|
-
name: string;
|
|
2474
|
-
id: string;
|
|
2475
|
-
status: "active" | "closed" | "suspended";
|
|
2476
|
-
date_created: string;
|
|
2477
|
-
contactInfo: {
|
|
2478
|
-
email: string;
|
|
2479
|
-
first_name: string;
|
|
2480
|
-
last_name: string;
|
|
2481
|
-
state?: string | undefined;
|
|
2482
|
-
country?: string | undefined;
|
|
2483
|
-
address1?: string | undefined;
|
|
2484
|
-
address2?: string | undefined;
|
|
2485
|
-
postalCode?: string | undefined;
|
|
2486
|
-
city?: string | undefined;
|
|
2487
|
-
phone?: string | undefined;
|
|
2488
|
-
};
|
|
2489
|
-
quota: {
|
|
2490
|
-
versions: {
|
|
2491
|
-
id: string;
|
|
2492
|
-
label: string;
|
|
2493
|
-
}[];
|
|
2494
|
-
basic_clusters_max: number;
|
|
2495
|
-
basic_clusters_available: number;
|
|
2496
|
-
pro_clusters_max: number;
|
|
2497
|
-
pro_clusters_available: number;
|
|
2498
|
-
fleets_max: number;
|
|
2499
|
-
managed_fleets_cpu_max: number;
|
|
2500
|
-
cluster_tiers: string[];
|
|
2501
|
-
regions: string[];
|
|
2502
|
-
};
|
|
2503
|
-
pending_actions: ("signup-payment-method" | "signup-billing-address" | "signup-invite-team" | "signup-create-cluster")[];
|
|
2504
|
-
}>;
|
|
2505
|
-
export declare const zUpdateOrganizationResponse: z.ZodObject<{
|
|
2506
|
-
name: z.ZodString;
|
|
2507
|
-
contactInfo: z.ZodObject<{
|
|
2508
|
-
address1: z.ZodOptional<z.ZodString>;
|
|
2509
|
-
address2: z.ZodOptional<z.ZodString>;
|
|
2510
|
-
postalCode: z.ZodOptional<z.ZodString>;
|
|
2511
|
-
city: z.ZodOptional<z.ZodString>;
|
|
2512
|
-
state: z.ZodOptional<z.ZodString>;
|
|
2513
|
-
country: z.ZodOptional<z.ZodString>;
|
|
2514
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
2515
|
-
email: z.ZodString;
|
|
2516
|
-
first_name: z.ZodString;
|
|
2517
|
-
last_name: z.ZodString;
|
|
2518
|
-
}, "strip", z.ZodTypeAny, {
|
|
2519
|
-
email: string;
|
|
2520
|
-
first_name: string;
|
|
2521
|
-
last_name: string;
|
|
2522
|
-
state?: string | undefined;
|
|
2523
|
-
country?: string | undefined;
|
|
2524
|
-
address1?: string | undefined;
|
|
2525
|
-
address2?: string | undefined;
|
|
2526
|
-
postalCode?: string | undefined;
|
|
2527
|
-
city?: string | undefined;
|
|
2528
|
-
phone?: string | undefined;
|
|
2529
|
-
}, {
|
|
2530
|
-
email: string;
|
|
2531
|
-
first_name: string;
|
|
2532
|
-
last_name: string;
|
|
2533
|
-
state?: string | undefined;
|
|
2534
|
-
country?: string | undefined;
|
|
2535
|
-
address1?: string | undefined;
|
|
2536
|
-
address2?: string | undefined;
|
|
2537
|
-
postalCode?: string | undefined;
|
|
2538
|
-
city?: string | undefined;
|
|
2539
|
-
phone?: string | undefined;
|
|
2540
|
-
}>;
|
|
2541
2142
|
id: z.ZodString;
|
|
2143
|
+
name: z.ZodOptional<z.ZodString>;
|
|
2542
2144
|
date_created: z.ZodString;
|
|
2543
2145
|
quota: z.ZodObject<{
|
|
2544
2146
|
basic_clusters_max: z.ZodNumber;
|
|
@@ -2586,25 +2188,11 @@ export declare const zUpdateOrganizationResponse: z.ZodObject<{
|
|
|
2586
2188
|
cluster_tiers: string[];
|
|
2587
2189
|
regions: string[];
|
|
2588
2190
|
}>;
|
|
2589
|
-
pending_actions: z.ZodArray<z.ZodEnum<["signup-billing-address", "signup-payment-method", "signup-invite-team", "signup-create-cluster"]>, "many">;
|
|
2590
2191
|
status: z.ZodEnum<["active", "closed", "suspended"]>;
|
|
2591
2192
|
}, "strip", z.ZodTypeAny, {
|
|
2592
|
-
name: string;
|
|
2593
2193
|
id: string;
|
|
2594
2194
|
status: "active" | "closed" | "suspended";
|
|
2595
2195
|
date_created: string;
|
|
2596
|
-
contactInfo: {
|
|
2597
|
-
email: string;
|
|
2598
|
-
first_name: string;
|
|
2599
|
-
last_name: string;
|
|
2600
|
-
state?: string | undefined;
|
|
2601
|
-
country?: string | undefined;
|
|
2602
|
-
address1?: string | undefined;
|
|
2603
|
-
address2?: string | undefined;
|
|
2604
|
-
postalCode?: string | undefined;
|
|
2605
|
-
city?: string | undefined;
|
|
2606
|
-
phone?: string | undefined;
|
|
2607
|
-
};
|
|
2608
2196
|
quota: {
|
|
2609
2197
|
versions: {
|
|
2610
2198
|
id: string;
|
|
@@ -2619,24 +2207,11 @@ export declare const zUpdateOrganizationResponse: z.ZodObject<{
|
|
|
2619
2207
|
cluster_tiers: string[];
|
|
2620
2208
|
regions: string[];
|
|
2621
2209
|
};
|
|
2622
|
-
|
|
2210
|
+
name?: string | undefined;
|
|
2623
2211
|
}, {
|
|
2624
|
-
name: string;
|
|
2625
2212
|
id: string;
|
|
2626
2213
|
status: "active" | "closed" | "suspended";
|
|
2627
2214
|
date_created: string;
|
|
2628
|
-
contactInfo: {
|
|
2629
|
-
email: string;
|
|
2630
|
-
first_name: string;
|
|
2631
|
-
last_name: string;
|
|
2632
|
-
state?: string | undefined;
|
|
2633
|
-
country?: string | undefined;
|
|
2634
|
-
address1?: string | undefined;
|
|
2635
|
-
address2?: string | undefined;
|
|
2636
|
-
postalCode?: string | undefined;
|
|
2637
|
-
city?: string | undefined;
|
|
2638
|
-
phone?: string | undefined;
|
|
2639
|
-
};
|
|
2640
2215
|
quota: {
|
|
2641
2216
|
versions: {
|
|
2642
2217
|
id: string;
|
|
@@ -2651,7 +2226,7 @@ export declare const zUpdateOrganizationResponse: z.ZodObject<{
|
|
|
2651
2226
|
cluster_tiers: string[];
|
|
2652
2227
|
regions: string[];
|
|
2653
2228
|
};
|
|
2654
|
-
|
|
2229
|
+
name?: string | undefined;
|
|
2655
2230
|
}>;
|
|
2656
2231
|
export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
|
|
2657
2232
|
name: z.ZodString;
|
|
@@ -2661,13 +2236,13 @@ export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
|
|
|
2661
2236
|
date_created: z.ZodString;
|
|
2662
2237
|
}, "strip", z.ZodTypeAny, {
|
|
2663
2238
|
name: string;
|
|
2664
|
-
role: "
|
|
2239
|
+
role: "Administrator" | "User";
|
|
2665
2240
|
date_created: string;
|
|
2666
2241
|
id?: string | undefined;
|
|
2667
2242
|
secret?: string | undefined;
|
|
2668
2243
|
}, {
|
|
2669
2244
|
name: string;
|
|
2670
|
-
role: "
|
|
2245
|
+
role: "Administrator" | "User";
|
|
2671
2246
|
date_created: string;
|
|
2672
2247
|
id?: string | undefined;
|
|
2673
2248
|
secret?: string | undefined;
|
|
@@ -2680,13 +2255,13 @@ export declare const zCreateTokenResponse: z.ZodObject<{
|
|
|
2680
2255
|
date_created: z.ZodString;
|
|
2681
2256
|
}, "strip", z.ZodTypeAny, {
|
|
2682
2257
|
name: string;
|
|
2683
|
-
role: "
|
|
2258
|
+
role: "Administrator" | "User";
|
|
2684
2259
|
date_created: string;
|
|
2685
2260
|
id?: string | undefined;
|
|
2686
2261
|
secret?: string | undefined;
|
|
2687
2262
|
}, {
|
|
2688
2263
|
name: string;
|
|
2689
|
-
role: "
|
|
2264
|
+
role: "Administrator" | "User";
|
|
2690
2265
|
date_created: string;
|
|
2691
2266
|
id?: string | undefined;
|
|
2692
2267
|
secret?: string | undefined;
|
|
@@ -2699,13 +2274,13 @@ export declare const zGetTokenResponse: z.ZodObject<{
|
|
|
2699
2274
|
date_created: z.ZodString;
|
|
2700
2275
|
}, "strip", z.ZodTypeAny, {
|
|
2701
2276
|
name: string;
|
|
2702
|
-
role: "
|
|
2277
|
+
role: "Administrator" | "User";
|
|
2703
2278
|
date_created: string;
|
|
2704
2279
|
id?: string | undefined;
|
|
2705
2280
|
secret?: string | undefined;
|
|
2706
2281
|
}, {
|
|
2707
2282
|
name: string;
|
|
2708
|
-
role: "
|
|
2283
|
+
role: "Administrator" | "User";
|
|
2709
2284
|
date_created: string;
|
|
2710
2285
|
id?: string | undefined;
|
|
2711
2286
|
secret?: string | undefined;
|
|
@@ -2718,13 +2293,13 @@ export declare const zUpdateTokenResponse: z.ZodObject<{
|
|
|
2718
2293
|
date_created: z.ZodString;
|
|
2719
2294
|
}, "strip", z.ZodTypeAny, {
|
|
2720
2295
|
name: string;
|
|
2721
|
-
role: "
|
|
2296
|
+
role: "Administrator" | "User";
|
|
2722
2297
|
date_created: string;
|
|
2723
2298
|
id?: string | undefined;
|
|
2724
2299
|
secret?: string | undefined;
|
|
2725
2300
|
}, {
|
|
2726
2301
|
name: string;
|
|
2727
|
-
role: "
|
|
2302
|
+
role: "Administrator" | "User";
|
|
2728
2303
|
date_created: string;
|
|
2729
2304
|
id?: string | undefined;
|
|
2730
2305
|
secret?: string | undefined;
|
|
@@ -2737,13 +2312,13 @@ export declare const zRegenerateTokenResponse: z.ZodObject<{
|
|
|
2737
2312
|
date_created: z.ZodString;
|
|
2738
2313
|
}, "strip", z.ZodTypeAny, {
|
|
2739
2314
|
name: string;
|
|
2740
|
-
role: "
|
|
2315
|
+
role: "Administrator" | "User";
|
|
2741
2316
|
date_created: string;
|
|
2742
2317
|
id?: string | undefined;
|
|
2743
2318
|
secret?: string | undefined;
|
|
2744
2319
|
}, {
|
|
2745
2320
|
name: string;
|
|
2746
|
-
role: "
|
|
2321
|
+
role: "Administrator" | "User";
|
|
2747
2322
|
date_created: string;
|
|
2748
2323
|
id?: string | undefined;
|
|
2749
2324
|
secret?: string | undefined;
|
|
@@ -2778,24 +2353,24 @@ export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
|
|
|
2778
2353
|
}>, "many">>;
|
|
2779
2354
|
}, "strip", z.ZodTypeAny, {
|
|
2780
2355
|
id: string;
|
|
2781
|
-
role: "
|
|
2356
|
+
role: "Administrator" | "User";
|
|
2782
2357
|
email: string;
|
|
2783
2358
|
status: "active" | "inactive";
|
|
2784
|
-
date_created: string;
|
|
2785
2359
|
first_name: string;
|
|
2786
2360
|
last_name: string;
|
|
2361
|
+
date_created: string;
|
|
2787
2362
|
cluster_permissions?: {
|
|
2788
2363
|
cluster_id: string;
|
|
2789
2364
|
permissions: "readonly" | "readwrite";
|
|
2790
2365
|
}[] | undefined;
|
|
2791
2366
|
}, {
|
|
2792
2367
|
id: string;
|
|
2793
|
-
role: "
|
|
2368
|
+
role: "Administrator" | "User";
|
|
2794
2369
|
email: string;
|
|
2795
2370
|
status: "active" | "inactive";
|
|
2796
|
-
date_created: string;
|
|
2797
2371
|
first_name: string;
|
|
2798
2372
|
last_name: string;
|
|
2373
|
+
date_created: string;
|
|
2799
2374
|
cluster_permissions?: {
|
|
2800
2375
|
cluster_id: string;
|
|
2801
2376
|
permissions: "readonly" | "readwrite";
|
|
@@ -2821,24 +2396,24 @@ export declare const zCreateUserResponse: z.ZodObject<{
|
|
|
2821
2396
|
}>, "many">>;
|
|
2822
2397
|
}, "strip", z.ZodTypeAny, {
|
|
2823
2398
|
id: string;
|
|
2824
|
-
role: "
|
|
2399
|
+
role: "Administrator" | "User";
|
|
2825
2400
|
email: string;
|
|
2826
2401
|
status: "active" | "inactive";
|
|
2827
|
-
date_created: string;
|
|
2828
2402
|
first_name: string;
|
|
2829
2403
|
last_name: string;
|
|
2404
|
+
date_created: string;
|
|
2830
2405
|
cluster_permissions?: {
|
|
2831
2406
|
cluster_id: string;
|
|
2832
2407
|
permissions: "readonly" | "readwrite";
|
|
2833
2408
|
}[] | undefined;
|
|
2834
2409
|
}, {
|
|
2835
2410
|
id: string;
|
|
2836
|
-
role: "
|
|
2411
|
+
role: "Administrator" | "User";
|
|
2837
2412
|
email: string;
|
|
2838
2413
|
status: "active" | "inactive";
|
|
2839
|
-
date_created: string;
|
|
2840
2414
|
first_name: string;
|
|
2841
2415
|
last_name: string;
|
|
2416
|
+
date_created: string;
|
|
2842
2417
|
cluster_permissions?: {
|
|
2843
2418
|
cluster_id: string;
|
|
2844
2419
|
permissions: "readonly" | "readwrite";
|
|
@@ -2864,24 +2439,24 @@ export declare const zDeleteUserResponse: z.ZodObject<{
|
|
|
2864
2439
|
}>, "many">>;
|
|
2865
2440
|
}, "strip", z.ZodTypeAny, {
|
|
2866
2441
|
id: string;
|
|
2867
|
-
role: "
|
|
2442
|
+
role: "Administrator" | "User";
|
|
2868
2443
|
email: string;
|
|
2869
2444
|
status: "active" | "inactive";
|
|
2870
|
-
date_created: string;
|
|
2871
2445
|
first_name: string;
|
|
2872
2446
|
last_name: string;
|
|
2447
|
+
date_created: string;
|
|
2873
2448
|
cluster_permissions?: {
|
|
2874
2449
|
cluster_id: string;
|
|
2875
2450
|
permissions: "readonly" | "readwrite";
|
|
2876
2451
|
}[] | undefined;
|
|
2877
2452
|
}, {
|
|
2878
2453
|
id: string;
|
|
2879
|
-
role: "
|
|
2454
|
+
role: "Administrator" | "User";
|
|
2880
2455
|
email: string;
|
|
2881
2456
|
status: "active" | "inactive";
|
|
2882
|
-
date_created: string;
|
|
2883
2457
|
first_name: string;
|
|
2884
2458
|
last_name: string;
|
|
2459
|
+
date_created: string;
|
|
2885
2460
|
cluster_permissions?: {
|
|
2886
2461
|
cluster_id: string;
|
|
2887
2462
|
permissions: "readonly" | "readwrite";
|
|
@@ -2907,24 +2482,24 @@ export declare const zGetUserResponse: z.ZodObject<{
|
|
|
2907
2482
|
}>, "many">>;
|
|
2908
2483
|
}, "strip", z.ZodTypeAny, {
|
|
2909
2484
|
id: string;
|
|
2910
|
-
role: "
|
|
2485
|
+
role: "Administrator" | "User";
|
|
2911
2486
|
email: string;
|
|
2912
2487
|
status: "active" | "inactive";
|
|
2913
|
-
date_created: string;
|
|
2914
2488
|
first_name: string;
|
|
2915
2489
|
last_name: string;
|
|
2490
|
+
date_created: string;
|
|
2916
2491
|
cluster_permissions?: {
|
|
2917
2492
|
cluster_id: string;
|
|
2918
2493
|
permissions: "readonly" | "readwrite";
|
|
2919
2494
|
}[] | undefined;
|
|
2920
2495
|
}, {
|
|
2921
2496
|
id: string;
|
|
2922
|
-
role: "
|
|
2497
|
+
role: "Administrator" | "User";
|
|
2923
2498
|
email: string;
|
|
2924
2499
|
status: "active" | "inactive";
|
|
2925
|
-
date_created: string;
|
|
2926
2500
|
first_name: string;
|
|
2927
2501
|
last_name: string;
|
|
2502
|
+
date_created: string;
|
|
2928
2503
|
cluster_permissions?: {
|
|
2929
2504
|
cluster_id: string;
|
|
2930
2505
|
permissions: "readonly" | "readwrite";
|
|
@@ -2950,24 +2525,24 @@ export declare const zUpdateUserResponse: z.ZodObject<{
|
|
|
2950
2525
|
}>, "many">>;
|
|
2951
2526
|
}, "strip", z.ZodTypeAny, {
|
|
2952
2527
|
id: string;
|
|
2953
|
-
role: "
|
|
2528
|
+
role: "Administrator" | "User";
|
|
2954
2529
|
email: string;
|
|
2955
2530
|
status: "active" | "inactive";
|
|
2956
|
-
date_created: string;
|
|
2957
2531
|
first_name: string;
|
|
2958
2532
|
last_name: string;
|
|
2533
|
+
date_created: string;
|
|
2959
2534
|
cluster_permissions?: {
|
|
2960
2535
|
cluster_id: string;
|
|
2961
2536
|
permissions: "readonly" | "readwrite";
|
|
2962
2537
|
}[] | undefined;
|
|
2963
2538
|
}, {
|
|
2964
2539
|
id: string;
|
|
2965
|
-
role: "
|
|
2540
|
+
role: "Administrator" | "User";
|
|
2966
2541
|
email: string;
|
|
2967
2542
|
status: "active" | "inactive";
|
|
2968
|
-
date_created: string;
|
|
2969
2543
|
first_name: string;
|
|
2970
2544
|
last_name: string;
|
|
2545
|
+
date_created: string;
|
|
2971
2546
|
cluster_permissions?: {
|
|
2972
2547
|
cluster_id: string;
|
|
2973
2548
|
permissions: "readonly" | "readwrite";
|
|
@@ -2993,24 +2568,24 @@ export declare const zDeleteClusterPermissionsResponse: z.ZodObject<{
|
|
|
2993
2568
|
}>, "many">>;
|
|
2994
2569
|
}, "strip", z.ZodTypeAny, {
|
|
2995
2570
|
id: string;
|
|
2996
|
-
role: "
|
|
2571
|
+
role: "Administrator" | "User";
|
|
2997
2572
|
email: string;
|
|
2998
2573
|
status: "active" | "inactive";
|
|
2999
|
-
date_created: string;
|
|
3000
2574
|
first_name: string;
|
|
3001
2575
|
last_name: string;
|
|
2576
|
+
date_created: string;
|
|
3002
2577
|
cluster_permissions?: {
|
|
3003
2578
|
cluster_id: string;
|
|
3004
2579
|
permissions: "readonly" | "readwrite";
|
|
3005
2580
|
}[] | undefined;
|
|
3006
2581
|
}, {
|
|
3007
2582
|
id: string;
|
|
3008
|
-
role: "
|
|
2583
|
+
role: "Administrator" | "User";
|
|
3009
2584
|
email: string;
|
|
3010
2585
|
status: "active" | "inactive";
|
|
3011
|
-
date_created: string;
|
|
3012
2586
|
first_name: string;
|
|
3013
2587
|
last_name: string;
|
|
2588
|
+
date_created: string;
|
|
3014
2589
|
cluster_permissions?: {
|
|
3015
2590
|
cluster_id: string;
|
|
3016
2591
|
permissions: "readonly" | "readwrite";
|
|
@@ -3036,24 +2611,24 @@ export declare const zSetClusterPermissionsResponse: z.ZodObject<{
|
|
|
3036
2611
|
}>, "many">>;
|
|
3037
2612
|
}, "strip", z.ZodTypeAny, {
|
|
3038
2613
|
id: string;
|
|
3039
|
-
role: "
|
|
2614
|
+
role: "Administrator" | "User";
|
|
3040
2615
|
email: string;
|
|
3041
2616
|
status: "active" | "inactive";
|
|
3042
|
-
date_created: string;
|
|
3043
2617
|
first_name: string;
|
|
3044
2618
|
last_name: string;
|
|
2619
|
+
date_created: string;
|
|
3045
2620
|
cluster_permissions?: {
|
|
3046
2621
|
cluster_id: string;
|
|
3047
2622
|
permissions: "readonly" | "readwrite";
|
|
3048
2623
|
}[] | undefined;
|
|
3049
2624
|
}, {
|
|
3050
2625
|
id: string;
|
|
3051
|
-
role: "
|
|
2626
|
+
role: "Administrator" | "User";
|
|
3052
2627
|
email: string;
|
|
3053
2628
|
status: "active" | "inactive";
|
|
3054
|
-
date_created: string;
|
|
3055
2629
|
first_name: string;
|
|
3056
2630
|
last_name: string;
|
|
2631
|
+
date_created: string;
|
|
3057
2632
|
cluster_permissions?: {
|
|
3058
2633
|
cluster_id: string;
|
|
3059
2634
|
permissions: "readonly" | "readwrite";
|