grand commit

This commit is contained in:
2025-02-07 08:34:42 +02:00
parent f594f001f6
commit c6c34f0453
53 changed files with 1283 additions and 625 deletions

View File

@@ -0,0 +1,23 @@
import Decimal from 'decimal.js'
import {i18nLocalesCodes} from '@/i18n-config'
import {locales} from '@/i18n/routing'
export type CategoryPageSqlSchema = {
productId: number
lang: string
slug?: string | null | undefined
image?: string | null | undefined
imageWidth?: number | null | undefined
imageHeight?: number | null | undefined
categoryId?: number
title: string
shortTitle?: string | null | undefined
description?: string | null | undefined
content?: string | null | undefined
headingTitle?: string | null | undefined
instruction?: string | null | undefined
categorySlug?: string | null | undefined
categoryTitle?: string | null | undefined
price?: string | null | Decimal
}