@thetimes/times-public-api-types 1.0.10214 → 1.0.10244

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.
@@ -98,6 +98,7 @@ export type ImageInput = {
98
98
  caption?: string | null;
99
99
  credits?: string | null;
100
100
  crops: CropInput[];
101
+ videoCrops?: CropInput[] | null;
101
102
  };
102
103
  export type CropInput = {
103
104
  ratio: Ratio;
@@ -4,4 +4,5 @@ export type CategoryInput = {
4
4
  title: string;
5
5
  slug: Slug;
6
6
  parent: UUID | null;
7
+ displayCategoryLabel?: boolean | null;
7
8
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thetimes/times-public-api-types",
3
- "version": "1.0.10214",
3
+ "version": "1.0.10244",
4
4
  "description": "",
5
5
  "main": "index.d.ts",
6
6
  "types": "index.d.ts",
@@ -16,6 +16,7 @@ export type Image = {
16
16
  credits: string | null;
17
17
  crop: Crop | null;
18
18
  crops: Crop[];
19
+ videoCrops: Crop[] | null;
19
20
  };
20
21
  export type ImagesPaged = {
21
22
  list: [Image];