mdz-enum 1.5.21 → 1.5.23
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.
- package/README.MD +7 -7
- package/dist/checkout/index.d.ts +28 -28
- package/dist/checkout/index.js +83 -83
- package/dist/commercial/index.d.ts +227 -227
- package/dist/commercial/index.js +549 -549
- package/dist/common/index.d.ts +47 -47
- package/dist/common/index.js +137 -137
- package/dist/config/index.d.ts +166 -138
- package/dist/config/index.js +478 -395
- package/dist/finance/index.d.ts +164 -164
- package/dist/finance/index.js +425 -425
- package/dist/fiscal/index.d.ts +468 -468
- package/dist/fiscal/index.js +1165 -1165
- package/dist/functions.d.ts +11 -11
- package/dist/functions.js +74 -74
- package/dist/general/index.d.ts +257 -257
- package/dist/general/index.js +489 -489
- package/dist/index.d.ts +14 -14
- package/dist/index.js +209 -208
- package/dist/integration/index.d.ts +19 -19
- package/dist/integration/index.js +57 -57
- package/dist/logistics/index.d.ts +124 -124
- package/dist/logistics/index.js +359 -359
- package/dist/marketplace/templates/components/index.d.ts +158 -158
- package/dist/marketplace/templates/components/index.js +171 -171
- package/dist/marketplace/templates/elements/index.d.ts +32 -32
- package/dist/marketplace/templates/elements/index.js +35 -35
- package/dist/marketplace/templates/index.d.ts +292 -295
- package/dist/marketplace/templates/index.js +40 -40
- package/dist/marketplace/templates/pages/index.d.ts +140 -140
- package/dist/marketplace/templates/pages/index.js +310 -310
- package/dist/marketplace/templates/reference/index.d.ts +16 -16
- package/dist/marketplace/templates/reference/index.js +18 -18
- package/dist/people/index.d.ts +36 -36
- package/dist/people/index.js +105 -105
- package/dist/platform/index.d.ts +189 -189
- package/dist/platform/index.js +548 -548
- package/dist/reports/index.d.ts +49 -49
- package/dist/reports/index.js +145 -145
- package/package.json +33 -32
package/dist/finance/index.d.ts
CHANGED
|
@@ -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
|
-
Cashback: 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" | "Cashback" | "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
|
+
Cashback: 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" | "Cashback" | "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
|
+
};
|