grand commit
This commit is contained in:
23
lib/data/models/sqlSchemas.ts
Normal file
23
lib/data/models/sqlSchemas.ts
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user