- catalogo
- corretto logica del RefreshToken che non richiedeva il nuovo token, quindi scadeva tutte le volte, richiedendo sempre l'accesso !
This commit is contained in:
@@ -34,6 +34,8 @@ export interface IProductInfo {
|
||||
checkout_link?: string
|
||||
idAuthors?: string[]
|
||||
authors?: string[]
|
||||
idCollana?: string
|
||||
collana?: string
|
||||
collezione?: string
|
||||
idPublisher?: string
|
||||
publisher?: IPublisher
|
||||
@@ -45,7 +47,9 @@ export interface IProductInfo {
|
||||
short_descr: string
|
||||
|
||||
totVen?: number,
|
||||
totFat?: number,
|
||||
vLast3M?: number,
|
||||
fatLast3M?: number,
|
||||
vLast6M?: number,
|
||||
vLastY?: number,
|
||||
vLast2Y?: number,
|
||||
@@ -173,6 +177,7 @@ export interface IProductsState {
|
||||
cart: ICart
|
||||
orders: IOrderCart[]
|
||||
catprods: ICatProd[]
|
||||
collane?: ICollana[]
|
||||
catprods_gas: ICatProd[]
|
||||
subcatprods: ISubCatProd[]
|
||||
productInfos: IProductInfo[]
|
||||
@@ -209,11 +214,19 @@ export interface ICategory {
|
||||
export interface ICatProd {
|
||||
_id?: any
|
||||
name: string,
|
||||
descr_estesa?: string,
|
||||
img?: string,
|
||||
icon?: string,
|
||||
color?: string,
|
||||
}
|
||||
|
||||
export interface ICollana {
|
||||
_id?: any
|
||||
idCollana: number,
|
||||
descrizione: string,
|
||||
descrizione_estesa?: string,
|
||||
}
|
||||
|
||||
export interface ICatAI {
|
||||
_id?: any
|
||||
name: string,
|
||||
|
||||
Reference in New Issue
Block a user