@cloudfleet/sdk 0.0.1-4943b4e → 0.0.1-4a07f21
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 +109 -1
- package/dist/@tanstack/react-query.gen.d.ts.map +1 -1
- package/dist/@tanstack/react-query.gen.js +109 -1
- package/dist/@tanstack/react-query.gen.js.map +1 -1
- package/dist/schemas.gen.d.ts +401 -0
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +486 -0
- package/dist/schemas.gen.js.map +1 -1
- package/dist/sdk.gen.d.ts +40 -2
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/sdk.gen.js +67 -0
- package/dist/sdk.gen.js.map +1 -1
- package/dist/types.gen.d.ts +357 -0
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +300 -0
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +141 -0
- package/dist/zod.gen.js.map +1 -1
- package/package.json +1 -1
package/dist/schemas.gen.d.ts
CHANGED
|
@@ -1437,6 +1437,407 @@ export declare const RegistryTagSchema: {
|
|
|
1437
1437
|
readonly required: readonly ["name", "digest", "size", "region", "repository", "uri"];
|
|
1438
1438
|
readonly additionalProperties: false;
|
|
1439
1439
|
};
|
|
1440
|
+
export declare const TicketAttachmentSchema: {
|
|
1441
|
+
readonly type: "object";
|
|
1442
|
+
readonly properties: {
|
|
1443
|
+
readonly id: {
|
|
1444
|
+
readonly type: "string";
|
|
1445
|
+
readonly description: "Unique identifier of the attachment (Mongo ObjectId).";
|
|
1446
|
+
readonly example: "60c72b2f9f1b2c001f8e4d3c";
|
|
1447
|
+
};
|
|
1448
|
+
readonly filename: {
|
|
1449
|
+
readonly type: "string";
|
|
1450
|
+
readonly description: "Original filename as uploaded.";
|
|
1451
|
+
readonly example: "debug.log";
|
|
1452
|
+
};
|
|
1453
|
+
readonly content_type: {
|
|
1454
|
+
readonly type: "string";
|
|
1455
|
+
readonly description: "MIME content type of the attachment.";
|
|
1456
|
+
readonly example: "text/plain";
|
|
1457
|
+
};
|
|
1458
|
+
readonly size: {
|
|
1459
|
+
readonly type: "integer";
|
|
1460
|
+
readonly description: "Size of the attachment in bytes.";
|
|
1461
|
+
readonly example: 12345;
|
|
1462
|
+
};
|
|
1463
|
+
};
|
|
1464
|
+
readonly required: readonly ["id", "filename", "content_type", "size"];
|
|
1465
|
+
readonly additionalProperties: false;
|
|
1466
|
+
};
|
|
1467
|
+
export declare const TicketCreateInputSchema: {
|
|
1468
|
+
readonly type: "object";
|
|
1469
|
+
readonly properties: {
|
|
1470
|
+
readonly category: {
|
|
1471
|
+
readonly type: "string";
|
|
1472
|
+
readonly description: "Ticket category. Drives auto-assignment and may carry a subcategory in `properties`.";
|
|
1473
|
+
readonly example: "technical";
|
|
1474
|
+
readonly enum: readonly ["billing", "technical", "general"];
|
|
1475
|
+
};
|
|
1476
|
+
readonly body: {
|
|
1477
|
+
readonly type: "string";
|
|
1478
|
+
readonly maxLength: 50000;
|
|
1479
|
+
readonly minLength: 1;
|
|
1480
|
+
readonly pattern: "\\S";
|
|
1481
|
+
readonly description: "Initial message body in markdown. There is no separate subject — the first message body is the description.";
|
|
1482
|
+
readonly example: "My cluster cannot reach the registry. Logs attached.";
|
|
1483
|
+
};
|
|
1484
|
+
readonly properties: {
|
|
1485
|
+
readonly type: "object";
|
|
1486
|
+
readonly additionalProperties: true;
|
|
1487
|
+
readonly description: "Free-form key/value bag set by the UI (e.g. `subcategory`, `cluster_id`, `cluster_name`, `region`).";
|
|
1488
|
+
readonly example: {
|
|
1489
|
+
readonly subcategory: "cluster-question";
|
|
1490
|
+
readonly cluster_id: "60c72b2f9f1b2c001f8e4d3a";
|
|
1491
|
+
};
|
|
1492
|
+
};
|
|
1493
|
+
};
|
|
1494
|
+
readonly required: readonly ["category", "body"];
|
|
1495
|
+
readonly additionalProperties: false;
|
|
1496
|
+
};
|
|
1497
|
+
export declare const TicketListResponseSchema: {
|
|
1498
|
+
readonly type: "object";
|
|
1499
|
+
readonly properties: {
|
|
1500
|
+
readonly items: {
|
|
1501
|
+
readonly type: "array";
|
|
1502
|
+
readonly items: {
|
|
1503
|
+
readonly type: "object";
|
|
1504
|
+
readonly properties: {
|
|
1505
|
+
readonly id: {
|
|
1506
|
+
readonly type: "string";
|
|
1507
|
+
readonly description: "Unique identifier of the ticket (Mongo ObjectId).";
|
|
1508
|
+
readonly example: "60c72b2f9f1b2c001f8e4d3a";
|
|
1509
|
+
};
|
|
1510
|
+
readonly status: {
|
|
1511
|
+
readonly type: "string";
|
|
1512
|
+
readonly description: "Current state of the ticket.";
|
|
1513
|
+
readonly example: "waiting_on_us";
|
|
1514
|
+
readonly enum: readonly ["waiting_on_us", "waiting_on_user", "closed"];
|
|
1515
|
+
};
|
|
1516
|
+
readonly category: {
|
|
1517
|
+
readonly type: "string";
|
|
1518
|
+
readonly description: "Ticket category.";
|
|
1519
|
+
readonly example: "technical";
|
|
1520
|
+
readonly enum: readonly ["billing", "technical", "general"];
|
|
1521
|
+
};
|
|
1522
|
+
readonly summary: {
|
|
1523
|
+
readonly type: "string";
|
|
1524
|
+
readonly description: "First 128 characters of the initial message body, with markdown formatting and newlines stripped. Used for ticket list previews.";
|
|
1525
|
+
readonly example: "My cluster cannot reach the registry. Logs attached.";
|
|
1526
|
+
};
|
|
1527
|
+
readonly closed_at: {
|
|
1528
|
+
readonly type: "string";
|
|
1529
|
+
readonly format: "date-time";
|
|
1530
|
+
readonly nullable: true;
|
|
1531
|
+
readonly description: "Closure timestamp. Null while the ticket is open.";
|
|
1532
|
+
readonly example: "2026-05-18T16:08:14.338Z";
|
|
1533
|
+
};
|
|
1534
|
+
readonly date_created: {
|
|
1535
|
+
readonly type: "string";
|
|
1536
|
+
readonly format: "date-time";
|
|
1537
|
+
readonly description: "Creation date of the ticket. ISO 8601 UTC.";
|
|
1538
|
+
readonly example: "2026-05-11T16:08:14.338Z";
|
|
1539
|
+
};
|
|
1540
|
+
readonly date_updated: {
|
|
1541
|
+
readonly type: "string";
|
|
1542
|
+
readonly format: "date-time";
|
|
1543
|
+
readonly description: "Last update date of the ticket. ISO 8601 UTC.";
|
|
1544
|
+
readonly example: "2026-05-11T16:08:14.338Z";
|
|
1545
|
+
};
|
|
1546
|
+
readonly messages: {
|
|
1547
|
+
readonly type: "array";
|
|
1548
|
+
readonly items: {
|
|
1549
|
+
readonly type: "object";
|
|
1550
|
+
readonly properties: {
|
|
1551
|
+
readonly id: {
|
|
1552
|
+
readonly type: "string";
|
|
1553
|
+
readonly description: "Unique identifier of the message (Mongo ObjectId).";
|
|
1554
|
+
readonly example: "60c72b2f9f1b2c001f8e4d3b";
|
|
1555
|
+
};
|
|
1556
|
+
readonly type: {
|
|
1557
|
+
readonly type: "string";
|
|
1558
|
+
readonly description: "Message type. Internal notes are filtered out of customer-facing responses.";
|
|
1559
|
+
readonly example: "customer_reply";
|
|
1560
|
+
readonly enum: readonly ["customer_reply", "agent_reply"];
|
|
1561
|
+
};
|
|
1562
|
+
readonly body: {
|
|
1563
|
+
readonly type: "string";
|
|
1564
|
+
readonly description: "Message body in markdown.";
|
|
1565
|
+
readonly example: "Thanks — that resolved it on my side.";
|
|
1566
|
+
};
|
|
1567
|
+
readonly author_first_name: {
|
|
1568
|
+
readonly type: "string";
|
|
1569
|
+
readonly nullable: true;
|
|
1570
|
+
readonly description: "First name of the author. Null when not provided.";
|
|
1571
|
+
readonly example: "Jane";
|
|
1572
|
+
};
|
|
1573
|
+
readonly author_last_name: {
|
|
1574
|
+
readonly type: "string";
|
|
1575
|
+
readonly nullable: true;
|
|
1576
|
+
readonly description: "Last name of the author. Null when not provided.";
|
|
1577
|
+
readonly example: "Doe";
|
|
1578
|
+
};
|
|
1579
|
+
readonly attachments: {
|
|
1580
|
+
readonly type: "array";
|
|
1581
|
+
readonly items: {
|
|
1582
|
+
readonly type: "object";
|
|
1583
|
+
readonly properties: {
|
|
1584
|
+
readonly id: {
|
|
1585
|
+
readonly type: "string";
|
|
1586
|
+
readonly description: "Unique identifier of the attachment (Mongo ObjectId).";
|
|
1587
|
+
readonly example: "60c72b2f9f1b2c001f8e4d3c";
|
|
1588
|
+
};
|
|
1589
|
+
readonly filename: {
|
|
1590
|
+
readonly type: "string";
|
|
1591
|
+
readonly description: "Original filename as uploaded.";
|
|
1592
|
+
readonly example: "debug.log";
|
|
1593
|
+
};
|
|
1594
|
+
readonly content_type: {
|
|
1595
|
+
readonly type: "string";
|
|
1596
|
+
readonly description: "MIME content type of the attachment.";
|
|
1597
|
+
readonly example: "text/plain";
|
|
1598
|
+
};
|
|
1599
|
+
readonly size: {
|
|
1600
|
+
readonly type: "integer";
|
|
1601
|
+
readonly description: "Size of the attachment in bytes.";
|
|
1602
|
+
readonly example: 12345;
|
|
1603
|
+
};
|
|
1604
|
+
};
|
|
1605
|
+
readonly required: readonly ["id", "filename", "content_type", "size"];
|
|
1606
|
+
readonly additionalProperties: false;
|
|
1607
|
+
};
|
|
1608
|
+
readonly description: "Attachments associated with this message.";
|
|
1609
|
+
readonly example: readonly [];
|
|
1610
|
+
};
|
|
1611
|
+
readonly date_created: {
|
|
1612
|
+
readonly type: "string";
|
|
1613
|
+
readonly format: "date-time";
|
|
1614
|
+
readonly description: "Creation date of the message. ISO 8601 UTC.";
|
|
1615
|
+
readonly example: "2026-05-11T16:08:14.338Z";
|
|
1616
|
+
};
|
|
1617
|
+
};
|
|
1618
|
+
readonly required: readonly ["id", "type", "body", "date_created"];
|
|
1619
|
+
readonly additionalProperties: false;
|
|
1620
|
+
};
|
|
1621
|
+
readonly description: "Messages on the ticket in chronological order. Internal notes are excluded. Returned by the detail endpoint only.";
|
|
1622
|
+
};
|
|
1623
|
+
};
|
|
1624
|
+
readonly required: readonly ["id", "status", "category", "summary", "date_created", "date_updated"];
|
|
1625
|
+
readonly additionalProperties: false;
|
|
1626
|
+
};
|
|
1627
|
+
readonly description: "Tickets for the organization, ordered newest first. Messages are omitted from list responses.";
|
|
1628
|
+
};
|
|
1629
|
+
};
|
|
1630
|
+
readonly required: readonly ["items"];
|
|
1631
|
+
readonly additionalProperties: false;
|
|
1632
|
+
};
|
|
1633
|
+
export declare const TicketMessageInputSchema: {
|
|
1634
|
+
readonly type: "object";
|
|
1635
|
+
readonly properties: {
|
|
1636
|
+
readonly body: {
|
|
1637
|
+
readonly type: "string";
|
|
1638
|
+
readonly maxLength: 50000;
|
|
1639
|
+
readonly minLength: 1;
|
|
1640
|
+
readonly pattern: "\\S";
|
|
1641
|
+
readonly description: "Reply body in markdown.";
|
|
1642
|
+
readonly example: "Thanks — that resolved it on my side.";
|
|
1643
|
+
};
|
|
1644
|
+
};
|
|
1645
|
+
readonly required: readonly ["body"];
|
|
1646
|
+
readonly additionalProperties: false;
|
|
1647
|
+
};
|
|
1648
|
+
export declare const TicketMessageSchema: {
|
|
1649
|
+
readonly type: "object";
|
|
1650
|
+
readonly properties: {
|
|
1651
|
+
readonly id: {
|
|
1652
|
+
readonly type: "string";
|
|
1653
|
+
readonly description: "Unique identifier of the message (Mongo ObjectId).";
|
|
1654
|
+
readonly example: "60c72b2f9f1b2c001f8e4d3b";
|
|
1655
|
+
};
|
|
1656
|
+
readonly type: {
|
|
1657
|
+
readonly type: "string";
|
|
1658
|
+
readonly description: "Message type. Internal notes are filtered out of customer-facing responses.";
|
|
1659
|
+
readonly example: "customer_reply";
|
|
1660
|
+
readonly enum: readonly ["customer_reply", "agent_reply"];
|
|
1661
|
+
};
|
|
1662
|
+
readonly body: {
|
|
1663
|
+
readonly type: "string";
|
|
1664
|
+
readonly description: "Message body in markdown.";
|
|
1665
|
+
readonly example: "Thanks — that resolved it on my side.";
|
|
1666
|
+
};
|
|
1667
|
+
readonly author_first_name: {
|
|
1668
|
+
readonly type: "string";
|
|
1669
|
+
readonly description: "First name of the author. Null when not provided.";
|
|
1670
|
+
readonly example: "Jane";
|
|
1671
|
+
};
|
|
1672
|
+
readonly author_last_name: {
|
|
1673
|
+
readonly type: "string";
|
|
1674
|
+
readonly description: "Last name of the author. Null when not provided.";
|
|
1675
|
+
readonly example: "Doe";
|
|
1676
|
+
};
|
|
1677
|
+
readonly attachments: {
|
|
1678
|
+
readonly type: "array";
|
|
1679
|
+
readonly items: {
|
|
1680
|
+
readonly type: "object";
|
|
1681
|
+
readonly properties: {
|
|
1682
|
+
readonly id: {
|
|
1683
|
+
readonly type: "string";
|
|
1684
|
+
readonly description: "Unique identifier of the attachment (Mongo ObjectId).";
|
|
1685
|
+
readonly example: "60c72b2f9f1b2c001f8e4d3c";
|
|
1686
|
+
};
|
|
1687
|
+
readonly filename: {
|
|
1688
|
+
readonly type: "string";
|
|
1689
|
+
readonly description: "Original filename as uploaded.";
|
|
1690
|
+
readonly example: "debug.log";
|
|
1691
|
+
};
|
|
1692
|
+
readonly content_type: {
|
|
1693
|
+
readonly type: "string";
|
|
1694
|
+
readonly description: "MIME content type of the attachment.";
|
|
1695
|
+
readonly example: "text/plain";
|
|
1696
|
+
};
|
|
1697
|
+
readonly size: {
|
|
1698
|
+
readonly type: "integer";
|
|
1699
|
+
readonly description: "Size of the attachment in bytes.";
|
|
1700
|
+
readonly example: 12345;
|
|
1701
|
+
};
|
|
1702
|
+
};
|
|
1703
|
+
readonly required: readonly ["id", "filename", "content_type", "size"];
|
|
1704
|
+
readonly additionalProperties: false;
|
|
1705
|
+
};
|
|
1706
|
+
readonly description: "Attachments associated with this message.";
|
|
1707
|
+
readonly example: readonly [];
|
|
1708
|
+
};
|
|
1709
|
+
readonly date_created: {
|
|
1710
|
+
readonly type: "string";
|
|
1711
|
+
readonly format: "date-time";
|
|
1712
|
+
readonly description: "Creation date of the message. ISO 8601 UTC.";
|
|
1713
|
+
readonly example: "2026-05-11T16:08:14.338Z";
|
|
1714
|
+
};
|
|
1715
|
+
};
|
|
1716
|
+
readonly required: readonly ["id", "type", "body", "date_created"];
|
|
1717
|
+
readonly additionalProperties: false;
|
|
1718
|
+
};
|
|
1719
|
+
export declare const TicketSchema: {
|
|
1720
|
+
readonly type: "object";
|
|
1721
|
+
readonly properties: {
|
|
1722
|
+
readonly id: {
|
|
1723
|
+
readonly type: "string";
|
|
1724
|
+
readonly description: "Unique identifier of the ticket (Mongo ObjectId).";
|
|
1725
|
+
readonly example: "60c72b2f9f1b2c001f8e4d3a";
|
|
1726
|
+
};
|
|
1727
|
+
readonly status: {
|
|
1728
|
+
readonly type: "string";
|
|
1729
|
+
readonly description: "Current state of the ticket.";
|
|
1730
|
+
readonly example: "waiting_on_us";
|
|
1731
|
+
readonly enum: readonly ["waiting_on_us", "waiting_on_user", "closed"];
|
|
1732
|
+
};
|
|
1733
|
+
readonly category: {
|
|
1734
|
+
readonly type: "string";
|
|
1735
|
+
readonly description: "Ticket category.";
|
|
1736
|
+
readonly example: "technical";
|
|
1737
|
+
readonly enum: readonly ["billing", "technical", "general"];
|
|
1738
|
+
};
|
|
1739
|
+
readonly summary: {
|
|
1740
|
+
readonly type: "string";
|
|
1741
|
+
readonly description: "First 128 characters of the initial message body, with markdown formatting and newlines stripped. Used for ticket list previews.";
|
|
1742
|
+
readonly example: "My cluster cannot reach the registry. Logs attached.";
|
|
1743
|
+
};
|
|
1744
|
+
readonly closed_at: {
|
|
1745
|
+
readonly type: "string";
|
|
1746
|
+
readonly format: "date-time";
|
|
1747
|
+
readonly description: "Closure timestamp. Null while the ticket is open.";
|
|
1748
|
+
readonly example: "2026-05-18T16:08:14.338Z";
|
|
1749
|
+
};
|
|
1750
|
+
readonly date_created: {
|
|
1751
|
+
readonly type: "string";
|
|
1752
|
+
readonly format: "date-time";
|
|
1753
|
+
readonly description: "Creation date of the ticket. ISO 8601 UTC.";
|
|
1754
|
+
readonly example: "2026-05-11T16:08:14.338Z";
|
|
1755
|
+
};
|
|
1756
|
+
readonly date_updated: {
|
|
1757
|
+
readonly type: "string";
|
|
1758
|
+
readonly format: "date-time";
|
|
1759
|
+
readonly description: "Last update date of the ticket. ISO 8601 UTC.";
|
|
1760
|
+
readonly example: "2026-05-11T16:08:14.338Z";
|
|
1761
|
+
};
|
|
1762
|
+
readonly messages: {
|
|
1763
|
+
readonly type: "array";
|
|
1764
|
+
readonly items: {
|
|
1765
|
+
readonly type: "object";
|
|
1766
|
+
readonly properties: {
|
|
1767
|
+
readonly id: {
|
|
1768
|
+
readonly type: "string";
|
|
1769
|
+
readonly description: "Unique identifier of the message (Mongo ObjectId).";
|
|
1770
|
+
readonly example: "60c72b2f9f1b2c001f8e4d3b";
|
|
1771
|
+
};
|
|
1772
|
+
readonly type: {
|
|
1773
|
+
readonly type: "string";
|
|
1774
|
+
readonly description: "Message type. Internal notes are filtered out of customer-facing responses.";
|
|
1775
|
+
readonly example: "customer_reply";
|
|
1776
|
+
readonly enum: readonly ["customer_reply", "agent_reply"];
|
|
1777
|
+
};
|
|
1778
|
+
readonly body: {
|
|
1779
|
+
readonly type: "string";
|
|
1780
|
+
readonly description: "Message body in markdown.";
|
|
1781
|
+
readonly example: "Thanks — that resolved it on my side.";
|
|
1782
|
+
};
|
|
1783
|
+
readonly author_first_name: {
|
|
1784
|
+
readonly type: "string";
|
|
1785
|
+
readonly description: "First name of the author. Null when not provided.";
|
|
1786
|
+
readonly example: "Jane";
|
|
1787
|
+
};
|
|
1788
|
+
readonly author_last_name: {
|
|
1789
|
+
readonly type: "string";
|
|
1790
|
+
readonly description: "Last name of the author. Null when not provided.";
|
|
1791
|
+
readonly example: "Doe";
|
|
1792
|
+
};
|
|
1793
|
+
readonly attachments: {
|
|
1794
|
+
readonly type: "array";
|
|
1795
|
+
readonly items: {
|
|
1796
|
+
readonly type: "object";
|
|
1797
|
+
readonly properties: {
|
|
1798
|
+
readonly id: {
|
|
1799
|
+
readonly type: "string";
|
|
1800
|
+
readonly description: "Unique identifier of the attachment (Mongo ObjectId).";
|
|
1801
|
+
readonly example: "60c72b2f9f1b2c001f8e4d3c";
|
|
1802
|
+
};
|
|
1803
|
+
readonly filename: {
|
|
1804
|
+
readonly type: "string";
|
|
1805
|
+
readonly description: "Original filename as uploaded.";
|
|
1806
|
+
readonly example: "debug.log";
|
|
1807
|
+
};
|
|
1808
|
+
readonly content_type: {
|
|
1809
|
+
readonly type: "string";
|
|
1810
|
+
readonly description: "MIME content type of the attachment.";
|
|
1811
|
+
readonly example: "text/plain";
|
|
1812
|
+
};
|
|
1813
|
+
readonly size: {
|
|
1814
|
+
readonly type: "integer";
|
|
1815
|
+
readonly description: "Size of the attachment in bytes.";
|
|
1816
|
+
readonly example: 12345;
|
|
1817
|
+
};
|
|
1818
|
+
};
|
|
1819
|
+
readonly required: readonly ["id", "filename", "content_type", "size"];
|
|
1820
|
+
readonly additionalProperties: false;
|
|
1821
|
+
};
|
|
1822
|
+
readonly description: "Attachments associated with this message.";
|
|
1823
|
+
readonly example: readonly [];
|
|
1824
|
+
};
|
|
1825
|
+
readonly date_created: {
|
|
1826
|
+
readonly type: "string";
|
|
1827
|
+
readonly format: "date-time";
|
|
1828
|
+
readonly description: "Creation date of the message. ISO 8601 UTC.";
|
|
1829
|
+
readonly example: "2026-05-11T16:08:14.338Z";
|
|
1830
|
+
};
|
|
1831
|
+
};
|
|
1832
|
+
readonly required: readonly ["id", "type", "body", "date_created"];
|
|
1833
|
+
readonly additionalProperties: false;
|
|
1834
|
+
};
|
|
1835
|
+
readonly description: "Messages on the ticket in chronological order. Internal notes are excluded. Returned by the detail endpoint only.";
|
|
1836
|
+
};
|
|
1837
|
+
};
|
|
1838
|
+
readonly required: readonly ["id", "status", "category", "summary", "date_created", "date_updated"];
|
|
1839
|
+
readonly additionalProperties: false;
|
|
1840
|
+
};
|
|
1440
1841
|
export declare const TokenCreateInputSchema: {
|
|
1441
1842
|
readonly type: "object";
|
|
1442
1843
|
readonly properties: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schemas.gen.d.ts","sourceRoot":"","sources":["../src/schemas.gen.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"schemas.gen.d.ts","sourceRoot":"","sources":["../src/schemas.gen.ts"],"names":[],"mappings":"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"}
|