@redocly/config 0.5.0 → 0.6.1
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/lib/default-theme-config-schema.d.ts +605 -14
- package/lib/default-theme-config-schema.js +14 -8
- package/lib/feedback-config-schema.d.ts +102 -0
- package/lib/feedback-config-schema.js +71 -0
- package/lib/graphql-config-schema.d.ts +303 -0
- package/lib/graphql-config-schema.js +129 -0
- package/lib/graphql-types.d.ts +9 -0
- package/lib/graphql-types.js +3 -0
- package/lib/index.d.ts +1 -1
- package/lib/index.js +2 -1
- package/lib/portal-shared-types.d.ts +19 -7
- package/lib/redoc-config-schema.d.ts +298 -0
- package/lib/redoc-config-schema.js +120 -0
- package/lib/redoc-types.d.ts +84 -0
- package/lib/redoc-types.js +3 -0
- package/lib/remove-property-recursively.d.ts +5 -0
- package/lib/remove-property-recursively.js +26 -0
- package/lib/root-config-schema.d.ts +7117 -3808
- package/lib/root-config-schema.js +12 -2
- package/lib/types.d.ts +4 -0
- package/lib-esm/default-theme-config-schema.d.ts +605 -14
- package/lib-esm/default-theme-config-schema.js +14 -8
- package/lib-esm/feedback-config-schema.d.ts +102 -0
- package/lib-esm/feedback-config-schema.js +68 -0
- package/lib-esm/graphql-config-schema.d.ts +303 -0
- package/lib-esm/graphql-config-schema.js +126 -0
- package/lib-esm/graphql-types.d.ts +9 -0
- package/lib-esm/graphql-types.js +2 -0
- package/lib-esm/index.d.ts +1 -1
- package/lib-esm/index.js +1 -1
- package/lib-esm/portal-shared-types.d.ts +19 -7
- package/lib-esm/redoc-config-schema.d.ts +298 -0
- package/lib-esm/redoc-config-schema.js +117 -0
- package/lib-esm/redoc-types.d.ts +84 -0
- package/lib-esm/redoc-types.js +2 -0
- package/lib-esm/remove-property-recursively.d.ts +5 -0
- package/lib-esm/remove-property-recursively.js +22 -0
- package/lib-esm/root-config-schema.d.ts +7117 -3808
- package/lib-esm/root-config-schema.js +12 -2
- package/lib-esm/types.d.ts +4 -0
- package/package.json +5 -4
- package/CHANGELOG.md +0 -68
- package/README_INTERNAL.md +0 -36
- package/lib/.tsbuildinfo +0 -1
- package/lib/constants.js.map +0 -1
- package/lib/default-theme-config-schema.js.map +0 -1
- package/lib/index.js.map +0 -1
- package/lib/portal-shared-types.js.map +0 -1
- package/lib/reunite-config-schema.js.map +0 -1
- package/lib/root-config-schema.js.map +0 -1
- package/lib/types.js.map +0 -1
- package/lib-esm/.tsbuildinfo +0 -1
- package/lib-esm/constants.js.map +0 -1
- package/lib-esm/default-theme-config-schema.js.map +0 -1
- package/lib-esm/index.js.map +0 -1
- package/lib-esm/portal-shared-types.js.map +0 -1
- package/lib-esm/reunite-config-schema.js.map +0 -1
- package/lib-esm/root-config-schema.js.map +0 -1
- package/lib-esm/types.js.map +0 -1
- package/src/constants.ts +0 -18
- package/src/default-theme-config-schema.ts +0 -752
- package/src/index.ts +0 -14
- package/src/portal-shared-types.ts +0 -319
- package/src/reunite-config-schema.ts +0 -7
- package/src/root-config-schema.ts +0 -395
- package/src/types.ts +0 -84
- package/tsconfig.build.json +0 -12
- package/tsconfig.json +0 -10
- package/tsconfig.lib-esm.json +0 -15
- /package/{LICENSE.md → LICENSE} +0 -0
|
@@ -338,6 +338,7 @@ export declare const catalogFilterSchema: {
|
|
|
338
338
|
readonly type: {
|
|
339
339
|
readonly type: "string";
|
|
340
340
|
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
341
|
+
readonly default: "checkboxes";
|
|
341
342
|
};
|
|
342
343
|
readonly title: {
|
|
343
344
|
readonly type: "string";
|
|
@@ -472,6 +473,7 @@ export declare const catalogSchema: {
|
|
|
472
473
|
readonly type: {
|
|
473
474
|
readonly type: "string";
|
|
474
475
|
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
476
|
+
readonly default: "checkboxes";
|
|
475
477
|
};
|
|
476
478
|
readonly title: {
|
|
477
479
|
readonly type: "string";
|
|
@@ -1474,7 +1476,7 @@ export declare const themeConfigSchema: {
|
|
|
1474
1476
|
};
|
|
1475
1477
|
readonly text: {
|
|
1476
1478
|
readonly type: "string";
|
|
1477
|
-
readonly default: "Next
|
|
1479
|
+
readonly default: "Next page";
|
|
1478
1480
|
};
|
|
1479
1481
|
};
|
|
1480
1482
|
readonly additionalProperties: false;
|
|
@@ -1488,7 +1490,7 @@ export declare const themeConfigSchema: {
|
|
|
1488
1490
|
};
|
|
1489
1491
|
readonly text: {
|
|
1490
1492
|
readonly type: "string";
|
|
1491
|
-
readonly default: "
|
|
1493
|
+
readonly default: "Previous page";
|
|
1492
1494
|
};
|
|
1493
1495
|
};
|
|
1494
1496
|
readonly additionalProperties: false;
|
|
@@ -1639,11 +1641,604 @@ export declare const themeConfigSchema: {
|
|
|
1639
1641
|
};
|
|
1640
1642
|
readonly openapi: {
|
|
1641
1643
|
readonly type: "object";
|
|
1642
|
-
readonly
|
|
1644
|
+
readonly properties: {
|
|
1645
|
+
readonly licenseKey: {
|
|
1646
|
+
readonly type: "string";
|
|
1647
|
+
};
|
|
1648
|
+
readonly hideLoading: {
|
|
1649
|
+
readonly type: "boolean";
|
|
1650
|
+
};
|
|
1651
|
+
readonly disableRouter: {
|
|
1652
|
+
readonly type: "boolean";
|
|
1653
|
+
};
|
|
1654
|
+
readonly hideSidebar: {
|
|
1655
|
+
readonly type: "boolean";
|
|
1656
|
+
};
|
|
1657
|
+
readonly feedback: {
|
|
1658
|
+
readonly type: "object";
|
|
1659
|
+
readonly properties: {
|
|
1660
|
+
readonly hide: {
|
|
1661
|
+
readonly type: "boolean";
|
|
1662
|
+
readonly default: false;
|
|
1663
|
+
};
|
|
1664
|
+
readonly type: {
|
|
1665
|
+
readonly type: "string";
|
|
1666
|
+
readonly enum: readonly ["rating", "sentiment", "comment", "reasons", "mood", "scale"];
|
|
1667
|
+
readonly default: "sentiment";
|
|
1668
|
+
};
|
|
1669
|
+
readonly settings: {
|
|
1670
|
+
readonly type: "object";
|
|
1671
|
+
readonly properties: {
|
|
1672
|
+
readonly label: {
|
|
1673
|
+
readonly type: "string";
|
|
1674
|
+
};
|
|
1675
|
+
readonly submitText: {
|
|
1676
|
+
readonly type: "string";
|
|
1677
|
+
};
|
|
1678
|
+
readonly buttonText: {
|
|
1679
|
+
readonly type: "string";
|
|
1680
|
+
};
|
|
1681
|
+
readonly component: {
|
|
1682
|
+
readonly type: "string";
|
|
1683
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
1684
|
+
readonly default: "checkbox";
|
|
1685
|
+
};
|
|
1686
|
+
readonly items: {
|
|
1687
|
+
readonly type: "array";
|
|
1688
|
+
readonly items: {
|
|
1689
|
+
readonly type: "string";
|
|
1690
|
+
};
|
|
1691
|
+
readonly minItems: 1;
|
|
1692
|
+
};
|
|
1693
|
+
readonly leftScaleLabel: {
|
|
1694
|
+
readonly type: "string";
|
|
1695
|
+
};
|
|
1696
|
+
readonly rightScaleLabel: {
|
|
1697
|
+
readonly type: "string";
|
|
1698
|
+
};
|
|
1699
|
+
readonly reasons: {
|
|
1700
|
+
readonly type: "object";
|
|
1701
|
+
readonly properties: {
|
|
1702
|
+
readonly hide: {
|
|
1703
|
+
readonly type: "boolean";
|
|
1704
|
+
readonly default: false;
|
|
1705
|
+
};
|
|
1706
|
+
readonly component: {
|
|
1707
|
+
readonly type: "string";
|
|
1708
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
1709
|
+
readonly default: "checkbox";
|
|
1710
|
+
};
|
|
1711
|
+
readonly label: {
|
|
1712
|
+
readonly type: "string";
|
|
1713
|
+
};
|
|
1714
|
+
readonly items: {
|
|
1715
|
+
readonly type: "array";
|
|
1716
|
+
readonly items: {
|
|
1717
|
+
readonly type: "string";
|
|
1718
|
+
};
|
|
1719
|
+
};
|
|
1720
|
+
};
|
|
1721
|
+
readonly additionalProperties: false;
|
|
1722
|
+
};
|
|
1723
|
+
readonly comment: {
|
|
1724
|
+
readonly type: "object";
|
|
1725
|
+
readonly properties: {
|
|
1726
|
+
readonly hide: {
|
|
1727
|
+
readonly type: "boolean";
|
|
1728
|
+
readonly default: false;
|
|
1729
|
+
};
|
|
1730
|
+
readonly label: {
|
|
1731
|
+
readonly type: "string";
|
|
1732
|
+
};
|
|
1733
|
+
readonly likeLabel: {
|
|
1734
|
+
readonly type: "string";
|
|
1735
|
+
};
|
|
1736
|
+
readonly dislikeLabel: {
|
|
1737
|
+
readonly type: "string";
|
|
1738
|
+
};
|
|
1739
|
+
readonly satisfiedLabel: {
|
|
1740
|
+
readonly type: "string";
|
|
1741
|
+
};
|
|
1742
|
+
readonly neutralLabel: {
|
|
1743
|
+
readonly type: "string";
|
|
1744
|
+
};
|
|
1745
|
+
readonly dissatisfiedLabel: {
|
|
1746
|
+
readonly type: "string";
|
|
1747
|
+
};
|
|
1748
|
+
};
|
|
1749
|
+
readonly additionalProperties: false;
|
|
1750
|
+
};
|
|
1751
|
+
};
|
|
1752
|
+
readonly additionalProperties: false;
|
|
1753
|
+
};
|
|
1754
|
+
};
|
|
1755
|
+
readonly additionalProperties: false;
|
|
1756
|
+
readonly default: null;
|
|
1757
|
+
readonly nullable: true;
|
|
1758
|
+
};
|
|
1759
|
+
readonly hideReplay: {
|
|
1760
|
+
readonly type: "boolean";
|
|
1761
|
+
};
|
|
1762
|
+
readonly oAuth2RedirectURI: {
|
|
1763
|
+
readonly type: "string";
|
|
1764
|
+
readonly nullable: true;
|
|
1765
|
+
};
|
|
1766
|
+
readonly corsProxyUrl: {
|
|
1767
|
+
readonly type: "string";
|
|
1768
|
+
};
|
|
1769
|
+
readonly sortRequiredPropsFirst: {
|
|
1770
|
+
readonly type: "boolean";
|
|
1771
|
+
};
|
|
1772
|
+
readonly sanitize: {
|
|
1773
|
+
readonly type: "boolean";
|
|
1774
|
+
};
|
|
1775
|
+
readonly hideDownloadButtons: {
|
|
1776
|
+
readonly type: "boolean";
|
|
1777
|
+
};
|
|
1778
|
+
readonly downloadUrls: {
|
|
1779
|
+
readonly type: "array";
|
|
1780
|
+
readonly items: {
|
|
1781
|
+
readonly type: "object";
|
|
1782
|
+
readonly properties: {
|
|
1783
|
+
readonly title: {
|
|
1784
|
+
readonly type: "string";
|
|
1785
|
+
};
|
|
1786
|
+
readonly url: {
|
|
1787
|
+
readonly type: "string";
|
|
1788
|
+
};
|
|
1789
|
+
};
|
|
1790
|
+
readonly required: readonly ["url"];
|
|
1791
|
+
readonly additionalProperties: false;
|
|
1792
|
+
};
|
|
1793
|
+
};
|
|
1794
|
+
readonly onlyRequiredInSamples: {
|
|
1795
|
+
readonly type: "boolean";
|
|
1796
|
+
};
|
|
1797
|
+
readonly generatedSamplesMaxDepth: {
|
|
1798
|
+
readonly oneOf: readonly [{
|
|
1799
|
+
readonly type: "number";
|
|
1800
|
+
}, {
|
|
1801
|
+
readonly type: "string";
|
|
1802
|
+
}];
|
|
1803
|
+
};
|
|
1804
|
+
readonly showExtensions: {
|
|
1805
|
+
readonly oneOf: readonly [{
|
|
1806
|
+
readonly type: "boolean";
|
|
1807
|
+
}, {
|
|
1808
|
+
readonly type: "string";
|
|
1809
|
+
}, {
|
|
1810
|
+
readonly type: "array";
|
|
1811
|
+
readonly items: {
|
|
1812
|
+
readonly type: "string";
|
|
1813
|
+
};
|
|
1814
|
+
}];
|
|
1815
|
+
};
|
|
1816
|
+
readonly hideSchemaTitles: {
|
|
1817
|
+
readonly type: "boolean";
|
|
1818
|
+
};
|
|
1819
|
+
readonly jsonSamplesExpandLevel: {
|
|
1820
|
+
readonly oneOf: readonly [{
|
|
1821
|
+
readonly type: "number";
|
|
1822
|
+
}, {
|
|
1823
|
+
readonly type: "string";
|
|
1824
|
+
}];
|
|
1825
|
+
};
|
|
1826
|
+
readonly schemasExpansionLevel: {
|
|
1827
|
+
readonly oneOf: readonly [{
|
|
1828
|
+
readonly type: "number";
|
|
1829
|
+
}, {
|
|
1830
|
+
readonly type: "string";
|
|
1831
|
+
}];
|
|
1832
|
+
};
|
|
1833
|
+
readonly mockServer: {
|
|
1834
|
+
readonly type: "object";
|
|
1835
|
+
readonly properties: {
|
|
1836
|
+
readonly url: {
|
|
1837
|
+
readonly type: "string";
|
|
1838
|
+
};
|
|
1839
|
+
readonly position: {
|
|
1840
|
+
readonly enum: readonly ["first", "last", "replace", "off"];
|
|
1841
|
+
};
|
|
1842
|
+
readonly description: {
|
|
1843
|
+
readonly type: "string";
|
|
1844
|
+
};
|
|
1845
|
+
};
|
|
1846
|
+
};
|
|
1847
|
+
readonly maxDisplayedEnumValues: {
|
|
1848
|
+
readonly type: "number";
|
|
1849
|
+
};
|
|
1850
|
+
readonly schemaDefinitionsTagName: {
|
|
1851
|
+
readonly type: "string";
|
|
1852
|
+
};
|
|
1853
|
+
readonly layout: {
|
|
1854
|
+
readonly type: "string";
|
|
1855
|
+
readonly enum: readonly ["stacked", "three-panel"];
|
|
1856
|
+
};
|
|
1857
|
+
readonly hideInfoMetadata: {
|
|
1858
|
+
readonly type: "boolean";
|
|
1859
|
+
};
|
|
1860
|
+
readonly events: {
|
|
1861
|
+
readonly type: "object";
|
|
1862
|
+
};
|
|
1863
|
+
readonly skipBundle: {
|
|
1864
|
+
readonly type: "boolean";
|
|
1865
|
+
};
|
|
1866
|
+
readonly routingBasePath: {
|
|
1867
|
+
readonly type: "string";
|
|
1868
|
+
};
|
|
1869
|
+
readonly codeSamples: {
|
|
1870
|
+
readonly type: "object";
|
|
1871
|
+
readonly properties: {
|
|
1872
|
+
readonly languages: {
|
|
1873
|
+
readonly type: "array";
|
|
1874
|
+
readonly items: {
|
|
1875
|
+
readonly type: "object";
|
|
1876
|
+
readonly properties: {
|
|
1877
|
+
readonly lang: {
|
|
1878
|
+
readonly type: "string";
|
|
1879
|
+
readonly enum: readonly ["curl", "JavaScript", "Node.js", "Python", "Java8+Apache", "Java", "C#", "C#+Newtonsoft", "PHP", "Go", "Ruby", "R", "Payload"];
|
|
1880
|
+
};
|
|
1881
|
+
readonly label: {
|
|
1882
|
+
readonly type: "string";
|
|
1883
|
+
};
|
|
1884
|
+
readonly options: {
|
|
1885
|
+
readonly type: "object";
|
|
1886
|
+
readonly properties: {
|
|
1887
|
+
readonly indent: {
|
|
1888
|
+
readonly type: "string";
|
|
1889
|
+
};
|
|
1890
|
+
readonly withImports: {
|
|
1891
|
+
readonly type: "boolean";
|
|
1892
|
+
};
|
|
1893
|
+
readonly withComments: {
|
|
1894
|
+
readonly type: "boolean";
|
|
1895
|
+
};
|
|
1896
|
+
readonly binary: {
|
|
1897
|
+
readonly type: "boolean";
|
|
1898
|
+
};
|
|
1899
|
+
readonly credentials: {
|
|
1900
|
+
readonly type: "string";
|
|
1901
|
+
readonly enum: readonly ["omit", "same-origin", "include"];
|
|
1902
|
+
};
|
|
1903
|
+
};
|
|
1904
|
+
readonly additionalProperties: false;
|
|
1905
|
+
};
|
|
1906
|
+
};
|
|
1907
|
+
readonly required: readonly ["lang"];
|
|
1908
|
+
readonly additionalProperties: false;
|
|
1909
|
+
};
|
|
1910
|
+
};
|
|
1911
|
+
readonly skipOptionalParameters: {
|
|
1912
|
+
readonly type: "boolean";
|
|
1913
|
+
};
|
|
1914
|
+
readonly withOAuth2Call: {
|
|
1915
|
+
readonly type: "boolean";
|
|
1916
|
+
};
|
|
1917
|
+
};
|
|
1918
|
+
readonly required: readonly ["languages"];
|
|
1919
|
+
readonly additionalProperties: false;
|
|
1920
|
+
};
|
|
1921
|
+
readonly ignoreNamedSchemas: {
|
|
1922
|
+
readonly oneOf: readonly [{
|
|
1923
|
+
readonly type: "array";
|
|
1924
|
+
readonly items: {
|
|
1925
|
+
readonly type: "string";
|
|
1926
|
+
};
|
|
1927
|
+
}, {
|
|
1928
|
+
readonly type: "string";
|
|
1929
|
+
}];
|
|
1930
|
+
};
|
|
1931
|
+
readonly hidePropertiesPrefix: {
|
|
1932
|
+
readonly type: "boolean";
|
|
1933
|
+
};
|
|
1934
|
+
readonly excludeFromSearch: {
|
|
1935
|
+
readonly type: "boolean";
|
|
1936
|
+
};
|
|
1937
|
+
};
|
|
1938
|
+
readonly additionalProperties: false;
|
|
1643
1939
|
};
|
|
1644
1940
|
readonly graphql: {
|
|
1645
1941
|
readonly type: "object";
|
|
1646
|
-
readonly
|
|
1942
|
+
readonly properties: {
|
|
1943
|
+
readonly pagination: {
|
|
1944
|
+
readonly type: "string";
|
|
1945
|
+
readonly enum: readonly ["none", "section", "item"];
|
|
1946
|
+
};
|
|
1947
|
+
readonly navigation: {
|
|
1948
|
+
readonly type: "object";
|
|
1949
|
+
readonly properties: {
|
|
1950
|
+
readonly contentPrefix: {
|
|
1951
|
+
readonly type: "string";
|
|
1952
|
+
};
|
|
1953
|
+
readonly menuPrefix: {
|
|
1954
|
+
readonly type: "string";
|
|
1955
|
+
};
|
|
1956
|
+
};
|
|
1957
|
+
};
|
|
1958
|
+
readonly hidePaginationButtons: {
|
|
1959
|
+
readonly type: "boolean";
|
|
1960
|
+
};
|
|
1961
|
+
readonly menu: {
|
|
1962
|
+
readonly type: "object";
|
|
1963
|
+
readonly properties: {
|
|
1964
|
+
readonly requireExactGroups: {
|
|
1965
|
+
readonly type: "boolean";
|
|
1966
|
+
};
|
|
1967
|
+
readonly groups: {
|
|
1968
|
+
readonly type: "array";
|
|
1969
|
+
readonly items: {
|
|
1970
|
+
readonly type: "object";
|
|
1971
|
+
readonly properties: {
|
|
1972
|
+
readonly name: {
|
|
1973
|
+
readonly type: "string";
|
|
1974
|
+
};
|
|
1975
|
+
readonly items: {
|
|
1976
|
+
readonly type: "object";
|
|
1977
|
+
readonly properties: {
|
|
1978
|
+
readonly includeByName: {
|
|
1979
|
+
readonly type: "array";
|
|
1980
|
+
readonly items: {
|
|
1981
|
+
readonly type: "string";
|
|
1982
|
+
};
|
|
1983
|
+
};
|
|
1984
|
+
readonly excludeByName: {
|
|
1985
|
+
readonly type: "array";
|
|
1986
|
+
readonly items: {
|
|
1987
|
+
readonly type: "string";
|
|
1988
|
+
};
|
|
1989
|
+
};
|
|
1990
|
+
};
|
|
1991
|
+
readonly additionalProperties: false;
|
|
1992
|
+
};
|
|
1993
|
+
readonly queries: {
|
|
1994
|
+
readonly type: "object";
|
|
1995
|
+
readonly properties: {
|
|
1996
|
+
readonly includeByName: {
|
|
1997
|
+
readonly type: "array";
|
|
1998
|
+
readonly items: {
|
|
1999
|
+
readonly type: "string";
|
|
2000
|
+
};
|
|
2001
|
+
};
|
|
2002
|
+
readonly excludeByName: {
|
|
2003
|
+
readonly type: "array";
|
|
2004
|
+
readonly items: {
|
|
2005
|
+
readonly type: "string";
|
|
2006
|
+
};
|
|
2007
|
+
};
|
|
2008
|
+
};
|
|
2009
|
+
readonly additionalProperties: false;
|
|
2010
|
+
};
|
|
2011
|
+
readonly mutations: {
|
|
2012
|
+
readonly type: "object";
|
|
2013
|
+
readonly properties: {
|
|
2014
|
+
readonly includeByName: {
|
|
2015
|
+
readonly type: "array";
|
|
2016
|
+
readonly items: {
|
|
2017
|
+
readonly type: "string";
|
|
2018
|
+
};
|
|
2019
|
+
};
|
|
2020
|
+
readonly excludeByName: {
|
|
2021
|
+
readonly type: "array";
|
|
2022
|
+
readonly items: {
|
|
2023
|
+
readonly type: "string";
|
|
2024
|
+
};
|
|
2025
|
+
};
|
|
2026
|
+
};
|
|
2027
|
+
readonly additionalProperties: false;
|
|
2028
|
+
};
|
|
2029
|
+
readonly subscriptions: {
|
|
2030
|
+
readonly type: "object";
|
|
2031
|
+
readonly properties: {
|
|
2032
|
+
readonly includeByName: {
|
|
2033
|
+
readonly type: "array";
|
|
2034
|
+
readonly items: {
|
|
2035
|
+
readonly type: "string";
|
|
2036
|
+
};
|
|
2037
|
+
};
|
|
2038
|
+
readonly excludeByName: {
|
|
2039
|
+
readonly type: "array";
|
|
2040
|
+
readonly items: {
|
|
2041
|
+
readonly type: "string";
|
|
2042
|
+
};
|
|
2043
|
+
};
|
|
2044
|
+
};
|
|
2045
|
+
readonly additionalProperties: false;
|
|
2046
|
+
};
|
|
2047
|
+
readonly types: {
|
|
2048
|
+
readonly type: "object";
|
|
2049
|
+
readonly properties: {
|
|
2050
|
+
readonly includeByName: {
|
|
2051
|
+
readonly type: "array";
|
|
2052
|
+
readonly items: {
|
|
2053
|
+
readonly type: "string";
|
|
2054
|
+
};
|
|
2055
|
+
};
|
|
2056
|
+
readonly excludeByName: {
|
|
2057
|
+
readonly type: "array";
|
|
2058
|
+
readonly items: {
|
|
2059
|
+
readonly type: "string";
|
|
2060
|
+
};
|
|
2061
|
+
};
|
|
2062
|
+
};
|
|
2063
|
+
readonly additionalProperties: false;
|
|
2064
|
+
};
|
|
2065
|
+
readonly directives: {
|
|
2066
|
+
readonly type: "object";
|
|
2067
|
+
readonly properties: {
|
|
2068
|
+
readonly includeByName: {
|
|
2069
|
+
readonly type: "array";
|
|
2070
|
+
readonly items: {
|
|
2071
|
+
readonly type: "string";
|
|
2072
|
+
};
|
|
2073
|
+
};
|
|
2074
|
+
readonly excludeByName: {
|
|
2075
|
+
readonly type: "array";
|
|
2076
|
+
readonly items: {
|
|
2077
|
+
readonly type: "string";
|
|
2078
|
+
};
|
|
2079
|
+
};
|
|
2080
|
+
};
|
|
2081
|
+
readonly additionalProperties: false;
|
|
2082
|
+
};
|
|
2083
|
+
};
|
|
2084
|
+
readonly required: readonly ["name"];
|
|
2085
|
+
readonly additionalProperties: false;
|
|
2086
|
+
};
|
|
2087
|
+
};
|
|
2088
|
+
readonly otherItemsGroupName: {
|
|
2089
|
+
readonly type: "string";
|
|
2090
|
+
};
|
|
2091
|
+
readonly initialLoadState: {
|
|
2092
|
+
readonly type: "string";
|
|
2093
|
+
readonly enum: readonly ["all-expanded", "default"];
|
|
2094
|
+
};
|
|
2095
|
+
};
|
|
2096
|
+
readonly additionalProperties: false;
|
|
2097
|
+
};
|
|
2098
|
+
readonly sidebar: {
|
|
2099
|
+
readonly type: "object";
|
|
2100
|
+
readonly properties: {
|
|
2101
|
+
readonly hide: {
|
|
2102
|
+
readonly type: "boolean";
|
|
2103
|
+
};
|
|
2104
|
+
};
|
|
2105
|
+
};
|
|
2106
|
+
readonly apiLogo: {
|
|
2107
|
+
readonly type: "object";
|
|
2108
|
+
readonly properties: {
|
|
2109
|
+
readonly imageUrl: {
|
|
2110
|
+
readonly type: "string";
|
|
2111
|
+
};
|
|
2112
|
+
readonly href: {
|
|
2113
|
+
readonly type: "string";
|
|
2114
|
+
};
|
|
2115
|
+
readonly altText: {
|
|
2116
|
+
readonly type: "string";
|
|
2117
|
+
};
|
|
2118
|
+
readonly backgroundColor: {
|
|
2119
|
+
readonly type: "string";
|
|
2120
|
+
};
|
|
2121
|
+
};
|
|
2122
|
+
};
|
|
2123
|
+
readonly jsonSamplesExpandLevel: {
|
|
2124
|
+
readonly type: "number";
|
|
2125
|
+
};
|
|
2126
|
+
readonly sampleMaxInlineArgs: {
|
|
2127
|
+
readonly type: "number";
|
|
2128
|
+
};
|
|
2129
|
+
readonly licenseKey: {
|
|
2130
|
+
readonly type: "string";
|
|
2131
|
+
};
|
|
2132
|
+
readonly fieldExpandLevel: {
|
|
2133
|
+
readonly type: "number";
|
|
2134
|
+
};
|
|
2135
|
+
readonly baseUrlPath: {
|
|
2136
|
+
readonly type: "string";
|
|
2137
|
+
};
|
|
2138
|
+
readonly feedback: {
|
|
2139
|
+
readonly type: "object";
|
|
2140
|
+
readonly properties: {
|
|
2141
|
+
readonly hide: {
|
|
2142
|
+
readonly type: "boolean";
|
|
2143
|
+
readonly default: false;
|
|
2144
|
+
};
|
|
2145
|
+
readonly type: {
|
|
2146
|
+
readonly type: "string";
|
|
2147
|
+
readonly enum: readonly ["rating", "sentiment", "comment", "reasons", "mood", "scale"];
|
|
2148
|
+
readonly default: "sentiment";
|
|
2149
|
+
};
|
|
2150
|
+
readonly settings: {
|
|
2151
|
+
readonly type: "object";
|
|
2152
|
+
readonly properties: {
|
|
2153
|
+
readonly label: {
|
|
2154
|
+
readonly type: "string";
|
|
2155
|
+
};
|
|
2156
|
+
readonly submitText: {
|
|
2157
|
+
readonly type: "string";
|
|
2158
|
+
};
|
|
2159
|
+
readonly buttonText: {
|
|
2160
|
+
readonly type: "string";
|
|
2161
|
+
};
|
|
2162
|
+
readonly component: {
|
|
2163
|
+
readonly type: "string";
|
|
2164
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
2165
|
+
readonly default: "checkbox";
|
|
2166
|
+
};
|
|
2167
|
+
readonly items: {
|
|
2168
|
+
readonly type: "array";
|
|
2169
|
+
readonly items: {
|
|
2170
|
+
readonly type: "string";
|
|
2171
|
+
};
|
|
2172
|
+
readonly minItems: 1;
|
|
2173
|
+
};
|
|
2174
|
+
readonly leftScaleLabel: {
|
|
2175
|
+
readonly type: "string";
|
|
2176
|
+
};
|
|
2177
|
+
readonly rightScaleLabel: {
|
|
2178
|
+
readonly type: "string";
|
|
2179
|
+
};
|
|
2180
|
+
readonly reasons: {
|
|
2181
|
+
readonly type: "object";
|
|
2182
|
+
readonly properties: {
|
|
2183
|
+
readonly hide: {
|
|
2184
|
+
readonly type: "boolean";
|
|
2185
|
+
readonly default: false;
|
|
2186
|
+
};
|
|
2187
|
+
readonly component: {
|
|
2188
|
+
readonly type: "string";
|
|
2189
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
2190
|
+
readonly default: "checkbox";
|
|
2191
|
+
};
|
|
2192
|
+
readonly label: {
|
|
2193
|
+
readonly type: "string";
|
|
2194
|
+
};
|
|
2195
|
+
readonly items: {
|
|
2196
|
+
readonly type: "array";
|
|
2197
|
+
readonly items: {
|
|
2198
|
+
readonly type: "string";
|
|
2199
|
+
};
|
|
2200
|
+
};
|
|
2201
|
+
};
|
|
2202
|
+
readonly additionalProperties: false;
|
|
2203
|
+
};
|
|
2204
|
+
readonly comment: {
|
|
2205
|
+
readonly type: "object";
|
|
2206
|
+
readonly properties: {
|
|
2207
|
+
readonly hide: {
|
|
2208
|
+
readonly type: "boolean";
|
|
2209
|
+
readonly default: false;
|
|
2210
|
+
};
|
|
2211
|
+
readonly label: {
|
|
2212
|
+
readonly type: "string";
|
|
2213
|
+
};
|
|
2214
|
+
readonly likeLabel: {
|
|
2215
|
+
readonly type: "string";
|
|
2216
|
+
};
|
|
2217
|
+
readonly dislikeLabel: {
|
|
2218
|
+
readonly type: "string";
|
|
2219
|
+
};
|
|
2220
|
+
readonly satisfiedLabel: {
|
|
2221
|
+
readonly type: "string";
|
|
2222
|
+
};
|
|
2223
|
+
readonly neutralLabel: {
|
|
2224
|
+
readonly type: "string";
|
|
2225
|
+
};
|
|
2226
|
+
readonly dissatisfiedLabel: {
|
|
2227
|
+
readonly type: "string";
|
|
2228
|
+
};
|
|
2229
|
+
};
|
|
2230
|
+
readonly additionalProperties: false;
|
|
2231
|
+
};
|
|
2232
|
+
};
|
|
2233
|
+
readonly additionalProperties: false;
|
|
2234
|
+
};
|
|
2235
|
+
};
|
|
2236
|
+
readonly additionalProperties: false;
|
|
2237
|
+
readonly default: null;
|
|
2238
|
+
readonly nullable: true;
|
|
2239
|
+
};
|
|
2240
|
+
};
|
|
2241
|
+
readonly additionalProperties: false;
|
|
1647
2242
|
};
|
|
1648
2243
|
readonly analytics: {
|
|
1649
2244
|
readonly type: "object";
|
|
@@ -1883,21 +2478,13 @@ export declare const themeConfigSchema: {
|
|
|
1883
2478
|
};
|
|
1884
2479
|
};
|
|
1885
2480
|
};
|
|
1886
|
-
readonly
|
|
2481
|
+
readonly userMenu: {
|
|
1887
2482
|
readonly type: "object";
|
|
1888
2483
|
readonly properties: {
|
|
1889
2484
|
readonly hide: {
|
|
1890
2485
|
readonly type: "boolean";
|
|
1891
2486
|
};
|
|
1892
|
-
readonly
|
|
1893
|
-
readonly type: "string";
|
|
1894
|
-
readonly default: "Login";
|
|
1895
|
-
};
|
|
1896
|
-
readonly logoutLabel: {
|
|
1897
|
-
readonly type: "string";
|
|
1898
|
-
readonly default: "Logout";
|
|
1899
|
-
};
|
|
1900
|
-
readonly menu: {
|
|
2487
|
+
readonly items: {
|
|
1901
2488
|
readonly type: "array";
|
|
1902
2489
|
readonly items: {
|
|
1903
2490
|
readonly type: "object";
|
|
@@ -1919,6 +2506,9 @@ export declare const themeConfigSchema: {
|
|
|
1919
2506
|
};
|
|
1920
2507
|
readonly default: readonly [];
|
|
1921
2508
|
};
|
|
2509
|
+
readonly hideLoginButton: {
|
|
2510
|
+
readonly type: "boolean";
|
|
2511
|
+
};
|
|
1922
2512
|
};
|
|
1923
2513
|
readonly additionalProperties: false;
|
|
1924
2514
|
readonly default: {};
|
|
@@ -1984,6 +2574,7 @@ export declare const themeConfigSchema: {
|
|
|
1984
2574
|
readonly type: {
|
|
1985
2575
|
readonly type: "string";
|
|
1986
2576
|
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
2577
|
+
readonly default: "checkboxes";
|
|
1987
2578
|
};
|
|
1988
2579
|
readonly title: {
|
|
1989
2580
|
readonly type: "string";
|