mdz-enum 1.4.2 → 1.4.4

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 (38) hide show
  1. package/README.MD +1 -1
  2. package/dist/checkout/index.d.ts +28 -28
  3. package/dist/checkout/index.js +83 -83
  4. package/dist/commercial/index.d.ts +221 -221
  5. package/dist/commercial/index.js +532 -532
  6. package/dist/common/index.d.ts +42 -42
  7. package/dist/common/index.js +123 -123
  8. package/dist/config/index.d.ts +137 -137
  9. package/dist/config/index.js +392 -392
  10. package/dist/finance/index.d.ts +164 -164
  11. package/dist/finance/index.js +425 -425
  12. package/dist/fiscal/index.d.ts +460 -459
  13. package/dist/fiscal/index.js +1153 -1150
  14. package/dist/functions.d.ts +11 -11
  15. package/dist/functions.js +74 -74
  16. package/dist/general/index.d.ts +243 -237
  17. package/dist/general/index.js +449 -432
  18. package/dist/index.d.ts +14 -14
  19. package/dist/index.js +200 -199
  20. package/dist/integration/index.d.ts +19 -19
  21. package/dist/integration/index.js +57 -57
  22. package/dist/logistics/index.d.ts +119 -119
  23. package/dist/logistics/index.js +345 -345
  24. package/dist/marketplace/templates/components/index.d.ts +189 -189
  25. package/dist/marketplace/templates/components/index.js +201 -201
  26. package/dist/marketplace/templates/index.d.ts +248 -253
  27. package/dist/marketplace/templates/index.js +31 -31
  28. package/dist/marketplace/templates/pages/index.d.ts +89 -89
  29. package/dist/marketplace/templates/pages/index.js +216 -216
  30. package/dist/marketplace/templates/reference/index.d.ts +16 -16
  31. package/dist/marketplace/templates/reference/index.js +18 -18
  32. package/dist/people/index.d.ts +35 -35
  33. package/dist/people/index.js +102 -102
  34. package/dist/platform/index.d.ts +177 -177
  35. package/dist/platform/index.js +514 -514
  36. package/dist/reports/index.d.ts +46 -46
  37. package/dist/reports/index.js +136 -136
  38. package/package.json +33 -32
@@ -1,164 +1,164 @@
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" | "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" | "Programa de Fidelidade" | "Sem Pagamento";
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" | "Percentual" | "Valor";
52
- };
53
- export declare const SituacaoDocumentoFinanceiro: {
54
- Aberto: string;
55
- Quitado: string;
56
- Estornado: string;
57
- Vencido: string;
58
- description(val: string): "enum not found" | "Aberto" | "Quitado" | "Estornado" | "Vencido";
59
- };
60
- export declare const TipoDataDocumentoFinanceiro: {
61
- Emissao: string;
62
- Quitacao: string;
63
- Vencimento: string;
64
- description(val: string): "enum not found" | "Emissão" | "Quitação" | "Vencimento";
65
- };
66
- export declare const TipoLancamentoDocumentoFinanceiro: {
67
- Abertura: string;
68
- Pagamento: string;
69
- Desconto: string;
70
- Acrescimo: string;
71
- Juros: string;
72
- Multa: string;
73
- description(val: string): "enum not found" | "Desconto" | "Acréscimo" | "Abertura" | "Pagamento" | "Juros" | "Multa";
74
- };
75
- export declare const TipoCaixaOperacao: {
76
- Abertura: string;
77
- Entrada: string;
78
- Saida: string;
79
- Recebimento: string;
80
- Pagamento: string;
81
- Compra: string;
82
- Venda: string;
83
- Fechamento: string;
84
- VendaValeCredito: string;
85
- description(val: string): "enum not found" | "Venda" | "Compra" | "Entrada" | "Saída" | "Abertura" | "Pagamento" | "Recebimento" | "Fechamento" | "Venda vale crédito";
86
- };
87
- export declare const SituacaoCaixa: {
88
- Aberto: string;
89
- Fechado: string;
90
- FechadoComDiferenca: string;
91
- description(val: string): "enum not found" | "Fechado" | "Aberto" | "Fechado com Diferença";
92
- };
93
- export declare const TipoValorConfiguracaoBoleto: {
94
- Percentual: string;
95
- Valor: string;
96
- description(val: string): "enum not found" | "Percentual" | "Valor";
97
- };
98
- export declare const SituacaoBoleto: {
99
- Pendente: string;
100
- Pago: string;
101
- Cancelado: string;
102
- Vencido: string;
103
- RemessaGerada: string;
104
- description(val: string): "enum not found" | "Cancelado" | "Pendente" | "Vencido" | "Pago" | "Remessa Gerada";
105
- };
106
- export declare const TipoDataBoleto: {
107
- Emissao: string;
108
- Vencimento: string;
109
- Pagamento: string;
110
- description(val: string): "enum not found" | "Emissão" | "Vencimento" | "Pagamento";
111
- };
112
- export declare const SituacaoConciliacao: {
113
- NaoConciliado: string;
114
- Conciliado: string;
115
- description(val: string): "enum not found" | "Não Conciliado" | "Conciliado";
116
- };
117
- export declare const TipoCalculoTaxaCartaoCredito: {
118
- PercentualCadaParcela: string;
119
- PercentualSobreParcelasAnteriores: string;
120
- description(val: string): "enum not found" | "Percentual para cada parcela" | "Percentual sobre todas parcelas anteriores";
121
- };
122
- export declare const VariaveisBoleto: {
123
- DataVencimento: {
124
- Descricao: string;
125
- Chave: string;
126
- Tipo: string;
127
- Aplicacao: string;
128
- };
129
- NumeroCodigoBarra: {
130
- Descricao: string;
131
- Chave: string;
132
- Tipo: string;
133
- Aplicacao: string;
134
- };
135
- Valor: {
136
- Descricao: string;
137
- Chave: string;
138
- Tipo: string;
139
- Aplicacao: string;
140
- };
141
- Cliente: {
142
- Descricao: string;
143
- Chave: string;
144
- Tipo: string;
145
- Aplicacao: string;
146
- };
147
- };
148
- export declare const SituacaoContaMatera: {
149
- EmCriacao: string;
150
- Regular: string;
151
- description(val: string): "Aguardando confirmação" | "Regular" | "Conta com erro.";
152
- };
153
- export declare const CNAB: {
154
- c400: number;
155
- c240: number;
156
- description(val: number): "" | "CNAB 400" | "CNAB 240";
157
- };
158
- export declare const ModeloCaptura: {
159
- Elgin: string;
160
- Vero: string;
161
- Sitef: string;
162
- Auttar: string;
163
- description(val: string): "" | "VERO" | "Elgin" | "Sitef" | "Auttar";
164
- };
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" | "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" | "Programa de Fidelidade" | "Sem Pagamento";
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" | "Percentual" | "Valor";
52
+ };
53
+ export declare const SituacaoDocumentoFinanceiro: {
54
+ Aberto: string;
55
+ Quitado: string;
56
+ Estornado: string;
57
+ Vencido: string;
58
+ description(val: string): "enum not found" | "Aberto" | "Quitado" | "Estornado" | "Vencido";
59
+ };
60
+ export declare const TipoDataDocumentoFinanceiro: {
61
+ Emissao: string;
62
+ Quitacao: string;
63
+ Vencimento: string;
64
+ description(val: string): "enum not found" | "Emissão" | "Quitação" | "Vencimento";
65
+ };
66
+ export declare const TipoLancamentoDocumentoFinanceiro: {
67
+ Abertura: string;
68
+ Pagamento: string;
69
+ Desconto: string;
70
+ Acrescimo: string;
71
+ Juros: string;
72
+ Multa: string;
73
+ description(val: string): "enum not found" | "Desconto" | "Acréscimo" | "Abertura" | "Pagamento" | "Juros" | "Multa";
74
+ };
75
+ export declare const TipoCaixaOperacao: {
76
+ Abertura: string;
77
+ Entrada: string;
78
+ Saida: string;
79
+ Recebimento: string;
80
+ Pagamento: string;
81
+ Compra: string;
82
+ Venda: string;
83
+ Fechamento: string;
84
+ VendaValeCredito: string;
85
+ description(val: string): "enum not found" | "Venda" | "Compra" | "Entrada" | "Saída" | "Abertura" | "Pagamento" | "Recebimento" | "Fechamento" | "Venda vale crédito";
86
+ };
87
+ export declare const SituacaoCaixa: {
88
+ Aberto: string;
89
+ Fechado: string;
90
+ FechadoComDiferenca: string;
91
+ description(val: string): "enum not found" | "Fechado" | "Aberto" | "Fechado com Diferença";
92
+ };
93
+ export declare const TipoValorConfiguracaoBoleto: {
94
+ Percentual: string;
95
+ Valor: string;
96
+ description(val: string): "enum not found" | "Percentual" | "Valor";
97
+ };
98
+ export declare const SituacaoBoleto: {
99
+ Pendente: string;
100
+ Pago: string;
101
+ Cancelado: string;
102
+ Vencido: string;
103
+ RemessaGerada: string;
104
+ description(val: string): "enum not found" | "Cancelado" | "Pendente" | "Vencido" | "Pago" | "Remessa Gerada";
105
+ };
106
+ export declare const TipoDataBoleto: {
107
+ Emissao: string;
108
+ Vencimento: string;
109
+ Pagamento: string;
110
+ description(val: string): "enum not found" | "Emissão" | "Vencimento" | "Pagamento";
111
+ };
112
+ export declare const SituacaoConciliacao: {
113
+ NaoConciliado: string;
114
+ Conciliado: string;
115
+ description(val: string): "enum not found" | "Não Conciliado" | "Conciliado";
116
+ };
117
+ export declare const TipoCalculoTaxaCartaoCredito: {
118
+ PercentualCadaParcela: string;
119
+ PercentualSobreParcelasAnteriores: string;
120
+ description(val: string): "enum not found" | "Percentual para cada parcela" | "Percentual sobre todas parcelas anteriores";
121
+ };
122
+ export declare const VariaveisBoleto: {
123
+ DataVencimento: {
124
+ Descricao: string;
125
+ Chave: string;
126
+ Tipo: string;
127
+ Aplicacao: string;
128
+ };
129
+ NumeroCodigoBarra: {
130
+ Descricao: string;
131
+ Chave: string;
132
+ Tipo: string;
133
+ Aplicacao: string;
134
+ };
135
+ Valor: {
136
+ Descricao: string;
137
+ Chave: string;
138
+ Tipo: string;
139
+ Aplicacao: string;
140
+ };
141
+ Cliente: {
142
+ Descricao: string;
143
+ Chave: string;
144
+ Tipo: string;
145
+ Aplicacao: string;
146
+ };
147
+ };
148
+ export declare const SituacaoContaMatera: {
149
+ EmCriacao: string;
150
+ Regular: string;
151
+ description(val: string): "Aguardando confirmação" | "Regular" | "Conta com erro.";
152
+ };
153
+ export declare const CNAB: {
154
+ c400: number;
155
+ c240: number;
156
+ description(val: number): "" | "CNAB 400" | "CNAB 240";
157
+ };
158
+ export declare const ModeloCaptura: {
159
+ Elgin: string;
160
+ Vero: string;
161
+ Sitef: string;
162
+ Auttar: string;
163
+ description(val: string): "" | "VERO" | "Elgin" | "Sitef" | "Auttar";
164
+ };