mdz-enum 1.2.30 → 1.2.32

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.
@@ -147,13 +147,13 @@ export declare const OperacaoNotaFiscal: {
147
147
  description(val: string): "enum not found" | "Entrada" | "Saída";
148
148
  };
149
149
  export declare const ModeloNotaFiscal: {
150
- NF: string;
150
+ PreVenda: string;
151
151
  NFProdutor: string;
152
152
  NFe: string;
153
153
  NFCe: string;
154
154
  SAT: string;
155
- description(val: string): "enum not found" | "Nota Fiscal" | "Nota Fiscal de produtor rural" | "Nota Fisca Eletrônica" | "Nota Fiscal de Consumidor Eletrônica" | "SAT";
156
- shortDescription(val: string): "enum not found" | "SAT" | "NF" | "NFP" | "NFe" | "NFCe";
155
+ description(val: string): "enum not found" | "Pré Venda" | "Nota Fiscal de produtor rural" | "Nota Fisca Eletrônica" | "Nota Fiscal de Consumidor Eletrônica" | "SAT";
156
+ shortDescription(val: string): "enum not found" | "SAT" | "PV" | "NFP" | "NFe" | "NFCe";
157
157
  };
158
158
  export declare const IdentificadorLocalDestino: {
159
159
  OperacaoInterna: string;
@@ -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;
@@ -438,15 +438,15 @@ exports.OperacaoNotaFiscal = {
438
438
  },
439
439
  };
440
440
  exports.ModeloNotaFiscal = {
441
- NF: '01',
441
+ PreVenda: '01',
442
442
  NFProdutor: '04',
443
443
  NFe: '55',
444
444
  NFCe: '65',
445
445
  SAT: '59',
446
446
  description(val) {
447
447
  switch (val) {
448
- case this.NF:
449
- return 'Nota Fiscal';
448
+ case this.PreVenda:
449
+ return 'Pré Venda';
450
450
  case this.NFProdutor:
451
451
  return 'Nota Fiscal de produtor rural';
452
452
  case this.NFe:
@@ -461,8 +461,8 @@ exports.ModeloNotaFiscal = {
461
461
  },
462
462
  shortDescription(val) {
463
463
  switch (val) {
464
- case this.NF:
465
- return 'NF';
464
+ case this.PreVenda:
465
+ return 'PV';
466
466
  case this.NFProdutor:
467
467
  return 'NFP';
468
468
  case this.NFe:
@@ -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.30",
3
+ "version": "1.2.32",
4
4
  "description": "Enumerados Moderniza",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {