mdz-enum 1.2.74 → 1.2.76

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.
@@ -0,0 +1,432 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UfDB = exports.StyleTypeLogos = exports.TipoLogos = exports.ProporcaoImagem = 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
+ case this.PI:
150
+ return 'Piauí';
151
+ case this.CE:
152
+ return 'Ceará';
153
+ }
154
+ },
155
+ shortDescription(val) {
156
+ switch (val) {
157
+ case this.PI:
158
+ return 'PI';
159
+ case this.CE:
160
+ return 'CE';
161
+ case this.RO:
162
+ return 'RO';
163
+ case this.AC:
164
+ return 'AC';
165
+ case this.AM:
166
+ return 'AM';
167
+ case this.RR:
168
+ return 'RR';
169
+ case this.PA:
170
+ return 'PA';
171
+ case this.AP:
172
+ return 'AP';
173
+ case this.TO:
174
+ return 'TO';
175
+ case this.MA:
176
+ return 'MA';
177
+ case this.RN:
178
+ return 'RN';
179
+ case this.PB:
180
+ return 'PB';
181
+ case this.PE:
182
+ return 'PE';
183
+ case this.AL:
184
+ return 'AL';
185
+ case this.SE:
186
+ return 'SE';
187
+ case this.BA:
188
+ return 'BA';
189
+ case this.MG:
190
+ return 'MG';
191
+ case this.ES:
192
+ return 'ES';
193
+ case this.RJ:
194
+ return 'RJ';
195
+ case this.SP:
196
+ return 'SP';
197
+ case this.PR:
198
+ return 'PR';
199
+ case this.SC:
200
+ return 'SC';
201
+ case this.RS:
202
+ return 'RS';
203
+ case this.MS:
204
+ return 'MS';
205
+ case this.MT:
206
+ return 'MT';
207
+ case this.GO:
208
+ return 'GO';
209
+ case this.DF:
210
+ return 'DF';
211
+ }
212
+ },
213
+ };
214
+ exports.ProporcaoImagem = {
215
+ '1/1': '0',
216
+ '9/16': '1',
217
+ description(val) {
218
+ switch (val) {
219
+ case this['1/1']:
220
+ return '1/1';
221
+ case this['9/16']:
222
+ return '9/16';
223
+ default:
224
+ return 'enum not found';
225
+ }
226
+ },
227
+ aspectRatioValue(val) {
228
+ switch (val) {
229
+ case this['1/1']:
230
+ return 1 / 1;
231
+ case this['9/16']:
232
+ return 9 / 16;
233
+ default:
234
+ return 1 / 1;
235
+ }
236
+ },
237
+ };
238
+ exports.TipoLogos = {
239
+ Quadrada: '0',
240
+ Retangular: '1',
241
+ description(val) {
242
+ switch (val) {
243
+ case this.Quadrada:
244
+ return 'Quadrada';
245
+ case this.Retangular:
246
+ return 'Retangular';
247
+ default:
248
+ return 'enum not found';
249
+ }
250
+ },
251
+ };
252
+ exports.StyleTypeLogos = {
253
+ Branca: '0',
254
+ Preta: '1',
255
+ Default: '2',
256
+ description(val) {
257
+ switch (val) {
258
+ case this.Branca:
259
+ return 'Branca';
260
+ case this.Preta:
261
+ return 'Preta';
262
+ case this.Default:
263
+ return 'Default';
264
+ default:
265
+ return 'enum not found';
266
+ }
267
+ },
268
+ };
269
+ exports.UfDB = {
270
+ RO: {
271
+ Descricao: 'RO',
272
+ Chave: 1,
273
+ Codigo_Ibge: '11',
274
+ Nome: 'Rondônia',
275
+ },
276
+ AC: {
277
+ Descricao: 'AC',
278
+ Chave: 2,
279
+ Codigo_Ibge: '12',
280
+ Nome: 'Acre',
281
+ },
282
+ AM: {
283
+ Descricao: 'AM',
284
+ Chave: 3,
285
+ Codigo_Ibge: '13',
286
+ Nome: 'Amazonas',
287
+ },
288
+ RR: {
289
+ Descricao: 'RR',
290
+ Chave: 4,
291
+ Codigo_Ibge: '14',
292
+ Nome: 'Roraima',
293
+ },
294
+ PA: {
295
+ Descricao: 'AC',
296
+ Chave: 5,
297
+ Codigo_Ibge: '15',
298
+ Nome: 'Pará',
299
+ },
300
+ AP: {
301
+ Descricao: 'AC',
302
+ Chave: 6,
303
+ Codigo_Ibge: '16',
304
+ Nome: 'Amapá',
305
+ },
306
+ TO: {
307
+ Descricao: 'TO',
308
+ Chave: 7,
309
+ Codigo_Ibge: '17',
310
+ Nome: 'Tocantins',
311
+ },
312
+ MA: {
313
+ Descricao: 'MA',
314
+ Chave: 8,
315
+ Codigo_Ibge: '21',
316
+ Nome: 'Maranhão',
317
+ },
318
+ PI: {
319
+ Descricao: 'PI',
320
+ Chave: 9,
321
+ Codigo_Ibge: '22',
322
+ Nome: 'Piauí',
323
+ },
324
+ CE: {
325
+ Descricao: 'CE',
326
+ Chave: 10,
327
+ Codigo_Ibge: '23',
328
+ Nome: 'Ceará',
329
+ },
330
+ RN: {
331
+ Descricao: 'RN',
332
+ Chave: 11,
333
+ Codigo_Ibge: '24',
334
+ Nome: 'Rio Grande do Norte',
335
+ },
336
+ PB: {
337
+ Descricao: 'PB',
338
+ Chave: 12,
339
+ Codigo_Ibge: '25',
340
+ Nome: 'Rio Grande do Norte',
341
+ },
342
+ PE: {
343
+ Descricao: 'PE',
344
+ Chave: 13,
345
+ Codigo_Ibge: '26',
346
+ Nome: 'Pernambuco',
347
+ },
348
+ AL: {
349
+ Descricao: 'AL',
350
+ Chave: 14,
351
+ Codigo_Ibge: '27',
352
+ Nome: 'Alagoas',
353
+ },
354
+ SE: {
355
+ Descricao: 'SE',
356
+ Chave: 15,
357
+ Codigo_Ibge: '28',
358
+ Nome: 'Sergipe',
359
+ },
360
+ BA: {
361
+ Descricao: 'BA',
362
+ Chave: 16,
363
+ Codigo_Ibge: '29',
364
+ Nome: 'Bahia',
365
+ },
366
+ MG: {
367
+ Descricao: 'MG',
368
+ Chave: 17,
369
+ Codigo_Ibge: '31',
370
+ Nome: 'Minas Geraris',
371
+ },
372
+ ES: {
373
+ Descricao: 'ES',
374
+ Chave: 18,
375
+ Codigo_Ibge: '32',
376
+ Nome: 'Espírito Santo',
377
+ },
378
+ RJ: {
379
+ Descricao: 'RJ',
380
+ Chave: 19,
381
+ Codigo_Ibge: '33',
382
+ Nome: 'Rio de Janeiro',
383
+ },
384
+ SP: {
385
+ Descricao: 'SP',
386
+ Chave: 20,
387
+ Codigo_Ibge: '35',
388
+ Nome: 'São Paulo',
389
+ },
390
+ PR: {
391
+ Descricao: 'PR',
392
+ Chave: 21,
393
+ Codigo_Ibge: '41',
394
+ Nome: 'Paraná',
395
+ },
396
+ SC: {
397
+ Descricao: 'SC',
398
+ Chave: 22,
399
+ Codigo_Ibge: '42',
400
+ Nome: 'Santa Catarina',
401
+ },
402
+ MS: {
403
+ Descricao: 'MS',
404
+ Chave: 23,
405
+ Codigo_Ibge: '50',
406
+ Nome: 'Mato Grosso do Sul',
407
+ },
408
+ MT: {
409
+ Descricao: 'MT',
410
+ Chave: 24,
411
+ Codigo_Ibge: '51',
412
+ Nome: 'Mato Grosso',
413
+ },
414
+ GO: {
415
+ Descricao: 'GO',
416
+ Chave: 25,
417
+ Codigo_Ibge: '52',
418
+ Nome: 'Goiás',
419
+ },
420
+ DF: {
421
+ Descricao: 'DF',
422
+ Chave: 26,
423
+ Codigo_Ibge: '53',
424
+ Nome: 'Distrito Federal',
425
+ },
426
+ RS: {
427
+ Descricao: 'RS',
428
+ Chave: 27,
429
+ Codigo_Ibge: '43',
430
+ Nome: 'Rio Grande do Sul',
431
+ },
432
+ };
@@ -0,0 +1,13 @@
1
+ export { listEnum, listObjectEnum } from './functions';
2
+ export { SituacaoPedido, OperacaoPedido, OrigemPedido, TipoFrete, TipoDescontoPromocao, TipoMarketplace, SituacaoProdutoMarketplace, StatusProcessoCarrinho, TipoAplicacaoTabelaPreco, TipoValorTabelaPreco, TipoGrupoComissao, MotivoPedido, SituacaoItemConsignacao, TipoDataPedido, ModalConsignacaoOperacao, TipoIntegracaoFrete, SituacaoOperacao, SituacaoPagamento, SituacaoEntrega, SituacaoEtiqueta, MotivoDevolucao, SituacaoDevolucao, SituacaoDevolucaoPedido, VariaveisPedido, } from './commercial';
3
+ export { TipoDispositivo, TipoPermissao, TipoPeriferico, ModeloSat, ModoFinalizacao, VersaoLayoutSat, TipoPrecoPadrao, TipoEtiqueta, ModeloEtiqueta, ParametroEtiquetaProduto, ModeloPimaco, TipoImpressao, TipoInformacaoBalanca, ModeloBalanca, TipoAtualizacaoSocket, TipoArquivoExportacao, TipoImportacao, OrigemAutorizacao, SituacaoAutorizacao, ModeloPOS } from './config';
4
+ export { MeioPagamento, OperacaoOperadoraCartao, TipoCalculoParcelamento, TipoPromocao, IndicadorFormaPagamento, BandeiraCartao, SituacaoDocumentoFinanceiro, TipoLancamentoDocumentoFinanceiro, TipoCaixaOperacao, SituacaoCaixa, TipoValorConfiguracaoBoleto, SituacaoBoleto, SituacaoConciliacao, TipoDataDocumentoFinanceiro, TipoCalculoTaxaCartaoCredito, VariaveisBoleto, SituacaoContaMatera, } 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, PerfilSped, TipoAtividade, IndicadorEmitente, TipoCampo, OrigemCampo, VariaveisNotaFiscal, IndicadorOrigemImportacaoCombustivel, TipoNaturezaOperacaoNotaFiscal, } from './fiscal';
6
+ export { Situacao, TipoCompartilhamento, TipoDescontoGeneral, TipoTempo, Uf, ProporcaoImagem, TipoLogos, StyleTypeLogos, UfDB, } from './general';
7
+ export { TipoEndereco, TipoPessoa, GeneroPessoa, TipoOperacaoPessoaContaCorrente, TipoLancamentoValeCredito, } from './people';
8
+ export { TipoProduto, TipoValoracao, SituacaoMovimentacaoEstoque, OrigemMovimentacaoEstoque, TipoCategoria, TipoImagemGaleria, TipoAtualizacaoEstoque, TipoLeiRotulagem, TipoQuantidadeInfoNutricional, TipoItem, SituacaoInventario, SituacaoItemInventario, TipoAjusteInventario, TipoMovimentacaoItemInventario, TipoDesdobramentoProduto, } from './logistics';
9
+ export { TipoRelatorio, AgrupamentoRelatorio, AgrupamentoRelatoriosProdutos } from './reports/index';
10
+ export { TipoOrganizacao, SituacaoOrganizacao, TipoBanners, EstruturaNegocio, SituacaoAtivacao, TipoTicket, SituacaoTicket, SituacaoAplicativo, SituacaoPlanos, SituacaoUsuarios, Segmento, Perfis, TipoRequisicao, SituacaoRequisicao, TipoAplicativo, Aplicativos, Modulos, TipoTransacao, IsDemonstracao, } from './platform';
11
+ export { TipoIntegracaoPagamento, TipoPagamentoTuo, TipoPagamentoSafeTwoPay } from './integration';
12
+ export { ModoOperacaoPdv, ModoVisualizacaoMobile, TipoBuscaAutocomplete, TipoItemCheckout } from './checkout';
13
+ export { TipoSolicitacao, SituacaoSolicitacao, SituacaoFila, TipoHistoricoSolicitacao, TipoAbrangenciaNotificacao, TipoNotificacao, } from './common';
package/dist/index.js ADDED
@@ -0,0 +1,182 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.TipoPromocao = exports.TipoCalculoParcelamento = exports.OperacaoOperadoraCartao = exports.MeioPagamento = exports.ModeloPOS = exports.SituacaoAutorizacao = exports.OrigemAutorizacao = exports.TipoImportacao = exports.TipoArquivoExportacao = exports.TipoAtualizacaoSocket = exports.ModeloBalanca = exports.TipoInformacaoBalanca = exports.TipoImpressao = exports.ModeloPimaco = exports.ParametroEtiquetaProduto = exports.ModeloEtiqueta = exports.TipoEtiqueta = exports.TipoPrecoPadrao = exports.VersaoLayoutSat = exports.ModoFinalizacao = exports.ModeloSat = exports.TipoPeriferico = exports.TipoPermissao = exports.TipoDispositivo = exports.VariaveisPedido = exports.SituacaoDevolucaoPedido = exports.SituacaoDevolucao = exports.MotivoDevolucao = exports.SituacaoEtiqueta = exports.SituacaoEntrega = exports.SituacaoPagamento = exports.SituacaoOperacao = exports.TipoIntegracaoFrete = exports.ModalConsignacaoOperacao = exports.TipoDataPedido = exports.SituacaoItemConsignacao = exports.MotivoPedido = exports.TipoGrupoComissao = exports.TipoValorTabelaPreco = exports.TipoAplicacaoTabelaPreco = exports.StatusProcessoCarrinho = exports.SituacaoProdutoMarketplace = exports.TipoMarketplace = exports.TipoDescontoPromocao = exports.TipoFrete = exports.OrigemPedido = exports.OperacaoPedido = exports.SituacaoPedido = exports.listObjectEnum = exports.listEnum = void 0;
4
+ exports.TipoCompartilhamento = exports.Situacao = exports.TipoNaturezaOperacaoNotaFiscal = exports.IndicadorOrigemImportacaoCombustivel = exports.VariaveisNotaFiscal = exports.OrigemCampo = exports.TipoCampo = exports.IndicadorEmitente = exports.TipoAtividade = exports.PerfilSped = exports.TipoEventoManifestacao = exports.SituacaoManifestoDestinatario = exports.TipoDesconto = 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.SituacaoContaMatera = exports.VariaveisBoleto = exports.TipoCalculoTaxaCartaoCredito = exports.TipoDataDocumentoFinanceiro = exports.SituacaoConciliacao = exports.SituacaoBoleto = exports.TipoValorConfiguracaoBoleto = exports.SituacaoCaixa = exports.TipoCaixaOperacao = exports.TipoLancamentoDocumentoFinanceiro = exports.SituacaoDocumentoFinanceiro = exports.BandeiraCartao = exports.IndicadorFormaPagamento = void 0;
5
+ exports.TipoIntegracaoPagamento = exports.IsDemonstracao = exports.TipoTransacao = exports.Modulos = exports.Aplicativos = exports.TipoAplicativo = exports.SituacaoRequisicao = exports.TipoRequisicao = exports.Perfis = exports.Segmento = exports.SituacaoUsuarios = exports.SituacaoPlanos = exports.SituacaoAplicativo = exports.SituacaoTicket = exports.TipoTicket = exports.SituacaoAtivacao = exports.EstruturaNegocio = exports.TipoBanners = exports.SituacaoOrganizacao = exports.TipoOrganizacao = exports.AgrupamentoRelatoriosProdutos = exports.AgrupamentoRelatorio = exports.TipoRelatorio = exports.TipoDesdobramentoProduto = exports.TipoMovimentacaoItemInventario = exports.TipoAjusteInventario = exports.SituacaoItemInventario = exports.SituacaoInventario = exports.TipoItem = exports.TipoQuantidadeInfoNutricional = exports.TipoLeiRotulagem = exports.TipoAtualizacaoEstoque = exports.TipoImagemGaleria = exports.TipoCategoria = exports.OrigemMovimentacaoEstoque = exports.SituacaoMovimentacaoEstoque = exports.TipoValoracao = exports.TipoProduto = exports.TipoLancamentoValeCredito = exports.TipoOperacaoPessoaContaCorrente = exports.GeneroPessoa = exports.TipoPessoa = exports.TipoEndereco = exports.UfDB = exports.StyleTypeLogos = exports.TipoLogos = exports.ProporcaoImagem = exports.Uf = exports.TipoTempo = exports.TipoDescontoGeneral = void 0;
6
+ exports.TipoNotificacao = exports.TipoAbrangenciaNotificacao = exports.TipoHistoricoSolicitacao = exports.SituacaoFila = exports.SituacaoSolicitacao = exports.TipoSolicitacao = exports.TipoItemCheckout = exports.TipoBuscaAutocomplete = exports.ModoVisualizacaoMobile = exports.ModoOperacaoPdv = exports.TipoPagamentoSafeTwoPay = exports.TipoPagamentoTuo = void 0;
7
+ var functions_1 = require("./functions");
8
+ Object.defineProperty(exports, "listEnum", { enumerable: true, get: function () { return functions_1.listEnum; } });
9
+ Object.defineProperty(exports, "listObjectEnum", { enumerable: true, get: function () { return functions_1.listObjectEnum; } });
10
+ var commercial_1 = require("./commercial");
11
+ Object.defineProperty(exports, "SituacaoPedido", { enumerable: true, get: function () { return commercial_1.SituacaoPedido; } });
12
+ Object.defineProperty(exports, "OperacaoPedido", { enumerable: true, get: function () { return commercial_1.OperacaoPedido; } });
13
+ Object.defineProperty(exports, "OrigemPedido", { enumerable: true, get: function () { return commercial_1.OrigemPedido; } });
14
+ Object.defineProperty(exports, "TipoFrete", { enumerable: true, get: function () { return commercial_1.TipoFrete; } });
15
+ Object.defineProperty(exports, "TipoDescontoPromocao", { enumerable: true, get: function () { return commercial_1.TipoDescontoPromocao; } });
16
+ Object.defineProperty(exports, "TipoMarketplace", { enumerable: true, get: function () { return commercial_1.TipoMarketplace; } });
17
+ Object.defineProperty(exports, "SituacaoProdutoMarketplace", { enumerable: true, get: function () { return commercial_1.SituacaoProdutoMarketplace; } });
18
+ Object.defineProperty(exports, "StatusProcessoCarrinho", { enumerable: true, get: function () { return commercial_1.StatusProcessoCarrinho; } });
19
+ Object.defineProperty(exports, "TipoAplicacaoTabelaPreco", { enumerable: true, get: function () { return commercial_1.TipoAplicacaoTabelaPreco; } });
20
+ Object.defineProperty(exports, "TipoValorTabelaPreco", { enumerable: true, get: function () { return commercial_1.TipoValorTabelaPreco; } });
21
+ Object.defineProperty(exports, "TipoGrupoComissao", { enumerable: true, get: function () { return commercial_1.TipoGrupoComissao; } });
22
+ Object.defineProperty(exports, "MotivoPedido", { enumerable: true, get: function () { return commercial_1.MotivoPedido; } });
23
+ Object.defineProperty(exports, "SituacaoItemConsignacao", { enumerable: true, get: function () { return commercial_1.SituacaoItemConsignacao; } });
24
+ Object.defineProperty(exports, "TipoDataPedido", { enumerable: true, get: function () { return commercial_1.TipoDataPedido; } });
25
+ Object.defineProperty(exports, "ModalConsignacaoOperacao", { enumerable: true, get: function () { return commercial_1.ModalConsignacaoOperacao; } });
26
+ Object.defineProperty(exports, "TipoIntegracaoFrete", { enumerable: true, get: function () { return commercial_1.TipoIntegracaoFrete; } });
27
+ Object.defineProperty(exports, "SituacaoOperacao", { enumerable: true, get: function () { return commercial_1.SituacaoOperacao; } });
28
+ Object.defineProperty(exports, "SituacaoPagamento", { enumerable: true, get: function () { return commercial_1.SituacaoPagamento; } });
29
+ Object.defineProperty(exports, "SituacaoEntrega", { enumerable: true, get: function () { return commercial_1.SituacaoEntrega; } });
30
+ Object.defineProperty(exports, "SituacaoEtiqueta", { enumerable: true, get: function () { return commercial_1.SituacaoEtiqueta; } });
31
+ Object.defineProperty(exports, "MotivoDevolucao", { enumerable: true, get: function () { return commercial_1.MotivoDevolucao; } });
32
+ Object.defineProperty(exports, "SituacaoDevolucao", { enumerable: true, get: function () { return commercial_1.SituacaoDevolucao; } });
33
+ Object.defineProperty(exports, "SituacaoDevolucaoPedido", { enumerable: true, get: function () { return commercial_1.SituacaoDevolucaoPedido; } });
34
+ Object.defineProperty(exports, "VariaveisPedido", { enumerable: true, get: function () { return commercial_1.VariaveisPedido; } });
35
+ var config_1 = require("./config");
36
+ Object.defineProperty(exports, "TipoDispositivo", { enumerable: true, get: function () { return config_1.TipoDispositivo; } });
37
+ Object.defineProperty(exports, "TipoPermissao", { enumerable: true, get: function () { return config_1.TipoPermissao; } });
38
+ Object.defineProperty(exports, "TipoPeriferico", { enumerable: true, get: function () { return config_1.TipoPeriferico; } });
39
+ Object.defineProperty(exports, "ModeloSat", { enumerable: true, get: function () { return config_1.ModeloSat; } });
40
+ Object.defineProperty(exports, "ModoFinalizacao", { enumerable: true, get: function () { return config_1.ModoFinalizacao; } });
41
+ Object.defineProperty(exports, "VersaoLayoutSat", { enumerable: true, get: function () { return config_1.VersaoLayoutSat; } });
42
+ Object.defineProperty(exports, "TipoPrecoPadrao", { enumerable: true, get: function () { return config_1.TipoPrecoPadrao; } });
43
+ Object.defineProperty(exports, "TipoEtiqueta", { enumerable: true, get: function () { return config_1.TipoEtiqueta; } });
44
+ Object.defineProperty(exports, "ModeloEtiqueta", { enumerable: true, get: function () { return config_1.ModeloEtiqueta; } });
45
+ Object.defineProperty(exports, "ParametroEtiquetaProduto", { enumerable: true, get: function () { return config_1.ParametroEtiquetaProduto; } });
46
+ Object.defineProperty(exports, "ModeloPimaco", { enumerable: true, get: function () { return config_1.ModeloPimaco; } });
47
+ Object.defineProperty(exports, "TipoImpressao", { enumerable: true, get: function () { return config_1.TipoImpressao; } });
48
+ Object.defineProperty(exports, "TipoInformacaoBalanca", { enumerable: true, get: function () { return config_1.TipoInformacaoBalanca; } });
49
+ Object.defineProperty(exports, "ModeloBalanca", { enumerable: true, get: function () { return config_1.ModeloBalanca; } });
50
+ Object.defineProperty(exports, "TipoAtualizacaoSocket", { enumerable: true, get: function () { return config_1.TipoAtualizacaoSocket; } });
51
+ Object.defineProperty(exports, "TipoArquivoExportacao", { enumerable: true, get: function () { return config_1.TipoArquivoExportacao; } });
52
+ Object.defineProperty(exports, "TipoImportacao", { enumerable: true, get: function () { return config_1.TipoImportacao; } });
53
+ Object.defineProperty(exports, "OrigemAutorizacao", { enumerable: true, get: function () { return config_1.OrigemAutorizacao; } });
54
+ Object.defineProperty(exports, "SituacaoAutorizacao", { enumerable: true, get: function () { return config_1.SituacaoAutorizacao; } });
55
+ Object.defineProperty(exports, "ModeloPOS", { enumerable: true, get: function () { return config_1.ModeloPOS; } });
56
+ var finance_1 = require("./finance");
57
+ Object.defineProperty(exports, "MeioPagamento", { enumerable: true, get: function () { return finance_1.MeioPagamento; } });
58
+ Object.defineProperty(exports, "OperacaoOperadoraCartao", { enumerable: true, get: function () { return finance_1.OperacaoOperadoraCartao; } });
59
+ Object.defineProperty(exports, "TipoCalculoParcelamento", { enumerable: true, get: function () { return finance_1.TipoCalculoParcelamento; } });
60
+ Object.defineProperty(exports, "TipoPromocao", { enumerable: true, get: function () { return finance_1.TipoPromocao; } });
61
+ Object.defineProperty(exports, "IndicadorFormaPagamento", { enumerable: true, get: function () { return finance_1.IndicadorFormaPagamento; } });
62
+ Object.defineProperty(exports, "BandeiraCartao", { enumerable: true, get: function () { return finance_1.BandeiraCartao; } });
63
+ Object.defineProperty(exports, "SituacaoDocumentoFinanceiro", { enumerable: true, get: function () { return finance_1.SituacaoDocumentoFinanceiro; } });
64
+ Object.defineProperty(exports, "TipoLancamentoDocumentoFinanceiro", { enumerable: true, get: function () { return finance_1.TipoLancamentoDocumentoFinanceiro; } });
65
+ Object.defineProperty(exports, "TipoCaixaOperacao", { enumerable: true, get: function () { return finance_1.TipoCaixaOperacao; } });
66
+ Object.defineProperty(exports, "SituacaoCaixa", { enumerable: true, get: function () { return finance_1.SituacaoCaixa; } });
67
+ Object.defineProperty(exports, "TipoValorConfiguracaoBoleto", { enumerable: true, get: function () { return finance_1.TipoValorConfiguracaoBoleto; } });
68
+ Object.defineProperty(exports, "SituacaoBoleto", { enumerable: true, get: function () { return finance_1.SituacaoBoleto; } });
69
+ Object.defineProperty(exports, "SituacaoConciliacao", { enumerable: true, get: function () { return finance_1.SituacaoConciliacao; } });
70
+ Object.defineProperty(exports, "TipoDataDocumentoFinanceiro", { enumerable: true, get: function () { return finance_1.TipoDataDocumentoFinanceiro; } });
71
+ Object.defineProperty(exports, "TipoCalculoTaxaCartaoCredito", { enumerable: true, get: function () { return finance_1.TipoCalculoTaxaCartaoCredito; } });
72
+ Object.defineProperty(exports, "VariaveisBoleto", { enumerable: true, get: function () { return finance_1.VariaveisBoleto; } });
73
+ Object.defineProperty(exports, "SituacaoContaMatera", { enumerable: true, get: function () { return finance_1.SituacaoContaMatera; } });
74
+ //teste de exportação
75
+ var fiscal_1 = require("./fiscal");
76
+ Object.defineProperty(exports, "COFINS", { enumerable: true, get: function () { return fiscal_1.COFINS; } });
77
+ Object.defineProperty(exports, "ICMS_CSOSN", { enumerable: true, get: function () { return fiscal_1.ICMS_CSOSN; } });
78
+ Object.defineProperty(exports, "ICMS_CST", { enumerable: true, get: function () { return fiscal_1.ICMS_CST; } });
79
+ Object.defineProperty(exports, "IPI", { enumerable: true, get: function () { return fiscal_1.IPI; } });
80
+ Object.defineProperty(exports, "PIS", { enumerable: true, get: function () { return fiscal_1.PIS; } });
81
+ Object.defineProperty(exports, "TipoOperacaoNotaFiscal", { enumerable: true, get: function () { return fiscal_1.TipoOperacaoNotaFiscal; } });
82
+ Object.defineProperty(exports, "OperacaoNotaFiscal", { enumerable: true, get: function () { return fiscal_1.OperacaoNotaFiscal; } });
83
+ Object.defineProperty(exports, "ModeloNotaFiscal", { enumerable: true, get: function () { return fiscal_1.ModeloNotaFiscal; } });
84
+ Object.defineProperty(exports, "OrigemProduto", { enumerable: true, get: function () { return fiscal_1.OrigemProduto; } });
85
+ Object.defineProperty(exports, "IdentificadorLocalDestino", { enumerable: true, get: function () { return fiscal_1.IdentificadorLocalDestino; } });
86
+ Object.defineProperty(exports, "AmbienteNotaFiscal", { enumerable: true, get: function () { return fiscal_1.AmbienteNotaFiscal; } });
87
+ Object.defineProperty(exports, "ConsumidorFinalNotaFiscal", { enumerable: true, get: function () { return fiscal_1.ConsumidorFinalNotaFiscal; } });
88
+ Object.defineProperty(exports, "FinalidadeEmissaoNotaFiscal", { enumerable: true, get: function () { return fiscal_1.FinalidadeEmissaoNotaFiscal; } });
89
+ Object.defineProperty(exports, "IndicadorIEDestinatario", { enumerable: true, get: function () { return fiscal_1.IndicadorIEDestinatario; } });
90
+ Object.defineProperty(exports, "IndicadorIntermediador", { enumerable: true, get: function () { return fiscal_1.IndicadorIntermediador; } });
91
+ Object.defineProperty(exports, "IndicadorPresencaNotaFiscal", { enumerable: true, get: function () { return fiscal_1.IndicadorPresencaNotaFiscal; } });
92
+ Object.defineProperty(exports, "ModalidadeBaseCalculo", { enumerable: true, get: function () { return fiscal_1.ModalidadeBaseCalculo; } });
93
+ Object.defineProperty(exports, "ModalidadeBaseCalculoST", { enumerable: true, get: function () { return fiscal_1.ModalidadeBaseCalculoST; } });
94
+ Object.defineProperty(exports, "MotivoDesoneracao", { enumerable: true, get: function () { return fiscal_1.MotivoDesoneracao; } });
95
+ Object.defineProperty(exports, "RegimeTributario", { enumerable: true, get: function () { return fiscal_1.RegimeTributario; } });
96
+ Object.defineProperty(exports, "TipoEmissaoNotaFiscal", { enumerable: true, get: function () { return fiscal_1.TipoEmissaoNotaFiscal; } });
97
+ Object.defineProperty(exports, "TipoImpressaoDanfe", { enumerable: true, get: function () { return fiscal_1.TipoImpressaoDanfe; } });
98
+ Object.defineProperty(exports, "SituacaoNotaFiscal", { enumerable: true, get: function () { return fiscal_1.SituacaoNotaFiscal; } });
99
+ Object.defineProperty(exports, "TipoInformacaoAdicional", { enumerable: true, get: function () { return fiscal_1.TipoInformacaoAdicional; } });
100
+ Object.defineProperty(exports, "TipoDesconto", { enumerable: true, get: function () { return fiscal_1.TipoDesconto; } });
101
+ Object.defineProperty(exports, "SituacaoManifestoDestinatario", { enumerable: true, get: function () { return fiscal_1.SituacaoManifestoDestinatario; } });
102
+ Object.defineProperty(exports, "TipoEventoManifestacao", { enumerable: true, get: function () { return fiscal_1.TipoEventoManifestacao; } });
103
+ Object.defineProperty(exports, "PerfilSped", { enumerable: true, get: function () { return fiscal_1.PerfilSped; } });
104
+ Object.defineProperty(exports, "TipoAtividade", { enumerable: true, get: function () { return fiscal_1.TipoAtividade; } });
105
+ Object.defineProperty(exports, "IndicadorEmitente", { enumerable: true, get: function () { return fiscal_1.IndicadorEmitente; } });
106
+ Object.defineProperty(exports, "TipoCampo", { enumerable: true, get: function () { return fiscal_1.TipoCampo; } });
107
+ Object.defineProperty(exports, "OrigemCampo", { enumerable: true, get: function () { return fiscal_1.OrigemCampo; } });
108
+ Object.defineProperty(exports, "VariaveisNotaFiscal", { enumerable: true, get: function () { return fiscal_1.VariaveisNotaFiscal; } });
109
+ Object.defineProperty(exports, "IndicadorOrigemImportacaoCombustivel", { enumerable: true, get: function () { return fiscal_1.IndicadorOrigemImportacaoCombustivel; } });
110
+ Object.defineProperty(exports, "TipoNaturezaOperacaoNotaFiscal", { enumerable: true, get: function () { return fiscal_1.TipoNaturezaOperacaoNotaFiscal; } });
111
+ var general_1 = require("./general");
112
+ Object.defineProperty(exports, "Situacao", { enumerable: true, get: function () { return general_1.Situacao; } });
113
+ Object.defineProperty(exports, "TipoCompartilhamento", { enumerable: true, get: function () { return general_1.TipoCompartilhamento; } });
114
+ Object.defineProperty(exports, "TipoDescontoGeneral", { enumerable: true, get: function () { return general_1.TipoDescontoGeneral; } });
115
+ Object.defineProperty(exports, "TipoTempo", { enumerable: true, get: function () { return general_1.TipoTempo; } });
116
+ Object.defineProperty(exports, "Uf", { enumerable: true, get: function () { return general_1.Uf; } });
117
+ Object.defineProperty(exports, "ProporcaoImagem", { enumerable: true, get: function () { return general_1.ProporcaoImagem; } });
118
+ Object.defineProperty(exports, "TipoLogos", { enumerable: true, get: function () { return general_1.TipoLogos; } });
119
+ Object.defineProperty(exports, "StyleTypeLogos", { enumerable: true, get: function () { return general_1.StyleTypeLogos; } });
120
+ Object.defineProperty(exports, "UfDB", { enumerable: true, get: function () { return general_1.UfDB; } });
121
+ var people_1 = require("./people");
122
+ Object.defineProperty(exports, "TipoEndereco", { enumerable: true, get: function () { return people_1.TipoEndereco; } });
123
+ Object.defineProperty(exports, "TipoPessoa", { enumerable: true, get: function () { return people_1.TipoPessoa; } });
124
+ Object.defineProperty(exports, "GeneroPessoa", { enumerable: true, get: function () { return people_1.GeneroPessoa; } });
125
+ Object.defineProperty(exports, "TipoOperacaoPessoaContaCorrente", { enumerable: true, get: function () { return people_1.TipoOperacaoPessoaContaCorrente; } });
126
+ Object.defineProperty(exports, "TipoLancamentoValeCredito", { enumerable: true, get: function () { return people_1.TipoLancamentoValeCredito; } });
127
+ var logistics_1 = require("./logistics");
128
+ Object.defineProperty(exports, "TipoProduto", { enumerable: true, get: function () { return logistics_1.TipoProduto; } });
129
+ Object.defineProperty(exports, "TipoValoracao", { enumerable: true, get: function () { return logistics_1.TipoValoracao; } });
130
+ Object.defineProperty(exports, "SituacaoMovimentacaoEstoque", { enumerable: true, get: function () { return logistics_1.SituacaoMovimentacaoEstoque; } });
131
+ Object.defineProperty(exports, "OrigemMovimentacaoEstoque", { enumerable: true, get: function () { return logistics_1.OrigemMovimentacaoEstoque; } });
132
+ Object.defineProperty(exports, "TipoCategoria", { enumerable: true, get: function () { return logistics_1.TipoCategoria; } });
133
+ Object.defineProperty(exports, "TipoImagemGaleria", { enumerable: true, get: function () { return logistics_1.TipoImagemGaleria; } });
134
+ Object.defineProperty(exports, "TipoAtualizacaoEstoque", { enumerable: true, get: function () { return logistics_1.TipoAtualizacaoEstoque; } });
135
+ Object.defineProperty(exports, "TipoLeiRotulagem", { enumerable: true, get: function () { return logistics_1.TipoLeiRotulagem; } });
136
+ Object.defineProperty(exports, "TipoQuantidadeInfoNutricional", { enumerable: true, get: function () { return logistics_1.TipoQuantidadeInfoNutricional; } });
137
+ Object.defineProperty(exports, "TipoItem", { enumerable: true, get: function () { return logistics_1.TipoItem; } });
138
+ Object.defineProperty(exports, "SituacaoInventario", { enumerable: true, get: function () { return logistics_1.SituacaoInventario; } });
139
+ Object.defineProperty(exports, "SituacaoItemInventario", { enumerable: true, get: function () { return logistics_1.SituacaoItemInventario; } });
140
+ Object.defineProperty(exports, "TipoAjusteInventario", { enumerable: true, get: function () { return logistics_1.TipoAjusteInventario; } });
141
+ Object.defineProperty(exports, "TipoMovimentacaoItemInventario", { enumerable: true, get: function () { return logistics_1.TipoMovimentacaoItemInventario; } });
142
+ Object.defineProperty(exports, "TipoDesdobramentoProduto", { enumerable: true, get: function () { return logistics_1.TipoDesdobramentoProduto; } });
143
+ var index_1 = require("./reports/index");
144
+ Object.defineProperty(exports, "TipoRelatorio", { enumerable: true, get: function () { return index_1.TipoRelatorio; } });
145
+ Object.defineProperty(exports, "AgrupamentoRelatorio", { enumerable: true, get: function () { return index_1.AgrupamentoRelatorio; } });
146
+ Object.defineProperty(exports, "AgrupamentoRelatoriosProdutos", { enumerable: true, get: function () { return index_1.AgrupamentoRelatoriosProdutos; } });
147
+ var platform_1 = require("./platform");
148
+ Object.defineProperty(exports, "TipoOrganizacao", { enumerable: true, get: function () { return platform_1.TipoOrganizacao; } });
149
+ Object.defineProperty(exports, "SituacaoOrganizacao", { enumerable: true, get: function () { return platform_1.SituacaoOrganizacao; } });
150
+ Object.defineProperty(exports, "TipoBanners", { enumerable: true, get: function () { return platform_1.TipoBanners; } });
151
+ Object.defineProperty(exports, "EstruturaNegocio", { enumerable: true, get: function () { return platform_1.EstruturaNegocio; } });
152
+ Object.defineProperty(exports, "SituacaoAtivacao", { enumerable: true, get: function () { return platform_1.SituacaoAtivacao; } });
153
+ Object.defineProperty(exports, "TipoTicket", { enumerable: true, get: function () { return platform_1.TipoTicket; } });
154
+ Object.defineProperty(exports, "SituacaoTicket", { enumerable: true, get: function () { return platform_1.SituacaoTicket; } });
155
+ Object.defineProperty(exports, "SituacaoAplicativo", { enumerable: true, get: function () { return platform_1.SituacaoAplicativo; } });
156
+ Object.defineProperty(exports, "SituacaoPlanos", { enumerable: true, get: function () { return platform_1.SituacaoPlanos; } });
157
+ Object.defineProperty(exports, "SituacaoUsuarios", { enumerable: true, get: function () { return platform_1.SituacaoUsuarios; } });
158
+ Object.defineProperty(exports, "Segmento", { enumerable: true, get: function () { return platform_1.Segmento; } });
159
+ Object.defineProperty(exports, "Perfis", { enumerable: true, get: function () { return platform_1.Perfis; } });
160
+ Object.defineProperty(exports, "TipoRequisicao", { enumerable: true, get: function () { return platform_1.TipoRequisicao; } });
161
+ Object.defineProperty(exports, "SituacaoRequisicao", { enumerable: true, get: function () { return platform_1.SituacaoRequisicao; } });
162
+ Object.defineProperty(exports, "TipoAplicativo", { enumerable: true, get: function () { return platform_1.TipoAplicativo; } });
163
+ Object.defineProperty(exports, "Aplicativos", { enumerable: true, get: function () { return platform_1.Aplicativos; } });
164
+ Object.defineProperty(exports, "Modulos", { enumerable: true, get: function () { return platform_1.Modulos; } });
165
+ Object.defineProperty(exports, "TipoTransacao", { enumerable: true, get: function () { return platform_1.TipoTransacao; } });
166
+ Object.defineProperty(exports, "IsDemonstracao", { enumerable: true, get: function () { return platform_1.IsDemonstracao; } });
167
+ var integration_1 = require("./integration");
168
+ Object.defineProperty(exports, "TipoIntegracaoPagamento", { enumerable: true, get: function () { return integration_1.TipoIntegracaoPagamento; } });
169
+ Object.defineProperty(exports, "TipoPagamentoTuo", { enumerable: true, get: function () { return integration_1.TipoPagamentoTuo; } });
170
+ Object.defineProperty(exports, "TipoPagamentoSafeTwoPay", { enumerable: true, get: function () { return integration_1.TipoPagamentoSafeTwoPay; } });
171
+ var checkout_1 = require("./checkout");
172
+ Object.defineProperty(exports, "ModoOperacaoPdv", { enumerable: true, get: function () { return checkout_1.ModoOperacaoPdv; } });
173
+ Object.defineProperty(exports, "ModoVisualizacaoMobile", { enumerable: true, get: function () { return checkout_1.ModoVisualizacaoMobile; } });
174
+ Object.defineProperty(exports, "TipoBuscaAutocomplete", { enumerable: true, get: function () { return checkout_1.TipoBuscaAutocomplete; } });
175
+ Object.defineProperty(exports, "TipoItemCheckout", { enumerable: true, get: function () { return checkout_1.TipoItemCheckout; } });
176
+ var common_1 = require("./common");
177
+ Object.defineProperty(exports, "TipoSolicitacao", { enumerable: true, get: function () { return common_1.TipoSolicitacao; } });
178
+ Object.defineProperty(exports, "SituacaoSolicitacao", { enumerable: true, get: function () { return common_1.SituacaoSolicitacao; } });
179
+ Object.defineProperty(exports, "SituacaoFila", { enumerable: true, get: function () { return common_1.SituacaoFila; } });
180
+ Object.defineProperty(exports, "TipoHistoricoSolicitacao", { enumerable: true, get: function () { return common_1.TipoHistoricoSolicitacao; } });
181
+ Object.defineProperty(exports, "TipoAbrangenciaNotificacao", { enumerable: true, get: function () { return common_1.TipoAbrangenciaNotificacao; } });
182
+ Object.defineProperty(exports, "TipoNotificacao", { enumerable: true, get: function () { return common_1.TipoNotificacao; } });
@@ -0,0 +1,19 @@
1
+ export declare const TipoIntegracaoPagamento: {
2
+ Tuo: string;
3
+ ModerBank: string;
4
+ SafeTwoPay: string;
5
+ Interno: string;
6
+ description(val: string): "enum not found" | "Tuo Bank" | "ModerBank" | "Safe2Pay" | "Interno";
7
+ };
8
+ export declare const TipoPagamentoTuo: {
9
+ Boleto: number;
10
+ Debito: number;
11
+ Cartao: number;
12
+ description(val: number): "enum not found" | "Boleto" | "Cartão de Crédito" | "Débito";
13
+ };
14
+ export declare const TipoPagamentoSafeTwoPay: {
15
+ Boleto: number;
16
+ CartaoCredito: number;
17
+ PIX: number;
18
+ description(val: number): "enum not found" | "Boleto" | "Cartão de Crédito" | "PIX";
19
+ };