Доработка по Strapi

450 руб.за час
06 ноября 2024, 19:42 • 1 отклик • 25 просмотров
Собрали тестовую конструкцию на strapi, но ответ который идет на frontend не в нужной структуре.
Необходимо сделать такой формат ответа на frontend.

Type SectionDto = {
__component: "sections.type-1" // Вся проблема в этом поле
id: number
title: string
subtitle: string | null
description: string | null
images: string[] | null // массив фоток, может быть и одна внутри (чаще всего)
actions: {
primary: {href: string, title: string} | null
secondary: {href: string, title: string} | null
} | null
}

type BlockDto: {
__component: "blocks.type-1"
id: number
sections: SectionDto[]
}