mdz-enum 1.0.75 → 1.0.76

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.
@@ -259,7 +259,8 @@ export declare const SituacaoNotaFiscal: {
259
259
  Cancelada: string;
260
260
  Inutilizada: string;
261
261
  Denegada: string;
262
- description(val: string): "enum not found" | "Em Edição" | "Autorizada" | "Em Processamento" | "Rejeitada" | "Cancelada" | "Inutilizada" | "Denegada";
262
+ Importacao: string;
263
+ description(val: string): "enum not found" | "Em Edição" | "Autorizada" | "Em Processamento" | "Rejeitada" | "Cancelada" | "Inutilizada" | "Denegada" | "Em Importação";
263
264
  };
264
265
  export declare const SituacaoManifestoDestinatario: {
265
266
  SemManifestacao: string;
@@ -759,6 +759,7 @@ exports.SituacaoNotaFiscal = {
759
759
  Cancelada: '4',
760
760
  Inutilizada: '5',
761
761
  Denegada: '6',
762
+ Importacao: '7',
762
763
  description(val) {
763
764
  switch (val) {
764
765
  case this.EmEdicao:
@@ -775,6 +776,8 @@ exports.SituacaoNotaFiscal = {
775
776
  return 'Inutilizada';
776
777
  case this.Denegada:
777
778
  return 'Denegada';
779
+ case this.Importacao:
780
+ return 'Em Importação';
778
781
  default:
779
782
  return 'enum not found';
780
783
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mdz-enum",
3
- "version": "1.0.75",
3
+ "version": "1.0.76",
4
4
  "description": "Enumerados Moderniza",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -989,6 +989,7 @@ export const SituacaoNotaFiscal = {
989
989
  Cancelada: '4',
990
990
  Inutilizada: '5',
991
991
  Denegada: '6',
992
+ Importacao: '7',
992
993
 
993
994
  description(val: string) {
994
995
  switch (val) {
@@ -1013,6 +1014,9 @@ export const SituacaoNotaFiscal = {
1013
1014
  case this.Denegada:
1014
1015
  return 'Denegada'
1015
1016
 
1017
+ case this.Importacao:
1018
+ return 'Em Importação'
1019
+
1016
1020
  default:
1017
1021
  return 'enum not found'
1018
1022
  }