mdz-enum 1.2.87 → 1.2.89
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 -2
- package/dist/config/index.js +4 -4
- package/package.json +1 -1
package/dist/config/index.d.ts
CHANGED
|
@@ -76,8 +76,8 @@ export declare const ParametroEtiquetaProduto: {
|
|
|
76
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";
|
|
77
77
|
};
|
|
78
78
|
export declare const ModeloPimaco: {
|
|
79
|
-
|
|
80
|
-
description(val: string): "enum not found" | "
|
|
79
|
+
M6187: string;
|
|
80
|
+
description(val: string): "enum not found" | "6187";
|
|
81
81
|
};
|
|
82
82
|
export declare const TipoImpressao: {
|
|
83
83
|
Arquivo: string;
|
package/dist/config/index.js
CHANGED
|
@@ -64,7 +64,7 @@ exports.ModeloPOS = {
|
|
|
64
64
|
default:
|
|
65
65
|
return 'enum not found';
|
|
66
66
|
}
|
|
67
|
-
}
|
|
67
|
+
},
|
|
68
68
|
};
|
|
69
69
|
exports.ModeloSat = {
|
|
70
70
|
Bematech: '1',
|
|
@@ -222,11 +222,11 @@ exports.ParametroEtiquetaProduto = {
|
|
|
222
222
|
},
|
|
223
223
|
};
|
|
224
224
|
exports.ModeloPimaco = {
|
|
225
|
-
|
|
225
|
+
M6187: '0',
|
|
226
226
|
description(val) {
|
|
227
227
|
switch (val) {
|
|
228
|
-
case this.
|
|
229
|
-
return '
|
|
228
|
+
case this.M6187:
|
|
229
|
+
return '6187';
|
|
230
230
|
default:
|
|
231
231
|
return 'enum not found';
|
|
232
232
|
}
|