@shotstack/schemas 1.8.6 → 1.9.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/README.md +89 -89
- package/dist/api.bundled.json +76 -75
- package/dist/json-schema/asset.json +137 -100
- package/dist/json-schema/clip.json +137 -100
- package/dist/json-schema/edit.json +137 -100
- package/dist/json-schema/rich-caption-active-font.json +18 -1
- package/dist/json-schema/rich-caption-active.json +105 -1
- package/dist/json-schema/rich-caption-asset.json +278 -241
- package/dist/json-schema/schemas.json +150 -112
- package/dist/json-schema/timeline.json +137 -100
- package/dist/json-schema/track.json +137 -100
- package/dist/schema.d.ts +56 -47
- package/dist/zod/zod.gen.cjs +1116 -970
- package/dist/zod/zod.gen.d.ts +1921 -1709
- package/dist/zod/zod.gen.js +1112 -966
- package/dist/zod/zod.gen.ts +1605 -1674
- package/package.json +95 -79
- package/dist/json-schema/word-timing.json +0 -44
|
@@ -1726,32 +1726,109 @@
|
|
|
1726
1726
|
"type": "string"
|
|
1727
1727
|
},
|
|
1728
1728
|
"src": {
|
|
1729
|
-
"
|
|
1730
|
-
{
|
|
1731
|
-
"type": "string"
|
|
1732
|
-
},
|
|
1733
|
-
{
|
|
1734
|
-
"type": "null"
|
|
1735
|
-
}
|
|
1736
|
-
]
|
|
1737
|
-
},
|
|
1738
|
-
"words": {
|
|
1739
|
-
"anyOf": [
|
|
1740
|
-
{
|
|
1741
|
-
"type": "array",
|
|
1742
|
-
"items": {
|
|
1743
|
-
"$ref": "#/$defs/WordTiming"
|
|
1744
|
-
}
|
|
1745
|
-
},
|
|
1746
|
-
{
|
|
1747
|
-
"type": "null"
|
|
1748
|
-
}
|
|
1749
|
-
]
|
|
1729
|
+
"type": "string"
|
|
1750
1730
|
},
|
|
1751
1731
|
"font": {
|
|
1752
1732
|
"anyOf": [
|
|
1753
1733
|
{
|
|
1754
|
-
"
|
|
1734
|
+
"type": "object",
|
|
1735
|
+
"properties": {
|
|
1736
|
+
"family": {
|
|
1737
|
+
"anyOf": [
|
|
1738
|
+
{
|
|
1739
|
+
"type": "string",
|
|
1740
|
+
"enum": [
|
|
1741
|
+
"Roboto"
|
|
1742
|
+
]
|
|
1743
|
+
},
|
|
1744
|
+
{
|
|
1745
|
+
"type": "null"
|
|
1746
|
+
}
|
|
1747
|
+
]
|
|
1748
|
+
},
|
|
1749
|
+
"size": {
|
|
1750
|
+
"anyOf": [
|
|
1751
|
+
{
|
|
1752
|
+
"type": "integer",
|
|
1753
|
+
"minimum": 1,
|
|
1754
|
+
"maximum": 500
|
|
1755
|
+
},
|
|
1756
|
+
{
|
|
1757
|
+
"type": "null"
|
|
1758
|
+
}
|
|
1759
|
+
]
|
|
1760
|
+
},
|
|
1761
|
+
"weight": {
|
|
1762
|
+
"anyOf": [
|
|
1763
|
+
{
|
|
1764
|
+
"type": "string"
|
|
1765
|
+
},
|
|
1766
|
+
{
|
|
1767
|
+
"type": "null"
|
|
1768
|
+
}
|
|
1769
|
+
]
|
|
1770
|
+
},
|
|
1771
|
+
"color": {
|
|
1772
|
+
"anyOf": [
|
|
1773
|
+
{
|
|
1774
|
+
"type": "string",
|
|
1775
|
+
"enum": [
|
|
1776
|
+
"#ffffff"
|
|
1777
|
+
]
|
|
1778
|
+
},
|
|
1779
|
+
{
|
|
1780
|
+
"type": "null"
|
|
1781
|
+
}
|
|
1782
|
+
]
|
|
1783
|
+
},
|
|
1784
|
+
"opacity": {
|
|
1785
|
+
"anyOf": [
|
|
1786
|
+
{
|
|
1787
|
+
"type": "number",
|
|
1788
|
+
"minimum": 0,
|
|
1789
|
+
"maximum": 1
|
|
1790
|
+
},
|
|
1791
|
+
{
|
|
1792
|
+
"type": "null"
|
|
1793
|
+
}
|
|
1794
|
+
]
|
|
1795
|
+
},
|
|
1796
|
+
"background": {
|
|
1797
|
+
"anyOf": [
|
|
1798
|
+
{
|
|
1799
|
+
"type": "string"
|
|
1800
|
+
},
|
|
1801
|
+
{
|
|
1802
|
+
"type": "null"
|
|
1803
|
+
}
|
|
1804
|
+
]
|
|
1805
|
+
},
|
|
1806
|
+
"textDecoration": {
|
|
1807
|
+
"anyOf": [
|
|
1808
|
+
{
|
|
1809
|
+
"type": "string",
|
|
1810
|
+
"enum": [
|
|
1811
|
+
"none",
|
|
1812
|
+
"underline",
|
|
1813
|
+
"line-through"
|
|
1814
|
+
]
|
|
1815
|
+
},
|
|
1816
|
+
{
|
|
1817
|
+
"type": "null"
|
|
1818
|
+
}
|
|
1819
|
+
]
|
|
1820
|
+
}
|
|
1821
|
+
},
|
|
1822
|
+
"additionalProperties": false,
|
|
1823
|
+
"required": [
|
|
1824
|
+
"family",
|
|
1825
|
+
"size",
|
|
1826
|
+
"weight",
|
|
1827
|
+
"color",
|
|
1828
|
+
"opacity",
|
|
1829
|
+
"background",
|
|
1830
|
+
"textDecoration"
|
|
1831
|
+
]
|
|
1755
1832
|
},
|
|
1756
1833
|
{
|
|
1757
1834
|
"type": "null"
|
|
@@ -1798,6 +1875,16 @@
|
|
|
1798
1875
|
}
|
|
1799
1876
|
]
|
|
1800
1877
|
},
|
|
1878
|
+
"border": {
|
|
1879
|
+
"anyOf": [
|
|
1880
|
+
{
|
|
1881
|
+
"$ref": "#/$defs/RichTextAsset/properties/border"
|
|
1882
|
+
},
|
|
1883
|
+
{
|
|
1884
|
+
"type": "null"
|
|
1885
|
+
}
|
|
1886
|
+
]
|
|
1887
|
+
},
|
|
1801
1888
|
"padding": {
|
|
1802
1889
|
"anyOf": [
|
|
1803
1890
|
{
|
|
@@ -1841,118 +1928,51 @@
|
|
|
1841
1928
|
"type": "null"
|
|
1842
1929
|
}
|
|
1843
1930
|
]
|
|
1844
|
-
},
|
|
1845
|
-
"position": {
|
|
1846
|
-
"anyOf": [
|
|
1847
|
-
{
|
|
1848
|
-
"type": "string",
|
|
1849
|
-
"enum": [
|
|
1850
|
-
"top",
|
|
1851
|
-
"center",
|
|
1852
|
-
"bottom"
|
|
1853
|
-
]
|
|
1854
|
-
},
|
|
1855
|
-
{
|
|
1856
|
-
"type": "null"
|
|
1857
|
-
}
|
|
1858
|
-
]
|
|
1859
|
-
},
|
|
1860
|
-
"maxWidth": {
|
|
1861
|
-
"anyOf": [
|
|
1862
|
-
{
|
|
1863
|
-
"type": "number",
|
|
1864
|
-
"minimum": 0.1,
|
|
1865
|
-
"maximum": 1
|
|
1866
|
-
},
|
|
1867
|
-
{
|
|
1868
|
-
"type": "null"
|
|
1869
|
-
}
|
|
1870
|
-
]
|
|
1871
|
-
},
|
|
1872
|
-
"maxLines": {
|
|
1873
|
-
"anyOf": [
|
|
1874
|
-
{
|
|
1875
|
-
"type": "integer",
|
|
1876
|
-
"minimum": 1,
|
|
1877
|
-
"maximum": 10
|
|
1878
|
-
},
|
|
1879
|
-
{
|
|
1880
|
-
"type": "null"
|
|
1881
|
-
}
|
|
1882
|
-
]
|
|
1883
1931
|
}
|
|
1884
1932
|
},
|
|
1885
1933
|
"additionalProperties": false,
|
|
1886
1934
|
"required": [
|
|
1887
1935
|
"type",
|
|
1888
1936
|
"src",
|
|
1889
|
-
"words",
|
|
1890
1937
|
"font",
|
|
1891
1938
|
"style",
|
|
1892
1939
|
"stroke",
|
|
1893
1940
|
"shadow",
|
|
1894
1941
|
"background",
|
|
1942
|
+
"border",
|
|
1895
1943
|
"padding",
|
|
1896
1944
|
"align",
|
|
1897
1945
|
"active",
|
|
1898
|
-
"wordAnimation"
|
|
1899
|
-
"position",
|
|
1900
|
-
"maxWidth",
|
|
1901
|
-
"maxLines"
|
|
1946
|
+
"wordAnimation"
|
|
1902
1947
|
]
|
|
1903
1948
|
},
|
|
1904
|
-
"
|
|
1949
|
+
"RichCaptionActive": {
|
|
1905
1950
|
"type": "object",
|
|
1906
1951
|
"properties": {
|
|
1907
|
-
"
|
|
1908
|
-
"type": "string"
|
|
1909
|
-
},
|
|
1910
|
-
"start": {
|
|
1911
|
-
"type": "number",
|
|
1912
|
-
"minimum": 0
|
|
1913
|
-
},
|
|
1914
|
-
"end": {
|
|
1915
|
-
"type": "number",
|
|
1916
|
-
"minimum": 0
|
|
1917
|
-
},
|
|
1918
|
-
"confidence": {
|
|
1952
|
+
"font": {
|
|
1919
1953
|
"anyOf": [
|
|
1920
1954
|
{
|
|
1921
|
-
"
|
|
1922
|
-
"minimum": 0,
|
|
1923
|
-
"maximum": 1
|
|
1955
|
+
"$ref": "#/$defs/RichCaptionActiveFont"
|
|
1924
1956
|
},
|
|
1925
1957
|
{
|
|
1926
1958
|
"type": "null"
|
|
1927
1959
|
}
|
|
1928
1960
|
]
|
|
1929
|
-
}
|
|
1930
|
-
|
|
1931
|
-
"additionalProperties": false,
|
|
1932
|
-
"required": [
|
|
1933
|
-
"text",
|
|
1934
|
-
"start",
|
|
1935
|
-
"end",
|
|
1936
|
-
"confidence"
|
|
1937
|
-
]
|
|
1938
|
-
},
|
|
1939
|
-
"RichCaptionActive": {
|
|
1940
|
-
"type": "object",
|
|
1941
|
-
"properties": {
|
|
1942
|
-
"font": {
|
|
1961
|
+
},
|
|
1962
|
+
"stroke": {
|
|
1943
1963
|
"anyOf": [
|
|
1944
1964
|
{
|
|
1945
|
-
"$ref": "#/$defs/
|
|
1965
|
+
"$ref": "#/$defs/RichTextStroke"
|
|
1946
1966
|
},
|
|
1947
1967
|
{
|
|
1948
1968
|
"type": "null"
|
|
1949
1969
|
}
|
|
1950
1970
|
]
|
|
1951
1971
|
},
|
|
1952
|
-
"
|
|
1972
|
+
"shadow": {
|
|
1953
1973
|
"anyOf": [
|
|
1954
1974
|
{
|
|
1955
|
-
"$ref": "#/$defs/
|
|
1975
|
+
"$ref": "#/$defs/RichTextShadow"
|
|
1956
1976
|
},
|
|
1957
1977
|
{
|
|
1958
1978
|
"type": "null"
|
|
@@ -1976,6 +1996,7 @@
|
|
|
1976
1996
|
"required": [
|
|
1977
1997
|
"font",
|
|
1978
1998
|
"stroke",
|
|
1999
|
+
"shadow",
|
|
1979
2000
|
"scale"
|
|
1980
2001
|
]
|
|
1981
2002
|
},
|
|
@@ -2016,13 +2037,29 @@
|
|
|
2016
2037
|
"type": "null"
|
|
2017
2038
|
}
|
|
2018
2039
|
]
|
|
2040
|
+
},
|
|
2041
|
+
"textDecoration": {
|
|
2042
|
+
"anyOf": [
|
|
2043
|
+
{
|
|
2044
|
+
"type": "string",
|
|
2045
|
+
"enum": [
|
|
2046
|
+
"none",
|
|
2047
|
+
"underline",
|
|
2048
|
+
"line-through"
|
|
2049
|
+
]
|
|
2050
|
+
},
|
|
2051
|
+
{
|
|
2052
|
+
"type": "null"
|
|
2053
|
+
}
|
|
2054
|
+
]
|
|
2019
2055
|
}
|
|
2020
2056
|
},
|
|
2021
2057
|
"additionalProperties": false,
|
|
2022
2058
|
"required": [
|
|
2023
2059
|
"color",
|
|
2024
2060
|
"background",
|
|
2025
|
-
"opacity"
|
|
2061
|
+
"opacity",
|
|
2062
|
+
"textDecoration"
|
|
2026
2063
|
]
|
|
2027
2064
|
},
|
|
2028
2065
|
"RichCaptionWordAnimation": {
|
|
@@ -1910,32 +1910,109 @@
|
|
|
1910
1910
|
"type": "string"
|
|
1911
1911
|
},
|
|
1912
1912
|
"src": {
|
|
1913
|
-
"
|
|
1914
|
-
{
|
|
1915
|
-
"type": "string"
|
|
1916
|
-
},
|
|
1917
|
-
{
|
|
1918
|
-
"type": "null"
|
|
1919
|
-
}
|
|
1920
|
-
]
|
|
1921
|
-
},
|
|
1922
|
-
"words": {
|
|
1923
|
-
"anyOf": [
|
|
1924
|
-
{
|
|
1925
|
-
"type": "array",
|
|
1926
|
-
"items": {
|
|
1927
|
-
"$ref": "#/$defs/WordTiming"
|
|
1928
|
-
}
|
|
1929
|
-
},
|
|
1930
|
-
{
|
|
1931
|
-
"type": "null"
|
|
1932
|
-
}
|
|
1933
|
-
]
|
|
1913
|
+
"type": "string"
|
|
1934
1914
|
},
|
|
1935
1915
|
"font": {
|
|
1936
1916
|
"anyOf": [
|
|
1937
1917
|
{
|
|
1938
|
-
"
|
|
1918
|
+
"type": "object",
|
|
1919
|
+
"properties": {
|
|
1920
|
+
"family": {
|
|
1921
|
+
"anyOf": [
|
|
1922
|
+
{
|
|
1923
|
+
"type": "string",
|
|
1924
|
+
"enum": [
|
|
1925
|
+
"Roboto"
|
|
1926
|
+
]
|
|
1927
|
+
},
|
|
1928
|
+
{
|
|
1929
|
+
"type": "null"
|
|
1930
|
+
}
|
|
1931
|
+
]
|
|
1932
|
+
},
|
|
1933
|
+
"size": {
|
|
1934
|
+
"anyOf": [
|
|
1935
|
+
{
|
|
1936
|
+
"type": "integer",
|
|
1937
|
+
"minimum": 1,
|
|
1938
|
+
"maximum": 500
|
|
1939
|
+
},
|
|
1940
|
+
{
|
|
1941
|
+
"type": "null"
|
|
1942
|
+
}
|
|
1943
|
+
]
|
|
1944
|
+
},
|
|
1945
|
+
"weight": {
|
|
1946
|
+
"anyOf": [
|
|
1947
|
+
{
|
|
1948
|
+
"type": "string"
|
|
1949
|
+
},
|
|
1950
|
+
{
|
|
1951
|
+
"type": "null"
|
|
1952
|
+
}
|
|
1953
|
+
]
|
|
1954
|
+
},
|
|
1955
|
+
"color": {
|
|
1956
|
+
"anyOf": [
|
|
1957
|
+
{
|
|
1958
|
+
"type": "string",
|
|
1959
|
+
"enum": [
|
|
1960
|
+
"#ffffff"
|
|
1961
|
+
]
|
|
1962
|
+
},
|
|
1963
|
+
{
|
|
1964
|
+
"type": "null"
|
|
1965
|
+
}
|
|
1966
|
+
]
|
|
1967
|
+
},
|
|
1968
|
+
"opacity": {
|
|
1969
|
+
"anyOf": [
|
|
1970
|
+
{
|
|
1971
|
+
"type": "number",
|
|
1972
|
+
"minimum": 0,
|
|
1973
|
+
"maximum": 1
|
|
1974
|
+
},
|
|
1975
|
+
{
|
|
1976
|
+
"type": "null"
|
|
1977
|
+
}
|
|
1978
|
+
]
|
|
1979
|
+
},
|
|
1980
|
+
"background": {
|
|
1981
|
+
"anyOf": [
|
|
1982
|
+
{
|
|
1983
|
+
"type": "string"
|
|
1984
|
+
},
|
|
1985
|
+
{
|
|
1986
|
+
"type": "null"
|
|
1987
|
+
}
|
|
1988
|
+
]
|
|
1989
|
+
},
|
|
1990
|
+
"textDecoration": {
|
|
1991
|
+
"anyOf": [
|
|
1992
|
+
{
|
|
1993
|
+
"type": "string",
|
|
1994
|
+
"enum": [
|
|
1995
|
+
"none",
|
|
1996
|
+
"underline",
|
|
1997
|
+
"line-through"
|
|
1998
|
+
]
|
|
1999
|
+
},
|
|
2000
|
+
{
|
|
2001
|
+
"type": "null"
|
|
2002
|
+
}
|
|
2003
|
+
]
|
|
2004
|
+
}
|
|
2005
|
+
},
|
|
2006
|
+
"additionalProperties": false,
|
|
2007
|
+
"required": [
|
|
2008
|
+
"family",
|
|
2009
|
+
"size",
|
|
2010
|
+
"weight",
|
|
2011
|
+
"color",
|
|
2012
|
+
"opacity",
|
|
2013
|
+
"background",
|
|
2014
|
+
"textDecoration"
|
|
2015
|
+
]
|
|
1939
2016
|
},
|
|
1940
2017
|
{
|
|
1941
2018
|
"type": "null"
|
|
@@ -1982,6 +2059,16 @@
|
|
|
1982
2059
|
}
|
|
1983
2060
|
]
|
|
1984
2061
|
},
|
|
2062
|
+
"border": {
|
|
2063
|
+
"anyOf": [
|
|
2064
|
+
{
|
|
2065
|
+
"$ref": "#/$defs/RichTextAsset/properties/border"
|
|
2066
|
+
},
|
|
2067
|
+
{
|
|
2068
|
+
"type": "null"
|
|
2069
|
+
}
|
|
2070
|
+
]
|
|
2071
|
+
},
|
|
1985
2072
|
"padding": {
|
|
1986
2073
|
"anyOf": [
|
|
1987
2074
|
{
|
|
@@ -2025,118 +2112,51 @@
|
|
|
2025
2112
|
"type": "null"
|
|
2026
2113
|
}
|
|
2027
2114
|
]
|
|
2028
|
-
},
|
|
2029
|
-
"position": {
|
|
2030
|
-
"anyOf": [
|
|
2031
|
-
{
|
|
2032
|
-
"type": "string",
|
|
2033
|
-
"enum": [
|
|
2034
|
-
"top",
|
|
2035
|
-
"center",
|
|
2036
|
-
"bottom"
|
|
2037
|
-
]
|
|
2038
|
-
},
|
|
2039
|
-
{
|
|
2040
|
-
"type": "null"
|
|
2041
|
-
}
|
|
2042
|
-
]
|
|
2043
|
-
},
|
|
2044
|
-
"maxWidth": {
|
|
2045
|
-
"anyOf": [
|
|
2046
|
-
{
|
|
2047
|
-
"type": "number",
|
|
2048
|
-
"minimum": 0.1,
|
|
2049
|
-
"maximum": 1
|
|
2050
|
-
},
|
|
2051
|
-
{
|
|
2052
|
-
"type": "null"
|
|
2053
|
-
}
|
|
2054
|
-
]
|
|
2055
|
-
},
|
|
2056
|
-
"maxLines": {
|
|
2057
|
-
"anyOf": [
|
|
2058
|
-
{
|
|
2059
|
-
"type": "integer",
|
|
2060
|
-
"minimum": 1,
|
|
2061
|
-
"maximum": 10
|
|
2062
|
-
},
|
|
2063
|
-
{
|
|
2064
|
-
"type": "null"
|
|
2065
|
-
}
|
|
2066
|
-
]
|
|
2067
2115
|
}
|
|
2068
2116
|
},
|
|
2069
2117
|
"additionalProperties": false,
|
|
2070
2118
|
"required": [
|
|
2071
2119
|
"type",
|
|
2072
2120
|
"src",
|
|
2073
|
-
"words",
|
|
2074
2121
|
"font",
|
|
2075
2122
|
"style",
|
|
2076
2123
|
"stroke",
|
|
2077
2124
|
"shadow",
|
|
2078
2125
|
"background",
|
|
2126
|
+
"border",
|
|
2079
2127
|
"padding",
|
|
2080
2128
|
"align",
|
|
2081
2129
|
"active",
|
|
2082
|
-
"wordAnimation"
|
|
2083
|
-
"position",
|
|
2084
|
-
"maxWidth",
|
|
2085
|
-
"maxLines"
|
|
2130
|
+
"wordAnimation"
|
|
2086
2131
|
]
|
|
2087
2132
|
},
|
|
2088
|
-
"
|
|
2133
|
+
"RichCaptionActive": {
|
|
2089
2134
|
"type": "object",
|
|
2090
2135
|
"properties": {
|
|
2091
|
-
"
|
|
2092
|
-
"type": "string"
|
|
2093
|
-
},
|
|
2094
|
-
"start": {
|
|
2095
|
-
"type": "number",
|
|
2096
|
-
"minimum": 0
|
|
2097
|
-
},
|
|
2098
|
-
"end": {
|
|
2099
|
-
"type": "number",
|
|
2100
|
-
"minimum": 0
|
|
2101
|
-
},
|
|
2102
|
-
"confidence": {
|
|
2136
|
+
"font": {
|
|
2103
2137
|
"anyOf": [
|
|
2104
2138
|
{
|
|
2105
|
-
"
|
|
2106
|
-
"minimum": 0,
|
|
2107
|
-
"maximum": 1
|
|
2139
|
+
"$ref": "#/$defs/RichCaptionActiveFont"
|
|
2108
2140
|
},
|
|
2109
2141
|
{
|
|
2110
2142
|
"type": "null"
|
|
2111
2143
|
}
|
|
2112
2144
|
]
|
|
2113
|
-
}
|
|
2114
|
-
|
|
2115
|
-
"additionalProperties": false,
|
|
2116
|
-
"required": [
|
|
2117
|
-
"text",
|
|
2118
|
-
"start",
|
|
2119
|
-
"end",
|
|
2120
|
-
"confidence"
|
|
2121
|
-
]
|
|
2122
|
-
},
|
|
2123
|
-
"RichCaptionActive": {
|
|
2124
|
-
"type": "object",
|
|
2125
|
-
"properties": {
|
|
2126
|
-
"font": {
|
|
2145
|
+
},
|
|
2146
|
+
"stroke": {
|
|
2127
2147
|
"anyOf": [
|
|
2128
2148
|
{
|
|
2129
|
-
"$ref": "#/$defs/
|
|
2149
|
+
"$ref": "#/$defs/RichTextStroke"
|
|
2130
2150
|
},
|
|
2131
2151
|
{
|
|
2132
2152
|
"type": "null"
|
|
2133
2153
|
}
|
|
2134
2154
|
]
|
|
2135
2155
|
},
|
|
2136
|
-
"
|
|
2156
|
+
"shadow": {
|
|
2137
2157
|
"anyOf": [
|
|
2138
2158
|
{
|
|
2139
|
-
"$ref": "#/$defs/
|
|
2159
|
+
"$ref": "#/$defs/RichTextShadow"
|
|
2140
2160
|
},
|
|
2141
2161
|
{
|
|
2142
2162
|
"type": "null"
|
|
@@ -2160,6 +2180,7 @@
|
|
|
2160
2180
|
"required": [
|
|
2161
2181
|
"font",
|
|
2162
2182
|
"stroke",
|
|
2183
|
+
"shadow",
|
|
2163
2184
|
"scale"
|
|
2164
2185
|
]
|
|
2165
2186
|
},
|
|
@@ -2200,13 +2221,29 @@
|
|
|
2200
2221
|
"type": "null"
|
|
2201
2222
|
}
|
|
2202
2223
|
]
|
|
2224
|
+
},
|
|
2225
|
+
"textDecoration": {
|
|
2226
|
+
"anyOf": [
|
|
2227
|
+
{
|
|
2228
|
+
"type": "string",
|
|
2229
|
+
"enum": [
|
|
2230
|
+
"none",
|
|
2231
|
+
"underline",
|
|
2232
|
+
"line-through"
|
|
2233
|
+
]
|
|
2234
|
+
},
|
|
2235
|
+
{
|
|
2236
|
+
"type": "null"
|
|
2237
|
+
}
|
|
2238
|
+
]
|
|
2203
2239
|
}
|
|
2204
2240
|
},
|
|
2205
2241
|
"additionalProperties": false,
|
|
2206
2242
|
"required": [
|
|
2207
2243
|
"color",
|
|
2208
2244
|
"background",
|
|
2209
|
-
"opacity"
|
|
2245
|
+
"opacity",
|
|
2246
|
+
"textDecoration"
|
|
2210
2247
|
]
|
|
2211
2248
|
},
|
|
2212
2249
|
"RichCaptionWordAnimation": {
|
|
@@ -42,13 +42,30 @@
|
|
|
42
42
|
"type": "null"
|
|
43
43
|
}
|
|
44
44
|
]
|
|
45
|
+
},
|
|
46
|
+
"textDecoration": {
|
|
47
|
+
"anyOf": [
|
|
48
|
+
{
|
|
49
|
+
"type": "string",
|
|
50
|
+
"description": "Text decoration to apply to the active word.",
|
|
51
|
+
"enum": [
|
|
52
|
+
"none",
|
|
53
|
+
"underline",
|
|
54
|
+
"line-through"
|
|
55
|
+
]
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"type": "null"
|
|
59
|
+
}
|
|
60
|
+
]
|
|
45
61
|
}
|
|
46
62
|
},
|
|
47
63
|
"additionalProperties": false,
|
|
48
64
|
"required": [
|
|
49
65
|
"color",
|
|
50
66
|
"background",
|
|
51
|
-
"opacity"
|
|
67
|
+
"opacity",
|
|
68
|
+
"textDecoration"
|
|
52
69
|
]
|
|
53
70
|
}
|
|
54
71
|
}
|