mdz-enum 1.6.34 → 1.6.35

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.
Files changed (42) hide show
  1. package/README.MD +7 -7
  2. package/dist/checkout/index.d.ts +33 -33
  3. package/dist/checkout/index.js +97 -97
  4. package/dist/commercial/index.d.ts +245 -243
  5. package/dist/commercial/index.js +601 -595
  6. package/dist/common/index.d.ts +59 -59
  7. package/dist/common/index.js +171 -171
  8. package/dist/config/index.d.ts +182 -182
  9. package/dist/config/index.js +525 -525
  10. package/dist/eva/index.d.ts +142 -142
  11. package/dist/eva/index.js +170 -170
  12. package/dist/finance/index.d.ts +207 -207
  13. package/dist/finance/index.js +549 -549
  14. package/dist/fiscal/index.d.ts +536 -536
  15. package/dist/fiscal/index.js +1356 -1356
  16. package/dist/functions.d.ts +11 -11
  17. package/dist/functions.js +74 -74
  18. package/dist/general/index.d.ts +265 -265
  19. package/dist/general/index.js +512 -512
  20. package/dist/index.d.ts +15 -15
  21. package/dist/index.js +246 -246
  22. package/dist/integration/index.d.ts +27 -27
  23. package/dist/integration/index.js +80 -80
  24. package/dist/logistics/index.d.ts +142 -142
  25. package/dist/logistics/index.js +410 -410
  26. package/dist/marketplace/templates/components/index.d.ts +306 -306
  27. package/dist/marketplace/templates/components/index.js +331 -331
  28. package/dist/marketplace/templates/elements/index.d.ts +32 -32
  29. package/dist/marketplace/templates/elements/index.js +35 -35
  30. package/dist/marketplace/templates/index.d.ts +523 -526
  31. package/dist/marketplace/templates/index.js +48 -48
  32. package/dist/marketplace/templates/pages/index.d.ts +233 -233
  33. package/dist/marketplace/templates/pages/index.js +413 -413
  34. package/dist/marketplace/templates/reference/index.d.ts +24 -24
  35. package/dist/marketplace/templates/reference/index.js +26 -26
  36. package/dist/people/index.d.ts +62 -62
  37. package/dist/people/index.js +180 -180
  38. package/dist/platform/index.d.ts +207 -207
  39. package/dist/platform/index.js +600 -600
  40. package/dist/reports/index.d.ts +95 -95
  41. package/dist/reports/index.js +278 -278
  42. package/package.json +33 -33
@@ -1,243 +1,245 @@
1
- export declare const SituacaoPedido: {
2
- Edicao: string;
3
- Liberado: string;
4
- Cancelado: string;
5
- NotaPendente: string;
6
- Faturado: string;
7
- Pendente: string;
8
- EnviadoCliente: string;
9
- RetornoCliente: string;
10
- AguardandoConclusao: string;
11
- Concluida: string;
12
- description(val: string): "enum not found" | "Edição" | "Liberado" | "Cancelado" | "Nota Pendente" | "Faturado" | "Pendente" | "Enviado ao Cliente" | "Retorno do Cliente" | "Aguardando Conclusão" | "Concluída";
13
- };
14
- export declare const OperacaoPedido: {
15
- Orcamento: string;
16
- Pedido: string;
17
- Consignacao: string;
18
- Compra: string;
19
- OrdemServico: string;
20
- description(val: string): "enum not found" | "Consignação" | "Pedido" | "Orçamento" | "Pedido de Compra" | "Ordem de Serviço";
21
- };
22
- export declare const OrigemPedido: {
23
- Erp: string;
24
- Ecommerce: string;
25
- MercadoLivre: string;
26
- PDV: string;
27
- Tray: string;
28
- MagazineLuiza: string;
29
- Amazon: string;
30
- Shopee: string;
31
- description(val: string): "enum not found" | "PDV" | "Erp" | "Ecommerce" | "Mercado Livre" | "Tray" | "Magazine Luiza" | "Amazon" | "Shopee";
32
- };
33
- export declare const TipoFrete: {
34
- ContratacaoContaRemetente: string;
35
- ContratacaoContaDestinatario: string;
36
- ContratacaoTerceiros: string;
37
- ProprioContaRemetente: string;
38
- ProprioContaDestinatario: string;
39
- SemFrete: string;
40
- 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";
41
- };
42
- export declare const TipoDescontoPromocao: {
43
- Valor: string;
44
- Percentual: string;
45
- description(val: string): "enum not found" | "Percentual" | "Valor";
46
- };
47
- export declare const TipoMarketplace: {
48
- Marcketplace: string;
49
- Ecommerce: string;
50
- All: string;
51
- description(val: string): "enum not found" | "Ecommerce" | "Marcketplace" | "Todas integrações";
52
- };
53
- export declare const SituacaoProdutoMarketplace: {
54
- Pendente: string;
55
- Publicado: string;
56
- Erro: string;
57
- Pausado: string;
58
- Fechado: string;
59
- description(val: string): "enum not found" | "Pendente de envio" | "Publicado" | "Erro" | "Pausado" | "Fechado";
60
- };
61
- export declare const StatusProcessoCarrinho: {
62
- Pendente: string;
63
- EmProcessamento: string;
64
- Processado: string;
65
- description(val: string): "enum not found" | "Pendente" | "Em processamento" | "Processado";
66
- };
67
- export declare const TipoAplicacaoTabelaPreco: {
68
- Desconto: string;
69
- Acrescimo: string;
70
- description(val: string): "enum not found" | "Desconto" | "Acréscimo";
71
- };
72
- export declare const TipoValorTabelaPreco: {
73
- Percentual: string;
74
- ValorFixo: string;
75
- ValorTotal: string;
76
- description(val: string): "enum not found" | "Percentual" | "Valor fixo" | "Valor total";
77
- };
78
- export declare const TipoGrupoComissao: {
79
- Vendedores: string;
80
- description(val: string): "enum not found" | "Vendedores";
81
- };
82
- export declare const MotivoPedido: {
83
- SemEstoque: string;
84
- AusenciaPagamento: string;
85
- description(val: string): "enum not found" | "Sem Estoque" | "Ausencia de pagamento";
86
- };
87
- export declare const SituacaoItemConsignacao: {
88
- PendenteEnvio: string;
89
- Faturado: string;
90
- EnviadoCliente: string;
91
- RetornoCliente: string;
92
- RetornoClienteParcial: string;
93
- AguardandoFaturamento: string;
94
- description(val: string): "enum not found" | "Faturado" | "Enviado ao Cliente" | "Retorno do Cliente" | "Pendente de Envio" | "Retorno Parcial do Cliente" | "Aguardando Faturamento";
95
- };
96
- export declare const TipoDataPedido: {
97
- DataCadastro: string;
98
- DataAlteracao: string;
99
- DataEntrega: string;
100
- DataPrevisaoRetorno: string;
101
- DataConclusao: string;
102
- description(val: string): "enum not found" | "Data de Cadastro" | "Data de Alteração" | "Data de Entrega" | "Data de Previsão de Retorno" | "Data de Conclusão";
103
- };
104
- export declare const ModalConsignacaoOperacao: {
105
- EnviarAoCliente: string;
106
- Finalizar: string;
107
- Concluir: string;
108
- Vender: string;
109
- Cancelar: string;
110
- RetornoCliente: string;
111
- description(val: string): "enum not found" | "Retorno do Cliente" | "Enviar ao Cliente" | "Finalizar" | "Concluir" | "Vender" | "Cancelar";
112
- };
113
- export declare const TipoIntegracaoFrete: {
114
- Frenet: string;
115
- MelhorEnvio: string;
116
- description(val: string): "enum not found" | "Frenet" | "Melhor Envio";
117
- };
118
- export declare const SituacaoOperacao: {
119
- EmEdicao: string;
120
- Pendente: string;
121
- Processado: string;
122
- EmProcessamento: string;
123
- Erro: string;
124
- description(val: string): "enum not found" | "Pendente" | "Erro" | "Em processamento" | "Processado" | "Em edição";
125
- };
126
- export declare const EtapaOperacao: {
127
- Pendente: string;
128
- Salvo: string;
129
- Processado: string;
130
- description(val: string): "enum not found" | "Pendente" | "Processado" | "Salvo";
131
- };
132
- export declare const SituacaoPagamento: {
133
- Pendente: string;
134
- Autorizado: string;
135
- Recusado: string;
136
- Combinar: string;
137
- Informado: string;
138
- description(val: string): "enum not found" | "Pagamento pendente" | "Pagamento autorizado" | "Pagamento recusado" | "Pagamento a combinar" | "Pagamento informado";
139
- };
140
- export declare const SituacaoEntrega: {
141
- Aguardando: string;
142
- Postado: string;
143
- EmTransporte: string;
144
- Entregue: string;
145
- Combinar: string;
146
- description(val: string): "enum not found" | "Aguardando envio" | "Objeto postado" | "Objeto em transporte" | "Objeto entregue" | "Entrega a combinar";
147
- };
148
- export declare const SituacaoEtiqueta: {
149
- Pendente: string;
150
- Criada: string;
151
- Paga: string;
152
- Gerada: string;
153
- Impressa: string;
154
- description(val: string): "enum not found" | "Etiqueta Pendente" | "Etiqueta Criada" | "Etiqueta Paga" | "Etiqueta Gerada" | "Etiqueta Impressa";
155
- };
156
- export declare const MotivoDevolucao: {
157
- ProdutoAmassadoOuViolado: string;
158
- NaoReconheçoEstaCompra: string;
159
- MeArrependiDaCompra: string;
160
- ProdutoDiferente: string;
161
- ProdutoComDefeito: string;
162
- description(val: string): "enum not found" | "Pedido amassado ou violado" | "Não reconheço está compra" | "Me arrependi da compra" | "Produto diferente" | "Produto com defeito";
163
- };
164
- export declare const SituacaoDevolucao: {
165
- Pendente: string;
166
- Aprovado: string;
167
- Recusado: string;
168
- Faturado: string;
169
- description(val: string): "enum not found" | "Faturado" | "Pendente" | "Aprovado" | "Recusado";
170
- };
171
- export declare const SituacaoDevolucaoPedido: {
172
- Pendente: string;
173
- Liberado: string;
174
- Finalizado: string;
175
- description(val: string): "enum not found" | "Liberado" | "Pendente" | "Finalizado";
176
- };
177
- export declare const VariaveisPedido: {
178
- DataEmissao: {
179
- Descricao: string;
180
- Chave: string;
181
- Tipo: string;
182
- Aplicacao: string;
183
- };
184
- Numero: {
185
- Descricao: string;
186
- Chave: string;
187
- Tipo: string;
188
- Aplicacao: string;
189
- };
190
- ValorTotal: {
191
- Descricao: string;
192
- Chave: string;
193
- Tipo: string;
194
- Aplicacao: string;
195
- };
196
- Cliente: {
197
- Descricao: string;
198
- Chave: string;
199
- Tipo: string;
200
- Aplicacao: string;
201
- };
202
- EnderecoRua: {
203
- Descricao: string;
204
- Chave: string;
205
- Tipo: string;
206
- Aplicacao: string;
207
- };
208
- EnderecoNumero: {
209
- Descricao: string;
210
- Chave: string;
211
- Tipo: string;
212
- Aplicacao: string;
213
- };
214
- EnderecoComplemento: {
215
- Descricao: string;
216
- Chave: string;
217
- Tipo: string;
218
- Aplicacao: string;
219
- };
220
- EnderecoBairro: {
221
- Descricao: string;
222
- Chave: string;
223
- Tipo: string;
224
- Aplicacao: string;
225
- };
226
- EnderecoCep: {
227
- Descricao: string;
228
- Chave: string;
229
- Tipo: string;
230
- Aplicacao: string;
231
- };
232
- };
233
- export declare const TipoCalculoCusto: {
234
- MarkupPrecoVenda: string;
235
- MarkupPrecoCusto: string;
236
- description(val: string): "enum not found" | "Percentual sobre a venda" | "Percentual sobre o custo";
237
- };
238
- export declare const TipoDescontoPedido: {
239
- Produtos: string;
240
- Servicos: string;
241
- Subtotal: string;
242
- description(val: string): "enum not found" | "Produtos" | "Serviços" | "Subtotal";
243
- };
1
+ export declare const SituacaoPedido: {
2
+ Edicao: string;
3
+ Liberado: string;
4
+ Cancelado: string;
5
+ NotaPendente: string;
6
+ Faturado: string;
7
+ Pendente: string;
8
+ EnviadoCliente: string;
9
+ RetornoCliente: string;
10
+ AguardandoConclusao: string;
11
+ Concluida: string;
12
+ description(val: string): "enum not found" | "Edição" | "Liberado" | "Cancelado" | "Nota Pendente" | "Faturado" | "Pendente" | "Enviado ao Cliente" | "Retorno do Cliente" | "Aguardando Conclusão" | "Concluída";
13
+ };
14
+ export declare const OperacaoPedido: {
15
+ Orcamento: string;
16
+ Pedido: string;
17
+ Consignacao: string;
18
+ Compra: string;
19
+ OrdemServico: string;
20
+ description(val: string): "enum not found" | "Consignação" | "Pedido" | "Orçamento" | "Pedido de Compra" | "Ordem de Serviço";
21
+ };
22
+ export declare const OrigemPedido: {
23
+ Erp: string;
24
+ Ecommerce: string;
25
+ MercadoLivre: string;
26
+ PDV: string;
27
+ Tray: string;
28
+ MagazineLuiza: string;
29
+ Amazon: string;
30
+ Shopee: string;
31
+ description(val: string): "enum not found" | "PDV" | "Erp" | "Ecommerce" | "Mercado Livre" | "Tray" | "Magazine Luiza" | "Amazon" | "Shopee";
32
+ };
33
+ export declare const TipoFrete: {
34
+ ContratacaoContaRemetente: string;
35
+ ContratacaoContaDestinatario: string;
36
+ ContratacaoTerceiros: string;
37
+ ProprioContaRemetente: string;
38
+ ProprioContaDestinatario: string;
39
+ SemFrete: string;
40
+ 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";
41
+ };
42
+ export declare const TipoDescontoPromocao: {
43
+ Valor: string;
44
+ Percentual: string;
45
+ description(val: string): "enum not found" | "Percentual" | "Valor";
46
+ };
47
+ export declare const TipoMarketplace: {
48
+ Marcketplace: string;
49
+ Ecommerce: string;
50
+ All: string;
51
+ description(val: string): "enum not found" | "Ecommerce" | "Marcketplace" | "Todas integrações";
52
+ };
53
+ export declare const SituacaoProdutoMarketplace: {
54
+ Pendente: string;
55
+ Publicado: string;
56
+ Erro: string;
57
+ Pausado: string;
58
+ Fechado: string;
59
+ description(val: string): "enum not found" | "Pendente de envio" | "Publicado" | "Erro" | "Pausado" | "Fechado";
60
+ };
61
+ export declare const StatusProcessoCarrinho: {
62
+ Pendente: string;
63
+ EmProcessamento: string;
64
+ Processado: string;
65
+ description(val: string): "enum not found" | "Pendente" | "Em processamento" | "Processado";
66
+ };
67
+ export declare const TipoAplicacaoTabelaPreco: {
68
+ Desconto: string;
69
+ Acrescimo: string;
70
+ description(val: string): "enum not found" | "Desconto" | "Acréscimo";
71
+ };
72
+ export declare const TipoValorTabelaPreco: {
73
+ Percentual: string;
74
+ ValorFixo: string;
75
+ ValorTotal: string;
76
+ description(val: string): "enum not found" | "Percentual" | "Valor fixo" | "Valor total";
77
+ };
78
+ export declare const TipoGrupoComissao: {
79
+ Vendedores: string;
80
+ description(val: string): "enum not found" | "Vendedores";
81
+ };
82
+ export declare const MotivoPedido: {
83
+ SemEstoque: string;
84
+ AusenciaPagamento: string;
85
+ description(val: string): "enum not found" | "Sem Estoque" | "Ausencia de pagamento";
86
+ };
87
+ export declare const SituacaoItemConsignacao: {
88
+ PendenteEnvio: string;
89
+ Faturado: string;
90
+ EnviadoCliente: string;
91
+ RetornoCliente: string;
92
+ RetornoClienteParcial: string;
93
+ AguardandoFaturamento: string;
94
+ description(val: string): "enum not found" | "Faturado" | "Enviado ao Cliente" | "Retorno do Cliente" | "Pendente de Envio" | "Retorno Parcial do Cliente" | "Aguardando Faturamento";
95
+ };
96
+ export declare const TipoDataPedido: {
97
+ DataCadastro: string;
98
+ DataAlteracao: string;
99
+ DataEntrega: string;
100
+ DataPrevisaoRetorno: string;
101
+ DataConclusao: string;
102
+ description(val: string): "enum not found" | "Data de Cadastro" | "Data de Alteração" | "Data de Entrega" | "Data de Previsão de Retorno" | "Data de Conclusão";
103
+ };
104
+ export declare const ModalConsignacaoOperacao: {
105
+ EnviarAoCliente: string;
106
+ Finalizar: string;
107
+ Concluir: string;
108
+ Vender: string;
109
+ Cancelar: string;
110
+ RetornoCliente: string;
111
+ description(val: string): "enum not found" | "Retorno do Cliente" | "Enviar ao Cliente" | "Finalizar" | "Concluir" | "Vender" | "Cancelar";
112
+ };
113
+ export declare const TipoIntegracaoFrete: {
114
+ Frenet: string;
115
+ MelhorEnvio: string;
116
+ description(val: string): "enum not found" | "Frenet" | "Melhor Envio";
117
+ };
118
+ export declare const SituacaoOperacao: {
119
+ EmEdicao: string;
120
+ Pendente: string;
121
+ Processado: string;
122
+ EmProcessamento: string;
123
+ Erro: string;
124
+ description(val: string): "enum not found" | "Pendente" | "Erro" | "Em processamento" | "Processado" | "Em edição";
125
+ };
126
+ export declare const EtapaOperacao: {
127
+ Pendente: string;
128
+ Salvo: string;
129
+ Processado: string;
130
+ description(val: string): "enum not found" | "Pendente" | "Processado" | "Salvo";
131
+ };
132
+ export declare const SituacaoPagamento: {
133
+ Pendente: string;
134
+ Autorizado: string;
135
+ Recusado: string;
136
+ Combinar: string;
137
+ Informado: string;
138
+ description(val: string): "enum not found" | "Pagamento pendente" | "Pagamento autorizado" | "Pagamento recusado" | "Pagamento a combinar" | "Pagamento informado";
139
+ };
140
+ export declare const SituacaoEntrega: {
141
+ Aguardando: string;
142
+ Postado: string;
143
+ EmTransporte: string;
144
+ Entregue: string;
145
+ Combinar: string;
146
+ EmEdicao: string;
147
+ Recusado: string;
148
+ description(val: string): "enum not found" | "Aguardando envio" | "Objeto postado" | "Objeto em transporte" | "Objeto entregue" | "Entrega a combinar" | "Entrega em edição" | "Entrega recusada";
149
+ };
150
+ export declare const SituacaoEtiqueta: {
151
+ Pendente: string;
152
+ Criada: string;
153
+ Paga: string;
154
+ Gerada: string;
155
+ Impressa: string;
156
+ description(val: string): "enum not found" | "Etiqueta Pendente" | "Etiqueta Criada" | "Etiqueta Paga" | "Etiqueta Gerada" | "Etiqueta Impressa";
157
+ };
158
+ export declare const MotivoDevolucao: {
159
+ ProdutoAmassadoOuViolado: string;
160
+ NaoReconheçoEstaCompra: string;
161
+ MeArrependiDaCompra: string;
162
+ ProdutoDiferente: string;
163
+ ProdutoComDefeito: string;
164
+ description(val: string): "enum not found" | "Pedido amassado ou violado" | "Não reconheço está compra" | "Me arrependi da compra" | "Produto diferente" | "Produto com defeito";
165
+ };
166
+ export declare const SituacaoDevolucao: {
167
+ Pendente: string;
168
+ Aprovado: string;
169
+ Recusado: string;
170
+ Faturado: string;
171
+ description(val: string): "enum not found" | "Faturado" | "Pendente" | "Aprovado" | "Recusado";
172
+ };
173
+ export declare const SituacaoDevolucaoPedido: {
174
+ Pendente: string;
175
+ Liberado: string;
176
+ Finalizado: string;
177
+ description(val: string): "enum not found" | "Liberado" | "Pendente" | "Finalizado";
178
+ };
179
+ export declare const VariaveisPedido: {
180
+ DataEmissao: {
181
+ Descricao: string;
182
+ Chave: string;
183
+ Tipo: string;
184
+ Aplicacao: string;
185
+ };
186
+ Numero: {
187
+ Descricao: string;
188
+ Chave: string;
189
+ Tipo: string;
190
+ Aplicacao: string;
191
+ };
192
+ ValorTotal: {
193
+ Descricao: string;
194
+ Chave: string;
195
+ Tipo: string;
196
+ Aplicacao: string;
197
+ };
198
+ Cliente: {
199
+ Descricao: string;
200
+ Chave: string;
201
+ Tipo: string;
202
+ Aplicacao: string;
203
+ };
204
+ EnderecoRua: {
205
+ Descricao: string;
206
+ Chave: string;
207
+ Tipo: string;
208
+ Aplicacao: string;
209
+ };
210
+ EnderecoNumero: {
211
+ Descricao: string;
212
+ Chave: string;
213
+ Tipo: string;
214
+ Aplicacao: string;
215
+ };
216
+ EnderecoComplemento: {
217
+ Descricao: string;
218
+ Chave: string;
219
+ Tipo: string;
220
+ Aplicacao: string;
221
+ };
222
+ EnderecoBairro: {
223
+ Descricao: string;
224
+ Chave: string;
225
+ Tipo: string;
226
+ Aplicacao: string;
227
+ };
228
+ EnderecoCep: {
229
+ Descricao: string;
230
+ Chave: string;
231
+ Tipo: string;
232
+ Aplicacao: string;
233
+ };
234
+ };
235
+ export declare const TipoCalculoCusto: {
236
+ MarkupPrecoVenda: string;
237
+ MarkupPrecoCusto: string;
238
+ description(val: string): "enum not found" | "Percentual sobre a venda" | "Percentual sobre o custo";
239
+ };
240
+ export declare const TipoDescontoPedido: {
241
+ Produtos: string;
242
+ Servicos: string;
243
+ Subtotal: string;
244
+ description(val: string): "enum not found" | "Produtos" | "Serviços" | "Subtotal";
245
+ };