@cloudfleet/sdk 0.0.1-e2d1408 → 0.0.1-f0c84a6
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 +98 -276
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +99 -277
- package/dist/schemas.gen.js.map +1 -1
- package/dist/sdk.gen.d.ts +30 -14
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/sdk.gen.js +69 -61
- package/dist/sdk.gen.js.map +1 -1
- package/dist/types.gen.d.ts +94 -208
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +222 -683
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +29 -70
- 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,11 +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
741
|
items?: {
|
|
705
|
-
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;
|
|
706
743
|
id?: string | undefined;
|
|
707
744
|
description?: string | undefined;
|
|
708
745
|
amount?: number | 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,11 +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
800
|
items?: {
|
|
764
|
-
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;
|
|
765
802
|
id?: string | undefined;
|
|
766
803
|
description?: string | undefined;
|
|
767
804
|
amount?: number | 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,43 +1021,43 @@ 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
|
-
cluster_id: z.ZodString;
|
|
1203
1030
|
hour: z.ZodOptional<z.ZodString>;
|
|
1031
|
+
cluster_id: z.ZodString;
|
|
1204
1032
|
cluster_tier: z.ZodEnum<[""]>;
|
|
1033
|
+
product: z.ZodEnum<["cfke_infra_compute", "cfke_nodes", "cfke_controlplane"]>;
|
|
1205
1034
|
node_name: z.ZodString;
|
|
1206
1035
|
sku: z.ZodString;
|
|
1207
1036
|
cpu: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1208
1037
|
price: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1209
|
-
|
|
1038
|
+
value: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1210
1039
|
total: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1211
|
-
usage_type: z.ZodEnum<["managed-compute", "control-plane-nodes", "control-plane"]>;
|
|
1212
1040
|
}, "strip", z.ZodTypeAny, {
|
|
1213
1041
|
total: number | "";
|
|
1214
1042
|
cpu: number | "";
|
|
1043
|
+
product: "cfke_infra_compute" | "cfke_nodes" | "cfke_controlplane";
|
|
1044
|
+
value: number | "";
|
|
1215
1045
|
sku: string;
|
|
1216
1046
|
price: number | "";
|
|
1217
1047
|
cluster_id: string;
|
|
1218
1048
|
cluster_tier: "";
|
|
1219
1049
|
node_name: string;
|
|
1220
|
-
volume: number | "";
|
|
1221
|
-
usage_type: "managed-compute" | "control-plane-nodes" | "control-plane";
|
|
1222
1050
|
hour?: string | undefined;
|
|
1223
1051
|
}, {
|
|
1224
1052
|
total: number | "";
|
|
1225
1053
|
cpu: number | "";
|
|
1054
|
+
product: "cfke_infra_compute" | "cfke_nodes" | "cfke_controlplane";
|
|
1055
|
+
value: number | "";
|
|
1226
1056
|
sku: string;
|
|
1227
1057
|
price: number | "";
|
|
1228
1058
|
cluster_id: string;
|
|
1229
1059
|
cluster_tier: "";
|
|
1230
1060
|
node_name: string;
|
|
1231
|
-
volume: number | "";
|
|
1232
|
-
usage_type: "managed-compute" | "control-plane-nodes" | "control-plane";
|
|
1233
1061
|
hour?: string | undefined;
|
|
1234
1062
|
}>;
|
|
1235
1063
|
export declare const zUserCreateInput: z.ZodObject<{
|
|
@@ -1246,7 +1074,7 @@ export declare const zUserCreateInput: z.ZodObject<{
|
|
|
1246
1074
|
first_name: string;
|
|
1247
1075
|
last_name: string;
|
|
1248
1076
|
password: string;
|
|
1249
|
-
role?: "
|
|
1077
|
+
role?: "Administrator" | "User" | undefined;
|
|
1250
1078
|
status?: "active" | "inactive" | undefined;
|
|
1251
1079
|
}, {
|
|
1252
1080
|
code: string;
|
|
@@ -1254,7 +1082,7 @@ export declare const zUserCreateInput: z.ZodObject<{
|
|
|
1254
1082
|
first_name: string;
|
|
1255
1083
|
last_name: string;
|
|
1256
1084
|
password: string;
|
|
1257
|
-
role?: "
|
|
1085
|
+
role?: "Administrator" | "User" | undefined;
|
|
1258
1086
|
status?: "active" | "inactive" | undefined;
|
|
1259
1087
|
}>;
|
|
1260
1088
|
export declare const zUser: z.ZodObject<{
|
|
@@ -1277,24 +1105,24 @@ export declare const zUser: z.ZodObject<{
|
|
|
1277
1105
|
}>, "many">>;
|
|
1278
1106
|
}, "strip", z.ZodTypeAny, {
|
|
1279
1107
|
id: string;
|
|
1280
|
-
role: "
|
|
1108
|
+
role: "Administrator" | "User";
|
|
1281
1109
|
email: string;
|
|
1282
1110
|
status: "active" | "inactive";
|
|
1283
|
-
date_created: string;
|
|
1284
1111
|
first_name: string;
|
|
1285
1112
|
last_name: string;
|
|
1113
|
+
date_created: string;
|
|
1286
1114
|
cluster_permissions?: {
|
|
1287
1115
|
cluster_id: string;
|
|
1288
1116
|
permissions: "readonly" | "readwrite";
|
|
1289
1117
|
}[] | undefined;
|
|
1290
1118
|
}, {
|
|
1291
1119
|
id: string;
|
|
1292
|
-
role: "
|
|
1120
|
+
role: "Administrator" | "User";
|
|
1293
1121
|
email: string;
|
|
1294
1122
|
status: "active" | "inactive";
|
|
1295
|
-
date_created: string;
|
|
1296
1123
|
first_name: string;
|
|
1297
1124
|
last_name: string;
|
|
1125
|
+
date_created: string;
|
|
1298
1126
|
cluster_permissions?: {
|
|
1299
1127
|
cluster_id: string;
|
|
1300
1128
|
permissions: "readonly" | "readwrite";
|
|
@@ -1307,50 +1135,50 @@ export declare const zUserUpdateInput: z.ZodObject<{
|
|
|
1307
1135
|
role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
|
|
1308
1136
|
status: z.ZodOptional<z.ZodEnum<["active", "inactive"]>>;
|
|
1309
1137
|
}, "strip", z.ZodTypeAny, {
|
|
1310
|
-
role?: "
|
|
1138
|
+
role?: "Administrator" | "User" | undefined;
|
|
1311
1139
|
email?: string | undefined;
|
|
1312
1140
|
status?: "active" | "inactive" | undefined;
|
|
1313
1141
|
first_name?: string | undefined;
|
|
1314
1142
|
last_name?: string | undefined;
|
|
1315
1143
|
}, {
|
|
1316
|
-
role?: "
|
|
1144
|
+
role?: "Administrator" | "User" | undefined;
|
|
1317
1145
|
email?: string | undefined;
|
|
1318
1146
|
status?: "active" | "inactive" | undefined;
|
|
1319
1147
|
first_name?: string | undefined;
|
|
1320
1148
|
last_name?: string | undefined;
|
|
1321
1149
|
}>;
|
|
1322
1150
|
export declare const zGetUsageResponse: z.ZodArray<z.ZodObject<{
|
|
1323
|
-
cluster_id: z.ZodString;
|
|
1324
1151
|
hour: z.ZodOptional<z.ZodString>;
|
|
1152
|
+
cluster_id: z.ZodString;
|
|
1325
1153
|
cluster_tier: z.ZodEnum<[""]>;
|
|
1154
|
+
product: z.ZodEnum<["cfke_infra_compute", "cfke_nodes", "cfke_controlplane"]>;
|
|
1326
1155
|
node_name: z.ZodString;
|
|
1327
1156
|
sku: z.ZodString;
|
|
1328
1157
|
cpu: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1329
1158
|
price: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1330
|
-
|
|
1159
|
+
value: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1331
1160
|
total: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1332
|
-
usage_type: z.ZodEnum<["managed-compute", "control-plane-nodes", "control-plane"]>;
|
|
1333
1161
|
}, "strip", z.ZodTypeAny, {
|
|
1334
1162
|
total: number | "";
|
|
1335
1163
|
cpu: number | "";
|
|
1164
|
+
product: "cfke_infra_compute" | "cfke_nodes" | "cfke_controlplane";
|
|
1165
|
+
value: number | "";
|
|
1336
1166
|
sku: string;
|
|
1337
1167
|
price: number | "";
|
|
1338
1168
|
cluster_id: string;
|
|
1339
1169
|
cluster_tier: "";
|
|
1340
1170
|
node_name: string;
|
|
1341
|
-
volume: number | "";
|
|
1342
|
-
usage_type: "managed-compute" | "control-plane-nodes" | "control-plane";
|
|
1343
1171
|
hour?: string | undefined;
|
|
1344
1172
|
}, {
|
|
1345
1173
|
total: number | "";
|
|
1346
1174
|
cpu: number | "";
|
|
1175
|
+
product: "cfke_infra_compute" | "cfke_nodes" | "cfke_controlplane";
|
|
1176
|
+
value: number | "";
|
|
1347
1177
|
sku: string;
|
|
1348
1178
|
price: number | "";
|
|
1349
1179
|
cluster_id: string;
|
|
1350
1180
|
cluster_tier: "";
|
|
1351
1181
|
node_name: string;
|
|
1352
|
-
volume: number | "";
|
|
1353
|
-
usage_type: "managed-compute" | "control-plane-nodes" | "control-plane";
|
|
1354
1182
|
hour?: string | undefined;
|
|
1355
1183
|
}>, "many">;
|
|
1356
1184
|
export declare const zGetBalanceResponse: z.ZodNumber;
|
|
@@ -1369,7 +1197,7 @@ export declare const zGetPaymentMethodResponse: z.ZodObject<{
|
|
|
1369
1197
|
last4: string;
|
|
1370
1198
|
exp_month: number;
|
|
1371
1199
|
exp_year: number;
|
|
1372
|
-
brand: "unknown" | "
|
|
1200
|
+
brand: "unknown" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay" | "visa";
|
|
1373
1201
|
}, {
|
|
1374
1202
|
type: "card";
|
|
1375
1203
|
id: string;
|
|
@@ -1377,7 +1205,7 @@ export declare const zGetPaymentMethodResponse: z.ZodObject<{
|
|
|
1377
1205
|
last4: string;
|
|
1378
1206
|
exp_month: number;
|
|
1379
1207
|
exp_year: number;
|
|
1380
|
-
brand: "unknown" | "
|
|
1208
|
+
brand: "unknown" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay" | "visa";
|
|
1381
1209
|
}>;
|
|
1382
1210
|
export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
|
|
1383
1211
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -1422,7 +1250,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1422
1250
|
catalogEffectiveDate: z.ZodOptional<z.ZodString>;
|
|
1423
1251
|
childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
1424
1252
|
}, "strip", z.ZodTypeAny, {
|
|
1425
|
-
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;
|
|
1426
1254
|
id?: string | undefined;
|
|
1427
1255
|
description?: string | undefined;
|
|
1428
1256
|
amount?: number | undefined;
|
|
@@ -1444,7 +1272,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1444
1272
|
catalogEffectiveDate?: string | undefined;
|
|
1445
1273
|
childItems?: unknown[] | undefined;
|
|
1446
1274
|
}, {
|
|
1447
|
-
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;
|
|
1448
1276
|
id?: string | undefined;
|
|
1449
1277
|
description?: string | undefined;
|
|
1450
1278
|
amount?: number | undefined;
|
|
@@ -1489,7 +1317,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1489
1317
|
catalogEffectiveDate: z.ZodOptional<z.ZodString>;
|
|
1490
1318
|
childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
1491
1319
|
}, "strip", z.ZodTypeAny, {
|
|
1492
|
-
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;
|
|
1493
1321
|
id?: string | undefined;
|
|
1494
1322
|
description?: string | undefined;
|
|
1495
1323
|
amount?: number | undefined;
|
|
@@ -1511,7 +1339,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1511
1339
|
catalogEffectiveDate?: string | undefined;
|
|
1512
1340
|
childItems?: unknown[] | undefined;
|
|
1513
1341
|
}, {
|
|
1514
|
-
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;
|
|
1515
1343
|
id?: string | undefined;
|
|
1516
1344
|
description?: string | undefined;
|
|
1517
1345
|
amount?: number | undefined;
|
|
@@ -1534,11 +1362,11 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1534
1362
|
childItems?: unknown[] | undefined;
|
|
1535
1363
|
}>, "many">>;
|
|
1536
1364
|
}, "strip", z.ZodTypeAny, {
|
|
1537
|
-
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;
|
|
1538
1366
|
id?: string | undefined;
|
|
1539
1367
|
status?: "DRAFT" | "COMMITTED" | "VOID" | undefined;
|
|
1540
1368
|
items?: {
|
|
1541
|
-
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;
|
|
1542
1370
|
id?: string | undefined;
|
|
1543
1371
|
description?: string | undefined;
|
|
1544
1372
|
amount?: number | undefined;
|
|
@@ -1570,7 +1398,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1570
1398
|
balance?: number | undefined;
|
|
1571
1399
|
bundleKeys?: string | undefined;
|
|
1572
1400
|
credits?: {
|
|
1573
|
-
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;
|
|
1574
1402
|
id?: string | undefined;
|
|
1575
1403
|
description?: string | undefined;
|
|
1576
1404
|
amount?: number | undefined;
|
|
@@ -1593,11 +1421,11 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1593
1421
|
childItems?: unknown[] | undefined;
|
|
1594
1422
|
}[] | undefined;
|
|
1595
1423
|
}, {
|
|
1596
|
-
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;
|
|
1597
1425
|
id?: string | undefined;
|
|
1598
1426
|
status?: "DRAFT" | "COMMITTED" | "VOID" | undefined;
|
|
1599
1427
|
items?: {
|
|
1600
|
-
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;
|
|
1601
1429
|
id?: string | undefined;
|
|
1602
1430
|
description?: string | undefined;
|
|
1603
1431
|
amount?: number | undefined;
|
|
@@ -1629,7 +1457,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1629
1457
|
balance?: number | undefined;
|
|
1630
1458
|
bundleKeys?: string | undefined;
|
|
1631
1459
|
credits?: {
|
|
1632
|
-
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;
|
|
1633
1461
|
id?: string | undefined;
|
|
1634
1462
|
description?: string | undefined;
|
|
1635
1463
|
amount?: number | undefined;
|
|
@@ -1659,6 +1487,80 @@ export declare const zGetInvoiceResponse: z.ZodObject<{
|
|
|
1659
1487
|
}, {
|
|
1660
1488
|
html?: string | undefined;
|
|
1661
1489
|
}>;
|
|
1490
|
+
export declare const zGetContactResponse: z.ZodObject<{
|
|
1491
|
+
company: z.ZodOptional<z.ZodString>;
|
|
1492
|
+
address1: z.ZodOptional<z.ZodString>;
|
|
1493
|
+
address2: z.ZodOptional<z.ZodString>;
|
|
1494
|
+
postalCode: z.ZodOptional<z.ZodString>;
|
|
1495
|
+
city: z.ZodOptional<z.ZodString>;
|
|
1496
|
+
state: z.ZodOptional<z.ZodString>;
|
|
1497
|
+
country: z.ZodOptional<z.ZodString>;
|
|
1498
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
1499
|
+
email: z.ZodString;
|
|
1500
|
+
first_name: z.ZodString;
|
|
1501
|
+
last_name: z.ZodString;
|
|
1502
|
+
}, "strip", z.ZodTypeAny, {
|
|
1503
|
+
email: string;
|
|
1504
|
+
first_name: string;
|
|
1505
|
+
last_name: string;
|
|
1506
|
+
state?: string | undefined;
|
|
1507
|
+
country?: string | undefined;
|
|
1508
|
+
company?: string | undefined;
|
|
1509
|
+
address1?: string | undefined;
|
|
1510
|
+
address2?: string | undefined;
|
|
1511
|
+
postalCode?: string | undefined;
|
|
1512
|
+
city?: string | undefined;
|
|
1513
|
+
phone?: string | undefined;
|
|
1514
|
+
}, {
|
|
1515
|
+
email: string;
|
|
1516
|
+
first_name: string;
|
|
1517
|
+
last_name: string;
|
|
1518
|
+
state?: string | undefined;
|
|
1519
|
+
country?: string | undefined;
|
|
1520
|
+
company?: string | undefined;
|
|
1521
|
+
address1?: string | undefined;
|
|
1522
|
+
address2?: string | undefined;
|
|
1523
|
+
postalCode?: string | undefined;
|
|
1524
|
+
city?: string | undefined;
|
|
1525
|
+
phone?: string | undefined;
|
|
1526
|
+
}>;
|
|
1527
|
+
export declare const zUpdateContactResponse: z.ZodObject<{
|
|
1528
|
+
company: z.ZodOptional<z.ZodString>;
|
|
1529
|
+
address1: z.ZodOptional<z.ZodString>;
|
|
1530
|
+
address2: z.ZodOptional<z.ZodString>;
|
|
1531
|
+
postalCode: z.ZodOptional<z.ZodString>;
|
|
1532
|
+
city: z.ZodOptional<z.ZodString>;
|
|
1533
|
+
state: z.ZodOptional<z.ZodString>;
|
|
1534
|
+
country: z.ZodOptional<z.ZodString>;
|
|
1535
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
1536
|
+
email: z.ZodString;
|
|
1537
|
+
first_name: z.ZodString;
|
|
1538
|
+
last_name: z.ZodString;
|
|
1539
|
+
}, "strip", z.ZodTypeAny, {
|
|
1540
|
+
email: string;
|
|
1541
|
+
first_name: string;
|
|
1542
|
+
last_name: string;
|
|
1543
|
+
state?: string | undefined;
|
|
1544
|
+
country?: string | undefined;
|
|
1545
|
+
company?: string | undefined;
|
|
1546
|
+
address1?: string | undefined;
|
|
1547
|
+
address2?: string | undefined;
|
|
1548
|
+
postalCode?: string | undefined;
|
|
1549
|
+
city?: string | undefined;
|
|
1550
|
+
phone?: string | undefined;
|
|
1551
|
+
}, {
|
|
1552
|
+
email: string;
|
|
1553
|
+
first_name: string;
|
|
1554
|
+
last_name: string;
|
|
1555
|
+
state?: string | undefined;
|
|
1556
|
+
country?: string | undefined;
|
|
1557
|
+
company?: string | undefined;
|
|
1558
|
+
address1?: string | undefined;
|
|
1559
|
+
address2?: string | undefined;
|
|
1560
|
+
postalCode?: string | undefined;
|
|
1561
|
+
city?: string | undefined;
|
|
1562
|
+
phone?: string | undefined;
|
|
1563
|
+
}>;
|
|
1662
1564
|
export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
1663
1565
|
limits: z.ZodOptional<z.ZodObject<{
|
|
1664
1566
|
cpu: z.ZodNumber;
|
|
@@ -1865,18 +1767,19 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
|
1865
1767
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1866
1768
|
tier: "basic" | "pro";
|
|
1867
1769
|
version_channel: string;
|
|
1770
|
+
ready?: boolean | undefined;
|
|
1868
1771
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1869
1772
|
endpoint?: string | undefined;
|
|
1870
1773
|
certificate_ca?: string | undefined;
|
|
1871
1774
|
version_current?: string | undefined;
|
|
1872
1775
|
created_at?: string | undefined;
|
|
1873
1776
|
updated_at?: string | undefined;
|
|
1874
|
-
ready?: boolean | undefined;
|
|
1875
1777
|
}, {
|
|
1876
1778
|
name: string;
|
|
1877
1779
|
id: string;
|
|
1878
1780
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1879
1781
|
tier: "basic" | "pro";
|
|
1782
|
+
ready?: boolean | undefined;
|
|
1880
1783
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1881
1784
|
endpoint?: string | undefined;
|
|
1882
1785
|
version_channel?: string | undefined;
|
|
@@ -1884,7 +1787,6 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
|
1884
1787
|
version_current?: string | undefined;
|
|
1885
1788
|
created_at?: string | undefined;
|
|
1886
1789
|
updated_at?: string | undefined;
|
|
1887
|
-
ready?: boolean | undefined;
|
|
1888
1790
|
}>, "many">;
|
|
1889
1791
|
export declare const zCreateClusterResponse: z.ZodString;
|
|
1890
1792
|
export declare const zDeleteClusterResponse: z.ZodString;
|
|
@@ -1907,18 +1809,19 @@ export declare const zGetClusterResponse: z.ZodObject<{
|
|
|
1907
1809
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1908
1810
|
tier: "basic" | "pro";
|
|
1909
1811
|
version_channel: string;
|
|
1812
|
+
ready?: boolean | undefined;
|
|
1910
1813
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1911
1814
|
endpoint?: string | undefined;
|
|
1912
1815
|
certificate_ca?: string | undefined;
|
|
1913
1816
|
version_current?: string | undefined;
|
|
1914
1817
|
created_at?: string | undefined;
|
|
1915
1818
|
updated_at?: string | undefined;
|
|
1916
|
-
ready?: boolean | undefined;
|
|
1917
1819
|
}, {
|
|
1918
1820
|
name: string;
|
|
1919
1821
|
id: string;
|
|
1920
1822
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1921
1823
|
tier: "basic" | "pro";
|
|
1824
|
+
ready?: boolean | undefined;
|
|
1922
1825
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1923
1826
|
endpoint?: string | undefined;
|
|
1924
1827
|
version_channel?: string | undefined;
|
|
@@ -1926,7 +1829,6 @@ export declare const zGetClusterResponse: z.ZodObject<{
|
|
|
1926
1829
|
version_current?: string | undefined;
|
|
1927
1830
|
created_at?: string | undefined;
|
|
1928
1831
|
updated_at?: string | undefined;
|
|
1929
|
-
ready?: boolean | undefined;
|
|
1930
1832
|
}>;
|
|
1931
1833
|
export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
1932
1834
|
name: z.ZodString;
|
|
@@ -1947,18 +1849,19 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
|
1947
1849
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1948
1850
|
tier: "basic" | "pro";
|
|
1949
1851
|
version_channel: string;
|
|
1852
|
+
ready?: boolean | undefined;
|
|
1950
1853
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1951
1854
|
endpoint?: string | undefined;
|
|
1952
1855
|
certificate_ca?: string | undefined;
|
|
1953
1856
|
version_current?: string | undefined;
|
|
1954
1857
|
created_at?: string | undefined;
|
|
1955
1858
|
updated_at?: string | undefined;
|
|
1956
|
-
ready?: boolean | undefined;
|
|
1957
1859
|
}, {
|
|
1958
1860
|
name: string;
|
|
1959
1861
|
id: string;
|
|
1960
1862
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1961
1863
|
tier: "basic" | "pro";
|
|
1864
|
+
ready?: boolean | undefined;
|
|
1962
1865
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1963
1866
|
endpoint?: string | undefined;
|
|
1964
1867
|
version_channel?: string | undefined;
|
|
@@ -1966,7 +1869,6 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
|
1966
1869
|
version_current?: string | undefined;
|
|
1967
1870
|
created_at?: string | undefined;
|
|
1968
1871
|
updated_at?: string | undefined;
|
|
1969
|
-
ready?: boolean | undefined;
|
|
1970
1872
|
}>;
|
|
1971
1873
|
export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
1972
1874
|
name: z.ZodString;
|
|
@@ -1987,18 +1889,19 @@ export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
|
1987
1889
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1988
1890
|
tier: "basic" | "pro";
|
|
1989
1891
|
version_channel: string;
|
|
1892
|
+
ready?: boolean | undefined;
|
|
1990
1893
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1991
1894
|
endpoint?: string | undefined;
|
|
1992
1895
|
certificate_ca?: string | undefined;
|
|
1993
1896
|
version_current?: string | undefined;
|
|
1994
1897
|
created_at?: string | undefined;
|
|
1995
1898
|
updated_at?: string | undefined;
|
|
1996
|
-
ready?: boolean | undefined;
|
|
1997
1899
|
}, {
|
|
1998
1900
|
name: string;
|
|
1999
1901
|
id: string;
|
|
2000
1902
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
2001
1903
|
tier: "basic" | "pro";
|
|
1904
|
+
ready?: boolean | undefined;
|
|
2002
1905
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
2003
1906
|
endpoint?: string | undefined;
|
|
2004
1907
|
version_channel?: string | undefined;
|
|
@@ -2006,7 +1909,6 @@ export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
|
2006
1909
|
version_current?: string | undefined;
|
|
2007
1910
|
created_at?: string | undefined;
|
|
2008
1911
|
updated_at?: string | undefined;
|
|
2009
|
-
ready?: boolean | undefined;
|
|
2010
1912
|
}>;
|
|
2011
1913
|
export declare const zGetInfrastructureResponse: z.ZodArray<z.ZodObject<{
|
|
2012
1914
|
sku: z.ZodString;
|
|
@@ -2237,344 +2139,8 @@ export declare const zGetInviteResponse: z.ZodObject<{
|
|
|
2237
2139
|
organization_id?: string | undefined;
|
|
2238
2140
|
}>;
|
|
2239
2141
|
export declare const zGetOrganizationResponse: z.ZodObject<{
|
|
2240
|
-
name: z.ZodString;
|
|
2241
|
-
contactInfo: z.ZodObject<{
|
|
2242
|
-
address1: z.ZodOptional<z.ZodString>;
|
|
2243
|
-
address2: z.ZodOptional<z.ZodString>;
|
|
2244
|
-
postalCode: z.ZodOptional<z.ZodString>;
|
|
2245
|
-
city: z.ZodOptional<z.ZodString>;
|
|
2246
|
-
state: z.ZodOptional<z.ZodString>;
|
|
2247
|
-
country: z.ZodOptional<z.ZodString>;
|
|
2248
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
2249
|
-
email: z.ZodString;
|
|
2250
|
-
first_name: z.ZodString;
|
|
2251
|
-
last_name: z.ZodString;
|
|
2252
|
-
}, "strip", z.ZodTypeAny, {
|
|
2253
|
-
email: string;
|
|
2254
|
-
first_name: string;
|
|
2255
|
-
last_name: string;
|
|
2256
|
-
state?: string | undefined;
|
|
2257
|
-
country?: string | undefined;
|
|
2258
|
-
address1?: string | undefined;
|
|
2259
|
-
address2?: string | undefined;
|
|
2260
|
-
postalCode?: string | undefined;
|
|
2261
|
-
city?: string | undefined;
|
|
2262
|
-
phone?: string | undefined;
|
|
2263
|
-
}, {
|
|
2264
|
-
email: string;
|
|
2265
|
-
first_name: string;
|
|
2266
|
-
last_name: string;
|
|
2267
|
-
state?: string | undefined;
|
|
2268
|
-
country?: string | undefined;
|
|
2269
|
-
address1?: string | undefined;
|
|
2270
|
-
address2?: string | undefined;
|
|
2271
|
-
postalCode?: string | undefined;
|
|
2272
|
-
city?: string | undefined;
|
|
2273
|
-
phone?: string | undefined;
|
|
2274
|
-
}>;
|
|
2275
|
-
id: z.ZodString;
|
|
2276
|
-
date_created: z.ZodString;
|
|
2277
|
-
quota: z.ZodObject<{
|
|
2278
|
-
basic_clusters_max: z.ZodNumber;
|
|
2279
|
-
basic_clusters_available: z.ZodNumber;
|
|
2280
|
-
pro_clusters_max: z.ZodNumber;
|
|
2281
|
-
pro_clusters_available: z.ZodNumber;
|
|
2282
|
-
fleets_max: z.ZodNumber;
|
|
2283
|
-
managed_fleets_cpu_max: z.ZodNumber;
|
|
2284
|
-
cluster_tiers: z.ZodArray<z.ZodString, "many">;
|
|
2285
|
-
regions: z.ZodArray<z.ZodString, "many">;
|
|
2286
|
-
versions: z.ZodArray<z.ZodObject<{
|
|
2287
|
-
id: z.ZodString;
|
|
2288
|
-
label: z.ZodString;
|
|
2289
|
-
}, "strip", z.ZodTypeAny, {
|
|
2290
|
-
id: string;
|
|
2291
|
-
label: string;
|
|
2292
|
-
}, {
|
|
2293
|
-
id: string;
|
|
2294
|
-
label: string;
|
|
2295
|
-
}>, "many">;
|
|
2296
|
-
}, "strip", z.ZodTypeAny, {
|
|
2297
|
-
versions: {
|
|
2298
|
-
id: string;
|
|
2299
|
-
label: string;
|
|
2300
|
-
}[];
|
|
2301
|
-
basic_clusters_max: number;
|
|
2302
|
-
basic_clusters_available: number;
|
|
2303
|
-
pro_clusters_max: number;
|
|
2304
|
-
pro_clusters_available: number;
|
|
2305
|
-
fleets_max: number;
|
|
2306
|
-
managed_fleets_cpu_max: number;
|
|
2307
|
-
cluster_tiers: string[];
|
|
2308
|
-
regions: string[];
|
|
2309
|
-
}, {
|
|
2310
|
-
versions: {
|
|
2311
|
-
id: string;
|
|
2312
|
-
label: string;
|
|
2313
|
-
}[];
|
|
2314
|
-
basic_clusters_max: number;
|
|
2315
|
-
basic_clusters_available: number;
|
|
2316
|
-
pro_clusters_max: number;
|
|
2317
|
-
pro_clusters_available: number;
|
|
2318
|
-
fleets_max: number;
|
|
2319
|
-
managed_fleets_cpu_max: number;
|
|
2320
|
-
cluster_tiers: string[];
|
|
2321
|
-
regions: string[];
|
|
2322
|
-
}>;
|
|
2323
|
-
pending_actions: z.ZodArray<z.ZodEnum<["signup-billing-address", "signup-payment-method", "signup-invite-team", "signup-create-cluster"]>, "many">;
|
|
2324
|
-
status: z.ZodEnum<["active", "closed", "suspended"]>;
|
|
2325
|
-
}, "strip", z.ZodTypeAny, {
|
|
2326
|
-
name: string;
|
|
2327
|
-
id: string;
|
|
2328
|
-
status: "active" | "closed" | "suspended";
|
|
2329
|
-
date_created: string;
|
|
2330
|
-
contactInfo: {
|
|
2331
|
-
email: string;
|
|
2332
|
-
first_name: string;
|
|
2333
|
-
last_name: string;
|
|
2334
|
-
state?: string | undefined;
|
|
2335
|
-
country?: string | undefined;
|
|
2336
|
-
address1?: string | undefined;
|
|
2337
|
-
address2?: string | undefined;
|
|
2338
|
-
postalCode?: string | undefined;
|
|
2339
|
-
city?: string | undefined;
|
|
2340
|
-
phone?: string | undefined;
|
|
2341
|
-
};
|
|
2342
|
-
quota: {
|
|
2343
|
-
versions: {
|
|
2344
|
-
id: string;
|
|
2345
|
-
label: string;
|
|
2346
|
-
}[];
|
|
2347
|
-
basic_clusters_max: number;
|
|
2348
|
-
basic_clusters_available: number;
|
|
2349
|
-
pro_clusters_max: number;
|
|
2350
|
-
pro_clusters_available: number;
|
|
2351
|
-
fleets_max: number;
|
|
2352
|
-
managed_fleets_cpu_max: number;
|
|
2353
|
-
cluster_tiers: string[];
|
|
2354
|
-
regions: string[];
|
|
2355
|
-
};
|
|
2356
|
-
pending_actions: ("signup-payment-method" | "signup-billing-address" | "signup-invite-team" | "signup-create-cluster")[];
|
|
2357
|
-
}, {
|
|
2358
|
-
name: string;
|
|
2359
|
-
id: string;
|
|
2360
|
-
status: "active" | "closed" | "suspended";
|
|
2361
|
-
date_created: string;
|
|
2362
|
-
contactInfo: {
|
|
2363
|
-
email: string;
|
|
2364
|
-
first_name: string;
|
|
2365
|
-
last_name: string;
|
|
2366
|
-
state?: string | undefined;
|
|
2367
|
-
country?: string | undefined;
|
|
2368
|
-
address1?: string | undefined;
|
|
2369
|
-
address2?: string | undefined;
|
|
2370
|
-
postalCode?: string | undefined;
|
|
2371
|
-
city?: string | undefined;
|
|
2372
|
-
phone?: string | undefined;
|
|
2373
|
-
};
|
|
2374
|
-
quota: {
|
|
2375
|
-
versions: {
|
|
2376
|
-
id: string;
|
|
2377
|
-
label: string;
|
|
2378
|
-
}[];
|
|
2379
|
-
basic_clusters_max: number;
|
|
2380
|
-
basic_clusters_available: number;
|
|
2381
|
-
pro_clusters_max: number;
|
|
2382
|
-
pro_clusters_available: number;
|
|
2383
|
-
fleets_max: number;
|
|
2384
|
-
managed_fleets_cpu_max: number;
|
|
2385
|
-
cluster_tiers: string[];
|
|
2386
|
-
regions: string[];
|
|
2387
|
-
};
|
|
2388
|
-
pending_actions: ("signup-payment-method" | "signup-billing-address" | "signup-invite-team" | "signup-create-cluster")[];
|
|
2389
|
-
}>;
|
|
2390
|
-
export declare const zCreateOrganizationResponse: z.ZodObject<{
|
|
2391
|
-
name: z.ZodString;
|
|
2392
|
-
contactInfo: z.ZodObject<{
|
|
2393
|
-
address1: z.ZodOptional<z.ZodString>;
|
|
2394
|
-
address2: z.ZodOptional<z.ZodString>;
|
|
2395
|
-
postalCode: z.ZodOptional<z.ZodString>;
|
|
2396
|
-
city: z.ZodOptional<z.ZodString>;
|
|
2397
|
-
state: z.ZodOptional<z.ZodString>;
|
|
2398
|
-
country: z.ZodOptional<z.ZodString>;
|
|
2399
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
2400
|
-
email: z.ZodString;
|
|
2401
|
-
first_name: z.ZodString;
|
|
2402
|
-
last_name: z.ZodString;
|
|
2403
|
-
}, "strip", z.ZodTypeAny, {
|
|
2404
|
-
email: string;
|
|
2405
|
-
first_name: string;
|
|
2406
|
-
last_name: string;
|
|
2407
|
-
state?: string | undefined;
|
|
2408
|
-
country?: string | undefined;
|
|
2409
|
-
address1?: string | undefined;
|
|
2410
|
-
address2?: string | undefined;
|
|
2411
|
-
postalCode?: string | undefined;
|
|
2412
|
-
city?: string | undefined;
|
|
2413
|
-
phone?: string | undefined;
|
|
2414
|
-
}, {
|
|
2415
|
-
email: string;
|
|
2416
|
-
first_name: string;
|
|
2417
|
-
last_name: string;
|
|
2418
|
-
state?: string | undefined;
|
|
2419
|
-
country?: string | undefined;
|
|
2420
|
-
address1?: string | undefined;
|
|
2421
|
-
address2?: string | undefined;
|
|
2422
|
-
postalCode?: string | undefined;
|
|
2423
|
-
city?: string | undefined;
|
|
2424
|
-
phone?: string | undefined;
|
|
2425
|
-
}>;
|
|
2426
|
-
id: z.ZodString;
|
|
2427
|
-
date_created: z.ZodString;
|
|
2428
|
-
quota: z.ZodObject<{
|
|
2429
|
-
basic_clusters_max: z.ZodNumber;
|
|
2430
|
-
basic_clusters_available: z.ZodNumber;
|
|
2431
|
-
pro_clusters_max: z.ZodNumber;
|
|
2432
|
-
pro_clusters_available: z.ZodNumber;
|
|
2433
|
-
fleets_max: z.ZodNumber;
|
|
2434
|
-
managed_fleets_cpu_max: z.ZodNumber;
|
|
2435
|
-
cluster_tiers: z.ZodArray<z.ZodString, "many">;
|
|
2436
|
-
regions: z.ZodArray<z.ZodString, "many">;
|
|
2437
|
-
versions: z.ZodArray<z.ZodObject<{
|
|
2438
|
-
id: z.ZodString;
|
|
2439
|
-
label: z.ZodString;
|
|
2440
|
-
}, "strip", z.ZodTypeAny, {
|
|
2441
|
-
id: string;
|
|
2442
|
-
label: string;
|
|
2443
|
-
}, {
|
|
2444
|
-
id: string;
|
|
2445
|
-
label: string;
|
|
2446
|
-
}>, "many">;
|
|
2447
|
-
}, "strip", z.ZodTypeAny, {
|
|
2448
|
-
versions: {
|
|
2449
|
-
id: string;
|
|
2450
|
-
label: string;
|
|
2451
|
-
}[];
|
|
2452
|
-
basic_clusters_max: number;
|
|
2453
|
-
basic_clusters_available: number;
|
|
2454
|
-
pro_clusters_max: number;
|
|
2455
|
-
pro_clusters_available: number;
|
|
2456
|
-
fleets_max: number;
|
|
2457
|
-
managed_fleets_cpu_max: number;
|
|
2458
|
-
cluster_tiers: string[];
|
|
2459
|
-
regions: string[];
|
|
2460
|
-
}, {
|
|
2461
|
-
versions: {
|
|
2462
|
-
id: string;
|
|
2463
|
-
label: string;
|
|
2464
|
-
}[];
|
|
2465
|
-
basic_clusters_max: number;
|
|
2466
|
-
basic_clusters_available: number;
|
|
2467
|
-
pro_clusters_max: number;
|
|
2468
|
-
pro_clusters_available: number;
|
|
2469
|
-
fleets_max: number;
|
|
2470
|
-
managed_fleets_cpu_max: number;
|
|
2471
|
-
cluster_tiers: string[];
|
|
2472
|
-
regions: string[];
|
|
2473
|
-
}>;
|
|
2474
|
-
pending_actions: z.ZodArray<z.ZodEnum<["signup-billing-address", "signup-payment-method", "signup-invite-team", "signup-create-cluster"]>, "many">;
|
|
2475
|
-
status: z.ZodEnum<["active", "closed", "suspended"]>;
|
|
2476
|
-
}, "strip", z.ZodTypeAny, {
|
|
2477
|
-
name: string;
|
|
2478
|
-
id: string;
|
|
2479
|
-
status: "active" | "closed" | "suspended";
|
|
2480
|
-
date_created: string;
|
|
2481
|
-
contactInfo: {
|
|
2482
|
-
email: string;
|
|
2483
|
-
first_name: string;
|
|
2484
|
-
last_name: string;
|
|
2485
|
-
state?: string | undefined;
|
|
2486
|
-
country?: string | undefined;
|
|
2487
|
-
address1?: string | undefined;
|
|
2488
|
-
address2?: string | undefined;
|
|
2489
|
-
postalCode?: string | undefined;
|
|
2490
|
-
city?: string | undefined;
|
|
2491
|
-
phone?: string | undefined;
|
|
2492
|
-
};
|
|
2493
|
-
quota: {
|
|
2494
|
-
versions: {
|
|
2495
|
-
id: string;
|
|
2496
|
-
label: string;
|
|
2497
|
-
}[];
|
|
2498
|
-
basic_clusters_max: number;
|
|
2499
|
-
basic_clusters_available: number;
|
|
2500
|
-
pro_clusters_max: number;
|
|
2501
|
-
pro_clusters_available: number;
|
|
2502
|
-
fleets_max: number;
|
|
2503
|
-
managed_fleets_cpu_max: number;
|
|
2504
|
-
cluster_tiers: string[];
|
|
2505
|
-
regions: string[];
|
|
2506
|
-
};
|
|
2507
|
-
pending_actions: ("signup-payment-method" | "signup-billing-address" | "signup-invite-team" | "signup-create-cluster")[];
|
|
2508
|
-
}, {
|
|
2509
|
-
name: string;
|
|
2510
|
-
id: string;
|
|
2511
|
-
status: "active" | "closed" | "suspended";
|
|
2512
|
-
date_created: string;
|
|
2513
|
-
contactInfo: {
|
|
2514
|
-
email: string;
|
|
2515
|
-
first_name: string;
|
|
2516
|
-
last_name: string;
|
|
2517
|
-
state?: string | undefined;
|
|
2518
|
-
country?: string | undefined;
|
|
2519
|
-
address1?: string | undefined;
|
|
2520
|
-
address2?: string | undefined;
|
|
2521
|
-
postalCode?: string | undefined;
|
|
2522
|
-
city?: string | undefined;
|
|
2523
|
-
phone?: string | undefined;
|
|
2524
|
-
};
|
|
2525
|
-
quota: {
|
|
2526
|
-
versions: {
|
|
2527
|
-
id: string;
|
|
2528
|
-
label: string;
|
|
2529
|
-
}[];
|
|
2530
|
-
basic_clusters_max: number;
|
|
2531
|
-
basic_clusters_available: number;
|
|
2532
|
-
pro_clusters_max: number;
|
|
2533
|
-
pro_clusters_available: number;
|
|
2534
|
-
fleets_max: number;
|
|
2535
|
-
managed_fleets_cpu_max: number;
|
|
2536
|
-
cluster_tiers: string[];
|
|
2537
|
-
regions: string[];
|
|
2538
|
-
};
|
|
2539
|
-
pending_actions: ("signup-payment-method" | "signup-billing-address" | "signup-invite-team" | "signup-create-cluster")[];
|
|
2540
|
-
}>;
|
|
2541
|
-
export declare const zUpdateOrganizationResponse: z.ZodObject<{
|
|
2542
|
-
name: z.ZodString;
|
|
2543
|
-
contactInfo: z.ZodObject<{
|
|
2544
|
-
address1: z.ZodOptional<z.ZodString>;
|
|
2545
|
-
address2: z.ZodOptional<z.ZodString>;
|
|
2546
|
-
postalCode: z.ZodOptional<z.ZodString>;
|
|
2547
|
-
city: z.ZodOptional<z.ZodString>;
|
|
2548
|
-
state: z.ZodOptional<z.ZodString>;
|
|
2549
|
-
country: z.ZodOptional<z.ZodString>;
|
|
2550
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
2551
|
-
email: z.ZodString;
|
|
2552
|
-
first_name: z.ZodString;
|
|
2553
|
-
last_name: z.ZodString;
|
|
2554
|
-
}, "strip", z.ZodTypeAny, {
|
|
2555
|
-
email: string;
|
|
2556
|
-
first_name: string;
|
|
2557
|
-
last_name: string;
|
|
2558
|
-
state?: string | undefined;
|
|
2559
|
-
country?: string | undefined;
|
|
2560
|
-
address1?: string | undefined;
|
|
2561
|
-
address2?: string | undefined;
|
|
2562
|
-
postalCode?: string | undefined;
|
|
2563
|
-
city?: string | undefined;
|
|
2564
|
-
phone?: string | undefined;
|
|
2565
|
-
}, {
|
|
2566
|
-
email: string;
|
|
2567
|
-
first_name: string;
|
|
2568
|
-
last_name: string;
|
|
2569
|
-
state?: string | undefined;
|
|
2570
|
-
country?: string | undefined;
|
|
2571
|
-
address1?: string | undefined;
|
|
2572
|
-
address2?: string | undefined;
|
|
2573
|
-
postalCode?: string | undefined;
|
|
2574
|
-
city?: string | undefined;
|
|
2575
|
-
phone?: string | undefined;
|
|
2576
|
-
}>;
|
|
2577
2142
|
id: z.ZodString;
|
|
2143
|
+
name: z.ZodOptional<z.ZodString>;
|
|
2578
2144
|
date_created: z.ZodString;
|
|
2579
2145
|
quota: z.ZodObject<{
|
|
2580
2146
|
basic_clusters_max: z.ZodNumber;
|
|
@@ -2622,25 +2188,11 @@ export declare const zUpdateOrganizationResponse: z.ZodObject<{
|
|
|
2622
2188
|
cluster_tiers: string[];
|
|
2623
2189
|
regions: string[];
|
|
2624
2190
|
}>;
|
|
2625
|
-
pending_actions: z.ZodArray<z.ZodEnum<["signup-billing-address", "signup-payment-method", "signup-invite-team", "signup-create-cluster"]>, "many">;
|
|
2626
2191
|
status: z.ZodEnum<["active", "closed", "suspended"]>;
|
|
2627
2192
|
}, "strip", z.ZodTypeAny, {
|
|
2628
|
-
name: string;
|
|
2629
2193
|
id: string;
|
|
2630
2194
|
status: "active" | "closed" | "suspended";
|
|
2631
2195
|
date_created: string;
|
|
2632
|
-
contactInfo: {
|
|
2633
|
-
email: string;
|
|
2634
|
-
first_name: string;
|
|
2635
|
-
last_name: string;
|
|
2636
|
-
state?: string | undefined;
|
|
2637
|
-
country?: string | undefined;
|
|
2638
|
-
address1?: string | undefined;
|
|
2639
|
-
address2?: string | undefined;
|
|
2640
|
-
postalCode?: string | undefined;
|
|
2641
|
-
city?: string | undefined;
|
|
2642
|
-
phone?: string | undefined;
|
|
2643
|
-
};
|
|
2644
2196
|
quota: {
|
|
2645
2197
|
versions: {
|
|
2646
2198
|
id: string;
|
|
@@ -2655,24 +2207,11 @@ export declare const zUpdateOrganizationResponse: z.ZodObject<{
|
|
|
2655
2207
|
cluster_tiers: string[];
|
|
2656
2208
|
regions: string[];
|
|
2657
2209
|
};
|
|
2658
|
-
|
|
2210
|
+
name?: string | undefined;
|
|
2659
2211
|
}, {
|
|
2660
|
-
name: string;
|
|
2661
2212
|
id: string;
|
|
2662
2213
|
status: "active" | "closed" | "suspended";
|
|
2663
2214
|
date_created: string;
|
|
2664
|
-
contactInfo: {
|
|
2665
|
-
email: string;
|
|
2666
|
-
first_name: string;
|
|
2667
|
-
last_name: string;
|
|
2668
|
-
state?: string | undefined;
|
|
2669
|
-
country?: string | undefined;
|
|
2670
|
-
address1?: string | undefined;
|
|
2671
|
-
address2?: string | undefined;
|
|
2672
|
-
postalCode?: string | undefined;
|
|
2673
|
-
city?: string | undefined;
|
|
2674
|
-
phone?: string | undefined;
|
|
2675
|
-
};
|
|
2676
2215
|
quota: {
|
|
2677
2216
|
versions: {
|
|
2678
2217
|
id: string;
|
|
@@ -2687,7 +2226,7 @@ export declare const zUpdateOrganizationResponse: z.ZodObject<{
|
|
|
2687
2226
|
cluster_tiers: string[];
|
|
2688
2227
|
regions: string[];
|
|
2689
2228
|
};
|
|
2690
|
-
|
|
2229
|
+
name?: string | undefined;
|
|
2691
2230
|
}>;
|
|
2692
2231
|
export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
|
|
2693
2232
|
name: z.ZodString;
|
|
@@ -2697,13 +2236,13 @@ export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
|
|
|
2697
2236
|
date_created: z.ZodString;
|
|
2698
2237
|
}, "strip", z.ZodTypeAny, {
|
|
2699
2238
|
name: string;
|
|
2700
|
-
role: "
|
|
2239
|
+
role: "Administrator" | "User";
|
|
2701
2240
|
date_created: string;
|
|
2702
2241
|
id?: string | undefined;
|
|
2703
2242
|
secret?: string | undefined;
|
|
2704
2243
|
}, {
|
|
2705
2244
|
name: string;
|
|
2706
|
-
role: "
|
|
2245
|
+
role: "Administrator" | "User";
|
|
2707
2246
|
date_created: string;
|
|
2708
2247
|
id?: string | undefined;
|
|
2709
2248
|
secret?: string | undefined;
|
|
@@ -2716,13 +2255,13 @@ export declare const zCreateTokenResponse: z.ZodObject<{
|
|
|
2716
2255
|
date_created: z.ZodString;
|
|
2717
2256
|
}, "strip", z.ZodTypeAny, {
|
|
2718
2257
|
name: string;
|
|
2719
|
-
role: "
|
|
2258
|
+
role: "Administrator" | "User";
|
|
2720
2259
|
date_created: string;
|
|
2721
2260
|
id?: string | undefined;
|
|
2722
2261
|
secret?: string | undefined;
|
|
2723
2262
|
}, {
|
|
2724
2263
|
name: string;
|
|
2725
|
-
role: "
|
|
2264
|
+
role: "Administrator" | "User";
|
|
2726
2265
|
date_created: string;
|
|
2727
2266
|
id?: string | undefined;
|
|
2728
2267
|
secret?: string | undefined;
|
|
@@ -2735,13 +2274,13 @@ export declare const zGetTokenResponse: z.ZodObject<{
|
|
|
2735
2274
|
date_created: z.ZodString;
|
|
2736
2275
|
}, "strip", z.ZodTypeAny, {
|
|
2737
2276
|
name: string;
|
|
2738
|
-
role: "
|
|
2277
|
+
role: "Administrator" | "User";
|
|
2739
2278
|
date_created: string;
|
|
2740
2279
|
id?: string | undefined;
|
|
2741
2280
|
secret?: string | undefined;
|
|
2742
2281
|
}, {
|
|
2743
2282
|
name: string;
|
|
2744
|
-
role: "
|
|
2283
|
+
role: "Administrator" | "User";
|
|
2745
2284
|
date_created: string;
|
|
2746
2285
|
id?: string | undefined;
|
|
2747
2286
|
secret?: string | undefined;
|
|
@@ -2754,13 +2293,13 @@ export declare const zUpdateTokenResponse: z.ZodObject<{
|
|
|
2754
2293
|
date_created: z.ZodString;
|
|
2755
2294
|
}, "strip", z.ZodTypeAny, {
|
|
2756
2295
|
name: string;
|
|
2757
|
-
role: "
|
|
2296
|
+
role: "Administrator" | "User";
|
|
2758
2297
|
date_created: string;
|
|
2759
2298
|
id?: string | undefined;
|
|
2760
2299
|
secret?: string | undefined;
|
|
2761
2300
|
}, {
|
|
2762
2301
|
name: string;
|
|
2763
|
-
role: "
|
|
2302
|
+
role: "Administrator" | "User";
|
|
2764
2303
|
date_created: string;
|
|
2765
2304
|
id?: string | undefined;
|
|
2766
2305
|
secret?: string | undefined;
|
|
@@ -2773,13 +2312,13 @@ export declare const zRegenerateTokenResponse: z.ZodObject<{
|
|
|
2773
2312
|
date_created: z.ZodString;
|
|
2774
2313
|
}, "strip", z.ZodTypeAny, {
|
|
2775
2314
|
name: string;
|
|
2776
|
-
role: "
|
|
2315
|
+
role: "Administrator" | "User";
|
|
2777
2316
|
date_created: string;
|
|
2778
2317
|
id?: string | undefined;
|
|
2779
2318
|
secret?: string | undefined;
|
|
2780
2319
|
}, {
|
|
2781
2320
|
name: string;
|
|
2782
|
-
role: "
|
|
2321
|
+
role: "Administrator" | "User";
|
|
2783
2322
|
date_created: string;
|
|
2784
2323
|
id?: string | undefined;
|
|
2785
2324
|
secret?: string | undefined;
|
|
@@ -2814,24 +2353,24 @@ export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
|
|
|
2814
2353
|
}>, "many">>;
|
|
2815
2354
|
}, "strip", z.ZodTypeAny, {
|
|
2816
2355
|
id: string;
|
|
2817
|
-
role: "
|
|
2356
|
+
role: "Administrator" | "User";
|
|
2818
2357
|
email: string;
|
|
2819
2358
|
status: "active" | "inactive";
|
|
2820
|
-
date_created: string;
|
|
2821
2359
|
first_name: string;
|
|
2822
2360
|
last_name: string;
|
|
2361
|
+
date_created: string;
|
|
2823
2362
|
cluster_permissions?: {
|
|
2824
2363
|
cluster_id: string;
|
|
2825
2364
|
permissions: "readonly" | "readwrite";
|
|
2826
2365
|
}[] | undefined;
|
|
2827
2366
|
}, {
|
|
2828
2367
|
id: string;
|
|
2829
|
-
role: "
|
|
2368
|
+
role: "Administrator" | "User";
|
|
2830
2369
|
email: string;
|
|
2831
2370
|
status: "active" | "inactive";
|
|
2832
|
-
date_created: string;
|
|
2833
2371
|
first_name: string;
|
|
2834
2372
|
last_name: string;
|
|
2373
|
+
date_created: string;
|
|
2835
2374
|
cluster_permissions?: {
|
|
2836
2375
|
cluster_id: string;
|
|
2837
2376
|
permissions: "readonly" | "readwrite";
|
|
@@ -2857,24 +2396,24 @@ export declare const zCreateUserResponse: z.ZodObject<{
|
|
|
2857
2396
|
}>, "many">>;
|
|
2858
2397
|
}, "strip", z.ZodTypeAny, {
|
|
2859
2398
|
id: string;
|
|
2860
|
-
role: "
|
|
2399
|
+
role: "Administrator" | "User";
|
|
2861
2400
|
email: string;
|
|
2862
2401
|
status: "active" | "inactive";
|
|
2863
|
-
date_created: string;
|
|
2864
2402
|
first_name: string;
|
|
2865
2403
|
last_name: string;
|
|
2404
|
+
date_created: string;
|
|
2866
2405
|
cluster_permissions?: {
|
|
2867
2406
|
cluster_id: string;
|
|
2868
2407
|
permissions: "readonly" | "readwrite";
|
|
2869
2408
|
}[] | undefined;
|
|
2870
2409
|
}, {
|
|
2871
2410
|
id: string;
|
|
2872
|
-
role: "
|
|
2411
|
+
role: "Administrator" | "User";
|
|
2873
2412
|
email: string;
|
|
2874
2413
|
status: "active" | "inactive";
|
|
2875
|
-
date_created: string;
|
|
2876
2414
|
first_name: string;
|
|
2877
2415
|
last_name: string;
|
|
2416
|
+
date_created: string;
|
|
2878
2417
|
cluster_permissions?: {
|
|
2879
2418
|
cluster_id: string;
|
|
2880
2419
|
permissions: "readonly" | "readwrite";
|
|
@@ -2900,24 +2439,24 @@ export declare const zDeleteUserResponse: z.ZodObject<{
|
|
|
2900
2439
|
}>, "many">>;
|
|
2901
2440
|
}, "strip", z.ZodTypeAny, {
|
|
2902
2441
|
id: string;
|
|
2903
|
-
role: "
|
|
2442
|
+
role: "Administrator" | "User";
|
|
2904
2443
|
email: string;
|
|
2905
2444
|
status: "active" | "inactive";
|
|
2906
|
-
date_created: string;
|
|
2907
2445
|
first_name: string;
|
|
2908
2446
|
last_name: string;
|
|
2447
|
+
date_created: string;
|
|
2909
2448
|
cluster_permissions?: {
|
|
2910
2449
|
cluster_id: string;
|
|
2911
2450
|
permissions: "readonly" | "readwrite";
|
|
2912
2451
|
}[] | undefined;
|
|
2913
2452
|
}, {
|
|
2914
2453
|
id: string;
|
|
2915
|
-
role: "
|
|
2454
|
+
role: "Administrator" | "User";
|
|
2916
2455
|
email: string;
|
|
2917
2456
|
status: "active" | "inactive";
|
|
2918
|
-
date_created: string;
|
|
2919
2457
|
first_name: string;
|
|
2920
2458
|
last_name: string;
|
|
2459
|
+
date_created: string;
|
|
2921
2460
|
cluster_permissions?: {
|
|
2922
2461
|
cluster_id: string;
|
|
2923
2462
|
permissions: "readonly" | "readwrite";
|
|
@@ -2943,24 +2482,24 @@ export declare const zGetUserResponse: z.ZodObject<{
|
|
|
2943
2482
|
}>, "many">>;
|
|
2944
2483
|
}, "strip", z.ZodTypeAny, {
|
|
2945
2484
|
id: string;
|
|
2946
|
-
role: "
|
|
2485
|
+
role: "Administrator" | "User";
|
|
2947
2486
|
email: string;
|
|
2948
2487
|
status: "active" | "inactive";
|
|
2949
|
-
date_created: string;
|
|
2950
2488
|
first_name: string;
|
|
2951
2489
|
last_name: string;
|
|
2490
|
+
date_created: string;
|
|
2952
2491
|
cluster_permissions?: {
|
|
2953
2492
|
cluster_id: string;
|
|
2954
2493
|
permissions: "readonly" | "readwrite";
|
|
2955
2494
|
}[] | undefined;
|
|
2956
2495
|
}, {
|
|
2957
2496
|
id: string;
|
|
2958
|
-
role: "
|
|
2497
|
+
role: "Administrator" | "User";
|
|
2959
2498
|
email: string;
|
|
2960
2499
|
status: "active" | "inactive";
|
|
2961
|
-
date_created: string;
|
|
2962
2500
|
first_name: string;
|
|
2963
2501
|
last_name: string;
|
|
2502
|
+
date_created: string;
|
|
2964
2503
|
cluster_permissions?: {
|
|
2965
2504
|
cluster_id: string;
|
|
2966
2505
|
permissions: "readonly" | "readwrite";
|
|
@@ -2986,24 +2525,24 @@ export declare const zUpdateUserResponse: z.ZodObject<{
|
|
|
2986
2525
|
}>, "many">>;
|
|
2987
2526
|
}, "strip", z.ZodTypeAny, {
|
|
2988
2527
|
id: string;
|
|
2989
|
-
role: "
|
|
2528
|
+
role: "Administrator" | "User";
|
|
2990
2529
|
email: string;
|
|
2991
2530
|
status: "active" | "inactive";
|
|
2992
|
-
date_created: string;
|
|
2993
2531
|
first_name: string;
|
|
2994
2532
|
last_name: string;
|
|
2533
|
+
date_created: string;
|
|
2995
2534
|
cluster_permissions?: {
|
|
2996
2535
|
cluster_id: string;
|
|
2997
2536
|
permissions: "readonly" | "readwrite";
|
|
2998
2537
|
}[] | undefined;
|
|
2999
2538
|
}, {
|
|
3000
2539
|
id: string;
|
|
3001
|
-
role: "
|
|
2540
|
+
role: "Administrator" | "User";
|
|
3002
2541
|
email: string;
|
|
3003
2542
|
status: "active" | "inactive";
|
|
3004
|
-
date_created: string;
|
|
3005
2543
|
first_name: string;
|
|
3006
2544
|
last_name: string;
|
|
2545
|
+
date_created: string;
|
|
3007
2546
|
cluster_permissions?: {
|
|
3008
2547
|
cluster_id: string;
|
|
3009
2548
|
permissions: "readonly" | "readwrite";
|
|
@@ -3029,24 +2568,24 @@ export declare const zDeleteClusterPermissionsResponse: z.ZodObject<{
|
|
|
3029
2568
|
}>, "many">>;
|
|
3030
2569
|
}, "strip", z.ZodTypeAny, {
|
|
3031
2570
|
id: string;
|
|
3032
|
-
role: "
|
|
2571
|
+
role: "Administrator" | "User";
|
|
3033
2572
|
email: string;
|
|
3034
2573
|
status: "active" | "inactive";
|
|
3035
|
-
date_created: string;
|
|
3036
2574
|
first_name: string;
|
|
3037
2575
|
last_name: string;
|
|
2576
|
+
date_created: string;
|
|
3038
2577
|
cluster_permissions?: {
|
|
3039
2578
|
cluster_id: string;
|
|
3040
2579
|
permissions: "readonly" | "readwrite";
|
|
3041
2580
|
}[] | undefined;
|
|
3042
2581
|
}, {
|
|
3043
2582
|
id: string;
|
|
3044
|
-
role: "
|
|
2583
|
+
role: "Administrator" | "User";
|
|
3045
2584
|
email: string;
|
|
3046
2585
|
status: "active" | "inactive";
|
|
3047
|
-
date_created: string;
|
|
3048
2586
|
first_name: string;
|
|
3049
2587
|
last_name: string;
|
|
2588
|
+
date_created: string;
|
|
3050
2589
|
cluster_permissions?: {
|
|
3051
2590
|
cluster_id: string;
|
|
3052
2591
|
permissions: "readonly" | "readwrite";
|
|
@@ -3072,24 +2611,24 @@ export declare const zSetClusterPermissionsResponse: z.ZodObject<{
|
|
|
3072
2611
|
}>, "many">>;
|
|
3073
2612
|
}, "strip", z.ZodTypeAny, {
|
|
3074
2613
|
id: string;
|
|
3075
|
-
role: "
|
|
2614
|
+
role: "Administrator" | "User";
|
|
3076
2615
|
email: string;
|
|
3077
2616
|
status: "active" | "inactive";
|
|
3078
|
-
date_created: string;
|
|
3079
2617
|
first_name: string;
|
|
3080
2618
|
last_name: string;
|
|
2619
|
+
date_created: string;
|
|
3081
2620
|
cluster_permissions?: {
|
|
3082
2621
|
cluster_id: string;
|
|
3083
2622
|
permissions: "readonly" | "readwrite";
|
|
3084
2623
|
}[] | undefined;
|
|
3085
2624
|
}, {
|
|
3086
2625
|
id: string;
|
|
3087
|
-
role: "
|
|
2626
|
+
role: "Administrator" | "User";
|
|
3088
2627
|
email: string;
|
|
3089
2628
|
status: "active" | "inactive";
|
|
3090
|
-
date_created: string;
|
|
3091
2629
|
first_name: string;
|
|
3092
2630
|
last_name: string;
|
|
2631
|
+
date_created: string;
|
|
3093
2632
|
cluster_permissions?: {
|
|
3094
2633
|
cluster_id: string;
|
|
3095
2634
|
permissions: "readonly" | "readwrite";
|