mdz-enum 1.6.33 → 1.6.34

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 (41) hide show
  1. package/dist/checkout/index.d.ts +33 -33
  2. package/dist/checkout/index.js +97 -97
  3. package/dist/commercial/index.d.ts +243 -243
  4. package/dist/commercial/index.js +595 -595
  5. package/dist/common/index.d.ts +59 -59
  6. package/dist/common/index.js +171 -171
  7. package/dist/config/index.d.ts +182 -182
  8. package/dist/config/index.js +525 -525
  9. package/dist/eva/index.d.ts +142 -142
  10. package/dist/eva/index.js +170 -170
  11. package/dist/finance/index.d.ts +207 -207
  12. package/dist/finance/index.js +549 -549
  13. package/dist/fiscal/index.d.ts +536 -536
  14. package/dist/fiscal/index.js +1356 -1356
  15. package/dist/functions.d.ts +11 -11
  16. package/dist/functions.js +74 -74
  17. package/dist/general/index.d.ts +265 -265
  18. package/dist/general/index.js +512 -512
  19. package/dist/index.d.ts +15 -15
  20. package/dist/index.js +246 -246
  21. package/dist/integration/index.d.ts +27 -27
  22. package/dist/integration/index.js +80 -80
  23. package/dist/logistics/index.d.ts +142 -142
  24. package/dist/logistics/index.js +410 -410
  25. package/dist/marketplace/templates/components/index.d.ts +306 -306
  26. package/dist/marketplace/templates/components/index.js +331 -331
  27. package/dist/marketplace/templates/elements/index.d.ts +32 -32
  28. package/dist/marketplace/templates/elements/index.js +35 -35
  29. package/dist/marketplace/templates/index.d.ts +526 -523
  30. package/dist/marketplace/templates/index.js +48 -48
  31. package/dist/marketplace/templates/pages/index.d.ts +233 -233
  32. package/dist/marketplace/templates/pages/index.js +413 -413
  33. package/dist/marketplace/templates/reference/index.d.ts +24 -24
  34. package/dist/marketplace/templates/reference/index.js +26 -26
  35. package/dist/people/index.d.ts +62 -62
  36. package/dist/people/index.js +180 -180
  37. package/dist/platform/index.d.ts +207 -207
  38. package/dist/platform/index.js +600 -600
  39. package/dist/reports/index.d.ts +95 -95
  40. package/dist/reports/index.js +278 -278
  41. package/package.json +1 -1
@@ -1,207 +1,207 @@
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
- Cashback: string;
16
- SemPagamento: string;
17
- PagamentoPosterior: string;
18
- Outros: string;
19
- description(val: string): "enum not found" | "Outros" | "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" | "Cashback" | "Sem Pagamento" | "Pagamento Posterior";
20
- };
21
- export declare const IndicadorFormaPagamento: {
22
- PagamentoAVista: string;
23
- PagamentoAPrazo: string;
24
- description(val: string): "enum not found" | "Pagamento à Vista" | "Pagamento à Prazo";
25
- };
26
- export declare const OperacaoOperadoraCartao: {
27
- Credito: string;
28
- Debito: string;
29
- description(val: string): "enum not found" | "Crédito" | "Débito";
30
- };
31
- export declare const BandeiraCartao: {
32
- Visa: string;
33
- Mastercard: string;
34
- AmericanExpress: string;
35
- Sorocred: string;
36
- DinersClub: string;
37
- Elo: string;
38
- Hipercard: string;
39
- Aura: string;
40
- Cabal: string;
41
- Outros: string;
42
- description(val: string): "enum not found" | "Outros" | "Visa" | "Mastercard" | "American Express" | "Sorocred" | "Diners Club" | "Elo" | "Hipercard" | "Aura" | "Cabal";
43
- };
44
- export declare const TipoCalculoParcelamento: {
45
- Simples: string;
46
- Composto: string;
47
- description(val: string): "enum not found" | "Simples" | "Composto";
48
- };
49
- export declare const TipoPromocao: {
50
- Percentual: string;
51
- Valor: string;
52
- description(val: string): "enum not found" | "Percentual" | "Valor";
53
- };
54
- export declare const SituacaoDocumentoFinanceiro: {
55
- Aberto: string;
56
- Quitado: string;
57
- Estornado: string;
58
- Vencido: string;
59
- description(val: string): "enum not found" | "Aberto" | "Quitado" | "Estornado" | "Vencido";
60
- };
61
- export declare const TipoDataDocumentoFinanceiro: {
62
- Emissao: string;
63
- Quitacao: string;
64
- Vencimento: string;
65
- description(val: string): "enum not found" | "Emissão" | "Quitação" | "Vencimento";
66
- };
67
- export declare const TipoLancamentoDocumentoFinanceiro: {
68
- Abertura: string;
69
- Pagamento: string;
70
- Desconto: string;
71
- Acrescimo: string;
72
- Juros: string;
73
- Multa: string;
74
- description(val: string): "enum not found" | "Desconto" | "Acréscimo" | "Abertura" | "Pagamento" | "Juros" | "Multa";
75
- };
76
- export declare const TipoCaixaOperacao: {
77
- Abertura: string;
78
- Entrada: string;
79
- Saida: string;
80
- Recebimento: string;
81
- Pagamento: string;
82
- Compra: string;
83
- Venda: string;
84
- Fechamento: string;
85
- VendaValeCredito: string;
86
- description(val: string): "enum not found" | "Venda" | "Compra" | "Entrada" | "Saída" | "Abertura" | "Pagamento" | "Recebimento" | "Fechamento" | "Venda vale crédito";
87
- };
88
- export declare const SituacaoCaixa: {
89
- Aberto: string;
90
- Fechado: string;
91
- FechadoComDiferenca: string;
92
- description(val: string): "enum not found" | "Fechado" | "Aberto" | "Fechado com Diferença";
93
- };
94
- export declare const TipoValorConfiguracaoBoleto: {
95
- Percentual: string;
96
- Valor: string;
97
- description(val: string): "enum not found" | "Percentual" | "Valor";
98
- };
99
- export declare const SituacaoBoleto: {
100
- Pendente: string;
101
- Pago: string;
102
- Cancelado: string;
103
- Vencido: string;
104
- RemessaGerada: string;
105
- description(val: string): "enum not found" | "Cancelado" | "Pendente" | "Vencido" | "Pago" | "Remessa Gerada";
106
- };
107
- export declare const TipoDataBoleto: {
108
- Emissao: string;
109
- Vencimento: string;
110
- Pagamento: string;
111
- description(val: string): "enum not found" | "Emissão" | "Vencimento" | "Pagamento";
112
- };
113
- export declare const SituacaoConciliacao: {
114
- NaoConciliado: string;
115
- Conciliado: string;
116
- description(val: string): "enum not found" | "Não Conciliado" | "Conciliado";
117
- };
118
- export declare const TipoCalculoTaxaCartaoCredito: {
119
- PercentualCadaParcela: string;
120
- PercentualSobreParcelasAnteriores: string;
121
- description(val: string): "enum not found" | "Percentual para cada parcela" | "Percentual sobre todas parcelas anteriores";
122
- };
123
- export declare const VariaveisBoleto: {
124
- DataVencimento: {
125
- Descricao: string;
126
- Chave: string;
127
- Tipo: string;
128
- Aplicacao: string;
129
- };
130
- NumeroCodigoBarra: {
131
- Descricao: string;
132
- Chave: string;
133
- Tipo: string;
134
- Aplicacao: string;
135
- };
136
- Valor: {
137
- Descricao: string;
138
- Chave: string;
139
- Tipo: string;
140
- Aplicacao: string;
141
- };
142
- Cliente: {
143
- Descricao: string;
144
- Chave: string;
145
- Tipo: string;
146
- Aplicacao: string;
147
- };
148
- };
149
- export declare const SituacaoContaMatera: {
150
- EmCriacao: string;
151
- Regular: string;
152
- description(val: string): "Aguardando confirmação" | "Regular" | "Conta com erro.";
153
- };
154
- export declare const CNAB: {
155
- c400: number;
156
- c240: number;
157
- description(val: number): "" | "CNAB 400" | "CNAB 240";
158
- };
159
- export declare const ModeloCaptura: {
160
- Elgin: string;
161
- Vero: string;
162
- Sitef: string;
163
- Auttar: string;
164
- Destaxa: string;
165
- description(val: string): "" | "VERO" | "Elgin" | "Sitef" | "Auttar" | "Destaxa";
166
- };
167
- export declare const TipoConfiguracaoPagamento: {
168
- Elgin: string;
169
- Vero: string;
170
- Sitef: string;
171
- Auttar: string;
172
- Destaxa: string;
173
- QueroQueroPag: string;
174
- PagBank: string;
175
- description(val: string): "" | "Elgin" | "Sitef" | "Auttar" | "Destaxa" | "Vero" | "QueroQuero Pag" | "PagBank";
176
- };
177
- export declare const SituacaoTransacaoPagamento: {
178
- Gerada: string;
179
- Pendente: string;
180
- Aprovada: string;
181
- Cancelada: string;
182
- Expirada: string;
183
- Erro: string;
184
- Solicitada: string;
185
- EmProcessamento: string;
186
- Devolvida: string;
187
- NaoRealizada: string;
188
- description(val: string): "enum not found" | "Cancelada" | "Pendente" | "Erro" | "Gerada" | "Aprovada" | "Expirada" | "Solicitacao de devolucao" | "Devolucao em processamento" | "Devolvida" | "Devolucao nao realizada";
189
- };
190
- export declare const SituacaoConciliacaoPagamento: {
191
- Pendente: string;
192
- Conciliado: string;
193
- NaoSeAplica: string;
194
- Divergente: string;
195
- description(val: string): "enum not found" | "Pendente" | "Conciliado" | "Nao se aplica" | "Divergente";
196
- };
197
- export declare const TipoContaMovimentacao: {
198
- Transferencia: string;
199
- Entrada: string;
200
- Saida: string;
201
- description(val: string): "enum not found" | "Entrada" | "Saída" | "Transferência";
202
- };
203
- export declare const TipoTransferenciaCaixa: {
204
- ContaBancaria: string;
205
- Caixa: string;
206
- description(val: string): "enum not found" | "Conta bancária" | "Caixa";
207
- };
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
+ Cashback: string;
16
+ SemPagamento: string;
17
+ PagamentoPosterior: string;
18
+ Outros: string;
19
+ description(val: string): "enum not found" | "Outros" | "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" | "Cashback" | "Sem Pagamento" | "Pagamento Posterior";
20
+ };
21
+ export declare const IndicadorFormaPagamento: {
22
+ PagamentoAVista: string;
23
+ PagamentoAPrazo: string;
24
+ description(val: string): "enum not found" | "Pagamento à Vista" | "Pagamento à Prazo";
25
+ };
26
+ export declare const OperacaoOperadoraCartao: {
27
+ Credito: string;
28
+ Debito: string;
29
+ description(val: string): "enum not found" | "Crédito" | "Débito";
30
+ };
31
+ export declare const BandeiraCartao: {
32
+ Visa: string;
33
+ Mastercard: string;
34
+ AmericanExpress: string;
35
+ Sorocred: string;
36
+ DinersClub: string;
37
+ Elo: string;
38
+ Hipercard: string;
39
+ Aura: string;
40
+ Cabal: string;
41
+ Outros: string;
42
+ description(val: string): "enum not found" | "Outros" | "Visa" | "Mastercard" | "American Express" | "Sorocred" | "Diners Club" | "Elo" | "Hipercard" | "Aura" | "Cabal";
43
+ };
44
+ export declare const TipoCalculoParcelamento: {
45
+ Simples: string;
46
+ Composto: string;
47
+ description(val: string): "enum not found" | "Simples" | "Composto";
48
+ };
49
+ export declare const TipoPromocao: {
50
+ Percentual: string;
51
+ Valor: string;
52
+ description(val: string): "enum not found" | "Percentual" | "Valor";
53
+ };
54
+ export declare const SituacaoDocumentoFinanceiro: {
55
+ Aberto: string;
56
+ Quitado: string;
57
+ Estornado: string;
58
+ Vencido: string;
59
+ description(val: string): "enum not found" | "Aberto" | "Quitado" | "Estornado" | "Vencido";
60
+ };
61
+ export declare const TipoDataDocumentoFinanceiro: {
62
+ Emissao: string;
63
+ Quitacao: string;
64
+ Vencimento: string;
65
+ description(val: string): "enum not found" | "Emissão" | "Quitação" | "Vencimento";
66
+ };
67
+ export declare const TipoLancamentoDocumentoFinanceiro: {
68
+ Abertura: string;
69
+ Pagamento: string;
70
+ Desconto: string;
71
+ Acrescimo: string;
72
+ Juros: string;
73
+ Multa: string;
74
+ description(val: string): "enum not found" | "Desconto" | "Acréscimo" | "Abertura" | "Pagamento" | "Juros" | "Multa";
75
+ };
76
+ export declare const TipoCaixaOperacao: {
77
+ Abertura: string;
78
+ Entrada: string;
79
+ Saida: string;
80
+ Recebimento: string;
81
+ Pagamento: string;
82
+ Compra: string;
83
+ Venda: string;
84
+ Fechamento: string;
85
+ VendaValeCredito: string;
86
+ description(val: string): "enum not found" | "Venda" | "Compra" | "Entrada" | "Saída" | "Abertura" | "Pagamento" | "Recebimento" | "Fechamento" | "Venda vale crédito";
87
+ };
88
+ export declare const SituacaoCaixa: {
89
+ Aberto: string;
90
+ Fechado: string;
91
+ FechadoComDiferenca: string;
92
+ description(val: string): "enum not found" | "Fechado" | "Aberto" | "Fechado com Diferença";
93
+ };
94
+ export declare const TipoValorConfiguracaoBoleto: {
95
+ Percentual: string;
96
+ Valor: string;
97
+ description(val: string): "enum not found" | "Percentual" | "Valor";
98
+ };
99
+ export declare const SituacaoBoleto: {
100
+ Pendente: string;
101
+ Pago: string;
102
+ Cancelado: string;
103
+ Vencido: string;
104
+ RemessaGerada: string;
105
+ description(val: string): "enum not found" | "Cancelado" | "Pendente" | "Vencido" | "Pago" | "Remessa Gerada";
106
+ };
107
+ export declare const TipoDataBoleto: {
108
+ Emissao: string;
109
+ Vencimento: string;
110
+ Pagamento: string;
111
+ description(val: string): "enum not found" | "Emissão" | "Vencimento" | "Pagamento";
112
+ };
113
+ export declare const SituacaoConciliacao: {
114
+ NaoConciliado: string;
115
+ Conciliado: string;
116
+ description(val: string): "enum not found" | "Não Conciliado" | "Conciliado";
117
+ };
118
+ export declare const TipoCalculoTaxaCartaoCredito: {
119
+ PercentualCadaParcela: string;
120
+ PercentualSobreParcelasAnteriores: string;
121
+ description(val: string): "enum not found" | "Percentual para cada parcela" | "Percentual sobre todas parcelas anteriores";
122
+ };
123
+ export declare const VariaveisBoleto: {
124
+ DataVencimento: {
125
+ Descricao: string;
126
+ Chave: string;
127
+ Tipo: string;
128
+ Aplicacao: string;
129
+ };
130
+ NumeroCodigoBarra: {
131
+ Descricao: string;
132
+ Chave: string;
133
+ Tipo: string;
134
+ Aplicacao: string;
135
+ };
136
+ Valor: {
137
+ Descricao: string;
138
+ Chave: string;
139
+ Tipo: string;
140
+ Aplicacao: string;
141
+ };
142
+ Cliente: {
143
+ Descricao: string;
144
+ Chave: string;
145
+ Tipo: string;
146
+ Aplicacao: string;
147
+ };
148
+ };
149
+ export declare const SituacaoContaMatera: {
150
+ EmCriacao: string;
151
+ Regular: string;
152
+ description(val: string): "Aguardando confirmação" | "Regular" | "Conta com erro.";
153
+ };
154
+ export declare const CNAB: {
155
+ c400: number;
156
+ c240: number;
157
+ description(val: number): "" | "CNAB 400" | "CNAB 240";
158
+ };
159
+ export declare const ModeloCaptura: {
160
+ Elgin: string;
161
+ Vero: string;
162
+ Sitef: string;
163
+ Auttar: string;
164
+ Destaxa: string;
165
+ description(val: string): "" | "VERO" | "Elgin" | "Sitef" | "Auttar" | "Destaxa";
166
+ };
167
+ export declare const TipoConfiguracaoPagamento: {
168
+ Elgin: string;
169
+ Vero: string;
170
+ Sitef: string;
171
+ Auttar: string;
172
+ Destaxa: string;
173
+ QueroQueroPag: string;
174
+ PagBank: string;
175
+ description(val: string): "" | "Elgin" | "Sitef" | "Auttar" | "Destaxa" | "Vero" | "QueroQuero Pag" | "PagBank";
176
+ };
177
+ export declare const SituacaoTransacaoPagamento: {
178
+ Gerada: string;
179
+ Pendente: string;
180
+ Aprovada: string;
181
+ Cancelada: string;
182
+ Expirada: string;
183
+ Erro: string;
184
+ Solicitada: string;
185
+ EmProcessamento: string;
186
+ Devolvida: string;
187
+ NaoRealizada: string;
188
+ description(val: string): "enum not found" | "Cancelada" | "Pendente" | "Erro" | "Gerada" | "Aprovada" | "Expirada" | "Solicitacao de devolucao" | "Devolucao em processamento" | "Devolvida" | "Devolucao nao realizada";
189
+ };
190
+ export declare const SituacaoConciliacaoPagamento: {
191
+ Pendente: string;
192
+ Conciliado: string;
193
+ NaoSeAplica: string;
194
+ Divergente: string;
195
+ description(val: string): "enum not found" | "Pendente" | "Conciliado" | "Nao se aplica" | "Divergente";
196
+ };
197
+ export declare const TipoContaMovimentacao: {
198
+ Transferencia: string;
199
+ Entrada: string;
200
+ Saida: string;
201
+ description(val: string): "enum not found" | "Entrada" | "Saída" | "Transferência";
202
+ };
203
+ export declare const TipoTransferenciaCaixa: {
204
+ ContaBancaria: string;
205
+ Caixa: string;
206
+ description(val: string): "enum not found" | "Conta bancária" | "Caixa";
207
+ };