mdz-enum 1.6.64 → 1.6.65

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 (43) hide show
  1. package/dist/checkout/index.d.ts +33 -33
  2. package/dist/checkout/index.js +97 -97
  3. package/dist/commercial/index.d.ts +247 -247
  4. package/dist/commercial/index.js +607 -607
  5. package/dist/common/index.d.ts +71 -71
  6. package/dist/common/index.js +205 -205
  7. package/dist/config/index.d.ts +200 -200
  8. package/dist/config/index.js +576 -576
  9. package/dist/eva/index.d.ts +143 -143
  10. package/dist/eva/index.js +173 -173
  11. package/dist/finance/index.d.ts +240 -240
  12. package/dist/finance/index.js +728 -728
  13. package/dist/fiscal/index.d.ts +572 -572
  14. package/dist/fiscal/index.js +1484 -1484
  15. package/dist/functions.d.ts +11 -11
  16. package/dist/functions.js +74 -74
  17. package/dist/general/index.d.ts +265 -265
  18. package/dist/general/index.js +512 -512
  19. package/dist/home/index.d.ts +88 -88
  20. package/dist/home/index.js +268 -268
  21. package/dist/index.d.ts +16 -16
  22. package/dist/index.js +268 -268
  23. package/dist/integration/index.d.ts +37 -37
  24. package/dist/integration/index.js +109 -109
  25. package/dist/logistics/index.d.ts +174 -174
  26. package/dist/logistics/index.js +493 -493
  27. package/dist/marketplace/templates/components/index.d.ts +340 -340
  28. package/dist/marketplace/templates/components/index.js +371 -371
  29. package/dist/marketplace/templates/elements/index.d.ts +32 -32
  30. package/dist/marketplace/templates/elements/index.js +35 -35
  31. package/dist/marketplace/templates/index.d.ts +556 -559
  32. package/dist/marketplace/templates/index.js +49 -49
  33. package/dist/marketplace/templates/pages/index.d.ts +233 -233
  34. package/dist/marketplace/templates/pages/index.js +413 -413
  35. package/dist/marketplace/templates/reference/index.d.ts +24 -24
  36. package/dist/marketplace/templates/reference/index.js +26 -26
  37. package/dist/people/index.d.ts +62 -62
  38. package/dist/people/index.js +180 -180
  39. package/dist/platform/index.d.ts +218 -218
  40. package/dist/platform/index.js +632 -632
  41. package/dist/reports/index.d.ts +102 -102
  42. package/dist/reports/index.js +298 -298
  43. package/package.json +1 -1
@@ -1,71 +1,71 @@
1
- export declare const TipoSolicitacao: {
2
- SPED: string;
3
- SINTEGRA: string;
4
- ProcessarNF: string;
5
- GerarInfoBalanca: string;
6
- description(val: string): "enum not found" | "SPED" | "SINTEGRA" | "Processar NFe" | "Gerar informações de balança";
7
- };
8
- export declare const SituacaoSolicitacao: {
9
- EmEspera: string;
10
- EmFila: string;
11
- EmProcessamento: string;
12
- Concluida: string;
13
- ConcluidaComErro: string;
14
- description(val: string): "enum not found" | "Concluída" | "Em processamento" | "Em espera" | "Em fila" | "Concluída com erro";
15
- };
16
- export declare const SituacaoFila: {
17
- AguardandoProcessamento: string;
18
- Processando: string;
19
- description(val: string): "enum not found" | "Aguardando Processamento" | "Processando";
20
- };
21
- export declare const TipoHistoricoSolicitacao: {
22
- AdicionarNaFila: string;
23
- IniciarProcessamento: string;
24
- ConcluirProcessamento: string;
25
- ErroNoProcessamento: string;
26
- description(val: string): "enum not found" | "Erro no processamento" | "Adicionou na fila" | "Iniciou o processamento" | "Concluiu o processamento";
27
- };
28
- export declare const TipoAbrangenciaNotificacao: {
29
- Usuario: string;
30
- Filial: string;
31
- Empresa: string;
32
- Todos: string;
33
- description(val: string): "enum not found" | "Usuário logado" | "Usuários da Filial" | "Usuários da Empresa" | "Todos usuários do sistema";
34
- };
35
- export declare const TipoNotificacao: {
36
- Teste: string;
37
- NovoPedidoGestao: string;
38
- NovoPedidoEcommerce: string;
39
- NovaDevolucaoEcommerce: string;
40
- Aninversario: string;
41
- description(val: string): "enum not found" | "Teste..." | "Novo pedido criado" | "Novo pedido recebido" | "Nova devolução solicitada" | "Aninversario";
42
- };
43
- export declare const TipoBusca: {
44
- Backend: string;
45
- IndexedDB: string;
46
- description(val: string): "enum not found" | "Backend" | "IndexedDB";
47
- };
48
- export declare const TipoCodigo: {
49
- ACTIVATION: string;
50
- RECOVERY: string;
51
- description(val: string): "enum not found" | "Código de ativação" | "Código de recuperação";
52
- };
53
- export declare const Estacao: {
54
- VERAO: string;
55
- OUTONO: string;
56
- INVERNO: string;
57
- PRIMAVERA: string;
58
- description(val: string): "enum not found" | "Verão" | "Outono" | "Inverno" | "Primavera";
59
- };
60
- export declare const TipoNovidade: {
61
- Recurso: string;
62
- Melhoria: string;
63
- Correcao: string;
64
- description(val: string): "enum not found" | "Ajuste" | "Novo" | "Melhoria";
65
- };
66
- export declare const TipoMidiaNovidade: {
67
- Imagem: string;
68
- Gif: string;
69
- Video: string;
70
- description(val: string): "enum not found" | "Imagem" | "GIF" | "Vídeo";
71
- };
1
+ export declare const TipoSolicitacao: {
2
+ SPED: string;
3
+ SINTEGRA: string;
4
+ ProcessarNF: string;
5
+ GerarInfoBalanca: string;
6
+ description(val: string): "enum not found" | "SPED" | "SINTEGRA" | "Processar NFe" | "Gerar informações de balança";
7
+ };
8
+ export declare const SituacaoSolicitacao: {
9
+ EmEspera: string;
10
+ EmFila: string;
11
+ EmProcessamento: string;
12
+ Concluida: string;
13
+ ConcluidaComErro: string;
14
+ description(val: string): "enum not found" | "Concluída" | "Em processamento" | "Em espera" | "Em fila" | "Concluída com erro";
15
+ };
16
+ export declare const SituacaoFila: {
17
+ AguardandoProcessamento: string;
18
+ Processando: string;
19
+ description(val: string): "enum not found" | "Aguardando Processamento" | "Processando";
20
+ };
21
+ export declare const TipoHistoricoSolicitacao: {
22
+ AdicionarNaFila: string;
23
+ IniciarProcessamento: string;
24
+ ConcluirProcessamento: string;
25
+ ErroNoProcessamento: string;
26
+ description(val: string): "enum not found" | "Erro no processamento" | "Adicionou na fila" | "Iniciou o processamento" | "Concluiu o processamento";
27
+ };
28
+ export declare const TipoAbrangenciaNotificacao: {
29
+ Usuario: string;
30
+ Filial: string;
31
+ Empresa: string;
32
+ Todos: string;
33
+ description(val: string): "enum not found" | "Usuário logado" | "Usuários da Filial" | "Usuários da Empresa" | "Todos usuários do sistema";
34
+ };
35
+ export declare const TipoNotificacao: {
36
+ Teste: string;
37
+ NovoPedidoGestao: string;
38
+ NovoPedidoEcommerce: string;
39
+ NovaDevolucaoEcommerce: string;
40
+ Aninversario: string;
41
+ description(val: string): "enum not found" | "Teste..." | "Novo pedido criado" | "Novo pedido recebido" | "Nova devolução solicitada" | "Aninversario";
42
+ };
43
+ export declare const TipoBusca: {
44
+ Backend: string;
45
+ IndexedDB: string;
46
+ description(val: string): "enum not found" | "Backend" | "IndexedDB";
47
+ };
48
+ export declare const TipoCodigo: {
49
+ ACTIVATION: string;
50
+ RECOVERY: string;
51
+ description(val: string): "enum not found" | "Código de ativação" | "Código de recuperação";
52
+ };
53
+ export declare const Estacao: {
54
+ VERAO: string;
55
+ OUTONO: string;
56
+ INVERNO: string;
57
+ PRIMAVERA: string;
58
+ description(val: string): "enum not found" | "Verão" | "Outono" | "Inverno" | "Primavera";
59
+ };
60
+ export declare const TipoNovidade: {
61
+ Recurso: string;
62
+ Melhoria: string;
63
+ Correcao: string;
64
+ description(val: string): "enum not found" | "Ajuste" | "Novo" | "Melhoria";
65
+ };
66
+ export declare const TipoMidiaNovidade: {
67
+ Imagem: string;
68
+ Gif: string;
69
+ Video: string;
70
+ description(val: string): "enum not found" | "Imagem" | "GIF" | "Vídeo";
71
+ };
@@ -1,205 +1,205 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.TipoMidiaNovidade = exports.TipoNovidade = exports.Estacao = exports.TipoCodigo = exports.TipoBusca = exports.TipoNotificacao = exports.TipoAbrangenciaNotificacao = exports.TipoHistoricoSolicitacao = exports.SituacaoFila = exports.SituacaoSolicitacao = exports.TipoSolicitacao = void 0;
4
- exports.TipoSolicitacao = {
5
- SPED: '1',
6
- SINTEGRA: '2',
7
- ProcessarNF: '3',
8
- GerarInfoBalanca: '4',
9
- description(val) {
10
- switch (val) {
11
- case this.SPED:
12
- return 'SPED';
13
- case this.SINTEGRA:
14
- return 'SINTEGRA';
15
- case this.ProcessarNF:
16
- return 'Processar NFe';
17
- case this.GerarInfoBalanca:
18
- return 'Gerar informações de balança';
19
- default:
20
- return 'enum not found';
21
- }
22
- },
23
- };
24
- exports.SituacaoSolicitacao = {
25
- EmEspera: '1',
26
- EmFila: '2',
27
- EmProcessamento: '3',
28
- Concluida: '4',
29
- ConcluidaComErro: '5',
30
- description(val) {
31
- switch (val) {
32
- case this.EmEspera:
33
- return 'Em espera';
34
- case this.EmFila:
35
- return 'Em fila';
36
- case this.EmProcessamento:
37
- return 'Em processamento';
38
- case this.Concluida:
39
- return 'Concluída';
40
- case this.ConcluidaComErro:
41
- return 'Concluída com erro';
42
- default:
43
- return 'enum not found';
44
- }
45
- },
46
- };
47
- exports.SituacaoFila = {
48
- AguardandoProcessamento: '1',
49
- Processando: '2',
50
- description(val) {
51
- switch (val) {
52
- case this.AguardandoProcessamento:
53
- return 'Aguardando Processamento';
54
- case this.Processando:
55
- return 'Processando';
56
- default:
57
- return 'enum not found';
58
- }
59
- },
60
- };
61
- exports.TipoHistoricoSolicitacao = {
62
- AdicionarNaFila: '1',
63
- IniciarProcessamento: '2',
64
- ConcluirProcessamento: '3',
65
- ErroNoProcessamento: '4',
66
- description(val) {
67
- switch (val) {
68
- case this.AdicionarNaFila:
69
- return 'Adicionou na fila';
70
- case this.IniciarProcessamento:
71
- return 'Iniciou o processamento';
72
- case this.ConcluirProcessamento:
73
- return 'Concluiu o processamento';
74
- case this.ErroNoProcessamento:
75
- return 'Erro no processamento';
76
- default:
77
- return 'enum not found';
78
- }
79
- },
80
- };
81
- exports.TipoAbrangenciaNotificacao = {
82
- Usuario: '0',
83
- Filial: '1',
84
- Empresa: '3',
85
- Todos: '4',
86
- description(val) {
87
- switch (val) {
88
- case this.Usuario:
89
- return 'Usuário logado';
90
- case this.Filial:
91
- return 'Usuários da Filial';
92
- case this.Empresa:
93
- return 'Usuários da Empresa';
94
- case this.Todos:
95
- return 'Todos usuários do sistema';
96
- default:
97
- return 'enum not found';
98
- }
99
- },
100
- };
101
- exports.TipoNotificacao = {
102
- Teste: '0',
103
- NovoPedidoGestao: '1',
104
- NovoPedidoEcommerce: '2',
105
- NovaDevolucaoEcommerce: '3',
106
- Aninversario: '4',
107
- description(val) {
108
- switch (val) {
109
- case this.Teste:
110
- return 'Teste...';
111
- case this.NovoPedidoGestao:
112
- return 'Novo pedido criado';
113
- case this.NovoPedidoEcommerce:
114
- return 'Novo pedido recebido';
115
- case this.NovaDevolucaoEcommerce:
116
- return 'Nova devolução solicitada';
117
- case this.Aninversario:
118
- return 'Aninversario';
119
- default:
120
- return 'enum not found';
121
- }
122
- },
123
- };
124
- exports.TipoBusca = {
125
- Backend: '0',
126
- IndexedDB: '1',
127
- description(val) {
128
- switch (val) {
129
- case this.Backend:
130
- return 'Backend';
131
- case this.IndexedDB:
132
- return 'IndexedDB';
133
- default:
134
- return 'enum not found';
135
- }
136
- },
137
- };
138
- exports.TipoCodigo = {
139
- ACTIVATION: '0',
140
- RECOVERY: '1',
141
- description(val) {
142
- switch (val) {
143
- case this.ACTIVATION:
144
- return 'Código de ativação';
145
- case this.RECOVERY:
146
- return 'Código de recuperação';
147
- default:
148
- return 'enum not found';
149
- }
150
- },
151
- };
152
- exports.Estacao = {
153
- VERAO: '0',
154
- OUTONO: '1',
155
- INVERNO: '2',
156
- PRIMAVERA: '3',
157
- description(val) {
158
- switch (val) {
159
- case this.VERAO:
160
- return 'Verão';
161
- case this.OUTONO:
162
- return 'Outono';
163
- case this.INVERNO:
164
- return 'Inverno';
165
- case this.PRIMAVERA:
166
- return 'Primavera';
167
- default:
168
- return 'enum not found';
169
- }
170
- },
171
- };
172
- exports.TipoNovidade = {
173
- Recurso: '0',
174
- Melhoria: '1',
175
- Correcao: '2',
176
- description(val) {
177
- switch (val) {
178
- case this.Recurso:
179
- return 'Novo';
180
- case this.Melhoria:
181
- return 'Melhoria';
182
- case this.Correcao:
183
- return 'Ajuste';
184
- default:
185
- return 'enum not found';
186
- }
187
- },
188
- };
189
- exports.TipoMidiaNovidade = {
190
- Imagem: '0',
191
- Gif: '1',
192
- Video: '2',
193
- description(val) {
194
- switch (val) {
195
- case this.Imagem:
196
- return 'Imagem';
197
- case this.Gif:
198
- return 'GIF';
199
- case this.Video:
200
- return 'Vídeo';
201
- default:
202
- return 'enum not found';
203
- }
204
- },
205
- };
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.TipoMidiaNovidade = exports.TipoNovidade = exports.Estacao = exports.TipoCodigo = exports.TipoBusca = exports.TipoNotificacao = exports.TipoAbrangenciaNotificacao = exports.TipoHistoricoSolicitacao = exports.SituacaoFila = exports.SituacaoSolicitacao = exports.TipoSolicitacao = void 0;
4
+ exports.TipoSolicitacao = {
5
+ SPED: '1',
6
+ SINTEGRA: '2',
7
+ ProcessarNF: '3',
8
+ GerarInfoBalanca: '4',
9
+ description(val) {
10
+ switch (val) {
11
+ case this.SPED:
12
+ return 'SPED';
13
+ case this.SINTEGRA:
14
+ return 'SINTEGRA';
15
+ case this.ProcessarNF:
16
+ return 'Processar NFe';
17
+ case this.GerarInfoBalanca:
18
+ return 'Gerar informações de balança';
19
+ default:
20
+ return 'enum not found';
21
+ }
22
+ },
23
+ };
24
+ exports.SituacaoSolicitacao = {
25
+ EmEspera: '1',
26
+ EmFila: '2',
27
+ EmProcessamento: '3',
28
+ Concluida: '4',
29
+ ConcluidaComErro: '5',
30
+ description(val) {
31
+ switch (val) {
32
+ case this.EmEspera:
33
+ return 'Em espera';
34
+ case this.EmFila:
35
+ return 'Em fila';
36
+ case this.EmProcessamento:
37
+ return 'Em processamento';
38
+ case this.Concluida:
39
+ return 'Concluída';
40
+ case this.ConcluidaComErro:
41
+ return 'Concluída com erro';
42
+ default:
43
+ return 'enum not found';
44
+ }
45
+ },
46
+ };
47
+ exports.SituacaoFila = {
48
+ AguardandoProcessamento: '1',
49
+ Processando: '2',
50
+ description(val) {
51
+ switch (val) {
52
+ case this.AguardandoProcessamento:
53
+ return 'Aguardando Processamento';
54
+ case this.Processando:
55
+ return 'Processando';
56
+ default:
57
+ return 'enum not found';
58
+ }
59
+ },
60
+ };
61
+ exports.TipoHistoricoSolicitacao = {
62
+ AdicionarNaFila: '1',
63
+ IniciarProcessamento: '2',
64
+ ConcluirProcessamento: '3',
65
+ ErroNoProcessamento: '4',
66
+ description(val) {
67
+ switch (val) {
68
+ case this.AdicionarNaFila:
69
+ return 'Adicionou na fila';
70
+ case this.IniciarProcessamento:
71
+ return 'Iniciou o processamento';
72
+ case this.ConcluirProcessamento:
73
+ return 'Concluiu o processamento';
74
+ case this.ErroNoProcessamento:
75
+ return 'Erro no processamento';
76
+ default:
77
+ return 'enum not found';
78
+ }
79
+ },
80
+ };
81
+ exports.TipoAbrangenciaNotificacao = {
82
+ Usuario: '0',
83
+ Filial: '1',
84
+ Empresa: '3',
85
+ Todos: '4',
86
+ description(val) {
87
+ switch (val) {
88
+ case this.Usuario:
89
+ return 'Usuário logado';
90
+ case this.Filial:
91
+ return 'Usuários da Filial';
92
+ case this.Empresa:
93
+ return 'Usuários da Empresa';
94
+ case this.Todos:
95
+ return 'Todos usuários do sistema';
96
+ default:
97
+ return 'enum not found';
98
+ }
99
+ },
100
+ };
101
+ exports.TipoNotificacao = {
102
+ Teste: '0',
103
+ NovoPedidoGestao: '1',
104
+ NovoPedidoEcommerce: '2',
105
+ NovaDevolucaoEcommerce: '3',
106
+ Aninversario: '4',
107
+ description(val) {
108
+ switch (val) {
109
+ case this.Teste:
110
+ return 'Teste...';
111
+ case this.NovoPedidoGestao:
112
+ return 'Novo pedido criado';
113
+ case this.NovoPedidoEcommerce:
114
+ return 'Novo pedido recebido';
115
+ case this.NovaDevolucaoEcommerce:
116
+ return 'Nova devolução solicitada';
117
+ case this.Aninversario:
118
+ return 'Aninversario';
119
+ default:
120
+ return 'enum not found';
121
+ }
122
+ },
123
+ };
124
+ exports.TipoBusca = {
125
+ Backend: '0',
126
+ IndexedDB: '1',
127
+ description(val) {
128
+ switch (val) {
129
+ case this.Backend:
130
+ return 'Backend';
131
+ case this.IndexedDB:
132
+ return 'IndexedDB';
133
+ default:
134
+ return 'enum not found';
135
+ }
136
+ },
137
+ };
138
+ exports.TipoCodigo = {
139
+ ACTIVATION: '0',
140
+ RECOVERY: '1',
141
+ description(val) {
142
+ switch (val) {
143
+ case this.ACTIVATION:
144
+ return 'Código de ativação';
145
+ case this.RECOVERY:
146
+ return 'Código de recuperação';
147
+ default:
148
+ return 'enum not found';
149
+ }
150
+ },
151
+ };
152
+ exports.Estacao = {
153
+ VERAO: '0',
154
+ OUTONO: '1',
155
+ INVERNO: '2',
156
+ PRIMAVERA: '3',
157
+ description(val) {
158
+ switch (val) {
159
+ case this.VERAO:
160
+ return 'Verão';
161
+ case this.OUTONO:
162
+ return 'Outono';
163
+ case this.INVERNO:
164
+ return 'Inverno';
165
+ case this.PRIMAVERA:
166
+ return 'Primavera';
167
+ default:
168
+ return 'enum not found';
169
+ }
170
+ },
171
+ };
172
+ exports.TipoNovidade = {
173
+ Recurso: '0',
174
+ Melhoria: '1',
175
+ Correcao: '2',
176
+ description(val) {
177
+ switch (val) {
178
+ case this.Recurso:
179
+ return 'Novo';
180
+ case this.Melhoria:
181
+ return 'Melhoria';
182
+ case this.Correcao:
183
+ return 'Ajuste';
184
+ default:
185
+ return 'enum not found';
186
+ }
187
+ },
188
+ };
189
+ exports.TipoMidiaNovidade = {
190
+ Imagem: '0',
191
+ Gif: '1',
192
+ Video: '2',
193
+ description(val) {
194
+ switch (val) {
195
+ case this.Imagem:
196
+ return 'Imagem';
197
+ case this.Gif:
198
+ return 'GIF';
199
+ case this.Video:
200
+ return 'Vídeo';
201
+ default:
202
+ return 'enum not found';
203
+ }
204
+ },
205
+ };