mdz-enum 1.0.78 → 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.
|
@@ -41,6 +41,6 @@ export declare const SituacaoProdutoMarketplace: {
|
|
|
41
41
|
Publicado: string;
|
|
42
42
|
Erro: string;
|
|
43
43
|
Pausado: string;
|
|
44
|
-
|
|
44
|
+
Fechado: string;
|
|
45
45
|
description(val: string): "enum not found" | "Pendente a envio" | "Publicado" | "Erro" | "Pausado" | "Fechado";
|
|
46
46
|
};
|
package/dist/commercial/index.js
CHANGED
|
@@ -114,7 +114,7 @@ exports.SituacaoProdutoMarketplace = {
|
|
|
114
114
|
Publicado: '2',
|
|
115
115
|
Erro: '3',
|
|
116
116
|
Pausado: '4',
|
|
117
|
-
|
|
117
|
+
Fechado: '5',
|
|
118
118
|
description(val) {
|
|
119
119
|
switch (val) {
|
|
120
120
|
case this.Pendente:
|
|
@@ -125,7 +125,7 @@ exports.SituacaoProdutoMarketplace = {
|
|
|
125
125
|
return 'Erro';
|
|
126
126
|
case this.Pausado:
|
|
127
127
|
return 'Pausado';
|
|
128
|
-
case this.
|
|
128
|
+
case this.Fechado:
|
|
129
129
|
return 'Fechado';
|
|
130
130
|
default:
|
|
131
131
|
return 'enum not found';
|
package/package.json
CHANGED
package/src/commercial/index.ts
CHANGED
|
@@ -143,7 +143,7 @@ export const SituacaoProdutoMarketplace = {
|
|
|
143
143
|
Publicado: '2',
|
|
144
144
|
Erro: '3',
|
|
145
145
|
Pausado: '4',
|
|
146
|
-
|
|
146
|
+
Fechado: '5',
|
|
147
147
|
|
|
148
148
|
description(val: string) {
|
|
149
149
|
switch (val) {
|
|
@@ -159,7 +159,7 @@ export const SituacaoProdutoMarketplace = {
|
|
|
159
159
|
case this.Pausado:
|
|
160
160
|
return 'Pausado'
|
|
161
161
|
|
|
162
|
-
case this.
|
|
162
|
+
case this.Fechado:
|
|
163
163
|
return 'Fechado'
|
|
164
164
|
|
|
165
165
|
default:
|