mdz-enum 1.6.34 → 1.6.35

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. package/README.MD +7 -7
  2. package/dist/checkout/index.d.ts +33 -33
  3. package/dist/checkout/index.js +97 -97
  4. package/dist/commercial/index.d.ts +245 -243
  5. package/dist/commercial/index.js +601 -595
  6. package/dist/common/index.d.ts +59 -59
  7. package/dist/common/index.js +171 -171
  8. package/dist/config/index.d.ts +182 -182
  9. package/dist/config/index.js +525 -525
  10. package/dist/eva/index.d.ts +142 -142
  11. package/dist/eva/index.js +170 -170
  12. package/dist/finance/index.d.ts +207 -207
  13. package/dist/finance/index.js +549 -549
  14. package/dist/fiscal/index.d.ts +536 -536
  15. package/dist/fiscal/index.js +1356 -1356
  16. package/dist/functions.d.ts +11 -11
  17. package/dist/functions.js +74 -74
  18. package/dist/general/index.d.ts +265 -265
  19. package/dist/general/index.js +512 -512
  20. package/dist/index.d.ts +15 -15
  21. package/dist/index.js +246 -246
  22. package/dist/integration/index.d.ts +27 -27
  23. package/dist/integration/index.js +80 -80
  24. package/dist/logistics/index.d.ts +142 -142
  25. package/dist/logistics/index.js +410 -410
  26. package/dist/marketplace/templates/components/index.d.ts +306 -306
  27. package/dist/marketplace/templates/components/index.js +331 -331
  28. package/dist/marketplace/templates/elements/index.d.ts +32 -32
  29. package/dist/marketplace/templates/elements/index.js +35 -35
  30. package/dist/marketplace/templates/index.d.ts +523 -526
  31. package/dist/marketplace/templates/index.js +48 -48
  32. package/dist/marketplace/templates/pages/index.d.ts +233 -233
  33. package/dist/marketplace/templates/pages/index.js +413 -413
  34. package/dist/marketplace/templates/reference/index.d.ts +24 -24
  35. package/dist/marketplace/templates/reference/index.js +26 -26
  36. package/dist/people/index.d.ts +62 -62
  37. package/dist/people/index.js +180 -180
  38. package/dist/platform/index.d.ts +207 -207
  39. package/dist/platform/index.js +600 -600
  40. package/dist/reports/index.d.ts +95 -95
  41. package/dist/reports/index.js +278 -278
  42. package/package.json +33 -33
@@ -1,600 +1,600 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.TipoSuporte = exports.UnidadeDeNegocio = exports.MotivoInativacao = exports.UnidadeFederativa = exports.IsDemonstracao = exports.Aplicativos = exports.TipoAplicativo = exports.Modulos = exports.TipoTransacao = exports.SituacaoRequisicao = exports.TipoRequisicao = exports.Perfis = exports.Segmento = exports.SituacaoUsuarios = exports.SituacaoPlanos = exports.SituacaoAplicativo = exports.EstruturaNegocio = exports.TipoBanners = exports.TipoOrganizacao = exports.SituacaoTicket = exports.SituacaoAtivacao = exports.SituacaoOrganizacao = void 0;
4
- exports.SituacaoOrganizacao = {
5
- Cancelado: '0',
6
- Ativo: '1',
7
- Bloqueado: '2',
8
- AtivacaoSolicitada: '3',
9
- CancelamentoSolicitado: '4',
10
- description(val) {
11
- switch (val) {
12
- case this.Ativo:
13
- return 'Ativo';
14
- case this.Bloqueado:
15
- return 'Bloqueado';
16
- case this.Cancelado:
17
- return 'Cancelado';
18
- case this.AtivacaoSolicitada:
19
- return 'Ativacao Solicitada';
20
- case this.CancelamentoSolicitado:
21
- return 'Cancelamento Solicitado';
22
- default:
23
- return 'enum not found';
24
- }
25
- },
26
- };
27
- exports.SituacaoAtivacao = {
28
- Cancelado: '0',
29
- Ativo: '1',
30
- Bloqueado: '2',
31
- PagamentoPendente: '4',
32
- CompraRecusada: '6',
33
- description(val) {
34
- switch (val) {
35
- case this.Ativo:
36
- return 'Ativo';
37
- case this.Bloqueado:
38
- return 'Bloqueado';
39
- case this.Cancelado:
40
- return 'Cancelado';
41
- case this.PagamentoPendente:
42
- return 'Pagamento Pendente';
43
- case this.CompraRecusada:
44
- return 'Compra Recusada';
45
- default:
46
- return 'enum not found';
47
- }
48
- },
49
- };
50
- exports.SituacaoTicket = {
51
- EmAberto: '0',
52
- EmAtendimento: '1',
53
- Concluido: '2',
54
- description(val) {
55
- switch (val) {
56
- case this.EmAberto:
57
- return 'Em Aberto';
58
- case this.EmAtendimento:
59
- return 'Em Atendimento';
60
- case this.Concluido:
61
- return 'Concluído';
62
- default:
63
- return 'enum not found';
64
- }
65
- },
66
- };
67
- exports.TipoOrganizacao = {
68
- Cliente: '1',
69
- Parceiro: '2',
70
- Entidade: '3',
71
- Franquia: '4',
72
- Principal: '5',
73
- description(val) {
74
- switch (val) {
75
- case this.Cliente:
76
- return 'Cliente';
77
- case this.Entidade:
78
- return 'Entidade';
79
- case this.Parceiro:
80
- return 'Parceiro';
81
- case this.Franquia:
82
- return 'Franquia';
83
- case this.Principal:
84
- return 'Principal';
85
- default:
86
- return 'enum not found';
87
- }
88
- },
89
- };
90
- exports.TipoBanners = {
91
- Desktop: '1',
92
- Mobile: '2',
93
- description(val) {
94
- switch (val) {
95
- case this.Desktop:
96
- return 'Desktop';
97
- case this.Mobile:
98
- return 'Mobile';
99
- default:
100
- return 'enum not found';
101
- }
102
- },
103
- };
104
- exports.EstruturaNegocio = {
105
- Matriz: '0',
106
- Filial: '1',
107
- description(val) {
108
- switch (val) {
109
- case this.Matriz:
110
- return 'Matriz';
111
- case this.Filial:
112
- return 'Filial';
113
- default:
114
- return 'enum not found';
115
- }
116
- },
117
- };
118
- exports.SituacaoAplicativo = {
119
- Inativo: '0',
120
- Ativo: '1',
121
- description(val) {
122
- switch (val) {
123
- case this.Inativo:
124
- return 'Inativo';
125
- case this.Ativo:
126
- return 'Ativo';
127
- default:
128
- return 'enum not found';
129
- }
130
- },
131
- };
132
- exports.SituacaoPlanos = {
133
- Inativo: '0',
134
- Ativo: '1',
135
- description(val) {
136
- switch (val) {
137
- case this.Inativo:
138
- return 'Inativo';
139
- case this.Ativo:
140
- return 'Ativo';
141
- default:
142
- return 'enum not found';
143
- }
144
- },
145
- };
146
- exports.SituacaoUsuarios = {
147
- Inativo: '0',
148
- Ativo: '1',
149
- ConfirmacaoPendente: '2',
150
- RedefinicaoSenha: '3',
151
- description(val) {
152
- switch (val) {
153
- case this.Inativo:
154
- return 'Inativo';
155
- case this.Ativo:
156
- return 'Ativo';
157
- case this.ConfirmacaoPendente:
158
- return 'Confirmação pendente';
159
- case this.RedefinicaoSenha:
160
- return 'Redefinição de senha';
161
- default:
162
- return 'enum not found';
163
- }
164
- },
165
- };
166
- exports.Segmento = {
167
- Produtos_Alimenticios: '0',
168
- Vestuario: '1',
169
- Material_de_construçao: '2',
170
- Mercado: '3',
171
- Informatica: '4',
172
- Auto_pecas: '5',
173
- Pet: '6',
174
- Bebidas: '7',
175
- Veiculos: '8',
176
- Moveis: '9',
177
- Cosmeticos: '10',
178
- Material_Para_Escritorio: '11',
179
- Tecido: '12',
180
- Eletrodomesticos: '13',
181
- Calcado: '14',
182
- Combustiveis_e_lubrificantes: '15',
183
- Artigos_Medicos: '16',
184
- Livraria: '17',
185
- Motocicleta: '18',
186
- Artigos_Farmaceuticos: '19',
187
- Artigos_Ortopedicos: '20',
188
- Otica: '21',
189
- description(val) {
190
- switch (val) {
191
- case this.Produtos_Alimenticios:
192
- return 'Produtos alimentícios';
193
- case this.Vestuario:
194
- return 'Vestuário';
195
- case this.Material_de_construçao:
196
- return 'Material de construção';
197
- case this.Mercado:
198
- return 'Hipermercado, supermercado';
199
- case this.Informatica:
200
- return 'Informática e computação';
201
- case this.Auto_pecas:
202
- return 'Auto peças';
203
- case this.Pet:
204
- return 'Pet';
205
- case this.Bebidas:
206
- return 'Bebidas';
207
- case this.Veiculos:
208
- return 'Veículos';
209
- case this.Moveis:
210
- return 'Móveis';
211
- case this.Cosmeticos:
212
- return 'Perfumaria e cosmético';
213
- case this.Material_Para_Escritorio:
214
- return 'Material para escritório';
215
- case this.Tecido:
216
- return 'Tecido';
217
- case this.Eletrodomesticos:
218
- return 'Eletrodomésticos';
219
- case this.Calcado:
220
- return 'Calçado';
221
- case this.Combustiveis_e_lubrificantes:
222
- return 'Combustíveis e lubrificantes';
223
- case this.Artigos_Medicos:
224
- return 'Artigos médicos';
225
- case this.Livraria:
226
- return 'Livraria';
227
- case this.Motocicleta:
228
- return 'Motocicleta';
229
- case this.Artigos_Farmaceuticos:
230
- return 'Artigos Farmacêuticos - Farmácia';
231
- case this.Artigos_Ortopedicos:
232
- return 'Artigos ortopédicos';
233
- case this.Otica:
234
- return 'Ótica';
235
- default:
236
- return 'enum not found';
237
- }
238
- },
239
- };
240
- exports.Perfis = {
241
- Administrador: '0',
242
- Suporte: '1',
243
- Financeiro: '2',
244
- Comercial: '3',
245
- description(val) {
246
- switch (val) {
247
- case this.Administrador:
248
- return 'Administrador';
249
- case this.Suporte:
250
- return 'Suporte';
251
- case this.Financeiro:
252
- return 'Financeiro';
253
- case this.Comercial:
254
- return 'Comercial';
255
- default:
256
- return 'enum not found';
257
- }
258
- },
259
- };
260
- exports.TipoRequisicao = {
261
- Cobranca: '1',
262
- Compra: '2',
263
- Recorrencia: '3',
264
- description(val) {
265
- switch (val) {
266
- case this.Cobranca:
267
- return 'Cobrança';
268
- case this.Compra:
269
- return 'Compra';
270
- case this.Recorrencia:
271
- return 'Recorrência';
272
- default:
273
- return 'enum not found';
274
- }
275
- },
276
- };
277
- exports.SituacaoRequisicao = {
278
- Pendente: '1',
279
- EmAndamento: '2',
280
- Finalizada: '3',
281
- description(val) {
282
- switch (val) {
283
- case this.Pendente:
284
- return 'Pendente';
285
- case this.EmAndamento:
286
- return 'Em andamento';
287
- case this.Finalizada:
288
- return 'Finalizada';
289
- default:
290
- return 'enum not found';
291
- }
292
- },
293
- };
294
- exports.TipoTransacao = {
295
- Compra: '1',
296
- Recorrencia: '2',
297
- Comissao: '3',
298
- Cobranca: '4',
299
- description(val) {
300
- switch (val) {
301
- case this.Comissao:
302
- return 'Comissão';
303
- case this.Compra:
304
- return 'Compra';
305
- case this.Recorrencia:
306
- return 'Recorrência';
307
- case this.Cobranca:
308
- return 'Cobrança';
309
- default:
310
- return 'enum not found';
311
- }
312
- },
313
- };
314
- exports.Modulos = {
315
- Fiscal: 1,
316
- Produtos: 2,
317
- Venda: 3,
318
- Financeiro: 4,
319
- PDV: 5,
320
- description(val) {
321
- switch (val) {
322
- case this.Fiscal:
323
- return 'Módulo Fiscal';
324
- case this.Produtos:
325
- return 'Módulo de Produtos';
326
- case this.Venda:
327
- return 'Módulo de Venda';
328
- case this.Financeiro:
329
- return 'Módulo Financeiro';
330
- case this.PDV:
331
- return 'PDV';
332
- default:
333
- return 'enum not found';
334
- }
335
- },
336
- };
337
- exports.TipoAplicativo = {
338
- Aplicativo: 0,
339
- Modulo: 1,
340
- description(val) {
341
- switch (val) {
342
- case this.Aplicativo:
343
- return 'Aplicativo';
344
- case this.Modulo:
345
- return 'Modulo';
346
- default:
347
- return 'enum not found';
348
- }
349
- },
350
- };
351
- exports.Aplicativos = {
352
- Modershop: 1,
353
- ModershopLight: 2,
354
- ModershopPDV: 3,
355
- Ecommerce: 5,
356
- Marketplace: 6,
357
- MercadoLivre: 7,
358
- Sped: 8,
359
- TEF: 9,
360
- CakeERP: 13,
361
- Otica: 14,
362
- Amazon: 15,
363
- Shopee: 16,
364
- MagazineLuiza: 17,
365
- Tray: 18,
366
- TEFDestaxa: 19,
367
- GestaoContabil: 20,
368
- NFSeNacional: 21,
369
- Eva: 22,
370
- Nuvemshop: 70,
371
- description(val) {
372
- switch (val) {
373
- case this.Modershop:
374
- return 'Modershop';
375
- case this.ModershopLight:
376
- return 'Modershop Light';
377
- case this.ModershopPDV:
378
- return 'Modershop PDV';
379
- case this.Marketplace:
380
- return 'Marketplace';
381
- case this.Ecommerce:
382
- return 'Loja Virtual';
383
- case this.MercadoLivre:
384
- return 'Mercado Livre';
385
- case this.Sped:
386
- return 'Sped';
387
- case this.TEF:
388
- return 'TEF';
389
- case this.CakeERP:
390
- return 'Cake ERP';
391
- case this.Otica:
392
- return 'Módulo Ótica';
393
- case this.Amazon:
394
- return 'Amazon';
395
- case this.Shopee:
396
- return 'Shopee';
397
- case this.MagazineLuiza:
398
- return 'Magazine Luiza';
399
- case this.Tray:
400
- return 'Tray';
401
- case this.Nuvemshop:
402
- return 'Nuvemshop';
403
- case this.TEFDestaxa:
404
- return 'TEF Destaxa';
405
- case this.GestaoContabil:
406
- return 'Gestão Contábil';
407
- case this.NFSeNacional:
408
- return 'NFSe (Ambiente Nacional)';
409
- case this.Eva:
410
- return 'EVA';
411
- default:
412
- return 'enum not found';
413
- }
414
- },
415
- };
416
- exports.IsDemonstracao = {
417
- Demonstracao: true,
418
- NaoDemonstracao: false,
419
- description(val) {
420
- switch (val) {
421
- case this.Demonstracao:
422
- return 'Demonstração';
423
- case this.NaoDemonstracao:
424
- return 'Não Demonstracao';
425
- default:
426
- return 'enum not found';
427
- }
428
- },
429
- };
430
- exports.UnidadeFederativa = {
431
- Acre: 12,
432
- Alagoas: 27,
433
- Amazonas: 13,
434
- Amapa: 16,
435
- Bahia: 29,
436
- Ceara: 23,
437
- Distrito_Federal: 53,
438
- Espirito_Santo: 32,
439
- Goias: 52,
440
- Maranhao: 21,
441
- Minas_Gerais: 31,
442
- Mato_Grosso_do_Sul: 50,
443
- Mato_Grosso: 51,
444
- Para: 15,
445
- Paraiba: 25,
446
- Pernambuco: 26,
447
- Piaui: 22,
448
- Parana: 41,
449
- Rio_de_Janeiro: 33,
450
- Rio_Grande_do_Norte: 24,
451
- Rio_Grande_do_Sul: 43,
452
- Rondonia: 11,
453
- Roraima: 14,
454
- Santa_Catarina: 42,
455
- Sergipe: 28,
456
- Sao_Paulo: 35,
457
- Tocantins: 17,
458
- description(val) {
459
- switch (val) {
460
- case this.Acre:
461
- return 'Acre';
462
- case this.Alagoas:
463
- return 'Alagoas';
464
- case this.Amazonas:
465
- return 'Amazonas';
466
- case this.Amapa:
467
- return 'Amapá';
468
- case this.Bahia:
469
- return 'Bahia';
470
- case this.Ceara:
471
- return 'Ceará';
472
- case this.Distrito_Federal:
473
- return 'Distrito Federal';
474
- case this.Espirito_Santo:
475
- return 'Espírito Santo';
476
- case this.Goias:
477
- return 'Goiás';
478
- case this.Maranhao:
479
- return 'Maranhão';
480
- case this.Minas_Gerais:
481
- return 'Minas Gerais';
482
- case this.Mato_Grosso_do_Sul:
483
- return 'Mato Grosso do Sul';
484
- case this.Mato_Grosso:
485
- return 'Mato Grosso';
486
- case this.Para:
487
- return 'Pará';
488
- case this.Paraiba:
489
- return 'Paraíba';
490
- case this.Pernambuco:
491
- return 'Pernambuco';
492
- case this.Piaui:
493
- return 'Piauí';
494
- case this.Parana:
495
- return 'Paraná';
496
- case this.Rio_de_Janeiro:
497
- return 'Rio de Janeiro';
498
- case this.Rio_Grande_do_Norte:
499
- return 'Rio Grande do Norte';
500
- case this.Rio_Grande_do_Sul:
501
- return 'Rio Grande do Sul';
502
- case this.Rondonia:
503
- return 'Rondônia';
504
- case this.Roraima:
505
- return 'Roraima';
506
- case this.Santa_Catarina:
507
- return 'Santa Catarina';
508
- case this.Sergipe:
509
- return 'Sergipe';
510
- case this.Sao_Paulo:
511
- return 'São Paulo';
512
- case this.Tocantins:
513
- return 'Tocantins';
514
- default:
515
- return 'enum not found';
516
- }
517
- },
518
- };
519
- exports.MotivoInativacao = {
520
- Inadimplencia: '1',
521
- Inativacao: '2',
522
- Insatisfacao: '3',
523
- AusenciaRecurso: '4',
524
- EncerramentoAtividades: '5',
525
- Precos: '6',
526
- Concorrencia: '7',
527
- Adaptacao: '8',
528
- Complexidade: '9',
529
- Solicitacoes: '10',
530
- Suporte: '11',
531
- Outros: '12',
532
- Testes: '13',
533
- MigracaoModershop: '14',
534
- description(val) {
535
- switch (val) {
536
- case this.Inadimplencia:
537
- return 'Inadimplência';
538
- case this.Inativacao:
539
- return 'Inativado';
540
- case this.Insatisfacao:
541
- return 'Insatisfação';
542
- case this.AusenciaRecurso:
543
- return 'Ausência de Recursos';
544
- case this.EncerramentoAtividades:
545
- return 'Encerramento das Atividades';
546
- case this.Precos:
547
- return 'Preços';
548
- case this.Concorrencia:
549
- return 'Concorrência';
550
- case this.Adaptacao:
551
- return 'Adaptação';
552
- case this.Complexidade:
553
- return 'Complexidade';
554
- case this.Solicitacoes:
555
- return 'Solicitações não Atendidas';
556
- case this.Suporte:
557
- return 'Suporte não resolvido';
558
- case this.Testes:
559
- return 'Encerramento de testes';
560
- case this.MigracaoModershop:
561
- return 'Migração para o ModerShop';
562
- default:
563
- return 'Outros';
564
- }
565
- },
566
- };
567
- exports.UnidadeDeNegocio = {
568
- ModerShop: 0,
569
- ModernizaLoja: 1,
570
- ModerFood: 2,
571
- ModerLog: 3,
572
- description(val) {
573
- switch (val) {
574
- case this.ModerShop:
575
- return 'ModerShop';
576
- case this.ModernizaLoja:
577
- return 'Moderniza Loja';
578
- case this.ModerFood:
579
- return 'ModerFood';
580
- case this.ModerLog:
581
- return 'ModerLog';
582
- default:
583
- return 'enum not found';
584
- }
585
- },
586
- };
587
- exports.TipoSuporte = {
588
- Admin: '1',
589
- Parceiro: '2',
590
- description(val) {
591
- switch (val) {
592
- case this.Admin:
593
- return 'Admin';
594
- case this.Parceiro:
595
- return 'Parceiro';
596
- default:
597
- return 'enum not found';
598
- }
599
- },
600
- };
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.TipoSuporte = exports.UnidadeDeNegocio = exports.MotivoInativacao = exports.UnidadeFederativa = exports.IsDemonstracao = exports.Aplicativos = exports.TipoAplicativo = exports.Modulos = exports.TipoTransacao = exports.SituacaoRequisicao = exports.TipoRequisicao = exports.Perfis = exports.Segmento = exports.SituacaoUsuarios = exports.SituacaoPlanos = exports.SituacaoAplicativo = exports.EstruturaNegocio = exports.TipoBanners = exports.TipoOrganizacao = exports.SituacaoTicket = exports.SituacaoAtivacao = exports.SituacaoOrganizacao = void 0;
4
+ exports.SituacaoOrganizacao = {
5
+ Cancelado: '0',
6
+ Ativo: '1',
7
+ Bloqueado: '2',
8
+ AtivacaoSolicitada: '3',
9
+ CancelamentoSolicitado: '4',
10
+ description(val) {
11
+ switch (val) {
12
+ case this.Ativo:
13
+ return 'Ativo';
14
+ case this.Bloqueado:
15
+ return 'Bloqueado';
16
+ case this.Cancelado:
17
+ return 'Cancelado';
18
+ case this.AtivacaoSolicitada:
19
+ return 'Ativacao Solicitada';
20
+ case this.CancelamentoSolicitado:
21
+ return 'Cancelamento Solicitado';
22
+ default:
23
+ return 'enum not found';
24
+ }
25
+ },
26
+ };
27
+ exports.SituacaoAtivacao = {
28
+ Cancelado: '0',
29
+ Ativo: '1',
30
+ Bloqueado: '2',
31
+ PagamentoPendente: '4',
32
+ CompraRecusada: '6',
33
+ description(val) {
34
+ switch (val) {
35
+ case this.Ativo:
36
+ return 'Ativo';
37
+ case this.Bloqueado:
38
+ return 'Bloqueado';
39
+ case this.Cancelado:
40
+ return 'Cancelado';
41
+ case this.PagamentoPendente:
42
+ return 'Pagamento Pendente';
43
+ case this.CompraRecusada:
44
+ return 'Compra Recusada';
45
+ default:
46
+ return 'enum not found';
47
+ }
48
+ },
49
+ };
50
+ exports.SituacaoTicket = {
51
+ EmAberto: '0',
52
+ EmAtendimento: '1',
53
+ Concluido: '2',
54
+ description(val) {
55
+ switch (val) {
56
+ case this.EmAberto:
57
+ return 'Em Aberto';
58
+ case this.EmAtendimento:
59
+ return 'Em Atendimento';
60
+ case this.Concluido:
61
+ return 'Concluído';
62
+ default:
63
+ return 'enum not found';
64
+ }
65
+ },
66
+ };
67
+ exports.TipoOrganizacao = {
68
+ Cliente: '1',
69
+ Parceiro: '2',
70
+ Entidade: '3',
71
+ Franquia: '4',
72
+ Principal: '5',
73
+ description(val) {
74
+ switch (val) {
75
+ case this.Cliente:
76
+ return 'Cliente';
77
+ case this.Entidade:
78
+ return 'Entidade';
79
+ case this.Parceiro:
80
+ return 'Parceiro';
81
+ case this.Franquia:
82
+ return 'Franquia';
83
+ case this.Principal:
84
+ return 'Principal';
85
+ default:
86
+ return 'enum not found';
87
+ }
88
+ },
89
+ };
90
+ exports.TipoBanners = {
91
+ Desktop: '1',
92
+ Mobile: '2',
93
+ description(val) {
94
+ switch (val) {
95
+ case this.Desktop:
96
+ return 'Desktop';
97
+ case this.Mobile:
98
+ return 'Mobile';
99
+ default:
100
+ return 'enum not found';
101
+ }
102
+ },
103
+ };
104
+ exports.EstruturaNegocio = {
105
+ Matriz: '0',
106
+ Filial: '1',
107
+ description(val) {
108
+ switch (val) {
109
+ case this.Matriz:
110
+ return 'Matriz';
111
+ case this.Filial:
112
+ return 'Filial';
113
+ default:
114
+ return 'enum not found';
115
+ }
116
+ },
117
+ };
118
+ exports.SituacaoAplicativo = {
119
+ Inativo: '0',
120
+ Ativo: '1',
121
+ description(val) {
122
+ switch (val) {
123
+ case this.Inativo:
124
+ return 'Inativo';
125
+ case this.Ativo:
126
+ return 'Ativo';
127
+ default:
128
+ return 'enum not found';
129
+ }
130
+ },
131
+ };
132
+ exports.SituacaoPlanos = {
133
+ Inativo: '0',
134
+ Ativo: '1',
135
+ description(val) {
136
+ switch (val) {
137
+ case this.Inativo:
138
+ return 'Inativo';
139
+ case this.Ativo:
140
+ return 'Ativo';
141
+ default:
142
+ return 'enum not found';
143
+ }
144
+ },
145
+ };
146
+ exports.SituacaoUsuarios = {
147
+ Inativo: '0',
148
+ Ativo: '1',
149
+ ConfirmacaoPendente: '2',
150
+ RedefinicaoSenha: '3',
151
+ description(val) {
152
+ switch (val) {
153
+ case this.Inativo:
154
+ return 'Inativo';
155
+ case this.Ativo:
156
+ return 'Ativo';
157
+ case this.ConfirmacaoPendente:
158
+ return 'Confirmação pendente';
159
+ case this.RedefinicaoSenha:
160
+ return 'Redefinição de senha';
161
+ default:
162
+ return 'enum not found';
163
+ }
164
+ },
165
+ };
166
+ exports.Segmento = {
167
+ Produtos_Alimenticios: '0',
168
+ Vestuario: '1',
169
+ Material_de_construçao: '2',
170
+ Mercado: '3',
171
+ Informatica: '4',
172
+ Auto_pecas: '5',
173
+ Pet: '6',
174
+ Bebidas: '7',
175
+ Veiculos: '8',
176
+ Moveis: '9',
177
+ Cosmeticos: '10',
178
+ Material_Para_Escritorio: '11',
179
+ Tecido: '12',
180
+ Eletrodomesticos: '13',
181
+ Calcado: '14',
182
+ Combustiveis_e_lubrificantes: '15',
183
+ Artigos_Medicos: '16',
184
+ Livraria: '17',
185
+ Motocicleta: '18',
186
+ Artigos_Farmaceuticos: '19',
187
+ Artigos_Ortopedicos: '20',
188
+ Otica: '21',
189
+ description(val) {
190
+ switch (val) {
191
+ case this.Produtos_Alimenticios:
192
+ return 'Produtos alimentícios';
193
+ case this.Vestuario:
194
+ return 'Vestuário';
195
+ case this.Material_de_construçao:
196
+ return 'Material de construção';
197
+ case this.Mercado:
198
+ return 'Hipermercado, supermercado';
199
+ case this.Informatica:
200
+ return 'Informática e computação';
201
+ case this.Auto_pecas:
202
+ return 'Auto peças';
203
+ case this.Pet:
204
+ return 'Pet';
205
+ case this.Bebidas:
206
+ return 'Bebidas';
207
+ case this.Veiculos:
208
+ return 'Veículos';
209
+ case this.Moveis:
210
+ return 'Móveis';
211
+ case this.Cosmeticos:
212
+ return 'Perfumaria e cosmético';
213
+ case this.Material_Para_Escritorio:
214
+ return 'Material para escritório';
215
+ case this.Tecido:
216
+ return 'Tecido';
217
+ case this.Eletrodomesticos:
218
+ return 'Eletrodomésticos';
219
+ case this.Calcado:
220
+ return 'Calçado';
221
+ case this.Combustiveis_e_lubrificantes:
222
+ return 'Combustíveis e lubrificantes';
223
+ case this.Artigos_Medicos:
224
+ return 'Artigos médicos';
225
+ case this.Livraria:
226
+ return 'Livraria';
227
+ case this.Motocicleta:
228
+ return 'Motocicleta';
229
+ case this.Artigos_Farmaceuticos:
230
+ return 'Artigos Farmacêuticos - Farmácia';
231
+ case this.Artigos_Ortopedicos:
232
+ return 'Artigos ortopédicos';
233
+ case this.Otica:
234
+ return 'Ótica';
235
+ default:
236
+ return 'enum not found';
237
+ }
238
+ },
239
+ };
240
+ exports.Perfis = {
241
+ Administrador: '0',
242
+ Suporte: '1',
243
+ Financeiro: '2',
244
+ Comercial: '3',
245
+ description(val) {
246
+ switch (val) {
247
+ case this.Administrador:
248
+ return 'Administrador';
249
+ case this.Suporte:
250
+ return 'Suporte';
251
+ case this.Financeiro:
252
+ return 'Financeiro';
253
+ case this.Comercial:
254
+ return 'Comercial';
255
+ default:
256
+ return 'enum not found';
257
+ }
258
+ },
259
+ };
260
+ exports.TipoRequisicao = {
261
+ Cobranca: '1',
262
+ Compra: '2',
263
+ Recorrencia: '3',
264
+ description(val) {
265
+ switch (val) {
266
+ case this.Cobranca:
267
+ return 'Cobrança';
268
+ case this.Compra:
269
+ return 'Compra';
270
+ case this.Recorrencia:
271
+ return 'Recorrência';
272
+ default:
273
+ return 'enum not found';
274
+ }
275
+ },
276
+ };
277
+ exports.SituacaoRequisicao = {
278
+ Pendente: '1',
279
+ EmAndamento: '2',
280
+ Finalizada: '3',
281
+ description(val) {
282
+ switch (val) {
283
+ case this.Pendente:
284
+ return 'Pendente';
285
+ case this.EmAndamento:
286
+ return 'Em andamento';
287
+ case this.Finalizada:
288
+ return 'Finalizada';
289
+ default:
290
+ return 'enum not found';
291
+ }
292
+ },
293
+ };
294
+ exports.TipoTransacao = {
295
+ Compra: '1',
296
+ Recorrencia: '2',
297
+ Comissao: '3',
298
+ Cobranca: '4',
299
+ description(val) {
300
+ switch (val) {
301
+ case this.Comissao:
302
+ return 'Comissão';
303
+ case this.Compra:
304
+ return 'Compra';
305
+ case this.Recorrencia:
306
+ return 'Recorrência';
307
+ case this.Cobranca:
308
+ return 'Cobrança';
309
+ default:
310
+ return 'enum not found';
311
+ }
312
+ },
313
+ };
314
+ exports.Modulos = {
315
+ Fiscal: 1,
316
+ Produtos: 2,
317
+ Venda: 3,
318
+ Financeiro: 4,
319
+ PDV: 5,
320
+ description(val) {
321
+ switch (val) {
322
+ case this.Fiscal:
323
+ return 'Módulo Fiscal';
324
+ case this.Produtos:
325
+ return 'Módulo de Produtos';
326
+ case this.Venda:
327
+ return 'Módulo de Venda';
328
+ case this.Financeiro:
329
+ return 'Módulo Financeiro';
330
+ case this.PDV:
331
+ return 'PDV';
332
+ default:
333
+ return 'enum not found';
334
+ }
335
+ },
336
+ };
337
+ exports.TipoAplicativo = {
338
+ Aplicativo: 0,
339
+ Modulo: 1,
340
+ description(val) {
341
+ switch (val) {
342
+ case this.Aplicativo:
343
+ return 'Aplicativo';
344
+ case this.Modulo:
345
+ return 'Modulo';
346
+ default:
347
+ return 'enum not found';
348
+ }
349
+ },
350
+ };
351
+ exports.Aplicativos = {
352
+ Modershop: 1,
353
+ ModershopLight: 2,
354
+ ModershopPDV: 3,
355
+ Ecommerce: 5,
356
+ Marketplace: 6,
357
+ MercadoLivre: 7,
358
+ Sped: 8,
359
+ TEF: 9,
360
+ CakeERP: 13,
361
+ Otica: 14,
362
+ Amazon: 15,
363
+ Shopee: 16,
364
+ MagazineLuiza: 17,
365
+ Tray: 18,
366
+ TEFDestaxa: 19,
367
+ GestaoContabil: 20,
368
+ NFSeNacional: 21,
369
+ Eva: 22,
370
+ Nuvemshop: 70,
371
+ description(val) {
372
+ switch (val) {
373
+ case this.Modershop:
374
+ return 'Modershop';
375
+ case this.ModershopLight:
376
+ return 'Modershop Light';
377
+ case this.ModershopPDV:
378
+ return 'Modershop PDV';
379
+ case this.Marketplace:
380
+ return 'Marketplace';
381
+ case this.Ecommerce:
382
+ return 'Loja Virtual';
383
+ case this.MercadoLivre:
384
+ return 'Mercado Livre';
385
+ case this.Sped:
386
+ return 'Sped';
387
+ case this.TEF:
388
+ return 'TEF';
389
+ case this.CakeERP:
390
+ return 'Cake ERP';
391
+ case this.Otica:
392
+ return 'Módulo Ótica';
393
+ case this.Amazon:
394
+ return 'Amazon';
395
+ case this.Shopee:
396
+ return 'Shopee';
397
+ case this.MagazineLuiza:
398
+ return 'Magazine Luiza';
399
+ case this.Tray:
400
+ return 'Tray';
401
+ case this.Nuvemshop:
402
+ return 'Nuvemshop';
403
+ case this.TEFDestaxa:
404
+ return 'TEF Destaxa';
405
+ case this.GestaoContabil:
406
+ return 'Gestão Contábil';
407
+ case this.NFSeNacional:
408
+ return 'NFSe (Ambiente Nacional)';
409
+ case this.Eva:
410
+ return 'EVA';
411
+ default:
412
+ return 'enum not found';
413
+ }
414
+ },
415
+ };
416
+ exports.IsDemonstracao = {
417
+ Demonstracao: true,
418
+ NaoDemonstracao: false,
419
+ description(val) {
420
+ switch (val) {
421
+ case this.Demonstracao:
422
+ return 'Demonstração';
423
+ case this.NaoDemonstracao:
424
+ return 'Não Demonstracao';
425
+ default:
426
+ return 'enum not found';
427
+ }
428
+ },
429
+ };
430
+ exports.UnidadeFederativa = {
431
+ Acre: 12,
432
+ Alagoas: 27,
433
+ Amazonas: 13,
434
+ Amapa: 16,
435
+ Bahia: 29,
436
+ Ceara: 23,
437
+ Distrito_Federal: 53,
438
+ Espirito_Santo: 32,
439
+ Goias: 52,
440
+ Maranhao: 21,
441
+ Minas_Gerais: 31,
442
+ Mato_Grosso_do_Sul: 50,
443
+ Mato_Grosso: 51,
444
+ Para: 15,
445
+ Paraiba: 25,
446
+ Pernambuco: 26,
447
+ Piaui: 22,
448
+ Parana: 41,
449
+ Rio_de_Janeiro: 33,
450
+ Rio_Grande_do_Norte: 24,
451
+ Rio_Grande_do_Sul: 43,
452
+ Rondonia: 11,
453
+ Roraima: 14,
454
+ Santa_Catarina: 42,
455
+ Sergipe: 28,
456
+ Sao_Paulo: 35,
457
+ Tocantins: 17,
458
+ description(val) {
459
+ switch (val) {
460
+ case this.Acre:
461
+ return 'Acre';
462
+ case this.Alagoas:
463
+ return 'Alagoas';
464
+ case this.Amazonas:
465
+ return 'Amazonas';
466
+ case this.Amapa:
467
+ return 'Amapá';
468
+ case this.Bahia:
469
+ return 'Bahia';
470
+ case this.Ceara:
471
+ return 'Ceará';
472
+ case this.Distrito_Federal:
473
+ return 'Distrito Federal';
474
+ case this.Espirito_Santo:
475
+ return 'Espírito Santo';
476
+ case this.Goias:
477
+ return 'Goiás';
478
+ case this.Maranhao:
479
+ return 'Maranhão';
480
+ case this.Minas_Gerais:
481
+ return 'Minas Gerais';
482
+ case this.Mato_Grosso_do_Sul:
483
+ return 'Mato Grosso do Sul';
484
+ case this.Mato_Grosso:
485
+ return 'Mato Grosso';
486
+ case this.Para:
487
+ return 'Pará';
488
+ case this.Paraiba:
489
+ return 'Paraíba';
490
+ case this.Pernambuco:
491
+ return 'Pernambuco';
492
+ case this.Piaui:
493
+ return 'Piauí';
494
+ case this.Parana:
495
+ return 'Paraná';
496
+ case this.Rio_de_Janeiro:
497
+ return 'Rio de Janeiro';
498
+ case this.Rio_Grande_do_Norte:
499
+ return 'Rio Grande do Norte';
500
+ case this.Rio_Grande_do_Sul:
501
+ return 'Rio Grande do Sul';
502
+ case this.Rondonia:
503
+ return 'Rondônia';
504
+ case this.Roraima:
505
+ return 'Roraima';
506
+ case this.Santa_Catarina:
507
+ return 'Santa Catarina';
508
+ case this.Sergipe:
509
+ return 'Sergipe';
510
+ case this.Sao_Paulo:
511
+ return 'São Paulo';
512
+ case this.Tocantins:
513
+ return 'Tocantins';
514
+ default:
515
+ return 'enum not found';
516
+ }
517
+ },
518
+ };
519
+ exports.MotivoInativacao = {
520
+ Inadimplencia: '1',
521
+ Inativacao: '2',
522
+ Insatisfacao: '3',
523
+ AusenciaRecurso: '4',
524
+ EncerramentoAtividades: '5',
525
+ Precos: '6',
526
+ Concorrencia: '7',
527
+ Adaptacao: '8',
528
+ Complexidade: '9',
529
+ Solicitacoes: '10',
530
+ Suporte: '11',
531
+ Outros: '12',
532
+ Testes: '13',
533
+ MigracaoModershop: '14',
534
+ description(val) {
535
+ switch (val) {
536
+ case this.Inadimplencia:
537
+ return 'Inadimplência';
538
+ case this.Inativacao:
539
+ return 'Inativado';
540
+ case this.Insatisfacao:
541
+ return 'Insatisfação';
542
+ case this.AusenciaRecurso:
543
+ return 'Ausência de Recursos';
544
+ case this.EncerramentoAtividades:
545
+ return 'Encerramento das Atividades';
546
+ case this.Precos:
547
+ return 'Preços';
548
+ case this.Concorrencia:
549
+ return 'Concorrência';
550
+ case this.Adaptacao:
551
+ return 'Adaptação';
552
+ case this.Complexidade:
553
+ return 'Complexidade';
554
+ case this.Solicitacoes:
555
+ return 'Solicitações não Atendidas';
556
+ case this.Suporte:
557
+ return 'Suporte não resolvido';
558
+ case this.Testes:
559
+ return 'Encerramento de testes';
560
+ case this.MigracaoModershop:
561
+ return 'Migração para o ModerShop';
562
+ default:
563
+ return 'Outros';
564
+ }
565
+ },
566
+ };
567
+ exports.UnidadeDeNegocio = {
568
+ ModerShop: 0,
569
+ ModernizaLoja: 1,
570
+ ModerFood: 2,
571
+ ModerLog: 3,
572
+ description(val) {
573
+ switch (val) {
574
+ case this.ModerShop:
575
+ return 'ModerShop';
576
+ case this.ModernizaLoja:
577
+ return 'Moderniza Loja';
578
+ case this.ModerFood:
579
+ return 'ModerFood';
580
+ case this.ModerLog:
581
+ return 'ModerLog';
582
+ default:
583
+ return 'enum not found';
584
+ }
585
+ },
586
+ };
587
+ exports.TipoSuporte = {
588
+ Admin: '1',
589
+ Parceiro: '2',
590
+ description(val) {
591
+ switch (val) {
592
+ case this.Admin:
593
+ return 'Admin';
594
+ case this.Parceiro:
595
+ return 'Parceiro';
596
+ default:
597
+ return 'enum not found';
598
+ }
599
+ },
600
+ };