mdz-enum 1.0.76 → 1.0.79

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.
@@ -40,5 +40,7 @@ export declare const SituacaoProdutoMarketplace: {
40
40
  Pendente: string;
41
41
  Publicado: string;
42
42
  Erro: string;
43
- description(val: string): "enum not found" | "Pendente a envio" | "Publicado" | "Erro";
43
+ Pausado: string;
44
+ Fechado: string;
45
+ description(val: string): "enum not found" | "Pendente a envio" | "Publicado" | "Erro" | "Pausado" | "Fechado";
44
46
  };
@@ -113,6 +113,8 @@ exports.SituacaoProdutoMarketplace = {
113
113
  Pendente: '1',
114
114
  Publicado: '2',
115
115
  Erro: '3',
116
+ Pausado: '4',
117
+ Fechado: '5',
116
118
  description(val) {
117
119
  switch (val) {
118
120
  case this.Pendente:
@@ -121,6 +123,10 @@ exports.SituacaoProdutoMarketplace = {
121
123
  return 'Publicado';
122
124
  case this.Erro:
123
125
  return 'Erro';
126
+ case this.Pausado:
127
+ return 'Pausado';
128
+ case this.Fechado:
129
+ return 'Fechado';
124
130
  default:
125
131
  return 'enum not found';
126
132
  }
@@ -80,7 +80,7 @@ export declare const SituacaoCaixa: {
80
80
  Aberto: string;
81
81
  Fechado: string;
82
82
  FechadoComDiferenca: string;
83
- description(val: string): "enum not found" | "Aberto" | "Fechado" | "Fechado com Diferença";
83
+ description(val: string): "enum not found" | "Fechado" | "Aberto" | "Fechado com Diferença";
84
84
  };
85
85
  export declare const TipoValorConfiguracaoBoleto: {
86
86
  Percentual: string;
@@ -259,8 +259,9 @@ export declare const SituacaoNotaFiscal: {
259
259
  Cancelada: string;
260
260
  Inutilizada: string;
261
261
  Denegada: string;
262
- Importacao: string;
263
- description(val: string): "enum not found" | "Em Edição" | "Autorizada" | "Em Processamento" | "Rejeitada" | "Cancelada" | "Inutilizada" | "Denegada" | "Em Importação";
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;
@@ -759,7 +759,8 @@ exports.SituacaoNotaFiscal = {
759
759
  Cancelada: '4',
760
760
  Inutilizada: '5',
761
761
  Denegada: '6',
762
- Importacao: '7',
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.Importacao:
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mdz-enum",
3
- "version": "1.0.76",
3
+ "version": "1.0.79",
4
4
  "description": "Enumerados Moderniza",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -142,6 +142,8 @@ export const SituacaoProdutoMarketplace = {
142
142
  Pendente: '1',
143
143
  Publicado: '2',
144
144
  Erro: '3',
145
+ Pausado: '4',
146
+ Fechado: '5',
145
147
 
146
148
  description(val: string) {
147
149
  switch (val) {
@@ -154,6 +156,12 @@ export const SituacaoProdutoMarketplace = {
154
156
  case this.Erro:
155
157
  return 'Erro'
156
158
 
159
+ case this.Pausado:
160
+ return 'Pausado'
161
+
162
+ case this.Fechado:
163
+ return 'Fechado'
164
+
157
165
  default:
158
166
  return 'enum not found'
159
167
  }
@@ -989,7 +989,8 @@ export const SituacaoNotaFiscal = {
989
989
  Cancelada: '4',
990
990
  Inutilizada: '5',
991
991
  Denegada: '6',
992
- Importacao: '7',
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.Importacao:
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
  }