@financial-times/content-tree 0.15.0 → 0.16.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/SPEC.md
CHANGED
package/content-tree.d.ts
CHANGED
|
@@ -202,6 +202,7 @@ export declare namespace ContentTree {
|
|
|
202
202
|
interface Video extends Node {
|
|
203
203
|
type: "video";
|
|
204
204
|
id: string;
|
|
205
|
+
fragmentIdentifier?: string;
|
|
205
206
|
title: string;
|
|
206
207
|
}
|
|
207
208
|
interface YoutubeVideo extends Node {
|
|
@@ -696,6 +697,7 @@ export declare namespace ContentTree {
|
|
|
696
697
|
interface Video extends Node {
|
|
697
698
|
type: "video";
|
|
698
699
|
id: string;
|
|
700
|
+
fragmentIdentifier?: string;
|
|
699
701
|
title: string;
|
|
700
702
|
}
|
|
701
703
|
interface YoutubeVideo extends Node {
|
|
@@ -1187,6 +1189,7 @@ export declare namespace ContentTree {
|
|
|
1187
1189
|
interface Video extends Node {
|
|
1188
1190
|
type: "video";
|
|
1189
1191
|
id: string;
|
|
1192
|
+
fragmentIdentifier?: string;
|
|
1190
1193
|
}
|
|
1191
1194
|
interface YoutubeVideo extends Node {
|
|
1192
1195
|
type: "youtube-video";
|
|
@@ -1659,6 +1662,7 @@ export declare namespace ContentTree {
|
|
|
1659
1662
|
interface Video extends Node {
|
|
1660
1663
|
type: "video";
|
|
1661
1664
|
id: string;
|
|
1665
|
+
fragmentIdentifier?: string;
|
|
1662
1666
|
title?: string;
|
|
1663
1667
|
}
|
|
1664
1668
|
interface YoutubeVideo extends Node {
|
package/package.json
CHANGED
|
@@ -2076,6 +2076,9 @@
|
|
|
2076
2076
|
"additionalProperties": false,
|
|
2077
2077
|
"properties": {
|
|
2078
2078
|
"data": {},
|
|
2079
|
+
"fragmentIdentifier": {
|
|
2080
|
+
"type": "string"
|
|
2081
|
+
},
|
|
2079
2082
|
"id": {
|
|
2080
2083
|
"type": "string"
|
|
2081
2084
|
},
|
|
@@ -2087,6 +2090,7 @@
|
|
|
2087
2090
|
"propertyOrder": [
|
|
2088
2091
|
"type",
|
|
2089
2092
|
"id",
|
|
2093
|
+
"fragmentIdentifier",
|
|
2090
2094
|
"data"
|
|
2091
2095
|
],
|
|
2092
2096
|
"required": [
|