@financial-times/cp-content-pipeline-schema 1.6.0 → 1.6.2
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 +15 -0
- package/lib/model/CapiResponse.d.ts +1 -1
- package/lib/model/CapiResponse.js +1 -1
- package/lib/model/CapiResponse.js.map +1 -1
- package/lib/model/Topper.js +7 -2
- package/lib/model/Topper.js.map +1 -1
- package/lib/model/schemas/capi/article.d.ts +52 -52
- package/lib/model/schemas/capi/audio.d.ts +6 -6
- package/lib/model/schemas/capi/base-schema.d.ts +84 -84
- package/lib/model/schemas/capi/base-schema.js +8 -10
- package/lib/model/schemas/capi/base-schema.js.map +1 -1
- package/lib/model/schemas/capi/content-package.d.ts +6 -6
- package/lib/model/schemas/capi/live-blog-package.d.ts +52 -52
- package/lib/model/schemas/capi/placeholder.d.ts +52 -52
- package/lib/resolvers/content-tree/references/ClipSet.d.ts +5 -5
- package/lib/resolvers/content.d.ts +1 -1
- package/lib/resolvers/index.d.ts +1 -1
- package/package.json +1 -1
- package/src/model/CapiResponse.ts +1 -1
- package/src/model/Topper.ts +6 -2
- package/src/model/schemas/capi/base-schema.ts +8 -10
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -1392,31 +1392,31 @@ export declare const ClipSet: z.ZodObject<{
|
|
|
1392
1392
|
source: z.ZodOptional<z.ZodString>;
|
|
1393
1393
|
subtitle: z.ZodOptional<z.ZodString>;
|
|
1394
1394
|
publishedDate: z.ZodOptional<z.ZodString>;
|
|
1395
|
-
accessibility: z.ZodObject<{
|
|
1396
|
-
captions: z.ZodArray<z.ZodObject<{
|
|
1397
|
-
mediaType: z.ZodString
|
|
1398
|
-
url: z.ZodString
|
|
1395
|
+
accessibility: z.ZodOptional<z.ZodObject<{
|
|
1396
|
+
captions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1397
|
+
mediaType: z.ZodOptional<z.ZodString>;
|
|
1398
|
+
url: z.ZodOptional<z.ZodString>;
|
|
1399
1399
|
}, "strip", z.ZodTypeAny, {
|
|
1400
|
-
mediaType
|
|
1401
|
-
url
|
|
1400
|
+
mediaType?: string | undefined;
|
|
1401
|
+
url?: string | undefined;
|
|
1402
1402
|
}, {
|
|
1403
|
-
mediaType
|
|
1404
|
-
url
|
|
1405
|
-
}>, "many"
|
|
1403
|
+
mediaType?: string | undefined;
|
|
1404
|
+
url?: string | undefined;
|
|
1405
|
+
}>, "many">>;
|
|
1406
1406
|
transcript: z.ZodOptional<z.ZodString>;
|
|
1407
1407
|
}, "strip", z.ZodTypeAny, {
|
|
1408
|
-
captions
|
|
1409
|
-
mediaType
|
|
1410
|
-
url
|
|
1411
|
-
}[];
|
|
1408
|
+
captions?: {
|
|
1409
|
+
mediaType?: string | undefined;
|
|
1410
|
+
url?: string | undefined;
|
|
1411
|
+
}[] | undefined;
|
|
1412
1412
|
transcript?: string | undefined;
|
|
1413
1413
|
}, {
|
|
1414
|
-
captions
|
|
1415
|
-
mediaType
|
|
1416
|
-
url
|
|
1417
|
-
}[];
|
|
1414
|
+
captions?: {
|
|
1415
|
+
mediaType?: string | undefined;
|
|
1416
|
+
url?: string | undefined;
|
|
1417
|
+
}[] | undefined;
|
|
1418
1418
|
transcript?: string | undefined;
|
|
1419
|
-
}
|
|
1419
|
+
}>>;
|
|
1420
1420
|
}, "strip", z.ZodTypeAny, {
|
|
1421
1421
|
id: string;
|
|
1422
1422
|
type: "http://www.ft.com/ontology/content/ClipSet";
|
|
@@ -1468,13 +1468,6 @@ export declare const ClipSet: z.ZodObject<{
|
|
|
1468
1468
|
description?: string | undefined;
|
|
1469
1469
|
} | undefined;
|
|
1470
1470
|
}[];
|
|
1471
|
-
accessibility: {
|
|
1472
|
-
captions: {
|
|
1473
|
-
mediaType: string;
|
|
1474
|
-
url: string;
|
|
1475
|
-
}[];
|
|
1476
|
-
transcript?: string | undefined;
|
|
1477
|
-
};
|
|
1478
1471
|
caption?: string | undefined;
|
|
1479
1472
|
dataCopyright?: string | undefined;
|
|
1480
1473
|
description?: string | undefined;
|
|
@@ -1484,6 +1477,13 @@ export declare const ClipSet: z.ZodObject<{
|
|
|
1484
1477
|
source?: string | undefined;
|
|
1485
1478
|
subtitle?: string | undefined;
|
|
1486
1479
|
publishedDate?: string | undefined;
|
|
1480
|
+
accessibility?: {
|
|
1481
|
+
captions?: {
|
|
1482
|
+
mediaType?: string | undefined;
|
|
1483
|
+
url?: string | undefined;
|
|
1484
|
+
}[] | undefined;
|
|
1485
|
+
transcript?: string | undefined;
|
|
1486
|
+
} | undefined;
|
|
1487
1487
|
}, {
|
|
1488
1488
|
id: string;
|
|
1489
1489
|
type: "http://www.ft.com/ontology/content/ClipSet";
|
|
@@ -1535,13 +1535,6 @@ export declare const ClipSet: z.ZodObject<{
|
|
|
1535
1535
|
description?: string | undefined;
|
|
1536
1536
|
} | undefined;
|
|
1537
1537
|
}[];
|
|
1538
|
-
accessibility: {
|
|
1539
|
-
captions: {
|
|
1540
|
-
mediaType: string;
|
|
1541
|
-
url: string;
|
|
1542
|
-
}[];
|
|
1543
|
-
transcript?: string | undefined;
|
|
1544
|
-
};
|
|
1545
1538
|
caption?: string | undefined;
|
|
1546
1539
|
dataCopyright?: string | undefined;
|
|
1547
1540
|
description?: string | undefined;
|
|
@@ -1551,6 +1544,13 @@ export declare const ClipSet: z.ZodObject<{
|
|
|
1551
1544
|
source?: string | undefined;
|
|
1552
1545
|
subtitle?: string | undefined;
|
|
1553
1546
|
publishedDate?: string | undefined;
|
|
1547
|
+
accessibility?: {
|
|
1548
|
+
captions?: {
|
|
1549
|
+
mediaType?: string | undefined;
|
|
1550
|
+
url?: string | undefined;
|
|
1551
|
+
}[] | undefined;
|
|
1552
|
+
transcript?: string | undefined;
|
|
1553
|
+
} | undefined;
|
|
1554
1554
|
}>;
|
|
1555
1555
|
export declare const DataSource: z.ZodObject<{
|
|
1556
1556
|
binaryUrl: z.ZodString;
|
|
@@ -1896,10 +1896,10 @@ export declare const baseMetadataSchema: z.ZodObject<{
|
|
|
1896
1896
|
publishedDate: z.ZodString;
|
|
1897
1897
|
firstPublishedDate: z.ZodString;
|
|
1898
1898
|
realtime: z.ZodBoolean;
|
|
1899
|
-
editorialDesk: z.ZodString
|
|
1899
|
+
editorialDesk: z.ZodOptional<z.ZodString>;
|
|
1900
1900
|
accessLevel: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"premium">, z.ZodLiteral<"subscribed">, z.ZodLiteral<"registered">, z.ZodLiteral<"free">]>>;
|
|
1901
1901
|
canBeSyndicated: z.ZodUnion<[z.ZodLiteral<"yes">, z.ZodLiteral<"no">, z.ZodLiteral<"verify">, z.ZodLiteral<"withContributorPayment">, z.ZodLiteral<"unknown">]>;
|
|
1902
|
-
canBeDistributed: z.ZodUnion<[z.ZodLiteral<"yes">, z.ZodLiteral<"no">, z.ZodLiteral<"verify">]
|
|
1902
|
+
canBeDistributed: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"yes">, z.ZodLiteral<"no">, z.ZodLiteral<"verify">]>>;
|
|
1903
1903
|
topper: z.ZodOptional<z.ZodObject<{
|
|
1904
1904
|
headline: z.ZodOptional<z.ZodString>;
|
|
1905
1905
|
standfirst: z.ZodOptional<z.ZodString>;
|
|
@@ -1965,9 +1965,7 @@ export declare const baseMetadataSchema: z.ZodObject<{
|
|
|
1965
1965
|
}[];
|
|
1966
1966
|
firstPublishedDate: string;
|
|
1967
1967
|
realtime: boolean;
|
|
1968
|
-
editorialDesk: string;
|
|
1969
1968
|
canBeSyndicated: "unknown" | "yes" | "no" | "verify" | "withContributorPayment";
|
|
1970
|
-
canBeDistributed: "yes" | "no" | "verify";
|
|
1971
1969
|
webUrl?: string | undefined;
|
|
1972
1970
|
canonicalWebUrl?: string | undefined;
|
|
1973
1971
|
type?: string | undefined;
|
|
@@ -1976,7 +1974,9 @@ export declare const baseMetadataSchema: z.ZodObject<{
|
|
|
1976
1974
|
exclusive: boolean;
|
|
1977
1975
|
scoop: boolean;
|
|
1978
1976
|
} | undefined;
|
|
1977
|
+
editorialDesk?: string | undefined;
|
|
1979
1978
|
accessLevel?: "premium" | "subscribed" | "registered" | "free" | undefined;
|
|
1979
|
+
canBeDistributed?: "yes" | "no" | "verify" | undefined;
|
|
1980
1980
|
topper?: {
|
|
1981
1981
|
backgroundColour: string;
|
|
1982
1982
|
layout: string;
|
|
@@ -2012,9 +2012,7 @@ export declare const baseMetadataSchema: z.ZodObject<{
|
|
|
2012
2012
|
}[];
|
|
2013
2013
|
firstPublishedDate: string;
|
|
2014
2014
|
realtime: boolean;
|
|
2015
|
-
editorialDesk: string;
|
|
2016
2015
|
canBeSyndicated: "unknown" | "yes" | "no" | "verify" | "withContributorPayment";
|
|
2017
|
-
canBeDistributed: "yes" | "no" | "verify";
|
|
2018
2016
|
webUrl?: string | undefined;
|
|
2019
2017
|
canonicalWebUrl?: string | undefined;
|
|
2020
2018
|
type?: string | undefined;
|
|
@@ -2023,7 +2021,9 @@ export declare const baseMetadataSchema: z.ZodObject<{
|
|
|
2023
2021
|
exclusive: boolean;
|
|
2024
2022
|
scoop: boolean;
|
|
2025
2023
|
} | undefined;
|
|
2024
|
+
editorialDesk?: string | undefined;
|
|
2026
2025
|
accessLevel?: "premium" | "subscribed" | "registered" | "free" | undefined;
|
|
2026
|
+
canBeDistributed?: "yes" | "no" | "verify" | undefined;
|
|
2027
2027
|
topper?: {
|
|
2028
2028
|
backgroundColour: string;
|
|
2029
2029
|
layout: string;
|
|
@@ -3095,31 +3095,31 @@ export declare const baseMediaSchema: z.ZodObject<{
|
|
|
3095
3095
|
source: z.ZodOptional<z.ZodString>;
|
|
3096
3096
|
subtitle: z.ZodOptional<z.ZodString>;
|
|
3097
3097
|
publishedDate: z.ZodOptional<z.ZodString>;
|
|
3098
|
-
accessibility: z.ZodObject<{
|
|
3099
|
-
captions: z.ZodArray<z.ZodObject<{
|
|
3100
|
-
mediaType: z.ZodString
|
|
3101
|
-
url: z.ZodString
|
|
3098
|
+
accessibility: z.ZodOptional<z.ZodObject<{
|
|
3099
|
+
captions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3100
|
+
mediaType: z.ZodOptional<z.ZodString>;
|
|
3101
|
+
url: z.ZodOptional<z.ZodString>;
|
|
3102
3102
|
}, "strip", z.ZodTypeAny, {
|
|
3103
|
-
mediaType
|
|
3104
|
-
url
|
|
3103
|
+
mediaType?: string | undefined;
|
|
3104
|
+
url?: string | undefined;
|
|
3105
3105
|
}, {
|
|
3106
|
-
mediaType
|
|
3107
|
-
url
|
|
3108
|
-
}>, "many"
|
|
3106
|
+
mediaType?: string | undefined;
|
|
3107
|
+
url?: string | undefined;
|
|
3108
|
+
}>, "many">>;
|
|
3109
3109
|
transcript: z.ZodOptional<z.ZodString>;
|
|
3110
3110
|
}, "strip", z.ZodTypeAny, {
|
|
3111
|
-
captions
|
|
3112
|
-
mediaType
|
|
3113
|
-
url
|
|
3114
|
-
}[];
|
|
3111
|
+
captions?: {
|
|
3112
|
+
mediaType?: string | undefined;
|
|
3113
|
+
url?: string | undefined;
|
|
3114
|
+
}[] | undefined;
|
|
3115
3115
|
transcript?: string | undefined;
|
|
3116
3116
|
}, {
|
|
3117
|
-
captions
|
|
3118
|
-
mediaType
|
|
3119
|
-
url
|
|
3120
|
-
}[];
|
|
3117
|
+
captions?: {
|
|
3118
|
+
mediaType?: string | undefined;
|
|
3119
|
+
url?: string | undefined;
|
|
3120
|
+
}[] | undefined;
|
|
3121
3121
|
transcript?: string | undefined;
|
|
3122
|
-
}
|
|
3122
|
+
}>>;
|
|
3123
3123
|
}, "strip", z.ZodTypeAny, {
|
|
3124
3124
|
id: string;
|
|
3125
3125
|
type: "http://www.ft.com/ontology/content/ClipSet";
|
|
@@ -3171,13 +3171,6 @@ export declare const baseMediaSchema: z.ZodObject<{
|
|
|
3171
3171
|
description?: string | undefined;
|
|
3172
3172
|
} | undefined;
|
|
3173
3173
|
}[];
|
|
3174
|
-
accessibility: {
|
|
3175
|
-
captions: {
|
|
3176
|
-
mediaType: string;
|
|
3177
|
-
url: string;
|
|
3178
|
-
}[];
|
|
3179
|
-
transcript?: string | undefined;
|
|
3180
|
-
};
|
|
3181
3174
|
caption?: string | undefined;
|
|
3182
3175
|
dataCopyright?: string | undefined;
|
|
3183
3176
|
description?: string | undefined;
|
|
@@ -3187,6 +3180,13 @@ export declare const baseMediaSchema: z.ZodObject<{
|
|
|
3187
3180
|
source?: string | undefined;
|
|
3188
3181
|
subtitle?: string | undefined;
|
|
3189
3182
|
publishedDate?: string | undefined;
|
|
3183
|
+
accessibility?: {
|
|
3184
|
+
captions?: {
|
|
3185
|
+
mediaType?: string | undefined;
|
|
3186
|
+
url?: string | undefined;
|
|
3187
|
+
}[] | undefined;
|
|
3188
|
+
transcript?: string | undefined;
|
|
3189
|
+
} | undefined;
|
|
3190
3190
|
}, {
|
|
3191
3191
|
id: string;
|
|
3192
3192
|
type: "http://www.ft.com/ontology/content/ClipSet";
|
|
@@ -3238,13 +3238,6 @@ export declare const baseMediaSchema: z.ZodObject<{
|
|
|
3238
3238
|
description?: string | undefined;
|
|
3239
3239
|
} | undefined;
|
|
3240
3240
|
}[];
|
|
3241
|
-
accessibility: {
|
|
3242
|
-
captions: {
|
|
3243
|
-
mediaType: string;
|
|
3244
|
-
url: string;
|
|
3245
|
-
}[];
|
|
3246
|
-
transcript?: string | undefined;
|
|
3247
|
-
};
|
|
3248
3241
|
caption?: string | undefined;
|
|
3249
3242
|
dataCopyright?: string | undefined;
|
|
3250
3243
|
description?: string | undefined;
|
|
@@ -3254,6 +3247,13 @@ export declare const baseMediaSchema: z.ZodObject<{
|
|
|
3254
3247
|
source?: string | undefined;
|
|
3255
3248
|
subtitle?: string | undefined;
|
|
3256
3249
|
publishedDate?: string | undefined;
|
|
3250
|
+
accessibility?: {
|
|
3251
|
+
captions?: {
|
|
3252
|
+
mediaType?: string | undefined;
|
|
3253
|
+
url?: string | undefined;
|
|
3254
|
+
}[] | undefined;
|
|
3255
|
+
transcript?: string | undefined;
|
|
3256
|
+
} | undefined;
|
|
3257
3257
|
}>]>, "many">>;
|
|
3258
3258
|
dataSource: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3259
3259
|
binaryUrl: z.ZodString;
|
|
@@ -3468,13 +3468,6 @@ export declare const baseMediaSchema: z.ZodObject<{
|
|
|
3468
3468
|
description?: string | undefined;
|
|
3469
3469
|
} | undefined;
|
|
3470
3470
|
}[];
|
|
3471
|
-
accessibility: {
|
|
3472
|
-
captions: {
|
|
3473
|
-
mediaType: string;
|
|
3474
|
-
url: string;
|
|
3475
|
-
}[];
|
|
3476
|
-
transcript?: string | undefined;
|
|
3477
|
-
};
|
|
3478
3471
|
caption?: string | undefined;
|
|
3479
3472
|
dataCopyright?: string | undefined;
|
|
3480
3473
|
description?: string | undefined;
|
|
@@ -3484,6 +3477,13 @@ export declare const baseMediaSchema: z.ZodObject<{
|
|
|
3484
3477
|
source?: string | undefined;
|
|
3485
3478
|
subtitle?: string | undefined;
|
|
3486
3479
|
publishedDate?: string | undefined;
|
|
3480
|
+
accessibility?: {
|
|
3481
|
+
captions?: {
|
|
3482
|
+
mediaType?: string | undefined;
|
|
3483
|
+
url?: string | undefined;
|
|
3484
|
+
}[] | undefined;
|
|
3485
|
+
transcript?: string | undefined;
|
|
3486
|
+
} | undefined;
|
|
3487
3487
|
})[] | undefined;
|
|
3488
3488
|
dataSource?: {
|
|
3489
3489
|
binaryUrl: string;
|
|
@@ -3688,13 +3688,6 @@ export declare const baseMediaSchema: z.ZodObject<{
|
|
|
3688
3688
|
description?: string | undefined;
|
|
3689
3689
|
} | undefined;
|
|
3690
3690
|
}[];
|
|
3691
|
-
accessibility: {
|
|
3692
|
-
captions: {
|
|
3693
|
-
mediaType: string;
|
|
3694
|
-
url: string;
|
|
3695
|
-
}[];
|
|
3696
|
-
transcript?: string | undefined;
|
|
3697
|
-
};
|
|
3698
3691
|
caption?: string | undefined;
|
|
3699
3692
|
dataCopyright?: string | undefined;
|
|
3700
3693
|
description?: string | undefined;
|
|
@@ -3704,6 +3697,13 @@ export declare const baseMediaSchema: z.ZodObject<{
|
|
|
3704
3697
|
source?: string | undefined;
|
|
3705
3698
|
subtitle?: string | undefined;
|
|
3706
3699
|
publishedDate?: string | undefined;
|
|
3700
|
+
accessibility?: {
|
|
3701
|
+
captions?: {
|
|
3702
|
+
mediaType?: string | undefined;
|
|
3703
|
+
url?: string | undefined;
|
|
3704
|
+
}[] | undefined;
|
|
3705
|
+
transcript?: string | undefined;
|
|
3706
|
+
} | undefined;
|
|
3707
3707
|
})[] | undefined;
|
|
3708
3708
|
dataSource?: {
|
|
3709
3709
|
binaryUrl: string;
|
|
@@ -113,11 +113,11 @@ exports.ClipSet = zod_1.z.object({
|
|
|
113
113
|
publishedDate: zod_1.z.string().optional(),
|
|
114
114
|
accessibility: zod_1.z.object({
|
|
115
115
|
captions: zod_1.z.array(zod_1.z.object({
|
|
116
|
-
mediaType: zod_1.z.string(),
|
|
117
|
-
url: zod_1.z.string(),
|
|
118
|
-
})),
|
|
116
|
+
mediaType: zod_1.z.string().optional(),
|
|
117
|
+
url: zod_1.z.string().optional(),
|
|
118
|
+
})).optional(),
|
|
119
119
|
transcript: zod_1.z.string().optional(),
|
|
120
|
-
}),
|
|
120
|
+
}).optional(),
|
|
121
121
|
});
|
|
122
122
|
exports.DataSource = zod_1.z.object({
|
|
123
123
|
binaryUrl: zod_1.z.string(),
|
|
@@ -167,7 +167,7 @@ exports.baseMetadataSchema = zod_1.z.object({
|
|
|
167
167
|
publishedDate: zod_1.z.string(),
|
|
168
168
|
firstPublishedDate: zod_1.z.string(),
|
|
169
169
|
realtime: zod_1.z.boolean(),
|
|
170
|
-
editorialDesk: zod_1.z.string(),
|
|
170
|
+
editorialDesk: zod_1.z.string().optional(),
|
|
171
171
|
accessLevel: zod_1.z
|
|
172
172
|
.union([
|
|
173
173
|
zod_1.z.literal('premium'),
|
|
@@ -183,11 +183,9 @@ exports.baseMetadataSchema = zod_1.z.object({
|
|
|
183
183
|
zod_1.z.literal('withContributorPayment'),
|
|
184
184
|
zod_1.z.literal('unknown'),
|
|
185
185
|
]),
|
|
186
|
-
canBeDistributed: zod_1.z
|
|
187
|
-
zod_1.z.literal('yes'),
|
|
188
|
-
|
|
189
|
-
zod_1.z.literal('verify'),
|
|
190
|
-
]),
|
|
186
|
+
canBeDistributed: zod_1.z
|
|
187
|
+
.union([zod_1.z.literal('yes'), zod_1.z.literal('no'), zod_1.z.literal('verify')])
|
|
188
|
+
.optional(),
|
|
191
189
|
topper: exports.Topper.optional(),
|
|
192
190
|
comments: zod_1.z
|
|
193
191
|
.object({
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"base-schema.js","sourceRoot":"","sources":["../../../../src/model/schemas/capi/base-schema.ts"],"names":[],"mappings":";;;AAAA,6BAAuB;AAEvB,MAAM,OAAO,GAAG,OAAC,CAAC,MAAM,CAAC;IACvB,EAAE,EAAE,OAAC,CAAC,MAAM,EAAE;IACd,MAAM,EAAE,OAAC,CAAC,MAAM,EAAE;IAClB,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE;IACtB,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE;IACrB,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC3B,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,KAAK,EAAE;IACzB,QAAQ,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAChC,CAAC,CAAA;AAEW,QAAA,UAAU,GAAG,OAAO,CAAC,MAAM,CAAC;IACvC,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE;CACtB,CAAC,CAAA;AAEW,QAAA,MAAM,GAAG,OAAC,CAAC,MAAM,CAAC;IAC7B,QAAQ,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC/B,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,gBAAgB,EAAE,OAAC,CAAC,MAAM,EAAE;IAC5B,aAAa,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IACrC,UAAU,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IAClC,MAAM,EAAE,OAAC,CAAC,MAAM,EAAE;CACnB,CAAC,CAAA;AAEF,MAAM,SAAS,GAAG,OAAC,CAAC,MAAM,CAAC;IACzB,EAAE,EAAE,OAAC,CAAC,MAAM,EAAE;IACd,IAAI,EAAE,OAAC,CAAC,OAAO,CAAC,0CAA0C,CAAC;IAC3D,MAAM,EAAE,OAAC;SACN,KAAK,CAAC;QACL,OAAC,CAAC,OAAO,CAAC,gBAAgB,CAAC;QAC3B,OAAC,CAAC,OAAO,CAAC,QAAQ,CAAC;QACnB,OAAC,CAAC,OAAO,CAAC,SAAS,CAAC;QACpB,OAAC,CAAC,OAAO,CAAC,UAAU,CAAC;QACrB,OAAC,CAAC,OAAO,CAAC,QAAQ,CAAC;QACnB,OAAC,CAAC,OAAO,CAAC,cAAc,CAAC;QACzB,OAAC,CAAC,OAAO,CAAC,MAAM,CAAC;QACjB,OAAC,CAAC,OAAO,CAAC,UAAU,CAAC;QACrB,OAAC,CAAC,OAAO,CAAC,WAAW,CAAC;KACvB,CAAC;SACD,QAAQ,EAAE;IACb,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC5B,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAClC,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE;IACrB,SAAS,EAAE,OAAC;SACT,MAAM,CAAC;QACN,MAAM,EAAE,OAAC,CAAC,MAAM,EAAE;KACnB,CAAC;SACD,QAAQ,EAAE;IACb,eAAe,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACtC,eAAe,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACtC,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CACnC,CAAC,CAAA;AAEF,MAAM,OAAO,GAAG,SAAS,CAAC,MAAM,CAAC;IAC/B,IAAI,EAAE,OAAC,CAAC,OAAO,CAAC,4CAA4C,CAAC;CAC9D,CAAC,CAAA;AAEW,QAAA,KAAK,GAAG,OAAC,CAAC,KAAK,CAAC,CAAC,SAAS,EAAE,OAAO,CAAC,CAAC,CAAA;AAErC,QAAA,QAAQ,GAAG,OAAC,CAAC,MAAM,CAAC;IAC/B,EAAE,EAAE,OAAC,CAAC,MAAM,EAAE;IACd,IAAI,EAAE,OAAC,CAAC,OAAO,CAAC,6CAA6C,CAAC;IAC9D,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAClC,OAAO,EAAE,aAAK,CAAC,KAAK,EAAE;CACvB,CAAC,CAAA;AAEW,QAAA,SAAS,GAAG,OAAC,CAAC,kBAAkB,CAAC,MAAM,EAAE;IACpD,gBAAQ;IACR,SAAS;IACT,OAAO;CACR,CAAC,CAAA;AAEW,QAAA,SAAS,GAAG,OAAC,CAAC,MAAM,CAAC;IAChC,IAAI,EAAE,OAAC,CAAC,KAAK,CAAC;QACZ,OAAC,CAAC,OAAO,CAAC,UAAU,CAAC;QACrB,OAAC,CAAC,OAAO,CAAC,QAAQ,CAAC;QACnB,OAAC,CAAC,OAAO,CAAC,MAAM,CAAC;QACjB,OAAC,CAAC,OAAO,CAAC,UAAU,CAAC;QACrB,OAAC,CAAC,OAAO,CAAC,WAAW,CAAC;KACvB,CAAC;IACF,EAAE,EAAE,OAAC,CAAC,MAAM,EAAE;IACd,KAAK,EAAE,aAAK;CACb,CAAC,CAAA;AAEW,QAAA,gBAAgB,GAAG,OAAC,CAAC,MAAM,CAAC;IACvC,gBAAgB,EAAE,SAAS;CAC5B,CAAC,CAAA;AAEF,MAAM,UAAU,GAAG,OAAC,CAAC,MAAM,CAAC;IAC1B,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,QAAQ,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC/B,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAClC,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAClC,CAAC,CAAA;AAEW,QAAA,IAAI,GAAG,OAAC,CAAC,MAAM,CAAC;IAC3B,EAAE,EAAE,OAAC,CAAC,MAAM,EAAE;IACd,IAAI,EAAE,OAAC,CAAC,OAAO,CAAC,yCAAyC,CAAC;IAC1D,MAAM,EAAE,OAAC;SACN,KAAK,CAAC,CAAC,OAAC,CAAC,OAAO,CAAC,gBAAgB,CAAC,EAAE,OAAC,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC,CAAC;SACzD,QAAQ,EAAE;IACb,UAAU,EAAE,UAAU,CAAC,KAAK,EAAE;IAC9B,MAAM,EAAE,gBAAQ,CAAC,QAAQ,EAAE;CAC5B,CAAC,CAAA;AAEW,QAAA,OAAO,GAAG,OAAC,CAAC,MAAM,CAAC;IAC9B,EAAE,EAAE,OAAC,CAAC,MAAM,EAAE;IACd,IAAI,EAAE,OAAC,CAAC,OAAO,CAAC,4CAA4C,CAAC;IAC7D,OAAO,EAAE,YAAI,CAAC,KAAK,EAAE;IACrB,OAAO,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC9B,aAAa,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACpC,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAClC,YAAY,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACnC,cAAc,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;IAC7C,OAAO,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IAC/B,MAAM,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC7B,QAAQ,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC/B,aAAa,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACpC,aAAa,EAAE,OAAC,CAAC,MAAM,CAAC;QACtB,QAAQ,EAAE,OAAC,CAAC,KAAK,CACf,OAAC,CAAC,MAAM,CAAC;YACP,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE;
|
|
1
|
+
{"version":3,"file":"base-schema.js","sourceRoot":"","sources":["../../../../src/model/schemas/capi/base-schema.ts"],"names":[],"mappings":"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"}
|
|
@@ -48,10 +48,10 @@ export declare const contentPackageSchema: import("zod").ZodObject<{
|
|
|
48
48
|
scoop: boolean;
|
|
49
49
|
}>>;
|
|
50
50
|
firstPublishedDate: import("zod").ZodString;
|
|
51
|
-
editorialDesk: import("zod").ZodString
|
|
51
|
+
editorialDesk: import("zod").ZodOptional<import("zod").ZodString>;
|
|
52
52
|
accessLevel: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"premium">, import("zod").ZodLiteral<"subscribed">, import("zod").ZodLiteral<"registered">, import("zod").ZodLiteral<"free">]>>;
|
|
53
53
|
canBeSyndicated: import("zod").ZodUnion<[import("zod").ZodLiteral<"yes">, import("zod").ZodLiteral<"no">, import("zod").ZodLiteral<"verify">, import("zod").ZodLiteral<"withContributorPayment">, import("zod").ZodLiteral<"unknown">]>;
|
|
54
|
-
canBeDistributed: import("zod").ZodUnion<[import("zod").ZodLiteral<"yes">, import("zod").ZodLiteral<"no">, import("zod").ZodLiteral<"verify">]
|
|
54
|
+
canBeDistributed: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"yes">, import("zod").ZodLiteral<"no">, import("zod").ZodLiteral<"verify">]>>;
|
|
55
55
|
topper: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
56
56
|
headline: import("zod").ZodOptional<import("zod").ZodString>;
|
|
57
57
|
standfirst: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -546,9 +546,7 @@ export declare const contentPackageSchema: import("zod").ZodObject<{
|
|
|
546
546
|
headshot?: string | undefined;
|
|
547
547
|
}[];
|
|
548
548
|
firstPublishedDate: string;
|
|
549
|
-
editorialDesk: string;
|
|
550
549
|
canBeSyndicated: "unknown" | "yes" | "no" | "verify" | "withContributorPayment";
|
|
551
|
-
canBeDistributed: "yes" | "no" | "verify";
|
|
552
550
|
bodyXML: string;
|
|
553
551
|
contains: {
|
|
554
552
|
id: string;
|
|
@@ -565,7 +563,9 @@ export declare const contentPackageSchema: import("zod").ZodObject<{
|
|
|
565
563
|
exclusive: boolean;
|
|
566
564
|
scoop: boolean;
|
|
567
565
|
} | undefined;
|
|
566
|
+
editorialDesk?: string | undefined;
|
|
568
567
|
accessLevel?: "premium" | "subscribed" | "registered" | "free" | undefined;
|
|
568
|
+
canBeDistributed?: "yes" | "no" | "verify" | undefined;
|
|
569
569
|
topper?: {
|
|
570
570
|
backgroundColour: string;
|
|
571
571
|
layout: string;
|
|
@@ -694,9 +694,7 @@ export declare const contentPackageSchema: import("zod").ZodObject<{
|
|
|
694
694
|
headshot?: string | undefined;
|
|
695
695
|
}[];
|
|
696
696
|
firstPublishedDate: string;
|
|
697
|
-
editorialDesk: string;
|
|
698
697
|
canBeSyndicated: "unknown" | "yes" | "no" | "verify" | "withContributorPayment";
|
|
699
|
-
canBeDistributed: "yes" | "no" | "verify";
|
|
700
698
|
bodyXML: string;
|
|
701
699
|
contains: {
|
|
702
700
|
id: string;
|
|
@@ -713,7 +711,9 @@ export declare const contentPackageSchema: import("zod").ZodObject<{
|
|
|
713
711
|
exclusive: boolean;
|
|
714
712
|
scoop: boolean;
|
|
715
713
|
} | undefined;
|
|
714
|
+
editorialDesk?: string | undefined;
|
|
716
715
|
accessLevel?: "premium" | "subscribed" | "registered" | "free" | undefined;
|
|
716
|
+
canBeDistributed?: "yes" | "no" | "verify" | undefined;
|
|
717
717
|
topper?: {
|
|
718
718
|
backgroundColour: string;
|
|
719
719
|
layout: string;
|
|
@@ -48,10 +48,10 @@ export declare const liveBlogPackageSchema: import("zod").ZodObject<{
|
|
|
48
48
|
scoop: boolean;
|
|
49
49
|
}>>;
|
|
50
50
|
firstPublishedDate: import("zod").ZodString;
|
|
51
|
-
editorialDesk: import("zod").ZodString
|
|
51
|
+
editorialDesk: import("zod").ZodOptional<import("zod").ZodString>;
|
|
52
52
|
accessLevel: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"premium">, import("zod").ZodLiteral<"subscribed">, import("zod").ZodLiteral<"registered">, import("zod").ZodLiteral<"free">]>>;
|
|
53
53
|
canBeSyndicated: import("zod").ZodUnion<[import("zod").ZodLiteral<"yes">, import("zod").ZodLiteral<"no">, import("zod").ZodLiteral<"verify">, import("zod").ZodLiteral<"withContributorPayment">, import("zod").ZodLiteral<"unknown">]>;
|
|
54
|
-
canBeDistributed: import("zod").ZodUnion<[import("zod").ZodLiteral<"yes">, import("zod").ZodLiteral<"no">, import("zod").ZodLiteral<"verify">]
|
|
54
|
+
canBeDistributed: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"yes">, import("zod").ZodLiteral<"no">, import("zod").ZodLiteral<"verify">]>>;
|
|
55
55
|
topper: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
56
56
|
headline: import("zod").ZodOptional<import("zod").ZodString>;
|
|
57
57
|
standfirst: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -987,31 +987,31 @@ export declare const liveBlogPackageSchema: import("zod").ZodObject<{
|
|
|
987
987
|
source: import("zod").ZodOptional<import("zod").ZodString>;
|
|
988
988
|
subtitle: import("zod").ZodOptional<import("zod").ZodString>;
|
|
989
989
|
publishedDate: import("zod").ZodOptional<import("zod").ZodString>;
|
|
990
|
-
accessibility: import("zod").ZodObject<{
|
|
991
|
-
captions: import("zod").ZodArray<import("zod").ZodObject<{
|
|
992
|
-
mediaType: import("zod").ZodString
|
|
993
|
-
url: import("zod").ZodString
|
|
990
|
+
accessibility: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
991
|
+
captions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
992
|
+
mediaType: import("zod").ZodOptional<import("zod").ZodString>;
|
|
993
|
+
url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
994
994
|
}, "strip", import("zod").ZodTypeAny, {
|
|
995
|
-
mediaType
|
|
996
|
-
url
|
|
995
|
+
mediaType?: string | undefined;
|
|
996
|
+
url?: string | undefined;
|
|
997
997
|
}, {
|
|
998
|
-
mediaType
|
|
999
|
-
url
|
|
1000
|
-
}>, "many"
|
|
998
|
+
mediaType?: string | undefined;
|
|
999
|
+
url?: string | undefined;
|
|
1000
|
+
}>, "many">>;
|
|
1001
1001
|
transcript: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1002
1002
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1003
|
-
captions
|
|
1004
|
-
mediaType
|
|
1005
|
-
url
|
|
1006
|
-
}[];
|
|
1003
|
+
captions?: {
|
|
1004
|
+
mediaType?: string | undefined;
|
|
1005
|
+
url?: string | undefined;
|
|
1006
|
+
}[] | undefined;
|
|
1007
1007
|
transcript?: string | undefined;
|
|
1008
1008
|
}, {
|
|
1009
|
-
captions
|
|
1010
|
-
mediaType
|
|
1011
|
-
url
|
|
1012
|
-
}[];
|
|
1009
|
+
captions?: {
|
|
1010
|
+
mediaType?: string | undefined;
|
|
1011
|
+
url?: string | undefined;
|
|
1012
|
+
}[] | undefined;
|
|
1013
1013
|
transcript?: string | undefined;
|
|
1014
|
-
}
|
|
1014
|
+
}>>;
|
|
1015
1015
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1016
1016
|
id: string;
|
|
1017
1017
|
type: "http://www.ft.com/ontology/content/ClipSet";
|
|
@@ -1063,13 +1063,6 @@ export declare const liveBlogPackageSchema: import("zod").ZodObject<{
|
|
|
1063
1063
|
description?: string | undefined;
|
|
1064
1064
|
} | undefined;
|
|
1065
1065
|
}[];
|
|
1066
|
-
accessibility: {
|
|
1067
|
-
captions: {
|
|
1068
|
-
mediaType: string;
|
|
1069
|
-
url: string;
|
|
1070
|
-
}[];
|
|
1071
|
-
transcript?: string | undefined;
|
|
1072
|
-
};
|
|
1073
1066
|
caption?: string | undefined;
|
|
1074
1067
|
dataCopyright?: string | undefined;
|
|
1075
1068
|
description?: string | undefined;
|
|
@@ -1079,6 +1072,13 @@ export declare const liveBlogPackageSchema: import("zod").ZodObject<{
|
|
|
1079
1072
|
source?: string | undefined;
|
|
1080
1073
|
subtitle?: string | undefined;
|
|
1081
1074
|
publishedDate?: string | undefined;
|
|
1075
|
+
accessibility?: {
|
|
1076
|
+
captions?: {
|
|
1077
|
+
mediaType?: string | undefined;
|
|
1078
|
+
url?: string | undefined;
|
|
1079
|
+
}[] | undefined;
|
|
1080
|
+
transcript?: string | undefined;
|
|
1081
|
+
} | undefined;
|
|
1082
1082
|
}, {
|
|
1083
1083
|
id: string;
|
|
1084
1084
|
type: "http://www.ft.com/ontology/content/ClipSet";
|
|
@@ -1130,13 +1130,6 @@ export declare const liveBlogPackageSchema: import("zod").ZodObject<{
|
|
|
1130
1130
|
description?: string | undefined;
|
|
1131
1131
|
} | undefined;
|
|
1132
1132
|
}[];
|
|
1133
|
-
accessibility: {
|
|
1134
|
-
captions: {
|
|
1135
|
-
mediaType: string;
|
|
1136
|
-
url: string;
|
|
1137
|
-
}[];
|
|
1138
|
-
transcript?: string | undefined;
|
|
1139
|
-
};
|
|
1140
1133
|
caption?: string | undefined;
|
|
1141
1134
|
dataCopyright?: string | undefined;
|
|
1142
1135
|
description?: string | undefined;
|
|
@@ -1146,6 +1139,13 @@ export declare const liveBlogPackageSchema: import("zod").ZodObject<{
|
|
|
1146
1139
|
source?: string | undefined;
|
|
1147
1140
|
subtitle?: string | undefined;
|
|
1148
1141
|
publishedDate?: string | undefined;
|
|
1142
|
+
accessibility?: {
|
|
1143
|
+
captions?: {
|
|
1144
|
+
mediaType?: string | undefined;
|
|
1145
|
+
url?: string | undefined;
|
|
1146
|
+
}[] | undefined;
|
|
1147
|
+
transcript?: string | undefined;
|
|
1148
|
+
} | undefined;
|
|
1149
1149
|
}>]>, "many">>;
|
|
1150
1150
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1151
1151
|
id: string;
|
|
@@ -1163,9 +1163,7 @@ export declare const liveBlogPackageSchema: import("zod").ZodObject<{
|
|
|
1163
1163
|
headshot?: string | undefined;
|
|
1164
1164
|
}[];
|
|
1165
1165
|
firstPublishedDate: string;
|
|
1166
|
-
editorialDesk: string;
|
|
1167
1166
|
canBeSyndicated: "unknown" | "yes" | "no" | "verify" | "withContributorPayment";
|
|
1168
|
-
canBeDistributed: "yes" | "no" | "verify";
|
|
1169
1167
|
summary: {
|
|
1170
1168
|
bodyXML: string;
|
|
1171
1169
|
};
|
|
@@ -1182,7 +1180,9 @@ export declare const liveBlogPackageSchema: import("zod").ZodObject<{
|
|
|
1182
1180
|
exclusive: boolean;
|
|
1183
1181
|
scoop: boolean;
|
|
1184
1182
|
} | undefined;
|
|
1183
|
+
editorialDesk?: string | undefined;
|
|
1185
1184
|
accessLevel?: "premium" | "subscribed" | "registered" | "free" | undefined;
|
|
1185
|
+
canBeDistributed?: "yes" | "no" | "verify" | undefined;
|
|
1186
1186
|
topper?: {
|
|
1187
1187
|
backgroundColour: string;
|
|
1188
1188
|
layout: string;
|
|
@@ -1377,13 +1377,6 @@ export declare const liveBlogPackageSchema: import("zod").ZodObject<{
|
|
|
1377
1377
|
description?: string | undefined;
|
|
1378
1378
|
} | undefined;
|
|
1379
1379
|
}[];
|
|
1380
|
-
accessibility: {
|
|
1381
|
-
captions: {
|
|
1382
|
-
mediaType: string;
|
|
1383
|
-
url: string;
|
|
1384
|
-
}[];
|
|
1385
|
-
transcript?: string | undefined;
|
|
1386
|
-
};
|
|
1387
1380
|
caption?: string | undefined;
|
|
1388
1381
|
dataCopyright?: string | undefined;
|
|
1389
1382
|
description?: string | undefined;
|
|
@@ -1393,6 +1386,13 @@ export declare const liveBlogPackageSchema: import("zod").ZodObject<{
|
|
|
1393
1386
|
source?: string | undefined;
|
|
1394
1387
|
subtitle?: string | undefined;
|
|
1395
1388
|
publishedDate?: string | undefined;
|
|
1389
|
+
accessibility?: {
|
|
1390
|
+
captions?: {
|
|
1391
|
+
mediaType?: string | undefined;
|
|
1392
|
+
url?: string | undefined;
|
|
1393
|
+
}[] | undefined;
|
|
1394
|
+
transcript?: string | undefined;
|
|
1395
|
+
} | undefined;
|
|
1396
1396
|
})[] | undefined;
|
|
1397
1397
|
}, {
|
|
1398
1398
|
id: string;
|
|
@@ -1410,9 +1410,7 @@ export declare const liveBlogPackageSchema: import("zod").ZodObject<{
|
|
|
1410
1410
|
headshot?: string | undefined;
|
|
1411
1411
|
}[];
|
|
1412
1412
|
firstPublishedDate: string;
|
|
1413
|
-
editorialDesk: string;
|
|
1414
1413
|
canBeSyndicated: "unknown" | "yes" | "no" | "verify" | "withContributorPayment";
|
|
1415
|
-
canBeDistributed: "yes" | "no" | "verify";
|
|
1416
1414
|
summary: {
|
|
1417
1415
|
bodyXML: string;
|
|
1418
1416
|
};
|
|
@@ -1429,7 +1427,9 @@ export declare const liveBlogPackageSchema: import("zod").ZodObject<{
|
|
|
1429
1427
|
exclusive: boolean;
|
|
1430
1428
|
scoop: boolean;
|
|
1431
1429
|
} | undefined;
|
|
1430
|
+
editorialDesk?: string | undefined;
|
|
1432
1431
|
accessLevel?: "premium" | "subscribed" | "registered" | "free" | undefined;
|
|
1432
|
+
canBeDistributed?: "yes" | "no" | "verify" | undefined;
|
|
1433
1433
|
topper?: {
|
|
1434
1434
|
backgroundColour: string;
|
|
1435
1435
|
layout: string;
|
|
@@ -1624,13 +1624,6 @@ export declare const liveBlogPackageSchema: import("zod").ZodObject<{
|
|
|
1624
1624
|
description?: string | undefined;
|
|
1625
1625
|
} | undefined;
|
|
1626
1626
|
}[];
|
|
1627
|
-
accessibility: {
|
|
1628
|
-
captions: {
|
|
1629
|
-
mediaType: string;
|
|
1630
|
-
url: string;
|
|
1631
|
-
}[];
|
|
1632
|
-
transcript?: string | undefined;
|
|
1633
|
-
};
|
|
1634
1627
|
caption?: string | undefined;
|
|
1635
1628
|
dataCopyright?: string | undefined;
|
|
1636
1629
|
description?: string | undefined;
|
|
@@ -1640,5 +1633,12 @@ export declare const liveBlogPackageSchema: import("zod").ZodObject<{
|
|
|
1640
1633
|
source?: string | undefined;
|
|
1641
1634
|
subtitle?: string | undefined;
|
|
1642
1635
|
publishedDate?: string | undefined;
|
|
1636
|
+
accessibility?: {
|
|
1637
|
+
captions?: {
|
|
1638
|
+
mediaType?: string | undefined;
|
|
1639
|
+
url?: string | undefined;
|
|
1640
|
+
}[] | undefined;
|
|
1641
|
+
transcript?: string | undefined;
|
|
1642
|
+
} | undefined;
|
|
1643
1643
|
})[] | undefined;
|
|
1644
1644
|
}>;
|