@supernova-studio/model 0.9.0 → 0.10.0
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/index.d.mts +1911 -1187
- package/dist/index.d.ts +1911 -1187
- package/dist/index.js +238 -58
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +243 -63
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/codegen/export-jobs.ts +136 -21
- package/src/codegen/exporter.ts +12 -13
- package/src/codegen/pulsar.ts +39 -27
- package/src/dsm/design-system.ts +7 -5
- package/src/dsm/documentation/block-definitions/definition.ts +1 -1
- package/src/dsm/documentation/block-definitions/item.ts +85 -12
- package/src/dsm/elements/data/documentation-block-v1.ts +2 -0
- package/src/dsm/elements/data/documentation-block-v2.ts +20 -1
package/dist/index.d.mts
CHANGED
|
@@ -1565,20 +1565,538 @@ declare const Subscription: z.ZodObject<{
|
|
|
1565
1565
|
}>;
|
|
1566
1566
|
type Subscription = z.infer<typeof Subscription>;
|
|
1567
1567
|
|
|
1568
|
-
declare const
|
|
1569
|
-
|
|
1570
|
-
|
|
1568
|
+
declare const ExporterJobLogEntryType: z.ZodEnum<["success", "info", "warning", "error", "user"]>;
|
|
1569
|
+
declare const ExporterJobLogEntry: z.ZodObject<{
|
|
1570
|
+
id: z.ZodOptional<z.ZodString>;
|
|
1571
|
+
time: z.ZodDate;
|
|
1572
|
+
type: z.ZodEnum<["success", "info", "warning", "error", "user"]>;
|
|
1573
|
+
message: z.ZodString;
|
|
1574
|
+
}, "strip", z.ZodTypeAny, {
|
|
1575
|
+
message: string;
|
|
1576
|
+
type: "error" | "success" | "info" | "warning" | "user";
|
|
1577
|
+
time: Date;
|
|
1578
|
+
id?: string | undefined;
|
|
1579
|
+
}, {
|
|
1580
|
+
message: string;
|
|
1581
|
+
type: "error" | "success" | "info" | "warning" | "user";
|
|
1582
|
+
time: Date;
|
|
1583
|
+
id?: string | undefined;
|
|
1584
|
+
}>;
|
|
1585
|
+
declare const ExporterJobResultPullRequestDestination: z.ZodObject<{
|
|
1586
|
+
pullRequestUrl: z.ZodString;
|
|
1587
|
+
}, "strip", z.ZodTypeAny, {
|
|
1588
|
+
pullRequestUrl: string;
|
|
1589
|
+
}, {
|
|
1590
|
+
pullRequestUrl: string;
|
|
1591
|
+
}>;
|
|
1592
|
+
declare const ExporterJobResultS3Destination: z.ZodObject<{
|
|
1593
|
+
bucket: z.ZodString;
|
|
1594
|
+
urlPrefix: z.ZodOptional<z.ZodString>;
|
|
1595
|
+
path: z.ZodString;
|
|
1596
|
+
files: z.ZodArray<z.ZodString, "many">;
|
|
1597
|
+
}, "strip", z.ZodTypeAny, {
|
|
1598
|
+
path: string;
|
|
1599
|
+
bucket: string;
|
|
1600
|
+
files: string[];
|
|
1601
|
+
urlPrefix?: string | undefined;
|
|
1602
|
+
}, {
|
|
1603
|
+
path: string;
|
|
1604
|
+
bucket: string;
|
|
1605
|
+
files: string[];
|
|
1606
|
+
urlPrefix?: string | undefined;
|
|
1607
|
+
}>;
|
|
1608
|
+
declare const ExporterJobResultDocsDestination: z.ZodObject<{
|
|
1609
|
+
url: z.ZodString;
|
|
1610
|
+
}, "strip", z.ZodTypeAny, {
|
|
1611
|
+
url: string;
|
|
1612
|
+
}, {
|
|
1613
|
+
url: string;
|
|
1614
|
+
}>;
|
|
1615
|
+
declare const ExporterJobResult: z.ZodObject<{
|
|
1616
|
+
error: z.ZodOptional<z.ZodString>;
|
|
1617
|
+
logs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1618
|
+
id: z.ZodOptional<z.ZodString>;
|
|
1619
|
+
time: z.ZodDate;
|
|
1620
|
+
type: z.ZodEnum<["success", "info", "warning", "error", "user"]>;
|
|
1621
|
+
message: z.ZodString;
|
|
1622
|
+
}, "strip", z.ZodTypeAny, {
|
|
1623
|
+
message: string;
|
|
1624
|
+
type: "error" | "success" | "info" | "warning" | "user";
|
|
1625
|
+
time: Date;
|
|
1626
|
+
id?: string | undefined;
|
|
1627
|
+
}, {
|
|
1628
|
+
message: string;
|
|
1629
|
+
type: "error" | "success" | "info" | "warning" | "user";
|
|
1630
|
+
time: Date;
|
|
1631
|
+
id?: string | undefined;
|
|
1632
|
+
}>, "many">>;
|
|
1633
|
+
s3: z.ZodOptional<z.ZodObject<{
|
|
1634
|
+
bucket: z.ZodString;
|
|
1635
|
+
urlPrefix: z.ZodOptional<z.ZodString>;
|
|
1636
|
+
path: z.ZodString;
|
|
1637
|
+
files: z.ZodArray<z.ZodString, "many">;
|
|
1638
|
+
}, "strip", z.ZodTypeAny, {
|
|
1639
|
+
path: string;
|
|
1640
|
+
bucket: string;
|
|
1641
|
+
files: string[];
|
|
1642
|
+
urlPrefix?: string | undefined;
|
|
1643
|
+
}, {
|
|
1644
|
+
path: string;
|
|
1645
|
+
bucket: string;
|
|
1646
|
+
files: string[];
|
|
1647
|
+
urlPrefix?: string | undefined;
|
|
1648
|
+
}>>;
|
|
1649
|
+
github: z.ZodOptional<z.ZodObject<{
|
|
1650
|
+
pullRequestUrl: z.ZodString;
|
|
1651
|
+
}, "strip", z.ZodTypeAny, {
|
|
1652
|
+
pullRequestUrl: string;
|
|
1653
|
+
}, {
|
|
1654
|
+
pullRequestUrl: string;
|
|
1655
|
+
}>>;
|
|
1656
|
+
azure: z.ZodOptional<z.ZodObject<{
|
|
1657
|
+
pullRequestUrl: z.ZodString;
|
|
1658
|
+
}, "strip", z.ZodTypeAny, {
|
|
1659
|
+
pullRequestUrl: string;
|
|
1660
|
+
}, {
|
|
1661
|
+
pullRequestUrl: string;
|
|
1662
|
+
}>>;
|
|
1663
|
+
gitlab: z.ZodOptional<z.ZodObject<{
|
|
1664
|
+
pullRequestUrl: z.ZodString;
|
|
1665
|
+
}, "strip", z.ZodTypeAny, {
|
|
1666
|
+
pullRequestUrl: string;
|
|
1667
|
+
}, {
|
|
1668
|
+
pullRequestUrl: string;
|
|
1669
|
+
}>>;
|
|
1670
|
+
bitbucket: z.ZodOptional<z.ZodObject<{
|
|
1671
|
+
pullRequestUrl: z.ZodString;
|
|
1672
|
+
}, "strip", z.ZodTypeAny, {
|
|
1673
|
+
pullRequestUrl: string;
|
|
1674
|
+
}, {
|
|
1675
|
+
pullRequestUrl: string;
|
|
1676
|
+
}>>;
|
|
1677
|
+
sndocs: z.ZodOptional<z.ZodObject<{
|
|
1678
|
+
url: z.ZodString;
|
|
1679
|
+
}, "strip", z.ZodTypeAny, {
|
|
1680
|
+
url: string;
|
|
1681
|
+
}, {
|
|
1682
|
+
url: string;
|
|
1683
|
+
}>>;
|
|
1684
|
+
}, "strip", z.ZodTypeAny, {
|
|
1685
|
+
error?: string | undefined;
|
|
1686
|
+
logs?: {
|
|
1687
|
+
message: string;
|
|
1688
|
+
type: "error" | "success" | "info" | "warning" | "user";
|
|
1689
|
+
time: Date;
|
|
1690
|
+
id?: string | undefined;
|
|
1691
|
+
}[] | undefined;
|
|
1692
|
+
s3?: {
|
|
1693
|
+
path: string;
|
|
1694
|
+
bucket: string;
|
|
1695
|
+
files: string[];
|
|
1696
|
+
urlPrefix?: string | undefined;
|
|
1697
|
+
} | undefined;
|
|
1698
|
+
github?: {
|
|
1699
|
+
pullRequestUrl: string;
|
|
1700
|
+
} | undefined;
|
|
1701
|
+
azure?: {
|
|
1702
|
+
pullRequestUrl: string;
|
|
1703
|
+
} | undefined;
|
|
1704
|
+
gitlab?: {
|
|
1705
|
+
pullRequestUrl: string;
|
|
1706
|
+
} | undefined;
|
|
1707
|
+
bitbucket?: {
|
|
1708
|
+
pullRequestUrl: string;
|
|
1709
|
+
} | undefined;
|
|
1710
|
+
sndocs?: {
|
|
1711
|
+
url: string;
|
|
1712
|
+
} | undefined;
|
|
1713
|
+
}, {
|
|
1714
|
+
error?: string | undefined;
|
|
1715
|
+
logs?: {
|
|
1716
|
+
message: string;
|
|
1717
|
+
type: "error" | "success" | "info" | "warning" | "user";
|
|
1718
|
+
time: Date;
|
|
1719
|
+
id?: string | undefined;
|
|
1720
|
+
}[] | undefined;
|
|
1721
|
+
s3?: {
|
|
1722
|
+
path: string;
|
|
1723
|
+
bucket: string;
|
|
1724
|
+
files: string[];
|
|
1725
|
+
urlPrefix?: string | undefined;
|
|
1726
|
+
} | undefined;
|
|
1727
|
+
github?: {
|
|
1728
|
+
pullRequestUrl: string;
|
|
1729
|
+
} | undefined;
|
|
1730
|
+
azure?: {
|
|
1731
|
+
pullRequestUrl: string;
|
|
1732
|
+
} | undefined;
|
|
1733
|
+
gitlab?: {
|
|
1734
|
+
pullRequestUrl: string;
|
|
1735
|
+
} | undefined;
|
|
1736
|
+
bitbucket?: {
|
|
1737
|
+
pullRequestUrl: string;
|
|
1738
|
+
} | undefined;
|
|
1739
|
+
sndocs?: {
|
|
1740
|
+
url: string;
|
|
1741
|
+
} | undefined;
|
|
1742
|
+
}>;
|
|
1743
|
+
declare const ExporterDestinationSnDocs: z.ZodObject<{
|
|
1744
|
+
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
1745
|
+
}, "strip", z.ZodTypeAny, {
|
|
1746
|
+
environment: "Live" | "Preview";
|
|
1747
|
+
}, {
|
|
1748
|
+
environment: "Live" | "Preview";
|
|
1749
|
+
}>;
|
|
1750
|
+
declare const ExporterDestinationS3: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
1751
|
+
declare const ExporterDestinationGithub: z.ZodObject<{
|
|
1752
|
+
connectionId: z.ZodString;
|
|
1753
|
+
url: z.ZodString;
|
|
1754
|
+
branch: z.ZodString;
|
|
1755
|
+
relativePath: z.ZodString;
|
|
1756
|
+
userId: z.ZodString;
|
|
1757
|
+
}, "strip", z.ZodTypeAny, {
|
|
1758
|
+
url: string;
|
|
1759
|
+
userId: string;
|
|
1760
|
+
connectionId: string;
|
|
1761
|
+
branch: string;
|
|
1762
|
+
relativePath: string;
|
|
1763
|
+
}, {
|
|
1764
|
+
url: string;
|
|
1765
|
+
userId: string;
|
|
1766
|
+
connectionId: string;
|
|
1767
|
+
branch: string;
|
|
1768
|
+
relativePath: string;
|
|
1769
|
+
}>;
|
|
1770
|
+
declare const ExporterDestinationAzure: z.ZodObject<{
|
|
1771
|
+
connectionId: z.ZodString;
|
|
1772
|
+
organizationId: z.ZodString;
|
|
1773
|
+
projectId: z.ZodString;
|
|
1774
|
+
repositoryId: z.ZodString;
|
|
1775
|
+
branch: z.ZodString;
|
|
1776
|
+
relativePath: z.ZodString;
|
|
1777
|
+
userId: z.ZodString;
|
|
1778
|
+
url: z.ZodString;
|
|
1779
|
+
}, "strip", z.ZodTypeAny, {
|
|
1780
|
+
url: string;
|
|
1781
|
+
userId: string;
|
|
1782
|
+
connectionId: string;
|
|
1783
|
+
branch: string;
|
|
1784
|
+
relativePath: string;
|
|
1785
|
+
organizationId: string;
|
|
1786
|
+
projectId: string;
|
|
1787
|
+
repositoryId: string;
|
|
1788
|
+
}, {
|
|
1789
|
+
url: string;
|
|
1790
|
+
userId: string;
|
|
1791
|
+
connectionId: string;
|
|
1792
|
+
branch: string;
|
|
1793
|
+
relativePath: string;
|
|
1794
|
+
organizationId: string;
|
|
1795
|
+
projectId: string;
|
|
1796
|
+
repositoryId: string;
|
|
1797
|
+
}>;
|
|
1798
|
+
declare const ExporterDestinationGitlab: z.ZodObject<{
|
|
1799
|
+
connectionId: z.ZodString;
|
|
1800
|
+
projectId: z.ZodString;
|
|
1801
|
+
branch: z.ZodString;
|
|
1802
|
+
relativePath: z.ZodString;
|
|
1803
|
+
userId: z.ZodString;
|
|
1804
|
+
url: z.ZodString;
|
|
1805
|
+
}, "strip", z.ZodTypeAny, {
|
|
1806
|
+
url: string;
|
|
1807
|
+
userId: string;
|
|
1808
|
+
connectionId: string;
|
|
1809
|
+
branch: string;
|
|
1810
|
+
relativePath: string;
|
|
1811
|
+
projectId: string;
|
|
1812
|
+
}, {
|
|
1813
|
+
url: string;
|
|
1814
|
+
userId: string;
|
|
1815
|
+
connectionId: string;
|
|
1816
|
+
branch: string;
|
|
1817
|
+
relativePath: string;
|
|
1818
|
+
projectId: string;
|
|
1819
|
+
}>;
|
|
1820
|
+
declare const ExporterDestinationBitbucket: z.ZodObject<{
|
|
1821
|
+
connectionId: z.ZodString;
|
|
1822
|
+
workspaceSlug: z.ZodString;
|
|
1823
|
+
projectKey: z.ZodString;
|
|
1824
|
+
repoSlug: z.ZodString;
|
|
1825
|
+
branch: z.ZodString;
|
|
1826
|
+
relativePath: z.ZodString;
|
|
1827
|
+
userId: z.ZodString;
|
|
1828
|
+
url: z.ZodString;
|
|
1829
|
+
}, "strip", z.ZodTypeAny, {
|
|
1830
|
+
url: string;
|
|
1831
|
+
userId: string;
|
|
1832
|
+
connectionId: string;
|
|
1833
|
+
branch: string;
|
|
1834
|
+
relativePath: string;
|
|
1835
|
+
workspaceSlug: string;
|
|
1836
|
+
projectKey: string;
|
|
1837
|
+
repoSlug: string;
|
|
1838
|
+
}, {
|
|
1839
|
+
url: string;
|
|
1840
|
+
userId: string;
|
|
1841
|
+
connectionId: string;
|
|
1842
|
+
branch: string;
|
|
1843
|
+
relativePath: string;
|
|
1844
|
+
workspaceSlug: string;
|
|
1845
|
+
projectKey: string;
|
|
1846
|
+
repoSlug: string;
|
|
1847
|
+
}>;
|
|
1848
|
+
declare const ExporterJobDestination: z.ZodEnum<["s3", "webhookUrl", "github", "documentation", "azure", "gitlab"]>;
|
|
1849
|
+
type ExporterJobDestination = z.infer<typeof ExporterJobDestination>;
|
|
1850
|
+
declare const ExporterJobStatus: z.ZodEnum<["InProgress", "Success", "Failed", "Timeout"]>;
|
|
1851
|
+
type ExporterJobStatus = z.infer<typeof ExporterJobStatus>;
|
|
1852
|
+
declare const ExporterJob: z.ZodObject<{
|
|
1571
1853
|
id: z.ZodString;
|
|
1572
|
-
|
|
1854
|
+
createdAt: z.ZodDate;
|
|
1855
|
+
finishedAt: z.ZodOptional<z.ZodDate>;
|
|
1573
1856
|
designSystemId: z.ZodString;
|
|
1574
1857
|
designSystemVersionId: z.ZodString;
|
|
1575
|
-
|
|
1576
|
-
docsUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1858
|
+
workspaceId: z.ZodString;
|
|
1577
1859
|
scheduleId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1578
|
-
exporterId: z.
|
|
1579
|
-
|
|
1580
|
-
|
|
1581
|
-
|
|
1860
|
+
exporterId: z.ZodString;
|
|
1861
|
+
brandId: z.ZodOptional<z.ZodString>;
|
|
1862
|
+
themeId: z.ZodOptional<z.ZodString>;
|
|
1863
|
+
estimatedExecutionTime: z.ZodOptional<z.ZodNumber>;
|
|
1864
|
+
status: z.ZodEnum<["InProgress", "Success", "Failed", "Timeout"]>;
|
|
1865
|
+
result: z.ZodOptional<z.ZodObject<{
|
|
1866
|
+
error: z.ZodOptional<z.ZodString>;
|
|
1867
|
+
logs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1868
|
+
id: z.ZodOptional<z.ZodString>;
|
|
1869
|
+
time: z.ZodDate;
|
|
1870
|
+
type: z.ZodEnum<["success", "info", "warning", "error", "user"]>;
|
|
1871
|
+
message: z.ZodString;
|
|
1872
|
+
}, "strip", z.ZodTypeAny, {
|
|
1873
|
+
message: string;
|
|
1874
|
+
type: "error" | "success" | "info" | "warning" | "user";
|
|
1875
|
+
time: Date;
|
|
1876
|
+
id?: string | undefined;
|
|
1877
|
+
}, {
|
|
1878
|
+
message: string;
|
|
1879
|
+
type: "error" | "success" | "info" | "warning" | "user";
|
|
1880
|
+
time: Date;
|
|
1881
|
+
id?: string | undefined;
|
|
1882
|
+
}>, "many">>;
|
|
1883
|
+
s3: z.ZodOptional<z.ZodObject<{
|
|
1884
|
+
bucket: z.ZodString;
|
|
1885
|
+
urlPrefix: z.ZodOptional<z.ZodString>;
|
|
1886
|
+
path: z.ZodString;
|
|
1887
|
+
files: z.ZodArray<z.ZodString, "many">;
|
|
1888
|
+
}, "strip", z.ZodTypeAny, {
|
|
1889
|
+
path: string;
|
|
1890
|
+
bucket: string;
|
|
1891
|
+
files: string[];
|
|
1892
|
+
urlPrefix?: string | undefined;
|
|
1893
|
+
}, {
|
|
1894
|
+
path: string;
|
|
1895
|
+
bucket: string;
|
|
1896
|
+
files: string[];
|
|
1897
|
+
urlPrefix?: string | undefined;
|
|
1898
|
+
}>>;
|
|
1899
|
+
github: z.ZodOptional<z.ZodObject<{
|
|
1900
|
+
pullRequestUrl: z.ZodString;
|
|
1901
|
+
}, "strip", z.ZodTypeAny, {
|
|
1902
|
+
pullRequestUrl: string;
|
|
1903
|
+
}, {
|
|
1904
|
+
pullRequestUrl: string;
|
|
1905
|
+
}>>;
|
|
1906
|
+
azure: z.ZodOptional<z.ZodObject<{
|
|
1907
|
+
pullRequestUrl: z.ZodString;
|
|
1908
|
+
}, "strip", z.ZodTypeAny, {
|
|
1909
|
+
pullRequestUrl: string;
|
|
1910
|
+
}, {
|
|
1911
|
+
pullRequestUrl: string;
|
|
1912
|
+
}>>;
|
|
1913
|
+
gitlab: z.ZodOptional<z.ZodObject<{
|
|
1914
|
+
pullRequestUrl: z.ZodString;
|
|
1915
|
+
}, "strip", z.ZodTypeAny, {
|
|
1916
|
+
pullRequestUrl: string;
|
|
1917
|
+
}, {
|
|
1918
|
+
pullRequestUrl: string;
|
|
1919
|
+
}>>;
|
|
1920
|
+
bitbucket: z.ZodOptional<z.ZodObject<{
|
|
1921
|
+
pullRequestUrl: z.ZodString;
|
|
1922
|
+
}, "strip", z.ZodTypeAny, {
|
|
1923
|
+
pullRequestUrl: string;
|
|
1924
|
+
}, {
|
|
1925
|
+
pullRequestUrl: string;
|
|
1926
|
+
}>>;
|
|
1927
|
+
sndocs: z.ZodOptional<z.ZodObject<{
|
|
1928
|
+
url: z.ZodString;
|
|
1929
|
+
}, "strip", z.ZodTypeAny, {
|
|
1930
|
+
url: string;
|
|
1931
|
+
}, {
|
|
1932
|
+
url: string;
|
|
1933
|
+
}>>;
|
|
1934
|
+
}, "strip", z.ZodTypeAny, {
|
|
1935
|
+
error?: string | undefined;
|
|
1936
|
+
logs?: {
|
|
1937
|
+
message: string;
|
|
1938
|
+
type: "error" | "success" | "info" | "warning" | "user";
|
|
1939
|
+
time: Date;
|
|
1940
|
+
id?: string | undefined;
|
|
1941
|
+
}[] | undefined;
|
|
1942
|
+
s3?: {
|
|
1943
|
+
path: string;
|
|
1944
|
+
bucket: string;
|
|
1945
|
+
files: string[];
|
|
1946
|
+
urlPrefix?: string | undefined;
|
|
1947
|
+
} | undefined;
|
|
1948
|
+
github?: {
|
|
1949
|
+
pullRequestUrl: string;
|
|
1950
|
+
} | undefined;
|
|
1951
|
+
azure?: {
|
|
1952
|
+
pullRequestUrl: string;
|
|
1953
|
+
} | undefined;
|
|
1954
|
+
gitlab?: {
|
|
1955
|
+
pullRequestUrl: string;
|
|
1956
|
+
} | undefined;
|
|
1957
|
+
bitbucket?: {
|
|
1958
|
+
pullRequestUrl: string;
|
|
1959
|
+
} | undefined;
|
|
1960
|
+
sndocs?: {
|
|
1961
|
+
url: string;
|
|
1962
|
+
} | undefined;
|
|
1963
|
+
}, {
|
|
1964
|
+
error?: string | undefined;
|
|
1965
|
+
logs?: {
|
|
1966
|
+
message: string;
|
|
1967
|
+
type: "error" | "success" | "info" | "warning" | "user";
|
|
1968
|
+
time: Date;
|
|
1969
|
+
id?: string | undefined;
|
|
1970
|
+
}[] | undefined;
|
|
1971
|
+
s3?: {
|
|
1972
|
+
path: string;
|
|
1973
|
+
bucket: string;
|
|
1974
|
+
files: string[];
|
|
1975
|
+
urlPrefix?: string | undefined;
|
|
1976
|
+
} | undefined;
|
|
1977
|
+
github?: {
|
|
1978
|
+
pullRequestUrl: string;
|
|
1979
|
+
} | undefined;
|
|
1980
|
+
azure?: {
|
|
1981
|
+
pullRequestUrl: string;
|
|
1982
|
+
} | undefined;
|
|
1983
|
+
gitlab?: {
|
|
1984
|
+
pullRequestUrl: string;
|
|
1985
|
+
} | undefined;
|
|
1986
|
+
bitbucket?: {
|
|
1987
|
+
pullRequestUrl: string;
|
|
1988
|
+
} | undefined;
|
|
1989
|
+
sndocs?: {
|
|
1990
|
+
url: string;
|
|
1991
|
+
} | undefined;
|
|
1992
|
+
}>>;
|
|
1993
|
+
createdByUserId: z.ZodOptional<z.ZodString>;
|
|
1994
|
+
webhookUrl: z.ZodOptional<z.ZodString>;
|
|
1995
|
+
destinationSnDocs: z.ZodOptional<z.ZodObject<{
|
|
1996
|
+
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
1997
|
+
}, "strip", z.ZodTypeAny, {
|
|
1998
|
+
environment: "Live" | "Preview";
|
|
1999
|
+
}, {
|
|
2000
|
+
environment: "Live" | "Preview";
|
|
2001
|
+
}>>;
|
|
2002
|
+
destinationS3: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>;
|
|
2003
|
+
destinationGithub: z.ZodOptional<z.ZodObject<{
|
|
2004
|
+
connectionId: z.ZodString;
|
|
2005
|
+
url: z.ZodString;
|
|
2006
|
+
branch: z.ZodString;
|
|
2007
|
+
relativePath: z.ZodString;
|
|
2008
|
+
userId: z.ZodString;
|
|
2009
|
+
}, "strip", z.ZodTypeAny, {
|
|
2010
|
+
url: string;
|
|
2011
|
+
userId: string;
|
|
2012
|
+
connectionId: string;
|
|
2013
|
+
branch: string;
|
|
2014
|
+
relativePath: string;
|
|
2015
|
+
}, {
|
|
2016
|
+
url: string;
|
|
2017
|
+
userId: string;
|
|
2018
|
+
connectionId: string;
|
|
2019
|
+
branch: string;
|
|
2020
|
+
relativePath: string;
|
|
2021
|
+
}>>;
|
|
2022
|
+
destinationAzure: z.ZodOptional<z.ZodObject<{
|
|
2023
|
+
connectionId: z.ZodString;
|
|
2024
|
+
organizationId: z.ZodString;
|
|
2025
|
+
projectId: z.ZodString;
|
|
2026
|
+
repositoryId: z.ZodString;
|
|
2027
|
+
branch: z.ZodString;
|
|
2028
|
+
relativePath: z.ZodString;
|
|
2029
|
+
userId: z.ZodString;
|
|
2030
|
+
url: z.ZodString;
|
|
2031
|
+
}, "strip", z.ZodTypeAny, {
|
|
2032
|
+
url: string;
|
|
2033
|
+
userId: string;
|
|
2034
|
+
connectionId: string;
|
|
2035
|
+
branch: string;
|
|
2036
|
+
relativePath: string;
|
|
2037
|
+
organizationId: string;
|
|
2038
|
+
projectId: string;
|
|
2039
|
+
repositoryId: string;
|
|
2040
|
+
}, {
|
|
2041
|
+
url: string;
|
|
2042
|
+
userId: string;
|
|
2043
|
+
connectionId: string;
|
|
2044
|
+
branch: string;
|
|
2045
|
+
relativePath: string;
|
|
2046
|
+
organizationId: string;
|
|
2047
|
+
projectId: string;
|
|
2048
|
+
repositoryId: string;
|
|
2049
|
+
}>>;
|
|
2050
|
+
destinationGitlab: z.ZodOptional<z.ZodObject<{
|
|
2051
|
+
connectionId: z.ZodString;
|
|
2052
|
+
projectId: z.ZodString;
|
|
2053
|
+
branch: z.ZodString;
|
|
2054
|
+
relativePath: z.ZodString;
|
|
2055
|
+
userId: z.ZodString;
|
|
2056
|
+
url: z.ZodString;
|
|
2057
|
+
}, "strip", z.ZodTypeAny, {
|
|
2058
|
+
url: string;
|
|
2059
|
+
userId: string;
|
|
2060
|
+
connectionId: string;
|
|
2061
|
+
branch: string;
|
|
2062
|
+
relativePath: string;
|
|
2063
|
+
projectId: string;
|
|
2064
|
+
}, {
|
|
2065
|
+
url: string;
|
|
2066
|
+
userId: string;
|
|
2067
|
+
connectionId: string;
|
|
2068
|
+
branch: string;
|
|
2069
|
+
relativePath: string;
|
|
2070
|
+
projectId: string;
|
|
2071
|
+
}>>;
|
|
2072
|
+
destinationBitbucket: z.ZodOptional<z.ZodObject<{
|
|
2073
|
+
connectionId: z.ZodString;
|
|
2074
|
+
workspaceSlug: z.ZodString;
|
|
2075
|
+
projectKey: z.ZodString;
|
|
2076
|
+
repoSlug: z.ZodString;
|
|
2077
|
+
branch: z.ZodString;
|
|
2078
|
+
relativePath: z.ZodString;
|
|
2079
|
+
userId: z.ZodString;
|
|
2080
|
+
url: z.ZodString;
|
|
2081
|
+
}, "strip", z.ZodTypeAny, {
|
|
2082
|
+
url: string;
|
|
2083
|
+
userId: string;
|
|
2084
|
+
connectionId: string;
|
|
2085
|
+
branch: string;
|
|
2086
|
+
relativePath: string;
|
|
2087
|
+
workspaceSlug: string;
|
|
2088
|
+
projectKey: string;
|
|
2089
|
+
repoSlug: string;
|
|
2090
|
+
}, {
|
|
2091
|
+
url: string;
|
|
2092
|
+
userId: string;
|
|
2093
|
+
connectionId: string;
|
|
2094
|
+
branch: string;
|
|
2095
|
+
relativePath: string;
|
|
2096
|
+
workspaceSlug: string;
|
|
2097
|
+
projectKey: string;
|
|
2098
|
+
repoSlug: string;
|
|
2099
|
+
}>>;
|
|
1582
2100
|
}, "strip", z.ZodTypeAny, {
|
|
1583
2101
|
id: string;
|
|
1584
2102
|
createdAt: Date;
|
|
@@ -1586,11 +2104,83 @@ declare const ExportJob: z.ZodObject<{
|
|
|
1586
2104
|
designSystemVersionId: string;
|
|
1587
2105
|
designSystemId: string;
|
|
1588
2106
|
workspaceId: string;
|
|
1589
|
-
|
|
1590
|
-
|
|
2107
|
+
exporterId: string;
|
|
2108
|
+
finishedAt?: Date | undefined;
|
|
1591
2109
|
scheduleId?: string | null | undefined;
|
|
1592
|
-
|
|
1593
|
-
|
|
2110
|
+
brandId?: string | undefined;
|
|
2111
|
+
themeId?: string | undefined;
|
|
2112
|
+
estimatedExecutionTime?: number | undefined;
|
|
2113
|
+
result?: {
|
|
2114
|
+
error?: string | undefined;
|
|
2115
|
+
logs?: {
|
|
2116
|
+
message: string;
|
|
2117
|
+
type: "error" | "success" | "info" | "warning" | "user";
|
|
2118
|
+
time: Date;
|
|
2119
|
+
id?: string | undefined;
|
|
2120
|
+
}[] | undefined;
|
|
2121
|
+
s3?: {
|
|
2122
|
+
path: string;
|
|
2123
|
+
bucket: string;
|
|
2124
|
+
files: string[];
|
|
2125
|
+
urlPrefix?: string | undefined;
|
|
2126
|
+
} | undefined;
|
|
2127
|
+
github?: {
|
|
2128
|
+
pullRequestUrl: string;
|
|
2129
|
+
} | undefined;
|
|
2130
|
+
azure?: {
|
|
2131
|
+
pullRequestUrl: string;
|
|
2132
|
+
} | undefined;
|
|
2133
|
+
gitlab?: {
|
|
2134
|
+
pullRequestUrl: string;
|
|
2135
|
+
} | undefined;
|
|
2136
|
+
bitbucket?: {
|
|
2137
|
+
pullRequestUrl: string;
|
|
2138
|
+
} | undefined;
|
|
2139
|
+
sndocs?: {
|
|
2140
|
+
url: string;
|
|
2141
|
+
} | undefined;
|
|
2142
|
+
} | undefined;
|
|
2143
|
+
createdByUserId?: string | undefined;
|
|
2144
|
+
webhookUrl?: string | undefined;
|
|
2145
|
+
destinationSnDocs?: {
|
|
2146
|
+
environment: "Live" | "Preview";
|
|
2147
|
+
} | undefined;
|
|
2148
|
+
destinationS3?: {} | undefined;
|
|
2149
|
+
destinationGithub?: {
|
|
2150
|
+
url: string;
|
|
2151
|
+
userId: string;
|
|
2152
|
+
connectionId: string;
|
|
2153
|
+
branch: string;
|
|
2154
|
+
relativePath: string;
|
|
2155
|
+
} | undefined;
|
|
2156
|
+
destinationAzure?: {
|
|
2157
|
+
url: string;
|
|
2158
|
+
userId: string;
|
|
2159
|
+
connectionId: string;
|
|
2160
|
+
branch: string;
|
|
2161
|
+
relativePath: string;
|
|
2162
|
+
organizationId: string;
|
|
2163
|
+
projectId: string;
|
|
2164
|
+
repositoryId: string;
|
|
2165
|
+
} | undefined;
|
|
2166
|
+
destinationGitlab?: {
|
|
2167
|
+
url: string;
|
|
2168
|
+
userId: string;
|
|
2169
|
+
connectionId: string;
|
|
2170
|
+
branch: string;
|
|
2171
|
+
relativePath: string;
|
|
2172
|
+
projectId: string;
|
|
2173
|
+
} | undefined;
|
|
2174
|
+
destinationBitbucket?: {
|
|
2175
|
+
url: string;
|
|
2176
|
+
userId: string;
|
|
2177
|
+
connectionId: string;
|
|
2178
|
+
branch: string;
|
|
2179
|
+
relativePath: string;
|
|
2180
|
+
workspaceSlug: string;
|
|
2181
|
+
projectKey: string;
|
|
2182
|
+
repoSlug: string;
|
|
2183
|
+
} | undefined;
|
|
1594
2184
|
}, {
|
|
1595
2185
|
id: string;
|
|
1596
2186
|
createdAt: Date;
|
|
@@ -1598,13 +2188,120 @@ declare const ExportJob: z.ZodObject<{
|
|
|
1598
2188
|
designSystemVersionId: string;
|
|
1599
2189
|
designSystemId: string;
|
|
1600
2190
|
workspaceId: string;
|
|
1601
|
-
|
|
1602
|
-
|
|
2191
|
+
exporterId: string;
|
|
2192
|
+
finishedAt?: Date | undefined;
|
|
2193
|
+
scheduleId?: string | null | undefined;
|
|
2194
|
+
brandId?: string | undefined;
|
|
2195
|
+
themeId?: string | undefined;
|
|
2196
|
+
estimatedExecutionTime?: number | undefined;
|
|
2197
|
+
result?: {
|
|
2198
|
+
error?: string | undefined;
|
|
2199
|
+
logs?: {
|
|
2200
|
+
message: string;
|
|
2201
|
+
type: "error" | "success" | "info" | "warning" | "user";
|
|
2202
|
+
time: Date;
|
|
2203
|
+
id?: string | undefined;
|
|
2204
|
+
}[] | undefined;
|
|
2205
|
+
s3?: {
|
|
2206
|
+
path: string;
|
|
2207
|
+
bucket: string;
|
|
2208
|
+
files: string[];
|
|
2209
|
+
urlPrefix?: string | undefined;
|
|
2210
|
+
} | undefined;
|
|
2211
|
+
github?: {
|
|
2212
|
+
pullRequestUrl: string;
|
|
2213
|
+
} | undefined;
|
|
2214
|
+
azure?: {
|
|
2215
|
+
pullRequestUrl: string;
|
|
2216
|
+
} | undefined;
|
|
2217
|
+
gitlab?: {
|
|
2218
|
+
pullRequestUrl: string;
|
|
2219
|
+
} | undefined;
|
|
2220
|
+
bitbucket?: {
|
|
2221
|
+
pullRequestUrl: string;
|
|
2222
|
+
} | undefined;
|
|
2223
|
+
sndocs?: {
|
|
2224
|
+
url: string;
|
|
2225
|
+
} | undefined;
|
|
2226
|
+
} | undefined;
|
|
2227
|
+
createdByUserId?: string | undefined;
|
|
2228
|
+
webhookUrl?: string | undefined;
|
|
2229
|
+
destinationSnDocs?: {
|
|
2230
|
+
environment: "Live" | "Preview";
|
|
2231
|
+
} | undefined;
|
|
2232
|
+
destinationS3?: {} | undefined;
|
|
2233
|
+
destinationGithub?: {
|
|
2234
|
+
url: string;
|
|
2235
|
+
userId: string;
|
|
2236
|
+
connectionId: string;
|
|
2237
|
+
branch: string;
|
|
2238
|
+
relativePath: string;
|
|
2239
|
+
} | undefined;
|
|
2240
|
+
destinationAzure?: {
|
|
2241
|
+
url: string;
|
|
2242
|
+
userId: string;
|
|
2243
|
+
connectionId: string;
|
|
2244
|
+
branch: string;
|
|
2245
|
+
relativePath: string;
|
|
2246
|
+
organizationId: string;
|
|
2247
|
+
projectId: string;
|
|
2248
|
+
repositoryId: string;
|
|
2249
|
+
} | undefined;
|
|
2250
|
+
destinationGitlab?: {
|
|
2251
|
+
url: string;
|
|
2252
|
+
userId: string;
|
|
2253
|
+
connectionId: string;
|
|
2254
|
+
branch: string;
|
|
2255
|
+
relativePath: string;
|
|
2256
|
+
projectId: string;
|
|
2257
|
+
} | undefined;
|
|
2258
|
+
destinationBitbucket?: {
|
|
2259
|
+
url: string;
|
|
2260
|
+
userId: string;
|
|
2261
|
+
connectionId: string;
|
|
2262
|
+
branch: string;
|
|
2263
|
+
relativePath: string;
|
|
2264
|
+
workspaceSlug: string;
|
|
2265
|
+
projectKey: string;
|
|
2266
|
+
repoSlug: string;
|
|
2267
|
+
} | undefined;
|
|
2268
|
+
}>;
|
|
2269
|
+
type ExporterJob = z.infer<typeof ExporterJob>;
|
|
2270
|
+
declare const ExporterJobFindByFilter: z.ZodObject<{
|
|
2271
|
+
status: z.ZodOptional<z.ZodEnum<["InProgress", "Success", "Failed", "Timeout"]>>;
|
|
2272
|
+
designSystemVersionId: z.ZodOptional<z.ZodString>;
|
|
2273
|
+
designSystemId: z.ZodOptional<z.ZodString>;
|
|
2274
|
+
brandId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2275
|
+
createdByUserId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2276
|
+
themeId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2277
|
+
scheduleId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
2278
|
+
exporterId: z.ZodOptional<z.ZodString>;
|
|
2279
|
+
destinations: z.ZodOptional<z.ZodArray<z.ZodEnum<["s3", "webhookUrl", "github", "documentation", "azure", "gitlab"]>, "many">>;
|
|
2280
|
+
docsEnvironment: z.ZodOptional<z.ZodEnum<["Live", "Preview"]>>;
|
|
2281
|
+
}, "strip", z.ZodTypeAny, {
|
|
2282
|
+
status?: "Success" | "InProgress" | "Failed" | "Timeout" | undefined;
|
|
2283
|
+
designSystemVersionId?: string | undefined;
|
|
2284
|
+
designSystemId?: string | undefined;
|
|
2285
|
+
brandId?: string | undefined;
|
|
2286
|
+
createdByUserId?: string | undefined;
|
|
2287
|
+
themeId?: string | undefined;
|
|
2288
|
+
scheduleId?: string | null | undefined;
|
|
2289
|
+
exporterId?: string | undefined;
|
|
2290
|
+
destinations?: ("s3" | "webhookUrl" | "github" | "documentation" | "azure" | "gitlab")[] | undefined;
|
|
2291
|
+
docsEnvironment?: "Live" | "Preview" | undefined;
|
|
2292
|
+
}, {
|
|
2293
|
+
status?: "Success" | "InProgress" | "Failed" | "Timeout" | undefined;
|
|
2294
|
+
designSystemVersionId?: string | undefined;
|
|
2295
|
+
designSystemId?: string | undefined;
|
|
2296
|
+
brandId?: string | undefined;
|
|
2297
|
+
createdByUserId?: string | undefined;
|
|
2298
|
+
themeId?: string | undefined;
|
|
1603
2299
|
scheduleId?: string | null | undefined;
|
|
1604
|
-
exporterId?: string |
|
|
1605
|
-
|
|
2300
|
+
exporterId?: string | undefined;
|
|
2301
|
+
destinations?: ("s3" | "webhookUrl" | "github" | "documentation" | "azure" | "gitlab")[] | undefined;
|
|
2302
|
+
docsEnvironment?: "Live" | "Preview" | undefined;
|
|
1606
2303
|
}>;
|
|
1607
|
-
type
|
|
2304
|
+
type ExporterJobFindByFilter = z.infer<typeof ExporterJobFindByFilter>;
|
|
1608
2305
|
|
|
1609
2306
|
declare const ExporterWorkspaceMembershipRole: z.ZodEnum<["Owner", "OwnerArchived", "User"]>;
|
|
1610
2307
|
type ExporterWorkspaceMembershipRole = z.infer<typeof ExporterWorkspaceMembershipRole>;
|
|
@@ -1680,92 +2377,101 @@ type ExporterSource = z.infer<typeof ExporterSource>;
|
|
|
1680
2377
|
declare const ExporterTag: z.ZodString;
|
|
1681
2378
|
type ExporterTag = z.infer<typeof ExporterTag>;
|
|
1682
2379
|
declare const ExporterDetails: z.ZodObject<{
|
|
1683
|
-
packageId: z.ZodString;
|
|
1684
|
-
version: z.ZodString;
|
|
1685
2380
|
description: z.ZodString;
|
|
2381
|
+
version: z.ZodString;
|
|
2382
|
+
routingVersion: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
1686
2383
|
author: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
1687
2384
|
organization: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
1688
2385
|
homepage: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
1689
2386
|
readme: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
1690
|
-
tags: z.ZodDefault<z.
|
|
1691
|
-
|
|
2387
|
+
tags: z.ZodDefault<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string[], z.ZodTypeDef, string[]>>>, string[] | undefined, string[] | null | undefined>>;
|
|
2388
|
+
packageId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
1692
2389
|
iconURL: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
1693
|
-
configurationProperties: z.ZodDefault<z.
|
|
1694
|
-
values: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1695
|
-
type: z.ZodEnum<["string", "number", "boolean", "image", "enum", "color", "typography", "component", "componentProperties", "tokenProperties", "tokenType"]>;
|
|
1696
|
-
description: z.ZodOptional<z.ZodString>;
|
|
1697
|
-
key: z.ZodString;
|
|
1698
|
-
label: z.ZodString;
|
|
1699
|
-
default: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodBoolean, z.ZodNumber]>>>;
|
|
1700
|
-
inputType: z.ZodOptional<z.ZodEnum<["code", "plain"]>>;
|
|
1701
|
-
isMultiline: z.ZodOptional<z.ZodBoolean>;
|
|
1702
|
-
category: z.ZodString;
|
|
1703
|
-
}, "strip", z.ZodTypeAny, {
|
|
2390
|
+
configurationProperties: z.ZodDefault<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
1704
2391
|
type: "string" | "number" | "boolean" | "color" | "image" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
1705
2392
|
key: string;
|
|
1706
2393
|
label: string;
|
|
1707
2394
|
category: string;
|
|
1708
|
-
values?: string[] | undefined;
|
|
1709
|
-
description?: string | undefined;
|
|
2395
|
+
values?: string[] | null | undefined;
|
|
2396
|
+
description?: string | null | undefined;
|
|
1710
2397
|
default?: string | number | boolean | null | undefined;
|
|
1711
2398
|
inputType?: "code" | "plain" | undefined;
|
|
1712
|
-
isMultiline?: boolean | undefined;
|
|
1713
|
-
}, {
|
|
2399
|
+
isMultiline?: boolean | null | undefined;
|
|
2400
|
+
}[], z.ZodTypeDef, {
|
|
1714
2401
|
type: "string" | "number" | "boolean" | "color" | "image" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
1715
2402
|
key: string;
|
|
1716
2403
|
label: string;
|
|
1717
2404
|
category: string;
|
|
1718
|
-
values?: string[] | undefined;
|
|
1719
|
-
description?: string | undefined;
|
|
2405
|
+
values?: string[] | null | undefined;
|
|
2406
|
+
description?: string | null | undefined;
|
|
1720
2407
|
default?: string | number | boolean | null | undefined;
|
|
1721
2408
|
inputType?: "code" | "plain" | undefined;
|
|
1722
|
-
isMultiline?: boolean | undefined;
|
|
1723
|
-
}
|
|
1724
|
-
|
|
1725
|
-
|
|
1726
|
-
|
|
1727
|
-
category:
|
|
1728
|
-
|
|
1729
|
-
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
|
|
1735
|
-
|
|
1736
|
-
|
|
1737
|
-
|
|
1738
|
-
|
|
1739
|
-
|
|
1740
|
-
|
|
2409
|
+
isMultiline?: boolean | null | undefined;
|
|
2410
|
+
}[]>>>, {
|
|
2411
|
+
type: "string" | "number" | "boolean" | "color" | "image" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
2412
|
+
key: string;
|
|
2413
|
+
label: string;
|
|
2414
|
+
category: string;
|
|
2415
|
+
values?: string[] | null | undefined;
|
|
2416
|
+
description?: string | null | undefined;
|
|
2417
|
+
default?: string | number | boolean | null | undefined;
|
|
2418
|
+
inputType?: "code" | "plain" | undefined;
|
|
2419
|
+
isMultiline?: boolean | null | undefined;
|
|
2420
|
+
}[] | undefined, {
|
|
2421
|
+
type: "string" | "number" | "boolean" | "color" | "image" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
2422
|
+
key: string;
|
|
2423
|
+
label: string;
|
|
2424
|
+
category: string;
|
|
2425
|
+
values?: string[] | null | undefined;
|
|
2426
|
+
description?: string | null | undefined;
|
|
2427
|
+
default?: string | number | boolean | null | undefined;
|
|
2428
|
+
inputType?: "code" | "plain" | undefined;
|
|
2429
|
+
isMultiline?: boolean | null | undefined;
|
|
2430
|
+
}[] | null | undefined>>;
|
|
2431
|
+
customBlocks: z.ZodDefault<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2432
|
+
properties: {
|
|
1741
2433
|
type: "string" | "number" | "boolean" | "color" | "image" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
1742
2434
|
key: string;
|
|
1743
2435
|
label: string;
|
|
1744
|
-
description?: string | undefined;
|
|
1745
|
-
values?: string[] | undefined;
|
|
2436
|
+
description?: string | null | undefined;
|
|
2437
|
+
values?: string[] | null | undefined;
|
|
1746
2438
|
default?: string | number | boolean | null | undefined;
|
|
1747
2439
|
inputType?: "code" | "plain" | undefined;
|
|
1748
|
-
isMultiline?: boolean | undefined;
|
|
1749
|
-
}
|
|
2440
|
+
isMultiline?: boolean | null | undefined;
|
|
2441
|
+
}[];
|
|
2442
|
+
title: string;
|
|
2443
|
+
key: string;
|
|
2444
|
+
category: string;
|
|
2445
|
+
iconURL: string;
|
|
2446
|
+
mode: "array" | "block";
|
|
2447
|
+
description?: string | undefined;
|
|
2448
|
+
}[], z.ZodTypeDef, {
|
|
2449
|
+
properties: {
|
|
1750
2450
|
type: "string" | "number" | "boolean" | "color" | "image" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
1751
2451
|
key: string;
|
|
1752
2452
|
label: string;
|
|
1753
|
-
description?: string | undefined;
|
|
1754
|
-
values?: string[] | undefined;
|
|
2453
|
+
description?: string | null | undefined;
|
|
2454
|
+
values?: string[] | null | undefined;
|
|
1755
2455
|
default?: string | number | boolean | null | undefined;
|
|
1756
2456
|
inputType?: "code" | "plain" | undefined;
|
|
1757
|
-
isMultiline?: boolean | undefined;
|
|
1758
|
-
}
|
|
1759
|
-
|
|
2457
|
+
isMultiline?: boolean | null | undefined;
|
|
2458
|
+
}[];
|
|
2459
|
+
title: string;
|
|
2460
|
+
key: string;
|
|
2461
|
+
category: string;
|
|
2462
|
+
iconURL: string;
|
|
2463
|
+
mode: "array" | "block";
|
|
2464
|
+
description?: string | null | undefined;
|
|
2465
|
+
}[]>>>, {
|
|
1760
2466
|
properties: {
|
|
1761
2467
|
type: "string" | "number" | "boolean" | "color" | "image" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
1762
2468
|
key: string;
|
|
1763
2469
|
label: string;
|
|
1764
|
-
description?: string | undefined;
|
|
1765
|
-
values?: string[] | undefined;
|
|
2470
|
+
description?: string | null | undefined;
|
|
2471
|
+
values?: string[] | null | undefined;
|
|
1766
2472
|
default?: string | number | boolean | null | undefined;
|
|
1767
2473
|
inputType?: "code" | "plain" | undefined;
|
|
1768
|
-
isMultiline?: boolean | undefined;
|
|
2474
|
+
isMultiline?: boolean | null | undefined;
|
|
1769
2475
|
}[];
|
|
1770
2476
|
title: string;
|
|
1771
2477
|
key: string;
|
|
@@ -1773,45 +2479,51 @@ declare const ExporterDetails: z.ZodObject<{
|
|
|
1773
2479
|
iconURL: string;
|
|
1774
2480
|
mode: "array" | "block";
|
|
1775
2481
|
description?: string | undefined;
|
|
1776
|
-
}, {
|
|
2482
|
+
}[] | undefined, {
|
|
1777
2483
|
properties: {
|
|
1778
2484
|
type: "string" | "number" | "boolean" | "color" | "image" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
1779
2485
|
key: string;
|
|
1780
2486
|
label: string;
|
|
1781
|
-
description?: string | undefined;
|
|
1782
|
-
values?: string[] | undefined;
|
|
2487
|
+
description?: string | null | undefined;
|
|
2488
|
+
values?: string[] | null | undefined;
|
|
1783
2489
|
default?: string | number | boolean | null | undefined;
|
|
1784
2490
|
inputType?: "code" | "plain" | undefined;
|
|
1785
|
-
isMultiline?: boolean | undefined;
|
|
2491
|
+
isMultiline?: boolean | null | undefined;
|
|
1786
2492
|
}[];
|
|
1787
2493
|
title: string;
|
|
1788
2494
|
key: string;
|
|
1789
2495
|
category: string;
|
|
1790
2496
|
iconURL: string;
|
|
1791
2497
|
mode: "array" | "block";
|
|
1792
|
-
description?: string | undefined;
|
|
1793
|
-
}
|
|
1794
|
-
blockVariants: z.ZodDefault<z.
|
|
1795
|
-
key: z.ZodString;
|
|
1796
|
-
name: z.ZodString;
|
|
1797
|
-
isDefault: z.ZodOptional<z.ZodBoolean>;
|
|
1798
|
-
description: z.ZodOptional<z.ZodString>;
|
|
1799
|
-
thumbnailURL: z.ZodOptional<z.ZodString>;
|
|
1800
|
-
}, "strip", z.ZodTypeAny, {
|
|
2498
|
+
description?: string | null | undefined;
|
|
2499
|
+
}[] | null | undefined>>;
|
|
2500
|
+
blockVariants: z.ZodDefault<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, {
|
|
1801
2501
|
name: string;
|
|
1802
2502
|
key: string;
|
|
1803
|
-
isDefault?: boolean | undefined;
|
|
1804
|
-
description?: string | undefined;
|
|
1805
|
-
thumbnailURL?: string | undefined;
|
|
1806
|
-
}, {
|
|
2503
|
+
isDefault?: boolean | null | undefined;
|
|
2504
|
+
description?: string | null | undefined;
|
|
2505
|
+
thumbnailURL?: string | null | undefined;
|
|
2506
|
+
}[]>, z.ZodTypeDef, Record<string, {
|
|
1807
2507
|
name: string;
|
|
1808
2508
|
key: string;
|
|
1809
|
-
isDefault?: boolean | undefined;
|
|
1810
|
-
description?: string | undefined;
|
|
1811
|
-
thumbnailURL?: string | undefined;
|
|
1812
|
-
}
|
|
1813
|
-
|
|
1814
|
-
|
|
2509
|
+
isDefault?: boolean | null | undefined;
|
|
2510
|
+
description?: string | null | undefined;
|
|
2511
|
+
thumbnailURL?: string | null | undefined;
|
|
2512
|
+
}[]>>>>, Record<string, {
|
|
2513
|
+
name: string;
|
|
2514
|
+
key: string;
|
|
2515
|
+
isDefault?: boolean | null | undefined;
|
|
2516
|
+
description?: string | null | undefined;
|
|
2517
|
+
thumbnailURL?: string | null | undefined;
|
|
2518
|
+
}[]> | undefined, Record<string, {
|
|
2519
|
+
name: string;
|
|
2520
|
+
key: string;
|
|
2521
|
+
isDefault?: boolean | null | undefined;
|
|
2522
|
+
description?: string | null | undefined;
|
|
2523
|
+
thumbnailURL?: string | null | undefined;
|
|
2524
|
+
}[]> | null | undefined>>;
|
|
2525
|
+
usesBrands: z.ZodDefault<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>>;
|
|
2526
|
+
usesThemes: z.ZodDefault<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>>;
|
|
1815
2527
|
source: z.ZodEnum<["git", "upload"]>;
|
|
1816
2528
|
gitProvider: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<GitProviderNames, z.ZodTypeDef, GitProviderNames>>>, NonNullable<GitProviderNames> | undefined, GitProviderNames | null | undefined>;
|
|
1817
2529
|
gitUrl: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -1819,7 +2531,6 @@ declare const ExporterDetails: z.ZodObject<{
|
|
|
1819
2531
|
gitDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
1820
2532
|
}, "strip", z.ZodTypeAny, {
|
|
1821
2533
|
description: string;
|
|
1822
|
-
packageId: string;
|
|
1823
2534
|
source: "git" | "upload";
|
|
1824
2535
|
version: string;
|
|
1825
2536
|
tags: string[];
|
|
@@ -1828,22 +2539,22 @@ declare const ExporterDetails: z.ZodObject<{
|
|
|
1828
2539
|
key: string;
|
|
1829
2540
|
label: string;
|
|
1830
2541
|
category: string;
|
|
1831
|
-
values?: string[] | undefined;
|
|
1832
|
-
description?: string | undefined;
|
|
2542
|
+
values?: string[] | null | undefined;
|
|
2543
|
+
description?: string | null | undefined;
|
|
1833
2544
|
default?: string | number | boolean | null | undefined;
|
|
1834
2545
|
inputType?: "code" | "plain" | undefined;
|
|
1835
|
-
isMultiline?: boolean | undefined;
|
|
2546
|
+
isMultiline?: boolean | null | undefined;
|
|
1836
2547
|
}[];
|
|
1837
2548
|
customBlocks: {
|
|
1838
2549
|
properties: {
|
|
1839
2550
|
type: "string" | "number" | "boolean" | "color" | "image" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
1840
2551
|
key: string;
|
|
1841
2552
|
label: string;
|
|
1842
|
-
description?: string | undefined;
|
|
1843
|
-
values?: string[] | undefined;
|
|
2553
|
+
description?: string | null | undefined;
|
|
2554
|
+
values?: string[] | null | undefined;
|
|
1844
2555
|
default?: string | number | boolean | null | undefined;
|
|
1845
2556
|
inputType?: "code" | "plain" | undefined;
|
|
1846
|
-
isMultiline?: boolean | undefined;
|
|
2557
|
+
isMultiline?: boolean | null | undefined;
|
|
1847
2558
|
}[];
|
|
1848
2559
|
title: string;
|
|
1849
2560
|
key: string;
|
|
@@ -1855,17 +2566,18 @@ declare const ExporterDetails: z.ZodObject<{
|
|
|
1855
2566
|
blockVariants: Record<string, {
|
|
1856
2567
|
name: string;
|
|
1857
2568
|
key: string;
|
|
1858
|
-
isDefault?: boolean | undefined;
|
|
1859
|
-
description?: string | undefined;
|
|
1860
|
-
thumbnailURL?: string | undefined;
|
|
2569
|
+
isDefault?: boolean | null | undefined;
|
|
2570
|
+
description?: string | null | undefined;
|
|
2571
|
+
thumbnailURL?: string | null | undefined;
|
|
1861
2572
|
}[]>;
|
|
1862
2573
|
usesBrands: boolean;
|
|
1863
2574
|
usesThemes: boolean;
|
|
2575
|
+
routingVersion?: string | undefined;
|
|
1864
2576
|
author?: string | undefined;
|
|
1865
2577
|
organization?: string | undefined;
|
|
1866
2578
|
homepage?: string | undefined;
|
|
1867
2579
|
readme?: string | undefined;
|
|
1868
|
-
|
|
2580
|
+
packageId?: string | undefined;
|
|
1869
2581
|
iconURL?: string | undefined;
|
|
1870
2582
|
gitProvider?: NonNullable<GitProviderNames> | undefined;
|
|
1871
2583
|
gitUrl?: string | undefined;
|
|
@@ -1873,54 +2585,54 @@ declare const ExporterDetails: z.ZodObject<{
|
|
|
1873
2585
|
gitDirectory?: string | undefined;
|
|
1874
2586
|
}, {
|
|
1875
2587
|
description: string;
|
|
1876
|
-
packageId: string;
|
|
1877
2588
|
source: "git" | "upload";
|
|
1878
2589
|
version: string;
|
|
2590
|
+
routingVersion?: string | null | undefined;
|
|
1879
2591
|
author?: string | null | undefined;
|
|
1880
2592
|
organization?: string | null | undefined;
|
|
1881
2593
|
homepage?: string | null | undefined;
|
|
1882
2594
|
readme?: string | null | undefined;
|
|
1883
|
-
tags?: string[] | undefined;
|
|
1884
|
-
|
|
2595
|
+
tags?: string[] | null | undefined;
|
|
2596
|
+
packageId?: string | null | undefined;
|
|
1885
2597
|
iconURL?: string | null | undefined;
|
|
1886
2598
|
configurationProperties?: {
|
|
1887
2599
|
type: "string" | "number" | "boolean" | "color" | "image" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
1888
2600
|
key: string;
|
|
1889
2601
|
label: string;
|
|
1890
2602
|
category: string;
|
|
1891
|
-
values?: string[] | undefined;
|
|
1892
|
-
description?: string | undefined;
|
|
2603
|
+
values?: string[] | null | undefined;
|
|
2604
|
+
description?: string | null | undefined;
|
|
1893
2605
|
default?: string | number | boolean | null | undefined;
|
|
1894
2606
|
inputType?: "code" | "plain" | undefined;
|
|
1895
|
-
isMultiline?: boolean | undefined;
|
|
1896
|
-
}[] | undefined;
|
|
2607
|
+
isMultiline?: boolean | null | undefined;
|
|
2608
|
+
}[] | null | undefined;
|
|
1897
2609
|
customBlocks?: {
|
|
1898
2610
|
properties: {
|
|
1899
2611
|
type: "string" | "number" | "boolean" | "color" | "image" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
1900
2612
|
key: string;
|
|
1901
2613
|
label: string;
|
|
1902
|
-
description?: string | undefined;
|
|
1903
|
-
values?: string[] | undefined;
|
|
2614
|
+
description?: string | null | undefined;
|
|
2615
|
+
values?: string[] | null | undefined;
|
|
1904
2616
|
default?: string | number | boolean | null | undefined;
|
|
1905
2617
|
inputType?: "code" | "plain" | undefined;
|
|
1906
|
-
isMultiline?: boolean | undefined;
|
|
2618
|
+
isMultiline?: boolean | null | undefined;
|
|
1907
2619
|
}[];
|
|
1908
2620
|
title: string;
|
|
1909
2621
|
key: string;
|
|
1910
2622
|
category: string;
|
|
1911
2623
|
iconURL: string;
|
|
1912
2624
|
mode: "array" | "block";
|
|
1913
|
-
description?: string | undefined;
|
|
1914
|
-
}[] | undefined;
|
|
2625
|
+
description?: string | null | undefined;
|
|
2626
|
+
}[] | null | undefined;
|
|
1915
2627
|
blockVariants?: Record<string, {
|
|
1916
2628
|
name: string;
|
|
1917
2629
|
key: string;
|
|
1918
|
-
isDefault?: boolean | undefined;
|
|
1919
|
-
description?: string | undefined;
|
|
1920
|
-
thumbnailURL?: string | undefined;
|
|
1921
|
-
}[]> | undefined;
|
|
1922
|
-
usesBrands?: boolean | undefined;
|
|
1923
|
-
usesThemes?: boolean | undefined;
|
|
2630
|
+
isDefault?: boolean | null | undefined;
|
|
2631
|
+
description?: string | null | undefined;
|
|
2632
|
+
thumbnailURL?: string | null | undefined;
|
|
2633
|
+
}[]> | null | undefined;
|
|
2634
|
+
usesBrands?: boolean | null | undefined;
|
|
2635
|
+
usesThemes?: boolean | null | undefined;
|
|
1924
2636
|
gitProvider?: GitProviderNames | null | undefined;
|
|
1925
2637
|
gitUrl?: string | null | undefined;
|
|
1926
2638
|
gitBranch?: string | null | undefined;
|
|
@@ -1933,92 +2645,101 @@ declare const Exporter: z.ZodObject<{
|
|
|
1933
2645
|
name: z.ZodString;
|
|
1934
2646
|
isPrivate: z.ZodBoolean;
|
|
1935
2647
|
details: z.ZodObject<{
|
|
1936
|
-
packageId: z.ZodString;
|
|
1937
|
-
version: z.ZodString;
|
|
1938
2648
|
description: z.ZodString;
|
|
2649
|
+
version: z.ZodString;
|
|
2650
|
+
routingVersion: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
1939
2651
|
author: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
1940
2652
|
organization: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
1941
2653
|
homepage: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
1942
2654
|
readme: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
1943
|
-
tags: z.ZodDefault<z.
|
|
1944
|
-
|
|
2655
|
+
tags: z.ZodDefault<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string[], z.ZodTypeDef, string[]>>>, string[] | undefined, string[] | null | undefined>>;
|
|
2656
|
+
packageId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
1945
2657
|
iconURL: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
1946
|
-
configurationProperties: z.ZodDefault<z.
|
|
1947
|
-
values: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1948
|
-
type: z.ZodEnum<["string", "number", "boolean", "image", "enum", "color", "typography", "component", "componentProperties", "tokenProperties", "tokenType"]>;
|
|
1949
|
-
description: z.ZodOptional<z.ZodString>;
|
|
1950
|
-
key: z.ZodString;
|
|
1951
|
-
label: z.ZodString;
|
|
1952
|
-
default: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodBoolean, z.ZodNumber]>>>;
|
|
1953
|
-
inputType: z.ZodOptional<z.ZodEnum<["code", "plain"]>>;
|
|
1954
|
-
isMultiline: z.ZodOptional<z.ZodBoolean>;
|
|
1955
|
-
category: z.ZodString;
|
|
1956
|
-
}, "strip", z.ZodTypeAny, {
|
|
2658
|
+
configurationProperties: z.ZodDefault<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
1957
2659
|
type: "string" | "number" | "boolean" | "color" | "image" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
1958
2660
|
key: string;
|
|
1959
2661
|
label: string;
|
|
1960
2662
|
category: string;
|
|
1961
|
-
values?: string[] | undefined;
|
|
1962
|
-
description?: string | undefined;
|
|
2663
|
+
values?: string[] | null | undefined;
|
|
2664
|
+
description?: string | null | undefined;
|
|
1963
2665
|
default?: string | number | boolean | null | undefined;
|
|
1964
2666
|
inputType?: "code" | "plain" | undefined;
|
|
1965
|
-
isMultiline?: boolean | undefined;
|
|
1966
|
-
}, {
|
|
2667
|
+
isMultiline?: boolean | null | undefined;
|
|
2668
|
+
}[], z.ZodTypeDef, {
|
|
1967
2669
|
type: "string" | "number" | "boolean" | "color" | "image" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
1968
2670
|
key: string;
|
|
1969
2671
|
label: string;
|
|
1970
2672
|
category: string;
|
|
1971
|
-
values?: string[] | undefined;
|
|
1972
|
-
description?: string | undefined;
|
|
2673
|
+
values?: string[] | null | undefined;
|
|
2674
|
+
description?: string | null | undefined;
|
|
1973
2675
|
default?: string | number | boolean | null | undefined;
|
|
1974
2676
|
inputType?: "code" | "plain" | undefined;
|
|
1975
|
-
isMultiline?: boolean | undefined;
|
|
1976
|
-
}
|
|
1977
|
-
|
|
1978
|
-
|
|
1979
|
-
|
|
1980
|
-
category:
|
|
1981
|
-
|
|
1982
|
-
|
|
1983
|
-
|
|
1984
|
-
|
|
1985
|
-
|
|
1986
|
-
|
|
1987
|
-
|
|
1988
|
-
|
|
1989
|
-
|
|
1990
|
-
|
|
1991
|
-
|
|
1992
|
-
|
|
1993
|
-
|
|
2677
|
+
isMultiline?: boolean | null | undefined;
|
|
2678
|
+
}[]>>>, {
|
|
2679
|
+
type: "string" | "number" | "boolean" | "color" | "image" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
2680
|
+
key: string;
|
|
2681
|
+
label: string;
|
|
2682
|
+
category: string;
|
|
2683
|
+
values?: string[] | null | undefined;
|
|
2684
|
+
description?: string | null | undefined;
|
|
2685
|
+
default?: string | number | boolean | null | undefined;
|
|
2686
|
+
inputType?: "code" | "plain" | undefined;
|
|
2687
|
+
isMultiline?: boolean | null | undefined;
|
|
2688
|
+
}[] | undefined, {
|
|
2689
|
+
type: "string" | "number" | "boolean" | "color" | "image" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
2690
|
+
key: string;
|
|
2691
|
+
label: string;
|
|
2692
|
+
category: string;
|
|
2693
|
+
values?: string[] | null | undefined;
|
|
2694
|
+
description?: string | null | undefined;
|
|
2695
|
+
default?: string | number | boolean | null | undefined;
|
|
2696
|
+
inputType?: "code" | "plain" | undefined;
|
|
2697
|
+
isMultiline?: boolean | null | undefined;
|
|
2698
|
+
}[] | null | undefined>>;
|
|
2699
|
+
customBlocks: z.ZodDefault<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2700
|
+
properties: {
|
|
1994
2701
|
type: "string" | "number" | "boolean" | "color" | "image" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
1995
2702
|
key: string;
|
|
1996
2703
|
label: string;
|
|
1997
|
-
description?: string | undefined;
|
|
1998
|
-
values?: string[] | undefined;
|
|
2704
|
+
description?: string | null | undefined;
|
|
2705
|
+
values?: string[] | null | undefined;
|
|
1999
2706
|
default?: string | number | boolean | null | undefined;
|
|
2000
2707
|
inputType?: "code" | "plain" | undefined;
|
|
2001
|
-
isMultiline?: boolean | undefined;
|
|
2002
|
-
}
|
|
2708
|
+
isMultiline?: boolean | null | undefined;
|
|
2709
|
+
}[];
|
|
2710
|
+
title: string;
|
|
2711
|
+
key: string;
|
|
2712
|
+
category: string;
|
|
2713
|
+
iconURL: string;
|
|
2714
|
+
mode: "array" | "block";
|
|
2715
|
+
description?: string | undefined;
|
|
2716
|
+
}[], z.ZodTypeDef, {
|
|
2717
|
+
properties: {
|
|
2003
2718
|
type: "string" | "number" | "boolean" | "color" | "image" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
2004
2719
|
key: string;
|
|
2005
2720
|
label: string;
|
|
2006
|
-
description?: string | undefined;
|
|
2007
|
-
values?: string[] | undefined;
|
|
2721
|
+
description?: string | null | undefined;
|
|
2722
|
+
values?: string[] | null | undefined;
|
|
2008
2723
|
default?: string | number | boolean | null | undefined;
|
|
2009
2724
|
inputType?: "code" | "plain" | undefined;
|
|
2010
|
-
isMultiline?: boolean | undefined;
|
|
2011
|
-
}
|
|
2012
|
-
|
|
2725
|
+
isMultiline?: boolean | null | undefined;
|
|
2726
|
+
}[];
|
|
2727
|
+
title: string;
|
|
2728
|
+
key: string;
|
|
2729
|
+
category: string;
|
|
2730
|
+
iconURL: string;
|
|
2731
|
+
mode: "array" | "block";
|
|
2732
|
+
description?: string | null | undefined;
|
|
2733
|
+
}[]>>>, {
|
|
2013
2734
|
properties: {
|
|
2014
2735
|
type: "string" | "number" | "boolean" | "color" | "image" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
2015
2736
|
key: string;
|
|
2016
2737
|
label: string;
|
|
2017
|
-
description?: string | undefined;
|
|
2018
|
-
values?: string[] | undefined;
|
|
2738
|
+
description?: string | null | undefined;
|
|
2739
|
+
values?: string[] | null | undefined;
|
|
2019
2740
|
default?: string | number | boolean | null | undefined;
|
|
2020
2741
|
inputType?: "code" | "plain" | undefined;
|
|
2021
|
-
isMultiline?: boolean | undefined;
|
|
2742
|
+
isMultiline?: boolean | null | undefined;
|
|
2022
2743
|
}[];
|
|
2023
2744
|
title: string;
|
|
2024
2745
|
key: string;
|
|
@@ -2026,45 +2747,51 @@ declare const Exporter: z.ZodObject<{
|
|
|
2026
2747
|
iconURL: string;
|
|
2027
2748
|
mode: "array" | "block";
|
|
2028
2749
|
description?: string | undefined;
|
|
2029
|
-
}, {
|
|
2750
|
+
}[] | undefined, {
|
|
2030
2751
|
properties: {
|
|
2031
2752
|
type: "string" | "number" | "boolean" | "color" | "image" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
2032
2753
|
key: string;
|
|
2033
2754
|
label: string;
|
|
2034
|
-
description?: string | undefined;
|
|
2035
|
-
values?: string[] | undefined;
|
|
2755
|
+
description?: string | null | undefined;
|
|
2756
|
+
values?: string[] | null | undefined;
|
|
2036
2757
|
default?: string | number | boolean | null | undefined;
|
|
2037
2758
|
inputType?: "code" | "plain" | undefined;
|
|
2038
|
-
isMultiline?: boolean | undefined;
|
|
2759
|
+
isMultiline?: boolean | null | undefined;
|
|
2039
2760
|
}[];
|
|
2040
2761
|
title: string;
|
|
2041
2762
|
key: string;
|
|
2042
2763
|
category: string;
|
|
2043
2764
|
iconURL: string;
|
|
2044
2765
|
mode: "array" | "block";
|
|
2045
|
-
description?: string | undefined;
|
|
2046
|
-
}
|
|
2047
|
-
blockVariants: z.ZodDefault<z.
|
|
2048
|
-
key: z.ZodString;
|
|
2049
|
-
name: z.ZodString;
|
|
2050
|
-
isDefault: z.ZodOptional<z.ZodBoolean>;
|
|
2051
|
-
description: z.ZodOptional<z.ZodString>;
|
|
2052
|
-
thumbnailURL: z.ZodOptional<z.ZodString>;
|
|
2053
|
-
}, "strip", z.ZodTypeAny, {
|
|
2766
|
+
description?: string | null | undefined;
|
|
2767
|
+
}[] | null | undefined>>;
|
|
2768
|
+
blockVariants: z.ZodDefault<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, {
|
|
2054
2769
|
name: string;
|
|
2055
2770
|
key: string;
|
|
2056
|
-
isDefault?: boolean | undefined;
|
|
2057
|
-
description?: string | undefined;
|
|
2058
|
-
thumbnailURL?: string | undefined;
|
|
2059
|
-
}, {
|
|
2771
|
+
isDefault?: boolean | null | undefined;
|
|
2772
|
+
description?: string | null | undefined;
|
|
2773
|
+
thumbnailURL?: string | null | undefined;
|
|
2774
|
+
}[]>, z.ZodTypeDef, Record<string, {
|
|
2060
2775
|
name: string;
|
|
2061
2776
|
key: string;
|
|
2062
|
-
isDefault?: boolean | undefined;
|
|
2063
|
-
description?: string | undefined;
|
|
2064
|
-
thumbnailURL?: string | undefined;
|
|
2065
|
-
}
|
|
2066
|
-
|
|
2067
|
-
|
|
2777
|
+
isDefault?: boolean | null | undefined;
|
|
2778
|
+
description?: string | null | undefined;
|
|
2779
|
+
thumbnailURL?: string | null | undefined;
|
|
2780
|
+
}[]>>>>, Record<string, {
|
|
2781
|
+
name: string;
|
|
2782
|
+
key: string;
|
|
2783
|
+
isDefault?: boolean | null | undefined;
|
|
2784
|
+
description?: string | null | undefined;
|
|
2785
|
+
thumbnailURL?: string | null | undefined;
|
|
2786
|
+
}[]> | undefined, Record<string, {
|
|
2787
|
+
name: string;
|
|
2788
|
+
key: string;
|
|
2789
|
+
isDefault?: boolean | null | undefined;
|
|
2790
|
+
description?: string | null | undefined;
|
|
2791
|
+
thumbnailURL?: string | null | undefined;
|
|
2792
|
+
}[]> | null | undefined>>;
|
|
2793
|
+
usesBrands: z.ZodDefault<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>>;
|
|
2794
|
+
usesThemes: z.ZodDefault<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>>;
|
|
2068
2795
|
source: z.ZodEnum<["git", "upload"]>;
|
|
2069
2796
|
gitProvider: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<GitProviderNames, z.ZodTypeDef, GitProviderNames>>>, NonNullable<GitProviderNames> | undefined, GitProviderNames | null | undefined>;
|
|
2070
2797
|
gitUrl: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -2072,7 +2799,6 @@ declare const Exporter: z.ZodObject<{
|
|
|
2072
2799
|
gitDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
2073
2800
|
}, "strip", z.ZodTypeAny, {
|
|
2074
2801
|
description: string;
|
|
2075
|
-
packageId: string;
|
|
2076
2802
|
source: "git" | "upload";
|
|
2077
2803
|
version: string;
|
|
2078
2804
|
tags: string[];
|
|
@@ -2081,22 +2807,22 @@ declare const Exporter: z.ZodObject<{
|
|
|
2081
2807
|
key: string;
|
|
2082
2808
|
label: string;
|
|
2083
2809
|
category: string;
|
|
2084
|
-
values?: string[] | undefined;
|
|
2085
|
-
description?: string | undefined;
|
|
2810
|
+
values?: string[] | null | undefined;
|
|
2811
|
+
description?: string | null | undefined;
|
|
2086
2812
|
default?: string | number | boolean | null | undefined;
|
|
2087
2813
|
inputType?: "code" | "plain" | undefined;
|
|
2088
|
-
isMultiline?: boolean | undefined;
|
|
2814
|
+
isMultiline?: boolean | null | undefined;
|
|
2089
2815
|
}[];
|
|
2090
2816
|
customBlocks: {
|
|
2091
2817
|
properties: {
|
|
2092
2818
|
type: "string" | "number" | "boolean" | "color" | "image" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
2093
2819
|
key: string;
|
|
2094
2820
|
label: string;
|
|
2095
|
-
description?: string | undefined;
|
|
2096
|
-
values?: string[] | undefined;
|
|
2821
|
+
description?: string | null | undefined;
|
|
2822
|
+
values?: string[] | null | undefined;
|
|
2097
2823
|
default?: string | number | boolean | null | undefined;
|
|
2098
2824
|
inputType?: "code" | "plain" | undefined;
|
|
2099
|
-
isMultiline?: boolean | undefined;
|
|
2825
|
+
isMultiline?: boolean | null | undefined;
|
|
2100
2826
|
}[];
|
|
2101
2827
|
title: string;
|
|
2102
2828
|
key: string;
|
|
@@ -2108,17 +2834,18 @@ declare const Exporter: z.ZodObject<{
|
|
|
2108
2834
|
blockVariants: Record<string, {
|
|
2109
2835
|
name: string;
|
|
2110
2836
|
key: string;
|
|
2111
|
-
isDefault?: boolean | undefined;
|
|
2112
|
-
description?: string | undefined;
|
|
2113
|
-
thumbnailURL?: string | undefined;
|
|
2837
|
+
isDefault?: boolean | null | undefined;
|
|
2838
|
+
description?: string | null | undefined;
|
|
2839
|
+
thumbnailURL?: string | null | undefined;
|
|
2114
2840
|
}[]>;
|
|
2115
2841
|
usesBrands: boolean;
|
|
2116
2842
|
usesThemes: boolean;
|
|
2843
|
+
routingVersion?: string | undefined;
|
|
2117
2844
|
author?: string | undefined;
|
|
2118
2845
|
organization?: string | undefined;
|
|
2119
2846
|
homepage?: string | undefined;
|
|
2120
2847
|
readme?: string | undefined;
|
|
2121
|
-
|
|
2848
|
+
packageId?: string | undefined;
|
|
2122
2849
|
iconURL?: string | undefined;
|
|
2123
2850
|
gitProvider?: NonNullable<GitProviderNames> | undefined;
|
|
2124
2851
|
gitUrl?: string | undefined;
|
|
@@ -2126,61 +2853,61 @@ declare const Exporter: z.ZodObject<{
|
|
|
2126
2853
|
gitDirectory?: string | undefined;
|
|
2127
2854
|
}, {
|
|
2128
2855
|
description: string;
|
|
2129
|
-
packageId: string;
|
|
2130
2856
|
source: "git" | "upload";
|
|
2131
2857
|
version: string;
|
|
2858
|
+
routingVersion?: string | null | undefined;
|
|
2132
2859
|
author?: string | null | undefined;
|
|
2133
2860
|
organization?: string | null | undefined;
|
|
2134
2861
|
homepage?: string | null | undefined;
|
|
2135
2862
|
readme?: string | null | undefined;
|
|
2136
|
-
tags?: string[] | undefined;
|
|
2137
|
-
|
|
2863
|
+
tags?: string[] | null | undefined;
|
|
2864
|
+
packageId?: string | null | undefined;
|
|
2138
2865
|
iconURL?: string | null | undefined;
|
|
2139
2866
|
configurationProperties?: {
|
|
2140
2867
|
type: "string" | "number" | "boolean" | "color" | "image" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
2141
2868
|
key: string;
|
|
2142
2869
|
label: string;
|
|
2143
2870
|
category: string;
|
|
2144
|
-
values?: string[] | undefined;
|
|
2145
|
-
description?: string | undefined;
|
|
2871
|
+
values?: string[] | null | undefined;
|
|
2872
|
+
description?: string | null | undefined;
|
|
2146
2873
|
default?: string | number | boolean | null | undefined;
|
|
2147
2874
|
inputType?: "code" | "plain" | undefined;
|
|
2148
|
-
isMultiline?: boolean | undefined;
|
|
2149
|
-
}[] | undefined;
|
|
2875
|
+
isMultiline?: boolean | null | undefined;
|
|
2876
|
+
}[] | null | undefined;
|
|
2150
2877
|
customBlocks?: {
|
|
2151
2878
|
properties: {
|
|
2152
2879
|
type: "string" | "number" | "boolean" | "color" | "image" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
2153
2880
|
key: string;
|
|
2154
2881
|
label: string;
|
|
2155
|
-
description?: string | undefined;
|
|
2156
|
-
values?: string[] | undefined;
|
|
2882
|
+
description?: string | null | undefined;
|
|
2883
|
+
values?: string[] | null | undefined;
|
|
2157
2884
|
default?: string | number | boolean | null | undefined;
|
|
2158
2885
|
inputType?: "code" | "plain" | undefined;
|
|
2159
|
-
isMultiline?: boolean | undefined;
|
|
2886
|
+
isMultiline?: boolean | null | undefined;
|
|
2160
2887
|
}[];
|
|
2161
2888
|
title: string;
|
|
2162
2889
|
key: string;
|
|
2163
2890
|
category: string;
|
|
2164
2891
|
iconURL: string;
|
|
2165
2892
|
mode: "array" | "block";
|
|
2166
|
-
description?: string | undefined;
|
|
2167
|
-
}[] | undefined;
|
|
2893
|
+
description?: string | null | undefined;
|
|
2894
|
+
}[] | null | undefined;
|
|
2168
2895
|
blockVariants?: Record<string, {
|
|
2169
2896
|
name: string;
|
|
2170
2897
|
key: string;
|
|
2171
|
-
isDefault?: boolean | undefined;
|
|
2172
|
-
description?: string | undefined;
|
|
2173
|
-
thumbnailURL?: string | undefined;
|
|
2174
|
-
}[]> | undefined;
|
|
2175
|
-
usesBrands?: boolean | undefined;
|
|
2176
|
-
usesThemes?: boolean | undefined;
|
|
2898
|
+
isDefault?: boolean | null | undefined;
|
|
2899
|
+
description?: string | null | undefined;
|
|
2900
|
+
thumbnailURL?: string | null | undefined;
|
|
2901
|
+
}[]> | null | undefined;
|
|
2902
|
+
usesBrands?: boolean | null | undefined;
|
|
2903
|
+
usesThemes?: boolean | null | undefined;
|
|
2177
2904
|
gitProvider?: GitProviderNames | null | undefined;
|
|
2178
2905
|
gitUrl?: string | null | undefined;
|
|
2179
2906
|
gitBranch?: string | null | undefined;
|
|
2180
2907
|
gitDirectory?: string | null | undefined;
|
|
2181
2908
|
}>;
|
|
2182
|
-
exporterType: z.ZodDefault<z.
|
|
2183
|
-
storagePath: z.ZodDefault<z.
|
|
2909
|
+
exporterType: z.ZodDefault<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"code" | "documentation", z.ZodTypeDef, "code" | "documentation">>>, NonNullable<"code" | "documentation"> | undefined, "code" | "documentation" | null | undefined>>;
|
|
2910
|
+
storagePath: z.ZodDefault<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>>;
|
|
2184
2911
|
}, "strip", z.ZodTypeAny, {
|
|
2185
2912
|
id: string;
|
|
2186
2913
|
createdAt: Date;
|
|
@@ -2189,7 +2916,6 @@ declare const Exporter: z.ZodObject<{
|
|
|
2189
2916
|
isPrivate: boolean;
|
|
2190
2917
|
details: {
|
|
2191
2918
|
description: string;
|
|
2192
|
-
packageId: string;
|
|
2193
2919
|
source: "git" | "upload";
|
|
2194
2920
|
version: string;
|
|
2195
2921
|
tags: string[];
|
|
@@ -2198,22 +2924,22 @@ declare const Exporter: z.ZodObject<{
|
|
|
2198
2924
|
key: string;
|
|
2199
2925
|
label: string;
|
|
2200
2926
|
category: string;
|
|
2201
|
-
values?: string[] | undefined;
|
|
2202
|
-
description?: string | undefined;
|
|
2927
|
+
values?: string[] | null | undefined;
|
|
2928
|
+
description?: string | null | undefined;
|
|
2203
2929
|
default?: string | number | boolean | null | undefined;
|
|
2204
2930
|
inputType?: "code" | "plain" | undefined;
|
|
2205
|
-
isMultiline?: boolean | undefined;
|
|
2931
|
+
isMultiline?: boolean | null | undefined;
|
|
2206
2932
|
}[];
|
|
2207
2933
|
customBlocks: {
|
|
2208
2934
|
properties: {
|
|
2209
2935
|
type: "string" | "number" | "boolean" | "color" | "image" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
2210
2936
|
key: string;
|
|
2211
2937
|
label: string;
|
|
2212
|
-
description?: string | undefined;
|
|
2213
|
-
values?: string[] | undefined;
|
|
2938
|
+
description?: string | null | undefined;
|
|
2939
|
+
values?: string[] | null | undefined;
|
|
2214
2940
|
default?: string | number | boolean | null | undefined;
|
|
2215
2941
|
inputType?: "code" | "plain" | undefined;
|
|
2216
|
-
isMultiline?: boolean | undefined;
|
|
2942
|
+
isMultiline?: boolean | null | undefined;
|
|
2217
2943
|
}[];
|
|
2218
2944
|
title: string;
|
|
2219
2945
|
key: string;
|
|
@@ -2225,17 +2951,18 @@ declare const Exporter: z.ZodObject<{
|
|
|
2225
2951
|
blockVariants: Record<string, {
|
|
2226
2952
|
name: string;
|
|
2227
2953
|
key: string;
|
|
2228
|
-
isDefault?: boolean | undefined;
|
|
2229
|
-
description?: string | undefined;
|
|
2230
|
-
thumbnailURL?: string | undefined;
|
|
2954
|
+
isDefault?: boolean | null | undefined;
|
|
2955
|
+
description?: string | null | undefined;
|
|
2956
|
+
thumbnailURL?: string | null | undefined;
|
|
2231
2957
|
}[]>;
|
|
2232
2958
|
usesBrands: boolean;
|
|
2233
2959
|
usesThemes: boolean;
|
|
2960
|
+
routingVersion?: string | undefined;
|
|
2234
2961
|
author?: string | undefined;
|
|
2235
2962
|
organization?: string | undefined;
|
|
2236
2963
|
homepage?: string | undefined;
|
|
2237
2964
|
readme?: string | undefined;
|
|
2238
|
-
|
|
2965
|
+
packageId?: string | undefined;
|
|
2239
2966
|
iconURL?: string | undefined;
|
|
2240
2967
|
gitProvider?: NonNullable<GitProviderNames> | undefined;
|
|
2241
2968
|
gitUrl?: string | undefined;
|
|
@@ -2250,160 +2977,160 @@ declare const Exporter: z.ZodObject<{
|
|
|
2250
2977
|
isPrivate: boolean;
|
|
2251
2978
|
details: {
|
|
2252
2979
|
description: string;
|
|
2253
|
-
packageId: string;
|
|
2254
2980
|
source: "git" | "upload";
|
|
2255
2981
|
version: string;
|
|
2982
|
+
routingVersion?: string | null | undefined;
|
|
2256
2983
|
author?: string | null | undefined;
|
|
2257
2984
|
organization?: string | null | undefined;
|
|
2258
2985
|
homepage?: string | null | undefined;
|
|
2259
2986
|
readme?: string | null | undefined;
|
|
2260
|
-
tags?: string[] | undefined;
|
|
2261
|
-
|
|
2987
|
+
tags?: string[] | null | undefined;
|
|
2988
|
+
packageId?: string | null | undefined;
|
|
2262
2989
|
iconURL?: string | null | undefined;
|
|
2263
2990
|
configurationProperties?: {
|
|
2264
2991
|
type: "string" | "number" | "boolean" | "color" | "image" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
2265
2992
|
key: string;
|
|
2266
2993
|
label: string;
|
|
2267
2994
|
category: string;
|
|
2268
|
-
values?: string[] | undefined;
|
|
2269
|
-
description?: string | undefined;
|
|
2995
|
+
values?: string[] | null | undefined;
|
|
2996
|
+
description?: string | null | undefined;
|
|
2270
2997
|
default?: string | number | boolean | null | undefined;
|
|
2271
2998
|
inputType?: "code" | "plain" | undefined;
|
|
2272
|
-
isMultiline?: boolean | undefined;
|
|
2273
|
-
}[] | undefined;
|
|
2999
|
+
isMultiline?: boolean | null | undefined;
|
|
3000
|
+
}[] | null | undefined;
|
|
2274
3001
|
customBlocks?: {
|
|
2275
3002
|
properties: {
|
|
2276
3003
|
type: "string" | "number" | "boolean" | "color" | "image" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
2277
3004
|
key: string;
|
|
2278
3005
|
label: string;
|
|
2279
|
-
description?: string | undefined;
|
|
2280
|
-
values?: string[] | undefined;
|
|
3006
|
+
description?: string | null | undefined;
|
|
3007
|
+
values?: string[] | null | undefined;
|
|
2281
3008
|
default?: string | number | boolean | null | undefined;
|
|
2282
3009
|
inputType?: "code" | "plain" | undefined;
|
|
2283
|
-
isMultiline?: boolean | undefined;
|
|
3010
|
+
isMultiline?: boolean | null | undefined;
|
|
2284
3011
|
}[];
|
|
2285
3012
|
title: string;
|
|
2286
3013
|
key: string;
|
|
2287
3014
|
category: string;
|
|
2288
3015
|
iconURL: string;
|
|
2289
3016
|
mode: "array" | "block";
|
|
2290
|
-
description?: string | undefined;
|
|
2291
|
-
}[] | undefined;
|
|
3017
|
+
description?: string | null | undefined;
|
|
3018
|
+
}[] | null | undefined;
|
|
2292
3019
|
blockVariants?: Record<string, {
|
|
2293
3020
|
name: string;
|
|
2294
3021
|
key: string;
|
|
2295
|
-
isDefault?: boolean | undefined;
|
|
2296
|
-
description?: string | undefined;
|
|
2297
|
-
thumbnailURL?: string | undefined;
|
|
2298
|
-
}[]> | undefined;
|
|
2299
|
-
usesBrands?: boolean | undefined;
|
|
2300
|
-
usesThemes?: boolean | undefined;
|
|
3022
|
+
isDefault?: boolean | null | undefined;
|
|
3023
|
+
description?: string | null | undefined;
|
|
3024
|
+
thumbnailURL?: string | null | undefined;
|
|
3025
|
+
}[]> | null | undefined;
|
|
3026
|
+
usesBrands?: boolean | null | undefined;
|
|
3027
|
+
usesThemes?: boolean | null | undefined;
|
|
2301
3028
|
gitProvider?: GitProviderNames | null | undefined;
|
|
2302
3029
|
gitUrl?: string | null | undefined;
|
|
2303
3030
|
gitBranch?: string | null | undefined;
|
|
2304
3031
|
gitDirectory?: string | null | undefined;
|
|
2305
3032
|
};
|
|
2306
|
-
exporterType?: "code" | "documentation" | undefined;
|
|
2307
|
-
storagePath?: string | undefined;
|
|
3033
|
+
exporterType?: "code" | "documentation" | null | undefined;
|
|
3034
|
+
storagePath?: string | null | undefined;
|
|
2308
3035
|
}>;
|
|
2309
3036
|
type Exporter = z.infer<typeof Exporter>;
|
|
2310
3037
|
|
|
2311
3038
|
declare const PulsarContributionVariant: z.ZodObject<{
|
|
2312
3039
|
key: z.ZodString;
|
|
2313
3040
|
name: z.ZodString;
|
|
2314
|
-
isDefault: z.ZodOptional<z.ZodBoolean
|
|
2315
|
-
description: z.ZodOptional<z.ZodString
|
|
2316
|
-
thumbnailURL: z.ZodOptional<z.ZodString
|
|
3041
|
+
isDefault: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
3042
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3043
|
+
thumbnailURL: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2317
3044
|
}, "strip", z.ZodTypeAny, {
|
|
2318
3045
|
name: string;
|
|
2319
3046
|
key: string;
|
|
2320
|
-
isDefault?: boolean | undefined;
|
|
2321
|
-
description?: string | undefined;
|
|
2322
|
-
thumbnailURL?: string | undefined;
|
|
3047
|
+
isDefault?: boolean | null | undefined;
|
|
3048
|
+
description?: string | null | undefined;
|
|
3049
|
+
thumbnailURL?: string | null | undefined;
|
|
2323
3050
|
}, {
|
|
2324
3051
|
name: string;
|
|
2325
3052
|
key: string;
|
|
2326
|
-
isDefault?: boolean | undefined;
|
|
2327
|
-
description?: string | undefined;
|
|
2328
|
-
thumbnailURL?: string | undefined;
|
|
3053
|
+
isDefault?: boolean | null | undefined;
|
|
3054
|
+
description?: string | null | undefined;
|
|
3055
|
+
thumbnailURL?: string | null | undefined;
|
|
2329
3056
|
}>;
|
|
2330
3057
|
type PulsarContributionVariant = z.infer<typeof PulsarContributionVariant>;
|
|
2331
3058
|
declare const PulsarPropertyType: z.ZodEnum<["string", "number", "boolean", "image", "enum", "color", "typography", "component", "componentProperties", "tokenProperties", "tokenType"]>;
|
|
2332
3059
|
type PulsarPropertyType = z.infer<typeof PulsarPropertyType>;
|
|
2333
|
-
declare const
|
|
3060
|
+
declare const PulsarBaseProperty: z.ZodObject<{
|
|
2334
3061
|
label: z.ZodString;
|
|
2335
3062
|
key: z.ZodString;
|
|
2336
|
-
description: z.ZodOptional<z.ZodString
|
|
3063
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2337
3064
|
type: z.ZodEnum<["string", "number", "boolean", "image", "enum", "color", "typography", "component", "componentProperties", "tokenProperties", "tokenType"]>;
|
|
2338
|
-
values: z.ZodOptional<z.ZodArray<z.ZodString, "many"
|
|
3065
|
+
values: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
2339
3066
|
default: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodBoolean, z.ZodNumber]>>>;
|
|
2340
3067
|
inputType: z.ZodOptional<z.ZodEnum<["code", "plain"]>>;
|
|
2341
|
-
isMultiline: z.ZodOptional<z.ZodBoolean
|
|
3068
|
+
isMultiline: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
2342
3069
|
}, "strip", z.ZodTypeAny, {
|
|
2343
3070
|
type: "string" | "number" | "boolean" | "color" | "image" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
2344
3071
|
key: string;
|
|
2345
3072
|
label: string;
|
|
2346
|
-
description?: string | undefined;
|
|
2347
|
-
values?: string[] | undefined;
|
|
3073
|
+
description?: string | null | undefined;
|
|
3074
|
+
values?: string[] | null | undefined;
|
|
2348
3075
|
default?: string | number | boolean | null | undefined;
|
|
2349
3076
|
inputType?: "code" | "plain" | undefined;
|
|
2350
|
-
isMultiline?: boolean | undefined;
|
|
3077
|
+
isMultiline?: boolean | null | undefined;
|
|
2351
3078
|
}, {
|
|
2352
3079
|
type: "string" | "number" | "boolean" | "color" | "image" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
2353
3080
|
key: string;
|
|
2354
3081
|
label: string;
|
|
2355
|
-
description?: string | undefined;
|
|
2356
|
-
values?: string[] | undefined;
|
|
3082
|
+
description?: string | null | undefined;
|
|
3083
|
+
values?: string[] | null | undefined;
|
|
2357
3084
|
default?: string | number | boolean | null | undefined;
|
|
2358
3085
|
inputType?: "code" | "plain" | undefined;
|
|
2359
|
-
isMultiline?: boolean | undefined;
|
|
3086
|
+
isMultiline?: boolean | null | undefined;
|
|
2360
3087
|
}>;
|
|
2361
|
-
type
|
|
2362
|
-
declare const
|
|
3088
|
+
type PulsarBaseProperty = z.infer<typeof PulsarBaseProperty>;
|
|
3089
|
+
declare const PulsarCustomBlock: z.ZodObject<{
|
|
2363
3090
|
title: z.ZodString;
|
|
2364
3091
|
key: z.ZodString;
|
|
2365
3092
|
category: z.ZodString;
|
|
2366
|
-
description: z.ZodOptional<z.
|
|
3093
|
+
description: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
2367
3094
|
iconURL: z.ZodString;
|
|
2368
3095
|
mode: z.ZodEnum<["array", "block"]>;
|
|
2369
3096
|
properties: z.ZodArray<z.ZodObject<{
|
|
2370
3097
|
label: z.ZodString;
|
|
2371
3098
|
key: z.ZodString;
|
|
2372
|
-
description: z.ZodOptional<z.ZodString
|
|
3099
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2373
3100
|
type: z.ZodEnum<["string", "number", "boolean", "image", "enum", "color", "typography", "component", "componentProperties", "tokenProperties", "tokenType"]>;
|
|
2374
|
-
values: z.ZodOptional<z.ZodArray<z.ZodString, "many"
|
|
3101
|
+
values: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
2375
3102
|
default: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodBoolean, z.ZodNumber]>>>;
|
|
2376
3103
|
inputType: z.ZodOptional<z.ZodEnum<["code", "plain"]>>;
|
|
2377
|
-
isMultiline: z.ZodOptional<z.ZodBoolean
|
|
3104
|
+
isMultiline: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
2378
3105
|
}, "strip", z.ZodTypeAny, {
|
|
2379
3106
|
type: "string" | "number" | "boolean" | "color" | "image" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
2380
3107
|
key: string;
|
|
2381
3108
|
label: string;
|
|
2382
|
-
description?: string | undefined;
|
|
2383
|
-
values?: string[] | undefined;
|
|
3109
|
+
description?: string | null | undefined;
|
|
3110
|
+
values?: string[] | null | undefined;
|
|
2384
3111
|
default?: string | number | boolean | null | undefined;
|
|
2385
3112
|
inputType?: "code" | "plain" | undefined;
|
|
2386
|
-
isMultiline?: boolean | undefined;
|
|
3113
|
+
isMultiline?: boolean | null | undefined;
|
|
2387
3114
|
}, {
|
|
2388
3115
|
type: "string" | "number" | "boolean" | "color" | "image" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
2389
3116
|
key: string;
|
|
2390
3117
|
label: string;
|
|
2391
|
-
description?: string | undefined;
|
|
2392
|
-
values?: string[] | undefined;
|
|
3118
|
+
description?: string | null | undefined;
|
|
3119
|
+
values?: string[] | null | undefined;
|
|
2393
3120
|
default?: string | number | boolean | null | undefined;
|
|
2394
3121
|
inputType?: "code" | "plain" | undefined;
|
|
2395
|
-
isMultiline?: boolean | undefined;
|
|
3122
|
+
isMultiline?: boolean | null | undefined;
|
|
2396
3123
|
}>, "many">;
|
|
2397
3124
|
}, "strip", z.ZodTypeAny, {
|
|
2398
3125
|
properties: {
|
|
2399
3126
|
type: "string" | "number" | "boolean" | "color" | "image" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
2400
3127
|
key: string;
|
|
2401
3128
|
label: string;
|
|
2402
|
-
description?: string | undefined;
|
|
2403
|
-
values?: string[] | undefined;
|
|
3129
|
+
description?: string | null | undefined;
|
|
3130
|
+
values?: string[] | null | undefined;
|
|
2404
3131
|
default?: string | number | boolean | null | undefined;
|
|
2405
3132
|
inputType?: "code" | "plain" | undefined;
|
|
2406
|
-
isMultiline?: boolean | undefined;
|
|
3133
|
+
isMultiline?: boolean | null | undefined;
|
|
2407
3134
|
}[];
|
|
2408
3135
|
title: string;
|
|
2409
3136
|
key: string;
|
|
@@ -2416,50 +3143,50 @@ declare const PulsarContributionBlock: z.ZodObject<{
|
|
|
2416
3143
|
type: "string" | "number" | "boolean" | "color" | "image" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
2417
3144
|
key: string;
|
|
2418
3145
|
label: string;
|
|
2419
|
-
description?: string | undefined;
|
|
2420
|
-
values?: string[] | undefined;
|
|
3146
|
+
description?: string | null | undefined;
|
|
3147
|
+
values?: string[] | null | undefined;
|
|
2421
3148
|
default?: string | number | boolean | null | undefined;
|
|
2422
3149
|
inputType?: "code" | "plain" | undefined;
|
|
2423
|
-
isMultiline?: boolean | undefined;
|
|
3150
|
+
isMultiline?: boolean | null | undefined;
|
|
2424
3151
|
}[];
|
|
2425
3152
|
title: string;
|
|
2426
3153
|
key: string;
|
|
2427
3154
|
category: string;
|
|
2428
3155
|
iconURL: string;
|
|
2429
3156
|
mode: "array" | "block";
|
|
2430
|
-
description?: string | undefined;
|
|
3157
|
+
description?: string | null | undefined;
|
|
2431
3158
|
}>;
|
|
2432
|
-
type
|
|
3159
|
+
type PulsarCustomBlock = z.infer<typeof PulsarCustomBlock>;
|
|
2433
3160
|
declare const PulsarContributionConfigurationProperty: z.ZodObject<{
|
|
2434
|
-
values: z.ZodOptional<z.ZodArray<z.ZodString, "many"
|
|
3161
|
+
values: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
2435
3162
|
type: z.ZodEnum<["string", "number", "boolean", "image", "enum", "color", "typography", "component", "componentProperties", "tokenProperties", "tokenType"]>;
|
|
2436
|
-
description: z.ZodOptional<z.ZodString
|
|
3163
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2437
3164
|
key: z.ZodString;
|
|
2438
3165
|
label: z.ZodString;
|
|
2439
3166
|
default: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodBoolean, z.ZodNumber]>>>;
|
|
2440
3167
|
inputType: z.ZodOptional<z.ZodEnum<["code", "plain"]>>;
|
|
2441
|
-
isMultiline: z.ZodOptional<z.ZodBoolean
|
|
3168
|
+
isMultiline: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
2442
3169
|
category: z.ZodString;
|
|
2443
3170
|
}, "strip", z.ZodTypeAny, {
|
|
2444
3171
|
type: "string" | "number" | "boolean" | "color" | "image" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
2445
3172
|
key: string;
|
|
2446
3173
|
label: string;
|
|
2447
3174
|
category: string;
|
|
2448
|
-
values?: string[] | undefined;
|
|
2449
|
-
description?: string | undefined;
|
|
3175
|
+
values?: string[] | null | undefined;
|
|
3176
|
+
description?: string | null | undefined;
|
|
2450
3177
|
default?: string | number | boolean | null | undefined;
|
|
2451
3178
|
inputType?: "code" | "plain" | undefined;
|
|
2452
|
-
isMultiline?: boolean | undefined;
|
|
3179
|
+
isMultiline?: boolean | null | undefined;
|
|
2453
3180
|
}, {
|
|
2454
3181
|
type: "string" | "number" | "boolean" | "color" | "image" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
2455
3182
|
key: string;
|
|
2456
3183
|
label: string;
|
|
2457
3184
|
category: string;
|
|
2458
|
-
values?: string[] | undefined;
|
|
2459
|
-
description?: string | undefined;
|
|
3185
|
+
values?: string[] | null | undefined;
|
|
3186
|
+
description?: string | null | undefined;
|
|
2460
3187
|
default?: string | number | boolean | null | undefined;
|
|
2461
3188
|
inputType?: "code" | "plain" | undefined;
|
|
2462
|
-
isMultiline?: boolean | undefined;
|
|
3189
|
+
isMultiline?: boolean | null | undefined;
|
|
2463
3190
|
}>;
|
|
2464
3191
|
type PulsarContributionConfigurationProperty = z.infer<typeof PulsarContributionConfigurationProperty>;
|
|
2465
3192
|
|
|
@@ -3060,18 +3787,6 @@ declare const UserSession: z.ZodObject<{
|
|
|
3060
3787
|
loggedOutAt?: Date | undefined;
|
|
3061
3788
|
}>>;
|
|
3062
3789
|
}, "strip", z.ZodTypeAny, {
|
|
3063
|
-
session: {
|
|
3064
|
-
id: string;
|
|
3065
|
-
data: {
|
|
3066
|
-
returnToUrl?: string | undefined;
|
|
3067
|
-
npmProxyToken?: {
|
|
3068
|
-
access: string;
|
|
3069
|
-
expiresAt: number;
|
|
3070
|
-
} | undefined;
|
|
3071
|
-
};
|
|
3072
|
-
userId: string | null;
|
|
3073
|
-
expiresAt: Date;
|
|
3074
|
-
};
|
|
3075
3790
|
user: {
|
|
3076
3791
|
id: string;
|
|
3077
3792
|
createdAt: Date;
|
|
@@ -3137,7 +3852,6 @@ declare const UserSession: z.ZodObject<{
|
|
|
3137
3852
|
} | undefined;
|
|
3138
3853
|
loggedOutAt?: Date | undefined;
|
|
3139
3854
|
} | null;
|
|
3140
|
-
}, {
|
|
3141
3855
|
session: {
|
|
3142
3856
|
id: string;
|
|
3143
3857
|
data: {
|
|
@@ -3150,6 +3864,7 @@ declare const UserSession: z.ZodObject<{
|
|
|
3150
3864
|
userId: string | null;
|
|
3151
3865
|
expiresAt: Date;
|
|
3152
3866
|
};
|
|
3867
|
+
}, {
|
|
3153
3868
|
user: {
|
|
3154
3869
|
id: string;
|
|
3155
3870
|
createdAt: Date;
|
|
@@ -3215,6 +3930,18 @@ declare const UserSession: z.ZodObject<{
|
|
|
3215
3930
|
} | undefined;
|
|
3216
3931
|
loggedOutAt?: Date | undefined;
|
|
3217
3932
|
} | null;
|
|
3933
|
+
session: {
|
|
3934
|
+
id: string;
|
|
3935
|
+
data: {
|
|
3936
|
+
returnToUrl?: string | undefined;
|
|
3937
|
+
npmProxyToken?: {
|
|
3938
|
+
access: string;
|
|
3939
|
+
expiresAt: number;
|
|
3940
|
+
} | undefined;
|
|
3941
|
+
};
|
|
3942
|
+
userId: string | null;
|
|
3943
|
+
expiresAt: Date;
|
|
3944
|
+
};
|
|
3218
3945
|
}>;
|
|
3219
3946
|
type UserSession = z.infer<typeof UserSession>;
|
|
3220
3947
|
|
|
@@ -4188,12 +4915,12 @@ type PageBlockDefinitionLayout = z.infer<typeof PageBlockDefinitionLayoutBase> &
|
|
|
4188
4915
|
|
|
4189
4916
|
declare const PageBlockCategory: z.ZodEnum<["Text", "Layout", "Media", "Embed", "Figma", "Code", "Guidelines", "Tokens", "Components", "Assets", "Data", "Other"]>;
|
|
4190
4917
|
type PageBlockCategory = z.infer<typeof PageBlockCategory>;
|
|
4191
|
-
declare const PageBlockBehaviorDataType: z.ZodEnum<["Item", "Token", "Asset", "Component", "
|
|
4918
|
+
declare const PageBlockBehaviorDataType: z.ZodEnum<["Item", "Token", "Asset", "Component", "FigmaNode"]>;
|
|
4192
4919
|
type PageBlockBehaviorDataType = z.infer<typeof PageBlockBehaviorDataType>;
|
|
4193
4920
|
declare const PageBlockBehaviorSelectionType: z.ZodEnum<["Entity", "Group", "EntityAndGroup"]>;
|
|
4194
4921
|
type PageBlockBehaviorSelectionType = z.infer<typeof PageBlockBehaviorSelectionType>;
|
|
4195
4922
|
declare const PageBlockDefinitionBehavior: z.ZodObject<{
|
|
4196
|
-
dataType: z.ZodEnum<["Item", "Token", "Asset", "Component", "
|
|
4923
|
+
dataType: z.ZodEnum<["Item", "Token", "Asset", "Component", "FigmaNode"]>;
|
|
4197
4924
|
items: z.ZodOptional<z.ZodObject<{
|
|
4198
4925
|
numberOfItems: z.ZodNumber;
|
|
4199
4926
|
allowLinks: z.ZodBoolean;
|
|
@@ -4215,7 +4942,7 @@ declare const PageBlockDefinitionBehavior: z.ZodObject<{
|
|
|
4215
4942
|
maxSelected: number;
|
|
4216
4943
|
}>>;
|
|
4217
4944
|
}, "strip", z.ZodTypeAny, {
|
|
4218
|
-
dataType: "Component" | "Token" | "Asset" | "
|
|
4945
|
+
dataType: "Component" | "Token" | "Asset" | "FigmaNode" | "Item";
|
|
4219
4946
|
items?: {
|
|
4220
4947
|
numberOfItems: number;
|
|
4221
4948
|
allowLinks: boolean;
|
|
@@ -4225,7 +4952,7 @@ declare const PageBlockDefinitionBehavior: z.ZodObject<{
|
|
|
4225
4952
|
maxSelected: number;
|
|
4226
4953
|
} | undefined;
|
|
4227
4954
|
}, {
|
|
4228
|
-
dataType: "Component" | "Token" | "Asset" | "
|
|
4955
|
+
dataType: "Component" | "Token" | "Asset" | "FigmaNode" | "Item";
|
|
4229
4956
|
items?: {
|
|
4230
4957
|
numberOfItems: number;
|
|
4231
4958
|
allowLinks: boolean;
|
|
@@ -4261,72 +4988,22 @@ declare const PageBlockDefinition: z.ZodObject<{
|
|
|
4261
4988
|
name: z.ZodString;
|
|
4262
4989
|
type: z.ZodEnum<["RichText", "MultiRichText", "Text", "Boolean", "Number", "SingleSelect", "MultiSelect", "Image", "Token", "TokenType", "TokenProperty", "Component", "ComponentProperty", "Asset", "AssetProperty", "EmbedURL", "URL", "Markdown", "Code", "CodeSandbox", "Table", "Divider", "Storybook", "Color"]>;
|
|
4263
4990
|
description: z.ZodOptional<z.ZodString>;
|
|
4264
|
-
options: z.ZodOptional<z.
|
|
4265
|
-
|
|
4266
|
-
multiRichTextStyle: z.ZodOptional<z.ZodEnum<["OL", "UL", "Default"]>>;
|
|
4267
|
-
textStyle: z.ZodOptional<z.ZodEnum<["Title1", "Title2", "Title3", "Title4", "Title5", "Default", "DefaultBold", "DefaultSemibold", "Small", "SmallBold", "SmallSemibold"]>>;
|
|
4268
|
-
placeholder: z.ZodOptional<z.ZodString>;
|
|
4269
|
-
}, "strip", z.ZodTypeAny, {
|
|
4270
|
-
richTextStyle?: "Quote" | "Callout" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | undefined;
|
|
4271
|
-
multiRichTextStyle?: "Default" | "OL" | "UL" | undefined;
|
|
4272
|
-
textStyle?: "Small" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | "DefaultBold" | "DefaultSemibold" | "SmallBold" | "SmallSemibold" | undefined;
|
|
4273
|
-
placeholder?: string | undefined;
|
|
4274
|
-
}, {
|
|
4275
|
-
richTextStyle?: "Quote" | "Callout" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | undefined;
|
|
4276
|
-
multiRichTextStyle?: "Default" | "OL" | "UL" | undefined;
|
|
4277
|
-
textStyle?: "Small" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | "DefaultBold" | "DefaultSemibold" | "SmallBold" | "SmallSemibold" | undefined;
|
|
4278
|
-
placeholder?: string | undefined;
|
|
4279
|
-
}>, z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
4280
|
-
variantOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodIntersection<z.ZodObject<{
|
|
4281
|
-
richTextStyle: z.ZodOptional<z.ZodEnum<["Title1", "Title2", "Title3", "Title4", "Title5", "Quote", "Callout", "Default"]>>;
|
|
4282
|
-
multiRichTextStyle: z.ZodOptional<z.ZodEnum<["OL", "UL", "Default"]>>;
|
|
4283
|
-
textStyle: z.ZodOptional<z.ZodEnum<["Title1", "Title2", "Title3", "Title4", "Title5", "Default", "DefaultBold", "DefaultSemibold", "Small", "SmallBold", "SmallSemibold"]>>;
|
|
4284
|
-
placeholder: z.ZodOptional<z.ZodString>;
|
|
4285
|
-
}, "strip", z.ZodTypeAny, {
|
|
4286
|
-
richTextStyle?: "Quote" | "Callout" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | undefined;
|
|
4287
|
-
multiRichTextStyle?: "Default" | "OL" | "UL" | undefined;
|
|
4288
|
-
textStyle?: "Small" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | "DefaultBold" | "DefaultSemibold" | "SmallBold" | "SmallSemibold" | undefined;
|
|
4289
|
-
placeholder?: string | undefined;
|
|
4290
|
-
}, {
|
|
4291
|
-
richTextStyle?: "Quote" | "Callout" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | undefined;
|
|
4292
|
-
multiRichTextStyle?: "Default" | "OL" | "UL" | undefined;
|
|
4293
|
-
textStyle?: "Small" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | "DefaultBold" | "DefaultSemibold" | "SmallBold" | "SmallSemibold" | undefined;
|
|
4294
|
-
placeholder?: string | undefined;
|
|
4295
|
-
}>, z.ZodRecord<z.ZodString, z.ZodAny>>>>;
|
|
4991
|
+
options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
4992
|
+
variantOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
4296
4993
|
}, "strip", z.ZodTypeAny, {
|
|
4297
4994
|
id: string;
|
|
4298
4995
|
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "Code" | "Divider" | "Table" | "Markdown" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
4299
4996
|
name: string;
|
|
4300
4997
|
description?: string | undefined;
|
|
4301
|
-
options?:
|
|
4302
|
-
|
|
4303
|
-
multiRichTextStyle?: "Default" | "OL" | "UL" | undefined;
|
|
4304
|
-
textStyle?: "Small" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | "DefaultBold" | "DefaultSemibold" | "SmallBold" | "SmallSemibold" | undefined;
|
|
4305
|
-
placeholder?: string | undefined;
|
|
4306
|
-
} & Record<string, any>) | undefined;
|
|
4307
|
-
variantOptions?: Record<string, {
|
|
4308
|
-
richTextStyle?: "Quote" | "Callout" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | undefined;
|
|
4309
|
-
multiRichTextStyle?: "Default" | "OL" | "UL" | undefined;
|
|
4310
|
-
textStyle?: "Small" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | "DefaultBold" | "DefaultSemibold" | "SmallBold" | "SmallSemibold" | undefined;
|
|
4311
|
-
placeholder?: string | undefined;
|
|
4312
|
-
} & Record<string, any>> | undefined;
|
|
4998
|
+
options?: Record<string, any> | undefined;
|
|
4999
|
+
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
4313
5000
|
}, {
|
|
4314
5001
|
id: string;
|
|
4315
5002
|
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "Code" | "Divider" | "Table" | "Markdown" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
4316
5003
|
name: string;
|
|
4317
5004
|
description?: string | undefined;
|
|
4318
|
-
options?:
|
|
4319
|
-
|
|
4320
|
-
multiRichTextStyle?: "Default" | "OL" | "UL" | undefined;
|
|
4321
|
-
textStyle?: "Small" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | "DefaultBold" | "DefaultSemibold" | "SmallBold" | "SmallSemibold" | undefined;
|
|
4322
|
-
placeholder?: string | undefined;
|
|
4323
|
-
} & Record<string, any>) | undefined;
|
|
4324
|
-
variantOptions?: Record<string, {
|
|
4325
|
-
richTextStyle?: "Quote" | "Callout" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | undefined;
|
|
4326
|
-
multiRichTextStyle?: "Default" | "OL" | "UL" | undefined;
|
|
4327
|
-
textStyle?: "Small" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | "DefaultBold" | "DefaultSemibold" | "SmallBold" | "SmallSemibold" | undefined;
|
|
4328
|
-
placeholder?: string | undefined;
|
|
4329
|
-
} & Record<string, any>> | undefined;
|
|
5005
|
+
options?: Record<string, any> | undefined;
|
|
5006
|
+
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
4330
5007
|
}>, "many">;
|
|
4331
5008
|
appearance: z.ZodOptional<z.ZodObject<{
|
|
4332
5009
|
isBordered: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4413,18 +5090,8 @@ declare const PageBlockDefinition: z.ZodObject<{
|
|
|
4413
5090
|
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "Code" | "Divider" | "Table" | "Markdown" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
4414
5091
|
name: string;
|
|
4415
5092
|
description?: string | undefined;
|
|
4416
|
-
options?:
|
|
4417
|
-
|
|
4418
|
-
multiRichTextStyle?: "Default" | "OL" | "UL" | undefined;
|
|
4419
|
-
textStyle?: "Small" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | "DefaultBold" | "DefaultSemibold" | "SmallBold" | "SmallSemibold" | undefined;
|
|
4420
|
-
placeholder?: string | undefined;
|
|
4421
|
-
} & Record<string, any>) | undefined;
|
|
4422
|
-
variantOptions?: Record<string, {
|
|
4423
|
-
richTextStyle?: "Quote" | "Callout" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | undefined;
|
|
4424
|
-
multiRichTextStyle?: "Default" | "OL" | "UL" | undefined;
|
|
4425
|
-
textStyle?: "Small" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | "DefaultBold" | "DefaultSemibold" | "SmallBold" | "SmallSemibold" | undefined;
|
|
4426
|
-
placeholder?: string | undefined;
|
|
4427
|
-
} & Record<string, any>> | undefined;
|
|
5093
|
+
options?: Record<string, any> | undefined;
|
|
5094
|
+
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
4428
5095
|
}[];
|
|
4429
5096
|
variants: {
|
|
4430
5097
|
id: string;
|
|
@@ -4460,18 +5127,8 @@ declare const PageBlockDefinition: z.ZodObject<{
|
|
|
4460
5127
|
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "Code" | "Divider" | "Table" | "Markdown" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
4461
5128
|
name: string;
|
|
4462
5129
|
description?: string | undefined;
|
|
4463
|
-
options?:
|
|
4464
|
-
|
|
4465
|
-
multiRichTextStyle?: "Default" | "OL" | "UL" | undefined;
|
|
4466
|
-
textStyle?: "Small" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | "DefaultBold" | "DefaultSemibold" | "SmallBold" | "SmallSemibold" | undefined;
|
|
4467
|
-
placeholder?: string | undefined;
|
|
4468
|
-
} & Record<string, any>) | undefined;
|
|
4469
|
-
variantOptions?: Record<string, {
|
|
4470
|
-
richTextStyle?: "Quote" | "Callout" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | undefined;
|
|
4471
|
-
multiRichTextStyle?: "Default" | "OL" | "UL" | undefined;
|
|
4472
|
-
textStyle?: "Small" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | "DefaultBold" | "DefaultSemibold" | "SmallBold" | "SmallSemibold" | undefined;
|
|
4473
|
-
placeholder?: string | undefined;
|
|
4474
|
-
} & Record<string, any>> | undefined;
|
|
5130
|
+
options?: Record<string, any> | undefined;
|
|
5131
|
+
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
4475
5132
|
}[];
|
|
4476
5133
|
variants: {
|
|
4477
5134
|
id: string;
|
|
@@ -4503,7 +5160,7 @@ declare const PageBlockDefinition: z.ZodObject<{
|
|
|
4503
5160
|
} | undefined;
|
|
4504
5161
|
}>;
|
|
4505
5162
|
behavior: z.ZodObject<{
|
|
4506
|
-
dataType: z.ZodEnum<["Item", "Token", "Asset", "Component", "
|
|
5163
|
+
dataType: z.ZodEnum<["Item", "Token", "Asset", "Component", "FigmaNode"]>;
|
|
4507
5164
|
items: z.ZodOptional<z.ZodObject<{
|
|
4508
5165
|
numberOfItems: z.ZodNumber;
|
|
4509
5166
|
allowLinks: z.ZodBoolean;
|
|
@@ -4525,7 +5182,7 @@ declare const PageBlockDefinition: z.ZodObject<{
|
|
|
4525
5182
|
maxSelected: number;
|
|
4526
5183
|
}>>;
|
|
4527
5184
|
}, "strip", z.ZodTypeAny, {
|
|
4528
|
-
dataType: "Component" | "Token" | "Asset" | "
|
|
5185
|
+
dataType: "Component" | "Token" | "Asset" | "FigmaNode" | "Item";
|
|
4529
5186
|
items?: {
|
|
4530
5187
|
numberOfItems: number;
|
|
4531
5188
|
allowLinks: boolean;
|
|
@@ -4535,7 +5192,7 @@ declare const PageBlockDefinition: z.ZodObject<{
|
|
|
4535
5192
|
maxSelected: number;
|
|
4536
5193
|
} | undefined;
|
|
4537
5194
|
}, {
|
|
4538
|
-
dataType: "Component" | "Token" | "Asset" | "
|
|
5195
|
+
dataType: "Component" | "Token" | "Asset" | "FigmaNode" | "Item";
|
|
4539
5196
|
items?: {
|
|
4540
5197
|
numberOfItems: number;
|
|
4541
5198
|
allowLinks: boolean;
|
|
@@ -4585,7 +5242,7 @@ declare const PageBlockDefinition: z.ZodObject<{
|
|
|
4585
5242
|
name: string;
|
|
4586
5243
|
description: string;
|
|
4587
5244
|
behavior: {
|
|
4588
|
-
dataType: "Component" | "Token" | "Asset" | "
|
|
5245
|
+
dataType: "Component" | "Token" | "Asset" | "FigmaNode" | "Item";
|
|
4589
5246
|
items?: {
|
|
4590
5247
|
numberOfItems: number;
|
|
4591
5248
|
allowLinks: boolean;
|
|
@@ -4602,18 +5259,8 @@ declare const PageBlockDefinition: z.ZodObject<{
|
|
|
4602
5259
|
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "Code" | "Divider" | "Table" | "Markdown" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
4603
5260
|
name: string;
|
|
4604
5261
|
description?: string | undefined;
|
|
4605
|
-
options?:
|
|
4606
|
-
|
|
4607
|
-
multiRichTextStyle?: "Default" | "OL" | "UL" | undefined;
|
|
4608
|
-
textStyle?: "Small" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | "DefaultBold" | "DefaultSemibold" | "SmallBold" | "SmallSemibold" | undefined;
|
|
4609
|
-
placeholder?: string | undefined;
|
|
4610
|
-
} & Record<string, any>) | undefined;
|
|
4611
|
-
variantOptions?: Record<string, {
|
|
4612
|
-
richTextStyle?: "Quote" | "Callout" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | undefined;
|
|
4613
|
-
multiRichTextStyle?: "Default" | "OL" | "UL" | undefined;
|
|
4614
|
-
textStyle?: "Small" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | "DefaultBold" | "DefaultSemibold" | "SmallBold" | "SmallSemibold" | undefined;
|
|
4615
|
-
placeholder?: string | undefined;
|
|
4616
|
-
} & Record<string, any>> | undefined;
|
|
5262
|
+
options?: Record<string, any> | undefined;
|
|
5263
|
+
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
4617
5264
|
}[];
|
|
4618
5265
|
variants: {
|
|
4619
5266
|
id: string;
|
|
@@ -4663,7 +5310,7 @@ declare const PageBlockDefinition: z.ZodObject<{
|
|
|
4663
5310
|
name: string;
|
|
4664
5311
|
description: string;
|
|
4665
5312
|
behavior: {
|
|
4666
|
-
dataType: "Component" | "Token" | "Asset" | "
|
|
5313
|
+
dataType: "Component" | "Token" | "Asset" | "FigmaNode" | "Item";
|
|
4667
5314
|
items?: {
|
|
4668
5315
|
numberOfItems: number;
|
|
4669
5316
|
allowLinks: boolean;
|
|
@@ -4680,18 +5327,8 @@ declare const PageBlockDefinition: z.ZodObject<{
|
|
|
4680
5327
|
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "Code" | "Divider" | "Table" | "Markdown" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
4681
5328
|
name: string;
|
|
4682
5329
|
description?: string | undefined;
|
|
4683
|
-
options?:
|
|
4684
|
-
|
|
4685
|
-
multiRichTextStyle?: "Default" | "OL" | "UL" | undefined;
|
|
4686
|
-
textStyle?: "Small" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | "DefaultBold" | "DefaultSemibold" | "SmallBold" | "SmallSemibold" | undefined;
|
|
4687
|
-
placeholder?: string | undefined;
|
|
4688
|
-
} & Record<string, any>) | undefined;
|
|
4689
|
-
variantOptions?: Record<string, {
|
|
4690
|
-
richTextStyle?: "Quote" | "Callout" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | undefined;
|
|
4691
|
-
multiRichTextStyle?: "Default" | "OL" | "UL" | undefined;
|
|
4692
|
-
textStyle?: "Small" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | "DefaultBold" | "DefaultSemibold" | "SmallBold" | "SmallSemibold" | undefined;
|
|
4693
|
-
placeholder?: string | undefined;
|
|
4694
|
-
} & Record<string, any>> | undefined;
|
|
5330
|
+
options?: Record<string, any> | undefined;
|
|
5331
|
+
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
4695
5332
|
}[];
|
|
4696
5333
|
variants: {
|
|
4697
5334
|
id: string;
|
|
@@ -4747,100 +5384,181 @@ declare const PageBlockDefinitionMultiRichTextPropertyStyle: z.ZodEnum<["OL", "U
|
|
|
4747
5384
|
type PageBlockDefinitionMultiRichTextPropertyStyle = z.infer<typeof PageBlockDefinitionMultiRichTextPropertyStyle>;
|
|
4748
5385
|
declare const PageBlockDefinitionTextPropertyStyle: z.ZodEnum<["Title1", "Title2", "Title3", "Title4", "Title5", "Default", "DefaultBold", "DefaultSemibold", "Small", "SmallBold", "SmallSemibold"]>;
|
|
4749
5386
|
type PageBlockDefinitionTextPropertyStyle = z.infer<typeof PageBlockDefinitionTextPropertyStyle>;
|
|
5387
|
+
declare const PageBlockDefinitionTextPropertyColor: z.ZodEnum<["Neutral", "NeutralFaded"]>;
|
|
5388
|
+
type PageBlockDefinitionTextPropertyColor = z.infer<typeof PageBlockDefinitionTextPropertyColor>;
|
|
4750
5389
|
declare const PageBlockDefinitionBooleanPropertyStyle: z.ZodEnum<["SegmentedControl", "ToggleButton", "Checkbox"]>;
|
|
4751
5390
|
type PageBlockDefinitionBooleanPropertyStyle = z.infer<typeof PageBlockDefinitionBooleanPropertyStyle>;
|
|
4752
5391
|
declare const PageBlockDefinitionSingleSelectPropertyStyle: z.ZodEnum<["SegmentedControl", "ToggleButton", "Select", "Checkbox"]>;
|
|
4753
5392
|
type PageBlockDefinitionSingleSelectPropertyStyle = z.infer<typeof PageBlockDefinitionSingleSelectPropertyStyle>;
|
|
4754
5393
|
declare const PageBlockDefinitionMultiSelectPropertyStyle: z.ZodEnum<["SegmentedControl", "Select", "Checkbox"]>;
|
|
4755
5394
|
type PageBlockDefinitionMultiSelectPropertyStyle = z.infer<typeof PageBlockDefinitionMultiSelectPropertyStyle>;
|
|
4756
|
-
declare const
|
|
5395
|
+
declare const PageBlockDefinitionImageAspectRatio: z.ZodEnum<["Auto", "Square", "Landscape", "Portrait", "Wide"]>;
|
|
5396
|
+
type PageBlockDefinitionImageAspectRatio = z.infer<typeof PageBlockDefinitionImageAspectRatio>;
|
|
5397
|
+
declare const PageBlockDefinitionImageWidth: z.ZodEnum<["Full", "Icon", "Small", "Medium", "Large", "Poster"]>;
|
|
5398
|
+
type PageBlockDefinitionImageWidth = z.infer<typeof PageBlockDefinitionImageWidth>;
|
|
5399
|
+
declare const PageBlockDefinitionSelectChoice: z.ZodObject<{
|
|
5400
|
+
value: z.ZodString;
|
|
5401
|
+
name: z.ZodString;
|
|
5402
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
5403
|
+
}, "strip", z.ZodTypeAny, {
|
|
5404
|
+
value: string;
|
|
5405
|
+
name: string;
|
|
5406
|
+
icon?: string | undefined;
|
|
5407
|
+
}, {
|
|
5408
|
+
value: string;
|
|
5409
|
+
name: string;
|
|
5410
|
+
icon?: string | undefined;
|
|
5411
|
+
}>;
|
|
5412
|
+
type PageBlockDefinitionSelectChoice = z.infer<typeof PageBlockDefinitionSelectChoice>;
|
|
5413
|
+
declare const PageBlockDefinitionUntypedPropertyOptions: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
5414
|
+
type PageBlockDefinitionUntypedPropertyOptions = z.infer<typeof PageBlockDefinitionUntypedPropertyOptions>;
|
|
5415
|
+
declare const PageBlockDefinitionRichTextOptions: z.ZodObject<{
|
|
4757
5416
|
richTextStyle: z.ZodOptional<z.ZodEnum<["Title1", "Title2", "Title3", "Title4", "Title5", "Quote", "Callout", "Default"]>>;
|
|
4758
|
-
multiRichTextStyle: z.ZodOptional<z.ZodEnum<["OL", "UL", "Default"]>>;
|
|
4759
|
-
textStyle: z.ZodOptional<z.ZodEnum<["Title1", "Title2", "Title3", "Title4", "Title5", "Default", "DefaultBold", "DefaultSemibold", "Small", "SmallBold", "SmallSemibold"]>>;
|
|
4760
|
-
placeholder: z.ZodOptional<z.ZodString>;
|
|
4761
5417
|
}, "strip", z.ZodTypeAny, {
|
|
4762
5418
|
richTextStyle?: "Quote" | "Callout" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | undefined;
|
|
4763
|
-
multiRichTextStyle?: "Default" | "OL" | "UL" | undefined;
|
|
4764
|
-
textStyle?: "Small" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | "DefaultBold" | "DefaultSemibold" | "SmallBold" | "SmallSemibold" | undefined;
|
|
4765
|
-
placeholder?: string | undefined;
|
|
4766
5419
|
}, {
|
|
4767
5420
|
richTextStyle?: "Quote" | "Callout" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | undefined;
|
|
5421
|
+
}>;
|
|
5422
|
+
type PageBlockDefinitionRichTextOptions = z.infer<typeof PageBlockDefinitionRichTextOptions>;
|
|
5423
|
+
declare const PageBlockDefinitionMutiRichTextOptions: z.ZodObject<{
|
|
5424
|
+
multiRichTextStyle: z.ZodOptional<z.ZodEnum<["OL", "UL", "Default"]>>;
|
|
5425
|
+
}, "strip", z.ZodTypeAny, {
|
|
5426
|
+
multiRichTextStyle?: "Default" | "OL" | "UL" | undefined;
|
|
5427
|
+
}, {
|
|
4768
5428
|
multiRichTextStyle?: "Default" | "OL" | "UL" | undefined;
|
|
5429
|
+
}>;
|
|
5430
|
+
type PageBlockDefinitionMutiRichTextOptions = z.infer<typeof PageBlockDefinitionMutiRichTextOptions>;
|
|
5431
|
+
declare const PageBlockDefinitionTextOptions: z.ZodObject<{
|
|
5432
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
5433
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
5434
|
+
textStyle: z.ZodOptional<z.ZodEnum<["Title1", "Title2", "Title3", "Title4", "Title5", "Default", "DefaultBold", "DefaultSemibold", "Small", "SmallBold", "SmallSemibold"]>>;
|
|
5435
|
+
color: z.ZodOptional<z.ZodEnum<["Neutral", "NeutralFaded"]>>;
|
|
5436
|
+
}, "strip", z.ZodTypeAny, {
|
|
5437
|
+
placeholder?: string | undefined;
|
|
5438
|
+
defaultValue?: string | undefined;
|
|
4769
5439
|
textStyle?: "Small" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | "DefaultBold" | "DefaultSemibold" | "SmallBold" | "SmallSemibold" | undefined;
|
|
5440
|
+
color?: "Neutral" | "NeutralFaded" | undefined;
|
|
5441
|
+
}, {
|
|
4770
5442
|
placeholder?: string | undefined;
|
|
4771
|
-
|
|
4772
|
-
|
|
5443
|
+
defaultValue?: string | undefined;
|
|
5444
|
+
textStyle?: "Small" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | "DefaultBold" | "DefaultSemibold" | "SmallBold" | "SmallSemibold" | undefined;
|
|
5445
|
+
color?: "Neutral" | "NeutralFaded" | undefined;
|
|
5446
|
+
}>;
|
|
5447
|
+
type PageBlockDefinitionTextOptions = z.infer<typeof PageBlockDefinitionTextOptions>;
|
|
5448
|
+
declare const PageBlockDefinitionSelectOptions: z.ZodObject<{
|
|
5449
|
+
singleSelectStyle: z.ZodOptional<z.ZodEnum<["SegmentedControl", "ToggleButton", "Select", "Checkbox"]>>;
|
|
5450
|
+
defaultChoice: z.ZodString;
|
|
5451
|
+
choices: z.ZodArray<z.ZodObject<{
|
|
5452
|
+
value: z.ZodString;
|
|
5453
|
+
name: z.ZodString;
|
|
5454
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
5455
|
+
}, "strip", z.ZodTypeAny, {
|
|
5456
|
+
value: string;
|
|
5457
|
+
name: string;
|
|
5458
|
+
icon?: string | undefined;
|
|
5459
|
+
}, {
|
|
5460
|
+
value: string;
|
|
5461
|
+
name: string;
|
|
5462
|
+
icon?: string | undefined;
|
|
5463
|
+
}>, "many">;
|
|
5464
|
+
}, "strip", z.ZodTypeAny, {
|
|
5465
|
+
defaultChoice: string;
|
|
5466
|
+
choices: {
|
|
5467
|
+
value: string;
|
|
5468
|
+
name: string;
|
|
5469
|
+
icon?: string | undefined;
|
|
5470
|
+
}[];
|
|
5471
|
+
singleSelectStyle?: "Select" | "SegmentedControl" | "ToggleButton" | "Checkbox" | undefined;
|
|
5472
|
+
}, {
|
|
5473
|
+
defaultChoice: string;
|
|
5474
|
+
choices: {
|
|
5475
|
+
value: string;
|
|
5476
|
+
name: string;
|
|
5477
|
+
icon?: string | undefined;
|
|
5478
|
+
}[];
|
|
5479
|
+
singleSelectStyle?: "Select" | "SegmentedControl" | "ToggleButton" | "Checkbox" | undefined;
|
|
5480
|
+
}>;
|
|
5481
|
+
type PageBlockDefinitionSelectOptions = z.infer<typeof PageBlockDefinitionSelectOptions>;
|
|
5482
|
+
declare const PageBlockDefinitionImageOptions: z.ZodObject<{
|
|
5483
|
+
width: z.ZodOptional<z.ZodEnum<["Full", "Icon", "Small", "Medium", "Large", "Poster"]>>;
|
|
5484
|
+
aspectRatio: z.ZodOptional<z.ZodEnum<["Auto", "Square", "Landscape", "Portrait", "Wide"]>>;
|
|
5485
|
+
allowCaption: z.ZodOptional<z.ZodBoolean>;
|
|
5486
|
+
recommendation: z.ZodOptional<z.ZodString>;
|
|
5487
|
+
}, "strip", z.ZodTypeAny, {
|
|
5488
|
+
width?: "Small" | "Medium" | "Large" | "Full" | "Icon" | "Poster" | undefined;
|
|
5489
|
+
aspectRatio?: "Auto" | "Square" | "Landscape" | "Portrait" | "Wide" | undefined;
|
|
5490
|
+
allowCaption?: boolean | undefined;
|
|
5491
|
+
recommendation?: string | undefined;
|
|
5492
|
+
}, {
|
|
5493
|
+
width?: "Small" | "Medium" | "Large" | "Full" | "Icon" | "Poster" | undefined;
|
|
5494
|
+
aspectRatio?: "Auto" | "Square" | "Landscape" | "Portrait" | "Wide" | undefined;
|
|
5495
|
+
allowCaption?: boolean | undefined;
|
|
5496
|
+
recommendation?: string | undefined;
|
|
5497
|
+
}>;
|
|
5498
|
+
type PageBlockDefinitionImageOptions = z.infer<typeof PageBlockDefinitionImageOptions>;
|
|
5499
|
+
declare const PageBlockDefinitionBooleanOptions: z.ZodObject<{
|
|
5500
|
+
defaultvalue: z.ZodOptional<z.ZodBoolean>;
|
|
5501
|
+
booleanStyle: z.ZodOptional<z.ZodEnum<["SegmentedControl", "ToggleButton", "Checkbox"]>>;
|
|
5502
|
+
}, "strip", z.ZodTypeAny, {
|
|
5503
|
+
defaultvalue?: boolean | undefined;
|
|
5504
|
+
booleanStyle?: "SegmentedControl" | "ToggleButton" | "Checkbox" | undefined;
|
|
5505
|
+
}, {
|
|
5506
|
+
defaultvalue?: boolean | undefined;
|
|
5507
|
+
booleanStyle?: "SegmentedControl" | "ToggleButton" | "Checkbox" | undefined;
|
|
5508
|
+
}>;
|
|
5509
|
+
type PageBlockDefinitionBooleanOptions = z.infer<typeof PageBlockDefinitionBooleanOptions>;
|
|
5510
|
+
declare const PageBlockDefinitionNumberOptions: z.ZodObject<{
|
|
5511
|
+
defaultValue: z.ZodNumber;
|
|
5512
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
5513
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
5514
|
+
step: z.ZodOptional<z.ZodNumber>;
|
|
5515
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
5516
|
+
}, "strip", z.ZodTypeAny, {
|
|
5517
|
+
defaultValue: number;
|
|
5518
|
+
min?: number | undefined;
|
|
5519
|
+
max?: number | undefined;
|
|
5520
|
+
step?: number | undefined;
|
|
5521
|
+
placeholder?: string | undefined;
|
|
5522
|
+
}, {
|
|
5523
|
+
defaultValue: number;
|
|
5524
|
+
min?: number | undefined;
|
|
5525
|
+
max?: number | undefined;
|
|
5526
|
+
step?: number | undefined;
|
|
5527
|
+
placeholder?: string | undefined;
|
|
5528
|
+
}>;
|
|
5529
|
+
type PageBlockDefinitionNumberOptions = z.infer<typeof PageBlockDefinitionNumberOptions>;
|
|
5530
|
+
declare const PageBlockDefinitionComponentOptions: z.ZodObject<{
|
|
5531
|
+
renderLayoutAs: z.ZodOptional<z.ZodEnum<["List", "Table"]>>;
|
|
5532
|
+
allowPropertySelection: z.ZodOptional<z.ZodBoolean>;
|
|
5533
|
+
}, "strip", z.ZodTypeAny, {
|
|
5534
|
+
renderLayoutAs?: "Table" | "List" | undefined;
|
|
5535
|
+
allowPropertySelection?: boolean | undefined;
|
|
5536
|
+
}, {
|
|
5537
|
+
renderLayoutAs?: "Table" | "List" | undefined;
|
|
5538
|
+
allowPropertySelection?: boolean | undefined;
|
|
5539
|
+
}>;
|
|
5540
|
+
type PageBlockDefinitionComponentOptions = z.infer<typeof PageBlockDefinitionComponentOptions>;
|
|
4773
5541
|
declare const PageBlockDefinitionProperty: z.ZodObject<{
|
|
4774
5542
|
id: z.ZodString;
|
|
4775
5543
|
name: z.ZodString;
|
|
4776
5544
|
type: z.ZodEnum<["RichText", "MultiRichText", "Text", "Boolean", "Number", "SingleSelect", "MultiSelect", "Image", "Token", "TokenType", "TokenProperty", "Component", "ComponentProperty", "Asset", "AssetProperty", "EmbedURL", "URL", "Markdown", "Code", "CodeSandbox", "Table", "Divider", "Storybook", "Color"]>;
|
|
4777
5545
|
description: z.ZodOptional<z.ZodString>;
|
|
4778
|
-
options: z.ZodOptional<z.
|
|
4779
|
-
|
|
4780
|
-
multiRichTextStyle: z.ZodOptional<z.ZodEnum<["OL", "UL", "Default"]>>;
|
|
4781
|
-
textStyle: z.ZodOptional<z.ZodEnum<["Title1", "Title2", "Title3", "Title4", "Title5", "Default", "DefaultBold", "DefaultSemibold", "Small", "SmallBold", "SmallSemibold"]>>;
|
|
4782
|
-
placeholder: z.ZodOptional<z.ZodString>;
|
|
4783
|
-
}, "strip", z.ZodTypeAny, {
|
|
4784
|
-
richTextStyle?: "Quote" | "Callout" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | undefined;
|
|
4785
|
-
multiRichTextStyle?: "Default" | "OL" | "UL" | undefined;
|
|
4786
|
-
textStyle?: "Small" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | "DefaultBold" | "DefaultSemibold" | "SmallBold" | "SmallSemibold" | undefined;
|
|
4787
|
-
placeholder?: string | undefined;
|
|
4788
|
-
}, {
|
|
4789
|
-
richTextStyle?: "Quote" | "Callout" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | undefined;
|
|
4790
|
-
multiRichTextStyle?: "Default" | "OL" | "UL" | undefined;
|
|
4791
|
-
textStyle?: "Small" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | "DefaultBold" | "DefaultSemibold" | "SmallBold" | "SmallSemibold" | undefined;
|
|
4792
|
-
placeholder?: string | undefined;
|
|
4793
|
-
}>, z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
4794
|
-
variantOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodIntersection<z.ZodObject<{
|
|
4795
|
-
richTextStyle: z.ZodOptional<z.ZodEnum<["Title1", "Title2", "Title3", "Title4", "Title5", "Quote", "Callout", "Default"]>>;
|
|
4796
|
-
multiRichTextStyle: z.ZodOptional<z.ZodEnum<["OL", "UL", "Default"]>>;
|
|
4797
|
-
textStyle: z.ZodOptional<z.ZodEnum<["Title1", "Title2", "Title3", "Title4", "Title5", "Default", "DefaultBold", "DefaultSemibold", "Small", "SmallBold", "SmallSemibold"]>>;
|
|
4798
|
-
placeholder: z.ZodOptional<z.ZodString>;
|
|
4799
|
-
}, "strip", z.ZodTypeAny, {
|
|
4800
|
-
richTextStyle?: "Quote" | "Callout" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | undefined;
|
|
4801
|
-
multiRichTextStyle?: "Default" | "OL" | "UL" | undefined;
|
|
4802
|
-
textStyle?: "Small" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | "DefaultBold" | "DefaultSemibold" | "SmallBold" | "SmallSemibold" | undefined;
|
|
4803
|
-
placeholder?: string | undefined;
|
|
4804
|
-
}, {
|
|
4805
|
-
richTextStyle?: "Quote" | "Callout" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | undefined;
|
|
4806
|
-
multiRichTextStyle?: "Default" | "OL" | "UL" | undefined;
|
|
4807
|
-
textStyle?: "Small" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | "DefaultBold" | "DefaultSemibold" | "SmallBold" | "SmallSemibold" | undefined;
|
|
4808
|
-
placeholder?: string | undefined;
|
|
4809
|
-
}>, z.ZodRecord<z.ZodString, z.ZodAny>>>>;
|
|
5546
|
+
options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
5547
|
+
variantOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
4810
5548
|
}, "strip", z.ZodTypeAny, {
|
|
4811
5549
|
id: string;
|
|
4812
5550
|
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "Code" | "Divider" | "Table" | "Markdown" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
4813
5551
|
name: string;
|
|
4814
5552
|
description?: string | undefined;
|
|
4815
|
-
options?:
|
|
4816
|
-
|
|
4817
|
-
multiRichTextStyle?: "Default" | "OL" | "UL" | undefined;
|
|
4818
|
-
textStyle?: "Small" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | "DefaultBold" | "DefaultSemibold" | "SmallBold" | "SmallSemibold" | undefined;
|
|
4819
|
-
placeholder?: string | undefined;
|
|
4820
|
-
} & Record<string, any>) | undefined;
|
|
4821
|
-
variantOptions?: Record<string, {
|
|
4822
|
-
richTextStyle?: "Quote" | "Callout" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | undefined;
|
|
4823
|
-
multiRichTextStyle?: "Default" | "OL" | "UL" | undefined;
|
|
4824
|
-
textStyle?: "Small" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | "DefaultBold" | "DefaultSemibold" | "SmallBold" | "SmallSemibold" | undefined;
|
|
4825
|
-
placeholder?: string | undefined;
|
|
4826
|
-
} & Record<string, any>> | undefined;
|
|
5553
|
+
options?: Record<string, any> | undefined;
|
|
5554
|
+
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
4827
5555
|
}, {
|
|
4828
5556
|
id: string;
|
|
4829
5557
|
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "Code" | "Divider" | "Table" | "Markdown" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
4830
5558
|
name: string;
|
|
4831
5559
|
description?: string | undefined;
|
|
4832
|
-
options?:
|
|
4833
|
-
|
|
4834
|
-
multiRichTextStyle?: "Default" | "OL" | "UL" | undefined;
|
|
4835
|
-
textStyle?: "Small" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | "DefaultBold" | "DefaultSemibold" | "SmallBold" | "SmallSemibold" | undefined;
|
|
4836
|
-
placeholder?: string | undefined;
|
|
4837
|
-
} & Record<string, any>) | undefined;
|
|
4838
|
-
variantOptions?: Record<string, {
|
|
4839
|
-
richTextStyle?: "Quote" | "Callout" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | undefined;
|
|
4840
|
-
multiRichTextStyle?: "Default" | "OL" | "UL" | undefined;
|
|
4841
|
-
textStyle?: "Small" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | "DefaultBold" | "DefaultSemibold" | "SmallBold" | "SmallSemibold" | undefined;
|
|
4842
|
-
placeholder?: string | undefined;
|
|
4843
|
-
} & Record<string, any>> | undefined;
|
|
5560
|
+
options?: Record<string, any> | undefined;
|
|
5561
|
+
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
4844
5562
|
}>;
|
|
4845
5563
|
type PageBlockDefinitionProperty = z.infer<typeof PageBlockDefinitionProperty>;
|
|
4846
5564
|
declare const PageBlockDefinitionItem: z.ZodObject<{
|
|
@@ -4849,72 +5567,22 @@ declare const PageBlockDefinitionItem: z.ZodObject<{
|
|
|
4849
5567
|
name: z.ZodString;
|
|
4850
5568
|
type: z.ZodEnum<["RichText", "MultiRichText", "Text", "Boolean", "Number", "SingleSelect", "MultiSelect", "Image", "Token", "TokenType", "TokenProperty", "Component", "ComponentProperty", "Asset", "AssetProperty", "EmbedURL", "URL", "Markdown", "Code", "CodeSandbox", "Table", "Divider", "Storybook", "Color"]>;
|
|
4851
5569
|
description: z.ZodOptional<z.ZodString>;
|
|
4852
|
-
options: z.ZodOptional<z.
|
|
4853
|
-
|
|
4854
|
-
multiRichTextStyle: z.ZodOptional<z.ZodEnum<["OL", "UL", "Default"]>>;
|
|
4855
|
-
textStyle: z.ZodOptional<z.ZodEnum<["Title1", "Title2", "Title3", "Title4", "Title5", "Default", "DefaultBold", "DefaultSemibold", "Small", "SmallBold", "SmallSemibold"]>>;
|
|
4856
|
-
placeholder: z.ZodOptional<z.ZodString>;
|
|
4857
|
-
}, "strip", z.ZodTypeAny, {
|
|
4858
|
-
richTextStyle?: "Quote" | "Callout" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | undefined;
|
|
4859
|
-
multiRichTextStyle?: "Default" | "OL" | "UL" | undefined;
|
|
4860
|
-
textStyle?: "Small" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | "DefaultBold" | "DefaultSemibold" | "SmallBold" | "SmallSemibold" | undefined;
|
|
4861
|
-
placeholder?: string | undefined;
|
|
4862
|
-
}, {
|
|
4863
|
-
richTextStyle?: "Quote" | "Callout" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | undefined;
|
|
4864
|
-
multiRichTextStyle?: "Default" | "OL" | "UL" | undefined;
|
|
4865
|
-
textStyle?: "Small" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | "DefaultBold" | "DefaultSemibold" | "SmallBold" | "SmallSemibold" | undefined;
|
|
4866
|
-
placeholder?: string | undefined;
|
|
4867
|
-
}>, z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
4868
|
-
variantOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodIntersection<z.ZodObject<{
|
|
4869
|
-
richTextStyle: z.ZodOptional<z.ZodEnum<["Title1", "Title2", "Title3", "Title4", "Title5", "Quote", "Callout", "Default"]>>;
|
|
4870
|
-
multiRichTextStyle: z.ZodOptional<z.ZodEnum<["OL", "UL", "Default"]>>;
|
|
4871
|
-
textStyle: z.ZodOptional<z.ZodEnum<["Title1", "Title2", "Title3", "Title4", "Title5", "Default", "DefaultBold", "DefaultSemibold", "Small", "SmallBold", "SmallSemibold"]>>;
|
|
4872
|
-
placeholder: z.ZodOptional<z.ZodString>;
|
|
4873
|
-
}, "strip", z.ZodTypeAny, {
|
|
4874
|
-
richTextStyle?: "Quote" | "Callout" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | undefined;
|
|
4875
|
-
multiRichTextStyle?: "Default" | "OL" | "UL" | undefined;
|
|
4876
|
-
textStyle?: "Small" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | "DefaultBold" | "DefaultSemibold" | "SmallBold" | "SmallSemibold" | undefined;
|
|
4877
|
-
placeholder?: string | undefined;
|
|
4878
|
-
}, {
|
|
4879
|
-
richTextStyle?: "Quote" | "Callout" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | undefined;
|
|
4880
|
-
multiRichTextStyle?: "Default" | "OL" | "UL" | undefined;
|
|
4881
|
-
textStyle?: "Small" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | "DefaultBold" | "DefaultSemibold" | "SmallBold" | "SmallSemibold" | undefined;
|
|
4882
|
-
placeholder?: string | undefined;
|
|
4883
|
-
}>, z.ZodRecord<z.ZodString, z.ZodAny>>>>;
|
|
5570
|
+
options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
5571
|
+
variantOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
4884
5572
|
}, "strip", z.ZodTypeAny, {
|
|
4885
5573
|
id: string;
|
|
4886
5574
|
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "Code" | "Divider" | "Table" | "Markdown" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
4887
5575
|
name: string;
|
|
4888
5576
|
description?: string | undefined;
|
|
4889
|
-
options?:
|
|
4890
|
-
|
|
4891
|
-
multiRichTextStyle?: "Default" | "OL" | "UL" | undefined;
|
|
4892
|
-
textStyle?: "Small" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | "DefaultBold" | "DefaultSemibold" | "SmallBold" | "SmallSemibold" | undefined;
|
|
4893
|
-
placeholder?: string | undefined;
|
|
4894
|
-
} & Record<string, any>) | undefined;
|
|
4895
|
-
variantOptions?: Record<string, {
|
|
4896
|
-
richTextStyle?: "Quote" | "Callout" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | undefined;
|
|
4897
|
-
multiRichTextStyle?: "Default" | "OL" | "UL" | undefined;
|
|
4898
|
-
textStyle?: "Small" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | "DefaultBold" | "DefaultSemibold" | "SmallBold" | "SmallSemibold" | undefined;
|
|
4899
|
-
placeholder?: string | undefined;
|
|
4900
|
-
} & Record<string, any>> | undefined;
|
|
5577
|
+
options?: Record<string, any> | undefined;
|
|
5578
|
+
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
4901
5579
|
}, {
|
|
4902
5580
|
id: string;
|
|
4903
5581
|
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "Code" | "Divider" | "Table" | "Markdown" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
4904
5582
|
name: string;
|
|
4905
5583
|
description?: string | undefined;
|
|
4906
|
-
options?:
|
|
4907
|
-
|
|
4908
|
-
multiRichTextStyle?: "Default" | "OL" | "UL" | undefined;
|
|
4909
|
-
textStyle?: "Small" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | "DefaultBold" | "DefaultSemibold" | "SmallBold" | "SmallSemibold" | undefined;
|
|
4910
|
-
placeholder?: string | undefined;
|
|
4911
|
-
} & Record<string, any>) | undefined;
|
|
4912
|
-
variantOptions?: Record<string, {
|
|
4913
|
-
richTextStyle?: "Quote" | "Callout" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | undefined;
|
|
4914
|
-
multiRichTextStyle?: "Default" | "OL" | "UL" | undefined;
|
|
4915
|
-
textStyle?: "Small" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | "DefaultBold" | "DefaultSemibold" | "SmallBold" | "SmallSemibold" | undefined;
|
|
4916
|
-
placeholder?: string | undefined;
|
|
4917
|
-
} & Record<string, any>> | undefined;
|
|
5584
|
+
options?: Record<string, any> | undefined;
|
|
5585
|
+
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
4918
5586
|
}>, "many">;
|
|
4919
5587
|
appearance: z.ZodOptional<z.ZodObject<{
|
|
4920
5588
|
isBordered: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -5001,18 +5669,8 @@ declare const PageBlockDefinitionItem: z.ZodObject<{
|
|
|
5001
5669
|
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "Code" | "Divider" | "Table" | "Markdown" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
5002
5670
|
name: string;
|
|
5003
5671
|
description?: string | undefined;
|
|
5004
|
-
options?:
|
|
5005
|
-
|
|
5006
|
-
multiRichTextStyle?: "Default" | "OL" | "UL" | undefined;
|
|
5007
|
-
textStyle?: "Small" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | "DefaultBold" | "DefaultSemibold" | "SmallBold" | "SmallSemibold" | undefined;
|
|
5008
|
-
placeholder?: string | undefined;
|
|
5009
|
-
} & Record<string, any>) | undefined;
|
|
5010
|
-
variantOptions?: Record<string, {
|
|
5011
|
-
richTextStyle?: "Quote" | "Callout" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | undefined;
|
|
5012
|
-
multiRichTextStyle?: "Default" | "OL" | "UL" | undefined;
|
|
5013
|
-
textStyle?: "Small" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | "DefaultBold" | "DefaultSemibold" | "SmallBold" | "SmallSemibold" | undefined;
|
|
5014
|
-
placeholder?: string | undefined;
|
|
5015
|
-
} & Record<string, any>> | undefined;
|
|
5672
|
+
options?: Record<string, any> | undefined;
|
|
5673
|
+
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
5016
5674
|
}[];
|
|
5017
5675
|
variants: {
|
|
5018
5676
|
id: string;
|
|
@@ -5048,18 +5706,8 @@ declare const PageBlockDefinitionItem: z.ZodObject<{
|
|
|
5048
5706
|
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "Code" | "Divider" | "Table" | "Markdown" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
5049
5707
|
name: string;
|
|
5050
5708
|
description?: string | undefined;
|
|
5051
|
-
options?:
|
|
5052
|
-
|
|
5053
|
-
multiRichTextStyle?: "Default" | "OL" | "UL" | undefined;
|
|
5054
|
-
textStyle?: "Small" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | "DefaultBold" | "DefaultSemibold" | "SmallBold" | "SmallSemibold" | undefined;
|
|
5055
|
-
placeholder?: string | undefined;
|
|
5056
|
-
} & Record<string, any>) | undefined;
|
|
5057
|
-
variantOptions?: Record<string, {
|
|
5058
|
-
richTextStyle?: "Quote" | "Callout" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | undefined;
|
|
5059
|
-
multiRichTextStyle?: "Default" | "OL" | "UL" | undefined;
|
|
5060
|
-
textStyle?: "Small" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | "DefaultBold" | "DefaultSemibold" | "SmallBold" | "SmallSemibold" | undefined;
|
|
5061
|
-
placeholder?: string | undefined;
|
|
5062
|
-
} & Record<string, any>> | undefined;
|
|
5709
|
+
options?: Record<string, any> | undefined;
|
|
5710
|
+
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
5063
5711
|
}[];
|
|
5064
5712
|
variants: {
|
|
5065
5713
|
id: string;
|
|
@@ -6086,226 +6734,6 @@ declare const PageBlockLinkPreview: z.ZodObject<{
|
|
|
6086
6734
|
title?: string | null | undefined;
|
|
6087
6735
|
valid?: boolean | null | undefined;
|
|
6088
6736
|
}>;
|
|
6089
|
-
declare const PageBlockShortcut: z.ZodObject<{
|
|
6090
|
-
persistentId: z.ZodString;
|
|
6091
|
-
title: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
6092
|
-
description: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
6093
|
-
asset: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
6094
|
-
type: "image" | "figmaFrame";
|
|
6095
|
-
id?: string | undefined;
|
|
6096
|
-
url?: string | undefined;
|
|
6097
|
-
figmaFrame?: {
|
|
6098
|
-
persistentId: string;
|
|
6099
|
-
sourceId: string;
|
|
6100
|
-
sourceFrameId: string;
|
|
6101
|
-
title?: string | undefined;
|
|
6102
|
-
description?: string | undefined;
|
|
6103
|
-
backgroundColor?: {
|
|
6104
|
-
value: string;
|
|
6105
|
-
} | undefined;
|
|
6106
|
-
origin?: {
|
|
6107
|
-
sourceFileName?: string | undefined;
|
|
6108
|
-
title?: string | undefined;
|
|
6109
|
-
previewUrl?: string | undefined;
|
|
6110
|
-
valid?: boolean | undefined;
|
|
6111
|
-
referenceId?: string | undefined;
|
|
6112
|
-
assetId?: string | undefined;
|
|
6113
|
-
assetScale?: number | undefined;
|
|
6114
|
-
width?: number | undefined;
|
|
6115
|
-
height?: number | undefined;
|
|
6116
|
-
} | undefined;
|
|
6117
|
-
} | undefined;
|
|
6118
|
-
}, z.ZodTypeDef, {
|
|
6119
|
-
type: "image" | "figmaFrame";
|
|
6120
|
-
id?: string | null | undefined;
|
|
6121
|
-
url?: string | null | undefined;
|
|
6122
|
-
figmaFrame?: {
|
|
6123
|
-
persistentId: string;
|
|
6124
|
-
sourceId: string;
|
|
6125
|
-
sourceFrameId: string;
|
|
6126
|
-
title?: string | null | undefined;
|
|
6127
|
-
description?: string | null | undefined;
|
|
6128
|
-
backgroundColor?: {
|
|
6129
|
-
value: string;
|
|
6130
|
-
} | null | undefined;
|
|
6131
|
-
origin?: {
|
|
6132
|
-
sourceFileName?: string | null | undefined;
|
|
6133
|
-
title?: string | null | undefined;
|
|
6134
|
-
previewUrl?: string | null | undefined;
|
|
6135
|
-
valid?: boolean | null | undefined;
|
|
6136
|
-
referenceId?: string | null | undefined;
|
|
6137
|
-
assetId?: string | null | undefined;
|
|
6138
|
-
assetScale?: number | null | undefined;
|
|
6139
|
-
width?: number | null | undefined;
|
|
6140
|
-
height?: number | null | undefined;
|
|
6141
|
-
} | null | undefined;
|
|
6142
|
-
} | null | undefined;
|
|
6143
|
-
}>>>, {
|
|
6144
|
-
type: "image" | "figmaFrame";
|
|
6145
|
-
id?: string | undefined;
|
|
6146
|
-
url?: string | undefined;
|
|
6147
|
-
figmaFrame?: {
|
|
6148
|
-
persistentId: string;
|
|
6149
|
-
sourceId: string;
|
|
6150
|
-
sourceFrameId: string;
|
|
6151
|
-
title?: string | undefined;
|
|
6152
|
-
description?: string | undefined;
|
|
6153
|
-
backgroundColor?: {
|
|
6154
|
-
value: string;
|
|
6155
|
-
} | undefined;
|
|
6156
|
-
origin?: {
|
|
6157
|
-
sourceFileName?: string | undefined;
|
|
6158
|
-
title?: string | undefined;
|
|
6159
|
-
previewUrl?: string | undefined;
|
|
6160
|
-
valid?: boolean | undefined;
|
|
6161
|
-
referenceId?: string | undefined;
|
|
6162
|
-
assetId?: string | undefined;
|
|
6163
|
-
assetScale?: number | undefined;
|
|
6164
|
-
width?: number | undefined;
|
|
6165
|
-
height?: number | undefined;
|
|
6166
|
-
} | undefined;
|
|
6167
|
-
} | undefined;
|
|
6168
|
-
} | undefined, {
|
|
6169
|
-
type: "image" | "figmaFrame";
|
|
6170
|
-
id?: string | null | undefined;
|
|
6171
|
-
url?: string | null | undefined;
|
|
6172
|
-
figmaFrame?: {
|
|
6173
|
-
persistentId: string;
|
|
6174
|
-
sourceId: string;
|
|
6175
|
-
sourceFrameId: string;
|
|
6176
|
-
title?: string | null | undefined;
|
|
6177
|
-
description?: string | null | undefined;
|
|
6178
|
-
backgroundColor?: {
|
|
6179
|
-
value: string;
|
|
6180
|
-
} | null | undefined;
|
|
6181
|
-
origin?: {
|
|
6182
|
-
sourceFileName?: string | null | undefined;
|
|
6183
|
-
title?: string | null | undefined;
|
|
6184
|
-
previewUrl?: string | null | undefined;
|
|
6185
|
-
valid?: boolean | null | undefined;
|
|
6186
|
-
referenceId?: string | null | undefined;
|
|
6187
|
-
assetId?: string | null | undefined;
|
|
6188
|
-
assetScale?: number | null | undefined;
|
|
6189
|
-
width?: number | null | undefined;
|
|
6190
|
-
height?: number | null | undefined;
|
|
6191
|
-
} | null | undefined;
|
|
6192
|
-
} | null | undefined;
|
|
6193
|
-
} | null | undefined>;
|
|
6194
|
-
documentationItemId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
6195
|
-
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
6196
|
-
urlPreview: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
6197
|
-
title?: string | undefined;
|
|
6198
|
-
description?: string | undefined;
|
|
6199
|
-
thumbnailUrl?: string | undefined;
|
|
6200
|
-
}, z.ZodTypeDef, {
|
|
6201
|
-
title?: string | null | undefined;
|
|
6202
|
-
description?: string | null | undefined;
|
|
6203
|
-
thumbnailUrl?: string | null | undefined;
|
|
6204
|
-
}>>>, {
|
|
6205
|
-
title?: string | undefined;
|
|
6206
|
-
description?: string | undefined;
|
|
6207
|
-
thumbnailUrl?: string | undefined;
|
|
6208
|
-
} | undefined, {
|
|
6209
|
-
title?: string | null | undefined;
|
|
6210
|
-
description?: string | null | undefined;
|
|
6211
|
-
thumbnailUrl?: string | null | undefined;
|
|
6212
|
-
} | null | undefined>;
|
|
6213
|
-
documentationItemPreview: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
6214
|
-
title?: string | undefined;
|
|
6215
|
-
valid?: boolean | undefined;
|
|
6216
|
-
}, z.ZodTypeDef, {
|
|
6217
|
-
title?: string | null | undefined;
|
|
6218
|
-
valid?: boolean | null | undefined;
|
|
6219
|
-
}>>>, {
|
|
6220
|
-
title?: string | undefined;
|
|
6221
|
-
valid?: boolean | undefined;
|
|
6222
|
-
} | undefined, {
|
|
6223
|
-
title?: string | null | undefined;
|
|
6224
|
-
valid?: boolean | null | undefined;
|
|
6225
|
-
} | null | undefined>;
|
|
6226
|
-
}, "strip", z.ZodTypeAny, {
|
|
6227
|
-
persistentId: string;
|
|
6228
|
-
title?: string | undefined;
|
|
6229
|
-
description?: string | undefined;
|
|
6230
|
-
asset?: {
|
|
6231
|
-
type: "image" | "figmaFrame";
|
|
6232
|
-
id?: string | undefined;
|
|
6233
|
-
url?: string | undefined;
|
|
6234
|
-
figmaFrame?: {
|
|
6235
|
-
persistentId: string;
|
|
6236
|
-
sourceId: string;
|
|
6237
|
-
sourceFrameId: string;
|
|
6238
|
-
title?: string | undefined;
|
|
6239
|
-
description?: string | undefined;
|
|
6240
|
-
backgroundColor?: {
|
|
6241
|
-
value: string;
|
|
6242
|
-
} | undefined;
|
|
6243
|
-
origin?: {
|
|
6244
|
-
sourceFileName?: string | undefined;
|
|
6245
|
-
title?: string | undefined;
|
|
6246
|
-
previewUrl?: string | undefined;
|
|
6247
|
-
valid?: boolean | undefined;
|
|
6248
|
-
referenceId?: string | undefined;
|
|
6249
|
-
assetId?: string | undefined;
|
|
6250
|
-
assetScale?: number | undefined;
|
|
6251
|
-
width?: number | undefined;
|
|
6252
|
-
height?: number | undefined;
|
|
6253
|
-
} | undefined;
|
|
6254
|
-
} | undefined;
|
|
6255
|
-
} | undefined;
|
|
6256
|
-
documentationItemId?: string | undefined;
|
|
6257
|
-
url?: string | undefined;
|
|
6258
|
-
urlPreview?: {
|
|
6259
|
-
title?: string | undefined;
|
|
6260
|
-
description?: string | undefined;
|
|
6261
|
-
thumbnailUrl?: string | undefined;
|
|
6262
|
-
} | undefined;
|
|
6263
|
-
documentationItemPreview?: {
|
|
6264
|
-
title?: string | undefined;
|
|
6265
|
-
valid?: boolean | undefined;
|
|
6266
|
-
} | undefined;
|
|
6267
|
-
}, {
|
|
6268
|
-
persistentId: string;
|
|
6269
|
-
title?: string | null | undefined;
|
|
6270
|
-
description?: string | null | undefined;
|
|
6271
|
-
asset?: {
|
|
6272
|
-
type: "image" | "figmaFrame";
|
|
6273
|
-
id?: string | null | undefined;
|
|
6274
|
-
url?: string | null | undefined;
|
|
6275
|
-
figmaFrame?: {
|
|
6276
|
-
persistentId: string;
|
|
6277
|
-
sourceId: string;
|
|
6278
|
-
sourceFrameId: string;
|
|
6279
|
-
title?: string | null | undefined;
|
|
6280
|
-
description?: string | null | undefined;
|
|
6281
|
-
backgroundColor?: {
|
|
6282
|
-
value: string;
|
|
6283
|
-
} | null | undefined;
|
|
6284
|
-
origin?: {
|
|
6285
|
-
sourceFileName?: string | null | undefined;
|
|
6286
|
-
title?: string | null | undefined;
|
|
6287
|
-
previewUrl?: string | null | undefined;
|
|
6288
|
-
valid?: boolean | null | undefined;
|
|
6289
|
-
referenceId?: string | null | undefined;
|
|
6290
|
-
assetId?: string | null | undefined;
|
|
6291
|
-
assetScale?: number | null | undefined;
|
|
6292
|
-
width?: number | null | undefined;
|
|
6293
|
-
height?: number | null | undefined;
|
|
6294
|
-
} | null | undefined;
|
|
6295
|
-
} | null | undefined;
|
|
6296
|
-
} | null | undefined;
|
|
6297
|
-
documentationItemId?: string | null | undefined;
|
|
6298
|
-
url?: string | null | undefined;
|
|
6299
|
-
urlPreview?: {
|
|
6300
|
-
title?: string | null | undefined;
|
|
6301
|
-
description?: string | null | undefined;
|
|
6302
|
-
thumbnailUrl?: string | null | undefined;
|
|
6303
|
-
} | null | undefined;
|
|
6304
|
-
documentationItemPreview?: {
|
|
6305
|
-
title?: string | null | undefined;
|
|
6306
|
-
valid?: boolean | null | undefined;
|
|
6307
|
-
} | null | undefined;
|
|
6308
|
-
}>;
|
|
6309
6737
|
declare const PageBlockCustomBlockPropertyImageValue: z.ZodObject<{
|
|
6310
6738
|
asset: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
6311
6739
|
type: "image" | "figmaFrame";
|
|
@@ -6469,16 +6897,6 @@ declare const PageBlockCustomBlockPropertyImageValue: z.ZodObject<{
|
|
|
6469
6897
|
assetId?: string | null | undefined;
|
|
6470
6898
|
assetUrl?: string | null | undefined;
|
|
6471
6899
|
}>;
|
|
6472
|
-
declare const PageBlockCustomBlockPropertyValue: z.ZodObject<{
|
|
6473
|
-
key: z.ZodString;
|
|
6474
|
-
value: z.ZodAny;
|
|
6475
|
-
}, "strip", z.ZodTypeAny, {
|
|
6476
|
-
key: string;
|
|
6477
|
-
value?: any;
|
|
6478
|
-
}, {
|
|
6479
|
-
key: string;
|
|
6480
|
-
value?: any;
|
|
6481
|
-
}>;
|
|
6482
6900
|
declare const PageBlockFigmaFrameProperties: z.ZodObject<{
|
|
6483
6901
|
color: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
6484
6902
|
value: string;
|
|
@@ -7099,6 +7517,238 @@ declare const PageBlockTheme: z.ZodObject<{
|
|
|
7099
7517
|
themeIds: string[];
|
|
7100
7518
|
}>;
|
|
7101
7519
|
type PageBlockTheme = z.infer<typeof PageBlockTheme>;
|
|
7520
|
+
declare const PageBlockShortcut: z.ZodObject<{
|
|
7521
|
+
persistentId: z.ZodString;
|
|
7522
|
+
title: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
7523
|
+
description: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
7524
|
+
asset: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
7525
|
+
type: "image" | "figmaFrame";
|
|
7526
|
+
id?: string | undefined;
|
|
7527
|
+
url?: string | undefined;
|
|
7528
|
+
figmaFrame?: {
|
|
7529
|
+
persistentId: string;
|
|
7530
|
+
sourceId: string;
|
|
7531
|
+
sourceFrameId: string;
|
|
7532
|
+
title?: string | undefined;
|
|
7533
|
+
description?: string | undefined;
|
|
7534
|
+
backgroundColor?: {
|
|
7535
|
+
value: string;
|
|
7536
|
+
} | undefined;
|
|
7537
|
+
origin?: {
|
|
7538
|
+
sourceFileName?: string | undefined;
|
|
7539
|
+
title?: string | undefined;
|
|
7540
|
+
previewUrl?: string | undefined;
|
|
7541
|
+
valid?: boolean | undefined;
|
|
7542
|
+
referenceId?: string | undefined;
|
|
7543
|
+
assetId?: string | undefined;
|
|
7544
|
+
assetScale?: number | undefined;
|
|
7545
|
+
width?: number | undefined;
|
|
7546
|
+
height?: number | undefined;
|
|
7547
|
+
} | undefined;
|
|
7548
|
+
} | undefined;
|
|
7549
|
+
}, z.ZodTypeDef, {
|
|
7550
|
+
type: "image" | "figmaFrame";
|
|
7551
|
+
id?: string | null | undefined;
|
|
7552
|
+
url?: string | null | undefined;
|
|
7553
|
+
figmaFrame?: {
|
|
7554
|
+
persistentId: string;
|
|
7555
|
+
sourceId: string;
|
|
7556
|
+
sourceFrameId: string;
|
|
7557
|
+
title?: string | null | undefined;
|
|
7558
|
+
description?: string | null | undefined;
|
|
7559
|
+
backgroundColor?: {
|
|
7560
|
+
value: string;
|
|
7561
|
+
} | null | undefined;
|
|
7562
|
+
origin?: {
|
|
7563
|
+
sourceFileName?: string | null | undefined;
|
|
7564
|
+
title?: string | null | undefined;
|
|
7565
|
+
previewUrl?: string | null | undefined;
|
|
7566
|
+
valid?: boolean | null | undefined;
|
|
7567
|
+
referenceId?: string | null | undefined;
|
|
7568
|
+
assetId?: string | null | undefined;
|
|
7569
|
+
assetScale?: number | null | undefined;
|
|
7570
|
+
width?: number | null | undefined;
|
|
7571
|
+
height?: number | null | undefined;
|
|
7572
|
+
} | null | undefined;
|
|
7573
|
+
} | null | undefined;
|
|
7574
|
+
}>>>, {
|
|
7575
|
+
type: "image" | "figmaFrame";
|
|
7576
|
+
id?: string | undefined;
|
|
7577
|
+
url?: string | undefined;
|
|
7578
|
+
figmaFrame?: {
|
|
7579
|
+
persistentId: string;
|
|
7580
|
+
sourceId: string;
|
|
7581
|
+
sourceFrameId: string;
|
|
7582
|
+
title?: string | undefined;
|
|
7583
|
+
description?: string | undefined;
|
|
7584
|
+
backgroundColor?: {
|
|
7585
|
+
value: string;
|
|
7586
|
+
} | undefined;
|
|
7587
|
+
origin?: {
|
|
7588
|
+
sourceFileName?: string | undefined;
|
|
7589
|
+
title?: string | undefined;
|
|
7590
|
+
previewUrl?: string | undefined;
|
|
7591
|
+
valid?: boolean | undefined;
|
|
7592
|
+
referenceId?: string | undefined;
|
|
7593
|
+
assetId?: string | undefined;
|
|
7594
|
+
assetScale?: number | undefined;
|
|
7595
|
+
width?: number | undefined;
|
|
7596
|
+
height?: number | undefined;
|
|
7597
|
+
} | undefined;
|
|
7598
|
+
} | undefined;
|
|
7599
|
+
} | undefined, {
|
|
7600
|
+
type: "image" | "figmaFrame";
|
|
7601
|
+
id?: string | null | undefined;
|
|
7602
|
+
url?: string | null | undefined;
|
|
7603
|
+
figmaFrame?: {
|
|
7604
|
+
persistentId: string;
|
|
7605
|
+
sourceId: string;
|
|
7606
|
+
sourceFrameId: string;
|
|
7607
|
+
title?: string | null | undefined;
|
|
7608
|
+
description?: string | null | undefined;
|
|
7609
|
+
backgroundColor?: {
|
|
7610
|
+
value: string;
|
|
7611
|
+
} | null | undefined;
|
|
7612
|
+
origin?: {
|
|
7613
|
+
sourceFileName?: string | null | undefined;
|
|
7614
|
+
title?: string | null | undefined;
|
|
7615
|
+
previewUrl?: string | null | undefined;
|
|
7616
|
+
valid?: boolean | null | undefined;
|
|
7617
|
+
referenceId?: string | null | undefined;
|
|
7618
|
+
assetId?: string | null | undefined;
|
|
7619
|
+
assetScale?: number | null | undefined;
|
|
7620
|
+
width?: number | null | undefined;
|
|
7621
|
+
height?: number | null | undefined;
|
|
7622
|
+
} | null | undefined;
|
|
7623
|
+
} | null | undefined;
|
|
7624
|
+
} | null | undefined>;
|
|
7625
|
+
documentationItemId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
7626
|
+
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
7627
|
+
urlPreview: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
7628
|
+
title?: string | undefined;
|
|
7629
|
+
description?: string | undefined;
|
|
7630
|
+
thumbnailUrl?: string | undefined;
|
|
7631
|
+
}, z.ZodTypeDef, {
|
|
7632
|
+
title?: string | null | undefined;
|
|
7633
|
+
description?: string | null | undefined;
|
|
7634
|
+
thumbnailUrl?: string | null | undefined;
|
|
7635
|
+
}>>>, {
|
|
7636
|
+
title?: string | undefined;
|
|
7637
|
+
description?: string | undefined;
|
|
7638
|
+
thumbnailUrl?: string | undefined;
|
|
7639
|
+
} | undefined, {
|
|
7640
|
+
title?: string | null | undefined;
|
|
7641
|
+
description?: string | null | undefined;
|
|
7642
|
+
thumbnailUrl?: string | null | undefined;
|
|
7643
|
+
} | null | undefined>;
|
|
7644
|
+
documentationItemPreview: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
7645
|
+
title?: string | undefined;
|
|
7646
|
+
valid?: boolean | undefined;
|
|
7647
|
+
}, z.ZodTypeDef, {
|
|
7648
|
+
title?: string | null | undefined;
|
|
7649
|
+
valid?: boolean | null | undefined;
|
|
7650
|
+
}>>>, {
|
|
7651
|
+
title?: string | undefined;
|
|
7652
|
+
valid?: boolean | undefined;
|
|
7653
|
+
} | undefined, {
|
|
7654
|
+
title?: string | null | undefined;
|
|
7655
|
+
valid?: boolean | null | undefined;
|
|
7656
|
+
} | null | undefined>;
|
|
7657
|
+
}, "strip", z.ZodTypeAny, {
|
|
7658
|
+
persistentId: string;
|
|
7659
|
+
title?: string | undefined;
|
|
7660
|
+
description?: string | undefined;
|
|
7661
|
+
asset?: {
|
|
7662
|
+
type: "image" | "figmaFrame";
|
|
7663
|
+
id?: string | undefined;
|
|
7664
|
+
url?: string | undefined;
|
|
7665
|
+
figmaFrame?: {
|
|
7666
|
+
persistentId: string;
|
|
7667
|
+
sourceId: string;
|
|
7668
|
+
sourceFrameId: string;
|
|
7669
|
+
title?: string | undefined;
|
|
7670
|
+
description?: string | undefined;
|
|
7671
|
+
backgroundColor?: {
|
|
7672
|
+
value: string;
|
|
7673
|
+
} | undefined;
|
|
7674
|
+
origin?: {
|
|
7675
|
+
sourceFileName?: string | undefined;
|
|
7676
|
+
title?: string | undefined;
|
|
7677
|
+
previewUrl?: string | undefined;
|
|
7678
|
+
valid?: boolean | undefined;
|
|
7679
|
+
referenceId?: string | undefined;
|
|
7680
|
+
assetId?: string | undefined;
|
|
7681
|
+
assetScale?: number | undefined;
|
|
7682
|
+
width?: number | undefined;
|
|
7683
|
+
height?: number | undefined;
|
|
7684
|
+
} | undefined;
|
|
7685
|
+
} | undefined;
|
|
7686
|
+
} | undefined;
|
|
7687
|
+
documentationItemId?: string | undefined;
|
|
7688
|
+
url?: string | undefined;
|
|
7689
|
+
urlPreview?: {
|
|
7690
|
+
title?: string | undefined;
|
|
7691
|
+
description?: string | undefined;
|
|
7692
|
+
thumbnailUrl?: string | undefined;
|
|
7693
|
+
} | undefined;
|
|
7694
|
+
documentationItemPreview?: {
|
|
7695
|
+
title?: string | undefined;
|
|
7696
|
+
valid?: boolean | undefined;
|
|
7697
|
+
} | undefined;
|
|
7698
|
+
}, {
|
|
7699
|
+
persistentId: string;
|
|
7700
|
+
title?: string | null | undefined;
|
|
7701
|
+
description?: string | null | undefined;
|
|
7702
|
+
asset?: {
|
|
7703
|
+
type: "image" | "figmaFrame";
|
|
7704
|
+
id?: string | null | undefined;
|
|
7705
|
+
url?: string | null | undefined;
|
|
7706
|
+
figmaFrame?: {
|
|
7707
|
+
persistentId: string;
|
|
7708
|
+
sourceId: string;
|
|
7709
|
+
sourceFrameId: string;
|
|
7710
|
+
title?: string | null | undefined;
|
|
7711
|
+
description?: string | null | undefined;
|
|
7712
|
+
backgroundColor?: {
|
|
7713
|
+
value: string;
|
|
7714
|
+
} | null | undefined;
|
|
7715
|
+
origin?: {
|
|
7716
|
+
sourceFileName?: string | null | undefined;
|
|
7717
|
+
title?: string | null | undefined;
|
|
7718
|
+
previewUrl?: string | null | undefined;
|
|
7719
|
+
valid?: boolean | null | undefined;
|
|
7720
|
+
referenceId?: string | null | undefined;
|
|
7721
|
+
assetId?: string | null | undefined;
|
|
7722
|
+
assetScale?: number | null | undefined;
|
|
7723
|
+
width?: number | null | undefined;
|
|
7724
|
+
height?: number | null | undefined;
|
|
7725
|
+
} | null | undefined;
|
|
7726
|
+
} | null | undefined;
|
|
7727
|
+
} | null | undefined;
|
|
7728
|
+
documentationItemId?: string | null | undefined;
|
|
7729
|
+
url?: string | null | undefined;
|
|
7730
|
+
urlPreview?: {
|
|
7731
|
+
title?: string | null | undefined;
|
|
7732
|
+
description?: string | null | undefined;
|
|
7733
|
+
thumbnailUrl?: string | null | undefined;
|
|
7734
|
+
} | null | undefined;
|
|
7735
|
+
documentationItemPreview?: {
|
|
7736
|
+
title?: string | null | undefined;
|
|
7737
|
+
valid?: boolean | null | undefined;
|
|
7738
|
+
} | null | undefined;
|
|
7739
|
+
}>;
|
|
7740
|
+
type PageBlockShortcut = z.infer<typeof PageBlockShortcut>;
|
|
7741
|
+
declare const PageBlockCustomBlockPropertyValue: z.ZodObject<{
|
|
7742
|
+
key: z.ZodString;
|
|
7743
|
+
value: z.ZodAny;
|
|
7744
|
+
}, "strip", z.ZodTypeAny, {
|
|
7745
|
+
key: string;
|
|
7746
|
+
value?: any;
|
|
7747
|
+
}, {
|
|
7748
|
+
key: string;
|
|
7749
|
+
value?: any;
|
|
7750
|
+
}>;
|
|
7751
|
+
type PageBlockCustomBlockPropertyValue = z.infer<typeof PageBlockCustomBlockPropertyValue>;
|
|
7102
7752
|
declare const PageBlockBaseV1: z.ZodObject<{
|
|
7103
7753
|
persistentId: z.ZodString;
|
|
7104
7754
|
type: z.ZodEnum<["Text", "Heading", "Code", "UnorderedList", "OrderedList", "Quote", "Callout", "Divider", "Image", "Embed", "Link", "Shortcuts", "FigmaEmbed", "YoutubeEmbed", "StorybookEmbed", "Token", "TokenGroup", "TokenList", "Component", "ComponentGroup", "Theme", "ComponentSandbox", "Custom", "FigmaFrames", "ComponentAssets", "RenderCode", "Tabs", "TabItem", "Table", "TableRow", "TableCell"]>;
|
|
@@ -8080,7 +8730,7 @@ declare function traversePageBlocksV1(blocks: PageBlockV1[], action: (block: Pag
|
|
|
8080
8730
|
|
|
8081
8731
|
declare const PageBlockLinkType: z.ZodEnum<["DocumentationItem", "PageHeading", "Url"]>;
|
|
8082
8732
|
type PageBlockLinkType = z.infer<typeof PageBlockLinkType>;
|
|
8083
|
-
declare const PageBlockImageType: z.ZodEnum<["Upload", "Asset", "
|
|
8733
|
+
declare const PageBlockImageType: z.ZodEnum<["Upload", "Asset", "FigmaNode"]>;
|
|
8084
8734
|
type PageBlockImageType = z.infer<typeof PageBlockImageType>;
|
|
8085
8735
|
declare const PageBlockImageAlignment: z.ZodEnum<["Left", "Center", "Stretch"]>;
|
|
8086
8736
|
type PageBlockImageAlignment = z.infer<typeof PageBlockImageAlignment>;
|
|
@@ -8497,7 +9147,7 @@ declare const PageBlockDataV2: z.ZodObject<{
|
|
|
8497
9147
|
}>;
|
|
8498
9148
|
type PageBlockDataV2 = z.infer<typeof PageBlockDataV2>;
|
|
8499
9149
|
declare const PageBlockItemImageReference: z.ZodObject<{
|
|
8500
|
-
type: z.ZodEnum<["Upload", "Asset", "
|
|
9150
|
+
type: z.ZodEnum<["Upload", "Asset", "FigmaNode"]>;
|
|
8501
9151
|
url: z.ZodString;
|
|
8502
9152
|
assetId: z.ZodOptional<z.ZodString>;
|
|
8503
9153
|
size: z.ZodOptional<z.ZodObject<{
|
|
@@ -8542,7 +9192,7 @@ declare const PageBlockItemImageReference: z.ZodObject<{
|
|
|
8542
9192
|
frameReferenceId: string;
|
|
8543
9193
|
}>>;
|
|
8544
9194
|
}, "strip", z.ZodTypeAny, {
|
|
8545
|
-
type: "Upload" | "Asset" | "
|
|
9195
|
+
type: "Upload" | "Asset" | "FigmaNode";
|
|
8546
9196
|
url: string;
|
|
8547
9197
|
assetId?: string | undefined;
|
|
8548
9198
|
size?: {
|
|
@@ -8559,7 +9209,7 @@ declare const PageBlockItemImageReference: z.ZodObject<{
|
|
|
8559
9209
|
frameReferenceId: string;
|
|
8560
9210
|
} | undefined;
|
|
8561
9211
|
}, {
|
|
8562
|
-
type: "Upload" | "Asset" | "
|
|
9212
|
+
type: "Upload" | "Asset" | "FigmaNode";
|
|
8563
9213
|
url: string;
|
|
8564
9214
|
assetId?: string | undefined;
|
|
8565
9215
|
size?: {
|
|
@@ -8740,12 +9390,68 @@ declare const PageBlockItemEmbedValue: z.ZodObject<{
|
|
|
8740
9390
|
height?: number | undefined;
|
|
8741
9391
|
}>;
|
|
8742
9392
|
type PageBlockItemEmbedValue = z.infer<typeof PageBlockItemEmbedValue>;
|
|
9393
|
+
declare const PageBlockItemFigmaNodeValue: z.ZodObject<{
|
|
9394
|
+
selectedPropertyIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
9395
|
+
showSearch: z.ZodOptional<z.ZodBoolean>;
|
|
9396
|
+
previewContainerSize: z.ZodOptional<z.ZodEnum<["Centered", "NaturalHeight"]>>;
|
|
9397
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
9398
|
+
value: z.ZodArray<z.ZodObject<{
|
|
9399
|
+
entityId: z.ZodString;
|
|
9400
|
+
entityMeta: z.ZodOptional<z.ZodObject<{
|
|
9401
|
+
title: z.ZodOptional<z.ZodString>;
|
|
9402
|
+
description: z.ZodOptional<z.ZodString>;
|
|
9403
|
+
}, "strip", z.ZodTypeAny, {
|
|
9404
|
+
title?: string | undefined;
|
|
9405
|
+
description?: string | undefined;
|
|
9406
|
+
}, {
|
|
9407
|
+
title?: string | undefined;
|
|
9408
|
+
description?: string | undefined;
|
|
9409
|
+
}>>;
|
|
9410
|
+
}, "strip", z.ZodTypeAny, {
|
|
9411
|
+
entityId: string;
|
|
9412
|
+
entityMeta?: {
|
|
9413
|
+
title?: string | undefined;
|
|
9414
|
+
description?: string | undefined;
|
|
9415
|
+
} | undefined;
|
|
9416
|
+
}, {
|
|
9417
|
+
entityId: string;
|
|
9418
|
+
entityMeta?: {
|
|
9419
|
+
title?: string | undefined;
|
|
9420
|
+
description?: string | undefined;
|
|
9421
|
+
} | undefined;
|
|
9422
|
+
}>, "many">;
|
|
9423
|
+
}, "strip", z.ZodTypeAny, {
|
|
9424
|
+
value: {
|
|
9425
|
+
entityId: string;
|
|
9426
|
+
entityMeta?: {
|
|
9427
|
+
title?: string | undefined;
|
|
9428
|
+
description?: string | undefined;
|
|
9429
|
+
} | undefined;
|
|
9430
|
+
}[];
|
|
9431
|
+
selectedPropertyIds?: string[] | undefined;
|
|
9432
|
+
showSearch?: boolean | undefined;
|
|
9433
|
+
previewContainerSize?: "Centered" | "NaturalHeight" | undefined;
|
|
9434
|
+
backgroundColor?: string | undefined;
|
|
9435
|
+
}, {
|
|
9436
|
+
value: {
|
|
9437
|
+
entityId: string;
|
|
9438
|
+
entityMeta?: {
|
|
9439
|
+
title?: string | undefined;
|
|
9440
|
+
description?: string | undefined;
|
|
9441
|
+
} | undefined;
|
|
9442
|
+
}[];
|
|
9443
|
+
selectedPropertyIds?: string[] | undefined;
|
|
9444
|
+
showSearch?: boolean | undefined;
|
|
9445
|
+
previewContainerSize?: "Centered" | "NaturalHeight" | undefined;
|
|
9446
|
+
backgroundColor?: string | undefined;
|
|
9447
|
+
}>;
|
|
9448
|
+
type PageBlockItemFigmaNodeValue = z.infer<typeof PageBlockItemFigmaNodeValue>;
|
|
8743
9449
|
declare const PageBlockItemImageValue: z.ZodObject<{
|
|
8744
9450
|
alt: z.ZodOptional<z.ZodString>;
|
|
8745
9451
|
caption: z.ZodOptional<z.ZodString>;
|
|
8746
9452
|
alignment: z.ZodOptional<z.ZodEnum<["Left", "Center", "Stretch"]>>;
|
|
8747
9453
|
value: z.ZodOptional<z.ZodObject<{
|
|
8748
|
-
type: z.ZodEnum<["Upload", "Asset", "
|
|
9454
|
+
type: z.ZodEnum<["Upload", "Asset", "FigmaNode"]>;
|
|
8749
9455
|
url: z.ZodString;
|
|
8750
9456
|
assetId: z.ZodOptional<z.ZodString>;
|
|
8751
9457
|
size: z.ZodOptional<z.ZodObject<{
|
|
@@ -8790,7 +9496,7 @@ declare const PageBlockItemImageValue: z.ZodObject<{
|
|
|
8790
9496
|
frameReferenceId: string;
|
|
8791
9497
|
}>>;
|
|
8792
9498
|
}, "strip", z.ZodTypeAny, {
|
|
8793
|
-
type: "Upload" | "Asset" | "
|
|
9499
|
+
type: "Upload" | "Asset" | "FigmaNode";
|
|
8794
9500
|
url: string;
|
|
8795
9501
|
assetId?: string | undefined;
|
|
8796
9502
|
size?: {
|
|
@@ -8807,7 +9513,7 @@ declare const PageBlockItemImageValue: z.ZodObject<{
|
|
|
8807
9513
|
frameReferenceId: string;
|
|
8808
9514
|
} | undefined;
|
|
8809
9515
|
}, {
|
|
8810
|
-
type: "Upload" | "Asset" | "
|
|
9516
|
+
type: "Upload" | "Asset" | "FigmaNode";
|
|
8811
9517
|
url: string;
|
|
8812
9518
|
assetId?: string | undefined;
|
|
8813
9519
|
size?: {
|
|
@@ -8829,7 +9535,7 @@ declare const PageBlockItemImageValue: z.ZodObject<{
|
|
|
8829
9535
|
caption?: string | undefined;
|
|
8830
9536
|
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
8831
9537
|
value?: {
|
|
8832
|
-
type: "Upload" | "Asset" | "
|
|
9538
|
+
type: "Upload" | "Asset" | "FigmaNode";
|
|
8833
9539
|
url: string;
|
|
8834
9540
|
assetId?: string | undefined;
|
|
8835
9541
|
size?: {
|
|
@@ -8851,7 +9557,7 @@ declare const PageBlockItemImageValue: z.ZodObject<{
|
|
|
8851
9557
|
caption?: string | undefined;
|
|
8852
9558
|
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
8853
9559
|
value?: {
|
|
8854
|
-
type: "Upload" | "Asset" | "
|
|
9560
|
+
type: "Upload" | "Asset" | "FigmaNode";
|
|
8855
9561
|
url: string;
|
|
8856
9562
|
assetId?: string | undefined;
|
|
8857
9563
|
size?: {
|
|
@@ -9357,7 +10063,7 @@ declare const PageBlockItemTableImageNode: z.ZodObject<{
|
|
|
9357
10063
|
type: z.ZodLiteral<"Image">;
|
|
9358
10064
|
caption: z.ZodOptional<z.ZodString>;
|
|
9359
10065
|
value: z.ZodOptional<z.ZodObject<{
|
|
9360
|
-
type: z.ZodEnum<["Upload", "Asset", "
|
|
10066
|
+
type: z.ZodEnum<["Upload", "Asset", "FigmaNode"]>;
|
|
9361
10067
|
url: z.ZodString;
|
|
9362
10068
|
assetId: z.ZodOptional<z.ZodString>;
|
|
9363
10069
|
size: z.ZodOptional<z.ZodObject<{
|
|
@@ -9402,7 +10108,7 @@ declare const PageBlockItemTableImageNode: z.ZodObject<{
|
|
|
9402
10108
|
frameReferenceId: string;
|
|
9403
10109
|
}>>;
|
|
9404
10110
|
}, "strip", z.ZodTypeAny, {
|
|
9405
|
-
type: "Upload" | "Asset" | "
|
|
10111
|
+
type: "Upload" | "Asset" | "FigmaNode";
|
|
9406
10112
|
url: string;
|
|
9407
10113
|
assetId?: string | undefined;
|
|
9408
10114
|
size?: {
|
|
@@ -9419,7 +10125,7 @@ declare const PageBlockItemTableImageNode: z.ZodObject<{
|
|
|
9419
10125
|
frameReferenceId: string;
|
|
9420
10126
|
} | undefined;
|
|
9421
10127
|
}, {
|
|
9422
|
-
type: "Upload" | "Asset" | "
|
|
10128
|
+
type: "Upload" | "Asset" | "FigmaNode";
|
|
9423
10129
|
url: string;
|
|
9424
10130
|
assetId?: string | undefined;
|
|
9425
10131
|
size?: {
|
|
@@ -9440,7 +10146,7 @@ declare const PageBlockItemTableImageNode: z.ZodObject<{
|
|
|
9440
10146
|
type: "Image";
|
|
9441
10147
|
caption?: string | undefined;
|
|
9442
10148
|
value?: {
|
|
9443
|
-
type: "Upload" | "Asset" | "
|
|
10149
|
+
type: "Upload" | "Asset" | "FigmaNode";
|
|
9444
10150
|
url: string;
|
|
9445
10151
|
assetId?: string | undefined;
|
|
9446
10152
|
size?: {
|
|
@@ -9461,7 +10167,7 @@ declare const PageBlockItemTableImageNode: z.ZodObject<{
|
|
|
9461
10167
|
type: "Image";
|
|
9462
10168
|
caption?: string | undefined;
|
|
9463
10169
|
value?: {
|
|
9464
|
-
type: "Upload" | "Asset" | "
|
|
10170
|
+
type: "Upload" | "Asset" | "FigmaNode";
|
|
9465
10171
|
url: string;
|
|
9466
10172
|
assetId?: string | undefined;
|
|
9467
10173
|
size?: {
|
|
@@ -9569,7 +10275,7 @@ declare const PageBlockItemTableNode: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
9569
10275
|
type: z.ZodLiteral<"Image">;
|
|
9570
10276
|
caption: z.ZodOptional<z.ZodString>;
|
|
9571
10277
|
value: z.ZodOptional<z.ZodObject<{
|
|
9572
|
-
type: z.ZodEnum<["Upload", "Asset", "
|
|
10278
|
+
type: z.ZodEnum<["Upload", "Asset", "FigmaNode"]>;
|
|
9573
10279
|
url: z.ZodString;
|
|
9574
10280
|
assetId: z.ZodOptional<z.ZodString>;
|
|
9575
10281
|
size: z.ZodOptional<z.ZodObject<{
|
|
@@ -9614,7 +10320,7 @@ declare const PageBlockItemTableNode: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
9614
10320
|
frameReferenceId: string;
|
|
9615
10321
|
}>>;
|
|
9616
10322
|
}, "strip", z.ZodTypeAny, {
|
|
9617
|
-
type: "Upload" | "Asset" | "
|
|
10323
|
+
type: "Upload" | "Asset" | "FigmaNode";
|
|
9618
10324
|
url: string;
|
|
9619
10325
|
assetId?: string | undefined;
|
|
9620
10326
|
size?: {
|
|
@@ -9631,7 +10337,7 @@ declare const PageBlockItemTableNode: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
9631
10337
|
frameReferenceId: string;
|
|
9632
10338
|
} | undefined;
|
|
9633
10339
|
}, {
|
|
9634
|
-
type: "Upload" | "Asset" | "
|
|
10340
|
+
type: "Upload" | "Asset" | "FigmaNode";
|
|
9635
10341
|
url: string;
|
|
9636
10342
|
assetId?: string | undefined;
|
|
9637
10343
|
size?: {
|
|
@@ -9652,7 +10358,7 @@ declare const PageBlockItemTableNode: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
9652
10358
|
type: "Image";
|
|
9653
10359
|
caption?: string | undefined;
|
|
9654
10360
|
value?: {
|
|
9655
|
-
type: "Upload" | "Asset" | "
|
|
10361
|
+
type: "Upload" | "Asset" | "FigmaNode";
|
|
9656
10362
|
url: string;
|
|
9657
10363
|
assetId?: string | undefined;
|
|
9658
10364
|
size?: {
|
|
@@ -9673,7 +10379,7 @@ declare const PageBlockItemTableNode: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
9673
10379
|
type: "Image";
|
|
9674
10380
|
caption?: string | undefined;
|
|
9675
10381
|
value?: {
|
|
9676
|
-
type: "Upload" | "Asset" | "
|
|
10382
|
+
type: "Upload" | "Asset" | "FigmaNode";
|
|
9677
10383
|
url: string;
|
|
9678
10384
|
assetId?: string | undefined;
|
|
9679
10385
|
size?: {
|
|
@@ -9783,7 +10489,7 @@ declare const PageBlockItemTableCell: z.ZodObject<{
|
|
|
9783
10489
|
type: z.ZodLiteral<"Image">;
|
|
9784
10490
|
caption: z.ZodOptional<z.ZodString>;
|
|
9785
10491
|
value: z.ZodOptional<z.ZodObject<{
|
|
9786
|
-
type: z.ZodEnum<["Upload", "Asset", "
|
|
10492
|
+
type: z.ZodEnum<["Upload", "Asset", "FigmaNode"]>;
|
|
9787
10493
|
url: z.ZodString;
|
|
9788
10494
|
assetId: z.ZodOptional<z.ZodString>;
|
|
9789
10495
|
size: z.ZodOptional<z.ZodObject<{
|
|
@@ -9828,7 +10534,7 @@ declare const PageBlockItemTableCell: z.ZodObject<{
|
|
|
9828
10534
|
frameReferenceId: string;
|
|
9829
10535
|
}>>;
|
|
9830
10536
|
}, "strip", z.ZodTypeAny, {
|
|
9831
|
-
type: "Upload" | "Asset" | "
|
|
10537
|
+
type: "Upload" | "Asset" | "FigmaNode";
|
|
9832
10538
|
url: string;
|
|
9833
10539
|
assetId?: string | undefined;
|
|
9834
10540
|
size?: {
|
|
@@ -9845,7 +10551,7 @@ declare const PageBlockItemTableCell: z.ZodObject<{
|
|
|
9845
10551
|
frameReferenceId: string;
|
|
9846
10552
|
} | undefined;
|
|
9847
10553
|
}, {
|
|
9848
|
-
type: "Upload" | "Asset" | "
|
|
10554
|
+
type: "Upload" | "Asset" | "FigmaNode";
|
|
9849
10555
|
url: string;
|
|
9850
10556
|
assetId?: string | undefined;
|
|
9851
10557
|
size?: {
|
|
@@ -9866,7 +10572,7 @@ declare const PageBlockItemTableCell: z.ZodObject<{
|
|
|
9866
10572
|
type: "Image";
|
|
9867
10573
|
caption?: string | undefined;
|
|
9868
10574
|
value?: {
|
|
9869
|
-
type: "Upload" | "Asset" | "
|
|
10575
|
+
type: "Upload" | "Asset" | "FigmaNode";
|
|
9870
10576
|
url: string;
|
|
9871
10577
|
assetId?: string | undefined;
|
|
9872
10578
|
size?: {
|
|
@@ -9887,7 +10593,7 @@ declare const PageBlockItemTableCell: z.ZodObject<{
|
|
|
9887
10593
|
type: "Image";
|
|
9888
10594
|
caption?: string | undefined;
|
|
9889
10595
|
value?: {
|
|
9890
|
-
type: "Upload" | "Asset" | "
|
|
10596
|
+
type: "Upload" | "Asset" | "FigmaNode";
|
|
9891
10597
|
url: string;
|
|
9892
10598
|
assetId?: string | undefined;
|
|
9893
10599
|
size?: {
|
|
@@ -9927,7 +10633,7 @@ declare const PageBlockItemTableCell: z.ZodObject<{
|
|
|
9927
10633
|
type: "Image";
|
|
9928
10634
|
caption?: string | undefined;
|
|
9929
10635
|
value?: {
|
|
9930
|
-
type: "Upload" | "Asset" | "
|
|
10636
|
+
type: "Upload" | "Asset" | "FigmaNode";
|
|
9931
10637
|
url: string;
|
|
9932
10638
|
assetId?: string | undefined;
|
|
9933
10639
|
size?: {
|
|
@@ -9966,7 +10672,7 @@ declare const PageBlockItemTableCell: z.ZodObject<{
|
|
|
9966
10672
|
type: "Image";
|
|
9967
10673
|
caption?: string | undefined;
|
|
9968
10674
|
value?: {
|
|
9969
|
-
type: "Upload" | "Asset" | "
|
|
10675
|
+
type: "Upload" | "Asset" | "FigmaNode";
|
|
9970
10676
|
url: string;
|
|
9971
10677
|
assetId?: string | undefined;
|
|
9972
10678
|
size?: {
|
|
@@ -10079,7 +10785,7 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
10079
10785
|
type: z.ZodLiteral<"Image">;
|
|
10080
10786
|
caption: z.ZodOptional<z.ZodString>;
|
|
10081
10787
|
value: z.ZodOptional<z.ZodObject<{
|
|
10082
|
-
type: z.ZodEnum<["Upload", "Asset", "
|
|
10788
|
+
type: z.ZodEnum<["Upload", "Asset", "FigmaNode"]>;
|
|
10083
10789
|
url: z.ZodString;
|
|
10084
10790
|
assetId: z.ZodOptional<z.ZodString>;
|
|
10085
10791
|
size: z.ZodOptional<z.ZodObject<{
|
|
@@ -10124,7 +10830,7 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
10124
10830
|
frameReferenceId: string;
|
|
10125
10831
|
}>>;
|
|
10126
10832
|
}, "strip", z.ZodTypeAny, {
|
|
10127
|
-
type: "Upload" | "Asset" | "
|
|
10833
|
+
type: "Upload" | "Asset" | "FigmaNode";
|
|
10128
10834
|
url: string;
|
|
10129
10835
|
assetId?: string | undefined;
|
|
10130
10836
|
size?: {
|
|
@@ -10141,7 +10847,7 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
10141
10847
|
frameReferenceId: string;
|
|
10142
10848
|
} | undefined;
|
|
10143
10849
|
}, {
|
|
10144
|
-
type: "Upload" | "Asset" | "
|
|
10850
|
+
type: "Upload" | "Asset" | "FigmaNode";
|
|
10145
10851
|
url: string;
|
|
10146
10852
|
assetId?: string | undefined;
|
|
10147
10853
|
size?: {
|
|
@@ -10162,7 +10868,7 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
10162
10868
|
type: "Image";
|
|
10163
10869
|
caption?: string | undefined;
|
|
10164
10870
|
value?: {
|
|
10165
|
-
type: "Upload" | "Asset" | "
|
|
10871
|
+
type: "Upload" | "Asset" | "FigmaNode";
|
|
10166
10872
|
url: string;
|
|
10167
10873
|
assetId?: string | undefined;
|
|
10168
10874
|
size?: {
|
|
@@ -10183,7 +10889,7 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
10183
10889
|
type: "Image";
|
|
10184
10890
|
caption?: string | undefined;
|
|
10185
10891
|
value?: {
|
|
10186
|
-
type: "Upload" | "Asset" | "
|
|
10892
|
+
type: "Upload" | "Asset" | "FigmaNode";
|
|
10187
10893
|
url: string;
|
|
10188
10894
|
assetId?: string | undefined;
|
|
10189
10895
|
size?: {
|
|
@@ -10223,7 +10929,7 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
10223
10929
|
type: "Image";
|
|
10224
10930
|
caption?: string | undefined;
|
|
10225
10931
|
value?: {
|
|
10226
|
-
type: "Upload" | "Asset" | "
|
|
10932
|
+
type: "Upload" | "Asset" | "FigmaNode";
|
|
10227
10933
|
url: string;
|
|
10228
10934
|
assetId?: string | undefined;
|
|
10229
10935
|
size?: {
|
|
@@ -10262,7 +10968,7 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
10262
10968
|
type: "Image";
|
|
10263
10969
|
caption?: string | undefined;
|
|
10264
10970
|
value?: {
|
|
10265
|
-
type: "Upload" | "Asset" | "
|
|
10971
|
+
type: "Upload" | "Asset" | "FigmaNode";
|
|
10266
10972
|
url: string;
|
|
10267
10973
|
assetId?: string | undefined;
|
|
10268
10974
|
size?: {
|
|
@@ -10303,7 +11009,7 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
10303
11009
|
type: "Image";
|
|
10304
11010
|
caption?: string | undefined;
|
|
10305
11011
|
value?: {
|
|
10306
|
-
type: "Upload" | "Asset" | "
|
|
11012
|
+
type: "Upload" | "Asset" | "FigmaNode";
|
|
10307
11013
|
url: string;
|
|
10308
11014
|
assetId?: string | undefined;
|
|
10309
11015
|
size?: {
|
|
@@ -10344,7 +11050,7 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
10344
11050
|
type: "Image";
|
|
10345
11051
|
caption?: string | undefined;
|
|
10346
11052
|
value?: {
|
|
10347
|
-
type: "Upload" | "Asset" | "
|
|
11053
|
+
type: "Upload" | "Asset" | "FigmaNode";
|
|
10348
11054
|
url: string;
|
|
10349
11055
|
assetId?: string | undefined;
|
|
10350
11056
|
size?: {
|
|
@@ -10462,7 +11168,7 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
10462
11168
|
type: z.ZodLiteral<"Image">;
|
|
10463
11169
|
caption: z.ZodOptional<z.ZodString>;
|
|
10464
11170
|
value: z.ZodOptional<z.ZodObject<{
|
|
10465
|
-
type: z.ZodEnum<["Upload", "Asset", "
|
|
11171
|
+
type: z.ZodEnum<["Upload", "Asset", "FigmaNode"]>;
|
|
10466
11172
|
url: z.ZodString;
|
|
10467
11173
|
assetId: z.ZodOptional<z.ZodString>;
|
|
10468
11174
|
size: z.ZodOptional<z.ZodObject<{
|
|
@@ -10507,7 +11213,7 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
10507
11213
|
frameReferenceId: string;
|
|
10508
11214
|
}>>;
|
|
10509
11215
|
}, "strip", z.ZodTypeAny, {
|
|
10510
|
-
type: "Upload" | "Asset" | "
|
|
11216
|
+
type: "Upload" | "Asset" | "FigmaNode";
|
|
10511
11217
|
url: string;
|
|
10512
11218
|
assetId?: string | undefined;
|
|
10513
11219
|
size?: {
|
|
@@ -10524,7 +11230,7 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
10524
11230
|
frameReferenceId: string;
|
|
10525
11231
|
} | undefined;
|
|
10526
11232
|
}, {
|
|
10527
|
-
type: "Upload" | "Asset" | "
|
|
11233
|
+
type: "Upload" | "Asset" | "FigmaNode";
|
|
10528
11234
|
url: string;
|
|
10529
11235
|
assetId?: string | undefined;
|
|
10530
11236
|
size?: {
|
|
@@ -10545,7 +11251,7 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
10545
11251
|
type: "Image";
|
|
10546
11252
|
caption?: string | undefined;
|
|
10547
11253
|
value?: {
|
|
10548
|
-
type: "Upload" | "Asset" | "
|
|
11254
|
+
type: "Upload" | "Asset" | "FigmaNode";
|
|
10549
11255
|
url: string;
|
|
10550
11256
|
assetId?: string | undefined;
|
|
10551
11257
|
size?: {
|
|
@@ -10566,7 +11272,7 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
10566
11272
|
type: "Image";
|
|
10567
11273
|
caption?: string | undefined;
|
|
10568
11274
|
value?: {
|
|
10569
|
-
type: "Upload" | "Asset" | "
|
|
11275
|
+
type: "Upload" | "Asset" | "FigmaNode";
|
|
10570
11276
|
url: string;
|
|
10571
11277
|
assetId?: string | undefined;
|
|
10572
11278
|
size?: {
|
|
@@ -10606,7 +11312,7 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
10606
11312
|
type: "Image";
|
|
10607
11313
|
caption?: string | undefined;
|
|
10608
11314
|
value?: {
|
|
10609
|
-
type: "Upload" | "Asset" | "
|
|
11315
|
+
type: "Upload" | "Asset" | "FigmaNode";
|
|
10610
11316
|
url: string;
|
|
10611
11317
|
assetId?: string | undefined;
|
|
10612
11318
|
size?: {
|
|
@@ -10645,7 +11351,7 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
10645
11351
|
type: "Image";
|
|
10646
11352
|
caption?: string | undefined;
|
|
10647
11353
|
value?: {
|
|
10648
|
-
type: "Upload" | "Asset" | "
|
|
11354
|
+
type: "Upload" | "Asset" | "FigmaNode";
|
|
10649
11355
|
url: string;
|
|
10650
11356
|
assetId?: string | undefined;
|
|
10651
11357
|
size?: {
|
|
@@ -10686,7 +11392,7 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
10686
11392
|
type: "Image";
|
|
10687
11393
|
caption?: string | undefined;
|
|
10688
11394
|
value?: {
|
|
10689
|
-
type: "Upload" | "Asset" | "
|
|
11395
|
+
type: "Upload" | "Asset" | "FigmaNode";
|
|
10690
11396
|
url: string;
|
|
10691
11397
|
assetId?: string | undefined;
|
|
10692
11398
|
size?: {
|
|
@@ -10727,7 +11433,7 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
10727
11433
|
type: "Image";
|
|
10728
11434
|
caption?: string | undefined;
|
|
10729
11435
|
value?: {
|
|
10730
|
-
type: "Upload" | "Asset" | "
|
|
11436
|
+
type: "Upload" | "Asset" | "FigmaNode";
|
|
10731
11437
|
url: string;
|
|
10732
11438
|
assetId?: string | undefined;
|
|
10733
11439
|
size?: {
|
|
@@ -10770,7 +11476,7 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
10770
11476
|
type: "Image";
|
|
10771
11477
|
caption?: string | undefined;
|
|
10772
11478
|
value?: {
|
|
10773
|
-
type: "Upload" | "Asset" | "
|
|
11479
|
+
type: "Upload" | "Asset" | "FigmaNode";
|
|
10774
11480
|
url: string;
|
|
10775
11481
|
assetId?: string | undefined;
|
|
10776
11482
|
size?: {
|
|
@@ -10816,7 +11522,7 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
10816
11522
|
type: "Image";
|
|
10817
11523
|
caption?: string | undefined;
|
|
10818
11524
|
value?: {
|
|
10819
|
-
type: "Upload" | "Asset" | "
|
|
11525
|
+
type: "Upload" | "Asset" | "FigmaNode";
|
|
10820
11526
|
url: string;
|
|
10821
11527
|
assetId?: string | undefined;
|
|
10822
11528
|
size?: {
|
|
@@ -91567,13 +92273,13 @@ type Brand = {
|
|
|
91567
92273
|
|
|
91568
92274
|
declare const DesignSystemSwitcher: z.ZodObject<{
|
|
91569
92275
|
isEnabled: z.ZodBoolean;
|
|
91570
|
-
designSystemIds: z.ZodString
|
|
92276
|
+
designSystemIds: z.ZodArray<z.ZodString, "many">;
|
|
91571
92277
|
}, "strip", z.ZodTypeAny, {
|
|
91572
92278
|
isEnabled: boolean;
|
|
91573
|
-
designSystemIds: string;
|
|
92279
|
+
designSystemIds: string[];
|
|
91574
92280
|
}, {
|
|
91575
92281
|
isEnabled: boolean;
|
|
91576
|
-
designSystemIds: string;
|
|
92282
|
+
designSystemIds: string[];
|
|
91577
92283
|
}>;
|
|
91578
92284
|
type DesignSystemSwitcher = z.infer<typeof DesignSystemSwitcher>;
|
|
91579
92285
|
declare const DesignSystem: z.ZodObject<{
|
|
@@ -91581,24 +92287,27 @@ declare const DesignSystem: z.ZodObject<{
|
|
|
91581
92287
|
workspaceId: z.ZodString;
|
|
91582
92288
|
name: z.ZodString;
|
|
91583
92289
|
description: z.ZodString;
|
|
91584
|
-
docExporterId: z.ZodOptional<z.ZodNullable<z.
|
|
92290
|
+
docExporterId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
91585
92291
|
docSlug: z.ZodString;
|
|
91586
|
-
docUserSlug: z.ZodOptional<z.ZodNullable<z.
|
|
92292
|
+
docUserSlug: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
91587
92293
|
docSlugDeprecated: z.ZodString;
|
|
91588
92294
|
isPublic: z.ZodBoolean;
|
|
91589
92295
|
isMultibrand: z.ZodBoolean;
|
|
91590
|
-
docViewUrl: z.ZodOptional<z.ZodNullable<z.
|
|
92296
|
+
docViewUrl: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
91591
92297
|
basePrefixes: z.ZodArray<z.ZodString, "many">;
|
|
91592
|
-
designSystemSwitcher: z.ZodOptional<z.ZodNullable<z.
|
|
91593
|
-
isEnabled: z.ZodBoolean;
|
|
91594
|
-
designSystemIds: z.ZodString;
|
|
91595
|
-
}, "strip", z.ZodTypeAny, {
|
|
92298
|
+
designSystemSwitcher: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
91596
92299
|
isEnabled: boolean;
|
|
91597
|
-
designSystemIds: string;
|
|
91598
|
-
}, {
|
|
92300
|
+
designSystemIds: string[];
|
|
92301
|
+
}, z.ZodTypeDef, {
|
|
91599
92302
|
isEnabled: boolean;
|
|
91600
|
-
designSystemIds: string;
|
|
91601
|
-
}
|
|
92303
|
+
designSystemIds: string[];
|
|
92304
|
+
}>>>, {
|
|
92305
|
+
isEnabled: boolean;
|
|
92306
|
+
designSystemIds: string[];
|
|
92307
|
+
} | undefined, {
|
|
92308
|
+
isEnabled: boolean;
|
|
92309
|
+
designSystemIds: string[];
|
|
92310
|
+
} | null | undefined>;
|
|
91602
92311
|
createdAt: z.ZodDate;
|
|
91603
92312
|
updatedAt: z.ZodDate;
|
|
91604
92313
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -91613,13 +92322,13 @@ declare const DesignSystem: z.ZodObject<{
|
|
|
91613
92322
|
isPublic: boolean;
|
|
91614
92323
|
isMultibrand: boolean;
|
|
91615
92324
|
basePrefixes: string[];
|
|
91616
|
-
docExporterId?: string |
|
|
91617
|
-
docUserSlug?: string |
|
|
91618
|
-
docViewUrl?: string |
|
|
92325
|
+
docExporterId?: string | undefined;
|
|
92326
|
+
docUserSlug?: string | undefined;
|
|
92327
|
+
docViewUrl?: string | undefined;
|
|
91619
92328
|
designSystemSwitcher?: {
|
|
91620
92329
|
isEnabled: boolean;
|
|
91621
|
-
designSystemIds: string;
|
|
91622
|
-
} |
|
|
92330
|
+
designSystemIds: string[];
|
|
92331
|
+
} | undefined;
|
|
91623
92332
|
}, {
|
|
91624
92333
|
id: string;
|
|
91625
92334
|
createdAt: Date;
|
|
@@ -91637,7 +92346,7 @@ declare const DesignSystem: z.ZodObject<{
|
|
|
91637
92346
|
docViewUrl?: string | null | undefined;
|
|
91638
92347
|
designSystemSwitcher?: {
|
|
91639
92348
|
isEnabled: boolean;
|
|
91640
|
-
designSystemIds: string;
|
|
92349
|
+
designSystemIds: string[];
|
|
91641
92350
|
} | null | undefined;
|
|
91642
92351
|
}>;
|
|
91643
92352
|
type DesignSystem = z.infer<typeof DesignSystem>;
|
|
@@ -91647,24 +92356,27 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
|
|
|
91647
92356
|
workspaceId: z.ZodString;
|
|
91648
92357
|
name: z.ZodString;
|
|
91649
92358
|
description: z.ZodString;
|
|
91650
|
-
docExporterId: z.ZodOptional<z.ZodNullable<z.
|
|
92359
|
+
docExporterId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
91651
92360
|
docSlug: z.ZodString;
|
|
91652
|
-
docUserSlug: z.ZodOptional<z.ZodNullable<z.
|
|
92361
|
+
docUserSlug: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
91653
92362
|
docSlugDeprecated: z.ZodString;
|
|
91654
92363
|
isPublic: z.ZodBoolean;
|
|
91655
92364
|
isMultibrand: z.ZodBoolean;
|
|
91656
|
-
docViewUrl: z.ZodOptional<z.ZodNullable<z.
|
|
92365
|
+
docViewUrl: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
91657
92366
|
basePrefixes: z.ZodArray<z.ZodString, "many">;
|
|
91658
|
-
designSystemSwitcher: z.ZodOptional<z.ZodNullable<z.
|
|
91659
|
-
isEnabled: z.ZodBoolean;
|
|
91660
|
-
designSystemIds: z.ZodString;
|
|
91661
|
-
}, "strip", z.ZodTypeAny, {
|
|
92367
|
+
designSystemSwitcher: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
91662
92368
|
isEnabled: boolean;
|
|
91663
|
-
designSystemIds: string;
|
|
91664
|
-
}, {
|
|
92369
|
+
designSystemIds: string[];
|
|
92370
|
+
}, z.ZodTypeDef, {
|
|
91665
92371
|
isEnabled: boolean;
|
|
91666
|
-
designSystemIds: string;
|
|
91667
|
-
}
|
|
92372
|
+
designSystemIds: string[];
|
|
92373
|
+
}>>>, {
|
|
92374
|
+
isEnabled: boolean;
|
|
92375
|
+
designSystemIds: string[];
|
|
92376
|
+
} | undefined, {
|
|
92377
|
+
isEnabled: boolean;
|
|
92378
|
+
designSystemIds: string[];
|
|
92379
|
+
} | null | undefined>;
|
|
91668
92380
|
createdAt: z.ZodDate;
|
|
91669
92381
|
updatedAt: z.ZodDate;
|
|
91670
92382
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -91679,13 +92391,13 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
|
|
|
91679
92391
|
isPublic: boolean;
|
|
91680
92392
|
isMultibrand: boolean;
|
|
91681
92393
|
basePrefixes: string[];
|
|
91682
|
-
docExporterId?: string |
|
|
91683
|
-
docUserSlug?: string |
|
|
91684
|
-
docViewUrl?: string |
|
|
92394
|
+
docExporterId?: string | undefined;
|
|
92395
|
+
docUserSlug?: string | undefined;
|
|
92396
|
+
docViewUrl?: string | undefined;
|
|
91685
92397
|
designSystemSwitcher?: {
|
|
91686
92398
|
isEnabled: boolean;
|
|
91687
|
-
designSystemIds: string;
|
|
91688
|
-
} |
|
|
92399
|
+
designSystemIds: string[];
|
|
92400
|
+
} | undefined;
|
|
91689
92401
|
}, {
|
|
91690
92402
|
id: string;
|
|
91691
92403
|
createdAt: Date;
|
|
@@ -91703,7 +92415,7 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
|
|
|
91703
92415
|
docViewUrl?: string | null | undefined;
|
|
91704
92416
|
designSystemSwitcher?: {
|
|
91705
92417
|
isEnabled: boolean;
|
|
91706
|
-
designSystemIds: string;
|
|
92418
|
+
designSystemIds: string[];
|
|
91707
92419
|
} | null | undefined;
|
|
91708
92420
|
}>;
|
|
91709
92421
|
workspace: z.ZodObject<{
|
|
@@ -92580,24 +93292,27 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
|
|
|
92580
93292
|
workspaceId: z.ZodString;
|
|
92581
93293
|
name: z.ZodString;
|
|
92582
93294
|
description: z.ZodString;
|
|
92583
|
-
docExporterId: z.ZodOptional<z.ZodNullable<z.
|
|
93295
|
+
docExporterId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
92584
93296
|
docSlug: z.ZodString;
|
|
92585
|
-
docUserSlug: z.ZodOptional<z.ZodNullable<z.
|
|
93297
|
+
docUserSlug: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
92586
93298
|
docSlugDeprecated: z.ZodString;
|
|
92587
93299
|
isPublic: z.ZodBoolean;
|
|
92588
93300
|
isMultibrand: z.ZodBoolean;
|
|
92589
|
-
docViewUrl: z.ZodOptional<z.ZodNullable<z.
|
|
93301
|
+
docViewUrl: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
92590
93302
|
basePrefixes: z.ZodArray<z.ZodString, "many">;
|
|
92591
|
-
designSystemSwitcher: z.ZodOptional<z.ZodNullable<z.
|
|
92592
|
-
isEnabled: z.ZodBoolean;
|
|
92593
|
-
designSystemIds: z.ZodString;
|
|
92594
|
-
}, "strip", z.ZodTypeAny, {
|
|
93303
|
+
designSystemSwitcher: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
92595
93304
|
isEnabled: boolean;
|
|
92596
|
-
designSystemIds: string;
|
|
92597
|
-
}, {
|
|
93305
|
+
designSystemIds: string[];
|
|
93306
|
+
}, z.ZodTypeDef, {
|
|
93307
|
+
isEnabled: boolean;
|
|
93308
|
+
designSystemIds: string[];
|
|
93309
|
+
}>>>, {
|
|
93310
|
+
isEnabled: boolean;
|
|
93311
|
+
designSystemIds: string[];
|
|
93312
|
+
} | undefined, {
|
|
92598
93313
|
isEnabled: boolean;
|
|
92599
|
-
designSystemIds: string;
|
|
92600
|
-
}
|
|
93314
|
+
designSystemIds: string[];
|
|
93315
|
+
} | null | undefined>;
|
|
92601
93316
|
createdAt: z.ZodDate;
|
|
92602
93317
|
updatedAt: z.ZodDate;
|
|
92603
93318
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -92612,13 +93327,13 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
|
|
|
92612
93327
|
isPublic: boolean;
|
|
92613
93328
|
isMultibrand: boolean;
|
|
92614
93329
|
basePrefixes: string[];
|
|
92615
|
-
docExporterId?: string |
|
|
92616
|
-
docUserSlug?: string |
|
|
92617
|
-
docViewUrl?: string |
|
|
93330
|
+
docExporterId?: string | undefined;
|
|
93331
|
+
docUserSlug?: string | undefined;
|
|
93332
|
+
docViewUrl?: string | undefined;
|
|
92618
93333
|
designSystemSwitcher?: {
|
|
92619
93334
|
isEnabled: boolean;
|
|
92620
|
-
designSystemIds: string;
|
|
92621
|
-
} |
|
|
93335
|
+
designSystemIds: string[];
|
|
93336
|
+
} | undefined;
|
|
92622
93337
|
}, {
|
|
92623
93338
|
id: string;
|
|
92624
93339
|
createdAt: Date;
|
|
@@ -92636,7 +93351,7 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
|
|
|
92636
93351
|
docViewUrl?: string | null | undefined;
|
|
92637
93352
|
designSystemSwitcher?: {
|
|
92638
93353
|
isEnabled: boolean;
|
|
92639
|
-
designSystemIds: string;
|
|
93354
|
+
designSystemIds: string[];
|
|
92640
93355
|
} | null | undefined;
|
|
92641
93356
|
}>, "many">>>;
|
|
92642
93357
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -92806,6 +93521,193 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
|
|
|
92806
93521
|
metadataXml?: string | null | undefined;
|
|
92807
93522
|
} | null | undefined;
|
|
92808
93523
|
npmRegistrySettings?: unknown;
|
|
93524
|
+
designSystems?: {
|
|
93525
|
+
id: string;
|
|
93526
|
+
createdAt: Date;
|
|
93527
|
+
name: string;
|
|
93528
|
+
description: string;
|
|
93529
|
+
updatedAt: Date;
|
|
93530
|
+
workspaceId: string;
|
|
93531
|
+
docSlug: string;
|
|
93532
|
+
docSlugDeprecated: string;
|
|
93533
|
+
isPublic: boolean;
|
|
93534
|
+
isMultibrand: boolean;
|
|
93535
|
+
basePrefixes: string[];
|
|
93536
|
+
docExporterId?: string | undefined;
|
|
93537
|
+
docUserSlug?: string | undefined;
|
|
93538
|
+
docViewUrl?: string | undefined;
|
|
93539
|
+
designSystemSwitcher?: {
|
|
93540
|
+
isEnabled: boolean;
|
|
93541
|
+
designSystemIds: string[];
|
|
93542
|
+
} | undefined;
|
|
93543
|
+
}[] | null | undefined;
|
|
93544
|
+
}, {
|
|
93545
|
+
id: string;
|
|
93546
|
+
profile: {
|
|
93547
|
+
name: string;
|
|
93548
|
+
color: string;
|
|
93549
|
+
handle: string;
|
|
93550
|
+
avatar?: string | undefined;
|
|
93551
|
+
billingDetails?: {
|
|
93552
|
+
address?: {
|
|
93553
|
+
street1?: string | undefined;
|
|
93554
|
+
street2?: string | undefined;
|
|
93555
|
+
city?: string | undefined;
|
|
93556
|
+
postal?: string | undefined;
|
|
93557
|
+
country?: string | undefined;
|
|
93558
|
+
state?: string | undefined;
|
|
93559
|
+
} | undefined;
|
|
93560
|
+
email?: string | undefined;
|
|
93561
|
+
companyName?: string | undefined;
|
|
93562
|
+
companyId?: string | undefined;
|
|
93563
|
+
notes?: string | undefined;
|
|
93564
|
+
vat?: string | undefined;
|
|
93565
|
+
poNumber?: string | undefined;
|
|
93566
|
+
} | undefined;
|
|
93567
|
+
};
|
|
93568
|
+
subscription: {
|
|
93569
|
+
product: "free" | "team" | "team_test" | "company" | "enterprise";
|
|
93570
|
+
planPriceId: string;
|
|
93571
|
+
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
93572
|
+
seats: number;
|
|
93573
|
+
seatLimit: number;
|
|
93574
|
+
stripeSubscriptionId?: string | null | undefined;
|
|
93575
|
+
stripeCustomerId?: string | null | undefined;
|
|
93576
|
+
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
93577
|
+
subscriptionStatus?: "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | "unknown" | undefined;
|
|
93578
|
+
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
93579
|
+
featuresSummary?: {
|
|
93580
|
+
designSystems: {
|
|
93581
|
+
max: number;
|
|
93582
|
+
errorMessage: string;
|
|
93583
|
+
errorReason: string;
|
|
93584
|
+
};
|
|
93585
|
+
designSystemSources: {
|
|
93586
|
+
max: number;
|
|
93587
|
+
errorMessage: string;
|
|
93588
|
+
errorReason: string;
|
|
93589
|
+
noImportJobsErrorMessage: string;
|
|
93590
|
+
noImportJobsErrorReason: string;
|
|
93591
|
+
};
|
|
93592
|
+
designSystemVersions: {
|
|
93593
|
+
max: number;
|
|
93594
|
+
errorMessage: string;
|
|
93595
|
+
errorReason: string;
|
|
93596
|
+
};
|
|
93597
|
+
themes: {
|
|
93598
|
+
max: number;
|
|
93599
|
+
errorMessage: string;
|
|
93600
|
+
errorReason: string;
|
|
93601
|
+
};
|
|
93602
|
+
brands: {
|
|
93603
|
+
max: number;
|
|
93604
|
+
errorMessage: string;
|
|
93605
|
+
errorReason: string;
|
|
93606
|
+
};
|
|
93607
|
+
codegenSchedules: {
|
|
93608
|
+
max: number;
|
|
93609
|
+
errorMessage: string;
|
|
93610
|
+
errorReason: string;
|
|
93611
|
+
};
|
|
93612
|
+
publicDocumentation: {
|
|
93613
|
+
errorMessage: string;
|
|
93614
|
+
errorReason: string;
|
|
93615
|
+
enabled: boolean;
|
|
93616
|
+
};
|
|
93617
|
+
customDocumentationUrl: {
|
|
93618
|
+
errorMessage: string;
|
|
93619
|
+
errorReason: string;
|
|
93620
|
+
enabled: boolean;
|
|
93621
|
+
};
|
|
93622
|
+
customDocumentationViewButton: {
|
|
93623
|
+
errorMessage: string;
|
|
93624
|
+
errorReason: string;
|
|
93625
|
+
enabled: boolean;
|
|
93626
|
+
};
|
|
93627
|
+
designSystemSourceAutoImport: {
|
|
93628
|
+
errorMessage: string;
|
|
93629
|
+
errorReason: string;
|
|
93630
|
+
enabled: boolean;
|
|
93631
|
+
};
|
|
93632
|
+
designSystemSlug: {
|
|
93633
|
+
errorMessage: string;
|
|
93634
|
+
errorReason: string;
|
|
93635
|
+
enabled: boolean;
|
|
93636
|
+
};
|
|
93637
|
+
ipWhitelisting: {
|
|
93638
|
+
errorMessage: string;
|
|
93639
|
+
errorReason: string;
|
|
93640
|
+
enabled: boolean;
|
|
93641
|
+
};
|
|
93642
|
+
npmRegistry: {
|
|
93643
|
+
errorMessage: string;
|
|
93644
|
+
errorReason: string;
|
|
93645
|
+
enabled: boolean;
|
|
93646
|
+
};
|
|
93647
|
+
sso: {
|
|
93648
|
+
errorMessage: string;
|
|
93649
|
+
errorReason: string;
|
|
93650
|
+
enabled: boolean;
|
|
93651
|
+
};
|
|
93652
|
+
workspacePaidSeats: {
|
|
93653
|
+
max: number;
|
|
93654
|
+
errorMessage: string;
|
|
93655
|
+
errorReason: string;
|
|
93656
|
+
};
|
|
93657
|
+
workspaceViewers: {
|
|
93658
|
+
max: number;
|
|
93659
|
+
errorMessage: string;
|
|
93660
|
+
errorReason: string;
|
|
93661
|
+
};
|
|
93662
|
+
customDocumentationExporter: {
|
|
93663
|
+
errorMessage: string;
|
|
93664
|
+
errorReason: string;
|
|
93665
|
+
enabled: boolean;
|
|
93666
|
+
};
|
|
93667
|
+
} | undefined;
|
|
93668
|
+
stripeProductDescription?: string | undefined;
|
|
93669
|
+
stripeProductFeatures?: string[] | undefined;
|
|
93670
|
+
stripeProductAdditionalFeatures?: string[] | undefined;
|
|
93671
|
+
stripeSubscriptionMainItemId?: string | undefined;
|
|
93672
|
+
isPricePerCreator?: boolean | undefined;
|
|
93673
|
+
legacyVersion?: string | undefined;
|
|
93674
|
+
currentPeriodStart?: string | undefined;
|
|
93675
|
+
currentPeriodEnd?: string | undefined;
|
|
93676
|
+
subscriptionStatusUpdatedAt?: string | undefined;
|
|
93677
|
+
cancelAt?: string | null | undefined;
|
|
93678
|
+
card?: {
|
|
93679
|
+
cardId?: string | null | undefined;
|
|
93680
|
+
last4?: string | null | undefined;
|
|
93681
|
+
expiryMonth?: string | null | undefined;
|
|
93682
|
+
expiryYear?: string | null | undefined;
|
|
93683
|
+
brand?: string | null | undefined;
|
|
93684
|
+
name?: string | null | undefined;
|
|
93685
|
+
} | undefined;
|
|
93686
|
+
amount?: number | null | undefined;
|
|
93687
|
+
isTrial?: boolean | undefined;
|
|
93688
|
+
billingType?: "Auto" | "Invoice" | undefined;
|
|
93689
|
+
daysUntilDue?: number | undefined;
|
|
93690
|
+
};
|
|
93691
|
+
ipWhitelist?: {
|
|
93692
|
+
entries: {
|
|
93693
|
+
name: string;
|
|
93694
|
+
isEnabled: boolean;
|
|
93695
|
+
range: string;
|
|
93696
|
+
}[];
|
|
93697
|
+
isEnabledForCloud: boolean;
|
|
93698
|
+
isEnabledForDocs: boolean;
|
|
93699
|
+
} | null | undefined;
|
|
93700
|
+
sso?: {
|
|
93701
|
+
providerId: string;
|
|
93702
|
+
defaultAutoInviteValue: boolean;
|
|
93703
|
+
autoInviteDomains: Record<string, boolean>;
|
|
93704
|
+
skipDocsSupernovaLogin: boolean;
|
|
93705
|
+
areInvitesDisabled: boolean;
|
|
93706
|
+
isTestMode: boolean;
|
|
93707
|
+
emailDomains: string[];
|
|
93708
|
+
metadataXml?: string | null | undefined;
|
|
93709
|
+
} | null | undefined;
|
|
93710
|
+
npmRegistrySettings?: unknown;
|
|
92809
93711
|
designSystems?: {
|
|
92810
93712
|
id: string;
|
|
92811
93713
|
createdAt: Date;
|
|
@@ -92823,10 +93725,12 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
|
|
|
92823
93725
|
docViewUrl?: string | null | undefined;
|
|
92824
93726
|
designSystemSwitcher?: {
|
|
92825
93727
|
isEnabled: boolean;
|
|
92826
|
-
designSystemIds: string;
|
|
93728
|
+
designSystemIds: string[];
|
|
92827
93729
|
} | null | undefined;
|
|
92828
93730
|
}[] | null | undefined;
|
|
92829
|
-
}
|
|
93731
|
+
}>;
|
|
93732
|
+
}, "strip", z.ZodTypeAny, {
|
|
93733
|
+
workspace: {
|
|
92830
93734
|
id: string;
|
|
92831
93735
|
profile: {
|
|
92832
93736
|
name: string;
|
|
@@ -93005,202 +93909,13 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
|
|
|
93005
93909
|
isPublic: boolean;
|
|
93006
93910
|
isMultibrand: boolean;
|
|
93007
93911
|
basePrefixes: string[];
|
|
93008
|
-
docExporterId?: string |
|
|
93009
|
-
docUserSlug?: string |
|
|
93010
|
-
docViewUrl?: string |
|
|
93912
|
+
docExporterId?: string | undefined;
|
|
93913
|
+
docUserSlug?: string | undefined;
|
|
93914
|
+
docViewUrl?: string | undefined;
|
|
93011
93915
|
designSystemSwitcher?: {
|
|
93012
93916
|
isEnabled: boolean;
|
|
93013
|
-
designSystemIds: string;
|
|
93014
|
-
} | null | undefined;
|
|
93015
|
-
}[] | null | undefined;
|
|
93016
|
-
}>;
|
|
93017
|
-
}, "strip", z.ZodTypeAny, {
|
|
93018
|
-
workspace: {
|
|
93019
|
-
id: string;
|
|
93020
|
-
profile: {
|
|
93021
|
-
name: string;
|
|
93022
|
-
color: string;
|
|
93023
|
-
handle: string;
|
|
93024
|
-
avatar?: string | undefined;
|
|
93025
|
-
billingDetails?: {
|
|
93026
|
-
address?: {
|
|
93027
|
-
street1?: string | undefined;
|
|
93028
|
-
street2?: string | undefined;
|
|
93029
|
-
city?: string | undefined;
|
|
93030
|
-
postal?: string | undefined;
|
|
93031
|
-
country?: string | undefined;
|
|
93032
|
-
state?: string | undefined;
|
|
93033
|
-
} | undefined;
|
|
93034
|
-
email?: string | undefined;
|
|
93035
|
-
companyName?: string | undefined;
|
|
93036
|
-
companyId?: string | undefined;
|
|
93037
|
-
notes?: string | undefined;
|
|
93038
|
-
vat?: string | undefined;
|
|
93039
|
-
poNumber?: string | undefined;
|
|
93040
|
-
} | undefined;
|
|
93041
|
-
};
|
|
93042
|
-
subscription: {
|
|
93043
|
-
product: "free" | "team" | "team_test" | "company" | "enterprise";
|
|
93044
|
-
planPriceId: string;
|
|
93045
|
-
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
93046
|
-
seats: number;
|
|
93047
|
-
seatLimit: number;
|
|
93048
|
-
stripeSubscriptionId?: string | null | undefined;
|
|
93049
|
-
stripeCustomerId?: string | null | undefined;
|
|
93050
|
-
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
93051
|
-
subscriptionStatus?: "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | "unknown" | undefined;
|
|
93052
|
-
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
93053
|
-
featuresSummary?: {
|
|
93054
|
-
designSystems: {
|
|
93055
|
-
max: number;
|
|
93056
|
-
errorMessage: string;
|
|
93057
|
-
errorReason: string;
|
|
93058
|
-
};
|
|
93059
|
-
designSystemSources: {
|
|
93060
|
-
max: number;
|
|
93061
|
-
errorMessage: string;
|
|
93062
|
-
errorReason: string;
|
|
93063
|
-
noImportJobsErrorMessage: string;
|
|
93064
|
-
noImportJobsErrorReason: string;
|
|
93065
|
-
};
|
|
93066
|
-
designSystemVersions: {
|
|
93067
|
-
max: number;
|
|
93068
|
-
errorMessage: string;
|
|
93069
|
-
errorReason: string;
|
|
93070
|
-
};
|
|
93071
|
-
themes: {
|
|
93072
|
-
max: number;
|
|
93073
|
-
errorMessage: string;
|
|
93074
|
-
errorReason: string;
|
|
93075
|
-
};
|
|
93076
|
-
brands: {
|
|
93077
|
-
max: number;
|
|
93078
|
-
errorMessage: string;
|
|
93079
|
-
errorReason: string;
|
|
93080
|
-
};
|
|
93081
|
-
codegenSchedules: {
|
|
93082
|
-
max: number;
|
|
93083
|
-
errorMessage: string;
|
|
93084
|
-
errorReason: string;
|
|
93085
|
-
};
|
|
93086
|
-
publicDocumentation: {
|
|
93087
|
-
errorMessage: string;
|
|
93088
|
-
errorReason: string;
|
|
93089
|
-
enabled: boolean;
|
|
93090
|
-
};
|
|
93091
|
-
customDocumentationUrl: {
|
|
93092
|
-
errorMessage: string;
|
|
93093
|
-
errorReason: string;
|
|
93094
|
-
enabled: boolean;
|
|
93095
|
-
};
|
|
93096
|
-
customDocumentationViewButton: {
|
|
93097
|
-
errorMessage: string;
|
|
93098
|
-
errorReason: string;
|
|
93099
|
-
enabled: boolean;
|
|
93100
|
-
};
|
|
93101
|
-
designSystemSourceAutoImport: {
|
|
93102
|
-
errorMessage: string;
|
|
93103
|
-
errorReason: string;
|
|
93104
|
-
enabled: boolean;
|
|
93105
|
-
};
|
|
93106
|
-
designSystemSlug: {
|
|
93107
|
-
errorMessage: string;
|
|
93108
|
-
errorReason: string;
|
|
93109
|
-
enabled: boolean;
|
|
93110
|
-
};
|
|
93111
|
-
ipWhitelisting: {
|
|
93112
|
-
errorMessage: string;
|
|
93113
|
-
errorReason: string;
|
|
93114
|
-
enabled: boolean;
|
|
93115
|
-
};
|
|
93116
|
-
npmRegistry: {
|
|
93117
|
-
errorMessage: string;
|
|
93118
|
-
errorReason: string;
|
|
93119
|
-
enabled: boolean;
|
|
93120
|
-
};
|
|
93121
|
-
sso: {
|
|
93122
|
-
errorMessage: string;
|
|
93123
|
-
errorReason: string;
|
|
93124
|
-
enabled: boolean;
|
|
93125
|
-
};
|
|
93126
|
-
workspacePaidSeats: {
|
|
93127
|
-
max: number;
|
|
93128
|
-
errorMessage: string;
|
|
93129
|
-
errorReason: string;
|
|
93130
|
-
};
|
|
93131
|
-
workspaceViewers: {
|
|
93132
|
-
max: number;
|
|
93133
|
-
errorMessage: string;
|
|
93134
|
-
errorReason: string;
|
|
93135
|
-
};
|
|
93136
|
-
customDocumentationExporter: {
|
|
93137
|
-
errorMessage: string;
|
|
93138
|
-
errorReason: string;
|
|
93139
|
-
enabled: boolean;
|
|
93140
|
-
};
|
|
93917
|
+
designSystemIds: string[];
|
|
93141
93918
|
} | undefined;
|
|
93142
|
-
stripeProductDescription?: string | undefined;
|
|
93143
|
-
stripeProductFeatures?: string[] | undefined;
|
|
93144
|
-
stripeProductAdditionalFeatures?: string[] | undefined;
|
|
93145
|
-
stripeSubscriptionMainItemId?: string | undefined;
|
|
93146
|
-
isPricePerCreator?: boolean | undefined;
|
|
93147
|
-
legacyVersion?: string | undefined;
|
|
93148
|
-
currentPeriodStart?: string | undefined;
|
|
93149
|
-
currentPeriodEnd?: string | undefined;
|
|
93150
|
-
subscriptionStatusUpdatedAt?: string | undefined;
|
|
93151
|
-
cancelAt?: string | null | undefined;
|
|
93152
|
-
card?: {
|
|
93153
|
-
cardId?: string | null | undefined;
|
|
93154
|
-
last4?: string | null | undefined;
|
|
93155
|
-
expiryMonth?: string | null | undefined;
|
|
93156
|
-
expiryYear?: string | null | undefined;
|
|
93157
|
-
brand?: string | null | undefined;
|
|
93158
|
-
name?: string | null | undefined;
|
|
93159
|
-
} | undefined;
|
|
93160
|
-
amount?: number | null | undefined;
|
|
93161
|
-
isTrial?: boolean | undefined;
|
|
93162
|
-
billingType?: "Auto" | "Invoice" | undefined;
|
|
93163
|
-
daysUntilDue?: number | undefined;
|
|
93164
|
-
};
|
|
93165
|
-
ipWhitelist?: {
|
|
93166
|
-
entries: {
|
|
93167
|
-
name: string;
|
|
93168
|
-
isEnabled: boolean;
|
|
93169
|
-
range: string;
|
|
93170
|
-
}[];
|
|
93171
|
-
isEnabledForCloud: boolean;
|
|
93172
|
-
isEnabledForDocs: boolean;
|
|
93173
|
-
} | null | undefined;
|
|
93174
|
-
sso?: {
|
|
93175
|
-
providerId: string;
|
|
93176
|
-
defaultAutoInviteValue: boolean;
|
|
93177
|
-
autoInviteDomains: Record<string, boolean>;
|
|
93178
|
-
skipDocsSupernovaLogin: boolean;
|
|
93179
|
-
areInvitesDisabled: boolean;
|
|
93180
|
-
isTestMode: boolean;
|
|
93181
|
-
emailDomains: string[];
|
|
93182
|
-
metadataXml?: string | null | undefined;
|
|
93183
|
-
} | null | undefined;
|
|
93184
|
-
npmRegistrySettings?: unknown;
|
|
93185
|
-
designSystems?: {
|
|
93186
|
-
id: string;
|
|
93187
|
-
createdAt: Date;
|
|
93188
|
-
name: string;
|
|
93189
|
-
description: string;
|
|
93190
|
-
updatedAt: Date;
|
|
93191
|
-
workspaceId: string;
|
|
93192
|
-
docSlug: string;
|
|
93193
|
-
docSlugDeprecated: string;
|
|
93194
|
-
isPublic: boolean;
|
|
93195
|
-
isMultibrand: boolean;
|
|
93196
|
-
basePrefixes: string[];
|
|
93197
|
-
docExporterId?: string | null | undefined;
|
|
93198
|
-
docUserSlug?: string | null | undefined;
|
|
93199
|
-
docViewUrl?: string | null | undefined;
|
|
93200
|
-
designSystemSwitcher?: {
|
|
93201
|
-
isEnabled: boolean;
|
|
93202
|
-
designSystemIds: string;
|
|
93203
|
-
} | null | undefined;
|
|
93204
93919
|
}[] | null | undefined;
|
|
93205
93920
|
};
|
|
93206
93921
|
designSystem: {
|
|
@@ -93215,13 +93930,13 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
|
|
|
93215
93930
|
isPublic: boolean;
|
|
93216
93931
|
isMultibrand: boolean;
|
|
93217
93932
|
basePrefixes: string[];
|
|
93218
|
-
docExporterId?: string |
|
|
93219
|
-
docUserSlug?: string |
|
|
93220
|
-
docViewUrl?: string |
|
|
93933
|
+
docExporterId?: string | undefined;
|
|
93934
|
+
docUserSlug?: string | undefined;
|
|
93935
|
+
docViewUrl?: string | undefined;
|
|
93221
93936
|
designSystemSwitcher?: {
|
|
93222
93937
|
isEnabled: boolean;
|
|
93223
|
-
designSystemIds: string;
|
|
93224
|
-
} |
|
|
93938
|
+
designSystemIds: string[];
|
|
93939
|
+
} | undefined;
|
|
93225
93940
|
};
|
|
93226
93941
|
}, {
|
|
93227
93942
|
workspace: {
|
|
@@ -93408,7 +94123,7 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
|
|
|
93408
94123
|
docViewUrl?: string | null | undefined;
|
|
93409
94124
|
designSystemSwitcher?: {
|
|
93410
94125
|
isEnabled: boolean;
|
|
93411
|
-
designSystemIds: string;
|
|
94126
|
+
designSystemIds: string[];
|
|
93412
94127
|
} | null | undefined;
|
|
93413
94128
|
}[] | null | undefined;
|
|
93414
94129
|
};
|
|
@@ -93429,7 +94144,7 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
|
|
|
93429
94144
|
docViewUrl?: string | null | undefined;
|
|
93430
94145
|
designSystemSwitcher?: {
|
|
93431
94146
|
isEnabled: boolean;
|
|
93432
|
-
designSystemIds: string;
|
|
94147
|
+
designSystemIds: string[];
|
|
93433
94148
|
} | null | undefined;
|
|
93434
94149
|
};
|
|
93435
94150
|
}>;
|
|
@@ -96106,24 +96821,27 @@ declare const Workspace: z.ZodObject<{
|
|
|
96106
96821
|
workspaceId: z.ZodString;
|
|
96107
96822
|
name: z.ZodString;
|
|
96108
96823
|
description: z.ZodString;
|
|
96109
|
-
docExporterId: z.ZodOptional<z.ZodNullable<z.
|
|
96824
|
+
docExporterId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
96110
96825
|
docSlug: z.ZodString;
|
|
96111
|
-
docUserSlug: z.ZodOptional<z.ZodNullable<z.
|
|
96826
|
+
docUserSlug: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
96112
96827
|
docSlugDeprecated: z.ZodString;
|
|
96113
96828
|
isPublic: z.ZodBoolean;
|
|
96114
96829
|
isMultibrand: z.ZodBoolean;
|
|
96115
|
-
docViewUrl: z.ZodOptional<z.ZodNullable<z.
|
|
96830
|
+
docViewUrl: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
96116
96831
|
basePrefixes: z.ZodArray<z.ZodString, "many">;
|
|
96117
|
-
designSystemSwitcher: z.ZodOptional<z.ZodNullable<z.
|
|
96118
|
-
isEnabled: z.ZodBoolean;
|
|
96119
|
-
designSystemIds: z.ZodString;
|
|
96120
|
-
}, "strip", z.ZodTypeAny, {
|
|
96832
|
+
designSystemSwitcher: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
96121
96833
|
isEnabled: boolean;
|
|
96122
|
-
designSystemIds: string;
|
|
96123
|
-
}, {
|
|
96834
|
+
designSystemIds: string[];
|
|
96835
|
+
}, z.ZodTypeDef, {
|
|
96124
96836
|
isEnabled: boolean;
|
|
96125
|
-
designSystemIds: string;
|
|
96126
|
-
}
|
|
96837
|
+
designSystemIds: string[];
|
|
96838
|
+
}>>>, {
|
|
96839
|
+
isEnabled: boolean;
|
|
96840
|
+
designSystemIds: string[];
|
|
96841
|
+
} | undefined, {
|
|
96842
|
+
isEnabled: boolean;
|
|
96843
|
+
designSystemIds: string[];
|
|
96844
|
+
} | null | undefined>;
|
|
96127
96845
|
createdAt: z.ZodDate;
|
|
96128
96846
|
updatedAt: z.ZodDate;
|
|
96129
96847
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -96138,13 +96856,13 @@ declare const Workspace: z.ZodObject<{
|
|
|
96138
96856
|
isPublic: boolean;
|
|
96139
96857
|
isMultibrand: boolean;
|
|
96140
96858
|
basePrefixes: string[];
|
|
96141
|
-
docExporterId?: string |
|
|
96142
|
-
docUserSlug?: string |
|
|
96143
|
-
docViewUrl?: string |
|
|
96859
|
+
docExporterId?: string | undefined;
|
|
96860
|
+
docUserSlug?: string | undefined;
|
|
96861
|
+
docViewUrl?: string | undefined;
|
|
96144
96862
|
designSystemSwitcher?: {
|
|
96145
96863
|
isEnabled: boolean;
|
|
96146
|
-
designSystemIds: string;
|
|
96147
|
-
} |
|
|
96864
|
+
designSystemIds: string[];
|
|
96865
|
+
} | undefined;
|
|
96148
96866
|
}, {
|
|
96149
96867
|
id: string;
|
|
96150
96868
|
createdAt: Date;
|
|
@@ -96162,7 +96880,7 @@ declare const Workspace: z.ZodObject<{
|
|
|
96162
96880
|
docViewUrl?: string | null | undefined;
|
|
96163
96881
|
designSystemSwitcher?: {
|
|
96164
96882
|
isEnabled: boolean;
|
|
96165
|
-
designSystemIds: string;
|
|
96883
|
+
designSystemIds: string[];
|
|
96166
96884
|
} | null | undefined;
|
|
96167
96885
|
}>, "many">>>;
|
|
96168
96886
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -96344,13 +97062,13 @@ declare const Workspace: z.ZodObject<{
|
|
|
96344
97062
|
isPublic: boolean;
|
|
96345
97063
|
isMultibrand: boolean;
|
|
96346
97064
|
basePrefixes: string[];
|
|
96347
|
-
docExporterId?: string |
|
|
96348
|
-
docUserSlug?: string |
|
|
96349
|
-
docViewUrl?: string |
|
|
97065
|
+
docExporterId?: string | undefined;
|
|
97066
|
+
docUserSlug?: string | undefined;
|
|
97067
|
+
docViewUrl?: string | undefined;
|
|
96350
97068
|
designSystemSwitcher?: {
|
|
96351
97069
|
isEnabled: boolean;
|
|
96352
|
-
designSystemIds: string;
|
|
96353
|
-
} |
|
|
97070
|
+
designSystemIds: string[];
|
|
97071
|
+
} | undefined;
|
|
96354
97072
|
}[] | null | undefined;
|
|
96355
97073
|
}, {
|
|
96356
97074
|
id: string;
|
|
@@ -96536,7 +97254,7 @@ declare const Workspace: z.ZodObject<{
|
|
|
96536
97254
|
docViewUrl?: string | null | undefined;
|
|
96537
97255
|
designSystemSwitcher?: {
|
|
96538
97256
|
isEnabled: boolean;
|
|
96539
|
-
designSystemIds: string;
|
|
97257
|
+
designSystemIds: string[];
|
|
96540
97258
|
} | null | undefined;
|
|
96541
97259
|
}[] | null | undefined;
|
|
96542
97260
|
}>;
|
|
@@ -97416,24 +98134,27 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
97416
98134
|
workspaceId: z.ZodString;
|
|
97417
98135
|
name: z.ZodString;
|
|
97418
98136
|
description: z.ZodString;
|
|
97419
|
-
docExporterId: z.ZodOptional<z.ZodNullable<z.
|
|
98137
|
+
docExporterId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
97420
98138
|
docSlug: z.ZodString;
|
|
97421
|
-
docUserSlug: z.ZodOptional<z.ZodNullable<z.
|
|
98139
|
+
docUserSlug: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
97422
98140
|
docSlugDeprecated: z.ZodString;
|
|
97423
98141
|
isPublic: z.ZodBoolean;
|
|
97424
98142
|
isMultibrand: z.ZodBoolean;
|
|
97425
|
-
docViewUrl: z.ZodOptional<z.ZodNullable<z.
|
|
98143
|
+
docViewUrl: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
97426
98144
|
basePrefixes: z.ZodArray<z.ZodString, "many">;
|
|
97427
|
-
designSystemSwitcher: z.ZodOptional<z.ZodNullable<z.
|
|
97428
|
-
isEnabled: z.ZodBoolean;
|
|
97429
|
-
designSystemIds: z.ZodString;
|
|
97430
|
-
}, "strip", z.ZodTypeAny, {
|
|
98145
|
+
designSystemSwitcher: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
97431
98146
|
isEnabled: boolean;
|
|
97432
|
-
designSystemIds: string;
|
|
97433
|
-
}, {
|
|
98147
|
+
designSystemIds: string[];
|
|
98148
|
+
}, z.ZodTypeDef, {
|
|
97434
98149
|
isEnabled: boolean;
|
|
97435
|
-
designSystemIds: string;
|
|
97436
|
-
}
|
|
98150
|
+
designSystemIds: string[];
|
|
98151
|
+
}>>>, {
|
|
98152
|
+
isEnabled: boolean;
|
|
98153
|
+
designSystemIds: string[];
|
|
98154
|
+
} | undefined, {
|
|
98155
|
+
isEnabled: boolean;
|
|
98156
|
+
designSystemIds: string[];
|
|
98157
|
+
} | null | undefined>;
|
|
97437
98158
|
createdAt: z.ZodDate;
|
|
97438
98159
|
updatedAt: z.ZodDate;
|
|
97439
98160
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -97448,13 +98169,13 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
97448
98169
|
isPublic: boolean;
|
|
97449
98170
|
isMultibrand: boolean;
|
|
97450
98171
|
basePrefixes: string[];
|
|
97451
|
-
docExporterId?: string |
|
|
97452
|
-
docUserSlug?: string |
|
|
97453
|
-
docViewUrl?: string |
|
|
98172
|
+
docExporterId?: string | undefined;
|
|
98173
|
+
docUserSlug?: string | undefined;
|
|
98174
|
+
docViewUrl?: string | undefined;
|
|
97454
98175
|
designSystemSwitcher?: {
|
|
97455
98176
|
isEnabled: boolean;
|
|
97456
|
-
designSystemIds: string;
|
|
97457
|
-
} |
|
|
98177
|
+
designSystemIds: string[];
|
|
98178
|
+
} | undefined;
|
|
97458
98179
|
}, {
|
|
97459
98180
|
id: string;
|
|
97460
98181
|
createdAt: Date;
|
|
@@ -97472,7 +98193,7 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
97472
98193
|
docViewUrl?: string | null | undefined;
|
|
97473
98194
|
designSystemSwitcher?: {
|
|
97474
98195
|
isEnabled: boolean;
|
|
97475
|
-
designSystemIds: string;
|
|
98196
|
+
designSystemIds: string[];
|
|
97476
98197
|
} | null | undefined;
|
|
97477
98198
|
}>, "many">>>;
|
|
97478
98199
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -97654,13 +98375,13 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
97654
98375
|
isPublic: boolean;
|
|
97655
98376
|
isMultibrand: boolean;
|
|
97656
98377
|
basePrefixes: string[];
|
|
97657
|
-
docExporterId?: string |
|
|
97658
|
-
docUserSlug?: string |
|
|
97659
|
-
docViewUrl?: string |
|
|
98378
|
+
docExporterId?: string | undefined;
|
|
98379
|
+
docUserSlug?: string | undefined;
|
|
98380
|
+
docViewUrl?: string | undefined;
|
|
97660
98381
|
designSystemSwitcher?: {
|
|
97661
98382
|
isEnabled: boolean;
|
|
97662
|
-
designSystemIds: string;
|
|
97663
|
-
} |
|
|
98383
|
+
designSystemIds: string[];
|
|
98384
|
+
} | undefined;
|
|
97664
98385
|
}[] | null | undefined;
|
|
97665
98386
|
}, {
|
|
97666
98387
|
id: string;
|
|
@@ -97846,7 +98567,7 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
97846
98567
|
docViewUrl?: string | null | undefined;
|
|
97847
98568
|
designSystemSwitcher?: {
|
|
97848
98569
|
isEnabled: boolean;
|
|
97849
|
-
designSystemIds: string;
|
|
98570
|
+
designSystemIds: string[];
|
|
97850
98571
|
} | null | undefined;
|
|
97851
98572
|
}[] | null | undefined;
|
|
97852
98573
|
}>;
|
|
@@ -97855,24 +98576,27 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
97855
98576
|
workspaceId: z.ZodString;
|
|
97856
98577
|
name: z.ZodString;
|
|
97857
98578
|
description: z.ZodString;
|
|
97858
|
-
docExporterId: z.ZodOptional<z.ZodNullable<z.
|
|
98579
|
+
docExporterId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
97859
98580
|
docSlug: z.ZodString;
|
|
97860
|
-
docUserSlug: z.ZodOptional<z.ZodNullable<z.
|
|
98581
|
+
docUserSlug: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
97861
98582
|
docSlugDeprecated: z.ZodString;
|
|
97862
98583
|
isPublic: z.ZodBoolean;
|
|
97863
98584
|
isMultibrand: z.ZodBoolean;
|
|
97864
|
-
docViewUrl: z.ZodOptional<z.ZodNullable<z.
|
|
98585
|
+
docViewUrl: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
97865
98586
|
basePrefixes: z.ZodArray<z.ZodString, "many">;
|
|
97866
|
-
designSystemSwitcher: z.ZodOptional<z.ZodNullable<z.
|
|
97867
|
-
isEnabled: z.ZodBoolean;
|
|
97868
|
-
designSystemIds: z.ZodString;
|
|
97869
|
-
}, "strip", z.ZodTypeAny, {
|
|
98587
|
+
designSystemSwitcher: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
97870
98588
|
isEnabled: boolean;
|
|
97871
|
-
designSystemIds: string;
|
|
97872
|
-
}, {
|
|
98589
|
+
designSystemIds: string[];
|
|
98590
|
+
}, z.ZodTypeDef, {
|
|
97873
98591
|
isEnabled: boolean;
|
|
97874
|
-
designSystemIds: string;
|
|
97875
|
-
}
|
|
98592
|
+
designSystemIds: string[];
|
|
98593
|
+
}>>>, {
|
|
98594
|
+
isEnabled: boolean;
|
|
98595
|
+
designSystemIds: string[];
|
|
98596
|
+
} | undefined, {
|
|
98597
|
+
isEnabled: boolean;
|
|
98598
|
+
designSystemIds: string[];
|
|
98599
|
+
} | null | undefined>;
|
|
97876
98600
|
createdAt: z.ZodDate;
|
|
97877
98601
|
updatedAt: z.ZodDate;
|
|
97878
98602
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -97887,13 +98611,13 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
97887
98611
|
isPublic: boolean;
|
|
97888
98612
|
isMultibrand: boolean;
|
|
97889
98613
|
basePrefixes: string[];
|
|
97890
|
-
docExporterId?: string |
|
|
97891
|
-
docUserSlug?: string |
|
|
97892
|
-
docViewUrl?: string |
|
|
98614
|
+
docExporterId?: string | undefined;
|
|
98615
|
+
docUserSlug?: string | undefined;
|
|
98616
|
+
docViewUrl?: string | undefined;
|
|
97893
98617
|
designSystemSwitcher?: {
|
|
97894
98618
|
isEnabled: boolean;
|
|
97895
|
-
designSystemIds: string;
|
|
97896
|
-
} |
|
|
98619
|
+
designSystemIds: string[];
|
|
98620
|
+
} | undefined;
|
|
97897
98621
|
}, {
|
|
97898
98622
|
id: string;
|
|
97899
98623
|
createdAt: Date;
|
|
@@ -97911,7 +98635,7 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
97911
98635
|
docViewUrl?: string | null | undefined;
|
|
97912
98636
|
designSystemSwitcher?: {
|
|
97913
98637
|
isEnabled: boolean;
|
|
97914
|
-
designSystemIds: string;
|
|
98638
|
+
designSystemIds: string[];
|
|
97915
98639
|
} | null | undefined;
|
|
97916
98640
|
}>, "many">;
|
|
97917
98641
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -97927,13 +98651,13 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
97927
98651
|
isPublic: boolean;
|
|
97928
98652
|
isMultibrand: boolean;
|
|
97929
98653
|
basePrefixes: string[];
|
|
97930
|
-
docExporterId?: string |
|
|
97931
|
-
docUserSlug?: string |
|
|
97932
|
-
docViewUrl?: string |
|
|
98654
|
+
docExporterId?: string | undefined;
|
|
98655
|
+
docUserSlug?: string | undefined;
|
|
98656
|
+
docViewUrl?: string | undefined;
|
|
97933
98657
|
designSystemSwitcher?: {
|
|
97934
98658
|
isEnabled: boolean;
|
|
97935
|
-
designSystemIds: string;
|
|
97936
|
-
} |
|
|
98659
|
+
designSystemIds: string[];
|
|
98660
|
+
} | undefined;
|
|
97937
98661
|
}[];
|
|
97938
98662
|
workspace: {
|
|
97939
98663
|
id: string;
|
|
@@ -98114,13 +98838,13 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
98114
98838
|
isPublic: boolean;
|
|
98115
98839
|
isMultibrand: boolean;
|
|
98116
98840
|
basePrefixes: string[];
|
|
98117
|
-
docExporterId?: string |
|
|
98118
|
-
docUserSlug?: string |
|
|
98119
|
-
docViewUrl?: string |
|
|
98841
|
+
docExporterId?: string | undefined;
|
|
98842
|
+
docUserSlug?: string | undefined;
|
|
98843
|
+
docViewUrl?: string | undefined;
|
|
98120
98844
|
designSystemSwitcher?: {
|
|
98121
98845
|
isEnabled: boolean;
|
|
98122
|
-
designSystemIds: string;
|
|
98123
|
-
} |
|
|
98846
|
+
designSystemIds: string[];
|
|
98847
|
+
} | undefined;
|
|
98124
98848
|
}[] | null | undefined;
|
|
98125
98849
|
};
|
|
98126
98850
|
}, {
|
|
@@ -98141,7 +98865,7 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
98141
98865
|
docViewUrl?: string | null | undefined;
|
|
98142
98866
|
designSystemSwitcher?: {
|
|
98143
98867
|
isEnabled: boolean;
|
|
98144
|
-
designSystemIds: string;
|
|
98868
|
+
designSystemIds: string[];
|
|
98145
98869
|
} | null | undefined;
|
|
98146
98870
|
}[];
|
|
98147
98871
|
workspace: {
|
|
@@ -98328,11 +99052,11 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
98328
99052
|
docViewUrl?: string | null | undefined;
|
|
98329
99053
|
designSystemSwitcher?: {
|
|
98330
99054
|
isEnabled: boolean;
|
|
98331
|
-
designSystemIds: string;
|
|
99055
|
+
designSystemIds: string[];
|
|
98332
99056
|
} | null | undefined;
|
|
98333
99057
|
}[] | null | undefined;
|
|
98334
99058
|
};
|
|
98335
99059
|
}>;
|
|
98336
99060
|
type WorkspaceWithDesignSystems = z.infer<typeof WorkspaceWithDesignSystems>;
|
|
98337
99061
|
|
|
98338
|
-
export { Address, Asset, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProperties, AssetReference, type AssetReferenceDiff, AssetScope, AssetType, AssetValue, AuthTokens, BasePulsarProperty, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, type Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, ColorTokenData, ColorTokenInlineData, ColorValue, Component, ComponentAsset, type ComponentDiff, ComponentElementData, ComponentImportModel, ComponentImportModelInput, ComponentOrigin, ComponentOriginPart, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateComponent, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageRoom, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementViewColumn, type CreateExporterMembership, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePublishedDocPage, type CreateTheme, CreateWorkspaceInput, CustomDomain, type CustomDomainState, Customer, type DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementType, DesignSystem, DesignSystemCreateInput, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, type DesignSystemVersion, DesignSystemVersionRoom, DesignSystemWithWorkspace, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationGroupBehavior, DocumentationItemConfiguration, DocumentationItemHeader, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationPage, DocumentationPageAsset, DocumentationPageAssetType, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageElementDataV1, DocumentationPageElementDataV2, DocumentationPageFrameAsset, DocumentationPageGroup, DocumentationPageImageAsset, DocumentationPageRoom, DocumentationPageV1, DocumentationPageV2, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupData, ElementGroupElementData, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyValue, type ElementPropertyValueDiff, type ElementView, type ElementViewBaseColumnType, type ElementViewBasePropertyColumn, type ElementViewColumn, type ElementViewColumnSharedAttributes, type ElementViewColumnType, type ElementViewPropertyDefinitionColumn, type ElementViewThemeColumn, Entity, ExportJob, ExportJobStatus, Exporter, ExporterDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontWeightTokenData, FontWeightValue, GitProvider, GitProviderNames, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedComponent, type ImportedDesignToken, type ImportedDesignTokenOfType, ImportedFigmaSourceData, IntegrationAuthType, type IntegrationToken, IntegrationTokenSchema, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, NpmRegistryTypeWithoutAzure, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetType, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyOptions, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionVariant, PageBlockEditorModelV2, PageBlockFigmaFrameProperties, PageBlockFrame, PageBlockFrameOrigin, PageBlockImageAlignment, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemImageReference, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableMultiRichTextNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockShortcut, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, type PublishedDocPage, PublishedDocRoutingVersion, PublishedDocsChecksums, PulsarContributionBlock, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarPropertyType, type ResolvedAsset, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateComponent, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageRoom, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementViewColumn, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, UrlImageImportModel, User, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserSession, Visibility, VisibilityTokenData, VisibilityValue, Workspace, WorkspaceContext, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, WorkspaceProfile, WorkspaceRole, WorkspaceRoleSchema, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, colorValueFormatDescription, colorValueRegex, defaultDocumentationItemConfiguration, defaultDocumentationItemHeader, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isTokenType, nullishToOptional, publishedDocEnvironments, slugRegex, tokenAliasOrValue, tokenElementTypes, traversePageBlocksV1, traverseStructure, tryParseShortPersistentId, zodCreateInputOmit, zodUpdateInputOmit };
|
|
99062
|
+
export { Address, Asset, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProperties, AssetReference, type AssetReferenceDiff, AssetScope, AssetType, AssetValue, AuthTokens, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, type Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, ColorTokenData, ColorTokenInlineData, ColorValue, Component, ComponentAsset, type ComponentDiff, ComponentElementData, ComponentImportModel, ComponentImportModelInput, ComponentOrigin, ComponentOriginPart, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateComponent, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageRoom, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementViewColumn, type CreateExporterMembership, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePublishedDocPage, type CreateTheme, CreateWorkspaceInput, CustomDomain, type CustomDomainState, Customer, type DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementType, DesignSystem, DesignSystemCreateInput, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, type DesignSystemVersion, DesignSystemVersionRoom, DesignSystemWithWorkspace, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationGroupBehavior, DocumentationItemConfiguration, DocumentationItemHeader, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationPage, DocumentationPageAsset, DocumentationPageAssetType, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageElementDataV1, DocumentationPageElementDataV2, DocumentationPageFrameAsset, DocumentationPageGroup, DocumentationPageImageAsset, DocumentationPageRoom, DocumentationPageV1, DocumentationPageV2, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupData, ElementGroupElementData, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyValue, type ElementPropertyValueDiff, type ElementView, type ElementViewBaseColumnType, type ElementViewBasePropertyColumn, type ElementViewColumn, type ElementViewColumnSharedAttributes, type ElementViewColumnType, type ElementViewPropertyDefinitionColumn, type ElementViewThemeColumn, Entity, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDestinationSnDocs, ExporterDetails, ExporterJob, ExporterJobDestination, ExporterJobFindByFilter, ExporterJobLogEntry, ExporterJobLogEntryType, ExporterJobResult, ExporterJobResultDocsDestination, ExporterJobResultPullRequestDestination, ExporterJobResultS3Destination, ExporterJobStatus, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontWeightTokenData, FontWeightValue, GitProvider, GitProviderNames, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedComponent, type ImportedDesignToken, type ImportedDesignTokenOfType, ImportedFigmaSourceData, IntegrationAuthType, type IntegrationToken, IntegrationTokenSchema, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, NpmRegistryTypeWithoutAzure, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetType, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockEditorModelV2, PageBlockFigmaFrameProperties, PageBlockFrame, PageBlockFrameOrigin, PageBlockImageAlignment, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaNodeValue, PageBlockItemImageReference, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableMultiRichTextNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockShortcut, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, type PublishedDocPage, PublishedDocRoutingVersion, PublishedDocsChecksums, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, type ResolvedAsset, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateComponent, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageRoom, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementViewColumn, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, UrlImageImportModel, User, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserSession, Visibility, VisibilityTokenData, VisibilityValue, Workspace, WorkspaceContext, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, WorkspaceProfile, WorkspaceRole, WorkspaceRoleSchema, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, colorValueFormatDescription, colorValueRegex, defaultDocumentationItemConfiguration, defaultDocumentationItemHeader, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isTokenType, nullishToOptional, publishedDocEnvironments, slugRegex, tokenAliasOrValue, tokenElementTypes, traversePageBlocksV1, traverseStructure, tryParseShortPersistentId, zodCreateInputOmit, zodUpdateInputOmit };
|