mdz-enum 1.2.0 → 1.2.2
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.
|
@@ -141,7 +141,7 @@ export declare const SituacaoEtiqueta: {
|
|
|
141
141
|
};
|
|
142
142
|
export declare const MotivoDevolucao: {
|
|
143
143
|
ProdutoAmassadoOuViolado: string;
|
|
144
|
-
|
|
144
|
+
NaoReconheçoEstaCompra: string;
|
|
145
145
|
MeArrependiDaCompra: string;
|
|
146
146
|
ProdutoDiferente: string;
|
|
147
147
|
ProdutoComDefeito: string;
|
package/dist/commercial/index.js
CHANGED
|
@@ -406,7 +406,7 @@ exports.SituacaoEtiqueta = {
|
|
|
406
406
|
};
|
|
407
407
|
exports.MotivoDevolucao = {
|
|
408
408
|
ProdutoAmassadoOuViolado: '0',
|
|
409
|
-
|
|
409
|
+
NaoReconheçoEstaCompra: '1',
|
|
410
410
|
MeArrependiDaCompra: '2',
|
|
411
411
|
ProdutoDiferente: '3',
|
|
412
412
|
ProdutoComDefeito: '4',
|
|
@@ -414,7 +414,7 @@ exports.MotivoDevolucao = {
|
|
|
414
414
|
switch (val) {
|
|
415
415
|
case this.ProdutoAmassadoOuViolado:
|
|
416
416
|
return 'Pedido amassado ou violado';
|
|
417
|
-
case this.
|
|
417
|
+
case this.NaoReconheçoEstaCompra:
|
|
418
418
|
return 'Não reconheço está compra';
|
|
419
419
|
case this.MeArrependiDaCompra:
|
|
420
420
|
return 'Me arrependi da compra';
|
package/package.json
CHANGED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
export declare const SituacaoOrganizacao: {
|
|
2
|
-
Ativo: string;
|
|
3
|
-
Bloqueado: string;
|
|
4
|
-
Cancelado: string;
|
|
5
|
-
description(val: string): "Cancelado" | "enum not found" | "Ativo" | "Bloqueado";
|
|
6
|
-
};
|
|
7
|
-
export declare const TipoOrganizacao: {
|
|
8
|
-
Cliente: string;
|
|
9
|
-
Parceiro: string;
|
|
10
|
-
Entidade: string;
|
|
11
|
-
description(val: string): "enum not found" | "Cliente" | "Entidade" | "Parceiro";
|
|
12
|
-
};
|
package/dist/plataform/index.js
DELETED
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.TipoOrganizacao = exports.SituacaoOrganizacao = void 0;
|
|
4
|
-
exports.SituacaoOrganizacao = {
|
|
5
|
-
Ativo: '1',
|
|
6
|
-
Bloqueado: '2',
|
|
7
|
-
Cancelado: '3',
|
|
8
|
-
description(val) {
|
|
9
|
-
switch (val) {
|
|
10
|
-
case this.Ativo:
|
|
11
|
-
return 'Ativo';
|
|
12
|
-
case this.Bloqueado:
|
|
13
|
-
return 'Bloqueado';
|
|
14
|
-
case this.Cancelado:
|
|
15
|
-
return 'Cancelado';
|
|
16
|
-
default:
|
|
17
|
-
return 'enum not found';
|
|
18
|
-
}
|
|
19
|
-
},
|
|
20
|
-
};
|
|
21
|
-
exports.TipoOrganizacao = {
|
|
22
|
-
Cliente: '1',
|
|
23
|
-
Parceiro: '2',
|
|
24
|
-
Entidade: '3',
|
|
25
|
-
description(val) {
|
|
26
|
-
switch (val) {
|
|
27
|
-
case this.Cliente:
|
|
28
|
-
return 'Cliente';
|
|
29
|
-
case this.Entidade:
|
|
30
|
-
return 'Entidade';
|
|
31
|
-
case this.Parceiro:
|
|
32
|
-
return 'Parceiro';
|
|
33
|
-
default:
|
|
34
|
-
return 'enum not found';
|
|
35
|
-
}
|
|
36
|
-
},
|
|
37
|
-
};
|