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