mdz-enum 1.2.29 → 1.2.31

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.
@@ -29,7 +29,8 @@ export declare const ModeloSat: {
29
29
  Care: string;
30
30
  Epson: string;
31
31
  ControlId: string;
32
- description(val: string): "enum not found" | "Bematech" | "Gertec" | "Urano" | "Generica" | "Sweda" | "Tanca" | "Dimep" | "Nitere" | "Elgin" | "Care" | "Epson" | "ControlId";
32
+ MFe: string;
33
+ description(val: string): "enum not found" | "Bematech" | "Gertec" | "Urano" | "Generica" | "Sweda" | "Tanca" | "Dimep" | "Nitere" | "Elgin" | "Care" | "Epson" | "ControlId" | "MFe";
33
34
  };
34
35
  export declare const VersaoLayoutSat: {
35
36
  Layout007: string;
@@ -65,6 +65,7 @@ exports.ModeloSat = {
65
65
  Care: '11',
66
66
  Epson: '12',
67
67
  ControlId: '13',
68
+ MFe: '99',
68
69
  description(val) {
69
70
  switch (val) {
70
71
  case this.Bematech:
@@ -91,6 +92,8 @@ exports.ModeloSat = {
91
92
  return 'Epson';
92
93
  case this.ControlId:
93
94
  return 'ControlId';
95
+ case this.MFe:
96
+ return 'MFe';
94
97
  default:
95
98
  return 'enum not found';
96
99
  }
@@ -261,7 +261,8 @@ export declare const SituacaoNotaFiscal: {
261
261
  Denegada: string;
262
262
  EmImportacao: string;
263
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
+ EmContingencia: string;
265
+ description(val: string): "enum not found" | "Em Edição" | "Autorizada" | "Em Processamento" | "Rejeitada" | "Cancelada" | "Inutilizada" | "Denegada" | "Em Importação" | "Importada" | "Contingência";
265
266
  };
266
267
  export declare const SituacaoManifestoDestinatario: {
267
268
  SemManifestacao: string;
@@ -761,6 +761,7 @@ exports.SituacaoNotaFiscal = {
761
761
  Denegada: '6',
762
762
  EmImportacao: '7',
763
763
  Importada: '8',
764
+ EmContingencia: '9',
764
765
  description(val) {
765
766
  switch (val) {
766
767
  case this.EmEdicao:
@@ -781,6 +782,8 @@ exports.SituacaoNotaFiscal = {
781
782
  return 'Em Importação';
782
783
  case this.Importada:
783
784
  return 'Importada';
785
+ case this.EmContingencia:
786
+ return 'Contingência';
784
787
  default:
785
788
  return 'enum not found';
786
789
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mdz-enum",
3
- "version": "1.2.29",
3
+ "version": "1.2.31",
4
4
  "description": "Enumerados Moderniza",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {