@cloudfleet/sdk 0.0.1-a9ecdcd → 0.0.1-aa1359b
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/client.gen.d.ts.map +1 -1
- package/dist/client/client.gen.js +39 -8
- package/dist/client/client.gen.js.map +1 -1
- package/dist/client/index.d.ts +1 -1
- package/dist/client/index.d.ts.map +1 -1
- package/dist/client/index.js.map +1 -1
- package/dist/client/types.gen.d.ts +4 -11
- package/dist/client/types.gen.d.ts.map +1 -1
- package/dist/client/utils.gen.d.ts +1 -1
- package/dist/client/utils.gen.d.ts.map +1 -1
- package/dist/client/utils.gen.js +10 -12
- package/dist/client/utils.gen.js.map +1 -1
- package/dist/client.gen.d.ts.map +1 -1
- package/dist/client.gen.js +1 -3
- package/dist/client.gen.js.map +1 -1
- package/dist/core/auth.gen.d.ts.map +1 -1
- package/dist/core/auth.gen.js.map +1 -1
- package/dist/core/bodySerializer.gen.d.ts +16 -8
- package/dist/core/bodySerializer.gen.d.ts.map +1 -1
- package/dist/core/bodySerializer.gen.js +1 -1
- package/dist/core/bodySerializer.gen.js.map +1 -1
- package/dist/core/params.gen.d.ts +10 -0
- package/dist/core/params.gen.d.ts.map +1 -1
- package/dist/core/params.gen.js +18 -6
- package/dist/core/params.gen.js.map +1 -1
- package/dist/core/pathSerializer.gen.d.ts.map +1 -1
- package/dist/core/pathSerializer.gen.js +3 -11
- package/dist/core/pathSerializer.gen.js.map +1 -1
- package/dist/core/queryKeySerializer.gen.d.ts.map +1 -1
- package/dist/core/queryKeySerializer.gen.js +4 -11
- package/dist/core/queryKeySerializer.gen.js.map +1 -1
- package/dist/core/serverSentEvents.gen.d.ts.map +1 -1
- package/dist/core/serverSentEvents.gen.js +5 -7
- package/dist/core/serverSentEvents.gen.js.map +1 -1
- package/dist/core/types.gen.d.ts +1 -1
- package/dist/core/types.gen.d.ts.map +1 -1
- package/dist/core/utils.gen.d.ts.map +1 -1
- package/dist/core/utils.gen.js +1 -1
- package/dist/core/utils.gen.js.map +1 -1
- package/dist/schemas.gen.d.ts +603 -479
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +1138 -585
- package/dist/schemas.gen.js.map +1 -1
- package/dist/sdk.gen.d.ts +98 -19
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/sdk.gen.js +144 -149
- package/dist/sdk.gen.js.map +1 -1
- package/dist/types.gen.d.ts +587 -324
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +617 -1813
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +364 -1075
- package/dist/zod.gen.js.map +1 -1
- package/package.json +9 -5
package/dist/zod.gen.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import * as z from 'zod';
|
|
2
2
|
export declare const zBillingContact: z.ZodObject<{
|
|
3
3
|
company: z.ZodOptional<z.ZodString>;
|
|
4
4
|
address1: z.ZodOptional<z.ZodString>;
|
|
@@ -9,8 +9,7 @@ export declare const zBillingContact: z.ZodObject<{
|
|
|
9
9
|
country: z.ZodOptional<z.ZodString>;
|
|
10
10
|
phone: z.ZodOptional<z.ZodString>;
|
|
11
11
|
email: z.ZodEmail;
|
|
12
|
-
|
|
13
|
-
last_name: z.ZodString;
|
|
12
|
+
individual_name: z.ZodString;
|
|
14
13
|
tax_id: z.ZodOptional<z.ZodString>;
|
|
15
14
|
tax_id_type: z.ZodOptional<z.ZodEnum<{
|
|
16
15
|
"": "";
|
|
@@ -145,16 +144,15 @@ export declare const zBillingContact: z.ZodObject<{
|
|
|
145
144
|
}, z.core.$strip>;
|
|
146
145
|
export declare const zBillingCredits: z.ZodObject<{
|
|
147
146
|
id: z.ZodOptional<z.ZodString>;
|
|
148
|
-
date_created: z.ZodISODateTime;
|
|
149
|
-
code: z.ZodString;
|
|
150
|
-
description: z.ZodOptional<z.ZodString>;
|
|
151
|
-
products: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
152
147
|
type: z.ZodEnum<{
|
|
153
148
|
credit: "credit";
|
|
154
149
|
discount: "discount";
|
|
155
150
|
}>;
|
|
156
|
-
|
|
157
|
-
|
|
151
|
+
date_start: z.ZodISODateTime;
|
|
152
|
+
date_end: z.ZodOptional<z.ZodISODateTime>;
|
|
153
|
+
code: z.ZodString;
|
|
154
|
+
description: z.ZodOptional<z.ZodString>;
|
|
155
|
+
value_total: z.ZodNumber;
|
|
158
156
|
value_remaining: z.ZodOptional<z.ZodNumber>;
|
|
159
157
|
}, z.core.$strip>;
|
|
160
158
|
export declare const zChartCreateInput: z.ZodObject<{
|
|
@@ -202,16 +200,22 @@ export declare const zClusterCreateInput: z.ZodObject<{
|
|
|
202
200
|
pro: "pro";
|
|
203
201
|
}>;
|
|
204
202
|
region: z.ZodOptional<z.ZodEnum<{
|
|
205
|
-
staging: "staging";
|
|
203
|
+
"staging-1a": "staging-1a";
|
|
206
204
|
"northamerica-central-1": "northamerica-central-1";
|
|
207
205
|
"europe-central-1a": "europe-central-1a";
|
|
208
206
|
"northamerica-central-1a": "northamerica-central-1a";
|
|
209
207
|
}>>;
|
|
210
|
-
version_channel: z.
|
|
208
|
+
version_channel: z.ZodOptional<z.ZodEnum<{
|
|
209
|
+
"1.x.x-cfke.x": "1.x.x-cfke.x";
|
|
210
|
+
"1.31.x-cfke.x": "1.31.x-cfke.x";
|
|
211
|
+
"1.32.x-cfke.x": "1.32.x-cfke.x";
|
|
212
|
+
"1.33.x-cfke.x": "1.33.x-cfke.x";
|
|
213
|
+
}>>;
|
|
211
214
|
}, z.core.$strip>;
|
|
212
215
|
export declare const zClusterJoinInformation: z.ZodObject<{
|
|
213
216
|
certificate_authority: z.ZodString;
|
|
214
217
|
endpoint: z.ZodURL;
|
|
218
|
+
cluster_dns: z.ZodString;
|
|
215
219
|
auth_key: z.ZodString;
|
|
216
220
|
bootstrap_token: z.ZodString;
|
|
217
221
|
versions: z.ZodObject<{
|
|
@@ -233,17 +237,17 @@ export declare const zCluster: z.ZodObject<{
|
|
|
233
237
|
pro: "pro";
|
|
234
238
|
}>;
|
|
235
239
|
region: z.ZodOptional<z.ZodEnum<{
|
|
236
|
-
staging: "staging";
|
|
240
|
+
"staging-1a": "staging-1a";
|
|
237
241
|
"northamerica-central-1": "northamerica-central-1";
|
|
238
242
|
"europe-central-1a": "europe-central-1a";
|
|
239
243
|
"northamerica-central-1a": "northamerica-central-1a";
|
|
240
244
|
}>>;
|
|
241
|
-
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
242
245
|
id: z.ZodUUID;
|
|
243
246
|
status: z.ZodEnum<{
|
|
244
247
|
deleted: "deleted";
|
|
245
248
|
failed: "failed";
|
|
246
249
|
active: "active";
|
|
250
|
+
disabled: "disabled";
|
|
247
251
|
creating: "creating";
|
|
248
252
|
deployed: "deployed";
|
|
249
253
|
updating: "updating";
|
|
@@ -256,6 +260,7 @@ export declare const zCluster: z.ZodObject<{
|
|
|
256
260
|
created_at: z.ZodOptional<z.ZodString>;
|
|
257
261
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
258
262
|
ready: z.ZodOptional<z.ZodBoolean>;
|
|
263
|
+
version_channel: z.ZodOptional<z.ZodString>;
|
|
259
264
|
}, z.core.$strip>;
|
|
260
265
|
export declare const zClusterUpdateInput: z.ZodObject<{
|
|
261
266
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -326,602 +331,40 @@ export declare const zInvite: z.ZodObject<{
|
|
|
326
331
|
code: z.ZodOptional<z.ZodString>;
|
|
327
332
|
}, z.core.$strip>;
|
|
328
333
|
export declare const zInvoice: z.ZodObject<{
|
|
329
|
-
id: z.ZodOptional<z.
|
|
330
|
-
|
|
331
|
-
status: z.ZodOptional<z.
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
AOA: "AOA";
|
|
344
|
-
ARS: "ARS";
|
|
345
|
-
AUD: "AUD";
|
|
346
|
-
AWG: "AWG";
|
|
347
|
-
AZN: "AZN";
|
|
348
|
-
BAM: "BAM";
|
|
349
|
-
BBD: "BBD";
|
|
350
|
-
BDT: "BDT";
|
|
351
|
-
BGN: "BGN";
|
|
352
|
-
BHD: "BHD";
|
|
353
|
-
BIF: "BIF";
|
|
354
|
-
BMD: "BMD";
|
|
355
|
-
BND: "BND";
|
|
356
|
-
BOB: "BOB";
|
|
357
|
-
BRL: "BRL";
|
|
358
|
-
BSD: "BSD";
|
|
359
|
-
BTN: "BTN";
|
|
360
|
-
BWP: "BWP";
|
|
361
|
-
BYR: "BYR";
|
|
362
|
-
BZD: "BZD";
|
|
363
|
-
CAD: "CAD";
|
|
364
|
-
CDF: "CDF";
|
|
365
|
-
CHF: "CHF";
|
|
366
|
-
CLP: "CLP";
|
|
367
|
-
CNY: "CNY";
|
|
368
|
-
COP: "COP";
|
|
369
|
-
CRC: "CRC";
|
|
370
|
-
CUC: "CUC";
|
|
371
|
-
CUP: "CUP";
|
|
372
|
-
CVE: "CVE";
|
|
373
|
-
CZK: "CZK";
|
|
374
|
-
DJF: "DJF";
|
|
375
|
-
DKK: "DKK";
|
|
376
|
-
DOP: "DOP";
|
|
377
|
-
DZD: "DZD";
|
|
378
|
-
EGP: "EGP";
|
|
379
|
-
ERN: "ERN";
|
|
380
|
-
ETB: "ETB";
|
|
381
|
-
EUR: "EUR";
|
|
382
|
-
FJD: "FJD";
|
|
383
|
-
FKP: "FKP";
|
|
384
|
-
GBP: "GBP";
|
|
385
|
-
GEL: "GEL";
|
|
386
|
-
GGP: "GGP";
|
|
387
|
-
GHS: "GHS";
|
|
388
|
-
GIP: "GIP";
|
|
389
|
-
GMD: "GMD";
|
|
390
|
-
GNF: "GNF";
|
|
391
|
-
GTQ: "GTQ";
|
|
392
|
-
GYD: "GYD";
|
|
393
|
-
HKD: "HKD";
|
|
394
|
-
HNL: "HNL";
|
|
395
|
-
HRK: "HRK";
|
|
396
|
-
HTG: "HTG";
|
|
397
|
-
HUF: "HUF";
|
|
398
|
-
IDR: "IDR";
|
|
399
|
-
ILS: "ILS";
|
|
400
|
-
IMP: "IMP";
|
|
401
|
-
INR: "INR";
|
|
402
|
-
IQD: "IQD";
|
|
403
|
-
IRR: "IRR";
|
|
404
|
-
ISK: "ISK";
|
|
405
|
-
JEP: "JEP";
|
|
406
|
-
JMD: "JMD";
|
|
407
|
-
JOD: "JOD";
|
|
408
|
-
JPY: "JPY";
|
|
409
|
-
KES: "KES";
|
|
410
|
-
KGS: "KGS";
|
|
411
|
-
KHR: "KHR";
|
|
412
|
-
KMF: "KMF";
|
|
413
|
-
KPW: "KPW";
|
|
414
|
-
KRW: "KRW";
|
|
415
|
-
KWD: "KWD";
|
|
416
|
-
KYD: "KYD";
|
|
417
|
-
KZT: "KZT";
|
|
418
|
-
LAK: "LAK";
|
|
419
|
-
LBP: "LBP";
|
|
420
|
-
LKR: "LKR";
|
|
421
|
-
LRD: "LRD";
|
|
422
|
-
LSL: "LSL";
|
|
423
|
-
LTL: "LTL";
|
|
424
|
-
LVL: "LVL";
|
|
425
|
-
LYD: "LYD";
|
|
426
|
-
MAD: "MAD";
|
|
427
|
-
MDL: "MDL";
|
|
428
|
-
MGA: "MGA";
|
|
429
|
-
MKD: "MKD";
|
|
430
|
-
MMK: "MMK";
|
|
431
|
-
MNT: "MNT";
|
|
432
|
-
MOP: "MOP";
|
|
433
|
-
MRO: "MRO";
|
|
434
|
-
MUR: "MUR";
|
|
435
|
-
MVR: "MVR";
|
|
436
|
-
MWK: "MWK";
|
|
437
|
-
MXN: "MXN";
|
|
438
|
-
MYR: "MYR";
|
|
439
|
-
MZN: "MZN";
|
|
440
|
-
NAD: "NAD";
|
|
441
|
-
NGN: "NGN";
|
|
442
|
-
NIO: "NIO";
|
|
443
|
-
NOK: "NOK";
|
|
444
|
-
NPR: "NPR";
|
|
445
|
-
NZD: "NZD";
|
|
446
|
-
OMR: "OMR";
|
|
447
|
-
PAB: "PAB";
|
|
448
|
-
PEN: "PEN";
|
|
449
|
-
PGK: "PGK";
|
|
450
|
-
PHP: "PHP";
|
|
451
|
-
PKR: "PKR";
|
|
452
|
-
PLN: "PLN";
|
|
453
|
-
PYG: "PYG";
|
|
454
|
-
QAR: "QAR";
|
|
455
|
-
RON: "RON";
|
|
456
|
-
RSD: "RSD";
|
|
457
|
-
RUB: "RUB";
|
|
458
|
-
RWF: "RWF";
|
|
459
|
-
SAR: "SAR";
|
|
460
|
-
SBD: "SBD";
|
|
461
|
-
SCR: "SCR";
|
|
462
|
-
SDG: "SDG";
|
|
463
|
-
SEK: "SEK";
|
|
464
|
-
SGD: "SGD";
|
|
465
|
-
SHP: "SHP";
|
|
466
|
-
SLL: "SLL";
|
|
467
|
-
SOS: "SOS";
|
|
468
|
-
SPL: "SPL";
|
|
469
|
-
SRD: "SRD";
|
|
470
|
-
STD: "STD";
|
|
471
|
-
SVC: "SVC";
|
|
472
|
-
SYP: "SYP";
|
|
473
|
-
SZL: "SZL";
|
|
474
|
-
THB: "THB";
|
|
475
|
-
TJS: "TJS";
|
|
476
|
-
TMT: "TMT";
|
|
477
|
-
TND: "TND";
|
|
478
|
-
TOP: "TOP";
|
|
479
|
-
TRY: "TRY";
|
|
480
|
-
TTD: "TTD";
|
|
481
|
-
TVD: "TVD";
|
|
482
|
-
TWD: "TWD";
|
|
483
|
-
TZS: "TZS";
|
|
484
|
-
UAH: "UAH";
|
|
485
|
-
UGX: "UGX";
|
|
486
|
-
USD: "USD";
|
|
487
|
-
UYU: "UYU";
|
|
488
|
-
UZS: "UZS";
|
|
489
|
-
VEF: "VEF";
|
|
490
|
-
VND: "VND";
|
|
491
|
-
VUV: "VUV";
|
|
492
|
-
WST: "WST";
|
|
493
|
-
XAF: "XAF";
|
|
494
|
-
XCD: "XCD";
|
|
495
|
-
XDR: "XDR";
|
|
496
|
-
XOF: "XOF";
|
|
497
|
-
XPF: "XPF";
|
|
498
|
-
YER: "YER";
|
|
499
|
-
ZAR: "ZAR";
|
|
500
|
-
ZMW: "ZMW";
|
|
501
|
-
ZWD: "ZWD";
|
|
502
|
-
BTC: "BTC";
|
|
503
|
-
}>>;
|
|
504
|
-
creditAdj: z.ZodOptional<z.ZodNumber>;
|
|
505
|
-
refundAdj: z.ZodOptional<z.ZodNumber>;
|
|
506
|
-
invoiceDate: z.ZodOptional<z.ZodString>;
|
|
507
|
-
targetDate: z.ZodOptional<z.ZodString>;
|
|
508
|
-
invoiceNumber: z.ZodOptional<z.ZodString>;
|
|
509
|
-
balance: z.ZodOptional<z.ZodNumber>;
|
|
510
|
-
bundleKeys: z.ZodOptional<z.ZodString>;
|
|
511
|
-
credits: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
512
|
-
id: z.ZodOptional<z.ZodUUID>;
|
|
513
|
-
linkedInvoiceItemId: z.ZodOptional<z.ZodUUID>;
|
|
514
|
-
productName: z.ZodOptional<z.ZodString>;
|
|
515
|
-
planName: z.ZodOptional<z.ZodString>;
|
|
516
|
-
phaseName: z.ZodOptional<z.ZodString>;
|
|
517
|
-
usageName: z.ZodOptional<z.ZodString>;
|
|
518
|
-
prettyProductName: z.ZodOptional<z.ZodString>;
|
|
519
|
-
prettyPlanName: z.ZodOptional<z.ZodString>;
|
|
520
|
-
prettyPhaseName: z.ZodOptional<z.ZodString>;
|
|
521
|
-
prettyUsageName: z.ZodOptional<z.ZodString>;
|
|
522
|
-
itemType: z.ZodOptional<z.ZodEnum<{
|
|
523
|
-
EXTERNAL_CHARGE: "EXTERNAL_CHARGE";
|
|
524
|
-
FIXED: "FIXED";
|
|
525
|
-
RECURRING: "RECURRING";
|
|
526
|
-
REPAIR_ADJ: "REPAIR_ADJ";
|
|
527
|
-
CBA_ADJ: "CBA_ADJ";
|
|
528
|
-
CREDIT_ADJ: "CREDIT_ADJ";
|
|
529
|
-
ITEM_ADJ: "ITEM_ADJ";
|
|
530
|
-
USAGE: "USAGE";
|
|
531
|
-
TAX: "TAX";
|
|
532
|
-
PARENT_SUMMARY: "PARENT_SUMMARY";
|
|
533
|
-
}>>;
|
|
534
|
-
description: z.ZodOptional<z.ZodString>;
|
|
535
|
-
startDate: z.ZodOptional<z.ZodString>;
|
|
536
|
-
endDate: z.ZodOptional<z.ZodString>;
|
|
537
|
-
amount: z.ZodOptional<z.ZodNumber>;
|
|
538
|
-
rate: z.ZodOptional<z.ZodNumber>;
|
|
539
|
-
currency: z.ZodOptional<z.ZodEnum<{
|
|
540
|
-
AED: "AED";
|
|
541
|
-
AFN: "AFN";
|
|
542
|
-
ALL: "ALL";
|
|
543
|
-
AMD: "AMD";
|
|
544
|
-
ANG: "ANG";
|
|
545
|
-
AOA: "AOA";
|
|
546
|
-
ARS: "ARS";
|
|
547
|
-
AUD: "AUD";
|
|
548
|
-
AWG: "AWG";
|
|
549
|
-
AZN: "AZN";
|
|
550
|
-
BAM: "BAM";
|
|
551
|
-
BBD: "BBD";
|
|
552
|
-
BDT: "BDT";
|
|
553
|
-
BGN: "BGN";
|
|
554
|
-
BHD: "BHD";
|
|
555
|
-
BIF: "BIF";
|
|
556
|
-
BMD: "BMD";
|
|
557
|
-
BND: "BND";
|
|
558
|
-
BOB: "BOB";
|
|
559
|
-
BRL: "BRL";
|
|
560
|
-
BSD: "BSD";
|
|
561
|
-
BTN: "BTN";
|
|
562
|
-
BWP: "BWP";
|
|
563
|
-
BYR: "BYR";
|
|
564
|
-
BZD: "BZD";
|
|
565
|
-
CAD: "CAD";
|
|
566
|
-
CDF: "CDF";
|
|
567
|
-
CHF: "CHF";
|
|
568
|
-
CLP: "CLP";
|
|
569
|
-
CNY: "CNY";
|
|
570
|
-
COP: "COP";
|
|
571
|
-
CRC: "CRC";
|
|
572
|
-
CUC: "CUC";
|
|
573
|
-
CUP: "CUP";
|
|
574
|
-
CVE: "CVE";
|
|
575
|
-
CZK: "CZK";
|
|
576
|
-
DJF: "DJF";
|
|
577
|
-
DKK: "DKK";
|
|
578
|
-
DOP: "DOP";
|
|
579
|
-
DZD: "DZD";
|
|
580
|
-
EGP: "EGP";
|
|
581
|
-
ERN: "ERN";
|
|
582
|
-
ETB: "ETB";
|
|
583
|
-
EUR: "EUR";
|
|
584
|
-
FJD: "FJD";
|
|
585
|
-
FKP: "FKP";
|
|
586
|
-
GBP: "GBP";
|
|
587
|
-
GEL: "GEL";
|
|
588
|
-
GGP: "GGP";
|
|
589
|
-
GHS: "GHS";
|
|
590
|
-
GIP: "GIP";
|
|
591
|
-
GMD: "GMD";
|
|
592
|
-
GNF: "GNF";
|
|
593
|
-
GTQ: "GTQ";
|
|
594
|
-
GYD: "GYD";
|
|
595
|
-
HKD: "HKD";
|
|
596
|
-
HNL: "HNL";
|
|
597
|
-
HRK: "HRK";
|
|
598
|
-
HTG: "HTG";
|
|
599
|
-
HUF: "HUF";
|
|
600
|
-
IDR: "IDR";
|
|
601
|
-
ILS: "ILS";
|
|
602
|
-
IMP: "IMP";
|
|
603
|
-
INR: "INR";
|
|
604
|
-
IQD: "IQD";
|
|
605
|
-
IRR: "IRR";
|
|
606
|
-
ISK: "ISK";
|
|
607
|
-
JEP: "JEP";
|
|
608
|
-
JMD: "JMD";
|
|
609
|
-
JOD: "JOD";
|
|
610
|
-
JPY: "JPY";
|
|
611
|
-
KES: "KES";
|
|
612
|
-
KGS: "KGS";
|
|
613
|
-
KHR: "KHR";
|
|
614
|
-
KMF: "KMF";
|
|
615
|
-
KPW: "KPW";
|
|
616
|
-
KRW: "KRW";
|
|
617
|
-
KWD: "KWD";
|
|
618
|
-
KYD: "KYD";
|
|
619
|
-
KZT: "KZT";
|
|
620
|
-
LAK: "LAK";
|
|
621
|
-
LBP: "LBP";
|
|
622
|
-
LKR: "LKR";
|
|
623
|
-
LRD: "LRD";
|
|
624
|
-
LSL: "LSL";
|
|
625
|
-
LTL: "LTL";
|
|
626
|
-
LVL: "LVL";
|
|
627
|
-
LYD: "LYD";
|
|
628
|
-
MAD: "MAD";
|
|
629
|
-
MDL: "MDL";
|
|
630
|
-
MGA: "MGA";
|
|
631
|
-
MKD: "MKD";
|
|
632
|
-
MMK: "MMK";
|
|
633
|
-
MNT: "MNT";
|
|
634
|
-
MOP: "MOP";
|
|
635
|
-
MRO: "MRO";
|
|
636
|
-
MUR: "MUR";
|
|
637
|
-
MVR: "MVR";
|
|
638
|
-
MWK: "MWK";
|
|
639
|
-
MXN: "MXN";
|
|
640
|
-
MYR: "MYR";
|
|
641
|
-
MZN: "MZN";
|
|
642
|
-
NAD: "NAD";
|
|
643
|
-
NGN: "NGN";
|
|
644
|
-
NIO: "NIO";
|
|
645
|
-
NOK: "NOK";
|
|
646
|
-
NPR: "NPR";
|
|
647
|
-
NZD: "NZD";
|
|
648
|
-
OMR: "OMR";
|
|
649
|
-
PAB: "PAB";
|
|
650
|
-
PEN: "PEN";
|
|
651
|
-
PGK: "PGK";
|
|
652
|
-
PHP: "PHP";
|
|
653
|
-
PKR: "PKR";
|
|
654
|
-
PLN: "PLN";
|
|
655
|
-
PYG: "PYG";
|
|
656
|
-
QAR: "QAR";
|
|
657
|
-
RON: "RON";
|
|
658
|
-
RSD: "RSD";
|
|
659
|
-
RUB: "RUB";
|
|
660
|
-
RWF: "RWF";
|
|
661
|
-
SAR: "SAR";
|
|
662
|
-
SBD: "SBD";
|
|
663
|
-
SCR: "SCR";
|
|
664
|
-
SDG: "SDG";
|
|
665
|
-
SEK: "SEK";
|
|
666
|
-
SGD: "SGD";
|
|
667
|
-
SHP: "SHP";
|
|
668
|
-
SLL: "SLL";
|
|
669
|
-
SOS: "SOS";
|
|
670
|
-
SPL: "SPL";
|
|
671
|
-
SRD: "SRD";
|
|
672
|
-
STD: "STD";
|
|
673
|
-
SVC: "SVC";
|
|
674
|
-
SYP: "SYP";
|
|
675
|
-
SZL: "SZL";
|
|
676
|
-
THB: "THB";
|
|
677
|
-
TJS: "TJS";
|
|
678
|
-
TMT: "TMT";
|
|
679
|
-
TND: "TND";
|
|
680
|
-
TOP: "TOP";
|
|
681
|
-
TRY: "TRY";
|
|
682
|
-
TTD: "TTD";
|
|
683
|
-
TVD: "TVD";
|
|
684
|
-
TWD: "TWD";
|
|
685
|
-
TZS: "TZS";
|
|
686
|
-
UAH: "UAH";
|
|
687
|
-
UGX: "UGX";
|
|
688
|
-
USD: "USD";
|
|
689
|
-
UYU: "UYU";
|
|
690
|
-
UZS: "UZS";
|
|
691
|
-
VEF: "VEF";
|
|
692
|
-
VND: "VND";
|
|
693
|
-
VUV: "VUV";
|
|
694
|
-
WST: "WST";
|
|
695
|
-
XAF: "XAF";
|
|
696
|
-
XCD: "XCD";
|
|
697
|
-
XDR: "XDR";
|
|
698
|
-
XOF: "XOF";
|
|
699
|
-
XPF: "XPF";
|
|
700
|
-
YER: "YER";
|
|
701
|
-
ZAR: "ZAR";
|
|
702
|
-
ZMW: "ZMW";
|
|
703
|
-
ZWD: "ZWD";
|
|
704
|
-
BTC: "BTC";
|
|
705
|
-
}>>;
|
|
706
|
-
quantity: z.ZodOptional<z.ZodNumber>;
|
|
707
|
-
itemDetails: z.ZodOptional<z.ZodString>;
|
|
708
|
-
catalogEffectiveDate: z.ZodOptional<z.ZodString>;
|
|
709
|
-
childItems: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodArray<z.ZodUnknown>, z.ZodBoolean, z.ZodNumber, z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodString]>>>;
|
|
710
|
-
}, z.core.$strip>>>;
|
|
711
|
-
items: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
712
|
-
id: z.ZodOptional<z.ZodUUID>;
|
|
713
|
-
linkedInvoiceItemId: z.ZodOptional<z.ZodUUID>;
|
|
714
|
-
productName: z.ZodOptional<z.ZodString>;
|
|
715
|
-
planName: z.ZodOptional<z.ZodString>;
|
|
716
|
-
phaseName: z.ZodOptional<z.ZodString>;
|
|
717
|
-
usageName: z.ZodOptional<z.ZodString>;
|
|
718
|
-
prettyProductName: z.ZodOptional<z.ZodString>;
|
|
719
|
-
prettyPlanName: z.ZodOptional<z.ZodString>;
|
|
720
|
-
prettyPhaseName: z.ZodOptional<z.ZodString>;
|
|
721
|
-
prettyUsageName: z.ZodOptional<z.ZodString>;
|
|
722
|
-
itemType: z.ZodOptional<z.ZodEnum<{
|
|
723
|
-
EXTERNAL_CHARGE: "EXTERNAL_CHARGE";
|
|
724
|
-
FIXED: "FIXED";
|
|
725
|
-
RECURRING: "RECURRING";
|
|
726
|
-
REPAIR_ADJ: "REPAIR_ADJ";
|
|
727
|
-
CBA_ADJ: "CBA_ADJ";
|
|
728
|
-
CREDIT_ADJ: "CREDIT_ADJ";
|
|
729
|
-
ITEM_ADJ: "ITEM_ADJ";
|
|
730
|
-
USAGE: "USAGE";
|
|
731
|
-
TAX: "TAX";
|
|
732
|
-
PARENT_SUMMARY: "PARENT_SUMMARY";
|
|
733
|
-
}>>;
|
|
734
|
-
description: z.ZodOptional<z.ZodString>;
|
|
735
|
-
startDate: z.ZodOptional<z.ZodString>;
|
|
736
|
-
endDate: z.ZodOptional<z.ZodString>;
|
|
737
|
-
amount: z.ZodOptional<z.ZodNumber>;
|
|
738
|
-
rate: z.ZodOptional<z.ZodNumber>;
|
|
739
|
-
currency: z.ZodOptional<z.ZodEnum<{
|
|
740
|
-
AED: "AED";
|
|
741
|
-
AFN: "AFN";
|
|
742
|
-
ALL: "ALL";
|
|
743
|
-
AMD: "AMD";
|
|
744
|
-
ANG: "ANG";
|
|
745
|
-
AOA: "AOA";
|
|
746
|
-
ARS: "ARS";
|
|
747
|
-
AUD: "AUD";
|
|
748
|
-
AWG: "AWG";
|
|
749
|
-
AZN: "AZN";
|
|
750
|
-
BAM: "BAM";
|
|
751
|
-
BBD: "BBD";
|
|
752
|
-
BDT: "BDT";
|
|
753
|
-
BGN: "BGN";
|
|
754
|
-
BHD: "BHD";
|
|
755
|
-
BIF: "BIF";
|
|
756
|
-
BMD: "BMD";
|
|
757
|
-
BND: "BND";
|
|
758
|
-
BOB: "BOB";
|
|
759
|
-
BRL: "BRL";
|
|
760
|
-
BSD: "BSD";
|
|
761
|
-
BTN: "BTN";
|
|
762
|
-
BWP: "BWP";
|
|
763
|
-
BYR: "BYR";
|
|
764
|
-
BZD: "BZD";
|
|
765
|
-
CAD: "CAD";
|
|
766
|
-
CDF: "CDF";
|
|
767
|
-
CHF: "CHF";
|
|
768
|
-
CLP: "CLP";
|
|
769
|
-
CNY: "CNY";
|
|
770
|
-
COP: "COP";
|
|
771
|
-
CRC: "CRC";
|
|
772
|
-
CUC: "CUC";
|
|
773
|
-
CUP: "CUP";
|
|
774
|
-
CVE: "CVE";
|
|
775
|
-
CZK: "CZK";
|
|
776
|
-
DJF: "DJF";
|
|
777
|
-
DKK: "DKK";
|
|
778
|
-
DOP: "DOP";
|
|
779
|
-
DZD: "DZD";
|
|
780
|
-
EGP: "EGP";
|
|
781
|
-
ERN: "ERN";
|
|
782
|
-
ETB: "ETB";
|
|
783
|
-
EUR: "EUR";
|
|
784
|
-
FJD: "FJD";
|
|
785
|
-
FKP: "FKP";
|
|
786
|
-
GBP: "GBP";
|
|
787
|
-
GEL: "GEL";
|
|
788
|
-
GGP: "GGP";
|
|
789
|
-
GHS: "GHS";
|
|
790
|
-
GIP: "GIP";
|
|
791
|
-
GMD: "GMD";
|
|
792
|
-
GNF: "GNF";
|
|
793
|
-
GTQ: "GTQ";
|
|
794
|
-
GYD: "GYD";
|
|
795
|
-
HKD: "HKD";
|
|
796
|
-
HNL: "HNL";
|
|
797
|
-
HRK: "HRK";
|
|
798
|
-
HTG: "HTG";
|
|
799
|
-
HUF: "HUF";
|
|
800
|
-
IDR: "IDR";
|
|
801
|
-
ILS: "ILS";
|
|
802
|
-
IMP: "IMP";
|
|
803
|
-
INR: "INR";
|
|
804
|
-
IQD: "IQD";
|
|
805
|
-
IRR: "IRR";
|
|
806
|
-
ISK: "ISK";
|
|
807
|
-
JEP: "JEP";
|
|
808
|
-
JMD: "JMD";
|
|
809
|
-
JOD: "JOD";
|
|
810
|
-
JPY: "JPY";
|
|
811
|
-
KES: "KES";
|
|
812
|
-
KGS: "KGS";
|
|
813
|
-
KHR: "KHR";
|
|
814
|
-
KMF: "KMF";
|
|
815
|
-
KPW: "KPW";
|
|
816
|
-
KRW: "KRW";
|
|
817
|
-
KWD: "KWD";
|
|
818
|
-
KYD: "KYD";
|
|
819
|
-
KZT: "KZT";
|
|
820
|
-
LAK: "LAK";
|
|
821
|
-
LBP: "LBP";
|
|
822
|
-
LKR: "LKR";
|
|
823
|
-
LRD: "LRD";
|
|
824
|
-
LSL: "LSL";
|
|
825
|
-
LTL: "LTL";
|
|
826
|
-
LVL: "LVL";
|
|
827
|
-
LYD: "LYD";
|
|
828
|
-
MAD: "MAD";
|
|
829
|
-
MDL: "MDL";
|
|
830
|
-
MGA: "MGA";
|
|
831
|
-
MKD: "MKD";
|
|
832
|
-
MMK: "MMK";
|
|
833
|
-
MNT: "MNT";
|
|
834
|
-
MOP: "MOP";
|
|
835
|
-
MRO: "MRO";
|
|
836
|
-
MUR: "MUR";
|
|
837
|
-
MVR: "MVR";
|
|
838
|
-
MWK: "MWK";
|
|
839
|
-
MXN: "MXN";
|
|
840
|
-
MYR: "MYR";
|
|
841
|
-
MZN: "MZN";
|
|
842
|
-
NAD: "NAD";
|
|
843
|
-
NGN: "NGN";
|
|
844
|
-
NIO: "NIO";
|
|
845
|
-
NOK: "NOK";
|
|
846
|
-
NPR: "NPR";
|
|
847
|
-
NZD: "NZD";
|
|
848
|
-
OMR: "OMR";
|
|
849
|
-
PAB: "PAB";
|
|
850
|
-
PEN: "PEN";
|
|
851
|
-
PGK: "PGK";
|
|
852
|
-
PHP: "PHP";
|
|
853
|
-
PKR: "PKR";
|
|
854
|
-
PLN: "PLN";
|
|
855
|
-
PYG: "PYG";
|
|
856
|
-
QAR: "QAR";
|
|
857
|
-
RON: "RON";
|
|
858
|
-
RSD: "RSD";
|
|
859
|
-
RUB: "RUB";
|
|
860
|
-
RWF: "RWF";
|
|
861
|
-
SAR: "SAR";
|
|
862
|
-
SBD: "SBD";
|
|
863
|
-
SCR: "SCR";
|
|
864
|
-
SDG: "SDG";
|
|
865
|
-
SEK: "SEK";
|
|
866
|
-
SGD: "SGD";
|
|
867
|
-
SHP: "SHP";
|
|
868
|
-
SLL: "SLL";
|
|
869
|
-
SOS: "SOS";
|
|
870
|
-
SPL: "SPL";
|
|
871
|
-
SRD: "SRD";
|
|
872
|
-
STD: "STD";
|
|
873
|
-
SVC: "SVC";
|
|
874
|
-
SYP: "SYP";
|
|
875
|
-
SZL: "SZL";
|
|
876
|
-
THB: "THB";
|
|
877
|
-
TJS: "TJS";
|
|
878
|
-
TMT: "TMT";
|
|
879
|
-
TND: "TND";
|
|
880
|
-
TOP: "TOP";
|
|
881
|
-
TRY: "TRY";
|
|
882
|
-
TTD: "TTD";
|
|
883
|
-
TVD: "TVD";
|
|
884
|
-
TWD: "TWD";
|
|
885
|
-
TZS: "TZS";
|
|
886
|
-
UAH: "UAH";
|
|
887
|
-
UGX: "UGX";
|
|
888
|
-
USD: "USD";
|
|
889
|
-
UYU: "UYU";
|
|
890
|
-
UZS: "UZS";
|
|
891
|
-
VEF: "VEF";
|
|
892
|
-
VND: "VND";
|
|
893
|
-
VUV: "VUV";
|
|
894
|
-
WST: "WST";
|
|
895
|
-
XAF: "XAF";
|
|
896
|
-
XCD: "XCD";
|
|
897
|
-
XDR: "XDR";
|
|
898
|
-
XOF: "XOF";
|
|
899
|
-
XPF: "XPF";
|
|
900
|
-
YER: "YER";
|
|
901
|
-
ZAR: "ZAR";
|
|
902
|
-
ZMW: "ZMW";
|
|
903
|
-
ZWD: "ZWD";
|
|
904
|
-
BTC: "BTC";
|
|
905
|
-
}>>;
|
|
906
|
-
quantity: z.ZodOptional<z.ZodNumber>;
|
|
907
|
-
itemDetails: z.ZodOptional<z.ZodString>;
|
|
908
|
-
catalogEffectiveDate: z.ZodOptional<z.ZodString>;
|
|
909
|
-
childItems: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodArray<z.ZodUnknown>, z.ZodBoolean, z.ZodNumber, z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodString]>>>;
|
|
910
|
-
}, z.core.$strip>>>;
|
|
334
|
+
id: z.ZodOptional<z.ZodString>;
|
|
335
|
+
number: z.ZodOptional<z.ZodString>;
|
|
336
|
+
status: z.ZodOptional<z.ZodString>;
|
|
337
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
338
|
+
currency: z.ZodOptional<z.ZodString>;
|
|
339
|
+
created: z.ZodISODateTime;
|
|
340
|
+
period_start: z.ZodISODateTime;
|
|
341
|
+
period_end: z.ZodISODateTime;
|
|
342
|
+
invoice_pdf: z.ZodOptional<z.ZodString>;
|
|
343
|
+
}, z.core.$strip>;
|
|
344
|
+
export declare const zMarketplaceListingFiles: z.ZodObject<{
|
|
345
|
+
chartYaml: z.ZodOptional<z.ZodString>;
|
|
346
|
+
valuesYaml: z.ZodOptional<z.ZodString>;
|
|
347
|
+
valuesSchemaJson: z.ZodOptional<z.ZodString>;
|
|
911
348
|
}, z.core.$strip>;
|
|
912
349
|
export declare const zMarketplaceListing: z.ZodObject<{
|
|
913
|
-
id: z.ZodString;
|
|
914
350
|
name: z.ZodString;
|
|
915
|
-
|
|
916
|
-
description: z.ZodString;
|
|
917
|
-
logoUrl: z.ZodString;
|
|
918
|
-
longDescription: z.ZodString;
|
|
919
|
-
categories: z.ZodArray<z.ZodString>;
|
|
351
|
+
versions: z.ZodArray<z.ZodString>;
|
|
920
352
|
version_channels: z.ZodArray<z.ZodString>;
|
|
921
|
-
|
|
353
|
+
latestVersion: z.ZodString;
|
|
354
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
355
|
+
name: z.ZodString;
|
|
922
356
|
version: z.ZodString;
|
|
923
|
-
|
|
924
|
-
|
|
357
|
+
description: z.ZodOptional<z.ZodString>;
|
|
358
|
+
appVersion: z.ZodOptional<z.ZodString>;
|
|
359
|
+
apiVersion: z.ZodOptional<z.ZodString>;
|
|
360
|
+
keywords: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
361
|
+
home: z.ZodOptional<z.ZodString>;
|
|
362
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
363
|
+
sources: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
364
|
+
maintainers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
365
|
+
name: z.ZodString;
|
|
366
|
+
email: z.ZodOptional<z.ZodString>;
|
|
367
|
+
}, z.core.$strip>>>;
|
|
925
368
|
}, z.core.$strip>>;
|
|
926
369
|
}, z.core.$strip>;
|
|
927
370
|
export declare const zOrganizationCreateInput: z.ZodObject<{
|
|
@@ -947,6 +390,7 @@ export declare const zOrganization: z.ZodObject<{
|
|
|
947
390
|
id: z.ZodString;
|
|
948
391
|
label: z.ZodString;
|
|
949
392
|
}, z.core.$strip>>;
|
|
393
|
+
cfcr_storage_gb: z.ZodInt;
|
|
950
394
|
}, z.core.$strip>;
|
|
951
395
|
status: z.ZodEnum<{
|
|
952
396
|
active: "active";
|
|
@@ -975,6 +419,66 @@ export declare const zPaymentMethod: z.ZodObject<{
|
|
|
975
419
|
visa: "visa";
|
|
976
420
|
}>;
|
|
977
421
|
}, z.core.$strip>;
|
|
422
|
+
export declare const zPlatformQuota: z.ZodObject<{
|
|
423
|
+
basic_clusters_max: z.ZodInt;
|
|
424
|
+
basic_clusters_available: z.ZodInt;
|
|
425
|
+
pro_clusters_max: z.ZodInt;
|
|
426
|
+
pro_clusters_available: z.ZodInt;
|
|
427
|
+
fleets_max: z.ZodInt;
|
|
428
|
+
cluster_tiers: z.ZodArray<z.ZodString>;
|
|
429
|
+
regions: z.ZodArray<z.ZodString>;
|
|
430
|
+
versions: z.ZodArray<z.ZodObject<{
|
|
431
|
+
id: z.ZodString;
|
|
432
|
+
label: z.ZodString;
|
|
433
|
+
}, z.core.$strip>>;
|
|
434
|
+
cfcr_storage_gb: z.ZodInt;
|
|
435
|
+
}, z.core.$strip>;
|
|
436
|
+
export declare const zRegistryRepository: z.ZodObject<{
|
|
437
|
+
name: z.ZodString;
|
|
438
|
+
region: z.ZodString;
|
|
439
|
+
uri: z.ZodString;
|
|
440
|
+
}, z.core.$strip>;
|
|
441
|
+
export declare const zRegistryRepositoryWithTags: z.ZodObject<{
|
|
442
|
+
name: z.ZodString;
|
|
443
|
+
region: z.ZodString;
|
|
444
|
+
uri: z.ZodString;
|
|
445
|
+
tags: z.ZodArray<z.ZodObject<{
|
|
446
|
+
name: z.ZodString;
|
|
447
|
+
size: z.ZodNumber;
|
|
448
|
+
mediaType: z.ZodOptional<z.ZodString>;
|
|
449
|
+
platforms: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
450
|
+
}, z.core.$strip>>;
|
|
451
|
+
totalSize: z.ZodNumber;
|
|
452
|
+
}, z.core.$strip>;
|
|
453
|
+
export declare const zRegistryTag: z.ZodObject<{
|
|
454
|
+
name: z.ZodString;
|
|
455
|
+
digest: z.ZodString;
|
|
456
|
+
mediaType: z.ZodOptional<z.ZodString>;
|
|
457
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
458
|
+
size: z.ZodNumber;
|
|
459
|
+
}, z.core.$strip>>;
|
|
460
|
+
layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
461
|
+
digest: z.ZodOptional<z.ZodString>;
|
|
462
|
+
size: z.ZodNumber;
|
|
463
|
+
}, z.core.$strip>>>;
|
|
464
|
+
manifests: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
465
|
+
digest: z.ZodString;
|
|
466
|
+
platform: z.ZodOptional<z.ZodObject<{
|
|
467
|
+
architecture: z.ZodString;
|
|
468
|
+
os: z.ZodString;
|
|
469
|
+
variant: z.ZodOptional<z.ZodString>;
|
|
470
|
+
}, z.core.$strip>>;
|
|
471
|
+
layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
472
|
+
digest: z.ZodOptional<z.ZodString>;
|
|
473
|
+
size: z.ZodNumber;
|
|
474
|
+
}, z.core.$strip>>>;
|
|
475
|
+
size: z.ZodOptional<z.ZodNumber>;
|
|
476
|
+
}, z.core.$strip>>>;
|
|
477
|
+
size: z.ZodNumber;
|
|
478
|
+
region: z.ZodString;
|
|
479
|
+
repository: z.ZodString;
|
|
480
|
+
uri: z.ZodString;
|
|
481
|
+
}, z.core.$strip>;
|
|
978
482
|
export declare const zTokenCreateInput: z.ZodObject<{
|
|
979
483
|
name: z.ZodString;
|
|
980
484
|
role: z.ZodEnum<{
|
|
@@ -999,37 +503,31 @@ export declare const zTokenUpdateInput: z.ZodObject<{
|
|
|
999
503
|
User: "User";
|
|
1000
504
|
}>>;
|
|
1001
505
|
}, z.core.$strip>;
|
|
506
|
+
export declare const zUsageFacets: z.ZodObject<{
|
|
507
|
+
cluster_id: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
508
|
+
product: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
509
|
+
}, z.core.$strip>;
|
|
510
|
+
export declare const zUsageResponse: z.ZodObject<{
|
|
511
|
+
data: z.ZodArray<z.ZodObject<{
|
|
512
|
+
hour: z.ZodString;
|
|
513
|
+
cluster_id: z.ZodString;
|
|
514
|
+
product: z.ZodString;
|
|
515
|
+
value: z.ZodNumber;
|
|
516
|
+
price: z.ZodNumber;
|
|
517
|
+
total: z.ZodNumber;
|
|
518
|
+
}, z.core.$strip>>;
|
|
519
|
+
facets: z.ZodObject<{
|
|
520
|
+
cluster_id: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
521
|
+
product: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
522
|
+
}, z.core.$strip>;
|
|
523
|
+
}, z.core.$strip>;
|
|
1002
524
|
export declare const zUsage: z.ZodObject<{
|
|
1003
|
-
hour: z.
|
|
1004
|
-
cluster_id: z.
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
}>;
|
|
1010
|
-
product: z.ZodEnum<{
|
|
1011
|
-
cfke_controlplane: "cfke_controlplane";
|
|
1012
|
-
cfke_connected_nodes: "cfke_connected_nodes";
|
|
1013
|
-
infra_compute: "infra_compute";
|
|
1014
|
-
infra_storage: "infra_storage";
|
|
1015
|
-
infra_loadbalancing: "infra_loadbalancing";
|
|
1016
|
-
infra_traffic: "infra_traffic";
|
|
1017
|
-
cfcr_storage: "cfcr_storage";
|
|
1018
|
-
}>;
|
|
1019
|
-
node_name: z.ZodString;
|
|
1020
|
-
sku: z.ZodString;
|
|
1021
|
-
cpu: z.ZodUnion<readonly [z.ZodNumber, z.ZodEnum<{
|
|
1022
|
-
"": "";
|
|
1023
|
-
}>]>;
|
|
1024
|
-
price: z.ZodUnion<readonly [z.ZodNumber, z.ZodEnum<{
|
|
1025
|
-
"": "";
|
|
1026
|
-
}>]>;
|
|
1027
|
-
value: z.ZodUnion<readonly [z.ZodNumber, z.ZodEnum<{
|
|
1028
|
-
"": "";
|
|
1029
|
-
}>]>;
|
|
1030
|
-
total: z.ZodUnion<readonly [z.ZodNumber, z.ZodEnum<{
|
|
1031
|
-
"": "";
|
|
1032
|
-
}>]>;
|
|
525
|
+
hour: z.ZodString;
|
|
526
|
+
cluster_id: z.ZodString;
|
|
527
|
+
product: z.ZodString;
|
|
528
|
+
value: z.ZodNumber;
|
|
529
|
+
price: z.ZodNumber;
|
|
530
|
+
total: z.ZodNumber;
|
|
1033
531
|
}, z.core.$strip>;
|
|
1034
532
|
export declare const zUserCreateInput: z.ZodObject<{
|
|
1035
533
|
email: z.ZodEmail;
|
|
@@ -1074,59 +572,29 @@ export declare const zUserUpdateInput: z.ZodObject<{
|
|
|
1074
572
|
inactive: "inactive";
|
|
1075
573
|
}>>;
|
|
1076
574
|
}, z.core.$strip>;
|
|
1077
|
-
export declare const
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
* An array of usage records.
|
|
1084
|
-
*/
|
|
1085
|
-
export declare const zGetUsageResponse: z.ZodArray<z.ZodObject<{
|
|
1086
|
-
hour: z.ZodOptional<z.ZodString>;
|
|
1087
|
-
cluster_id: z.ZodUUID;
|
|
1088
|
-
cluster_tier: z.ZodEnum<{
|
|
1089
|
-
"": "";
|
|
1090
|
-
basic: "basic";
|
|
1091
|
-
pro: "pro";
|
|
1092
|
-
}>;
|
|
1093
|
-
product: z.ZodEnum<{
|
|
1094
|
-
cfke_controlplane: "cfke_controlplane";
|
|
1095
|
-
cfke_connected_nodes: "cfke_connected_nodes";
|
|
1096
|
-
infra_compute: "infra_compute";
|
|
1097
|
-
infra_storage: "infra_storage";
|
|
1098
|
-
infra_loadbalancing: "infra_loadbalancing";
|
|
1099
|
-
infra_traffic: "infra_traffic";
|
|
1100
|
-
cfcr_storage: "cfcr_storage";
|
|
1101
|
-
}>;
|
|
1102
|
-
node_name: z.ZodString;
|
|
1103
|
-
sku: z.ZodString;
|
|
1104
|
-
cpu: z.ZodUnion<readonly [z.ZodNumber, z.ZodEnum<{
|
|
1105
|
-
"": "";
|
|
1106
|
-
}>]>;
|
|
1107
|
-
price: z.ZodUnion<readonly [z.ZodNumber, z.ZodEnum<{
|
|
1108
|
-
"": "";
|
|
1109
|
-
}>]>;
|
|
1110
|
-
value: z.ZodUnion<readonly [z.ZodNumber, z.ZodEnum<{
|
|
1111
|
-
"": "";
|
|
1112
|
-
}>]>;
|
|
1113
|
-
total: z.ZodUnion<readonly [z.ZodNumber, z.ZodEnum<{
|
|
1114
|
-
"": "";
|
|
1115
|
-
}>]>;
|
|
1116
|
-
}, z.core.$strip>>;
|
|
1117
|
-
export declare const zGetBalanceData: z.ZodObject<{
|
|
1118
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
1119
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1120
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
575
|
+
export declare const zGetUsageQuery: z.ZodObject<{
|
|
576
|
+
granularity: z.ZodOptional<z.ZodEnum<{
|
|
577
|
+
hourly: "hourly";
|
|
578
|
+
daily: "daily";
|
|
579
|
+
monthly: "monthly";
|
|
580
|
+
}>>;
|
|
1121
581
|
}, z.core.$strip>;
|
|
1122
582
|
/**
|
|
1123
|
-
*
|
|
583
|
+
* Usage data with facets for filtering
|
|
1124
584
|
*/
|
|
1125
|
-
export declare const
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
585
|
+
export declare const zGetUsageResponse: z.ZodObject<{
|
|
586
|
+
data: z.ZodArray<z.ZodObject<{
|
|
587
|
+
hour: z.ZodString;
|
|
588
|
+
cluster_id: z.ZodString;
|
|
589
|
+
product: z.ZodString;
|
|
590
|
+
value: z.ZodNumber;
|
|
591
|
+
price: z.ZodNumber;
|
|
592
|
+
total: z.ZodNumber;
|
|
593
|
+
}, z.core.$strip>>;
|
|
594
|
+
facets: z.ZodObject<{
|
|
595
|
+
cluster_id: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
596
|
+
product: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
597
|
+
}, z.core.$strip>;
|
|
1130
598
|
}, z.core.$strip>;
|
|
1131
599
|
/**
|
|
1132
600
|
* Redacted payment card information.
|
|
@@ -1152,11 +620,6 @@ export declare const zGetPaymentMethodResponse: z.ZodObject<{
|
|
|
1152
620
|
visa: "visa";
|
|
1153
621
|
}>;
|
|
1154
622
|
}, z.core.$strip>;
|
|
1155
|
-
export declare const zGetPaymentMethodSecretData: z.ZodObject<{
|
|
1156
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
1157
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1158
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1159
|
-
}, z.core.$strip>;
|
|
1160
623
|
/**
|
|
1161
624
|
* The client secret. Used for client-side retrieval using a publishable key. The client secret can be used to complete a payment from your frontend. It should not be stored, logged, or exposed to anyone other than the customer. Make sure that you have TLS enabled on any page that includes the client secret.
|
|
1162
625
|
*
|
|
@@ -1164,619 +627,20 @@ export declare const zGetPaymentMethodSecretData: z.ZodObject<{
|
|
|
1164
627
|
export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
|
|
1165
628
|
id: z.ZodOptional<z.ZodString>;
|
|
1166
629
|
}, z.core.$strip>;
|
|
1167
|
-
export declare const zListInvoicesData: z.ZodObject<{
|
|
1168
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
1169
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1170
|
-
query: z.ZodObject<{
|
|
1171
|
-
start_date: z.ZodString;
|
|
1172
|
-
end_date: z.ZodString;
|
|
1173
|
-
}, z.core.$strip>;
|
|
1174
|
-
}, z.core.$strip>;
|
|
1175
630
|
/**
|
|
1176
631
|
* An array of usage records.
|
|
1177
632
|
*/
|
|
1178
633
|
export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
1179
|
-
id: z.ZodOptional<z.
|
|
1180
|
-
|
|
1181
|
-
status: z.ZodOptional<z.
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
AED: "AED";
|
|
1189
|
-
AFN: "AFN";
|
|
1190
|
-
ALL: "ALL";
|
|
1191
|
-
AMD: "AMD";
|
|
1192
|
-
ANG: "ANG";
|
|
1193
|
-
AOA: "AOA";
|
|
1194
|
-
ARS: "ARS";
|
|
1195
|
-
AUD: "AUD";
|
|
1196
|
-
AWG: "AWG";
|
|
1197
|
-
AZN: "AZN";
|
|
1198
|
-
BAM: "BAM";
|
|
1199
|
-
BBD: "BBD";
|
|
1200
|
-
BDT: "BDT";
|
|
1201
|
-
BGN: "BGN";
|
|
1202
|
-
BHD: "BHD";
|
|
1203
|
-
BIF: "BIF";
|
|
1204
|
-
BMD: "BMD";
|
|
1205
|
-
BND: "BND";
|
|
1206
|
-
BOB: "BOB";
|
|
1207
|
-
BRL: "BRL";
|
|
1208
|
-
BSD: "BSD";
|
|
1209
|
-
BTN: "BTN";
|
|
1210
|
-
BWP: "BWP";
|
|
1211
|
-
BYR: "BYR";
|
|
1212
|
-
BZD: "BZD";
|
|
1213
|
-
CAD: "CAD";
|
|
1214
|
-
CDF: "CDF";
|
|
1215
|
-
CHF: "CHF";
|
|
1216
|
-
CLP: "CLP";
|
|
1217
|
-
CNY: "CNY";
|
|
1218
|
-
COP: "COP";
|
|
1219
|
-
CRC: "CRC";
|
|
1220
|
-
CUC: "CUC";
|
|
1221
|
-
CUP: "CUP";
|
|
1222
|
-
CVE: "CVE";
|
|
1223
|
-
CZK: "CZK";
|
|
1224
|
-
DJF: "DJF";
|
|
1225
|
-
DKK: "DKK";
|
|
1226
|
-
DOP: "DOP";
|
|
1227
|
-
DZD: "DZD";
|
|
1228
|
-
EGP: "EGP";
|
|
1229
|
-
ERN: "ERN";
|
|
1230
|
-
ETB: "ETB";
|
|
1231
|
-
EUR: "EUR";
|
|
1232
|
-
FJD: "FJD";
|
|
1233
|
-
FKP: "FKP";
|
|
1234
|
-
GBP: "GBP";
|
|
1235
|
-
GEL: "GEL";
|
|
1236
|
-
GGP: "GGP";
|
|
1237
|
-
GHS: "GHS";
|
|
1238
|
-
GIP: "GIP";
|
|
1239
|
-
GMD: "GMD";
|
|
1240
|
-
GNF: "GNF";
|
|
1241
|
-
GTQ: "GTQ";
|
|
1242
|
-
GYD: "GYD";
|
|
1243
|
-
HKD: "HKD";
|
|
1244
|
-
HNL: "HNL";
|
|
1245
|
-
HRK: "HRK";
|
|
1246
|
-
HTG: "HTG";
|
|
1247
|
-
HUF: "HUF";
|
|
1248
|
-
IDR: "IDR";
|
|
1249
|
-
ILS: "ILS";
|
|
1250
|
-
IMP: "IMP";
|
|
1251
|
-
INR: "INR";
|
|
1252
|
-
IQD: "IQD";
|
|
1253
|
-
IRR: "IRR";
|
|
1254
|
-
ISK: "ISK";
|
|
1255
|
-
JEP: "JEP";
|
|
1256
|
-
JMD: "JMD";
|
|
1257
|
-
JOD: "JOD";
|
|
1258
|
-
JPY: "JPY";
|
|
1259
|
-
KES: "KES";
|
|
1260
|
-
KGS: "KGS";
|
|
1261
|
-
KHR: "KHR";
|
|
1262
|
-
KMF: "KMF";
|
|
1263
|
-
KPW: "KPW";
|
|
1264
|
-
KRW: "KRW";
|
|
1265
|
-
KWD: "KWD";
|
|
1266
|
-
KYD: "KYD";
|
|
1267
|
-
KZT: "KZT";
|
|
1268
|
-
LAK: "LAK";
|
|
1269
|
-
LBP: "LBP";
|
|
1270
|
-
LKR: "LKR";
|
|
1271
|
-
LRD: "LRD";
|
|
1272
|
-
LSL: "LSL";
|
|
1273
|
-
LTL: "LTL";
|
|
1274
|
-
LVL: "LVL";
|
|
1275
|
-
LYD: "LYD";
|
|
1276
|
-
MAD: "MAD";
|
|
1277
|
-
MDL: "MDL";
|
|
1278
|
-
MGA: "MGA";
|
|
1279
|
-
MKD: "MKD";
|
|
1280
|
-
MMK: "MMK";
|
|
1281
|
-
MNT: "MNT";
|
|
1282
|
-
MOP: "MOP";
|
|
1283
|
-
MRO: "MRO";
|
|
1284
|
-
MUR: "MUR";
|
|
1285
|
-
MVR: "MVR";
|
|
1286
|
-
MWK: "MWK";
|
|
1287
|
-
MXN: "MXN";
|
|
1288
|
-
MYR: "MYR";
|
|
1289
|
-
MZN: "MZN";
|
|
1290
|
-
NAD: "NAD";
|
|
1291
|
-
NGN: "NGN";
|
|
1292
|
-
NIO: "NIO";
|
|
1293
|
-
NOK: "NOK";
|
|
1294
|
-
NPR: "NPR";
|
|
1295
|
-
NZD: "NZD";
|
|
1296
|
-
OMR: "OMR";
|
|
1297
|
-
PAB: "PAB";
|
|
1298
|
-
PEN: "PEN";
|
|
1299
|
-
PGK: "PGK";
|
|
1300
|
-
PHP: "PHP";
|
|
1301
|
-
PKR: "PKR";
|
|
1302
|
-
PLN: "PLN";
|
|
1303
|
-
PYG: "PYG";
|
|
1304
|
-
QAR: "QAR";
|
|
1305
|
-
RON: "RON";
|
|
1306
|
-
RSD: "RSD";
|
|
1307
|
-
RUB: "RUB";
|
|
1308
|
-
RWF: "RWF";
|
|
1309
|
-
SAR: "SAR";
|
|
1310
|
-
SBD: "SBD";
|
|
1311
|
-
SCR: "SCR";
|
|
1312
|
-
SDG: "SDG";
|
|
1313
|
-
SEK: "SEK";
|
|
1314
|
-
SGD: "SGD";
|
|
1315
|
-
SHP: "SHP";
|
|
1316
|
-
SLL: "SLL";
|
|
1317
|
-
SOS: "SOS";
|
|
1318
|
-
SPL: "SPL";
|
|
1319
|
-
SRD: "SRD";
|
|
1320
|
-
STD: "STD";
|
|
1321
|
-
SVC: "SVC";
|
|
1322
|
-
SYP: "SYP";
|
|
1323
|
-
SZL: "SZL";
|
|
1324
|
-
THB: "THB";
|
|
1325
|
-
TJS: "TJS";
|
|
1326
|
-
TMT: "TMT";
|
|
1327
|
-
TND: "TND";
|
|
1328
|
-
TOP: "TOP";
|
|
1329
|
-
TRY: "TRY";
|
|
1330
|
-
TTD: "TTD";
|
|
1331
|
-
TVD: "TVD";
|
|
1332
|
-
TWD: "TWD";
|
|
1333
|
-
TZS: "TZS";
|
|
1334
|
-
UAH: "UAH";
|
|
1335
|
-
UGX: "UGX";
|
|
1336
|
-
USD: "USD";
|
|
1337
|
-
UYU: "UYU";
|
|
1338
|
-
UZS: "UZS";
|
|
1339
|
-
VEF: "VEF";
|
|
1340
|
-
VND: "VND";
|
|
1341
|
-
VUV: "VUV";
|
|
1342
|
-
WST: "WST";
|
|
1343
|
-
XAF: "XAF";
|
|
1344
|
-
XCD: "XCD";
|
|
1345
|
-
XDR: "XDR";
|
|
1346
|
-
XOF: "XOF";
|
|
1347
|
-
XPF: "XPF";
|
|
1348
|
-
YER: "YER";
|
|
1349
|
-
ZAR: "ZAR";
|
|
1350
|
-
ZMW: "ZMW";
|
|
1351
|
-
ZWD: "ZWD";
|
|
1352
|
-
BTC: "BTC";
|
|
1353
|
-
}>>;
|
|
1354
|
-
creditAdj: z.ZodOptional<z.ZodNumber>;
|
|
1355
|
-
refundAdj: z.ZodOptional<z.ZodNumber>;
|
|
1356
|
-
invoiceDate: z.ZodOptional<z.ZodString>;
|
|
1357
|
-
targetDate: z.ZodOptional<z.ZodString>;
|
|
1358
|
-
invoiceNumber: z.ZodOptional<z.ZodString>;
|
|
1359
|
-
balance: z.ZodOptional<z.ZodNumber>;
|
|
1360
|
-
bundleKeys: z.ZodOptional<z.ZodString>;
|
|
1361
|
-
credits: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1362
|
-
id: z.ZodOptional<z.ZodUUID>;
|
|
1363
|
-
linkedInvoiceItemId: z.ZodOptional<z.ZodUUID>;
|
|
1364
|
-
productName: z.ZodOptional<z.ZodString>;
|
|
1365
|
-
planName: z.ZodOptional<z.ZodString>;
|
|
1366
|
-
phaseName: z.ZodOptional<z.ZodString>;
|
|
1367
|
-
usageName: z.ZodOptional<z.ZodString>;
|
|
1368
|
-
prettyProductName: z.ZodOptional<z.ZodString>;
|
|
1369
|
-
prettyPlanName: z.ZodOptional<z.ZodString>;
|
|
1370
|
-
prettyPhaseName: z.ZodOptional<z.ZodString>;
|
|
1371
|
-
prettyUsageName: z.ZodOptional<z.ZodString>;
|
|
1372
|
-
itemType: z.ZodOptional<z.ZodEnum<{
|
|
1373
|
-
EXTERNAL_CHARGE: "EXTERNAL_CHARGE";
|
|
1374
|
-
FIXED: "FIXED";
|
|
1375
|
-
RECURRING: "RECURRING";
|
|
1376
|
-
REPAIR_ADJ: "REPAIR_ADJ";
|
|
1377
|
-
CBA_ADJ: "CBA_ADJ";
|
|
1378
|
-
CREDIT_ADJ: "CREDIT_ADJ";
|
|
1379
|
-
ITEM_ADJ: "ITEM_ADJ";
|
|
1380
|
-
USAGE: "USAGE";
|
|
1381
|
-
TAX: "TAX";
|
|
1382
|
-
PARENT_SUMMARY: "PARENT_SUMMARY";
|
|
1383
|
-
}>>;
|
|
1384
|
-
description: z.ZodOptional<z.ZodString>;
|
|
1385
|
-
startDate: z.ZodOptional<z.ZodString>;
|
|
1386
|
-
endDate: z.ZodOptional<z.ZodString>;
|
|
1387
|
-
amount: z.ZodOptional<z.ZodNumber>;
|
|
1388
|
-
rate: z.ZodOptional<z.ZodNumber>;
|
|
1389
|
-
currency: z.ZodOptional<z.ZodEnum<{
|
|
1390
|
-
AED: "AED";
|
|
1391
|
-
AFN: "AFN";
|
|
1392
|
-
ALL: "ALL";
|
|
1393
|
-
AMD: "AMD";
|
|
1394
|
-
ANG: "ANG";
|
|
1395
|
-
AOA: "AOA";
|
|
1396
|
-
ARS: "ARS";
|
|
1397
|
-
AUD: "AUD";
|
|
1398
|
-
AWG: "AWG";
|
|
1399
|
-
AZN: "AZN";
|
|
1400
|
-
BAM: "BAM";
|
|
1401
|
-
BBD: "BBD";
|
|
1402
|
-
BDT: "BDT";
|
|
1403
|
-
BGN: "BGN";
|
|
1404
|
-
BHD: "BHD";
|
|
1405
|
-
BIF: "BIF";
|
|
1406
|
-
BMD: "BMD";
|
|
1407
|
-
BND: "BND";
|
|
1408
|
-
BOB: "BOB";
|
|
1409
|
-
BRL: "BRL";
|
|
1410
|
-
BSD: "BSD";
|
|
1411
|
-
BTN: "BTN";
|
|
1412
|
-
BWP: "BWP";
|
|
1413
|
-
BYR: "BYR";
|
|
1414
|
-
BZD: "BZD";
|
|
1415
|
-
CAD: "CAD";
|
|
1416
|
-
CDF: "CDF";
|
|
1417
|
-
CHF: "CHF";
|
|
1418
|
-
CLP: "CLP";
|
|
1419
|
-
CNY: "CNY";
|
|
1420
|
-
COP: "COP";
|
|
1421
|
-
CRC: "CRC";
|
|
1422
|
-
CUC: "CUC";
|
|
1423
|
-
CUP: "CUP";
|
|
1424
|
-
CVE: "CVE";
|
|
1425
|
-
CZK: "CZK";
|
|
1426
|
-
DJF: "DJF";
|
|
1427
|
-
DKK: "DKK";
|
|
1428
|
-
DOP: "DOP";
|
|
1429
|
-
DZD: "DZD";
|
|
1430
|
-
EGP: "EGP";
|
|
1431
|
-
ERN: "ERN";
|
|
1432
|
-
ETB: "ETB";
|
|
1433
|
-
EUR: "EUR";
|
|
1434
|
-
FJD: "FJD";
|
|
1435
|
-
FKP: "FKP";
|
|
1436
|
-
GBP: "GBP";
|
|
1437
|
-
GEL: "GEL";
|
|
1438
|
-
GGP: "GGP";
|
|
1439
|
-
GHS: "GHS";
|
|
1440
|
-
GIP: "GIP";
|
|
1441
|
-
GMD: "GMD";
|
|
1442
|
-
GNF: "GNF";
|
|
1443
|
-
GTQ: "GTQ";
|
|
1444
|
-
GYD: "GYD";
|
|
1445
|
-
HKD: "HKD";
|
|
1446
|
-
HNL: "HNL";
|
|
1447
|
-
HRK: "HRK";
|
|
1448
|
-
HTG: "HTG";
|
|
1449
|
-
HUF: "HUF";
|
|
1450
|
-
IDR: "IDR";
|
|
1451
|
-
ILS: "ILS";
|
|
1452
|
-
IMP: "IMP";
|
|
1453
|
-
INR: "INR";
|
|
1454
|
-
IQD: "IQD";
|
|
1455
|
-
IRR: "IRR";
|
|
1456
|
-
ISK: "ISK";
|
|
1457
|
-
JEP: "JEP";
|
|
1458
|
-
JMD: "JMD";
|
|
1459
|
-
JOD: "JOD";
|
|
1460
|
-
JPY: "JPY";
|
|
1461
|
-
KES: "KES";
|
|
1462
|
-
KGS: "KGS";
|
|
1463
|
-
KHR: "KHR";
|
|
1464
|
-
KMF: "KMF";
|
|
1465
|
-
KPW: "KPW";
|
|
1466
|
-
KRW: "KRW";
|
|
1467
|
-
KWD: "KWD";
|
|
1468
|
-
KYD: "KYD";
|
|
1469
|
-
KZT: "KZT";
|
|
1470
|
-
LAK: "LAK";
|
|
1471
|
-
LBP: "LBP";
|
|
1472
|
-
LKR: "LKR";
|
|
1473
|
-
LRD: "LRD";
|
|
1474
|
-
LSL: "LSL";
|
|
1475
|
-
LTL: "LTL";
|
|
1476
|
-
LVL: "LVL";
|
|
1477
|
-
LYD: "LYD";
|
|
1478
|
-
MAD: "MAD";
|
|
1479
|
-
MDL: "MDL";
|
|
1480
|
-
MGA: "MGA";
|
|
1481
|
-
MKD: "MKD";
|
|
1482
|
-
MMK: "MMK";
|
|
1483
|
-
MNT: "MNT";
|
|
1484
|
-
MOP: "MOP";
|
|
1485
|
-
MRO: "MRO";
|
|
1486
|
-
MUR: "MUR";
|
|
1487
|
-
MVR: "MVR";
|
|
1488
|
-
MWK: "MWK";
|
|
1489
|
-
MXN: "MXN";
|
|
1490
|
-
MYR: "MYR";
|
|
1491
|
-
MZN: "MZN";
|
|
1492
|
-
NAD: "NAD";
|
|
1493
|
-
NGN: "NGN";
|
|
1494
|
-
NIO: "NIO";
|
|
1495
|
-
NOK: "NOK";
|
|
1496
|
-
NPR: "NPR";
|
|
1497
|
-
NZD: "NZD";
|
|
1498
|
-
OMR: "OMR";
|
|
1499
|
-
PAB: "PAB";
|
|
1500
|
-
PEN: "PEN";
|
|
1501
|
-
PGK: "PGK";
|
|
1502
|
-
PHP: "PHP";
|
|
1503
|
-
PKR: "PKR";
|
|
1504
|
-
PLN: "PLN";
|
|
1505
|
-
PYG: "PYG";
|
|
1506
|
-
QAR: "QAR";
|
|
1507
|
-
RON: "RON";
|
|
1508
|
-
RSD: "RSD";
|
|
1509
|
-
RUB: "RUB";
|
|
1510
|
-
RWF: "RWF";
|
|
1511
|
-
SAR: "SAR";
|
|
1512
|
-
SBD: "SBD";
|
|
1513
|
-
SCR: "SCR";
|
|
1514
|
-
SDG: "SDG";
|
|
1515
|
-
SEK: "SEK";
|
|
1516
|
-
SGD: "SGD";
|
|
1517
|
-
SHP: "SHP";
|
|
1518
|
-
SLL: "SLL";
|
|
1519
|
-
SOS: "SOS";
|
|
1520
|
-
SPL: "SPL";
|
|
1521
|
-
SRD: "SRD";
|
|
1522
|
-
STD: "STD";
|
|
1523
|
-
SVC: "SVC";
|
|
1524
|
-
SYP: "SYP";
|
|
1525
|
-
SZL: "SZL";
|
|
1526
|
-
THB: "THB";
|
|
1527
|
-
TJS: "TJS";
|
|
1528
|
-
TMT: "TMT";
|
|
1529
|
-
TND: "TND";
|
|
1530
|
-
TOP: "TOP";
|
|
1531
|
-
TRY: "TRY";
|
|
1532
|
-
TTD: "TTD";
|
|
1533
|
-
TVD: "TVD";
|
|
1534
|
-
TWD: "TWD";
|
|
1535
|
-
TZS: "TZS";
|
|
1536
|
-
UAH: "UAH";
|
|
1537
|
-
UGX: "UGX";
|
|
1538
|
-
USD: "USD";
|
|
1539
|
-
UYU: "UYU";
|
|
1540
|
-
UZS: "UZS";
|
|
1541
|
-
VEF: "VEF";
|
|
1542
|
-
VND: "VND";
|
|
1543
|
-
VUV: "VUV";
|
|
1544
|
-
WST: "WST";
|
|
1545
|
-
XAF: "XAF";
|
|
1546
|
-
XCD: "XCD";
|
|
1547
|
-
XDR: "XDR";
|
|
1548
|
-
XOF: "XOF";
|
|
1549
|
-
XPF: "XPF";
|
|
1550
|
-
YER: "YER";
|
|
1551
|
-
ZAR: "ZAR";
|
|
1552
|
-
ZMW: "ZMW";
|
|
1553
|
-
ZWD: "ZWD";
|
|
1554
|
-
BTC: "BTC";
|
|
1555
|
-
}>>;
|
|
1556
|
-
quantity: z.ZodOptional<z.ZodNumber>;
|
|
1557
|
-
itemDetails: z.ZodOptional<z.ZodString>;
|
|
1558
|
-
catalogEffectiveDate: z.ZodOptional<z.ZodString>;
|
|
1559
|
-
childItems: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodArray<z.ZodUnknown>, z.ZodBoolean, z.ZodNumber, z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodString]>>>;
|
|
1560
|
-
}, z.core.$strip>>>;
|
|
1561
|
-
items: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1562
|
-
id: z.ZodOptional<z.ZodUUID>;
|
|
1563
|
-
linkedInvoiceItemId: z.ZodOptional<z.ZodUUID>;
|
|
1564
|
-
productName: z.ZodOptional<z.ZodString>;
|
|
1565
|
-
planName: z.ZodOptional<z.ZodString>;
|
|
1566
|
-
phaseName: z.ZodOptional<z.ZodString>;
|
|
1567
|
-
usageName: z.ZodOptional<z.ZodString>;
|
|
1568
|
-
prettyProductName: z.ZodOptional<z.ZodString>;
|
|
1569
|
-
prettyPlanName: z.ZodOptional<z.ZodString>;
|
|
1570
|
-
prettyPhaseName: z.ZodOptional<z.ZodString>;
|
|
1571
|
-
prettyUsageName: z.ZodOptional<z.ZodString>;
|
|
1572
|
-
itemType: z.ZodOptional<z.ZodEnum<{
|
|
1573
|
-
EXTERNAL_CHARGE: "EXTERNAL_CHARGE";
|
|
1574
|
-
FIXED: "FIXED";
|
|
1575
|
-
RECURRING: "RECURRING";
|
|
1576
|
-
REPAIR_ADJ: "REPAIR_ADJ";
|
|
1577
|
-
CBA_ADJ: "CBA_ADJ";
|
|
1578
|
-
CREDIT_ADJ: "CREDIT_ADJ";
|
|
1579
|
-
ITEM_ADJ: "ITEM_ADJ";
|
|
1580
|
-
USAGE: "USAGE";
|
|
1581
|
-
TAX: "TAX";
|
|
1582
|
-
PARENT_SUMMARY: "PARENT_SUMMARY";
|
|
1583
|
-
}>>;
|
|
1584
|
-
description: z.ZodOptional<z.ZodString>;
|
|
1585
|
-
startDate: z.ZodOptional<z.ZodString>;
|
|
1586
|
-
endDate: z.ZodOptional<z.ZodString>;
|
|
1587
|
-
amount: z.ZodOptional<z.ZodNumber>;
|
|
1588
|
-
rate: z.ZodOptional<z.ZodNumber>;
|
|
1589
|
-
currency: z.ZodOptional<z.ZodEnum<{
|
|
1590
|
-
AED: "AED";
|
|
1591
|
-
AFN: "AFN";
|
|
1592
|
-
ALL: "ALL";
|
|
1593
|
-
AMD: "AMD";
|
|
1594
|
-
ANG: "ANG";
|
|
1595
|
-
AOA: "AOA";
|
|
1596
|
-
ARS: "ARS";
|
|
1597
|
-
AUD: "AUD";
|
|
1598
|
-
AWG: "AWG";
|
|
1599
|
-
AZN: "AZN";
|
|
1600
|
-
BAM: "BAM";
|
|
1601
|
-
BBD: "BBD";
|
|
1602
|
-
BDT: "BDT";
|
|
1603
|
-
BGN: "BGN";
|
|
1604
|
-
BHD: "BHD";
|
|
1605
|
-
BIF: "BIF";
|
|
1606
|
-
BMD: "BMD";
|
|
1607
|
-
BND: "BND";
|
|
1608
|
-
BOB: "BOB";
|
|
1609
|
-
BRL: "BRL";
|
|
1610
|
-
BSD: "BSD";
|
|
1611
|
-
BTN: "BTN";
|
|
1612
|
-
BWP: "BWP";
|
|
1613
|
-
BYR: "BYR";
|
|
1614
|
-
BZD: "BZD";
|
|
1615
|
-
CAD: "CAD";
|
|
1616
|
-
CDF: "CDF";
|
|
1617
|
-
CHF: "CHF";
|
|
1618
|
-
CLP: "CLP";
|
|
1619
|
-
CNY: "CNY";
|
|
1620
|
-
COP: "COP";
|
|
1621
|
-
CRC: "CRC";
|
|
1622
|
-
CUC: "CUC";
|
|
1623
|
-
CUP: "CUP";
|
|
1624
|
-
CVE: "CVE";
|
|
1625
|
-
CZK: "CZK";
|
|
1626
|
-
DJF: "DJF";
|
|
1627
|
-
DKK: "DKK";
|
|
1628
|
-
DOP: "DOP";
|
|
1629
|
-
DZD: "DZD";
|
|
1630
|
-
EGP: "EGP";
|
|
1631
|
-
ERN: "ERN";
|
|
1632
|
-
ETB: "ETB";
|
|
1633
|
-
EUR: "EUR";
|
|
1634
|
-
FJD: "FJD";
|
|
1635
|
-
FKP: "FKP";
|
|
1636
|
-
GBP: "GBP";
|
|
1637
|
-
GEL: "GEL";
|
|
1638
|
-
GGP: "GGP";
|
|
1639
|
-
GHS: "GHS";
|
|
1640
|
-
GIP: "GIP";
|
|
1641
|
-
GMD: "GMD";
|
|
1642
|
-
GNF: "GNF";
|
|
1643
|
-
GTQ: "GTQ";
|
|
1644
|
-
GYD: "GYD";
|
|
1645
|
-
HKD: "HKD";
|
|
1646
|
-
HNL: "HNL";
|
|
1647
|
-
HRK: "HRK";
|
|
1648
|
-
HTG: "HTG";
|
|
1649
|
-
HUF: "HUF";
|
|
1650
|
-
IDR: "IDR";
|
|
1651
|
-
ILS: "ILS";
|
|
1652
|
-
IMP: "IMP";
|
|
1653
|
-
INR: "INR";
|
|
1654
|
-
IQD: "IQD";
|
|
1655
|
-
IRR: "IRR";
|
|
1656
|
-
ISK: "ISK";
|
|
1657
|
-
JEP: "JEP";
|
|
1658
|
-
JMD: "JMD";
|
|
1659
|
-
JOD: "JOD";
|
|
1660
|
-
JPY: "JPY";
|
|
1661
|
-
KES: "KES";
|
|
1662
|
-
KGS: "KGS";
|
|
1663
|
-
KHR: "KHR";
|
|
1664
|
-
KMF: "KMF";
|
|
1665
|
-
KPW: "KPW";
|
|
1666
|
-
KRW: "KRW";
|
|
1667
|
-
KWD: "KWD";
|
|
1668
|
-
KYD: "KYD";
|
|
1669
|
-
KZT: "KZT";
|
|
1670
|
-
LAK: "LAK";
|
|
1671
|
-
LBP: "LBP";
|
|
1672
|
-
LKR: "LKR";
|
|
1673
|
-
LRD: "LRD";
|
|
1674
|
-
LSL: "LSL";
|
|
1675
|
-
LTL: "LTL";
|
|
1676
|
-
LVL: "LVL";
|
|
1677
|
-
LYD: "LYD";
|
|
1678
|
-
MAD: "MAD";
|
|
1679
|
-
MDL: "MDL";
|
|
1680
|
-
MGA: "MGA";
|
|
1681
|
-
MKD: "MKD";
|
|
1682
|
-
MMK: "MMK";
|
|
1683
|
-
MNT: "MNT";
|
|
1684
|
-
MOP: "MOP";
|
|
1685
|
-
MRO: "MRO";
|
|
1686
|
-
MUR: "MUR";
|
|
1687
|
-
MVR: "MVR";
|
|
1688
|
-
MWK: "MWK";
|
|
1689
|
-
MXN: "MXN";
|
|
1690
|
-
MYR: "MYR";
|
|
1691
|
-
MZN: "MZN";
|
|
1692
|
-
NAD: "NAD";
|
|
1693
|
-
NGN: "NGN";
|
|
1694
|
-
NIO: "NIO";
|
|
1695
|
-
NOK: "NOK";
|
|
1696
|
-
NPR: "NPR";
|
|
1697
|
-
NZD: "NZD";
|
|
1698
|
-
OMR: "OMR";
|
|
1699
|
-
PAB: "PAB";
|
|
1700
|
-
PEN: "PEN";
|
|
1701
|
-
PGK: "PGK";
|
|
1702
|
-
PHP: "PHP";
|
|
1703
|
-
PKR: "PKR";
|
|
1704
|
-
PLN: "PLN";
|
|
1705
|
-
PYG: "PYG";
|
|
1706
|
-
QAR: "QAR";
|
|
1707
|
-
RON: "RON";
|
|
1708
|
-
RSD: "RSD";
|
|
1709
|
-
RUB: "RUB";
|
|
1710
|
-
RWF: "RWF";
|
|
1711
|
-
SAR: "SAR";
|
|
1712
|
-
SBD: "SBD";
|
|
1713
|
-
SCR: "SCR";
|
|
1714
|
-
SDG: "SDG";
|
|
1715
|
-
SEK: "SEK";
|
|
1716
|
-
SGD: "SGD";
|
|
1717
|
-
SHP: "SHP";
|
|
1718
|
-
SLL: "SLL";
|
|
1719
|
-
SOS: "SOS";
|
|
1720
|
-
SPL: "SPL";
|
|
1721
|
-
SRD: "SRD";
|
|
1722
|
-
STD: "STD";
|
|
1723
|
-
SVC: "SVC";
|
|
1724
|
-
SYP: "SYP";
|
|
1725
|
-
SZL: "SZL";
|
|
1726
|
-
THB: "THB";
|
|
1727
|
-
TJS: "TJS";
|
|
1728
|
-
TMT: "TMT";
|
|
1729
|
-
TND: "TND";
|
|
1730
|
-
TOP: "TOP";
|
|
1731
|
-
TRY: "TRY";
|
|
1732
|
-
TTD: "TTD";
|
|
1733
|
-
TVD: "TVD";
|
|
1734
|
-
TWD: "TWD";
|
|
1735
|
-
TZS: "TZS";
|
|
1736
|
-
UAH: "UAH";
|
|
1737
|
-
UGX: "UGX";
|
|
1738
|
-
USD: "USD";
|
|
1739
|
-
UYU: "UYU";
|
|
1740
|
-
UZS: "UZS";
|
|
1741
|
-
VEF: "VEF";
|
|
1742
|
-
VND: "VND";
|
|
1743
|
-
VUV: "VUV";
|
|
1744
|
-
WST: "WST";
|
|
1745
|
-
XAF: "XAF";
|
|
1746
|
-
XCD: "XCD";
|
|
1747
|
-
XDR: "XDR";
|
|
1748
|
-
XOF: "XOF";
|
|
1749
|
-
XPF: "XPF";
|
|
1750
|
-
YER: "YER";
|
|
1751
|
-
ZAR: "ZAR";
|
|
1752
|
-
ZMW: "ZMW";
|
|
1753
|
-
ZWD: "ZWD";
|
|
1754
|
-
BTC: "BTC";
|
|
1755
|
-
}>>;
|
|
1756
|
-
quantity: z.ZodOptional<z.ZodNumber>;
|
|
1757
|
-
itemDetails: z.ZodOptional<z.ZodString>;
|
|
1758
|
-
catalogEffectiveDate: z.ZodOptional<z.ZodString>;
|
|
1759
|
-
childItems: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodArray<z.ZodUnknown>, z.ZodBoolean, z.ZodNumber, z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodString]>>>;
|
|
1760
|
-
}, z.core.$strip>>>;
|
|
634
|
+
id: z.ZodOptional<z.ZodString>;
|
|
635
|
+
number: z.ZodOptional<z.ZodString>;
|
|
636
|
+
status: z.ZodOptional<z.ZodString>;
|
|
637
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
638
|
+
currency: z.ZodOptional<z.ZodString>;
|
|
639
|
+
created: z.ZodISODateTime;
|
|
640
|
+
period_start: z.ZodISODateTime;
|
|
641
|
+
period_end: z.ZodISODateTime;
|
|
642
|
+
invoice_pdf: z.ZodOptional<z.ZodString>;
|
|
1761
643
|
}, z.core.$strip>>;
|
|
1762
|
-
export declare const zGetInvoiceData: z.ZodObject<{
|
|
1763
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
1764
|
-
path: z.ZodObject<{
|
|
1765
|
-
id: z.ZodString;
|
|
1766
|
-
}, z.core.$strip>;
|
|
1767
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1768
|
-
}, z.core.$strip>;
|
|
1769
|
-
/**
|
|
1770
|
-
* Returns a single Invoice HTML representation under `html` property.
|
|
1771
|
-
*/
|
|
1772
|
-
export declare const zGetInvoiceResponse: z.ZodObject<{
|
|
1773
|
-
html: z.ZodOptional<z.ZodString>;
|
|
1774
|
-
}, z.core.$strip>;
|
|
1775
|
-
export declare const zGetContactData: z.ZodObject<{
|
|
1776
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
1777
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1778
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1779
|
-
}, z.core.$strip>;
|
|
1780
644
|
/**
|
|
1781
645
|
* Returns a single object containing organization contact and billing address details.
|
|
1782
646
|
*/
|
|
@@ -1790,8 +654,7 @@ export declare const zGetContactResponse: z.ZodObject<{
|
|
|
1790
654
|
country: z.ZodOptional<z.ZodString>;
|
|
1791
655
|
phone: z.ZodOptional<z.ZodString>;
|
|
1792
656
|
email: z.ZodEmail;
|
|
1793
|
-
|
|
1794
|
-
last_name: z.ZodString;
|
|
657
|
+
individual_name: z.ZodString;
|
|
1795
658
|
tax_id: z.ZodOptional<z.ZodString>;
|
|
1796
659
|
tax_id_type: z.ZodOptional<z.ZodEnum<{
|
|
1797
660
|
"": "";
|
|
@@ -1924,153 +787,148 @@ export declare const zGetContactResponse: z.ZodObject<{
|
|
|
1924
787
|
zw_tin: "zw_tin";
|
|
1925
788
|
}>>;
|
|
1926
789
|
}, z.core.$strip>;
|
|
1927
|
-
export declare const
|
|
1928
|
-
|
|
1929
|
-
|
|
1930
|
-
|
|
1931
|
-
|
|
1932
|
-
|
|
1933
|
-
|
|
1934
|
-
|
|
1935
|
-
|
|
1936
|
-
|
|
1937
|
-
|
|
1938
|
-
|
|
1939
|
-
|
|
1940
|
-
|
|
1941
|
-
|
|
1942
|
-
|
|
1943
|
-
|
|
1944
|
-
|
|
1945
|
-
|
|
1946
|
-
|
|
1947
|
-
|
|
1948
|
-
|
|
1949
|
-
|
|
1950
|
-
|
|
1951
|
-
|
|
1952
|
-
|
|
1953
|
-
|
|
1954
|
-
|
|
1955
|
-
|
|
1956
|
-
|
|
1957
|
-
|
|
1958
|
-
|
|
1959
|
-
|
|
1960
|
-
|
|
1961
|
-
|
|
1962
|
-
|
|
1963
|
-
|
|
1964
|
-
|
|
1965
|
-
|
|
1966
|
-
|
|
1967
|
-
|
|
1968
|
-
|
|
1969
|
-
|
|
1970
|
-
|
|
1971
|
-
|
|
1972
|
-
|
|
1973
|
-
|
|
1974
|
-
|
|
1975
|
-
|
|
1976
|
-
|
|
1977
|
-
|
|
1978
|
-
|
|
1979
|
-
|
|
1980
|
-
|
|
1981
|
-
|
|
1982
|
-
|
|
1983
|
-
|
|
1984
|
-
|
|
1985
|
-
|
|
1986
|
-
|
|
1987
|
-
|
|
1988
|
-
|
|
1989
|
-
|
|
1990
|
-
|
|
1991
|
-
|
|
1992
|
-
|
|
1993
|
-
|
|
1994
|
-
|
|
1995
|
-
|
|
1996
|
-
|
|
1997
|
-
|
|
1998
|
-
|
|
1999
|
-
|
|
2000
|
-
|
|
2001
|
-
|
|
2002
|
-
|
|
2003
|
-
|
|
2004
|
-
|
|
2005
|
-
|
|
2006
|
-
|
|
2007
|
-
|
|
2008
|
-
|
|
2009
|
-
|
|
2010
|
-
|
|
2011
|
-
|
|
2012
|
-
|
|
2013
|
-
|
|
2014
|
-
|
|
2015
|
-
|
|
2016
|
-
|
|
2017
|
-
|
|
2018
|
-
|
|
2019
|
-
|
|
2020
|
-
|
|
2021
|
-
|
|
2022
|
-
|
|
2023
|
-
|
|
2024
|
-
|
|
2025
|
-
|
|
2026
|
-
|
|
2027
|
-
|
|
2028
|
-
|
|
2029
|
-
|
|
2030
|
-
|
|
2031
|
-
|
|
2032
|
-
|
|
2033
|
-
|
|
2034
|
-
|
|
2035
|
-
|
|
2036
|
-
|
|
2037
|
-
|
|
2038
|
-
|
|
2039
|
-
|
|
2040
|
-
|
|
2041
|
-
|
|
2042
|
-
|
|
2043
|
-
|
|
2044
|
-
|
|
2045
|
-
|
|
2046
|
-
|
|
2047
|
-
|
|
2048
|
-
|
|
2049
|
-
|
|
2050
|
-
|
|
2051
|
-
|
|
2052
|
-
|
|
2053
|
-
|
|
2054
|
-
|
|
2055
|
-
|
|
2056
|
-
|
|
2057
|
-
|
|
2058
|
-
|
|
2059
|
-
|
|
2060
|
-
|
|
2061
|
-
|
|
2062
|
-
|
|
2063
|
-
|
|
2064
|
-
|
|
2065
|
-
|
|
2066
|
-
|
|
2067
|
-
|
|
2068
|
-
|
|
2069
|
-
zw_tin: "zw_tin";
|
|
2070
|
-
}>>;
|
|
2071
|
-
}, z.core.$strip>;
|
|
2072
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
2073
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
790
|
+
export declare const zUpdateContactBody: z.ZodObject<{
|
|
791
|
+
company: z.ZodOptional<z.ZodString>;
|
|
792
|
+
address1: z.ZodOptional<z.ZodString>;
|
|
793
|
+
address2: z.ZodOptional<z.ZodString>;
|
|
794
|
+
postalCode: z.ZodOptional<z.ZodString>;
|
|
795
|
+
city: z.ZodOptional<z.ZodString>;
|
|
796
|
+
state: z.ZodOptional<z.ZodString>;
|
|
797
|
+
country: z.ZodOptional<z.ZodString>;
|
|
798
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
799
|
+
email: z.ZodEmail;
|
|
800
|
+
individual_name: z.ZodString;
|
|
801
|
+
tax_id: z.ZodOptional<z.ZodString>;
|
|
802
|
+
tax_id_type: z.ZodOptional<z.ZodEnum<{
|
|
803
|
+
"": "";
|
|
804
|
+
ad_nrt: "ad_nrt";
|
|
805
|
+
ae_trn: "ae_trn";
|
|
806
|
+
al_tin: "al_tin";
|
|
807
|
+
am_tin: "am_tin";
|
|
808
|
+
ao_tin: "ao_tin";
|
|
809
|
+
ar_cuit: "ar_cuit";
|
|
810
|
+
at_vat: "at_vat";
|
|
811
|
+
au_abn: "au_abn";
|
|
812
|
+
au_arn: "au_arn";
|
|
813
|
+
ba_tin: "ba_tin";
|
|
814
|
+
bb_tin: "bb_tin";
|
|
815
|
+
be_vat: "be_vat";
|
|
816
|
+
bg_uic: "bg_uic";
|
|
817
|
+
bg_vat: "bg_vat";
|
|
818
|
+
bh_vat: "bh_vat";
|
|
819
|
+
bo_tin: "bo_tin";
|
|
820
|
+
br_cnpj: "br_cnpj";
|
|
821
|
+
br_cpf: "br_cpf";
|
|
822
|
+
bs_tin: "bs_tin";
|
|
823
|
+
by_tin: "by_tin";
|
|
824
|
+
ca_bn: "ca_bn";
|
|
825
|
+
ca_gst_hst: "ca_gst_hst";
|
|
826
|
+
ca_pst_bc: "ca_pst_bc";
|
|
827
|
+
ca_pst_mb: "ca_pst_mb";
|
|
828
|
+
ca_pst_sk: "ca_pst_sk";
|
|
829
|
+
ca_qst: "ca_qst";
|
|
830
|
+
cd_nif: "cd_nif";
|
|
831
|
+
ch_uid: "ch_uid";
|
|
832
|
+
ch_vat: "ch_vat";
|
|
833
|
+
cl_tin: "cl_tin";
|
|
834
|
+
cn_tin: "cn_tin";
|
|
835
|
+
co_nit: "co_nit";
|
|
836
|
+
cr_tin: "cr_tin";
|
|
837
|
+
cy_vat: "cy_vat";
|
|
838
|
+
cz_vat: "cz_vat";
|
|
839
|
+
de_stn: "de_stn";
|
|
840
|
+
de_vat: "de_vat";
|
|
841
|
+
dk_vat: "dk_vat";
|
|
842
|
+
do_rcn: "do_rcn";
|
|
843
|
+
ec_ruc: "ec_ruc";
|
|
844
|
+
ee_vat: "ee_vat";
|
|
845
|
+
eg_tin: "eg_tin";
|
|
846
|
+
es_cif: "es_cif";
|
|
847
|
+
es_vat: "es_vat";
|
|
848
|
+
eu_oss_vat: "eu_oss_vat";
|
|
849
|
+
fi_vat: "fi_vat";
|
|
850
|
+
fr_vat: "fr_vat";
|
|
851
|
+
gb_vat: "gb_vat";
|
|
852
|
+
ge_vat: "ge_vat";
|
|
853
|
+
gn_nif: "gn_nif";
|
|
854
|
+
gr_vat: "gr_vat";
|
|
855
|
+
hk_br: "hk_br";
|
|
856
|
+
hr_oib: "hr_oib";
|
|
857
|
+
hr_vat: "hr_vat";
|
|
858
|
+
hu_tin: "hu_tin";
|
|
859
|
+
hu_vat: "hu_vat";
|
|
860
|
+
id_npwp: "id_npwp";
|
|
861
|
+
ie_vat: "ie_vat";
|
|
862
|
+
il_vat: "il_vat";
|
|
863
|
+
in_gst: "in_gst";
|
|
864
|
+
is_vat: "is_vat";
|
|
865
|
+
it_vat: "it_vat";
|
|
866
|
+
jp_cn: "jp_cn";
|
|
867
|
+
jp_rn: "jp_rn";
|
|
868
|
+
jp_trn: "jp_trn";
|
|
869
|
+
ke_pin: "ke_pin";
|
|
870
|
+
kh_tin: "kh_tin";
|
|
871
|
+
kr_brn: "kr_brn";
|
|
872
|
+
kz_bin: "kz_bin";
|
|
873
|
+
li_uid: "li_uid";
|
|
874
|
+
li_vat: "li_vat";
|
|
875
|
+
lt_vat: "lt_vat";
|
|
876
|
+
lu_vat: "lu_vat";
|
|
877
|
+
lv_vat: "lv_vat";
|
|
878
|
+
ma_vat: "ma_vat";
|
|
879
|
+
md_vat: "md_vat";
|
|
880
|
+
me_pib: "me_pib";
|
|
881
|
+
mk_vat: "mk_vat";
|
|
882
|
+
mr_nif: "mr_nif";
|
|
883
|
+
mt_vat: "mt_vat";
|
|
884
|
+
mx_rfc: "mx_rfc";
|
|
885
|
+
my_frp: "my_frp";
|
|
886
|
+
my_itn: "my_itn";
|
|
887
|
+
my_sst: "my_sst";
|
|
888
|
+
ng_tin: "ng_tin";
|
|
889
|
+
nl_vat: "nl_vat";
|
|
890
|
+
no_vat: "no_vat";
|
|
891
|
+
no_voec: "no_voec";
|
|
892
|
+
np_pan: "np_pan";
|
|
893
|
+
nz_gst: "nz_gst";
|
|
894
|
+
om_vat: "om_vat";
|
|
895
|
+
pe_ruc: "pe_ruc";
|
|
896
|
+
ph_tin: "ph_tin";
|
|
897
|
+
pl_vat: "pl_vat";
|
|
898
|
+
pt_vat: "pt_vat";
|
|
899
|
+
ro_tin: "ro_tin";
|
|
900
|
+
ro_vat: "ro_vat";
|
|
901
|
+
rs_pib: "rs_pib";
|
|
902
|
+
ru_inn: "ru_inn";
|
|
903
|
+
ru_kpp: "ru_kpp";
|
|
904
|
+
sa_vat: "sa_vat";
|
|
905
|
+
se_vat: "se_vat";
|
|
906
|
+
sg_gst: "sg_gst";
|
|
907
|
+
sg_uen: "sg_uen";
|
|
908
|
+
si_tin: "si_tin";
|
|
909
|
+
si_vat: "si_vat";
|
|
910
|
+
sk_vat: "sk_vat";
|
|
911
|
+
sn_ninea: "sn_ninea";
|
|
912
|
+
sr_fin: "sr_fin";
|
|
913
|
+
sv_nit: "sv_nit";
|
|
914
|
+
th_vat: "th_vat";
|
|
915
|
+
tj_tin: "tj_tin";
|
|
916
|
+
tr_tin: "tr_tin";
|
|
917
|
+
tw_vat: "tw_vat";
|
|
918
|
+
tz_vat: "tz_vat";
|
|
919
|
+
ua_vat: "ua_vat";
|
|
920
|
+
ug_tin: "ug_tin";
|
|
921
|
+
us_ein: "us_ein";
|
|
922
|
+
uy_ruc: "uy_ruc";
|
|
923
|
+
uz_tin: "uz_tin";
|
|
924
|
+
uz_vat: "uz_vat";
|
|
925
|
+
ve_rif: "ve_rif";
|
|
926
|
+
vn_tin: "vn_tin";
|
|
927
|
+
xi_vat: "xi_vat";
|
|
928
|
+
za_vat: "za_vat";
|
|
929
|
+
zm_tin: "zm_tin";
|
|
930
|
+
zw_tin: "zw_tin";
|
|
931
|
+
}>>;
|
|
2074
932
|
}, z.core.$strip>;
|
|
2075
933
|
/**
|
|
2076
934
|
* Successfully updated. Returns updated organization details.
|
|
@@ -2085,8 +943,7 @@ export declare const zUpdateContactResponse: z.ZodObject<{
|
|
|
2085
943
|
country: z.ZodOptional<z.ZodString>;
|
|
2086
944
|
phone: z.ZodOptional<z.ZodString>;
|
|
2087
945
|
email: z.ZodEmail;
|
|
2088
|
-
|
|
2089
|
-
last_name: z.ZodString;
|
|
946
|
+
individual_name: z.ZodString;
|
|
2090
947
|
tax_id: z.ZodOptional<z.ZodString>;
|
|
2091
948
|
tax_id_type: z.ZodOptional<z.ZodEnum<{
|
|
2092
949
|
"": "";
|
|
@@ -2219,41 +1076,27 @@ export declare const zUpdateContactResponse: z.ZodObject<{
|
|
|
2219
1076
|
zw_tin: "zw_tin";
|
|
2220
1077
|
}>>;
|
|
2221
1078
|
}, z.core.$strip>;
|
|
2222
|
-
export declare const zGetCreditsData: z.ZodObject<{
|
|
2223
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
2224
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
2225
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
2226
|
-
}, z.core.$strip>;
|
|
2227
1079
|
/**
|
|
2228
1080
|
* An array of the applied promotional credits records.
|
|
2229
1081
|
*/
|
|
2230
1082
|
export declare const zGetCreditsResponse: z.ZodArray<z.ZodObject<{
|
|
2231
1083
|
id: z.ZodOptional<z.ZodString>;
|
|
2232
|
-
date_created: z.ZodISODateTime;
|
|
2233
|
-
code: z.ZodString;
|
|
2234
|
-
description: z.ZodOptional<z.ZodString>;
|
|
2235
|
-
products: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2236
1084
|
type: z.ZodEnum<{
|
|
2237
1085
|
credit: "credit";
|
|
2238
1086
|
discount: "discount";
|
|
2239
1087
|
}>;
|
|
2240
|
-
|
|
2241
|
-
|
|
1088
|
+
date_start: z.ZodISODateTime;
|
|
1089
|
+
date_end: z.ZodOptional<z.ZodISODateTime>;
|
|
1090
|
+
code: z.ZodString;
|
|
1091
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1092
|
+
value_total: z.ZodNumber;
|
|
2242
1093
|
value_remaining: z.ZodOptional<z.ZodNumber>;
|
|
2243
1094
|
}, z.core.$strip>>;
|
|
2244
|
-
export declare const
|
|
2245
|
-
|
|
2246
|
-
code: z.ZodOptional<z.ZodString>;
|
|
2247
|
-
}, z.core.$strip>;
|
|
2248
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
2249
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1095
|
+
export declare const zRedeemCreditsBody: z.ZodObject<{
|
|
1096
|
+
code: z.ZodOptional<z.ZodString>;
|
|
2250
1097
|
}, z.core.$strip>;
|
|
2251
|
-
export declare const
|
|
2252
|
-
|
|
2253
|
-
path: z.ZodObject<{
|
|
2254
|
-
cluster_id: z.ZodString;
|
|
2255
|
-
}, z.core.$strip>;
|
|
2256
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1098
|
+
export declare const zListChartsPath: z.ZodObject<{
|
|
1099
|
+
cluster_id: z.ZodString;
|
|
2257
1100
|
}, z.core.$strip>;
|
|
2258
1101
|
/**
|
|
2259
1102
|
* An array of charts
|
|
@@ -2285,42 +1128,31 @@ export declare const zListChartsResponse: z.ZodArray<z.ZodObject<{
|
|
|
2285
1128
|
updated_at: z.ZodString;
|
|
2286
1129
|
ready: z.ZodBoolean;
|
|
2287
1130
|
}, z.core.$strip>>;
|
|
2288
|
-
export declare const
|
|
2289
|
-
|
|
2290
|
-
|
|
2291
|
-
|
|
2292
|
-
|
|
2293
|
-
|
|
2294
|
-
|
|
2295
|
-
|
|
2296
|
-
|
|
2297
|
-
cluster_id: z.ZodString;
|
|
2298
|
-
}, z.core.$strip>;
|
|
2299
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1131
|
+
export declare const zCreateChartBody: z.ZodObject<{
|
|
1132
|
+
values: z.ZodString;
|
|
1133
|
+
version_channel: z.ZodString;
|
|
1134
|
+
name: z.ZodString;
|
|
1135
|
+
namespace: z.ZodString;
|
|
1136
|
+
chart: z.ZodString;
|
|
1137
|
+
}, z.core.$strip>;
|
|
1138
|
+
export declare const zCreateChartPath: z.ZodObject<{
|
|
1139
|
+
cluster_id: z.ZodString;
|
|
2300
1140
|
}, z.core.$strip>;
|
|
2301
1141
|
/**
|
|
2302
1142
|
* Successfully created. Returns created Chart ID.
|
|
2303
1143
|
*/
|
|
2304
1144
|
export declare const zCreateChartResponse: z.ZodString;
|
|
2305
|
-
export declare const
|
|
2306
|
-
|
|
2307
|
-
|
|
2308
|
-
cluster_id: z.ZodString;
|
|
2309
|
-
chart_name: z.ZodString;
|
|
2310
|
-
}, z.core.$strip>;
|
|
2311
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1145
|
+
export declare const zDeleteChartPath: z.ZodObject<{
|
|
1146
|
+
cluster_id: z.ZodString;
|
|
1147
|
+
chart_name: z.ZodString;
|
|
2312
1148
|
}, z.core.$strip>;
|
|
2313
1149
|
/**
|
|
2314
1150
|
* Successfully deleted.
|
|
2315
1151
|
*/
|
|
2316
1152
|
export declare const zDeleteChartResponse: z.ZodString;
|
|
2317
|
-
export declare const
|
|
2318
|
-
|
|
2319
|
-
|
|
2320
|
-
cluster_id: z.ZodString;
|
|
2321
|
-
chart_name: z.ZodString;
|
|
2322
|
-
}, z.core.$strip>;
|
|
2323
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1153
|
+
export declare const zGetChartPath: z.ZodObject<{
|
|
1154
|
+
cluster_id: z.ZodString;
|
|
1155
|
+
chart_name: z.ZodString;
|
|
2324
1156
|
}, z.core.$strip>;
|
|
2325
1157
|
/**
|
|
2326
1158
|
* Returns a single object containing chart details.
|
|
@@ -2352,27 +1184,20 @@ export declare const zGetChartResponse: z.ZodObject<{
|
|
|
2352
1184
|
updated_at: z.ZodString;
|
|
2353
1185
|
ready: z.ZodBoolean;
|
|
2354
1186
|
}, z.core.$strip>;
|
|
2355
|
-
export declare const
|
|
2356
|
-
|
|
2357
|
-
|
|
2358
|
-
|
|
2359
|
-
|
|
2360
|
-
|
|
2361
|
-
|
|
2362
|
-
chart_name: z.ZodString;
|
|
2363
|
-
}, z.core.$strip>;
|
|
2364
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1187
|
+
export declare const zUpdateChartBody: z.ZodObject<{
|
|
1188
|
+
values: z.ZodString;
|
|
1189
|
+
version_channel: z.ZodString;
|
|
1190
|
+
}, z.core.$strip>;
|
|
1191
|
+
export declare const zUpdateChartPath: z.ZodObject<{
|
|
1192
|
+
cluster_id: z.ZodString;
|
|
1193
|
+
chart_name: z.ZodString;
|
|
2365
1194
|
}, z.core.$strip>;
|
|
2366
1195
|
/**
|
|
2367
1196
|
* Successfully updated.
|
|
2368
1197
|
*/
|
|
2369
1198
|
export declare const zUpdateChartResponse: z.ZodString;
|
|
2370
|
-
export declare const
|
|
2371
|
-
|
|
2372
|
-
path: z.ZodObject<{
|
|
2373
|
-
cluster_id: z.ZodString;
|
|
2374
|
-
}, z.core.$strip>;
|
|
2375
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1199
|
+
export declare const zListFleetsPath: z.ZodObject<{
|
|
1200
|
+
cluster_id: z.ZodString;
|
|
2376
1201
|
}, z.core.$strip>;
|
|
2377
1202
|
/**
|
|
2378
1203
|
* An array of fleets
|
|
@@ -2395,53 +1220,42 @@ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
|
2395
1220
|
}, z.core.$strip>>;
|
|
2396
1221
|
id: z.ZodString;
|
|
2397
1222
|
}, z.core.$strip>>;
|
|
2398
|
-
export declare const
|
|
2399
|
-
|
|
2400
|
-
|
|
2401
|
-
|
|
2402
|
-
|
|
2403
|
-
|
|
2404
|
-
|
|
2405
|
-
|
|
2406
|
-
|
|
2407
|
-
|
|
2408
|
-
|
|
2409
|
-
|
|
2410
|
-
|
|
2411
|
-
|
|
2412
|
-
|
|
2413
|
-
|
|
2414
|
-
|
|
2415
|
-
|
|
2416
|
-
|
|
2417
|
-
|
|
2418
|
-
cluster_id: z.ZodString;
|
|
2419
|
-
}, z.core.$strip>;
|
|
2420
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1223
|
+
export declare const zCreateFleetBody: z.ZodObject<{
|
|
1224
|
+
limits: z.ZodOptional<z.ZodObject<{
|
|
1225
|
+
cpu: z.ZodNumber;
|
|
1226
|
+
}, z.core.$strip>>;
|
|
1227
|
+
gcp: z.ZodOptional<z.ZodObject<{
|
|
1228
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1229
|
+
project: z.ZodString;
|
|
1230
|
+
}, z.core.$strip>>;
|
|
1231
|
+
hetzner: z.ZodOptional<z.ZodObject<{
|
|
1232
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1233
|
+
apiKey: z.ZodString;
|
|
1234
|
+
}, z.core.$strip>>;
|
|
1235
|
+
aws: z.ZodOptional<z.ZodObject<{
|
|
1236
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1237
|
+
controllerRoleArn: z.ZodString;
|
|
1238
|
+
}, z.core.$strip>>;
|
|
1239
|
+
id: z.ZodString;
|
|
1240
|
+
}, z.core.$strip>;
|
|
1241
|
+
export declare const zCreateFleetPath: z.ZodObject<{
|
|
1242
|
+
cluster_id: z.ZodString;
|
|
2421
1243
|
}, z.core.$strip>;
|
|
2422
1244
|
/**
|
|
2423
1245
|
* Successfully created. Returns created Fleet ID.
|
|
2424
1246
|
*/
|
|
2425
1247
|
export declare const zCreateFleetResponse: z.ZodString;
|
|
2426
|
-
export declare const
|
|
2427
|
-
|
|
2428
|
-
|
|
2429
|
-
cluster_id: z.ZodString;
|
|
2430
|
-
fleet_name: z.ZodString;
|
|
2431
|
-
}, z.core.$strip>;
|
|
2432
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1248
|
+
export declare const zDeleteFleetPath: z.ZodObject<{
|
|
1249
|
+
cluster_id: z.ZodString;
|
|
1250
|
+
fleet_name: z.ZodString;
|
|
2433
1251
|
}, z.core.$strip>;
|
|
2434
1252
|
/**
|
|
2435
1253
|
* Successfully deleted.
|
|
2436
1254
|
*/
|
|
2437
1255
|
export declare const zDeleteFleetResponse: z.ZodString;
|
|
2438
|
-
export declare const
|
|
2439
|
-
|
|
2440
|
-
|
|
2441
|
-
cluster_id: z.ZodString;
|
|
2442
|
-
fleet_name: z.ZodString;
|
|
2443
|
-
}, z.core.$strip>;
|
|
2444
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1256
|
+
export declare const zGetFleetPath: z.ZodObject<{
|
|
1257
|
+
cluster_id: z.ZodString;
|
|
1258
|
+
fleet_name: z.ZodString;
|
|
2445
1259
|
}, z.core.$strip>;
|
|
2446
1260
|
/**
|
|
2447
1261
|
* Returns a single object containing fleet details.
|
|
@@ -2464,45 +1278,33 @@ export declare const zGetFleetResponse: z.ZodObject<{
|
|
|
2464
1278
|
}, z.core.$strip>>;
|
|
2465
1279
|
id: z.ZodString;
|
|
2466
1280
|
}, z.core.$strip>;
|
|
2467
|
-
export declare const
|
|
2468
|
-
|
|
2469
|
-
|
|
2470
|
-
|
|
2471
|
-
|
|
2472
|
-
|
|
2473
|
-
|
|
2474
|
-
|
|
2475
|
-
|
|
2476
|
-
|
|
2477
|
-
|
|
2478
|
-
|
|
2479
|
-
|
|
2480
|
-
|
|
2481
|
-
|
|
2482
|
-
|
|
2483
|
-
|
|
2484
|
-
|
|
2485
|
-
|
|
2486
|
-
|
|
2487
|
-
fleet_name: z.ZodString;
|
|
2488
|
-
}, z.core.$strip>;
|
|
2489
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1281
|
+
export declare const zUpdateFleetBody: z.ZodObject<{
|
|
1282
|
+
limits: z.ZodOptional<z.ZodObject<{
|
|
1283
|
+
cpu: z.ZodNumber;
|
|
1284
|
+
}, z.core.$strip>>;
|
|
1285
|
+
gcp: z.ZodOptional<z.ZodObject<{
|
|
1286
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1287
|
+
project: z.ZodString;
|
|
1288
|
+
}, z.core.$strip>>;
|
|
1289
|
+
hetzner: z.ZodOptional<z.ZodObject<{
|
|
1290
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1291
|
+
apiKey: z.ZodString;
|
|
1292
|
+
}, z.core.$strip>>;
|
|
1293
|
+
aws: z.ZodOptional<z.ZodObject<{
|
|
1294
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1295
|
+
controllerRoleArn: z.ZodString;
|
|
1296
|
+
}, z.core.$strip>>;
|
|
1297
|
+
}, z.core.$strip>;
|
|
1298
|
+
export declare const zUpdateFleetPath: z.ZodObject<{
|
|
1299
|
+
cluster_id: z.ZodString;
|
|
1300
|
+
fleet_name: z.ZodString;
|
|
2490
1301
|
}, z.core.$strip>;
|
|
2491
1302
|
/**
|
|
2492
1303
|
* Successfully updated.
|
|
2493
1304
|
*/
|
|
2494
1305
|
export declare const zUpdateFleetResponse: z.ZodString;
|
|
2495
|
-
export declare const
|
|
2496
|
-
|
|
2497
|
-
path: z.ZodObject<{
|
|
2498
|
-
cluster_id: z.ZodString;
|
|
2499
|
-
}, z.core.$strip>;
|
|
2500
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
2501
|
-
}, z.core.$strip>;
|
|
2502
|
-
export declare const zListClustersData: z.ZodObject<{
|
|
2503
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
2504
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
2505
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1306
|
+
export declare const zQueryClusterPath: z.ZodObject<{
|
|
1307
|
+
cluster_id: z.ZodString;
|
|
2506
1308
|
}, z.core.$strip>;
|
|
2507
1309
|
/**
|
|
2508
1310
|
* An array of clusters
|
|
@@ -2514,17 +1316,17 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
|
2514
1316
|
pro: "pro";
|
|
2515
1317
|
}>;
|
|
2516
1318
|
region: z.ZodOptional<z.ZodEnum<{
|
|
2517
|
-
staging: "staging";
|
|
1319
|
+
"staging-1a": "staging-1a";
|
|
2518
1320
|
"northamerica-central-1": "northamerica-central-1";
|
|
2519
1321
|
"europe-central-1a": "europe-central-1a";
|
|
2520
1322
|
"northamerica-central-1a": "northamerica-central-1a";
|
|
2521
1323
|
}>>;
|
|
2522
|
-
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2523
1324
|
id: z.ZodUUID;
|
|
2524
1325
|
status: z.ZodEnum<{
|
|
2525
1326
|
deleted: "deleted";
|
|
2526
1327
|
failed: "failed";
|
|
2527
1328
|
active: "active";
|
|
1329
|
+
disabled: "disabled";
|
|
2528
1330
|
creating: "creating";
|
|
2529
1331
|
deployed: "deployed";
|
|
2530
1332
|
updating: "updating";
|
|
@@ -2537,46 +1339,40 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
|
2537
1339
|
created_at: z.ZodOptional<z.ZodString>;
|
|
2538
1340
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
2539
1341
|
ready: z.ZodOptional<z.ZodBoolean>;
|
|
1342
|
+
version_channel: z.ZodOptional<z.ZodString>;
|
|
2540
1343
|
}, z.core.$strip>>;
|
|
2541
|
-
export declare const
|
|
2542
|
-
|
|
2543
|
-
|
|
2544
|
-
|
|
2545
|
-
|
|
2546
|
-
|
|
2547
|
-
|
|
2548
|
-
|
|
2549
|
-
|
|
2550
|
-
|
|
2551
|
-
|
|
2552
|
-
|
|
2553
|
-
|
|
2554
|
-
|
|
2555
|
-
|
|
2556
|
-
|
|
2557
|
-
|
|
1344
|
+
export declare const zCreateClusterBody: z.ZodObject<{
|
|
1345
|
+
name: z.ZodString;
|
|
1346
|
+
tier: z.ZodEnum<{
|
|
1347
|
+
basic: "basic";
|
|
1348
|
+
pro: "pro";
|
|
1349
|
+
}>;
|
|
1350
|
+
region: z.ZodOptional<z.ZodEnum<{
|
|
1351
|
+
"staging-1a": "staging-1a";
|
|
1352
|
+
"northamerica-central-1": "northamerica-central-1";
|
|
1353
|
+
"europe-central-1a": "europe-central-1a";
|
|
1354
|
+
"northamerica-central-1a": "northamerica-central-1a";
|
|
1355
|
+
}>>;
|
|
1356
|
+
version_channel: z.ZodOptional<z.ZodEnum<{
|
|
1357
|
+
"1.x.x-cfke.x": "1.x.x-cfke.x";
|
|
1358
|
+
"1.31.x-cfke.x": "1.31.x-cfke.x";
|
|
1359
|
+
"1.32.x-cfke.x": "1.32.x-cfke.x";
|
|
1360
|
+
"1.33.x-cfke.x": "1.33.x-cfke.x";
|
|
1361
|
+
}>>;
|
|
2558
1362
|
}, z.core.$strip>;
|
|
2559
1363
|
/**
|
|
2560
1364
|
* Successfully created. Returns created Cluster ID.
|
|
2561
1365
|
*/
|
|
2562
1366
|
export declare const zCreateClusterResponse: z.ZodString;
|
|
2563
|
-
export declare const
|
|
2564
|
-
|
|
2565
|
-
path: z.ZodObject<{
|
|
2566
|
-
cluster_id: z.ZodString;
|
|
2567
|
-
}, z.core.$strip>;
|
|
2568
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1367
|
+
export declare const zDeleteClusterPath: z.ZodObject<{
|
|
1368
|
+
cluster_id: z.ZodString;
|
|
2569
1369
|
}, z.core.$strip>;
|
|
2570
1370
|
/**
|
|
2571
1371
|
* Successfully deleted.
|
|
2572
1372
|
*/
|
|
2573
1373
|
export declare const zDeleteClusterResponse: z.ZodString;
|
|
2574
|
-
export declare const
|
|
2575
|
-
|
|
2576
|
-
path: z.ZodObject<{
|
|
2577
|
-
cluster_id: z.ZodString;
|
|
2578
|
-
}, z.core.$strip>;
|
|
2579
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1374
|
+
export declare const zGetClusterPath: z.ZodObject<{
|
|
1375
|
+
cluster_id: z.ZodString;
|
|
2580
1376
|
}, z.core.$strip>;
|
|
2581
1377
|
/**
|
|
2582
1378
|
* Returns a single object containing cluster details.
|
|
@@ -2588,17 +1384,17 @@ export declare const zGetClusterResponse: z.ZodObject<{
|
|
|
2588
1384
|
pro: "pro";
|
|
2589
1385
|
}>;
|
|
2590
1386
|
region: z.ZodOptional<z.ZodEnum<{
|
|
2591
|
-
staging: "staging";
|
|
1387
|
+
"staging-1a": "staging-1a";
|
|
2592
1388
|
"northamerica-central-1": "northamerica-central-1";
|
|
2593
1389
|
"europe-central-1a": "europe-central-1a";
|
|
2594
1390
|
"northamerica-central-1a": "northamerica-central-1a";
|
|
2595
1391
|
}>>;
|
|
2596
|
-
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2597
1392
|
id: z.ZodUUID;
|
|
2598
1393
|
status: z.ZodEnum<{
|
|
2599
1394
|
deleted: "deleted";
|
|
2600
1395
|
failed: "failed";
|
|
2601
1396
|
active: "active";
|
|
1397
|
+
disabled: "disabled";
|
|
2602
1398
|
creating: "creating";
|
|
2603
1399
|
deployed: "deployed";
|
|
2604
1400
|
updating: "updating";
|
|
@@ -2611,20 +1407,18 @@ export declare const zGetClusterResponse: z.ZodObject<{
|
|
|
2611
1407
|
created_at: z.ZodOptional<z.ZodString>;
|
|
2612
1408
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
2613
1409
|
ready: z.ZodOptional<z.ZodBoolean>;
|
|
1410
|
+
version_channel: z.ZodOptional<z.ZodString>;
|
|
2614
1411
|
}, z.core.$strip>;
|
|
2615
|
-
export declare const
|
|
2616
|
-
|
|
2617
|
-
|
|
2618
|
-
|
|
2619
|
-
|
|
2620
|
-
|
|
2621
|
-
|
|
2622
|
-
|
|
2623
|
-
|
|
2624
|
-
|
|
2625
|
-
cluster_id: z.ZodString;
|
|
2626
|
-
}, z.core.$strip>;
|
|
2627
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1412
|
+
export declare const zUpdateClusterBody: z.ZodObject<{
|
|
1413
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1414
|
+
tier: z.ZodEnum<{
|
|
1415
|
+
basic: "basic";
|
|
1416
|
+
pro: "pro";
|
|
1417
|
+
}>;
|
|
1418
|
+
version_channel: z.ZodOptional<z.ZodString>;
|
|
1419
|
+
}, z.core.$strip>;
|
|
1420
|
+
export declare const zUpdateClusterPath: z.ZodObject<{
|
|
1421
|
+
cluster_id: z.ZodString;
|
|
2628
1422
|
}, z.core.$strip>;
|
|
2629
1423
|
/**
|
|
2630
1424
|
* Successfully updated. Returns updated cluster details.
|
|
@@ -2636,17 +1430,17 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
|
2636
1430
|
pro: "pro";
|
|
2637
1431
|
}>;
|
|
2638
1432
|
region: z.ZodOptional<z.ZodEnum<{
|
|
2639
|
-
staging: "staging";
|
|
1433
|
+
"staging-1a": "staging-1a";
|
|
2640
1434
|
"northamerica-central-1": "northamerica-central-1";
|
|
2641
1435
|
"europe-central-1a": "europe-central-1a";
|
|
2642
1436
|
"northamerica-central-1a": "northamerica-central-1a";
|
|
2643
1437
|
}>>;
|
|
2644
|
-
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2645
1438
|
id: z.ZodUUID;
|
|
2646
1439
|
status: z.ZodEnum<{
|
|
2647
1440
|
deleted: "deleted";
|
|
2648
1441
|
failed: "failed";
|
|
2649
1442
|
active: "active";
|
|
1443
|
+
disabled: "disabled";
|
|
2650
1444
|
creating: "creating";
|
|
2651
1445
|
deployed: "deployed";
|
|
2652
1446
|
updating: "updating";
|
|
@@ -2659,13 +1453,17 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
|
2659
1453
|
created_at: z.ZodOptional<z.ZodString>;
|
|
2660
1454
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
2661
1455
|
ready: z.ZodOptional<z.ZodBoolean>;
|
|
1456
|
+
version_channel: z.ZodOptional<z.ZodString>;
|
|
2662
1457
|
}, z.core.$strip>;
|
|
2663
|
-
export declare const
|
|
2664
|
-
|
|
2665
|
-
|
|
2666
|
-
|
|
2667
|
-
|
|
2668
|
-
|
|
1458
|
+
export declare const zGetClusterCaPath: z.ZodObject<{
|
|
1459
|
+
cluster_id: z.ZodString;
|
|
1460
|
+
}, z.core.$strip>;
|
|
1461
|
+
/**
|
|
1462
|
+
* PEM-encoded certificate authority of the cluster.
|
|
1463
|
+
*/
|
|
1464
|
+
export declare const zGetClusterCaResponse: z.ZodString;
|
|
1465
|
+
export declare const zGetJoinInformationPath: z.ZodObject<{
|
|
1466
|
+
cluster_id: z.ZodString;
|
|
2669
1467
|
}, z.core.$strip>;
|
|
2670
1468
|
/**
|
|
2671
1469
|
* An object of cluster join information
|
|
@@ -2673,6 +1471,7 @@ export declare const zGetJoinInformationData: z.ZodObject<{
|
|
|
2673
1471
|
export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
2674
1472
|
certificate_authority: z.ZodString;
|
|
2675
1473
|
endpoint: z.ZodURL;
|
|
1474
|
+
cluster_dns: z.ZodString;
|
|
2676
1475
|
auth_key: z.ZodString;
|
|
2677
1476
|
bootstrap_token: z.ZodString;
|
|
2678
1477
|
versions: z.ZodObject<{
|
|
@@ -2687,11 +1486,6 @@ export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
|
2687
1486
|
gcp_workload_identity_provider: z.ZodString;
|
|
2688
1487
|
}, z.core.$strip>;
|
|
2689
1488
|
}, z.core.$strip>;
|
|
2690
|
-
export declare const zListInvitesData: z.ZodObject<{
|
|
2691
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
2692
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
2693
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
2694
|
-
}, z.core.$strip>;
|
|
2695
1489
|
/**
|
|
2696
1490
|
* An array of invites
|
|
2697
1491
|
*/
|
|
@@ -2702,12 +1496,8 @@ export declare const zListInvitesResponse: z.ZodArray<z.ZodObject<{
|
|
|
2702
1496
|
email: z.ZodOptional<z.ZodEmail>;
|
|
2703
1497
|
code: z.ZodOptional<z.ZodString>;
|
|
2704
1498
|
}, z.core.$strip>>;
|
|
2705
|
-
export declare const
|
|
2706
|
-
|
|
2707
|
-
email: z.ZodOptional<z.ZodString>;
|
|
2708
|
-
}, z.core.$strip>;
|
|
2709
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
2710
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1499
|
+
export declare const zCreateInviteBody: z.ZodObject<{
|
|
1500
|
+
email: z.ZodOptional<z.ZodString>;
|
|
2711
1501
|
}, z.core.$strip>;
|
|
2712
1502
|
/**
|
|
2713
1503
|
* Successfully created. Returns created invite details.
|
|
@@ -2719,12 +1509,8 @@ export declare const zCreateInviteResponse: z.ZodObject<{
|
|
|
2719
1509
|
email: z.ZodOptional<z.ZodEmail>;
|
|
2720
1510
|
code: z.ZodOptional<z.ZodString>;
|
|
2721
1511
|
}, z.core.$strip>;
|
|
2722
|
-
export declare const
|
|
2723
|
-
|
|
2724
|
-
path: z.ZodObject<{
|
|
2725
|
-
code: z.ZodString;
|
|
2726
|
-
}, z.core.$strip>;
|
|
2727
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1512
|
+
export declare const zGetInvitePath: z.ZodObject<{
|
|
1513
|
+
code: z.ZodString;
|
|
2728
1514
|
}, z.core.$strip>;
|
|
2729
1515
|
/**
|
|
2730
1516
|
* Returns a single object containing invite details.
|
|
@@ -2736,65 +1522,65 @@ export declare const zGetInviteResponse: z.ZodObject<{
|
|
|
2736
1522
|
email: z.ZodOptional<z.ZodEmail>;
|
|
2737
1523
|
code: z.ZodOptional<z.ZodString>;
|
|
2738
1524
|
}, z.core.$strip>;
|
|
2739
|
-
export declare const
|
|
2740
|
-
|
|
2741
|
-
path: z.ZodObject<{
|
|
2742
|
-
email: z.ZodString;
|
|
2743
|
-
}, z.core.$strip>;
|
|
2744
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
2745
|
-
}, z.core.$strip>;
|
|
2746
|
-
export declare const zListMarketplaceChartsData: z.ZodObject<{
|
|
2747
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
2748
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
2749
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1525
|
+
export declare const zDeleteInvitePath: z.ZodObject<{
|
|
1526
|
+
email: z.ZodString;
|
|
2750
1527
|
}, z.core.$strip>;
|
|
2751
1528
|
/**
|
|
2752
1529
|
* An array of chart listings in the marketplace.
|
|
2753
1530
|
*/
|
|
2754
1531
|
export declare const zListMarketplaceChartsResponse: z.ZodArray<z.ZodObject<{
|
|
2755
|
-
id: z.ZodString;
|
|
2756
1532
|
name: z.ZodString;
|
|
2757
|
-
|
|
2758
|
-
description: z.ZodString;
|
|
2759
|
-
logoUrl: z.ZodString;
|
|
2760
|
-
longDescription: z.ZodString;
|
|
2761
|
-
categories: z.ZodArray<z.ZodString>;
|
|
1533
|
+
versions: z.ZodArray<z.ZodString>;
|
|
2762
1534
|
version_channels: z.ZodArray<z.ZodString>;
|
|
2763
|
-
|
|
1535
|
+
latestVersion: z.ZodString;
|
|
1536
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
1537
|
+
name: z.ZodString;
|
|
2764
1538
|
version: z.ZodString;
|
|
2765
|
-
|
|
2766
|
-
|
|
1539
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1540
|
+
appVersion: z.ZodOptional<z.ZodString>;
|
|
1541
|
+
apiVersion: z.ZodOptional<z.ZodString>;
|
|
1542
|
+
keywords: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1543
|
+
home: z.ZodOptional<z.ZodString>;
|
|
1544
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1545
|
+
sources: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1546
|
+
maintainers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1547
|
+
name: z.ZodString;
|
|
1548
|
+
email: z.ZodOptional<z.ZodString>;
|
|
1549
|
+
}, z.core.$strip>>>;
|
|
2767
1550
|
}, z.core.$strip>>;
|
|
2768
1551
|
}, z.core.$strip>>;
|
|
2769
|
-
export declare const
|
|
2770
|
-
|
|
2771
|
-
|
|
2772
|
-
listing_id: z.ZodString;
|
|
2773
|
-
}, z.core.$strip>;
|
|
2774
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1552
|
+
export declare const zGetMarketplaceChartFilesPath: z.ZodObject<{
|
|
1553
|
+
chart_name: z.ZodString;
|
|
1554
|
+
version_channel: z.ZodString;
|
|
2775
1555
|
}, z.core.$strip>;
|
|
2776
1556
|
/**
|
|
2777
|
-
* Returns an object containing the chart
|
|
1557
|
+
* Returns an object containing the chart files for the latest matching version.
|
|
2778
1558
|
*/
|
|
2779
|
-
export declare const
|
|
2780
|
-
|
|
2781
|
-
|
|
2782
|
-
|
|
2783
|
-
description: z.ZodString;
|
|
2784
|
-
logoUrl: z.ZodString;
|
|
2785
|
-
longDescription: z.ZodString;
|
|
2786
|
-
categories: z.ZodArray<z.ZodString>;
|
|
2787
|
-
version_channels: z.ZodArray<z.ZodString>;
|
|
2788
|
-
value_schemas: z.ZodArray<z.ZodObject<{
|
|
2789
|
-
version: z.ZodString;
|
|
2790
|
-
schema: z.ZodString;
|
|
2791
|
-
placeholder: z.ZodString;
|
|
2792
|
-
}, z.core.$strip>>;
|
|
1559
|
+
export declare const zGetMarketplaceChartFilesResponse: z.ZodObject<{
|
|
1560
|
+
chartYaml: z.ZodOptional<z.ZodString>;
|
|
1561
|
+
valuesYaml: z.ZodOptional<z.ZodString>;
|
|
1562
|
+
valuesSchemaJson: z.ZodOptional<z.ZodString>;
|
|
2793
1563
|
}, z.core.$strip>;
|
|
2794
|
-
|
|
2795
|
-
|
|
2796
|
-
|
|
2797
|
-
|
|
1564
|
+
/**
|
|
1565
|
+
* JSON-RPC 2.0 request payload
|
|
1566
|
+
*/
|
|
1567
|
+
export declare const zPostMcpBody: z.ZodObject<{
|
|
1568
|
+
jsonrpc: z.ZodOptional<z.ZodString>;
|
|
1569
|
+
method: z.ZodOptional<z.ZodString>;
|
|
1570
|
+
id: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
1571
|
+
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1572
|
+
}, z.core.$strip>;
|
|
1573
|
+
/**
|
|
1574
|
+
* JSON-RPC 2.0 success or error response
|
|
1575
|
+
*/
|
|
1576
|
+
export declare const zPostMcpResponse: z.ZodObject<{
|
|
1577
|
+
jsonrpc: z.ZodOptional<z.ZodString>;
|
|
1578
|
+
id: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
1579
|
+
result: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1580
|
+
error: z.ZodOptional<z.ZodObject<{
|
|
1581
|
+
code: z.ZodOptional<z.ZodInt>;
|
|
1582
|
+
message: z.ZodOptional<z.ZodString>;
|
|
1583
|
+
}, z.core.$strip>>;
|
|
2798
1584
|
}, z.core.$strip>;
|
|
2799
1585
|
/**
|
|
2800
1586
|
* Returns a single object containing organization details.
|
|
@@ -2815,6 +1601,7 @@ export declare const zGetOrganizationResponse: z.ZodObject<{
|
|
|
2815
1601
|
id: z.ZodString;
|
|
2816
1602
|
label: z.ZodString;
|
|
2817
1603
|
}, z.core.$strip>>;
|
|
1604
|
+
cfcr_storage_gb: z.ZodInt;
|
|
2818
1605
|
}, z.core.$strip>;
|
|
2819
1606
|
status: z.ZodEnum<{
|
|
2820
1607
|
active: "active";
|
|
@@ -2822,21 +1609,81 @@ export declare const zGetOrganizationResponse: z.ZodObject<{
|
|
|
2822
1609
|
suspended: "suspended";
|
|
2823
1610
|
}>;
|
|
2824
1611
|
}, z.core.$strip>;
|
|
2825
|
-
export declare const
|
|
2826
|
-
|
|
2827
|
-
|
|
2828
|
-
|
|
2829
|
-
|
|
2830
|
-
|
|
2831
|
-
password: z.ZodString;
|
|
2832
|
-
}, z.core.$strip>;
|
|
2833
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
2834
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1612
|
+
export declare const zCreateOrganizationBody: z.ZodObject<{
|
|
1613
|
+
email: z.ZodEmail;
|
|
1614
|
+
first_name: z.ZodString;
|
|
1615
|
+
last_name: z.ZodString;
|
|
1616
|
+
company_name: z.ZodString;
|
|
1617
|
+
password: z.ZodString;
|
|
2835
1618
|
}, z.core.$strip>;
|
|
2836
|
-
|
|
2837
|
-
|
|
2838
|
-
|
|
2839
|
-
|
|
1619
|
+
/**
|
|
1620
|
+
* List of repositories
|
|
1621
|
+
*/
|
|
1622
|
+
export declare const zListRepositoriesResponse: z.ZodArray<z.ZodObject<{
|
|
1623
|
+
name: z.ZodString;
|
|
1624
|
+
region: z.ZodString;
|
|
1625
|
+
uri: z.ZodString;
|
|
1626
|
+
}, z.core.$strip>>;
|
|
1627
|
+
export declare const zListTagsPath: z.ZodObject<{
|
|
1628
|
+
region: z.ZodString;
|
|
1629
|
+
repository: z.ZodString;
|
|
1630
|
+
}, z.core.$strip>;
|
|
1631
|
+
/**
|
|
1632
|
+
* Repository with tags
|
|
1633
|
+
*/
|
|
1634
|
+
export declare const zListTagsResponse: z.ZodObject<{
|
|
1635
|
+
name: z.ZodString;
|
|
1636
|
+
region: z.ZodString;
|
|
1637
|
+
uri: z.ZodString;
|
|
1638
|
+
tags: z.ZodArray<z.ZodObject<{
|
|
1639
|
+
name: z.ZodString;
|
|
1640
|
+
size: z.ZodNumber;
|
|
1641
|
+
mediaType: z.ZodOptional<z.ZodString>;
|
|
1642
|
+
platforms: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1643
|
+
}, z.core.$strip>>;
|
|
1644
|
+
totalSize: z.ZodNumber;
|
|
1645
|
+
}, z.core.$strip>;
|
|
1646
|
+
export declare const zDeleteTagPath: z.ZodObject<{
|
|
1647
|
+
region: z.ZodString;
|
|
1648
|
+
repository: z.ZodString;
|
|
1649
|
+
tag: z.ZodString;
|
|
1650
|
+
}, z.core.$strip>;
|
|
1651
|
+
export declare const zGetTagPath: z.ZodObject<{
|
|
1652
|
+
region: z.ZodString;
|
|
1653
|
+
repository: z.ZodString;
|
|
1654
|
+
tag: z.ZodString;
|
|
1655
|
+
}, z.core.$strip>;
|
|
1656
|
+
/**
|
|
1657
|
+
* Tag details
|
|
1658
|
+
*/
|
|
1659
|
+
export declare const zGetTagResponse: z.ZodObject<{
|
|
1660
|
+
name: z.ZodString;
|
|
1661
|
+
digest: z.ZodString;
|
|
1662
|
+
mediaType: z.ZodOptional<z.ZodString>;
|
|
1663
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
1664
|
+
size: z.ZodNumber;
|
|
1665
|
+
}, z.core.$strip>>;
|
|
1666
|
+
layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1667
|
+
digest: z.ZodOptional<z.ZodString>;
|
|
1668
|
+
size: z.ZodNumber;
|
|
1669
|
+
}, z.core.$strip>>>;
|
|
1670
|
+
manifests: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1671
|
+
digest: z.ZodString;
|
|
1672
|
+
platform: z.ZodOptional<z.ZodObject<{
|
|
1673
|
+
architecture: z.ZodString;
|
|
1674
|
+
os: z.ZodString;
|
|
1675
|
+
variant: z.ZodOptional<z.ZodString>;
|
|
1676
|
+
}, z.core.$strip>>;
|
|
1677
|
+
layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1678
|
+
digest: z.ZodOptional<z.ZodString>;
|
|
1679
|
+
size: z.ZodNumber;
|
|
1680
|
+
}, z.core.$strip>>>;
|
|
1681
|
+
size: z.ZodOptional<z.ZodNumber>;
|
|
1682
|
+
}, z.core.$strip>>>;
|
|
1683
|
+
size: z.ZodNumber;
|
|
1684
|
+
region: z.ZodString;
|
|
1685
|
+
repository: z.ZodString;
|
|
1686
|
+
uri: z.ZodString;
|
|
2840
1687
|
}, z.core.$strip>;
|
|
2841
1688
|
/**
|
|
2842
1689
|
* Returns a list of access token details with masked secrets.
|
|
@@ -2851,16 +1698,12 @@ export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
|
|
|
2851
1698
|
secret: z.ZodOptional<z.ZodString>;
|
|
2852
1699
|
date_created: z.ZodISODateTime;
|
|
2853
1700
|
}, z.core.$strip>>;
|
|
2854
|
-
export declare const
|
|
2855
|
-
|
|
2856
|
-
|
|
2857
|
-
|
|
2858
|
-
|
|
2859
|
-
|
|
2860
|
-
}>;
|
|
2861
|
-
}, z.core.$strip>;
|
|
2862
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
2863
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1701
|
+
export declare const zCreateTokenBody: z.ZodObject<{
|
|
1702
|
+
name: z.ZodString;
|
|
1703
|
+
role: z.ZodEnum<{
|
|
1704
|
+
Administrator: "Administrator";
|
|
1705
|
+
User: "User";
|
|
1706
|
+
}>;
|
|
2864
1707
|
}, z.core.$strip>;
|
|
2865
1708
|
/**
|
|
2866
1709
|
* Successfully created. Returns created token details with unmasked/raw secret.
|
|
@@ -2875,19 +1718,11 @@ export declare const zCreateTokenResponse: z.ZodObject<{
|
|
|
2875
1718
|
secret: z.ZodOptional<z.ZodString>;
|
|
2876
1719
|
date_created: z.ZodISODateTime;
|
|
2877
1720
|
}, z.core.$strip>;
|
|
2878
|
-
export declare const
|
|
2879
|
-
|
|
2880
|
-
path: z.ZodObject<{
|
|
2881
|
-
token_id: z.ZodString;
|
|
2882
|
-
}, z.core.$strip>;
|
|
2883
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1721
|
+
export declare const zDeleteTokenPath: z.ZodObject<{
|
|
1722
|
+
token_id: z.ZodString;
|
|
2884
1723
|
}, z.core.$strip>;
|
|
2885
|
-
export declare const
|
|
2886
|
-
|
|
2887
|
-
path: z.ZodObject<{
|
|
2888
|
-
token_id: z.ZodString;
|
|
2889
|
-
}, z.core.$strip>;
|
|
2890
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1724
|
+
export declare const zGetTokenPath: z.ZodObject<{
|
|
1725
|
+
token_id: z.ZodString;
|
|
2891
1726
|
}, z.core.$strip>;
|
|
2892
1727
|
/**
|
|
2893
1728
|
* Returns access token details with masked secret.
|
|
@@ -2902,18 +1737,15 @@ export declare const zGetTokenResponse: z.ZodObject<{
|
|
|
2902
1737
|
secret: z.ZodOptional<z.ZodString>;
|
|
2903
1738
|
date_created: z.ZodISODateTime;
|
|
2904
1739
|
}, z.core.$strip>;
|
|
2905
|
-
export declare const
|
|
2906
|
-
|
|
2907
|
-
|
|
2908
|
-
|
|
2909
|
-
|
|
2910
|
-
|
|
2911
|
-
|
|
2912
|
-
|
|
2913
|
-
|
|
2914
|
-
token_id: z.ZodString;
|
|
2915
|
-
}, z.core.$strip>;
|
|
2916
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1740
|
+
export declare const zUpdateTokenBody: z.ZodObject<{
|
|
1741
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1742
|
+
role: z.ZodOptional<z.ZodEnum<{
|
|
1743
|
+
Administrator: "Administrator";
|
|
1744
|
+
User: "User";
|
|
1745
|
+
}>>;
|
|
1746
|
+
}, z.core.$strip>;
|
|
1747
|
+
export declare const zUpdateTokenPath: z.ZodObject<{
|
|
1748
|
+
token_id: z.ZodString;
|
|
2917
1749
|
}, z.core.$strip>;
|
|
2918
1750
|
/**
|
|
2919
1751
|
* Successfully updated. Returns updated token details with masked secret.
|
|
@@ -2928,12 +1760,8 @@ export declare const zUpdateTokenResponse: z.ZodObject<{
|
|
|
2928
1760
|
secret: z.ZodOptional<z.ZodString>;
|
|
2929
1761
|
date_created: z.ZodISODateTime;
|
|
2930
1762
|
}, z.core.$strip>;
|
|
2931
|
-
export declare const
|
|
2932
|
-
|
|
2933
|
-
path: z.ZodObject<{
|
|
2934
|
-
token_id: z.ZodString;
|
|
2935
|
-
}, z.core.$strip>;
|
|
2936
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1763
|
+
export declare const zRegenerateTokenPath: z.ZodObject<{
|
|
1764
|
+
token_id: z.ZodString;
|
|
2937
1765
|
}, z.core.$strip>;
|
|
2938
1766
|
/**
|
|
2939
1767
|
* Successfully updated. Returns updated token details with unmasked / raw secret.
|
|
@@ -2948,12 +1776,8 @@ export declare const zRegenerateTokenResponse: z.ZodObject<{
|
|
|
2948
1776
|
secret: z.ZodOptional<z.ZodString>;
|
|
2949
1777
|
date_created: z.ZodISODateTime;
|
|
2950
1778
|
}, z.core.$strip>;
|
|
2951
|
-
export declare const
|
|
2952
|
-
|
|
2953
|
-
path: z.ZodObject<{
|
|
2954
|
-
email: z.ZodString;
|
|
2955
|
-
}, z.core.$strip>;
|
|
2956
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1779
|
+
export declare const zListUserOrganizationsPath: z.ZodObject<{
|
|
1780
|
+
email: z.ZodString;
|
|
2957
1781
|
}, z.core.$strip>;
|
|
2958
1782
|
/**
|
|
2959
1783
|
* An array of organizations the user belongs to.
|
|
@@ -2962,11 +1786,6 @@ export declare const zListUserOrganizationsResponse: z.ZodArray<z.ZodObject<{
|
|
|
2962
1786
|
realm: z.ZodOptional<z.ZodString>;
|
|
2963
1787
|
displayName: z.ZodOptional<z.ZodString>;
|
|
2964
1788
|
}, z.core.$strip>>;
|
|
2965
|
-
export declare const zListUsersData: z.ZodObject<{
|
|
2966
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
2967
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
2968
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
2969
|
-
}, z.core.$strip>;
|
|
2970
1789
|
/**
|
|
2971
1790
|
* An array of users
|
|
2972
1791
|
*/
|
|
@@ -2985,24 +1804,20 @@ export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
|
|
|
2985
1804
|
id: z.ZodUUID;
|
|
2986
1805
|
date_created: z.ZodISODateTime;
|
|
2987
1806
|
}, z.core.$strip>>;
|
|
2988
|
-
export declare const
|
|
2989
|
-
|
|
2990
|
-
|
|
2991
|
-
|
|
2992
|
-
|
|
2993
|
-
|
|
2994
|
-
|
|
2995
|
-
|
|
2996
|
-
|
|
2997
|
-
|
|
2998
|
-
|
|
2999
|
-
|
|
3000
|
-
|
|
3001
|
-
|
|
3002
|
-
}>>;
|
|
3003
|
-
}, z.core.$strip>;
|
|
3004
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
3005
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1807
|
+
export declare const zCreateUserBody: z.ZodObject<{
|
|
1808
|
+
email: z.ZodEmail;
|
|
1809
|
+
first_name: z.ZodString;
|
|
1810
|
+
last_name: z.ZodString;
|
|
1811
|
+
code: z.ZodString;
|
|
1812
|
+
password: z.ZodString;
|
|
1813
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
1814
|
+
active: "active";
|
|
1815
|
+
inactive: "inactive";
|
|
1816
|
+
}>>;
|
|
1817
|
+
role: z.ZodOptional<z.ZodEnum<{
|
|
1818
|
+
Administrator: "Administrator";
|
|
1819
|
+
User: "User";
|
|
1820
|
+
}>>;
|
|
3006
1821
|
}, z.core.$strip>;
|
|
3007
1822
|
/**
|
|
3008
1823
|
* Successfully created. Returns created user details.
|
|
@@ -3022,12 +1837,8 @@ export declare const zCreateUserResponse: z.ZodObject<{
|
|
|
3022
1837
|
id: z.ZodUUID;
|
|
3023
1838
|
date_created: z.ZodISODateTime;
|
|
3024
1839
|
}, z.core.$strip>;
|
|
3025
|
-
export declare const
|
|
3026
|
-
|
|
3027
|
-
path: z.ZodObject<{
|
|
3028
|
-
user_id: z.ZodString;
|
|
3029
|
-
}, z.core.$strip>;
|
|
3030
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1840
|
+
export declare const zDeleteUserPath: z.ZodObject<{
|
|
1841
|
+
user_id: z.ZodString;
|
|
3031
1842
|
}, z.core.$strip>;
|
|
3032
1843
|
/**
|
|
3033
1844
|
* User profile information
|
|
@@ -3047,12 +1858,8 @@ export declare const zDeleteUserResponse: z.ZodObject<{
|
|
|
3047
1858
|
id: z.ZodUUID;
|
|
3048
1859
|
date_created: z.ZodISODateTime;
|
|
3049
1860
|
}, z.core.$strip>;
|
|
3050
|
-
export declare const
|
|
3051
|
-
|
|
3052
|
-
path: z.ZodObject<{
|
|
3053
|
-
user_id: z.ZodString;
|
|
3054
|
-
}, z.core.$strip>;
|
|
3055
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1861
|
+
export declare const zGetUserPath: z.ZodObject<{
|
|
1862
|
+
user_id: z.ZodString;
|
|
3056
1863
|
}, z.core.$strip>;
|
|
3057
1864
|
/**
|
|
3058
1865
|
* User profile information
|
|
@@ -3072,24 +1879,21 @@ export declare const zGetUserResponse: z.ZodObject<{
|
|
|
3072
1879
|
id: z.ZodUUID;
|
|
3073
1880
|
date_created: z.ZodISODateTime;
|
|
3074
1881
|
}, z.core.$strip>;
|
|
3075
|
-
export declare const
|
|
3076
|
-
|
|
3077
|
-
|
|
3078
|
-
|
|
3079
|
-
|
|
3080
|
-
|
|
3081
|
-
|
|
3082
|
-
|
|
3083
|
-
|
|
3084
|
-
|
|
3085
|
-
|
|
3086
|
-
|
|
3087
|
-
|
|
3088
|
-
|
|
3089
|
-
|
|
3090
|
-
user_id: z.ZodString;
|
|
3091
|
-
}, z.core.$strip>;
|
|
3092
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1882
|
+
export declare const zUpdateUserBody: z.ZodObject<{
|
|
1883
|
+
email: z.ZodOptional<z.ZodEmail>;
|
|
1884
|
+
first_name: z.ZodOptional<z.ZodString>;
|
|
1885
|
+
last_name: z.ZodOptional<z.ZodString>;
|
|
1886
|
+
role: z.ZodOptional<z.ZodEnum<{
|
|
1887
|
+
Administrator: "Administrator";
|
|
1888
|
+
User: "User";
|
|
1889
|
+
}>>;
|
|
1890
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
1891
|
+
active: "active";
|
|
1892
|
+
inactive: "inactive";
|
|
1893
|
+
}>>;
|
|
1894
|
+
}, z.core.$strip>;
|
|
1895
|
+
export declare const zUpdateUserPath: z.ZodObject<{
|
|
1896
|
+
user_id: z.ZodString;
|
|
3093
1897
|
}, z.core.$strip>;
|
|
3094
1898
|
/**
|
|
3095
1899
|
* Successfully created. Returns created user details.
|