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