@cloudfleet/sdk 0.0.1-bd28e81 → 0.0.1-c9371b9
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 +154 -546
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +167 -547
- package/dist/schemas.gen.js.map +1 -1
- package/dist/sdk.gen.d.ts +31 -76
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/sdk.gen.js +67 -102
- package/dist/sdk.gen.js.map +1 -1
- package/dist/types.gen.d.ts +107 -633
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +272 -1002
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +58 -147
- 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,12 +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
|
-
amount?: number | undefined;
|
|
705
607
|
items?: {
|
|
706
|
-
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;
|
|
707
609
|
id?: string | undefined;
|
|
708
610
|
description?: string | undefined;
|
|
709
611
|
amount?: number | undefined;
|
|
@@ -726,6 +628,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
726
628
|
childItems?: unknown[] | undefined;
|
|
727
629
|
}[] | undefined;
|
|
728
630
|
organizationId?: string | undefined;
|
|
631
|
+
amount?: number | undefined;
|
|
729
632
|
creditAdj?: number | undefined;
|
|
730
633
|
refundAdj?: number | undefined;
|
|
731
634
|
invoiceDate?: string | 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,12 +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
|
-
amount?: number | undefined;
|
|
764
666
|
items?: {
|
|
765
|
-
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;
|
|
766
668
|
id?: string | undefined;
|
|
767
669
|
description?: string | undefined;
|
|
768
670
|
amount?: number | undefined;
|
|
@@ -785,6 +687,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
785
687
|
childItems?: unknown[] | undefined;
|
|
786
688
|
}[] | undefined;
|
|
787
689
|
organizationId?: string | undefined;
|
|
690
|
+
amount?: number | undefined;
|
|
788
691
|
creditAdj?: number | undefined;
|
|
789
692
|
refundAdj?: number | undefined;
|
|
790
693
|
invoiceDate?: string | 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,26 +887,44 @@ 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
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
896
|
+
hour: z.ZodOptional<z.ZodString>;
|
|
897
|
+
cluster_id: z.ZodString;
|
|
898
|
+
cluster_tier: z.ZodEnum<[""]>;
|
|
899
|
+
product: z.ZodEnum<["cfke_infra_compute", "cfke_nodes", "cfke_controlplane"]>;
|
|
900
|
+
node_name: z.ZodString;
|
|
901
|
+
sku: z.ZodString;
|
|
902
|
+
cpu: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
903
|
+
price: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
904
|
+
value: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
905
|
+
total: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1206
906
|
}, "strip", z.ZodTypeAny, {
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
907
|
+
total: number | "";
|
|
908
|
+
cpu: number | "";
|
|
909
|
+
product: "cfke_infra_compute" | "cfke_nodes" | "cfke_controlplane";
|
|
910
|
+
value: number | "";
|
|
911
|
+
cluster_id: string;
|
|
912
|
+
cluster_tier: "";
|
|
913
|
+
node_name: string;
|
|
914
|
+
sku: string;
|
|
915
|
+
price: number | "";
|
|
916
|
+
hour?: string | undefined;
|
|
1211
917
|
}, {
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
918
|
+
total: number | "";
|
|
919
|
+
cpu: number | "";
|
|
920
|
+
product: "cfke_infra_compute" | "cfke_nodes" | "cfke_controlplane";
|
|
921
|
+
value: number | "";
|
|
922
|
+
cluster_id: string;
|
|
923
|
+
cluster_tier: "";
|
|
924
|
+
node_name: string;
|
|
925
|
+
sku: string;
|
|
926
|
+
price: number | "";
|
|
927
|
+
hour?: string | undefined;
|
|
1216
928
|
}>;
|
|
1217
929
|
export declare const zUserCreateInput: z.ZodObject<{
|
|
1218
930
|
email: z.ZodString;
|
|
@@ -1228,7 +940,7 @@ export declare const zUserCreateInput: z.ZodObject<{
|
|
|
1228
940
|
first_name: string;
|
|
1229
941
|
last_name: string;
|
|
1230
942
|
password: string;
|
|
1231
|
-
role?: "
|
|
943
|
+
role?: "Administrator" | "User" | undefined;
|
|
1232
944
|
status?: "active" | "inactive" | undefined;
|
|
1233
945
|
}, {
|
|
1234
946
|
code: string;
|
|
@@ -1236,7 +948,7 @@ export declare const zUserCreateInput: z.ZodObject<{
|
|
|
1236
948
|
first_name: string;
|
|
1237
949
|
last_name: string;
|
|
1238
950
|
password: string;
|
|
1239
|
-
role?: "
|
|
951
|
+
role?: "Administrator" | "User" | undefined;
|
|
1240
952
|
status?: "active" | "inactive" | undefined;
|
|
1241
953
|
}>;
|
|
1242
954
|
export declare const zUser: z.ZodObject<{
|
|
@@ -1259,24 +971,24 @@ export declare const zUser: z.ZodObject<{
|
|
|
1259
971
|
}>, "many">>;
|
|
1260
972
|
}, "strip", z.ZodTypeAny, {
|
|
1261
973
|
id: string;
|
|
1262
|
-
role: "
|
|
974
|
+
role: "Administrator" | "User";
|
|
1263
975
|
email: string;
|
|
1264
976
|
status: "active" | "inactive";
|
|
1265
|
-
date_created: string;
|
|
1266
977
|
first_name: string;
|
|
1267
978
|
last_name: string;
|
|
979
|
+
date_created: string;
|
|
1268
980
|
cluster_permissions?: {
|
|
1269
981
|
cluster_id: string;
|
|
1270
982
|
permissions: "readonly" | "readwrite";
|
|
1271
983
|
}[] | undefined;
|
|
1272
984
|
}, {
|
|
1273
985
|
id: string;
|
|
1274
|
-
role: "
|
|
986
|
+
role: "Administrator" | "User";
|
|
1275
987
|
email: string;
|
|
1276
988
|
status: "active" | "inactive";
|
|
1277
|
-
date_created: string;
|
|
1278
989
|
first_name: string;
|
|
1279
990
|
last_name: string;
|
|
991
|
+
date_created: string;
|
|
1280
992
|
cluster_permissions?: {
|
|
1281
993
|
cluster_id: string;
|
|
1282
994
|
permissions: "readonly" | "readwrite";
|
|
@@ -1289,33 +1001,51 @@ export declare const zUserUpdateInput: z.ZodObject<{
|
|
|
1289
1001
|
role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
|
|
1290
1002
|
status: z.ZodOptional<z.ZodEnum<["active", "inactive"]>>;
|
|
1291
1003
|
}, "strip", z.ZodTypeAny, {
|
|
1292
|
-
role?: "
|
|
1004
|
+
role?: "Administrator" | "User" | undefined;
|
|
1293
1005
|
email?: string | undefined;
|
|
1294
1006
|
status?: "active" | "inactive" | undefined;
|
|
1295
1007
|
first_name?: string | undefined;
|
|
1296
1008
|
last_name?: string | undefined;
|
|
1297
1009
|
}, {
|
|
1298
|
-
role?: "
|
|
1010
|
+
role?: "Administrator" | "User" | undefined;
|
|
1299
1011
|
email?: string | undefined;
|
|
1300
1012
|
status?: "active" | "inactive" | undefined;
|
|
1301
1013
|
first_name?: string | undefined;
|
|
1302
1014
|
last_name?: string | undefined;
|
|
1303
1015
|
}>;
|
|
1304
1016
|
export declare const zGetUsageResponse: z.ZodArray<z.ZodObject<{
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
|
|
1017
|
+
hour: z.ZodOptional<z.ZodString>;
|
|
1018
|
+
cluster_id: z.ZodString;
|
|
1019
|
+
cluster_tier: z.ZodEnum<[""]>;
|
|
1020
|
+
product: z.ZodEnum<["cfke_infra_compute", "cfke_nodes", "cfke_controlplane"]>;
|
|
1021
|
+
node_name: z.ZodString;
|
|
1022
|
+
sku: z.ZodString;
|
|
1023
|
+
cpu: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1024
|
+
price: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1025
|
+
value: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1026
|
+
total: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1309
1027
|
}, "strip", z.ZodTypeAny, {
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1028
|
+
total: number | "";
|
|
1029
|
+
cpu: number | "";
|
|
1030
|
+
product: "cfke_infra_compute" | "cfke_nodes" | "cfke_controlplane";
|
|
1031
|
+
value: number | "";
|
|
1032
|
+
cluster_id: string;
|
|
1033
|
+
cluster_tier: "";
|
|
1034
|
+
node_name: string;
|
|
1035
|
+
sku: string;
|
|
1036
|
+
price: number | "";
|
|
1037
|
+
hour?: string | undefined;
|
|
1314
1038
|
}, {
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1039
|
+
total: number | "";
|
|
1040
|
+
cpu: number | "";
|
|
1041
|
+
product: "cfke_infra_compute" | "cfke_nodes" | "cfke_controlplane";
|
|
1042
|
+
value: number | "";
|
|
1043
|
+
cluster_id: string;
|
|
1044
|
+
cluster_tier: "";
|
|
1045
|
+
node_name: string;
|
|
1046
|
+
sku: string;
|
|
1047
|
+
price: number | "";
|
|
1048
|
+
hour?: string | undefined;
|
|
1319
1049
|
}>, "many">;
|
|
1320
1050
|
export declare const zGetBalanceResponse: z.ZodNumber;
|
|
1321
1051
|
export declare const zGetPaymentMethodResponse: z.ZodObject<{
|
|
@@ -1333,7 +1063,7 @@ export declare const zGetPaymentMethodResponse: z.ZodObject<{
|
|
|
1333
1063
|
last4: string;
|
|
1334
1064
|
exp_month: number;
|
|
1335
1065
|
exp_year: number;
|
|
1336
|
-
brand: "unknown" | "
|
|
1066
|
+
brand: "unknown" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay" | "visa";
|
|
1337
1067
|
}, {
|
|
1338
1068
|
type: "card";
|
|
1339
1069
|
id: string;
|
|
@@ -1341,7 +1071,7 @@ export declare const zGetPaymentMethodResponse: z.ZodObject<{
|
|
|
1341
1071
|
last4: string;
|
|
1342
1072
|
exp_month: number;
|
|
1343
1073
|
exp_year: number;
|
|
1344
|
-
brand: "unknown" | "
|
|
1074
|
+
brand: "unknown" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay" | "visa";
|
|
1345
1075
|
}>;
|
|
1346
1076
|
export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
|
|
1347
1077
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -1386,7 +1116,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1386
1116
|
catalogEffectiveDate: z.ZodOptional<z.ZodString>;
|
|
1387
1117
|
childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
1388
1118
|
}, "strip", z.ZodTypeAny, {
|
|
1389
|
-
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;
|
|
1390
1120
|
id?: string | undefined;
|
|
1391
1121
|
description?: string | undefined;
|
|
1392
1122
|
amount?: number | undefined;
|
|
@@ -1408,7 +1138,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1408
1138
|
catalogEffectiveDate?: string | undefined;
|
|
1409
1139
|
childItems?: unknown[] | undefined;
|
|
1410
1140
|
}, {
|
|
1411
|
-
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;
|
|
1412
1142
|
id?: string | undefined;
|
|
1413
1143
|
description?: string | undefined;
|
|
1414
1144
|
amount?: number | undefined;
|
|
@@ -1453,7 +1183,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1453
1183
|
catalogEffectiveDate: z.ZodOptional<z.ZodString>;
|
|
1454
1184
|
childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
1455
1185
|
}, "strip", z.ZodTypeAny, {
|
|
1456
|
-
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;
|
|
1457
1187
|
id?: string | undefined;
|
|
1458
1188
|
description?: string | undefined;
|
|
1459
1189
|
amount?: number | undefined;
|
|
@@ -1475,7 +1205,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1475
1205
|
catalogEffectiveDate?: string | undefined;
|
|
1476
1206
|
childItems?: unknown[] | undefined;
|
|
1477
1207
|
}, {
|
|
1478
|
-
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;
|
|
1479
1209
|
id?: string | undefined;
|
|
1480
1210
|
description?: string | undefined;
|
|
1481
1211
|
amount?: number | undefined;
|
|
@@ -1498,12 +1228,11 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1498
1228
|
childItems?: unknown[] | undefined;
|
|
1499
1229
|
}>, "many">>;
|
|
1500
1230
|
}, "strip", z.ZodTypeAny, {
|
|
1501
|
-
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;
|
|
1502
1232
|
id?: string | undefined;
|
|
1503
1233
|
status?: "DRAFT" | "COMMITTED" | "VOID" | undefined;
|
|
1504
|
-
amount?: number | undefined;
|
|
1505
1234
|
items?: {
|
|
1506
|
-
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;
|
|
1507
1236
|
id?: string | undefined;
|
|
1508
1237
|
description?: string | undefined;
|
|
1509
1238
|
amount?: number | undefined;
|
|
@@ -1526,6 +1255,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1526
1255
|
childItems?: unknown[] | undefined;
|
|
1527
1256
|
}[] | undefined;
|
|
1528
1257
|
organizationId?: string | undefined;
|
|
1258
|
+
amount?: number | undefined;
|
|
1529
1259
|
creditAdj?: number | undefined;
|
|
1530
1260
|
refundAdj?: number | undefined;
|
|
1531
1261
|
invoiceDate?: string | undefined;
|
|
@@ -1534,7 +1264,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1534
1264
|
balance?: number | undefined;
|
|
1535
1265
|
bundleKeys?: string | undefined;
|
|
1536
1266
|
credits?: {
|
|
1537
|
-
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;
|
|
1538
1268
|
id?: string | undefined;
|
|
1539
1269
|
description?: string | undefined;
|
|
1540
1270
|
amount?: number | undefined;
|
|
@@ -1557,12 +1287,11 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1557
1287
|
childItems?: unknown[] | undefined;
|
|
1558
1288
|
}[] | undefined;
|
|
1559
1289
|
}, {
|
|
1560
|
-
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;
|
|
1561
1291
|
id?: string | undefined;
|
|
1562
1292
|
status?: "DRAFT" | "COMMITTED" | "VOID" | undefined;
|
|
1563
|
-
amount?: number | undefined;
|
|
1564
1293
|
items?: {
|
|
1565
|
-
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;
|
|
1566
1295
|
id?: string | undefined;
|
|
1567
1296
|
description?: string | undefined;
|
|
1568
1297
|
amount?: number | undefined;
|
|
@@ -1585,6 +1314,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1585
1314
|
childItems?: unknown[] | undefined;
|
|
1586
1315
|
}[] | undefined;
|
|
1587
1316
|
organizationId?: string | undefined;
|
|
1317
|
+
amount?: number | undefined;
|
|
1588
1318
|
creditAdj?: number | undefined;
|
|
1589
1319
|
refundAdj?: number | undefined;
|
|
1590
1320
|
invoiceDate?: string | undefined;
|
|
@@ -1593,7 +1323,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1593
1323
|
balance?: number | undefined;
|
|
1594
1324
|
bundleKeys?: string | undefined;
|
|
1595
1325
|
credits?: {
|
|
1596
|
-
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;
|
|
1597
1327
|
id?: string | undefined;
|
|
1598
1328
|
description?: string | undefined;
|
|
1599
1329
|
amount?: number | undefined;
|
|
@@ -1623,6 +1353,80 @@ export declare const zGetInvoiceResponse: z.ZodObject<{
|
|
|
1623
1353
|
}, {
|
|
1624
1354
|
html?: string | undefined;
|
|
1625
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
|
+
}>;
|
|
1626
1430
|
export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
1627
1431
|
limits: z.ZodOptional<z.ZodObject<{
|
|
1628
1432
|
cpu: z.ZodNumber;
|
|
@@ -1829,18 +1633,19 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
|
1829
1633
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1830
1634
|
tier: "basic" | "pro";
|
|
1831
1635
|
version_channel: string;
|
|
1636
|
+
ready?: boolean | undefined;
|
|
1832
1637
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1833
1638
|
endpoint?: string | undefined;
|
|
1834
1639
|
certificate_ca?: string | undefined;
|
|
1835
1640
|
version_current?: string | undefined;
|
|
1836
1641
|
created_at?: string | undefined;
|
|
1837
1642
|
updated_at?: string | undefined;
|
|
1838
|
-
ready?: boolean | undefined;
|
|
1839
1643
|
}, {
|
|
1840
1644
|
name: string;
|
|
1841
1645
|
id: string;
|
|
1842
1646
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1843
1647
|
tier: "basic" | "pro";
|
|
1648
|
+
ready?: boolean | undefined;
|
|
1844
1649
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1845
1650
|
endpoint?: string | undefined;
|
|
1846
1651
|
version_channel?: string | undefined;
|
|
@@ -1848,7 +1653,6 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
|
1848
1653
|
version_current?: string | undefined;
|
|
1849
1654
|
created_at?: string | undefined;
|
|
1850
1655
|
updated_at?: string | undefined;
|
|
1851
|
-
ready?: boolean | undefined;
|
|
1852
1656
|
}>, "many">;
|
|
1853
1657
|
export declare const zCreateClusterResponse: z.ZodString;
|
|
1854
1658
|
export declare const zDeleteClusterResponse: z.ZodString;
|
|
@@ -1871,18 +1675,19 @@ export declare const zGetClusterResponse: z.ZodObject<{
|
|
|
1871
1675
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1872
1676
|
tier: "basic" | "pro";
|
|
1873
1677
|
version_channel: string;
|
|
1678
|
+
ready?: boolean | undefined;
|
|
1874
1679
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1875
1680
|
endpoint?: string | undefined;
|
|
1876
1681
|
certificate_ca?: string | undefined;
|
|
1877
1682
|
version_current?: string | undefined;
|
|
1878
1683
|
created_at?: string | undefined;
|
|
1879
1684
|
updated_at?: string | undefined;
|
|
1880
|
-
ready?: boolean | undefined;
|
|
1881
1685
|
}, {
|
|
1882
1686
|
name: string;
|
|
1883
1687
|
id: string;
|
|
1884
1688
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1885
1689
|
tier: "basic" | "pro";
|
|
1690
|
+
ready?: boolean | undefined;
|
|
1886
1691
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1887
1692
|
endpoint?: string | undefined;
|
|
1888
1693
|
version_channel?: string | undefined;
|
|
@@ -1890,7 +1695,6 @@ export declare const zGetClusterResponse: z.ZodObject<{
|
|
|
1890
1695
|
version_current?: string | undefined;
|
|
1891
1696
|
created_at?: string | undefined;
|
|
1892
1697
|
updated_at?: string | undefined;
|
|
1893
|
-
ready?: boolean | undefined;
|
|
1894
1698
|
}>;
|
|
1895
1699
|
export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
1896
1700
|
name: z.ZodString;
|
|
@@ -1911,18 +1715,19 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
|
1911
1715
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1912
1716
|
tier: "basic" | "pro";
|
|
1913
1717
|
version_channel: string;
|
|
1718
|
+
ready?: boolean | undefined;
|
|
1914
1719
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1915
1720
|
endpoint?: string | undefined;
|
|
1916
1721
|
certificate_ca?: string | undefined;
|
|
1917
1722
|
version_current?: string | undefined;
|
|
1918
1723
|
created_at?: string | undefined;
|
|
1919
1724
|
updated_at?: string | undefined;
|
|
1920
|
-
ready?: boolean | undefined;
|
|
1921
1725
|
}, {
|
|
1922
1726
|
name: string;
|
|
1923
1727
|
id: string;
|
|
1924
1728
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1925
1729
|
tier: "basic" | "pro";
|
|
1730
|
+
ready?: boolean | undefined;
|
|
1926
1731
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1927
1732
|
endpoint?: string | undefined;
|
|
1928
1733
|
version_channel?: string | undefined;
|
|
@@ -1930,7 +1735,6 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
|
1930
1735
|
version_current?: string | undefined;
|
|
1931
1736
|
created_at?: string | undefined;
|
|
1932
1737
|
updated_at?: string | undefined;
|
|
1933
|
-
ready?: boolean | undefined;
|
|
1934
1738
|
}>;
|
|
1935
1739
|
export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
1936
1740
|
name: z.ZodString;
|
|
@@ -1951,18 +1755,19 @@ export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
|
1951
1755
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1952
1756
|
tier: "basic" | "pro";
|
|
1953
1757
|
version_channel: string;
|
|
1758
|
+
ready?: boolean | undefined;
|
|
1954
1759
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1955
1760
|
endpoint?: string | undefined;
|
|
1956
1761
|
certificate_ca?: string | undefined;
|
|
1957
1762
|
version_current?: string | undefined;
|
|
1958
1763
|
created_at?: string | undefined;
|
|
1959
1764
|
updated_at?: string | undefined;
|
|
1960
|
-
ready?: boolean | undefined;
|
|
1961
1765
|
}, {
|
|
1962
1766
|
name: string;
|
|
1963
1767
|
id: string;
|
|
1964
1768
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1965
1769
|
tier: "basic" | "pro";
|
|
1770
|
+
ready?: boolean | undefined;
|
|
1966
1771
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1967
1772
|
endpoint?: string | undefined;
|
|
1968
1773
|
version_channel?: string | undefined;
|
|
@@ -1970,179 +1775,7 @@ export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
|
1970
1775
|
version_current?: string | undefined;
|
|
1971
1776
|
created_at?: string | undefined;
|
|
1972
1777
|
updated_at?: string | undefined;
|
|
1973
|
-
ready?: boolean | undefined;
|
|
1974
1778
|
}>;
|
|
1975
|
-
export declare const zGetInfrastructureResponse: z.ZodArray<z.ZodObject<{
|
|
1976
|
-
sku: z.ZodString;
|
|
1977
|
-
provider: z.ZodString;
|
|
1978
|
-
region: z.ZodString;
|
|
1979
|
-
sub_region: z.ZodString;
|
|
1980
|
-
csp_region: z.ZodString;
|
|
1981
|
-
csp_zone: z.ZodString;
|
|
1982
|
-
instance_type: z.ZodString;
|
|
1983
|
-
architecture: z.ZodString;
|
|
1984
|
-
os: z.ZodString;
|
|
1985
|
-
vcpu: z.ZodNumber;
|
|
1986
|
-
memory: z.ZodNumber;
|
|
1987
|
-
local_storage: z.ZodNumber;
|
|
1988
|
-
accelerator_name: z.ZodOptional<z.ZodString>;
|
|
1989
|
-
accelerator_manufacturer: z.ZodOptional<z.ZodString>;
|
|
1990
|
-
accelerator_count: z.ZodOptional<z.ZodNumber>;
|
|
1991
|
-
accelerator_memory: z.ZodOptional<z.ZodNumber>;
|
|
1992
|
-
pods_capacity: z.ZodOptional<z.ZodNumber>;
|
|
1993
|
-
capacity_type: z.ZodOptional<z.ZodString>;
|
|
1994
|
-
price: z.ZodNumber;
|
|
1995
|
-
available: z.ZodOptional<z.ZodBoolean>;
|
|
1996
|
-
}, "strip", z.ZodTypeAny, {
|
|
1997
|
-
memory: number;
|
|
1998
|
-
region: string;
|
|
1999
|
-
sku: string;
|
|
2000
|
-
provider: string;
|
|
2001
|
-
sub_region: string;
|
|
2002
|
-
csp_region: string;
|
|
2003
|
-
csp_zone: string;
|
|
2004
|
-
instance_type: string;
|
|
2005
|
-
architecture: string;
|
|
2006
|
-
os: string;
|
|
2007
|
-
vcpu: number;
|
|
2008
|
-
local_storage: number;
|
|
2009
|
-
price: number;
|
|
2010
|
-
accelerator_name?: string | undefined;
|
|
2011
|
-
accelerator_manufacturer?: string | undefined;
|
|
2012
|
-
accelerator_count?: number | undefined;
|
|
2013
|
-
accelerator_memory?: number | undefined;
|
|
2014
|
-
pods_capacity?: number | undefined;
|
|
2015
|
-
capacity_type?: string | undefined;
|
|
2016
|
-
available?: boolean | undefined;
|
|
2017
|
-
}, {
|
|
2018
|
-
memory: number;
|
|
2019
|
-
region: string;
|
|
2020
|
-
sku: string;
|
|
2021
|
-
provider: string;
|
|
2022
|
-
sub_region: string;
|
|
2023
|
-
csp_region: string;
|
|
2024
|
-
csp_zone: string;
|
|
2025
|
-
instance_type: string;
|
|
2026
|
-
architecture: string;
|
|
2027
|
-
os: string;
|
|
2028
|
-
vcpu: number;
|
|
2029
|
-
local_storage: number;
|
|
2030
|
-
price: number;
|
|
2031
|
-
accelerator_name?: string | undefined;
|
|
2032
|
-
accelerator_manufacturer?: string | undefined;
|
|
2033
|
-
accelerator_count?: number | undefined;
|
|
2034
|
-
accelerator_memory?: number | undefined;
|
|
2035
|
-
pods_capacity?: number | undefined;
|
|
2036
|
-
capacity_type?: string | undefined;
|
|
2037
|
-
available?: boolean | undefined;
|
|
2038
|
-
}>, "many">;
|
|
2039
|
-
export declare const zGetFacetsResponse: z.ZodArray<z.ZodObject<{
|
|
2040
|
-
provider: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2041
|
-
region: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2042
|
-
sub_region: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2043
|
-
csp_region: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2044
|
-
vcpu_min: z.ZodOptional<z.ZodNumber>;
|
|
2045
|
-
vcpu_max: z.ZodOptional<z.ZodNumber>;
|
|
2046
|
-
memory_min: z.ZodOptional<z.ZodNumber>;
|
|
2047
|
-
memory_max: z.ZodOptional<z.ZodNumber>;
|
|
2048
|
-
storage_local_min: z.ZodOptional<z.ZodNumber>;
|
|
2049
|
-
storage_local_max: z.ZodOptional<z.ZodNumber>;
|
|
2050
|
-
accelerator_name: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2051
|
-
accelerator_manufacturer: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2052
|
-
accelerator_count_min: z.ZodOptional<z.ZodNumber>;
|
|
2053
|
-
accelerator_count_max: z.ZodOptional<z.ZodNumber>;
|
|
2054
|
-
accelerator_memory_min: z.ZodOptional<z.ZodNumber>;
|
|
2055
|
-
accelerator_memory_max: z.ZodOptional<z.ZodNumber>;
|
|
2056
|
-
price_min: z.ZodOptional<z.ZodNumber>;
|
|
2057
|
-
price_max: z.ZodOptional<z.ZodNumber>;
|
|
2058
|
-
regions_struct: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2059
|
-
region: z.ZodOptional<z.ZodString>;
|
|
2060
|
-
sub_region: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2061
|
-
}, "strip", z.ZodTypeAny, {
|
|
2062
|
-
region?: string | undefined;
|
|
2063
|
-
sub_region?: string[] | undefined;
|
|
2064
|
-
}, {
|
|
2065
|
-
region?: string | undefined;
|
|
2066
|
-
sub_region?: string[] | undefined;
|
|
2067
|
-
}>, "many">>;
|
|
2068
|
-
accelerators_struct: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2069
|
-
accelerator_manufacturer: z.ZodOptional<z.ZodString>;
|
|
2070
|
-
accelerator_name: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2071
|
-
}, "strip", z.ZodTypeAny, {
|
|
2072
|
-
accelerator_name?: string[] | undefined;
|
|
2073
|
-
accelerator_manufacturer?: string | undefined;
|
|
2074
|
-
}, {
|
|
2075
|
-
accelerator_name?: string[] | undefined;
|
|
2076
|
-
accelerator_manufacturer?: string | undefined;
|
|
2077
|
-
}>, "many">>;
|
|
2078
|
-
count_total: z.ZodOptional<z.ZodNumber>;
|
|
2079
|
-
count_accelerators: z.ZodOptional<z.ZodNumber>;
|
|
2080
|
-
count_instance_types: z.ZodOptional<z.ZodNumber>;
|
|
2081
|
-
count_accelerators_instance_types: z.ZodOptional<z.ZodNumber>;
|
|
2082
|
-
}, "strip", z.ZodTypeAny, {
|
|
2083
|
-
region?: string[] | undefined;
|
|
2084
|
-
provider?: string[] | undefined;
|
|
2085
|
-
sub_region?: string[] | undefined;
|
|
2086
|
-
csp_region?: string[] | undefined;
|
|
2087
|
-
accelerator_name?: string[] | undefined;
|
|
2088
|
-
accelerator_manufacturer?: string[] | undefined;
|
|
2089
|
-
accelerator_count_min?: number | undefined;
|
|
2090
|
-
accelerator_count_max?: number | undefined;
|
|
2091
|
-
accelerator_memory_min?: number | undefined;
|
|
2092
|
-
accelerator_memory_max?: number | undefined;
|
|
2093
|
-
memory_min?: number | undefined;
|
|
2094
|
-
memory_max?: number | undefined;
|
|
2095
|
-
vcpu_min?: number | undefined;
|
|
2096
|
-
vcpu_max?: number | undefined;
|
|
2097
|
-
storage_local_min?: number | undefined;
|
|
2098
|
-
storage_local_max?: number | undefined;
|
|
2099
|
-
price_min?: number | undefined;
|
|
2100
|
-
price_max?: number | undefined;
|
|
2101
|
-
regions_struct?: {
|
|
2102
|
-
region?: string | undefined;
|
|
2103
|
-
sub_region?: string[] | undefined;
|
|
2104
|
-
}[] | undefined;
|
|
2105
|
-
accelerators_struct?: {
|
|
2106
|
-
accelerator_name?: string[] | undefined;
|
|
2107
|
-
accelerator_manufacturer?: string | undefined;
|
|
2108
|
-
}[] | undefined;
|
|
2109
|
-
count_total?: number | undefined;
|
|
2110
|
-
count_accelerators?: number | undefined;
|
|
2111
|
-
count_instance_types?: number | undefined;
|
|
2112
|
-
count_accelerators_instance_types?: number | undefined;
|
|
2113
|
-
}, {
|
|
2114
|
-
region?: string[] | undefined;
|
|
2115
|
-
provider?: string[] | undefined;
|
|
2116
|
-
sub_region?: string[] | undefined;
|
|
2117
|
-
csp_region?: string[] | undefined;
|
|
2118
|
-
accelerator_name?: string[] | undefined;
|
|
2119
|
-
accelerator_manufacturer?: string[] | undefined;
|
|
2120
|
-
accelerator_count_min?: number | undefined;
|
|
2121
|
-
accelerator_count_max?: number | undefined;
|
|
2122
|
-
accelerator_memory_min?: number | undefined;
|
|
2123
|
-
accelerator_memory_max?: number | undefined;
|
|
2124
|
-
memory_min?: number | undefined;
|
|
2125
|
-
memory_max?: number | undefined;
|
|
2126
|
-
vcpu_min?: number | undefined;
|
|
2127
|
-
vcpu_max?: number | undefined;
|
|
2128
|
-
storage_local_min?: number | undefined;
|
|
2129
|
-
storage_local_max?: number | undefined;
|
|
2130
|
-
price_min?: number | undefined;
|
|
2131
|
-
price_max?: number | undefined;
|
|
2132
|
-
regions_struct?: {
|
|
2133
|
-
region?: string | undefined;
|
|
2134
|
-
sub_region?: string[] | undefined;
|
|
2135
|
-
}[] | undefined;
|
|
2136
|
-
accelerators_struct?: {
|
|
2137
|
-
accelerator_name?: string[] | undefined;
|
|
2138
|
-
accelerator_manufacturer?: string | undefined;
|
|
2139
|
-
}[] | undefined;
|
|
2140
|
-
count_total?: number | undefined;
|
|
2141
|
-
count_accelerators?: number | undefined;
|
|
2142
|
-
count_instance_types?: number | undefined;
|
|
2143
|
-
count_accelerators_instance_types?: number | undefined;
|
|
2144
|
-
}>, "many">;
|
|
2145
|
-
export declare const zGetRegionsResponse: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
2146
1779
|
export declare const zListInvitesResponse: z.ZodArray<z.ZodObject<{
|
|
2147
1780
|
id: z.ZodOptional<z.ZodString>;
|
|
2148
1781
|
organization_id: z.ZodOptional<z.ZodString>;
|
|
@@ -2201,344 +1834,8 @@ export declare const zGetInviteResponse: z.ZodObject<{
|
|
|
2201
1834
|
organization_id?: string | undefined;
|
|
2202
1835
|
}>;
|
|
2203
1836
|
export declare const zGetOrganizationResponse: z.ZodObject<{
|
|
2204
|
-
name: z.ZodString;
|
|
2205
|
-
contactInfo: z.ZodObject<{
|
|
2206
|
-
address1: z.ZodOptional<z.ZodString>;
|
|
2207
|
-
address2: z.ZodOptional<z.ZodString>;
|
|
2208
|
-
postalCode: z.ZodOptional<z.ZodString>;
|
|
2209
|
-
city: z.ZodOptional<z.ZodString>;
|
|
2210
|
-
state: z.ZodOptional<z.ZodString>;
|
|
2211
|
-
country: z.ZodOptional<z.ZodString>;
|
|
2212
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
2213
|
-
email: z.ZodString;
|
|
2214
|
-
first_name: z.ZodString;
|
|
2215
|
-
last_name: z.ZodString;
|
|
2216
|
-
}, "strip", z.ZodTypeAny, {
|
|
2217
|
-
email: string;
|
|
2218
|
-
first_name: string;
|
|
2219
|
-
last_name: string;
|
|
2220
|
-
state?: string | undefined;
|
|
2221
|
-
country?: string | undefined;
|
|
2222
|
-
address1?: string | undefined;
|
|
2223
|
-
address2?: string | undefined;
|
|
2224
|
-
postalCode?: string | undefined;
|
|
2225
|
-
city?: string | undefined;
|
|
2226
|
-
phone?: string | undefined;
|
|
2227
|
-
}, {
|
|
2228
|
-
email: string;
|
|
2229
|
-
first_name: string;
|
|
2230
|
-
last_name: string;
|
|
2231
|
-
state?: string | undefined;
|
|
2232
|
-
country?: string | undefined;
|
|
2233
|
-
address1?: string | undefined;
|
|
2234
|
-
address2?: string | undefined;
|
|
2235
|
-
postalCode?: string | undefined;
|
|
2236
|
-
city?: string | undefined;
|
|
2237
|
-
phone?: string | undefined;
|
|
2238
|
-
}>;
|
|
2239
|
-
id: z.ZodString;
|
|
2240
|
-
date_created: z.ZodString;
|
|
2241
|
-
quota: z.ZodObject<{
|
|
2242
|
-
basic_clusters_max: z.ZodNumber;
|
|
2243
|
-
basic_clusters_available: z.ZodNumber;
|
|
2244
|
-
pro_clusters_max: z.ZodNumber;
|
|
2245
|
-
pro_clusters_available: z.ZodNumber;
|
|
2246
|
-
fleets_max: z.ZodNumber;
|
|
2247
|
-
managed_fleets_cpu_max: z.ZodNumber;
|
|
2248
|
-
cluster_tiers: z.ZodArray<z.ZodString, "many">;
|
|
2249
|
-
regions: z.ZodArray<z.ZodString, "many">;
|
|
2250
|
-
versions: z.ZodArray<z.ZodObject<{
|
|
2251
|
-
id: z.ZodString;
|
|
2252
|
-
label: z.ZodString;
|
|
2253
|
-
}, "strip", z.ZodTypeAny, {
|
|
2254
|
-
id: string;
|
|
2255
|
-
label: string;
|
|
2256
|
-
}, {
|
|
2257
|
-
id: string;
|
|
2258
|
-
label: string;
|
|
2259
|
-
}>, "many">;
|
|
2260
|
-
}, "strip", z.ZodTypeAny, {
|
|
2261
|
-
versions: {
|
|
2262
|
-
id: string;
|
|
2263
|
-
label: string;
|
|
2264
|
-
}[];
|
|
2265
|
-
basic_clusters_max: number;
|
|
2266
|
-
basic_clusters_available: number;
|
|
2267
|
-
pro_clusters_max: number;
|
|
2268
|
-
pro_clusters_available: number;
|
|
2269
|
-
fleets_max: number;
|
|
2270
|
-
managed_fleets_cpu_max: number;
|
|
2271
|
-
cluster_tiers: string[];
|
|
2272
|
-
regions: string[];
|
|
2273
|
-
}, {
|
|
2274
|
-
versions: {
|
|
2275
|
-
id: string;
|
|
2276
|
-
label: string;
|
|
2277
|
-
}[];
|
|
2278
|
-
basic_clusters_max: number;
|
|
2279
|
-
basic_clusters_available: number;
|
|
2280
|
-
pro_clusters_max: number;
|
|
2281
|
-
pro_clusters_available: number;
|
|
2282
|
-
fleets_max: number;
|
|
2283
|
-
managed_fleets_cpu_max: number;
|
|
2284
|
-
cluster_tiers: string[];
|
|
2285
|
-
regions: string[];
|
|
2286
|
-
}>;
|
|
2287
|
-
pending_actions: z.ZodArray<z.ZodEnum<["signup-billing-address", "signup-payment-method", "signup-invite-team", "signup-create-cluster"]>, "many">;
|
|
2288
|
-
status: z.ZodEnum<["active", "closed", "suspended"]>;
|
|
2289
|
-
}, "strip", z.ZodTypeAny, {
|
|
2290
|
-
name: string;
|
|
2291
|
-
id: string;
|
|
2292
|
-
status: "active" | "closed" | "suspended";
|
|
2293
|
-
date_created: string;
|
|
2294
|
-
contactInfo: {
|
|
2295
|
-
email: string;
|
|
2296
|
-
first_name: string;
|
|
2297
|
-
last_name: string;
|
|
2298
|
-
state?: string | undefined;
|
|
2299
|
-
country?: string | undefined;
|
|
2300
|
-
address1?: string | undefined;
|
|
2301
|
-
address2?: string | undefined;
|
|
2302
|
-
postalCode?: string | undefined;
|
|
2303
|
-
city?: string | undefined;
|
|
2304
|
-
phone?: string | undefined;
|
|
2305
|
-
};
|
|
2306
|
-
quota: {
|
|
2307
|
-
versions: {
|
|
2308
|
-
id: string;
|
|
2309
|
-
label: string;
|
|
2310
|
-
}[];
|
|
2311
|
-
basic_clusters_max: number;
|
|
2312
|
-
basic_clusters_available: number;
|
|
2313
|
-
pro_clusters_max: number;
|
|
2314
|
-
pro_clusters_available: number;
|
|
2315
|
-
fleets_max: number;
|
|
2316
|
-
managed_fleets_cpu_max: number;
|
|
2317
|
-
cluster_tiers: string[];
|
|
2318
|
-
regions: string[];
|
|
2319
|
-
};
|
|
2320
|
-
pending_actions: ("signup-payment-method" | "signup-billing-address" | "signup-invite-team" | "signup-create-cluster")[];
|
|
2321
|
-
}, {
|
|
2322
|
-
name: string;
|
|
2323
|
-
id: string;
|
|
2324
|
-
status: "active" | "closed" | "suspended";
|
|
2325
|
-
date_created: string;
|
|
2326
|
-
contactInfo: {
|
|
2327
|
-
email: string;
|
|
2328
|
-
first_name: string;
|
|
2329
|
-
last_name: string;
|
|
2330
|
-
state?: string | undefined;
|
|
2331
|
-
country?: string | undefined;
|
|
2332
|
-
address1?: string | undefined;
|
|
2333
|
-
address2?: string | undefined;
|
|
2334
|
-
postalCode?: string | undefined;
|
|
2335
|
-
city?: string | undefined;
|
|
2336
|
-
phone?: string | undefined;
|
|
2337
|
-
};
|
|
2338
|
-
quota: {
|
|
2339
|
-
versions: {
|
|
2340
|
-
id: string;
|
|
2341
|
-
label: string;
|
|
2342
|
-
}[];
|
|
2343
|
-
basic_clusters_max: number;
|
|
2344
|
-
basic_clusters_available: number;
|
|
2345
|
-
pro_clusters_max: number;
|
|
2346
|
-
pro_clusters_available: number;
|
|
2347
|
-
fleets_max: number;
|
|
2348
|
-
managed_fleets_cpu_max: number;
|
|
2349
|
-
cluster_tiers: string[];
|
|
2350
|
-
regions: string[];
|
|
2351
|
-
};
|
|
2352
|
-
pending_actions: ("signup-payment-method" | "signup-billing-address" | "signup-invite-team" | "signup-create-cluster")[];
|
|
2353
|
-
}>;
|
|
2354
|
-
export declare const zCreateOrganizationResponse: z.ZodObject<{
|
|
2355
|
-
name: z.ZodString;
|
|
2356
|
-
contactInfo: z.ZodObject<{
|
|
2357
|
-
address1: z.ZodOptional<z.ZodString>;
|
|
2358
|
-
address2: z.ZodOptional<z.ZodString>;
|
|
2359
|
-
postalCode: z.ZodOptional<z.ZodString>;
|
|
2360
|
-
city: z.ZodOptional<z.ZodString>;
|
|
2361
|
-
state: z.ZodOptional<z.ZodString>;
|
|
2362
|
-
country: z.ZodOptional<z.ZodString>;
|
|
2363
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
2364
|
-
email: z.ZodString;
|
|
2365
|
-
first_name: z.ZodString;
|
|
2366
|
-
last_name: z.ZodString;
|
|
2367
|
-
}, "strip", z.ZodTypeAny, {
|
|
2368
|
-
email: string;
|
|
2369
|
-
first_name: string;
|
|
2370
|
-
last_name: string;
|
|
2371
|
-
state?: string | undefined;
|
|
2372
|
-
country?: string | undefined;
|
|
2373
|
-
address1?: string | undefined;
|
|
2374
|
-
address2?: string | undefined;
|
|
2375
|
-
postalCode?: string | undefined;
|
|
2376
|
-
city?: string | undefined;
|
|
2377
|
-
phone?: string | undefined;
|
|
2378
|
-
}, {
|
|
2379
|
-
email: string;
|
|
2380
|
-
first_name: string;
|
|
2381
|
-
last_name: string;
|
|
2382
|
-
state?: string | undefined;
|
|
2383
|
-
country?: string | undefined;
|
|
2384
|
-
address1?: string | undefined;
|
|
2385
|
-
address2?: string | undefined;
|
|
2386
|
-
postalCode?: string | undefined;
|
|
2387
|
-
city?: string | undefined;
|
|
2388
|
-
phone?: string | undefined;
|
|
2389
|
-
}>;
|
|
2390
|
-
id: z.ZodString;
|
|
2391
|
-
date_created: z.ZodString;
|
|
2392
|
-
quota: z.ZodObject<{
|
|
2393
|
-
basic_clusters_max: z.ZodNumber;
|
|
2394
|
-
basic_clusters_available: z.ZodNumber;
|
|
2395
|
-
pro_clusters_max: z.ZodNumber;
|
|
2396
|
-
pro_clusters_available: z.ZodNumber;
|
|
2397
|
-
fleets_max: z.ZodNumber;
|
|
2398
|
-
managed_fleets_cpu_max: z.ZodNumber;
|
|
2399
|
-
cluster_tiers: z.ZodArray<z.ZodString, "many">;
|
|
2400
|
-
regions: z.ZodArray<z.ZodString, "many">;
|
|
2401
|
-
versions: z.ZodArray<z.ZodObject<{
|
|
2402
|
-
id: z.ZodString;
|
|
2403
|
-
label: z.ZodString;
|
|
2404
|
-
}, "strip", z.ZodTypeAny, {
|
|
2405
|
-
id: string;
|
|
2406
|
-
label: string;
|
|
2407
|
-
}, {
|
|
2408
|
-
id: string;
|
|
2409
|
-
label: string;
|
|
2410
|
-
}>, "many">;
|
|
2411
|
-
}, "strip", z.ZodTypeAny, {
|
|
2412
|
-
versions: {
|
|
2413
|
-
id: string;
|
|
2414
|
-
label: string;
|
|
2415
|
-
}[];
|
|
2416
|
-
basic_clusters_max: number;
|
|
2417
|
-
basic_clusters_available: number;
|
|
2418
|
-
pro_clusters_max: number;
|
|
2419
|
-
pro_clusters_available: number;
|
|
2420
|
-
fleets_max: number;
|
|
2421
|
-
managed_fleets_cpu_max: number;
|
|
2422
|
-
cluster_tiers: string[];
|
|
2423
|
-
regions: string[];
|
|
2424
|
-
}, {
|
|
2425
|
-
versions: {
|
|
2426
|
-
id: string;
|
|
2427
|
-
label: string;
|
|
2428
|
-
}[];
|
|
2429
|
-
basic_clusters_max: number;
|
|
2430
|
-
basic_clusters_available: number;
|
|
2431
|
-
pro_clusters_max: number;
|
|
2432
|
-
pro_clusters_available: number;
|
|
2433
|
-
fleets_max: number;
|
|
2434
|
-
managed_fleets_cpu_max: number;
|
|
2435
|
-
cluster_tiers: string[];
|
|
2436
|
-
regions: string[];
|
|
2437
|
-
}>;
|
|
2438
|
-
pending_actions: z.ZodArray<z.ZodEnum<["signup-billing-address", "signup-payment-method", "signup-invite-team", "signup-create-cluster"]>, "many">;
|
|
2439
|
-
status: z.ZodEnum<["active", "closed", "suspended"]>;
|
|
2440
|
-
}, "strip", z.ZodTypeAny, {
|
|
2441
|
-
name: string;
|
|
2442
|
-
id: string;
|
|
2443
|
-
status: "active" | "closed" | "suspended";
|
|
2444
|
-
date_created: string;
|
|
2445
|
-
contactInfo: {
|
|
2446
|
-
email: string;
|
|
2447
|
-
first_name: string;
|
|
2448
|
-
last_name: string;
|
|
2449
|
-
state?: string | undefined;
|
|
2450
|
-
country?: string | undefined;
|
|
2451
|
-
address1?: string | undefined;
|
|
2452
|
-
address2?: string | undefined;
|
|
2453
|
-
postalCode?: string | undefined;
|
|
2454
|
-
city?: string | undefined;
|
|
2455
|
-
phone?: string | undefined;
|
|
2456
|
-
};
|
|
2457
|
-
quota: {
|
|
2458
|
-
versions: {
|
|
2459
|
-
id: string;
|
|
2460
|
-
label: string;
|
|
2461
|
-
}[];
|
|
2462
|
-
basic_clusters_max: number;
|
|
2463
|
-
basic_clusters_available: number;
|
|
2464
|
-
pro_clusters_max: number;
|
|
2465
|
-
pro_clusters_available: number;
|
|
2466
|
-
fleets_max: number;
|
|
2467
|
-
managed_fleets_cpu_max: number;
|
|
2468
|
-
cluster_tiers: string[];
|
|
2469
|
-
regions: string[];
|
|
2470
|
-
};
|
|
2471
|
-
pending_actions: ("signup-payment-method" | "signup-billing-address" | "signup-invite-team" | "signup-create-cluster")[];
|
|
2472
|
-
}, {
|
|
2473
|
-
name: string;
|
|
2474
|
-
id: string;
|
|
2475
|
-
status: "active" | "closed" | "suspended";
|
|
2476
|
-
date_created: string;
|
|
2477
|
-
contactInfo: {
|
|
2478
|
-
email: string;
|
|
2479
|
-
first_name: string;
|
|
2480
|
-
last_name: string;
|
|
2481
|
-
state?: string | undefined;
|
|
2482
|
-
country?: string | undefined;
|
|
2483
|
-
address1?: string | undefined;
|
|
2484
|
-
address2?: string | undefined;
|
|
2485
|
-
postalCode?: string | undefined;
|
|
2486
|
-
city?: string | undefined;
|
|
2487
|
-
phone?: string | undefined;
|
|
2488
|
-
};
|
|
2489
|
-
quota: {
|
|
2490
|
-
versions: {
|
|
2491
|
-
id: string;
|
|
2492
|
-
label: string;
|
|
2493
|
-
}[];
|
|
2494
|
-
basic_clusters_max: number;
|
|
2495
|
-
basic_clusters_available: number;
|
|
2496
|
-
pro_clusters_max: number;
|
|
2497
|
-
pro_clusters_available: number;
|
|
2498
|
-
fleets_max: number;
|
|
2499
|
-
managed_fleets_cpu_max: number;
|
|
2500
|
-
cluster_tiers: string[];
|
|
2501
|
-
regions: string[];
|
|
2502
|
-
};
|
|
2503
|
-
pending_actions: ("signup-payment-method" | "signup-billing-address" | "signup-invite-team" | "signup-create-cluster")[];
|
|
2504
|
-
}>;
|
|
2505
|
-
export declare const zUpdateOrganizationResponse: z.ZodObject<{
|
|
2506
|
-
name: z.ZodString;
|
|
2507
|
-
contactInfo: z.ZodObject<{
|
|
2508
|
-
address1: z.ZodOptional<z.ZodString>;
|
|
2509
|
-
address2: z.ZodOptional<z.ZodString>;
|
|
2510
|
-
postalCode: z.ZodOptional<z.ZodString>;
|
|
2511
|
-
city: z.ZodOptional<z.ZodString>;
|
|
2512
|
-
state: z.ZodOptional<z.ZodString>;
|
|
2513
|
-
country: z.ZodOptional<z.ZodString>;
|
|
2514
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
2515
|
-
email: z.ZodString;
|
|
2516
|
-
first_name: z.ZodString;
|
|
2517
|
-
last_name: z.ZodString;
|
|
2518
|
-
}, "strip", z.ZodTypeAny, {
|
|
2519
|
-
email: string;
|
|
2520
|
-
first_name: string;
|
|
2521
|
-
last_name: string;
|
|
2522
|
-
state?: string | undefined;
|
|
2523
|
-
country?: string | undefined;
|
|
2524
|
-
address1?: string | undefined;
|
|
2525
|
-
address2?: string | undefined;
|
|
2526
|
-
postalCode?: string | undefined;
|
|
2527
|
-
city?: string | undefined;
|
|
2528
|
-
phone?: string | undefined;
|
|
2529
|
-
}, {
|
|
2530
|
-
email: string;
|
|
2531
|
-
first_name: string;
|
|
2532
|
-
last_name: string;
|
|
2533
|
-
state?: string | undefined;
|
|
2534
|
-
country?: string | undefined;
|
|
2535
|
-
address1?: string | undefined;
|
|
2536
|
-
address2?: string | undefined;
|
|
2537
|
-
postalCode?: string | undefined;
|
|
2538
|
-
city?: string | undefined;
|
|
2539
|
-
phone?: string | undefined;
|
|
2540
|
-
}>;
|
|
2541
1837
|
id: z.ZodString;
|
|
1838
|
+
name: z.ZodOptional<z.ZodString>;
|
|
2542
1839
|
date_created: z.ZodString;
|
|
2543
1840
|
quota: z.ZodObject<{
|
|
2544
1841
|
basic_clusters_max: z.ZodNumber;
|
|
@@ -2586,25 +1883,11 @@ export declare const zUpdateOrganizationResponse: z.ZodObject<{
|
|
|
2586
1883
|
cluster_tiers: string[];
|
|
2587
1884
|
regions: string[];
|
|
2588
1885
|
}>;
|
|
2589
|
-
pending_actions: z.ZodArray<z.ZodEnum<["signup-billing-address", "signup-payment-method", "signup-invite-team", "signup-create-cluster"]>, "many">;
|
|
2590
1886
|
status: z.ZodEnum<["active", "closed", "suspended"]>;
|
|
2591
1887
|
}, "strip", z.ZodTypeAny, {
|
|
2592
|
-
name: string;
|
|
2593
1888
|
id: string;
|
|
2594
1889
|
status: "active" | "closed" | "suspended";
|
|
2595
1890
|
date_created: string;
|
|
2596
|
-
contactInfo: {
|
|
2597
|
-
email: string;
|
|
2598
|
-
first_name: string;
|
|
2599
|
-
last_name: string;
|
|
2600
|
-
state?: string | undefined;
|
|
2601
|
-
country?: string | undefined;
|
|
2602
|
-
address1?: string | undefined;
|
|
2603
|
-
address2?: string | undefined;
|
|
2604
|
-
postalCode?: string | undefined;
|
|
2605
|
-
city?: string | undefined;
|
|
2606
|
-
phone?: string | undefined;
|
|
2607
|
-
};
|
|
2608
1891
|
quota: {
|
|
2609
1892
|
versions: {
|
|
2610
1893
|
id: string;
|
|
@@ -2619,24 +1902,11 @@ export declare const zUpdateOrganizationResponse: z.ZodObject<{
|
|
|
2619
1902
|
cluster_tiers: string[];
|
|
2620
1903
|
regions: string[];
|
|
2621
1904
|
};
|
|
2622
|
-
|
|
1905
|
+
name?: string | undefined;
|
|
2623
1906
|
}, {
|
|
2624
|
-
name: string;
|
|
2625
1907
|
id: string;
|
|
2626
1908
|
status: "active" | "closed" | "suspended";
|
|
2627
1909
|
date_created: string;
|
|
2628
|
-
contactInfo: {
|
|
2629
|
-
email: string;
|
|
2630
|
-
first_name: string;
|
|
2631
|
-
last_name: string;
|
|
2632
|
-
state?: string | undefined;
|
|
2633
|
-
country?: string | undefined;
|
|
2634
|
-
address1?: string | undefined;
|
|
2635
|
-
address2?: string | undefined;
|
|
2636
|
-
postalCode?: string | undefined;
|
|
2637
|
-
city?: string | undefined;
|
|
2638
|
-
phone?: string | undefined;
|
|
2639
|
-
};
|
|
2640
1910
|
quota: {
|
|
2641
1911
|
versions: {
|
|
2642
1912
|
id: string;
|
|
@@ -2651,7 +1921,7 @@ export declare const zUpdateOrganizationResponse: z.ZodObject<{
|
|
|
2651
1921
|
cluster_tiers: string[];
|
|
2652
1922
|
regions: string[];
|
|
2653
1923
|
};
|
|
2654
|
-
|
|
1924
|
+
name?: string | undefined;
|
|
2655
1925
|
}>;
|
|
2656
1926
|
export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
|
|
2657
1927
|
name: z.ZodString;
|
|
@@ -2661,13 +1931,13 @@ export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
|
|
|
2661
1931
|
date_created: z.ZodString;
|
|
2662
1932
|
}, "strip", z.ZodTypeAny, {
|
|
2663
1933
|
name: string;
|
|
2664
|
-
role: "
|
|
1934
|
+
role: "Administrator" | "User";
|
|
2665
1935
|
date_created: string;
|
|
2666
1936
|
id?: string | undefined;
|
|
2667
1937
|
secret?: string | undefined;
|
|
2668
1938
|
}, {
|
|
2669
1939
|
name: string;
|
|
2670
|
-
role: "
|
|
1940
|
+
role: "Administrator" | "User";
|
|
2671
1941
|
date_created: string;
|
|
2672
1942
|
id?: string | undefined;
|
|
2673
1943
|
secret?: string | undefined;
|
|
@@ -2680,13 +1950,13 @@ export declare const zCreateTokenResponse: z.ZodObject<{
|
|
|
2680
1950
|
date_created: z.ZodString;
|
|
2681
1951
|
}, "strip", z.ZodTypeAny, {
|
|
2682
1952
|
name: string;
|
|
2683
|
-
role: "
|
|
1953
|
+
role: "Administrator" | "User";
|
|
2684
1954
|
date_created: string;
|
|
2685
1955
|
id?: string | undefined;
|
|
2686
1956
|
secret?: string | undefined;
|
|
2687
1957
|
}, {
|
|
2688
1958
|
name: string;
|
|
2689
|
-
role: "
|
|
1959
|
+
role: "Administrator" | "User";
|
|
2690
1960
|
date_created: string;
|
|
2691
1961
|
id?: string | undefined;
|
|
2692
1962
|
secret?: string | undefined;
|
|
@@ -2699,13 +1969,13 @@ export declare const zGetTokenResponse: z.ZodObject<{
|
|
|
2699
1969
|
date_created: z.ZodString;
|
|
2700
1970
|
}, "strip", z.ZodTypeAny, {
|
|
2701
1971
|
name: string;
|
|
2702
|
-
role: "
|
|
1972
|
+
role: "Administrator" | "User";
|
|
2703
1973
|
date_created: string;
|
|
2704
1974
|
id?: string | undefined;
|
|
2705
1975
|
secret?: string | undefined;
|
|
2706
1976
|
}, {
|
|
2707
1977
|
name: string;
|
|
2708
|
-
role: "
|
|
1978
|
+
role: "Administrator" | "User";
|
|
2709
1979
|
date_created: string;
|
|
2710
1980
|
id?: string | undefined;
|
|
2711
1981
|
secret?: string | undefined;
|
|
@@ -2718,13 +1988,13 @@ export declare const zUpdateTokenResponse: z.ZodObject<{
|
|
|
2718
1988
|
date_created: z.ZodString;
|
|
2719
1989
|
}, "strip", z.ZodTypeAny, {
|
|
2720
1990
|
name: string;
|
|
2721
|
-
role: "
|
|
1991
|
+
role: "Administrator" | "User";
|
|
2722
1992
|
date_created: string;
|
|
2723
1993
|
id?: string | undefined;
|
|
2724
1994
|
secret?: string | undefined;
|
|
2725
1995
|
}, {
|
|
2726
1996
|
name: string;
|
|
2727
|
-
role: "
|
|
1997
|
+
role: "Administrator" | "User";
|
|
2728
1998
|
date_created: string;
|
|
2729
1999
|
id?: string | undefined;
|
|
2730
2000
|
secret?: string | undefined;
|
|
@@ -2737,13 +2007,13 @@ export declare const zRegenerateTokenResponse: z.ZodObject<{
|
|
|
2737
2007
|
date_created: z.ZodString;
|
|
2738
2008
|
}, "strip", z.ZodTypeAny, {
|
|
2739
2009
|
name: string;
|
|
2740
|
-
role: "
|
|
2010
|
+
role: "Administrator" | "User";
|
|
2741
2011
|
date_created: string;
|
|
2742
2012
|
id?: string | undefined;
|
|
2743
2013
|
secret?: string | undefined;
|
|
2744
2014
|
}, {
|
|
2745
2015
|
name: string;
|
|
2746
|
-
role: "
|
|
2016
|
+
role: "Administrator" | "User";
|
|
2747
2017
|
date_created: string;
|
|
2748
2018
|
id?: string | undefined;
|
|
2749
2019
|
secret?: string | undefined;
|
|
@@ -2778,24 +2048,24 @@ export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
|
|
|
2778
2048
|
}>, "many">>;
|
|
2779
2049
|
}, "strip", z.ZodTypeAny, {
|
|
2780
2050
|
id: string;
|
|
2781
|
-
role: "
|
|
2051
|
+
role: "Administrator" | "User";
|
|
2782
2052
|
email: string;
|
|
2783
2053
|
status: "active" | "inactive";
|
|
2784
|
-
date_created: string;
|
|
2785
2054
|
first_name: string;
|
|
2786
2055
|
last_name: string;
|
|
2056
|
+
date_created: string;
|
|
2787
2057
|
cluster_permissions?: {
|
|
2788
2058
|
cluster_id: string;
|
|
2789
2059
|
permissions: "readonly" | "readwrite";
|
|
2790
2060
|
}[] | undefined;
|
|
2791
2061
|
}, {
|
|
2792
2062
|
id: string;
|
|
2793
|
-
role: "
|
|
2063
|
+
role: "Administrator" | "User";
|
|
2794
2064
|
email: string;
|
|
2795
2065
|
status: "active" | "inactive";
|
|
2796
|
-
date_created: string;
|
|
2797
2066
|
first_name: string;
|
|
2798
2067
|
last_name: string;
|
|
2068
|
+
date_created: string;
|
|
2799
2069
|
cluster_permissions?: {
|
|
2800
2070
|
cluster_id: string;
|
|
2801
2071
|
permissions: "readonly" | "readwrite";
|
|
@@ -2821,24 +2091,24 @@ export declare const zCreateUserResponse: z.ZodObject<{
|
|
|
2821
2091
|
}>, "many">>;
|
|
2822
2092
|
}, "strip", z.ZodTypeAny, {
|
|
2823
2093
|
id: string;
|
|
2824
|
-
role: "
|
|
2094
|
+
role: "Administrator" | "User";
|
|
2825
2095
|
email: string;
|
|
2826
2096
|
status: "active" | "inactive";
|
|
2827
|
-
date_created: string;
|
|
2828
2097
|
first_name: string;
|
|
2829
2098
|
last_name: string;
|
|
2099
|
+
date_created: string;
|
|
2830
2100
|
cluster_permissions?: {
|
|
2831
2101
|
cluster_id: string;
|
|
2832
2102
|
permissions: "readonly" | "readwrite";
|
|
2833
2103
|
}[] | undefined;
|
|
2834
2104
|
}, {
|
|
2835
2105
|
id: string;
|
|
2836
|
-
role: "
|
|
2106
|
+
role: "Administrator" | "User";
|
|
2837
2107
|
email: string;
|
|
2838
2108
|
status: "active" | "inactive";
|
|
2839
|
-
date_created: string;
|
|
2840
2109
|
first_name: string;
|
|
2841
2110
|
last_name: string;
|
|
2111
|
+
date_created: string;
|
|
2842
2112
|
cluster_permissions?: {
|
|
2843
2113
|
cluster_id: string;
|
|
2844
2114
|
permissions: "readonly" | "readwrite";
|
|
@@ -2864,24 +2134,24 @@ export declare const zDeleteUserResponse: z.ZodObject<{
|
|
|
2864
2134
|
}>, "many">>;
|
|
2865
2135
|
}, "strip", z.ZodTypeAny, {
|
|
2866
2136
|
id: string;
|
|
2867
|
-
role: "
|
|
2137
|
+
role: "Administrator" | "User";
|
|
2868
2138
|
email: string;
|
|
2869
2139
|
status: "active" | "inactive";
|
|
2870
|
-
date_created: string;
|
|
2871
2140
|
first_name: string;
|
|
2872
2141
|
last_name: string;
|
|
2142
|
+
date_created: string;
|
|
2873
2143
|
cluster_permissions?: {
|
|
2874
2144
|
cluster_id: string;
|
|
2875
2145
|
permissions: "readonly" | "readwrite";
|
|
2876
2146
|
}[] | undefined;
|
|
2877
2147
|
}, {
|
|
2878
2148
|
id: string;
|
|
2879
|
-
role: "
|
|
2149
|
+
role: "Administrator" | "User";
|
|
2880
2150
|
email: string;
|
|
2881
2151
|
status: "active" | "inactive";
|
|
2882
|
-
date_created: string;
|
|
2883
2152
|
first_name: string;
|
|
2884
2153
|
last_name: string;
|
|
2154
|
+
date_created: string;
|
|
2885
2155
|
cluster_permissions?: {
|
|
2886
2156
|
cluster_id: string;
|
|
2887
2157
|
permissions: "readonly" | "readwrite";
|
|
@@ -2907,24 +2177,24 @@ export declare const zGetUserResponse: z.ZodObject<{
|
|
|
2907
2177
|
}>, "many">>;
|
|
2908
2178
|
}, "strip", z.ZodTypeAny, {
|
|
2909
2179
|
id: string;
|
|
2910
|
-
role: "
|
|
2180
|
+
role: "Administrator" | "User";
|
|
2911
2181
|
email: string;
|
|
2912
2182
|
status: "active" | "inactive";
|
|
2913
|
-
date_created: string;
|
|
2914
2183
|
first_name: string;
|
|
2915
2184
|
last_name: string;
|
|
2185
|
+
date_created: string;
|
|
2916
2186
|
cluster_permissions?: {
|
|
2917
2187
|
cluster_id: string;
|
|
2918
2188
|
permissions: "readonly" | "readwrite";
|
|
2919
2189
|
}[] | undefined;
|
|
2920
2190
|
}, {
|
|
2921
2191
|
id: string;
|
|
2922
|
-
role: "
|
|
2192
|
+
role: "Administrator" | "User";
|
|
2923
2193
|
email: string;
|
|
2924
2194
|
status: "active" | "inactive";
|
|
2925
|
-
date_created: string;
|
|
2926
2195
|
first_name: string;
|
|
2927
2196
|
last_name: string;
|
|
2197
|
+
date_created: string;
|
|
2928
2198
|
cluster_permissions?: {
|
|
2929
2199
|
cluster_id: string;
|
|
2930
2200
|
permissions: "readonly" | "readwrite";
|
|
@@ -2950,24 +2220,24 @@ export declare const zUpdateUserResponse: z.ZodObject<{
|
|
|
2950
2220
|
}>, "many">>;
|
|
2951
2221
|
}, "strip", z.ZodTypeAny, {
|
|
2952
2222
|
id: string;
|
|
2953
|
-
role: "
|
|
2223
|
+
role: "Administrator" | "User";
|
|
2954
2224
|
email: string;
|
|
2955
2225
|
status: "active" | "inactive";
|
|
2956
|
-
date_created: string;
|
|
2957
2226
|
first_name: string;
|
|
2958
2227
|
last_name: string;
|
|
2228
|
+
date_created: string;
|
|
2959
2229
|
cluster_permissions?: {
|
|
2960
2230
|
cluster_id: string;
|
|
2961
2231
|
permissions: "readonly" | "readwrite";
|
|
2962
2232
|
}[] | undefined;
|
|
2963
2233
|
}, {
|
|
2964
2234
|
id: string;
|
|
2965
|
-
role: "
|
|
2235
|
+
role: "Administrator" | "User";
|
|
2966
2236
|
email: string;
|
|
2967
2237
|
status: "active" | "inactive";
|
|
2968
|
-
date_created: string;
|
|
2969
2238
|
first_name: string;
|
|
2970
2239
|
last_name: string;
|
|
2240
|
+
date_created: string;
|
|
2971
2241
|
cluster_permissions?: {
|
|
2972
2242
|
cluster_id: string;
|
|
2973
2243
|
permissions: "readonly" | "readwrite";
|
|
@@ -2993,24 +2263,24 @@ export declare const zDeleteClusterPermissionsResponse: z.ZodObject<{
|
|
|
2993
2263
|
}>, "many">>;
|
|
2994
2264
|
}, "strip", z.ZodTypeAny, {
|
|
2995
2265
|
id: string;
|
|
2996
|
-
role: "
|
|
2266
|
+
role: "Administrator" | "User";
|
|
2997
2267
|
email: string;
|
|
2998
2268
|
status: "active" | "inactive";
|
|
2999
|
-
date_created: string;
|
|
3000
2269
|
first_name: string;
|
|
3001
2270
|
last_name: string;
|
|
2271
|
+
date_created: string;
|
|
3002
2272
|
cluster_permissions?: {
|
|
3003
2273
|
cluster_id: string;
|
|
3004
2274
|
permissions: "readonly" | "readwrite";
|
|
3005
2275
|
}[] | undefined;
|
|
3006
2276
|
}, {
|
|
3007
2277
|
id: string;
|
|
3008
|
-
role: "
|
|
2278
|
+
role: "Administrator" | "User";
|
|
3009
2279
|
email: string;
|
|
3010
2280
|
status: "active" | "inactive";
|
|
3011
|
-
date_created: string;
|
|
3012
2281
|
first_name: string;
|
|
3013
2282
|
last_name: string;
|
|
2283
|
+
date_created: string;
|
|
3014
2284
|
cluster_permissions?: {
|
|
3015
2285
|
cluster_id: string;
|
|
3016
2286
|
permissions: "readonly" | "readwrite";
|
|
@@ -3036,24 +2306,24 @@ export declare const zSetClusterPermissionsResponse: z.ZodObject<{
|
|
|
3036
2306
|
}>, "many">>;
|
|
3037
2307
|
}, "strip", z.ZodTypeAny, {
|
|
3038
2308
|
id: string;
|
|
3039
|
-
role: "
|
|
2309
|
+
role: "Administrator" | "User";
|
|
3040
2310
|
email: string;
|
|
3041
2311
|
status: "active" | "inactive";
|
|
3042
|
-
date_created: string;
|
|
3043
2312
|
first_name: string;
|
|
3044
2313
|
last_name: string;
|
|
2314
|
+
date_created: string;
|
|
3045
2315
|
cluster_permissions?: {
|
|
3046
2316
|
cluster_id: string;
|
|
3047
2317
|
permissions: "readonly" | "readwrite";
|
|
3048
2318
|
}[] | undefined;
|
|
3049
2319
|
}, {
|
|
3050
2320
|
id: string;
|
|
3051
|
-
role: "
|
|
2321
|
+
role: "Administrator" | "User";
|
|
3052
2322
|
email: string;
|
|
3053
2323
|
status: "active" | "inactive";
|
|
3054
|
-
date_created: string;
|
|
3055
2324
|
first_name: string;
|
|
3056
2325
|
last_name: string;
|
|
2326
|
+
date_created: string;
|
|
3057
2327
|
cluster_permissions?: {
|
|
3058
2328
|
cluster_id: string;
|
|
3059
2329
|
permissions: "readonly" | "readwrite";
|