@nxtedition/types 23.0.38 → 23.0.40
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/app.d.ts +0 -18
- package/dist/app.js +5 -173
- package/dist/common/render-query.js +280 -191
- package/dist/common/render-scene.js +336 -158
- package/dist/common/settings.d.ts +33 -9
- package/dist/common/settings.js +2069 -1381
- package/dist/domains/event.d.ts +129 -1
- package/dist/domains/event.js +2025 -0
- package/dist/domains/media.js +168 -79
- package/dist/domains/publish.d.ts +55 -0
- package/dist/domains/publish.js +4668 -3689
- package/dist/domains/render.d.ts +10 -24
- package/dist/domains/render.js +497 -828
- package/dist/domains/script.d.ts +250 -0
- package/dist/domains/script.js +6652 -0
- package/dist/domains/settings.js +2022 -1351
- package/dist/domains/subtitle-style.d.ts +5 -0
- package/dist/domains/subtitle-style.js +95 -6
- package/dist/index.d.ts +23 -0
- package/dist/index.js +294 -12
- package/dist/nxtpression.d.ts +247 -30
- package/dist/rpc.d.ts +9 -0
- package/dist/schema.json +903 -124
- package/package.json +2 -1
package/dist/schema.json
CHANGED
|
@@ -752,6 +752,26 @@
|
|
|
752
752
|
},
|
|
753
753
|
"type": "object"
|
|
754
754
|
},
|
|
755
|
+
"CommentNodeContent": {
|
|
756
|
+
"additionalProperties": false,
|
|
757
|
+
"properties": {
|
|
758
|
+
"children": {
|
|
759
|
+
"items": {
|
|
760
|
+
"$ref": "#/definitions/TextNodeContent"
|
|
761
|
+
},
|
|
762
|
+
"type": "array"
|
|
763
|
+
},
|
|
764
|
+
"type": {
|
|
765
|
+
"const": "comment",
|
|
766
|
+
"type": "string"
|
|
767
|
+
}
|
|
768
|
+
},
|
|
769
|
+
"required": [
|
|
770
|
+
"children",
|
|
771
|
+
"type"
|
|
772
|
+
],
|
|
773
|
+
"type": "object"
|
|
774
|
+
},
|
|
755
775
|
"CommentReactionDomainRecord": {
|
|
756
776
|
"additionalProperties": false,
|
|
757
777
|
"properties": {
|
|
@@ -1215,7 +1235,19 @@
|
|
|
1215
1235
|
"$ref": "#/definitions/EventRecord"
|
|
1216
1236
|
},
|
|
1217
1237
|
":event._template?": {
|
|
1218
|
-
"$ref": "#/definitions/
|
|
1238
|
+
"$ref": "#/definitions/EventTemplateRecord"
|
|
1239
|
+
},
|
|
1240
|
+
":event.duration?": {
|
|
1241
|
+
"$ref": "#/definitions/EventDurationRecord"
|
|
1242
|
+
},
|
|
1243
|
+
":event.overlay?": {
|
|
1244
|
+
"$ref": "#/definitions/EventOverlayRecord"
|
|
1245
|
+
},
|
|
1246
|
+
":event.props?": {
|
|
1247
|
+
"$ref": "#/definitions/EventPropsRecord"
|
|
1248
|
+
},
|
|
1249
|
+
":event.template?": {
|
|
1250
|
+
"$ref": "#/definitions/EventTemplateRecord"
|
|
1219
1251
|
},
|
|
1220
1252
|
":file.replicate": {
|
|
1221
1253
|
"$ref": "#/definitions/FileReplicateRecord"
|
|
@@ -1343,9 +1375,30 @@
|
|
|
1343
1375
|
":role.tags": {
|
|
1344
1376
|
"$ref": "#/definitions/RoleTagsRecord"
|
|
1345
1377
|
},
|
|
1378
|
+
":script": {
|
|
1379
|
+
"$ref": "#/definitions/ScriptRecord"
|
|
1380
|
+
},
|
|
1346
1381
|
":script.children": {
|
|
1347
1382
|
"$ref": "#/definitions/ScriptChildrenRecord"
|
|
1348
1383
|
},
|
|
1384
|
+
":script.content?": {
|
|
1385
|
+
"$ref": "#/definitions/ScriptContentRecord"
|
|
1386
|
+
},
|
|
1387
|
+
":script.revision": {
|
|
1388
|
+
"$ref": "#/definitions/ScriptRevisionRecord"
|
|
1389
|
+
},
|
|
1390
|
+
":script.revision?": {
|
|
1391
|
+
"$ref": "#/definitions/ScriptEditorStateRevisionRecord"
|
|
1392
|
+
},
|
|
1393
|
+
":script.revisions?": {
|
|
1394
|
+
"$ref": "#/definitions/ScriptRevisionsRecord"
|
|
1395
|
+
},
|
|
1396
|
+
":script.text?": {
|
|
1397
|
+
"$ref": "#/definitions/ScriptTextRecord"
|
|
1398
|
+
},
|
|
1399
|
+
":script?": {
|
|
1400
|
+
"$ref": "#/definitions/ScriptEditorStateRecord"
|
|
1401
|
+
},
|
|
1349
1402
|
":search?": {
|
|
1350
1403
|
"$ref": "#/definitions/SearchRecord"
|
|
1351
1404
|
},
|
|
@@ -1430,6 +1483,10 @@
|
|
|
1430
1483
|
":edit",
|
|
1431
1484
|
":event",
|
|
1432
1485
|
":event._template?",
|
|
1486
|
+
":event.duration?",
|
|
1487
|
+
":event.overlay?",
|
|
1488
|
+
":event.props?",
|
|
1489
|
+
":event.template?",
|
|
1433
1490
|
":file.replicate",
|
|
1434
1491
|
":file.restrictions",
|
|
1435
1492
|
":file.stats?",
|
|
@@ -1470,7 +1527,14 @@
|
|
|
1470
1527
|
":render.stats?",
|
|
1471
1528
|
":revs?",
|
|
1472
1529
|
":role.tags",
|
|
1530
|
+
":script",
|
|
1473
1531
|
":script.children",
|
|
1532
|
+
":script.content?",
|
|
1533
|
+
":script.revision",
|
|
1534
|
+
":script.revision?",
|
|
1535
|
+
":script.revisions?",
|
|
1536
|
+
":script.text?",
|
|
1537
|
+
":script?",
|
|
1474
1538
|
":search?",
|
|
1475
1539
|
":settings",
|
|
1476
1540
|
":storyboard",
|
|
@@ -1542,6 +1606,10 @@
|
|
|
1542
1606
|
":edit",
|
|
1543
1607
|
":event",
|
|
1544
1608
|
":event._template?",
|
|
1609
|
+
":event.duration?",
|
|
1610
|
+
":event.overlay?",
|
|
1611
|
+
":event.props?",
|
|
1612
|
+
":event.template?",
|
|
1545
1613
|
":file.replicate",
|
|
1546
1614
|
":file.restrictions",
|
|
1547
1615
|
":file.stats?",
|
|
@@ -1582,7 +1650,14 @@
|
|
|
1582
1650
|
":render.stats?",
|
|
1583
1651
|
":revs?",
|
|
1584
1652
|
":role.tags",
|
|
1653
|
+
":script",
|
|
1585
1654
|
":script.children",
|
|
1655
|
+
":script.content?",
|
|
1656
|
+
":script.revision",
|
|
1657
|
+
":script.revision?",
|
|
1658
|
+
":script.revisions?",
|
|
1659
|
+
":script.text?",
|
|
1660
|
+
":script?",
|
|
1586
1661
|
":search?",
|
|
1587
1662
|
":settings",
|
|
1588
1663
|
":storyboard",
|
|
@@ -1742,9 +1817,6 @@
|
|
|
1742
1817
|
"ElectronHubApi": {
|
|
1743
1818
|
"additionalProperties": false,
|
|
1744
1819
|
"properties": {
|
|
1745
|
-
"clipboard": {
|
|
1746
|
-
"$ref": "#/definitions/ElectronHubApiClipboard"
|
|
1747
|
-
},
|
|
1748
1820
|
"controlDownloadItem": {
|
|
1749
1821
|
"additionalProperties": false,
|
|
1750
1822
|
"type": "object"
|
|
@@ -1799,7 +1871,6 @@
|
|
|
1799
1871
|
}
|
|
1800
1872
|
},
|
|
1801
1873
|
"required": [
|
|
1802
|
-
"clipboard",
|
|
1803
1874
|
"controlDownloadItem",
|
|
1804
1875
|
"downloadFile",
|
|
1805
1876
|
"getCurrentVersion",
|
|
@@ -1816,40 +1887,141 @@
|
|
|
1816
1887
|
],
|
|
1817
1888
|
"type": "object"
|
|
1818
1889
|
},
|
|
1819
|
-
"
|
|
1890
|
+
"ElementFormatType": {
|
|
1891
|
+
"enum": [
|
|
1892
|
+
"",
|
|
1893
|
+
"center",
|
|
1894
|
+
"end",
|
|
1895
|
+
"justify",
|
|
1896
|
+
"left",
|
|
1897
|
+
"right",
|
|
1898
|
+
"start"
|
|
1899
|
+
],
|
|
1900
|
+
"type": "string"
|
|
1901
|
+
},
|
|
1902
|
+
"EventDomainRecords": {
|
|
1820
1903
|
"additionalProperties": false,
|
|
1821
1904
|
"properties": {
|
|
1822
|
-
"
|
|
1823
|
-
"
|
|
1824
|
-
"type": "object"
|
|
1905
|
+
":event": {
|
|
1906
|
+
"$ref": "#/definitions/EventRecord"
|
|
1825
1907
|
},
|
|
1826
|
-
"
|
|
1827
|
-
"
|
|
1828
|
-
|
|
1908
|
+
":event._template?": {
|
|
1909
|
+
"$ref": "#/definitions/EventTemplateRecord"
|
|
1910
|
+
},
|
|
1911
|
+
":event.duration?": {
|
|
1912
|
+
"$ref": "#/definitions/EventDurationRecord"
|
|
1913
|
+
},
|
|
1914
|
+
":event.overlay?": {
|
|
1915
|
+
"$ref": "#/definitions/EventOverlayRecord"
|
|
1916
|
+
},
|
|
1917
|
+
":event.props?": {
|
|
1918
|
+
"$ref": "#/definitions/EventPropsRecord"
|
|
1919
|
+
},
|
|
1920
|
+
":event.template?": {
|
|
1921
|
+
"$ref": "#/definitions/EventTemplateRecord"
|
|
1829
1922
|
}
|
|
1830
1923
|
},
|
|
1831
1924
|
"required": [
|
|
1832
|
-
"
|
|
1833
|
-
"
|
|
1925
|
+
":event",
|
|
1926
|
+
":event._template?",
|
|
1927
|
+
":event.duration?",
|
|
1928
|
+
":event.overlay?",
|
|
1929
|
+
":event.props?",
|
|
1930
|
+
":event.template?"
|
|
1834
1931
|
],
|
|
1835
1932
|
"type": "object"
|
|
1836
1933
|
},
|
|
1837
|
-
"
|
|
1934
|
+
"EventDurationRecord": {
|
|
1838
1935
|
"additionalProperties": false,
|
|
1839
1936
|
"properties": {
|
|
1840
|
-
"
|
|
1841
|
-
"
|
|
1937
|
+
"actual": {
|
|
1938
|
+
"type": "number"
|
|
1842
1939
|
},
|
|
1843
|
-
"
|
|
1844
|
-
"
|
|
1940
|
+
"in": {
|
|
1941
|
+
"type": "number"
|
|
1942
|
+
},
|
|
1943
|
+
"out": {
|
|
1944
|
+
"type": "number"
|
|
1945
|
+
},
|
|
1946
|
+
"scheduled": {
|
|
1947
|
+
"type": "number"
|
|
1948
|
+
}
|
|
1949
|
+
},
|
|
1950
|
+
"type": "object"
|
|
1951
|
+
},
|
|
1952
|
+
"EventNodeContent": {
|
|
1953
|
+
"additionalProperties": false,
|
|
1954
|
+
"properties": {
|
|
1955
|
+
"children": {
|
|
1956
|
+
"items": {
|
|
1957
|
+
"$ref": "#/definitions/EventNodeContent"
|
|
1958
|
+
},
|
|
1959
|
+
"type": "array"
|
|
1960
|
+
},
|
|
1961
|
+
"id": {
|
|
1962
|
+
"type": "string"
|
|
1963
|
+
},
|
|
1964
|
+
"mixin": {
|
|
1965
|
+
"type": "string"
|
|
1966
|
+
},
|
|
1967
|
+
"type": {
|
|
1968
|
+
"const": "event",
|
|
1969
|
+
"type": "string"
|
|
1845
1970
|
}
|
|
1846
1971
|
},
|
|
1847
1972
|
"required": [
|
|
1848
|
-
"
|
|
1849
|
-
"
|
|
1973
|
+
"children",
|
|
1974
|
+
"id",
|
|
1975
|
+
"mixin",
|
|
1976
|
+
"type"
|
|
1850
1977
|
],
|
|
1851
1978
|
"type": "object"
|
|
1852
1979
|
},
|
|
1980
|
+
"EventOverlayRecord": {
|
|
1981
|
+
"additionalProperties": {
|
|
1982
|
+
"additionalProperties": false,
|
|
1983
|
+
"properties": {
|
|
1984
|
+
"data": {
|
|
1985
|
+
"$ref": "#/definitions/EventPropsRecord"
|
|
1986
|
+
}
|
|
1987
|
+
},
|
|
1988
|
+
"required": [
|
|
1989
|
+
"data"
|
|
1990
|
+
],
|
|
1991
|
+
"type": "object"
|
|
1992
|
+
},
|
|
1993
|
+
"type": "object"
|
|
1994
|
+
},
|
|
1995
|
+
"EventProps": {
|
|
1996
|
+
"additionalProperties": false,
|
|
1997
|
+
"properties": {
|
|
1998
|
+
"cueCard": {
|
|
1999
|
+
"type": [
|
|
2000
|
+
"string",
|
|
2001
|
+
"boolean"
|
|
2002
|
+
]
|
|
2003
|
+
},
|
|
2004
|
+
"source": {
|
|
2005
|
+
"type": "string"
|
|
2006
|
+
}
|
|
2007
|
+
},
|
|
2008
|
+
"type": "object"
|
|
2009
|
+
},
|
|
2010
|
+
"EventPropsRecord": {
|
|
2011
|
+
"additionalProperties": false,
|
|
2012
|
+
"properties": {
|
|
2013
|
+
"cueCard": {
|
|
2014
|
+
"type": [
|
|
2015
|
+
"string",
|
|
2016
|
+
"boolean"
|
|
2017
|
+
]
|
|
2018
|
+
},
|
|
2019
|
+
"source": {
|
|
2020
|
+
"type": "string"
|
|
2021
|
+
}
|
|
2022
|
+
},
|
|
2023
|
+
"type": "object"
|
|
2024
|
+
},
|
|
1853
2025
|
"EventRecord": {
|
|
1854
2026
|
"additionalProperties": false,
|
|
1855
2027
|
"properties": {
|
|
@@ -1877,6 +2049,32 @@
|
|
|
1877
2049
|
},
|
|
1878
2050
|
"type": "object"
|
|
1879
2051
|
},
|
|
2052
|
+
"EventTemplateRecord": {
|
|
2053
|
+
"additionalProperties": false,
|
|
2054
|
+
"properties": {
|
|
2055
|
+
"layout": {
|
|
2056
|
+
"additionalProperties": false,
|
|
2057
|
+
"properties": {
|
|
2058
|
+
"title": {
|
|
2059
|
+
"type": "string"
|
|
2060
|
+
}
|
|
2061
|
+
},
|
|
2062
|
+
"type": "object"
|
|
2063
|
+
},
|
|
2064
|
+
"mixin": {
|
|
2065
|
+
"items": {
|
|
2066
|
+
"type": "string"
|
|
2067
|
+
},
|
|
2068
|
+
"type": "array"
|
|
2069
|
+
},
|
|
2070
|
+
"properties": {
|
|
2071
|
+
"additionalProperties": true,
|
|
2072
|
+
"properties": {},
|
|
2073
|
+
"type": "object"
|
|
2074
|
+
}
|
|
2075
|
+
},
|
|
2076
|
+
"type": "object"
|
|
2077
|
+
},
|
|
1880
2078
|
"FacebookConnectionRecord": {
|
|
1881
2079
|
"additionalProperties": false,
|
|
1882
2080
|
"properties": {
|
|
@@ -3414,6 +3612,59 @@
|
|
|
3414
3612
|
],
|
|
3415
3613
|
"type": "object"
|
|
3416
3614
|
},
|
|
3615
|
+
"FontFace": {
|
|
3616
|
+
"additionalProperties": false,
|
|
3617
|
+
"properties": {
|
|
3618
|
+
"asset": {
|
|
3619
|
+
"type": "string"
|
|
3620
|
+
},
|
|
3621
|
+
"family": {
|
|
3622
|
+
"type": "string"
|
|
3623
|
+
},
|
|
3624
|
+
"name": {
|
|
3625
|
+
"type": "string"
|
|
3626
|
+
},
|
|
3627
|
+
"ranges": {
|
|
3628
|
+
"items": {
|
|
3629
|
+
"items": [
|
|
3630
|
+
{
|
|
3631
|
+
"type": "number"
|
|
3632
|
+
},
|
|
3633
|
+
{
|
|
3634
|
+
"type": "number"
|
|
3635
|
+
}
|
|
3636
|
+
],
|
|
3637
|
+
"maxItems": 2,
|
|
3638
|
+
"minItems": 2,
|
|
3639
|
+
"type": "array"
|
|
3640
|
+
},
|
|
3641
|
+
"type": "array"
|
|
3642
|
+
},
|
|
3643
|
+
"style": {
|
|
3644
|
+
"enum": [
|
|
3645
|
+
"italic",
|
|
3646
|
+
"normal"
|
|
3647
|
+
],
|
|
3648
|
+
"type": "string"
|
|
3649
|
+
},
|
|
3650
|
+
"url": {
|
|
3651
|
+
"type": "string"
|
|
3652
|
+
},
|
|
3653
|
+
"weight": {
|
|
3654
|
+
"type": "number"
|
|
3655
|
+
}
|
|
3656
|
+
},
|
|
3657
|
+
"required": [
|
|
3658
|
+
"asset",
|
|
3659
|
+
"family",
|
|
3660
|
+
"name",
|
|
3661
|
+
"ranges",
|
|
3662
|
+
"style",
|
|
3663
|
+
"url",
|
|
3664
|
+
"weight"
|
|
3665
|
+
],
|
|
3666
|
+
"type": "object"
|
|
3667
|
+
},
|
|
3417
3668
|
"GeneralCreatedRecord": {
|
|
3418
3669
|
"additionalProperties": false,
|
|
3419
3670
|
"properties": {
|
|
@@ -3532,6 +3783,48 @@
|
|
|
3532
3783
|
},
|
|
3533
3784
|
"type": "object"
|
|
3534
3785
|
},
|
|
3786
|
+
"HeadingNodeContent": {
|
|
3787
|
+
"additionalProperties": false,
|
|
3788
|
+
"properties": {
|
|
3789
|
+
"children": {
|
|
3790
|
+
"items": {
|
|
3791
|
+
"$ref": "#/definitions/TextNodeContent"
|
|
3792
|
+
},
|
|
3793
|
+
"type": "array"
|
|
3794
|
+
},
|
|
3795
|
+
"tag": {
|
|
3796
|
+
"enum": [
|
|
3797
|
+
"h1",
|
|
3798
|
+
"h2",
|
|
3799
|
+
"h3"
|
|
3800
|
+
],
|
|
3801
|
+
"type": "string"
|
|
3802
|
+
},
|
|
3803
|
+
"type": {
|
|
3804
|
+
"const": "heading",
|
|
3805
|
+
"type": "string"
|
|
3806
|
+
}
|
|
3807
|
+
},
|
|
3808
|
+
"required": [
|
|
3809
|
+
"children",
|
|
3810
|
+
"tag",
|
|
3811
|
+
"type"
|
|
3812
|
+
],
|
|
3813
|
+
"type": "object"
|
|
3814
|
+
},
|
|
3815
|
+
"HorizontalRuleContent": {
|
|
3816
|
+
"additionalProperties": false,
|
|
3817
|
+
"properties": {
|
|
3818
|
+
"type": {
|
|
3819
|
+
"const": "horizontalrule",
|
|
3820
|
+
"type": "string"
|
|
3821
|
+
}
|
|
3822
|
+
},
|
|
3823
|
+
"required": [
|
|
3824
|
+
"type"
|
|
3825
|
+
],
|
|
3826
|
+
"type": "object"
|
|
3827
|
+
},
|
|
3535
3828
|
"Id": {
|
|
3536
3829
|
"additionalProperties": false,
|
|
3537
3830
|
"type": "object"
|
|
@@ -3540,6 +3833,36 @@
|
|
|
3540
3833
|
"additionalProperties": false,
|
|
3541
3834
|
"type": "object"
|
|
3542
3835
|
},
|
|
3836
|
+
"JsonPrimitive": {
|
|
3837
|
+
"type": [
|
|
3838
|
+
"string",
|
|
3839
|
+
"number",
|
|
3840
|
+
"boolean"
|
|
3841
|
+
]
|
|
3842
|
+
},
|
|
3843
|
+
"JsonValue": {
|
|
3844
|
+
"anyOf": [
|
|
3845
|
+
{
|
|
3846
|
+
"items": {
|
|
3847
|
+
"$ref": "#/definitions/JsonValue"
|
|
3848
|
+
},
|
|
3849
|
+
"type": "array"
|
|
3850
|
+
},
|
|
3851
|
+
{
|
|
3852
|
+
"additionalProperties": {
|
|
3853
|
+
"$ref": "#/definitions/JsonValue"
|
|
3854
|
+
},
|
|
3855
|
+
"type": "object"
|
|
3856
|
+
},
|
|
3857
|
+
{
|
|
3858
|
+
"type": [
|
|
3859
|
+
"string",
|
|
3860
|
+
"number",
|
|
3861
|
+
"boolean"
|
|
3862
|
+
]
|
|
3863
|
+
}
|
|
3864
|
+
]
|
|
3865
|
+
},
|
|
3543
3866
|
"Key": {
|
|
3544
3867
|
"additionalProperties": false,
|
|
3545
3868
|
"type": "object"
|
|
@@ -3582,21 +3905,85 @@
|
|
|
3582
3905
|
}
|
|
3583
3906
|
]
|
|
3584
3907
|
},
|
|
3585
|
-
"
|
|
3908
|
+
"ListItemNodeContent": {
|
|
3586
3909
|
"additionalProperties": false,
|
|
3587
3910
|
"properties": {
|
|
3588
|
-
"
|
|
3589
|
-
|
|
3590
|
-
"$ref": "#/definitions/RenderPreset"
|
|
3911
|
+
"checked": {
|
|
3912
|
+
"type": "boolean"
|
|
3591
3913
|
},
|
|
3592
|
-
"
|
|
3593
|
-
|
|
3594
|
-
|
|
3595
|
-
|
|
3596
|
-
|
|
3597
|
-
|
|
3598
|
-
|
|
3599
|
-
|
|
3914
|
+
"children": {
|
|
3915
|
+
"items": {
|
|
3916
|
+
"$ref": "#/definitions/TextNodeContent"
|
|
3917
|
+
},
|
|
3918
|
+
"type": "array"
|
|
3919
|
+
},
|
|
3920
|
+
"type": {
|
|
3921
|
+
"const": "listitem",
|
|
3922
|
+
"type": "string"
|
|
3923
|
+
},
|
|
3924
|
+
"value": {
|
|
3925
|
+
"type": "number"
|
|
3926
|
+
}
|
|
3927
|
+
},
|
|
3928
|
+
"required": [
|
|
3929
|
+
"children",
|
|
3930
|
+
"type",
|
|
3931
|
+
"value"
|
|
3932
|
+
],
|
|
3933
|
+
"type": "object"
|
|
3934
|
+
},
|
|
3935
|
+
"ListNodeContent": {
|
|
3936
|
+
"additionalProperties": false,
|
|
3937
|
+
"properties": {
|
|
3938
|
+
"children": {
|
|
3939
|
+
"items": {
|
|
3940
|
+
"$ref": "#/definitions/ListItemNodeContent"
|
|
3941
|
+
},
|
|
3942
|
+
"type": "array"
|
|
3943
|
+
},
|
|
3944
|
+
"listType": {
|
|
3945
|
+
"enum": [
|
|
3946
|
+
"bullet",
|
|
3947
|
+
"check",
|
|
3948
|
+
"number"
|
|
3949
|
+
],
|
|
3950
|
+
"type": "string"
|
|
3951
|
+
},
|
|
3952
|
+
"tag": {
|
|
3953
|
+
"enum": [
|
|
3954
|
+
"ol",
|
|
3955
|
+
"ul"
|
|
3956
|
+
],
|
|
3957
|
+
"type": "string"
|
|
3958
|
+
},
|
|
3959
|
+
"type": {
|
|
3960
|
+
"const": "list",
|
|
3961
|
+
"type": "string"
|
|
3962
|
+
}
|
|
3963
|
+
},
|
|
3964
|
+
"required": [
|
|
3965
|
+
"children",
|
|
3966
|
+
"listType",
|
|
3967
|
+
"tag",
|
|
3968
|
+
"type"
|
|
3969
|
+
],
|
|
3970
|
+
"type": "object"
|
|
3971
|
+
},
|
|
3972
|
+
"MediaConsolidateRecord": {
|
|
3973
|
+
"additionalProperties": false,
|
|
3974
|
+
"properties": {
|
|
3975
|
+
"error": {},
|
|
3976
|
+
"preset": {
|
|
3977
|
+
"$ref": "#/definitions/RenderPreset"
|
|
3978
|
+
},
|
|
3979
|
+
"source": {},
|
|
3980
|
+
"target": {}
|
|
3981
|
+
},
|
|
3982
|
+
"type": "object"
|
|
3983
|
+
},
|
|
3984
|
+
"MediaFontRecord": {
|
|
3985
|
+
"additionalProperties": false,
|
|
3986
|
+
"properties": {
|
|
3600
3987
|
"sampleText": {
|
|
3601
3988
|
"type": "string"
|
|
3602
3989
|
}
|
|
@@ -4289,6 +4676,37 @@
|
|
|
4289
4676
|
],
|
|
4290
4677
|
"type": "object"
|
|
4291
4678
|
},
|
|
4679
|
+
"NodeContent": {
|
|
4680
|
+
"anyOf": [
|
|
4681
|
+
{
|
|
4682
|
+
"$ref": "#/definitions/EventNodeContent"
|
|
4683
|
+
},
|
|
4684
|
+
{
|
|
4685
|
+
"$ref": "#/definitions/TextNodeContent"
|
|
4686
|
+
},
|
|
4687
|
+
{
|
|
4688
|
+
"$ref": "#/definitions/ListItemNodeContent"
|
|
4689
|
+
},
|
|
4690
|
+
{
|
|
4691
|
+
"$ref": "#/definitions/ListNodeContent"
|
|
4692
|
+
},
|
|
4693
|
+
{
|
|
4694
|
+
"$ref": "#/definitions/ParagraphNodeContent"
|
|
4695
|
+
},
|
|
4696
|
+
{
|
|
4697
|
+
"$ref": "#/definitions/CommentNodeContent"
|
|
4698
|
+
},
|
|
4699
|
+
{
|
|
4700
|
+
"$ref": "#/definitions/HeadingNodeContent"
|
|
4701
|
+
},
|
|
4702
|
+
{
|
|
4703
|
+
"$ref": "#/definitions/QuoteNodeContent"
|
|
4704
|
+
},
|
|
4705
|
+
{
|
|
4706
|
+
"$ref": "#/definitions/HorizontalRuleContent"
|
|
4707
|
+
}
|
|
4708
|
+
]
|
|
4709
|
+
},
|
|
4292
4710
|
"NotificationReason": {
|
|
4293
4711
|
"enum": [
|
|
4294
4712
|
"always",
|
|
@@ -5007,6 +5425,21 @@
|
|
|
5007
5425
|
"outlineColour": {
|
|
5008
5426
|
"type": "string"
|
|
5009
5427
|
},
|
|
5428
|
+
"previewSettings": {
|
|
5429
|
+
"additionalProperties": false,
|
|
5430
|
+
"properties": {
|
|
5431
|
+
"aspectRatio": {
|
|
5432
|
+
"type": "string"
|
|
5433
|
+
},
|
|
5434
|
+
"backgroundAssetId": {
|
|
5435
|
+
"type": "string"
|
|
5436
|
+
},
|
|
5437
|
+
"text": {
|
|
5438
|
+
"type": "string"
|
|
5439
|
+
}
|
|
5440
|
+
},
|
|
5441
|
+
"type": "object"
|
|
5442
|
+
},
|
|
5010
5443
|
"primaryColour": {
|
|
5011
5444
|
"type": "string"
|
|
5012
5445
|
},
|
|
@@ -5295,6 +5728,26 @@
|
|
|
5295
5728
|
],
|
|
5296
5729
|
"type": "object"
|
|
5297
5730
|
},
|
|
5731
|
+
"ParagraphNodeContent": {
|
|
5732
|
+
"additionalProperties": false,
|
|
5733
|
+
"properties": {
|
|
5734
|
+
"children": {
|
|
5735
|
+
"items": {
|
|
5736
|
+
"$ref": "#/definitions/TextNodeContent"
|
|
5737
|
+
},
|
|
5738
|
+
"type": "array"
|
|
5739
|
+
},
|
|
5740
|
+
"type": {
|
|
5741
|
+
"const": "paragraph",
|
|
5742
|
+
"type": "string"
|
|
5743
|
+
}
|
|
5744
|
+
},
|
|
5745
|
+
"required": [
|
|
5746
|
+
"children",
|
|
5747
|
+
"type"
|
|
5748
|
+
],
|
|
5749
|
+
"type": "object"
|
|
5750
|
+
},
|
|
5298
5751
|
"PermissionRecordPermisson": {
|
|
5299
5752
|
"anyOf": [
|
|
5300
5753
|
{
|
|
@@ -5563,6 +6016,39 @@
|
|
|
5563
6016
|
],
|
|
5564
6017
|
"type": "object"
|
|
5565
6018
|
},
|
|
6019
|
+
"QuoteNodeContent": {
|
|
6020
|
+
"additionalProperties": false,
|
|
6021
|
+
"properties": {
|
|
6022
|
+
"children": {
|
|
6023
|
+
"items": {
|
|
6024
|
+
"$ref": "#/definitions/TextNodeContent"
|
|
6025
|
+
},
|
|
6026
|
+
"type": "array"
|
|
6027
|
+
},
|
|
6028
|
+
"type": {
|
|
6029
|
+
"const": "quote",
|
|
6030
|
+
"type": "string"
|
|
6031
|
+
}
|
|
6032
|
+
},
|
|
6033
|
+
"required": [
|
|
6034
|
+
"children",
|
|
6035
|
+
"type"
|
|
6036
|
+
],
|
|
6037
|
+
"type": "object"
|
|
6038
|
+
},
|
|
6039
|
+
"Range": {
|
|
6040
|
+
"items": [
|
|
6041
|
+
{
|
|
6042
|
+
"type": "number"
|
|
6043
|
+
},
|
|
6044
|
+
{
|
|
6045
|
+
"type": "number"
|
|
6046
|
+
}
|
|
6047
|
+
],
|
|
6048
|
+
"maxItems": 2,
|
|
6049
|
+
"minItems": 2,
|
|
6050
|
+
"type": "array"
|
|
6051
|
+
},
|
|
5566
6052
|
"Record<string,FilePublishRemoteRender>": {
|
|
5567
6053
|
"additionalProperties": false,
|
|
5568
6054
|
"type": "object"
|
|
@@ -5591,6 +6077,10 @@
|
|
|
5591
6077
|
"additionalProperties": false,
|
|
5592
6078
|
"type": "object"
|
|
5593
6079
|
},
|
|
6080
|
+
"Record<string,{event:string;property:string;}>": {
|
|
6081
|
+
"additionalProperties": false,
|
|
6082
|
+
"type": "object"
|
|
6083
|
+
},
|
|
5594
6084
|
"Record<string,{rpcId:string;rpcData:Record<string,unknown>;}>": {
|
|
5595
6085
|
"additionalProperties": false,
|
|
5596
6086
|
"type": "object"
|
|
@@ -5838,6 +6328,24 @@
|
|
|
5838
6328
|
},
|
|
5839
6329
|
"type": "object"
|
|
5840
6330
|
},
|
|
6331
|
+
"media.fonts?": {
|
|
6332
|
+
"additionalProperties": false,
|
|
6333
|
+
"properties": {
|
|
6334
|
+
"fontFaces": {
|
|
6335
|
+
"items": {
|
|
6336
|
+
"$ref": "#/definitions/FontFace"
|
|
6337
|
+
},
|
|
6338
|
+
"type": "array"
|
|
6339
|
+
},
|
|
6340
|
+
"fontFamilyNames": {
|
|
6341
|
+
"items": {
|
|
6342
|
+
"type": "string"
|
|
6343
|
+
},
|
|
6344
|
+
"type": "array"
|
|
6345
|
+
}
|
|
6346
|
+
},
|
|
6347
|
+
"type": "object"
|
|
6348
|
+
},
|
|
5841
6349
|
"media.subtitles": {
|
|
5842
6350
|
"additionalProperties": false,
|
|
5843
6351
|
"properties": {
|
|
@@ -5924,6 +6432,7 @@
|
|
|
5924
6432
|
"deepstream-replicator.stats?",
|
|
5925
6433
|
"hub-transcribe:render-profile",
|
|
5926
6434
|
"media.consolidate",
|
|
6435
|
+
"media.fonts?",
|
|
5927
6436
|
"media.subtitles",
|
|
5928
6437
|
"media.subtitles?",
|
|
5929
6438
|
"media.transcribe?",
|
|
@@ -5985,79 +6494,7 @@
|
|
|
5985
6494
|
"type": "object"
|
|
5986
6495
|
},
|
|
5987
6496
|
"meminfo": {
|
|
5988
|
-
"additionalProperties":
|
|
5989
|
-
"properties": {
|
|
5990
|
-
"active": {
|
|
5991
|
-
"type": "number"
|
|
5992
|
-
},
|
|
5993
|
-
"available": {
|
|
5994
|
-
"type": "number"
|
|
5995
|
-
},
|
|
5996
|
-
"buffcache": {
|
|
5997
|
-
"type": "number"
|
|
5998
|
-
},
|
|
5999
|
-
"buffers": {
|
|
6000
|
-
"type": "number"
|
|
6001
|
-
},
|
|
6002
|
-
"cached": {
|
|
6003
|
-
"type": "number"
|
|
6004
|
-
},
|
|
6005
|
-
"free": {
|
|
6006
|
-
"type": "number"
|
|
6007
|
-
},
|
|
6008
|
-
"kernelStack": {
|
|
6009
|
-
"type": "number"
|
|
6010
|
-
},
|
|
6011
|
-
"memAvailable": {
|
|
6012
|
-
"type": "number"
|
|
6013
|
-
},
|
|
6014
|
-
"memTotal": {
|
|
6015
|
-
"type": "number"
|
|
6016
|
-
},
|
|
6017
|
-
"reclaimable": {
|
|
6018
|
-
"type": "number"
|
|
6019
|
-
},
|
|
6020
|
-
"sReclaimable": {
|
|
6021
|
-
"type": "number"
|
|
6022
|
-
},
|
|
6023
|
-
"slab": {
|
|
6024
|
-
"type": "number"
|
|
6025
|
-
},
|
|
6026
|
-
"swapfree": {
|
|
6027
|
-
"type": "number"
|
|
6028
|
-
},
|
|
6029
|
-
"swaptotal": {
|
|
6030
|
-
"type": "number"
|
|
6031
|
-
},
|
|
6032
|
-
"swapused": {
|
|
6033
|
-
"type": "number"
|
|
6034
|
-
},
|
|
6035
|
-
"total": {
|
|
6036
|
-
"type": "number"
|
|
6037
|
-
},
|
|
6038
|
-
"used": {
|
|
6039
|
-
"type": "number"
|
|
6040
|
-
}
|
|
6041
|
-
},
|
|
6042
|
-
"required": [
|
|
6043
|
-
"active",
|
|
6044
|
-
"available",
|
|
6045
|
-
"buffcache",
|
|
6046
|
-
"buffers",
|
|
6047
|
-
"cached",
|
|
6048
|
-
"free",
|
|
6049
|
-
"kernelStack",
|
|
6050
|
-
"memAvailable",
|
|
6051
|
-
"memTotal",
|
|
6052
|
-
"reclaimable",
|
|
6053
|
-
"sReclaimable",
|
|
6054
|
-
"slab",
|
|
6055
|
-
"swapfree",
|
|
6056
|
-
"swaptotal",
|
|
6057
|
-
"swapused",
|
|
6058
|
-
"total",
|
|
6059
|
-
"used"
|
|
6060
|
-
],
|
|
6497
|
+
"additionalProperties": {},
|
|
6061
6498
|
"type": "object"
|
|
6062
6499
|
},
|
|
6063
6500
|
"total": {
|
|
@@ -6200,7 +6637,7 @@
|
|
|
6200
6637
|
"type": "number"
|
|
6201
6638
|
},
|
|
6202
6639
|
"cpuComputeAvailable": {
|
|
6203
|
-
"type": "
|
|
6640
|
+
"type": "number"
|
|
6204
6641
|
},
|
|
6205
6642
|
"cpuComputeLimit": {
|
|
6206
6643
|
"type": "number"
|
|
@@ -6218,7 +6655,7 @@
|
|
|
6218
6655
|
"type": "number"
|
|
6219
6656
|
},
|
|
6220
6657
|
"cpuMemoryAvailable": {
|
|
6221
|
-
"type": "
|
|
6658
|
+
"type": "number"
|
|
6222
6659
|
},
|
|
6223
6660
|
"cpuMemoryLimit": {
|
|
6224
6661
|
"type": "number"
|
|
@@ -6248,7 +6685,7 @@
|
|
|
6248
6685
|
"type": "number"
|
|
6249
6686
|
},
|
|
6250
6687
|
"gpuComputeAvailable": {
|
|
6251
|
-
"type": "
|
|
6688
|
+
"type": "number"
|
|
6252
6689
|
},
|
|
6253
6690
|
"gpuComputeLimit": {
|
|
6254
6691
|
"type": "number"
|
|
@@ -6272,7 +6709,7 @@
|
|
|
6272
6709
|
"type": "number"
|
|
6273
6710
|
},
|
|
6274
6711
|
"gpuDecoderValue": {
|
|
6275
|
-
"type": "
|
|
6712
|
+
"type": "number"
|
|
6276
6713
|
},
|
|
6277
6714
|
"gpuEncoder": {
|
|
6278
6715
|
"type": "number"
|
|
@@ -6290,7 +6727,7 @@
|
|
|
6290
6727
|
"type": "number"
|
|
6291
6728
|
},
|
|
6292
6729
|
"gpuMemoryAvailable": {
|
|
6293
|
-
"type": "
|
|
6730
|
+
"type": "number"
|
|
6294
6731
|
},
|
|
6295
6732
|
"gpuMemoryLimit": {
|
|
6296
6733
|
"type": "number"
|
|
@@ -6305,7 +6742,7 @@
|
|
|
6305
6742
|
"type": "number"
|
|
6306
6743
|
},
|
|
6307
6744
|
"gpuQueueAvailable": {
|
|
6308
|
-
"type": "
|
|
6745
|
+
"type": "number"
|
|
6309
6746
|
},
|
|
6310
6747
|
"gpuQueueLimit": {
|
|
6311
6748
|
"type": "number"
|
|
@@ -6328,6 +6765,7 @@
|
|
|
6328
6765
|
"lag": {
|
|
6329
6766
|
"type": "number"
|
|
6330
6767
|
},
|
|
6768
|
+
"limits": {},
|
|
6331
6769
|
"memory": {
|
|
6332
6770
|
"type": "number"
|
|
6333
6771
|
},
|
|
@@ -6341,7 +6779,7 @@
|
|
|
6341
6779
|
"type": "number"
|
|
6342
6780
|
},
|
|
6343
6781
|
"netTransferAvailable": {
|
|
6344
|
-
"type": "
|
|
6782
|
+
"type": "number"
|
|
6345
6783
|
},
|
|
6346
6784
|
"netTransferLimit": {
|
|
6347
6785
|
"type": "number"
|
|
@@ -6371,6 +6809,9 @@
|
|
|
6371
6809
|
}
|
|
6372
6810
|
]
|
|
6373
6811
|
},
|
|
6812
|
+
"taskset": {
|
|
6813
|
+
"type": "string"
|
|
6814
|
+
},
|
|
6374
6815
|
"toobusy": {
|
|
6375
6816
|
"type": "boolean"
|
|
6376
6817
|
},
|
|
@@ -6744,6 +7185,7 @@
|
|
|
6744
7185
|
},
|
|
6745
7186
|
"ScriptChildrenRecord": {
|
|
6746
7187
|
"additionalProperties": false,
|
|
7188
|
+
"description": "A record for non-script automation assets that can have child events.",
|
|
6747
7189
|
"properties": {
|
|
6748
7190
|
"value": {
|
|
6749
7191
|
"items": {
|
|
@@ -6754,6 +7196,142 @@
|
|
|
6754
7196
|
},
|
|
6755
7197
|
"type": "object"
|
|
6756
7198
|
},
|
|
7199
|
+
"ScriptContentRecord": {
|
|
7200
|
+
"additionalProperties": false,
|
|
7201
|
+
"properties": {
|
|
7202
|
+
"nodes": {
|
|
7203
|
+
"items": {
|
|
7204
|
+
"$ref": "#/definitions/NodeContent"
|
|
7205
|
+
},
|
|
7206
|
+
"type": "array"
|
|
7207
|
+
}
|
|
7208
|
+
},
|
|
7209
|
+
"required": [
|
|
7210
|
+
"nodes"
|
|
7211
|
+
],
|
|
7212
|
+
"type": "object"
|
|
7213
|
+
},
|
|
7214
|
+
"ScriptEditorStateRecord": {
|
|
7215
|
+
"additionalProperties": false,
|
|
7216
|
+
"properties": {
|
|
7217
|
+
"value": {
|
|
7218
|
+
"$ref": "#/definitions/SerializedEditorState<SerializedLexicalNode>"
|
|
7219
|
+
}
|
|
7220
|
+
},
|
|
7221
|
+
"required": [
|
|
7222
|
+
"value"
|
|
7223
|
+
],
|
|
7224
|
+
"type": "object"
|
|
7225
|
+
},
|
|
7226
|
+
"ScriptEditorStateRevisionRecord": {
|
|
7227
|
+
"additionalProperties": false,
|
|
7228
|
+
"properties": {
|
|
7229
|
+
"$parent": {
|
|
7230
|
+
"type": "string"
|
|
7231
|
+
},
|
|
7232
|
+
"scriptId": {
|
|
7233
|
+
"type": "string"
|
|
7234
|
+
},
|
|
7235
|
+
"userId": {
|
|
7236
|
+
"type": "string"
|
|
7237
|
+
},
|
|
7238
|
+
"value": {
|
|
7239
|
+
"$ref": "#/definitions/SerializedEditorState<SerializedLexicalNode>"
|
|
7240
|
+
}
|
|
7241
|
+
},
|
|
7242
|
+
"required": [
|
|
7243
|
+
"$parent",
|
|
7244
|
+
"scriptId",
|
|
7245
|
+
"userId",
|
|
7246
|
+
"value"
|
|
7247
|
+
],
|
|
7248
|
+
"type": "object"
|
|
7249
|
+
},
|
|
7250
|
+
"ScriptRecord": {
|
|
7251
|
+
"additionalProperties": false,
|
|
7252
|
+
"properties": {
|
|
7253
|
+
"value": {
|
|
7254
|
+
"description": "A base64 encoded string representing a complete Yjs document state.\nThis is created using `Y.encodeStateAsUpdate()` and is used for\npersistence and versioning.",
|
|
7255
|
+
"type": "string"
|
|
7256
|
+
}
|
|
7257
|
+
},
|
|
7258
|
+
"required": [
|
|
7259
|
+
"value"
|
|
7260
|
+
],
|
|
7261
|
+
"type": "object"
|
|
7262
|
+
},
|
|
7263
|
+
"ScriptRevision": {
|
|
7264
|
+
"additionalProperties": false,
|
|
7265
|
+
"properties": {
|
|
7266
|
+
"id": {
|
|
7267
|
+
"type": "string"
|
|
7268
|
+
},
|
|
7269
|
+
"userId": {
|
|
7270
|
+
"type": "string"
|
|
7271
|
+
}
|
|
7272
|
+
},
|
|
7273
|
+
"required": [
|
|
7274
|
+
"id",
|
|
7275
|
+
"userId"
|
|
7276
|
+
],
|
|
7277
|
+
"type": "object"
|
|
7278
|
+
},
|
|
7279
|
+
"ScriptRevisionRecord": {
|
|
7280
|
+
"additionalProperties": false,
|
|
7281
|
+
"properties": {
|
|
7282
|
+
"$parent": {
|
|
7283
|
+
"type": "string"
|
|
7284
|
+
},
|
|
7285
|
+
"scriptId": {
|
|
7286
|
+
"type": "string"
|
|
7287
|
+
},
|
|
7288
|
+
"userId": {
|
|
7289
|
+
"type": "string"
|
|
7290
|
+
},
|
|
7291
|
+
"value": {
|
|
7292
|
+
"description": "A base64 encoded string representing a complete Yjs document state.\nThis is created using `Y.encodeStateAsUpdate()` and is used for\npersistence and versioning.",
|
|
7293
|
+
"type": "string"
|
|
7294
|
+
}
|
|
7295
|
+
},
|
|
7296
|
+
"required": [
|
|
7297
|
+
"$parent",
|
|
7298
|
+
"scriptId",
|
|
7299
|
+
"userId",
|
|
7300
|
+
"value"
|
|
7301
|
+
],
|
|
7302
|
+
"type": "object"
|
|
7303
|
+
},
|
|
7304
|
+
"ScriptRevisionsRecord": {
|
|
7305
|
+
"additionalProperties": false,
|
|
7306
|
+
"properties": {
|
|
7307
|
+
"value": {
|
|
7308
|
+
"items": {
|
|
7309
|
+
"$ref": "#/definitions/ScriptRevision"
|
|
7310
|
+
},
|
|
7311
|
+
"type": "array"
|
|
7312
|
+
}
|
|
7313
|
+
},
|
|
7314
|
+
"required": [
|
|
7315
|
+
"value"
|
|
7316
|
+
],
|
|
7317
|
+
"type": "object"
|
|
7318
|
+
},
|
|
7319
|
+
"ScriptTextRecord": {
|
|
7320
|
+
"additionalProperties": false,
|
|
7321
|
+
"properties": {
|
|
7322
|
+
"content": {
|
|
7323
|
+
"type": "string"
|
|
7324
|
+
},
|
|
7325
|
+
"graphics": {
|
|
7326
|
+
"type": "string"
|
|
7327
|
+
}
|
|
7328
|
+
},
|
|
7329
|
+
"required": [
|
|
7330
|
+
"content",
|
|
7331
|
+
"graphics"
|
|
7332
|
+
],
|
|
7333
|
+
"type": "object"
|
|
7334
|
+
},
|
|
6757
7335
|
"SearchRecord": {
|
|
6758
7336
|
"additionalProperties": false,
|
|
6759
7337
|
"properties": {
|
|
@@ -6800,6 +7378,18 @@
|
|
|
6800
7378
|
],
|
|
6801
7379
|
"type": "object"
|
|
6802
7380
|
},
|
|
7381
|
+
"SerializedEditorState<SerializedLexicalNode>": {
|
|
7382
|
+
"additionalProperties": false,
|
|
7383
|
+
"properties": {
|
|
7384
|
+
"root": {
|
|
7385
|
+
"$ref": "#/definitions/SerializedRootNode<SerializedLexicalNode>"
|
|
7386
|
+
}
|
|
7387
|
+
},
|
|
7388
|
+
"required": [
|
|
7389
|
+
"root"
|
|
7390
|
+
],
|
|
7391
|
+
"type": "object"
|
|
7392
|
+
},
|
|
6803
7393
|
"SerializedEmojiNode": {
|
|
6804
7394
|
"additionalProperties": false,
|
|
6805
7395
|
"properties": {
|
|
@@ -6997,6 +7587,75 @@
|
|
|
6997
7587
|
],
|
|
6998
7588
|
"type": "object"
|
|
6999
7589
|
},
|
|
7590
|
+
"SerializedRootNode<SerializedLexicalNode>": {
|
|
7591
|
+
"additionalProperties": false,
|
|
7592
|
+
"properties": {
|
|
7593
|
+
"$": {
|
|
7594
|
+
"$ref": "#/definitions/Record<string,unknown>"
|
|
7595
|
+
},
|
|
7596
|
+
"children": {
|
|
7597
|
+
"items": {
|
|
7598
|
+
"additionalProperties": false,
|
|
7599
|
+
"description": "The base type for all serialized nodes",
|
|
7600
|
+
"properties": {
|
|
7601
|
+
"$": {
|
|
7602
|
+
"$ref": "#/definitions/Record<string,unknown>"
|
|
7603
|
+
},
|
|
7604
|
+
"type": {
|
|
7605
|
+
"description": "The type string used by the Node class",
|
|
7606
|
+
"type": "string"
|
|
7607
|
+
},
|
|
7608
|
+
"version": {
|
|
7609
|
+
"description": "A numeric version for this schema, defaulting to 1, but not generally recommended for use",
|
|
7610
|
+
"type": "number"
|
|
7611
|
+
}
|
|
7612
|
+
},
|
|
7613
|
+
"required": [
|
|
7614
|
+
"type",
|
|
7615
|
+
"version"
|
|
7616
|
+
],
|
|
7617
|
+
"type": "object"
|
|
7618
|
+
},
|
|
7619
|
+
"type": "array"
|
|
7620
|
+
},
|
|
7621
|
+
"direction": {
|
|
7622
|
+
"enum": [
|
|
7623
|
+
"ltr",
|
|
7624
|
+
"rtl"
|
|
7625
|
+
],
|
|
7626
|
+
"type": "string"
|
|
7627
|
+
},
|
|
7628
|
+
"format": {
|
|
7629
|
+
"$ref": "#/definitions/ElementFormatType"
|
|
7630
|
+
},
|
|
7631
|
+
"indent": {
|
|
7632
|
+
"type": "number"
|
|
7633
|
+
},
|
|
7634
|
+
"textFormat": {
|
|
7635
|
+
"type": "number"
|
|
7636
|
+
},
|
|
7637
|
+
"textStyle": {
|
|
7638
|
+
"type": "string"
|
|
7639
|
+
},
|
|
7640
|
+
"type": {
|
|
7641
|
+
"description": "The type string used by the Node class",
|
|
7642
|
+
"type": "string"
|
|
7643
|
+
},
|
|
7644
|
+
"version": {
|
|
7645
|
+
"description": "A numeric version for this schema, defaulting to 1, but not generally recommended for use",
|
|
7646
|
+
"type": "number"
|
|
7647
|
+
}
|
|
7648
|
+
},
|
|
7649
|
+
"required": [
|
|
7650
|
+
"children",
|
|
7651
|
+
"direction",
|
|
7652
|
+
"format",
|
|
7653
|
+
"indent",
|
|
7654
|
+
"type",
|
|
7655
|
+
"version"
|
|
7656
|
+
],
|
|
7657
|
+
"type": "object"
|
|
7658
|
+
},
|
|
7000
7659
|
"SerializedTextNode": {
|
|
7001
7660
|
"additionalProperties": false,
|
|
7002
7661
|
"properties": {
|
|
@@ -7304,6 +7963,15 @@
|
|
|
7304
7963
|
"events": {
|
|
7305
7964
|
"additionalProperties": false,
|
|
7306
7965
|
"properties": {
|
|
7966
|
+
"defaults": {
|
|
7967
|
+
"$ref": "#/definitions/Record<string,{event:string;property:string;}>"
|
|
7968
|
+
},
|
|
7969
|
+
"favorites": {
|
|
7970
|
+
"items": {
|
|
7971
|
+
"type": "string"
|
|
7972
|
+
},
|
|
7973
|
+
"type": "array"
|
|
7974
|
+
},
|
|
7307
7975
|
"graphicBaseTemplate": {
|
|
7308
7976
|
"type": "string"
|
|
7309
7977
|
}
|
|
@@ -7371,6 +8039,9 @@
|
|
|
7371
8039
|
"json": {
|
|
7372
8040
|
"type": "boolean"
|
|
7373
8041
|
},
|
|
8042
|
+
"multiplexWebSockets": {
|
|
8043
|
+
"type": "boolean"
|
|
8044
|
+
},
|
|
7374
8045
|
"refs": {
|
|
7375
8046
|
"type": "boolean"
|
|
7376
8047
|
},
|
|
@@ -7655,18 +8326,14 @@
|
|
|
7655
8326
|
"subtitles": {
|
|
7656
8327
|
"additionalProperties": false,
|
|
7657
8328
|
"properties": {
|
|
7658
|
-
"
|
|
8329
|
+
"colors": {
|
|
7659
8330
|
"items": {
|
|
7660
8331
|
"additionalProperties": false,
|
|
7661
8332
|
"properties": {
|
|
7662
|
-
"
|
|
7663
|
-
"description": "aspect ratio in the form of \"width:height\"",
|
|
8333
|
+
"color": {
|
|
7664
8334
|
"type": "string"
|
|
7665
8335
|
},
|
|
7666
|
-
"
|
|
7667
|
-
"type": "number"
|
|
7668
|
-
},
|
|
7669
|
-
"style": {
|
|
8336
|
+
"label": {
|
|
7670
8337
|
"type": "string"
|
|
7671
8338
|
}
|
|
7672
8339
|
},
|
|
@@ -7679,6 +8346,28 @@
|
|
|
7679
8346
|
},
|
|
7680
8347
|
"spacing": {
|
|
7681
8348
|
"type": "number"
|
|
8349
|
+
},
|
|
8350
|
+
"suggestions": {
|
|
8351
|
+
"items": {
|
|
8352
|
+
"additionalProperties": false,
|
|
8353
|
+
"properties": {
|
|
8354
|
+
"ifAspectRatio": {
|
|
8355
|
+
"description": "aspect ratio in the form of \"width:height\"",
|
|
8356
|
+
"type": "string"
|
|
8357
|
+
},
|
|
8358
|
+
"ifLang": {
|
|
8359
|
+
"type": "string"
|
|
8360
|
+
},
|
|
8361
|
+
"thenMaxCharactersPerLine": {
|
|
8362
|
+
"type": "number"
|
|
8363
|
+
},
|
|
8364
|
+
"thenStyle": {
|
|
8365
|
+
"type": "string"
|
|
8366
|
+
}
|
|
8367
|
+
},
|
|
8368
|
+
"type": "object"
|
|
8369
|
+
},
|
|
8370
|
+
"type": "array"
|
|
7682
8371
|
}
|
|
7683
8372
|
},
|
|
7684
8373
|
"required": [
|
|
@@ -7893,6 +8582,18 @@
|
|
|
7893
8582
|
},
|
|
7894
8583
|
"type": "array"
|
|
7895
8584
|
},
|
|
8585
|
+
"print": {
|
|
8586
|
+
"additionalProperties": false,
|
|
8587
|
+
"properties": {
|
|
8588
|
+
"fontFamilies": {
|
|
8589
|
+
"items": {
|
|
8590
|
+
"type": "string"
|
|
8591
|
+
},
|
|
8592
|
+
"type": "array"
|
|
8593
|
+
}
|
|
8594
|
+
},
|
|
8595
|
+
"type": "object"
|
|
8596
|
+
},
|
|
7896
8597
|
"rundown": {
|
|
7897
8598
|
"additionalProperties": false,
|
|
7898
8599
|
"properties": {
|
|
@@ -7908,6 +8609,21 @@
|
|
|
7908
8609
|
"script": {
|
|
7909
8610
|
"additionalProperties": false,
|
|
7910
8611
|
"properties": {
|
|
8612
|
+
"collapsedNodes": {
|
|
8613
|
+
"additionalProperties": {
|
|
8614
|
+
"additionalProperties": false,
|
|
8615
|
+
"properties": {
|
|
8616
|
+
"children": {
|
|
8617
|
+
"type": "boolean"
|
|
8618
|
+
},
|
|
8619
|
+
"preview": {
|
|
8620
|
+
"type": "boolean"
|
|
8621
|
+
}
|
|
8622
|
+
},
|
|
8623
|
+
"type": "object"
|
|
8624
|
+
},
|
|
8625
|
+
"type": "object"
|
|
8626
|
+
},
|
|
7911
8627
|
"colorTags": {
|
|
7912
8628
|
"items": {
|
|
7913
8629
|
"$ref": "#/definitions/PromotedTag"
|
|
@@ -7919,17 +8635,35 @@
|
|
|
7919
8635
|
"properties": {
|
|
7920
8636
|
"showPreview": {
|
|
7921
8637
|
"type": "boolean"
|
|
8638
|
+
},
|
|
8639
|
+
"sortBy": {
|
|
8640
|
+
"enum": [
|
|
8641
|
+
"index",
|
|
8642
|
+
"title"
|
|
8643
|
+
],
|
|
8644
|
+
"type": "string"
|
|
7922
8645
|
}
|
|
7923
8646
|
},
|
|
7924
|
-
"required": [
|
|
7925
|
-
"showPreview"
|
|
7926
|
-
],
|
|
7927
8647
|
"type": "object"
|
|
8648
|
+
},
|
|
8649
|
+
"readRate": {
|
|
8650
|
+
"type": "number"
|
|
8651
|
+
},
|
|
8652
|
+
"readType": {
|
|
8653
|
+
"enum": [
|
|
8654
|
+
"characters",
|
|
8655
|
+
"words",
|
|
8656
|
+
"wordsPerMinute"
|
|
8657
|
+
],
|
|
8658
|
+
"type": "string"
|
|
7928
8659
|
}
|
|
7929
8660
|
},
|
|
7930
8661
|
"required": [
|
|
8662
|
+
"collapsedNodes",
|
|
7931
8663
|
"colorTags",
|
|
7932
|
-
"createMenu"
|
|
8664
|
+
"createMenu",
|
|
8665
|
+
"readRate",
|
|
8666
|
+
"readType"
|
|
7933
8667
|
],
|
|
7934
8668
|
"type": "object"
|
|
7935
8669
|
},
|
|
@@ -7954,6 +8688,9 @@
|
|
|
7954
8688
|
"excerpt": {
|
|
7955
8689
|
"additionalProperties": false,
|
|
7956
8690
|
"properties": {
|
|
8691
|
+
"comments": {
|
|
8692
|
+
"type": "boolean"
|
|
8693
|
+
},
|
|
7957
8694
|
"maxLines": {
|
|
7958
8695
|
"type": "number"
|
|
7959
8696
|
},
|
|
@@ -8406,6 +9143,21 @@
|
|
|
8406
9143
|
"outlineColour": {
|
|
8407
9144
|
"type": "string"
|
|
8408
9145
|
},
|
|
9146
|
+
"previewSettings": {
|
|
9147
|
+
"additionalProperties": false,
|
|
9148
|
+
"properties": {
|
|
9149
|
+
"aspectRatio": {
|
|
9150
|
+
"type": "string"
|
|
9151
|
+
},
|
|
9152
|
+
"backgroundAssetId": {
|
|
9153
|
+
"type": "string"
|
|
9154
|
+
},
|
|
9155
|
+
"text": {
|
|
9156
|
+
"type": "string"
|
|
9157
|
+
}
|
|
9158
|
+
},
|
|
9159
|
+
"type": "object"
|
|
9160
|
+
},
|
|
8409
9161
|
"primaryColour": {
|
|
8410
9162
|
"type": "string"
|
|
8411
9163
|
},
|
|
@@ -8490,6 +9242,33 @@
|
|
|
8490
9242
|
],
|
|
8491
9243
|
"type": "object"
|
|
8492
9244
|
},
|
|
9245
|
+
"TextNodeContent": {
|
|
9246
|
+
"additionalProperties": false,
|
|
9247
|
+
"properties": {
|
|
9248
|
+
"format": {
|
|
9249
|
+
"type": "number"
|
|
9250
|
+
},
|
|
9251
|
+
"style": {
|
|
9252
|
+
"type": "string"
|
|
9253
|
+
},
|
|
9254
|
+
"text": {
|
|
9255
|
+
"type": "string"
|
|
9256
|
+
},
|
|
9257
|
+
"type": {
|
|
9258
|
+
"enum": [
|
|
9259
|
+
"autolink",
|
|
9260
|
+
"link",
|
|
9261
|
+
"text"
|
|
9262
|
+
],
|
|
9263
|
+
"type": "string"
|
|
9264
|
+
}
|
|
9265
|
+
},
|
|
9266
|
+
"required": [
|
|
9267
|
+
"text",
|
|
9268
|
+
"type"
|
|
9269
|
+
],
|
|
9270
|
+
"type": "object"
|
|
9271
|
+
},
|
|
8493
9272
|
"UserDomainLatestSeenNotificationRecord": {
|
|
8494
9273
|
"additionalProperties": false,
|
|
8495
9274
|
"properties": {
|