@cloudfleet/sdk 0.4.0 → 0.5.1
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 +3 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/dist/schemas.gen.d.ts +1 -293
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +1 -293
- package/dist/schemas.gen.js.map +1 -1
- package/dist/sdk.gen.d.ts +20 -81
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/sdk.gen.js +44 -114
- package/dist/sdk.gen.js.map +1 -1
- package/dist/services/kubernetes/api.d.ts +196 -0
- package/dist/services/kubernetes/api.d.ts.map +1 -0
- package/dist/services/kubernetes/api.js +140 -0
- package/dist/services/kubernetes/api.js.map +1 -0
- package/dist/services/kubernetes/index.d.ts +44 -0
- package/dist/services/kubernetes/index.d.ts.map +1 -0
- package/dist/services/kubernetes/index.js +68 -0
- package/dist/services/kubernetes/index.js.map +1 -0
- package/dist/services/kubernetes/types.d.ts +1335 -0
- package/dist/services/kubernetes/types.d.ts.map +1 -0
- package/dist/services/kubernetes/types.js +2 -0
- package/dist/services/kubernetes/types.js.map +1 -0
- package/dist/types.gen.d.ts +3 -477
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +78 -577
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +6 -95
- package/dist/zod.gen.js.map +1 -1
- package/package.json +9 -5
package/dist/zod.gen.d.ts
CHANGED
|
@@ -133,18 +133,19 @@ export declare const zCluster: z.ZodObject<{
|
|
|
133
133
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
134
134
|
tier: "basic" | "pro";
|
|
135
135
|
version_channel: string;
|
|
136
|
+
ready?: boolean | undefined;
|
|
136
137
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
137
138
|
endpoint?: string | undefined;
|
|
138
139
|
certificate_ca?: string | undefined;
|
|
139
140
|
version_current?: string | undefined;
|
|
140
141
|
created_at?: string | undefined;
|
|
141
142
|
updated_at?: string | undefined;
|
|
142
|
-
ready?: boolean | undefined;
|
|
143
143
|
}, {
|
|
144
144
|
name: string;
|
|
145
145
|
id: string;
|
|
146
146
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
147
147
|
tier: "basic" | "pro";
|
|
148
|
+
ready?: boolean | undefined;
|
|
148
149
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
149
150
|
endpoint?: string | undefined;
|
|
150
151
|
version_channel?: string | undefined;
|
|
@@ -152,7 +153,6 @@ export declare const zCluster: z.ZodObject<{
|
|
|
152
153
|
version_current?: string | undefined;
|
|
153
154
|
created_at?: string | undefined;
|
|
154
155
|
updated_at?: string | undefined;
|
|
155
|
-
ready?: boolean | undefined;
|
|
156
156
|
}>;
|
|
157
157
|
export declare const zClusterUpdateInput: z.ZodObject<{
|
|
158
158
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -434,140 +434,6 @@ export declare const zFleetUpdateInput: z.ZodObject<{
|
|
|
434
434
|
enabled?: boolean | undefined;
|
|
435
435
|
} | undefined;
|
|
436
436
|
}>;
|
|
437
|
-
export declare const zInfrastructureFilter: z.ZodObject<{
|
|
438
|
-
version: z.ZodOptional<z.ZodUnknown>;
|
|
439
|
-
provider: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
440
|
-
region: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
441
|
-
sub_region: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
442
|
-
csp_region: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
443
|
-
instance_type: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
444
|
-
accelerator_name: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
445
|
-
accelerator_manufacturer: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
446
|
-
accelerator_count_min: z.ZodOptional<z.ZodNumber>;
|
|
447
|
-
accelerator_count_max: z.ZodOptional<z.ZodNumber>;
|
|
448
|
-
accelerator_memory_min: z.ZodOptional<z.ZodNumber>;
|
|
449
|
-
accelerator_memory_max: z.ZodOptional<z.ZodNumber>;
|
|
450
|
-
memory_min: z.ZodOptional<z.ZodNumber>;
|
|
451
|
-
memory_max: z.ZodOptional<z.ZodNumber>;
|
|
452
|
-
vcpu_min: z.ZodOptional<z.ZodNumber>;
|
|
453
|
-
vcpu_max: z.ZodOptional<z.ZodNumber>;
|
|
454
|
-
storage_total_min: z.ZodOptional<z.ZodNumber>;
|
|
455
|
-
storage_total_max: z.ZodOptional<z.ZodNumber>;
|
|
456
|
-
storage_local_min: z.ZodOptional<z.ZodNumber>;
|
|
457
|
-
storage_local_max: z.ZodOptional<z.ZodNumber>;
|
|
458
|
-
price_min: z.ZodOptional<z.ZodNumber>;
|
|
459
|
-
price_max: z.ZodOptional<z.ZodNumber>;
|
|
460
|
-
}, "strip", z.ZodTypeAny, {
|
|
461
|
-
region?: string[] | undefined;
|
|
462
|
-
provider?: string[] | undefined;
|
|
463
|
-
sub_region?: string[] | undefined;
|
|
464
|
-
csp_region?: string[] | undefined;
|
|
465
|
-
instance_type?: string[] | undefined;
|
|
466
|
-
version?: unknown;
|
|
467
|
-
accelerator_name?: string[] | undefined;
|
|
468
|
-
accelerator_manufacturer?: string[] | undefined;
|
|
469
|
-
accelerator_count_min?: number | undefined;
|
|
470
|
-
accelerator_count_max?: number | undefined;
|
|
471
|
-
accelerator_memory_min?: number | undefined;
|
|
472
|
-
accelerator_memory_max?: number | undefined;
|
|
473
|
-
memory_min?: number | undefined;
|
|
474
|
-
memory_max?: number | undefined;
|
|
475
|
-
vcpu_min?: number | undefined;
|
|
476
|
-
vcpu_max?: number | undefined;
|
|
477
|
-
storage_total_min?: number | undefined;
|
|
478
|
-
storage_total_max?: number | undefined;
|
|
479
|
-
storage_local_min?: number | undefined;
|
|
480
|
-
storage_local_max?: number | undefined;
|
|
481
|
-
price_min?: number | undefined;
|
|
482
|
-
price_max?: number | undefined;
|
|
483
|
-
}, {
|
|
484
|
-
region?: string[] | undefined;
|
|
485
|
-
provider?: string[] | undefined;
|
|
486
|
-
sub_region?: string[] | undefined;
|
|
487
|
-
csp_region?: string[] | undefined;
|
|
488
|
-
instance_type?: string[] | undefined;
|
|
489
|
-
version?: unknown;
|
|
490
|
-
accelerator_name?: string[] | undefined;
|
|
491
|
-
accelerator_manufacturer?: string[] | undefined;
|
|
492
|
-
accelerator_count_min?: number | undefined;
|
|
493
|
-
accelerator_count_max?: number | undefined;
|
|
494
|
-
accelerator_memory_min?: number | undefined;
|
|
495
|
-
accelerator_memory_max?: number | undefined;
|
|
496
|
-
memory_min?: number | undefined;
|
|
497
|
-
memory_max?: number | undefined;
|
|
498
|
-
vcpu_min?: number | undefined;
|
|
499
|
-
vcpu_max?: number | undefined;
|
|
500
|
-
storage_total_min?: number | undefined;
|
|
501
|
-
storage_total_max?: number | undefined;
|
|
502
|
-
storage_local_min?: number | undefined;
|
|
503
|
-
storage_local_max?: number | undefined;
|
|
504
|
-
price_min?: number | undefined;
|
|
505
|
-
price_max?: number | undefined;
|
|
506
|
-
}>;
|
|
507
|
-
export declare const zInfrastructureInstance: z.ZodObject<{
|
|
508
|
-
sku: z.ZodString;
|
|
509
|
-
provider: z.ZodString;
|
|
510
|
-
region: z.ZodString;
|
|
511
|
-
sub_region: z.ZodString;
|
|
512
|
-
csp_region: z.ZodString;
|
|
513
|
-
csp_zone: z.ZodString;
|
|
514
|
-
instance_type: z.ZodString;
|
|
515
|
-
architecture: z.ZodString;
|
|
516
|
-
os: z.ZodString;
|
|
517
|
-
vcpu: z.ZodNumber;
|
|
518
|
-
memory: z.ZodNumber;
|
|
519
|
-
local_storage: z.ZodNumber;
|
|
520
|
-
accelerator_name: z.ZodOptional<z.ZodString>;
|
|
521
|
-
accelerator_manufacturer: z.ZodOptional<z.ZodString>;
|
|
522
|
-
accelerator_count: z.ZodOptional<z.ZodNumber>;
|
|
523
|
-
accelerator_memory: z.ZodOptional<z.ZodNumber>;
|
|
524
|
-
pods_capacity: z.ZodOptional<z.ZodNumber>;
|
|
525
|
-
capacity_type: z.ZodOptional<z.ZodString>;
|
|
526
|
-
price: z.ZodNumber;
|
|
527
|
-
available: z.ZodOptional<z.ZodBoolean>;
|
|
528
|
-
}, "strip", z.ZodTypeAny, {
|
|
529
|
-
memory: number;
|
|
530
|
-
region: string;
|
|
531
|
-
sku: string;
|
|
532
|
-
provider: string;
|
|
533
|
-
sub_region: string;
|
|
534
|
-
csp_region: string;
|
|
535
|
-
csp_zone: string;
|
|
536
|
-
instance_type: string;
|
|
537
|
-
architecture: string;
|
|
538
|
-
os: string;
|
|
539
|
-
vcpu: number;
|
|
540
|
-
local_storage: number;
|
|
541
|
-
price: number;
|
|
542
|
-
accelerator_name?: string | undefined;
|
|
543
|
-
accelerator_manufacturer?: string | undefined;
|
|
544
|
-
accelerator_count?: number | undefined;
|
|
545
|
-
accelerator_memory?: number | undefined;
|
|
546
|
-
pods_capacity?: number | undefined;
|
|
547
|
-
capacity_type?: string | undefined;
|
|
548
|
-
available?: boolean | undefined;
|
|
549
|
-
}, {
|
|
550
|
-
memory: number;
|
|
551
|
-
region: string;
|
|
552
|
-
sku: string;
|
|
553
|
-
provider: string;
|
|
554
|
-
sub_region: string;
|
|
555
|
-
csp_region: string;
|
|
556
|
-
csp_zone: string;
|
|
557
|
-
instance_type: string;
|
|
558
|
-
architecture: string;
|
|
559
|
-
os: string;
|
|
560
|
-
vcpu: number;
|
|
561
|
-
local_storage: number;
|
|
562
|
-
price: number;
|
|
563
|
-
accelerator_name?: string | undefined;
|
|
564
|
-
accelerator_manufacturer?: string | undefined;
|
|
565
|
-
accelerator_count?: number | undefined;
|
|
566
|
-
accelerator_memory?: number | undefined;
|
|
567
|
-
pods_capacity?: number | undefined;
|
|
568
|
-
capacity_type?: string | undefined;
|
|
569
|
-
available?: boolean | undefined;
|
|
570
|
-
}>;
|
|
571
437
|
export declare const zInvite: z.ZodObject<{
|
|
572
438
|
id: z.ZodOptional<z.ZodString>;
|
|
573
439
|
organization_id: z.ZodOptional<z.ZodString>;
|
|
@@ -623,7 +489,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
623
489
|
catalogEffectiveDate: z.ZodOptional<z.ZodString>;
|
|
624
490
|
childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
625
491
|
}, "strip", z.ZodTypeAny, {
|
|
626
|
-
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;
|
|
627
493
|
id?: string | undefined;
|
|
628
494
|
description?: string | undefined;
|
|
629
495
|
amount?: number | undefined;
|
|
@@ -645,7 +511,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
645
511
|
catalogEffectiveDate?: string | undefined;
|
|
646
512
|
childItems?: unknown[] | undefined;
|
|
647
513
|
}, {
|
|
648
|
-
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;
|
|
649
515
|
id?: string | undefined;
|
|
650
516
|
description?: string | undefined;
|
|
651
517
|
amount?: number | undefined;
|
|
@@ -690,7 +556,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
690
556
|
catalogEffectiveDate: z.ZodOptional<z.ZodString>;
|
|
691
557
|
childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
692
558
|
}, "strip", z.ZodTypeAny, {
|
|
693
|
-
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;
|
|
694
560
|
id?: string | undefined;
|
|
695
561
|
description?: string | undefined;
|
|
696
562
|
amount?: number | undefined;
|
|
@@ -712,7 +578,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
712
578
|
catalogEffectiveDate?: string | undefined;
|
|
713
579
|
childItems?: unknown[] | undefined;
|
|
714
580
|
}, {
|
|
715
|
-
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;
|
|
716
582
|
id?: string | undefined;
|
|
717
583
|
description?: string | undefined;
|
|
718
584
|
amount?: number | undefined;
|
|
@@ -735,11 +601,11 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
735
601
|
childItems?: unknown[] | undefined;
|
|
736
602
|
}>, "many">>;
|
|
737
603
|
}, "strip", z.ZodTypeAny, {
|
|
738
|
-
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;
|
|
739
605
|
id?: string | undefined;
|
|
740
606
|
status?: "DRAFT" | "COMMITTED" | "VOID" | undefined;
|
|
741
607
|
items?: {
|
|
742
|
-
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;
|
|
743
609
|
id?: string | undefined;
|
|
744
610
|
description?: string | undefined;
|
|
745
611
|
amount?: number | undefined;
|
|
@@ -771,7 +637,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
771
637
|
balance?: number | undefined;
|
|
772
638
|
bundleKeys?: string | undefined;
|
|
773
639
|
credits?: {
|
|
774
|
-
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;
|
|
775
641
|
id?: string | undefined;
|
|
776
642
|
description?: string | undefined;
|
|
777
643
|
amount?: number | undefined;
|
|
@@ -794,11 +660,11 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
794
660
|
childItems?: unknown[] | undefined;
|
|
795
661
|
}[] | undefined;
|
|
796
662
|
}, {
|
|
797
|
-
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;
|
|
798
664
|
id?: string | undefined;
|
|
799
665
|
status?: "DRAFT" | "COMMITTED" | "VOID" | undefined;
|
|
800
666
|
items?: {
|
|
801
|
-
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;
|
|
802
668
|
id?: string | undefined;
|
|
803
669
|
description?: string | undefined;
|
|
804
670
|
amount?: number | undefined;
|
|
@@ -830,7 +696,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
830
696
|
balance?: number | undefined;
|
|
831
697
|
bundleKeys?: string | undefined;
|
|
832
698
|
credits?: {
|
|
833
|
-
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;
|
|
834
700
|
id?: string | undefined;
|
|
835
701
|
description?: string | undefined;
|
|
836
702
|
amount?: number | undefined;
|
|
@@ -977,7 +843,7 @@ export declare const zPaymentMethod: z.ZodObject<{
|
|
|
977
843
|
last4: string;
|
|
978
844
|
exp_month: number;
|
|
979
845
|
exp_year: number;
|
|
980
|
-
brand: "unknown" | "
|
|
846
|
+
brand: "unknown" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay" | "visa";
|
|
981
847
|
}, {
|
|
982
848
|
type: "card";
|
|
983
849
|
id: string;
|
|
@@ -985,17 +851,17 @@ export declare const zPaymentMethod: z.ZodObject<{
|
|
|
985
851
|
last4: string;
|
|
986
852
|
exp_month: number;
|
|
987
853
|
exp_year: number;
|
|
988
|
-
brand: "unknown" | "
|
|
854
|
+
brand: "unknown" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay" | "visa";
|
|
989
855
|
}>;
|
|
990
856
|
export declare const zTokenCreateInput: z.ZodObject<{
|
|
991
857
|
name: z.ZodString;
|
|
992
858
|
role: z.ZodEnum<["Administrator", "User"]>;
|
|
993
859
|
}, "strip", z.ZodTypeAny, {
|
|
994
860
|
name: string;
|
|
995
|
-
role: "
|
|
861
|
+
role: "Administrator" | "User";
|
|
996
862
|
}, {
|
|
997
863
|
name: string;
|
|
998
|
-
role: "
|
|
864
|
+
role: "Administrator" | "User";
|
|
999
865
|
}>;
|
|
1000
866
|
export declare const zToken: z.ZodObject<{
|
|
1001
867
|
name: z.ZodString;
|
|
@@ -1005,13 +871,13 @@ export declare const zToken: z.ZodObject<{
|
|
|
1005
871
|
date_created: z.ZodString;
|
|
1006
872
|
}, "strip", z.ZodTypeAny, {
|
|
1007
873
|
name: string;
|
|
1008
|
-
role: "
|
|
874
|
+
role: "Administrator" | "User";
|
|
1009
875
|
date_created: string;
|
|
1010
876
|
id?: string | undefined;
|
|
1011
877
|
secret?: string | undefined;
|
|
1012
878
|
}, {
|
|
1013
879
|
name: string;
|
|
1014
|
-
role: "
|
|
880
|
+
role: "Administrator" | "User";
|
|
1015
881
|
date_created: string;
|
|
1016
882
|
id?: string | undefined;
|
|
1017
883
|
secret?: string | undefined;
|
|
@@ -1021,10 +887,10 @@ export declare const zTokenUpdateInput: z.ZodObject<{
|
|
|
1021
887
|
role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
|
|
1022
888
|
}, "strip", z.ZodTypeAny, {
|
|
1023
889
|
name?: string | undefined;
|
|
1024
|
-
role?: "
|
|
890
|
+
role?: "Administrator" | "User" | undefined;
|
|
1025
891
|
}, {
|
|
1026
892
|
name?: string | undefined;
|
|
1027
|
-
role?: "
|
|
893
|
+
role?: "Administrator" | "User" | undefined;
|
|
1028
894
|
}>;
|
|
1029
895
|
export declare const zUsage: z.ZodObject<{
|
|
1030
896
|
hour: z.ZodOptional<z.ZodString>;
|
|
@@ -1039,25 +905,25 @@ export declare const zUsage: z.ZodObject<{
|
|
|
1039
905
|
total: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1040
906
|
}, "strip", z.ZodTypeAny, {
|
|
1041
907
|
total: number | "";
|
|
908
|
+
cpu: number | "";
|
|
1042
909
|
product: "cfke_infra_compute" | "cfke_nodes" | "cfke_controlplane";
|
|
1043
910
|
value: number | "";
|
|
1044
|
-
cpu: number | "";
|
|
1045
|
-
sku: string;
|
|
1046
|
-
price: number | "";
|
|
1047
911
|
cluster_id: string;
|
|
1048
912
|
cluster_tier: "";
|
|
1049
913
|
node_name: string;
|
|
914
|
+
sku: string;
|
|
915
|
+
price: number | "";
|
|
1050
916
|
hour?: string | undefined;
|
|
1051
917
|
}, {
|
|
1052
918
|
total: number | "";
|
|
919
|
+
cpu: number | "";
|
|
1053
920
|
product: "cfke_infra_compute" | "cfke_nodes" | "cfke_controlplane";
|
|
1054
921
|
value: number | "";
|
|
1055
|
-
cpu: number | "";
|
|
1056
|
-
sku: string;
|
|
1057
|
-
price: number | "";
|
|
1058
922
|
cluster_id: string;
|
|
1059
923
|
cluster_tier: "";
|
|
1060
924
|
node_name: string;
|
|
925
|
+
sku: string;
|
|
926
|
+
price: number | "";
|
|
1061
927
|
hour?: string | undefined;
|
|
1062
928
|
}>;
|
|
1063
929
|
export declare const zUserCreateInput: z.ZodObject<{
|
|
@@ -1074,7 +940,7 @@ export declare const zUserCreateInput: z.ZodObject<{
|
|
|
1074
940
|
first_name: string;
|
|
1075
941
|
last_name: string;
|
|
1076
942
|
password: string;
|
|
1077
|
-
role?: "
|
|
943
|
+
role?: "Administrator" | "User" | undefined;
|
|
1078
944
|
status?: "active" | "inactive" | undefined;
|
|
1079
945
|
}, {
|
|
1080
946
|
code: string;
|
|
@@ -1082,7 +948,7 @@ export declare const zUserCreateInput: z.ZodObject<{
|
|
|
1082
948
|
first_name: string;
|
|
1083
949
|
last_name: string;
|
|
1084
950
|
password: string;
|
|
1085
|
-
role?: "
|
|
951
|
+
role?: "Administrator" | "User" | undefined;
|
|
1086
952
|
status?: "active" | "inactive" | undefined;
|
|
1087
953
|
}>;
|
|
1088
954
|
export declare const zUser: z.ZodObject<{
|
|
@@ -1093,40 +959,22 @@ export declare const zUser: z.ZodObject<{
|
|
|
1093
959
|
status: z.ZodEnum<["active", "inactive"]>;
|
|
1094
960
|
id: z.ZodString;
|
|
1095
961
|
date_created: z.ZodString;
|
|
1096
|
-
cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1097
|
-
cluster_id: z.ZodString;
|
|
1098
|
-
permissions: z.ZodEnum<["readwrite", "readonly"]>;
|
|
1099
|
-
}, "strip", z.ZodTypeAny, {
|
|
1100
|
-
cluster_id: string;
|
|
1101
|
-
permissions: "readonly" | "readwrite";
|
|
1102
|
-
}, {
|
|
1103
|
-
cluster_id: string;
|
|
1104
|
-
permissions: "readonly" | "readwrite";
|
|
1105
|
-
}>, "many">>;
|
|
1106
962
|
}, "strip", z.ZodTypeAny, {
|
|
1107
963
|
id: string;
|
|
1108
|
-
role: "
|
|
964
|
+
role: "Administrator" | "User";
|
|
1109
965
|
email: string;
|
|
1110
966
|
status: "active" | "inactive";
|
|
1111
967
|
first_name: string;
|
|
1112
968
|
last_name: string;
|
|
1113
969
|
date_created: string;
|
|
1114
|
-
cluster_permissions?: {
|
|
1115
|
-
cluster_id: string;
|
|
1116
|
-
permissions: "readonly" | "readwrite";
|
|
1117
|
-
}[] | undefined;
|
|
1118
970
|
}, {
|
|
1119
971
|
id: string;
|
|
1120
|
-
role: "
|
|
972
|
+
role: "Administrator" | "User";
|
|
1121
973
|
email: string;
|
|
1122
974
|
status: "active" | "inactive";
|
|
1123
975
|
first_name: string;
|
|
1124
976
|
last_name: string;
|
|
1125
977
|
date_created: string;
|
|
1126
|
-
cluster_permissions?: {
|
|
1127
|
-
cluster_id: string;
|
|
1128
|
-
permissions: "readonly" | "readwrite";
|
|
1129
|
-
}[] | undefined;
|
|
1130
978
|
}>;
|
|
1131
979
|
export declare const zUserUpdateInput: z.ZodObject<{
|
|
1132
980
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -1135,13 +983,13 @@ export declare const zUserUpdateInput: z.ZodObject<{
|
|
|
1135
983
|
role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
|
|
1136
984
|
status: z.ZodOptional<z.ZodEnum<["active", "inactive"]>>;
|
|
1137
985
|
}, "strip", z.ZodTypeAny, {
|
|
1138
|
-
role?: "
|
|
986
|
+
role?: "Administrator" | "User" | undefined;
|
|
1139
987
|
email?: string | undefined;
|
|
1140
988
|
status?: "active" | "inactive" | undefined;
|
|
1141
989
|
first_name?: string | undefined;
|
|
1142
990
|
last_name?: string | undefined;
|
|
1143
991
|
}, {
|
|
1144
|
-
role?: "
|
|
992
|
+
role?: "Administrator" | "User" | undefined;
|
|
1145
993
|
email?: string | undefined;
|
|
1146
994
|
status?: "active" | "inactive" | undefined;
|
|
1147
995
|
first_name?: string | undefined;
|
|
@@ -1160,25 +1008,25 @@ export declare const zGetUsageResponse: z.ZodArray<z.ZodObject<{
|
|
|
1160
1008
|
total: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1161
1009
|
}, "strip", z.ZodTypeAny, {
|
|
1162
1010
|
total: number | "";
|
|
1011
|
+
cpu: number | "";
|
|
1163
1012
|
product: "cfke_infra_compute" | "cfke_nodes" | "cfke_controlplane";
|
|
1164
1013
|
value: number | "";
|
|
1165
|
-
cpu: number | "";
|
|
1166
|
-
sku: string;
|
|
1167
|
-
price: number | "";
|
|
1168
1014
|
cluster_id: string;
|
|
1169
1015
|
cluster_tier: "";
|
|
1170
1016
|
node_name: string;
|
|
1017
|
+
sku: string;
|
|
1018
|
+
price: number | "";
|
|
1171
1019
|
hour?: string | undefined;
|
|
1172
1020
|
}, {
|
|
1173
1021
|
total: number | "";
|
|
1022
|
+
cpu: number | "";
|
|
1174
1023
|
product: "cfke_infra_compute" | "cfke_nodes" | "cfke_controlplane";
|
|
1175
1024
|
value: number | "";
|
|
1176
|
-
cpu: number | "";
|
|
1177
|
-
sku: string;
|
|
1178
|
-
price: number | "";
|
|
1179
1025
|
cluster_id: string;
|
|
1180
1026
|
cluster_tier: "";
|
|
1181
1027
|
node_name: string;
|
|
1028
|
+
sku: string;
|
|
1029
|
+
price: number | "";
|
|
1182
1030
|
hour?: string | undefined;
|
|
1183
1031
|
}>, "many">;
|
|
1184
1032
|
export declare const zGetBalanceResponse: z.ZodNumber;
|
|
@@ -1197,7 +1045,7 @@ export declare const zGetPaymentMethodResponse: z.ZodObject<{
|
|
|
1197
1045
|
last4: string;
|
|
1198
1046
|
exp_month: number;
|
|
1199
1047
|
exp_year: number;
|
|
1200
|
-
brand: "unknown" | "
|
|
1048
|
+
brand: "unknown" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay" | "visa";
|
|
1201
1049
|
}, {
|
|
1202
1050
|
type: "card";
|
|
1203
1051
|
id: string;
|
|
@@ -1205,7 +1053,7 @@ export declare const zGetPaymentMethodResponse: z.ZodObject<{
|
|
|
1205
1053
|
last4: string;
|
|
1206
1054
|
exp_month: number;
|
|
1207
1055
|
exp_year: number;
|
|
1208
|
-
brand: "unknown" | "
|
|
1056
|
+
brand: "unknown" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay" | "visa";
|
|
1209
1057
|
}>;
|
|
1210
1058
|
export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
|
|
1211
1059
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -1250,7 +1098,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1250
1098
|
catalogEffectiveDate: z.ZodOptional<z.ZodString>;
|
|
1251
1099
|
childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
1252
1100
|
}, "strip", z.ZodTypeAny, {
|
|
1253
|
-
currency?: "
|
|
1101
|
+
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;
|
|
1254
1102
|
id?: string | undefined;
|
|
1255
1103
|
description?: string | undefined;
|
|
1256
1104
|
amount?: number | undefined;
|
|
@@ -1272,7 +1120,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1272
1120
|
catalogEffectiveDate?: string | undefined;
|
|
1273
1121
|
childItems?: unknown[] | undefined;
|
|
1274
1122
|
}, {
|
|
1275
|
-
currency?: "
|
|
1123
|
+
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;
|
|
1276
1124
|
id?: string | undefined;
|
|
1277
1125
|
description?: string | undefined;
|
|
1278
1126
|
amount?: number | undefined;
|
|
@@ -1317,7 +1165,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1317
1165
|
catalogEffectiveDate: z.ZodOptional<z.ZodString>;
|
|
1318
1166
|
childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
1319
1167
|
}, "strip", z.ZodTypeAny, {
|
|
1320
|
-
currency?: "
|
|
1168
|
+
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;
|
|
1321
1169
|
id?: string | undefined;
|
|
1322
1170
|
description?: string | undefined;
|
|
1323
1171
|
amount?: number | undefined;
|
|
@@ -1339,7 +1187,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1339
1187
|
catalogEffectiveDate?: string | undefined;
|
|
1340
1188
|
childItems?: unknown[] | undefined;
|
|
1341
1189
|
}, {
|
|
1342
|
-
currency?: "
|
|
1190
|
+
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;
|
|
1343
1191
|
id?: string | undefined;
|
|
1344
1192
|
description?: string | undefined;
|
|
1345
1193
|
amount?: number | undefined;
|
|
@@ -1362,11 +1210,11 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1362
1210
|
childItems?: unknown[] | undefined;
|
|
1363
1211
|
}>, "many">>;
|
|
1364
1212
|
}, "strip", z.ZodTypeAny, {
|
|
1365
|
-
currency?: "
|
|
1213
|
+
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;
|
|
1366
1214
|
id?: string | undefined;
|
|
1367
1215
|
status?: "DRAFT" | "COMMITTED" | "VOID" | undefined;
|
|
1368
1216
|
items?: {
|
|
1369
|
-
currency?: "
|
|
1217
|
+
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;
|
|
1370
1218
|
id?: string | undefined;
|
|
1371
1219
|
description?: string | undefined;
|
|
1372
1220
|
amount?: number | undefined;
|
|
@@ -1398,7 +1246,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1398
1246
|
balance?: number | undefined;
|
|
1399
1247
|
bundleKeys?: string | undefined;
|
|
1400
1248
|
credits?: {
|
|
1401
|
-
currency?: "
|
|
1249
|
+
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;
|
|
1402
1250
|
id?: string | undefined;
|
|
1403
1251
|
description?: string | undefined;
|
|
1404
1252
|
amount?: number | undefined;
|
|
@@ -1421,11 +1269,11 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1421
1269
|
childItems?: unknown[] | undefined;
|
|
1422
1270
|
}[] | undefined;
|
|
1423
1271
|
}, {
|
|
1424
|
-
currency?: "
|
|
1272
|
+
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;
|
|
1425
1273
|
id?: string | undefined;
|
|
1426
1274
|
status?: "DRAFT" | "COMMITTED" | "VOID" | undefined;
|
|
1427
1275
|
items?: {
|
|
1428
|
-
currency?: "
|
|
1276
|
+
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;
|
|
1429
1277
|
id?: string | undefined;
|
|
1430
1278
|
description?: string | undefined;
|
|
1431
1279
|
amount?: number | undefined;
|
|
@@ -1457,7 +1305,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1457
1305
|
balance?: number | undefined;
|
|
1458
1306
|
bundleKeys?: string | undefined;
|
|
1459
1307
|
credits?: {
|
|
1460
|
-
currency?: "
|
|
1308
|
+
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;
|
|
1461
1309
|
id?: string | undefined;
|
|
1462
1310
|
description?: string | undefined;
|
|
1463
1311
|
amount?: number | undefined;
|
|
@@ -1767,18 +1615,19 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
|
1767
1615
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1768
1616
|
tier: "basic" | "pro";
|
|
1769
1617
|
version_channel: string;
|
|
1618
|
+
ready?: boolean | undefined;
|
|
1770
1619
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1771
1620
|
endpoint?: string | undefined;
|
|
1772
1621
|
certificate_ca?: string | undefined;
|
|
1773
1622
|
version_current?: string | undefined;
|
|
1774
1623
|
created_at?: string | undefined;
|
|
1775
1624
|
updated_at?: string | undefined;
|
|
1776
|
-
ready?: boolean | undefined;
|
|
1777
1625
|
}, {
|
|
1778
1626
|
name: string;
|
|
1779
1627
|
id: string;
|
|
1780
1628
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1781
1629
|
tier: "basic" | "pro";
|
|
1630
|
+
ready?: boolean | undefined;
|
|
1782
1631
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1783
1632
|
endpoint?: string | undefined;
|
|
1784
1633
|
version_channel?: string | undefined;
|
|
@@ -1786,7 +1635,6 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
|
1786
1635
|
version_current?: string | undefined;
|
|
1787
1636
|
created_at?: string | undefined;
|
|
1788
1637
|
updated_at?: string | undefined;
|
|
1789
|
-
ready?: boolean | undefined;
|
|
1790
1638
|
}>, "many">;
|
|
1791
1639
|
export declare const zCreateClusterResponse: z.ZodString;
|
|
1792
1640
|
export declare const zDeleteClusterResponse: z.ZodString;
|
|
@@ -1809,18 +1657,19 @@ export declare const zGetClusterResponse: z.ZodObject<{
|
|
|
1809
1657
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1810
1658
|
tier: "basic" | "pro";
|
|
1811
1659
|
version_channel: string;
|
|
1660
|
+
ready?: boolean | undefined;
|
|
1812
1661
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1813
1662
|
endpoint?: string | undefined;
|
|
1814
1663
|
certificate_ca?: string | undefined;
|
|
1815
1664
|
version_current?: string | undefined;
|
|
1816
1665
|
created_at?: string | undefined;
|
|
1817
1666
|
updated_at?: string | undefined;
|
|
1818
|
-
ready?: boolean | undefined;
|
|
1819
1667
|
}, {
|
|
1820
1668
|
name: string;
|
|
1821
1669
|
id: string;
|
|
1822
1670
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1823
1671
|
tier: "basic" | "pro";
|
|
1672
|
+
ready?: boolean | undefined;
|
|
1824
1673
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1825
1674
|
endpoint?: string | undefined;
|
|
1826
1675
|
version_channel?: string | undefined;
|
|
@@ -1828,7 +1677,6 @@ export declare const zGetClusterResponse: z.ZodObject<{
|
|
|
1828
1677
|
version_current?: string | undefined;
|
|
1829
1678
|
created_at?: string | undefined;
|
|
1830
1679
|
updated_at?: string | undefined;
|
|
1831
|
-
ready?: boolean | undefined;
|
|
1832
1680
|
}>;
|
|
1833
1681
|
export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
1834
1682
|
name: z.ZodString;
|
|
@@ -1849,18 +1697,19 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
|
1849
1697
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1850
1698
|
tier: "basic" | "pro";
|
|
1851
1699
|
version_channel: string;
|
|
1700
|
+
ready?: boolean | undefined;
|
|
1852
1701
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1853
1702
|
endpoint?: string | undefined;
|
|
1854
1703
|
certificate_ca?: string | undefined;
|
|
1855
1704
|
version_current?: string | undefined;
|
|
1856
1705
|
created_at?: string | undefined;
|
|
1857
1706
|
updated_at?: string | undefined;
|
|
1858
|
-
ready?: boolean | undefined;
|
|
1859
1707
|
}, {
|
|
1860
1708
|
name: string;
|
|
1861
1709
|
id: string;
|
|
1862
1710
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1863
1711
|
tier: "basic" | "pro";
|
|
1712
|
+
ready?: boolean | undefined;
|
|
1864
1713
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1865
1714
|
endpoint?: string | undefined;
|
|
1866
1715
|
version_channel?: string | undefined;
|
|
@@ -1868,7 +1717,6 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
|
1868
1717
|
version_current?: string | undefined;
|
|
1869
1718
|
created_at?: string | undefined;
|
|
1870
1719
|
updated_at?: string | undefined;
|
|
1871
|
-
ready?: boolean | undefined;
|
|
1872
1720
|
}>;
|
|
1873
1721
|
export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
1874
1722
|
name: z.ZodString;
|
|
@@ -1889,18 +1737,19 @@ export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
|
1889
1737
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1890
1738
|
tier: "basic" | "pro";
|
|
1891
1739
|
version_channel: string;
|
|
1740
|
+
ready?: boolean | undefined;
|
|
1892
1741
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1893
1742
|
endpoint?: string | undefined;
|
|
1894
1743
|
certificate_ca?: string | undefined;
|
|
1895
1744
|
version_current?: string | undefined;
|
|
1896
1745
|
created_at?: string | undefined;
|
|
1897
1746
|
updated_at?: string | undefined;
|
|
1898
|
-
ready?: boolean | undefined;
|
|
1899
1747
|
}, {
|
|
1900
1748
|
name: string;
|
|
1901
1749
|
id: string;
|
|
1902
1750
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1903
1751
|
tier: "basic" | "pro";
|
|
1752
|
+
ready?: boolean | undefined;
|
|
1904
1753
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1905
1754
|
endpoint?: string | undefined;
|
|
1906
1755
|
version_channel?: string | undefined;
|
|
@@ -1908,179 +1757,7 @@ export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
|
1908
1757
|
version_current?: string | undefined;
|
|
1909
1758
|
created_at?: string | undefined;
|
|
1910
1759
|
updated_at?: string | undefined;
|
|
1911
|
-
ready?: boolean | undefined;
|
|
1912
1760
|
}>;
|
|
1913
|
-
export declare const zGetInfrastructureResponse: z.ZodArray<z.ZodObject<{
|
|
1914
|
-
sku: z.ZodString;
|
|
1915
|
-
provider: z.ZodString;
|
|
1916
|
-
region: z.ZodString;
|
|
1917
|
-
sub_region: z.ZodString;
|
|
1918
|
-
csp_region: z.ZodString;
|
|
1919
|
-
csp_zone: z.ZodString;
|
|
1920
|
-
instance_type: z.ZodString;
|
|
1921
|
-
architecture: z.ZodString;
|
|
1922
|
-
os: z.ZodString;
|
|
1923
|
-
vcpu: z.ZodNumber;
|
|
1924
|
-
memory: z.ZodNumber;
|
|
1925
|
-
local_storage: z.ZodNumber;
|
|
1926
|
-
accelerator_name: z.ZodOptional<z.ZodString>;
|
|
1927
|
-
accelerator_manufacturer: z.ZodOptional<z.ZodString>;
|
|
1928
|
-
accelerator_count: z.ZodOptional<z.ZodNumber>;
|
|
1929
|
-
accelerator_memory: z.ZodOptional<z.ZodNumber>;
|
|
1930
|
-
pods_capacity: z.ZodOptional<z.ZodNumber>;
|
|
1931
|
-
capacity_type: z.ZodOptional<z.ZodString>;
|
|
1932
|
-
price: z.ZodNumber;
|
|
1933
|
-
available: z.ZodOptional<z.ZodBoolean>;
|
|
1934
|
-
}, "strip", z.ZodTypeAny, {
|
|
1935
|
-
memory: number;
|
|
1936
|
-
region: string;
|
|
1937
|
-
sku: string;
|
|
1938
|
-
provider: string;
|
|
1939
|
-
sub_region: string;
|
|
1940
|
-
csp_region: string;
|
|
1941
|
-
csp_zone: string;
|
|
1942
|
-
instance_type: string;
|
|
1943
|
-
architecture: string;
|
|
1944
|
-
os: string;
|
|
1945
|
-
vcpu: number;
|
|
1946
|
-
local_storage: number;
|
|
1947
|
-
price: number;
|
|
1948
|
-
accelerator_name?: string | undefined;
|
|
1949
|
-
accelerator_manufacturer?: string | undefined;
|
|
1950
|
-
accelerator_count?: number | undefined;
|
|
1951
|
-
accelerator_memory?: number | undefined;
|
|
1952
|
-
pods_capacity?: number | undefined;
|
|
1953
|
-
capacity_type?: string | undefined;
|
|
1954
|
-
available?: boolean | undefined;
|
|
1955
|
-
}, {
|
|
1956
|
-
memory: number;
|
|
1957
|
-
region: string;
|
|
1958
|
-
sku: string;
|
|
1959
|
-
provider: string;
|
|
1960
|
-
sub_region: string;
|
|
1961
|
-
csp_region: string;
|
|
1962
|
-
csp_zone: string;
|
|
1963
|
-
instance_type: string;
|
|
1964
|
-
architecture: string;
|
|
1965
|
-
os: string;
|
|
1966
|
-
vcpu: number;
|
|
1967
|
-
local_storage: number;
|
|
1968
|
-
price: number;
|
|
1969
|
-
accelerator_name?: string | undefined;
|
|
1970
|
-
accelerator_manufacturer?: string | undefined;
|
|
1971
|
-
accelerator_count?: number | undefined;
|
|
1972
|
-
accelerator_memory?: number | undefined;
|
|
1973
|
-
pods_capacity?: number | undefined;
|
|
1974
|
-
capacity_type?: string | undefined;
|
|
1975
|
-
available?: boolean | undefined;
|
|
1976
|
-
}>, "many">;
|
|
1977
|
-
export declare const zGetFacetsResponse: z.ZodArray<z.ZodObject<{
|
|
1978
|
-
provider: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1979
|
-
region: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1980
|
-
sub_region: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1981
|
-
csp_region: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1982
|
-
vcpu_min: z.ZodOptional<z.ZodNumber>;
|
|
1983
|
-
vcpu_max: z.ZodOptional<z.ZodNumber>;
|
|
1984
|
-
memory_min: z.ZodOptional<z.ZodNumber>;
|
|
1985
|
-
memory_max: z.ZodOptional<z.ZodNumber>;
|
|
1986
|
-
storage_local_min: z.ZodOptional<z.ZodNumber>;
|
|
1987
|
-
storage_local_max: z.ZodOptional<z.ZodNumber>;
|
|
1988
|
-
accelerator_name: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1989
|
-
accelerator_manufacturer: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1990
|
-
accelerator_count_min: z.ZodOptional<z.ZodNumber>;
|
|
1991
|
-
accelerator_count_max: z.ZodOptional<z.ZodNumber>;
|
|
1992
|
-
accelerator_memory_min: z.ZodOptional<z.ZodNumber>;
|
|
1993
|
-
accelerator_memory_max: z.ZodOptional<z.ZodNumber>;
|
|
1994
|
-
price_min: z.ZodOptional<z.ZodNumber>;
|
|
1995
|
-
price_max: z.ZodOptional<z.ZodNumber>;
|
|
1996
|
-
regions_struct: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1997
|
-
region: z.ZodOptional<z.ZodString>;
|
|
1998
|
-
sub_region: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1999
|
-
}, "strip", z.ZodTypeAny, {
|
|
2000
|
-
region?: string | undefined;
|
|
2001
|
-
sub_region?: string[] | undefined;
|
|
2002
|
-
}, {
|
|
2003
|
-
region?: string | undefined;
|
|
2004
|
-
sub_region?: string[] | undefined;
|
|
2005
|
-
}>, "many">>;
|
|
2006
|
-
accelerators_struct: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2007
|
-
accelerator_manufacturer: z.ZodOptional<z.ZodString>;
|
|
2008
|
-
accelerator_name: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2009
|
-
}, "strip", z.ZodTypeAny, {
|
|
2010
|
-
accelerator_name?: string[] | undefined;
|
|
2011
|
-
accelerator_manufacturer?: string | undefined;
|
|
2012
|
-
}, {
|
|
2013
|
-
accelerator_name?: string[] | undefined;
|
|
2014
|
-
accelerator_manufacturer?: string | undefined;
|
|
2015
|
-
}>, "many">>;
|
|
2016
|
-
count_total: z.ZodOptional<z.ZodNumber>;
|
|
2017
|
-
count_accelerators: z.ZodOptional<z.ZodNumber>;
|
|
2018
|
-
count_instance_types: z.ZodOptional<z.ZodNumber>;
|
|
2019
|
-
count_accelerators_instance_types: z.ZodOptional<z.ZodNumber>;
|
|
2020
|
-
}, "strip", z.ZodTypeAny, {
|
|
2021
|
-
region?: string[] | undefined;
|
|
2022
|
-
provider?: string[] | undefined;
|
|
2023
|
-
sub_region?: string[] | undefined;
|
|
2024
|
-
csp_region?: string[] | undefined;
|
|
2025
|
-
accelerator_name?: string[] | undefined;
|
|
2026
|
-
accelerator_manufacturer?: string[] | undefined;
|
|
2027
|
-
accelerator_count_min?: number | undefined;
|
|
2028
|
-
accelerator_count_max?: number | undefined;
|
|
2029
|
-
accelerator_memory_min?: number | undefined;
|
|
2030
|
-
accelerator_memory_max?: number | undefined;
|
|
2031
|
-
memory_min?: number | undefined;
|
|
2032
|
-
memory_max?: number | undefined;
|
|
2033
|
-
vcpu_min?: number | undefined;
|
|
2034
|
-
vcpu_max?: number | undefined;
|
|
2035
|
-
storage_local_min?: number | undefined;
|
|
2036
|
-
storage_local_max?: number | undefined;
|
|
2037
|
-
price_min?: number | undefined;
|
|
2038
|
-
price_max?: number | undefined;
|
|
2039
|
-
regions_struct?: {
|
|
2040
|
-
region?: string | undefined;
|
|
2041
|
-
sub_region?: string[] | undefined;
|
|
2042
|
-
}[] | undefined;
|
|
2043
|
-
accelerators_struct?: {
|
|
2044
|
-
accelerator_name?: string[] | undefined;
|
|
2045
|
-
accelerator_manufacturer?: string | undefined;
|
|
2046
|
-
}[] | undefined;
|
|
2047
|
-
count_total?: number | undefined;
|
|
2048
|
-
count_accelerators?: number | undefined;
|
|
2049
|
-
count_instance_types?: number | undefined;
|
|
2050
|
-
count_accelerators_instance_types?: number | undefined;
|
|
2051
|
-
}, {
|
|
2052
|
-
region?: string[] | undefined;
|
|
2053
|
-
provider?: string[] | undefined;
|
|
2054
|
-
sub_region?: string[] | undefined;
|
|
2055
|
-
csp_region?: string[] | undefined;
|
|
2056
|
-
accelerator_name?: string[] | undefined;
|
|
2057
|
-
accelerator_manufacturer?: string[] | undefined;
|
|
2058
|
-
accelerator_count_min?: number | undefined;
|
|
2059
|
-
accelerator_count_max?: number | undefined;
|
|
2060
|
-
accelerator_memory_min?: number | undefined;
|
|
2061
|
-
accelerator_memory_max?: number | undefined;
|
|
2062
|
-
memory_min?: number | undefined;
|
|
2063
|
-
memory_max?: number | undefined;
|
|
2064
|
-
vcpu_min?: number | undefined;
|
|
2065
|
-
vcpu_max?: number | undefined;
|
|
2066
|
-
storage_local_min?: number | undefined;
|
|
2067
|
-
storage_local_max?: number | undefined;
|
|
2068
|
-
price_min?: number | undefined;
|
|
2069
|
-
price_max?: number | undefined;
|
|
2070
|
-
regions_struct?: {
|
|
2071
|
-
region?: string | undefined;
|
|
2072
|
-
sub_region?: string[] | undefined;
|
|
2073
|
-
}[] | undefined;
|
|
2074
|
-
accelerators_struct?: {
|
|
2075
|
-
accelerator_name?: string[] | undefined;
|
|
2076
|
-
accelerator_manufacturer?: string | undefined;
|
|
2077
|
-
}[] | undefined;
|
|
2078
|
-
count_total?: number | undefined;
|
|
2079
|
-
count_accelerators?: number | undefined;
|
|
2080
|
-
count_instance_types?: number | undefined;
|
|
2081
|
-
count_accelerators_instance_types?: number | undefined;
|
|
2082
|
-
}>, "many">;
|
|
2083
|
-
export declare const zGetRegionsResponse: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
2084
1761
|
export declare const zListInvitesResponse: z.ZodArray<z.ZodObject<{
|
|
2085
1762
|
id: z.ZodOptional<z.ZodString>;
|
|
2086
1763
|
organization_id: z.ZodOptional<z.ZodString>;
|
|
@@ -2236,13 +1913,13 @@ export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
|
|
|
2236
1913
|
date_created: z.ZodString;
|
|
2237
1914
|
}, "strip", z.ZodTypeAny, {
|
|
2238
1915
|
name: string;
|
|
2239
|
-
role: "
|
|
1916
|
+
role: "Administrator" | "User";
|
|
2240
1917
|
date_created: string;
|
|
2241
1918
|
id?: string | undefined;
|
|
2242
1919
|
secret?: string | undefined;
|
|
2243
1920
|
}, {
|
|
2244
1921
|
name: string;
|
|
2245
|
-
role: "
|
|
1922
|
+
role: "Administrator" | "User";
|
|
2246
1923
|
date_created: string;
|
|
2247
1924
|
id?: string | undefined;
|
|
2248
1925
|
secret?: string | undefined;
|
|
@@ -2255,13 +1932,13 @@ export declare const zCreateTokenResponse: z.ZodObject<{
|
|
|
2255
1932
|
date_created: z.ZodString;
|
|
2256
1933
|
}, "strip", z.ZodTypeAny, {
|
|
2257
1934
|
name: string;
|
|
2258
|
-
role: "
|
|
1935
|
+
role: "Administrator" | "User";
|
|
2259
1936
|
date_created: string;
|
|
2260
1937
|
id?: string | undefined;
|
|
2261
1938
|
secret?: string | undefined;
|
|
2262
1939
|
}, {
|
|
2263
1940
|
name: string;
|
|
2264
|
-
role: "
|
|
1941
|
+
role: "Administrator" | "User";
|
|
2265
1942
|
date_created: string;
|
|
2266
1943
|
id?: string | undefined;
|
|
2267
1944
|
secret?: string | undefined;
|
|
@@ -2274,13 +1951,13 @@ export declare const zGetTokenResponse: z.ZodObject<{
|
|
|
2274
1951
|
date_created: z.ZodString;
|
|
2275
1952
|
}, "strip", z.ZodTypeAny, {
|
|
2276
1953
|
name: string;
|
|
2277
|
-
role: "
|
|
1954
|
+
role: "Administrator" | "User";
|
|
2278
1955
|
date_created: string;
|
|
2279
1956
|
id?: string | undefined;
|
|
2280
1957
|
secret?: string | undefined;
|
|
2281
1958
|
}, {
|
|
2282
1959
|
name: string;
|
|
2283
|
-
role: "
|
|
1960
|
+
role: "Administrator" | "User";
|
|
2284
1961
|
date_created: string;
|
|
2285
1962
|
id?: string | undefined;
|
|
2286
1963
|
secret?: string | undefined;
|
|
@@ -2293,13 +1970,13 @@ export declare const zUpdateTokenResponse: z.ZodObject<{
|
|
|
2293
1970
|
date_created: z.ZodString;
|
|
2294
1971
|
}, "strip", z.ZodTypeAny, {
|
|
2295
1972
|
name: string;
|
|
2296
|
-
role: "
|
|
1973
|
+
role: "Administrator" | "User";
|
|
2297
1974
|
date_created: string;
|
|
2298
1975
|
id?: string | undefined;
|
|
2299
1976
|
secret?: string | undefined;
|
|
2300
1977
|
}, {
|
|
2301
1978
|
name: string;
|
|
2302
|
-
role: "
|
|
1979
|
+
role: "Administrator" | "User";
|
|
2303
1980
|
date_created: string;
|
|
2304
1981
|
id?: string | undefined;
|
|
2305
1982
|
secret?: string | undefined;
|
|
@@ -2312,13 +1989,13 @@ export declare const zRegenerateTokenResponse: z.ZodObject<{
|
|
|
2312
1989
|
date_created: z.ZodString;
|
|
2313
1990
|
}, "strip", z.ZodTypeAny, {
|
|
2314
1991
|
name: string;
|
|
2315
|
-
role: "
|
|
1992
|
+
role: "Administrator" | "User";
|
|
2316
1993
|
date_created: string;
|
|
2317
1994
|
id?: string | undefined;
|
|
2318
1995
|
secret?: string | undefined;
|
|
2319
1996
|
}, {
|
|
2320
1997
|
name: string;
|
|
2321
|
-
role: "
|
|
1998
|
+
role: "Administrator" | "User";
|
|
2322
1999
|
date_created: string;
|
|
2323
2000
|
id?: string | undefined;
|
|
2324
2001
|
secret?: string | undefined;
|
|
@@ -2341,40 +2018,22 @@ export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
|
|
|
2341
2018
|
status: z.ZodEnum<["active", "inactive"]>;
|
|
2342
2019
|
id: z.ZodString;
|
|
2343
2020
|
date_created: z.ZodString;
|
|
2344
|
-
cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2345
|
-
cluster_id: z.ZodString;
|
|
2346
|
-
permissions: z.ZodEnum<["readwrite", "readonly"]>;
|
|
2347
|
-
}, "strip", z.ZodTypeAny, {
|
|
2348
|
-
cluster_id: string;
|
|
2349
|
-
permissions: "readonly" | "readwrite";
|
|
2350
|
-
}, {
|
|
2351
|
-
cluster_id: string;
|
|
2352
|
-
permissions: "readonly" | "readwrite";
|
|
2353
|
-
}>, "many">>;
|
|
2354
2021
|
}, "strip", z.ZodTypeAny, {
|
|
2355
2022
|
id: string;
|
|
2356
|
-
role: "
|
|
2023
|
+
role: "Administrator" | "User";
|
|
2357
2024
|
email: string;
|
|
2358
2025
|
status: "active" | "inactive";
|
|
2359
2026
|
first_name: string;
|
|
2360
2027
|
last_name: string;
|
|
2361
2028
|
date_created: string;
|
|
2362
|
-
cluster_permissions?: {
|
|
2363
|
-
cluster_id: string;
|
|
2364
|
-
permissions: "readonly" | "readwrite";
|
|
2365
|
-
}[] | undefined;
|
|
2366
2029
|
}, {
|
|
2367
2030
|
id: string;
|
|
2368
|
-
role: "
|
|
2031
|
+
role: "Administrator" | "User";
|
|
2369
2032
|
email: string;
|
|
2370
2033
|
status: "active" | "inactive";
|
|
2371
2034
|
first_name: string;
|
|
2372
2035
|
last_name: string;
|
|
2373
2036
|
date_created: string;
|
|
2374
|
-
cluster_permissions?: {
|
|
2375
|
-
cluster_id: string;
|
|
2376
|
-
permissions: "readonly" | "readwrite";
|
|
2377
|
-
}[] | undefined;
|
|
2378
2037
|
}>, "many">;
|
|
2379
2038
|
export declare const zCreateUserResponse: z.ZodObject<{
|
|
2380
2039
|
email: z.ZodString;
|
|
@@ -2384,40 +2043,22 @@ export declare const zCreateUserResponse: z.ZodObject<{
|
|
|
2384
2043
|
status: z.ZodEnum<["active", "inactive"]>;
|
|
2385
2044
|
id: z.ZodString;
|
|
2386
2045
|
date_created: z.ZodString;
|
|
2387
|
-
cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2388
|
-
cluster_id: z.ZodString;
|
|
2389
|
-
permissions: z.ZodEnum<["readwrite", "readonly"]>;
|
|
2390
|
-
}, "strip", z.ZodTypeAny, {
|
|
2391
|
-
cluster_id: string;
|
|
2392
|
-
permissions: "readonly" | "readwrite";
|
|
2393
|
-
}, {
|
|
2394
|
-
cluster_id: string;
|
|
2395
|
-
permissions: "readonly" | "readwrite";
|
|
2396
|
-
}>, "many">>;
|
|
2397
2046
|
}, "strip", z.ZodTypeAny, {
|
|
2398
2047
|
id: string;
|
|
2399
|
-
role: "
|
|
2048
|
+
role: "Administrator" | "User";
|
|
2400
2049
|
email: string;
|
|
2401
2050
|
status: "active" | "inactive";
|
|
2402
2051
|
first_name: string;
|
|
2403
2052
|
last_name: string;
|
|
2404
2053
|
date_created: string;
|
|
2405
|
-
cluster_permissions?: {
|
|
2406
|
-
cluster_id: string;
|
|
2407
|
-
permissions: "readonly" | "readwrite";
|
|
2408
|
-
}[] | undefined;
|
|
2409
2054
|
}, {
|
|
2410
2055
|
id: string;
|
|
2411
|
-
role: "
|
|
2056
|
+
role: "Administrator" | "User";
|
|
2412
2057
|
email: string;
|
|
2413
2058
|
status: "active" | "inactive";
|
|
2414
2059
|
first_name: string;
|
|
2415
2060
|
last_name: string;
|
|
2416
2061
|
date_created: string;
|
|
2417
|
-
cluster_permissions?: {
|
|
2418
|
-
cluster_id: string;
|
|
2419
|
-
permissions: "readonly" | "readwrite";
|
|
2420
|
-
}[] | undefined;
|
|
2421
2062
|
}>;
|
|
2422
2063
|
export declare const zDeleteUserResponse: z.ZodObject<{
|
|
2423
2064
|
email: z.ZodString;
|
|
@@ -2427,40 +2068,22 @@ export declare const zDeleteUserResponse: z.ZodObject<{
|
|
|
2427
2068
|
status: z.ZodEnum<["active", "inactive"]>;
|
|
2428
2069
|
id: z.ZodString;
|
|
2429
2070
|
date_created: z.ZodString;
|
|
2430
|
-
cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2431
|
-
cluster_id: z.ZodString;
|
|
2432
|
-
permissions: z.ZodEnum<["readwrite", "readonly"]>;
|
|
2433
|
-
}, "strip", z.ZodTypeAny, {
|
|
2434
|
-
cluster_id: string;
|
|
2435
|
-
permissions: "readonly" | "readwrite";
|
|
2436
|
-
}, {
|
|
2437
|
-
cluster_id: string;
|
|
2438
|
-
permissions: "readonly" | "readwrite";
|
|
2439
|
-
}>, "many">>;
|
|
2440
2071
|
}, "strip", z.ZodTypeAny, {
|
|
2441
2072
|
id: string;
|
|
2442
|
-
role: "
|
|
2073
|
+
role: "Administrator" | "User";
|
|
2443
2074
|
email: string;
|
|
2444
2075
|
status: "active" | "inactive";
|
|
2445
2076
|
first_name: string;
|
|
2446
2077
|
last_name: string;
|
|
2447
2078
|
date_created: string;
|
|
2448
|
-
cluster_permissions?: {
|
|
2449
|
-
cluster_id: string;
|
|
2450
|
-
permissions: "readonly" | "readwrite";
|
|
2451
|
-
}[] | undefined;
|
|
2452
2079
|
}, {
|
|
2453
2080
|
id: string;
|
|
2454
|
-
role: "
|
|
2081
|
+
role: "Administrator" | "User";
|
|
2455
2082
|
email: string;
|
|
2456
2083
|
status: "active" | "inactive";
|
|
2457
2084
|
first_name: string;
|
|
2458
2085
|
last_name: string;
|
|
2459
2086
|
date_created: string;
|
|
2460
|
-
cluster_permissions?: {
|
|
2461
|
-
cluster_id: string;
|
|
2462
|
-
permissions: "readonly" | "readwrite";
|
|
2463
|
-
}[] | undefined;
|
|
2464
2087
|
}>;
|
|
2465
2088
|
export declare const zGetUserResponse: z.ZodObject<{
|
|
2466
2089
|
email: z.ZodString;
|
|
@@ -2470,40 +2093,22 @@ export declare const zGetUserResponse: z.ZodObject<{
|
|
|
2470
2093
|
status: z.ZodEnum<["active", "inactive"]>;
|
|
2471
2094
|
id: z.ZodString;
|
|
2472
2095
|
date_created: z.ZodString;
|
|
2473
|
-
cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2474
|
-
cluster_id: z.ZodString;
|
|
2475
|
-
permissions: z.ZodEnum<["readwrite", "readonly"]>;
|
|
2476
|
-
}, "strip", z.ZodTypeAny, {
|
|
2477
|
-
cluster_id: string;
|
|
2478
|
-
permissions: "readonly" | "readwrite";
|
|
2479
|
-
}, {
|
|
2480
|
-
cluster_id: string;
|
|
2481
|
-
permissions: "readonly" | "readwrite";
|
|
2482
|
-
}>, "many">>;
|
|
2483
2096
|
}, "strip", z.ZodTypeAny, {
|
|
2484
2097
|
id: string;
|
|
2485
|
-
role: "
|
|
2098
|
+
role: "Administrator" | "User";
|
|
2486
2099
|
email: string;
|
|
2487
2100
|
status: "active" | "inactive";
|
|
2488
2101
|
first_name: string;
|
|
2489
2102
|
last_name: string;
|
|
2490
2103
|
date_created: string;
|
|
2491
|
-
cluster_permissions?: {
|
|
2492
|
-
cluster_id: string;
|
|
2493
|
-
permissions: "readonly" | "readwrite";
|
|
2494
|
-
}[] | undefined;
|
|
2495
2104
|
}, {
|
|
2496
2105
|
id: string;
|
|
2497
|
-
role: "
|
|
2106
|
+
role: "Administrator" | "User";
|
|
2498
2107
|
email: string;
|
|
2499
2108
|
status: "active" | "inactive";
|
|
2500
2109
|
first_name: string;
|
|
2501
2110
|
last_name: string;
|
|
2502
2111
|
date_created: string;
|
|
2503
|
-
cluster_permissions?: {
|
|
2504
|
-
cluster_id: string;
|
|
2505
|
-
permissions: "readonly" | "readwrite";
|
|
2506
|
-
}[] | undefined;
|
|
2507
2112
|
}>;
|
|
2508
2113
|
export declare const zUpdateUserResponse: z.ZodObject<{
|
|
2509
2114
|
email: z.ZodString;
|
|
@@ -2513,125 +2118,21 @@ export declare const zUpdateUserResponse: z.ZodObject<{
|
|
|
2513
2118
|
status: z.ZodEnum<["active", "inactive"]>;
|
|
2514
2119
|
id: z.ZodString;
|
|
2515
2120
|
date_created: z.ZodString;
|
|
2516
|
-
cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2517
|
-
cluster_id: z.ZodString;
|
|
2518
|
-
permissions: z.ZodEnum<["readwrite", "readonly"]>;
|
|
2519
|
-
}, "strip", z.ZodTypeAny, {
|
|
2520
|
-
cluster_id: string;
|
|
2521
|
-
permissions: "readonly" | "readwrite";
|
|
2522
|
-
}, {
|
|
2523
|
-
cluster_id: string;
|
|
2524
|
-
permissions: "readonly" | "readwrite";
|
|
2525
|
-
}>, "many">>;
|
|
2526
|
-
}, "strip", z.ZodTypeAny, {
|
|
2527
|
-
id: string;
|
|
2528
|
-
role: "User" | "Administrator";
|
|
2529
|
-
email: string;
|
|
2530
|
-
status: "active" | "inactive";
|
|
2531
|
-
first_name: string;
|
|
2532
|
-
last_name: string;
|
|
2533
|
-
date_created: string;
|
|
2534
|
-
cluster_permissions?: {
|
|
2535
|
-
cluster_id: string;
|
|
2536
|
-
permissions: "readonly" | "readwrite";
|
|
2537
|
-
}[] | undefined;
|
|
2538
|
-
}, {
|
|
2539
|
-
id: string;
|
|
2540
|
-
role: "User" | "Administrator";
|
|
2541
|
-
email: string;
|
|
2542
|
-
status: "active" | "inactive";
|
|
2543
|
-
first_name: string;
|
|
2544
|
-
last_name: string;
|
|
2545
|
-
date_created: string;
|
|
2546
|
-
cluster_permissions?: {
|
|
2547
|
-
cluster_id: string;
|
|
2548
|
-
permissions: "readonly" | "readwrite";
|
|
2549
|
-
}[] | undefined;
|
|
2550
|
-
}>;
|
|
2551
|
-
export declare const zDeleteClusterPermissionsResponse: z.ZodObject<{
|
|
2552
|
-
email: z.ZodString;
|
|
2553
|
-
first_name: z.ZodString;
|
|
2554
|
-
last_name: z.ZodString;
|
|
2555
|
-
role: z.ZodEnum<["Administrator", "User"]>;
|
|
2556
|
-
status: z.ZodEnum<["active", "inactive"]>;
|
|
2557
|
-
id: z.ZodString;
|
|
2558
|
-
date_created: z.ZodString;
|
|
2559
|
-
cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2560
|
-
cluster_id: z.ZodString;
|
|
2561
|
-
permissions: z.ZodEnum<["readwrite", "readonly"]>;
|
|
2562
|
-
}, "strip", z.ZodTypeAny, {
|
|
2563
|
-
cluster_id: string;
|
|
2564
|
-
permissions: "readonly" | "readwrite";
|
|
2565
|
-
}, {
|
|
2566
|
-
cluster_id: string;
|
|
2567
|
-
permissions: "readonly" | "readwrite";
|
|
2568
|
-
}>, "many">>;
|
|
2569
2121
|
}, "strip", z.ZodTypeAny, {
|
|
2570
2122
|
id: string;
|
|
2571
|
-
role: "
|
|
2123
|
+
role: "Administrator" | "User";
|
|
2572
2124
|
email: string;
|
|
2573
2125
|
status: "active" | "inactive";
|
|
2574
2126
|
first_name: string;
|
|
2575
2127
|
last_name: string;
|
|
2576
2128
|
date_created: string;
|
|
2577
|
-
cluster_permissions?: {
|
|
2578
|
-
cluster_id: string;
|
|
2579
|
-
permissions: "readonly" | "readwrite";
|
|
2580
|
-
}[] | undefined;
|
|
2581
2129
|
}, {
|
|
2582
2130
|
id: string;
|
|
2583
|
-
role: "
|
|
2131
|
+
role: "Administrator" | "User";
|
|
2584
2132
|
email: string;
|
|
2585
2133
|
status: "active" | "inactive";
|
|
2586
2134
|
first_name: string;
|
|
2587
2135
|
last_name: string;
|
|
2588
2136
|
date_created: string;
|
|
2589
|
-
cluster_permissions?: {
|
|
2590
|
-
cluster_id: string;
|
|
2591
|
-
permissions: "readonly" | "readwrite";
|
|
2592
|
-
}[] | undefined;
|
|
2593
|
-
}>;
|
|
2594
|
-
export declare const zSetClusterPermissionsResponse: z.ZodObject<{
|
|
2595
|
-
email: z.ZodString;
|
|
2596
|
-
first_name: z.ZodString;
|
|
2597
|
-
last_name: z.ZodString;
|
|
2598
|
-
role: z.ZodEnum<["Administrator", "User"]>;
|
|
2599
|
-
status: z.ZodEnum<["active", "inactive"]>;
|
|
2600
|
-
id: z.ZodString;
|
|
2601
|
-
date_created: z.ZodString;
|
|
2602
|
-
cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2603
|
-
cluster_id: z.ZodString;
|
|
2604
|
-
permissions: z.ZodEnum<["readwrite", "readonly"]>;
|
|
2605
|
-
}, "strip", z.ZodTypeAny, {
|
|
2606
|
-
cluster_id: string;
|
|
2607
|
-
permissions: "readonly" | "readwrite";
|
|
2608
|
-
}, {
|
|
2609
|
-
cluster_id: string;
|
|
2610
|
-
permissions: "readonly" | "readwrite";
|
|
2611
|
-
}>, "many">>;
|
|
2612
|
-
}, "strip", z.ZodTypeAny, {
|
|
2613
|
-
id: string;
|
|
2614
|
-
role: "User" | "Administrator";
|
|
2615
|
-
email: string;
|
|
2616
|
-
status: "active" | "inactive";
|
|
2617
|
-
first_name: string;
|
|
2618
|
-
last_name: string;
|
|
2619
|
-
date_created: string;
|
|
2620
|
-
cluster_permissions?: {
|
|
2621
|
-
cluster_id: string;
|
|
2622
|
-
permissions: "readonly" | "readwrite";
|
|
2623
|
-
}[] | undefined;
|
|
2624
|
-
}, {
|
|
2625
|
-
id: string;
|
|
2626
|
-
role: "User" | "Administrator";
|
|
2627
|
-
email: string;
|
|
2628
|
-
status: "active" | "inactive";
|
|
2629
|
-
first_name: string;
|
|
2630
|
-
last_name: string;
|
|
2631
|
-
date_created: string;
|
|
2632
|
-
cluster_permissions?: {
|
|
2633
|
-
cluster_id: string;
|
|
2634
|
-
permissions: "readonly" | "readwrite";
|
|
2635
|
-
}[] | undefined;
|
|
2636
2137
|
}>;
|
|
2637
2138
|
//# sourceMappingURL=zod.gen.d.ts.map
|