mdz-enum 1.6.7 → 1.6.8
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 +3 -1
- package/dist/config/index.js +6 -0
- package/package.json +1 -1
package/dist/config/index.d.ts
CHANGED
|
@@ -83,7 +83,9 @@ export declare const ParametroEtiquetaProduto: {
|
|
|
83
83
|
Nomel2: string;
|
|
84
84
|
Gradel2: string;
|
|
85
85
|
Pparcelado: string;
|
|
86
|
-
|
|
86
|
+
Nomel3: string;
|
|
87
|
+
Indexador: string;
|
|
88
|
+
description(val: string): "enum not found" | "Descrição" | "Descrição Linha 2" | "Sku" | "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" | "Preço Parcelado" | "Descrição Linha 3" | "Valor Indexador";
|
|
87
89
|
};
|
|
88
90
|
export declare const ModeloPimaco: {
|
|
89
91
|
M6187: string;
|
package/dist/config/index.js
CHANGED
|
@@ -219,6 +219,8 @@ exports.ParametroEtiquetaProduto = {
|
|
|
219
219
|
Nomel2: '10',
|
|
220
220
|
Gradel2: '11',
|
|
221
221
|
Pparcelado: '12',
|
|
222
|
+
Nomel3: '13',
|
|
223
|
+
Indexador: '14',
|
|
222
224
|
description(val) {
|
|
223
225
|
switch (val) {
|
|
224
226
|
case this.Nome:
|
|
@@ -245,6 +247,10 @@ exports.ParametroEtiquetaProduto = {
|
|
|
245
247
|
return 'Descrição Variação Linha 2';
|
|
246
248
|
case this.Pparcelado:
|
|
247
249
|
return 'Preço Parcelado';
|
|
250
|
+
case this.Nomel3:
|
|
251
|
+
return 'Descrição Linha 3';
|
|
252
|
+
case this.Indexador:
|
|
253
|
+
return 'Valor Indexador';
|
|
248
254
|
default:
|
|
249
255
|
return 'enum not found';
|
|
250
256
|
}
|