mdz-enum 1.0.52 → 1.0.55
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/dist/config/index.d.ts +26 -0
- package/dist/config/index.js +81 -6
- package/dist/finance/index.d.ts +6 -1
- package/dist/finance/index.js +16 -2
- package/dist/index.d.ts +2 -1
- package/dist/index.js +8 -1
- package/package.json +1 -1
- package/src/config/index.ts +103 -6
- package/src/finance/index.ts +19 -1
- package/src/index.ts +2 -0
package/dist/config/index.d.ts
CHANGED
|
@@ -3,3 +3,29 @@ export declare const TipoPermissao: {
|
|
|
3
3
|
Funcao: string;
|
|
4
4
|
description(val: string): "enum not found" | "Visualização" | "Função";
|
|
5
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
|
+
};
|
package/dist/config/index.js
CHANGED
|
@@ -1,17 +1,92 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.TipoPermissao = void 0;
|
|
3
|
+
exports.ModeloSat = exports.TipoPeriferico = exports.TipoDispositivo = exports.TipoPermissao = void 0;
|
|
4
4
|
exports.TipoPermissao = {
|
|
5
|
-
Visualizacao:
|
|
6
|
-
Funcao:
|
|
5
|
+
Visualizacao: '1',
|
|
6
|
+
Funcao: '2',
|
|
7
7
|
description(val) {
|
|
8
8
|
switch (val) {
|
|
9
9
|
case this.Visualizacao:
|
|
10
|
-
return
|
|
10
|
+
return 'Visualização';
|
|
11
11
|
case this.Funcao:
|
|
12
|
-
return
|
|
12
|
+
return 'Função';
|
|
13
13
|
default:
|
|
14
|
-
return
|
|
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';
|
|
15
90
|
}
|
|
16
91
|
},
|
|
17
92
|
};
|
package/dist/finance/index.d.ts
CHANGED
|
@@ -15,7 +15,7 @@ export declare const MeioPagamento: {
|
|
|
15
15
|
ProgramaFidelidade: string;
|
|
16
16
|
SemPagamento: string;
|
|
17
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" | "
|
|
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
19
|
};
|
|
20
20
|
export declare const IndicadorFormaPagamento: {
|
|
21
21
|
PagamentoAVista: string;
|
|
@@ -82,3 +82,8 @@ export declare const SituacaoCaixa: {
|
|
|
82
82
|
FechadoComDiferenca: string;
|
|
83
83
|
description(val: string): "enum not found" | "Aberto" | "Fechado" | "Fechado com Diferença";
|
|
84
84
|
};
|
|
85
|
+
export declare const TipoValorConfiguracaoBoleto: {
|
|
86
|
+
Percentual: string;
|
|
87
|
+
Valor: string;
|
|
88
|
+
description(val: string): "enum not found" | "Valor" | "Percentual";
|
|
89
|
+
};
|
package/dist/finance/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.SituacaoCaixa = exports.TipoCaixaOperacao = exports.TipoLancamentoDocumentoFinanceiro = exports.SituacaoDocumentoFinanceiro = exports.TipoPromocao = exports.TipoCalculoParcelamento = exports.BandeiraCartao = exports.OperacaoOperadoraCartao = exports.IndicadorFormaPagamento = exports.MeioPagamento = void 0;
|
|
3
|
+
exports.TipoValorConfiguracaoBoleto = exports.SituacaoCaixa = exports.TipoCaixaOperacao = exports.TipoLancamentoDocumentoFinanceiro = exports.SituacaoDocumentoFinanceiro = exports.TipoPromocao = exports.TipoCalculoParcelamento = exports.BandeiraCartao = exports.OperacaoOperadoraCartao = exports.IndicadorFormaPagamento = exports.MeioPagamento = void 0;
|
|
4
4
|
exports.MeioPagamento = {
|
|
5
5
|
Dinheiro: '01',
|
|
6
6
|
Cheque: '02',
|
|
@@ -43,7 +43,7 @@ exports.MeioPagamento = {
|
|
|
43
43
|
case this.DepositoBancario:
|
|
44
44
|
return 'Depósito Bancário';
|
|
45
45
|
case this.PIX:
|
|
46
|
-
return '
|
|
46
|
+
return 'PIX';
|
|
47
47
|
case this.TransferenciaBancaria:
|
|
48
48
|
return 'Transferência Bancária';
|
|
49
49
|
case this.ProgramaFidelidade:
|
|
@@ -243,3 +243,17 @@ exports.SituacaoCaixa = {
|
|
|
243
243
|
}
|
|
244
244
|
},
|
|
245
245
|
};
|
|
246
|
+
exports.TipoValorConfiguracaoBoleto = {
|
|
247
|
+
Percentual: '0',
|
|
248
|
+
Valor: '1',
|
|
249
|
+
description(val) {
|
|
250
|
+
switch (val) {
|
|
251
|
+
case this.Percentual:
|
|
252
|
+
return 'Percentual';
|
|
253
|
+
case this.Valor:
|
|
254
|
+
return 'Valor';
|
|
255
|
+
default:
|
|
256
|
+
return 'enum not found';
|
|
257
|
+
}
|
|
258
|
+
},
|
|
259
|
+
};
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export { listEnum } from './functions';
|
|
2
2
|
export { SituacaoPedido, OperacaoPedido, OrigemPedido, TipoFrete, SituacaoPromocao, TipoDescontoPromocao, } from './commercial';
|
|
3
|
-
export {
|
|
3
|
+
export { TipoDispositivo, TipoPermissao, TipoPeriferico, ModeloSat } from './config';
|
|
4
|
+
export { MeioPagamento, OperacaoOperadoraCartao, TipoCalculoParcelamento, TipoPromocao, IndicadorFormaPagamento, BandeiraCartao, SituacaoDocumentoFinanceiro, TipoLancamentoDocumentoFinanceiro, TipoCaixaOperacao, SituacaoCaixa, TipoValorConfiguracaoBoleto, } from './finance';
|
|
4
5
|
export { COFINS, ICMS_CSOSN, ICMS_CST, IPI, PIS, TipoOperacaoNotaFiscal, OperacaoNotaFiscal, ModeloNotaFiscal, OrigemProduto, IdentificadorLocalDestino, AmbienteNotaFiscal, ConsumidorFinalNotaFiscal, FinalidadeEmissaoNotaFiscal, IndicadorIEDestinatario, IndicadorIntermediador, IndicadorPresencaNotaFiscal, ModalidadeBaseCalculo, ModalidadeBaseCalculoST, MotivoDesoneracao, RegimeTributario, TipoEmissaoNotaFiscal, TipoImpressaoDanfe, SituacaoNotaFiscal, TipoInformacaoAdicional, } from './fiscal';
|
|
5
6
|
export { Situacao } from './general';
|
|
6
7
|
export { TipoEndereco, TipoPessoa, GeneroPessoa } from './people';
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.GeneroPessoa = exports.TipoPessoa = exports.TipoEndereco = exports.Situacao = exports.TipoInformacaoAdicional = exports.SituacaoNotaFiscal = exports.TipoImpressaoDanfe = exports.TipoEmissaoNotaFiscal = exports.RegimeTributario = exports.MotivoDesoneracao = exports.ModalidadeBaseCalculoST = exports.ModalidadeBaseCalculo = exports.IndicadorPresencaNotaFiscal = exports.IndicadorIntermediador = exports.IndicadorIEDestinatario = exports.FinalidadeEmissaoNotaFiscal = exports.ConsumidorFinalNotaFiscal = exports.AmbienteNotaFiscal = exports.IdentificadorLocalDestino = exports.OrigemProduto = exports.ModeloNotaFiscal = exports.OperacaoNotaFiscal = exports.TipoOperacaoNotaFiscal = exports.PIS = exports.IPI = exports.ICMS_CST = exports.ICMS_CSOSN = exports.COFINS = exports.TipoValorConfiguracaoBoleto = exports.SituacaoCaixa = exports.TipoCaixaOperacao = exports.TipoLancamentoDocumentoFinanceiro = exports.SituacaoDocumentoFinanceiro = exports.BandeiraCartao = exports.IndicadorFormaPagamento = exports.TipoPromocao = exports.TipoCalculoParcelamento = exports.OperacaoOperadoraCartao = exports.MeioPagamento = exports.ModeloSat = exports.TipoPeriferico = exports.TipoPermissao = exports.TipoDispositivo = exports.TipoDescontoPromocao = exports.SituacaoPromocao = exports.TipoFrete = exports.OrigemPedido = exports.OperacaoPedido = exports.SituacaoPedido = exports.listEnum = void 0;
|
|
4
|
+
exports.OrigemMovimentacaoEstoque = exports.SituacaoMovimentacaoEstoque = exports.TipoValoracao = exports.TipoProduto = exports.TipoAtributo = void 0;
|
|
4
5
|
var functions_1 = require("./functions");
|
|
5
6
|
Object.defineProperty(exports, "listEnum", { enumerable: true, get: function () { return functions_1.listEnum; } });
|
|
6
7
|
var commercial_1 = require("./commercial");
|
|
@@ -10,6 +11,11 @@ Object.defineProperty(exports, "OrigemPedido", { enumerable: true, get: function
|
|
|
10
11
|
Object.defineProperty(exports, "TipoFrete", { enumerable: true, get: function () { return commercial_1.TipoFrete; } });
|
|
11
12
|
Object.defineProperty(exports, "SituacaoPromocao", { enumerable: true, get: function () { return commercial_1.SituacaoPromocao; } });
|
|
12
13
|
Object.defineProperty(exports, "TipoDescontoPromocao", { enumerable: true, get: function () { return commercial_1.TipoDescontoPromocao; } });
|
|
14
|
+
var config_1 = require("./config");
|
|
15
|
+
Object.defineProperty(exports, "TipoDispositivo", { enumerable: true, get: function () { return config_1.TipoDispositivo; } });
|
|
16
|
+
Object.defineProperty(exports, "TipoPermissao", { enumerable: true, get: function () { return config_1.TipoPermissao; } });
|
|
17
|
+
Object.defineProperty(exports, "TipoPeriferico", { enumerable: true, get: function () { return config_1.TipoPeriferico; } });
|
|
18
|
+
Object.defineProperty(exports, "ModeloSat", { enumerable: true, get: function () { return config_1.ModeloSat; } });
|
|
13
19
|
var finance_1 = require("./finance");
|
|
14
20
|
Object.defineProperty(exports, "MeioPagamento", { enumerable: true, get: function () { return finance_1.MeioPagamento; } });
|
|
15
21
|
Object.defineProperty(exports, "OperacaoOperadoraCartao", { enumerable: true, get: function () { return finance_1.OperacaoOperadoraCartao; } });
|
|
@@ -21,6 +27,7 @@ Object.defineProperty(exports, "SituacaoDocumentoFinanceiro", { enumerable: true
|
|
|
21
27
|
Object.defineProperty(exports, "TipoLancamentoDocumentoFinanceiro", { enumerable: true, get: function () { return finance_1.TipoLancamentoDocumentoFinanceiro; } });
|
|
22
28
|
Object.defineProperty(exports, "TipoCaixaOperacao", { enumerable: true, get: function () { return finance_1.TipoCaixaOperacao; } });
|
|
23
29
|
Object.defineProperty(exports, "SituacaoCaixa", { enumerable: true, get: function () { return finance_1.SituacaoCaixa; } });
|
|
30
|
+
Object.defineProperty(exports, "TipoValorConfiguracaoBoleto", { enumerable: true, get: function () { return finance_1.TipoValorConfiguracaoBoleto; } });
|
|
24
31
|
//teste de exportação
|
|
25
32
|
var fiscal_1 = require("./fiscal");
|
|
26
33
|
Object.defineProperty(exports, "COFINS", { enumerable: true, get: function () { return fiscal_1.COFINS; } });
|
package/package.json
CHANGED
package/src/config/index.ts
CHANGED
|
@@ -1,17 +1,114 @@
|
|
|
1
1
|
export const TipoPermissao = {
|
|
2
|
-
Visualizacao:
|
|
3
|
-
Funcao:
|
|
2
|
+
Visualizacao: '1',
|
|
3
|
+
Funcao: '2',
|
|
4
4
|
|
|
5
5
|
description(val: string) {
|
|
6
6
|
switch (val) {
|
|
7
7
|
case this.Visualizacao:
|
|
8
|
-
return
|
|
8
|
+
return 'Visualização'
|
|
9
9
|
|
|
10
10
|
case this.Funcao:
|
|
11
|
-
return
|
|
11
|
+
return 'Função'
|
|
12
12
|
|
|
13
13
|
default:
|
|
14
|
-
return
|
|
14
|
+
return 'enum not found'
|
|
15
15
|
}
|
|
16
16
|
},
|
|
17
|
-
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
export const TipoDispositivo = {
|
|
20
|
+
Cliente: '1',
|
|
21
|
+
Servidor: '2',
|
|
22
|
+
description(val: string) {
|
|
23
|
+
switch (val) {
|
|
24
|
+
case this.Cliente:
|
|
25
|
+
return 'Cliente'
|
|
26
|
+
|
|
27
|
+
case this.Servidor:
|
|
28
|
+
return 'Servidor'
|
|
29
|
+
|
|
30
|
+
default:
|
|
31
|
+
return 'enum not found'
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
export const TipoPeriferico = {
|
|
37
|
+
Impressora: '1',
|
|
38
|
+
Balanca: '2',
|
|
39
|
+
Sat: '3',
|
|
40
|
+
|
|
41
|
+
description(val: string) {
|
|
42
|
+
switch (val) {
|
|
43
|
+
case this.Impressora:
|
|
44
|
+
return 'Impressora'
|
|
45
|
+
|
|
46
|
+
case this.Balanca:
|
|
47
|
+
return 'Balanca'
|
|
48
|
+
|
|
49
|
+
case this.Sat:
|
|
50
|
+
return 'Sat'
|
|
51
|
+
|
|
52
|
+
default:
|
|
53
|
+
return 'enum not found'
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
export const ModeloSat = {
|
|
59
|
+
Bematech: '1',
|
|
60
|
+
Gertec: '2',
|
|
61
|
+
Urano: '3',
|
|
62
|
+
Generica: '4',
|
|
63
|
+
Sweda: '5',
|
|
64
|
+
Tanca: '6',
|
|
65
|
+
Dimep: '7',
|
|
66
|
+
Nitere: '9',
|
|
67
|
+
Elgin: '10',
|
|
68
|
+
Care: '11',
|
|
69
|
+
Epson: '12',
|
|
70
|
+
ControlId: '13',
|
|
71
|
+
|
|
72
|
+
description(val: string) {
|
|
73
|
+
switch (val) {
|
|
74
|
+
case this.Bematech:
|
|
75
|
+
return 'Bematech'
|
|
76
|
+
|
|
77
|
+
case this.Gertec:
|
|
78
|
+
return 'Gertec'
|
|
79
|
+
|
|
80
|
+
case this.Urano:
|
|
81
|
+
return 'Urano'
|
|
82
|
+
|
|
83
|
+
case this.Generica:
|
|
84
|
+
return 'Generica'
|
|
85
|
+
|
|
86
|
+
case this.Sweda:
|
|
87
|
+
return 'Sweda'
|
|
88
|
+
|
|
89
|
+
case this.Tanca:
|
|
90
|
+
return 'Tanca'
|
|
91
|
+
|
|
92
|
+
case this.Dimep:
|
|
93
|
+
return 'Dimep'
|
|
94
|
+
|
|
95
|
+
case this.Nitere:
|
|
96
|
+
return 'Nitere'
|
|
97
|
+
|
|
98
|
+
case this.Elgin:
|
|
99
|
+
return 'Elgin'
|
|
100
|
+
|
|
101
|
+
case this.Care:
|
|
102
|
+
return 'Care'
|
|
103
|
+
|
|
104
|
+
case this.Epson:
|
|
105
|
+
return 'Epson'
|
|
106
|
+
|
|
107
|
+
case this.ControlId:
|
|
108
|
+
return 'ControlId'
|
|
109
|
+
|
|
110
|
+
default:
|
|
111
|
+
return 'enum not found'
|
|
112
|
+
}
|
|
113
|
+
},
|
|
114
|
+
}
|
package/src/finance/index.ts
CHANGED
|
@@ -52,7 +52,7 @@ export const MeioPagamento = {
|
|
|
52
52
|
return 'Depósito Bancário'
|
|
53
53
|
|
|
54
54
|
case this.PIX:
|
|
55
|
-
return '
|
|
55
|
+
return 'PIX'
|
|
56
56
|
|
|
57
57
|
case this.TransferenciaBancaria:
|
|
58
58
|
return 'Transferência Bancária'
|
|
@@ -313,3 +313,21 @@ export const SituacaoCaixa = {
|
|
|
313
313
|
}
|
|
314
314
|
},
|
|
315
315
|
}
|
|
316
|
+
|
|
317
|
+
export const TipoValorConfiguracaoBoleto = {
|
|
318
|
+
Percentual: '0',
|
|
319
|
+
Valor: '1',
|
|
320
|
+
|
|
321
|
+
description(val: string) {
|
|
322
|
+
switch (val) {
|
|
323
|
+
case this.Percentual:
|
|
324
|
+
return 'Percentual'
|
|
325
|
+
|
|
326
|
+
case this.Valor:
|
|
327
|
+
return 'Valor'
|
|
328
|
+
|
|
329
|
+
default:
|
|
330
|
+
return 'enum not found'
|
|
331
|
+
}
|
|
332
|
+
},
|
|
333
|
+
}
|
package/src/index.ts
CHANGED
|
@@ -7,6 +7,7 @@ export {
|
|
|
7
7
|
SituacaoPromocao,
|
|
8
8
|
TipoDescontoPromocao,
|
|
9
9
|
} from './commercial'
|
|
10
|
+
export { TipoDispositivo, TipoPermissao, TipoPeriferico, ModeloSat } from './config'
|
|
10
11
|
export {
|
|
11
12
|
MeioPagamento,
|
|
12
13
|
OperacaoOperadoraCartao,
|
|
@@ -18,6 +19,7 @@ export {
|
|
|
18
19
|
TipoLancamentoDocumentoFinanceiro,
|
|
19
20
|
TipoCaixaOperacao,
|
|
20
21
|
SituacaoCaixa,
|
|
22
|
+
TipoValorConfiguracaoBoleto,
|
|
21
23
|
} from './finance'
|
|
22
24
|
//teste de exportação
|
|
23
25
|
export {
|