@cloudfleet/sdk 0.0.1-f1ad1a5 → 0.0.1-f55e163
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 +180 -549
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +193 -550
- 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 +124 -633
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +295 -1002
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +63 -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"]>>;
|
|
@@ -33,6 +70,19 @@ export declare const zClusterJoinInformation: z.ZodObject<{
|
|
|
33
70
|
tailscale: string;
|
|
34
71
|
containerd: string;
|
|
35
72
|
}>;
|
|
73
|
+
third_party_api_access_config: z.ZodObject<{
|
|
74
|
+
metadata_url: z.ZodString;
|
|
75
|
+
aws_role_arn: z.ZodString;
|
|
76
|
+
gcp_workload_identity_provider: z.ZodString;
|
|
77
|
+
}, "strip", z.ZodTypeAny, {
|
|
78
|
+
metadata_url: string;
|
|
79
|
+
aws_role_arn: string;
|
|
80
|
+
gcp_workload_identity_provider: string;
|
|
81
|
+
}, {
|
|
82
|
+
metadata_url: string;
|
|
83
|
+
aws_role_arn: string;
|
|
84
|
+
gcp_workload_identity_provider: string;
|
|
85
|
+
}>;
|
|
36
86
|
}, "strip", z.ZodTypeAny, {
|
|
37
87
|
certificate_authority: string;
|
|
38
88
|
endpoint: string;
|
|
@@ -43,6 +93,11 @@ export declare const zClusterJoinInformation: z.ZodObject<{
|
|
|
43
93
|
tailscale: string;
|
|
44
94
|
containerd: string;
|
|
45
95
|
};
|
|
96
|
+
third_party_api_access_config: {
|
|
97
|
+
metadata_url: string;
|
|
98
|
+
aws_role_arn: string;
|
|
99
|
+
gcp_workload_identity_provider: string;
|
|
100
|
+
};
|
|
46
101
|
}, {
|
|
47
102
|
certificate_authority: string;
|
|
48
103
|
endpoint: string;
|
|
@@ -53,6 +108,11 @@ export declare const zClusterJoinInformation: z.ZodObject<{
|
|
|
53
108
|
tailscale: string;
|
|
54
109
|
containerd: string;
|
|
55
110
|
};
|
|
111
|
+
third_party_api_access_config: {
|
|
112
|
+
metadata_url: string;
|
|
113
|
+
aws_role_arn: string;
|
|
114
|
+
gcp_workload_identity_provider: string;
|
|
115
|
+
};
|
|
56
116
|
}>;
|
|
57
117
|
export declare const zCluster: z.ZodObject<{
|
|
58
118
|
name: z.ZodString;
|
|
@@ -73,18 +133,19 @@ export declare const zCluster: z.ZodObject<{
|
|
|
73
133
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
74
134
|
tier: "basic" | "pro";
|
|
75
135
|
version_channel: string;
|
|
136
|
+
ready?: boolean | undefined;
|
|
76
137
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
77
138
|
endpoint?: string | undefined;
|
|
78
139
|
certificate_ca?: string | undefined;
|
|
79
140
|
version_current?: string | undefined;
|
|
80
141
|
created_at?: string | undefined;
|
|
81
142
|
updated_at?: string | undefined;
|
|
82
|
-
ready?: boolean | undefined;
|
|
83
143
|
}, {
|
|
84
144
|
name: string;
|
|
85
145
|
id: string;
|
|
86
146
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
87
147
|
tier: "basic" | "pro";
|
|
148
|
+
ready?: boolean | undefined;
|
|
88
149
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
89
150
|
endpoint?: string | undefined;
|
|
90
151
|
version_channel?: string | undefined;
|
|
@@ -92,7 +153,6 @@ export declare const zCluster: z.ZodObject<{
|
|
|
92
153
|
version_current?: string | undefined;
|
|
93
154
|
created_at?: string | undefined;
|
|
94
155
|
updated_at?: string | undefined;
|
|
95
|
-
ready?: boolean | undefined;
|
|
96
156
|
}>;
|
|
97
157
|
export declare const zClusterUpdateInput: z.ZodObject<{
|
|
98
158
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -374,140 +434,6 @@ export declare const zFleetUpdateInput: z.ZodObject<{
|
|
|
374
434
|
enabled?: boolean | undefined;
|
|
375
435
|
} | undefined;
|
|
376
436
|
}>;
|
|
377
|
-
export declare const zInfrastructureFilter: z.ZodObject<{
|
|
378
|
-
version: z.ZodOptional<z.ZodUnknown>;
|
|
379
|
-
provider: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
380
|
-
region: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
381
|
-
sub_region: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
382
|
-
csp_region: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
383
|
-
instance_type: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
384
|
-
accelerator_name: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
385
|
-
accelerator_manufacturer: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
386
|
-
accelerator_count_min: z.ZodOptional<z.ZodNumber>;
|
|
387
|
-
accelerator_count_max: z.ZodOptional<z.ZodNumber>;
|
|
388
|
-
accelerator_memory_min: z.ZodOptional<z.ZodNumber>;
|
|
389
|
-
accelerator_memory_max: z.ZodOptional<z.ZodNumber>;
|
|
390
|
-
memory_min: z.ZodOptional<z.ZodNumber>;
|
|
391
|
-
memory_max: z.ZodOptional<z.ZodNumber>;
|
|
392
|
-
vcpu_min: z.ZodOptional<z.ZodNumber>;
|
|
393
|
-
vcpu_max: z.ZodOptional<z.ZodNumber>;
|
|
394
|
-
storage_total_min: z.ZodOptional<z.ZodNumber>;
|
|
395
|
-
storage_total_max: z.ZodOptional<z.ZodNumber>;
|
|
396
|
-
storage_local_min: z.ZodOptional<z.ZodNumber>;
|
|
397
|
-
storage_local_max: z.ZodOptional<z.ZodNumber>;
|
|
398
|
-
price_min: z.ZodOptional<z.ZodNumber>;
|
|
399
|
-
price_max: z.ZodOptional<z.ZodNumber>;
|
|
400
|
-
}, "strip", z.ZodTypeAny, {
|
|
401
|
-
region?: string[] | undefined;
|
|
402
|
-
provider?: string[] | undefined;
|
|
403
|
-
sub_region?: string[] | undefined;
|
|
404
|
-
csp_region?: string[] | undefined;
|
|
405
|
-
instance_type?: string[] | undefined;
|
|
406
|
-
version?: unknown;
|
|
407
|
-
accelerator_name?: string[] | undefined;
|
|
408
|
-
accelerator_manufacturer?: string[] | undefined;
|
|
409
|
-
accelerator_count_min?: number | undefined;
|
|
410
|
-
accelerator_count_max?: number | undefined;
|
|
411
|
-
accelerator_memory_min?: number | undefined;
|
|
412
|
-
accelerator_memory_max?: number | undefined;
|
|
413
|
-
memory_min?: number | undefined;
|
|
414
|
-
memory_max?: number | undefined;
|
|
415
|
-
vcpu_min?: number | undefined;
|
|
416
|
-
vcpu_max?: number | undefined;
|
|
417
|
-
storage_total_min?: number | undefined;
|
|
418
|
-
storage_total_max?: number | undefined;
|
|
419
|
-
storage_local_min?: number | undefined;
|
|
420
|
-
storage_local_max?: number | undefined;
|
|
421
|
-
price_min?: number | undefined;
|
|
422
|
-
price_max?: number | undefined;
|
|
423
|
-
}, {
|
|
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
|
-
export declare const zInfrastructureInstance: z.ZodObject<{
|
|
448
|
-
sku: z.ZodString;
|
|
449
|
-
provider: z.ZodString;
|
|
450
|
-
region: z.ZodString;
|
|
451
|
-
sub_region: z.ZodString;
|
|
452
|
-
csp_region: z.ZodString;
|
|
453
|
-
csp_zone: z.ZodString;
|
|
454
|
-
instance_type: z.ZodString;
|
|
455
|
-
architecture: z.ZodString;
|
|
456
|
-
os: z.ZodString;
|
|
457
|
-
vcpu: z.ZodNumber;
|
|
458
|
-
memory: z.ZodNumber;
|
|
459
|
-
local_storage: z.ZodNumber;
|
|
460
|
-
accelerator_name: z.ZodOptional<z.ZodString>;
|
|
461
|
-
accelerator_manufacturer: z.ZodOptional<z.ZodString>;
|
|
462
|
-
accelerator_count: z.ZodOptional<z.ZodNumber>;
|
|
463
|
-
accelerator_memory: z.ZodOptional<z.ZodNumber>;
|
|
464
|
-
pods_capacity: z.ZodOptional<z.ZodNumber>;
|
|
465
|
-
capacity_type: z.ZodOptional<z.ZodString>;
|
|
466
|
-
price: z.ZodNumber;
|
|
467
|
-
available: z.ZodOptional<z.ZodBoolean>;
|
|
468
|
-
}, "strip", z.ZodTypeAny, {
|
|
469
|
-
memory: number;
|
|
470
|
-
region: string;
|
|
471
|
-
sku: string;
|
|
472
|
-
provider: string;
|
|
473
|
-
sub_region: string;
|
|
474
|
-
csp_region: string;
|
|
475
|
-
csp_zone: string;
|
|
476
|
-
instance_type: string;
|
|
477
|
-
architecture: string;
|
|
478
|
-
os: string;
|
|
479
|
-
vcpu: number;
|
|
480
|
-
local_storage: number;
|
|
481
|
-
price: number;
|
|
482
|
-
accelerator_name?: string | undefined;
|
|
483
|
-
accelerator_manufacturer?: string | undefined;
|
|
484
|
-
accelerator_count?: number | undefined;
|
|
485
|
-
accelerator_memory?: number | undefined;
|
|
486
|
-
pods_capacity?: number | undefined;
|
|
487
|
-
capacity_type?: string | undefined;
|
|
488
|
-
available?: boolean | undefined;
|
|
489
|
-
}, {
|
|
490
|
-
memory: number;
|
|
491
|
-
region: string;
|
|
492
|
-
sku: string;
|
|
493
|
-
provider: string;
|
|
494
|
-
sub_region: string;
|
|
495
|
-
csp_region: string;
|
|
496
|
-
csp_zone: string;
|
|
497
|
-
instance_type: string;
|
|
498
|
-
architecture: string;
|
|
499
|
-
os: string;
|
|
500
|
-
vcpu: number;
|
|
501
|
-
local_storage: number;
|
|
502
|
-
price: number;
|
|
503
|
-
accelerator_name?: string | undefined;
|
|
504
|
-
accelerator_manufacturer?: string | undefined;
|
|
505
|
-
accelerator_count?: number | undefined;
|
|
506
|
-
accelerator_memory?: number | undefined;
|
|
507
|
-
pods_capacity?: number | undefined;
|
|
508
|
-
capacity_type?: string | undefined;
|
|
509
|
-
available?: boolean | undefined;
|
|
510
|
-
}>;
|
|
511
437
|
export declare const zInvite: z.ZodObject<{
|
|
512
438
|
id: z.ZodOptional<z.ZodString>;
|
|
513
439
|
organization_id: z.ZodOptional<z.ZodString>;
|
|
@@ -563,7 +489,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
563
489
|
catalogEffectiveDate: z.ZodOptional<z.ZodString>;
|
|
564
490
|
childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
565
491
|
}, "strip", z.ZodTypeAny, {
|
|
566
|
-
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;
|
|
567
493
|
id?: string | undefined;
|
|
568
494
|
description?: string | undefined;
|
|
569
495
|
amount?: number | undefined;
|
|
@@ -585,7 +511,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
585
511
|
catalogEffectiveDate?: string | undefined;
|
|
586
512
|
childItems?: unknown[] | undefined;
|
|
587
513
|
}, {
|
|
588
|
-
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;
|
|
589
515
|
id?: string | undefined;
|
|
590
516
|
description?: string | undefined;
|
|
591
517
|
amount?: number | undefined;
|
|
@@ -630,7 +556,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
630
556
|
catalogEffectiveDate: z.ZodOptional<z.ZodString>;
|
|
631
557
|
childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
632
558
|
}, "strip", z.ZodTypeAny, {
|
|
633
|
-
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;
|
|
634
560
|
id?: string | undefined;
|
|
635
561
|
description?: string | undefined;
|
|
636
562
|
amount?: number | undefined;
|
|
@@ -652,7 +578,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
652
578
|
catalogEffectiveDate?: string | undefined;
|
|
653
579
|
childItems?: unknown[] | undefined;
|
|
654
580
|
}, {
|
|
655
|
-
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;
|
|
656
582
|
id?: string | undefined;
|
|
657
583
|
description?: string | undefined;
|
|
658
584
|
amount?: number | undefined;
|
|
@@ -675,12 +601,11 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
675
601
|
childItems?: unknown[] | undefined;
|
|
676
602
|
}>, "many">>;
|
|
677
603
|
}, "strip", z.ZodTypeAny, {
|
|
678
|
-
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;
|
|
679
605
|
id?: string | undefined;
|
|
680
606
|
status?: "DRAFT" | "COMMITTED" | "VOID" | undefined;
|
|
681
|
-
amount?: number | undefined;
|
|
682
607
|
items?: {
|
|
683
|
-
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;
|
|
684
609
|
id?: string | undefined;
|
|
685
610
|
description?: string | undefined;
|
|
686
611
|
amount?: number | undefined;
|
|
@@ -703,6 +628,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
703
628
|
childItems?: unknown[] | undefined;
|
|
704
629
|
}[] | undefined;
|
|
705
630
|
organizationId?: string | undefined;
|
|
631
|
+
amount?: number | undefined;
|
|
706
632
|
creditAdj?: number | undefined;
|
|
707
633
|
refundAdj?: number | undefined;
|
|
708
634
|
invoiceDate?: string | undefined;
|
|
@@ -711,7 +637,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
711
637
|
balance?: number | undefined;
|
|
712
638
|
bundleKeys?: string | undefined;
|
|
713
639
|
credits?: {
|
|
714
|
-
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;
|
|
715
641
|
id?: string | undefined;
|
|
716
642
|
description?: string | undefined;
|
|
717
643
|
amount?: number | undefined;
|
|
@@ -734,12 +660,11 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
734
660
|
childItems?: unknown[] | undefined;
|
|
735
661
|
}[] | undefined;
|
|
736
662
|
}, {
|
|
737
|
-
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;
|
|
738
664
|
id?: string | undefined;
|
|
739
665
|
status?: "DRAFT" | "COMMITTED" | "VOID" | undefined;
|
|
740
|
-
amount?: number | undefined;
|
|
741
666
|
items?: {
|
|
742
|
-
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;
|
|
743
668
|
id?: string | undefined;
|
|
744
669
|
description?: string | undefined;
|
|
745
670
|
amount?: number | undefined;
|
|
@@ -762,6 +687,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
762
687
|
childItems?: unknown[] | undefined;
|
|
763
688
|
}[] | undefined;
|
|
764
689
|
organizationId?: string | undefined;
|
|
690
|
+
amount?: number | undefined;
|
|
765
691
|
creditAdj?: number | undefined;
|
|
766
692
|
refundAdj?: number | undefined;
|
|
767
693
|
invoiceDate?: string | undefined;
|
|
@@ -770,7 +696,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
770
696
|
balance?: number | undefined;
|
|
771
697
|
bundleKeys?: string | undefined;
|
|
772
698
|
credits?: {
|
|
773
|
-
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;
|
|
774
700
|
id?: string | undefined;
|
|
775
701
|
description?: string | undefined;
|
|
776
702
|
amount?: number | undefined;
|
|
@@ -793,145 +719,28 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
793
719
|
childItems?: unknown[] | undefined;
|
|
794
720
|
}[] | undefined;
|
|
795
721
|
}>;
|
|
796
|
-
export declare const
|
|
797
|
-
address1: z.ZodOptional<z.ZodString>;
|
|
798
|
-
address2: z.ZodOptional<z.ZodString>;
|
|
799
|
-
postalCode: z.ZodOptional<z.ZodString>;
|
|
800
|
-
city: z.ZodOptional<z.ZodString>;
|
|
801
|
-
state: z.ZodOptional<z.ZodString>;
|
|
802
|
-
country: z.ZodOptional<z.ZodString>;
|
|
803
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
722
|
+
export declare const zOrganizationCreateInput: z.ZodObject<{
|
|
804
723
|
email: z.ZodString;
|
|
805
724
|
first_name: z.ZodString;
|
|
806
725
|
last_name: z.ZodString;
|
|
726
|
+
company_name: z.ZodString;
|
|
727
|
+
password: z.ZodString;
|
|
807
728
|
}, "strip", z.ZodTypeAny, {
|
|
808
729
|
email: string;
|
|
809
730
|
first_name: string;
|
|
810
731
|
last_name: string;
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
address1?: string | undefined;
|
|
814
|
-
address2?: string | undefined;
|
|
815
|
-
postalCode?: string | undefined;
|
|
816
|
-
city?: string | undefined;
|
|
817
|
-
phone?: string | undefined;
|
|
732
|
+
company_name: string;
|
|
733
|
+
password: string;
|
|
818
734
|
}, {
|
|
819
735
|
email: string;
|
|
820
736
|
first_name: string;
|
|
821
737
|
last_name: string;
|
|
822
|
-
|
|
823
|
-
country?: string | undefined;
|
|
824
|
-
address1?: string | undefined;
|
|
825
|
-
address2?: string | undefined;
|
|
826
|
-
postalCode?: string | undefined;
|
|
827
|
-
city?: string | undefined;
|
|
828
|
-
phone?: string | undefined;
|
|
829
|
-
}>;
|
|
830
|
-
export declare const zOrganizationCreateInput: z.ZodObject<{
|
|
831
|
-
name: z.ZodString;
|
|
832
|
-
contactInfo: z.ZodObject<{
|
|
833
|
-
address1: z.ZodOptional<z.ZodString>;
|
|
834
|
-
address2: z.ZodOptional<z.ZodString>;
|
|
835
|
-
postalCode: z.ZodOptional<z.ZodString>;
|
|
836
|
-
city: z.ZodOptional<z.ZodString>;
|
|
837
|
-
state: z.ZodOptional<z.ZodString>;
|
|
838
|
-
country: z.ZodOptional<z.ZodString>;
|
|
839
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
840
|
-
email: z.ZodString;
|
|
841
|
-
first_name: z.ZodString;
|
|
842
|
-
last_name: z.ZodString;
|
|
843
|
-
}, "strip", z.ZodTypeAny, {
|
|
844
|
-
email: string;
|
|
845
|
-
first_name: string;
|
|
846
|
-
last_name: string;
|
|
847
|
-
state?: string | undefined;
|
|
848
|
-
country?: string | undefined;
|
|
849
|
-
address1?: string | undefined;
|
|
850
|
-
address2?: string | undefined;
|
|
851
|
-
postalCode?: string | undefined;
|
|
852
|
-
city?: string | undefined;
|
|
853
|
-
phone?: string | undefined;
|
|
854
|
-
}, {
|
|
855
|
-
email: string;
|
|
856
|
-
first_name: string;
|
|
857
|
-
last_name: string;
|
|
858
|
-
state?: string | undefined;
|
|
859
|
-
country?: string | undefined;
|
|
860
|
-
address1?: string | undefined;
|
|
861
|
-
address2?: string | undefined;
|
|
862
|
-
postalCode?: string | undefined;
|
|
863
|
-
city?: string | undefined;
|
|
864
|
-
phone?: string | undefined;
|
|
865
|
-
}>;
|
|
866
|
-
password: z.ZodString;
|
|
867
|
-
}, "strip", z.ZodTypeAny, {
|
|
868
|
-
name: string;
|
|
869
|
-
contactInfo: {
|
|
870
|
-
email: string;
|
|
871
|
-
first_name: string;
|
|
872
|
-
last_name: string;
|
|
873
|
-
state?: string | undefined;
|
|
874
|
-
country?: string | undefined;
|
|
875
|
-
address1?: string | undefined;
|
|
876
|
-
address2?: string | undefined;
|
|
877
|
-
postalCode?: string | undefined;
|
|
878
|
-
city?: string | undefined;
|
|
879
|
-
phone?: string | undefined;
|
|
880
|
-
};
|
|
881
|
-
password: string;
|
|
882
|
-
}, {
|
|
883
|
-
name: string;
|
|
884
|
-
contactInfo: {
|
|
885
|
-
email: string;
|
|
886
|
-
first_name: string;
|
|
887
|
-
last_name: string;
|
|
888
|
-
state?: string | undefined;
|
|
889
|
-
country?: string | undefined;
|
|
890
|
-
address1?: string | undefined;
|
|
891
|
-
address2?: string | undefined;
|
|
892
|
-
postalCode?: string | undefined;
|
|
893
|
-
city?: string | undefined;
|
|
894
|
-
phone?: string | undefined;
|
|
895
|
-
};
|
|
738
|
+
company_name: string;
|
|
896
739
|
password: string;
|
|
897
740
|
}>;
|
|
898
741
|
export declare const zOrganization: z.ZodObject<{
|
|
899
|
-
name: z.ZodString;
|
|
900
|
-
contactInfo: z.ZodObject<{
|
|
901
|
-
address1: z.ZodOptional<z.ZodString>;
|
|
902
|
-
address2: z.ZodOptional<z.ZodString>;
|
|
903
|
-
postalCode: z.ZodOptional<z.ZodString>;
|
|
904
|
-
city: z.ZodOptional<z.ZodString>;
|
|
905
|
-
state: z.ZodOptional<z.ZodString>;
|
|
906
|
-
country: z.ZodOptional<z.ZodString>;
|
|
907
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
908
|
-
email: z.ZodString;
|
|
909
|
-
first_name: z.ZodString;
|
|
910
|
-
last_name: z.ZodString;
|
|
911
|
-
}, "strip", z.ZodTypeAny, {
|
|
912
|
-
email: string;
|
|
913
|
-
first_name: string;
|
|
914
|
-
last_name: string;
|
|
915
|
-
state?: string | undefined;
|
|
916
|
-
country?: string | undefined;
|
|
917
|
-
address1?: string | undefined;
|
|
918
|
-
address2?: string | undefined;
|
|
919
|
-
postalCode?: string | undefined;
|
|
920
|
-
city?: string | undefined;
|
|
921
|
-
phone?: string | undefined;
|
|
922
|
-
}, {
|
|
923
|
-
email: string;
|
|
924
|
-
first_name: string;
|
|
925
|
-
last_name: string;
|
|
926
|
-
state?: string | undefined;
|
|
927
|
-
country?: string | undefined;
|
|
928
|
-
address1?: string | undefined;
|
|
929
|
-
address2?: string | undefined;
|
|
930
|
-
postalCode?: string | undefined;
|
|
931
|
-
city?: string | undefined;
|
|
932
|
-
phone?: string | undefined;
|
|
933
|
-
}>;
|
|
934
742
|
id: z.ZodString;
|
|
743
|
+
name: z.ZodOptional<z.ZodString>;
|
|
935
744
|
date_created: z.ZodString;
|
|
936
745
|
quota: z.ZodObject<{
|
|
937
746
|
basic_clusters_max: z.ZodNumber;
|
|
@@ -979,25 +788,11 @@ export declare const zOrganization: z.ZodObject<{
|
|
|
979
788
|
cluster_tiers: string[];
|
|
980
789
|
regions: string[];
|
|
981
790
|
}>;
|
|
982
|
-
pending_actions: z.ZodArray<z.ZodEnum<["signup-billing-address", "signup-payment-method", "signup-invite-team", "signup-create-cluster"]>, "many">;
|
|
983
791
|
status: z.ZodEnum<["active", "closed", "suspended"]>;
|
|
984
792
|
}, "strip", z.ZodTypeAny, {
|
|
985
|
-
name: string;
|
|
986
793
|
id: string;
|
|
987
794
|
status: "active" | "closed" | "suspended";
|
|
988
795
|
date_created: string;
|
|
989
|
-
contactInfo: {
|
|
990
|
-
email: string;
|
|
991
|
-
first_name: string;
|
|
992
|
-
last_name: string;
|
|
993
|
-
state?: string | undefined;
|
|
994
|
-
country?: string | undefined;
|
|
995
|
-
address1?: string | undefined;
|
|
996
|
-
address2?: string | undefined;
|
|
997
|
-
postalCode?: string | undefined;
|
|
998
|
-
city?: string | undefined;
|
|
999
|
-
phone?: string | undefined;
|
|
1000
|
-
};
|
|
1001
796
|
quota: {
|
|
1002
797
|
versions: {
|
|
1003
798
|
id: string;
|
|
@@ -1012,24 +807,11 @@ export declare const zOrganization: z.ZodObject<{
|
|
|
1012
807
|
cluster_tiers: string[];
|
|
1013
808
|
regions: string[];
|
|
1014
809
|
};
|
|
1015
|
-
|
|
810
|
+
name?: string | undefined;
|
|
1016
811
|
}, {
|
|
1017
|
-
name: string;
|
|
1018
812
|
id: string;
|
|
1019
813
|
status: "active" | "closed" | "suspended";
|
|
1020
814
|
date_created: string;
|
|
1021
|
-
contactInfo: {
|
|
1022
|
-
email: string;
|
|
1023
|
-
first_name: string;
|
|
1024
|
-
last_name: string;
|
|
1025
|
-
state?: string | undefined;
|
|
1026
|
-
country?: string | undefined;
|
|
1027
|
-
address1?: string | undefined;
|
|
1028
|
-
address2?: string | undefined;
|
|
1029
|
-
postalCode?: string | undefined;
|
|
1030
|
-
city?: string | undefined;
|
|
1031
|
-
phone?: string | undefined;
|
|
1032
|
-
};
|
|
1033
815
|
quota: {
|
|
1034
816
|
versions: {
|
|
1035
817
|
id: string;
|
|
@@ -1044,71 +826,6 @@ export declare const zOrganization: z.ZodObject<{
|
|
|
1044
826
|
cluster_tiers: string[];
|
|
1045
827
|
regions: string[];
|
|
1046
828
|
};
|
|
1047
|
-
pending_actions: ("signup-payment-method" | "signup-billing-address" | "signup-invite-team" | "signup-create-cluster")[];
|
|
1048
|
-
}>;
|
|
1049
|
-
export declare const zOrganizationUpdateInput: z.ZodObject<{
|
|
1050
|
-
name: z.ZodOptional<z.ZodString>;
|
|
1051
|
-
contactInfo: z.ZodObject<{
|
|
1052
|
-
address1: z.ZodOptional<z.ZodString>;
|
|
1053
|
-
address2: z.ZodOptional<z.ZodString>;
|
|
1054
|
-
postalCode: z.ZodOptional<z.ZodString>;
|
|
1055
|
-
city: z.ZodOptional<z.ZodString>;
|
|
1056
|
-
state: z.ZodOptional<z.ZodString>;
|
|
1057
|
-
country: z.ZodOptional<z.ZodString>;
|
|
1058
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
1059
|
-
email: z.ZodString;
|
|
1060
|
-
first_name: z.ZodString;
|
|
1061
|
-
last_name: z.ZodString;
|
|
1062
|
-
}, "strip", z.ZodTypeAny, {
|
|
1063
|
-
email: string;
|
|
1064
|
-
first_name: string;
|
|
1065
|
-
last_name: string;
|
|
1066
|
-
state?: string | undefined;
|
|
1067
|
-
country?: string | undefined;
|
|
1068
|
-
address1?: string | undefined;
|
|
1069
|
-
address2?: string | undefined;
|
|
1070
|
-
postalCode?: string | undefined;
|
|
1071
|
-
city?: string | undefined;
|
|
1072
|
-
phone?: string | undefined;
|
|
1073
|
-
}, {
|
|
1074
|
-
email: string;
|
|
1075
|
-
first_name: string;
|
|
1076
|
-
last_name: string;
|
|
1077
|
-
state?: string | undefined;
|
|
1078
|
-
country?: string | undefined;
|
|
1079
|
-
address1?: string | undefined;
|
|
1080
|
-
address2?: string | undefined;
|
|
1081
|
-
postalCode?: string | undefined;
|
|
1082
|
-
city?: string | undefined;
|
|
1083
|
-
phone?: string | undefined;
|
|
1084
|
-
}>;
|
|
1085
|
-
}, "strip", z.ZodTypeAny, {
|
|
1086
|
-
contactInfo: {
|
|
1087
|
-
email: string;
|
|
1088
|
-
first_name: string;
|
|
1089
|
-
last_name: string;
|
|
1090
|
-
state?: string | undefined;
|
|
1091
|
-
country?: string | undefined;
|
|
1092
|
-
address1?: string | undefined;
|
|
1093
|
-
address2?: string | undefined;
|
|
1094
|
-
postalCode?: string | undefined;
|
|
1095
|
-
city?: string | undefined;
|
|
1096
|
-
phone?: string | undefined;
|
|
1097
|
-
};
|
|
1098
|
-
name?: string | undefined;
|
|
1099
|
-
}, {
|
|
1100
|
-
contactInfo: {
|
|
1101
|
-
email: string;
|
|
1102
|
-
first_name: string;
|
|
1103
|
-
last_name: string;
|
|
1104
|
-
state?: string | undefined;
|
|
1105
|
-
country?: string | undefined;
|
|
1106
|
-
address1?: string | undefined;
|
|
1107
|
-
address2?: string | undefined;
|
|
1108
|
-
postalCode?: string | undefined;
|
|
1109
|
-
city?: string | undefined;
|
|
1110
|
-
phone?: string | undefined;
|
|
1111
|
-
};
|
|
1112
829
|
name?: string | undefined;
|
|
1113
830
|
}>;
|
|
1114
831
|
export declare const zPaymentMethod: z.ZodObject<{
|
|
@@ -1126,7 +843,7 @@ export declare const zPaymentMethod: z.ZodObject<{
|
|
|
1126
843
|
last4: string;
|
|
1127
844
|
exp_month: number;
|
|
1128
845
|
exp_year: number;
|
|
1129
|
-
brand: "unknown" | "
|
|
846
|
+
brand: "unknown" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay" | "visa";
|
|
1130
847
|
}, {
|
|
1131
848
|
type: "card";
|
|
1132
849
|
id: string;
|
|
@@ -1134,17 +851,17 @@ export declare const zPaymentMethod: z.ZodObject<{
|
|
|
1134
851
|
last4: string;
|
|
1135
852
|
exp_month: number;
|
|
1136
853
|
exp_year: number;
|
|
1137
|
-
brand: "unknown" | "
|
|
854
|
+
brand: "unknown" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay" | "visa";
|
|
1138
855
|
}>;
|
|
1139
856
|
export declare const zTokenCreateInput: z.ZodObject<{
|
|
1140
857
|
name: z.ZodString;
|
|
1141
858
|
role: z.ZodEnum<["Administrator", "User"]>;
|
|
1142
859
|
}, "strip", z.ZodTypeAny, {
|
|
1143
860
|
name: string;
|
|
1144
|
-
role: "
|
|
861
|
+
role: "Administrator" | "User";
|
|
1145
862
|
}, {
|
|
1146
863
|
name: string;
|
|
1147
|
-
role: "
|
|
864
|
+
role: "Administrator" | "User";
|
|
1148
865
|
}>;
|
|
1149
866
|
export declare const zToken: z.ZodObject<{
|
|
1150
867
|
name: z.ZodString;
|
|
@@ -1154,13 +871,13 @@ export declare const zToken: z.ZodObject<{
|
|
|
1154
871
|
date_created: z.ZodString;
|
|
1155
872
|
}, "strip", z.ZodTypeAny, {
|
|
1156
873
|
name: string;
|
|
1157
|
-
role: "
|
|
874
|
+
role: "Administrator" | "User";
|
|
1158
875
|
date_created: string;
|
|
1159
876
|
id?: string | undefined;
|
|
1160
877
|
secret?: string | undefined;
|
|
1161
878
|
}, {
|
|
1162
879
|
name: string;
|
|
1163
|
-
role: "
|
|
880
|
+
role: "Administrator" | "User";
|
|
1164
881
|
date_created: string;
|
|
1165
882
|
id?: string | undefined;
|
|
1166
883
|
secret?: string | undefined;
|
|
@@ -1170,26 +887,44 @@ export declare const zTokenUpdateInput: z.ZodObject<{
|
|
|
1170
887
|
role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
|
|
1171
888
|
}, "strip", z.ZodTypeAny, {
|
|
1172
889
|
name?: string | undefined;
|
|
1173
|
-
role?: "
|
|
890
|
+
role?: "Administrator" | "User" | undefined;
|
|
1174
891
|
}, {
|
|
1175
892
|
name?: string | undefined;
|
|
1176
|
-
role?: "
|
|
893
|
+
role?: "Administrator" | "User" | undefined;
|
|
1177
894
|
}>;
|
|
1178
895
|
export declare const zUsage: z.ZodObject<{
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
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<[""]>]>;
|
|
1183
906
|
}, "strip", z.ZodTypeAny, {
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
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;
|
|
1188
917
|
}, {
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
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;
|
|
1193
928
|
}>;
|
|
1194
929
|
export declare const zUserCreateInput: z.ZodObject<{
|
|
1195
930
|
email: z.ZodString;
|
|
@@ -1205,7 +940,7 @@ export declare const zUserCreateInput: z.ZodObject<{
|
|
|
1205
940
|
first_name: string;
|
|
1206
941
|
last_name: string;
|
|
1207
942
|
password: string;
|
|
1208
|
-
role?: "
|
|
943
|
+
role?: "Administrator" | "User" | undefined;
|
|
1209
944
|
status?: "active" | "inactive" | undefined;
|
|
1210
945
|
}, {
|
|
1211
946
|
code: string;
|
|
@@ -1213,7 +948,7 @@ export declare const zUserCreateInput: z.ZodObject<{
|
|
|
1213
948
|
first_name: string;
|
|
1214
949
|
last_name: string;
|
|
1215
950
|
password: string;
|
|
1216
|
-
role?: "
|
|
951
|
+
role?: "Administrator" | "User" | undefined;
|
|
1217
952
|
status?: "active" | "inactive" | undefined;
|
|
1218
953
|
}>;
|
|
1219
954
|
export declare const zUser: z.ZodObject<{
|
|
@@ -1236,24 +971,24 @@ export declare const zUser: z.ZodObject<{
|
|
|
1236
971
|
}>, "many">>;
|
|
1237
972
|
}, "strip", z.ZodTypeAny, {
|
|
1238
973
|
id: string;
|
|
1239
|
-
role: "
|
|
974
|
+
role: "Administrator" | "User";
|
|
1240
975
|
email: string;
|
|
1241
976
|
status: "active" | "inactive";
|
|
1242
|
-
date_created: string;
|
|
1243
977
|
first_name: string;
|
|
1244
978
|
last_name: string;
|
|
979
|
+
date_created: string;
|
|
1245
980
|
cluster_permissions?: {
|
|
1246
981
|
cluster_id: string;
|
|
1247
982
|
permissions: "readonly" | "readwrite";
|
|
1248
983
|
}[] | undefined;
|
|
1249
984
|
}, {
|
|
1250
985
|
id: string;
|
|
1251
|
-
role: "
|
|
986
|
+
role: "Administrator" | "User";
|
|
1252
987
|
email: string;
|
|
1253
988
|
status: "active" | "inactive";
|
|
1254
|
-
date_created: string;
|
|
1255
989
|
first_name: string;
|
|
1256
990
|
last_name: string;
|
|
991
|
+
date_created: string;
|
|
1257
992
|
cluster_permissions?: {
|
|
1258
993
|
cluster_id: string;
|
|
1259
994
|
permissions: "readonly" | "readwrite";
|
|
@@ -1266,33 +1001,51 @@ export declare const zUserUpdateInput: z.ZodObject<{
|
|
|
1266
1001
|
role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
|
|
1267
1002
|
status: z.ZodOptional<z.ZodEnum<["active", "inactive"]>>;
|
|
1268
1003
|
}, "strip", z.ZodTypeAny, {
|
|
1269
|
-
role?: "
|
|
1004
|
+
role?: "Administrator" | "User" | undefined;
|
|
1270
1005
|
email?: string | undefined;
|
|
1271
1006
|
status?: "active" | "inactive" | undefined;
|
|
1272
1007
|
first_name?: string | undefined;
|
|
1273
1008
|
last_name?: string | undefined;
|
|
1274
1009
|
}, {
|
|
1275
|
-
role?: "
|
|
1010
|
+
role?: "Administrator" | "User" | undefined;
|
|
1276
1011
|
email?: string | undefined;
|
|
1277
1012
|
status?: "active" | "inactive" | undefined;
|
|
1278
1013
|
first_name?: string | undefined;
|
|
1279
1014
|
last_name?: string | undefined;
|
|
1280
1015
|
}>;
|
|
1281
1016
|
export declare const zGetUsageResponse: z.ZodArray<z.ZodObject<{
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
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<[""]>]>;
|
|
1286
1027
|
}, "strip", z.ZodTypeAny, {
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
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;
|
|
1291
1038
|
}, {
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
|
|
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;
|
|
1296
1049
|
}>, "many">;
|
|
1297
1050
|
export declare const zGetBalanceResponse: z.ZodNumber;
|
|
1298
1051
|
export declare const zGetPaymentMethodResponse: z.ZodObject<{
|
|
@@ -1310,7 +1063,7 @@ export declare const zGetPaymentMethodResponse: z.ZodObject<{
|
|
|
1310
1063
|
last4: string;
|
|
1311
1064
|
exp_month: number;
|
|
1312
1065
|
exp_year: number;
|
|
1313
|
-
brand: "unknown" | "
|
|
1066
|
+
brand: "unknown" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay" | "visa";
|
|
1314
1067
|
}, {
|
|
1315
1068
|
type: "card";
|
|
1316
1069
|
id: string;
|
|
@@ -1318,7 +1071,7 @@ export declare const zGetPaymentMethodResponse: z.ZodObject<{
|
|
|
1318
1071
|
last4: string;
|
|
1319
1072
|
exp_month: number;
|
|
1320
1073
|
exp_year: number;
|
|
1321
|
-
brand: "unknown" | "
|
|
1074
|
+
brand: "unknown" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay" | "visa";
|
|
1322
1075
|
}>;
|
|
1323
1076
|
export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
|
|
1324
1077
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -1363,7 +1116,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1363
1116
|
catalogEffectiveDate: z.ZodOptional<z.ZodString>;
|
|
1364
1117
|
childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
1365
1118
|
}, "strip", z.ZodTypeAny, {
|
|
1366
|
-
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;
|
|
1367
1120
|
id?: string | undefined;
|
|
1368
1121
|
description?: string | undefined;
|
|
1369
1122
|
amount?: number | undefined;
|
|
@@ -1385,7 +1138,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1385
1138
|
catalogEffectiveDate?: string | undefined;
|
|
1386
1139
|
childItems?: unknown[] | undefined;
|
|
1387
1140
|
}, {
|
|
1388
|
-
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;
|
|
1389
1142
|
id?: string | undefined;
|
|
1390
1143
|
description?: string | undefined;
|
|
1391
1144
|
amount?: number | undefined;
|
|
@@ -1430,7 +1183,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1430
1183
|
catalogEffectiveDate: z.ZodOptional<z.ZodString>;
|
|
1431
1184
|
childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
1432
1185
|
}, "strip", z.ZodTypeAny, {
|
|
1433
|
-
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;
|
|
1434
1187
|
id?: string | undefined;
|
|
1435
1188
|
description?: string | undefined;
|
|
1436
1189
|
amount?: number | undefined;
|
|
@@ -1452,7 +1205,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1452
1205
|
catalogEffectiveDate?: string | undefined;
|
|
1453
1206
|
childItems?: unknown[] | undefined;
|
|
1454
1207
|
}, {
|
|
1455
|
-
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;
|
|
1456
1209
|
id?: string | undefined;
|
|
1457
1210
|
description?: string | undefined;
|
|
1458
1211
|
amount?: number | undefined;
|
|
@@ -1475,12 +1228,11 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1475
1228
|
childItems?: unknown[] | undefined;
|
|
1476
1229
|
}>, "many">>;
|
|
1477
1230
|
}, "strip", z.ZodTypeAny, {
|
|
1478
|
-
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;
|
|
1479
1232
|
id?: string | undefined;
|
|
1480
1233
|
status?: "DRAFT" | "COMMITTED" | "VOID" | undefined;
|
|
1481
|
-
amount?: number | undefined;
|
|
1482
1234
|
items?: {
|
|
1483
|
-
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;
|
|
1484
1236
|
id?: string | undefined;
|
|
1485
1237
|
description?: string | undefined;
|
|
1486
1238
|
amount?: number | undefined;
|
|
@@ -1503,6 +1255,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1503
1255
|
childItems?: unknown[] | undefined;
|
|
1504
1256
|
}[] | undefined;
|
|
1505
1257
|
organizationId?: string | undefined;
|
|
1258
|
+
amount?: number | undefined;
|
|
1506
1259
|
creditAdj?: number | undefined;
|
|
1507
1260
|
refundAdj?: number | undefined;
|
|
1508
1261
|
invoiceDate?: string | undefined;
|
|
@@ -1511,7 +1264,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1511
1264
|
balance?: number | undefined;
|
|
1512
1265
|
bundleKeys?: string | undefined;
|
|
1513
1266
|
credits?: {
|
|
1514
|
-
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;
|
|
1515
1268
|
id?: string | undefined;
|
|
1516
1269
|
description?: string | undefined;
|
|
1517
1270
|
amount?: number | undefined;
|
|
@@ -1534,12 +1287,11 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1534
1287
|
childItems?: unknown[] | undefined;
|
|
1535
1288
|
}[] | undefined;
|
|
1536
1289
|
}, {
|
|
1537
|
-
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;
|
|
1538
1291
|
id?: string | undefined;
|
|
1539
1292
|
status?: "DRAFT" | "COMMITTED" | "VOID" | undefined;
|
|
1540
|
-
amount?: number | undefined;
|
|
1541
1293
|
items?: {
|
|
1542
|
-
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;
|
|
1543
1295
|
id?: string | undefined;
|
|
1544
1296
|
description?: string | undefined;
|
|
1545
1297
|
amount?: number | undefined;
|
|
@@ -1562,6 +1314,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1562
1314
|
childItems?: unknown[] | undefined;
|
|
1563
1315
|
}[] | undefined;
|
|
1564
1316
|
organizationId?: string | undefined;
|
|
1317
|
+
amount?: number | undefined;
|
|
1565
1318
|
creditAdj?: number | undefined;
|
|
1566
1319
|
refundAdj?: number | undefined;
|
|
1567
1320
|
invoiceDate?: string | undefined;
|
|
@@ -1570,7 +1323,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1570
1323
|
balance?: number | undefined;
|
|
1571
1324
|
bundleKeys?: string | undefined;
|
|
1572
1325
|
credits?: {
|
|
1573
|
-
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;
|
|
1574
1327
|
id?: string | undefined;
|
|
1575
1328
|
description?: string | undefined;
|
|
1576
1329
|
amount?: number | undefined;
|
|
@@ -1600,6 +1353,80 @@ export declare const zGetInvoiceResponse: z.ZodObject<{
|
|
|
1600
1353
|
}, {
|
|
1601
1354
|
html?: string | undefined;
|
|
1602
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
|
+
}>;
|
|
1603
1430
|
export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
1604
1431
|
limits: z.ZodOptional<z.ZodObject<{
|
|
1605
1432
|
cpu: z.ZodNumber;
|
|
@@ -1806,18 +1633,19 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
|
1806
1633
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1807
1634
|
tier: "basic" | "pro";
|
|
1808
1635
|
version_channel: string;
|
|
1636
|
+
ready?: boolean | undefined;
|
|
1809
1637
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1810
1638
|
endpoint?: string | undefined;
|
|
1811
1639
|
certificate_ca?: string | undefined;
|
|
1812
1640
|
version_current?: string | undefined;
|
|
1813
1641
|
created_at?: string | undefined;
|
|
1814
1642
|
updated_at?: string | undefined;
|
|
1815
|
-
ready?: boolean | undefined;
|
|
1816
1643
|
}, {
|
|
1817
1644
|
name: string;
|
|
1818
1645
|
id: string;
|
|
1819
1646
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1820
1647
|
tier: "basic" | "pro";
|
|
1648
|
+
ready?: boolean | undefined;
|
|
1821
1649
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1822
1650
|
endpoint?: string | undefined;
|
|
1823
1651
|
version_channel?: string | undefined;
|
|
@@ -1825,7 +1653,6 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
|
1825
1653
|
version_current?: string | undefined;
|
|
1826
1654
|
created_at?: string | undefined;
|
|
1827
1655
|
updated_at?: string | undefined;
|
|
1828
|
-
ready?: boolean | undefined;
|
|
1829
1656
|
}>, "many">;
|
|
1830
1657
|
export declare const zCreateClusterResponse: z.ZodString;
|
|
1831
1658
|
export declare const zDeleteClusterResponse: z.ZodString;
|
|
@@ -1848,18 +1675,19 @@ export declare const zGetClusterResponse: z.ZodObject<{
|
|
|
1848
1675
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1849
1676
|
tier: "basic" | "pro";
|
|
1850
1677
|
version_channel: string;
|
|
1678
|
+
ready?: boolean | undefined;
|
|
1851
1679
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1852
1680
|
endpoint?: string | undefined;
|
|
1853
1681
|
certificate_ca?: string | undefined;
|
|
1854
1682
|
version_current?: string | undefined;
|
|
1855
1683
|
created_at?: string | undefined;
|
|
1856
1684
|
updated_at?: string | undefined;
|
|
1857
|
-
ready?: boolean | undefined;
|
|
1858
1685
|
}, {
|
|
1859
1686
|
name: string;
|
|
1860
1687
|
id: string;
|
|
1861
1688
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1862
1689
|
tier: "basic" | "pro";
|
|
1690
|
+
ready?: boolean | undefined;
|
|
1863
1691
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1864
1692
|
endpoint?: string | undefined;
|
|
1865
1693
|
version_channel?: string | undefined;
|
|
@@ -1867,7 +1695,6 @@ export declare const zGetClusterResponse: z.ZodObject<{
|
|
|
1867
1695
|
version_current?: string | undefined;
|
|
1868
1696
|
created_at?: string | undefined;
|
|
1869
1697
|
updated_at?: string | undefined;
|
|
1870
|
-
ready?: boolean | undefined;
|
|
1871
1698
|
}>;
|
|
1872
1699
|
export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
1873
1700
|
name: z.ZodString;
|
|
@@ -1888,18 +1715,19 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
|
1888
1715
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1889
1716
|
tier: "basic" | "pro";
|
|
1890
1717
|
version_channel: string;
|
|
1718
|
+
ready?: boolean | undefined;
|
|
1891
1719
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1892
1720
|
endpoint?: string | undefined;
|
|
1893
1721
|
certificate_ca?: string | undefined;
|
|
1894
1722
|
version_current?: string | undefined;
|
|
1895
1723
|
created_at?: string | undefined;
|
|
1896
1724
|
updated_at?: string | undefined;
|
|
1897
|
-
ready?: boolean | undefined;
|
|
1898
1725
|
}, {
|
|
1899
1726
|
name: string;
|
|
1900
1727
|
id: string;
|
|
1901
1728
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1902
1729
|
tier: "basic" | "pro";
|
|
1730
|
+
ready?: boolean | undefined;
|
|
1903
1731
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1904
1732
|
endpoint?: string | undefined;
|
|
1905
1733
|
version_channel?: string | undefined;
|
|
@@ -1907,7 +1735,6 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
|
1907
1735
|
version_current?: string | undefined;
|
|
1908
1736
|
created_at?: string | undefined;
|
|
1909
1737
|
updated_at?: string | undefined;
|
|
1910
|
-
ready?: boolean | undefined;
|
|
1911
1738
|
}>;
|
|
1912
1739
|
export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
1913
1740
|
name: z.ZodString;
|
|
@@ -1928,18 +1755,19 @@ export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
|
1928
1755
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1929
1756
|
tier: "basic" | "pro";
|
|
1930
1757
|
version_channel: string;
|
|
1758
|
+
ready?: boolean | undefined;
|
|
1931
1759
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1932
1760
|
endpoint?: string | undefined;
|
|
1933
1761
|
certificate_ca?: string | undefined;
|
|
1934
1762
|
version_current?: string | undefined;
|
|
1935
1763
|
created_at?: string | undefined;
|
|
1936
1764
|
updated_at?: string | undefined;
|
|
1937
|
-
ready?: boolean | undefined;
|
|
1938
1765
|
}, {
|
|
1939
1766
|
name: string;
|
|
1940
1767
|
id: string;
|
|
1941
1768
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1942
1769
|
tier: "basic" | "pro";
|
|
1770
|
+
ready?: boolean | undefined;
|
|
1943
1771
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1944
1772
|
endpoint?: string | undefined;
|
|
1945
1773
|
version_channel?: string | undefined;
|
|
@@ -1947,179 +1775,7 @@ export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
|
1947
1775
|
version_current?: string | undefined;
|
|
1948
1776
|
created_at?: string | undefined;
|
|
1949
1777
|
updated_at?: string | undefined;
|
|
1950
|
-
ready?: boolean | undefined;
|
|
1951
1778
|
}>;
|
|
1952
|
-
export declare const zGetInfrastructureResponse: z.ZodArray<z.ZodObject<{
|
|
1953
|
-
sku: z.ZodString;
|
|
1954
|
-
provider: z.ZodString;
|
|
1955
|
-
region: z.ZodString;
|
|
1956
|
-
sub_region: z.ZodString;
|
|
1957
|
-
csp_region: z.ZodString;
|
|
1958
|
-
csp_zone: z.ZodString;
|
|
1959
|
-
instance_type: z.ZodString;
|
|
1960
|
-
architecture: z.ZodString;
|
|
1961
|
-
os: z.ZodString;
|
|
1962
|
-
vcpu: z.ZodNumber;
|
|
1963
|
-
memory: z.ZodNumber;
|
|
1964
|
-
local_storage: z.ZodNumber;
|
|
1965
|
-
accelerator_name: z.ZodOptional<z.ZodString>;
|
|
1966
|
-
accelerator_manufacturer: z.ZodOptional<z.ZodString>;
|
|
1967
|
-
accelerator_count: z.ZodOptional<z.ZodNumber>;
|
|
1968
|
-
accelerator_memory: z.ZodOptional<z.ZodNumber>;
|
|
1969
|
-
pods_capacity: z.ZodOptional<z.ZodNumber>;
|
|
1970
|
-
capacity_type: z.ZodOptional<z.ZodString>;
|
|
1971
|
-
price: z.ZodNumber;
|
|
1972
|
-
available: z.ZodOptional<z.ZodBoolean>;
|
|
1973
|
-
}, "strip", z.ZodTypeAny, {
|
|
1974
|
-
memory: number;
|
|
1975
|
-
region: string;
|
|
1976
|
-
sku: string;
|
|
1977
|
-
provider: string;
|
|
1978
|
-
sub_region: string;
|
|
1979
|
-
csp_region: string;
|
|
1980
|
-
csp_zone: string;
|
|
1981
|
-
instance_type: string;
|
|
1982
|
-
architecture: string;
|
|
1983
|
-
os: string;
|
|
1984
|
-
vcpu: number;
|
|
1985
|
-
local_storage: number;
|
|
1986
|
-
price: number;
|
|
1987
|
-
accelerator_name?: string | undefined;
|
|
1988
|
-
accelerator_manufacturer?: string | undefined;
|
|
1989
|
-
accelerator_count?: number | undefined;
|
|
1990
|
-
accelerator_memory?: number | undefined;
|
|
1991
|
-
pods_capacity?: number | undefined;
|
|
1992
|
-
capacity_type?: string | undefined;
|
|
1993
|
-
available?: boolean | undefined;
|
|
1994
|
-
}, {
|
|
1995
|
-
memory: number;
|
|
1996
|
-
region: string;
|
|
1997
|
-
sku: string;
|
|
1998
|
-
provider: string;
|
|
1999
|
-
sub_region: string;
|
|
2000
|
-
csp_region: string;
|
|
2001
|
-
csp_zone: string;
|
|
2002
|
-
instance_type: string;
|
|
2003
|
-
architecture: string;
|
|
2004
|
-
os: string;
|
|
2005
|
-
vcpu: number;
|
|
2006
|
-
local_storage: number;
|
|
2007
|
-
price: number;
|
|
2008
|
-
accelerator_name?: string | undefined;
|
|
2009
|
-
accelerator_manufacturer?: string | undefined;
|
|
2010
|
-
accelerator_count?: number | undefined;
|
|
2011
|
-
accelerator_memory?: number | undefined;
|
|
2012
|
-
pods_capacity?: number | undefined;
|
|
2013
|
-
capacity_type?: string | undefined;
|
|
2014
|
-
available?: boolean | undefined;
|
|
2015
|
-
}>, "many">;
|
|
2016
|
-
export declare const zGetFacetsResponse: z.ZodArray<z.ZodObject<{
|
|
2017
|
-
provider: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2018
|
-
region: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2019
|
-
sub_region: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2020
|
-
csp_region: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2021
|
-
vcpu_min: z.ZodOptional<z.ZodNumber>;
|
|
2022
|
-
vcpu_max: z.ZodOptional<z.ZodNumber>;
|
|
2023
|
-
memory_min: z.ZodOptional<z.ZodNumber>;
|
|
2024
|
-
memory_max: z.ZodOptional<z.ZodNumber>;
|
|
2025
|
-
storage_local_min: z.ZodOptional<z.ZodNumber>;
|
|
2026
|
-
storage_local_max: z.ZodOptional<z.ZodNumber>;
|
|
2027
|
-
accelerator_name: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2028
|
-
accelerator_manufacturer: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2029
|
-
accelerator_count_min: z.ZodOptional<z.ZodNumber>;
|
|
2030
|
-
accelerator_count_max: z.ZodOptional<z.ZodNumber>;
|
|
2031
|
-
accelerator_memory_min: z.ZodOptional<z.ZodNumber>;
|
|
2032
|
-
accelerator_memory_max: z.ZodOptional<z.ZodNumber>;
|
|
2033
|
-
price_min: z.ZodOptional<z.ZodNumber>;
|
|
2034
|
-
price_max: z.ZodOptional<z.ZodNumber>;
|
|
2035
|
-
regions_struct: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2036
|
-
region: z.ZodOptional<z.ZodString>;
|
|
2037
|
-
sub_region: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2038
|
-
}, "strip", z.ZodTypeAny, {
|
|
2039
|
-
region?: string | undefined;
|
|
2040
|
-
sub_region?: string[] | undefined;
|
|
2041
|
-
}, {
|
|
2042
|
-
region?: string | undefined;
|
|
2043
|
-
sub_region?: string[] | undefined;
|
|
2044
|
-
}>, "many">>;
|
|
2045
|
-
accelerators_struct: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2046
|
-
accelerator_manufacturer: z.ZodOptional<z.ZodString>;
|
|
2047
|
-
accelerator_name: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2048
|
-
}, "strip", z.ZodTypeAny, {
|
|
2049
|
-
accelerator_name?: string[] | undefined;
|
|
2050
|
-
accelerator_manufacturer?: string | undefined;
|
|
2051
|
-
}, {
|
|
2052
|
-
accelerator_name?: string[] | undefined;
|
|
2053
|
-
accelerator_manufacturer?: string | undefined;
|
|
2054
|
-
}>, "many">>;
|
|
2055
|
-
count_total: z.ZodOptional<z.ZodNumber>;
|
|
2056
|
-
count_accelerators: z.ZodOptional<z.ZodNumber>;
|
|
2057
|
-
count_instance_types: z.ZodOptional<z.ZodNumber>;
|
|
2058
|
-
count_accelerators_instance_types: z.ZodOptional<z.ZodNumber>;
|
|
2059
|
-
}, "strip", z.ZodTypeAny, {
|
|
2060
|
-
region?: string[] | undefined;
|
|
2061
|
-
provider?: string[] | undefined;
|
|
2062
|
-
sub_region?: string[] | undefined;
|
|
2063
|
-
csp_region?: string[] | undefined;
|
|
2064
|
-
accelerator_name?: string[] | undefined;
|
|
2065
|
-
accelerator_manufacturer?: string[] | undefined;
|
|
2066
|
-
accelerator_count_min?: number | undefined;
|
|
2067
|
-
accelerator_count_max?: number | undefined;
|
|
2068
|
-
accelerator_memory_min?: number | undefined;
|
|
2069
|
-
accelerator_memory_max?: number | undefined;
|
|
2070
|
-
memory_min?: number | undefined;
|
|
2071
|
-
memory_max?: number | undefined;
|
|
2072
|
-
vcpu_min?: number | undefined;
|
|
2073
|
-
vcpu_max?: number | undefined;
|
|
2074
|
-
storage_local_min?: number | undefined;
|
|
2075
|
-
storage_local_max?: number | undefined;
|
|
2076
|
-
price_min?: number | undefined;
|
|
2077
|
-
price_max?: number | undefined;
|
|
2078
|
-
regions_struct?: {
|
|
2079
|
-
region?: string | undefined;
|
|
2080
|
-
sub_region?: string[] | undefined;
|
|
2081
|
-
}[] | undefined;
|
|
2082
|
-
accelerators_struct?: {
|
|
2083
|
-
accelerator_name?: string[] | undefined;
|
|
2084
|
-
accelerator_manufacturer?: string | undefined;
|
|
2085
|
-
}[] | undefined;
|
|
2086
|
-
count_total?: number | undefined;
|
|
2087
|
-
count_accelerators?: number | undefined;
|
|
2088
|
-
count_instance_types?: number | undefined;
|
|
2089
|
-
count_accelerators_instance_types?: number | undefined;
|
|
2090
|
-
}, {
|
|
2091
|
-
region?: string[] | undefined;
|
|
2092
|
-
provider?: string[] | undefined;
|
|
2093
|
-
sub_region?: string[] | undefined;
|
|
2094
|
-
csp_region?: string[] | undefined;
|
|
2095
|
-
accelerator_name?: string[] | undefined;
|
|
2096
|
-
accelerator_manufacturer?: string[] | undefined;
|
|
2097
|
-
accelerator_count_min?: number | undefined;
|
|
2098
|
-
accelerator_count_max?: number | undefined;
|
|
2099
|
-
accelerator_memory_min?: number | undefined;
|
|
2100
|
-
accelerator_memory_max?: number | undefined;
|
|
2101
|
-
memory_min?: number | undefined;
|
|
2102
|
-
memory_max?: number | undefined;
|
|
2103
|
-
vcpu_min?: number | undefined;
|
|
2104
|
-
vcpu_max?: number | undefined;
|
|
2105
|
-
storage_local_min?: number | undefined;
|
|
2106
|
-
storage_local_max?: number | undefined;
|
|
2107
|
-
price_min?: number | undefined;
|
|
2108
|
-
price_max?: number | undefined;
|
|
2109
|
-
regions_struct?: {
|
|
2110
|
-
region?: string | undefined;
|
|
2111
|
-
sub_region?: string[] | undefined;
|
|
2112
|
-
}[] | undefined;
|
|
2113
|
-
accelerators_struct?: {
|
|
2114
|
-
accelerator_name?: string[] | undefined;
|
|
2115
|
-
accelerator_manufacturer?: string | undefined;
|
|
2116
|
-
}[] | undefined;
|
|
2117
|
-
count_total?: number | undefined;
|
|
2118
|
-
count_accelerators?: number | undefined;
|
|
2119
|
-
count_instance_types?: number | undefined;
|
|
2120
|
-
count_accelerators_instance_types?: number | undefined;
|
|
2121
|
-
}>, "many">;
|
|
2122
|
-
export declare const zGetRegionsResponse: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
2123
1779
|
export declare const zListInvitesResponse: z.ZodArray<z.ZodObject<{
|
|
2124
1780
|
id: z.ZodOptional<z.ZodString>;
|
|
2125
1781
|
organization_id: z.ZodOptional<z.ZodString>;
|
|
@@ -2178,344 +1834,8 @@ export declare const zGetInviteResponse: z.ZodObject<{
|
|
|
2178
1834
|
organization_id?: string | undefined;
|
|
2179
1835
|
}>;
|
|
2180
1836
|
export declare const zGetOrganizationResponse: z.ZodObject<{
|
|
2181
|
-
name: z.ZodString;
|
|
2182
|
-
contactInfo: z.ZodObject<{
|
|
2183
|
-
address1: z.ZodOptional<z.ZodString>;
|
|
2184
|
-
address2: z.ZodOptional<z.ZodString>;
|
|
2185
|
-
postalCode: z.ZodOptional<z.ZodString>;
|
|
2186
|
-
city: z.ZodOptional<z.ZodString>;
|
|
2187
|
-
state: z.ZodOptional<z.ZodString>;
|
|
2188
|
-
country: z.ZodOptional<z.ZodString>;
|
|
2189
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
2190
|
-
email: z.ZodString;
|
|
2191
|
-
first_name: z.ZodString;
|
|
2192
|
-
last_name: z.ZodString;
|
|
2193
|
-
}, "strip", z.ZodTypeAny, {
|
|
2194
|
-
email: string;
|
|
2195
|
-
first_name: string;
|
|
2196
|
-
last_name: string;
|
|
2197
|
-
state?: string | undefined;
|
|
2198
|
-
country?: string | undefined;
|
|
2199
|
-
address1?: string | undefined;
|
|
2200
|
-
address2?: string | undefined;
|
|
2201
|
-
postalCode?: string | undefined;
|
|
2202
|
-
city?: string | undefined;
|
|
2203
|
-
phone?: string | undefined;
|
|
2204
|
-
}, {
|
|
2205
|
-
email: string;
|
|
2206
|
-
first_name: string;
|
|
2207
|
-
last_name: string;
|
|
2208
|
-
state?: string | undefined;
|
|
2209
|
-
country?: string | undefined;
|
|
2210
|
-
address1?: string | undefined;
|
|
2211
|
-
address2?: string | undefined;
|
|
2212
|
-
postalCode?: string | undefined;
|
|
2213
|
-
city?: string | undefined;
|
|
2214
|
-
phone?: string | undefined;
|
|
2215
|
-
}>;
|
|
2216
|
-
id: z.ZodString;
|
|
2217
|
-
date_created: z.ZodString;
|
|
2218
|
-
quota: z.ZodObject<{
|
|
2219
|
-
basic_clusters_max: z.ZodNumber;
|
|
2220
|
-
basic_clusters_available: z.ZodNumber;
|
|
2221
|
-
pro_clusters_max: z.ZodNumber;
|
|
2222
|
-
pro_clusters_available: z.ZodNumber;
|
|
2223
|
-
fleets_max: z.ZodNumber;
|
|
2224
|
-
managed_fleets_cpu_max: z.ZodNumber;
|
|
2225
|
-
cluster_tiers: z.ZodArray<z.ZodString, "many">;
|
|
2226
|
-
regions: z.ZodArray<z.ZodString, "many">;
|
|
2227
|
-
versions: z.ZodArray<z.ZodObject<{
|
|
2228
|
-
id: z.ZodString;
|
|
2229
|
-
label: z.ZodString;
|
|
2230
|
-
}, "strip", z.ZodTypeAny, {
|
|
2231
|
-
id: string;
|
|
2232
|
-
label: string;
|
|
2233
|
-
}, {
|
|
2234
|
-
id: string;
|
|
2235
|
-
label: string;
|
|
2236
|
-
}>, "many">;
|
|
2237
|
-
}, "strip", z.ZodTypeAny, {
|
|
2238
|
-
versions: {
|
|
2239
|
-
id: string;
|
|
2240
|
-
label: string;
|
|
2241
|
-
}[];
|
|
2242
|
-
basic_clusters_max: number;
|
|
2243
|
-
basic_clusters_available: number;
|
|
2244
|
-
pro_clusters_max: number;
|
|
2245
|
-
pro_clusters_available: number;
|
|
2246
|
-
fleets_max: number;
|
|
2247
|
-
managed_fleets_cpu_max: number;
|
|
2248
|
-
cluster_tiers: string[];
|
|
2249
|
-
regions: string[];
|
|
2250
|
-
}, {
|
|
2251
|
-
versions: {
|
|
2252
|
-
id: string;
|
|
2253
|
-
label: string;
|
|
2254
|
-
}[];
|
|
2255
|
-
basic_clusters_max: number;
|
|
2256
|
-
basic_clusters_available: number;
|
|
2257
|
-
pro_clusters_max: number;
|
|
2258
|
-
pro_clusters_available: number;
|
|
2259
|
-
fleets_max: number;
|
|
2260
|
-
managed_fleets_cpu_max: number;
|
|
2261
|
-
cluster_tiers: string[];
|
|
2262
|
-
regions: string[];
|
|
2263
|
-
}>;
|
|
2264
|
-
pending_actions: z.ZodArray<z.ZodEnum<["signup-billing-address", "signup-payment-method", "signup-invite-team", "signup-create-cluster"]>, "many">;
|
|
2265
|
-
status: z.ZodEnum<["active", "closed", "suspended"]>;
|
|
2266
|
-
}, "strip", z.ZodTypeAny, {
|
|
2267
|
-
name: string;
|
|
2268
|
-
id: string;
|
|
2269
|
-
status: "active" | "closed" | "suspended";
|
|
2270
|
-
date_created: string;
|
|
2271
|
-
contactInfo: {
|
|
2272
|
-
email: string;
|
|
2273
|
-
first_name: string;
|
|
2274
|
-
last_name: string;
|
|
2275
|
-
state?: string | undefined;
|
|
2276
|
-
country?: string | undefined;
|
|
2277
|
-
address1?: string | undefined;
|
|
2278
|
-
address2?: string | undefined;
|
|
2279
|
-
postalCode?: string | undefined;
|
|
2280
|
-
city?: string | undefined;
|
|
2281
|
-
phone?: string | undefined;
|
|
2282
|
-
};
|
|
2283
|
-
quota: {
|
|
2284
|
-
versions: {
|
|
2285
|
-
id: string;
|
|
2286
|
-
label: string;
|
|
2287
|
-
}[];
|
|
2288
|
-
basic_clusters_max: number;
|
|
2289
|
-
basic_clusters_available: number;
|
|
2290
|
-
pro_clusters_max: number;
|
|
2291
|
-
pro_clusters_available: number;
|
|
2292
|
-
fleets_max: number;
|
|
2293
|
-
managed_fleets_cpu_max: number;
|
|
2294
|
-
cluster_tiers: string[];
|
|
2295
|
-
regions: string[];
|
|
2296
|
-
};
|
|
2297
|
-
pending_actions: ("signup-payment-method" | "signup-billing-address" | "signup-invite-team" | "signup-create-cluster")[];
|
|
2298
|
-
}, {
|
|
2299
|
-
name: string;
|
|
2300
|
-
id: string;
|
|
2301
|
-
status: "active" | "closed" | "suspended";
|
|
2302
|
-
date_created: string;
|
|
2303
|
-
contactInfo: {
|
|
2304
|
-
email: string;
|
|
2305
|
-
first_name: string;
|
|
2306
|
-
last_name: string;
|
|
2307
|
-
state?: string | undefined;
|
|
2308
|
-
country?: string | undefined;
|
|
2309
|
-
address1?: string | undefined;
|
|
2310
|
-
address2?: string | undefined;
|
|
2311
|
-
postalCode?: string | undefined;
|
|
2312
|
-
city?: string | undefined;
|
|
2313
|
-
phone?: string | undefined;
|
|
2314
|
-
};
|
|
2315
|
-
quota: {
|
|
2316
|
-
versions: {
|
|
2317
|
-
id: string;
|
|
2318
|
-
label: string;
|
|
2319
|
-
}[];
|
|
2320
|
-
basic_clusters_max: number;
|
|
2321
|
-
basic_clusters_available: number;
|
|
2322
|
-
pro_clusters_max: number;
|
|
2323
|
-
pro_clusters_available: number;
|
|
2324
|
-
fleets_max: number;
|
|
2325
|
-
managed_fleets_cpu_max: number;
|
|
2326
|
-
cluster_tiers: string[];
|
|
2327
|
-
regions: string[];
|
|
2328
|
-
};
|
|
2329
|
-
pending_actions: ("signup-payment-method" | "signup-billing-address" | "signup-invite-team" | "signup-create-cluster")[];
|
|
2330
|
-
}>;
|
|
2331
|
-
export declare const zCreateOrganizationResponse: z.ZodObject<{
|
|
2332
|
-
name: z.ZodString;
|
|
2333
|
-
contactInfo: z.ZodObject<{
|
|
2334
|
-
address1: z.ZodOptional<z.ZodString>;
|
|
2335
|
-
address2: z.ZodOptional<z.ZodString>;
|
|
2336
|
-
postalCode: z.ZodOptional<z.ZodString>;
|
|
2337
|
-
city: z.ZodOptional<z.ZodString>;
|
|
2338
|
-
state: z.ZodOptional<z.ZodString>;
|
|
2339
|
-
country: z.ZodOptional<z.ZodString>;
|
|
2340
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
2341
|
-
email: z.ZodString;
|
|
2342
|
-
first_name: z.ZodString;
|
|
2343
|
-
last_name: z.ZodString;
|
|
2344
|
-
}, "strip", z.ZodTypeAny, {
|
|
2345
|
-
email: string;
|
|
2346
|
-
first_name: string;
|
|
2347
|
-
last_name: string;
|
|
2348
|
-
state?: string | undefined;
|
|
2349
|
-
country?: string | undefined;
|
|
2350
|
-
address1?: string | undefined;
|
|
2351
|
-
address2?: string | undefined;
|
|
2352
|
-
postalCode?: string | undefined;
|
|
2353
|
-
city?: string | undefined;
|
|
2354
|
-
phone?: string | undefined;
|
|
2355
|
-
}, {
|
|
2356
|
-
email: string;
|
|
2357
|
-
first_name: string;
|
|
2358
|
-
last_name: string;
|
|
2359
|
-
state?: string | undefined;
|
|
2360
|
-
country?: string | undefined;
|
|
2361
|
-
address1?: string | undefined;
|
|
2362
|
-
address2?: string | undefined;
|
|
2363
|
-
postalCode?: string | undefined;
|
|
2364
|
-
city?: string | undefined;
|
|
2365
|
-
phone?: string | undefined;
|
|
2366
|
-
}>;
|
|
2367
|
-
id: z.ZodString;
|
|
2368
|
-
date_created: z.ZodString;
|
|
2369
|
-
quota: z.ZodObject<{
|
|
2370
|
-
basic_clusters_max: z.ZodNumber;
|
|
2371
|
-
basic_clusters_available: z.ZodNumber;
|
|
2372
|
-
pro_clusters_max: z.ZodNumber;
|
|
2373
|
-
pro_clusters_available: z.ZodNumber;
|
|
2374
|
-
fleets_max: z.ZodNumber;
|
|
2375
|
-
managed_fleets_cpu_max: z.ZodNumber;
|
|
2376
|
-
cluster_tiers: z.ZodArray<z.ZodString, "many">;
|
|
2377
|
-
regions: z.ZodArray<z.ZodString, "many">;
|
|
2378
|
-
versions: z.ZodArray<z.ZodObject<{
|
|
2379
|
-
id: z.ZodString;
|
|
2380
|
-
label: z.ZodString;
|
|
2381
|
-
}, "strip", z.ZodTypeAny, {
|
|
2382
|
-
id: string;
|
|
2383
|
-
label: string;
|
|
2384
|
-
}, {
|
|
2385
|
-
id: string;
|
|
2386
|
-
label: string;
|
|
2387
|
-
}>, "many">;
|
|
2388
|
-
}, "strip", z.ZodTypeAny, {
|
|
2389
|
-
versions: {
|
|
2390
|
-
id: string;
|
|
2391
|
-
label: string;
|
|
2392
|
-
}[];
|
|
2393
|
-
basic_clusters_max: number;
|
|
2394
|
-
basic_clusters_available: number;
|
|
2395
|
-
pro_clusters_max: number;
|
|
2396
|
-
pro_clusters_available: number;
|
|
2397
|
-
fleets_max: number;
|
|
2398
|
-
managed_fleets_cpu_max: number;
|
|
2399
|
-
cluster_tiers: string[];
|
|
2400
|
-
regions: string[];
|
|
2401
|
-
}, {
|
|
2402
|
-
versions: {
|
|
2403
|
-
id: string;
|
|
2404
|
-
label: string;
|
|
2405
|
-
}[];
|
|
2406
|
-
basic_clusters_max: number;
|
|
2407
|
-
basic_clusters_available: number;
|
|
2408
|
-
pro_clusters_max: number;
|
|
2409
|
-
pro_clusters_available: number;
|
|
2410
|
-
fleets_max: number;
|
|
2411
|
-
managed_fleets_cpu_max: number;
|
|
2412
|
-
cluster_tiers: string[];
|
|
2413
|
-
regions: string[];
|
|
2414
|
-
}>;
|
|
2415
|
-
pending_actions: z.ZodArray<z.ZodEnum<["signup-billing-address", "signup-payment-method", "signup-invite-team", "signup-create-cluster"]>, "many">;
|
|
2416
|
-
status: z.ZodEnum<["active", "closed", "suspended"]>;
|
|
2417
|
-
}, "strip", z.ZodTypeAny, {
|
|
2418
|
-
name: string;
|
|
2419
|
-
id: string;
|
|
2420
|
-
status: "active" | "closed" | "suspended";
|
|
2421
|
-
date_created: string;
|
|
2422
|
-
contactInfo: {
|
|
2423
|
-
email: string;
|
|
2424
|
-
first_name: string;
|
|
2425
|
-
last_name: string;
|
|
2426
|
-
state?: string | undefined;
|
|
2427
|
-
country?: string | undefined;
|
|
2428
|
-
address1?: string | undefined;
|
|
2429
|
-
address2?: string | undefined;
|
|
2430
|
-
postalCode?: string | undefined;
|
|
2431
|
-
city?: string | undefined;
|
|
2432
|
-
phone?: string | undefined;
|
|
2433
|
-
};
|
|
2434
|
-
quota: {
|
|
2435
|
-
versions: {
|
|
2436
|
-
id: string;
|
|
2437
|
-
label: string;
|
|
2438
|
-
}[];
|
|
2439
|
-
basic_clusters_max: number;
|
|
2440
|
-
basic_clusters_available: number;
|
|
2441
|
-
pro_clusters_max: number;
|
|
2442
|
-
pro_clusters_available: number;
|
|
2443
|
-
fleets_max: number;
|
|
2444
|
-
managed_fleets_cpu_max: number;
|
|
2445
|
-
cluster_tiers: string[];
|
|
2446
|
-
regions: string[];
|
|
2447
|
-
};
|
|
2448
|
-
pending_actions: ("signup-payment-method" | "signup-billing-address" | "signup-invite-team" | "signup-create-cluster")[];
|
|
2449
|
-
}, {
|
|
2450
|
-
name: string;
|
|
2451
|
-
id: string;
|
|
2452
|
-
status: "active" | "closed" | "suspended";
|
|
2453
|
-
date_created: string;
|
|
2454
|
-
contactInfo: {
|
|
2455
|
-
email: string;
|
|
2456
|
-
first_name: string;
|
|
2457
|
-
last_name: string;
|
|
2458
|
-
state?: string | undefined;
|
|
2459
|
-
country?: string | undefined;
|
|
2460
|
-
address1?: string | undefined;
|
|
2461
|
-
address2?: string | undefined;
|
|
2462
|
-
postalCode?: string | undefined;
|
|
2463
|
-
city?: string | undefined;
|
|
2464
|
-
phone?: string | undefined;
|
|
2465
|
-
};
|
|
2466
|
-
quota: {
|
|
2467
|
-
versions: {
|
|
2468
|
-
id: string;
|
|
2469
|
-
label: string;
|
|
2470
|
-
}[];
|
|
2471
|
-
basic_clusters_max: number;
|
|
2472
|
-
basic_clusters_available: number;
|
|
2473
|
-
pro_clusters_max: number;
|
|
2474
|
-
pro_clusters_available: number;
|
|
2475
|
-
fleets_max: number;
|
|
2476
|
-
managed_fleets_cpu_max: number;
|
|
2477
|
-
cluster_tiers: string[];
|
|
2478
|
-
regions: string[];
|
|
2479
|
-
};
|
|
2480
|
-
pending_actions: ("signup-payment-method" | "signup-billing-address" | "signup-invite-team" | "signup-create-cluster")[];
|
|
2481
|
-
}>;
|
|
2482
|
-
export declare const zUpdateOrganizationResponse: z.ZodObject<{
|
|
2483
|
-
name: z.ZodString;
|
|
2484
|
-
contactInfo: z.ZodObject<{
|
|
2485
|
-
address1: z.ZodOptional<z.ZodString>;
|
|
2486
|
-
address2: z.ZodOptional<z.ZodString>;
|
|
2487
|
-
postalCode: z.ZodOptional<z.ZodString>;
|
|
2488
|
-
city: z.ZodOptional<z.ZodString>;
|
|
2489
|
-
state: z.ZodOptional<z.ZodString>;
|
|
2490
|
-
country: z.ZodOptional<z.ZodString>;
|
|
2491
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
2492
|
-
email: z.ZodString;
|
|
2493
|
-
first_name: z.ZodString;
|
|
2494
|
-
last_name: z.ZodString;
|
|
2495
|
-
}, "strip", z.ZodTypeAny, {
|
|
2496
|
-
email: string;
|
|
2497
|
-
first_name: string;
|
|
2498
|
-
last_name: string;
|
|
2499
|
-
state?: string | undefined;
|
|
2500
|
-
country?: string | undefined;
|
|
2501
|
-
address1?: string | undefined;
|
|
2502
|
-
address2?: string | undefined;
|
|
2503
|
-
postalCode?: string | undefined;
|
|
2504
|
-
city?: string | undefined;
|
|
2505
|
-
phone?: string | undefined;
|
|
2506
|
-
}, {
|
|
2507
|
-
email: string;
|
|
2508
|
-
first_name: string;
|
|
2509
|
-
last_name: string;
|
|
2510
|
-
state?: string | undefined;
|
|
2511
|
-
country?: string | undefined;
|
|
2512
|
-
address1?: string | undefined;
|
|
2513
|
-
address2?: string | undefined;
|
|
2514
|
-
postalCode?: string | undefined;
|
|
2515
|
-
city?: string | undefined;
|
|
2516
|
-
phone?: string | undefined;
|
|
2517
|
-
}>;
|
|
2518
1837
|
id: z.ZodString;
|
|
1838
|
+
name: z.ZodOptional<z.ZodString>;
|
|
2519
1839
|
date_created: z.ZodString;
|
|
2520
1840
|
quota: z.ZodObject<{
|
|
2521
1841
|
basic_clusters_max: z.ZodNumber;
|
|
@@ -2563,25 +1883,11 @@ export declare const zUpdateOrganizationResponse: z.ZodObject<{
|
|
|
2563
1883
|
cluster_tiers: string[];
|
|
2564
1884
|
regions: string[];
|
|
2565
1885
|
}>;
|
|
2566
|
-
pending_actions: z.ZodArray<z.ZodEnum<["signup-billing-address", "signup-payment-method", "signup-invite-team", "signup-create-cluster"]>, "many">;
|
|
2567
1886
|
status: z.ZodEnum<["active", "closed", "suspended"]>;
|
|
2568
1887
|
}, "strip", z.ZodTypeAny, {
|
|
2569
|
-
name: string;
|
|
2570
1888
|
id: string;
|
|
2571
1889
|
status: "active" | "closed" | "suspended";
|
|
2572
1890
|
date_created: string;
|
|
2573
|
-
contactInfo: {
|
|
2574
|
-
email: string;
|
|
2575
|
-
first_name: string;
|
|
2576
|
-
last_name: string;
|
|
2577
|
-
state?: string | undefined;
|
|
2578
|
-
country?: string | undefined;
|
|
2579
|
-
address1?: string | undefined;
|
|
2580
|
-
address2?: string | undefined;
|
|
2581
|
-
postalCode?: string | undefined;
|
|
2582
|
-
city?: string | undefined;
|
|
2583
|
-
phone?: string | undefined;
|
|
2584
|
-
};
|
|
2585
1891
|
quota: {
|
|
2586
1892
|
versions: {
|
|
2587
1893
|
id: string;
|
|
@@ -2596,24 +1902,11 @@ export declare const zUpdateOrganizationResponse: z.ZodObject<{
|
|
|
2596
1902
|
cluster_tiers: string[];
|
|
2597
1903
|
regions: string[];
|
|
2598
1904
|
};
|
|
2599
|
-
|
|
1905
|
+
name?: string | undefined;
|
|
2600
1906
|
}, {
|
|
2601
|
-
name: string;
|
|
2602
1907
|
id: string;
|
|
2603
1908
|
status: "active" | "closed" | "suspended";
|
|
2604
1909
|
date_created: string;
|
|
2605
|
-
contactInfo: {
|
|
2606
|
-
email: string;
|
|
2607
|
-
first_name: string;
|
|
2608
|
-
last_name: string;
|
|
2609
|
-
state?: string | undefined;
|
|
2610
|
-
country?: string | undefined;
|
|
2611
|
-
address1?: string | undefined;
|
|
2612
|
-
address2?: string | undefined;
|
|
2613
|
-
postalCode?: string | undefined;
|
|
2614
|
-
city?: string | undefined;
|
|
2615
|
-
phone?: string | undefined;
|
|
2616
|
-
};
|
|
2617
1910
|
quota: {
|
|
2618
1911
|
versions: {
|
|
2619
1912
|
id: string;
|
|
@@ -2628,7 +1921,7 @@ export declare const zUpdateOrganizationResponse: z.ZodObject<{
|
|
|
2628
1921
|
cluster_tiers: string[];
|
|
2629
1922
|
regions: string[];
|
|
2630
1923
|
};
|
|
2631
|
-
|
|
1924
|
+
name?: string | undefined;
|
|
2632
1925
|
}>;
|
|
2633
1926
|
export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
|
|
2634
1927
|
name: z.ZodString;
|
|
@@ -2638,13 +1931,13 @@ export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
|
|
|
2638
1931
|
date_created: z.ZodString;
|
|
2639
1932
|
}, "strip", z.ZodTypeAny, {
|
|
2640
1933
|
name: string;
|
|
2641
|
-
role: "
|
|
1934
|
+
role: "Administrator" | "User";
|
|
2642
1935
|
date_created: string;
|
|
2643
1936
|
id?: string | undefined;
|
|
2644
1937
|
secret?: string | undefined;
|
|
2645
1938
|
}, {
|
|
2646
1939
|
name: string;
|
|
2647
|
-
role: "
|
|
1940
|
+
role: "Administrator" | "User";
|
|
2648
1941
|
date_created: string;
|
|
2649
1942
|
id?: string | undefined;
|
|
2650
1943
|
secret?: string | undefined;
|
|
@@ -2657,13 +1950,13 @@ export declare const zCreateTokenResponse: z.ZodObject<{
|
|
|
2657
1950
|
date_created: z.ZodString;
|
|
2658
1951
|
}, "strip", z.ZodTypeAny, {
|
|
2659
1952
|
name: string;
|
|
2660
|
-
role: "
|
|
1953
|
+
role: "Administrator" | "User";
|
|
2661
1954
|
date_created: string;
|
|
2662
1955
|
id?: string | undefined;
|
|
2663
1956
|
secret?: string | undefined;
|
|
2664
1957
|
}, {
|
|
2665
1958
|
name: string;
|
|
2666
|
-
role: "
|
|
1959
|
+
role: "Administrator" | "User";
|
|
2667
1960
|
date_created: string;
|
|
2668
1961
|
id?: string | undefined;
|
|
2669
1962
|
secret?: string | undefined;
|
|
@@ -2676,13 +1969,13 @@ export declare const zGetTokenResponse: z.ZodObject<{
|
|
|
2676
1969
|
date_created: z.ZodString;
|
|
2677
1970
|
}, "strip", z.ZodTypeAny, {
|
|
2678
1971
|
name: string;
|
|
2679
|
-
role: "
|
|
1972
|
+
role: "Administrator" | "User";
|
|
2680
1973
|
date_created: string;
|
|
2681
1974
|
id?: string | undefined;
|
|
2682
1975
|
secret?: string | undefined;
|
|
2683
1976
|
}, {
|
|
2684
1977
|
name: string;
|
|
2685
|
-
role: "
|
|
1978
|
+
role: "Administrator" | "User";
|
|
2686
1979
|
date_created: string;
|
|
2687
1980
|
id?: string | undefined;
|
|
2688
1981
|
secret?: string | undefined;
|
|
@@ -2695,13 +1988,13 @@ export declare const zUpdateTokenResponse: z.ZodObject<{
|
|
|
2695
1988
|
date_created: z.ZodString;
|
|
2696
1989
|
}, "strip", z.ZodTypeAny, {
|
|
2697
1990
|
name: string;
|
|
2698
|
-
role: "
|
|
1991
|
+
role: "Administrator" | "User";
|
|
2699
1992
|
date_created: string;
|
|
2700
1993
|
id?: string | undefined;
|
|
2701
1994
|
secret?: string | undefined;
|
|
2702
1995
|
}, {
|
|
2703
1996
|
name: string;
|
|
2704
|
-
role: "
|
|
1997
|
+
role: "Administrator" | "User";
|
|
2705
1998
|
date_created: string;
|
|
2706
1999
|
id?: string | undefined;
|
|
2707
2000
|
secret?: string | undefined;
|
|
@@ -2714,13 +2007,13 @@ export declare const zRegenerateTokenResponse: z.ZodObject<{
|
|
|
2714
2007
|
date_created: z.ZodString;
|
|
2715
2008
|
}, "strip", z.ZodTypeAny, {
|
|
2716
2009
|
name: string;
|
|
2717
|
-
role: "
|
|
2010
|
+
role: "Administrator" | "User";
|
|
2718
2011
|
date_created: string;
|
|
2719
2012
|
id?: string | undefined;
|
|
2720
2013
|
secret?: string | undefined;
|
|
2721
2014
|
}, {
|
|
2722
2015
|
name: string;
|
|
2723
|
-
role: "
|
|
2016
|
+
role: "Administrator" | "User";
|
|
2724
2017
|
date_created: string;
|
|
2725
2018
|
id?: string | undefined;
|
|
2726
2019
|
secret?: string | undefined;
|
|
@@ -2755,24 +2048,24 @@ export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
|
|
|
2755
2048
|
}>, "many">>;
|
|
2756
2049
|
}, "strip", z.ZodTypeAny, {
|
|
2757
2050
|
id: string;
|
|
2758
|
-
role: "
|
|
2051
|
+
role: "Administrator" | "User";
|
|
2759
2052
|
email: string;
|
|
2760
2053
|
status: "active" | "inactive";
|
|
2761
|
-
date_created: string;
|
|
2762
2054
|
first_name: string;
|
|
2763
2055
|
last_name: string;
|
|
2056
|
+
date_created: string;
|
|
2764
2057
|
cluster_permissions?: {
|
|
2765
2058
|
cluster_id: string;
|
|
2766
2059
|
permissions: "readonly" | "readwrite";
|
|
2767
2060
|
}[] | undefined;
|
|
2768
2061
|
}, {
|
|
2769
2062
|
id: string;
|
|
2770
|
-
role: "
|
|
2063
|
+
role: "Administrator" | "User";
|
|
2771
2064
|
email: string;
|
|
2772
2065
|
status: "active" | "inactive";
|
|
2773
|
-
date_created: string;
|
|
2774
2066
|
first_name: string;
|
|
2775
2067
|
last_name: string;
|
|
2068
|
+
date_created: string;
|
|
2776
2069
|
cluster_permissions?: {
|
|
2777
2070
|
cluster_id: string;
|
|
2778
2071
|
permissions: "readonly" | "readwrite";
|
|
@@ -2798,24 +2091,24 @@ export declare const zCreateUserResponse: z.ZodObject<{
|
|
|
2798
2091
|
}>, "many">>;
|
|
2799
2092
|
}, "strip", z.ZodTypeAny, {
|
|
2800
2093
|
id: string;
|
|
2801
|
-
role: "
|
|
2094
|
+
role: "Administrator" | "User";
|
|
2802
2095
|
email: string;
|
|
2803
2096
|
status: "active" | "inactive";
|
|
2804
|
-
date_created: string;
|
|
2805
2097
|
first_name: string;
|
|
2806
2098
|
last_name: string;
|
|
2099
|
+
date_created: string;
|
|
2807
2100
|
cluster_permissions?: {
|
|
2808
2101
|
cluster_id: string;
|
|
2809
2102
|
permissions: "readonly" | "readwrite";
|
|
2810
2103
|
}[] | undefined;
|
|
2811
2104
|
}, {
|
|
2812
2105
|
id: string;
|
|
2813
|
-
role: "
|
|
2106
|
+
role: "Administrator" | "User";
|
|
2814
2107
|
email: string;
|
|
2815
2108
|
status: "active" | "inactive";
|
|
2816
|
-
date_created: string;
|
|
2817
2109
|
first_name: string;
|
|
2818
2110
|
last_name: string;
|
|
2111
|
+
date_created: string;
|
|
2819
2112
|
cluster_permissions?: {
|
|
2820
2113
|
cluster_id: string;
|
|
2821
2114
|
permissions: "readonly" | "readwrite";
|
|
@@ -2841,24 +2134,24 @@ export declare const zDeleteUserResponse: z.ZodObject<{
|
|
|
2841
2134
|
}>, "many">>;
|
|
2842
2135
|
}, "strip", z.ZodTypeAny, {
|
|
2843
2136
|
id: string;
|
|
2844
|
-
role: "
|
|
2137
|
+
role: "Administrator" | "User";
|
|
2845
2138
|
email: string;
|
|
2846
2139
|
status: "active" | "inactive";
|
|
2847
|
-
date_created: string;
|
|
2848
2140
|
first_name: string;
|
|
2849
2141
|
last_name: string;
|
|
2142
|
+
date_created: string;
|
|
2850
2143
|
cluster_permissions?: {
|
|
2851
2144
|
cluster_id: string;
|
|
2852
2145
|
permissions: "readonly" | "readwrite";
|
|
2853
2146
|
}[] | undefined;
|
|
2854
2147
|
}, {
|
|
2855
2148
|
id: string;
|
|
2856
|
-
role: "
|
|
2149
|
+
role: "Administrator" | "User";
|
|
2857
2150
|
email: string;
|
|
2858
2151
|
status: "active" | "inactive";
|
|
2859
|
-
date_created: string;
|
|
2860
2152
|
first_name: string;
|
|
2861
2153
|
last_name: string;
|
|
2154
|
+
date_created: string;
|
|
2862
2155
|
cluster_permissions?: {
|
|
2863
2156
|
cluster_id: string;
|
|
2864
2157
|
permissions: "readonly" | "readwrite";
|
|
@@ -2884,24 +2177,24 @@ export declare const zGetUserResponse: z.ZodObject<{
|
|
|
2884
2177
|
}>, "many">>;
|
|
2885
2178
|
}, "strip", z.ZodTypeAny, {
|
|
2886
2179
|
id: string;
|
|
2887
|
-
role: "
|
|
2180
|
+
role: "Administrator" | "User";
|
|
2888
2181
|
email: string;
|
|
2889
2182
|
status: "active" | "inactive";
|
|
2890
|
-
date_created: string;
|
|
2891
2183
|
first_name: string;
|
|
2892
2184
|
last_name: string;
|
|
2185
|
+
date_created: string;
|
|
2893
2186
|
cluster_permissions?: {
|
|
2894
2187
|
cluster_id: string;
|
|
2895
2188
|
permissions: "readonly" | "readwrite";
|
|
2896
2189
|
}[] | undefined;
|
|
2897
2190
|
}, {
|
|
2898
2191
|
id: string;
|
|
2899
|
-
role: "
|
|
2192
|
+
role: "Administrator" | "User";
|
|
2900
2193
|
email: string;
|
|
2901
2194
|
status: "active" | "inactive";
|
|
2902
|
-
date_created: string;
|
|
2903
2195
|
first_name: string;
|
|
2904
2196
|
last_name: string;
|
|
2197
|
+
date_created: string;
|
|
2905
2198
|
cluster_permissions?: {
|
|
2906
2199
|
cluster_id: string;
|
|
2907
2200
|
permissions: "readonly" | "readwrite";
|
|
@@ -2927,24 +2220,24 @@ export declare const zUpdateUserResponse: z.ZodObject<{
|
|
|
2927
2220
|
}>, "many">>;
|
|
2928
2221
|
}, "strip", z.ZodTypeAny, {
|
|
2929
2222
|
id: string;
|
|
2930
|
-
role: "
|
|
2223
|
+
role: "Administrator" | "User";
|
|
2931
2224
|
email: string;
|
|
2932
2225
|
status: "active" | "inactive";
|
|
2933
|
-
date_created: string;
|
|
2934
2226
|
first_name: string;
|
|
2935
2227
|
last_name: string;
|
|
2228
|
+
date_created: string;
|
|
2936
2229
|
cluster_permissions?: {
|
|
2937
2230
|
cluster_id: string;
|
|
2938
2231
|
permissions: "readonly" | "readwrite";
|
|
2939
2232
|
}[] | undefined;
|
|
2940
2233
|
}, {
|
|
2941
2234
|
id: string;
|
|
2942
|
-
role: "
|
|
2235
|
+
role: "Administrator" | "User";
|
|
2943
2236
|
email: string;
|
|
2944
2237
|
status: "active" | "inactive";
|
|
2945
|
-
date_created: string;
|
|
2946
2238
|
first_name: string;
|
|
2947
2239
|
last_name: string;
|
|
2240
|
+
date_created: string;
|
|
2948
2241
|
cluster_permissions?: {
|
|
2949
2242
|
cluster_id: string;
|
|
2950
2243
|
permissions: "readonly" | "readwrite";
|
|
@@ -2970,24 +2263,24 @@ export declare const zDeleteClusterPermissionsResponse: z.ZodObject<{
|
|
|
2970
2263
|
}>, "many">>;
|
|
2971
2264
|
}, "strip", z.ZodTypeAny, {
|
|
2972
2265
|
id: string;
|
|
2973
|
-
role: "
|
|
2266
|
+
role: "Administrator" | "User";
|
|
2974
2267
|
email: string;
|
|
2975
2268
|
status: "active" | "inactive";
|
|
2976
|
-
date_created: string;
|
|
2977
2269
|
first_name: string;
|
|
2978
2270
|
last_name: string;
|
|
2271
|
+
date_created: string;
|
|
2979
2272
|
cluster_permissions?: {
|
|
2980
2273
|
cluster_id: string;
|
|
2981
2274
|
permissions: "readonly" | "readwrite";
|
|
2982
2275
|
}[] | undefined;
|
|
2983
2276
|
}, {
|
|
2984
2277
|
id: string;
|
|
2985
|
-
role: "
|
|
2278
|
+
role: "Administrator" | "User";
|
|
2986
2279
|
email: string;
|
|
2987
2280
|
status: "active" | "inactive";
|
|
2988
|
-
date_created: string;
|
|
2989
2281
|
first_name: string;
|
|
2990
2282
|
last_name: string;
|
|
2283
|
+
date_created: string;
|
|
2991
2284
|
cluster_permissions?: {
|
|
2992
2285
|
cluster_id: string;
|
|
2993
2286
|
permissions: "readonly" | "readwrite";
|
|
@@ -3013,24 +2306,24 @@ export declare const zSetClusterPermissionsResponse: z.ZodObject<{
|
|
|
3013
2306
|
}>, "many">>;
|
|
3014
2307
|
}, "strip", z.ZodTypeAny, {
|
|
3015
2308
|
id: string;
|
|
3016
|
-
role: "
|
|
2309
|
+
role: "Administrator" | "User";
|
|
3017
2310
|
email: string;
|
|
3018
2311
|
status: "active" | "inactive";
|
|
3019
|
-
date_created: string;
|
|
3020
2312
|
first_name: string;
|
|
3021
2313
|
last_name: string;
|
|
2314
|
+
date_created: string;
|
|
3022
2315
|
cluster_permissions?: {
|
|
3023
2316
|
cluster_id: string;
|
|
3024
2317
|
permissions: "readonly" | "readwrite";
|
|
3025
2318
|
}[] | undefined;
|
|
3026
2319
|
}, {
|
|
3027
2320
|
id: string;
|
|
3028
|
-
role: "
|
|
2321
|
+
role: "Administrator" | "User";
|
|
3029
2322
|
email: string;
|
|
3030
2323
|
status: "active" | "inactive";
|
|
3031
|
-
date_created: string;
|
|
3032
2324
|
first_name: string;
|
|
3033
2325
|
last_name: string;
|
|
2326
|
+
date_created: string;
|
|
3034
2327
|
cluster_permissions?: {
|
|
3035
2328
|
cluster_id: string;
|
|
3036
2329
|
permissions: "readonly" | "readwrite";
|