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.
- package/dist/fiscal/index.d.ts +2 -1
- package/dist/fiscal/index.js +3 -0
- package/package.json +1 -1
package/dist/fiscal/index.d.ts
CHANGED
|
@@ -231,7 +231,8 @@ export declare const RegimeTributario: {
|
|
|
231
231
|
SimplesNacional: string;
|
|
232
232
|
SimplesNacionalExcessoSublimiteReceitaBruta: string;
|
|
233
233
|
RegimeNormal: string;
|
|
234
|
-
|
|
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;
|
package/dist/fiscal/index.js
CHANGED
|
@@ -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
|
}
|