mdz-enum 1.1.83 → 1.1.85
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.
|
@@ -108,7 +108,8 @@ export declare const ModalConsignacaoOperacao: {
|
|
|
108
108
|
};
|
|
109
109
|
export declare const TipoIntegracaoFrete: {
|
|
110
110
|
Frenet: string;
|
|
111
|
-
|
|
111
|
+
MelhorEnvio: string;
|
|
112
|
+
description(val: string): "enum not found" | "Frenet" | "Melhor Envio";
|
|
112
113
|
};
|
|
113
114
|
export declare const SituacaoOperacao: {
|
|
114
115
|
EmEdicao: string;
|
package/dist/commercial/index.js
CHANGED
|
@@ -312,10 +312,13 @@ exports.ModalConsignacaoOperacao = {
|
|
|
312
312
|
};
|
|
313
313
|
exports.TipoIntegracaoFrete = {
|
|
314
314
|
Frenet: '1',
|
|
315
|
+
MelhorEnvio: '2',
|
|
315
316
|
description(val) {
|
|
316
317
|
switch (val) {
|
|
317
318
|
case this.Frenet:
|
|
318
319
|
return 'Frenet';
|
|
320
|
+
case this.MelhorEnvio:
|
|
321
|
+
return 'Melhor Envio';
|
|
319
322
|
default:
|
|
320
323
|
return 'enum not found';
|
|
321
324
|
}
|
package/dist/general/index.d.ts
CHANGED
|
@@ -65,3 +65,9 @@ export declare const TipoLogos: {
|
|
|
65
65
|
Retangular: string;
|
|
66
66
|
description(val: string): "enum not found" | "Quadrada" | "Retangular";
|
|
67
67
|
};
|
|
68
|
+
export declare const StyleTypeLogos: {
|
|
69
|
+
Branca: string;
|
|
70
|
+
Preta: string;
|
|
71
|
+
Default: string;
|
|
72
|
+
description(val: string): "enum not found" | "Branca" | "Preta" | "Default";
|
|
73
|
+
};
|
package/dist/general/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.TipoLogos = exports.ProporcaoImagem = exports.Uf = exports.TipoTempo = exports.TipoDescontoGeneral = exports.TipoCompartilhamento = exports.Situacao = void 0;
|
|
3
|
+
exports.StyleTypeLogos = exports.TipoLogos = exports.ProporcaoImagem = exports.Uf = exports.TipoTempo = exports.TipoDescontoGeneral = exports.TipoCompartilhamento = exports.Situacao = void 0;
|
|
4
4
|
exports.Situacao = {
|
|
5
5
|
Inativo: '0',
|
|
6
6
|
Ativo: '1',
|
|
@@ -241,3 +241,20 @@ exports.TipoLogos = {
|
|
|
241
241
|
}
|
|
242
242
|
},
|
|
243
243
|
};
|
|
244
|
+
exports.StyleTypeLogos = {
|
|
245
|
+
Branca: '0',
|
|
246
|
+
Preta: '1',
|
|
247
|
+
Default: '2',
|
|
248
|
+
description(val) {
|
|
249
|
+
switch (val) {
|
|
250
|
+
case this.Branca:
|
|
251
|
+
return 'Branca';
|
|
252
|
+
case this.Preta:
|
|
253
|
+
return 'Preta';
|
|
254
|
+
case this.Default:
|
|
255
|
+
return 'Default';
|
|
256
|
+
default:
|
|
257
|
+
return 'enum not found';
|
|
258
|
+
}
|
|
259
|
+
},
|
|
260
|
+
};
|
|
@@ -0,0 +1,12 @@
|
|
|
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
|
+
};
|
|
@@ -0,0 +1,37 @@
|
|
|
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
|
+
};
|