mdz-enum 1.2.88 → 1.2.90

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.
@@ -76,8 +76,9 @@ 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
+ M6187: string;
79
80
  A4351: string;
80
- description(val: string): "enum not found" | "A4351";
81
+ description(val: string): "enum not found" | "6187" | "A4351";
81
82
  };
82
83
  export declare const TipoImpressao: {
83
84
  Arquivo: string;
@@ -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,9 +222,12 @@ exports.ParametroEtiquetaProduto = {
222
222
  },
223
223
  };
224
224
  exports.ModeloPimaco = {
225
- A4351: '0',
225
+ M6187: '0',
226
+ A4351: '1',
226
227
  description(val) {
227
228
  switch (val) {
229
+ case this.M6187:
230
+ return '6187';
228
231
  case this.A4351:
229
232
  return 'A4351';
230
233
  default:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mdz-enum",
3
- "version": "1.2.88",
3
+ "version": "1.2.90",
4
4
  "description": "Enumerados Moderniza",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {