mdz-enum 1.1.21 → 1.1.22

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.
@@ -0,0 +1,64 @@
1
+ export declare const SituacaoPedido: {
2
+ Edicao: string;
3
+ Liberado: string;
4
+ Cancelado: string;
5
+ NotaPendente: string;
6
+ Faturado: string;
7
+ description(val: string): "Edição" | "Liberado" | "Cancelado" | "Nota Pendente" | "Faturado" | "enum not found";
8
+ };
9
+ export declare const OperacaoPedido: {
10
+ Orcamento: string;
11
+ Pedido: string;
12
+ description(val: string): "enum not found" | "Orcamento" | "Pedido";
13
+ };
14
+ export declare const OrigemPedido: {
15
+ Erp: string;
16
+ Ecommerce: string;
17
+ MercadoLivre: string;
18
+ description(val: string): "enum not found" | "Erp" | "Ecommerce" | "Mercado Livre";
19
+ };
20
+ export declare const TipoFrete: {
21
+ ContratacaoContaRemetente: string;
22
+ ContratacaoContaDestinatario: string;
23
+ ContratacaoTerceiros: string;
24
+ ProprioContaRemetente: string;
25
+ ProprioContaDestinatario: string;
26
+ SemFrete: string;
27
+ description(val: string): "enum not found" | "0-Contratação do Frete por conta do Remetente (CIF)" | "1-Contratação do Frete por conta do Destinatário (FOB)" | "2-Contratação do Frete por conta de Terceiros" | "3-Transporte Próprio por conta do Remetente" | "4-Transporte Próprio por conta do Destinatário" | "9-Sem Ocorrência de Transporte";
28
+ };
29
+ export declare const TipoDescontoPromocao: {
30
+ Valor: string;
31
+ Percentual: string;
32
+ description(val: string): "enum not found" | "Valor" | "Percentual";
33
+ };
34
+ export declare const TipoMarketplace: {
35
+ MercadoLivre: string;
36
+ Ecommerce: string;
37
+ All: string;
38
+ description(val: string): "enum not found" | "Ecommerce" | "Mercado Livre" | "Todas integrações";
39
+ };
40
+ export declare const SituacaoProdutoMarketplace: {
41
+ Pendente: string;
42
+ Publicado: string;
43
+ Erro: string;
44
+ Pausado: string;
45
+ Fechado: string;
46
+ description(val: string): "enum not found" | "Pendente a envio" | "Publicado" | "Erro" | "Pausado" | "Fechado";
47
+ };
48
+ export declare const StatusProcessoCarrinho: {
49
+ Pendente: string;
50
+ EmProcessamento: string;
51
+ Processado: string;
52
+ description(val: string): "enum not found" | "Pendente" | "Em processamento" | "Processado";
53
+ };
54
+ export declare const TipoAplicacaoTabelaPreco: {
55
+ Desconto: string;
56
+ Acrescimo: string;
57
+ description(val: string): "enum not found" | "Desconto" | "Acréscimo";
58
+ };
59
+ export declare const TipoValorTabelaPreco: {
60
+ Percentual: string;
61
+ ValorFixo: string;
62
+ ValorTotal: string;
63
+ description(val: string): "enum not found" | "Percentual" | "Valor fixo" | "Valor total";
64
+ };
@@ -0,0 +1,185 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.TipoValorTabelaPreco = exports.TipoAplicacaoTabelaPreco = exports.StatusProcessoCarrinho = exports.SituacaoProdutoMarketplace = exports.TipoMarketplace = exports.TipoDescontoPromocao = exports.TipoFrete = exports.OrigemPedido = exports.OperacaoPedido = exports.SituacaoPedido = void 0;
4
+ exports.SituacaoPedido = {
5
+ Edicao: '0',
6
+ Liberado: '1',
7
+ Cancelado: '2',
8
+ NotaPendente: '3',
9
+ Faturado: '4',
10
+ description(val) {
11
+ switch (val) {
12
+ case this.Edicao:
13
+ return 'Edição';
14
+ case this.Liberado:
15
+ return 'Liberado';
16
+ case this.Cancelado:
17
+ return 'Cancelado';
18
+ case this.NotaPendente:
19
+ return 'Nota Pendente';
20
+ case this.Faturado:
21
+ return 'Faturado';
22
+ default:
23
+ return 'enum not found';
24
+ }
25
+ },
26
+ };
27
+ exports.OperacaoPedido = {
28
+ Orcamento: '0',
29
+ Pedido: '1',
30
+ description(val) {
31
+ switch (val) {
32
+ case this.Orcamento:
33
+ return 'Orcamento';
34
+ case this.Pedido:
35
+ return 'Pedido';
36
+ default:
37
+ return 'enum not found';
38
+ }
39
+ },
40
+ };
41
+ exports.OrigemPedido = {
42
+ Erp: '0',
43
+ Ecommerce: '1',
44
+ MercadoLivre: '2',
45
+ description(val) {
46
+ switch (val) {
47
+ case this.Erp:
48
+ return 'Erp';
49
+ case this.Ecommerce:
50
+ return 'Ecommerce';
51
+ case this.MercadoLivre:
52
+ return 'Mercado Livre';
53
+ default:
54
+ return 'enum not found';
55
+ }
56
+ },
57
+ };
58
+ exports.TipoFrete = {
59
+ ContratacaoContaRemetente: '0',
60
+ ContratacaoContaDestinatario: '1',
61
+ ContratacaoTerceiros: '2',
62
+ ProprioContaRemetente: '3',
63
+ ProprioContaDestinatario: '4',
64
+ SemFrete: '9',
65
+ description(val) {
66
+ switch (val) {
67
+ case this.ContratacaoContaRemetente:
68
+ return '0-Contratação do Frete por conta do Remetente (CIF)';
69
+ case this.ContratacaoContaDestinatario:
70
+ return '1-Contratação do Frete por conta do Destinatário (FOB)';
71
+ case this.ContratacaoTerceiros:
72
+ return '2-Contratação do Frete por conta de Terceiros';
73
+ case this.ProprioContaRemetente:
74
+ return '3-Transporte Próprio por conta do Remetente';
75
+ case this.ProprioContaDestinatario:
76
+ return '4-Transporte Próprio por conta do Destinatário';
77
+ case this.SemFrete:
78
+ return '9-Sem Ocorrência de Transporte';
79
+ default:
80
+ return 'enum not found';
81
+ }
82
+ },
83
+ };
84
+ exports.TipoDescontoPromocao = {
85
+ Valor: '0',
86
+ Percentual: '1',
87
+ description(val) {
88
+ switch (val) {
89
+ case this.Valor:
90
+ return 'Valor';
91
+ case this.Percentual:
92
+ return 'Percentual';
93
+ default:
94
+ return 'enum not found';
95
+ }
96
+ },
97
+ };
98
+ exports.TipoMarketplace = {
99
+ MercadoLivre: '1',
100
+ Ecommerce: '2',
101
+ All: '3',
102
+ description(val) {
103
+ switch (val) {
104
+ case this.MercadoLivre:
105
+ return 'Mercado Livre';
106
+ case this.Ecommerce:
107
+ return 'Ecommerce';
108
+ case this.All:
109
+ return 'Todas integrações';
110
+ default:
111
+ return 'enum not found';
112
+ }
113
+ },
114
+ };
115
+ exports.SituacaoProdutoMarketplace = {
116
+ Pendente: '1',
117
+ Publicado: '2',
118
+ Erro: '3',
119
+ Pausado: '4',
120
+ Fechado: '5',
121
+ description(val) {
122
+ switch (val) {
123
+ case this.Pendente:
124
+ return 'Pendente a envio';
125
+ case this.Publicado:
126
+ return 'Publicado';
127
+ case this.Erro:
128
+ return 'Erro';
129
+ case this.Pausado:
130
+ return 'Pausado';
131
+ case this.Fechado:
132
+ return 'Fechado';
133
+ default:
134
+ return 'enum not found';
135
+ }
136
+ },
137
+ };
138
+ exports.StatusProcessoCarrinho = {
139
+ Pendente: '1',
140
+ EmProcessamento: '2',
141
+ Processado: '3',
142
+ description(val) {
143
+ switch (val) {
144
+ case this.Pendente:
145
+ return 'Pendente';
146
+ case this.EmProcessamento:
147
+ return 'Em processamento';
148
+ case this.Processado:
149
+ return 'Processado';
150
+ default:
151
+ return 'enum not found';
152
+ }
153
+ },
154
+ };
155
+ exports.TipoAplicacaoTabelaPreco = {
156
+ Desconto: '0',
157
+ Acrescimo: '1',
158
+ description(val) {
159
+ switch (val) {
160
+ case this.Desconto:
161
+ return 'Desconto';
162
+ case this.Acrescimo:
163
+ return 'Acréscimo';
164
+ default:
165
+ return 'enum not found';
166
+ }
167
+ },
168
+ };
169
+ exports.TipoValorTabelaPreco = {
170
+ Percentual: '0',
171
+ ValorFixo: '1',
172
+ ValorTotal: '2',
173
+ description(val) {
174
+ switch (val) {
175
+ case this.Percentual:
176
+ return 'Percentual';
177
+ case this.ValorFixo:
178
+ return 'Valor fixo';
179
+ case this.ValorTotal:
180
+ return 'Valor total';
181
+ default:
182
+ return 'enum not found';
183
+ }
184
+ },
185
+ };
@@ -0,0 +1,73 @@
1
+ export declare const TipoPermissao: {
2
+ Visualizacao: string;
3
+ Funcao: string;
4
+ description(val: string): "enum not found" | "Visualização" | "Função";
5
+ };
6
+ export declare const TipoDispositivo: {
7
+ Cliente: string;
8
+ Servidor: string;
9
+ description(val: string): "enum not found" | "Cliente" | "Servidor";
10
+ };
11
+ export declare const TipoPeriferico: {
12
+ Impressora: string;
13
+ Balanca: string;
14
+ Sat: string;
15
+ description(val: string): "enum not found" | "Impressora" | "Balanca" | "Sat";
16
+ };
17
+ export declare const ModeloSat: {
18
+ Bematech: string;
19
+ Gertec: string;
20
+ Urano: string;
21
+ Generica: string;
22
+ Sweda: string;
23
+ Tanca: string;
24
+ Dimep: string;
25
+ Nitere: string;
26
+ Elgin: string;
27
+ Care: string;
28
+ Epson: string;
29
+ ControlId: string;
30
+ description(val: string): "enum not found" | "Bematech" | "Gertec" | "Urano" | "Generica" | "Sweda" | "Tanca" | "Dimep" | "Nitere" | "Elgin" | "Care" | "Epson" | "ControlId";
31
+ };
32
+ export declare const VersaoLayoutSat: {
33
+ Layout007: string;
34
+ Layout008: string;
35
+ description(val: string): "enum not found" | "Layout 0.07" | "Layout 0.08";
36
+ };
37
+ export declare const ModoFinalizacao: {
38
+ ImprimirDireto: string;
39
+ SolicitarModal: string;
40
+ description(val: string): "enum not found" | "Imprimir Direto" | "Solicitar Compartilhamento";
41
+ };
42
+ export declare const TipoPrecoPadrao: {
43
+ Varejo: string;
44
+ Atacado: string;
45
+ description(val: string): "enum not found" | "Varejo" | "Atacado";
46
+ };
47
+ export declare const TipoEtiqueta: {
48
+ Produto: string;
49
+ Pedido: string;
50
+ description(val: string): "enum not found" | "Pedido" | "Produto";
51
+ };
52
+ export declare const ModeloEtiqueta: {
53
+ Personalizada: string;
54
+ PreDefinida: string;
55
+ description(val: string): "enum not found" | "Pré Definida" | "Personalizada";
56
+ };
57
+ export declare const ParametroEtiquetaProduto: {
58
+ Sku: string;
59
+ DescricaoProduto: string;
60
+ CodigoBarras: string;
61
+ Marca: string;
62
+ VariacaoA: string;
63
+ VariacaoB: string;
64
+ PrecoVarejo: string;
65
+ PrecoAtacado: string;
66
+ PrecoVarProm: string;
67
+ PrecoAtacProm: string;
68
+ description(val: string): "enum not found" | "Sku" | "Descrição" | "Codigo de Barras" | "Marca" | "Variação A" | "Variação B" | "Preço Varejo" | "Preço Atacado" | "Preço Varejo Promocional" | "Preço Atacado Promocional";
69
+ };
70
+ export declare const ModeloPimaco: {
71
+ A4351: string;
72
+ description(val: string): "enum not found" | "A4351";
73
+ };
@@ -0,0 +1,211 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ModeloPimaco = exports.ParametroEtiquetaProduto = exports.ModeloEtiqueta = exports.TipoEtiqueta = exports.TipoPrecoPadrao = exports.ModoFinalizacao = exports.VersaoLayoutSat = exports.ModeloSat = exports.TipoPeriferico = exports.TipoDispositivo = exports.TipoPermissao = void 0;
4
+ exports.TipoPermissao = {
5
+ Visualizacao: '1',
6
+ Funcao: '2',
7
+ description(val) {
8
+ switch (val) {
9
+ case this.Visualizacao:
10
+ return 'Visualização';
11
+ case this.Funcao:
12
+ return 'Função';
13
+ default:
14
+ return 'enum not found';
15
+ }
16
+ },
17
+ };
18
+ exports.TipoDispositivo = {
19
+ Cliente: '1',
20
+ Servidor: '2',
21
+ description(val) {
22
+ switch (val) {
23
+ case this.Cliente:
24
+ return 'Cliente';
25
+ case this.Servidor:
26
+ return 'Servidor';
27
+ default:
28
+ return 'enum not found';
29
+ }
30
+ },
31
+ };
32
+ exports.TipoPeriferico = {
33
+ Impressora: '1',
34
+ Balanca: '2',
35
+ Sat: '3',
36
+ description(val) {
37
+ switch (val) {
38
+ case this.Impressora:
39
+ return 'Impressora';
40
+ case this.Balanca:
41
+ return 'Balanca';
42
+ case this.Sat:
43
+ return 'Sat';
44
+ default:
45
+ return 'enum not found';
46
+ }
47
+ },
48
+ };
49
+ exports.ModeloSat = {
50
+ Bematech: '1',
51
+ Gertec: '2',
52
+ Urano: '3',
53
+ Generica: '4',
54
+ Sweda: '5',
55
+ Tanca: '6',
56
+ Dimep: '7',
57
+ Nitere: '9',
58
+ Elgin: '10',
59
+ Care: '11',
60
+ Epson: '12',
61
+ ControlId: '13',
62
+ description(val) {
63
+ switch (val) {
64
+ case this.Bematech:
65
+ return 'Bematech';
66
+ case this.Gertec:
67
+ return 'Gertec';
68
+ case this.Urano:
69
+ return 'Urano';
70
+ case this.Generica:
71
+ return 'Generica';
72
+ case this.Sweda:
73
+ return 'Sweda';
74
+ case this.Tanca:
75
+ return 'Tanca';
76
+ case this.Dimep:
77
+ return 'Dimep';
78
+ case this.Nitere:
79
+ return 'Nitere';
80
+ case this.Elgin:
81
+ return 'Elgin';
82
+ case this.Care:
83
+ return 'Care';
84
+ case this.Epson:
85
+ return 'Epson';
86
+ case this.ControlId:
87
+ return 'ControlId';
88
+ default:
89
+ return 'enum not found';
90
+ }
91
+ },
92
+ };
93
+ exports.VersaoLayoutSat = {
94
+ Layout007: '0.07',
95
+ Layout008: '0.08',
96
+ description(val) {
97
+ switch (val) {
98
+ case this.Layout007:
99
+ return 'Layout 0.07';
100
+ case this.Layout008:
101
+ return 'Layout 0.08';
102
+ default:
103
+ return 'enum not found';
104
+ }
105
+ },
106
+ };
107
+ exports.ModoFinalizacao = {
108
+ ImprimirDireto: '1',
109
+ SolicitarModal: '2',
110
+ description(val) {
111
+ switch (val) {
112
+ case this.ImprimirDireto:
113
+ return 'Imprimir Direto';
114
+ case this.SolicitarModal:
115
+ return 'Solicitar Compartilhamento';
116
+ default:
117
+ return 'enum not found';
118
+ }
119
+ },
120
+ };
121
+ exports.TipoPrecoPadrao = {
122
+ Varejo: '0',
123
+ Atacado: '1',
124
+ description(val) {
125
+ switch (val) {
126
+ case this.Varejo:
127
+ return 'Varejo';
128
+ case this.Atacado:
129
+ return 'Atacado';
130
+ default:
131
+ return 'enum not found';
132
+ }
133
+ },
134
+ };
135
+ exports.TipoEtiqueta = {
136
+ Produto: '1',
137
+ Pedido: '2',
138
+ description(val) {
139
+ switch (val) {
140
+ case this.Produto:
141
+ return 'Produto';
142
+ case this.Pedido:
143
+ return 'Pedido';
144
+ default:
145
+ return 'enum not found';
146
+ }
147
+ },
148
+ };
149
+ exports.ModeloEtiqueta = {
150
+ Personalizada: '1',
151
+ PreDefinida: '2',
152
+ description(val) {
153
+ switch (val) {
154
+ case this.PreDefinida:
155
+ return 'Pré Definida';
156
+ case this.Personalizada:
157
+ return 'Personalizada';
158
+ default:
159
+ return 'enum not found';
160
+ }
161
+ },
162
+ };
163
+ exports.ParametroEtiquetaProduto = {
164
+ Sku: '1',
165
+ DescricaoProduto: '2',
166
+ CodigoBarras: '3',
167
+ Marca: '4',
168
+ VariacaoA: '5',
169
+ VariacaoB: '6',
170
+ PrecoVarejo: '7',
171
+ PrecoAtacado: '8',
172
+ PrecoVarProm: '9',
173
+ PrecoAtacProm: '10',
174
+ description(val) {
175
+ switch (val) {
176
+ case this.Sku:
177
+ return 'Sku';
178
+ case this.DescricaoProduto:
179
+ return 'Descrição';
180
+ case this.CodigoBarras:
181
+ return 'Codigo de Barras';
182
+ case this.Marca:
183
+ return 'Marca';
184
+ case this.VariacaoA:
185
+ return 'Variação A';
186
+ case this.VariacaoB:
187
+ return 'Variação B';
188
+ case this.PrecoVarejo:
189
+ return 'Preço Varejo';
190
+ case this.PrecoAtacado:
191
+ return 'Preço Atacado';
192
+ case this.PrecoVarProm:
193
+ return 'Preço Varejo Promocional';
194
+ case this.PrecoAtacProm:
195
+ return 'Preço Atacado Promocional';
196
+ default:
197
+ return 'enum not found';
198
+ }
199
+ },
200
+ };
201
+ exports.ModeloPimaco = {
202
+ A4351: '0',
203
+ description(val) {
204
+ switch (val) {
205
+ case this.A4351:
206
+ return 'A4351';
207
+ default:
208
+ return 'enum not found';
209
+ }
210
+ },
211
+ };
@@ -0,0 +1,112 @@
1
+ export declare const MeioPagamento: {
2
+ Dinheiro: string;
3
+ Cheque: string;
4
+ CartaoCredito: string;
5
+ CartaoDebito: string;
6
+ CreditoLoja: string;
7
+ ValeAlimentacao: string;
8
+ ValeRefeicao: string;
9
+ ValePresente: string;
10
+ ValeCombustivel: string;
11
+ BoletoBancario: string;
12
+ DepositoBancario: string;
13
+ PIX: string;
14
+ TransferenciaBancaria: string;
15
+ ProgramaFidelidade: string;
16
+ SemPagamento: string;
17
+ Outros: string;
18
+ description(val: string): "enum not found" | "Dinheiro" | "Cheque" | "Cartão de Crédito" | "Cartão de Débito" | "Crédito Loja" | "Vale Alimentação" | "Vale Refeição" | "Vale Presente" | "Vale Combustível" | "Boleto Bancário" | "Depósito Bancário" | "PIX" | "Transferência Bancária" | "Programa de Fidelidade" | "Sem Pagamento" | "Outros";
19
+ };
20
+ export declare const IndicadorFormaPagamento: {
21
+ PagamentoAVista: string;
22
+ PagamentoAPrazo: string;
23
+ description(val: string): "enum not found" | "Pagamento à Vista" | "Pagamento à Prazo";
24
+ };
25
+ export declare const OperacaoOperadoraCartao: {
26
+ Credito: string;
27
+ Debito: string;
28
+ description(val: string): "enum not found" | "Crédito" | "Débito";
29
+ };
30
+ export declare const BandeiraCartao: {
31
+ Visa: string;
32
+ Mastercard: string;
33
+ AmericanExpress: string;
34
+ Sorocred: string;
35
+ DinersClub: string;
36
+ Elo: string;
37
+ Hipercard: string;
38
+ Aura: string;
39
+ Cabal: string;
40
+ Outros: string;
41
+ description(val: string): "enum not found" | "Outros" | "Visa" | "Mastercard" | "American Express" | "Sorocred" | "Diners Club" | "Elo" | "Hipercard" | "Aura" | "Cabal";
42
+ };
43
+ export declare const TipoCalculoParcelamento: {
44
+ Simples: string;
45
+ Composto: string;
46
+ description(val: string): "enum not found" | "Simples" | "Composto";
47
+ };
48
+ export declare const TipoPromocao: {
49
+ Percentual: string;
50
+ Valor: string;
51
+ description(val: string): "enum not found" | "Valor" | "Percentual";
52
+ };
53
+ export declare const SituacaoDocumentoFinanceiro: {
54
+ Aberto: string;
55
+ Quitado: string;
56
+ Estornado: string;
57
+ description(val: string): "enum not found" | "Aberto" | "Quitado" | "Estornado";
58
+ };
59
+ export declare const TipoDataDocumentoFinanceiro: {
60
+ Emissao: string;
61
+ Quitacao: string;
62
+ Vencimento: string;
63
+ description(val: string): "enum not found" | "Emissão" | "Quitação" | "Vencimento";
64
+ };
65
+ export declare const TipoLancamentoDocumentoFinanceiro: {
66
+ Abertura: string;
67
+ Pagamento: string;
68
+ Desconto: string;
69
+ Acrescimo: string;
70
+ Juros: string;
71
+ Multa: string;
72
+ description(val: string): "enum not found" | "Desconto" | "Acréscimo" | "Abertura" | "Pagamento" | "Juros" | "Multa";
73
+ };
74
+ export declare const TipoCaixaOperacao: {
75
+ Abertura: string;
76
+ Entrada: string;
77
+ Saida: string;
78
+ Recebimento: string;
79
+ Pagamento: string;
80
+ Compra: string;
81
+ Venda: string;
82
+ Fechamento: string;
83
+ description(val: string): "enum not found" | "Abertura" | "Pagamento" | "Entrada" | "Saída" | "Recebimento" | "Compra" | "Venda" | "Fechamento";
84
+ };
85
+ export declare const SituacaoCaixa: {
86
+ Aberto: string;
87
+ Fechado: string;
88
+ FechadoComDiferenca: string;
89
+ description(val: string): "enum not found" | "Fechado" | "Aberto" | "Fechado com Diferença";
90
+ };
91
+ export declare const TipoValorConfiguracaoBoleto: {
92
+ Percentual: string;
93
+ Valor: string;
94
+ description(val: string): "enum not found" | "Valor" | "Percentual";
95
+ };
96
+ export declare const SituacaoBoleto: {
97
+ Pendente: string;
98
+ Pago: string;
99
+ Cancelado: string;
100
+ Vencido: string;
101
+ description(val: string): "Cancelado" | "enum not found" | "Pendente" | "Pago" | "Vencido";
102
+ };
103
+ export declare const SituacaoConciliacao: {
104
+ NaoConciliado: string;
105
+ Conciliado: string;
106
+ description(val: string): "enum not found" | "Não Conciliado" | "Conciliado";
107
+ };
108
+ export declare const TipoCalculoTaxaCartaoCredito: {
109
+ PercentualCadaParcela: string;
110
+ PercentualSobreParcelasAnteriores: string;
111
+ description(val: string): "enum not found" | "Percentual para cada parcela" | "Percentual sobre todas parcelas anteriores";
112
+ };