mdz-enum 1.5.4 → 1.5.5

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.
@@ -231,7 +231,8 @@ export declare const RegimeTributario: {
231
231
  SimplesNacional: string;
232
232
  SimplesNacionalExcessoSublimiteReceitaBruta: string;
233
233
  RegimeNormal: string;
234
- description(val: string): "enum not found" | "Simples Nacional" | "Simples Nacional, excesso sublimite de receita bruta" | "Regime Normal";
234
+ MEI: string;
235
+ description(val: string): "enum not found" | "Simples Nacional" | "Simples Nacional, excesso sublimite de receita bruta" | "Regime Normal" | "MEI";
235
236
  };
236
237
  export declare const IndicadorIEDestinatario: {
237
238
  ContribuinteICMS: string;
@@ -688,6 +688,7 @@ exports.RegimeTributario = {
688
688
  SimplesNacional: '1',
689
689
  SimplesNacionalExcessoSublimiteReceitaBruta: '2',
690
690
  RegimeNormal: '3',
691
+ MEI: '4',
691
692
  description(val) {
692
693
  switch (val) {
693
694
  case this.SimplesNacional:
@@ -696,6 +697,8 @@ exports.RegimeTributario = {
696
697
  return 'Simples Nacional, excesso sublimite de receita bruta';
697
698
  case this.RegimeNormal:
698
699
  return 'Regime Normal';
700
+ case this.MEI:
701
+ return 'MEI';
699
702
  default:
700
703
  return 'enum not found';
701
704
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mdz-enum",
3
- "version": "1.5.4",
3
+ "version": "1.5.5",
4
4
  "description": "Enumerados ModerShop",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {