mdz-enum 1.1.79 → 1.1.80

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.
@@ -1,174 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.TipoQuantidadeInfoNutricional = exports.TipoLeiRotulagem = exports.TipoAtualizacaoEstoque = exports.TipoImagemGaleria = exports.TipoCategoria = exports.OrigemMovimentacaoEstoque = exports.SituacaoMovimentacaoEstoque = exports.TipoValoracao = exports.TipoProduto = void 0;
4
- exports.TipoProduto = {
5
- Simples: '0',
6
- ComGrade: '1',
7
- description(val) {
8
- switch (val) {
9
- case this.Simples:
10
- return 'Simples';
11
- case this.ComGrade:
12
- return 'Com Grade';
13
- default:
14
- return 'enum not found';
15
- }
16
- },
17
- };
18
- exports.TipoValoracao = {
19
- PrecoAquisicao: '0',
20
- PrecoCusto: '1',
21
- PrecoVenda: '2',
22
- PrecoAtacado: '3',
23
- description(val) {
24
- switch (val) {
25
- case this.PrecoAquisicao:
26
- return 'Preço de Aquisição';
27
- case this.PrecoCusto:
28
- return 'Preço de Custo';
29
- case this.PrecoVenda:
30
- return 'Preço de Venda';
31
- case this.PrecoAtacado:
32
- return 'Preço de Atacado';
33
- default:
34
- return 'enum not found';
35
- }
36
- },
37
- };
38
- exports.SituacaoMovimentacaoEstoque = {
39
- EmEdicao: '0',
40
- Processado: '1',
41
- Estornado: '2',
42
- description(val) {
43
- switch (val) {
44
- case this.EmEdicao:
45
- return 'Em Edição';
46
- case this.Processado:
47
- return 'Processado';
48
- case this.Estornado:
49
- return 'Estornado';
50
- default:
51
- return 'enum not found';
52
- }
53
- },
54
- };
55
- exports.OrigemMovimentacaoEstoque = {
56
- Manual: '1',
57
- NotaFiscal: '2',
58
- Pedido: '3',
59
- description(val) {
60
- switch (val) {
61
- case this.Manual:
62
- return 'Manual';
63
- case this.NotaFiscal:
64
- return 'Nota Fiscal';
65
- case this.Pedido:
66
- return 'Pedido';
67
- default:
68
- return 'enum not found';
69
- }
70
- },
71
- };
72
- exports.TipoCategoria = {
73
- Beleza: '0',
74
- Bolsa: '1',
75
- Calçado: '2',
76
- Celular: '3',
77
- Decoracao: '4',
78
- Eletrodomestico: '5',
79
- Eletronico: '6',
80
- Esporte: '7',
81
- Ferramenta: '8',
82
- Game: '9',
83
- Movel: '10',
84
- Vestuario: '11',
85
- Saude: '12',
86
- description(val) {
87
- switch (val) {
88
- case this.Beleza:
89
- return 'Beleza';
90
- case this.Bolsa:
91
- return 'Bolsas';
92
- case this.Calçado:
93
- return 'Calçados';
94
- case this.Celular:
95
- return 'Celular';
96
- case this.Decoracao:
97
- return 'Decoração';
98
- case this.Eletrodomestico:
99
- return 'Eletrodomésticos';
100
- case this.Eletronico:
101
- return 'Eletrônicos';
102
- case this.Esporte:
103
- return 'Esportes';
104
- case this.Ferramenta:
105
- return 'Ferramentas';
106
- case this.Game:
107
- return 'Games';
108
- case this.Movel:
109
- return 'Móveis';
110
- case this.Vestuario:
111
- return 'Vestuário';
112
- case this.Saude:
113
- return 'Saúde';
114
- default:
115
- break;
116
- }
117
- },
118
- };
119
- exports.TipoImagemGaleria = {
120
- Geral: '0',
121
- PorGrade: '1',
122
- description(val) {
123
- switch (val) {
124
- case this.Geral:
125
- return 'Geral';
126
- case this.PorGrade:
127
- return 'Por Grade';
128
- default:
129
- return 'enum not found';
130
- }
131
- },
132
- };
133
- exports.TipoAtualizacaoEstoque = {
134
- NotaFiscal: '0',
135
- MovimentacaoEstoque: '1',
136
- description(val) {
137
- switch (val) {
138
- case this.NotaFiscal:
139
- return 'Nota Fiscal';
140
- case this.MovimentacaoEstoque:
141
- return 'Movimentaçaõ de Estoque';
142
- default:
143
- return 'enum not found';
144
- }
145
- },
146
- };
147
- exports.TipoLeiRotulagem = {
148
- Lei_360: '0',
149
- Lei_429: '1',
150
- description(val) {
151
- switch (val) {
152
- case this.Lei_360:
153
- return 'RDC 359/360';
154
- case this.Lei_429:
155
- return 'RDC 429';
156
- default:
157
- return 'enum not found';
158
- }
159
- },
160
- };
161
- exports.TipoQuantidadeInfoNutricional = {
162
- Grama: '0',
163
- Mililitro: '1',
164
- description(val) {
165
- switch (val) {
166
- case this.Grama:
167
- return '100 G (100 gramas)';
168
- case this.Mililitro:
169
- return '100 ML (100 mililitros)';
170
- default:
171
- return 'enum not found';
172
- }
173
- },
174
- };
@@ -1,20 +0,0 @@
1
- export declare const TipoEndereco: {
2
- Residencial: string;
3
- Comercial: string;
4
- description(val: string): "enum not found" | "Residencial" | "Comercial";
5
- };
6
- export declare const TipoPessoa: {
7
- Fisico: string;
8
- Juridico: string;
9
- description(val: string): "enum not found" | "Físico" | "Jurídico";
10
- };
11
- export declare const GeneroPessoa: {
12
- Masculino: string;
13
- Feminino: string;
14
- description(val: string): "enum not found" | "Masculino" | "Feminino";
15
- };
16
- export declare const TipoOperacaoPessoaContaCorrente: {
17
- DevolucaoVenda: string;
18
- CompraNotaFiscal: string;
19
- description(val: string): "enum not found" | "Compra" | "Devolução de Venda";
20
- };
@@ -1,59 +0,0 @@
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
- description(val) {
50
- switch (val) {
51
- case this.DevolucaoVenda:
52
- return 'Devolução de Venda';
53
- case this.CompraNotaFiscal:
54
- return 'Compra';
55
- default:
56
- return 'enum not found';
57
- }
58
- },
59
- };
@@ -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
- };
@@ -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
- };
@@ -1,45 +0,0 @@
1
- export declare const SituacaoOrganizacao: {
2
- Cancelado: string;
3
- Ativo: string;
4
- Bloqueado: string;
5
- AtivacaoSolicitada: string;
6
- description(val: string): "Cancelado" | "enum not found" | "Ativo" | "Bloqueado" | "Ativacao Solicitada";
7
- };
8
- export declare const SituacaoAtivacao: {
9
- Cancelado: string;
10
- Ativo: string;
11
- Bloqueado: string;
12
- CancelamentoSolicitado: string;
13
- description(val: string): "Cancelado" | "enum not found" | "Ativo" | "Bloqueado" | "Cancelamento Solicitado";
14
- };
15
- export declare const TipoTicket: {
16
- CancelamentoAplicativo: string;
17
- CancelamentoOrganizacao: string;
18
- AtivacaoAplicativo: string;
19
- AtivacaoOrganizacao: string;
20
- description(val: string): "enum not found" | "Cancelamento Aplicativo" | "Cancelamento Organização" | "Ativação Aplicativo" | "Ativação Organização";
21
- };
22
- export declare const SituacaoTicket: {
23
- EmAberto: string;
24
- EmAtendimento: string;
25
- Concluido: string;
26
- description(val: string): "enum not found" | "Em Aberto" | "Em Atendimento" | "Concluído";
27
- };
28
- export declare const TipoOrganizacao: {
29
- Cliente: string;
30
- Parceiro: string;
31
- Entidade: string;
32
- Franquia: string;
33
- Principal: string;
34
- description(val: string): "enum not found" | "Cliente" | "Entidade" | "Parceiro" | "Franquia" | "Principal";
35
- };
36
- export declare const TipoBanners: {
37
- Desktop: string;
38
- Mobile: string;
39
- description(val: string): "enum not found" | "Desktop" | "Mobile";
40
- };
41
- export declare const EstruturaNegocio: {
42
- Matriz: string;
43
- Filial: string;
44
- description(val: string): "enum not found" | "Matriz" | "Filial";
45
- };
@@ -1,131 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.EstruturaNegocio = exports.TipoBanners = exports.TipoOrganizacao = exports.SituacaoTicket = exports.TipoTicket = exports.SituacaoAtivacao = exports.SituacaoOrganizacao = void 0;
4
- exports.SituacaoOrganizacao = {
5
- Cancelado: '0',
6
- Ativo: '1',
7
- Bloqueado: '2',
8
- AtivacaoSolicitada: '3',
9
- description(val) {
10
- switch (val) {
11
- case this.Ativo:
12
- return 'Ativo';
13
- case this.Bloqueado:
14
- return 'Bloqueado';
15
- case this.Cancelado:
16
- return 'Cancelado';
17
- case this.AtivacaoSolicitada:
18
- return 'Ativacao Solicitada';
19
- default:
20
- return 'enum not found';
21
- }
22
- },
23
- };
24
- exports.SituacaoAtivacao = {
25
- Cancelado: '0',
26
- Ativo: '1',
27
- Bloqueado: '2',
28
- CancelamentoSolicitado: '3',
29
- description(val) {
30
- switch (val) {
31
- case this.Ativo:
32
- return 'Ativo';
33
- case this.Bloqueado:
34
- return 'Bloqueado';
35
- case this.Cancelado:
36
- return 'Cancelado';
37
- case this.CancelamentoSolicitado:
38
- return 'Cancelamento Solicitado';
39
- default:
40
- return 'enum not found';
41
- }
42
- },
43
- };
44
- exports.TipoTicket = {
45
- CancelamentoAplicativo: '1',
46
- CancelamentoOrganizacao: '2',
47
- AtivacaoAplicativo: '3',
48
- AtivacaoOrganizacao: '4',
49
- description(val) {
50
- switch (val) {
51
- case this.CancelamentoAplicativo:
52
- return 'Cancelamento Aplicativo';
53
- case this.CancelamentoOrganizacao:
54
- return 'Cancelamento Organização';
55
- case this.AtivacaoAplicativo:
56
- return 'Ativação Aplicativo';
57
- case this.AtivacaoOrganizacao:
58
- return 'Ativação Organização';
59
- default:
60
- return 'enum not found';
61
- }
62
- },
63
- };
64
- exports.SituacaoTicket = {
65
- EmAberto: '0',
66
- EmAtendimento: '1',
67
- Concluido: '2',
68
- description(val) {
69
- switch (val) {
70
- case this.EmAberto:
71
- return 'Em Aberto';
72
- case this.EmAtendimento:
73
- return 'Em Atendimento';
74
- case this.Concluido:
75
- return 'Concluído';
76
- default:
77
- return 'enum not found';
78
- }
79
- },
80
- };
81
- exports.TipoOrganizacao = {
82
- Cliente: '1',
83
- Parceiro: '2',
84
- Entidade: '3',
85
- Franquia: '4',
86
- Principal: '5',
87
- description(val) {
88
- switch (val) {
89
- case this.Cliente:
90
- return 'Cliente';
91
- case this.Entidade:
92
- return 'Entidade';
93
- case this.Parceiro:
94
- return 'Parceiro';
95
- case this.Franquia:
96
- return 'Franquia';
97
- case this.Principal:
98
- return 'Principal';
99
- default:
100
- return 'enum not found';
101
- }
102
- },
103
- };
104
- exports.TipoBanners = {
105
- Desktop: '1',
106
- Mobile: '2',
107
- description(val) {
108
- switch (val) {
109
- case this.Desktop:
110
- return 'Desktop';
111
- case this.Mobile:
112
- return 'Mobile';
113
- default:
114
- return 'enum not found';
115
- }
116
- },
117
- };
118
- exports.EstruturaNegocio = {
119
- Matriz: '0',
120
- Filial: '1',
121
- description(val) {
122
- switch (val) {
123
- case this.Matriz:
124
- return 'Matriz';
125
- case this.Filial:
126
- return 'Filial';
127
- default:
128
- return 'enum not found';
129
- }
130
- },
131
- };
@@ -1,13 +0,0 @@
1
- export declare const TipoRelatorio: {
2
- Resumido: string;
3
- Detalhado: string;
4
- description(val: string): "Resumido" | "Detalhado" | undefined;
5
- };
6
- export declare const AgrupamentoRelatorio: {
7
- Pessoa: string;
8
- Data: string;
9
- Produto: string;
10
- Documento: string;
11
- Vendedor: string;
12
- description(val: string): "Produto" | "Pessoa" | "Data" | "Documento" | "Vendedor" | undefined;
13
- };
@@ -1,36 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.AgrupamentoRelatorio = exports.TipoRelatorio = void 0;
4
- exports.TipoRelatorio = {
5
- Resumido: '1',
6
- Detalhado: '2',
7
- description(val) {
8
- switch (val) {
9
- case this.Resumido:
10
- return 'Resumido';
11
- case this.Detalhado:
12
- return 'Detalhado';
13
- }
14
- },
15
- };
16
- exports.AgrupamentoRelatorio = {
17
- Pessoa: '1',
18
- Data: '2',
19
- Produto: '3',
20
- Documento: '4',
21
- Vendedor: '5',
22
- description(val) {
23
- switch (val) {
24
- case this.Pessoa:
25
- return 'Pessoa';
26
- case this.Data:
27
- return 'Data';
28
- case this.Produto:
29
- return 'Produto';
30
- case this.Documento:
31
- return 'Documento';
32
- case this.Vendedor:
33
- return 'Vendedor';
34
- }
35
- },
36
- };