@financial-times/cp-content-pipeline-schema 3.12.0 → 3.12.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 +14 -0
- package/README.md +4 -4
- package/lib/model/schemas/capi/article.d.ts +29 -34
- package/lib/model/schemas/capi/audio.d.ts +29 -34
- package/lib/model/schemas/capi/base-schema.d.ts +56 -68
- package/lib/model/schemas/capi/content-package.d.ts +30 -52
- package/lib/model/schemas/capi/custom-code-component.d.ts +34 -39
- package/lib/model/schemas/capi/index.d.ts +180 -227
- package/lib/model/schemas/capi/live-blog-package.d.ts +29 -34
- package/lib/model/schemas/capi/placeholder.d.ts +29 -34
- package/lib/model/schemas/capi/video.d.ts +29 -34
- package/package.json +4 -4
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { LiteralUnionScalarValues } from '../../../resolvers/literal-union';
|
|
2
2
|
import { ContentType } from '../../../resolvers/scalars';
|
|
3
|
-
export declare const schemas: (contentType: LiteralUnionScalarValues<typeof ContentType>) => import("zod").ZodObject<
|
|
3
|
+
export declare const schemas: (contentType: LiteralUnionScalarValues<typeof ContentType>) => import("zod").ZodObject<Pick<{
|
|
4
4
|
title: import("zod").ZodString;
|
|
5
5
|
standfirst: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6
6
|
byline: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -45,9 +45,9 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
45
45
|
theme: "special-report" | "extra" | "basic" | "extra-wide";
|
|
46
46
|
}>;
|
|
47
47
|
transcript: import("zod").ZodOptional<import("zod").ZodString>;
|
|
48
|
-
}, "standfirst" | "title" | "byline" | "bodyXML" | "alternativeTitles" | "alternativeStandfirsts"
|
|
48
|
+
}, "standfirst" | "title" | "byline" | "bodyXML" | "alternativeTitles" | "alternativeStandfirsts"> & Pick<{
|
|
49
49
|
id: import("zod").ZodString;
|
|
50
|
-
annotations: import("zod").ZodArray<import("zod").ZodObject<
|
|
50
|
+
annotations: import("zod").ZodArray<import("zod").ZodObject<{
|
|
51
51
|
id: import("zod").ZodString;
|
|
52
52
|
apiUrl: import("zod").ZodString;
|
|
53
53
|
directType: import("zod").ZodString;
|
|
@@ -55,9 +55,9 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
55
55
|
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
56
56
|
types: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
57
57
|
headshot: import("zod").ZodOptional<import("zod").ZodString>;
|
|
58
|
-
}
|
|
58
|
+
} & {
|
|
59
59
|
predicate: import("zod").ZodString;
|
|
60
|
-
}
|
|
60
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
61
61
|
id: string;
|
|
62
62
|
apiUrl: string;
|
|
63
63
|
directType: string;
|
|
@@ -161,7 +161,7 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
161
161
|
clientName: import("zod").ZodOptional<import("zod").ZodString>;
|
|
162
162
|
disclaimerType: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"co-created-content">, import("zod").ZodLiteral<"client-supplied-content">, import("zod").ZodLiteral<"ft-studios-risky">, import("zod").ZodLiteral<"auditor">]>>;
|
|
163
163
|
internalAnalyticsTags: import("zod").ZodOptional<import("zod").ZodString>;
|
|
164
|
-
}, "id" | "type" | "types" | "publishedDate" | "annotations" | "webUrl" | "canonicalWebUrl" | "standout" | "firstPublishedDate" | "publishReference" | "lastModified" | "editorialDesk" | "accessLevel" | "canBeSyndicated" | "canBeDistributed" | "topper" | "comments" | "containedIn" | "internalAnalyticsTags"
|
|
164
|
+
}, "id" | "type" | "types" | "publishedDate" | "annotations" | "webUrl" | "canonicalWebUrl" | "standout" | "firstPublishedDate" | "publishReference" | "lastModified" | "editorialDesk" | "accessLevel" | "canBeSyndicated" | "canBeDistributed" | "topper" | "comments" | "containedIn" | "internalAnalyticsTags"> & Pick<{
|
|
165
165
|
mainImage: import("zod").ZodOptional<import("zod").ZodDiscriminatedUnion<"type", [import("zod").ZodObject<{
|
|
166
166
|
id: import("zod").ZodString;
|
|
167
167
|
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/ImageSet">;
|
|
@@ -212,9 +212,8 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
212
212
|
maxDisplayWidth?: string | undefined;
|
|
213
213
|
pixelWidth?: number | undefined;
|
|
214
214
|
pixelHeight?: number | undefined;
|
|
215
|
-
}>, import("zod").ZodObject<
|
|
215
|
+
}>, import("zod").ZodObject<{
|
|
216
216
|
id: import("zod").ZodString;
|
|
217
|
-
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
|
|
218
217
|
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">]>>;
|
|
219
218
|
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
220
219
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -230,9 +229,9 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
230
229
|
maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
|
|
231
230
|
pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
232
231
|
pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
233
|
-
}
|
|
232
|
+
} & {
|
|
234
233
|
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Graphic">;
|
|
235
|
-
}
|
|
234
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
236
235
|
id: string;
|
|
237
236
|
type: "http://www.ft.com/ontology/content/Graphic";
|
|
238
237
|
binaryUrl: string;
|
|
@@ -373,9 +372,8 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
373
372
|
maxDisplayWidth?: string | undefined;
|
|
374
373
|
pixelWidth?: number | undefined;
|
|
375
374
|
pixelHeight?: number | undefined;
|
|
376
|
-
}>, import("zod").ZodObject<
|
|
375
|
+
}>, import("zod").ZodObject<{
|
|
377
376
|
id: import("zod").ZodString;
|
|
378
|
-
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
|
|
379
377
|
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">]>>;
|
|
380
378
|
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
381
379
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -391,9 +389,9 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
391
389
|
maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
|
|
392
390
|
pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
393
391
|
pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
394
|
-
}
|
|
392
|
+
} & {
|
|
395
393
|
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Graphic">;
|
|
396
|
-
}
|
|
394
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
397
395
|
id: string;
|
|
398
396
|
type: "http://www.ft.com/ontology/content/Graphic";
|
|
399
397
|
binaryUrl: string;
|
|
@@ -471,9 +469,8 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
471
469
|
maxDisplayWidth?: string | undefined;
|
|
472
470
|
pixelWidth?: number | undefined;
|
|
473
471
|
pixelHeight?: number | undefined;
|
|
474
|
-
}>, import("zod").ZodObject<
|
|
472
|
+
}>, import("zod").ZodObject<{
|
|
475
473
|
id: import("zod").ZodString;
|
|
476
|
-
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
|
|
477
474
|
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">]>>;
|
|
478
475
|
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
479
476
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -489,9 +486,9 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
489
486
|
maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
|
|
490
487
|
pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
491
488
|
pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
492
|
-
}
|
|
489
|
+
} & {
|
|
493
490
|
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Graphic">;
|
|
494
|
-
}
|
|
491
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
495
492
|
id: string;
|
|
496
493
|
type: "http://www.ft.com/ontology/content/Graphic";
|
|
497
494
|
binaryUrl: string;
|
|
@@ -729,9 +726,8 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
729
726
|
maxDisplayWidth?: string | undefined;
|
|
730
727
|
pixelWidth?: number | undefined;
|
|
731
728
|
pixelHeight?: number | undefined;
|
|
732
|
-
}>, import("zod").ZodObject<
|
|
729
|
+
}>, import("zod").ZodObject<{
|
|
733
730
|
id: import("zod").ZodString;
|
|
734
|
-
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
|
|
735
731
|
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">]>>;
|
|
736
732
|
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
737
733
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -747,9 +743,9 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
747
743
|
maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
|
|
748
744
|
pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
749
745
|
pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
750
|
-
}
|
|
746
|
+
} & {
|
|
751
747
|
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Graphic">;
|
|
752
|
-
}
|
|
748
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
753
749
|
id: string;
|
|
754
750
|
type: "http://www.ft.com/ontology/content/Graphic";
|
|
755
751
|
binaryUrl: string;
|
|
@@ -926,9 +922,8 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
926
922
|
maxDisplayWidth?: string | undefined;
|
|
927
923
|
pixelWidth?: number | undefined;
|
|
928
924
|
pixelHeight?: number | undefined;
|
|
929
|
-
}>, import("zod").ZodObject<
|
|
925
|
+
}>, import("zod").ZodObject<{
|
|
930
926
|
id: import("zod").ZodString;
|
|
931
|
-
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
|
|
932
927
|
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">]>>;
|
|
933
928
|
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
934
929
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -944,9 +939,9 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
944
939
|
maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
|
|
945
940
|
pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
946
941
|
pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
947
|
-
}
|
|
942
|
+
} & {
|
|
948
943
|
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Graphic">;
|
|
949
|
-
}
|
|
944
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
950
945
|
id: string;
|
|
951
946
|
type: "http://www.ft.com/ontology/content/Graphic";
|
|
952
947
|
binaryUrl: string;
|
|
@@ -1308,9 +1303,9 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
1308
1303
|
}[] | undefined;
|
|
1309
1304
|
transcript?: string | undefined;
|
|
1310
1305
|
} | undefined;
|
|
1311
|
-
}>, import("zod").ZodObject<
|
|
1306
|
+
}>, import("zod").ZodObject<Pick<{
|
|
1312
1307
|
id: import("zod").ZodString;
|
|
1313
|
-
annotations: import("zod").ZodArray<import("zod").ZodObject<
|
|
1308
|
+
annotations: import("zod").ZodArray<import("zod").ZodObject<{
|
|
1314
1309
|
id: import("zod").ZodString;
|
|
1315
1310
|
apiUrl: import("zod").ZodString;
|
|
1316
1311
|
directType: import("zod").ZodString;
|
|
@@ -1318,9 +1313,9 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
1318
1313
|
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1319
1314
|
types: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
1320
1315
|
headshot: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1321
|
-
}
|
|
1316
|
+
} & {
|
|
1322
1317
|
predicate: import("zod").ZodString;
|
|
1323
|
-
}
|
|
1318
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
1324
1319
|
id: string;
|
|
1325
1320
|
apiUrl: string;
|
|
1326
1321
|
directType: string;
|
|
@@ -1424,7 +1419,7 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
1424
1419
|
clientName: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1425
1420
|
disclaimerType: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"co-created-content">, import("zod").ZodLiteral<"client-supplied-content">, import("zod").ZodLiteral<"ft-studios-risky">, import("zod").ZodLiteral<"auditor">]>>;
|
|
1426
1421
|
internalAnalyticsTags: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1427
|
-
}, "id" | "publishedDate" | "canonicalWebUrl" | "firstPublishedDate" | "publishReference" | "canBeSyndicated" | "canBeDistributed"
|
|
1422
|
+
}, "id" | "publishedDate" | "canonicalWebUrl" | "firstPublishedDate" | "publishReference" | "canBeSyndicated" | "canBeDistributed"> & Pick<{
|
|
1428
1423
|
title: import("zod").ZodString;
|
|
1429
1424
|
standfirst: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1430
1425
|
byline: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -1469,13 +1464,13 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
1469
1464
|
theme: "special-report" | "extra" | "basic" | "extra-wide";
|
|
1470
1465
|
}>;
|
|
1471
1466
|
transcript: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1472
|
-
}, "bodyXML"
|
|
1467
|
+
}, "bodyXML"> & {
|
|
1473
1468
|
apiUrl: import("zod").ZodString;
|
|
1474
1469
|
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/CustomCodeComponent">;
|
|
1475
1470
|
path: import("zod").ZodString;
|
|
1476
1471
|
versionRange: import("zod").ZodString;
|
|
1477
1472
|
attributes: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodBoolean, import("zod").ZodUndefined]>>;
|
|
1478
|
-
}
|
|
1473
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
1479
1474
|
id: string;
|
|
1480
1475
|
apiUrl: string;
|
|
1481
1476
|
type: "http://www.ft.com/ontology/content/CustomCodeComponent";
|
|
@@ -1520,7 +1515,7 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
1520
1515
|
mediaType: string;
|
|
1521
1516
|
filesize?: number | undefined;
|
|
1522
1517
|
}>, "many">>;
|
|
1523
|
-
}, "mainImage" | "leadImages" | "alternativeImages" | "embeds"
|
|
1518
|
+
}, "mainImage" | "leadImages" | "alternativeImages" | "embeds">, "strip", import("zod").ZodTypeAny, {
|
|
1524
1519
|
id: string;
|
|
1525
1520
|
types: string[];
|
|
1526
1521
|
title: string;
|
|
@@ -2088,7 +2083,7 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
2088
2083
|
publishReference?: string | undefined;
|
|
2089
2084
|
canBeDistributed?: "yes" | "no" | "verify" | undefined;
|
|
2090
2085
|
})[] | undefined;
|
|
2091
|
-
}> | import("zod").ZodObject<
|
|
2086
|
+
}> | import("zod").ZodObject<Pick<{
|
|
2092
2087
|
title: import("zod").ZodString;
|
|
2093
2088
|
standfirst: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2094
2089
|
byline: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -2133,9 +2128,9 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
2133
2128
|
theme: "special-report" | "extra" | "basic" | "extra-wide";
|
|
2134
2129
|
}>;
|
|
2135
2130
|
transcript: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2136
|
-
}, "title" | "byline" | "summary" | "alternativeTitles" | "pinnedPosts" | "contains"
|
|
2131
|
+
}, "title" | "byline" | "summary" | "alternativeTitles" | "pinnedPosts" | "contains"> & Pick<{
|
|
2137
2132
|
id: import("zod").ZodString;
|
|
2138
|
-
annotations: import("zod").ZodArray<import("zod").ZodObject<
|
|
2133
|
+
annotations: import("zod").ZodArray<import("zod").ZodObject<{
|
|
2139
2134
|
id: import("zod").ZodString;
|
|
2140
2135
|
apiUrl: import("zod").ZodString;
|
|
2141
2136
|
directType: import("zod").ZodString;
|
|
@@ -2143,9 +2138,9 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
2143
2138
|
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2144
2139
|
types: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
2145
2140
|
headshot: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2146
|
-
}
|
|
2141
|
+
} & {
|
|
2147
2142
|
predicate: import("zod").ZodString;
|
|
2148
|
-
}
|
|
2143
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
2149
2144
|
id: string;
|
|
2150
2145
|
apiUrl: string;
|
|
2151
2146
|
directType: string;
|
|
@@ -2249,7 +2244,7 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
2249
2244
|
clientName: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2250
2245
|
disclaimerType: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"co-created-content">, import("zod").ZodLiteral<"client-supplied-content">, import("zod").ZodLiteral<"ft-studios-risky">, import("zod").ZodLiteral<"auditor">]>>;
|
|
2251
2246
|
internalAnalyticsTags: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2252
|
-
}, "id" | "type" | "types" | "publishedDate" | "annotations" | "webUrl" | "canonicalWebUrl" | "firstPublishedDate" | "publishReference" | "lastModified" | "editorialDesk" | "accessLevel" | "canBeSyndicated" | "canBeDistributed" | "topper" | "comments" | "internalAnalyticsTags"
|
|
2247
|
+
}, "id" | "type" | "types" | "publishedDate" | "annotations" | "webUrl" | "canonicalWebUrl" | "firstPublishedDate" | "publishReference" | "lastModified" | "editorialDesk" | "accessLevel" | "canBeSyndicated" | "canBeDistributed" | "topper" | "comments" | "internalAnalyticsTags"> & Pick<{
|
|
2253
2248
|
mainImage: import("zod").ZodOptional<import("zod").ZodDiscriminatedUnion<"type", [import("zod").ZodObject<{
|
|
2254
2249
|
id: import("zod").ZodString;
|
|
2255
2250
|
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/ImageSet">;
|
|
@@ -2300,9 +2295,8 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
2300
2295
|
maxDisplayWidth?: string | undefined;
|
|
2301
2296
|
pixelWidth?: number | undefined;
|
|
2302
2297
|
pixelHeight?: number | undefined;
|
|
2303
|
-
}>, import("zod").ZodObject<
|
|
2298
|
+
}>, import("zod").ZodObject<{
|
|
2304
2299
|
id: import("zod").ZodString;
|
|
2305
|
-
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
|
|
2306
2300
|
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">]>>;
|
|
2307
2301
|
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2308
2302
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -2318,9 +2312,9 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
2318
2312
|
maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2319
2313
|
pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2320
2314
|
pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2321
|
-
}
|
|
2315
|
+
} & {
|
|
2322
2316
|
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Graphic">;
|
|
2323
|
-
}
|
|
2317
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
2324
2318
|
id: string;
|
|
2325
2319
|
type: "http://www.ft.com/ontology/content/Graphic";
|
|
2326
2320
|
binaryUrl: string;
|
|
@@ -2461,9 +2455,8 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
2461
2455
|
maxDisplayWidth?: string | undefined;
|
|
2462
2456
|
pixelWidth?: number | undefined;
|
|
2463
2457
|
pixelHeight?: number | undefined;
|
|
2464
|
-
}>, import("zod").ZodObject<
|
|
2458
|
+
}>, import("zod").ZodObject<{
|
|
2465
2459
|
id: import("zod").ZodString;
|
|
2466
|
-
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
|
|
2467
2460
|
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">]>>;
|
|
2468
2461
|
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2469
2462
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -2479,9 +2472,9 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
2479
2472
|
maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2480
2473
|
pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2481
2474
|
pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2482
|
-
}
|
|
2475
|
+
} & {
|
|
2483
2476
|
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Graphic">;
|
|
2484
|
-
}
|
|
2477
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
2485
2478
|
id: string;
|
|
2486
2479
|
type: "http://www.ft.com/ontology/content/Graphic";
|
|
2487
2480
|
binaryUrl: string;
|
|
@@ -2559,9 +2552,8 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
2559
2552
|
maxDisplayWidth?: string | undefined;
|
|
2560
2553
|
pixelWidth?: number | undefined;
|
|
2561
2554
|
pixelHeight?: number | undefined;
|
|
2562
|
-
}>, import("zod").ZodObject<
|
|
2555
|
+
}>, import("zod").ZodObject<{
|
|
2563
2556
|
id: import("zod").ZodString;
|
|
2564
|
-
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
|
|
2565
2557
|
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">]>>;
|
|
2566
2558
|
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2567
2559
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -2577,9 +2569,9 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
2577
2569
|
maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2578
2570
|
pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2579
2571
|
pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2580
|
-
}
|
|
2572
|
+
} & {
|
|
2581
2573
|
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Graphic">;
|
|
2582
|
-
}
|
|
2574
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
2583
2575
|
id: string;
|
|
2584
2576
|
type: "http://www.ft.com/ontology/content/Graphic";
|
|
2585
2577
|
binaryUrl: string;
|
|
@@ -2817,9 +2809,8 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
2817
2809
|
maxDisplayWidth?: string | undefined;
|
|
2818
2810
|
pixelWidth?: number | undefined;
|
|
2819
2811
|
pixelHeight?: number | undefined;
|
|
2820
|
-
}>, import("zod").ZodObject<
|
|
2812
|
+
}>, import("zod").ZodObject<{
|
|
2821
2813
|
id: import("zod").ZodString;
|
|
2822
|
-
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
|
|
2823
2814
|
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">]>>;
|
|
2824
2815
|
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2825
2816
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -2835,9 +2826,9 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
2835
2826
|
maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2836
2827
|
pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2837
2828
|
pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2838
|
-
}
|
|
2829
|
+
} & {
|
|
2839
2830
|
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Graphic">;
|
|
2840
|
-
}
|
|
2831
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
2841
2832
|
id: string;
|
|
2842
2833
|
type: "http://www.ft.com/ontology/content/Graphic";
|
|
2843
2834
|
binaryUrl: string;
|
|
@@ -3014,9 +3005,8 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
3014
3005
|
maxDisplayWidth?: string | undefined;
|
|
3015
3006
|
pixelWidth?: number | undefined;
|
|
3016
3007
|
pixelHeight?: number | undefined;
|
|
3017
|
-
}>, import("zod").ZodObject<
|
|
3008
|
+
}>, import("zod").ZodObject<{
|
|
3018
3009
|
id: import("zod").ZodString;
|
|
3019
|
-
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
|
|
3020
3010
|
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">]>>;
|
|
3021
3011
|
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3022
3012
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -3032,9 +3022,9 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
3032
3022
|
maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3033
3023
|
pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3034
3024
|
pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3035
|
-
}
|
|
3025
|
+
} & {
|
|
3036
3026
|
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Graphic">;
|
|
3037
|
-
}
|
|
3027
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
3038
3028
|
id: string;
|
|
3039
3029
|
type: "http://www.ft.com/ontology/content/Graphic";
|
|
3040
3030
|
binaryUrl: string;
|
|
@@ -3396,9 +3386,9 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
3396
3386
|
}[] | undefined;
|
|
3397
3387
|
transcript?: string | undefined;
|
|
3398
3388
|
} | undefined;
|
|
3399
|
-
}>, import("zod").ZodObject<
|
|
3389
|
+
}>, import("zod").ZodObject<Pick<{
|
|
3400
3390
|
id: import("zod").ZodString;
|
|
3401
|
-
annotations: import("zod").ZodArray<import("zod").ZodObject<
|
|
3391
|
+
annotations: import("zod").ZodArray<import("zod").ZodObject<{
|
|
3402
3392
|
id: import("zod").ZodString;
|
|
3403
3393
|
apiUrl: import("zod").ZodString;
|
|
3404
3394
|
directType: import("zod").ZodString;
|
|
@@ -3406,9 +3396,9 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
3406
3396
|
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3407
3397
|
types: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
3408
3398
|
headshot: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3409
|
-
}
|
|
3399
|
+
} & {
|
|
3410
3400
|
predicate: import("zod").ZodString;
|
|
3411
|
-
}
|
|
3401
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
3412
3402
|
id: string;
|
|
3413
3403
|
apiUrl: string;
|
|
3414
3404
|
directType: string;
|
|
@@ -3512,7 +3502,7 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
3512
3502
|
clientName: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3513
3503
|
disclaimerType: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"co-created-content">, import("zod").ZodLiteral<"client-supplied-content">, import("zod").ZodLiteral<"ft-studios-risky">, import("zod").ZodLiteral<"auditor">]>>;
|
|
3514
3504
|
internalAnalyticsTags: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3515
|
-
}, "id" | "publishedDate" | "canonicalWebUrl" | "firstPublishedDate" | "publishReference" | "canBeSyndicated" | "canBeDistributed"
|
|
3505
|
+
}, "id" | "publishedDate" | "canonicalWebUrl" | "firstPublishedDate" | "publishReference" | "canBeSyndicated" | "canBeDistributed"> & Pick<{
|
|
3516
3506
|
title: import("zod").ZodString;
|
|
3517
3507
|
standfirst: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3518
3508
|
byline: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -3557,13 +3547,13 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
3557
3547
|
theme: "special-report" | "extra" | "basic" | "extra-wide";
|
|
3558
3548
|
}>;
|
|
3559
3549
|
transcript: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3560
|
-
}, "bodyXML"
|
|
3550
|
+
}, "bodyXML"> & {
|
|
3561
3551
|
apiUrl: import("zod").ZodString;
|
|
3562
3552
|
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/CustomCodeComponent">;
|
|
3563
3553
|
path: import("zod").ZodString;
|
|
3564
3554
|
versionRange: import("zod").ZodString;
|
|
3565
3555
|
attributes: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodBoolean, import("zod").ZodUndefined]>>;
|
|
3566
|
-
}
|
|
3556
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
3567
3557
|
id: string;
|
|
3568
3558
|
apiUrl: string;
|
|
3569
3559
|
type: "http://www.ft.com/ontology/content/CustomCodeComponent";
|
|
@@ -3608,7 +3598,7 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
3608
3598
|
mediaType: string;
|
|
3609
3599
|
filesize?: number | undefined;
|
|
3610
3600
|
}>, "many">>;
|
|
3611
|
-
}, "mainImage" | "leadImages" | "embeds"
|
|
3601
|
+
}, "mainImage" | "leadImages" | "embeds">, "strip", import("zod").ZodTypeAny, {
|
|
3612
3602
|
id: string;
|
|
3613
3603
|
types: string[];
|
|
3614
3604
|
title: string;
|
|
@@ -4130,7 +4120,7 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
4130
4120
|
publishReference?: string | undefined;
|
|
4131
4121
|
canBeDistributed?: "yes" | "no" | "verify" | undefined;
|
|
4132
4122
|
})[] | undefined;
|
|
4133
|
-
}> | import("zod").ZodObject<
|
|
4123
|
+
}> | import("zod").ZodObject<Pick<{
|
|
4134
4124
|
title: import("zod").ZodString;
|
|
4135
4125
|
standfirst: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4136
4126
|
byline: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -4175,9 +4165,9 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
4175
4165
|
theme: "special-report" | "extra" | "basic" | "extra-wide";
|
|
4176
4166
|
}>;
|
|
4177
4167
|
transcript: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4178
|
-
}, "title" | "byline" | "alternativeTitles"
|
|
4168
|
+
}, "title" | "byline" | "alternativeTitles"> & Pick<{
|
|
4179
4169
|
id: import("zod").ZodString;
|
|
4180
|
-
annotations: import("zod").ZodArray<import("zod").ZodObject<
|
|
4170
|
+
annotations: import("zod").ZodArray<import("zod").ZodObject<{
|
|
4181
4171
|
id: import("zod").ZodString;
|
|
4182
4172
|
apiUrl: import("zod").ZodString;
|
|
4183
4173
|
directType: import("zod").ZodString;
|
|
@@ -4185,9 +4175,9 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
4185
4175
|
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4186
4176
|
types: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
4187
4177
|
headshot: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4188
|
-
}
|
|
4178
|
+
} & {
|
|
4189
4179
|
predicate: import("zod").ZodString;
|
|
4190
|
-
}
|
|
4180
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
4191
4181
|
id: string;
|
|
4192
4182
|
apiUrl: string;
|
|
4193
4183
|
directType: string;
|
|
@@ -4291,7 +4281,7 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
4291
4281
|
clientName: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4292
4282
|
disclaimerType: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"co-created-content">, import("zod").ZodLiteral<"client-supplied-content">, import("zod").ZodLiteral<"ft-studios-risky">, import("zod").ZodLiteral<"auditor">]>>;
|
|
4293
4283
|
internalAnalyticsTags: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4294
|
-
}, "id" | "types" | "publishedDate" | "annotations" | "webUrl" | "canonicalWebUrl" | "firstPublishedDate" | "publishReference" | "lastModified" | "editorialDesk" | "accessLevel" | "canBeSyndicated" | "canBeDistributed" | "internalAnalyticsTags"
|
|
4284
|
+
}, "id" | "types" | "publishedDate" | "annotations" | "webUrl" | "canonicalWebUrl" | "firstPublishedDate" | "publishReference" | "lastModified" | "editorialDesk" | "accessLevel" | "canBeSyndicated" | "canBeDistributed" | "internalAnalyticsTags"> & Pick<{
|
|
4295
4285
|
mainImage: import("zod").ZodOptional<import("zod").ZodDiscriminatedUnion<"type", [import("zod").ZodObject<{
|
|
4296
4286
|
id: import("zod").ZodString;
|
|
4297
4287
|
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/ImageSet">;
|
|
@@ -4342,9 +4332,8 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
4342
4332
|
maxDisplayWidth?: string | undefined;
|
|
4343
4333
|
pixelWidth?: number | undefined;
|
|
4344
4334
|
pixelHeight?: number | undefined;
|
|
4345
|
-
}>, import("zod").ZodObject<
|
|
4335
|
+
}>, import("zod").ZodObject<{
|
|
4346
4336
|
id: import("zod").ZodString;
|
|
4347
|
-
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
|
|
4348
4337
|
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">]>>;
|
|
4349
4338
|
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4350
4339
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -4360,9 +4349,9 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
4360
4349
|
maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4361
4350
|
pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4362
4351
|
pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4363
|
-
}
|
|
4352
|
+
} & {
|
|
4364
4353
|
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Graphic">;
|
|
4365
|
-
}
|
|
4354
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
4366
4355
|
id: string;
|
|
4367
4356
|
type: "http://www.ft.com/ontology/content/Graphic";
|
|
4368
4357
|
binaryUrl: string;
|
|
@@ -4503,9 +4492,8 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
4503
4492
|
maxDisplayWidth?: string | undefined;
|
|
4504
4493
|
pixelWidth?: number | undefined;
|
|
4505
4494
|
pixelHeight?: number | undefined;
|
|
4506
|
-
}>, import("zod").ZodObject<
|
|
4495
|
+
}>, import("zod").ZodObject<{
|
|
4507
4496
|
id: import("zod").ZodString;
|
|
4508
|
-
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
|
|
4509
4497
|
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">]>>;
|
|
4510
4498
|
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4511
4499
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -4521,9 +4509,9 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
4521
4509
|
maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4522
4510
|
pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4523
4511
|
pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4524
|
-
}
|
|
4512
|
+
} & {
|
|
4525
4513
|
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Graphic">;
|
|
4526
|
-
}
|
|
4514
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
4527
4515
|
id: string;
|
|
4528
4516
|
type: "http://www.ft.com/ontology/content/Graphic";
|
|
4529
4517
|
binaryUrl: string;
|
|
@@ -4601,9 +4589,8 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
4601
4589
|
maxDisplayWidth?: string | undefined;
|
|
4602
4590
|
pixelWidth?: number | undefined;
|
|
4603
4591
|
pixelHeight?: number | undefined;
|
|
4604
|
-
}>, import("zod").ZodObject<
|
|
4592
|
+
}>, import("zod").ZodObject<{
|
|
4605
4593
|
id: import("zod").ZodString;
|
|
4606
|
-
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
|
|
4607
4594
|
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">]>>;
|
|
4608
4595
|
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4609
4596
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -4619,9 +4606,9 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
4619
4606
|
maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4620
4607
|
pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4621
4608
|
pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4622
|
-
}
|
|
4609
|
+
} & {
|
|
4623
4610
|
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Graphic">;
|
|
4624
|
-
}
|
|
4611
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
4625
4612
|
id: string;
|
|
4626
4613
|
type: "http://www.ft.com/ontology/content/Graphic";
|
|
4627
4614
|
binaryUrl: string;
|
|
@@ -4859,9 +4846,8 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
4859
4846
|
maxDisplayWidth?: string | undefined;
|
|
4860
4847
|
pixelWidth?: number | undefined;
|
|
4861
4848
|
pixelHeight?: number | undefined;
|
|
4862
|
-
}>, import("zod").ZodObject<
|
|
4849
|
+
}>, import("zod").ZodObject<{
|
|
4863
4850
|
id: import("zod").ZodString;
|
|
4864
|
-
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
|
|
4865
4851
|
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">]>>;
|
|
4866
4852
|
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4867
4853
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -4877,9 +4863,9 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
4877
4863
|
maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4878
4864
|
pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4879
4865
|
pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4880
|
-
}
|
|
4866
|
+
} & {
|
|
4881
4867
|
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Graphic">;
|
|
4882
|
-
}
|
|
4868
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
4883
4869
|
id: string;
|
|
4884
4870
|
type: "http://www.ft.com/ontology/content/Graphic";
|
|
4885
4871
|
binaryUrl: string;
|
|
@@ -5056,9 +5042,8 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
5056
5042
|
maxDisplayWidth?: string | undefined;
|
|
5057
5043
|
pixelWidth?: number | undefined;
|
|
5058
5044
|
pixelHeight?: number | undefined;
|
|
5059
|
-
}>, import("zod").ZodObject<
|
|
5045
|
+
}>, import("zod").ZodObject<{
|
|
5060
5046
|
id: import("zod").ZodString;
|
|
5061
|
-
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
|
|
5062
5047
|
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">]>>;
|
|
5063
5048
|
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5064
5049
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -5074,9 +5059,9 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
5074
5059
|
maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5075
5060
|
pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5076
5061
|
pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5077
|
-
}
|
|
5062
|
+
} & {
|
|
5078
5063
|
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Graphic">;
|
|
5079
|
-
}
|
|
5064
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
5080
5065
|
id: string;
|
|
5081
5066
|
type: "http://www.ft.com/ontology/content/Graphic";
|
|
5082
5067
|
binaryUrl: string;
|
|
@@ -5438,9 +5423,9 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
5438
5423
|
}[] | undefined;
|
|
5439
5424
|
transcript?: string | undefined;
|
|
5440
5425
|
} | undefined;
|
|
5441
|
-
}>, import("zod").ZodObject<
|
|
5426
|
+
}>, import("zod").ZodObject<Pick<{
|
|
5442
5427
|
id: import("zod").ZodString;
|
|
5443
|
-
annotations: import("zod").ZodArray<import("zod").ZodObject<
|
|
5428
|
+
annotations: import("zod").ZodArray<import("zod").ZodObject<{
|
|
5444
5429
|
id: import("zod").ZodString;
|
|
5445
5430
|
apiUrl: import("zod").ZodString;
|
|
5446
5431
|
directType: import("zod").ZodString;
|
|
@@ -5448,9 +5433,9 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
5448
5433
|
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5449
5434
|
types: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
5450
5435
|
headshot: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5451
|
-
}
|
|
5436
|
+
} & {
|
|
5452
5437
|
predicate: import("zod").ZodString;
|
|
5453
|
-
}
|
|
5438
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
5454
5439
|
id: string;
|
|
5455
5440
|
apiUrl: string;
|
|
5456
5441
|
directType: string;
|
|
@@ -5554,7 +5539,7 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
5554
5539
|
clientName: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5555
5540
|
disclaimerType: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"co-created-content">, import("zod").ZodLiteral<"client-supplied-content">, import("zod").ZodLiteral<"ft-studios-risky">, import("zod").ZodLiteral<"auditor">]>>;
|
|
5556
5541
|
internalAnalyticsTags: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5557
|
-
}, "id" | "publishedDate" | "canonicalWebUrl" | "firstPublishedDate" | "publishReference" | "canBeSyndicated" | "canBeDistributed"
|
|
5542
|
+
}, "id" | "publishedDate" | "canonicalWebUrl" | "firstPublishedDate" | "publishReference" | "canBeSyndicated" | "canBeDistributed"> & Pick<{
|
|
5558
5543
|
title: import("zod").ZodString;
|
|
5559
5544
|
standfirst: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5560
5545
|
byline: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -5599,13 +5584,13 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
5599
5584
|
theme: "special-report" | "extra" | "basic" | "extra-wide";
|
|
5600
5585
|
}>;
|
|
5601
5586
|
transcript: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5602
|
-
}, "bodyXML"
|
|
5587
|
+
}, "bodyXML"> & {
|
|
5603
5588
|
apiUrl: import("zod").ZodString;
|
|
5604
5589
|
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/CustomCodeComponent">;
|
|
5605
5590
|
path: import("zod").ZodString;
|
|
5606
5591
|
versionRange: import("zod").ZodString;
|
|
5607
5592
|
attributes: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodBoolean, import("zod").ZodUndefined]>>;
|
|
5608
|
-
}
|
|
5593
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
5609
5594
|
id: string;
|
|
5610
5595
|
apiUrl: string;
|
|
5611
5596
|
type: "http://www.ft.com/ontology/content/CustomCodeComponent";
|
|
@@ -5650,7 +5635,7 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
5650
5635
|
mediaType: string;
|
|
5651
5636
|
filesize?: number | undefined;
|
|
5652
5637
|
}>, "many">>;
|
|
5653
|
-
}, "dataSource" | "mainImage"
|
|
5638
|
+
}, "dataSource" | "mainImage">, "strip", import("zod").ZodTypeAny, {
|
|
5654
5639
|
id: string;
|
|
5655
5640
|
types: string[];
|
|
5656
5641
|
title: string;
|
|
@@ -5844,7 +5829,7 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
5844
5829
|
})[];
|
|
5845
5830
|
description?: string | undefined;
|
|
5846
5831
|
} | undefined;
|
|
5847
|
-
}> | import("zod").ZodObject<
|
|
5832
|
+
}> | import("zod").ZodObject<Pick<{
|
|
5848
5833
|
title: import("zod").ZodString;
|
|
5849
5834
|
standfirst: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5850
5835
|
byline: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -5889,9 +5874,9 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
5889
5874
|
theme: "special-report" | "extra" | "basic" | "extra-wide";
|
|
5890
5875
|
}>;
|
|
5891
5876
|
transcript: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5892
|
-
}, "title" | "transcript" | "byline" | "alternativeTitles"
|
|
5877
|
+
}, "title" | "transcript" | "byline" | "alternativeTitles"> & Pick<{
|
|
5893
5878
|
id: import("zod").ZodString;
|
|
5894
|
-
annotations: import("zod").ZodArray<import("zod").ZodObject<
|
|
5879
|
+
annotations: import("zod").ZodArray<import("zod").ZodObject<{
|
|
5895
5880
|
id: import("zod").ZodString;
|
|
5896
5881
|
apiUrl: import("zod").ZodString;
|
|
5897
5882
|
directType: import("zod").ZodString;
|
|
@@ -5899,9 +5884,9 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
5899
5884
|
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5900
5885
|
types: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
5901
5886
|
headshot: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5902
|
-
}
|
|
5887
|
+
} & {
|
|
5903
5888
|
predicate: import("zod").ZodString;
|
|
5904
|
-
}
|
|
5889
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
5905
5890
|
id: string;
|
|
5906
5891
|
apiUrl: string;
|
|
5907
5892
|
directType: string;
|
|
@@ -6005,7 +5990,7 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
6005
5990
|
clientName: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6006
5991
|
disclaimerType: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"co-created-content">, import("zod").ZodLiteral<"client-supplied-content">, import("zod").ZodLiteral<"ft-studios-risky">, import("zod").ZodLiteral<"auditor">]>>;
|
|
6007
5992
|
internalAnalyticsTags: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6008
|
-
}, "id" | "types" | "publishedDate" | "annotations" | "webUrl" | "canonicalWebUrl" | "firstPublishedDate" | "publishReference" | "lastModified" | "editorialDesk" | "accessLevel" | "canBeSyndicated" | "canBeDistributed" | "internalAnalyticsTags"
|
|
5993
|
+
}, "id" | "types" | "publishedDate" | "annotations" | "webUrl" | "canonicalWebUrl" | "firstPublishedDate" | "publishReference" | "lastModified" | "editorialDesk" | "accessLevel" | "canBeSyndicated" | "canBeDistributed" | "internalAnalyticsTags"> & Pick<{
|
|
6009
5994
|
mainImage: import("zod").ZodOptional<import("zod").ZodDiscriminatedUnion<"type", [import("zod").ZodObject<{
|
|
6010
5995
|
id: import("zod").ZodString;
|
|
6011
5996
|
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/ImageSet">;
|
|
@@ -6056,9 +6041,8 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
6056
6041
|
maxDisplayWidth?: string | undefined;
|
|
6057
6042
|
pixelWidth?: number | undefined;
|
|
6058
6043
|
pixelHeight?: number | undefined;
|
|
6059
|
-
}>, import("zod").ZodObject<
|
|
6044
|
+
}>, import("zod").ZodObject<{
|
|
6060
6045
|
id: import("zod").ZodString;
|
|
6061
|
-
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
|
|
6062
6046
|
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">]>>;
|
|
6063
6047
|
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6064
6048
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -6074,9 +6058,9 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
6074
6058
|
maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6075
6059
|
pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6076
6060
|
pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6077
|
-
}
|
|
6061
|
+
} & {
|
|
6078
6062
|
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Graphic">;
|
|
6079
|
-
}
|
|
6063
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
6080
6064
|
id: string;
|
|
6081
6065
|
type: "http://www.ft.com/ontology/content/Graphic";
|
|
6082
6066
|
binaryUrl: string;
|
|
@@ -6217,9 +6201,8 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
6217
6201
|
maxDisplayWidth?: string | undefined;
|
|
6218
6202
|
pixelWidth?: number | undefined;
|
|
6219
6203
|
pixelHeight?: number | undefined;
|
|
6220
|
-
}>, import("zod").ZodObject<
|
|
6204
|
+
}>, import("zod").ZodObject<{
|
|
6221
6205
|
id: import("zod").ZodString;
|
|
6222
|
-
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
|
|
6223
6206
|
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">]>>;
|
|
6224
6207
|
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6225
6208
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -6235,9 +6218,9 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
6235
6218
|
maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6236
6219
|
pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6237
6220
|
pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6238
|
-
}
|
|
6221
|
+
} & {
|
|
6239
6222
|
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Graphic">;
|
|
6240
|
-
}
|
|
6223
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
6241
6224
|
id: string;
|
|
6242
6225
|
type: "http://www.ft.com/ontology/content/Graphic";
|
|
6243
6226
|
binaryUrl: string;
|
|
@@ -6315,9 +6298,8 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
6315
6298
|
maxDisplayWidth?: string | undefined;
|
|
6316
6299
|
pixelWidth?: number | undefined;
|
|
6317
6300
|
pixelHeight?: number | undefined;
|
|
6318
|
-
}>, import("zod").ZodObject<
|
|
6301
|
+
}>, import("zod").ZodObject<{
|
|
6319
6302
|
id: import("zod").ZodString;
|
|
6320
|
-
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
|
|
6321
6303
|
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">]>>;
|
|
6322
6304
|
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6323
6305
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -6333,9 +6315,9 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
6333
6315
|
maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6334
6316
|
pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6335
6317
|
pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6336
|
-
}
|
|
6318
|
+
} & {
|
|
6337
6319
|
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Graphic">;
|
|
6338
|
-
}
|
|
6320
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
6339
6321
|
id: string;
|
|
6340
6322
|
type: "http://www.ft.com/ontology/content/Graphic";
|
|
6341
6323
|
binaryUrl: string;
|
|
@@ -6573,9 +6555,8 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
6573
6555
|
maxDisplayWidth?: string | undefined;
|
|
6574
6556
|
pixelWidth?: number | undefined;
|
|
6575
6557
|
pixelHeight?: number | undefined;
|
|
6576
|
-
}>, import("zod").ZodObject<
|
|
6558
|
+
}>, import("zod").ZodObject<{
|
|
6577
6559
|
id: import("zod").ZodString;
|
|
6578
|
-
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
|
|
6579
6560
|
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">]>>;
|
|
6580
6561
|
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6581
6562
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -6591,9 +6572,9 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
6591
6572
|
maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6592
6573
|
pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6593
6574
|
pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6594
|
-
}
|
|
6575
|
+
} & {
|
|
6595
6576
|
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Graphic">;
|
|
6596
|
-
}
|
|
6577
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
6597
6578
|
id: string;
|
|
6598
6579
|
type: "http://www.ft.com/ontology/content/Graphic";
|
|
6599
6580
|
binaryUrl: string;
|
|
@@ -6770,9 +6751,8 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
6770
6751
|
maxDisplayWidth?: string | undefined;
|
|
6771
6752
|
pixelWidth?: number | undefined;
|
|
6772
6753
|
pixelHeight?: number | undefined;
|
|
6773
|
-
}>, import("zod").ZodObject<
|
|
6754
|
+
}>, import("zod").ZodObject<{
|
|
6774
6755
|
id: import("zod").ZodString;
|
|
6775
|
-
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
|
|
6776
6756
|
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">]>>;
|
|
6777
6757
|
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6778
6758
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -6788,9 +6768,9 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
6788
6768
|
maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6789
6769
|
pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6790
6770
|
pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6791
|
-
}
|
|
6771
|
+
} & {
|
|
6792
6772
|
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Graphic">;
|
|
6793
|
-
}
|
|
6773
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
6794
6774
|
id: string;
|
|
6795
6775
|
type: "http://www.ft.com/ontology/content/Graphic";
|
|
6796
6776
|
binaryUrl: string;
|
|
@@ -7152,9 +7132,9 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
7152
7132
|
}[] | undefined;
|
|
7153
7133
|
transcript?: string | undefined;
|
|
7154
7134
|
} | undefined;
|
|
7155
|
-
}>, import("zod").ZodObject<
|
|
7135
|
+
}>, import("zod").ZodObject<Pick<{
|
|
7156
7136
|
id: import("zod").ZodString;
|
|
7157
|
-
annotations: import("zod").ZodArray<import("zod").ZodObject<
|
|
7137
|
+
annotations: import("zod").ZodArray<import("zod").ZodObject<{
|
|
7158
7138
|
id: import("zod").ZodString;
|
|
7159
7139
|
apiUrl: import("zod").ZodString;
|
|
7160
7140
|
directType: import("zod").ZodString;
|
|
@@ -7162,9 +7142,9 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
7162
7142
|
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7163
7143
|
types: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
7164
7144
|
headshot: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7165
|
-
}
|
|
7145
|
+
} & {
|
|
7166
7146
|
predicate: import("zod").ZodString;
|
|
7167
|
-
}
|
|
7147
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
7168
7148
|
id: string;
|
|
7169
7149
|
apiUrl: string;
|
|
7170
7150
|
directType: string;
|
|
@@ -7268,7 +7248,7 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
7268
7248
|
clientName: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7269
7249
|
disclaimerType: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"co-created-content">, import("zod").ZodLiteral<"client-supplied-content">, import("zod").ZodLiteral<"ft-studios-risky">, import("zod").ZodLiteral<"auditor">]>>;
|
|
7270
7250
|
internalAnalyticsTags: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7271
|
-
}, "id" | "publishedDate" | "canonicalWebUrl" | "firstPublishedDate" | "publishReference" | "canBeSyndicated" | "canBeDistributed"
|
|
7251
|
+
}, "id" | "publishedDate" | "canonicalWebUrl" | "firstPublishedDate" | "publishReference" | "canBeSyndicated" | "canBeDistributed"> & Pick<{
|
|
7272
7252
|
title: import("zod").ZodString;
|
|
7273
7253
|
standfirst: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7274
7254
|
byline: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -7313,13 +7293,13 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
7313
7293
|
theme: "special-report" | "extra" | "basic" | "extra-wide";
|
|
7314
7294
|
}>;
|
|
7315
7295
|
transcript: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7316
|
-
}, "bodyXML"
|
|
7296
|
+
}, "bodyXML"> & {
|
|
7317
7297
|
apiUrl: import("zod").ZodString;
|
|
7318
7298
|
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/CustomCodeComponent">;
|
|
7319
7299
|
path: import("zod").ZodString;
|
|
7320
7300
|
versionRange: import("zod").ZodString;
|
|
7321
7301
|
attributes: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodBoolean, import("zod").ZodUndefined]>>;
|
|
7322
|
-
}
|
|
7302
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
7323
7303
|
id: string;
|
|
7324
7304
|
apiUrl: string;
|
|
7325
7305
|
type: "http://www.ft.com/ontology/content/CustomCodeComponent";
|
|
@@ -7364,7 +7344,7 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
7364
7344
|
mediaType: string;
|
|
7365
7345
|
filesize?: number | undefined;
|
|
7366
7346
|
}>, "many">>;
|
|
7367
|
-
}, "mainImage"
|
|
7347
|
+
}, "mainImage">, "strip", import("zod").ZodTypeAny, {
|
|
7368
7348
|
id: string;
|
|
7369
7349
|
types: string[];
|
|
7370
7350
|
title: string;
|
|
@@ -7548,9 +7528,9 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
7548
7528
|
})[];
|
|
7549
7529
|
description?: string | undefined;
|
|
7550
7530
|
} | undefined;
|
|
7551
|
-
}> | import("zod").ZodObject<
|
|
7531
|
+
}> | import("zod").ZodObject<Omit<Pick<{
|
|
7552
7532
|
id: import("zod").ZodString;
|
|
7553
|
-
annotations: import("zod").ZodArray<import("zod").ZodObject<
|
|
7533
|
+
annotations: import("zod").ZodArray<import("zod").ZodObject<{
|
|
7554
7534
|
id: import("zod").ZodString;
|
|
7555
7535
|
apiUrl: import("zod").ZodString;
|
|
7556
7536
|
directType: import("zod").ZodString;
|
|
@@ -7558,9 +7538,9 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
7558
7538
|
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7559
7539
|
types: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
7560
7540
|
headshot: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7561
|
-
}
|
|
7541
|
+
} & {
|
|
7562
7542
|
predicate: import("zod").ZodString;
|
|
7563
|
-
}
|
|
7543
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
7564
7544
|
id: string;
|
|
7565
7545
|
apiUrl: string;
|
|
7566
7546
|
directType: string;
|
|
@@ -7664,7 +7644,7 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
7664
7644
|
clientName: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7665
7645
|
disclaimerType: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"co-created-content">, import("zod").ZodLiteral<"client-supplied-content">, import("zod").ZodLiteral<"ft-studios-risky">, import("zod").ZodLiteral<"auditor">]>>;
|
|
7666
7646
|
internalAnalyticsTags: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7667
|
-
}, "id" | "publishedDate" | "canonicalWebUrl" | "firstPublishedDate" | "publishReference" | "canBeSyndicated" | "canBeDistributed"
|
|
7647
|
+
}, "id" | "publishedDate" | "canonicalWebUrl" | "firstPublishedDate" | "publishReference" | "canBeSyndicated" | "canBeDistributed"> & Pick<{
|
|
7668
7648
|
title: import("zod").ZodString;
|
|
7669
7649
|
standfirst: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7670
7650
|
byline: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -7709,15 +7689,15 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
7709
7689
|
theme: "special-report" | "extra" | "basic" | "extra-wide";
|
|
7710
7690
|
}>;
|
|
7711
7691
|
transcript: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7712
|
-
}, "bodyXML"
|
|
7692
|
+
}, "bodyXML"> & {
|
|
7713
7693
|
apiUrl: import("zod").ZodString;
|
|
7714
7694
|
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/CustomCodeComponent">;
|
|
7715
7695
|
path: import("zod").ZodString;
|
|
7716
7696
|
versionRange: import("zod").ZodString;
|
|
7717
7697
|
attributes: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodBoolean, import("zod").ZodUndefined]>>;
|
|
7718
|
-
}
|
|
7698
|
+
}, "type"> & Pick<{
|
|
7719
7699
|
id: import("zod").ZodString;
|
|
7720
|
-
annotations: import("zod").ZodArray<import("zod").ZodObject<
|
|
7700
|
+
annotations: import("zod").ZodArray<import("zod").ZodObject<{
|
|
7721
7701
|
id: import("zod").ZodString;
|
|
7722
7702
|
apiUrl: import("zod").ZodString;
|
|
7723
7703
|
directType: import("zod").ZodString;
|
|
@@ -7725,9 +7705,9 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
7725
7705
|
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7726
7706
|
types: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
7727
7707
|
headshot: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7728
|
-
}
|
|
7708
|
+
} & {
|
|
7729
7709
|
predicate: import("zod").ZodString;
|
|
7730
|
-
}
|
|
7710
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
7731
7711
|
id: string;
|
|
7732
7712
|
apiUrl: string;
|
|
7733
7713
|
directType: string;
|
|
@@ -7831,7 +7811,7 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
7831
7811
|
clientName: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7832
7812
|
disclaimerType: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"co-created-content">, import("zod").ZodLiteral<"client-supplied-content">, import("zod").ZodLiteral<"ft-studios-risky">, import("zod").ZodLiteral<"auditor">]>>;
|
|
7833
7813
|
internalAnalyticsTags: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7834
|
-
}, "types" | "annotations"
|
|
7814
|
+
}, "types" | "annotations"> & Pick<{
|
|
7835
7815
|
mainImage: import("zod").ZodOptional<import("zod").ZodDiscriminatedUnion<"type", [import("zod").ZodObject<{
|
|
7836
7816
|
id: import("zod").ZodString;
|
|
7837
7817
|
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/ImageSet">;
|
|
@@ -7882,9 +7862,8 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
7882
7862
|
maxDisplayWidth?: string | undefined;
|
|
7883
7863
|
pixelWidth?: number | undefined;
|
|
7884
7864
|
pixelHeight?: number | undefined;
|
|
7885
|
-
}>, import("zod").ZodObject<
|
|
7865
|
+
}>, import("zod").ZodObject<{
|
|
7886
7866
|
id: import("zod").ZodString;
|
|
7887
|
-
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
|
|
7888
7867
|
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">]>>;
|
|
7889
7868
|
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7890
7869
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -7900,9 +7879,9 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
7900
7879
|
maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7901
7880
|
pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
7902
7881
|
pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
7903
|
-
}
|
|
7882
|
+
} & {
|
|
7904
7883
|
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Graphic">;
|
|
7905
|
-
}
|
|
7884
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
7906
7885
|
id: string;
|
|
7907
7886
|
type: "http://www.ft.com/ontology/content/Graphic";
|
|
7908
7887
|
binaryUrl: string;
|
|
@@ -8043,9 +8022,8 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
8043
8022
|
maxDisplayWidth?: string | undefined;
|
|
8044
8023
|
pixelWidth?: number | undefined;
|
|
8045
8024
|
pixelHeight?: number | undefined;
|
|
8046
|
-
}>, import("zod").ZodObject<
|
|
8025
|
+
}>, import("zod").ZodObject<{
|
|
8047
8026
|
id: import("zod").ZodString;
|
|
8048
|
-
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
|
|
8049
8027
|
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">]>>;
|
|
8050
8028
|
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
8051
8029
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -8061,9 +8039,9 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
8061
8039
|
maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
|
|
8062
8040
|
pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8063
8041
|
pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8064
|
-
}
|
|
8042
|
+
} & {
|
|
8065
8043
|
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Graphic">;
|
|
8066
|
-
}
|
|
8044
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
8067
8045
|
id: string;
|
|
8068
8046
|
type: "http://www.ft.com/ontology/content/Graphic";
|
|
8069
8047
|
binaryUrl: string;
|
|
@@ -8141,9 +8119,8 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
8141
8119
|
maxDisplayWidth?: string | undefined;
|
|
8142
8120
|
pixelWidth?: number | undefined;
|
|
8143
8121
|
pixelHeight?: number | undefined;
|
|
8144
|
-
}>, import("zod").ZodObject<
|
|
8122
|
+
}>, import("zod").ZodObject<{
|
|
8145
8123
|
id: import("zod").ZodString;
|
|
8146
|
-
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
|
|
8147
8124
|
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">]>>;
|
|
8148
8125
|
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
8149
8126
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -8159,9 +8136,9 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
8159
8136
|
maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
|
|
8160
8137
|
pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8161
8138
|
pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8162
|
-
}
|
|
8139
|
+
} & {
|
|
8163
8140
|
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Graphic">;
|
|
8164
|
-
}
|
|
8141
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
8165
8142
|
id: string;
|
|
8166
8143
|
type: "http://www.ft.com/ontology/content/Graphic";
|
|
8167
8144
|
binaryUrl: string;
|
|
@@ -8399,9 +8376,8 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
8399
8376
|
maxDisplayWidth?: string | undefined;
|
|
8400
8377
|
pixelWidth?: number | undefined;
|
|
8401
8378
|
pixelHeight?: number | undefined;
|
|
8402
|
-
}>, import("zod").ZodObject<
|
|
8379
|
+
}>, import("zod").ZodObject<{
|
|
8403
8380
|
id: import("zod").ZodString;
|
|
8404
|
-
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
|
|
8405
8381
|
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">]>>;
|
|
8406
8382
|
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
8407
8383
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -8417,9 +8393,9 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
8417
8393
|
maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
|
|
8418
8394
|
pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8419
8395
|
pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8420
|
-
}
|
|
8396
|
+
} & {
|
|
8421
8397
|
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Graphic">;
|
|
8422
|
-
}
|
|
8398
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
8423
8399
|
id: string;
|
|
8424
8400
|
type: "http://www.ft.com/ontology/content/Graphic";
|
|
8425
8401
|
binaryUrl: string;
|
|
@@ -8596,9 +8572,8 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
8596
8572
|
maxDisplayWidth?: string | undefined;
|
|
8597
8573
|
pixelWidth?: number | undefined;
|
|
8598
8574
|
pixelHeight?: number | undefined;
|
|
8599
|
-
}>, import("zod").ZodObject<
|
|
8575
|
+
}>, import("zod").ZodObject<{
|
|
8600
8576
|
id: import("zod").ZodString;
|
|
8601
|
-
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
|
|
8602
8577
|
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">]>>;
|
|
8603
8578
|
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
8604
8579
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -8614,9 +8589,9 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
8614
8589
|
maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
|
|
8615
8590
|
pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8616
8591
|
pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8617
|
-
}
|
|
8592
|
+
} & {
|
|
8618
8593
|
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Graphic">;
|
|
8619
|
-
}
|
|
8594
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
8620
8595
|
id: string;
|
|
8621
8596
|
type: "http://www.ft.com/ontology/content/Graphic";
|
|
8622
8597
|
binaryUrl: string;
|
|
@@ -8978,9 +8953,9 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
8978
8953
|
}[] | undefined;
|
|
8979
8954
|
transcript?: string | undefined;
|
|
8980
8955
|
} | undefined;
|
|
8981
|
-
}>, import("zod").ZodObject<
|
|
8956
|
+
}>, import("zod").ZodObject<Pick<{
|
|
8982
8957
|
id: import("zod").ZodString;
|
|
8983
|
-
annotations: import("zod").ZodArray<import("zod").ZodObject<
|
|
8958
|
+
annotations: import("zod").ZodArray<import("zod").ZodObject<{
|
|
8984
8959
|
id: import("zod").ZodString;
|
|
8985
8960
|
apiUrl: import("zod").ZodString;
|
|
8986
8961
|
directType: import("zod").ZodString;
|
|
@@ -8988,9 +8963,9 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
8988
8963
|
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
8989
8964
|
types: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
8990
8965
|
headshot: import("zod").ZodOptional<import("zod").ZodString>;
|
|
8991
|
-
}
|
|
8966
|
+
} & {
|
|
8992
8967
|
predicate: import("zod").ZodString;
|
|
8993
|
-
}
|
|
8968
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
8994
8969
|
id: string;
|
|
8995
8970
|
apiUrl: string;
|
|
8996
8971
|
directType: string;
|
|
@@ -9094,7 +9069,7 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
9094
9069
|
clientName: import("zod").ZodOptional<import("zod").ZodString>;
|
|
9095
9070
|
disclaimerType: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"co-created-content">, import("zod").ZodLiteral<"client-supplied-content">, import("zod").ZodLiteral<"ft-studios-risky">, import("zod").ZodLiteral<"auditor">]>>;
|
|
9096
9071
|
internalAnalyticsTags: import("zod").ZodOptional<import("zod").ZodString>;
|
|
9097
|
-
}, "id" | "publishedDate" | "canonicalWebUrl" | "firstPublishedDate" | "publishReference" | "canBeSyndicated" | "canBeDistributed"
|
|
9072
|
+
}, "id" | "publishedDate" | "canonicalWebUrl" | "firstPublishedDate" | "publishReference" | "canBeSyndicated" | "canBeDistributed"> & Pick<{
|
|
9098
9073
|
title: import("zod").ZodString;
|
|
9099
9074
|
standfirst: import("zod").ZodOptional<import("zod").ZodString>;
|
|
9100
9075
|
byline: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -9139,13 +9114,13 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
9139
9114
|
theme: "special-report" | "extra" | "basic" | "extra-wide";
|
|
9140
9115
|
}>;
|
|
9141
9116
|
transcript: import("zod").ZodOptional<import("zod").ZodString>;
|
|
9142
|
-
}, "bodyXML"
|
|
9117
|
+
}, "bodyXML"> & {
|
|
9143
9118
|
apiUrl: import("zod").ZodString;
|
|
9144
9119
|
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/CustomCodeComponent">;
|
|
9145
9120
|
path: import("zod").ZodString;
|
|
9146
9121
|
versionRange: import("zod").ZodString;
|
|
9147
9122
|
attributes: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodBoolean, import("zod").ZodUndefined]>>;
|
|
9148
|
-
}
|
|
9123
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
9149
9124
|
id: string;
|
|
9150
9125
|
apiUrl: string;
|
|
9151
9126
|
type: "http://www.ft.com/ontology/content/CustomCodeComponent";
|
|
@@ -9190,7 +9165,7 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
9190
9165
|
mediaType: string;
|
|
9191
9166
|
filesize?: number | undefined;
|
|
9192
9167
|
}>, "many">>;
|
|
9193
|
-
}, "embeds"
|
|
9168
|
+
}, "embeds">, "strip", import("zod").ZodTypeAny, {
|
|
9194
9169
|
id: string;
|
|
9195
9170
|
apiUrl: string;
|
|
9196
9171
|
types: string[];
|
|
@@ -9470,18 +9445,10 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
9470
9445
|
publishReference?: string | undefined;
|
|
9471
9446
|
canBeDistributed?: "yes" | "no" | "verify" | undefined;
|
|
9472
9447
|
})[] | undefined;
|
|
9473
|
-
}> | import("zod").ZodObject<
|
|
9448
|
+
}> | import("zod").ZodObject<{
|
|
9474
9449
|
title: import("zod").ZodString;
|
|
9475
|
-
standfirst: import("zod").ZodOptional<import("zod").ZodString>;
|
|
9476
9450
|
byline: import("zod").ZodOptional<import("zod").ZodString>;
|
|
9477
9451
|
bodyXML: import("zod").ZodString;
|
|
9478
|
-
summary: import("zod").ZodObject<{
|
|
9479
|
-
bodyXML: import("zod").ZodString;
|
|
9480
|
-
}, "strip", import("zod").ZodTypeAny, {
|
|
9481
|
-
bodyXML: string;
|
|
9482
|
-
}, {
|
|
9483
|
-
bodyXML: string;
|
|
9484
|
-
}>;
|
|
9485
9452
|
alternativeTitles: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
9486
9453
|
promotionalTitle: import("zod").ZodString;
|
|
9487
9454
|
}, "strip", import("zod").ZodTypeAny, {
|
|
@@ -9489,14 +9456,6 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
9489
9456
|
}, {
|
|
9490
9457
|
promotionalTitle: string;
|
|
9491
9458
|
}>>;
|
|
9492
|
-
alternativeStandfirsts: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
9493
|
-
promotionalStandfirst: import("zod").ZodOptional<import("zod").ZodString>;
|
|
9494
|
-
}, "strip", import("zod").ZodTypeAny, {
|
|
9495
|
-
promotionalStandfirst?: string | undefined;
|
|
9496
|
-
}, {
|
|
9497
|
-
promotionalStandfirst?: string | undefined;
|
|
9498
|
-
}>>;
|
|
9499
|
-
pinnedPosts: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
9500
9459
|
contains: import("zod").ZodArray<import("zod").ZodObject<{
|
|
9501
9460
|
id: import("zod").ZodString;
|
|
9502
9461
|
apiUrl: import("zod").ZodString;
|
|
@@ -9514,8 +9473,7 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
9514
9473
|
}, {
|
|
9515
9474
|
theme: "special-report" | "extra" | "basic" | "extra-wide";
|
|
9516
9475
|
}>;
|
|
9517
|
-
|
|
9518
|
-
}, "title" | "byline" | "bodyXML" | "summary" | "alternativeTitles" | "contains" | "design">, {
|
|
9476
|
+
} & {
|
|
9519
9477
|
summary: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
9520
9478
|
bodyXML: import("zod").ZodString;
|
|
9521
9479
|
}, "strip", import("zod").ZodTypeAny, {
|
|
@@ -9523,9 +9481,9 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
9523
9481
|
}, {
|
|
9524
9482
|
bodyXML: string;
|
|
9525
9483
|
}>>;
|
|
9526
|
-
}
|
|
9484
|
+
} & Pick<{
|
|
9527
9485
|
id: import("zod").ZodString;
|
|
9528
|
-
annotations: import("zod").ZodArray<import("zod").ZodObject<
|
|
9486
|
+
annotations: import("zod").ZodArray<import("zod").ZodObject<{
|
|
9529
9487
|
id: import("zod").ZodString;
|
|
9530
9488
|
apiUrl: import("zod").ZodString;
|
|
9531
9489
|
directType: import("zod").ZodString;
|
|
@@ -9533,9 +9491,9 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
9533
9491
|
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
9534
9492
|
types: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
9535
9493
|
headshot: import("zod").ZodOptional<import("zod").ZodString>;
|
|
9536
|
-
}
|
|
9494
|
+
} & {
|
|
9537
9495
|
predicate: import("zod").ZodString;
|
|
9538
|
-
}
|
|
9496
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
9539
9497
|
id: string;
|
|
9540
9498
|
apiUrl: string;
|
|
9541
9499
|
directType: string;
|
|
@@ -9639,7 +9597,7 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
9639
9597
|
clientName: import("zod").ZodOptional<import("zod").ZodString>;
|
|
9640
9598
|
disclaimerType: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"co-created-content">, import("zod").ZodLiteral<"client-supplied-content">, import("zod").ZodLiteral<"ft-studios-risky">, import("zod").ZodLiteral<"auditor">]>>;
|
|
9641
9599
|
internalAnalyticsTags: import("zod").ZodOptional<import("zod").ZodString>;
|
|
9642
|
-
}, "id" | "type" | "types" | "publishedDate" | "annotations" | "webUrl" | "canonicalWebUrl" | "standout" | "firstPublishedDate" | "publishReference" | "lastModified" | "editorialDesk" | "accessLevel" | "canBeSyndicated" | "canBeDistributed" | "topper" | "comments" | "tableOfContents" | "internalAnalyticsTags"
|
|
9600
|
+
}, "id" | "type" | "types" | "publishedDate" | "annotations" | "webUrl" | "canonicalWebUrl" | "standout" | "firstPublishedDate" | "publishReference" | "lastModified" | "editorialDesk" | "accessLevel" | "canBeSyndicated" | "canBeDistributed" | "topper" | "comments" | "tableOfContents" | "internalAnalyticsTags"> & Pick<{
|
|
9643
9601
|
mainImage: import("zod").ZodOptional<import("zod").ZodDiscriminatedUnion<"type", [import("zod").ZodObject<{
|
|
9644
9602
|
id: import("zod").ZodString;
|
|
9645
9603
|
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/ImageSet">;
|
|
@@ -9690,9 +9648,8 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
9690
9648
|
maxDisplayWidth?: string | undefined;
|
|
9691
9649
|
pixelWidth?: number | undefined;
|
|
9692
9650
|
pixelHeight?: number | undefined;
|
|
9693
|
-
}>, import("zod").ZodObject<
|
|
9651
|
+
}>, import("zod").ZodObject<{
|
|
9694
9652
|
id: import("zod").ZodString;
|
|
9695
|
-
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
|
|
9696
9653
|
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">]>>;
|
|
9697
9654
|
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
9698
9655
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -9708,9 +9665,9 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
9708
9665
|
maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
|
|
9709
9666
|
pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
9710
9667
|
pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
9711
|
-
}
|
|
9668
|
+
} & {
|
|
9712
9669
|
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Graphic">;
|
|
9713
|
-
}
|
|
9670
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
9714
9671
|
id: string;
|
|
9715
9672
|
type: "http://www.ft.com/ontology/content/Graphic";
|
|
9716
9673
|
binaryUrl: string;
|
|
@@ -9851,9 +9808,8 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
9851
9808
|
maxDisplayWidth?: string | undefined;
|
|
9852
9809
|
pixelWidth?: number | undefined;
|
|
9853
9810
|
pixelHeight?: number | undefined;
|
|
9854
|
-
}>, import("zod").ZodObject<
|
|
9811
|
+
}>, import("zod").ZodObject<{
|
|
9855
9812
|
id: import("zod").ZodString;
|
|
9856
|
-
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
|
|
9857
9813
|
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">]>>;
|
|
9858
9814
|
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
9859
9815
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -9869,9 +9825,9 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
9869
9825
|
maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
|
|
9870
9826
|
pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
9871
9827
|
pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
9872
|
-
}
|
|
9828
|
+
} & {
|
|
9873
9829
|
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Graphic">;
|
|
9874
|
-
}
|
|
9830
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
9875
9831
|
id: string;
|
|
9876
9832
|
type: "http://www.ft.com/ontology/content/Graphic";
|
|
9877
9833
|
binaryUrl: string;
|
|
@@ -9949,9 +9905,8 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
9949
9905
|
maxDisplayWidth?: string | undefined;
|
|
9950
9906
|
pixelWidth?: number | undefined;
|
|
9951
9907
|
pixelHeight?: number | undefined;
|
|
9952
|
-
}>, import("zod").ZodObject<
|
|
9908
|
+
}>, import("zod").ZodObject<{
|
|
9953
9909
|
id: import("zod").ZodString;
|
|
9954
|
-
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
|
|
9955
9910
|
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">]>>;
|
|
9956
9911
|
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
9957
9912
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -9967,9 +9922,9 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
9967
9922
|
maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
|
|
9968
9923
|
pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
9969
9924
|
pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
9970
|
-
}
|
|
9925
|
+
} & {
|
|
9971
9926
|
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Graphic">;
|
|
9972
|
-
}
|
|
9927
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
9973
9928
|
id: string;
|
|
9974
9929
|
type: "http://www.ft.com/ontology/content/Graphic";
|
|
9975
9930
|
binaryUrl: string;
|
|
@@ -10207,9 +10162,8 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
10207
10162
|
maxDisplayWidth?: string | undefined;
|
|
10208
10163
|
pixelWidth?: number | undefined;
|
|
10209
10164
|
pixelHeight?: number | undefined;
|
|
10210
|
-
}>, import("zod").ZodObject<
|
|
10165
|
+
}>, import("zod").ZodObject<{
|
|
10211
10166
|
id: import("zod").ZodString;
|
|
10212
|
-
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
|
|
10213
10167
|
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">]>>;
|
|
10214
10168
|
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10215
10169
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -10225,9 +10179,9 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
10225
10179
|
maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10226
10180
|
pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
10227
10181
|
pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
10228
|
-
}
|
|
10182
|
+
} & {
|
|
10229
10183
|
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Graphic">;
|
|
10230
|
-
}
|
|
10184
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
10231
10185
|
id: string;
|
|
10232
10186
|
type: "http://www.ft.com/ontology/content/Graphic";
|
|
10233
10187
|
binaryUrl: string;
|
|
@@ -10404,9 +10358,8 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
10404
10358
|
maxDisplayWidth?: string | undefined;
|
|
10405
10359
|
pixelWidth?: number | undefined;
|
|
10406
10360
|
pixelHeight?: number | undefined;
|
|
10407
|
-
}>, import("zod").ZodObject<
|
|
10361
|
+
}>, import("zod").ZodObject<{
|
|
10408
10362
|
id: import("zod").ZodString;
|
|
10409
|
-
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
|
|
10410
10363
|
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">]>>;
|
|
10411
10364
|
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10412
10365
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -10422,9 +10375,9 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
10422
10375
|
maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10423
10376
|
pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
10424
10377
|
pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
10425
|
-
}
|
|
10378
|
+
} & {
|
|
10426
10379
|
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Graphic">;
|
|
10427
|
-
}
|
|
10380
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
10428
10381
|
id: string;
|
|
10429
10382
|
type: "http://www.ft.com/ontology/content/Graphic";
|
|
10430
10383
|
binaryUrl: string;
|
|
@@ -10786,9 +10739,9 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
10786
10739
|
}[] | undefined;
|
|
10787
10740
|
transcript?: string | undefined;
|
|
10788
10741
|
} | undefined;
|
|
10789
|
-
}>, import("zod").ZodObject<
|
|
10742
|
+
}>, import("zod").ZodObject<Pick<{
|
|
10790
10743
|
id: import("zod").ZodString;
|
|
10791
|
-
annotations: import("zod").ZodArray<import("zod").ZodObject<
|
|
10744
|
+
annotations: import("zod").ZodArray<import("zod").ZodObject<{
|
|
10792
10745
|
id: import("zod").ZodString;
|
|
10793
10746
|
apiUrl: import("zod").ZodString;
|
|
10794
10747
|
directType: import("zod").ZodString;
|
|
@@ -10796,9 +10749,9 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
10796
10749
|
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10797
10750
|
types: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
10798
10751
|
headshot: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10799
|
-
}
|
|
10752
|
+
} & {
|
|
10800
10753
|
predicate: import("zod").ZodString;
|
|
10801
|
-
}
|
|
10754
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
10802
10755
|
id: string;
|
|
10803
10756
|
apiUrl: string;
|
|
10804
10757
|
directType: string;
|
|
@@ -10902,7 +10855,7 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
10902
10855
|
clientName: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10903
10856
|
disclaimerType: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"co-created-content">, import("zod").ZodLiteral<"client-supplied-content">, import("zod").ZodLiteral<"ft-studios-risky">, import("zod").ZodLiteral<"auditor">]>>;
|
|
10904
10857
|
internalAnalyticsTags: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10905
|
-
}, "id" | "publishedDate" | "canonicalWebUrl" | "firstPublishedDate" | "publishReference" | "canBeSyndicated" | "canBeDistributed"
|
|
10858
|
+
}, "id" | "publishedDate" | "canonicalWebUrl" | "firstPublishedDate" | "publishReference" | "canBeSyndicated" | "canBeDistributed"> & Pick<{
|
|
10906
10859
|
title: import("zod").ZodString;
|
|
10907
10860
|
standfirst: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10908
10861
|
byline: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -10947,13 +10900,13 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
10947
10900
|
theme: "special-report" | "extra" | "basic" | "extra-wide";
|
|
10948
10901
|
}>;
|
|
10949
10902
|
transcript: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10950
|
-
}, "bodyXML"
|
|
10903
|
+
}, "bodyXML"> & {
|
|
10951
10904
|
apiUrl: import("zod").ZodString;
|
|
10952
10905
|
type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/CustomCodeComponent">;
|
|
10953
10906
|
path: import("zod").ZodString;
|
|
10954
10907
|
versionRange: import("zod").ZodString;
|
|
10955
10908
|
attributes: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodBoolean, import("zod").ZodUndefined]>>;
|
|
10956
|
-
}
|
|
10909
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
10957
10910
|
id: string;
|
|
10958
10911
|
apiUrl: string;
|
|
10959
10912
|
type: "http://www.ft.com/ontology/content/CustomCodeComponent";
|
|
@@ -10998,7 +10951,7 @@ export declare const schemas: (contentType: LiteralUnionScalarValues<typeof Cont
|
|
|
10998
10951
|
mediaType: string;
|
|
10999
10952
|
filesize?: number | undefined;
|
|
11000
10953
|
}>, "many">>;
|
|
11001
|
-
}, "mainImage" | "leadImages" | "leadFlourish"
|
|
10954
|
+
}, "mainImage" | "leadImages" | "leadFlourish">, "strip", import("zod").ZodTypeAny, {
|
|
11002
10955
|
id: string;
|
|
11003
10956
|
types: string[];
|
|
11004
10957
|
title: string;
|