mdz-enum 1.2.39 → 1.2.41
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/README.MD +1 -1
- package/dist/checkout/index.d.ts +27 -27
- package/dist/checkout/index.js +80 -80
- package/dist/commercial/index.d.ts +162 -162
- package/dist/commercial/index.js +466 -466
- package/dist/common/index.d.ts +42 -42
- package/dist/common/index.js +123 -123
- package/dist/config/index.d.ts +120 -119
- package/dist/config/index.js +344 -341
- package/dist/finance/index.d.ts +113 -113
- package/dist/finance/index.js +327 -327
- package/dist/fiscal/index.d.ts +313 -308
- package/dist/fiscal/index.js +924 -910
- package/dist/functions.d.ts +4 -4
- package/dist/functions.js +37 -37
- package/dist/general/index.d.ts +73 -73
- package/dist/general/index.js +268 -268
- package/dist/index.d.ts +13 -13
- package/dist/index.js +165 -164
- package/dist/integration/index.d.ts +18 -18
- package/dist/integration/index.js +54 -54
- package/dist/logistics/index.d.ts +107 -107
- package/dist/logistics/index.js +311 -311
- package/dist/people/index.d.ts +22 -22
- package/dist/people/index.js +65 -65
- package/dist/platform/index.d.ts +102 -102
- package/dist/platform/index.js +295 -295
- package/dist/reports/index.d.ts +29 -29
- package/dist/reports/index.js +87 -87
- package/package.json +32 -33
- package/dist/plataform/index.d.ts +0 -12
- package/dist/plataform/index.js +0 -37
package/dist/people/index.js
CHANGED
|
@@ -1,65 +1,65 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.TipoOperacaoPessoaContaCorrente = exports.GeneroPessoa = exports.TipoPessoa = exports.TipoEndereco = void 0;
|
|
4
|
-
exports.TipoEndereco = {
|
|
5
|
-
Residencial: '0',
|
|
6
|
-
Comercial: '1',
|
|
7
|
-
description(val) {
|
|
8
|
-
switch (val) {
|
|
9
|
-
case this.Residencial:
|
|
10
|
-
return 'Residencial';
|
|
11
|
-
case this.Comercial:
|
|
12
|
-
return 'Comercial';
|
|
13
|
-
default:
|
|
14
|
-
return 'enum not found';
|
|
15
|
-
}
|
|
16
|
-
},
|
|
17
|
-
};
|
|
18
|
-
exports.TipoPessoa = {
|
|
19
|
-
Fisico: '0',
|
|
20
|
-
Juridico: '1',
|
|
21
|
-
description(val) {
|
|
22
|
-
switch (val) {
|
|
23
|
-
case this.Fisico:
|
|
24
|
-
return 'Físico';
|
|
25
|
-
case this.Juridico:
|
|
26
|
-
return 'Jurídico';
|
|
27
|
-
default:
|
|
28
|
-
return 'enum not found';
|
|
29
|
-
}
|
|
30
|
-
},
|
|
31
|
-
};
|
|
32
|
-
exports.GeneroPessoa = {
|
|
33
|
-
Masculino: '0',
|
|
34
|
-
Feminino: '1',
|
|
35
|
-
description(val) {
|
|
36
|
-
switch (val) {
|
|
37
|
-
case this.Masculino:
|
|
38
|
-
return 'Masculino';
|
|
39
|
-
case this.Feminino:
|
|
40
|
-
return 'Feminino';
|
|
41
|
-
default:
|
|
42
|
-
return 'enum not found';
|
|
43
|
-
}
|
|
44
|
-
},
|
|
45
|
-
};
|
|
46
|
-
exports.TipoOperacaoPessoaContaCorrente = {
|
|
47
|
-
DevolucaoVenda: '0',
|
|
48
|
-
CompraNotaFiscal: '1',
|
|
49
|
-
EstornoSaldoUsado: '2',
|
|
50
|
-
EstornoSaldoGerado: '3',
|
|
51
|
-
description(val) {
|
|
52
|
-
switch (val) {
|
|
53
|
-
case this.DevolucaoVenda:
|
|
54
|
-
return 'Devolução de Venda';
|
|
55
|
-
case this.CompraNotaFiscal:
|
|
56
|
-
return 'Compra';
|
|
57
|
-
case this.EstornoSaldoUsado:
|
|
58
|
-
return 'Estorno de saldo usado';
|
|
59
|
-
case this.EstornoSaldoGerado:
|
|
60
|
-
return 'Estorno de Saldo Gerado';
|
|
61
|
-
default:
|
|
62
|
-
return 'enum not found';
|
|
63
|
-
}
|
|
64
|
-
},
|
|
65
|
-
};
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.TipoOperacaoPessoaContaCorrente = exports.GeneroPessoa = exports.TipoPessoa = exports.TipoEndereco = void 0;
|
|
4
|
+
exports.TipoEndereco = {
|
|
5
|
+
Residencial: '0',
|
|
6
|
+
Comercial: '1',
|
|
7
|
+
description(val) {
|
|
8
|
+
switch (val) {
|
|
9
|
+
case this.Residencial:
|
|
10
|
+
return 'Residencial';
|
|
11
|
+
case this.Comercial:
|
|
12
|
+
return 'Comercial';
|
|
13
|
+
default:
|
|
14
|
+
return 'enum not found';
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
};
|
|
18
|
+
exports.TipoPessoa = {
|
|
19
|
+
Fisico: '0',
|
|
20
|
+
Juridico: '1',
|
|
21
|
+
description(val) {
|
|
22
|
+
switch (val) {
|
|
23
|
+
case this.Fisico:
|
|
24
|
+
return 'Físico';
|
|
25
|
+
case this.Juridico:
|
|
26
|
+
return 'Jurídico';
|
|
27
|
+
default:
|
|
28
|
+
return 'enum not found';
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
};
|
|
32
|
+
exports.GeneroPessoa = {
|
|
33
|
+
Masculino: '0',
|
|
34
|
+
Feminino: '1',
|
|
35
|
+
description(val) {
|
|
36
|
+
switch (val) {
|
|
37
|
+
case this.Masculino:
|
|
38
|
+
return 'Masculino';
|
|
39
|
+
case this.Feminino:
|
|
40
|
+
return 'Feminino';
|
|
41
|
+
default:
|
|
42
|
+
return 'enum not found';
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
};
|
|
46
|
+
exports.TipoOperacaoPessoaContaCorrente = {
|
|
47
|
+
DevolucaoVenda: '0',
|
|
48
|
+
CompraNotaFiscal: '1',
|
|
49
|
+
EstornoSaldoUsado: '2',
|
|
50
|
+
EstornoSaldoGerado: '3',
|
|
51
|
+
description(val) {
|
|
52
|
+
switch (val) {
|
|
53
|
+
case this.DevolucaoVenda:
|
|
54
|
+
return 'Devolução de Venda';
|
|
55
|
+
case this.CompraNotaFiscal:
|
|
56
|
+
return 'Compra';
|
|
57
|
+
case this.EstornoSaldoUsado:
|
|
58
|
+
return 'Estorno de saldo usado';
|
|
59
|
+
case this.EstornoSaldoGerado:
|
|
60
|
+
return 'Estorno de Saldo Gerado';
|
|
61
|
+
default:
|
|
62
|
+
return 'enum not found';
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
};
|
package/dist/platform/index.d.ts
CHANGED
|
@@ -1,102 +1,102 @@
|
|
|
1
|
-
export declare const SituacaoOrganizacao: {
|
|
2
|
-
Cancelado: string;
|
|
3
|
-
Ativo: string;
|
|
4
|
-
Bloqueado: string;
|
|
5
|
-
AtivacaoSolicitada: string;
|
|
6
|
-
CancelamentoSolicitado: string;
|
|
7
|
-
description(val: string): "Cancelado" | "enum not found" | "Ativo" | "Bloqueado" | "Ativacao Solicitada" | "Cancelamento Solicitado";
|
|
8
|
-
};
|
|
9
|
-
export declare const SituacaoAtivacao: {
|
|
10
|
-
Cancelado: string;
|
|
11
|
-
Ativo: string;
|
|
12
|
-
Bloqueado: string;
|
|
13
|
-
CancelamentoSolicitado: string;
|
|
14
|
-
description(val: string): "Cancelado" | "enum not found" | "Ativo" | "Bloqueado" | "Cancelamento Solicitado";
|
|
15
|
-
};
|
|
16
|
-
export declare const TipoTicket: {
|
|
17
|
-
CancelamentoAplicativo: string;
|
|
18
|
-
CancelamentoOrganizacao: string;
|
|
19
|
-
AtivacaoAplicativo: string;
|
|
20
|
-
AtivacaoOrganizacao: string;
|
|
21
|
-
description(val: string): "enum not found" | "Cancelamento Aplicativo" | "Cancelamento Organização" | "Ativação Aplicativo" | "Ativação Organização";
|
|
22
|
-
};
|
|
23
|
-
export declare const SituacaoTicket: {
|
|
24
|
-
EmAberto: string;
|
|
25
|
-
EmAtendimento: string;
|
|
26
|
-
Concluido: string;
|
|
27
|
-
description(val: string): "enum not found" | "Concluído" | "Em Aberto" | "Em Atendimento";
|
|
28
|
-
};
|
|
29
|
-
export declare const TipoOrganizacao: {
|
|
30
|
-
Cliente: string;
|
|
31
|
-
Parceiro: string;
|
|
32
|
-
Entidade: string;
|
|
33
|
-
Franquia: string;
|
|
34
|
-
Principal: string;
|
|
35
|
-
description(val: string): "enum not found" | "Cliente" | "Entidade" | "Parceiro" | "Franquia" | "Principal";
|
|
36
|
-
};
|
|
37
|
-
export declare const TipoBanners: {
|
|
38
|
-
Desktop: string;
|
|
39
|
-
Mobile: string;
|
|
40
|
-
description(val: string): "enum not found" | "Desktop" | "Mobile";
|
|
41
|
-
};
|
|
42
|
-
export declare const EstruturaNegocio: {
|
|
43
|
-
Matriz: string;
|
|
44
|
-
Filial: string;
|
|
45
|
-
description(val: string): "enum not found" | "Filial" | "Matriz";
|
|
46
|
-
};
|
|
47
|
-
export declare const SituacaoAplicativo: {
|
|
48
|
-
Inativo: string;
|
|
49
|
-
Ativo: string;
|
|
50
|
-
description(val: string): "enum not found" | "Inativo" | "Ativo";
|
|
51
|
-
};
|
|
52
|
-
export declare const SituacaoPlanos: {
|
|
53
|
-
Inativo: string;
|
|
54
|
-
Ativo: string;
|
|
55
|
-
description(val: string): "enum not found" | "Inativo" | "Ativo";
|
|
56
|
-
};
|
|
57
|
-
export declare const SituacaoUsuarios: {
|
|
58
|
-
Inativo: string;
|
|
59
|
-
Ativo: string;
|
|
60
|
-
description(val: string): "enum not found" | "Inativo" | "Ativo";
|
|
61
|
-
};
|
|
62
|
-
export declare const Segmento: {
|
|
63
|
-
Produtos_Alimenticios: string;
|
|
64
|
-
Vestuario: string;
|
|
65
|
-
Material_de_construçao: string;
|
|
66
|
-
Mercado: string;
|
|
67
|
-
Informatica: string;
|
|
68
|
-
Auto_pecas: string;
|
|
69
|
-
Pet: string;
|
|
70
|
-
Bebidas: string;
|
|
71
|
-
Veiculos: string;
|
|
72
|
-
Moveis: string;
|
|
73
|
-
Cosmeticos: string;
|
|
74
|
-
Material_Para_Escritorio: string;
|
|
75
|
-
Tecido: string;
|
|
76
|
-
Eletrodomesticos: string;
|
|
77
|
-
Calcado: string;
|
|
78
|
-
Combustiveis_e_lubrificantes: string;
|
|
79
|
-
Artigos_Medicos: string;
|
|
80
|
-
Livraria: string;
|
|
81
|
-
Motocicleta: string;
|
|
82
|
-
Artigos_Farmaceuticos: string;
|
|
83
|
-
Artigos_Ortopedicos: string;
|
|
84
|
-
description(val: string): "enum not found" | "Eletrodomésticos" | "Móveis" | "Vestuário" | "Produtos alimentícios" | "Material de construção" | "Hipermercado, supermercado" | "Informática e computação" | "Auto peças" | "Pet" | "Bebidas" | "Veículos" | "Perfumaria e cosmético" | "Material para escritório" | "Tecido" | "Calçado" | "Combustíveis e lubrificantes" | "Artigos médicos" | "Livraria" | "Motocicleta" | "Artigos Farmacêuticos - Farmácia" | "Artigos ortopédicos";
|
|
85
|
-
};
|
|
86
|
-
export declare const Perfis: {
|
|
87
|
-
Administrador: string;
|
|
88
|
-
Suporte: string;
|
|
89
|
-
Financeiro: string;
|
|
90
|
-
Comercial: string;
|
|
91
|
-
description(val: string): "enum not found" | "Comercial" | "Administrador" | "Suporte" | "Financeiro";
|
|
92
|
-
};
|
|
93
|
-
export declare const TipoRequisicao: {
|
|
94
|
-
Cobranca: string;
|
|
95
|
-
description(val: string): "enum not found" | "Cobrança";
|
|
96
|
-
};
|
|
97
|
-
export declare const SituacaoRequisicao: {
|
|
98
|
-
Pendente: string;
|
|
99
|
-
EmAndamento: string;
|
|
100
|
-
Finalizada: string;
|
|
101
|
-
description(val: string): "Pendente" | "enum not found" | "Em andamento" | "Finalizada";
|
|
102
|
-
};
|
|
1
|
+
export declare const SituacaoOrganizacao: {
|
|
2
|
+
Cancelado: string;
|
|
3
|
+
Ativo: string;
|
|
4
|
+
Bloqueado: string;
|
|
5
|
+
AtivacaoSolicitada: string;
|
|
6
|
+
CancelamentoSolicitado: string;
|
|
7
|
+
description(val: string): "Cancelado" | "enum not found" | "Ativo" | "Bloqueado" | "Ativacao Solicitada" | "Cancelamento Solicitado";
|
|
8
|
+
};
|
|
9
|
+
export declare const SituacaoAtivacao: {
|
|
10
|
+
Cancelado: string;
|
|
11
|
+
Ativo: string;
|
|
12
|
+
Bloqueado: string;
|
|
13
|
+
CancelamentoSolicitado: string;
|
|
14
|
+
description(val: string): "Cancelado" | "enum not found" | "Ativo" | "Bloqueado" | "Cancelamento Solicitado";
|
|
15
|
+
};
|
|
16
|
+
export declare const TipoTicket: {
|
|
17
|
+
CancelamentoAplicativo: string;
|
|
18
|
+
CancelamentoOrganizacao: string;
|
|
19
|
+
AtivacaoAplicativo: string;
|
|
20
|
+
AtivacaoOrganizacao: string;
|
|
21
|
+
description(val: string): "enum not found" | "Cancelamento Aplicativo" | "Cancelamento Organização" | "Ativação Aplicativo" | "Ativação Organização";
|
|
22
|
+
};
|
|
23
|
+
export declare const SituacaoTicket: {
|
|
24
|
+
EmAberto: string;
|
|
25
|
+
EmAtendimento: string;
|
|
26
|
+
Concluido: string;
|
|
27
|
+
description(val: string): "enum not found" | "Concluído" | "Em Aberto" | "Em Atendimento";
|
|
28
|
+
};
|
|
29
|
+
export declare const TipoOrganizacao: {
|
|
30
|
+
Cliente: string;
|
|
31
|
+
Parceiro: string;
|
|
32
|
+
Entidade: string;
|
|
33
|
+
Franquia: string;
|
|
34
|
+
Principal: string;
|
|
35
|
+
description(val: string): "enum not found" | "Cliente" | "Entidade" | "Parceiro" | "Franquia" | "Principal";
|
|
36
|
+
};
|
|
37
|
+
export declare const TipoBanners: {
|
|
38
|
+
Desktop: string;
|
|
39
|
+
Mobile: string;
|
|
40
|
+
description(val: string): "enum not found" | "Desktop" | "Mobile";
|
|
41
|
+
};
|
|
42
|
+
export declare const EstruturaNegocio: {
|
|
43
|
+
Matriz: string;
|
|
44
|
+
Filial: string;
|
|
45
|
+
description(val: string): "enum not found" | "Filial" | "Matriz";
|
|
46
|
+
};
|
|
47
|
+
export declare const SituacaoAplicativo: {
|
|
48
|
+
Inativo: string;
|
|
49
|
+
Ativo: string;
|
|
50
|
+
description(val: string): "enum not found" | "Inativo" | "Ativo";
|
|
51
|
+
};
|
|
52
|
+
export declare const SituacaoPlanos: {
|
|
53
|
+
Inativo: string;
|
|
54
|
+
Ativo: string;
|
|
55
|
+
description(val: string): "enum not found" | "Inativo" | "Ativo";
|
|
56
|
+
};
|
|
57
|
+
export declare const SituacaoUsuarios: {
|
|
58
|
+
Inativo: string;
|
|
59
|
+
Ativo: string;
|
|
60
|
+
description(val: string): "enum not found" | "Inativo" | "Ativo";
|
|
61
|
+
};
|
|
62
|
+
export declare const Segmento: {
|
|
63
|
+
Produtos_Alimenticios: string;
|
|
64
|
+
Vestuario: string;
|
|
65
|
+
Material_de_construçao: string;
|
|
66
|
+
Mercado: string;
|
|
67
|
+
Informatica: string;
|
|
68
|
+
Auto_pecas: string;
|
|
69
|
+
Pet: string;
|
|
70
|
+
Bebidas: string;
|
|
71
|
+
Veiculos: string;
|
|
72
|
+
Moveis: string;
|
|
73
|
+
Cosmeticos: string;
|
|
74
|
+
Material_Para_Escritorio: string;
|
|
75
|
+
Tecido: string;
|
|
76
|
+
Eletrodomesticos: string;
|
|
77
|
+
Calcado: string;
|
|
78
|
+
Combustiveis_e_lubrificantes: string;
|
|
79
|
+
Artigos_Medicos: string;
|
|
80
|
+
Livraria: string;
|
|
81
|
+
Motocicleta: string;
|
|
82
|
+
Artigos_Farmaceuticos: string;
|
|
83
|
+
Artigos_Ortopedicos: string;
|
|
84
|
+
description(val: string): "enum not found" | "Eletrodomésticos" | "Móveis" | "Vestuário" | "Produtos alimentícios" | "Material de construção" | "Hipermercado, supermercado" | "Informática e computação" | "Auto peças" | "Pet" | "Bebidas" | "Veículos" | "Perfumaria e cosmético" | "Material para escritório" | "Tecido" | "Calçado" | "Combustíveis e lubrificantes" | "Artigos médicos" | "Livraria" | "Motocicleta" | "Artigos Farmacêuticos - Farmácia" | "Artigos ortopédicos";
|
|
85
|
+
};
|
|
86
|
+
export declare const Perfis: {
|
|
87
|
+
Administrador: string;
|
|
88
|
+
Suporte: string;
|
|
89
|
+
Financeiro: string;
|
|
90
|
+
Comercial: string;
|
|
91
|
+
description(val: string): "enum not found" | "Comercial" | "Administrador" | "Suporte" | "Financeiro";
|
|
92
|
+
};
|
|
93
|
+
export declare const TipoRequisicao: {
|
|
94
|
+
Cobranca: string;
|
|
95
|
+
description(val: string): "enum not found" | "Cobrança";
|
|
96
|
+
};
|
|
97
|
+
export declare const SituacaoRequisicao: {
|
|
98
|
+
Pendente: string;
|
|
99
|
+
EmAndamento: string;
|
|
100
|
+
Finalizada: string;
|
|
101
|
+
description(val: string): "Pendente" | "enum not found" | "Em andamento" | "Finalizada";
|
|
102
|
+
};
|