Removed backlinks on collectible subpages

This commit is contained in:
DrMint 2024-08-15 14:31:20 +02:00
parent 516fc03307
commit 247b2c3046
1 changed files with 26 additions and 31 deletions

View File

@ -331,36 +331,6 @@ export type EndpointCollectibleScans = {
insideFlapBack?: EndpointScanImage;
};
pages: EndpointScanImage[];
backlinks: EndpointRelation[];
};
export type EndpointCollectibleGallery = {
slug: string;
thumbnail?: EndpointPayloadImage;
translations: {
language: string;
pretitle?: string;
title: string;
subtitle?: string;
description?: RichTextContent;
}[];
images: EndpointPayloadImage[];
backlinks: EndpointRelation[];
};
export type EndpointCollectibleGalleryImage = {
slug: string;
translations: {
language: string;
pretitle?: string;
title: string;
subtitle?: string;
description?: RichTextContent;
}[];
image: EndpointImage;
previousIndex?: string;
nextIndex?: string;
backlinks: EndpointRelation[];
};
export type EndpointCollectibleScanPage = {
@ -375,9 +345,34 @@ export type EndpointCollectibleScanPage = {
image: EndpointScanImage;
previousIndex?: string;
nextIndex?: string;
backlinks: EndpointRelation[];
};
export type EndpointCollectibleGallery = {
slug: string;
thumbnail?: EndpointPayloadImage;
translations: {
language: string;
pretitle?: string;
title: string;
subtitle?: string;
description?: RichTextContent;
}[];
images: EndpointPayloadImage[];
};
export type EndpointCollectibleGalleryImage = {
slug: string;
translations: {
language: string;
pretitle?: string;
title: string;
subtitle?: string;
description?: RichTextContent;
}[];
image: EndpointImage;
previousIndex?: string;
nextIndex?: string;
};
export type EndpointScanImage = PayloadImage & {
index: string;
sizes: PayloadImage[];