mdz-enum 1.2.11 → 1.2.12
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.
- package/dist/common/index.d.ts +2 -2
- package/dist/common/index.js +3 -3
- package/package.json +1 -1
package/dist/common/index.d.ts
CHANGED
|
@@ -36,7 +36,7 @@ export declare const TipoNotificacao: {
|
|
|
36
36
|
Teste: string;
|
|
37
37
|
NovoPedidoGestao: string;
|
|
38
38
|
NovoPedidoEcommerce: string;
|
|
39
|
-
|
|
39
|
+
NovaDevolucaoEcommerce: string;
|
|
40
40
|
Aninversario: string;
|
|
41
|
-
description(val: string): "enum not found" | "Teste..." | "Novo pedido foi criado!" | "Novo pedido recebido pelo Ecommerce" | "
|
|
41
|
+
description(val: string): "enum not found" | "Teste..." | "Novo pedido foi criado!" | "Novo pedido recebido pelo Ecommerce" | "Nova devolução solicitada pelo Ecommerce" | "Aninversario";
|
|
42
42
|
};
|
package/dist/common/index.js
CHANGED
|
@@ -102,7 +102,7 @@ exports.TipoNotificacao = {
|
|
|
102
102
|
Teste: '0',
|
|
103
103
|
NovoPedidoGestao: '1',
|
|
104
104
|
NovoPedidoEcommerce: '2',
|
|
105
|
-
|
|
105
|
+
NovaDevolucaoEcommerce: '3',
|
|
106
106
|
Aninversario: '4',
|
|
107
107
|
description(val) {
|
|
108
108
|
switch (val) {
|
|
@@ -112,8 +112,8 @@ exports.TipoNotificacao = {
|
|
|
112
112
|
return 'Novo pedido foi criado!';
|
|
113
113
|
case this.NovoPedidoEcommerce:
|
|
114
114
|
return 'Novo pedido recebido pelo Ecommerce';
|
|
115
|
-
case this.
|
|
116
|
-
return '
|
|
115
|
+
case this.NovaDevolucaoEcommerce:
|
|
116
|
+
return 'Nova devolução solicitada pelo Ecommerce';
|
|
117
117
|
case this.Aninversario:
|
|
118
118
|
return 'Aninversario';
|
|
119
119
|
default:
|