mdz-enum 1.0.76 → 1.0.77
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 +3 -2
- package/dist/fiscal/index.js +5 -2
- package/package.json +1 -1
- package/src/fiscal/index.ts +6 -2
package/dist/fiscal/index.d.ts
CHANGED
|
@@ -259,8 +259,9 @@ export declare const SituacaoNotaFiscal: {
|
|
|
259
259
|
Cancelada: string;
|
|
260
260
|
Inutilizada: string;
|
|
261
261
|
Denegada: string;
|
|
262
|
-
|
|
263
|
-
|
|
262
|
+
EmImportacao: string;
|
|
263
|
+
Importada: string;
|
|
264
|
+
description(val: string): "enum not found" | "Em Edição" | "Autorizada" | "Em Processamento" | "Rejeitada" | "Cancelada" | "Inutilizada" | "Denegada" | "Em Importação" | "Importada";
|
|
264
265
|
};
|
|
265
266
|
export declare const SituacaoManifestoDestinatario: {
|
|
266
267
|
SemManifestacao: string;
|
package/dist/fiscal/index.js
CHANGED
|
@@ -759,7 +759,8 @@ exports.SituacaoNotaFiscal = {
|
|
|
759
759
|
Cancelada: '4',
|
|
760
760
|
Inutilizada: '5',
|
|
761
761
|
Denegada: '6',
|
|
762
|
-
|
|
762
|
+
EmImportacao: '7',
|
|
763
|
+
Importada: '8',
|
|
763
764
|
description(val) {
|
|
764
765
|
switch (val) {
|
|
765
766
|
case this.EmEdicao:
|
|
@@ -776,8 +777,10 @@ exports.SituacaoNotaFiscal = {
|
|
|
776
777
|
return 'Inutilizada';
|
|
777
778
|
case this.Denegada:
|
|
778
779
|
return 'Denegada';
|
|
779
|
-
case this.
|
|
780
|
+
case this.EmImportacao:
|
|
780
781
|
return 'Em Importação';
|
|
782
|
+
case this.Importada:
|
|
783
|
+
return 'Importada';
|
|
781
784
|
default:
|
|
782
785
|
return 'enum not found';
|
|
783
786
|
}
|
package/package.json
CHANGED
package/src/fiscal/index.ts
CHANGED
|
@@ -989,7 +989,8 @@ export const SituacaoNotaFiscal = {
|
|
|
989
989
|
Cancelada: '4',
|
|
990
990
|
Inutilizada: '5',
|
|
991
991
|
Denegada: '6',
|
|
992
|
-
|
|
992
|
+
EmImportacao: '7',
|
|
993
|
+
Importada: '8',
|
|
993
994
|
|
|
994
995
|
description(val: string) {
|
|
995
996
|
switch (val) {
|
|
@@ -1014,9 +1015,12 @@ export const SituacaoNotaFiscal = {
|
|
|
1014
1015
|
case this.Denegada:
|
|
1015
1016
|
return 'Denegada'
|
|
1016
1017
|
|
|
1017
|
-
case this.
|
|
1018
|
+
case this.EmImportacao:
|
|
1018
1019
|
return 'Em Importação'
|
|
1019
1020
|
|
|
1021
|
+
case this.Importada:
|
|
1022
|
+
return 'Importada'
|
|
1023
|
+
|
|
1020
1024
|
default:
|
|
1021
1025
|
return 'enum not found'
|
|
1022
1026
|
}
|