- 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:
@@ -421,7 +421,8 @@ export type StateConnection = 'online' | 'offline'
|
||||
|
||||
export interface IFilterCatalogo {
|
||||
author: string
|
||||
sort: number
|
||||
sort_field: string
|
||||
sort_dir: number
|
||||
publisher: string
|
||||
type: string
|
||||
ageGroup: string
|
||||
@@ -797,8 +798,11 @@ export interface IMyScheda {
|
||||
productTypes?: number[]
|
||||
excludeproductTypes?: number[]
|
||||
editore?: string[]
|
||||
argomenti?: string[]
|
||||
collana?: string
|
||||
author?: string
|
||||
sort?: number
|
||||
sort_field?: string
|
||||
sort_dir?: number
|
||||
arrProdottiSpeciali?: string[]
|
||||
|
||||
}
|
||||
@@ -810,6 +814,7 @@ export interface ISchedaSingola {
|
||||
numPagineMax?: number,
|
||||
|
||||
// In Memoria
|
||||
idPageOrig?: string
|
||||
arrProdToShow?: IProduct[][][]
|
||||
}
|
||||
|
||||
@@ -819,8 +824,11 @@ export interface ICatalogo {
|
||||
excludeproductTypes?: number[]
|
||||
formato?: string[]
|
||||
Categoria?: string[]
|
||||
Editore?: string[]
|
||||
sort?: number
|
||||
editore?: string[]
|
||||
argomenti?: string[]
|
||||
collana?: string
|
||||
sort_field?: string
|
||||
sort_dir?: number
|
||||
pdf?: boolean
|
||||
pdf_filename?: string
|
||||
printable?: boolean
|
||||
@@ -834,7 +842,7 @@ export interface ICatalogo {
|
||||
dimensioni_def?: IElementiPagina
|
||||
|
||||
arrSchede?: ISchedaSingola[]
|
||||
aggiorna: number
|
||||
aggiorna?: number
|
||||
}
|
||||
|
||||
|
||||
@@ -984,6 +992,7 @@ export interface IColGridTable {
|
||||
extrafield?: string
|
||||
tipoconto?: number
|
||||
path?: string
|
||||
onlyforAdmin?: boolean
|
||||
}
|
||||
|
||||
export interface ITableRec {
|
||||
@@ -1340,10 +1349,16 @@ export interface ICircuit {
|
||||
qta_max_default?: number
|
||||
fido_scoperto_default_grp?: number
|
||||
qta_max_default_grp?: number
|
||||
fido_scoperto_default_contocom?: number
|
||||
qta_max_default_contocom?: number
|
||||
data_costituz?: Date
|
||||
deperimento: boolean
|
||||
showAlways: boolean
|
||||
ignoreLimits: boolean
|
||||
askManagerToEnter?: boolean
|
||||
sendEmailAfterAskingToEnter?: boolean
|
||||
circuitoIndipendente?: boolean
|
||||
creditodiPartenza?: number
|
||||
transactionsEnabled: boolean
|
||||
status: number
|
||||
freq_deper?: string
|
||||
|
||||
@@ -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