mdz-enum 1.2.67 → 1.2.68

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.
@@ -135,7 +135,7 @@ export declare const Aplicativos: {
135
135
  description(val: number): "enum not found" | "Mercado Livre" | "Modershop" | "Marketplace" | "Loja Virtual" | "Sped" | "TEF";
136
136
  };
137
137
  export declare const Demonstracao: {
138
- Demonstracao: number;
139
- NaoDemonstracao: number;
140
- description(val: number): "enum not found" | "Demonstração" | "Não Demonstracao";
138
+ Demonstracao: boolean;
139
+ NaoDemonstracao: boolean;
140
+ description(val: boolean): "enum not found" | "Demonstração" | "Não Demonstracao";
141
141
  };
@@ -392,8 +392,8 @@ exports.Aplicativos = {
392
392
  },
393
393
  };
394
394
  exports.Demonstracao = {
395
- Demonstracao: 1,
396
- NaoDemonstracao: 0,
395
+ Demonstracao: true,
396
+ NaoDemonstracao: false,
397
397
  description(val) {
398
398
  switch (val) {
399
399
  case this.Demonstracao:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mdz-enum",
3
- "version": "1.2.67",
3
+ "version": "1.2.68",
4
4
  "description": "Enumerados Moderniza",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {