mdz-enum 1.3.0 → 1.3.2
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.
- package/dist/config/index.d.ts +1 -2
- package/dist/config/index.js +0 -3
- package/package.json +2 -2
package/dist/config/index.d.ts
CHANGED
|
@@ -73,8 +73,7 @@ export declare const ParametroEtiquetaProduto: {
|
|
|
73
73
|
Pvp: string;
|
|
74
74
|
Pap: string;
|
|
75
75
|
Nomel2: string;
|
|
76
|
-
|
|
77
|
-
description(val: string): "enum not found" | "Sku" | "Descrição" | "Descrição Linha 2" | "Codigo de Barras" | "Marca" | "Variação" | "Preço Varejo" | "Preço Atacado" | "Preço Varejo Promocional" | "Preço Atacado Promocional" | "Descrição Variação Linha 2";
|
|
76
|
+
description(val: string): "enum not found" | "Sku" | "Descrição" | "Descrição Linha 2" | "Codigo de Barras" | "Marca" | "Variação" | "Preço Varejo" | "Preço Atacado" | "Preço Varejo Promocional" | "Preço Atacado Promocional";
|
|
78
77
|
};
|
|
79
78
|
export declare const ModeloPimaco: {
|
|
80
79
|
M6187: string;
|
package/dist/config/index.js
CHANGED
|
@@ -194,7 +194,6 @@ exports.ParametroEtiquetaProduto = {
|
|
|
194
194
|
Pvp: '8',
|
|
195
195
|
Pap: '9',
|
|
196
196
|
Nomel2: '10',
|
|
197
|
-
Gradel2: '11',
|
|
198
197
|
description(val) {
|
|
199
198
|
switch (val) {
|
|
200
199
|
case this.Sku:
|
|
@@ -217,8 +216,6 @@ exports.ParametroEtiquetaProduto = {
|
|
|
217
216
|
return 'Preço Varejo Promocional';
|
|
218
217
|
case this.Pap:
|
|
219
218
|
return 'Preço Atacado Promocional';
|
|
220
|
-
case this.Gradel2:
|
|
221
|
-
return 'Descrição Variação Linha 2';
|
|
222
219
|
default:
|
|
223
220
|
return 'enum not found';
|
|
224
221
|
}
|
package/package.json
CHANGED