@financial-times/cp-content-pipeline-schema 2.9.2 → 2.10.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/CHANGELOG.md +20 -0
- package/lib/datasources/capi.d.ts +1 -0
- package/lib/datasources/capi.js +10 -0
- package/lib/datasources/capi.js.map +1 -1
- package/lib/generated/index.d.ts +87 -2
- package/lib/model/CapiResponse.d.ts +6 -0
- package/lib/model/CapiResponse.js +5 -0
- package/lib/model/CapiResponse.js.map +1 -1
- package/lib/model/FlourishSource.d.ts +22 -0
- package/lib/model/FlourishSource.js +89 -0
- package/lib/model/FlourishSource.js.map +1 -0
- package/lib/model/FlourishSource.test.d.ts +1 -0
- package/lib/model/FlourishSource.test.js +67 -0
- package/lib/model/FlourishSource.test.js.map +1 -0
- package/lib/model/LeadFlourish.d.ts +13 -0
- package/lib/model/LeadFlourish.js +35 -0
- package/lib/model/LeadFlourish.js.map +1 -0
- package/lib/model/LeadFlourish.test.d.ts +1 -0
- package/lib/model/LeadFlourish.test.js +62 -0
- package/lib/model/LeadFlourish.test.js.map +1 -0
- package/lib/model/Topper.d.ts +4 -1
- package/lib/model/Topper.js +15 -0
- package/lib/model/Topper.js.map +1 -1
- package/lib/model/Topper.test.js +21 -0
- package/lib/model/Topper.test.js.map +1 -1
- package/lib/model/schemas/capi/article.d.ts +153 -60
- package/lib/model/schemas/capi/article.js +1 -0
- package/lib/model/schemas/capi/article.js.map +1 -1
- package/lib/model/schemas/capi/audio.d.ts +1111 -119
- package/lib/model/schemas/capi/base-schema.d.ts +166 -99
- package/lib/model/schemas/capi/base-schema.js +8 -1
- package/lib/model/schemas/capi/base-schema.js.map +1 -1
- package/lib/model/schemas/capi/content-package.d.ts +836 -46
- package/lib/model/schemas/capi/content-package.js +1 -1
- package/lib/model/schemas/capi/content-package.js.map +1 -1
- package/lib/model/schemas/capi/live-blog-package.d.ts +230 -65
- package/lib/model/schemas/capi/live-blog-package.js +0 -1
- package/lib/model/schemas/capi/live-blog-package.js.map +1 -1
- package/lib/model/schemas/capi/placeholder.d.ts +143 -60
- package/lib/resolvers/content-tree/references/Flourish.d.ts +8 -2
- package/lib/resolvers/content-tree/references/Flourish.js +15 -40
- package/lib/resolvers/content-tree/references/Flourish.js.map +1 -1
- package/lib/resolvers/content-tree/references/Flourish.test.js +0 -30
- package/lib/resolvers/content-tree/references/Flourish.test.js.map +1 -1
- package/lib/resolvers/index.d.ts +36 -9
- package/lib/resolvers/index.js +2 -0
- package/lib/resolvers/index.js.map +1 -1
- package/lib/resolvers/leadFlourish.d.ts +16 -0
- package/lib/resolvers/leadFlourish.js +28 -0
- package/lib/resolvers/leadFlourish.js.map +1 -0
- package/lib/resolvers/topper.d.ts +23 -9
- package/lib/resolvers/topper.js +6 -0
- package/lib/resolvers/topper.js.map +1 -1
- package/package.json +1 -1
- package/queries/article.graphql +26 -0
- package/src/datasources/capi.ts +14 -0
- package/src/generated/index.ts +93 -2
- package/src/model/CapiResponse.ts +6 -0
- package/src/model/FlourishSource.test.ts +93 -0
- package/src/model/FlourishSource.ts +103 -0
- package/src/model/LeadFlourish.test.ts +71 -0
- package/src/model/LeadFlourish.ts +30 -0
- package/src/model/Topper.test.ts +26 -0
- package/src/model/Topper.ts +18 -0
- package/src/model/schemas/capi/article.ts +1 -0
- package/src/model/schemas/capi/base-schema.ts +8 -0
- package/src/model/schemas/capi/content-package.ts +1 -1
- package/src/model/schemas/capi/live-blog-package.ts +0 -1
- package/src/resolvers/content-tree/references/Flourish.test.ts +2 -49
- package/src/resolvers/content-tree/references/Flourish.ts +15 -59
- package/src/resolvers/index.ts +2 -0
- package/src/resolvers/leadFlourish.ts +31 -0
- package/src/resolvers/topper.ts +10 -0
- package/src/types/internal-content.d.ts +2 -0
- package/tsconfig.tsbuildinfo +1 -1
- package/typedefs/leadFlouish.graphql +29 -0
- package/typedefs/topper.graphql +35 -0
|
@@ -8,7 +8,6 @@ const contentPackageContentSchema = base_schema_1.baseContentSchema
|
|
|
8
8
|
summary: true,
|
|
9
9
|
alternativeTitles: true,
|
|
10
10
|
contains: true,
|
|
11
|
-
tableOfContents: true,
|
|
12
11
|
design: true,
|
|
13
12
|
bodyXML: true,
|
|
14
13
|
})
|
|
@@ -38,6 +37,7 @@ const contentPackageMetadataSchema = base_schema_1.baseMetadataSchema.pick({
|
|
|
38
37
|
const contentPackageMediaSchema = base_schema_1.baseMediaSchema.pick({
|
|
39
38
|
mainImage: true,
|
|
40
39
|
leadImages: true,
|
|
40
|
+
leadFlourish: true,
|
|
41
41
|
});
|
|
42
42
|
exports.contentPackageSchema = contentPackageContentSchema
|
|
43
43
|
.merge(contentPackageMetadataSchema)
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"content-package.js","sourceRoot":"","sources":["../../../../src/model/schemas/capi/content-package.ts"],"names":[],"mappings":";;;AAAA,+CAIsB;AAEtB,MAAM,2BAA2B,GAAG,+BAAiB;KAClD,IAAI,CAAC;IACJ,KAAK,EAAE,IAAI;IACX,OAAO,EAAE,IAAI;IACb,iBAAiB,EAAE,IAAI;IACvB,QAAQ,EAAE,IAAI;IACd,
|
|
1
|
+
{"version":3,"file":"content-package.js","sourceRoot":"","sources":["../../../../src/model/schemas/capi/content-package.ts"],"names":[],"mappings":";;;AAAA,+CAIsB;AAEtB,MAAM,2BAA2B,GAAG,+BAAiB;KAClD,IAAI,CAAC;IACJ,KAAK,EAAE,IAAI;IACX,OAAO,EAAE,IAAI;IACb,iBAAiB,EAAE,IAAI;IACvB,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE,IAAI;CACd,CAAC;KACD,KAAK,CACJ,+BAAiB;KACd,IAAI,CAAC;IACJ,OAAO,EAAE,IAAI;CACd,CAAC;KACD,OAAO,EAAE,CACb,CAAA;AAEH,MAAM,4BAA4B,GAAG,gCAAkB,CAAC,IAAI,CAAC;IAC3D,EAAE,EAAE,IAAI;IACR,WAAW,EAAE,IAAI;IACjB,MAAM,EAAE,IAAI;IACZ,eAAe,EAAE,IAAI;IACrB,IAAI,EAAE,IAAI;IACV,KAAK,EAAE,IAAI;IACX,QAAQ,EAAE,IAAI;IACd,aAAa,EAAE,IAAI;IACnB,kBAAkB,EAAE,IAAI;IACxB,WAAW,EAAE,IAAI;IACjB,aAAa,EAAE,IAAI;IACnB,eAAe,EAAE,IAAI;IACrB,gBAAgB,EAAE,IAAI;IACtB,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,eAAe,EAAE,IAAI;CACtB,CAAC,CAAA;AAEF,MAAM,yBAAyB,GAAG,6BAAe,CAAC,IAAI,CAAC;IACrD,SAAS,EAAE,IAAI;IACf,UAAU,EAAE,IAAI;IAChB,YAAY,EAAE,IAAI;CACnB,CAAC,CAAA;AAEW,QAAA,oBAAoB,GAAG,2BAA2B;KAC5D,KAAK,CAAC,4BAA4B,CAAC;KACnC,KAAK,CAAC,yBAAyB,CAAC,CAAA"}
|
|
@@ -1,10 +1,50 @@
|
|
|
1
|
-
export declare const liveBlogPackageSchema: import("zod").ZodObject<{
|
|
2
|
-
id: import("zod").ZodString;
|
|
3
|
-
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4
|
-
types: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
1
|
+
export declare const liveBlogPackageSchema: import("zod").ZodObject<import("zod").objectUtil.extendShape<import("zod").objectUtil.extendShape<Pick<{
|
|
5
2
|
title: import("zod").ZodString;
|
|
6
|
-
|
|
7
|
-
|
|
3
|
+
standfirst: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4
|
+
byline: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5
|
+
bodyXML: import("zod").ZodString;
|
|
6
|
+
summary: import("zod").ZodObject<{
|
|
7
|
+
bodyXML: import("zod").ZodString;
|
|
8
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
9
|
+
bodyXML: string;
|
|
10
|
+
}, {
|
|
11
|
+
bodyXML: string;
|
|
12
|
+
}>;
|
|
13
|
+
alternativeTitles: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
14
|
+
promotionalTitle: import("zod").ZodString;
|
|
15
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
16
|
+
promotionalTitle: string;
|
|
17
|
+
}, {
|
|
18
|
+
promotionalTitle: string;
|
|
19
|
+
}>>;
|
|
20
|
+
alternativeStandfirsts: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
21
|
+
promotionalStandfirst: import("zod").ZodOptional<import("zod").ZodString>;
|
|
22
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
23
|
+
promotionalStandfirst?: string | undefined;
|
|
24
|
+
}, {
|
|
25
|
+
promotionalStandfirst?: string | undefined;
|
|
26
|
+
}>>;
|
|
27
|
+
pinnedPosts: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
28
|
+
contains: import("zod").ZodArray<import("zod").ZodObject<{
|
|
29
|
+
id: import("zod").ZodString;
|
|
30
|
+
apiUrl: import("zod").ZodString;
|
|
31
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
32
|
+
id: string;
|
|
33
|
+
apiUrl: string;
|
|
34
|
+
}, {
|
|
35
|
+
id: string;
|
|
36
|
+
apiUrl: string;
|
|
37
|
+
}>, "many">;
|
|
38
|
+
design: import("zod").ZodObject<{
|
|
39
|
+
theme: import("zod").ZodUnion<[import("zod").ZodLiteral<"special-report">, import("zod").ZodLiteral<"extra">, import("zod").ZodLiteral<"basic">, import("zod").ZodLiteral<"extra-wide">]>;
|
|
40
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
41
|
+
theme: "special-report" | "extra" | "basic" | "extra-wide";
|
|
42
|
+
}, {
|
|
43
|
+
theme: "special-report" | "extra" | "basic" | "extra-wide";
|
|
44
|
+
}>;
|
|
45
|
+
}, "title" | "byline" | "summary" | "alternativeTitles" | "pinnedPosts" | "contains">, Pick<{
|
|
46
|
+
id: import("zod").ZodString;
|
|
47
|
+
annotations: import("zod").ZodArray<import("zod").ZodObject<import("zod").objectUtil.extendShape<{
|
|
8
48
|
id: import("zod").ZodString;
|
|
9
49
|
apiUrl: import("zod").ZodString;
|
|
10
50
|
directType: import("zod").ZodString;
|
|
@@ -12,8 +52,9 @@ export declare const liveBlogPackageSchema: import("zod").ZodObject<{
|
|
|
12
52
|
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
13
53
|
types: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
14
54
|
headshot: import("zod").ZodOptional<import("zod").ZodString>;
|
|
55
|
+
}, {
|
|
15
56
|
predicate: import("zod").ZodString;
|
|
16
|
-
}
|
|
57
|
+
}>, "strip", import("zod").ZodTypeAny, {
|
|
17
58
|
id: string;
|
|
18
59
|
apiUrl: string;
|
|
19
60
|
directType: string;
|
|
@@ -34,6 +75,8 @@ export declare const liveBlogPackageSchema: import("zod").ZodObject<{
|
|
|
34
75
|
}>, "many">;
|
|
35
76
|
webUrl: import("zod").ZodOptional<import("zod").ZodString>;
|
|
36
77
|
canonicalWebUrl: import("zod").ZodOptional<import("zod").ZodString>;
|
|
78
|
+
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
79
|
+
types: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
37
80
|
standout: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
38
81
|
editorsChoice: import("zod").ZodBoolean;
|
|
39
82
|
exclusive: import("zod").ZodBoolean;
|
|
@@ -47,7 +90,9 @@ export declare const liveBlogPackageSchema: import("zod").ZodObject<{
|
|
|
47
90
|
exclusive: boolean;
|
|
48
91
|
scoop: boolean;
|
|
49
92
|
}>>;
|
|
93
|
+
publishedDate: import("zod").ZodString;
|
|
50
94
|
firstPublishedDate: import("zod").ZodString;
|
|
95
|
+
realtime: import("zod").ZodBoolean;
|
|
51
96
|
editorialDesk: import("zod").ZodOptional<import("zod").ZodString>;
|
|
52
97
|
accessLevel: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"premium">, import("zod").ZodLiteral<"subscribed">, import("zod").ZodLiteral<"registered">, import("zod").ZodLiteral<"free">]>>;
|
|
53
98
|
canBeSyndicated: import("zod").ZodUnion<[import("zod").ZodLiteral<"yes">, import("zod").ZodLiteral<"no">, import("zod").ZodLiteral<"verify">, import("zod").ZodLiteral<"withContributorPayment">, import("zod").ZodLiteral<"unknown">]>;
|
|
@@ -59,6 +104,7 @@ export declare const liveBlogPackageSchema: import("zod").ZodObject<{
|
|
|
59
104
|
backgroundBox: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
60
105
|
textShadow: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
61
106
|
layout: import("zod").ZodString;
|
|
107
|
+
layoutWidth: import("zod").ZodOptional<import("zod").ZodString>;
|
|
62
108
|
}, "strip", import("zod").ZodTypeAny, {
|
|
63
109
|
backgroundColour: string;
|
|
64
110
|
layout: string;
|
|
@@ -66,6 +112,7 @@ export declare const liveBlogPackageSchema: import("zod").ZodObject<{
|
|
|
66
112
|
standfirst?: string | undefined;
|
|
67
113
|
backgroundBox?: boolean | undefined;
|
|
68
114
|
textShadow?: boolean | undefined;
|
|
115
|
+
layoutWidth?: string | undefined;
|
|
69
116
|
}, {
|
|
70
117
|
backgroundColour: string;
|
|
71
118
|
layout: string;
|
|
@@ -73,6 +120,7 @@ export declare const liveBlogPackageSchema: import("zod").ZodObject<{
|
|
|
73
120
|
standfirst?: string | undefined;
|
|
74
121
|
backgroundBox?: boolean | undefined;
|
|
75
122
|
textShadow?: boolean | undefined;
|
|
123
|
+
layoutWidth?: string | undefined;
|
|
76
124
|
}>>;
|
|
77
125
|
comments: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
78
126
|
enabled: import("zod").ZodBoolean;
|
|
@@ -81,32 +129,27 @@ export declare const liveBlogPackageSchema: import("zod").ZodObject<{
|
|
|
81
129
|
}, {
|
|
82
130
|
enabled: boolean;
|
|
83
131
|
}>>;
|
|
84
|
-
|
|
85
|
-
summary: import("zod").ZodObject<{
|
|
86
|
-
bodyXML: import("zod").ZodString;
|
|
87
|
-
}, "strip", import("zod").ZodTypeAny, {
|
|
88
|
-
bodyXML: string;
|
|
89
|
-
}, {
|
|
90
|
-
bodyXML: string;
|
|
91
|
-
}>;
|
|
92
|
-
alternativeTitles: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
93
|
-
promotionalTitle: import("zod").ZodString;
|
|
94
|
-
}, "strip", import("zod").ZodTypeAny, {
|
|
95
|
-
promotionalTitle: string;
|
|
96
|
-
}, {
|
|
97
|
-
promotionalTitle: string;
|
|
98
|
-
}>>;
|
|
99
|
-
pinnedPosts: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
100
|
-
contains: import("zod").ZodArray<import("zod").ZodObject<{
|
|
101
|
-
id: import("zod").ZodString;
|
|
132
|
+
containedIn: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
102
133
|
apiUrl: import("zod").ZodString;
|
|
134
|
+
id: import("zod").ZodString;
|
|
103
135
|
}, "strip", import("zod").ZodTypeAny, {
|
|
104
136
|
id: string;
|
|
105
137
|
apiUrl: string;
|
|
106
138
|
}, {
|
|
107
139
|
id: string;
|
|
108
140
|
apiUrl: string;
|
|
109
|
-
}>, "many"
|
|
141
|
+
}>, "many">>;
|
|
142
|
+
tableOfContents: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
143
|
+
labelType: import("zod").ZodString;
|
|
144
|
+
sequence: import("zod").ZodString;
|
|
145
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
146
|
+
labelType: string;
|
|
147
|
+
sequence: string;
|
|
148
|
+
}, {
|
|
149
|
+
labelType: string;
|
|
150
|
+
sequence: string;
|
|
151
|
+
}>>;
|
|
152
|
+
}, "id" | "type" | "types" | "publishedDate" | "annotations" | "webUrl" | "canonicalWebUrl" | "standout" | "firstPublishedDate" | "editorialDesk" | "accessLevel" | "canBeSyndicated" | "canBeDistributed" | "topper" | "comments">>, Pick<{
|
|
110
153
|
mainImage: import("zod").ZodOptional<import("zod").ZodDiscriminatedUnion<"type", [import("zod").ZodObject<{
|
|
111
154
|
id: import("zod").ZodString;
|
|
112
155
|
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/ImageSet">;
|
|
@@ -157,8 +200,9 @@ export declare const liveBlogPackageSchema: import("zod").ZodObject<{
|
|
|
157
200
|
maxDisplayWidth?: string | undefined;
|
|
158
201
|
pixelWidth?: number | undefined;
|
|
159
202
|
pixelHeight?: number | undefined;
|
|
160
|
-
}>, import("zod").ZodObject<{
|
|
203
|
+
}>, import("zod").ZodObject<import("zod").objectUtil.extendShape<{
|
|
161
204
|
id: import("zod").ZodString;
|
|
205
|
+
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
|
|
162
206
|
format: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"standardInline">, import("zod").ZodLiteral<"mobile">, import("zod").ZodLiteral<"desktop">, import("zod").ZodLiteral<"standard">, import("zod").ZodLiteral<"square">, import("zod").ZodLiteral<"ftEditSquare">, import("zod").ZodLiteral<"wide">, import("zod").ZodLiteral<"portrait">, import("zod").ZodLiteral<"landscape">]>>;
|
|
163
207
|
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
164
208
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -174,8 +218,9 @@ export declare const liveBlogPackageSchema: import("zod").ZodObject<{
|
|
|
174
218
|
maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
|
|
175
219
|
pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
176
220
|
pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
221
|
+
}, {
|
|
177
222
|
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Graphic">;
|
|
178
|
-
}
|
|
223
|
+
}>, "strip", import("zod").ZodTypeAny, {
|
|
179
224
|
id: string;
|
|
180
225
|
type: "http://www.ft.com/ontology/content/Graphic";
|
|
181
226
|
binaryUrl: string;
|
|
@@ -316,8 +361,9 @@ export declare const liveBlogPackageSchema: import("zod").ZodObject<{
|
|
|
316
361
|
maxDisplayWidth?: string | undefined;
|
|
317
362
|
pixelWidth?: number | undefined;
|
|
318
363
|
pixelHeight?: number | undefined;
|
|
319
|
-
}>, import("zod").ZodObject<{
|
|
364
|
+
}>, import("zod").ZodObject<import("zod").objectUtil.extendShape<{
|
|
320
365
|
id: import("zod").ZodString;
|
|
366
|
+
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
|
|
321
367
|
format: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"standardInline">, import("zod").ZodLiteral<"mobile">, import("zod").ZodLiteral<"desktop">, import("zod").ZodLiteral<"standard">, import("zod").ZodLiteral<"square">, import("zod").ZodLiteral<"ftEditSquare">, import("zod").ZodLiteral<"wide">, import("zod").ZodLiteral<"portrait">, import("zod").ZodLiteral<"landscape">]>>;
|
|
322
368
|
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
323
369
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -333,8 +379,9 @@ export declare const liveBlogPackageSchema: import("zod").ZodObject<{
|
|
|
333
379
|
maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
|
|
334
380
|
pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
335
381
|
pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
382
|
+
}, {
|
|
336
383
|
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Graphic">;
|
|
337
|
-
}
|
|
384
|
+
}>, "strip", import("zod").ZodTypeAny, {
|
|
338
385
|
id: string;
|
|
339
386
|
type: "http://www.ft.com/ontology/content/Graphic";
|
|
340
387
|
binaryUrl: string;
|
|
@@ -412,8 +459,9 @@ export declare const liveBlogPackageSchema: import("zod").ZodObject<{
|
|
|
412
459
|
maxDisplayWidth?: string | undefined;
|
|
413
460
|
pixelWidth?: number | undefined;
|
|
414
461
|
pixelHeight?: number | undefined;
|
|
415
|
-
}>, import("zod").ZodObject<{
|
|
462
|
+
}>, import("zod").ZodObject<import("zod").objectUtil.extendShape<{
|
|
416
463
|
id: import("zod").ZodString;
|
|
464
|
+
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
|
|
417
465
|
format: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"standardInline">, import("zod").ZodLiteral<"mobile">, import("zod").ZodLiteral<"desktop">, import("zod").ZodLiteral<"standard">, import("zod").ZodLiteral<"square">, import("zod").ZodLiteral<"ftEditSquare">, import("zod").ZodLiteral<"wide">, import("zod").ZodLiteral<"portrait">, import("zod").ZodLiteral<"landscape">]>>;
|
|
418
466
|
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
419
467
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -429,8 +477,9 @@ export declare const liveBlogPackageSchema: import("zod").ZodObject<{
|
|
|
429
477
|
maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
|
|
430
478
|
pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
431
479
|
pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
480
|
+
}, {
|
|
432
481
|
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Graphic">;
|
|
433
|
-
}
|
|
482
|
+
}>, "strip", import("zod").ZodTypeAny, {
|
|
434
483
|
id: string;
|
|
435
484
|
type: "http://www.ft.com/ontology/content/Graphic";
|
|
436
485
|
binaryUrl: string;
|
|
@@ -524,6 +573,100 @@ export declare const liveBlogPackageSchema: import("zod").ZodObject<{
|
|
|
524
573
|
pixelHeight?: number | undefined;
|
|
525
574
|
};
|
|
526
575
|
}>, "many">>;
|
|
576
|
+
alternativeImages: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
577
|
+
promotionalImage: import("zod").ZodObject<{
|
|
578
|
+
id: import("zod").ZodString;
|
|
579
|
+
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
|
|
580
|
+
format: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"standardInline">, import("zod").ZodLiteral<"mobile">, import("zod").ZodLiteral<"desktop">, import("zod").ZodLiteral<"standard">, import("zod").ZodLiteral<"square">, import("zod").ZodLiteral<"ftEditSquare">, import("zod").ZodLiteral<"wide">, import("zod").ZodLiteral<"portrait">, import("zod").ZodLiteral<"landscape">]>>;
|
|
581
|
+
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
582
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
583
|
+
binaryUrl: import("zod").ZodString;
|
|
584
|
+
copyright: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
585
|
+
notice: import("zod").ZodString;
|
|
586
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
587
|
+
notice: string;
|
|
588
|
+
}, {
|
|
589
|
+
notice: string;
|
|
590
|
+
}>>;
|
|
591
|
+
minDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
|
|
592
|
+
maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
|
|
593
|
+
pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
594
|
+
pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
595
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
596
|
+
id: string;
|
|
597
|
+
type: "http://www.ft.com/ontology/content/Image";
|
|
598
|
+
binaryUrl: string;
|
|
599
|
+
format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
|
|
600
|
+
title?: string | undefined;
|
|
601
|
+
description?: string | undefined;
|
|
602
|
+
copyright?: {
|
|
603
|
+
notice: string;
|
|
604
|
+
} | undefined;
|
|
605
|
+
minDisplayWidth?: string | undefined;
|
|
606
|
+
maxDisplayWidth?: string | undefined;
|
|
607
|
+
pixelWidth?: number | undefined;
|
|
608
|
+
pixelHeight?: number | undefined;
|
|
609
|
+
}, {
|
|
610
|
+
id: string;
|
|
611
|
+
type: "http://www.ft.com/ontology/content/Image";
|
|
612
|
+
binaryUrl: string;
|
|
613
|
+
format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
|
|
614
|
+
title?: string | undefined;
|
|
615
|
+
description?: string | undefined;
|
|
616
|
+
copyright?: {
|
|
617
|
+
notice: string;
|
|
618
|
+
} | undefined;
|
|
619
|
+
minDisplayWidth?: string | undefined;
|
|
620
|
+
maxDisplayWidth?: string | undefined;
|
|
621
|
+
pixelWidth?: number | undefined;
|
|
622
|
+
pixelHeight?: number | undefined;
|
|
623
|
+
}>;
|
|
624
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
625
|
+
promotionalImage: {
|
|
626
|
+
id: string;
|
|
627
|
+
type: "http://www.ft.com/ontology/content/Image";
|
|
628
|
+
binaryUrl: string;
|
|
629
|
+
format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
|
|
630
|
+
title?: string | undefined;
|
|
631
|
+
description?: string | undefined;
|
|
632
|
+
copyright?: {
|
|
633
|
+
notice: string;
|
|
634
|
+
} | undefined;
|
|
635
|
+
minDisplayWidth?: string | undefined;
|
|
636
|
+
maxDisplayWidth?: string | undefined;
|
|
637
|
+
pixelWidth?: number | undefined;
|
|
638
|
+
pixelHeight?: number | undefined;
|
|
639
|
+
};
|
|
640
|
+
}, {
|
|
641
|
+
promotionalImage: {
|
|
642
|
+
id: string;
|
|
643
|
+
type: "http://www.ft.com/ontology/content/Image";
|
|
644
|
+
binaryUrl: string;
|
|
645
|
+
format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
|
|
646
|
+
title?: string | undefined;
|
|
647
|
+
description?: string | undefined;
|
|
648
|
+
copyright?: {
|
|
649
|
+
notice: string;
|
|
650
|
+
} | undefined;
|
|
651
|
+
minDisplayWidth?: string | undefined;
|
|
652
|
+
maxDisplayWidth?: string | undefined;
|
|
653
|
+
pixelWidth?: number | undefined;
|
|
654
|
+
pixelHeight?: number | undefined;
|
|
655
|
+
};
|
|
656
|
+
}>>;
|
|
657
|
+
leadFlourish: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
658
|
+
id: import("zod").ZodString;
|
|
659
|
+
type: import("zod").ZodString;
|
|
660
|
+
description: import("zod").ZodString;
|
|
661
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
662
|
+
id: string;
|
|
663
|
+
type: string;
|
|
664
|
+
description: string;
|
|
665
|
+
}, {
|
|
666
|
+
id: string;
|
|
667
|
+
type: string;
|
|
668
|
+
description: string;
|
|
669
|
+
}>>;
|
|
527
670
|
embeds: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodUnion<[import("zod").ZodObject<{
|
|
528
671
|
id: import("zod").ZodString;
|
|
529
672
|
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/ImageSet">;
|
|
@@ -574,8 +717,9 @@ export declare const liveBlogPackageSchema: import("zod").ZodObject<{
|
|
|
574
717
|
maxDisplayWidth?: string | undefined;
|
|
575
718
|
pixelWidth?: number | undefined;
|
|
576
719
|
pixelHeight?: number | undefined;
|
|
577
|
-
}>, import("zod").ZodObject<{
|
|
720
|
+
}>, import("zod").ZodObject<import("zod").objectUtil.extendShape<{
|
|
578
721
|
id: import("zod").ZodString;
|
|
722
|
+
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
|
|
579
723
|
format: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"standardInline">, import("zod").ZodLiteral<"mobile">, import("zod").ZodLiteral<"desktop">, import("zod").ZodLiteral<"standard">, import("zod").ZodLiteral<"square">, import("zod").ZodLiteral<"ftEditSquare">, import("zod").ZodLiteral<"wide">, import("zod").ZodLiteral<"portrait">, import("zod").ZodLiteral<"landscape">]>>;
|
|
580
724
|
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
581
725
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -591,8 +735,9 @@ export declare const liveBlogPackageSchema: import("zod").ZodObject<{
|
|
|
591
735
|
maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
|
|
592
736
|
pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
593
737
|
pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
738
|
+
}, {
|
|
594
739
|
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Graphic">;
|
|
595
|
-
}
|
|
740
|
+
}>, "strip", import("zod").ZodTypeAny, {
|
|
596
741
|
id: string;
|
|
597
742
|
type: "http://www.ft.com/ontology/content/Graphic";
|
|
598
743
|
binaryUrl: string;
|
|
@@ -703,20 +848,20 @@ export declare const liveBlogPackageSchema: import("zod").ZodObject<{
|
|
|
703
848
|
pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
704
849
|
videoCodec: import("zod").ZodOptional<import("zod").ZodString>;
|
|
705
850
|
}, "strip", import("zod").ZodTypeAny, {
|
|
706
|
-
audioCodec?: string | undefined;
|
|
707
851
|
binaryUrl?: string | undefined;
|
|
852
|
+
pixelWidth?: number | undefined;
|
|
853
|
+
pixelHeight?: number | undefined;
|
|
854
|
+
audioCodec?: string | undefined;
|
|
708
855
|
duration?: number | undefined;
|
|
709
856
|
mediaType?: string | undefined;
|
|
710
|
-
pixelHeight?: number | undefined;
|
|
711
|
-
pixelWidth?: number | undefined;
|
|
712
857
|
videoCodec?: string | undefined;
|
|
713
858
|
}, {
|
|
714
|
-
audioCodec?: string | undefined;
|
|
715
859
|
binaryUrl?: string | undefined;
|
|
860
|
+
pixelWidth?: number | undefined;
|
|
861
|
+
pixelHeight?: number | undefined;
|
|
862
|
+
audioCodec?: string | undefined;
|
|
716
863
|
duration?: number | undefined;
|
|
717
864
|
mediaType?: string | undefined;
|
|
718
|
-
pixelHeight?: number | undefined;
|
|
719
|
-
pixelWidth?: number | undefined;
|
|
720
865
|
videoCodec?: string | undefined;
|
|
721
866
|
}>, "many">;
|
|
722
867
|
poster: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
@@ -769,8 +914,9 @@ export declare const liveBlogPackageSchema: import("zod").ZodObject<{
|
|
|
769
914
|
maxDisplayWidth?: string | undefined;
|
|
770
915
|
pixelWidth?: number | undefined;
|
|
771
916
|
pixelHeight?: number | undefined;
|
|
772
|
-
}>, import("zod").ZodObject<{
|
|
917
|
+
}>, import("zod").ZodObject<import("zod").objectUtil.extendShape<{
|
|
773
918
|
id: import("zod").ZodString;
|
|
919
|
+
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
|
|
774
920
|
format: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"standardInline">, import("zod").ZodLiteral<"mobile">, import("zod").ZodLiteral<"desktop">, import("zod").ZodLiteral<"standard">, import("zod").ZodLiteral<"square">, import("zod").ZodLiteral<"ftEditSquare">, import("zod").ZodLiteral<"wide">, import("zod").ZodLiteral<"portrait">, import("zod").ZodLiteral<"landscape">]>>;
|
|
775
921
|
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
776
922
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -786,8 +932,9 @@ export declare const liveBlogPackageSchema: import("zod").ZodObject<{
|
|
|
786
932
|
maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
|
|
787
933
|
pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
788
934
|
pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
935
|
+
}, {
|
|
789
936
|
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Graphic">;
|
|
790
|
-
}
|
|
937
|
+
}>, "strip", import("zod").ZodTypeAny, {
|
|
791
938
|
id: string;
|
|
792
939
|
type: "http://www.ft.com/ontology/content/Graphic";
|
|
793
940
|
binaryUrl: string;
|
|
@@ -887,12 +1034,12 @@ export declare const liveBlogPackageSchema: import("zod").ZodObject<{
|
|
|
887
1034
|
id: string;
|
|
888
1035
|
type: "http://www.ft.com/ontology/content/Clip";
|
|
889
1036
|
dataSource: {
|
|
890
|
-
audioCodec?: string | undefined;
|
|
891
1037
|
binaryUrl?: string | undefined;
|
|
1038
|
+
pixelWidth?: number | undefined;
|
|
1039
|
+
pixelHeight?: number | undefined;
|
|
1040
|
+
audioCodec?: string | undefined;
|
|
892
1041
|
duration?: number | undefined;
|
|
893
1042
|
mediaType?: string | undefined;
|
|
894
|
-
pixelHeight?: number | undefined;
|
|
895
|
-
pixelWidth?: number | undefined;
|
|
896
1043
|
videoCodec?: string | undefined;
|
|
897
1044
|
}[];
|
|
898
1045
|
format?: "standardInline" | "mobile" | undefined;
|
|
@@ -934,12 +1081,12 @@ export declare const liveBlogPackageSchema: import("zod").ZodObject<{
|
|
|
934
1081
|
id: string;
|
|
935
1082
|
type: "http://www.ft.com/ontology/content/Clip";
|
|
936
1083
|
dataSource: {
|
|
937
|
-
audioCodec?: string | undefined;
|
|
938
1084
|
binaryUrl?: string | undefined;
|
|
1085
|
+
pixelWidth?: number | undefined;
|
|
1086
|
+
pixelHeight?: number | undefined;
|
|
1087
|
+
audioCodec?: string | undefined;
|
|
939
1088
|
duration?: number | undefined;
|
|
940
1089
|
mediaType?: string | undefined;
|
|
941
|
-
pixelHeight?: number | undefined;
|
|
942
|
-
pixelWidth?: number | undefined;
|
|
943
1090
|
videoCodec?: string | undefined;
|
|
944
1091
|
}[];
|
|
945
1092
|
format?: "standardInline" | "mobile" | undefined;
|
|
@@ -1019,12 +1166,12 @@ export declare const liveBlogPackageSchema: import("zod").ZodObject<{
|
|
|
1019
1166
|
id: string;
|
|
1020
1167
|
type: "http://www.ft.com/ontology/content/Clip";
|
|
1021
1168
|
dataSource: {
|
|
1022
|
-
audioCodec?: string | undefined;
|
|
1023
1169
|
binaryUrl?: string | undefined;
|
|
1170
|
+
pixelWidth?: number | undefined;
|
|
1171
|
+
pixelHeight?: number | undefined;
|
|
1172
|
+
audioCodec?: string | undefined;
|
|
1024
1173
|
duration?: number | undefined;
|
|
1025
1174
|
mediaType?: string | undefined;
|
|
1026
|
-
pixelHeight?: number | undefined;
|
|
1027
|
-
pixelWidth?: number | undefined;
|
|
1028
1175
|
videoCodec?: string | undefined;
|
|
1029
1176
|
}[];
|
|
1030
1177
|
format?: "standardInline" | "mobile" | undefined;
|
|
@@ -1063,9 +1210,9 @@ export declare const liveBlogPackageSchema: import("zod").ZodObject<{
|
|
|
1063
1210
|
description?: string | undefined;
|
|
1064
1211
|
} | undefined;
|
|
1065
1212
|
}[];
|
|
1213
|
+
description?: string | undefined;
|
|
1066
1214
|
caption?: string | undefined;
|
|
1067
1215
|
dataCopyright?: string | undefined;
|
|
1068
|
-
description?: string | undefined;
|
|
1069
1216
|
displayTitle?: string | undefined;
|
|
1070
1217
|
contentWarning?: string[] | undefined;
|
|
1071
1218
|
noAudio?: boolean | undefined;
|
|
@@ -1086,12 +1233,12 @@ export declare const liveBlogPackageSchema: import("zod").ZodObject<{
|
|
|
1086
1233
|
id: string;
|
|
1087
1234
|
type: "http://www.ft.com/ontology/content/Clip";
|
|
1088
1235
|
dataSource: {
|
|
1089
|
-
audioCodec?: string | undefined;
|
|
1090
1236
|
binaryUrl?: string | undefined;
|
|
1237
|
+
pixelWidth?: number | undefined;
|
|
1238
|
+
pixelHeight?: number | undefined;
|
|
1239
|
+
audioCodec?: string | undefined;
|
|
1091
1240
|
duration?: number | undefined;
|
|
1092
1241
|
mediaType?: string | undefined;
|
|
1093
|
-
pixelHeight?: number | undefined;
|
|
1094
|
-
pixelWidth?: number | undefined;
|
|
1095
1242
|
videoCodec?: string | undefined;
|
|
1096
1243
|
}[];
|
|
1097
1244
|
format?: "standardInline" | "mobile" | undefined;
|
|
@@ -1130,9 +1277,9 @@ export declare const liveBlogPackageSchema: import("zod").ZodObject<{
|
|
|
1130
1277
|
description?: string | undefined;
|
|
1131
1278
|
} | undefined;
|
|
1132
1279
|
}[];
|
|
1280
|
+
description?: string | undefined;
|
|
1133
1281
|
caption?: string | undefined;
|
|
1134
1282
|
dataCopyright?: string | undefined;
|
|
1135
|
-
description?: string | undefined;
|
|
1136
1283
|
displayTitle?: string | undefined;
|
|
1137
1284
|
contentWarning?: string[] | undefined;
|
|
1138
1285
|
noAudio?: boolean | undefined;
|
|
@@ -1147,7 +1294,23 @@ export declare const liveBlogPackageSchema: import("zod").ZodObject<{
|
|
|
1147
1294
|
transcript?: string | undefined;
|
|
1148
1295
|
} | undefined;
|
|
1149
1296
|
}>]>, "many">>;
|
|
1150
|
-
|
|
1297
|
+
dataSource: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
1298
|
+
binaryUrl: import("zod").ZodString;
|
|
1299
|
+
duration: import("zod").ZodNumber;
|
|
1300
|
+
filesize: import("zod").ZodNumber;
|
|
1301
|
+
mediaType: import("zod").ZodString;
|
|
1302
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
1303
|
+
binaryUrl: string;
|
|
1304
|
+
duration: number;
|
|
1305
|
+
mediaType: string;
|
|
1306
|
+
filesize: number;
|
|
1307
|
+
}, {
|
|
1308
|
+
binaryUrl: string;
|
|
1309
|
+
duration: number;
|
|
1310
|
+
mediaType: string;
|
|
1311
|
+
filesize: number;
|
|
1312
|
+
}>, "many">>;
|
|
1313
|
+
}, "mainImage" | "leadImages" | "embeds">>, "strip", import("zod").ZodTypeAny, {
|
|
1151
1314
|
id: string;
|
|
1152
1315
|
types: string[];
|
|
1153
1316
|
title: string;
|
|
@@ -1190,6 +1353,7 @@ export declare const liveBlogPackageSchema: import("zod").ZodObject<{
|
|
|
1190
1353
|
standfirst?: string | undefined;
|
|
1191
1354
|
backgroundBox?: boolean | undefined;
|
|
1192
1355
|
textShadow?: boolean | undefined;
|
|
1356
|
+
layoutWidth?: string | undefined;
|
|
1193
1357
|
} | undefined;
|
|
1194
1358
|
comments?: {
|
|
1195
1359
|
enabled: boolean;
|
|
@@ -1333,12 +1497,12 @@ export declare const liveBlogPackageSchema: import("zod").ZodObject<{
|
|
|
1333
1497
|
id: string;
|
|
1334
1498
|
type: "http://www.ft.com/ontology/content/Clip";
|
|
1335
1499
|
dataSource: {
|
|
1336
|
-
audioCodec?: string | undefined;
|
|
1337
1500
|
binaryUrl?: string | undefined;
|
|
1501
|
+
pixelWidth?: number | undefined;
|
|
1502
|
+
pixelHeight?: number | undefined;
|
|
1503
|
+
audioCodec?: string | undefined;
|
|
1338
1504
|
duration?: number | undefined;
|
|
1339
1505
|
mediaType?: string | undefined;
|
|
1340
|
-
pixelHeight?: number | undefined;
|
|
1341
|
-
pixelWidth?: number | undefined;
|
|
1342
1506
|
videoCodec?: string | undefined;
|
|
1343
1507
|
}[];
|
|
1344
1508
|
format?: "standardInline" | "mobile" | undefined;
|
|
@@ -1377,9 +1541,9 @@ export declare const liveBlogPackageSchema: import("zod").ZodObject<{
|
|
|
1377
1541
|
description?: string | undefined;
|
|
1378
1542
|
} | undefined;
|
|
1379
1543
|
}[];
|
|
1544
|
+
description?: string | undefined;
|
|
1380
1545
|
caption?: string | undefined;
|
|
1381
1546
|
dataCopyright?: string | undefined;
|
|
1382
|
-
description?: string | undefined;
|
|
1383
1547
|
displayTitle?: string | undefined;
|
|
1384
1548
|
contentWarning?: string[] | undefined;
|
|
1385
1549
|
noAudio?: boolean | undefined;
|
|
@@ -1437,6 +1601,7 @@ export declare const liveBlogPackageSchema: import("zod").ZodObject<{
|
|
|
1437
1601
|
standfirst?: string | undefined;
|
|
1438
1602
|
backgroundBox?: boolean | undefined;
|
|
1439
1603
|
textShadow?: boolean | undefined;
|
|
1604
|
+
layoutWidth?: string | undefined;
|
|
1440
1605
|
} | undefined;
|
|
1441
1606
|
comments?: {
|
|
1442
1607
|
enabled: boolean;
|
|
@@ -1580,12 +1745,12 @@ export declare const liveBlogPackageSchema: import("zod").ZodObject<{
|
|
|
1580
1745
|
id: string;
|
|
1581
1746
|
type: "http://www.ft.com/ontology/content/Clip";
|
|
1582
1747
|
dataSource: {
|
|
1583
|
-
audioCodec?: string | undefined;
|
|
1584
1748
|
binaryUrl?: string | undefined;
|
|
1749
|
+
pixelWidth?: number | undefined;
|
|
1750
|
+
pixelHeight?: number | undefined;
|
|
1751
|
+
audioCodec?: string | undefined;
|
|
1585
1752
|
duration?: number | undefined;
|
|
1586
1753
|
mediaType?: string | undefined;
|
|
1587
|
-
pixelHeight?: number | undefined;
|
|
1588
|
-
pixelWidth?: number | undefined;
|
|
1589
1754
|
videoCodec?: string | undefined;
|
|
1590
1755
|
}[];
|
|
1591
1756
|
format?: "standardInline" | "mobile" | undefined;
|
|
@@ -1624,9 +1789,9 @@ export declare const liveBlogPackageSchema: import("zod").ZodObject<{
|
|
|
1624
1789
|
description?: string | undefined;
|
|
1625
1790
|
} | undefined;
|
|
1626
1791
|
}[];
|
|
1792
|
+
description?: string | undefined;
|
|
1627
1793
|
caption?: string | undefined;
|
|
1628
1794
|
dataCopyright?: string | undefined;
|
|
1629
|
-
description?: string | undefined;
|
|
1630
1795
|
displayTitle?: string | undefined;
|
|
1631
1796
|
contentWarning?: string[] | undefined;
|
|
1632
1797
|
noAudio?: boolean | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"live-blog-package.js","sourceRoot":"","sources":["../../../../src/model/schemas/capi/live-blog-package.ts"],"names":[],"mappings":";;;AAAA,+CAIsB;AAEtB,MAAM,4BAA4B,GAAG,+BAAiB,CAAC,IAAI,CAAC;IAC1D,KAAK,EAAE,IAAI;IACX,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE,IAAI;IACb,iBAAiB,EAAE,IAAI;IACvB,QAAQ,EAAE,IAAI;IACd,WAAW,EAAE,IAAI;
|
|
1
|
+
{"version":3,"file":"live-blog-package.js","sourceRoot":"","sources":["../../../../src/model/schemas/capi/live-blog-package.ts"],"names":[],"mappings":";;;AAAA,+CAIsB;AAEtB,MAAM,4BAA4B,GAAG,+BAAiB,CAAC,IAAI,CAAC;IAC1D,KAAK,EAAE,IAAI;IACX,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE,IAAI;IACb,iBAAiB,EAAE,IAAI;IACvB,QAAQ,EAAE,IAAI;IACd,WAAW,EAAE,IAAI;CAClB,CAAC,CAAA;AAEF,MAAM,6BAA6B,GAAG,gCAAkB,CAAC,IAAI,CAAC;IAC5D,EAAE,EAAE,IAAI;IACR,WAAW,EAAE,IAAI;IACjB,MAAM,EAAE,IAAI;IACZ,eAAe,EAAE,IAAI;IACrB,IAAI,EAAE,IAAI;IACV,KAAK,EAAE,IAAI;IACX,QAAQ,EAAE,IAAI;IACd,aAAa,EAAE,IAAI;IACnB,kBAAkB,EAAE,IAAI;IACxB,WAAW,EAAE,IAAI;IACjB,aAAa,EAAE,IAAI;IACnB,eAAe,EAAE,IAAI;IACrB,gBAAgB,EAAE,IAAI;IACtB,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;CACf,CAAC,CAAA;AAEF,MAAM,0BAA0B,GAAG,6BAAe,CAAC,IAAI,CAAC;IACtD,SAAS,EAAE,IAAI;IACf,UAAU,EAAE,IAAI;IAChB,MAAM,EAAE,IAAI;CACb,CAAC,CAAA;AAEW,QAAA,qBAAqB,GAAG,4BAA4B;KAC9D,KAAK,CAAC,6BAA6B,CAAC;KACpC,KAAK,CAAC,0BAA0B,CAAC,CAAA"}
|