@cloudfleet/sdk 0.0.1-dba2400 → 0.0.1-dc16042
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 +1020 -484
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +1629 -574
- package/dist/schemas.gen.js.map +1 -1
- package/dist/sdk.gen.d.ts +86 -22
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/sdk.gen.js +158 -151
- package/dist/sdk.gen.js.map +1 -1
- package/dist/services/kubernetes/api.d.ts +8 -8
- package/dist/types.gen.d.ts +920 -323
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +1041 -1936
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +501 -1075
- package/dist/zod.gen.js.map +1 -1
- package/package.json +28 -5
package/dist/zod.gen.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import * as z from 'zod';
|
|
2
2
|
export declare const zBillingContact: z.ZodObject<{
|
|
3
3
|
company: z.ZodOptional<z.ZodString>;
|
|
4
4
|
address1: z.ZodOptional<z.ZodString>;
|
|
@@ -9,8 +9,7 @@ export declare const zBillingContact: z.ZodObject<{
|
|
|
9
9
|
country: z.ZodOptional<z.ZodString>;
|
|
10
10
|
phone: z.ZodOptional<z.ZodString>;
|
|
11
11
|
email: z.ZodEmail;
|
|
12
|
-
|
|
13
|
-
last_name: z.ZodString;
|
|
12
|
+
individual_name: z.ZodString;
|
|
14
13
|
tax_id: z.ZodOptional<z.ZodString>;
|
|
15
14
|
tax_id_type: z.ZodOptional<z.ZodEnum<{
|
|
16
15
|
"": "";
|
|
@@ -145,16 +144,15 @@ export declare const zBillingContact: z.ZodObject<{
|
|
|
145
144
|
}, z.core.$strip>;
|
|
146
145
|
export declare const zBillingCredits: z.ZodObject<{
|
|
147
146
|
id: z.ZodOptional<z.ZodString>;
|
|
148
|
-
date_created: z.ZodISODateTime;
|
|
149
|
-
code: z.ZodString;
|
|
150
|
-
description: z.ZodOptional<z.ZodString>;
|
|
151
|
-
products: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
152
147
|
type: z.ZodEnum<{
|
|
153
148
|
credit: "credit";
|
|
154
149
|
discount: "discount";
|
|
155
150
|
}>;
|
|
156
|
-
|
|
157
|
-
|
|
151
|
+
date_start: z.ZodISODateTime;
|
|
152
|
+
date_end: z.ZodOptional<z.ZodISODateTime>;
|
|
153
|
+
code: z.ZodString;
|
|
154
|
+
description: z.ZodOptional<z.ZodString>;
|
|
155
|
+
value_total: z.ZodNumber;
|
|
158
156
|
value_remaining: z.ZodOptional<z.ZodNumber>;
|
|
159
157
|
}, z.core.$strip>;
|
|
160
158
|
export declare const zChartCreateInput: z.ZodObject<{
|
|
@@ -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";
|
|
@@ -252,11 +255,15 @@ export declare const zCluster: z.ZodObject<{
|
|
|
252
255
|
endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
253
256
|
"": "";
|
|
254
257
|
}>]>>;
|
|
258
|
+
endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
259
|
+
"": "";
|
|
260
|
+
}>]>>;
|
|
255
261
|
certificate_ca: z.ZodOptional<z.ZodString>;
|
|
256
262
|
version_current: z.ZodOptional<z.ZodString>;
|
|
257
263
|
created_at: z.ZodOptional<z.ZodString>;
|
|
258
264
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
259
265
|
ready: z.ZodOptional<z.ZodBoolean>;
|
|
266
|
+
version_channel: z.ZodOptional<z.ZodString>;
|
|
260
267
|
}, z.core.$strip>;
|
|
261
268
|
export declare const zClusterUpdateInput: z.ZodObject<{
|
|
262
269
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -327,602 +334,40 @@ export declare const zInvite: z.ZodObject<{
|
|
|
327
334
|
code: z.ZodOptional<z.ZodString>;
|
|
328
335
|
}, z.core.$strip>;
|
|
329
336
|
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>>>;
|
|
337
|
+
id: z.ZodOptional<z.ZodString>;
|
|
338
|
+
number: z.ZodOptional<z.ZodString>;
|
|
339
|
+
status: z.ZodOptional<z.ZodString>;
|
|
340
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
341
|
+
currency: z.ZodOptional<z.ZodString>;
|
|
342
|
+
created: z.ZodISODateTime;
|
|
343
|
+
period_start: z.ZodISODateTime;
|
|
344
|
+
period_end: z.ZodISODateTime;
|
|
345
|
+
invoice_pdf: z.ZodOptional<z.ZodString>;
|
|
346
|
+
}, z.core.$strip>;
|
|
347
|
+
export declare const zMarketplaceListingFiles: z.ZodObject<{
|
|
348
|
+
chartYaml: z.ZodOptional<z.ZodString>;
|
|
349
|
+
valuesYaml: z.ZodOptional<z.ZodString>;
|
|
350
|
+
valuesSchemaJson: z.ZodOptional<z.ZodString>;
|
|
912
351
|
}, z.core.$strip>;
|
|
913
352
|
export declare const zMarketplaceListing: z.ZodObject<{
|
|
914
|
-
id: z.ZodString;
|
|
915
353
|
name: z.ZodString;
|
|
916
|
-
|
|
917
|
-
description: z.ZodString;
|
|
918
|
-
logoUrl: z.ZodString;
|
|
919
|
-
longDescription: z.ZodString;
|
|
920
|
-
categories: z.ZodArray<z.ZodString>;
|
|
354
|
+
versions: z.ZodArray<z.ZodString>;
|
|
921
355
|
version_channels: z.ZodArray<z.ZodString>;
|
|
922
|
-
|
|
356
|
+
latestVersion: z.ZodString;
|
|
357
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
358
|
+
name: z.ZodString;
|
|
923
359
|
version: z.ZodString;
|
|
924
|
-
|
|
925
|
-
|
|
360
|
+
description: z.ZodOptional<z.ZodString>;
|
|
361
|
+
appVersion: z.ZodOptional<z.ZodString>;
|
|
362
|
+
apiVersion: z.ZodOptional<z.ZodString>;
|
|
363
|
+
keywords: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
364
|
+
home: z.ZodOptional<z.ZodString>;
|
|
365
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
366
|
+
sources: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
367
|
+
maintainers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
368
|
+
name: z.ZodString;
|
|
369
|
+
email: z.ZodOptional<z.ZodString>;
|
|
370
|
+
}, z.core.$strip>>>;
|
|
926
371
|
}, z.core.$strip>>;
|
|
927
372
|
}, z.core.$strip>;
|
|
928
373
|
export declare const zOrganizationCreateInput: z.ZodObject<{
|
|
@@ -948,6 +393,7 @@ export declare const zOrganization: z.ZodObject<{
|
|
|
948
393
|
id: z.ZodString;
|
|
949
394
|
label: z.ZodString;
|
|
950
395
|
}, z.core.$strip>>;
|
|
396
|
+
cfcr_storage_gb: z.ZodInt;
|
|
951
397
|
}, z.core.$strip>;
|
|
952
398
|
status: z.ZodEnum<{
|
|
953
399
|
active: "active";
|
|
@@ -976,6 +422,171 @@ export declare const zPaymentMethod: z.ZodObject<{
|
|
|
976
422
|
visa: "visa";
|
|
977
423
|
}>;
|
|
978
424
|
}, z.core.$strip>;
|
|
425
|
+
export declare const zPlatformQuota: z.ZodObject<{
|
|
426
|
+
basic_clusters_max: z.ZodInt;
|
|
427
|
+
basic_clusters_available: z.ZodInt;
|
|
428
|
+
pro_clusters_max: z.ZodInt;
|
|
429
|
+
pro_clusters_available: z.ZodInt;
|
|
430
|
+
fleets_max: z.ZodInt;
|
|
431
|
+
cluster_tiers: z.ZodArray<z.ZodString>;
|
|
432
|
+
regions: z.ZodArray<z.ZodString>;
|
|
433
|
+
versions: z.ZodArray<z.ZodObject<{
|
|
434
|
+
id: z.ZodString;
|
|
435
|
+
label: z.ZodString;
|
|
436
|
+
}, z.core.$strip>>;
|
|
437
|
+
cfcr_storage_gb: z.ZodInt;
|
|
438
|
+
}, z.core.$strip>;
|
|
439
|
+
export declare const zRegistryRepository: z.ZodObject<{
|
|
440
|
+
name: z.ZodString;
|
|
441
|
+
region: z.ZodString;
|
|
442
|
+
uri: z.ZodString;
|
|
443
|
+
}, z.core.$strip>;
|
|
444
|
+
export declare const zRegistryRepositoryWithTags: z.ZodObject<{
|
|
445
|
+
name: z.ZodString;
|
|
446
|
+
region: z.ZodString;
|
|
447
|
+
uri: z.ZodString;
|
|
448
|
+
tags: z.ZodArray<z.ZodObject<{
|
|
449
|
+
name: z.ZodString;
|
|
450
|
+
size: z.ZodNumber;
|
|
451
|
+
mediaType: z.ZodOptional<z.ZodString>;
|
|
452
|
+
platforms: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
453
|
+
}, z.core.$strip>>;
|
|
454
|
+
totalSize: z.ZodNumber;
|
|
455
|
+
}, z.core.$strip>;
|
|
456
|
+
export declare const zRegistryTag: z.ZodObject<{
|
|
457
|
+
name: z.ZodString;
|
|
458
|
+
digest: z.ZodString;
|
|
459
|
+
mediaType: z.ZodOptional<z.ZodString>;
|
|
460
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
461
|
+
size: z.ZodNumber;
|
|
462
|
+
}, z.core.$strip>>;
|
|
463
|
+
layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
464
|
+
digest: z.ZodOptional<z.ZodString>;
|
|
465
|
+
size: z.ZodNumber;
|
|
466
|
+
}, z.core.$strip>>>;
|
|
467
|
+
manifests: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
468
|
+
digest: z.ZodString;
|
|
469
|
+
platform: z.ZodOptional<z.ZodObject<{
|
|
470
|
+
architecture: z.ZodString;
|
|
471
|
+
os: z.ZodString;
|
|
472
|
+
variant: z.ZodOptional<z.ZodString>;
|
|
473
|
+
}, z.core.$strip>>;
|
|
474
|
+
layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
475
|
+
digest: z.ZodOptional<z.ZodString>;
|
|
476
|
+
size: z.ZodNumber;
|
|
477
|
+
}, z.core.$strip>>>;
|
|
478
|
+
size: z.ZodOptional<z.ZodNumber>;
|
|
479
|
+
}, z.core.$strip>>>;
|
|
480
|
+
size: z.ZodNumber;
|
|
481
|
+
region: z.ZodString;
|
|
482
|
+
repository: z.ZodString;
|
|
483
|
+
uri: z.ZodString;
|
|
484
|
+
}, z.core.$strip>;
|
|
485
|
+
export declare const zTicketAttachment: z.ZodObject<{
|
|
486
|
+
id: z.ZodString;
|
|
487
|
+
filename: z.ZodString;
|
|
488
|
+
content_type: z.ZodString;
|
|
489
|
+
size: z.ZodInt;
|
|
490
|
+
}, z.core.$strip>;
|
|
491
|
+
export declare const zTicketCreateInput: z.ZodObject<{
|
|
492
|
+
category: z.ZodEnum<{
|
|
493
|
+
billing: "billing";
|
|
494
|
+
technical: "technical";
|
|
495
|
+
general: "general";
|
|
496
|
+
}>;
|
|
497
|
+
body: z.ZodString;
|
|
498
|
+
properties: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
499
|
+
}, z.core.$strip>;
|
|
500
|
+
export declare const zTicketListResponse: z.ZodObject<{
|
|
501
|
+
items: z.ZodArray<z.ZodObject<{
|
|
502
|
+
id: z.ZodString;
|
|
503
|
+
status: z.ZodEnum<{
|
|
504
|
+
closed: "closed";
|
|
505
|
+
waiting_on_us: "waiting_on_us";
|
|
506
|
+
waiting_on_user: "waiting_on_user";
|
|
507
|
+
}>;
|
|
508
|
+
category: z.ZodEnum<{
|
|
509
|
+
billing: "billing";
|
|
510
|
+
technical: "technical";
|
|
511
|
+
general: "general";
|
|
512
|
+
}>;
|
|
513
|
+
summary: z.ZodString;
|
|
514
|
+
closed_at: z.ZodOptional<z.ZodISODateTime>;
|
|
515
|
+
date_created: z.ZodISODateTime;
|
|
516
|
+
date_updated: z.ZodISODateTime;
|
|
517
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
518
|
+
id: z.ZodString;
|
|
519
|
+
type: z.ZodEnum<{
|
|
520
|
+
customer_reply: "customer_reply";
|
|
521
|
+
agent_reply: "agent_reply";
|
|
522
|
+
}>;
|
|
523
|
+
body: z.ZodString;
|
|
524
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
525
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
526
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
527
|
+
id: z.ZodString;
|
|
528
|
+
filename: z.ZodString;
|
|
529
|
+
content_type: z.ZodString;
|
|
530
|
+
size: z.ZodInt;
|
|
531
|
+
}, z.core.$strip>>>;
|
|
532
|
+
date_created: z.ZodISODateTime;
|
|
533
|
+
}, z.core.$strip>>>;
|
|
534
|
+
}, z.core.$strip>>;
|
|
535
|
+
}, z.core.$strip>;
|
|
536
|
+
export declare const zTicketMessageInput: z.ZodObject<{
|
|
537
|
+
body: z.ZodString;
|
|
538
|
+
}, z.core.$strip>;
|
|
539
|
+
export declare const zTicketMessage: z.ZodObject<{
|
|
540
|
+
id: z.ZodString;
|
|
541
|
+
type: z.ZodEnum<{
|
|
542
|
+
customer_reply: "customer_reply";
|
|
543
|
+
agent_reply: "agent_reply";
|
|
544
|
+
}>;
|
|
545
|
+
body: z.ZodString;
|
|
546
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
547
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
548
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
549
|
+
id: z.ZodString;
|
|
550
|
+
filename: z.ZodString;
|
|
551
|
+
content_type: z.ZodString;
|
|
552
|
+
size: z.ZodInt;
|
|
553
|
+
}, z.core.$strip>>>;
|
|
554
|
+
date_created: z.ZodISODateTime;
|
|
555
|
+
}, z.core.$strip>;
|
|
556
|
+
export declare const zTicket: z.ZodObject<{
|
|
557
|
+
id: z.ZodString;
|
|
558
|
+
status: z.ZodEnum<{
|
|
559
|
+
closed: "closed";
|
|
560
|
+
waiting_on_us: "waiting_on_us";
|
|
561
|
+
waiting_on_user: "waiting_on_user";
|
|
562
|
+
}>;
|
|
563
|
+
category: z.ZodEnum<{
|
|
564
|
+
billing: "billing";
|
|
565
|
+
technical: "technical";
|
|
566
|
+
general: "general";
|
|
567
|
+
}>;
|
|
568
|
+
summary: z.ZodString;
|
|
569
|
+
closed_at: z.ZodOptional<z.ZodISODateTime>;
|
|
570
|
+
date_created: z.ZodISODateTime;
|
|
571
|
+
date_updated: z.ZodISODateTime;
|
|
572
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
573
|
+
id: z.ZodString;
|
|
574
|
+
type: z.ZodEnum<{
|
|
575
|
+
customer_reply: "customer_reply";
|
|
576
|
+
agent_reply: "agent_reply";
|
|
577
|
+
}>;
|
|
578
|
+
body: z.ZodString;
|
|
579
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
580
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
581
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
582
|
+
id: z.ZodString;
|
|
583
|
+
filename: z.ZodString;
|
|
584
|
+
content_type: z.ZodString;
|
|
585
|
+
size: z.ZodInt;
|
|
586
|
+
}, z.core.$strip>>>;
|
|
587
|
+
date_created: z.ZodISODateTime;
|
|
588
|
+
}, z.core.$strip>>>;
|
|
589
|
+
}, z.core.$strip>;
|
|
979
590
|
export declare const zTokenCreateInput: z.ZodObject<{
|
|
980
591
|
name: z.ZodString;
|
|
981
592
|
role: z.ZodEnum<{
|
|
@@ -1000,37 +611,31 @@ export declare const zTokenUpdateInput: z.ZodObject<{
|
|
|
1000
611
|
User: "User";
|
|
1001
612
|
}>>;
|
|
1002
613
|
}, z.core.$strip>;
|
|
614
|
+
export declare const zUsageFacets: z.ZodObject<{
|
|
615
|
+
cluster_id: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
616
|
+
product: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
617
|
+
}, z.core.$strip>;
|
|
618
|
+
export declare const zUsageResponse: z.ZodObject<{
|
|
619
|
+
data: z.ZodArray<z.ZodObject<{
|
|
620
|
+
hour: z.ZodString;
|
|
621
|
+
cluster_id: z.ZodString;
|
|
622
|
+
product: z.ZodString;
|
|
623
|
+
value: z.ZodNumber;
|
|
624
|
+
price: z.ZodNumber;
|
|
625
|
+
total: z.ZodNumber;
|
|
626
|
+
}, z.core.$strip>>;
|
|
627
|
+
facets: z.ZodObject<{
|
|
628
|
+
cluster_id: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
629
|
+
product: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
630
|
+
}, z.core.$strip>;
|
|
631
|
+
}, z.core.$strip>;
|
|
1003
632
|
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
|
-
}>]>;
|
|
633
|
+
hour: z.ZodString;
|
|
634
|
+
cluster_id: z.ZodString;
|
|
635
|
+
product: z.ZodString;
|
|
636
|
+
value: z.ZodNumber;
|
|
637
|
+
price: z.ZodNumber;
|
|
638
|
+
total: z.ZodNumber;
|
|
1034
639
|
}, z.core.$strip>;
|
|
1035
640
|
export declare const zUserCreateInput: z.ZodObject<{
|
|
1036
641
|
email: z.ZodEmail;
|
|
@@ -1075,59 +680,29 @@ export declare const zUserUpdateInput: z.ZodObject<{
|
|
|
1075
680
|
inactive: "inactive";
|
|
1076
681
|
}>>;
|
|
1077
682
|
}, z.core.$strip>;
|
|
1078
|
-
export declare const
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
* An array of usage records.
|
|
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>;
|
|
683
|
+
export declare const zGetUsageQuery: z.ZodObject<{
|
|
684
|
+
granularity: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
685
|
+
hourly: "hourly";
|
|
686
|
+
daily: "daily";
|
|
687
|
+
monthly: "monthly";
|
|
688
|
+
}>>>;
|
|
1122
689
|
}, z.core.$strip>;
|
|
1123
690
|
/**
|
|
1124
|
-
*
|
|
691
|
+
* Usage data with facets for filtering
|
|
1125
692
|
*/
|
|
1126
|
-
export declare const
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
|
|
693
|
+
export declare const zGetUsageResponse: z.ZodObject<{
|
|
694
|
+
data: z.ZodArray<z.ZodObject<{
|
|
695
|
+
hour: z.ZodString;
|
|
696
|
+
cluster_id: z.ZodString;
|
|
697
|
+
product: z.ZodString;
|
|
698
|
+
value: z.ZodNumber;
|
|
699
|
+
price: z.ZodNumber;
|
|
700
|
+
total: z.ZodNumber;
|
|
701
|
+
}, z.core.$strip>>;
|
|
702
|
+
facets: z.ZodObject<{
|
|
703
|
+
cluster_id: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
704
|
+
product: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
705
|
+
}, z.core.$strip>;
|
|
1131
706
|
}, z.core.$strip>;
|
|
1132
707
|
/**
|
|
1133
708
|
* Redacted payment card information.
|
|
@@ -1153,11 +728,6 @@ export declare const zGetPaymentMethodResponse: z.ZodObject<{
|
|
|
1153
728
|
visa: "visa";
|
|
1154
729
|
}>;
|
|
1155
730
|
}, 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
731
|
/**
|
|
1162
732
|
* 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
733
|
*
|
|
@@ -1165,619 +735,20 @@ export declare const zGetPaymentMethodSecretData: z.ZodObject<{
|
|
|
1165
735
|
export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
|
|
1166
736
|
id: z.ZodOptional<z.ZodString>;
|
|
1167
737
|
}, 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
738
|
/**
|
|
1177
739
|
* An array of usage records.
|
|
1178
740
|
*/
|
|
1179
741
|
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>>>;
|
|
742
|
+
id: z.ZodOptional<z.ZodString>;
|
|
743
|
+
number: z.ZodOptional<z.ZodString>;
|
|
744
|
+
status: z.ZodOptional<z.ZodString>;
|
|
745
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
746
|
+
currency: z.ZodOptional<z.ZodString>;
|
|
747
|
+
created: z.ZodISODateTime;
|
|
748
|
+
period_start: z.ZodISODateTime;
|
|
749
|
+
period_end: z.ZodISODateTime;
|
|
750
|
+
invoice_pdf: z.ZodOptional<z.ZodString>;
|
|
1762
751
|
}, 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
752
|
/**
|
|
1782
753
|
* Returns a single object containing organization contact and billing address details.
|
|
1783
754
|
*/
|
|
@@ -1791,8 +762,7 @@ export declare const zGetContactResponse: z.ZodObject<{
|
|
|
1791
762
|
country: z.ZodOptional<z.ZodString>;
|
|
1792
763
|
phone: z.ZodOptional<z.ZodString>;
|
|
1793
764
|
email: z.ZodEmail;
|
|
1794
|
-
|
|
1795
|
-
last_name: z.ZodString;
|
|
765
|
+
individual_name: z.ZodString;
|
|
1796
766
|
tax_id: z.ZodOptional<z.ZodString>;
|
|
1797
767
|
tax_id_type: z.ZodOptional<z.ZodEnum<{
|
|
1798
768
|
"": "";
|
|
@@ -1925,158 +895,7 @@ export declare const zGetContactResponse: z.ZodObject<{
|
|
|
1925
895
|
zw_tin: "zw_tin";
|
|
1926
896
|
}>>;
|
|
1927
897
|
}, 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<{
|
|
898
|
+
export declare const zUpdateContactBody: z.ZodObject<{
|
|
2080
899
|
company: z.ZodOptional<z.ZodString>;
|
|
2081
900
|
address1: z.ZodOptional<z.ZodString>;
|
|
2082
901
|
address2: z.ZodOptional<z.ZodString>;
|
|
@@ -2086,8 +905,7 @@ export declare const zUpdateContactResponse: z.ZodObject<{
|
|
|
2086
905
|
country: z.ZodOptional<z.ZodString>;
|
|
2087
906
|
phone: z.ZodOptional<z.ZodString>;
|
|
2088
907
|
email: z.ZodEmail;
|
|
2089
|
-
|
|
2090
|
-
last_name: z.ZodString;
|
|
908
|
+
individual_name: z.ZodString;
|
|
2091
909
|
tax_id: z.ZodOptional<z.ZodString>;
|
|
2092
910
|
tax_id_type: z.ZodOptional<z.ZodEnum<{
|
|
2093
911
|
"": "";
|
|
@@ -2220,229 +1038,332 @@ export declare const zUpdateContactResponse: z.ZodObject<{
|
|
|
2220
1038
|
zw_tin: "zw_tin";
|
|
2221
1039
|
}>>;
|
|
2222
1040
|
}, 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
1041
|
/**
|
|
2229
|
-
*
|
|
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
|
-
/**
|
|
2379
|
-
* An array of fleets
|
|
1042
|
+
* Successfully updated. Returns updated organization details.
|
|
2380
1043
|
*/
|
|
2381
|
-
export declare const
|
|
2382
|
-
|
|
2383
|
-
|
|
2384
|
-
|
|
2385
|
-
|
|
2386
|
-
|
|
2387
|
-
|
|
2388
|
-
|
|
2389
|
-
|
|
2390
|
-
|
|
2391
|
-
|
|
2392
|
-
|
|
2393
|
-
|
|
2394
|
-
|
|
2395
|
-
|
|
2396
|
-
|
|
1044
|
+
export declare const zUpdateContactResponse: z.ZodObject<{
|
|
1045
|
+
company: z.ZodOptional<z.ZodString>;
|
|
1046
|
+
address1: z.ZodOptional<z.ZodString>;
|
|
1047
|
+
address2: z.ZodOptional<z.ZodString>;
|
|
1048
|
+
postalCode: z.ZodOptional<z.ZodString>;
|
|
1049
|
+
city: z.ZodOptional<z.ZodString>;
|
|
1050
|
+
state: z.ZodOptional<z.ZodString>;
|
|
1051
|
+
country: z.ZodOptional<z.ZodString>;
|
|
1052
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
1053
|
+
email: z.ZodEmail;
|
|
1054
|
+
individual_name: z.ZodString;
|
|
1055
|
+
tax_id: z.ZodOptional<z.ZodString>;
|
|
1056
|
+
tax_id_type: z.ZodOptional<z.ZodEnum<{
|
|
1057
|
+
"": "";
|
|
1058
|
+
ad_nrt: "ad_nrt";
|
|
1059
|
+
ae_trn: "ae_trn";
|
|
1060
|
+
al_tin: "al_tin";
|
|
1061
|
+
am_tin: "am_tin";
|
|
1062
|
+
ao_tin: "ao_tin";
|
|
1063
|
+
ar_cuit: "ar_cuit";
|
|
1064
|
+
at_vat: "at_vat";
|
|
1065
|
+
au_abn: "au_abn";
|
|
1066
|
+
au_arn: "au_arn";
|
|
1067
|
+
ba_tin: "ba_tin";
|
|
1068
|
+
bb_tin: "bb_tin";
|
|
1069
|
+
be_vat: "be_vat";
|
|
1070
|
+
bg_uic: "bg_uic";
|
|
1071
|
+
bg_vat: "bg_vat";
|
|
1072
|
+
bh_vat: "bh_vat";
|
|
1073
|
+
bo_tin: "bo_tin";
|
|
1074
|
+
br_cnpj: "br_cnpj";
|
|
1075
|
+
br_cpf: "br_cpf";
|
|
1076
|
+
bs_tin: "bs_tin";
|
|
1077
|
+
by_tin: "by_tin";
|
|
1078
|
+
ca_bn: "ca_bn";
|
|
1079
|
+
ca_gst_hst: "ca_gst_hst";
|
|
1080
|
+
ca_pst_bc: "ca_pst_bc";
|
|
1081
|
+
ca_pst_mb: "ca_pst_mb";
|
|
1082
|
+
ca_pst_sk: "ca_pst_sk";
|
|
1083
|
+
ca_qst: "ca_qst";
|
|
1084
|
+
cd_nif: "cd_nif";
|
|
1085
|
+
ch_uid: "ch_uid";
|
|
1086
|
+
ch_vat: "ch_vat";
|
|
1087
|
+
cl_tin: "cl_tin";
|
|
1088
|
+
cn_tin: "cn_tin";
|
|
1089
|
+
co_nit: "co_nit";
|
|
1090
|
+
cr_tin: "cr_tin";
|
|
1091
|
+
cy_vat: "cy_vat";
|
|
1092
|
+
cz_vat: "cz_vat";
|
|
1093
|
+
de_stn: "de_stn";
|
|
1094
|
+
de_vat: "de_vat";
|
|
1095
|
+
dk_vat: "dk_vat";
|
|
1096
|
+
do_rcn: "do_rcn";
|
|
1097
|
+
ec_ruc: "ec_ruc";
|
|
1098
|
+
ee_vat: "ee_vat";
|
|
1099
|
+
eg_tin: "eg_tin";
|
|
1100
|
+
es_cif: "es_cif";
|
|
1101
|
+
es_vat: "es_vat";
|
|
1102
|
+
eu_oss_vat: "eu_oss_vat";
|
|
1103
|
+
fi_vat: "fi_vat";
|
|
1104
|
+
fr_vat: "fr_vat";
|
|
1105
|
+
gb_vat: "gb_vat";
|
|
1106
|
+
ge_vat: "ge_vat";
|
|
1107
|
+
gn_nif: "gn_nif";
|
|
1108
|
+
gr_vat: "gr_vat";
|
|
1109
|
+
hk_br: "hk_br";
|
|
1110
|
+
hr_oib: "hr_oib";
|
|
1111
|
+
hr_vat: "hr_vat";
|
|
1112
|
+
hu_tin: "hu_tin";
|
|
1113
|
+
hu_vat: "hu_vat";
|
|
1114
|
+
id_npwp: "id_npwp";
|
|
1115
|
+
ie_vat: "ie_vat";
|
|
1116
|
+
il_vat: "il_vat";
|
|
1117
|
+
in_gst: "in_gst";
|
|
1118
|
+
is_vat: "is_vat";
|
|
1119
|
+
it_vat: "it_vat";
|
|
1120
|
+
jp_cn: "jp_cn";
|
|
1121
|
+
jp_rn: "jp_rn";
|
|
1122
|
+
jp_trn: "jp_trn";
|
|
1123
|
+
ke_pin: "ke_pin";
|
|
1124
|
+
kh_tin: "kh_tin";
|
|
1125
|
+
kr_brn: "kr_brn";
|
|
1126
|
+
kz_bin: "kz_bin";
|
|
1127
|
+
li_uid: "li_uid";
|
|
1128
|
+
li_vat: "li_vat";
|
|
1129
|
+
lt_vat: "lt_vat";
|
|
1130
|
+
lu_vat: "lu_vat";
|
|
1131
|
+
lv_vat: "lv_vat";
|
|
1132
|
+
ma_vat: "ma_vat";
|
|
1133
|
+
md_vat: "md_vat";
|
|
1134
|
+
me_pib: "me_pib";
|
|
1135
|
+
mk_vat: "mk_vat";
|
|
1136
|
+
mr_nif: "mr_nif";
|
|
1137
|
+
mt_vat: "mt_vat";
|
|
1138
|
+
mx_rfc: "mx_rfc";
|
|
1139
|
+
my_frp: "my_frp";
|
|
1140
|
+
my_itn: "my_itn";
|
|
1141
|
+
my_sst: "my_sst";
|
|
1142
|
+
ng_tin: "ng_tin";
|
|
1143
|
+
nl_vat: "nl_vat";
|
|
1144
|
+
no_vat: "no_vat";
|
|
1145
|
+
no_voec: "no_voec";
|
|
1146
|
+
np_pan: "np_pan";
|
|
1147
|
+
nz_gst: "nz_gst";
|
|
1148
|
+
om_vat: "om_vat";
|
|
1149
|
+
pe_ruc: "pe_ruc";
|
|
1150
|
+
ph_tin: "ph_tin";
|
|
1151
|
+
pl_vat: "pl_vat";
|
|
1152
|
+
pt_vat: "pt_vat";
|
|
1153
|
+
ro_tin: "ro_tin";
|
|
1154
|
+
ro_vat: "ro_vat";
|
|
1155
|
+
rs_pib: "rs_pib";
|
|
1156
|
+
ru_inn: "ru_inn";
|
|
1157
|
+
ru_kpp: "ru_kpp";
|
|
1158
|
+
sa_vat: "sa_vat";
|
|
1159
|
+
se_vat: "se_vat";
|
|
1160
|
+
sg_gst: "sg_gst";
|
|
1161
|
+
sg_uen: "sg_uen";
|
|
1162
|
+
si_tin: "si_tin";
|
|
1163
|
+
si_vat: "si_vat";
|
|
1164
|
+
sk_vat: "sk_vat";
|
|
1165
|
+
sn_ninea: "sn_ninea";
|
|
1166
|
+
sr_fin: "sr_fin";
|
|
1167
|
+
sv_nit: "sv_nit";
|
|
1168
|
+
th_vat: "th_vat";
|
|
1169
|
+
tj_tin: "tj_tin";
|
|
1170
|
+
tr_tin: "tr_tin";
|
|
1171
|
+
tw_vat: "tw_vat";
|
|
1172
|
+
tz_vat: "tz_vat";
|
|
1173
|
+
ua_vat: "ua_vat";
|
|
1174
|
+
ug_tin: "ug_tin";
|
|
1175
|
+
us_ein: "us_ein";
|
|
1176
|
+
uy_ruc: "uy_ruc";
|
|
1177
|
+
uz_tin: "uz_tin";
|
|
1178
|
+
uz_vat: "uz_vat";
|
|
1179
|
+
ve_rif: "ve_rif";
|
|
1180
|
+
vn_tin: "vn_tin";
|
|
1181
|
+
xi_vat: "xi_vat";
|
|
1182
|
+
za_vat: "za_vat";
|
|
1183
|
+
zm_tin: "zm_tin";
|
|
1184
|
+
zw_tin: "zw_tin";
|
|
1185
|
+
}>>;
|
|
1186
|
+
}, z.core.$strip>;
|
|
1187
|
+
/**
|
|
1188
|
+
* An array of the applied promotional credits records.
|
|
1189
|
+
*/
|
|
1190
|
+
export declare const zGetCreditsResponse: z.ZodArray<z.ZodObject<{
|
|
1191
|
+
id: z.ZodOptional<z.ZodString>;
|
|
1192
|
+
type: z.ZodEnum<{
|
|
1193
|
+
credit: "credit";
|
|
1194
|
+
discount: "discount";
|
|
1195
|
+
}>;
|
|
1196
|
+
date_start: z.ZodISODateTime;
|
|
1197
|
+
date_end: z.ZodOptional<z.ZodISODateTime>;
|
|
1198
|
+
code: z.ZodString;
|
|
1199
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1200
|
+
value_total: z.ZodNumber;
|
|
1201
|
+
value_remaining: z.ZodOptional<z.ZodNumber>;
|
|
1202
|
+
}, z.core.$strip>>;
|
|
1203
|
+
export declare const zRedeemCreditsBody: z.ZodObject<{
|
|
1204
|
+
code: z.ZodOptional<z.ZodString>;
|
|
1205
|
+
}, z.core.$strip>;
|
|
1206
|
+
export declare const zListChartsPath: z.ZodObject<{
|
|
1207
|
+
cluster_id: z.ZodString;
|
|
1208
|
+
}, z.core.$strip>;
|
|
1209
|
+
/**
|
|
1210
|
+
* An array of charts
|
|
1211
|
+
*/
|
|
1212
|
+
export declare const zListChartsResponse: z.ZodArray<z.ZodObject<{
|
|
1213
|
+
values: z.ZodString;
|
|
1214
|
+
version_channel: z.ZodString;
|
|
1215
|
+
name: z.ZodString;
|
|
1216
|
+
namespace: z.ZodString;
|
|
1217
|
+
chart: z.ZodString;
|
|
1218
|
+
status: z.ZodEnum<{
|
|
1219
|
+
InstallSucceeded: "InstallSucceeded";
|
|
1220
|
+
InstallFailed: "InstallFailed";
|
|
1221
|
+
UpgradeSucceeded: "UpgradeSucceeded";
|
|
1222
|
+
UpgradeFailed: "UpgradeFailed";
|
|
1223
|
+
TestSucceeded: "TestSucceeded";
|
|
1224
|
+
TestFailed: "TestFailed";
|
|
1225
|
+
RollbackSucceeded: "RollbackSucceeded";
|
|
1226
|
+
RollbackFailed: "RollbackFailed";
|
|
1227
|
+
UninstallSucceeded: "UninstallSucceeded";
|
|
1228
|
+
UninstallFailed: "UninstallFailed";
|
|
1229
|
+
ArtifactFailed: "ArtifactFailed";
|
|
1230
|
+
DependencyNotReady: "DependencyNotReady";
|
|
1231
|
+
Progressing: "Progressing";
|
|
1232
|
+
SourceNotReady: "SourceNotReady";
|
|
1233
|
+
}>;
|
|
1234
|
+
version_current: z.ZodString;
|
|
1235
|
+
created_at: z.ZodString;
|
|
1236
|
+
updated_at: z.ZodString;
|
|
1237
|
+
ready: z.ZodBoolean;
|
|
1238
|
+
}, z.core.$strip>>;
|
|
1239
|
+
export declare const zCreateChartBody: z.ZodObject<{
|
|
1240
|
+
values: z.ZodString;
|
|
1241
|
+
version_channel: z.ZodString;
|
|
1242
|
+
name: z.ZodString;
|
|
1243
|
+
namespace: z.ZodString;
|
|
1244
|
+
chart: z.ZodString;
|
|
1245
|
+
}, z.core.$strip>;
|
|
1246
|
+
export declare const zCreateChartPath: z.ZodObject<{
|
|
1247
|
+
cluster_id: z.ZodString;
|
|
1248
|
+
}, z.core.$strip>;
|
|
1249
|
+
/**
|
|
1250
|
+
* Successfully created. Returns created Chart ID.
|
|
1251
|
+
*/
|
|
1252
|
+
export declare const zCreateChartResponse: z.ZodString;
|
|
1253
|
+
export declare const zDeleteChartPath: z.ZodObject<{
|
|
1254
|
+
cluster_id: z.ZodString;
|
|
1255
|
+
chart_name: z.ZodString;
|
|
1256
|
+
}, z.core.$strip>;
|
|
1257
|
+
/**
|
|
1258
|
+
* Successfully deleted.
|
|
1259
|
+
*/
|
|
1260
|
+
export declare const zDeleteChartResponse: z.ZodString;
|
|
1261
|
+
export declare const zGetChartPath: z.ZodObject<{
|
|
1262
|
+
cluster_id: z.ZodString;
|
|
1263
|
+
chart_name: z.ZodString;
|
|
1264
|
+
}, z.core.$strip>;
|
|
1265
|
+
/**
|
|
1266
|
+
* Returns a single object containing chart details.
|
|
1267
|
+
*/
|
|
1268
|
+
export declare const zGetChartResponse: z.ZodObject<{
|
|
1269
|
+
values: z.ZodString;
|
|
1270
|
+
version_channel: z.ZodString;
|
|
1271
|
+
name: z.ZodString;
|
|
1272
|
+
namespace: z.ZodString;
|
|
1273
|
+
chart: z.ZodString;
|
|
1274
|
+
status: z.ZodEnum<{
|
|
1275
|
+
InstallSucceeded: "InstallSucceeded";
|
|
1276
|
+
InstallFailed: "InstallFailed";
|
|
1277
|
+
UpgradeSucceeded: "UpgradeSucceeded";
|
|
1278
|
+
UpgradeFailed: "UpgradeFailed";
|
|
1279
|
+
TestSucceeded: "TestSucceeded";
|
|
1280
|
+
TestFailed: "TestFailed";
|
|
1281
|
+
RollbackSucceeded: "RollbackSucceeded";
|
|
1282
|
+
RollbackFailed: "RollbackFailed";
|
|
1283
|
+
UninstallSucceeded: "UninstallSucceeded";
|
|
1284
|
+
UninstallFailed: "UninstallFailed";
|
|
1285
|
+
ArtifactFailed: "ArtifactFailed";
|
|
1286
|
+
DependencyNotReady: "DependencyNotReady";
|
|
1287
|
+
Progressing: "Progressing";
|
|
1288
|
+
SourceNotReady: "SourceNotReady";
|
|
1289
|
+
}>;
|
|
1290
|
+
version_current: z.ZodString;
|
|
1291
|
+
created_at: z.ZodString;
|
|
1292
|
+
updated_at: z.ZodString;
|
|
1293
|
+
ready: z.ZodBoolean;
|
|
1294
|
+
}, z.core.$strip>;
|
|
1295
|
+
export declare const zUpdateChartBody: z.ZodObject<{
|
|
1296
|
+
values: z.ZodString;
|
|
1297
|
+
version_channel: z.ZodString;
|
|
1298
|
+
}, z.core.$strip>;
|
|
1299
|
+
export declare const zUpdateChartPath: z.ZodObject<{
|
|
1300
|
+
cluster_id: z.ZodString;
|
|
1301
|
+
chart_name: z.ZodString;
|
|
1302
|
+
}, z.core.$strip>;
|
|
1303
|
+
/**
|
|
1304
|
+
* Successfully updated.
|
|
1305
|
+
*/
|
|
1306
|
+
export declare const zUpdateChartResponse: z.ZodString;
|
|
1307
|
+
export declare const zListFleetsPath: z.ZodObject<{
|
|
1308
|
+
cluster_id: z.ZodString;
|
|
1309
|
+
}, z.core.$strip>;
|
|
1310
|
+
/**
|
|
1311
|
+
* An array of fleets
|
|
1312
|
+
*/
|
|
1313
|
+
export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
1314
|
+
limits: z.ZodOptional<z.ZodObject<{
|
|
1315
|
+
cpu: z.ZodNumber;
|
|
1316
|
+
}, z.core.$strip>>;
|
|
1317
|
+
gcp: z.ZodOptional<z.ZodObject<{
|
|
1318
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1319
|
+
project: z.ZodString;
|
|
1320
|
+
}, z.core.$strip>>;
|
|
1321
|
+
hetzner: z.ZodOptional<z.ZodObject<{
|
|
1322
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1323
|
+
apiKey: z.ZodString;
|
|
1324
|
+
}, z.core.$strip>>;
|
|
1325
|
+
aws: z.ZodOptional<z.ZodObject<{
|
|
1326
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1327
|
+
controllerRoleArn: z.ZodString;
|
|
1328
|
+
}, z.core.$strip>>;
|
|
1329
|
+
id: z.ZodString;
|
|
1330
|
+
}, z.core.$strip>>;
|
|
1331
|
+
export declare const zCreateFleetBody: z.ZodObject<{
|
|
1332
|
+
limits: z.ZodOptional<z.ZodObject<{
|
|
1333
|
+
cpu: z.ZodNumber;
|
|
1334
|
+
}, z.core.$strip>>;
|
|
1335
|
+
gcp: z.ZodOptional<z.ZodObject<{
|
|
1336
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1337
|
+
project: z.ZodString;
|
|
1338
|
+
}, z.core.$strip>>;
|
|
1339
|
+
hetzner: z.ZodOptional<z.ZodObject<{
|
|
1340
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1341
|
+
apiKey: z.ZodString;
|
|
1342
|
+
}, z.core.$strip>>;
|
|
1343
|
+
aws: z.ZodOptional<z.ZodObject<{
|
|
1344
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1345
|
+
controllerRoleArn: z.ZodString;
|
|
1346
|
+
}, z.core.$strip>>;
|
|
2397
1347
|
id: z.ZodString;
|
|
2398
|
-
}, z.core.$strip
|
|
2399
|
-
export declare const
|
|
2400
|
-
|
|
2401
|
-
limits: z.ZodOptional<z.ZodObject<{
|
|
2402
|
-
cpu: z.ZodNumber;
|
|
2403
|
-
}, z.core.$strip>>;
|
|
2404
|
-
gcp: z.ZodOptional<z.ZodObject<{
|
|
2405
|
-
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
2406
|
-
project: z.ZodString;
|
|
2407
|
-
}, z.core.$strip>>;
|
|
2408
|
-
hetzner: z.ZodOptional<z.ZodObject<{
|
|
2409
|
-
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
2410
|
-
apiKey: z.ZodString;
|
|
2411
|
-
}, z.core.$strip>>;
|
|
2412
|
-
aws: z.ZodOptional<z.ZodObject<{
|
|
2413
|
-
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
2414
|
-
controllerRoleArn: z.ZodString;
|
|
2415
|
-
}, z.core.$strip>>;
|
|
2416
|
-
id: z.ZodString;
|
|
2417
|
-
}, z.core.$strip>;
|
|
2418
|
-
path: z.ZodObject<{
|
|
2419
|
-
cluster_id: z.ZodString;
|
|
2420
|
-
}, z.core.$strip>;
|
|
2421
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1348
|
+
}, z.core.$strip>;
|
|
1349
|
+
export declare const zCreateFleetPath: z.ZodObject<{
|
|
1350
|
+
cluster_id: z.ZodString;
|
|
2422
1351
|
}, z.core.$strip>;
|
|
2423
1352
|
/**
|
|
2424
1353
|
* Successfully created. Returns created Fleet ID.
|
|
2425
1354
|
*/
|
|
2426
1355
|
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>;
|
|
1356
|
+
export declare const zDeleteFleetPath: z.ZodObject<{
|
|
1357
|
+
cluster_id: z.ZodString;
|
|
1358
|
+
fleet_name: z.ZodString;
|
|
2434
1359
|
}, z.core.$strip>;
|
|
2435
1360
|
/**
|
|
2436
1361
|
* Successfully deleted.
|
|
2437
1362
|
*/
|
|
2438
1363
|
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>;
|
|
1364
|
+
export declare const zGetFleetPath: z.ZodObject<{
|
|
1365
|
+
cluster_id: z.ZodString;
|
|
1366
|
+
fleet_name: z.ZodString;
|
|
2446
1367
|
}, z.core.$strip>;
|
|
2447
1368
|
/**
|
|
2448
1369
|
* Returns a single object containing fleet details.
|
|
@@ -2465,45 +1386,33 @@ export declare const zGetFleetResponse: z.ZodObject<{
|
|
|
2465
1386
|
}, z.core.$strip>>;
|
|
2466
1387
|
id: z.ZodString;
|
|
2467
1388
|
}, 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>;
|
|
1389
|
+
export declare const zUpdateFleetBody: z.ZodObject<{
|
|
1390
|
+
limits: z.ZodOptional<z.ZodObject<{
|
|
1391
|
+
cpu: z.ZodNumber;
|
|
1392
|
+
}, z.core.$strip>>;
|
|
1393
|
+
gcp: z.ZodOptional<z.ZodObject<{
|
|
1394
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1395
|
+
project: z.ZodString;
|
|
1396
|
+
}, z.core.$strip>>;
|
|
1397
|
+
hetzner: z.ZodOptional<z.ZodObject<{
|
|
1398
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1399
|
+
apiKey: z.ZodString;
|
|
1400
|
+
}, z.core.$strip>>;
|
|
1401
|
+
aws: z.ZodOptional<z.ZodObject<{
|
|
1402
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1403
|
+
controllerRoleArn: z.ZodString;
|
|
1404
|
+
}, z.core.$strip>>;
|
|
1405
|
+
}, z.core.$strip>;
|
|
1406
|
+
export declare const zUpdateFleetPath: z.ZodObject<{
|
|
1407
|
+
cluster_id: z.ZodString;
|
|
1408
|
+
fleet_name: z.ZodString;
|
|
2491
1409
|
}, z.core.$strip>;
|
|
2492
1410
|
/**
|
|
2493
1411
|
* Successfully updated.
|
|
2494
1412
|
*/
|
|
2495
1413
|
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>;
|
|
1414
|
+
export declare const zQueryClusterPath: z.ZodObject<{
|
|
1415
|
+
cluster_id: z.ZodString;
|
|
2507
1416
|
}, z.core.$strip>;
|
|
2508
1417
|
/**
|
|
2509
1418
|
* An array of clusters
|
|
@@ -2514,13 +1423,12 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
|
2514
1423
|
basic: "basic";
|
|
2515
1424
|
pro: "pro";
|
|
2516
1425
|
}>;
|
|
2517
|
-
region: z.ZodOptional<z.ZodEnum<{
|
|
2518
|
-
staging: "staging";
|
|
1426
|
+
region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1427
|
+
"staging-1a": "staging-1a";
|
|
2519
1428
|
"northamerica-central-1": "northamerica-central-1";
|
|
2520
1429
|
"europe-central-1a": "europe-central-1a";
|
|
2521
1430
|
"northamerica-central-1a": "northamerica-central-1a";
|
|
2522
|
-
}
|
|
2523
|
-
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1431
|
+
}>>>;
|
|
2524
1432
|
id: z.ZodUUID;
|
|
2525
1433
|
status: z.ZodEnum<{
|
|
2526
1434
|
deleted: "deleted";
|
|
@@ -2534,51 +1442,48 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
|
2534
1442
|
endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
2535
1443
|
"": "";
|
|
2536
1444
|
}>]>>;
|
|
1445
|
+
endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
1446
|
+
"": "";
|
|
1447
|
+
}>]>>;
|
|
2537
1448
|
certificate_ca: z.ZodOptional<z.ZodString>;
|
|
2538
1449
|
version_current: z.ZodOptional<z.ZodString>;
|
|
2539
1450
|
created_at: z.ZodOptional<z.ZodString>;
|
|
2540
1451
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
2541
1452
|
ready: z.ZodOptional<z.ZodBoolean>;
|
|
1453
|
+
version_channel: z.ZodOptional<z.ZodString>;
|
|
2542
1454
|
}, z.core.$strip>>;
|
|
2543
|
-
export declare const
|
|
2544
|
-
|
|
2545
|
-
|
|
2546
|
-
|
|
2547
|
-
|
|
2548
|
-
|
|
2549
|
-
|
|
2550
|
-
|
|
2551
|
-
|
|
2552
|
-
|
|
2553
|
-
|
|
2554
|
-
|
|
2555
|
-
|
|
2556
|
-
|
|
2557
|
-
|
|
2558
|
-
|
|
2559
|
-
|
|
1455
|
+
export declare const zCreateClusterBody: z.ZodObject<{
|
|
1456
|
+
name: z.ZodString;
|
|
1457
|
+
tier: z.ZodEnum<{
|
|
1458
|
+
basic: "basic";
|
|
1459
|
+
pro: "pro";
|
|
1460
|
+
}>;
|
|
1461
|
+
region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1462
|
+
"staging-1a": "staging-1a";
|
|
1463
|
+
"northamerica-central-1": "northamerica-central-1";
|
|
1464
|
+
"europe-central-1a": "europe-central-1a";
|
|
1465
|
+
"northamerica-central-1a": "northamerica-central-1a";
|
|
1466
|
+
}>>>;
|
|
1467
|
+
version_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1468
|
+
"1.x.x-cfke.x": "1.x.x-cfke.x";
|
|
1469
|
+
"1.31.x-cfke.x": "1.31.x-cfke.x";
|
|
1470
|
+
"1.32.x-cfke.x": "1.32.x-cfke.x";
|
|
1471
|
+
"1.33.x-cfke.x": "1.33.x-cfke.x";
|
|
1472
|
+
}>>>;
|
|
2560
1473
|
}, z.core.$strip>;
|
|
2561
1474
|
/**
|
|
2562
1475
|
* Successfully created. Returns created Cluster ID.
|
|
2563
1476
|
*/
|
|
2564
1477
|
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>;
|
|
1478
|
+
export declare const zDeleteClusterPath: z.ZodObject<{
|
|
1479
|
+
cluster_id: z.ZodString;
|
|
2571
1480
|
}, z.core.$strip>;
|
|
2572
1481
|
/**
|
|
2573
1482
|
* Successfully deleted.
|
|
2574
1483
|
*/
|
|
2575
1484
|
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>;
|
|
1485
|
+
export declare const zGetClusterPath: z.ZodObject<{
|
|
1486
|
+
cluster_id: z.ZodString;
|
|
2582
1487
|
}, z.core.$strip>;
|
|
2583
1488
|
/**
|
|
2584
1489
|
* Returns a single object containing cluster details.
|
|
@@ -2589,13 +1494,12 @@ export declare const zGetClusterResponse: z.ZodObject<{
|
|
|
2589
1494
|
basic: "basic";
|
|
2590
1495
|
pro: "pro";
|
|
2591
1496
|
}>;
|
|
2592
|
-
region: z.ZodOptional<z.ZodEnum<{
|
|
2593
|
-
staging: "staging";
|
|
1497
|
+
region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1498
|
+
"staging-1a": "staging-1a";
|
|
2594
1499
|
"northamerica-central-1": "northamerica-central-1";
|
|
2595
1500
|
"europe-central-1a": "europe-central-1a";
|
|
2596
1501
|
"northamerica-central-1a": "northamerica-central-1a";
|
|
2597
|
-
}
|
|
2598
|
-
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1502
|
+
}>>>;
|
|
2599
1503
|
id: z.ZodUUID;
|
|
2600
1504
|
status: z.ZodEnum<{
|
|
2601
1505
|
deleted: "deleted";
|
|
@@ -2609,25 +1513,26 @@ export declare const zGetClusterResponse: z.ZodObject<{
|
|
|
2609
1513
|
endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
2610
1514
|
"": "";
|
|
2611
1515
|
}>]>>;
|
|
1516
|
+
endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
1517
|
+
"": "";
|
|
1518
|
+
}>]>>;
|
|
2612
1519
|
certificate_ca: z.ZodOptional<z.ZodString>;
|
|
2613
1520
|
version_current: z.ZodOptional<z.ZodString>;
|
|
2614
1521
|
created_at: z.ZodOptional<z.ZodString>;
|
|
2615
1522
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
2616
1523
|
ready: z.ZodOptional<z.ZodBoolean>;
|
|
1524
|
+
version_channel: z.ZodOptional<z.ZodString>;
|
|
2617
1525
|
}, 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>;
|
|
1526
|
+
export declare const zUpdateClusterBody: z.ZodObject<{
|
|
1527
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1528
|
+
tier: z.ZodEnum<{
|
|
1529
|
+
basic: "basic";
|
|
1530
|
+
pro: "pro";
|
|
1531
|
+
}>;
|
|
1532
|
+
version_channel: z.ZodOptional<z.ZodString>;
|
|
1533
|
+
}, z.core.$strip>;
|
|
1534
|
+
export declare const zUpdateClusterPath: z.ZodObject<{
|
|
1535
|
+
cluster_id: z.ZodString;
|
|
2631
1536
|
}, z.core.$strip>;
|
|
2632
1537
|
/**
|
|
2633
1538
|
* Successfully updated. Returns updated cluster details.
|
|
@@ -2638,13 +1543,12 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
|
2638
1543
|
basic: "basic";
|
|
2639
1544
|
pro: "pro";
|
|
2640
1545
|
}>;
|
|
2641
|
-
region: z.ZodOptional<z.ZodEnum<{
|
|
2642
|
-
staging: "staging";
|
|
1546
|
+
region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1547
|
+
"staging-1a": "staging-1a";
|
|
2643
1548
|
"northamerica-central-1": "northamerica-central-1";
|
|
2644
1549
|
"europe-central-1a": "europe-central-1a";
|
|
2645
1550
|
"northamerica-central-1a": "northamerica-central-1a";
|
|
2646
|
-
}
|
|
2647
|
-
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1551
|
+
}>>>;
|
|
2648
1552
|
id: z.ZodUUID;
|
|
2649
1553
|
status: z.ZodEnum<{
|
|
2650
1554
|
deleted: "deleted";
|
|
@@ -2658,18 +1562,18 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
|
2658
1562
|
endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
2659
1563
|
"": "";
|
|
2660
1564
|
}>]>>;
|
|
1565
|
+
endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
1566
|
+
"": "";
|
|
1567
|
+
}>]>>;
|
|
2661
1568
|
certificate_ca: z.ZodOptional<z.ZodString>;
|
|
2662
1569
|
version_current: z.ZodOptional<z.ZodString>;
|
|
2663
1570
|
created_at: z.ZodOptional<z.ZodString>;
|
|
2664
1571
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
2665
1572
|
ready: z.ZodOptional<z.ZodBoolean>;
|
|
1573
|
+
version_channel: z.ZodOptional<z.ZodString>;
|
|
2666
1574
|
}, 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>;
|
|
1575
|
+
export declare const zGetJoinInformationPath: z.ZodObject<{
|
|
1576
|
+
cluster_id: z.ZodString;
|
|
2673
1577
|
}, z.core.$strip>;
|
|
2674
1578
|
/**
|
|
2675
1579
|
* An object of cluster join information
|
|
@@ -2677,6 +1581,7 @@ export declare const zGetJoinInformationData: z.ZodObject<{
|
|
|
2677
1581
|
export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
2678
1582
|
certificate_authority: z.ZodString;
|
|
2679
1583
|
endpoint: z.ZodURL;
|
|
1584
|
+
cluster_dns: z.ZodString;
|
|
2680
1585
|
auth_key: z.ZodString;
|
|
2681
1586
|
bootstrap_token: z.ZodString;
|
|
2682
1587
|
versions: z.ZodObject<{
|
|
@@ -2691,11 +1596,6 @@ export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
|
2691
1596
|
gcp_workload_identity_provider: z.ZodString;
|
|
2692
1597
|
}, z.core.$strip>;
|
|
2693
1598
|
}, 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
1599
|
/**
|
|
2700
1600
|
* An array of invites
|
|
2701
1601
|
*/
|
|
@@ -2706,12 +1606,8 @@ export declare const zListInvitesResponse: z.ZodArray<z.ZodObject<{
|
|
|
2706
1606
|
email: z.ZodOptional<z.ZodEmail>;
|
|
2707
1607
|
code: z.ZodOptional<z.ZodString>;
|
|
2708
1608
|
}, 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>;
|
|
1609
|
+
export declare const zCreateInviteBody: z.ZodObject<{
|
|
1610
|
+
email: z.ZodOptional<z.ZodString>;
|
|
2715
1611
|
}, z.core.$strip>;
|
|
2716
1612
|
/**
|
|
2717
1613
|
* Successfully created. Returns created invite details.
|
|
@@ -2723,12 +1619,8 @@ export declare const zCreateInviteResponse: z.ZodObject<{
|
|
|
2723
1619
|
email: z.ZodOptional<z.ZodEmail>;
|
|
2724
1620
|
code: z.ZodOptional<z.ZodString>;
|
|
2725
1621
|
}, 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>;
|
|
1622
|
+
export declare const zGetInvitePath: z.ZodObject<{
|
|
1623
|
+
code: z.ZodString;
|
|
2732
1624
|
}, z.core.$strip>;
|
|
2733
1625
|
/**
|
|
2734
1626
|
* Returns a single object containing invite details.
|
|
@@ -2740,65 +1632,65 @@ export declare const zGetInviteResponse: z.ZodObject<{
|
|
|
2740
1632
|
email: z.ZodOptional<z.ZodEmail>;
|
|
2741
1633
|
code: z.ZodOptional<z.ZodString>;
|
|
2742
1634
|
}, 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>;
|
|
1635
|
+
export declare const zDeleteInvitePath: z.ZodObject<{
|
|
1636
|
+
email: z.ZodString;
|
|
2754
1637
|
}, z.core.$strip>;
|
|
2755
1638
|
/**
|
|
2756
1639
|
* An array of chart listings in the marketplace.
|
|
2757
1640
|
*/
|
|
2758
1641
|
export declare const zListMarketplaceChartsResponse: z.ZodArray<z.ZodObject<{
|
|
2759
|
-
id: z.ZodString;
|
|
2760
1642
|
name: z.ZodString;
|
|
2761
|
-
|
|
2762
|
-
description: z.ZodString;
|
|
2763
|
-
logoUrl: z.ZodString;
|
|
2764
|
-
longDescription: z.ZodString;
|
|
2765
|
-
categories: z.ZodArray<z.ZodString>;
|
|
1643
|
+
versions: z.ZodArray<z.ZodString>;
|
|
2766
1644
|
version_channels: z.ZodArray<z.ZodString>;
|
|
2767
|
-
|
|
1645
|
+
latestVersion: z.ZodString;
|
|
1646
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
1647
|
+
name: z.ZodString;
|
|
2768
1648
|
version: z.ZodString;
|
|
2769
|
-
|
|
2770
|
-
|
|
1649
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1650
|
+
appVersion: z.ZodOptional<z.ZodString>;
|
|
1651
|
+
apiVersion: z.ZodOptional<z.ZodString>;
|
|
1652
|
+
keywords: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1653
|
+
home: z.ZodOptional<z.ZodString>;
|
|
1654
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1655
|
+
sources: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1656
|
+
maintainers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1657
|
+
name: z.ZodString;
|
|
1658
|
+
email: z.ZodOptional<z.ZodString>;
|
|
1659
|
+
}, z.core.$strip>>>;
|
|
2771
1660
|
}, z.core.$strip>>;
|
|
2772
1661
|
}, z.core.$strip>>;
|
|
2773
|
-
export declare const
|
|
2774
|
-
|
|
2775
|
-
|
|
2776
|
-
listing_id: z.ZodString;
|
|
2777
|
-
}, z.core.$strip>;
|
|
2778
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1662
|
+
export declare const zGetMarketplaceChartFilesPath: z.ZodObject<{
|
|
1663
|
+
chart_name: z.ZodString;
|
|
1664
|
+
version_channel: z.ZodString;
|
|
2779
1665
|
}, z.core.$strip>;
|
|
2780
1666
|
/**
|
|
2781
|
-
* Returns an object containing the chart
|
|
1667
|
+
* Returns an object containing the chart files for the latest matching version.
|
|
2782
1668
|
*/
|
|
2783
|
-
export declare const
|
|
2784
|
-
|
|
2785
|
-
|
|
2786
|
-
|
|
2787
|
-
|
|
2788
|
-
|
|
2789
|
-
|
|
2790
|
-
|
|
2791
|
-
|
|
2792
|
-
|
|
2793
|
-
|
|
2794
|
-
|
|
2795
|
-
|
|
2796
|
-
}, z.core.$strip>>;
|
|
1669
|
+
export declare const zGetMarketplaceChartFilesResponse: z.ZodObject<{
|
|
1670
|
+
chartYaml: z.ZodOptional<z.ZodString>;
|
|
1671
|
+
valuesYaml: z.ZodOptional<z.ZodString>;
|
|
1672
|
+
valuesSchemaJson: z.ZodOptional<z.ZodString>;
|
|
1673
|
+
}, z.core.$strip>;
|
|
1674
|
+
/**
|
|
1675
|
+
* JSON-RPC 2.0 request payload
|
|
1676
|
+
*/
|
|
1677
|
+
export declare const zPostMcpBody: z.ZodObject<{
|
|
1678
|
+
jsonrpc: z.ZodOptional<z.ZodString>;
|
|
1679
|
+
method: z.ZodOptional<z.ZodString>;
|
|
1680
|
+
id: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
1681
|
+
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2797
1682
|
}, z.core.$strip>;
|
|
2798
|
-
|
|
2799
|
-
|
|
2800
|
-
|
|
2801
|
-
|
|
1683
|
+
/**
|
|
1684
|
+
* JSON-RPC 2.0 success or error response
|
|
1685
|
+
*/
|
|
1686
|
+
export declare const zPostMcpResponse: z.ZodObject<{
|
|
1687
|
+
jsonrpc: z.ZodOptional<z.ZodString>;
|
|
1688
|
+
id: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
1689
|
+
result: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1690
|
+
error: z.ZodOptional<z.ZodObject<{
|
|
1691
|
+
code: z.ZodOptional<z.ZodInt>;
|
|
1692
|
+
message: z.ZodOptional<z.ZodString>;
|
|
1693
|
+
}, z.core.$strip>>;
|
|
2802
1694
|
}, z.core.$strip>;
|
|
2803
1695
|
/**
|
|
2804
1696
|
* Returns a single object containing organization details.
|
|
@@ -2819,6 +1711,7 @@ export declare const zGetOrganizationResponse: z.ZodObject<{
|
|
|
2819
1711
|
id: z.ZodString;
|
|
2820
1712
|
label: z.ZodString;
|
|
2821
1713
|
}, z.core.$strip>>;
|
|
1714
|
+
cfcr_storage_gb: z.ZodInt;
|
|
2822
1715
|
}, z.core.$strip>;
|
|
2823
1716
|
status: z.ZodEnum<{
|
|
2824
1717
|
active: "active";
|
|
@@ -2826,22 +1719,277 @@ export declare const zGetOrganizationResponse: z.ZodObject<{
|
|
|
2826
1719
|
suspended: "suspended";
|
|
2827
1720
|
}>;
|
|
2828
1721
|
}, z.core.$strip>;
|
|
2829
|
-
export declare const
|
|
2830
|
-
|
|
2831
|
-
|
|
2832
|
-
|
|
2833
|
-
|
|
2834
|
-
|
|
2835
|
-
|
|
2836
|
-
|
|
2837
|
-
|
|
2838
|
-
|
|
1722
|
+
export declare const zCreateOrganizationBody: z.ZodObject<{
|
|
1723
|
+
email: z.ZodEmail;
|
|
1724
|
+
first_name: z.ZodString;
|
|
1725
|
+
last_name: z.ZodString;
|
|
1726
|
+
company_name: z.ZodString;
|
|
1727
|
+
password: z.ZodString;
|
|
1728
|
+
}, z.core.$strip>;
|
|
1729
|
+
/**
|
|
1730
|
+
* List of repositories
|
|
1731
|
+
*/
|
|
1732
|
+
export declare const zListRepositoriesResponse: z.ZodArray<z.ZodObject<{
|
|
1733
|
+
name: z.ZodString;
|
|
1734
|
+
region: z.ZodString;
|
|
1735
|
+
uri: z.ZodString;
|
|
1736
|
+
}, z.core.$strip>>;
|
|
1737
|
+
export declare const zListTagsPath: z.ZodObject<{
|
|
1738
|
+
region: z.ZodString;
|
|
1739
|
+
repository: z.ZodString;
|
|
1740
|
+
}, z.core.$strip>;
|
|
1741
|
+
/**
|
|
1742
|
+
* Repository with tags
|
|
1743
|
+
*/
|
|
1744
|
+
export declare const zListTagsResponse: z.ZodObject<{
|
|
1745
|
+
name: z.ZodString;
|
|
1746
|
+
region: z.ZodString;
|
|
1747
|
+
uri: z.ZodString;
|
|
1748
|
+
tags: z.ZodArray<z.ZodObject<{
|
|
1749
|
+
name: z.ZodString;
|
|
1750
|
+
size: z.ZodNumber;
|
|
1751
|
+
mediaType: z.ZodOptional<z.ZodString>;
|
|
1752
|
+
platforms: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1753
|
+
}, z.core.$strip>>;
|
|
1754
|
+
totalSize: z.ZodNumber;
|
|
1755
|
+
}, z.core.$strip>;
|
|
1756
|
+
export declare const zDeleteTagPath: z.ZodObject<{
|
|
1757
|
+
region: z.ZodString;
|
|
1758
|
+
repository: z.ZodString;
|
|
1759
|
+
tag: z.ZodString;
|
|
1760
|
+
}, z.core.$strip>;
|
|
1761
|
+
export declare const zGetTagPath: z.ZodObject<{
|
|
1762
|
+
region: z.ZodString;
|
|
1763
|
+
repository: z.ZodString;
|
|
1764
|
+
tag: z.ZodString;
|
|
1765
|
+
}, z.core.$strip>;
|
|
1766
|
+
/**
|
|
1767
|
+
* Tag details
|
|
1768
|
+
*/
|
|
1769
|
+
export declare const zGetTagResponse: z.ZodObject<{
|
|
1770
|
+
name: z.ZodString;
|
|
1771
|
+
digest: z.ZodString;
|
|
1772
|
+
mediaType: z.ZodOptional<z.ZodString>;
|
|
1773
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
1774
|
+
size: z.ZodNumber;
|
|
1775
|
+
}, z.core.$strip>>;
|
|
1776
|
+
layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1777
|
+
digest: z.ZodOptional<z.ZodString>;
|
|
1778
|
+
size: z.ZodNumber;
|
|
1779
|
+
}, z.core.$strip>>>;
|
|
1780
|
+
manifests: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1781
|
+
digest: z.ZodString;
|
|
1782
|
+
platform: z.ZodOptional<z.ZodObject<{
|
|
1783
|
+
architecture: z.ZodString;
|
|
1784
|
+
os: z.ZodString;
|
|
1785
|
+
variant: z.ZodOptional<z.ZodString>;
|
|
1786
|
+
}, z.core.$strip>>;
|
|
1787
|
+
layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1788
|
+
digest: z.ZodOptional<z.ZodString>;
|
|
1789
|
+
size: z.ZodNumber;
|
|
1790
|
+
}, z.core.$strip>>>;
|
|
1791
|
+
size: z.ZodOptional<z.ZodNumber>;
|
|
1792
|
+
}, z.core.$strip>>>;
|
|
1793
|
+
size: z.ZodNumber;
|
|
1794
|
+
region: z.ZodString;
|
|
1795
|
+
repository: z.ZodString;
|
|
1796
|
+
uri: z.ZodString;
|
|
1797
|
+
}, z.core.$strip>;
|
|
1798
|
+
/**
|
|
1799
|
+
* Tickets for the organization.
|
|
1800
|
+
*/
|
|
1801
|
+
export declare const zListTicketsResponse: z.ZodObject<{
|
|
1802
|
+
items: z.ZodArray<z.ZodObject<{
|
|
1803
|
+
id: z.ZodString;
|
|
1804
|
+
status: z.ZodEnum<{
|
|
1805
|
+
closed: "closed";
|
|
1806
|
+
waiting_on_us: "waiting_on_us";
|
|
1807
|
+
waiting_on_user: "waiting_on_user";
|
|
1808
|
+
}>;
|
|
1809
|
+
category: z.ZodEnum<{
|
|
1810
|
+
billing: "billing";
|
|
1811
|
+
technical: "technical";
|
|
1812
|
+
general: "general";
|
|
1813
|
+
}>;
|
|
1814
|
+
summary: z.ZodString;
|
|
1815
|
+
closed_at: z.ZodOptional<z.ZodISODateTime>;
|
|
1816
|
+
date_created: z.ZodISODateTime;
|
|
1817
|
+
date_updated: z.ZodISODateTime;
|
|
1818
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1819
|
+
id: z.ZodString;
|
|
1820
|
+
type: z.ZodEnum<{
|
|
1821
|
+
customer_reply: "customer_reply";
|
|
1822
|
+
agent_reply: "agent_reply";
|
|
1823
|
+
}>;
|
|
1824
|
+
body: z.ZodString;
|
|
1825
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
1826
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
1827
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1828
|
+
id: z.ZodString;
|
|
1829
|
+
filename: z.ZodString;
|
|
1830
|
+
content_type: z.ZodString;
|
|
1831
|
+
size: z.ZodInt;
|
|
1832
|
+
}, z.core.$strip>>>;
|
|
1833
|
+
date_created: z.ZodISODateTime;
|
|
1834
|
+
}, z.core.$strip>>>;
|
|
1835
|
+
}, z.core.$strip>>;
|
|
1836
|
+
}, z.core.$strip>;
|
|
1837
|
+
export declare const zCreateTicketBody: z.ZodObject<{
|
|
1838
|
+
payload: z.ZodOptional<z.ZodString>;
|
|
1839
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1840
|
+
}, z.core.$strip>;
|
|
1841
|
+
/**
|
|
1842
|
+
* Ticket created.
|
|
1843
|
+
*/
|
|
1844
|
+
export declare const zCreateTicketResponse: z.ZodObject<{
|
|
1845
|
+
id: z.ZodString;
|
|
1846
|
+
status: z.ZodEnum<{
|
|
1847
|
+
closed: "closed";
|
|
1848
|
+
waiting_on_us: "waiting_on_us";
|
|
1849
|
+
waiting_on_user: "waiting_on_user";
|
|
1850
|
+
}>;
|
|
1851
|
+
category: z.ZodEnum<{
|
|
1852
|
+
billing: "billing";
|
|
1853
|
+
technical: "technical";
|
|
1854
|
+
general: "general";
|
|
1855
|
+
}>;
|
|
1856
|
+
summary: z.ZodString;
|
|
1857
|
+
closed_at: z.ZodOptional<z.ZodISODateTime>;
|
|
1858
|
+
date_created: z.ZodISODateTime;
|
|
1859
|
+
date_updated: z.ZodISODateTime;
|
|
1860
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1861
|
+
id: z.ZodString;
|
|
1862
|
+
type: z.ZodEnum<{
|
|
1863
|
+
customer_reply: "customer_reply";
|
|
1864
|
+
agent_reply: "agent_reply";
|
|
1865
|
+
}>;
|
|
1866
|
+
body: z.ZodString;
|
|
1867
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
1868
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
1869
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1870
|
+
id: z.ZodString;
|
|
1871
|
+
filename: z.ZodString;
|
|
1872
|
+
content_type: z.ZodString;
|
|
1873
|
+
size: z.ZodInt;
|
|
1874
|
+
}, z.core.$strip>>>;
|
|
1875
|
+
date_created: z.ZodISODateTime;
|
|
1876
|
+
}, z.core.$strip>>>;
|
|
1877
|
+
}, z.core.$strip>;
|
|
1878
|
+
export declare const zCloseTicketPath: z.ZodObject<{
|
|
1879
|
+
ticket_id: z.ZodString;
|
|
1880
|
+
}, z.core.$strip>;
|
|
1881
|
+
/**
|
|
1882
|
+
* Ticket closed.
|
|
1883
|
+
*/
|
|
1884
|
+
export declare const zCloseTicketResponse: z.ZodObject<{
|
|
1885
|
+
id: z.ZodString;
|
|
1886
|
+
status: z.ZodEnum<{
|
|
1887
|
+
closed: "closed";
|
|
1888
|
+
waiting_on_us: "waiting_on_us";
|
|
1889
|
+
waiting_on_user: "waiting_on_user";
|
|
1890
|
+
}>;
|
|
1891
|
+
category: z.ZodEnum<{
|
|
1892
|
+
billing: "billing";
|
|
1893
|
+
technical: "technical";
|
|
1894
|
+
general: "general";
|
|
1895
|
+
}>;
|
|
1896
|
+
summary: z.ZodString;
|
|
1897
|
+
closed_at: z.ZodOptional<z.ZodISODateTime>;
|
|
1898
|
+
date_created: z.ZodISODateTime;
|
|
1899
|
+
date_updated: z.ZodISODateTime;
|
|
1900
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1901
|
+
id: z.ZodString;
|
|
1902
|
+
type: z.ZodEnum<{
|
|
1903
|
+
customer_reply: "customer_reply";
|
|
1904
|
+
agent_reply: "agent_reply";
|
|
1905
|
+
}>;
|
|
1906
|
+
body: z.ZodString;
|
|
1907
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
1908
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
1909
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1910
|
+
id: z.ZodString;
|
|
1911
|
+
filename: z.ZodString;
|
|
1912
|
+
content_type: z.ZodString;
|
|
1913
|
+
size: z.ZodInt;
|
|
1914
|
+
}, z.core.$strip>>>;
|
|
1915
|
+
date_created: z.ZodISODateTime;
|
|
1916
|
+
}, z.core.$strip>>>;
|
|
1917
|
+
}, z.core.$strip>;
|
|
1918
|
+
export declare const zGetTicketPath: z.ZodObject<{
|
|
1919
|
+
ticket_id: z.ZodString;
|
|
1920
|
+
}, z.core.$strip>;
|
|
1921
|
+
/**
|
|
1922
|
+
* Ticket with messages (internal notes excluded).
|
|
1923
|
+
*/
|
|
1924
|
+
export declare const zGetTicketResponse: z.ZodObject<{
|
|
1925
|
+
id: z.ZodString;
|
|
1926
|
+
status: z.ZodEnum<{
|
|
1927
|
+
closed: "closed";
|
|
1928
|
+
waiting_on_us: "waiting_on_us";
|
|
1929
|
+
waiting_on_user: "waiting_on_user";
|
|
1930
|
+
}>;
|
|
1931
|
+
category: z.ZodEnum<{
|
|
1932
|
+
billing: "billing";
|
|
1933
|
+
technical: "technical";
|
|
1934
|
+
general: "general";
|
|
1935
|
+
}>;
|
|
1936
|
+
summary: z.ZodString;
|
|
1937
|
+
closed_at: z.ZodOptional<z.ZodISODateTime>;
|
|
1938
|
+
date_created: z.ZodISODateTime;
|
|
1939
|
+
date_updated: z.ZodISODateTime;
|
|
1940
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1941
|
+
id: z.ZodString;
|
|
1942
|
+
type: z.ZodEnum<{
|
|
1943
|
+
customer_reply: "customer_reply";
|
|
1944
|
+
agent_reply: "agent_reply";
|
|
1945
|
+
}>;
|
|
1946
|
+
body: z.ZodString;
|
|
1947
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
1948
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
1949
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1950
|
+
id: z.ZodString;
|
|
1951
|
+
filename: z.ZodString;
|
|
1952
|
+
content_type: z.ZodString;
|
|
1953
|
+
size: z.ZodInt;
|
|
1954
|
+
}, z.core.$strip>>>;
|
|
1955
|
+
date_created: z.ZodISODateTime;
|
|
1956
|
+
}, z.core.$strip>>>;
|
|
2839
1957
|
}, z.core.$strip>;
|
|
2840
|
-
export declare const
|
|
2841
|
-
|
|
2842
|
-
|
|
2843
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1958
|
+
export declare const zReplyTicketBody: z.ZodObject<{
|
|
1959
|
+
payload: z.ZodOptional<z.ZodString>;
|
|
1960
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2844
1961
|
}, z.core.$strip>;
|
|
1962
|
+
export declare const zReplyTicketPath: z.ZodObject<{
|
|
1963
|
+
ticket_id: z.ZodString;
|
|
1964
|
+
}, z.core.$strip>;
|
|
1965
|
+
/**
|
|
1966
|
+
* Reply appended.
|
|
1967
|
+
*/
|
|
1968
|
+
export declare const zReplyTicketResponse: z.ZodObject<{
|
|
1969
|
+
id: z.ZodString;
|
|
1970
|
+
type: z.ZodEnum<{
|
|
1971
|
+
customer_reply: "customer_reply";
|
|
1972
|
+
agent_reply: "agent_reply";
|
|
1973
|
+
}>;
|
|
1974
|
+
body: z.ZodString;
|
|
1975
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
1976
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
1977
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1978
|
+
id: z.ZodString;
|
|
1979
|
+
filename: z.ZodString;
|
|
1980
|
+
content_type: z.ZodString;
|
|
1981
|
+
size: z.ZodInt;
|
|
1982
|
+
}, z.core.$strip>>>;
|
|
1983
|
+
date_created: z.ZodISODateTime;
|
|
1984
|
+
}, z.core.$strip>;
|
|
1985
|
+
export declare const zGetTicketAttachmentPath: z.ZodObject<{
|
|
1986
|
+
ticket_id: z.ZodString;
|
|
1987
|
+
attachment_id: z.ZodString;
|
|
1988
|
+
}, z.core.$strip>;
|
|
1989
|
+
/**
|
|
1990
|
+
* Attachment binary stream.
|
|
1991
|
+
*/
|
|
1992
|
+
export declare const zGetTicketAttachmentResponse: z.ZodString;
|
|
2845
1993
|
/**
|
|
2846
1994
|
* Returns a list of access token details with masked secrets.
|
|
2847
1995
|
*/
|
|
@@ -2855,16 +2003,12 @@ export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
|
|
|
2855
2003
|
secret: z.ZodOptional<z.ZodString>;
|
|
2856
2004
|
date_created: z.ZodISODateTime;
|
|
2857
2005
|
}, 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>;
|
|
2006
|
+
export declare const zCreateTokenBody: z.ZodObject<{
|
|
2007
|
+
name: z.ZodString;
|
|
2008
|
+
role: z.ZodEnum<{
|
|
2009
|
+
Administrator: "Administrator";
|
|
2010
|
+
User: "User";
|
|
2011
|
+
}>;
|
|
2868
2012
|
}, z.core.$strip>;
|
|
2869
2013
|
/**
|
|
2870
2014
|
* Successfully created. Returns created token details with unmasked/raw secret.
|
|
@@ -2879,19 +2023,11 @@ export declare const zCreateTokenResponse: z.ZodObject<{
|
|
|
2879
2023
|
secret: z.ZodOptional<z.ZodString>;
|
|
2880
2024
|
date_created: z.ZodISODateTime;
|
|
2881
2025
|
}, 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>;
|
|
2026
|
+
export declare const zDeleteTokenPath: z.ZodObject<{
|
|
2027
|
+
token_id: z.ZodString;
|
|
2888
2028
|
}, 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>;
|
|
2029
|
+
export declare const zGetTokenPath: z.ZodObject<{
|
|
2030
|
+
token_id: z.ZodString;
|
|
2895
2031
|
}, z.core.$strip>;
|
|
2896
2032
|
/**
|
|
2897
2033
|
* Returns access token details with masked secret.
|
|
@@ -2906,18 +2042,15 @@ export declare const zGetTokenResponse: z.ZodObject<{
|
|
|
2906
2042
|
secret: z.ZodOptional<z.ZodString>;
|
|
2907
2043
|
date_created: z.ZodISODateTime;
|
|
2908
2044
|
}, 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>;
|
|
2045
|
+
export declare const zUpdateTokenBody: z.ZodObject<{
|
|
2046
|
+
name: z.ZodOptional<z.ZodString>;
|
|
2047
|
+
role: z.ZodOptional<z.ZodEnum<{
|
|
2048
|
+
Administrator: "Administrator";
|
|
2049
|
+
User: "User";
|
|
2050
|
+
}>>;
|
|
2051
|
+
}, z.core.$strip>;
|
|
2052
|
+
export declare const zUpdateTokenPath: z.ZodObject<{
|
|
2053
|
+
token_id: z.ZodString;
|
|
2921
2054
|
}, z.core.$strip>;
|
|
2922
2055
|
/**
|
|
2923
2056
|
* Successfully updated. Returns updated token details with masked secret.
|
|
@@ -2932,12 +2065,8 @@ export declare const zUpdateTokenResponse: z.ZodObject<{
|
|
|
2932
2065
|
secret: z.ZodOptional<z.ZodString>;
|
|
2933
2066
|
date_created: z.ZodISODateTime;
|
|
2934
2067
|
}, 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>;
|
|
2068
|
+
export declare const zRegenerateTokenPath: z.ZodObject<{
|
|
2069
|
+
token_id: z.ZodString;
|
|
2941
2070
|
}, z.core.$strip>;
|
|
2942
2071
|
/**
|
|
2943
2072
|
* Successfully updated. Returns updated token details with unmasked / raw secret.
|
|
@@ -2952,12 +2081,8 @@ export declare const zRegenerateTokenResponse: z.ZodObject<{
|
|
|
2952
2081
|
secret: z.ZodOptional<z.ZodString>;
|
|
2953
2082
|
date_created: z.ZodISODateTime;
|
|
2954
2083
|
}, 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>;
|
|
2084
|
+
export declare const zListUserOrganizationsPath: z.ZodObject<{
|
|
2085
|
+
email: z.ZodString;
|
|
2961
2086
|
}, z.core.$strip>;
|
|
2962
2087
|
/**
|
|
2963
2088
|
* An array of organizations the user belongs to.
|
|
@@ -2966,11 +2091,6 @@ export declare const zListUserOrganizationsResponse: z.ZodArray<z.ZodObject<{
|
|
|
2966
2091
|
realm: z.ZodOptional<z.ZodString>;
|
|
2967
2092
|
displayName: z.ZodOptional<z.ZodString>;
|
|
2968
2093
|
}, 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
2094
|
/**
|
|
2975
2095
|
* An array of users
|
|
2976
2096
|
*/
|
|
@@ -2989,24 +2109,20 @@ export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
|
|
|
2989
2109
|
id: z.ZodUUID;
|
|
2990
2110
|
date_created: z.ZodISODateTime;
|
|
2991
2111
|
}, 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>;
|
|
2112
|
+
export declare const zCreateUserBody: z.ZodObject<{
|
|
2113
|
+
email: z.ZodEmail;
|
|
2114
|
+
first_name: z.ZodString;
|
|
2115
|
+
last_name: z.ZodString;
|
|
2116
|
+
code: z.ZodString;
|
|
2117
|
+
password: z.ZodString;
|
|
2118
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
2119
|
+
active: "active";
|
|
2120
|
+
inactive: "inactive";
|
|
2121
|
+
}>>;
|
|
2122
|
+
role: z.ZodOptional<z.ZodEnum<{
|
|
2123
|
+
Administrator: "Administrator";
|
|
2124
|
+
User: "User";
|
|
2125
|
+
}>>;
|
|
3010
2126
|
}, z.core.$strip>;
|
|
3011
2127
|
/**
|
|
3012
2128
|
* Successfully created. Returns created user details.
|
|
@@ -3026,12 +2142,8 @@ export declare const zCreateUserResponse: z.ZodObject<{
|
|
|
3026
2142
|
id: z.ZodUUID;
|
|
3027
2143
|
date_created: z.ZodISODateTime;
|
|
3028
2144
|
}, 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>;
|
|
2145
|
+
export declare const zDeleteUserPath: z.ZodObject<{
|
|
2146
|
+
user_id: z.ZodString;
|
|
3035
2147
|
}, z.core.$strip>;
|
|
3036
2148
|
/**
|
|
3037
2149
|
* User profile information
|
|
@@ -3051,12 +2163,8 @@ export declare const zDeleteUserResponse: z.ZodObject<{
|
|
|
3051
2163
|
id: z.ZodUUID;
|
|
3052
2164
|
date_created: z.ZodISODateTime;
|
|
3053
2165
|
}, 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>;
|
|
2166
|
+
export declare const zGetUserPath: z.ZodObject<{
|
|
2167
|
+
user_id: z.ZodString;
|
|
3060
2168
|
}, z.core.$strip>;
|
|
3061
2169
|
/**
|
|
3062
2170
|
* User profile information
|
|
@@ -3076,24 +2184,21 @@ export declare const zGetUserResponse: z.ZodObject<{
|
|
|
3076
2184
|
id: z.ZodUUID;
|
|
3077
2185
|
date_created: z.ZodISODateTime;
|
|
3078
2186
|
}, 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>;
|
|
2187
|
+
export declare const zUpdateUserBody: z.ZodObject<{
|
|
2188
|
+
email: z.ZodOptional<z.ZodEmail>;
|
|
2189
|
+
first_name: z.ZodOptional<z.ZodString>;
|
|
2190
|
+
last_name: z.ZodOptional<z.ZodString>;
|
|
2191
|
+
role: z.ZodOptional<z.ZodEnum<{
|
|
2192
|
+
Administrator: "Administrator";
|
|
2193
|
+
User: "User";
|
|
2194
|
+
}>>;
|
|
2195
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
2196
|
+
active: "active";
|
|
2197
|
+
inactive: "inactive";
|
|
2198
|
+
}>>;
|
|
2199
|
+
}, z.core.$strip>;
|
|
2200
|
+
export declare const zUpdateUserPath: z.ZodObject<{
|
|
2201
|
+
user_id: z.ZodString;
|
|
3097
2202
|
}, z.core.$strip>;
|
|
3098
2203
|
/**
|
|
3099
2204
|
* Successfully created. Returns created user details.
|