mdz-enum 1.1.32 → 1.1.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.
@@ -1,4 +1,4 @@
1
- export declare const listEnum: (object: any, filters?: never[]) => {
2
- value: any;
3
- label: any;
4
- }[];
1
+ export declare const listEnum: (object: any, filters?: never[]) => {
2
+ value: any;
3
+ label: any;
4
+ }[];
package/dist/functions.js CHANGED
@@ -1,37 +1,37 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.listEnum = void 0;
4
- const listEnum = (object, filters = []) => {
5
- let list = [];
6
- if (filters && filters.length > 0) {
7
- for (var filter in filters) {
8
- for (var key in object) {
9
- if (typeof object[key] === 'function')
10
- continue;
11
- if (object[key] !== filters[filter])
12
- continue;
13
- const item = {
14
- value: object[key],
15
- label: object.description ? object.description(object[key]) : '',
16
- };
17
- list.push(item);
18
- }
19
- }
20
- }
21
- else {
22
- for (var key in object) {
23
- if (typeof object[key] === 'function')
24
- continue;
25
- const item = {
26
- value: object[key],
27
- label: object.description ? object.description(object[key]) : '',
28
- };
29
- list.push(item);
30
- }
31
- }
32
- list = list.sort(function (a, b) {
33
- return b.label - a.label;
34
- });
35
- return list;
36
- };
37
- exports.listEnum = listEnum;
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.listEnum = void 0;
4
+ const listEnum = (object, filters = []) => {
5
+ let list = [];
6
+ if (filters && filters.length > 0) {
7
+ for (var filter in filters) {
8
+ for (var key in object) {
9
+ if (typeof object[key] === 'function')
10
+ continue;
11
+ if (object[key] !== filters[filter])
12
+ continue;
13
+ const item = {
14
+ value: object[key],
15
+ label: object.description ? object.description(object[key]) : '',
16
+ };
17
+ list.push(item);
18
+ }
19
+ }
20
+ }
21
+ else {
22
+ for (var key in object) {
23
+ if (typeof object[key] === 'function')
24
+ continue;
25
+ const item = {
26
+ value: object[key],
27
+ label: object.description ? object.description(object[key]) : '',
28
+ };
29
+ list.push(item);
30
+ }
31
+ }
32
+ list = list.sort(function (a, b) {
33
+ return b.label - a.label;
34
+ });
35
+ return list;
36
+ };
37
+ exports.listEnum = listEnum;
@@ -1,56 +1,56 @@
1
- export declare const Situacao: {
2
- Inativo: string;
3
- Ativo: string;
4
- description(val: string): "enum not found" | "Inativo" | "Ativo";
5
- };
6
- export declare const TipoCompartilhamento: {
7
- NotaFiscal: string;
8
- PedidoVenda: string;
9
- Boleto: string;
10
- description(val: string): "enum not found" | "Pedido" | "Nota Fiscal" | "Boleto";
11
- };
12
- export declare const TipoDescontoGeneral: {
13
- Percentual: string;
14
- Valor: string;
15
- description(val: string): "enum not found" | "Valor" | "Percentual";
16
- };
17
- export declare const TipoTempo: {
18
- Dias: string;
19
- Semanas: string;
20
- Meses: string;
21
- Anos: string;
22
- description(val: string): "Dias" | "Semanas" | "Meses" | "Anos" | undefined;
23
- };
24
- export declare const Uf: {
25
- RO: string;
26
- AC: string;
27
- AM: string;
28
- RR: string;
29
- PA: string;
30
- AP: string;
31
- TO: string;
32
- MA: string;
33
- PI: string;
34
- CE: string;
35
- RN: string;
36
- PB: string;
37
- PE: string;
38
- AL: string;
39
- SE: string;
40
- BA: string;
41
- MG: string;
42
- ES: string;
43
- RJ: string;
44
- SP: string;
45
- PR: string;
46
- SC: string;
47
- RS: string;
48
- MS: string;
49
- MT: string;
50
- GO: string;
51
- DF: string;
52
- AN: string;
53
- EX: string;
54
- description(val: string): "Rondônia" | "Acre" | "Amazonas" | "Roraima" | "Pará" | "Amapá" | "Tocantins" | "Maranhão" | "Rio Grande do Norte" | "Paraíba" | "Pernambuco" | "Alagoas" | "Sergipe" | "Bahia" | "Minas Gerais" | "Espírito Santo" | "Rio de Janeiro" | "São Paulo" | "Paraná" | "Santa Catarina" | "Rio Grande do Sul" | "Mato Grosso do Sul" | "Mato Grosso" | "Goiás" | "Distrito Federal" | undefined;
55
- shortDescription(val: string): "RO" | "AC" | "AM" | "RR" | "PA" | "AP" | "TO" | "MA" | "RN" | "PB" | "PE" | "AL" | "SE" | "BA" | "MG" | "ES" | "RJ" | "SP" | "PR" | "SC" | "RS" | "MS" | "MT" | "GO" | "DF" | undefined;
56
- };
1
+ export declare const Situacao: {
2
+ Inativo: string;
3
+ Ativo: string;
4
+ description(val: string): "enum not found" | "Inativo" | "Ativo";
5
+ };
6
+ export declare const TipoCompartilhamento: {
7
+ NotaFiscal: string;
8
+ PedidoVenda: string;
9
+ Boleto: string;
10
+ description(val: string): "enum not found" | "Pedido" | "Nota Fiscal" | "Boleto";
11
+ };
12
+ export declare const TipoDescontoGeneral: {
13
+ Percentual: string;
14
+ Valor: string;
15
+ description(val: string): "enum not found" | "Valor" | "Percentual";
16
+ };
17
+ export declare const TipoTempo: {
18
+ Dias: string;
19
+ Semanas: string;
20
+ Meses: string;
21
+ Anos: string;
22
+ description(val: string): "Dias" | "Semanas" | "Meses" | "Anos" | undefined;
23
+ };
24
+ export declare const Uf: {
25
+ RO: string;
26
+ AC: string;
27
+ AM: string;
28
+ RR: string;
29
+ PA: string;
30
+ AP: string;
31
+ TO: string;
32
+ MA: string;
33
+ PI: string;
34
+ CE: string;
35
+ RN: string;
36
+ PB: string;
37
+ PE: string;
38
+ AL: string;
39
+ SE: string;
40
+ BA: string;
41
+ MG: string;
42
+ ES: string;
43
+ RJ: string;
44
+ SP: string;
45
+ PR: string;
46
+ SC: string;
47
+ RS: string;
48
+ MS: string;
49
+ MT: string;
50
+ GO: string;
51
+ DF: string;
52
+ AN: string;
53
+ EX: string;
54
+ description(val: string): "Rondônia" | "Acre" | "Amazonas" | "Roraima" | "Pará" | "Amapá" | "Tocantins" | "Maranhão" | "Rio Grande do Norte" | "Paraíba" | "Pernambuco" | "Alagoas" | "Sergipe" | "Bahia" | "Minas Gerais" | "Espírito Santo" | "Rio de Janeiro" | "São Paulo" | "Paraná" | "Santa Catarina" | "Rio Grande do Sul" | "Mato Grosso do Sul" | "Mato Grosso" | "Goiás" | "Distrito Federal" | undefined;
55
+ shortDescription(val: string): "RO" | "AC" | "AM" | "RR" | "PA" | "AP" | "TO" | "MA" | "RN" | "PB" | "PE" | "AL" | "SE" | "BA" | "MG" | "ES" | "RJ" | "SP" | "PR" | "SC" | "RS" | "MS" | "MT" | "GO" | "DF" | undefined;
56
+ };
@@ -1,205 +1,205 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.Uf = exports.TipoTempo = exports.TipoDescontoGeneral = exports.TipoCompartilhamento = exports.Situacao = void 0;
4
- exports.Situacao = {
5
- Inativo: '0',
6
- Ativo: '1',
7
- description(val) {
8
- switch (val) {
9
- case this.Inativo:
10
- return 'Inativo';
11
- case this.Ativo:
12
- return 'Ativo';
13
- default:
14
- return 'enum not found';
15
- }
16
- },
17
- };
18
- exports.TipoCompartilhamento = {
19
- NotaFiscal: '1',
20
- PedidoVenda: '2',
21
- Boleto: '3',
22
- description(val) {
23
- switch (val) {
24
- case this.NotaFiscal:
25
- return 'Nota Fiscal';
26
- case this.PedidoVenda:
27
- return 'Pedido';
28
- case this.Boleto:
29
- return 'Boleto';
30
- default:
31
- return 'enum not found';
32
- }
33
- },
34
- };
35
- exports.TipoDescontoGeneral = {
36
- Percentual: '0',
37
- Valor: '1',
38
- description(val) {
39
- switch (val) {
40
- case this.Percentual:
41
- return 'Percentual';
42
- case this.Valor:
43
- return 'Valor';
44
- default:
45
- return 'enum not found';
46
- }
47
- },
48
- };
49
- exports.TipoTempo = {
50
- Dias: '1',
51
- Semanas: '2',
52
- Meses: '3',
53
- Anos: '4',
54
- description(val) {
55
- switch (val) {
56
- case this.Dias:
57
- return 'Dias';
58
- case this.Semanas:
59
- return 'Semanas';
60
- case this.Meses:
61
- return 'Meses';
62
- case this.Anos:
63
- return 'Anos';
64
- }
65
- },
66
- };
67
- exports.Uf = {
68
- RO: '11',
69
- AC: '12',
70
- AM: '13',
71
- RR: '14',
72
- PA: '15',
73
- AP: '16',
74
- TO: '17',
75
- MA: '21',
76
- PI: '22',
77
- CE: '23',
78
- RN: '24',
79
- PB: '25',
80
- PE: '26',
81
- AL: '27',
82
- SE: '28',
83
- BA: '29',
84
- MG: '31',
85
- ES: '32',
86
- RJ: '33',
87
- SP: '35',
88
- PR: '41',
89
- SC: '42',
90
- RS: '43',
91
- MS: '50',
92
- MT: '51',
93
- GO: '52',
94
- DF: '53',
95
- AN: '91',
96
- EX: '99',
97
- description(val) {
98
- switch (val) {
99
- case this.RO:
100
- return 'Rondônia';
101
- case this.AC:
102
- return 'Acre';
103
- case this.AM:
104
- return 'Amazonas';
105
- case this.RR:
106
- return 'Roraima';
107
- case this.PA:
108
- return 'Pará';
109
- case this.AP:
110
- return 'Amapá';
111
- case this.TO:
112
- return 'Tocantins';
113
- case this.MA:
114
- return 'Maranhão';
115
- case this.RN:
116
- return 'Rio Grande do Norte';
117
- case this.PB:
118
- return 'Paraíba';
119
- case this.PE:
120
- return 'Pernambuco';
121
- case this.AL:
122
- return 'Alagoas';
123
- case this.SE:
124
- return 'Sergipe';
125
- case this.BA:
126
- return 'Bahia';
127
- case this.MG:
128
- return 'Minas Gerais';
129
- case this.ES:
130
- return 'Espírito Santo';
131
- case this.RJ:
132
- return 'Rio de Janeiro';
133
- case this.SP:
134
- return 'São Paulo';
135
- case this.PR:
136
- return 'Paraná';
137
- case this.SC:
138
- return 'Santa Catarina';
139
- case this.RS:
140
- return 'Rio Grande do Sul';
141
- case this.MS:
142
- return 'Mato Grosso do Sul';
143
- case this.MT:
144
- return 'Mato Grosso';
145
- case this.GO:
146
- return 'Goiás';
147
- case this.DF:
148
- return 'Distrito Federal';
149
- }
150
- },
151
- shortDescription(val) {
152
- switch (val) {
153
- case this.RO:
154
- return 'RO';
155
- case this.AC:
156
- return 'AC';
157
- case this.AM:
158
- return 'AM';
159
- case this.RR:
160
- return 'RR';
161
- case this.PA:
162
- return 'PA';
163
- case this.AP:
164
- return 'AP';
165
- case this.TO:
166
- return 'TO';
167
- case this.MA:
168
- return 'MA';
169
- case this.RN:
170
- return 'RN';
171
- case this.PB:
172
- return 'PB';
173
- case this.PE:
174
- return 'PE';
175
- case this.AL:
176
- return 'AL';
177
- case this.SE:
178
- return 'SE';
179
- case this.BA:
180
- return 'BA';
181
- case this.MG:
182
- return 'MG';
183
- case this.ES:
184
- return 'ES';
185
- case this.RJ:
186
- return 'RJ';
187
- case this.SP:
188
- return 'SP';
189
- case this.PR:
190
- return 'PR';
191
- case this.SC:
192
- return 'SC';
193
- case this.RS:
194
- return 'RS';
195
- case this.MS:
196
- return 'MS';
197
- case this.MT:
198
- return 'MT';
199
- case this.GO:
200
- return 'GO';
201
- case this.DF:
202
- return 'DF';
203
- }
204
- },
205
- };
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Uf = exports.TipoTempo = exports.TipoDescontoGeneral = exports.TipoCompartilhamento = exports.Situacao = void 0;
4
+ exports.Situacao = {
5
+ Inativo: '0',
6
+ Ativo: '1',
7
+ description(val) {
8
+ switch (val) {
9
+ case this.Inativo:
10
+ return 'Inativo';
11
+ case this.Ativo:
12
+ return 'Ativo';
13
+ default:
14
+ return 'enum not found';
15
+ }
16
+ },
17
+ };
18
+ exports.TipoCompartilhamento = {
19
+ NotaFiscal: '1',
20
+ PedidoVenda: '2',
21
+ Boleto: '3',
22
+ description(val) {
23
+ switch (val) {
24
+ case this.NotaFiscal:
25
+ return 'Nota Fiscal';
26
+ case this.PedidoVenda:
27
+ return 'Pedido';
28
+ case this.Boleto:
29
+ return 'Boleto';
30
+ default:
31
+ return 'enum not found';
32
+ }
33
+ },
34
+ };
35
+ exports.TipoDescontoGeneral = {
36
+ Percentual: '0',
37
+ Valor: '1',
38
+ description(val) {
39
+ switch (val) {
40
+ case this.Percentual:
41
+ return 'Percentual';
42
+ case this.Valor:
43
+ return 'Valor';
44
+ default:
45
+ return 'enum not found';
46
+ }
47
+ },
48
+ };
49
+ exports.TipoTempo = {
50
+ Dias: '1',
51
+ Semanas: '2',
52
+ Meses: '3',
53
+ Anos: '4',
54
+ description(val) {
55
+ switch (val) {
56
+ case this.Dias:
57
+ return 'Dias';
58
+ case this.Semanas:
59
+ return 'Semanas';
60
+ case this.Meses:
61
+ return 'Meses';
62
+ case this.Anos:
63
+ return 'Anos';
64
+ }
65
+ },
66
+ };
67
+ exports.Uf = {
68
+ RO: '11',
69
+ AC: '12',
70
+ AM: '13',
71
+ RR: '14',
72
+ PA: '15',
73
+ AP: '16',
74
+ TO: '17',
75
+ MA: '21',
76
+ PI: '22',
77
+ CE: '23',
78
+ RN: '24',
79
+ PB: '25',
80
+ PE: '26',
81
+ AL: '27',
82
+ SE: '28',
83
+ BA: '29',
84
+ MG: '31',
85
+ ES: '32',
86
+ RJ: '33',
87
+ SP: '35',
88
+ PR: '41',
89
+ SC: '42',
90
+ RS: '43',
91
+ MS: '50',
92
+ MT: '51',
93
+ GO: '52',
94
+ DF: '53',
95
+ AN: '91',
96
+ EX: '99',
97
+ description(val) {
98
+ switch (val) {
99
+ case this.RO:
100
+ return 'Rondônia';
101
+ case this.AC:
102
+ return 'Acre';
103
+ case this.AM:
104
+ return 'Amazonas';
105
+ case this.RR:
106
+ return 'Roraima';
107
+ case this.PA:
108
+ return 'Pará';
109
+ case this.AP:
110
+ return 'Amapá';
111
+ case this.TO:
112
+ return 'Tocantins';
113
+ case this.MA:
114
+ return 'Maranhão';
115
+ case this.RN:
116
+ return 'Rio Grande do Norte';
117
+ case this.PB:
118
+ return 'Paraíba';
119
+ case this.PE:
120
+ return 'Pernambuco';
121
+ case this.AL:
122
+ return 'Alagoas';
123
+ case this.SE:
124
+ return 'Sergipe';
125
+ case this.BA:
126
+ return 'Bahia';
127
+ case this.MG:
128
+ return 'Minas Gerais';
129
+ case this.ES:
130
+ return 'Espírito Santo';
131
+ case this.RJ:
132
+ return 'Rio de Janeiro';
133
+ case this.SP:
134
+ return 'São Paulo';
135
+ case this.PR:
136
+ return 'Paraná';
137
+ case this.SC:
138
+ return 'Santa Catarina';
139
+ case this.RS:
140
+ return 'Rio Grande do Sul';
141
+ case this.MS:
142
+ return 'Mato Grosso do Sul';
143
+ case this.MT:
144
+ return 'Mato Grosso';
145
+ case this.GO:
146
+ return 'Goiás';
147
+ case this.DF:
148
+ return 'Distrito Federal';
149
+ }
150
+ },
151
+ shortDescription(val) {
152
+ switch (val) {
153
+ case this.RO:
154
+ return 'RO';
155
+ case this.AC:
156
+ return 'AC';
157
+ case this.AM:
158
+ return 'AM';
159
+ case this.RR:
160
+ return 'RR';
161
+ case this.PA:
162
+ return 'PA';
163
+ case this.AP:
164
+ return 'AP';
165
+ case this.TO:
166
+ return 'TO';
167
+ case this.MA:
168
+ return 'MA';
169
+ case this.RN:
170
+ return 'RN';
171
+ case this.PB:
172
+ return 'PB';
173
+ case this.PE:
174
+ return 'PE';
175
+ case this.AL:
176
+ return 'AL';
177
+ case this.SE:
178
+ return 'SE';
179
+ case this.BA:
180
+ return 'BA';
181
+ case this.MG:
182
+ return 'MG';
183
+ case this.ES:
184
+ return 'ES';
185
+ case this.RJ:
186
+ return 'RJ';
187
+ case this.SP:
188
+ return 'SP';
189
+ case this.PR:
190
+ return 'PR';
191
+ case this.SC:
192
+ return 'SC';
193
+ case this.RS:
194
+ return 'RS';
195
+ case this.MS:
196
+ return 'MS';
197
+ case this.MT:
198
+ return 'MT';
199
+ case this.GO:
200
+ return 'GO';
201
+ case this.DF:
202
+ return 'DF';
203
+ }
204
+ },
205
+ };
package/dist/index.d.ts CHANGED
@@ -1,12 +1,12 @@
1
- export { listEnum } from './functions';
2
- export { SituacaoPedido, OperacaoPedido, OrigemPedido, TipoFrete, TipoDescontoPromocao, TipoMarketplace, SituacaoProdutoMarketplace, StatusProcessoCarrinho, TipoAplicacaoTabelaPreco, TipoValorTabelaPreco, TipoGrupoComissao, } from './commercial';
3
- export { TipoDispositivo, TipoPermissao, TipoPeriferico, ModeloSat, ModoFinalizacao, VersaoLayoutSat, TipoPrecoPadrao, TipoEtiqueta, ModeloEtiqueta, ParametroEtiquetaProduto, ModeloPimaco, TipoImpressao, } from './config';
4
- export { MeioPagamento, OperacaoOperadoraCartao, TipoCalculoParcelamento, TipoPromocao, IndicadorFormaPagamento, BandeiraCartao, SituacaoDocumentoFinanceiro, TipoLancamentoDocumentoFinanceiro, TipoCaixaOperacao, SituacaoCaixa, TipoValorConfiguracaoBoleto, SituacaoBoleto, SituacaoConciliacao, TipoDataDocumentoFinanceiro, TipoCalculoTaxaCartaoCredito, } from './finance';
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, TipoDesconto, SituacaoManifestoDestinatario, TipoEventoManifestacao, } from './fiscal';
6
- export { Situacao, TipoCompartilhamento, TipoDescontoGeneral, TipoTempo, Uf } from './general';
7
- export { TipoEndereco, TipoPessoa, GeneroPessoa, TipoOperacaoPessoaContaCorrente } from './people';
8
- export { TipoProduto, TipoValoracao, SituacaoMovimentacaoEstoque, OrigemMovimentacaoEstoque, TipoCategoria, TipoImagemGaleria, TipoAtualizacaoEstoque, } from './logistics';
9
- export { TipoRelatorio, AgrupamentoRelatorio } from './reports/index';
10
- export { TipoOrganizacao, SituacaoOrganizacao } from './platform';
11
- export { TipoIntegracaoPagamento, TipoPagamentoTuo } from './integration';
12
- export { ModoOperacaoPdv, ModoVisualizacaoMobile, TipoBuscaAutocomplete, TipoItemCheckout } from './checkout';
1
+ export { listEnum } from './functions';
2
+ export { SituacaoPedido, OperacaoPedido, OrigemPedido, TipoFrete, TipoDescontoPromocao, TipoMarketplace, SituacaoProdutoMarketplace, StatusProcessoCarrinho, TipoAplicacaoTabelaPreco, TipoValorTabelaPreco, TipoGrupoComissao, MotivoPedido, } from './commercial';
3
+ export { TipoDispositivo, TipoPermissao, TipoPeriferico, ModeloSat, ModoFinalizacao, VersaoLayoutSat, TipoPrecoPadrao, TipoEtiqueta, ModeloEtiqueta, ParametroEtiquetaProduto, ModeloPimaco, TipoImpressao, } from './config';
4
+ export { MeioPagamento, OperacaoOperadoraCartao, TipoCalculoParcelamento, TipoPromocao, IndicadorFormaPagamento, BandeiraCartao, SituacaoDocumentoFinanceiro, TipoLancamentoDocumentoFinanceiro, TipoCaixaOperacao, SituacaoCaixa, TipoValorConfiguracaoBoleto, SituacaoBoleto, SituacaoConciliacao, TipoDataDocumentoFinanceiro, TipoCalculoTaxaCartaoCredito, } from './finance';
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, TipoDesconto, SituacaoManifestoDestinatario, TipoEventoManifestacao, } from './fiscal';
6
+ export { Situacao, TipoCompartilhamento, TipoDescontoGeneral, TipoTempo, Uf } from './general';
7
+ export { TipoEndereco, TipoPessoa, GeneroPessoa, TipoOperacaoPessoaContaCorrente } from './people';
8
+ export { TipoProduto, TipoValoracao, SituacaoMovimentacaoEstoque, OrigemMovimentacaoEstoque, TipoCategoria, TipoImagemGaleria, TipoAtualizacaoEstoque, } from './logistics';
9
+ export { TipoRelatorio, AgrupamentoRelatorio } from './reports/index';
10
+ export { TipoOrganizacao, SituacaoOrganizacao } from './platform';
11
+ export { TipoIntegracaoPagamento, TipoPagamentoTuo } from './integration';
12
+ export { ModoOperacaoPdv, ModoVisualizacaoMobile, TipoBuscaAutocomplete, TipoItemCheckout } from './checkout';