mdz-enum 1.0.75 → 1.0.78
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
|
-
|
|
43
|
+
Pausado: string;
|
|
44
|
+
Fechadoo: string;
|
|
45
|
+
description(val: string): "enum not found" | "Pendente a envio" | "Publicado" | "Erro" | "Pausado" | "Fechado";
|
|
44
46
|
};
|
package/dist/commercial/index.js
CHANGED
|
@@ -113,6 +113,8 @@ exports.SituacaoProdutoMarketplace = {
|
|
|
113
113
|
Pendente: '1',
|
|
114
114
|
Publicado: '2',
|
|
115
115
|
Erro: '3',
|
|
116
|
+
Pausado: '4',
|
|
117
|
+
Fechadoo: '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.Fechadoo:
|
|
129
|
+
return 'Fechado';
|
|
124
130
|
default:
|
|
125
131
|
return 'enum not found';
|
|
126
132
|
}
|
package/dist/finance/index.d.ts
CHANGED
|
@@ -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" | "
|
|
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;
|
package/dist/fiscal/index.d.ts
CHANGED
|
@@ -259,7 +259,9 @@ export declare const SituacaoNotaFiscal: {
|
|
|
259
259
|
Cancelada: string;
|
|
260
260
|
Inutilizada: string;
|
|
261
261
|
Denegada: string;
|
|
262
|
-
|
|
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";
|
|
263
265
|
};
|
|
264
266
|
export declare const SituacaoManifestoDestinatario: {
|
|
265
267
|
SemManifestacao: string;
|
package/dist/fiscal/index.js
CHANGED
|
@@ -759,6 +759,8 @@ exports.SituacaoNotaFiscal = {
|
|
|
759
759
|
Cancelada: '4',
|
|
760
760
|
Inutilizada: '5',
|
|
761
761
|
Denegada: '6',
|
|
762
|
+
EmImportacao: '7',
|
|
763
|
+
Importada: '8',
|
|
762
764
|
description(val) {
|
|
763
765
|
switch (val) {
|
|
764
766
|
case this.EmEdicao:
|
|
@@ -775,6 +777,10 @@ exports.SituacaoNotaFiscal = {
|
|
|
775
777
|
return 'Inutilizada';
|
|
776
778
|
case this.Denegada:
|
|
777
779
|
return 'Denegada';
|
|
780
|
+
case this.EmImportacao:
|
|
781
|
+
return 'Em Importação';
|
|
782
|
+
case this.Importada:
|
|
783
|
+
return 'Importada';
|
|
778
784
|
default:
|
|
779
785
|
return 'enum not found';
|
|
780
786
|
}
|
package/package.json
CHANGED
package/src/commercial/index.ts
CHANGED
|
@@ -142,6 +142,8 @@ export const SituacaoProdutoMarketplace = {
|
|
|
142
142
|
Pendente: '1',
|
|
143
143
|
Publicado: '2',
|
|
144
144
|
Erro: '3',
|
|
145
|
+
Pausado: '4',
|
|
146
|
+
Fechadoo: '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.Fechadoo:
|
|
163
|
+
return 'Fechado'
|
|
164
|
+
|
|
157
165
|
default:
|
|
158
166
|
return 'enum not found'
|
|
159
167
|
}
|
package/src/fiscal/index.ts
CHANGED
|
@@ -989,6 +989,8 @@ export const SituacaoNotaFiscal = {
|
|
|
989
989
|
Cancelada: '4',
|
|
990
990
|
Inutilizada: '5',
|
|
991
991
|
Denegada: '6',
|
|
992
|
+
EmImportacao: '7',
|
|
993
|
+
Importada: '8',
|
|
992
994
|
|
|
993
995
|
description(val: string) {
|
|
994
996
|
switch (val) {
|
|
@@ -1013,6 +1015,12 @@ export const SituacaoNotaFiscal = {
|
|
|
1013
1015
|
case this.Denegada:
|
|
1014
1016
|
return 'Denegada'
|
|
1015
1017
|
|
|
1018
|
+
case this.EmImportacao:
|
|
1019
|
+
return 'Em Importação'
|
|
1020
|
+
|
|
1021
|
+
case this.Importada:
|
|
1022
|
+
return 'Importada'
|
|
1023
|
+
|
|
1016
1024
|
default:
|
|
1017
1025
|
return 'enum not found'
|
|
1018
1026
|
}
|