@nomalism-com/types 0.36.31 → 0.36.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -26,7 +26,6 @@ export interface ICloneResponse {
|
|
|
26
26
|
}
|
|
27
27
|
export type IGetProductGroup = 'cortinado' | 'tapete' | 'estore' | 'estofo' | 'almofada' | 'outros' | 'calhas&varões' | 'papel' | 'varoes' | 'terceiros';
|
|
28
28
|
export type IGetProductType = 'confecção' | 'calha' | 'tecido 1' | 'tecido 2' | 'varoes' | 'livre' | 'papel';
|
|
29
|
-
export type IReferenceType = 'noma' | 'sheets' | undefined;
|
|
30
29
|
export interface IGetProduct {
|
|
31
30
|
index: number;
|
|
32
31
|
group: IGetProductGroup;
|
|
@@ -37,7 +36,6 @@ export interface IGetProduct {
|
|
|
37
36
|
discount: number;
|
|
38
37
|
price_sale: number;
|
|
39
38
|
price_cost: number;
|
|
40
|
-
reference_type?: IReferenceType;
|
|
41
39
|
}
|
|
42
40
|
export interface IGetDataResponse {
|
|
43
41
|
products: IGetProduct[];
|
package/package.json
CHANGED
|
@@ -70,8 +70,6 @@ export type IGetProductType =
|
|
|
70
70
|
| 'livre'
|
|
71
71
|
| 'papel';
|
|
72
72
|
|
|
73
|
-
export type IReferenceType = 'noma' | 'sheets' | undefined;
|
|
74
|
-
|
|
75
73
|
export interface IGetProduct {
|
|
76
74
|
index: number; // line index in sheet's config tab
|
|
77
75
|
group: IGetProductGroup;
|
|
@@ -82,7 +80,6 @@ export interface IGetProduct {
|
|
|
82
80
|
discount: number;
|
|
83
81
|
price_sale: number;
|
|
84
82
|
price_cost: number;
|
|
85
|
-
reference_type?: IReferenceType;
|
|
86
83
|
}
|
|
87
84
|
export interface IGetDataResponse {
|
|
88
85
|
products: IGetProduct[];
|