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