@nxtedition/types 23.0.61 → 23.0.62
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/common/index.d.ts +1 -0
- package/dist/common/index.js +1 -0
- package/dist/common/settings.d.ts +10 -0
- package/dist/common/subtitle.d.ts +4 -0
- package/dist/common/subtitle.js +1 -0
- package/dist/nxtpression.d.ts +69 -2
- package/dist/records/domains/asset.d.ts +1 -1
- package/dist/records/domains/folder.d.ts +6 -0
- package/dist/records/domains/folder.js +1 -0
- package/dist/records/domains/index.d.ts +3 -1
- package/dist/records/domains/index.js +1 -0
- package/dist/records/domains/settings.d.ts +5 -0
- package/dist/records/exact/media.d.ts +40 -1
- package/dist/records/validate/assert-guard.js +911 -219
- package/dist/records/validate/assert.js +914 -219
- package/dist/records/validate/is.js +50 -7
- package/dist/records/validate/schemas.js +505 -2
- package/dist/records/validate/stringify.js +183 -11
- package/dist/records/validate/utils.js +2 -2
- package/dist/records/validate/validate-equals.js +1320 -246
- package/dist/records/validate/validate.js +806 -192
- package/dist/rpc.d.ts +3 -2
- package/package.json +1 -1
|
@@ -1531,6 +1531,224 @@ function _schemasExactRecord(name) {
|
|
|
1531
1531
|
]
|
|
1532
1532
|
};
|
|
1533
1533
|
}
|
|
1534
|
+
case "media.transcribe": {
|
|
1535
|
+
return {
|
|
1536
|
+
version: "3.1",
|
|
1537
|
+
components: {
|
|
1538
|
+
schemas: {
|
|
1539
|
+
MediaTranscribeRecord: {
|
|
1540
|
+
type: "object",
|
|
1541
|
+
properties: {
|
|
1542
|
+
engines: {
|
|
1543
|
+
$ref: "#/components/schemas/Recordstringstring"
|
|
1544
|
+
},
|
|
1545
|
+
languages: {
|
|
1546
|
+
$ref: "#/components/schemas/Recordstringstring"
|
|
1547
|
+
},
|
|
1548
|
+
translate: {
|
|
1549
|
+
type: "object",
|
|
1550
|
+
properties: {
|
|
1551
|
+
languages: {
|
|
1552
|
+
$ref: "#/components/schemas/Recordstringstring"
|
|
1553
|
+
}
|
|
1554
|
+
},
|
|
1555
|
+
required: [
|
|
1556
|
+
"languages"
|
|
1557
|
+
]
|
|
1558
|
+
},
|
|
1559
|
+
replacers: {
|
|
1560
|
+
$ref: "#/components/schemas/RecordstringTranscribeReplacerTranscribeReplacer"
|
|
1561
|
+
}
|
|
1562
|
+
},
|
|
1563
|
+
required: [
|
|
1564
|
+
"engines",
|
|
1565
|
+
"languages"
|
|
1566
|
+
]
|
|
1567
|
+
},
|
|
1568
|
+
Recordstringstring: {
|
|
1569
|
+
type: "object",
|
|
1570
|
+
properties: {},
|
|
1571
|
+
required: [],
|
|
1572
|
+
description: "Construct a type with a set of properties K of type T",
|
|
1573
|
+
additionalProperties: {
|
|
1574
|
+
type: "string"
|
|
1575
|
+
}
|
|
1576
|
+
},
|
|
1577
|
+
RecordstringTranscribeReplacerTranscribeReplacer: {
|
|
1578
|
+
type: "object",
|
|
1579
|
+
properties: {},
|
|
1580
|
+
required: [],
|
|
1581
|
+
description: "Construct a type with a set of properties K of type T",
|
|
1582
|
+
additionalProperties: {
|
|
1583
|
+
oneOf: [
|
|
1584
|
+
{
|
|
1585
|
+
type: "array",
|
|
1586
|
+
items: {
|
|
1587
|
+
$ref: "#/components/schemas/TranscribeReplacer"
|
|
1588
|
+
}
|
|
1589
|
+
},
|
|
1590
|
+
{
|
|
1591
|
+
$ref: "#/components/schemas/TranscribeReplaceReplacer"
|
|
1592
|
+
},
|
|
1593
|
+
{
|
|
1594
|
+
$ref: "#/components/schemas/TranscribeForEachWordReplacer"
|
|
1595
|
+
}
|
|
1596
|
+
]
|
|
1597
|
+
}
|
|
1598
|
+
},
|
|
1599
|
+
TranscribeReplacer: {
|
|
1600
|
+
oneOf: [
|
|
1601
|
+
{
|
|
1602
|
+
$ref: "#/components/schemas/TranscribeReplaceReplacer"
|
|
1603
|
+
},
|
|
1604
|
+
{
|
|
1605
|
+
$ref: "#/components/schemas/TranscribeForEachWordReplacer"
|
|
1606
|
+
}
|
|
1607
|
+
]
|
|
1608
|
+
},
|
|
1609
|
+
TranscribeReplaceReplacer: {
|
|
1610
|
+
type: "object",
|
|
1611
|
+
properties: {
|
|
1612
|
+
type: {
|
|
1613
|
+
"const": "replace"
|
|
1614
|
+
},
|
|
1615
|
+
pattern: {
|
|
1616
|
+
description: "Expression that should return RegExp or string arg to new RegExp"
|
|
1617
|
+
},
|
|
1618
|
+
replacement: {
|
|
1619
|
+
$ref: "#/components/schemas/Nxtpressionstring((...argsunknown)=string)__type"
|
|
1620
|
+
},
|
|
1621
|
+
flags: {
|
|
1622
|
+
type: "string"
|
|
1623
|
+
},
|
|
1624
|
+
_comment: {
|
|
1625
|
+
type: "string"
|
|
1626
|
+
}
|
|
1627
|
+
},
|
|
1628
|
+
required: [
|
|
1629
|
+
"pattern",
|
|
1630
|
+
"replacement"
|
|
1631
|
+
]
|
|
1632
|
+
},
|
|
1633
|
+
"Nxtpressionstring((...argsunknown)=string)__type": {
|
|
1634
|
+
oneOf: [
|
|
1635
|
+
{
|
|
1636
|
+
type: "string"
|
|
1637
|
+
},
|
|
1638
|
+
{
|
|
1639
|
+
type: "object",
|
|
1640
|
+
properties: {
|
|
1641
|
+
__context: {
|
|
1642
|
+
type: "object",
|
|
1643
|
+
properties: {
|
|
1644
|
+
item: {
|
|
1645
|
+
type: "string"
|
|
1646
|
+
}
|
|
1647
|
+
},
|
|
1648
|
+
required: [
|
|
1649
|
+
"item"
|
|
1650
|
+
],
|
|
1651
|
+
description: "TS-HACK: this property doesn't really exist on the nxtpression string,\nit is only here to make sure the generic Context won't get stripped."
|
|
1652
|
+
},
|
|
1653
|
+
__returnValue: {
|
|
1654
|
+
type: "string",
|
|
1655
|
+
description: "TS-HACK: this property doesn't really exist on the nxtpression string,\nit is only here to make sure the generic Context won't get stripped."
|
|
1656
|
+
}
|
|
1657
|
+
},
|
|
1658
|
+
required: [
|
|
1659
|
+
"__context",
|
|
1660
|
+
"__returnValue"
|
|
1661
|
+
]
|
|
1662
|
+
}
|
|
1663
|
+
]
|
|
1664
|
+
},
|
|
1665
|
+
TranscribeForEachWordReplacer: {
|
|
1666
|
+
type: "object",
|
|
1667
|
+
properties: {
|
|
1668
|
+
type: {
|
|
1669
|
+
"const": "items"
|
|
1670
|
+
},
|
|
1671
|
+
items: {
|
|
1672
|
+
type: "array",
|
|
1673
|
+
items: {
|
|
1674
|
+
type: "string"
|
|
1675
|
+
}
|
|
1676
|
+
},
|
|
1677
|
+
_comment: {
|
|
1678
|
+
type: "string"
|
|
1679
|
+
},
|
|
1680
|
+
replacers: {
|
|
1681
|
+
type: "array",
|
|
1682
|
+
items: {
|
|
1683
|
+
type: "object",
|
|
1684
|
+
properties: {
|
|
1685
|
+
pattern: {
|
|
1686
|
+
description: "Expression that should return RegExp or string arg to new RegExp"
|
|
1687
|
+
},
|
|
1688
|
+
replacement: {
|
|
1689
|
+
$ref: "#/components/schemas/Nxtpressionstring((...argsunknown)=string)__type.o1"
|
|
1690
|
+
},
|
|
1691
|
+
flags: {
|
|
1692
|
+
type: "string"
|
|
1693
|
+
},
|
|
1694
|
+
_comment: {
|
|
1695
|
+
type: "string"
|
|
1696
|
+
}
|
|
1697
|
+
},
|
|
1698
|
+
required: [
|
|
1699
|
+
"pattern",
|
|
1700
|
+
"replacement"
|
|
1701
|
+
]
|
|
1702
|
+
}
|
|
1703
|
+
}
|
|
1704
|
+
},
|
|
1705
|
+
required: [
|
|
1706
|
+
"type",
|
|
1707
|
+
"items",
|
|
1708
|
+
"replacers"
|
|
1709
|
+
]
|
|
1710
|
+
},
|
|
1711
|
+
"Nxtpressionstring((...argsunknown)=string)__type.o1": {
|
|
1712
|
+
oneOf: [
|
|
1713
|
+
{
|
|
1714
|
+
type: "string"
|
|
1715
|
+
},
|
|
1716
|
+
{
|
|
1717
|
+
type: "object",
|
|
1718
|
+
properties: {
|
|
1719
|
+
__context: {
|
|
1720
|
+
type: "object",
|
|
1721
|
+
properties: {
|
|
1722
|
+
item: {
|
|
1723
|
+
type: "string"
|
|
1724
|
+
}
|
|
1725
|
+
},
|
|
1726
|
+
required: [
|
|
1727
|
+
"item"
|
|
1728
|
+
],
|
|
1729
|
+
description: "TS-HACK: this property doesn't really exist on the nxtpression string,\nit is only here to make sure the generic Context won't get stripped."
|
|
1730
|
+
},
|
|
1731
|
+
__returnValue: {
|
|
1732
|
+
type: "string",
|
|
1733
|
+
description: "TS-HACK: this property doesn't really exist on the nxtpression string,\nit is only here to make sure the generic Context won't get stripped."
|
|
1734
|
+
}
|
|
1735
|
+
},
|
|
1736
|
+
required: [
|
|
1737
|
+
"__context",
|
|
1738
|
+
"__returnValue"
|
|
1739
|
+
]
|
|
1740
|
+
}
|
|
1741
|
+
]
|
|
1742
|
+
}
|
|
1743
|
+
}
|
|
1744
|
+
},
|
|
1745
|
+
schemas: [
|
|
1746
|
+
{
|
|
1747
|
+
$ref: "#/components/schemas/MediaTranscribeRecord"
|
|
1748
|
+
}
|
|
1749
|
+
]
|
|
1750
|
+
};
|
|
1751
|
+
}
|
|
1534
1752
|
case "media.transcribe?": {
|
|
1535
1753
|
return {
|
|
1536
1754
|
version: "3.1",
|
|
@@ -1555,6 +1773,9 @@ function _schemasExactRecord(name) {
|
|
|
1555
1773
|
required: [
|
|
1556
1774
|
"languages"
|
|
1557
1775
|
]
|
|
1776
|
+
},
|
|
1777
|
+
replacers: {
|
|
1778
|
+
$ref: "#/components/schemas/RecordstringTranscribeReplacerTranscribeReplacer"
|
|
1558
1779
|
}
|
|
1559
1780
|
},
|
|
1560
1781
|
required: [
|
|
@@ -1570,6 +1791,172 @@ function _schemasExactRecord(name) {
|
|
|
1570
1791
|
additionalProperties: {
|
|
1571
1792
|
type: "string"
|
|
1572
1793
|
}
|
|
1794
|
+
},
|
|
1795
|
+
RecordstringTranscribeReplacerTranscribeReplacer: {
|
|
1796
|
+
type: "object",
|
|
1797
|
+
properties: {},
|
|
1798
|
+
required: [],
|
|
1799
|
+
description: "Construct a type with a set of properties K of type T",
|
|
1800
|
+
additionalProperties: {
|
|
1801
|
+
oneOf: [
|
|
1802
|
+
{
|
|
1803
|
+
type: "array",
|
|
1804
|
+
items: {
|
|
1805
|
+
$ref: "#/components/schemas/TranscribeReplacer"
|
|
1806
|
+
}
|
|
1807
|
+
},
|
|
1808
|
+
{
|
|
1809
|
+
$ref: "#/components/schemas/TranscribeReplaceReplacer"
|
|
1810
|
+
},
|
|
1811
|
+
{
|
|
1812
|
+
$ref: "#/components/schemas/TranscribeForEachWordReplacer"
|
|
1813
|
+
}
|
|
1814
|
+
]
|
|
1815
|
+
}
|
|
1816
|
+
},
|
|
1817
|
+
TranscribeReplacer: {
|
|
1818
|
+
oneOf: [
|
|
1819
|
+
{
|
|
1820
|
+
$ref: "#/components/schemas/TranscribeReplaceReplacer"
|
|
1821
|
+
},
|
|
1822
|
+
{
|
|
1823
|
+
$ref: "#/components/schemas/TranscribeForEachWordReplacer"
|
|
1824
|
+
}
|
|
1825
|
+
]
|
|
1826
|
+
},
|
|
1827
|
+
TranscribeReplaceReplacer: {
|
|
1828
|
+
type: "object",
|
|
1829
|
+
properties: {
|
|
1830
|
+
type: {
|
|
1831
|
+
"const": "replace"
|
|
1832
|
+
},
|
|
1833
|
+
pattern: {
|
|
1834
|
+
description: "Expression that should return RegExp or string arg to new RegExp"
|
|
1835
|
+
},
|
|
1836
|
+
replacement: {
|
|
1837
|
+
$ref: "#/components/schemas/Nxtpressionstring((...argsunknown)=string)__type"
|
|
1838
|
+
},
|
|
1839
|
+
flags: {
|
|
1840
|
+
type: "string"
|
|
1841
|
+
},
|
|
1842
|
+
_comment: {
|
|
1843
|
+
type: "string"
|
|
1844
|
+
}
|
|
1845
|
+
},
|
|
1846
|
+
required: [
|
|
1847
|
+
"pattern",
|
|
1848
|
+
"replacement"
|
|
1849
|
+
]
|
|
1850
|
+
},
|
|
1851
|
+
"Nxtpressionstring((...argsunknown)=string)__type": {
|
|
1852
|
+
oneOf: [
|
|
1853
|
+
{
|
|
1854
|
+
type: "string"
|
|
1855
|
+
},
|
|
1856
|
+
{
|
|
1857
|
+
type: "object",
|
|
1858
|
+
properties: {
|
|
1859
|
+
__context: {
|
|
1860
|
+
type: "object",
|
|
1861
|
+
properties: {
|
|
1862
|
+
item: {
|
|
1863
|
+
type: "string"
|
|
1864
|
+
}
|
|
1865
|
+
},
|
|
1866
|
+
required: [
|
|
1867
|
+
"item"
|
|
1868
|
+
],
|
|
1869
|
+
description: "TS-HACK: this property doesn't really exist on the nxtpression string,\nit is only here to make sure the generic Context won't get stripped."
|
|
1870
|
+
},
|
|
1871
|
+
__returnValue: {
|
|
1872
|
+
type: "string",
|
|
1873
|
+
description: "TS-HACK: this property doesn't really exist on the nxtpression string,\nit is only here to make sure the generic Context won't get stripped."
|
|
1874
|
+
}
|
|
1875
|
+
},
|
|
1876
|
+
required: [
|
|
1877
|
+
"__context",
|
|
1878
|
+
"__returnValue"
|
|
1879
|
+
]
|
|
1880
|
+
}
|
|
1881
|
+
]
|
|
1882
|
+
},
|
|
1883
|
+
TranscribeForEachWordReplacer: {
|
|
1884
|
+
type: "object",
|
|
1885
|
+
properties: {
|
|
1886
|
+
type: {
|
|
1887
|
+
"const": "items"
|
|
1888
|
+
},
|
|
1889
|
+
items: {
|
|
1890
|
+
type: "array",
|
|
1891
|
+
items: {
|
|
1892
|
+
type: "string"
|
|
1893
|
+
}
|
|
1894
|
+
},
|
|
1895
|
+
_comment: {
|
|
1896
|
+
type: "string"
|
|
1897
|
+
},
|
|
1898
|
+
replacers: {
|
|
1899
|
+
type: "array",
|
|
1900
|
+
items: {
|
|
1901
|
+
type: "object",
|
|
1902
|
+
properties: {
|
|
1903
|
+
pattern: {
|
|
1904
|
+
description: "Expression that should return RegExp or string arg to new RegExp"
|
|
1905
|
+
},
|
|
1906
|
+
replacement: {
|
|
1907
|
+
$ref: "#/components/schemas/Nxtpressionstring((...argsunknown)=string)__type.o1"
|
|
1908
|
+
},
|
|
1909
|
+
flags: {
|
|
1910
|
+
type: "string"
|
|
1911
|
+
},
|
|
1912
|
+
_comment: {
|
|
1913
|
+
type: "string"
|
|
1914
|
+
}
|
|
1915
|
+
},
|
|
1916
|
+
required: [
|
|
1917
|
+
"pattern",
|
|
1918
|
+
"replacement"
|
|
1919
|
+
]
|
|
1920
|
+
}
|
|
1921
|
+
}
|
|
1922
|
+
},
|
|
1923
|
+
required: [
|
|
1924
|
+
"type",
|
|
1925
|
+
"items",
|
|
1926
|
+
"replacers"
|
|
1927
|
+
]
|
|
1928
|
+
},
|
|
1929
|
+
"Nxtpressionstring((...argsunknown)=string)__type.o1": {
|
|
1930
|
+
oneOf: [
|
|
1931
|
+
{
|
|
1932
|
+
type: "string"
|
|
1933
|
+
},
|
|
1934
|
+
{
|
|
1935
|
+
type: "object",
|
|
1936
|
+
properties: {
|
|
1937
|
+
__context: {
|
|
1938
|
+
type: "object",
|
|
1939
|
+
properties: {
|
|
1940
|
+
item: {
|
|
1941
|
+
type: "string"
|
|
1942
|
+
}
|
|
1943
|
+
},
|
|
1944
|
+
required: [
|
|
1945
|
+
"item"
|
|
1946
|
+
],
|
|
1947
|
+
description: "TS-HACK: this property doesn't really exist on the nxtpression string,\nit is only here to make sure the generic Context won't get stripped."
|
|
1948
|
+
},
|
|
1949
|
+
__returnValue: {
|
|
1950
|
+
type: "string",
|
|
1951
|
+
description: "TS-HACK: this property doesn't really exist on the nxtpression string,\nit is only here to make sure the generic Context won't get stripped."
|
|
1952
|
+
}
|
|
1953
|
+
},
|
|
1954
|
+
required: [
|
|
1955
|
+
"__context",
|
|
1956
|
+
"__returnValue"
|
|
1957
|
+
]
|
|
1958
|
+
}
|
|
1959
|
+
]
|
|
1573
1960
|
}
|
|
1574
1961
|
}
|
|
1575
1962
|
},
|
|
@@ -1996,7 +2383,14 @@ function _schemasDomainRecord(domain) {
|
|
|
1996
2383
|
type: "object",
|
|
1997
2384
|
properties: {
|
|
1998
2385
|
value: {
|
|
1999
|
-
|
|
2386
|
+
oneOf: [
|
|
2387
|
+
{
|
|
2388
|
+
type: "null"
|
|
2389
|
+
},
|
|
2390
|
+
{
|
|
2391
|
+
type: "string"
|
|
2392
|
+
}
|
|
2393
|
+
]
|
|
2000
2394
|
}
|
|
2001
2395
|
},
|
|
2002
2396
|
required: []
|
|
@@ -7248,6 +7642,34 @@ function _schemasDomainRecord(domain) {
|
|
|
7248
7642
|
]
|
|
7249
7643
|
};
|
|
7250
7644
|
}
|
|
7645
|
+
case ":folder.items": {
|
|
7646
|
+
return {
|
|
7647
|
+
version: "3.1",
|
|
7648
|
+
components: {
|
|
7649
|
+
schemas: {
|
|
7650
|
+
FolderItemsDomainRecord: {
|
|
7651
|
+
type: "object",
|
|
7652
|
+
properties: {
|
|
7653
|
+
value: {
|
|
7654
|
+
type: "array",
|
|
7655
|
+
items: {
|
|
7656
|
+
type: "string"
|
|
7657
|
+
}
|
|
7658
|
+
}
|
|
7659
|
+
},
|
|
7660
|
+
required: [
|
|
7661
|
+
"value"
|
|
7662
|
+
]
|
|
7663
|
+
}
|
|
7664
|
+
}
|
|
7665
|
+
},
|
|
7666
|
+
schemas: [
|
|
7667
|
+
{
|
|
7668
|
+
$ref: "#/components/schemas/FolderItemsDomainRecord"
|
|
7669
|
+
}
|
|
7670
|
+
]
|
|
7671
|
+
};
|
|
7672
|
+
}
|
|
7251
7673
|
case ":general.title": {
|
|
7252
7674
|
return {
|
|
7253
7675
|
version: "3.1",
|
|
@@ -14505,9 +14927,21 @@ function _schemasDomainRecord(domain) {
|
|
|
14505
14927
|
properties: {
|
|
14506
14928
|
eventThumbnails: {
|
|
14507
14929
|
type: "boolean"
|
|
14930
|
+
},
|
|
14931
|
+
scriptEventFolding: {
|
|
14932
|
+
oneOf: [
|
|
14933
|
+
{
|
|
14934
|
+
"const": "folded"
|
|
14935
|
+
},
|
|
14936
|
+
{
|
|
14937
|
+
"const": "unfoldedUntilFolded"
|
|
14938
|
+
}
|
|
14939
|
+
]
|
|
14508
14940
|
}
|
|
14509
14941
|
},
|
|
14510
|
-
required: [
|
|
14942
|
+
required: [
|
|
14943
|
+
"scriptEventFolding"
|
|
14944
|
+
]
|
|
14511
14945
|
},
|
|
14512
14946
|
gallery: {
|
|
14513
14947
|
type: "object",
|
|
@@ -15034,6 +15468,41 @@ function _schemasDomainRecord(domain) {
|
|
|
15034
15468
|
}
|
|
15035
15469
|
]
|
|
15036
15470
|
},
|
|
15471
|
+
normalize: {
|
|
15472
|
+
type: "object",
|
|
15473
|
+
properties: {
|
|
15474
|
+
presets: {
|
|
15475
|
+
type: "array",
|
|
15476
|
+
items: {
|
|
15477
|
+
type: "object",
|
|
15478
|
+
properties: {
|
|
15479
|
+
id: {
|
|
15480
|
+
type: "string"
|
|
15481
|
+
},
|
|
15482
|
+
title: {
|
|
15483
|
+
type: "string"
|
|
15484
|
+
},
|
|
15485
|
+
i: {
|
|
15486
|
+
type: "number"
|
|
15487
|
+
},
|
|
15488
|
+
tp: {
|
|
15489
|
+
type: "number"
|
|
15490
|
+
}
|
|
15491
|
+
},
|
|
15492
|
+
required: [
|
|
15493
|
+
"id",
|
|
15494
|
+
"title",
|
|
15495
|
+
"i",
|
|
15496
|
+
"tp"
|
|
15497
|
+
]
|
|
15498
|
+
}
|
|
15499
|
+
},
|
|
15500
|
+
defaultPresetId: {
|
|
15501
|
+
type: "string"
|
|
15502
|
+
}
|
|
15503
|
+
},
|
|
15504
|
+
required: []
|
|
15505
|
+
},
|
|
15037
15506
|
voiceOver: {
|
|
15038
15507
|
type: "object",
|
|
15039
15508
|
properties: {
|
|
@@ -15631,6 +16100,40 @@ function _schemasDomainRecord(domain) {
|
|
|
15631
16100
|
]
|
|
15632
16101
|
};
|
|
15633
16102
|
}
|
|
16103
|
+
case ":settings.node": {
|
|
16104
|
+
return {
|
|
16105
|
+
version: "3.1",
|
|
16106
|
+
components: {
|
|
16107
|
+
schemas: {
|
|
16108
|
+
SettingsNodeRecord: {
|
|
16109
|
+
type: "object",
|
|
16110
|
+
properties: {},
|
|
16111
|
+
required: [],
|
|
16112
|
+
additionalProperties: {
|
|
16113
|
+
type: "object",
|
|
16114
|
+
properties: {
|
|
16115
|
+
collapsed: {
|
|
16116
|
+
type: "boolean"
|
|
16117
|
+
},
|
|
16118
|
+
hidden: {
|
|
16119
|
+
type: "boolean"
|
|
16120
|
+
}
|
|
16121
|
+
},
|
|
16122
|
+
required: [
|
|
16123
|
+
"collapsed",
|
|
16124
|
+
"hidden"
|
|
16125
|
+
]
|
|
16126
|
+
}
|
|
16127
|
+
}
|
|
16128
|
+
}
|
|
16129
|
+
},
|
|
16130
|
+
schemas: [
|
|
16131
|
+
{
|
|
16132
|
+
$ref: "#/components/schemas/SettingsNodeRecord"
|
|
16133
|
+
}
|
|
16134
|
+
]
|
|
16135
|
+
};
|
|
16136
|
+
}
|
|
15634
16137
|
case ":shotbox": {
|
|
15635
16138
|
return {
|
|
15636
16139
|
version: "3.1",
|