@cloudfleet/sdk 0.0.1-aa1359b → 0.0.1-ac77333
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 +103 -119
- package/dist/client/client.gen.js.map +1 -1
- package/dist/client/types.gen.d.ts +5 -2
- package/dist/client/types.gen.d.ts.map +1 -1
- package/dist/client/utils.gen.d.ts +5 -1
- package/dist/client/utils.gen.d.ts.map +1 -1
- package/dist/client/utils.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 +3 -4
- package/dist/core/serverSentEvents.gen.js.map +1 -1
- package/dist/schemas.gen.d.ts +413 -1
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +503 -1
- package/dist/schemas.gen.js.map +1 -1
- package/dist/sdk.gen.d.ts +40 -9
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/sdk.gen.js +67 -9
- package/dist/sdk.gen.js.map +1 -1
- package/dist/services/kubernetes/api.d.ts +8 -8
- package/dist/types.gen.d.ts +358 -24
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +330 -25
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +149 -11
- package/dist/zod.gen.js.map +1 -1
- package/package.json +23 -4
package/dist/zod.gen.d.ts
CHANGED
|
@@ -199,18 +199,18 @@ export declare const zClusterCreateInput: z.ZodObject<{
|
|
|
199
199
|
basic: "basic";
|
|
200
200
|
pro: "pro";
|
|
201
201
|
}>;
|
|
202
|
-
region: z.ZodOptional<z.ZodEnum<{
|
|
202
|
+
region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
203
203
|
"staging-1a": "staging-1a";
|
|
204
204
|
"northamerica-central-1": "northamerica-central-1";
|
|
205
205
|
"europe-central-1a": "europe-central-1a";
|
|
206
206
|
"northamerica-central-1a": "northamerica-central-1a";
|
|
207
|
-
}
|
|
208
|
-
version_channel: z.ZodOptional<z.ZodEnum<{
|
|
207
|
+
}>>>;
|
|
208
|
+
version_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
209
209
|
"1.x.x-cfke.x": "1.x.x-cfke.x";
|
|
210
210
|
"1.31.x-cfke.x": "1.31.x-cfke.x";
|
|
211
211
|
"1.32.x-cfke.x": "1.32.x-cfke.x";
|
|
212
212
|
"1.33.x-cfke.x": "1.33.x-cfke.x";
|
|
213
|
-
}
|
|
213
|
+
}>>>;
|
|
214
214
|
}, z.core.$strip>;
|
|
215
215
|
export declare const zClusterJoinInformation: z.ZodObject<{
|
|
216
216
|
certificate_authority: z.ZodString;
|
|
@@ -236,12 +236,12 @@ export declare const zCluster: z.ZodObject<{
|
|
|
236
236
|
basic: "basic";
|
|
237
237
|
pro: "pro";
|
|
238
238
|
}>;
|
|
239
|
-
region: z.ZodOptional<z.ZodEnum<{
|
|
239
|
+
region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
240
240
|
"staging-1a": "staging-1a";
|
|
241
241
|
"northamerica-central-1": "northamerica-central-1";
|
|
242
242
|
"europe-central-1a": "europe-central-1a";
|
|
243
243
|
"northamerica-central-1a": "northamerica-central-1a";
|
|
244
|
-
}
|
|
244
|
+
}>>>;
|
|
245
245
|
id: z.ZodUUID;
|
|
246
246
|
status: z.ZodEnum<{
|
|
247
247
|
deleted: "deleted";
|
|
@@ -255,6 +255,9 @@ export declare const zCluster: z.ZodObject<{
|
|
|
255
255
|
endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
256
256
|
"": "";
|
|
257
257
|
}>]>>;
|
|
258
|
+
endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
259
|
+
"": "";
|
|
260
|
+
}>]>>;
|
|
258
261
|
certificate_ca: z.ZodOptional<z.ZodString>;
|
|
259
262
|
version_current: z.ZodOptional<z.ZodString>;
|
|
260
263
|
created_at: z.ZodOptional<z.ZodString>;
|
|
@@ -479,6 +482,111 @@ export declare const zRegistryTag: z.ZodObject<{
|
|
|
479
482
|
repository: z.ZodString;
|
|
480
483
|
uri: z.ZodString;
|
|
481
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>;
|
|
482
590
|
export declare const zTokenCreateInput: z.ZodObject<{
|
|
483
591
|
name: z.ZodString;
|
|
484
592
|
role: z.ZodEnum<{
|
|
@@ -573,11 +681,11 @@ export declare const zUserUpdateInput: z.ZodObject<{
|
|
|
573
681
|
}>>;
|
|
574
682
|
}, z.core.$strip>;
|
|
575
683
|
export declare const zGetUsageQuery: z.ZodObject<{
|
|
576
|
-
granularity: z.ZodOptional<z.ZodEnum<{
|
|
684
|
+
granularity: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
577
685
|
hourly: "hourly";
|
|
578
686
|
daily: "daily";
|
|
579
687
|
monthly: "monthly";
|
|
580
|
-
}
|
|
688
|
+
}>>>;
|
|
581
689
|
}, z.core.$strip>;
|
|
582
690
|
/**
|
|
583
691
|
* Usage data with facets for filtering
|
|
@@ -1315,12 +1423,12 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
|
1315
1423
|
basic: "basic";
|
|
1316
1424
|
pro: "pro";
|
|
1317
1425
|
}>;
|
|
1318
|
-
region: z.ZodOptional<z.ZodEnum<{
|
|
1426
|
+
region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1319
1427
|
"staging-1a": "staging-1a";
|
|
1320
1428
|
"northamerica-central-1": "northamerica-central-1";
|
|
1321
1429
|
"europe-central-1a": "europe-central-1a";
|
|
1322
1430
|
"northamerica-central-1a": "northamerica-central-1a";
|
|
1323
|
-
}
|
|
1431
|
+
}>>>;
|
|
1324
1432
|
id: z.ZodUUID;
|
|
1325
1433
|
status: z.ZodEnum<{
|
|
1326
1434
|
deleted: "deleted";
|
|
@@ -1334,6 +1442,9 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
|
1334
1442
|
endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
1335
1443
|
"": "";
|
|
1336
1444
|
}>]>>;
|
|
1445
|
+
endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
1446
|
+
"": "";
|
|
1447
|
+
}>]>>;
|
|
1337
1448
|
certificate_ca: z.ZodOptional<z.ZodString>;
|
|
1338
1449
|
version_current: z.ZodOptional<z.ZodString>;
|
|
1339
1450
|
created_at: z.ZodOptional<z.ZodString>;
|
|
@@ -1347,18 +1458,18 @@ export declare const zCreateClusterBody: z.ZodObject<{
|
|
|
1347
1458
|
basic: "basic";
|
|
1348
1459
|
pro: "pro";
|
|
1349
1460
|
}>;
|
|
1350
|
-
region: z.ZodOptional<z.ZodEnum<{
|
|
1461
|
+
region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1351
1462
|
"staging-1a": "staging-1a";
|
|
1352
1463
|
"northamerica-central-1": "northamerica-central-1";
|
|
1353
1464
|
"europe-central-1a": "europe-central-1a";
|
|
1354
1465
|
"northamerica-central-1a": "northamerica-central-1a";
|
|
1355
|
-
}
|
|
1356
|
-
version_channel: z.ZodOptional<z.ZodEnum<{
|
|
1466
|
+
}>>>;
|
|
1467
|
+
version_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1357
1468
|
"1.x.x-cfke.x": "1.x.x-cfke.x";
|
|
1358
1469
|
"1.31.x-cfke.x": "1.31.x-cfke.x";
|
|
1359
1470
|
"1.32.x-cfke.x": "1.32.x-cfke.x";
|
|
1360
1471
|
"1.33.x-cfke.x": "1.33.x-cfke.x";
|
|
1361
|
-
}
|
|
1472
|
+
}>>>;
|
|
1362
1473
|
}, z.core.$strip>;
|
|
1363
1474
|
/**
|
|
1364
1475
|
* Successfully created. Returns created Cluster ID.
|
|
@@ -1383,12 +1494,12 @@ export declare const zGetClusterResponse: z.ZodObject<{
|
|
|
1383
1494
|
basic: "basic";
|
|
1384
1495
|
pro: "pro";
|
|
1385
1496
|
}>;
|
|
1386
|
-
region: z.ZodOptional<z.ZodEnum<{
|
|
1497
|
+
region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1387
1498
|
"staging-1a": "staging-1a";
|
|
1388
1499
|
"northamerica-central-1": "northamerica-central-1";
|
|
1389
1500
|
"europe-central-1a": "europe-central-1a";
|
|
1390
1501
|
"northamerica-central-1a": "northamerica-central-1a";
|
|
1391
|
-
}
|
|
1502
|
+
}>>>;
|
|
1392
1503
|
id: z.ZodUUID;
|
|
1393
1504
|
status: z.ZodEnum<{
|
|
1394
1505
|
deleted: "deleted";
|
|
@@ -1402,6 +1513,9 @@ export declare const zGetClusterResponse: z.ZodObject<{
|
|
|
1402
1513
|
endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
1403
1514
|
"": "";
|
|
1404
1515
|
}>]>>;
|
|
1516
|
+
endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
1517
|
+
"": "";
|
|
1518
|
+
}>]>>;
|
|
1405
1519
|
certificate_ca: z.ZodOptional<z.ZodString>;
|
|
1406
1520
|
version_current: z.ZodOptional<z.ZodString>;
|
|
1407
1521
|
created_at: z.ZodOptional<z.ZodString>;
|
|
@@ -1429,12 +1543,12 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
|
1429
1543
|
basic: "basic";
|
|
1430
1544
|
pro: "pro";
|
|
1431
1545
|
}>;
|
|
1432
|
-
region: z.ZodOptional<z.ZodEnum<{
|
|
1546
|
+
region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1433
1547
|
"staging-1a": "staging-1a";
|
|
1434
1548
|
"northamerica-central-1": "northamerica-central-1";
|
|
1435
1549
|
"europe-central-1a": "europe-central-1a";
|
|
1436
1550
|
"northamerica-central-1a": "northamerica-central-1a";
|
|
1437
|
-
}
|
|
1551
|
+
}>>>;
|
|
1438
1552
|
id: z.ZodUUID;
|
|
1439
1553
|
status: z.ZodEnum<{
|
|
1440
1554
|
deleted: "deleted";
|
|
@@ -1448,6 +1562,9 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
|
1448
1562
|
endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
1449
1563
|
"": "";
|
|
1450
1564
|
}>]>>;
|
|
1565
|
+
endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
1566
|
+
"": "";
|
|
1567
|
+
}>]>>;
|
|
1451
1568
|
certificate_ca: z.ZodOptional<z.ZodString>;
|
|
1452
1569
|
version_current: z.ZodOptional<z.ZodString>;
|
|
1453
1570
|
created_at: z.ZodOptional<z.ZodString>;
|
|
@@ -1455,13 +1572,6 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
|
1455
1572
|
ready: z.ZodOptional<z.ZodBoolean>;
|
|
1456
1573
|
version_channel: z.ZodOptional<z.ZodString>;
|
|
1457
1574
|
}, z.core.$strip>;
|
|
1458
|
-
export declare const zGetClusterCaPath: z.ZodObject<{
|
|
1459
|
-
cluster_id: z.ZodString;
|
|
1460
|
-
}, z.core.$strip>;
|
|
1461
|
-
/**
|
|
1462
|
-
* PEM-encoded certificate authority of the cluster.
|
|
1463
|
-
*/
|
|
1464
|
-
export declare const zGetClusterCaResponse: z.ZodString;
|
|
1465
1575
|
export declare const zGetJoinInformationPath: z.ZodObject<{
|
|
1466
1576
|
cluster_id: z.ZodString;
|
|
1467
1577
|
}, z.core.$strip>;
|
|
@@ -1685,6 +1795,201 @@ export declare const zGetTagResponse: z.ZodObject<{
|
|
|
1685
1795
|
repository: z.ZodString;
|
|
1686
1796
|
uri: z.ZodString;
|
|
1687
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>>>;
|
|
1957
|
+
}, z.core.$strip>;
|
|
1958
|
+
export declare const zReplyTicketBody: z.ZodObject<{
|
|
1959
|
+
payload: z.ZodOptional<z.ZodString>;
|
|
1960
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
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;
|
|
1688
1993
|
/**
|
|
1689
1994
|
* Returns a list of access token details with masked secrets.
|
|
1690
1995
|
*/
|
package/dist/zod.gen.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"zod.gen.d.ts","sourceRoot":"","sources":["../src/zod.gen.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBA8I1B,CAAC;AAEH,eAAO,MAAM,eAAe;;;;;;;;;;;;iBAS1B,CAAC;AAEH,eAAO,MAAM,iBAAiB;;;;;;iBAM5B,CAAC;AAEH,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;iBA0BjB,CAAC;AAEH,eAAO,MAAM,iBAAiB;;;iBAG5B,CAAC;AAEH,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;iBAe9B,CAAC;AAEH,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;iBAiBlC,CAAC;AAEH,eAAO,MAAM,QAAQ
|
|
1
|
+
{"version":3,"file":"zod.gen.d.ts","sourceRoot":"","sources":["../src/zod.gen.ts"],"names":[],"mappings":"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"}
|