@cloudfleet/sdk 0.3.39 → 0.5.0
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/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/schemas.gen.d.ts +84 -532
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +85 -533
- package/dist/schemas.gen.js.map +1 -1
- package/dist/sdk.gen.d.ts +28 -73
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/sdk.gen.js +66 -101
- package/dist/sdk.gen.js.map +1 -1
- package/dist/types.gen.d.ts +82 -613
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +220 -835
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +22 -142
- 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>;
|
|
@@ -397,140 +434,6 @@ export declare const zFleetUpdateInput: z.ZodObject<{
|
|
|
397
434
|
enabled?: boolean | undefined;
|
|
398
435
|
} | undefined;
|
|
399
436
|
}>;
|
|
400
|
-
export declare const zInfrastructureFilter: z.ZodObject<{
|
|
401
|
-
version: z.ZodOptional<z.ZodUnknown>;
|
|
402
|
-
provider: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
403
|
-
region: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
404
|
-
sub_region: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
405
|
-
csp_region: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
406
|
-
instance_type: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
407
|
-
accelerator_name: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
408
|
-
accelerator_manufacturer: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
409
|
-
accelerator_count_min: z.ZodOptional<z.ZodNumber>;
|
|
410
|
-
accelerator_count_max: z.ZodOptional<z.ZodNumber>;
|
|
411
|
-
accelerator_memory_min: z.ZodOptional<z.ZodNumber>;
|
|
412
|
-
accelerator_memory_max: z.ZodOptional<z.ZodNumber>;
|
|
413
|
-
memory_min: z.ZodOptional<z.ZodNumber>;
|
|
414
|
-
memory_max: z.ZodOptional<z.ZodNumber>;
|
|
415
|
-
vcpu_min: z.ZodOptional<z.ZodNumber>;
|
|
416
|
-
vcpu_max: z.ZodOptional<z.ZodNumber>;
|
|
417
|
-
storage_total_min: z.ZodOptional<z.ZodNumber>;
|
|
418
|
-
storage_total_max: z.ZodOptional<z.ZodNumber>;
|
|
419
|
-
storage_local_min: z.ZodOptional<z.ZodNumber>;
|
|
420
|
-
storage_local_max: z.ZodOptional<z.ZodNumber>;
|
|
421
|
-
price_min: z.ZodOptional<z.ZodNumber>;
|
|
422
|
-
price_max: z.ZodOptional<z.ZodNumber>;
|
|
423
|
-
}, "strip", z.ZodTypeAny, {
|
|
424
|
-
region?: string[] | undefined;
|
|
425
|
-
provider?: string[] | undefined;
|
|
426
|
-
sub_region?: string[] | undefined;
|
|
427
|
-
csp_region?: string[] | undefined;
|
|
428
|
-
instance_type?: string[] | undefined;
|
|
429
|
-
version?: unknown;
|
|
430
|
-
accelerator_name?: string[] | undefined;
|
|
431
|
-
accelerator_manufacturer?: string[] | undefined;
|
|
432
|
-
accelerator_count_min?: number | undefined;
|
|
433
|
-
accelerator_count_max?: number | undefined;
|
|
434
|
-
accelerator_memory_min?: number | undefined;
|
|
435
|
-
accelerator_memory_max?: number | undefined;
|
|
436
|
-
memory_min?: number | undefined;
|
|
437
|
-
memory_max?: number | undefined;
|
|
438
|
-
vcpu_min?: number | undefined;
|
|
439
|
-
vcpu_max?: number | undefined;
|
|
440
|
-
storage_total_min?: number | undefined;
|
|
441
|
-
storage_total_max?: number | undefined;
|
|
442
|
-
storage_local_min?: number | undefined;
|
|
443
|
-
storage_local_max?: number | undefined;
|
|
444
|
-
price_min?: number | undefined;
|
|
445
|
-
price_max?: number | undefined;
|
|
446
|
-
}, {
|
|
447
|
-
region?: string[] | undefined;
|
|
448
|
-
provider?: string[] | undefined;
|
|
449
|
-
sub_region?: string[] | undefined;
|
|
450
|
-
csp_region?: string[] | undefined;
|
|
451
|
-
instance_type?: string[] | undefined;
|
|
452
|
-
version?: unknown;
|
|
453
|
-
accelerator_name?: string[] | undefined;
|
|
454
|
-
accelerator_manufacturer?: string[] | undefined;
|
|
455
|
-
accelerator_count_min?: number | undefined;
|
|
456
|
-
accelerator_count_max?: number | undefined;
|
|
457
|
-
accelerator_memory_min?: number | undefined;
|
|
458
|
-
accelerator_memory_max?: number | undefined;
|
|
459
|
-
memory_min?: number | undefined;
|
|
460
|
-
memory_max?: number | undefined;
|
|
461
|
-
vcpu_min?: number | undefined;
|
|
462
|
-
vcpu_max?: number | undefined;
|
|
463
|
-
storage_total_min?: number | undefined;
|
|
464
|
-
storage_total_max?: number | undefined;
|
|
465
|
-
storage_local_min?: number | undefined;
|
|
466
|
-
storage_local_max?: number | undefined;
|
|
467
|
-
price_min?: number | undefined;
|
|
468
|
-
price_max?: number | undefined;
|
|
469
|
-
}>;
|
|
470
|
-
export declare const zInfrastructureInstance: z.ZodObject<{
|
|
471
|
-
sku: z.ZodString;
|
|
472
|
-
provider: z.ZodString;
|
|
473
|
-
region: z.ZodString;
|
|
474
|
-
sub_region: z.ZodString;
|
|
475
|
-
csp_region: z.ZodString;
|
|
476
|
-
csp_zone: z.ZodString;
|
|
477
|
-
instance_type: z.ZodString;
|
|
478
|
-
architecture: z.ZodString;
|
|
479
|
-
os: z.ZodString;
|
|
480
|
-
vcpu: z.ZodNumber;
|
|
481
|
-
memory: z.ZodNumber;
|
|
482
|
-
local_storage: z.ZodNumber;
|
|
483
|
-
accelerator_name: z.ZodOptional<z.ZodString>;
|
|
484
|
-
accelerator_manufacturer: z.ZodOptional<z.ZodString>;
|
|
485
|
-
accelerator_count: z.ZodOptional<z.ZodNumber>;
|
|
486
|
-
accelerator_memory: z.ZodOptional<z.ZodNumber>;
|
|
487
|
-
pods_capacity: z.ZodOptional<z.ZodNumber>;
|
|
488
|
-
capacity_type: z.ZodOptional<z.ZodString>;
|
|
489
|
-
price: z.ZodNumber;
|
|
490
|
-
available: z.ZodOptional<z.ZodBoolean>;
|
|
491
|
-
}, "strip", z.ZodTypeAny, {
|
|
492
|
-
memory: number;
|
|
493
|
-
region: string;
|
|
494
|
-
sku: string;
|
|
495
|
-
provider: string;
|
|
496
|
-
sub_region: string;
|
|
497
|
-
csp_region: string;
|
|
498
|
-
csp_zone: string;
|
|
499
|
-
instance_type: string;
|
|
500
|
-
architecture: string;
|
|
501
|
-
os: string;
|
|
502
|
-
vcpu: number;
|
|
503
|
-
local_storage: number;
|
|
504
|
-
price: number;
|
|
505
|
-
accelerator_name?: string | undefined;
|
|
506
|
-
accelerator_manufacturer?: string | undefined;
|
|
507
|
-
accelerator_count?: number | undefined;
|
|
508
|
-
accelerator_memory?: number | undefined;
|
|
509
|
-
pods_capacity?: number | undefined;
|
|
510
|
-
capacity_type?: string | undefined;
|
|
511
|
-
available?: boolean | undefined;
|
|
512
|
-
}, {
|
|
513
|
-
memory: number;
|
|
514
|
-
region: string;
|
|
515
|
-
sku: string;
|
|
516
|
-
provider: string;
|
|
517
|
-
sub_region: string;
|
|
518
|
-
csp_region: string;
|
|
519
|
-
csp_zone: string;
|
|
520
|
-
instance_type: string;
|
|
521
|
-
architecture: string;
|
|
522
|
-
os: string;
|
|
523
|
-
vcpu: number;
|
|
524
|
-
local_storage: number;
|
|
525
|
-
price: number;
|
|
526
|
-
accelerator_name?: string | undefined;
|
|
527
|
-
accelerator_manufacturer?: string | undefined;
|
|
528
|
-
accelerator_count?: number | undefined;
|
|
529
|
-
accelerator_memory?: number | undefined;
|
|
530
|
-
pods_capacity?: number | undefined;
|
|
531
|
-
capacity_type?: string | undefined;
|
|
532
|
-
available?: boolean | undefined;
|
|
533
|
-
}>;
|
|
534
437
|
export declare const zInvite: z.ZodObject<{
|
|
535
438
|
id: z.ZodOptional<z.ZodString>;
|
|
536
439
|
organization_id: z.ZodOptional<z.ZodString>;
|
|
@@ -586,7 +489,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
586
489
|
catalogEffectiveDate: z.ZodOptional<z.ZodString>;
|
|
587
490
|
childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
588
491
|
}, "strip", z.ZodTypeAny, {
|
|
589
|
-
currency?: "
|
|
492
|
+
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
493
|
id?: string | undefined;
|
|
591
494
|
description?: string | undefined;
|
|
592
495
|
amount?: number | undefined;
|
|
@@ -608,7 +511,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
608
511
|
catalogEffectiveDate?: string | undefined;
|
|
609
512
|
childItems?: unknown[] | undefined;
|
|
610
513
|
}, {
|
|
611
|
-
currency?: "
|
|
514
|
+
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
515
|
id?: string | undefined;
|
|
613
516
|
description?: string | undefined;
|
|
614
517
|
amount?: number | undefined;
|
|
@@ -653,7 +556,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
653
556
|
catalogEffectiveDate: z.ZodOptional<z.ZodString>;
|
|
654
557
|
childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
655
558
|
}, "strip", z.ZodTypeAny, {
|
|
656
|
-
currency?: "
|
|
559
|
+
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
560
|
id?: string | undefined;
|
|
658
561
|
description?: string | undefined;
|
|
659
562
|
amount?: number | undefined;
|
|
@@ -675,7 +578,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
675
578
|
catalogEffectiveDate?: string | undefined;
|
|
676
579
|
childItems?: unknown[] | undefined;
|
|
677
580
|
}, {
|
|
678
|
-
currency?: "
|
|
581
|
+
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
582
|
id?: string | undefined;
|
|
680
583
|
description?: string | undefined;
|
|
681
584
|
amount?: number | undefined;
|
|
@@ -698,11 +601,11 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
698
601
|
childItems?: unknown[] | undefined;
|
|
699
602
|
}>, "many">>;
|
|
700
603
|
}, "strip", z.ZodTypeAny, {
|
|
701
|
-
currency?: "
|
|
604
|
+
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
605
|
id?: string | undefined;
|
|
703
606
|
status?: "DRAFT" | "COMMITTED" | "VOID" | undefined;
|
|
704
607
|
items?: {
|
|
705
|
-
currency?: "
|
|
608
|
+
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
609
|
id?: string | undefined;
|
|
707
610
|
description?: string | undefined;
|
|
708
611
|
amount?: number | undefined;
|
|
@@ -734,7 +637,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
734
637
|
balance?: number | undefined;
|
|
735
638
|
bundleKeys?: string | undefined;
|
|
736
639
|
credits?: {
|
|
737
|
-
currency?: "
|
|
640
|
+
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
641
|
id?: string | undefined;
|
|
739
642
|
description?: string | undefined;
|
|
740
643
|
amount?: number | undefined;
|
|
@@ -757,11 +660,11 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
757
660
|
childItems?: unknown[] | undefined;
|
|
758
661
|
}[] | undefined;
|
|
759
662
|
}, {
|
|
760
|
-
currency?: "
|
|
663
|
+
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
664
|
id?: string | undefined;
|
|
762
665
|
status?: "DRAFT" | "COMMITTED" | "VOID" | undefined;
|
|
763
666
|
items?: {
|
|
764
|
-
currency?: "
|
|
667
|
+
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
668
|
id?: string | undefined;
|
|
766
669
|
description?: string | undefined;
|
|
767
670
|
amount?: number | undefined;
|
|
@@ -793,7 +696,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
793
696
|
balance?: number | undefined;
|
|
794
697
|
bundleKeys?: string | undefined;
|
|
795
698
|
credits?: {
|
|
796
|
-
currency?: "
|
|
699
|
+
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
700
|
id?: string | undefined;
|
|
798
701
|
description?: string | undefined;
|
|
799
702
|
amount?: number | undefined;
|
|
@@ -816,145 +719,28 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
816
719
|
childItems?: unknown[] | undefined;
|
|
817
720
|
}[] | undefined;
|
|
818
721
|
}>;
|
|
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>;
|
|
722
|
+
export declare const zOrganizationCreateInput: z.ZodObject<{
|
|
827
723
|
email: z.ZodString;
|
|
828
724
|
first_name: z.ZodString;
|
|
829
725
|
last_name: z.ZodString;
|
|
726
|
+
company_name: z.ZodString;
|
|
727
|
+
password: z.ZodString;
|
|
830
728
|
}, "strip", z.ZodTypeAny, {
|
|
831
729
|
email: string;
|
|
832
730
|
first_name: string;
|
|
833
731
|
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;
|
|
732
|
+
company_name: string;
|
|
733
|
+
password: string;
|
|
841
734
|
}, {
|
|
842
735
|
email: string;
|
|
843
736
|
first_name: string;
|
|
844
737
|
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
|
-
};
|
|
738
|
+
company_name: string;
|
|
919
739
|
password: string;
|
|
920
740
|
}>;
|
|
921
741
|
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
742
|
id: z.ZodString;
|
|
743
|
+
name: z.ZodOptional<z.ZodString>;
|
|
958
744
|
date_created: z.ZodString;
|
|
959
745
|
quota: z.ZodObject<{
|
|
960
746
|
basic_clusters_max: z.ZodNumber;
|
|
@@ -1002,25 +788,11 @@ export declare const zOrganization: z.ZodObject<{
|
|
|
1002
788
|
cluster_tiers: string[];
|
|
1003
789
|
regions: string[];
|
|
1004
790
|
}>;
|
|
1005
|
-
pending_actions: z.ZodArray<z.ZodEnum<["signup-billing-address", "signup-payment-method", "signup-invite-team", "signup-create-cluster"]>, "many">;
|
|
1006
791
|
status: z.ZodEnum<["active", "closed", "suspended"]>;
|
|
1007
792
|
}, "strip", z.ZodTypeAny, {
|
|
1008
|
-
name: string;
|
|
1009
793
|
id: string;
|
|
1010
794
|
status: "active" | "closed" | "suspended";
|
|
1011
795
|
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
796
|
quota: {
|
|
1025
797
|
versions: {
|
|
1026
798
|
id: string;
|
|
@@ -1035,24 +807,11 @@ export declare const zOrganization: z.ZodObject<{
|
|
|
1035
807
|
cluster_tiers: string[];
|
|
1036
808
|
regions: string[];
|
|
1037
809
|
};
|
|
1038
|
-
|
|
810
|
+
name?: string | undefined;
|
|
1039
811
|
}, {
|
|
1040
|
-
name: string;
|
|
1041
812
|
id: string;
|
|
1042
813
|
status: "active" | "closed" | "suspended";
|
|
1043
814
|
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
815
|
quota: {
|
|
1057
816
|
versions: {
|
|
1058
817
|
id: string;
|
|
@@ -1067,71 +826,6 @@ export declare const zOrganization: z.ZodObject<{
|
|
|
1067
826
|
cluster_tiers: string[];
|
|
1068
827
|
regions: string[];
|
|
1069
828
|
};
|
|
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
829
|
name?: string | undefined;
|
|
1136
830
|
}>;
|
|
1137
831
|
export declare const zPaymentMethod: z.ZodObject<{
|
|
@@ -1149,7 +843,7 @@ export declare const zPaymentMethod: z.ZodObject<{
|
|
|
1149
843
|
last4: string;
|
|
1150
844
|
exp_month: number;
|
|
1151
845
|
exp_year: number;
|
|
1152
|
-
brand: "unknown" | "
|
|
846
|
+
brand: "unknown" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay" | "visa";
|
|
1153
847
|
}, {
|
|
1154
848
|
type: "card";
|
|
1155
849
|
id: string;
|
|
@@ -1157,17 +851,17 @@ export declare const zPaymentMethod: z.ZodObject<{
|
|
|
1157
851
|
last4: string;
|
|
1158
852
|
exp_month: number;
|
|
1159
853
|
exp_year: number;
|
|
1160
|
-
brand: "unknown" | "
|
|
854
|
+
brand: "unknown" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay" | "visa";
|
|
1161
855
|
}>;
|
|
1162
856
|
export declare const zTokenCreateInput: z.ZodObject<{
|
|
1163
857
|
name: z.ZodString;
|
|
1164
858
|
role: z.ZodEnum<["Administrator", "User"]>;
|
|
1165
859
|
}, "strip", z.ZodTypeAny, {
|
|
1166
860
|
name: string;
|
|
1167
|
-
role: "
|
|
861
|
+
role: "Administrator" | "User";
|
|
1168
862
|
}, {
|
|
1169
863
|
name: string;
|
|
1170
|
-
role: "
|
|
864
|
+
role: "Administrator" | "User";
|
|
1171
865
|
}>;
|
|
1172
866
|
export declare const zToken: z.ZodObject<{
|
|
1173
867
|
name: z.ZodString;
|
|
@@ -1177,13 +871,13 @@ export declare const zToken: z.ZodObject<{
|
|
|
1177
871
|
date_created: z.ZodString;
|
|
1178
872
|
}, "strip", z.ZodTypeAny, {
|
|
1179
873
|
name: string;
|
|
1180
|
-
role: "
|
|
874
|
+
role: "Administrator" | "User";
|
|
1181
875
|
date_created: string;
|
|
1182
876
|
id?: string | undefined;
|
|
1183
877
|
secret?: string | undefined;
|
|
1184
878
|
}, {
|
|
1185
879
|
name: string;
|
|
1186
|
-
role: "
|
|
880
|
+
role: "Administrator" | "User";
|
|
1187
881
|
date_created: string;
|
|
1188
882
|
id?: string | undefined;
|
|
1189
883
|
secret?: string | undefined;
|
|
@@ -1193,10 +887,10 @@ export declare const zTokenUpdateInput: z.ZodObject<{
|
|
|
1193
887
|
role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
|
|
1194
888
|
}, "strip", z.ZodTypeAny, {
|
|
1195
889
|
name?: string | undefined;
|
|
1196
|
-
role?: "
|
|
890
|
+
role?: "Administrator" | "User" | undefined;
|
|
1197
891
|
}, {
|
|
1198
892
|
name?: string | undefined;
|
|
1199
|
-
role?: "
|
|
893
|
+
role?: "Administrator" | "User" | undefined;
|
|
1200
894
|
}>;
|
|
1201
895
|
export declare const zUsage: z.ZodObject<{
|
|
1202
896
|
hour: z.ZodOptional<z.ZodString>;
|
|
@@ -1211,25 +905,25 @@ export declare const zUsage: z.ZodObject<{
|
|
|
1211
905
|
total: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1212
906
|
}, "strip", z.ZodTypeAny, {
|
|
1213
907
|
total: number | "";
|
|
908
|
+
cpu: number | "";
|
|
1214
909
|
product: "cfke_infra_compute" | "cfke_nodes" | "cfke_controlplane";
|
|
1215
910
|
value: number | "";
|
|
1216
|
-
cpu: number | "";
|
|
1217
|
-
sku: string;
|
|
1218
|
-
price: number | "";
|
|
1219
911
|
cluster_id: string;
|
|
1220
912
|
cluster_tier: "";
|
|
1221
913
|
node_name: string;
|
|
914
|
+
sku: string;
|
|
915
|
+
price: number | "";
|
|
1222
916
|
hour?: string | undefined;
|
|
1223
917
|
}, {
|
|
1224
918
|
total: number | "";
|
|
919
|
+
cpu: number | "";
|
|
1225
920
|
product: "cfke_infra_compute" | "cfke_nodes" | "cfke_controlplane";
|
|
1226
921
|
value: number | "";
|
|
1227
|
-
cpu: number | "";
|
|
1228
|
-
sku: string;
|
|
1229
|
-
price: number | "";
|
|
1230
922
|
cluster_id: string;
|
|
1231
923
|
cluster_tier: "";
|
|
1232
924
|
node_name: string;
|
|
925
|
+
sku: string;
|
|
926
|
+
price: number | "";
|
|
1233
927
|
hour?: string | undefined;
|
|
1234
928
|
}>;
|
|
1235
929
|
export declare const zUserCreateInput: z.ZodObject<{
|
|
@@ -1246,7 +940,7 @@ export declare const zUserCreateInput: z.ZodObject<{
|
|
|
1246
940
|
first_name: string;
|
|
1247
941
|
last_name: string;
|
|
1248
942
|
password: string;
|
|
1249
|
-
role?: "
|
|
943
|
+
role?: "Administrator" | "User" | undefined;
|
|
1250
944
|
status?: "active" | "inactive" | undefined;
|
|
1251
945
|
}, {
|
|
1252
946
|
code: string;
|
|
@@ -1254,7 +948,7 @@ export declare const zUserCreateInput: z.ZodObject<{
|
|
|
1254
948
|
first_name: string;
|
|
1255
949
|
last_name: string;
|
|
1256
950
|
password: string;
|
|
1257
|
-
role?: "
|
|
951
|
+
role?: "Administrator" | "User" | undefined;
|
|
1258
952
|
status?: "active" | "inactive" | undefined;
|
|
1259
953
|
}>;
|
|
1260
954
|
export declare const zUser: z.ZodObject<{
|
|
@@ -1277,24 +971,24 @@ export declare const zUser: z.ZodObject<{
|
|
|
1277
971
|
}>, "many">>;
|
|
1278
972
|
}, "strip", z.ZodTypeAny, {
|
|
1279
973
|
id: string;
|
|
1280
|
-
role: "
|
|
974
|
+
role: "Administrator" | "User";
|
|
1281
975
|
email: string;
|
|
1282
976
|
status: "active" | "inactive";
|
|
1283
|
-
date_created: string;
|
|
1284
977
|
first_name: string;
|
|
1285
978
|
last_name: string;
|
|
979
|
+
date_created: string;
|
|
1286
980
|
cluster_permissions?: {
|
|
1287
981
|
cluster_id: string;
|
|
1288
982
|
permissions: "readonly" | "readwrite";
|
|
1289
983
|
}[] | undefined;
|
|
1290
984
|
}, {
|
|
1291
985
|
id: string;
|
|
1292
|
-
role: "
|
|
986
|
+
role: "Administrator" | "User";
|
|
1293
987
|
email: string;
|
|
1294
988
|
status: "active" | "inactive";
|
|
1295
|
-
date_created: string;
|
|
1296
989
|
first_name: string;
|
|
1297
990
|
last_name: string;
|
|
991
|
+
date_created: string;
|
|
1298
992
|
cluster_permissions?: {
|
|
1299
993
|
cluster_id: string;
|
|
1300
994
|
permissions: "readonly" | "readwrite";
|
|
@@ -1307,13 +1001,13 @@ export declare const zUserUpdateInput: z.ZodObject<{
|
|
|
1307
1001
|
role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
|
|
1308
1002
|
status: z.ZodOptional<z.ZodEnum<["active", "inactive"]>>;
|
|
1309
1003
|
}, "strip", z.ZodTypeAny, {
|
|
1310
|
-
role?: "
|
|
1004
|
+
role?: "Administrator" | "User" | undefined;
|
|
1311
1005
|
email?: string | undefined;
|
|
1312
1006
|
status?: "active" | "inactive" | undefined;
|
|
1313
1007
|
first_name?: string | undefined;
|
|
1314
1008
|
last_name?: string | undefined;
|
|
1315
1009
|
}, {
|
|
1316
|
-
role?: "
|
|
1010
|
+
role?: "Administrator" | "User" | undefined;
|
|
1317
1011
|
email?: string | undefined;
|
|
1318
1012
|
status?: "active" | "inactive" | undefined;
|
|
1319
1013
|
first_name?: string | undefined;
|
|
@@ -1332,25 +1026,25 @@ export declare const zGetUsageResponse: z.ZodArray<z.ZodObject<{
|
|
|
1332
1026
|
total: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1333
1027
|
}, "strip", z.ZodTypeAny, {
|
|
1334
1028
|
total: number | "";
|
|
1029
|
+
cpu: number | "";
|
|
1335
1030
|
product: "cfke_infra_compute" | "cfke_nodes" | "cfke_controlplane";
|
|
1336
1031
|
value: number | "";
|
|
1337
|
-
cpu: number | "";
|
|
1338
|
-
sku: string;
|
|
1339
|
-
price: number | "";
|
|
1340
1032
|
cluster_id: string;
|
|
1341
1033
|
cluster_tier: "";
|
|
1342
1034
|
node_name: string;
|
|
1035
|
+
sku: string;
|
|
1036
|
+
price: number | "";
|
|
1343
1037
|
hour?: string | undefined;
|
|
1344
1038
|
}, {
|
|
1345
1039
|
total: number | "";
|
|
1040
|
+
cpu: number | "";
|
|
1346
1041
|
product: "cfke_infra_compute" | "cfke_nodes" | "cfke_controlplane";
|
|
1347
1042
|
value: number | "";
|
|
1348
|
-
cpu: number | "";
|
|
1349
|
-
sku: string;
|
|
1350
|
-
price: number | "";
|
|
1351
1043
|
cluster_id: string;
|
|
1352
1044
|
cluster_tier: "";
|
|
1353
1045
|
node_name: string;
|
|
1046
|
+
sku: string;
|
|
1047
|
+
price: number | "";
|
|
1354
1048
|
hour?: string | undefined;
|
|
1355
1049
|
}>, "many">;
|
|
1356
1050
|
export declare const zGetBalanceResponse: z.ZodNumber;
|
|
@@ -1369,7 +1063,7 @@ export declare const zGetPaymentMethodResponse: z.ZodObject<{
|
|
|
1369
1063
|
last4: string;
|
|
1370
1064
|
exp_month: number;
|
|
1371
1065
|
exp_year: number;
|
|
1372
|
-
brand: "unknown" | "
|
|
1066
|
+
brand: "unknown" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay" | "visa";
|
|
1373
1067
|
}, {
|
|
1374
1068
|
type: "card";
|
|
1375
1069
|
id: string;
|
|
@@ -1377,7 +1071,7 @@ export declare const zGetPaymentMethodResponse: z.ZodObject<{
|
|
|
1377
1071
|
last4: string;
|
|
1378
1072
|
exp_month: number;
|
|
1379
1073
|
exp_year: number;
|
|
1380
|
-
brand: "unknown" | "
|
|
1074
|
+
brand: "unknown" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay" | "visa";
|
|
1381
1075
|
}>;
|
|
1382
1076
|
export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
|
|
1383
1077
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -1422,7 +1116,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1422
1116
|
catalogEffectiveDate: z.ZodOptional<z.ZodString>;
|
|
1423
1117
|
childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
1424
1118
|
}, "strip", z.ZodTypeAny, {
|
|
1425
|
-
currency?: "
|
|
1119
|
+
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
1120
|
id?: string | undefined;
|
|
1427
1121
|
description?: string | undefined;
|
|
1428
1122
|
amount?: number | undefined;
|
|
@@ -1444,7 +1138,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1444
1138
|
catalogEffectiveDate?: string | undefined;
|
|
1445
1139
|
childItems?: unknown[] | undefined;
|
|
1446
1140
|
}, {
|
|
1447
|
-
currency?: "
|
|
1141
|
+
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
1142
|
id?: string | undefined;
|
|
1449
1143
|
description?: string | undefined;
|
|
1450
1144
|
amount?: number | undefined;
|
|
@@ -1489,7 +1183,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1489
1183
|
catalogEffectiveDate: z.ZodOptional<z.ZodString>;
|
|
1490
1184
|
childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
1491
1185
|
}, "strip", z.ZodTypeAny, {
|
|
1492
|
-
currency?: "
|
|
1186
|
+
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
1187
|
id?: string | undefined;
|
|
1494
1188
|
description?: string | undefined;
|
|
1495
1189
|
amount?: number | undefined;
|
|
@@ -1511,7 +1205,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1511
1205
|
catalogEffectiveDate?: string | undefined;
|
|
1512
1206
|
childItems?: unknown[] | undefined;
|
|
1513
1207
|
}, {
|
|
1514
|
-
currency?: "
|
|
1208
|
+
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
1209
|
id?: string | undefined;
|
|
1516
1210
|
description?: string | undefined;
|
|
1517
1211
|
amount?: number | undefined;
|
|
@@ -1534,11 +1228,11 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1534
1228
|
childItems?: unknown[] | undefined;
|
|
1535
1229
|
}>, "many">>;
|
|
1536
1230
|
}, "strip", z.ZodTypeAny, {
|
|
1537
|
-
currency?: "
|
|
1231
|
+
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
1232
|
id?: string | undefined;
|
|
1539
1233
|
status?: "DRAFT" | "COMMITTED" | "VOID" | undefined;
|
|
1540
1234
|
items?: {
|
|
1541
|
-
currency?: "
|
|
1235
|
+
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
1236
|
id?: string | undefined;
|
|
1543
1237
|
description?: string | undefined;
|
|
1544
1238
|
amount?: number | undefined;
|
|
@@ -1570,7 +1264,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1570
1264
|
balance?: number | undefined;
|
|
1571
1265
|
bundleKeys?: string | undefined;
|
|
1572
1266
|
credits?: {
|
|
1573
|
-
currency?: "
|
|
1267
|
+
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
1268
|
id?: string | undefined;
|
|
1575
1269
|
description?: string | undefined;
|
|
1576
1270
|
amount?: number | undefined;
|
|
@@ -1593,11 +1287,11 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1593
1287
|
childItems?: unknown[] | undefined;
|
|
1594
1288
|
}[] | undefined;
|
|
1595
1289
|
}, {
|
|
1596
|
-
currency?: "
|
|
1290
|
+
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
1291
|
id?: string | undefined;
|
|
1598
1292
|
status?: "DRAFT" | "COMMITTED" | "VOID" | undefined;
|
|
1599
1293
|
items?: {
|
|
1600
|
-
currency?: "
|
|
1294
|
+
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
1295
|
id?: string | undefined;
|
|
1602
1296
|
description?: string | undefined;
|
|
1603
1297
|
amount?: number | undefined;
|
|
@@ -1629,7 +1323,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1629
1323
|
balance?: number | undefined;
|
|
1630
1324
|
bundleKeys?: string | undefined;
|
|
1631
1325
|
credits?: {
|
|
1632
|
-
currency?: "
|
|
1326
|
+
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
1327
|
id?: string | undefined;
|
|
1634
1328
|
description?: string | undefined;
|
|
1635
1329
|
amount?: number | undefined;
|
|
@@ -1659,6 +1353,80 @@ export declare const zGetInvoiceResponse: z.ZodObject<{
|
|
|
1659
1353
|
}, {
|
|
1660
1354
|
html?: string | undefined;
|
|
1661
1355
|
}>;
|
|
1356
|
+
export declare const zGetContactResponse: z.ZodObject<{
|
|
1357
|
+
company: z.ZodOptional<z.ZodString>;
|
|
1358
|
+
address1: z.ZodOptional<z.ZodString>;
|
|
1359
|
+
address2: z.ZodOptional<z.ZodString>;
|
|
1360
|
+
postalCode: z.ZodOptional<z.ZodString>;
|
|
1361
|
+
city: z.ZodOptional<z.ZodString>;
|
|
1362
|
+
state: z.ZodOptional<z.ZodString>;
|
|
1363
|
+
country: z.ZodOptional<z.ZodString>;
|
|
1364
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
1365
|
+
email: z.ZodString;
|
|
1366
|
+
first_name: z.ZodString;
|
|
1367
|
+
last_name: z.ZodString;
|
|
1368
|
+
}, "strip", z.ZodTypeAny, {
|
|
1369
|
+
email: string;
|
|
1370
|
+
first_name: string;
|
|
1371
|
+
last_name: string;
|
|
1372
|
+
state?: string | undefined;
|
|
1373
|
+
country?: string | undefined;
|
|
1374
|
+
company?: string | undefined;
|
|
1375
|
+
address1?: string | undefined;
|
|
1376
|
+
address2?: string | undefined;
|
|
1377
|
+
postalCode?: string | undefined;
|
|
1378
|
+
city?: string | undefined;
|
|
1379
|
+
phone?: string | undefined;
|
|
1380
|
+
}, {
|
|
1381
|
+
email: string;
|
|
1382
|
+
first_name: string;
|
|
1383
|
+
last_name: string;
|
|
1384
|
+
state?: string | undefined;
|
|
1385
|
+
country?: string | undefined;
|
|
1386
|
+
company?: string | undefined;
|
|
1387
|
+
address1?: string | undefined;
|
|
1388
|
+
address2?: string | undefined;
|
|
1389
|
+
postalCode?: string | undefined;
|
|
1390
|
+
city?: string | undefined;
|
|
1391
|
+
phone?: string | undefined;
|
|
1392
|
+
}>;
|
|
1393
|
+
export declare const zUpdateContactResponse: z.ZodObject<{
|
|
1394
|
+
company: z.ZodOptional<z.ZodString>;
|
|
1395
|
+
address1: z.ZodOptional<z.ZodString>;
|
|
1396
|
+
address2: z.ZodOptional<z.ZodString>;
|
|
1397
|
+
postalCode: z.ZodOptional<z.ZodString>;
|
|
1398
|
+
city: z.ZodOptional<z.ZodString>;
|
|
1399
|
+
state: z.ZodOptional<z.ZodString>;
|
|
1400
|
+
country: z.ZodOptional<z.ZodString>;
|
|
1401
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
1402
|
+
email: z.ZodString;
|
|
1403
|
+
first_name: z.ZodString;
|
|
1404
|
+
last_name: z.ZodString;
|
|
1405
|
+
}, "strip", z.ZodTypeAny, {
|
|
1406
|
+
email: string;
|
|
1407
|
+
first_name: string;
|
|
1408
|
+
last_name: string;
|
|
1409
|
+
state?: string | undefined;
|
|
1410
|
+
country?: string | undefined;
|
|
1411
|
+
company?: string | undefined;
|
|
1412
|
+
address1?: string | undefined;
|
|
1413
|
+
address2?: string | undefined;
|
|
1414
|
+
postalCode?: string | undefined;
|
|
1415
|
+
city?: string | undefined;
|
|
1416
|
+
phone?: string | undefined;
|
|
1417
|
+
}, {
|
|
1418
|
+
email: string;
|
|
1419
|
+
first_name: string;
|
|
1420
|
+
last_name: string;
|
|
1421
|
+
state?: string | undefined;
|
|
1422
|
+
country?: string | undefined;
|
|
1423
|
+
company?: string | undefined;
|
|
1424
|
+
address1?: string | undefined;
|
|
1425
|
+
address2?: string | undefined;
|
|
1426
|
+
postalCode?: string | undefined;
|
|
1427
|
+
city?: string | undefined;
|
|
1428
|
+
phone?: string | undefined;
|
|
1429
|
+
}>;
|
|
1662
1430
|
export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
1663
1431
|
limits: z.ZodOptional<z.ZodObject<{
|
|
1664
1432
|
cpu: z.ZodNumber;
|
|
@@ -1865,18 +1633,19 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
|
1865
1633
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1866
1634
|
tier: "basic" | "pro";
|
|
1867
1635
|
version_channel: string;
|
|
1636
|
+
ready?: boolean | undefined;
|
|
1868
1637
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1869
1638
|
endpoint?: string | undefined;
|
|
1870
1639
|
certificate_ca?: string | undefined;
|
|
1871
1640
|
version_current?: string | undefined;
|
|
1872
1641
|
created_at?: string | undefined;
|
|
1873
1642
|
updated_at?: string | undefined;
|
|
1874
|
-
ready?: boolean | undefined;
|
|
1875
1643
|
}, {
|
|
1876
1644
|
name: string;
|
|
1877
1645
|
id: string;
|
|
1878
1646
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1879
1647
|
tier: "basic" | "pro";
|
|
1648
|
+
ready?: boolean | undefined;
|
|
1880
1649
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1881
1650
|
endpoint?: string | undefined;
|
|
1882
1651
|
version_channel?: string | undefined;
|
|
@@ -1884,7 +1653,6 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
|
1884
1653
|
version_current?: string | undefined;
|
|
1885
1654
|
created_at?: string | undefined;
|
|
1886
1655
|
updated_at?: string | undefined;
|
|
1887
|
-
ready?: boolean | undefined;
|
|
1888
1656
|
}>, "many">;
|
|
1889
1657
|
export declare const zCreateClusterResponse: z.ZodString;
|
|
1890
1658
|
export declare const zDeleteClusterResponse: z.ZodString;
|
|
@@ -1907,18 +1675,19 @@ export declare const zGetClusterResponse: z.ZodObject<{
|
|
|
1907
1675
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1908
1676
|
tier: "basic" | "pro";
|
|
1909
1677
|
version_channel: string;
|
|
1678
|
+
ready?: boolean | undefined;
|
|
1910
1679
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1911
1680
|
endpoint?: string | undefined;
|
|
1912
1681
|
certificate_ca?: string | undefined;
|
|
1913
1682
|
version_current?: string | undefined;
|
|
1914
1683
|
created_at?: string | undefined;
|
|
1915
1684
|
updated_at?: string | undefined;
|
|
1916
|
-
ready?: boolean | undefined;
|
|
1917
1685
|
}, {
|
|
1918
1686
|
name: string;
|
|
1919
1687
|
id: string;
|
|
1920
1688
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1921
1689
|
tier: "basic" | "pro";
|
|
1690
|
+
ready?: boolean | undefined;
|
|
1922
1691
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1923
1692
|
endpoint?: string | undefined;
|
|
1924
1693
|
version_channel?: string | undefined;
|
|
@@ -1926,7 +1695,6 @@ export declare const zGetClusterResponse: z.ZodObject<{
|
|
|
1926
1695
|
version_current?: string | undefined;
|
|
1927
1696
|
created_at?: string | undefined;
|
|
1928
1697
|
updated_at?: string | undefined;
|
|
1929
|
-
ready?: boolean | undefined;
|
|
1930
1698
|
}>;
|
|
1931
1699
|
export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
1932
1700
|
name: z.ZodString;
|
|
@@ -1947,18 +1715,19 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
|
1947
1715
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1948
1716
|
tier: "basic" | "pro";
|
|
1949
1717
|
version_channel: string;
|
|
1718
|
+
ready?: boolean | undefined;
|
|
1950
1719
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1951
1720
|
endpoint?: string | undefined;
|
|
1952
1721
|
certificate_ca?: string | undefined;
|
|
1953
1722
|
version_current?: string | undefined;
|
|
1954
1723
|
created_at?: string | undefined;
|
|
1955
1724
|
updated_at?: string | undefined;
|
|
1956
|
-
ready?: boolean | undefined;
|
|
1957
1725
|
}, {
|
|
1958
1726
|
name: string;
|
|
1959
1727
|
id: string;
|
|
1960
1728
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1961
1729
|
tier: "basic" | "pro";
|
|
1730
|
+
ready?: boolean | undefined;
|
|
1962
1731
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1963
1732
|
endpoint?: string | undefined;
|
|
1964
1733
|
version_channel?: string | undefined;
|
|
@@ -1966,7 +1735,6 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
|
1966
1735
|
version_current?: string | undefined;
|
|
1967
1736
|
created_at?: string | undefined;
|
|
1968
1737
|
updated_at?: string | undefined;
|
|
1969
|
-
ready?: boolean | undefined;
|
|
1970
1738
|
}>;
|
|
1971
1739
|
export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
1972
1740
|
name: z.ZodString;
|
|
@@ -1987,18 +1755,19 @@ export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
|
1987
1755
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1988
1756
|
tier: "basic" | "pro";
|
|
1989
1757
|
version_channel: string;
|
|
1758
|
+
ready?: boolean | undefined;
|
|
1990
1759
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1991
1760
|
endpoint?: string | undefined;
|
|
1992
1761
|
certificate_ca?: string | undefined;
|
|
1993
1762
|
version_current?: string | undefined;
|
|
1994
1763
|
created_at?: string | undefined;
|
|
1995
1764
|
updated_at?: string | undefined;
|
|
1996
|
-
ready?: boolean | undefined;
|
|
1997
1765
|
}, {
|
|
1998
1766
|
name: string;
|
|
1999
1767
|
id: string;
|
|
2000
1768
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
2001
1769
|
tier: "basic" | "pro";
|
|
1770
|
+
ready?: boolean | undefined;
|
|
2002
1771
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
2003
1772
|
endpoint?: string | undefined;
|
|
2004
1773
|
version_channel?: string | undefined;
|
|
@@ -2006,179 +1775,7 @@ export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
|
2006
1775
|
version_current?: string | undefined;
|
|
2007
1776
|
created_at?: string | undefined;
|
|
2008
1777
|
updated_at?: string | undefined;
|
|
2009
|
-
ready?: boolean | undefined;
|
|
2010
1778
|
}>;
|
|
2011
|
-
export declare const zGetInfrastructureResponse: z.ZodArray<z.ZodObject<{
|
|
2012
|
-
sku: z.ZodString;
|
|
2013
|
-
provider: z.ZodString;
|
|
2014
|
-
region: z.ZodString;
|
|
2015
|
-
sub_region: z.ZodString;
|
|
2016
|
-
csp_region: z.ZodString;
|
|
2017
|
-
csp_zone: z.ZodString;
|
|
2018
|
-
instance_type: z.ZodString;
|
|
2019
|
-
architecture: z.ZodString;
|
|
2020
|
-
os: z.ZodString;
|
|
2021
|
-
vcpu: z.ZodNumber;
|
|
2022
|
-
memory: z.ZodNumber;
|
|
2023
|
-
local_storage: z.ZodNumber;
|
|
2024
|
-
accelerator_name: z.ZodOptional<z.ZodString>;
|
|
2025
|
-
accelerator_manufacturer: z.ZodOptional<z.ZodString>;
|
|
2026
|
-
accelerator_count: z.ZodOptional<z.ZodNumber>;
|
|
2027
|
-
accelerator_memory: z.ZodOptional<z.ZodNumber>;
|
|
2028
|
-
pods_capacity: z.ZodOptional<z.ZodNumber>;
|
|
2029
|
-
capacity_type: z.ZodOptional<z.ZodString>;
|
|
2030
|
-
price: z.ZodNumber;
|
|
2031
|
-
available: z.ZodOptional<z.ZodBoolean>;
|
|
2032
|
-
}, "strip", z.ZodTypeAny, {
|
|
2033
|
-
memory: number;
|
|
2034
|
-
region: string;
|
|
2035
|
-
sku: string;
|
|
2036
|
-
provider: string;
|
|
2037
|
-
sub_region: string;
|
|
2038
|
-
csp_region: string;
|
|
2039
|
-
csp_zone: string;
|
|
2040
|
-
instance_type: string;
|
|
2041
|
-
architecture: string;
|
|
2042
|
-
os: string;
|
|
2043
|
-
vcpu: number;
|
|
2044
|
-
local_storage: number;
|
|
2045
|
-
price: number;
|
|
2046
|
-
accelerator_name?: string | undefined;
|
|
2047
|
-
accelerator_manufacturer?: string | undefined;
|
|
2048
|
-
accelerator_count?: number | undefined;
|
|
2049
|
-
accelerator_memory?: number | undefined;
|
|
2050
|
-
pods_capacity?: number | undefined;
|
|
2051
|
-
capacity_type?: string | undefined;
|
|
2052
|
-
available?: boolean | undefined;
|
|
2053
|
-
}, {
|
|
2054
|
-
memory: number;
|
|
2055
|
-
region: string;
|
|
2056
|
-
sku: string;
|
|
2057
|
-
provider: string;
|
|
2058
|
-
sub_region: string;
|
|
2059
|
-
csp_region: string;
|
|
2060
|
-
csp_zone: string;
|
|
2061
|
-
instance_type: string;
|
|
2062
|
-
architecture: string;
|
|
2063
|
-
os: string;
|
|
2064
|
-
vcpu: number;
|
|
2065
|
-
local_storage: number;
|
|
2066
|
-
price: number;
|
|
2067
|
-
accelerator_name?: string | undefined;
|
|
2068
|
-
accelerator_manufacturer?: string | undefined;
|
|
2069
|
-
accelerator_count?: number | undefined;
|
|
2070
|
-
accelerator_memory?: number | undefined;
|
|
2071
|
-
pods_capacity?: number | undefined;
|
|
2072
|
-
capacity_type?: string | undefined;
|
|
2073
|
-
available?: boolean | undefined;
|
|
2074
|
-
}>, "many">;
|
|
2075
|
-
export declare const zGetFacetsResponse: z.ZodArray<z.ZodObject<{
|
|
2076
|
-
provider: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2077
|
-
region: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2078
|
-
sub_region: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2079
|
-
csp_region: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2080
|
-
vcpu_min: z.ZodOptional<z.ZodNumber>;
|
|
2081
|
-
vcpu_max: z.ZodOptional<z.ZodNumber>;
|
|
2082
|
-
memory_min: z.ZodOptional<z.ZodNumber>;
|
|
2083
|
-
memory_max: z.ZodOptional<z.ZodNumber>;
|
|
2084
|
-
storage_local_min: z.ZodOptional<z.ZodNumber>;
|
|
2085
|
-
storage_local_max: z.ZodOptional<z.ZodNumber>;
|
|
2086
|
-
accelerator_name: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2087
|
-
accelerator_manufacturer: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2088
|
-
accelerator_count_min: z.ZodOptional<z.ZodNumber>;
|
|
2089
|
-
accelerator_count_max: z.ZodOptional<z.ZodNumber>;
|
|
2090
|
-
accelerator_memory_min: z.ZodOptional<z.ZodNumber>;
|
|
2091
|
-
accelerator_memory_max: z.ZodOptional<z.ZodNumber>;
|
|
2092
|
-
price_min: z.ZodOptional<z.ZodNumber>;
|
|
2093
|
-
price_max: z.ZodOptional<z.ZodNumber>;
|
|
2094
|
-
regions_struct: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2095
|
-
region: z.ZodOptional<z.ZodString>;
|
|
2096
|
-
sub_region: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2097
|
-
}, "strip", z.ZodTypeAny, {
|
|
2098
|
-
region?: string | undefined;
|
|
2099
|
-
sub_region?: string[] | undefined;
|
|
2100
|
-
}, {
|
|
2101
|
-
region?: string | undefined;
|
|
2102
|
-
sub_region?: string[] | undefined;
|
|
2103
|
-
}>, "many">>;
|
|
2104
|
-
accelerators_struct: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2105
|
-
accelerator_manufacturer: z.ZodOptional<z.ZodString>;
|
|
2106
|
-
accelerator_name: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2107
|
-
}, "strip", z.ZodTypeAny, {
|
|
2108
|
-
accelerator_name?: string[] | undefined;
|
|
2109
|
-
accelerator_manufacturer?: string | undefined;
|
|
2110
|
-
}, {
|
|
2111
|
-
accelerator_name?: string[] | undefined;
|
|
2112
|
-
accelerator_manufacturer?: string | undefined;
|
|
2113
|
-
}>, "many">>;
|
|
2114
|
-
count_total: z.ZodOptional<z.ZodNumber>;
|
|
2115
|
-
count_accelerators: z.ZodOptional<z.ZodNumber>;
|
|
2116
|
-
count_instance_types: z.ZodOptional<z.ZodNumber>;
|
|
2117
|
-
count_accelerators_instance_types: z.ZodOptional<z.ZodNumber>;
|
|
2118
|
-
}, "strip", z.ZodTypeAny, {
|
|
2119
|
-
region?: string[] | undefined;
|
|
2120
|
-
provider?: string[] | undefined;
|
|
2121
|
-
sub_region?: string[] | undefined;
|
|
2122
|
-
csp_region?: string[] | undefined;
|
|
2123
|
-
accelerator_name?: string[] | undefined;
|
|
2124
|
-
accelerator_manufacturer?: string[] | undefined;
|
|
2125
|
-
accelerator_count_min?: number | undefined;
|
|
2126
|
-
accelerator_count_max?: number | undefined;
|
|
2127
|
-
accelerator_memory_min?: number | undefined;
|
|
2128
|
-
accelerator_memory_max?: number | undefined;
|
|
2129
|
-
memory_min?: number | undefined;
|
|
2130
|
-
memory_max?: number | undefined;
|
|
2131
|
-
vcpu_min?: number | undefined;
|
|
2132
|
-
vcpu_max?: number | undefined;
|
|
2133
|
-
storage_local_min?: number | undefined;
|
|
2134
|
-
storage_local_max?: number | undefined;
|
|
2135
|
-
price_min?: number | undefined;
|
|
2136
|
-
price_max?: number | undefined;
|
|
2137
|
-
regions_struct?: {
|
|
2138
|
-
region?: string | undefined;
|
|
2139
|
-
sub_region?: string[] | undefined;
|
|
2140
|
-
}[] | undefined;
|
|
2141
|
-
accelerators_struct?: {
|
|
2142
|
-
accelerator_name?: string[] | undefined;
|
|
2143
|
-
accelerator_manufacturer?: string | undefined;
|
|
2144
|
-
}[] | undefined;
|
|
2145
|
-
count_total?: number | undefined;
|
|
2146
|
-
count_accelerators?: number | undefined;
|
|
2147
|
-
count_instance_types?: number | undefined;
|
|
2148
|
-
count_accelerators_instance_types?: number | undefined;
|
|
2149
|
-
}, {
|
|
2150
|
-
region?: string[] | undefined;
|
|
2151
|
-
provider?: string[] | undefined;
|
|
2152
|
-
sub_region?: string[] | undefined;
|
|
2153
|
-
csp_region?: string[] | undefined;
|
|
2154
|
-
accelerator_name?: string[] | undefined;
|
|
2155
|
-
accelerator_manufacturer?: string[] | undefined;
|
|
2156
|
-
accelerator_count_min?: number | undefined;
|
|
2157
|
-
accelerator_count_max?: number | undefined;
|
|
2158
|
-
accelerator_memory_min?: number | undefined;
|
|
2159
|
-
accelerator_memory_max?: number | undefined;
|
|
2160
|
-
memory_min?: number | undefined;
|
|
2161
|
-
memory_max?: number | undefined;
|
|
2162
|
-
vcpu_min?: number | undefined;
|
|
2163
|
-
vcpu_max?: number | undefined;
|
|
2164
|
-
storage_local_min?: number | undefined;
|
|
2165
|
-
storage_local_max?: number | undefined;
|
|
2166
|
-
price_min?: number | undefined;
|
|
2167
|
-
price_max?: number | undefined;
|
|
2168
|
-
regions_struct?: {
|
|
2169
|
-
region?: string | undefined;
|
|
2170
|
-
sub_region?: string[] | undefined;
|
|
2171
|
-
}[] | undefined;
|
|
2172
|
-
accelerators_struct?: {
|
|
2173
|
-
accelerator_name?: string[] | undefined;
|
|
2174
|
-
accelerator_manufacturer?: string | undefined;
|
|
2175
|
-
}[] | undefined;
|
|
2176
|
-
count_total?: number | undefined;
|
|
2177
|
-
count_accelerators?: number | undefined;
|
|
2178
|
-
count_instance_types?: number | undefined;
|
|
2179
|
-
count_accelerators_instance_types?: number | undefined;
|
|
2180
|
-
}>, "many">;
|
|
2181
|
-
export declare const zGetRegionsResponse: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
2182
1779
|
export declare const zListInvitesResponse: z.ZodArray<z.ZodObject<{
|
|
2183
1780
|
id: z.ZodOptional<z.ZodString>;
|
|
2184
1781
|
organization_id: z.ZodOptional<z.ZodString>;
|
|
@@ -2237,193 +1834,8 @@ export declare const zGetInviteResponse: z.ZodObject<{
|
|
|
2237
1834
|
organization_id?: string | undefined;
|
|
2238
1835
|
}>;
|
|
2239
1836
|
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 zUpdateOrganizationResponse: 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
1837
|
id: z.ZodString;
|
|
1838
|
+
name: z.ZodOptional<z.ZodString>;
|
|
2427
1839
|
date_created: z.ZodString;
|
|
2428
1840
|
quota: z.ZodObject<{
|
|
2429
1841
|
basic_clusters_max: z.ZodNumber;
|
|
@@ -2471,25 +1883,11 @@ export declare const zUpdateOrganizationResponse: z.ZodObject<{
|
|
|
2471
1883
|
cluster_tiers: string[];
|
|
2472
1884
|
regions: string[];
|
|
2473
1885
|
}>;
|
|
2474
|
-
pending_actions: z.ZodArray<z.ZodEnum<["signup-billing-address", "signup-payment-method", "signup-invite-team", "signup-create-cluster"]>, "many">;
|
|
2475
1886
|
status: z.ZodEnum<["active", "closed", "suspended"]>;
|
|
2476
1887
|
}, "strip", z.ZodTypeAny, {
|
|
2477
|
-
name: string;
|
|
2478
1888
|
id: string;
|
|
2479
1889
|
status: "active" | "closed" | "suspended";
|
|
2480
1890
|
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
1891
|
quota: {
|
|
2494
1892
|
versions: {
|
|
2495
1893
|
id: string;
|
|
@@ -2504,24 +1902,11 @@ export declare const zUpdateOrganizationResponse: z.ZodObject<{
|
|
|
2504
1902
|
cluster_tiers: string[];
|
|
2505
1903
|
regions: string[];
|
|
2506
1904
|
};
|
|
2507
|
-
|
|
1905
|
+
name?: string | undefined;
|
|
2508
1906
|
}, {
|
|
2509
|
-
name: string;
|
|
2510
1907
|
id: string;
|
|
2511
1908
|
status: "active" | "closed" | "suspended";
|
|
2512
1909
|
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
1910
|
quota: {
|
|
2526
1911
|
versions: {
|
|
2527
1912
|
id: string;
|
|
@@ -2536,7 +1921,7 @@ export declare const zUpdateOrganizationResponse: z.ZodObject<{
|
|
|
2536
1921
|
cluster_tiers: string[];
|
|
2537
1922
|
regions: string[];
|
|
2538
1923
|
};
|
|
2539
|
-
|
|
1924
|
+
name?: string | undefined;
|
|
2540
1925
|
}>;
|
|
2541
1926
|
export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
|
|
2542
1927
|
name: z.ZodString;
|
|
@@ -2546,13 +1931,13 @@ export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
|
|
|
2546
1931
|
date_created: z.ZodString;
|
|
2547
1932
|
}, "strip", z.ZodTypeAny, {
|
|
2548
1933
|
name: string;
|
|
2549
|
-
role: "
|
|
1934
|
+
role: "Administrator" | "User";
|
|
2550
1935
|
date_created: string;
|
|
2551
1936
|
id?: string | undefined;
|
|
2552
1937
|
secret?: string | undefined;
|
|
2553
1938
|
}, {
|
|
2554
1939
|
name: string;
|
|
2555
|
-
role: "
|
|
1940
|
+
role: "Administrator" | "User";
|
|
2556
1941
|
date_created: string;
|
|
2557
1942
|
id?: string | undefined;
|
|
2558
1943
|
secret?: string | undefined;
|
|
@@ -2565,13 +1950,13 @@ export declare const zCreateTokenResponse: z.ZodObject<{
|
|
|
2565
1950
|
date_created: z.ZodString;
|
|
2566
1951
|
}, "strip", z.ZodTypeAny, {
|
|
2567
1952
|
name: string;
|
|
2568
|
-
role: "
|
|
1953
|
+
role: "Administrator" | "User";
|
|
2569
1954
|
date_created: string;
|
|
2570
1955
|
id?: string | undefined;
|
|
2571
1956
|
secret?: string | undefined;
|
|
2572
1957
|
}, {
|
|
2573
1958
|
name: string;
|
|
2574
|
-
role: "
|
|
1959
|
+
role: "Administrator" | "User";
|
|
2575
1960
|
date_created: string;
|
|
2576
1961
|
id?: string | undefined;
|
|
2577
1962
|
secret?: string | undefined;
|
|
@@ -2584,13 +1969,13 @@ export declare const zGetTokenResponse: z.ZodObject<{
|
|
|
2584
1969
|
date_created: z.ZodString;
|
|
2585
1970
|
}, "strip", z.ZodTypeAny, {
|
|
2586
1971
|
name: string;
|
|
2587
|
-
role: "
|
|
1972
|
+
role: "Administrator" | "User";
|
|
2588
1973
|
date_created: string;
|
|
2589
1974
|
id?: string | undefined;
|
|
2590
1975
|
secret?: string | undefined;
|
|
2591
1976
|
}, {
|
|
2592
1977
|
name: string;
|
|
2593
|
-
role: "
|
|
1978
|
+
role: "Administrator" | "User";
|
|
2594
1979
|
date_created: string;
|
|
2595
1980
|
id?: string | undefined;
|
|
2596
1981
|
secret?: string | undefined;
|
|
@@ -2603,13 +1988,13 @@ export declare const zUpdateTokenResponse: z.ZodObject<{
|
|
|
2603
1988
|
date_created: z.ZodString;
|
|
2604
1989
|
}, "strip", z.ZodTypeAny, {
|
|
2605
1990
|
name: string;
|
|
2606
|
-
role: "
|
|
1991
|
+
role: "Administrator" | "User";
|
|
2607
1992
|
date_created: string;
|
|
2608
1993
|
id?: string | undefined;
|
|
2609
1994
|
secret?: string | undefined;
|
|
2610
1995
|
}, {
|
|
2611
1996
|
name: string;
|
|
2612
|
-
role: "
|
|
1997
|
+
role: "Administrator" | "User";
|
|
2613
1998
|
date_created: string;
|
|
2614
1999
|
id?: string | undefined;
|
|
2615
2000
|
secret?: string | undefined;
|
|
@@ -2622,13 +2007,13 @@ export declare const zRegenerateTokenResponse: z.ZodObject<{
|
|
|
2622
2007
|
date_created: z.ZodString;
|
|
2623
2008
|
}, "strip", z.ZodTypeAny, {
|
|
2624
2009
|
name: string;
|
|
2625
|
-
role: "
|
|
2010
|
+
role: "Administrator" | "User";
|
|
2626
2011
|
date_created: string;
|
|
2627
2012
|
id?: string | undefined;
|
|
2628
2013
|
secret?: string | undefined;
|
|
2629
2014
|
}, {
|
|
2630
2015
|
name: string;
|
|
2631
|
-
role: "
|
|
2016
|
+
role: "Administrator" | "User";
|
|
2632
2017
|
date_created: string;
|
|
2633
2018
|
id?: string | undefined;
|
|
2634
2019
|
secret?: string | undefined;
|
|
@@ -2663,24 +2048,24 @@ export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
|
|
|
2663
2048
|
}>, "many">>;
|
|
2664
2049
|
}, "strip", z.ZodTypeAny, {
|
|
2665
2050
|
id: string;
|
|
2666
|
-
role: "
|
|
2051
|
+
role: "Administrator" | "User";
|
|
2667
2052
|
email: string;
|
|
2668
2053
|
status: "active" | "inactive";
|
|
2669
|
-
date_created: string;
|
|
2670
2054
|
first_name: string;
|
|
2671
2055
|
last_name: string;
|
|
2056
|
+
date_created: string;
|
|
2672
2057
|
cluster_permissions?: {
|
|
2673
2058
|
cluster_id: string;
|
|
2674
2059
|
permissions: "readonly" | "readwrite";
|
|
2675
2060
|
}[] | undefined;
|
|
2676
2061
|
}, {
|
|
2677
2062
|
id: string;
|
|
2678
|
-
role: "
|
|
2063
|
+
role: "Administrator" | "User";
|
|
2679
2064
|
email: string;
|
|
2680
2065
|
status: "active" | "inactive";
|
|
2681
|
-
date_created: string;
|
|
2682
2066
|
first_name: string;
|
|
2683
2067
|
last_name: string;
|
|
2068
|
+
date_created: string;
|
|
2684
2069
|
cluster_permissions?: {
|
|
2685
2070
|
cluster_id: string;
|
|
2686
2071
|
permissions: "readonly" | "readwrite";
|
|
@@ -2706,24 +2091,24 @@ export declare const zCreateUserResponse: z.ZodObject<{
|
|
|
2706
2091
|
}>, "many">>;
|
|
2707
2092
|
}, "strip", z.ZodTypeAny, {
|
|
2708
2093
|
id: string;
|
|
2709
|
-
role: "
|
|
2094
|
+
role: "Administrator" | "User";
|
|
2710
2095
|
email: string;
|
|
2711
2096
|
status: "active" | "inactive";
|
|
2712
|
-
date_created: string;
|
|
2713
2097
|
first_name: string;
|
|
2714
2098
|
last_name: string;
|
|
2099
|
+
date_created: string;
|
|
2715
2100
|
cluster_permissions?: {
|
|
2716
2101
|
cluster_id: string;
|
|
2717
2102
|
permissions: "readonly" | "readwrite";
|
|
2718
2103
|
}[] | undefined;
|
|
2719
2104
|
}, {
|
|
2720
2105
|
id: string;
|
|
2721
|
-
role: "
|
|
2106
|
+
role: "Administrator" | "User";
|
|
2722
2107
|
email: string;
|
|
2723
2108
|
status: "active" | "inactive";
|
|
2724
|
-
date_created: string;
|
|
2725
2109
|
first_name: string;
|
|
2726
2110
|
last_name: string;
|
|
2111
|
+
date_created: string;
|
|
2727
2112
|
cluster_permissions?: {
|
|
2728
2113
|
cluster_id: string;
|
|
2729
2114
|
permissions: "readonly" | "readwrite";
|
|
@@ -2749,24 +2134,24 @@ export declare const zDeleteUserResponse: z.ZodObject<{
|
|
|
2749
2134
|
}>, "many">>;
|
|
2750
2135
|
}, "strip", z.ZodTypeAny, {
|
|
2751
2136
|
id: string;
|
|
2752
|
-
role: "
|
|
2137
|
+
role: "Administrator" | "User";
|
|
2753
2138
|
email: string;
|
|
2754
2139
|
status: "active" | "inactive";
|
|
2755
|
-
date_created: string;
|
|
2756
2140
|
first_name: string;
|
|
2757
2141
|
last_name: string;
|
|
2142
|
+
date_created: string;
|
|
2758
2143
|
cluster_permissions?: {
|
|
2759
2144
|
cluster_id: string;
|
|
2760
2145
|
permissions: "readonly" | "readwrite";
|
|
2761
2146
|
}[] | undefined;
|
|
2762
2147
|
}, {
|
|
2763
2148
|
id: string;
|
|
2764
|
-
role: "
|
|
2149
|
+
role: "Administrator" | "User";
|
|
2765
2150
|
email: string;
|
|
2766
2151
|
status: "active" | "inactive";
|
|
2767
|
-
date_created: string;
|
|
2768
2152
|
first_name: string;
|
|
2769
2153
|
last_name: string;
|
|
2154
|
+
date_created: string;
|
|
2770
2155
|
cluster_permissions?: {
|
|
2771
2156
|
cluster_id: string;
|
|
2772
2157
|
permissions: "readonly" | "readwrite";
|
|
@@ -2792,24 +2177,24 @@ export declare const zGetUserResponse: z.ZodObject<{
|
|
|
2792
2177
|
}>, "many">>;
|
|
2793
2178
|
}, "strip", z.ZodTypeAny, {
|
|
2794
2179
|
id: string;
|
|
2795
|
-
role: "
|
|
2180
|
+
role: "Administrator" | "User";
|
|
2796
2181
|
email: string;
|
|
2797
2182
|
status: "active" | "inactive";
|
|
2798
|
-
date_created: string;
|
|
2799
2183
|
first_name: string;
|
|
2800
2184
|
last_name: string;
|
|
2185
|
+
date_created: string;
|
|
2801
2186
|
cluster_permissions?: {
|
|
2802
2187
|
cluster_id: string;
|
|
2803
2188
|
permissions: "readonly" | "readwrite";
|
|
2804
2189
|
}[] | undefined;
|
|
2805
2190
|
}, {
|
|
2806
2191
|
id: string;
|
|
2807
|
-
role: "
|
|
2192
|
+
role: "Administrator" | "User";
|
|
2808
2193
|
email: string;
|
|
2809
2194
|
status: "active" | "inactive";
|
|
2810
|
-
date_created: string;
|
|
2811
2195
|
first_name: string;
|
|
2812
2196
|
last_name: string;
|
|
2197
|
+
date_created: string;
|
|
2813
2198
|
cluster_permissions?: {
|
|
2814
2199
|
cluster_id: string;
|
|
2815
2200
|
permissions: "readonly" | "readwrite";
|
|
@@ -2835,24 +2220,24 @@ export declare const zUpdateUserResponse: z.ZodObject<{
|
|
|
2835
2220
|
}>, "many">>;
|
|
2836
2221
|
}, "strip", z.ZodTypeAny, {
|
|
2837
2222
|
id: string;
|
|
2838
|
-
role: "
|
|
2223
|
+
role: "Administrator" | "User";
|
|
2839
2224
|
email: string;
|
|
2840
2225
|
status: "active" | "inactive";
|
|
2841
|
-
date_created: string;
|
|
2842
2226
|
first_name: string;
|
|
2843
2227
|
last_name: string;
|
|
2228
|
+
date_created: string;
|
|
2844
2229
|
cluster_permissions?: {
|
|
2845
2230
|
cluster_id: string;
|
|
2846
2231
|
permissions: "readonly" | "readwrite";
|
|
2847
2232
|
}[] | undefined;
|
|
2848
2233
|
}, {
|
|
2849
2234
|
id: string;
|
|
2850
|
-
role: "
|
|
2235
|
+
role: "Administrator" | "User";
|
|
2851
2236
|
email: string;
|
|
2852
2237
|
status: "active" | "inactive";
|
|
2853
|
-
date_created: string;
|
|
2854
2238
|
first_name: string;
|
|
2855
2239
|
last_name: string;
|
|
2240
|
+
date_created: string;
|
|
2856
2241
|
cluster_permissions?: {
|
|
2857
2242
|
cluster_id: string;
|
|
2858
2243
|
permissions: "readonly" | "readwrite";
|
|
@@ -2878,24 +2263,24 @@ export declare const zDeleteClusterPermissionsResponse: z.ZodObject<{
|
|
|
2878
2263
|
}>, "many">>;
|
|
2879
2264
|
}, "strip", z.ZodTypeAny, {
|
|
2880
2265
|
id: string;
|
|
2881
|
-
role: "
|
|
2266
|
+
role: "Administrator" | "User";
|
|
2882
2267
|
email: string;
|
|
2883
2268
|
status: "active" | "inactive";
|
|
2884
|
-
date_created: string;
|
|
2885
2269
|
first_name: string;
|
|
2886
2270
|
last_name: string;
|
|
2271
|
+
date_created: string;
|
|
2887
2272
|
cluster_permissions?: {
|
|
2888
2273
|
cluster_id: string;
|
|
2889
2274
|
permissions: "readonly" | "readwrite";
|
|
2890
2275
|
}[] | undefined;
|
|
2891
2276
|
}, {
|
|
2892
2277
|
id: string;
|
|
2893
|
-
role: "
|
|
2278
|
+
role: "Administrator" | "User";
|
|
2894
2279
|
email: string;
|
|
2895
2280
|
status: "active" | "inactive";
|
|
2896
|
-
date_created: string;
|
|
2897
2281
|
first_name: string;
|
|
2898
2282
|
last_name: string;
|
|
2283
|
+
date_created: string;
|
|
2899
2284
|
cluster_permissions?: {
|
|
2900
2285
|
cluster_id: string;
|
|
2901
2286
|
permissions: "readonly" | "readwrite";
|
|
@@ -2921,24 +2306,24 @@ export declare const zSetClusterPermissionsResponse: z.ZodObject<{
|
|
|
2921
2306
|
}>, "many">>;
|
|
2922
2307
|
}, "strip", z.ZodTypeAny, {
|
|
2923
2308
|
id: string;
|
|
2924
|
-
role: "
|
|
2309
|
+
role: "Administrator" | "User";
|
|
2925
2310
|
email: string;
|
|
2926
2311
|
status: "active" | "inactive";
|
|
2927
|
-
date_created: string;
|
|
2928
2312
|
first_name: string;
|
|
2929
2313
|
last_name: string;
|
|
2314
|
+
date_created: string;
|
|
2930
2315
|
cluster_permissions?: {
|
|
2931
2316
|
cluster_id: string;
|
|
2932
2317
|
permissions: "readonly" | "readwrite";
|
|
2933
2318
|
}[] | undefined;
|
|
2934
2319
|
}, {
|
|
2935
2320
|
id: string;
|
|
2936
|
-
role: "
|
|
2321
|
+
role: "Administrator" | "User";
|
|
2937
2322
|
email: string;
|
|
2938
2323
|
status: "active" | "inactive";
|
|
2939
|
-
date_created: string;
|
|
2940
2324
|
first_name: string;
|
|
2941
2325
|
last_name: string;
|
|
2326
|
+
date_created: string;
|
|
2942
2327
|
cluster_permissions?: {
|
|
2943
2328
|
cluster_id: string;
|
|
2944
2329
|
permissions: "readonly" | "readwrite";
|