@financial-times/cp-content-pipeline-schema 1.4.4 → 1.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (67) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/lib/fixtures/capiObject.js +1 -1
  3. package/lib/fixtures/capiObject.js.map +1 -1
  4. package/lib/fixtures/clipSet.d.ts +2 -0
  5. package/lib/fixtures/clipSet.js +70 -0
  6. package/lib/fixtures/clipSet.js.map +1 -0
  7. package/lib/generated/index.d.ts +120 -3
  8. package/lib/model/CapiResponse.d.ts +2 -2
  9. package/lib/model/CapiResponse.js +1 -1
  10. package/lib/model/CapiResponse.js.map +1 -1
  11. package/lib/model/Clip.d.ts +28 -0
  12. package/lib/model/Clip.js +51 -0
  13. package/lib/model/Clip.js.map +1 -0
  14. package/lib/model/schemas/capi/article.d.ts +602 -9
  15. package/lib/model/schemas/capi/audio.d.ts +31 -31
  16. package/lib/model/schemas/capi/base-schema.d.ts +1355 -14
  17. package/lib/model/schemas/capi/base-schema.js +41 -2
  18. package/lib/model/schemas/capi/base-schema.js.map +1 -1
  19. package/lib/model/schemas/capi/content-package.d.ts +3 -3
  20. package/lib/model/schemas/capi/live-blog-package.d.ts +602 -9
  21. package/lib/model/schemas/capi/placeholder.d.ts +602 -9
  22. package/lib/resolvers/clip.d.ts +10 -0
  23. package/lib/resolvers/clip.js +13 -0
  24. package/lib/resolvers/clip.js.map +1 -0
  25. package/lib/resolvers/content-tree/Workarounds.d.ts +10 -2
  26. package/lib/resolvers/content-tree/nodePredicates.d.ts +3 -3
  27. package/lib/resolvers/content-tree/references/ClipSet.d.ts +27 -0
  28. package/lib/resolvers/content-tree/references/ClipSet.js +43 -0
  29. package/lib/resolvers/content-tree/references/ClipSet.js.map +1 -0
  30. package/lib/resolvers/content-tree/references/ImageSet.js +3 -2
  31. package/lib/resolvers/content-tree/references/ImageSet.js.map +1 -1
  32. package/lib/resolvers/content-tree/references/Reference.d.ts +1 -1
  33. package/lib/resolvers/content-tree/references/ScrollyImage.js +3 -2
  34. package/lib/resolvers/content-tree/references/ScrollyImage.js.map +1 -1
  35. package/lib/resolvers/content-tree/references/index.d.ts +4 -1
  36. package/lib/resolvers/content-tree/references/index.js +4 -0
  37. package/lib/resolvers/content-tree/references/index.js.map +1 -1
  38. package/lib/resolvers/content-tree/tagMappings.js +9 -0
  39. package/lib/resolvers/content-tree/tagMappings.js.map +1 -1
  40. package/lib/resolvers/index.d.ts +9 -0
  41. package/lib/resolvers/index.js +2 -0
  42. package/lib/resolvers/index.js.map +1 -1
  43. package/lib/resolvers/scalars.d.ts +2 -0
  44. package/lib/resolvers/scalars.js +6 -1
  45. package/lib/resolvers/scalars.js.map +1 -1
  46. package/package.json +1 -1
  47. package/src/fixtures/capiObject.ts +1 -1
  48. package/src/fixtures/clipSet.ts +72 -0
  49. package/src/generated/index.ts +128 -3
  50. package/src/model/CapiResponse.ts +3 -2
  51. package/src/model/Clip.ts +75 -0
  52. package/src/model/__snapshots__/RichText.test.ts.snap +25 -0
  53. package/src/model/schemas/capi/base-schema.ts +45 -1
  54. package/src/resolvers/clip.ts +13 -0
  55. package/src/resolvers/content-tree/Workarounds.ts +13 -2
  56. package/src/resolvers/content-tree/references/ClipSet.ts +64 -0
  57. package/src/resolvers/content-tree/references/ImageSet.ts +9 -5
  58. package/src/resolvers/content-tree/references/ScrollyImage.ts +9 -5
  59. package/src/resolvers/content-tree/references/index.ts +6 -0
  60. package/src/resolvers/content-tree/tagMappings.ts +10 -0
  61. package/src/resolvers/index.ts +2 -0
  62. package/src/resolvers/scalars.ts +8 -0
  63. package/src/types/internal-content.d.ts +4 -0
  64. package/tsconfig.tsbuildinfo +1 -1
  65. package/typedefs/clip.graphql +28 -0
  66. package/typedefs/references/clipSet.graphql +19 -0
  67. package/typedefs/scalars.graphql +1 -0
@@ -804,6 +804,754 @@ export declare const AlternativeImage: z.ZodObject<{
804
804
  pixelHeight?: number | undefined;
805
805
  };
806
806
  }>;
807
+ export declare const Clip: z.ZodObject<{
808
+ id: z.ZodString;
809
+ type: z.ZodLiteral<"http://www.ft.com/ontology/content/Clip">;
810
+ format: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"standardInline">, z.ZodLiteral<"mobile">]>>;
811
+ dataSource: z.ZodArray<z.ZodObject<{
812
+ audioCodec: z.ZodOptional<z.ZodString>;
813
+ binaryUrl: z.ZodOptional<z.ZodString>;
814
+ duration: z.ZodOptional<z.ZodNumber>;
815
+ mediaType: z.ZodOptional<z.ZodString>;
816
+ pixelHeight: z.ZodOptional<z.ZodNumber>;
817
+ pixelWidth: z.ZodOptional<z.ZodNumber>;
818
+ videoCodec: z.ZodOptional<z.ZodString>;
819
+ }, "strip", z.ZodTypeAny, {
820
+ audioCodec?: string | undefined;
821
+ binaryUrl?: string | undefined;
822
+ duration?: number | undefined;
823
+ mediaType?: string | undefined;
824
+ pixelHeight?: number | undefined;
825
+ pixelWidth?: number | undefined;
826
+ videoCodec?: string | undefined;
827
+ }, {
828
+ audioCodec?: string | undefined;
829
+ binaryUrl?: string | undefined;
830
+ duration?: number | undefined;
831
+ mediaType?: string | undefined;
832
+ pixelHeight?: number | undefined;
833
+ pixelWidth?: number | undefined;
834
+ videoCodec?: string | undefined;
835
+ }>, "many">;
836
+ poster: z.ZodOptional<z.ZodObject<{
837
+ id: z.ZodString;
838
+ type: z.ZodLiteral<"http://www.ft.com/ontology/content/ImageSet">;
839
+ description: z.ZodOptional<z.ZodString>;
840
+ members: z.ZodArray<z.ZodUnion<[z.ZodObject<{
841
+ id: z.ZodString;
842
+ type: z.ZodLiteral<"http://www.ft.com/ontology/content/Image">;
843
+ format: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"standardInline">, z.ZodLiteral<"mobile">, z.ZodLiteral<"desktop">, z.ZodLiteral<"standard">, z.ZodLiteral<"square">, z.ZodLiteral<"ftEditSquare">, z.ZodLiteral<"wide">, z.ZodLiteral<"portrait">, z.ZodLiteral<"landscape">]>>;
844
+ title: z.ZodOptional<z.ZodString>;
845
+ description: z.ZodOptional<z.ZodString>;
846
+ binaryUrl: z.ZodString;
847
+ copyright: z.ZodOptional<z.ZodObject<{
848
+ notice: z.ZodString;
849
+ }, "strip", z.ZodTypeAny, {
850
+ notice: string;
851
+ }, {
852
+ notice: string;
853
+ }>>;
854
+ minDisplayWidth: z.ZodOptional<z.ZodString>;
855
+ maxDisplayWidth: z.ZodOptional<z.ZodString>;
856
+ pixelWidth: z.ZodOptional<z.ZodNumber>;
857
+ pixelHeight: z.ZodOptional<z.ZodNumber>;
858
+ }, "strip", z.ZodTypeAny, {
859
+ id: string;
860
+ type: "http://www.ft.com/ontology/content/Image";
861
+ binaryUrl: string;
862
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
863
+ title?: string | undefined;
864
+ description?: string | undefined;
865
+ copyright?: {
866
+ notice: string;
867
+ } | undefined;
868
+ minDisplayWidth?: string | undefined;
869
+ maxDisplayWidth?: string | undefined;
870
+ pixelWidth?: number | undefined;
871
+ pixelHeight?: number | undefined;
872
+ }, {
873
+ id: string;
874
+ type: "http://www.ft.com/ontology/content/Image";
875
+ binaryUrl: string;
876
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
877
+ title?: string | undefined;
878
+ description?: string | undefined;
879
+ copyright?: {
880
+ notice: string;
881
+ } | undefined;
882
+ minDisplayWidth?: string | undefined;
883
+ maxDisplayWidth?: string | undefined;
884
+ pixelWidth?: number | undefined;
885
+ pixelHeight?: number | undefined;
886
+ }>, z.ZodObject<{
887
+ id: z.ZodString;
888
+ format: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"standardInline">, z.ZodLiteral<"mobile">, z.ZodLiteral<"desktop">, z.ZodLiteral<"standard">, z.ZodLiteral<"square">, z.ZodLiteral<"ftEditSquare">, z.ZodLiteral<"wide">, z.ZodLiteral<"portrait">, z.ZodLiteral<"landscape">]>>;
889
+ title: z.ZodOptional<z.ZodString>;
890
+ description: z.ZodOptional<z.ZodString>;
891
+ binaryUrl: z.ZodString;
892
+ copyright: z.ZodOptional<z.ZodObject<{
893
+ notice: z.ZodString;
894
+ }, "strip", z.ZodTypeAny, {
895
+ notice: string;
896
+ }, {
897
+ notice: string;
898
+ }>>;
899
+ minDisplayWidth: z.ZodOptional<z.ZodString>;
900
+ maxDisplayWidth: z.ZodOptional<z.ZodString>;
901
+ pixelWidth: z.ZodOptional<z.ZodNumber>;
902
+ pixelHeight: z.ZodOptional<z.ZodNumber>;
903
+ type: z.ZodLiteral<"http://www.ft.com/ontology/content/Graphic">;
904
+ }, "strip", z.ZodTypeAny, {
905
+ id: string;
906
+ type: "http://www.ft.com/ontology/content/Graphic";
907
+ binaryUrl: string;
908
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
909
+ title?: string | undefined;
910
+ description?: string | undefined;
911
+ copyright?: {
912
+ notice: string;
913
+ } | undefined;
914
+ minDisplayWidth?: string | undefined;
915
+ maxDisplayWidth?: string | undefined;
916
+ pixelWidth?: number | undefined;
917
+ pixelHeight?: number | undefined;
918
+ }, {
919
+ id: string;
920
+ type: "http://www.ft.com/ontology/content/Graphic";
921
+ binaryUrl: string;
922
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
923
+ title?: string | undefined;
924
+ description?: string | undefined;
925
+ copyright?: {
926
+ notice: string;
927
+ } | undefined;
928
+ minDisplayWidth?: string | undefined;
929
+ maxDisplayWidth?: string | undefined;
930
+ pixelWidth?: number | undefined;
931
+ pixelHeight?: number | undefined;
932
+ }>]>, "many">;
933
+ }, "strip", z.ZodTypeAny, {
934
+ id: string;
935
+ type: "http://www.ft.com/ontology/content/ImageSet";
936
+ members: ({
937
+ id: string;
938
+ type: "http://www.ft.com/ontology/content/Image";
939
+ binaryUrl: string;
940
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
941
+ title?: string | undefined;
942
+ description?: string | undefined;
943
+ copyright?: {
944
+ notice: string;
945
+ } | undefined;
946
+ minDisplayWidth?: string | undefined;
947
+ maxDisplayWidth?: string | undefined;
948
+ pixelWidth?: number | undefined;
949
+ pixelHeight?: number | undefined;
950
+ } | {
951
+ id: string;
952
+ type: "http://www.ft.com/ontology/content/Graphic";
953
+ binaryUrl: string;
954
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
955
+ title?: string | undefined;
956
+ description?: string | undefined;
957
+ copyright?: {
958
+ notice: string;
959
+ } | undefined;
960
+ minDisplayWidth?: string | undefined;
961
+ maxDisplayWidth?: string | undefined;
962
+ pixelWidth?: number | undefined;
963
+ pixelHeight?: number | undefined;
964
+ })[];
965
+ description?: string | undefined;
966
+ }, {
967
+ id: string;
968
+ type: "http://www.ft.com/ontology/content/ImageSet";
969
+ members: ({
970
+ id: string;
971
+ type: "http://www.ft.com/ontology/content/Image";
972
+ binaryUrl: string;
973
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
974
+ title?: string | undefined;
975
+ description?: string | undefined;
976
+ copyright?: {
977
+ notice: string;
978
+ } | undefined;
979
+ minDisplayWidth?: string | undefined;
980
+ maxDisplayWidth?: string | undefined;
981
+ pixelWidth?: number | undefined;
982
+ pixelHeight?: number | undefined;
983
+ } | {
984
+ id: string;
985
+ type: "http://www.ft.com/ontology/content/Graphic";
986
+ binaryUrl: string;
987
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
988
+ title?: string | undefined;
989
+ description?: string | undefined;
990
+ copyright?: {
991
+ notice: string;
992
+ } | undefined;
993
+ minDisplayWidth?: string | undefined;
994
+ maxDisplayWidth?: string | undefined;
995
+ pixelWidth?: number | undefined;
996
+ pixelHeight?: number | undefined;
997
+ })[];
998
+ description?: string | undefined;
999
+ }>>;
1000
+ }, "strip", z.ZodTypeAny, {
1001
+ id: string;
1002
+ type: "http://www.ft.com/ontology/content/Clip";
1003
+ dataSource: {
1004
+ audioCodec?: string | undefined;
1005
+ binaryUrl?: string | undefined;
1006
+ duration?: number | undefined;
1007
+ mediaType?: string | undefined;
1008
+ pixelHeight?: number | undefined;
1009
+ pixelWidth?: number | undefined;
1010
+ videoCodec?: string | undefined;
1011
+ }[];
1012
+ format?: "standardInline" | "mobile" | undefined;
1013
+ poster?: {
1014
+ id: string;
1015
+ type: "http://www.ft.com/ontology/content/ImageSet";
1016
+ members: ({
1017
+ id: string;
1018
+ type: "http://www.ft.com/ontology/content/Image";
1019
+ binaryUrl: string;
1020
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
1021
+ title?: string | undefined;
1022
+ description?: string | undefined;
1023
+ copyright?: {
1024
+ notice: string;
1025
+ } | undefined;
1026
+ minDisplayWidth?: string | undefined;
1027
+ maxDisplayWidth?: string | undefined;
1028
+ pixelWidth?: number | undefined;
1029
+ pixelHeight?: number | undefined;
1030
+ } | {
1031
+ id: string;
1032
+ type: "http://www.ft.com/ontology/content/Graphic";
1033
+ binaryUrl: string;
1034
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
1035
+ title?: string | undefined;
1036
+ description?: string | undefined;
1037
+ copyright?: {
1038
+ notice: string;
1039
+ } | undefined;
1040
+ minDisplayWidth?: string | undefined;
1041
+ maxDisplayWidth?: string | undefined;
1042
+ pixelWidth?: number | undefined;
1043
+ pixelHeight?: number | undefined;
1044
+ })[];
1045
+ description?: string | undefined;
1046
+ } | undefined;
1047
+ }, {
1048
+ id: string;
1049
+ type: "http://www.ft.com/ontology/content/Clip";
1050
+ dataSource: {
1051
+ audioCodec?: string | undefined;
1052
+ binaryUrl?: string | undefined;
1053
+ duration?: number | undefined;
1054
+ mediaType?: string | undefined;
1055
+ pixelHeight?: number | undefined;
1056
+ pixelWidth?: number | undefined;
1057
+ videoCodec?: string | undefined;
1058
+ }[];
1059
+ format?: "standardInline" | "mobile" | undefined;
1060
+ poster?: {
1061
+ id: string;
1062
+ type: "http://www.ft.com/ontology/content/ImageSet";
1063
+ members: ({
1064
+ id: string;
1065
+ type: "http://www.ft.com/ontology/content/Image";
1066
+ binaryUrl: string;
1067
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
1068
+ title?: string | undefined;
1069
+ description?: string | undefined;
1070
+ copyright?: {
1071
+ notice: string;
1072
+ } | undefined;
1073
+ minDisplayWidth?: string | undefined;
1074
+ maxDisplayWidth?: string | undefined;
1075
+ pixelWidth?: number | undefined;
1076
+ pixelHeight?: number | undefined;
1077
+ } | {
1078
+ id: string;
1079
+ type: "http://www.ft.com/ontology/content/Graphic";
1080
+ binaryUrl: string;
1081
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
1082
+ title?: string | undefined;
1083
+ description?: string | undefined;
1084
+ copyright?: {
1085
+ notice: string;
1086
+ } | undefined;
1087
+ minDisplayWidth?: string | undefined;
1088
+ maxDisplayWidth?: string | undefined;
1089
+ pixelWidth?: number | undefined;
1090
+ pixelHeight?: number | undefined;
1091
+ })[];
1092
+ description?: string | undefined;
1093
+ } | undefined;
1094
+ }>;
1095
+ export declare const ClipSet: z.ZodObject<{
1096
+ id: z.ZodString;
1097
+ type: z.ZodLiteral<"http://www.ft.com/ontology/content/ClipSet">;
1098
+ members: z.ZodArray<z.ZodObject<{
1099
+ id: z.ZodString;
1100
+ type: z.ZodLiteral<"http://www.ft.com/ontology/content/Clip">;
1101
+ format: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"standardInline">, z.ZodLiteral<"mobile">]>>;
1102
+ dataSource: z.ZodArray<z.ZodObject<{
1103
+ audioCodec: z.ZodOptional<z.ZodString>;
1104
+ binaryUrl: z.ZodOptional<z.ZodString>;
1105
+ duration: z.ZodOptional<z.ZodNumber>;
1106
+ mediaType: z.ZodOptional<z.ZodString>;
1107
+ pixelHeight: z.ZodOptional<z.ZodNumber>;
1108
+ pixelWidth: z.ZodOptional<z.ZodNumber>;
1109
+ videoCodec: z.ZodOptional<z.ZodString>;
1110
+ }, "strip", z.ZodTypeAny, {
1111
+ audioCodec?: string | undefined;
1112
+ binaryUrl?: string | undefined;
1113
+ duration?: number | undefined;
1114
+ mediaType?: string | undefined;
1115
+ pixelHeight?: number | undefined;
1116
+ pixelWidth?: number | undefined;
1117
+ videoCodec?: string | undefined;
1118
+ }, {
1119
+ audioCodec?: string | undefined;
1120
+ binaryUrl?: string | undefined;
1121
+ duration?: number | undefined;
1122
+ mediaType?: string | undefined;
1123
+ pixelHeight?: number | undefined;
1124
+ pixelWidth?: number | undefined;
1125
+ videoCodec?: string | undefined;
1126
+ }>, "many">;
1127
+ poster: z.ZodOptional<z.ZodObject<{
1128
+ id: z.ZodString;
1129
+ type: z.ZodLiteral<"http://www.ft.com/ontology/content/ImageSet">;
1130
+ description: z.ZodOptional<z.ZodString>;
1131
+ members: z.ZodArray<z.ZodUnion<[z.ZodObject<{
1132
+ id: z.ZodString;
1133
+ type: z.ZodLiteral<"http://www.ft.com/ontology/content/Image">;
1134
+ format: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"standardInline">, z.ZodLiteral<"mobile">, z.ZodLiteral<"desktop">, z.ZodLiteral<"standard">, z.ZodLiteral<"square">, z.ZodLiteral<"ftEditSquare">, z.ZodLiteral<"wide">, z.ZodLiteral<"portrait">, z.ZodLiteral<"landscape">]>>;
1135
+ title: z.ZodOptional<z.ZodString>;
1136
+ description: z.ZodOptional<z.ZodString>;
1137
+ binaryUrl: z.ZodString;
1138
+ copyright: z.ZodOptional<z.ZodObject<{
1139
+ notice: z.ZodString;
1140
+ }, "strip", z.ZodTypeAny, {
1141
+ notice: string;
1142
+ }, {
1143
+ notice: string;
1144
+ }>>;
1145
+ minDisplayWidth: z.ZodOptional<z.ZodString>;
1146
+ maxDisplayWidth: z.ZodOptional<z.ZodString>;
1147
+ pixelWidth: z.ZodOptional<z.ZodNumber>;
1148
+ pixelHeight: z.ZodOptional<z.ZodNumber>;
1149
+ }, "strip", z.ZodTypeAny, {
1150
+ id: string;
1151
+ type: "http://www.ft.com/ontology/content/Image";
1152
+ binaryUrl: string;
1153
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
1154
+ title?: string | undefined;
1155
+ description?: string | undefined;
1156
+ copyright?: {
1157
+ notice: string;
1158
+ } | undefined;
1159
+ minDisplayWidth?: string | undefined;
1160
+ maxDisplayWidth?: string | undefined;
1161
+ pixelWidth?: number | undefined;
1162
+ pixelHeight?: number | undefined;
1163
+ }, {
1164
+ id: string;
1165
+ type: "http://www.ft.com/ontology/content/Image";
1166
+ binaryUrl: string;
1167
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
1168
+ title?: string | undefined;
1169
+ description?: string | undefined;
1170
+ copyright?: {
1171
+ notice: string;
1172
+ } | undefined;
1173
+ minDisplayWidth?: string | undefined;
1174
+ maxDisplayWidth?: string | undefined;
1175
+ pixelWidth?: number | undefined;
1176
+ pixelHeight?: number | undefined;
1177
+ }>, z.ZodObject<{
1178
+ id: z.ZodString;
1179
+ format: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"standardInline">, z.ZodLiteral<"mobile">, z.ZodLiteral<"desktop">, z.ZodLiteral<"standard">, z.ZodLiteral<"square">, z.ZodLiteral<"ftEditSquare">, z.ZodLiteral<"wide">, z.ZodLiteral<"portrait">, z.ZodLiteral<"landscape">]>>;
1180
+ title: z.ZodOptional<z.ZodString>;
1181
+ description: z.ZodOptional<z.ZodString>;
1182
+ binaryUrl: z.ZodString;
1183
+ copyright: z.ZodOptional<z.ZodObject<{
1184
+ notice: z.ZodString;
1185
+ }, "strip", z.ZodTypeAny, {
1186
+ notice: string;
1187
+ }, {
1188
+ notice: string;
1189
+ }>>;
1190
+ minDisplayWidth: z.ZodOptional<z.ZodString>;
1191
+ maxDisplayWidth: z.ZodOptional<z.ZodString>;
1192
+ pixelWidth: z.ZodOptional<z.ZodNumber>;
1193
+ pixelHeight: z.ZodOptional<z.ZodNumber>;
1194
+ type: z.ZodLiteral<"http://www.ft.com/ontology/content/Graphic">;
1195
+ }, "strip", z.ZodTypeAny, {
1196
+ id: string;
1197
+ type: "http://www.ft.com/ontology/content/Graphic";
1198
+ binaryUrl: string;
1199
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
1200
+ title?: string | undefined;
1201
+ description?: string | undefined;
1202
+ copyright?: {
1203
+ notice: string;
1204
+ } | undefined;
1205
+ minDisplayWidth?: string | undefined;
1206
+ maxDisplayWidth?: string | undefined;
1207
+ pixelWidth?: number | undefined;
1208
+ pixelHeight?: number | undefined;
1209
+ }, {
1210
+ id: string;
1211
+ type: "http://www.ft.com/ontology/content/Graphic";
1212
+ binaryUrl: string;
1213
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
1214
+ title?: string | undefined;
1215
+ description?: string | undefined;
1216
+ copyright?: {
1217
+ notice: string;
1218
+ } | undefined;
1219
+ minDisplayWidth?: string | undefined;
1220
+ maxDisplayWidth?: string | undefined;
1221
+ pixelWidth?: number | undefined;
1222
+ pixelHeight?: number | undefined;
1223
+ }>]>, "many">;
1224
+ }, "strip", z.ZodTypeAny, {
1225
+ id: string;
1226
+ type: "http://www.ft.com/ontology/content/ImageSet";
1227
+ members: ({
1228
+ id: string;
1229
+ type: "http://www.ft.com/ontology/content/Image";
1230
+ binaryUrl: string;
1231
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
1232
+ title?: string | undefined;
1233
+ description?: string | undefined;
1234
+ copyright?: {
1235
+ notice: string;
1236
+ } | undefined;
1237
+ minDisplayWidth?: string | undefined;
1238
+ maxDisplayWidth?: string | undefined;
1239
+ pixelWidth?: number | undefined;
1240
+ pixelHeight?: number | undefined;
1241
+ } | {
1242
+ id: string;
1243
+ type: "http://www.ft.com/ontology/content/Graphic";
1244
+ binaryUrl: string;
1245
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
1246
+ title?: string | undefined;
1247
+ description?: string | undefined;
1248
+ copyright?: {
1249
+ notice: string;
1250
+ } | undefined;
1251
+ minDisplayWidth?: string | undefined;
1252
+ maxDisplayWidth?: string | undefined;
1253
+ pixelWidth?: number | undefined;
1254
+ pixelHeight?: number | undefined;
1255
+ })[];
1256
+ description?: string | undefined;
1257
+ }, {
1258
+ id: string;
1259
+ type: "http://www.ft.com/ontology/content/ImageSet";
1260
+ members: ({
1261
+ id: string;
1262
+ type: "http://www.ft.com/ontology/content/Image";
1263
+ binaryUrl: string;
1264
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
1265
+ title?: string | undefined;
1266
+ description?: string | undefined;
1267
+ copyright?: {
1268
+ notice: string;
1269
+ } | undefined;
1270
+ minDisplayWidth?: string | undefined;
1271
+ maxDisplayWidth?: string | undefined;
1272
+ pixelWidth?: number | undefined;
1273
+ pixelHeight?: number | undefined;
1274
+ } | {
1275
+ id: string;
1276
+ type: "http://www.ft.com/ontology/content/Graphic";
1277
+ binaryUrl: string;
1278
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
1279
+ title?: string | undefined;
1280
+ description?: string | undefined;
1281
+ copyright?: {
1282
+ notice: string;
1283
+ } | undefined;
1284
+ minDisplayWidth?: string | undefined;
1285
+ maxDisplayWidth?: string | undefined;
1286
+ pixelWidth?: number | undefined;
1287
+ pixelHeight?: number | undefined;
1288
+ })[];
1289
+ description?: string | undefined;
1290
+ }>>;
1291
+ }, "strip", z.ZodTypeAny, {
1292
+ id: string;
1293
+ type: "http://www.ft.com/ontology/content/Clip";
1294
+ dataSource: {
1295
+ audioCodec?: string | undefined;
1296
+ binaryUrl?: string | undefined;
1297
+ duration?: number | undefined;
1298
+ mediaType?: string | undefined;
1299
+ pixelHeight?: number | undefined;
1300
+ pixelWidth?: number | undefined;
1301
+ videoCodec?: string | undefined;
1302
+ }[];
1303
+ format?: "standardInline" | "mobile" | undefined;
1304
+ poster?: {
1305
+ id: string;
1306
+ type: "http://www.ft.com/ontology/content/ImageSet";
1307
+ members: ({
1308
+ id: string;
1309
+ type: "http://www.ft.com/ontology/content/Image";
1310
+ binaryUrl: string;
1311
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
1312
+ title?: string | undefined;
1313
+ description?: string | undefined;
1314
+ copyright?: {
1315
+ notice: string;
1316
+ } | undefined;
1317
+ minDisplayWidth?: string | undefined;
1318
+ maxDisplayWidth?: string | undefined;
1319
+ pixelWidth?: number | undefined;
1320
+ pixelHeight?: number | undefined;
1321
+ } | {
1322
+ id: string;
1323
+ type: "http://www.ft.com/ontology/content/Graphic";
1324
+ binaryUrl: string;
1325
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
1326
+ title?: string | undefined;
1327
+ description?: string | undefined;
1328
+ copyright?: {
1329
+ notice: string;
1330
+ } | undefined;
1331
+ minDisplayWidth?: string | undefined;
1332
+ maxDisplayWidth?: string | undefined;
1333
+ pixelWidth?: number | undefined;
1334
+ pixelHeight?: number | undefined;
1335
+ })[];
1336
+ description?: string | undefined;
1337
+ } | undefined;
1338
+ }, {
1339
+ id: string;
1340
+ type: "http://www.ft.com/ontology/content/Clip";
1341
+ dataSource: {
1342
+ audioCodec?: string | undefined;
1343
+ binaryUrl?: string | undefined;
1344
+ duration?: number | undefined;
1345
+ mediaType?: string | undefined;
1346
+ pixelHeight?: number | undefined;
1347
+ pixelWidth?: number | undefined;
1348
+ videoCodec?: string | undefined;
1349
+ }[];
1350
+ format?: "standardInline" | "mobile" | undefined;
1351
+ poster?: {
1352
+ id: string;
1353
+ type: "http://www.ft.com/ontology/content/ImageSet";
1354
+ members: ({
1355
+ id: string;
1356
+ type: "http://www.ft.com/ontology/content/Image";
1357
+ binaryUrl: string;
1358
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
1359
+ title?: string | undefined;
1360
+ description?: string | undefined;
1361
+ copyright?: {
1362
+ notice: string;
1363
+ } | undefined;
1364
+ minDisplayWidth?: string | undefined;
1365
+ maxDisplayWidth?: string | undefined;
1366
+ pixelWidth?: number | undefined;
1367
+ pixelHeight?: number | undefined;
1368
+ } | {
1369
+ id: string;
1370
+ type: "http://www.ft.com/ontology/content/Graphic";
1371
+ binaryUrl: string;
1372
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
1373
+ title?: string | undefined;
1374
+ description?: string | undefined;
1375
+ copyright?: {
1376
+ notice: string;
1377
+ } | undefined;
1378
+ minDisplayWidth?: string | undefined;
1379
+ maxDisplayWidth?: string | undefined;
1380
+ pixelWidth?: number | undefined;
1381
+ pixelHeight?: number | undefined;
1382
+ })[];
1383
+ description?: string | undefined;
1384
+ } | undefined;
1385
+ }>, "many">;
1386
+ caption: z.ZodOptional<z.ZodString>;
1387
+ dataCopyright: z.ZodOptional<z.ZodString>;
1388
+ description: z.ZodOptional<z.ZodString>;
1389
+ displayTitle: z.ZodOptional<z.ZodString>;
1390
+ contentWarning: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1391
+ noAudio: z.ZodOptional<z.ZodBoolean>;
1392
+ source: z.ZodOptional<z.ZodString>;
1393
+ subtitle: z.ZodOptional<z.ZodString>;
1394
+ publishedDate: z.ZodOptional<z.ZodString>;
1395
+ accessibility: z.ZodObject<{
1396
+ captions: z.ZodArray<z.ZodObject<{
1397
+ mediaType: z.ZodString;
1398
+ url: z.ZodString;
1399
+ }, "strip", z.ZodTypeAny, {
1400
+ mediaType: string;
1401
+ url: string;
1402
+ }, {
1403
+ mediaType: string;
1404
+ url: string;
1405
+ }>, "many">;
1406
+ transcript: z.ZodOptional<z.ZodString>;
1407
+ }, "strip", z.ZodTypeAny, {
1408
+ captions: {
1409
+ mediaType: string;
1410
+ url: string;
1411
+ }[];
1412
+ transcript?: string | undefined;
1413
+ }, {
1414
+ captions: {
1415
+ mediaType: string;
1416
+ url: string;
1417
+ }[];
1418
+ transcript?: string | undefined;
1419
+ }>;
1420
+ }, "strip", z.ZodTypeAny, {
1421
+ id: string;
1422
+ type: "http://www.ft.com/ontology/content/ClipSet";
1423
+ members: {
1424
+ id: string;
1425
+ type: "http://www.ft.com/ontology/content/Clip";
1426
+ dataSource: {
1427
+ audioCodec?: string | undefined;
1428
+ binaryUrl?: string | undefined;
1429
+ duration?: number | undefined;
1430
+ mediaType?: string | undefined;
1431
+ pixelHeight?: number | undefined;
1432
+ pixelWidth?: number | undefined;
1433
+ videoCodec?: string | undefined;
1434
+ }[];
1435
+ format?: "standardInline" | "mobile" | undefined;
1436
+ poster?: {
1437
+ id: string;
1438
+ type: "http://www.ft.com/ontology/content/ImageSet";
1439
+ members: ({
1440
+ id: string;
1441
+ type: "http://www.ft.com/ontology/content/Image";
1442
+ binaryUrl: string;
1443
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
1444
+ title?: string | undefined;
1445
+ description?: string | undefined;
1446
+ copyright?: {
1447
+ notice: string;
1448
+ } | undefined;
1449
+ minDisplayWidth?: string | undefined;
1450
+ maxDisplayWidth?: string | undefined;
1451
+ pixelWidth?: number | undefined;
1452
+ pixelHeight?: number | undefined;
1453
+ } | {
1454
+ id: string;
1455
+ type: "http://www.ft.com/ontology/content/Graphic";
1456
+ binaryUrl: string;
1457
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
1458
+ title?: string | undefined;
1459
+ description?: string | undefined;
1460
+ copyright?: {
1461
+ notice: string;
1462
+ } | undefined;
1463
+ minDisplayWidth?: string | undefined;
1464
+ maxDisplayWidth?: string | undefined;
1465
+ pixelWidth?: number | undefined;
1466
+ pixelHeight?: number | undefined;
1467
+ })[];
1468
+ description?: string | undefined;
1469
+ } | undefined;
1470
+ }[];
1471
+ accessibility: {
1472
+ captions: {
1473
+ mediaType: string;
1474
+ url: string;
1475
+ }[];
1476
+ transcript?: string | undefined;
1477
+ };
1478
+ caption?: string | undefined;
1479
+ dataCopyright?: string | undefined;
1480
+ description?: string | undefined;
1481
+ displayTitle?: string | undefined;
1482
+ contentWarning?: string[] | undefined;
1483
+ noAudio?: boolean | undefined;
1484
+ source?: string | undefined;
1485
+ subtitle?: string | undefined;
1486
+ publishedDate?: string | undefined;
1487
+ }, {
1488
+ id: string;
1489
+ type: "http://www.ft.com/ontology/content/ClipSet";
1490
+ members: {
1491
+ id: string;
1492
+ type: "http://www.ft.com/ontology/content/Clip";
1493
+ dataSource: {
1494
+ audioCodec?: string | undefined;
1495
+ binaryUrl?: string | undefined;
1496
+ duration?: number | undefined;
1497
+ mediaType?: string | undefined;
1498
+ pixelHeight?: number | undefined;
1499
+ pixelWidth?: number | undefined;
1500
+ videoCodec?: string | undefined;
1501
+ }[];
1502
+ format?: "standardInline" | "mobile" | undefined;
1503
+ poster?: {
1504
+ id: string;
1505
+ type: "http://www.ft.com/ontology/content/ImageSet";
1506
+ members: ({
1507
+ id: string;
1508
+ type: "http://www.ft.com/ontology/content/Image";
1509
+ binaryUrl: string;
1510
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
1511
+ title?: string | undefined;
1512
+ description?: string | undefined;
1513
+ copyright?: {
1514
+ notice: string;
1515
+ } | undefined;
1516
+ minDisplayWidth?: string | undefined;
1517
+ maxDisplayWidth?: string | undefined;
1518
+ pixelWidth?: number | undefined;
1519
+ pixelHeight?: number | undefined;
1520
+ } | {
1521
+ id: string;
1522
+ type: "http://www.ft.com/ontology/content/Graphic";
1523
+ binaryUrl: string;
1524
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
1525
+ title?: string | undefined;
1526
+ description?: string | undefined;
1527
+ copyright?: {
1528
+ notice: string;
1529
+ } | undefined;
1530
+ minDisplayWidth?: string | undefined;
1531
+ maxDisplayWidth?: string | undefined;
1532
+ pixelWidth?: number | undefined;
1533
+ pixelHeight?: number | undefined;
1534
+ })[];
1535
+ description?: string | undefined;
1536
+ } | undefined;
1537
+ }[];
1538
+ accessibility: {
1539
+ captions: {
1540
+ mediaType: string;
1541
+ url: string;
1542
+ }[];
1543
+ transcript?: string | undefined;
1544
+ };
1545
+ caption?: string | undefined;
1546
+ dataCopyright?: string | undefined;
1547
+ description?: string | undefined;
1548
+ displayTitle?: string | undefined;
1549
+ contentWarning?: string[] | undefined;
1550
+ noAudio?: boolean | undefined;
1551
+ source?: string | undefined;
1552
+ subtitle?: string | undefined;
1553
+ publishedDate?: string | undefined;
1554
+ }>;
807
1555
  export declare const DataSource: z.ZodObject<{
808
1556
  binaryUrl: z.ZodString;
809
1557
  duration: z.ZodNumber;
@@ -812,13 +1560,13 @@ export declare const DataSource: z.ZodObject<{
812
1560
  }, "strip", z.ZodTypeAny, {
813
1561
  binaryUrl: string;
814
1562
  duration: number;
815
- filesize: number;
816
1563
  mediaType: string;
1564
+ filesize: number;
817
1565
  }, {
818
1566
  binaryUrl: string;
819
1567
  duration: number;
820
- filesize: number;
821
1568
  mediaType: string;
1569
+ filesize: number;
822
1570
  }>;
823
1571
  export declare const CapiPersonMembership: z.ZodObject<{
824
1572
  title: z.ZodString;
@@ -1203,6 +1951,7 @@ export declare const baseMetadataSchema: z.ZodObject<{
1203
1951
  }, "strip", z.ZodTypeAny, {
1204
1952
  id: string;
1205
1953
  types: string[];
1954
+ publishedDate: string;
1206
1955
  annotations: {
1207
1956
  id: string;
1208
1957
  apiUrl: string;
@@ -1213,7 +1962,6 @@ export declare const baseMetadataSchema: z.ZodObject<{
1213
1962
  type?: string | undefined;
1214
1963
  headshot?: string | undefined;
1215
1964
  }[];
1216
- publishedDate: string;
1217
1965
  firstPublishedDate: string;
1218
1966
  realtime: boolean;
1219
1967
  canBeSyndicated: "unknown" | "yes" | "no" | "verify" | "withContributorPayment";
@@ -1249,6 +1997,7 @@ export declare const baseMetadataSchema: z.ZodObject<{
1249
1997
  }, {
1250
1998
  id: string;
1251
1999
  types: string[];
2000
+ publishedDate: string;
1252
2001
  annotations: {
1253
2002
  id: string;
1254
2003
  apiUrl: string;
@@ -1259,7 +2008,6 @@ export declare const baseMetadataSchema: z.ZodObject<{
1259
2008
  type?: string | undefined;
1260
2009
  headshot?: string | undefined;
1261
2010
  }[];
1262
- publishedDate: string;
1263
2011
  firstPublishedDate: string;
1264
2012
  realtime: boolean;
1265
2013
  canBeSyndicated: "unknown" | "yes" | "no" | "verify" | "withContributorPayment";
@@ -1881,7 +2629,7 @@ export declare const baseMediaSchema: z.ZodObject<{
1881
2629
  pixelHeight?: number | undefined;
1882
2630
  };
1883
2631
  }>>;
1884
- embeds: z.ZodOptional<z.ZodArray<z.ZodObject<{
2632
+ embeds: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
1885
2633
  id: z.ZodString;
1886
2634
  type: z.ZodLiteral<"http://www.ft.com/ontology/content/ImageSet">;
1887
2635
  description: z.ZodOptional<z.ZodString>;
@@ -2044,7 +2792,466 @@ export declare const baseMediaSchema: z.ZodObject<{
2044
2792
  pixelHeight?: number | undefined;
2045
2793
  })[];
2046
2794
  description?: string | undefined;
2047
- }>, "many">>;
2795
+ }>, z.ZodObject<{
2796
+ id: z.ZodString;
2797
+ type: z.ZodLiteral<"http://www.ft.com/ontology/content/ClipSet">;
2798
+ members: z.ZodArray<z.ZodObject<{
2799
+ id: z.ZodString;
2800
+ type: z.ZodLiteral<"http://www.ft.com/ontology/content/Clip">;
2801
+ format: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"standardInline">, z.ZodLiteral<"mobile">]>>;
2802
+ dataSource: z.ZodArray<z.ZodObject<{
2803
+ audioCodec: z.ZodOptional<z.ZodString>;
2804
+ binaryUrl: z.ZodOptional<z.ZodString>;
2805
+ duration: z.ZodOptional<z.ZodNumber>;
2806
+ mediaType: z.ZodOptional<z.ZodString>;
2807
+ pixelHeight: z.ZodOptional<z.ZodNumber>;
2808
+ pixelWidth: z.ZodOptional<z.ZodNumber>;
2809
+ videoCodec: z.ZodOptional<z.ZodString>;
2810
+ }, "strip", z.ZodTypeAny, {
2811
+ audioCodec?: string | undefined;
2812
+ binaryUrl?: string | undefined;
2813
+ duration?: number | undefined;
2814
+ mediaType?: string | undefined;
2815
+ pixelHeight?: number | undefined;
2816
+ pixelWidth?: number | undefined;
2817
+ videoCodec?: string | undefined;
2818
+ }, {
2819
+ audioCodec?: string | undefined;
2820
+ binaryUrl?: string | undefined;
2821
+ duration?: number | undefined;
2822
+ mediaType?: string | undefined;
2823
+ pixelHeight?: number | undefined;
2824
+ pixelWidth?: number | undefined;
2825
+ videoCodec?: string | undefined;
2826
+ }>, "many">;
2827
+ poster: z.ZodOptional<z.ZodObject<{
2828
+ id: z.ZodString;
2829
+ type: z.ZodLiteral<"http://www.ft.com/ontology/content/ImageSet">;
2830
+ description: z.ZodOptional<z.ZodString>;
2831
+ members: z.ZodArray<z.ZodUnion<[z.ZodObject<{
2832
+ id: z.ZodString;
2833
+ type: z.ZodLiteral<"http://www.ft.com/ontology/content/Image">;
2834
+ format: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"standardInline">, z.ZodLiteral<"mobile">, z.ZodLiteral<"desktop">, z.ZodLiteral<"standard">, z.ZodLiteral<"square">, z.ZodLiteral<"ftEditSquare">, z.ZodLiteral<"wide">, z.ZodLiteral<"portrait">, z.ZodLiteral<"landscape">]>>;
2835
+ title: z.ZodOptional<z.ZodString>;
2836
+ description: z.ZodOptional<z.ZodString>;
2837
+ binaryUrl: z.ZodString;
2838
+ copyright: z.ZodOptional<z.ZodObject<{
2839
+ notice: z.ZodString;
2840
+ }, "strip", z.ZodTypeAny, {
2841
+ notice: string;
2842
+ }, {
2843
+ notice: string;
2844
+ }>>;
2845
+ minDisplayWidth: z.ZodOptional<z.ZodString>;
2846
+ maxDisplayWidth: z.ZodOptional<z.ZodString>;
2847
+ pixelWidth: z.ZodOptional<z.ZodNumber>;
2848
+ pixelHeight: z.ZodOptional<z.ZodNumber>;
2849
+ }, "strip", z.ZodTypeAny, {
2850
+ id: string;
2851
+ type: "http://www.ft.com/ontology/content/Image";
2852
+ binaryUrl: string;
2853
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
2854
+ title?: string | undefined;
2855
+ description?: string | undefined;
2856
+ copyright?: {
2857
+ notice: string;
2858
+ } | undefined;
2859
+ minDisplayWidth?: string | undefined;
2860
+ maxDisplayWidth?: string | undefined;
2861
+ pixelWidth?: number | undefined;
2862
+ pixelHeight?: number | undefined;
2863
+ }, {
2864
+ id: string;
2865
+ type: "http://www.ft.com/ontology/content/Image";
2866
+ binaryUrl: string;
2867
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
2868
+ title?: string | undefined;
2869
+ description?: string | undefined;
2870
+ copyright?: {
2871
+ notice: string;
2872
+ } | undefined;
2873
+ minDisplayWidth?: string | undefined;
2874
+ maxDisplayWidth?: string | undefined;
2875
+ pixelWidth?: number | undefined;
2876
+ pixelHeight?: number | undefined;
2877
+ }>, z.ZodObject<{
2878
+ id: z.ZodString;
2879
+ format: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"standardInline">, z.ZodLiteral<"mobile">, z.ZodLiteral<"desktop">, z.ZodLiteral<"standard">, z.ZodLiteral<"square">, z.ZodLiteral<"ftEditSquare">, z.ZodLiteral<"wide">, z.ZodLiteral<"portrait">, z.ZodLiteral<"landscape">]>>;
2880
+ title: z.ZodOptional<z.ZodString>;
2881
+ description: z.ZodOptional<z.ZodString>;
2882
+ binaryUrl: z.ZodString;
2883
+ copyright: z.ZodOptional<z.ZodObject<{
2884
+ notice: z.ZodString;
2885
+ }, "strip", z.ZodTypeAny, {
2886
+ notice: string;
2887
+ }, {
2888
+ notice: string;
2889
+ }>>;
2890
+ minDisplayWidth: z.ZodOptional<z.ZodString>;
2891
+ maxDisplayWidth: z.ZodOptional<z.ZodString>;
2892
+ pixelWidth: z.ZodOptional<z.ZodNumber>;
2893
+ pixelHeight: z.ZodOptional<z.ZodNumber>;
2894
+ type: z.ZodLiteral<"http://www.ft.com/ontology/content/Graphic">;
2895
+ }, "strip", z.ZodTypeAny, {
2896
+ id: string;
2897
+ type: "http://www.ft.com/ontology/content/Graphic";
2898
+ binaryUrl: string;
2899
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
2900
+ title?: string | undefined;
2901
+ description?: string | undefined;
2902
+ copyright?: {
2903
+ notice: string;
2904
+ } | undefined;
2905
+ minDisplayWidth?: string | undefined;
2906
+ maxDisplayWidth?: string | undefined;
2907
+ pixelWidth?: number | undefined;
2908
+ pixelHeight?: number | undefined;
2909
+ }, {
2910
+ id: string;
2911
+ type: "http://www.ft.com/ontology/content/Graphic";
2912
+ binaryUrl: string;
2913
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
2914
+ title?: string | undefined;
2915
+ description?: string | undefined;
2916
+ copyright?: {
2917
+ notice: string;
2918
+ } | undefined;
2919
+ minDisplayWidth?: string | undefined;
2920
+ maxDisplayWidth?: string | undefined;
2921
+ pixelWidth?: number | undefined;
2922
+ pixelHeight?: number | undefined;
2923
+ }>]>, "many">;
2924
+ }, "strip", z.ZodTypeAny, {
2925
+ id: string;
2926
+ type: "http://www.ft.com/ontology/content/ImageSet";
2927
+ members: ({
2928
+ id: string;
2929
+ type: "http://www.ft.com/ontology/content/Image";
2930
+ binaryUrl: string;
2931
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
2932
+ title?: string | undefined;
2933
+ description?: string | undefined;
2934
+ copyright?: {
2935
+ notice: string;
2936
+ } | undefined;
2937
+ minDisplayWidth?: string | undefined;
2938
+ maxDisplayWidth?: string | undefined;
2939
+ pixelWidth?: number | undefined;
2940
+ pixelHeight?: number | undefined;
2941
+ } | {
2942
+ id: string;
2943
+ type: "http://www.ft.com/ontology/content/Graphic";
2944
+ binaryUrl: string;
2945
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
2946
+ title?: string | undefined;
2947
+ description?: string | undefined;
2948
+ copyright?: {
2949
+ notice: string;
2950
+ } | undefined;
2951
+ minDisplayWidth?: string | undefined;
2952
+ maxDisplayWidth?: string | undefined;
2953
+ pixelWidth?: number | undefined;
2954
+ pixelHeight?: number | undefined;
2955
+ })[];
2956
+ description?: string | undefined;
2957
+ }, {
2958
+ id: string;
2959
+ type: "http://www.ft.com/ontology/content/ImageSet";
2960
+ members: ({
2961
+ id: string;
2962
+ type: "http://www.ft.com/ontology/content/Image";
2963
+ binaryUrl: string;
2964
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
2965
+ title?: string | undefined;
2966
+ description?: string | undefined;
2967
+ copyright?: {
2968
+ notice: string;
2969
+ } | undefined;
2970
+ minDisplayWidth?: string | undefined;
2971
+ maxDisplayWidth?: string | undefined;
2972
+ pixelWidth?: number | undefined;
2973
+ pixelHeight?: number | undefined;
2974
+ } | {
2975
+ id: string;
2976
+ type: "http://www.ft.com/ontology/content/Graphic";
2977
+ binaryUrl: string;
2978
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
2979
+ title?: string | undefined;
2980
+ description?: string | undefined;
2981
+ copyright?: {
2982
+ notice: string;
2983
+ } | undefined;
2984
+ minDisplayWidth?: string | undefined;
2985
+ maxDisplayWidth?: string | undefined;
2986
+ pixelWidth?: number | undefined;
2987
+ pixelHeight?: number | undefined;
2988
+ })[];
2989
+ description?: string | undefined;
2990
+ }>>;
2991
+ }, "strip", z.ZodTypeAny, {
2992
+ id: string;
2993
+ type: "http://www.ft.com/ontology/content/Clip";
2994
+ dataSource: {
2995
+ audioCodec?: string | undefined;
2996
+ binaryUrl?: string | undefined;
2997
+ duration?: number | undefined;
2998
+ mediaType?: string | undefined;
2999
+ pixelHeight?: number | undefined;
3000
+ pixelWidth?: number | undefined;
3001
+ videoCodec?: string | undefined;
3002
+ }[];
3003
+ format?: "standardInline" | "mobile" | undefined;
3004
+ poster?: {
3005
+ id: string;
3006
+ type: "http://www.ft.com/ontology/content/ImageSet";
3007
+ members: ({
3008
+ id: string;
3009
+ type: "http://www.ft.com/ontology/content/Image";
3010
+ binaryUrl: string;
3011
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
3012
+ title?: string | undefined;
3013
+ description?: string | undefined;
3014
+ copyright?: {
3015
+ notice: string;
3016
+ } | undefined;
3017
+ minDisplayWidth?: string | undefined;
3018
+ maxDisplayWidth?: string | undefined;
3019
+ pixelWidth?: number | undefined;
3020
+ pixelHeight?: number | undefined;
3021
+ } | {
3022
+ id: string;
3023
+ type: "http://www.ft.com/ontology/content/Graphic";
3024
+ binaryUrl: string;
3025
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
3026
+ title?: string | undefined;
3027
+ description?: string | undefined;
3028
+ copyright?: {
3029
+ notice: string;
3030
+ } | undefined;
3031
+ minDisplayWidth?: string | undefined;
3032
+ maxDisplayWidth?: string | undefined;
3033
+ pixelWidth?: number | undefined;
3034
+ pixelHeight?: number | undefined;
3035
+ })[];
3036
+ description?: string | undefined;
3037
+ } | undefined;
3038
+ }, {
3039
+ id: string;
3040
+ type: "http://www.ft.com/ontology/content/Clip";
3041
+ dataSource: {
3042
+ audioCodec?: string | undefined;
3043
+ binaryUrl?: string | undefined;
3044
+ duration?: number | undefined;
3045
+ mediaType?: string | undefined;
3046
+ pixelHeight?: number | undefined;
3047
+ pixelWidth?: number | undefined;
3048
+ videoCodec?: string | undefined;
3049
+ }[];
3050
+ format?: "standardInline" | "mobile" | undefined;
3051
+ poster?: {
3052
+ id: string;
3053
+ type: "http://www.ft.com/ontology/content/ImageSet";
3054
+ members: ({
3055
+ id: string;
3056
+ type: "http://www.ft.com/ontology/content/Image";
3057
+ binaryUrl: string;
3058
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
3059
+ title?: string | undefined;
3060
+ description?: string | undefined;
3061
+ copyright?: {
3062
+ notice: string;
3063
+ } | undefined;
3064
+ minDisplayWidth?: string | undefined;
3065
+ maxDisplayWidth?: string | undefined;
3066
+ pixelWidth?: number | undefined;
3067
+ pixelHeight?: number | undefined;
3068
+ } | {
3069
+ id: string;
3070
+ type: "http://www.ft.com/ontology/content/Graphic";
3071
+ binaryUrl: string;
3072
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
3073
+ title?: string | undefined;
3074
+ description?: string | undefined;
3075
+ copyright?: {
3076
+ notice: string;
3077
+ } | undefined;
3078
+ minDisplayWidth?: string | undefined;
3079
+ maxDisplayWidth?: string | undefined;
3080
+ pixelWidth?: number | undefined;
3081
+ pixelHeight?: number | undefined;
3082
+ })[];
3083
+ description?: string | undefined;
3084
+ } | undefined;
3085
+ }>, "many">;
3086
+ caption: z.ZodOptional<z.ZodString>;
3087
+ dataCopyright: z.ZodOptional<z.ZodString>;
3088
+ description: z.ZodOptional<z.ZodString>;
3089
+ displayTitle: z.ZodOptional<z.ZodString>;
3090
+ contentWarning: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3091
+ noAudio: z.ZodOptional<z.ZodBoolean>;
3092
+ source: z.ZodOptional<z.ZodString>;
3093
+ subtitle: z.ZodOptional<z.ZodString>;
3094
+ publishedDate: z.ZodOptional<z.ZodString>;
3095
+ accessibility: z.ZodObject<{
3096
+ captions: z.ZodArray<z.ZodObject<{
3097
+ mediaType: z.ZodString;
3098
+ url: z.ZodString;
3099
+ }, "strip", z.ZodTypeAny, {
3100
+ mediaType: string;
3101
+ url: string;
3102
+ }, {
3103
+ mediaType: string;
3104
+ url: string;
3105
+ }>, "many">;
3106
+ transcript: z.ZodOptional<z.ZodString>;
3107
+ }, "strip", z.ZodTypeAny, {
3108
+ captions: {
3109
+ mediaType: string;
3110
+ url: string;
3111
+ }[];
3112
+ transcript?: string | undefined;
3113
+ }, {
3114
+ captions: {
3115
+ mediaType: string;
3116
+ url: string;
3117
+ }[];
3118
+ transcript?: string | undefined;
3119
+ }>;
3120
+ }, "strip", z.ZodTypeAny, {
3121
+ id: string;
3122
+ type: "http://www.ft.com/ontology/content/ClipSet";
3123
+ members: {
3124
+ id: string;
3125
+ type: "http://www.ft.com/ontology/content/Clip";
3126
+ dataSource: {
3127
+ audioCodec?: string | undefined;
3128
+ binaryUrl?: string | undefined;
3129
+ duration?: number | undefined;
3130
+ mediaType?: string | undefined;
3131
+ pixelHeight?: number | undefined;
3132
+ pixelWidth?: number | undefined;
3133
+ videoCodec?: string | undefined;
3134
+ }[];
3135
+ format?: "standardInline" | "mobile" | undefined;
3136
+ poster?: {
3137
+ id: string;
3138
+ type: "http://www.ft.com/ontology/content/ImageSet";
3139
+ members: ({
3140
+ id: string;
3141
+ type: "http://www.ft.com/ontology/content/Image";
3142
+ binaryUrl: string;
3143
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
3144
+ title?: string | undefined;
3145
+ description?: string | undefined;
3146
+ copyright?: {
3147
+ notice: string;
3148
+ } | undefined;
3149
+ minDisplayWidth?: string | undefined;
3150
+ maxDisplayWidth?: string | undefined;
3151
+ pixelWidth?: number | undefined;
3152
+ pixelHeight?: number | undefined;
3153
+ } | {
3154
+ id: string;
3155
+ type: "http://www.ft.com/ontology/content/Graphic";
3156
+ binaryUrl: string;
3157
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
3158
+ title?: string | undefined;
3159
+ description?: string | undefined;
3160
+ copyright?: {
3161
+ notice: string;
3162
+ } | undefined;
3163
+ minDisplayWidth?: string | undefined;
3164
+ maxDisplayWidth?: string | undefined;
3165
+ pixelWidth?: number | undefined;
3166
+ pixelHeight?: number | undefined;
3167
+ })[];
3168
+ description?: string | undefined;
3169
+ } | undefined;
3170
+ }[];
3171
+ accessibility: {
3172
+ captions: {
3173
+ mediaType: string;
3174
+ url: string;
3175
+ }[];
3176
+ transcript?: string | undefined;
3177
+ };
3178
+ caption?: string | undefined;
3179
+ dataCopyright?: string | undefined;
3180
+ description?: string | undefined;
3181
+ displayTitle?: string | undefined;
3182
+ contentWarning?: string[] | undefined;
3183
+ noAudio?: boolean | undefined;
3184
+ source?: string | undefined;
3185
+ subtitle?: string | undefined;
3186
+ publishedDate?: string | undefined;
3187
+ }, {
3188
+ id: string;
3189
+ type: "http://www.ft.com/ontology/content/ClipSet";
3190
+ members: {
3191
+ id: string;
3192
+ type: "http://www.ft.com/ontology/content/Clip";
3193
+ dataSource: {
3194
+ audioCodec?: string | undefined;
3195
+ binaryUrl?: string | undefined;
3196
+ duration?: number | undefined;
3197
+ mediaType?: string | undefined;
3198
+ pixelHeight?: number | undefined;
3199
+ pixelWidth?: number | undefined;
3200
+ videoCodec?: string | undefined;
3201
+ }[];
3202
+ format?: "standardInline" | "mobile" | undefined;
3203
+ poster?: {
3204
+ id: string;
3205
+ type: "http://www.ft.com/ontology/content/ImageSet";
3206
+ members: ({
3207
+ id: string;
3208
+ type: "http://www.ft.com/ontology/content/Image";
3209
+ binaryUrl: string;
3210
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
3211
+ title?: string | undefined;
3212
+ description?: string | undefined;
3213
+ copyright?: {
3214
+ notice: string;
3215
+ } | undefined;
3216
+ minDisplayWidth?: string | undefined;
3217
+ maxDisplayWidth?: string | undefined;
3218
+ pixelWidth?: number | undefined;
3219
+ pixelHeight?: number | undefined;
3220
+ } | {
3221
+ id: string;
3222
+ type: "http://www.ft.com/ontology/content/Graphic";
3223
+ binaryUrl: string;
3224
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
3225
+ title?: string | undefined;
3226
+ description?: string | undefined;
3227
+ copyright?: {
3228
+ notice: string;
3229
+ } | undefined;
3230
+ minDisplayWidth?: string | undefined;
3231
+ maxDisplayWidth?: string | undefined;
3232
+ pixelWidth?: number | undefined;
3233
+ pixelHeight?: number | undefined;
3234
+ })[];
3235
+ description?: string | undefined;
3236
+ } | undefined;
3237
+ }[];
3238
+ accessibility: {
3239
+ captions: {
3240
+ mediaType: string;
3241
+ url: string;
3242
+ }[];
3243
+ transcript?: string | undefined;
3244
+ };
3245
+ caption?: string | undefined;
3246
+ dataCopyright?: string | undefined;
3247
+ description?: string | undefined;
3248
+ displayTitle?: string | undefined;
3249
+ contentWarning?: string[] | undefined;
3250
+ noAudio?: boolean | undefined;
3251
+ source?: string | undefined;
3252
+ subtitle?: string | undefined;
3253
+ publishedDate?: string | undefined;
3254
+ }>]>, "many">>;
2048
3255
  dataSource: z.ZodOptional<z.ZodArray<z.ZodObject<{
2049
3256
  binaryUrl: z.ZodString;
2050
3257
  duration: z.ZodNumber;
@@ -2053,13 +3260,13 @@ export declare const baseMediaSchema: z.ZodObject<{
2053
3260
  }, "strip", z.ZodTypeAny, {
2054
3261
  binaryUrl: string;
2055
3262
  duration: number;
2056
- filesize: number;
2057
3263
  mediaType: string;
3264
+ filesize: number;
2058
3265
  }, {
2059
3266
  binaryUrl: string;
2060
3267
  duration: number;
2061
- filesize: number;
2062
3268
  mediaType: string;
3269
+ filesize: number;
2063
3270
  }>, "many">>;
2064
3271
  }, "strip", z.ZodTypeAny, {
2065
3272
  mainImage?: {
@@ -2174,7 +3381,7 @@ export declare const baseMediaSchema: z.ZodObject<{
2174
3381
  pixelHeight?: number | undefined;
2175
3382
  };
2176
3383
  } | undefined;
2177
- embeds?: {
3384
+ embeds?: ({
2178
3385
  id: string;
2179
3386
  type: "http://www.ft.com/ontology/content/ImageSet";
2180
3387
  members: ({
@@ -2207,12 +3414,79 @@ export declare const baseMediaSchema: z.ZodObject<{
2207
3414
  pixelHeight?: number | undefined;
2208
3415
  })[];
2209
3416
  description?: string | undefined;
2210
- }[] | undefined;
3417
+ } | {
3418
+ id: string;
3419
+ type: "http://www.ft.com/ontology/content/ClipSet";
3420
+ members: {
3421
+ id: string;
3422
+ type: "http://www.ft.com/ontology/content/Clip";
3423
+ dataSource: {
3424
+ audioCodec?: string | undefined;
3425
+ binaryUrl?: string | undefined;
3426
+ duration?: number | undefined;
3427
+ mediaType?: string | undefined;
3428
+ pixelHeight?: number | undefined;
3429
+ pixelWidth?: number | undefined;
3430
+ videoCodec?: string | undefined;
3431
+ }[];
3432
+ format?: "standardInline" | "mobile" | undefined;
3433
+ poster?: {
3434
+ id: string;
3435
+ type: "http://www.ft.com/ontology/content/ImageSet";
3436
+ members: ({
3437
+ id: string;
3438
+ type: "http://www.ft.com/ontology/content/Image";
3439
+ binaryUrl: string;
3440
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
3441
+ title?: string | undefined;
3442
+ description?: string | undefined;
3443
+ copyright?: {
3444
+ notice: string;
3445
+ } | undefined;
3446
+ minDisplayWidth?: string | undefined;
3447
+ maxDisplayWidth?: string | undefined;
3448
+ pixelWidth?: number | undefined;
3449
+ pixelHeight?: number | undefined;
3450
+ } | {
3451
+ id: string;
3452
+ type: "http://www.ft.com/ontology/content/Graphic";
3453
+ binaryUrl: string;
3454
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
3455
+ title?: string | undefined;
3456
+ description?: string | undefined;
3457
+ copyright?: {
3458
+ notice: string;
3459
+ } | undefined;
3460
+ minDisplayWidth?: string | undefined;
3461
+ maxDisplayWidth?: string | undefined;
3462
+ pixelWidth?: number | undefined;
3463
+ pixelHeight?: number | undefined;
3464
+ })[];
3465
+ description?: string | undefined;
3466
+ } | undefined;
3467
+ }[];
3468
+ accessibility: {
3469
+ captions: {
3470
+ mediaType: string;
3471
+ url: string;
3472
+ }[];
3473
+ transcript?: string | undefined;
3474
+ };
3475
+ caption?: string | undefined;
3476
+ dataCopyright?: string | undefined;
3477
+ description?: string | undefined;
3478
+ displayTitle?: string | undefined;
3479
+ contentWarning?: string[] | undefined;
3480
+ noAudio?: boolean | undefined;
3481
+ source?: string | undefined;
3482
+ subtitle?: string | undefined;
3483
+ publishedDate?: string | undefined;
3484
+ })[] | undefined;
2211
3485
  dataSource?: {
2212
3486
  binaryUrl: string;
2213
3487
  duration: number;
2214
- filesize: number;
2215
3488
  mediaType: string;
3489
+ filesize: number;
2216
3490
  }[] | undefined;
2217
3491
  }, {
2218
3492
  mainImage?: {
@@ -2327,7 +3601,7 @@ export declare const baseMediaSchema: z.ZodObject<{
2327
3601
  pixelHeight?: number | undefined;
2328
3602
  };
2329
3603
  } | undefined;
2330
- embeds?: {
3604
+ embeds?: ({
2331
3605
  id: string;
2332
3606
  type: "http://www.ft.com/ontology/content/ImageSet";
2333
3607
  members: ({
@@ -2360,11 +3634,78 @@ export declare const baseMediaSchema: z.ZodObject<{
2360
3634
  pixelHeight?: number | undefined;
2361
3635
  })[];
2362
3636
  description?: string | undefined;
2363
- }[] | undefined;
3637
+ } | {
3638
+ id: string;
3639
+ type: "http://www.ft.com/ontology/content/ClipSet";
3640
+ members: {
3641
+ id: string;
3642
+ type: "http://www.ft.com/ontology/content/Clip";
3643
+ dataSource: {
3644
+ audioCodec?: string | undefined;
3645
+ binaryUrl?: string | undefined;
3646
+ duration?: number | undefined;
3647
+ mediaType?: string | undefined;
3648
+ pixelHeight?: number | undefined;
3649
+ pixelWidth?: number | undefined;
3650
+ videoCodec?: string | undefined;
3651
+ }[];
3652
+ format?: "standardInline" | "mobile" | undefined;
3653
+ poster?: {
3654
+ id: string;
3655
+ type: "http://www.ft.com/ontology/content/ImageSet";
3656
+ members: ({
3657
+ id: string;
3658
+ type: "http://www.ft.com/ontology/content/Image";
3659
+ binaryUrl: string;
3660
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
3661
+ title?: string | undefined;
3662
+ description?: string | undefined;
3663
+ copyright?: {
3664
+ notice: string;
3665
+ } | undefined;
3666
+ minDisplayWidth?: string | undefined;
3667
+ maxDisplayWidth?: string | undefined;
3668
+ pixelWidth?: number | undefined;
3669
+ pixelHeight?: number | undefined;
3670
+ } | {
3671
+ id: string;
3672
+ type: "http://www.ft.com/ontology/content/Graphic";
3673
+ binaryUrl: string;
3674
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
3675
+ title?: string | undefined;
3676
+ description?: string | undefined;
3677
+ copyright?: {
3678
+ notice: string;
3679
+ } | undefined;
3680
+ minDisplayWidth?: string | undefined;
3681
+ maxDisplayWidth?: string | undefined;
3682
+ pixelWidth?: number | undefined;
3683
+ pixelHeight?: number | undefined;
3684
+ })[];
3685
+ description?: string | undefined;
3686
+ } | undefined;
3687
+ }[];
3688
+ accessibility: {
3689
+ captions: {
3690
+ mediaType: string;
3691
+ url: string;
3692
+ }[];
3693
+ transcript?: string | undefined;
3694
+ };
3695
+ caption?: string | undefined;
3696
+ dataCopyright?: string | undefined;
3697
+ description?: string | undefined;
3698
+ displayTitle?: string | undefined;
3699
+ contentWarning?: string[] | undefined;
3700
+ noAudio?: boolean | undefined;
3701
+ source?: string | undefined;
3702
+ subtitle?: string | undefined;
3703
+ publishedDate?: string | undefined;
3704
+ })[] | undefined;
2364
3705
  dataSource?: {
2365
3706
  binaryUrl: string;
2366
3707
  duration: number;
2367
- filesize: number;
2368
3708
  mediaType: string;
3709
+ filesize: number;
2369
3710
  }[] | undefined;
2370
3711
  }>;