mdz-enum 1.2.35 → 1.2.36
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 +2 -1
- package/dist/config/index.js +3 -0
- package/package.json +1 -1
package/dist/config/index.d.ts
CHANGED
|
@@ -67,7 +67,8 @@ export declare const ParametroEtiquetaProduto: {
|
|
|
67
67
|
Pa: string;
|
|
68
68
|
Pvp: string;
|
|
69
69
|
Pap: string;
|
|
70
|
-
|
|
70
|
+
Nomel2: string;
|
|
71
|
+
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";
|
|
71
72
|
};
|
|
72
73
|
export declare const ModeloPimaco: {
|
|
73
74
|
A4351: string;
|
package/dist/config/index.js
CHANGED
|
@@ -179,12 +179,15 @@ exports.ParametroEtiquetaProduto = {
|
|
|
179
179
|
Pa: '7',
|
|
180
180
|
Pvp: '8',
|
|
181
181
|
Pap: '9',
|
|
182
|
+
Nomel2: '10',
|
|
182
183
|
description(val) {
|
|
183
184
|
switch (val) {
|
|
184
185
|
case this.Sku:
|
|
185
186
|
return 'Sku';
|
|
186
187
|
case this.Nome:
|
|
187
188
|
return 'Descrição';
|
|
189
|
+
case this.Nomel2:
|
|
190
|
+
return 'Descrição Linha 2';
|
|
188
191
|
case this.Barra:
|
|
189
192
|
return 'Codigo de Barras';
|
|
190
193
|
case this.Marca:
|