types-nora-api 0.0.486 → 0.0.490
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api/graphql/leituras/ArquivoTipadoMusica/index.d.ts +24 -2
- package/dist/api/graphql/leituras/ArquivoTipadoMusica/index.js +33 -2
- package/dist/api/graphql/leituras/Card/index.d.ts +58 -0
- package/dist/api/graphql/leituras/Card/index.js +88 -0
- package/dist/api/graphql/leituras/CoeficienteGanhoEstatisticaClasse/index.d.ts +48 -0
- package/dist/api/graphql/leituras/CoeficienteGanhoEstatisticaClasse/index.js +66 -0
- package/dist/api/graphql/leituras/Coluna/index.d.ts +46 -0
- package/dist/api/graphql/leituras/Coluna/index.js +68 -0
- package/dist/api/graphql/leituras/Comentario/index.d.ts +57 -0
- package/dist/api/graphql/leituras/Comentario/index.js +87 -0
- package/dist/api/graphql/leituras/DependenciaCard/index.d.ts +51 -0
- package/dist/api/graphql/leituras/DependenciaCard/index.js +75 -0
- package/dist/api/graphql/leituras/DesenhoFluxograma/index.d.ts +43 -0
- package/dist/api/graphql/leituras/DesenhoFluxograma/index.js +63 -0
- package/dist/api/graphql/leituras/DimensaoClima/index.d.ts +38 -0
- package/dist/api/graphql/leituras/DimensaoClima/index.js +52 -0
- package/dist/api/graphql/leituras/FonteMusica/index.d.ts +38 -0
- package/dist/api/graphql/leituras/FonteMusica/index.js +56 -0
- package/dist/api/graphql/leituras/ItemChecklist/index.d.ts +50 -0
- package/dist/api/graphql/leituras/ItemChecklist/index.js +72 -0
- package/dist/api/graphql/leituras/Menu/index.d.ts +47 -0
- package/dist/api/graphql/leituras/Menu/index.js +67 -0
- package/dist/api/graphql/leituras/MusicaConfigurada/index.d.ts +75 -0
- package/dist/api/graphql/leituras/MusicaConfigurada/index.js +103 -0
- package/dist/api/graphql/leituras/Objetivo/index.d.ts +49 -0
- package/dist/api/graphql/leituras/Objetivo/index.js +73 -0
- package/dist/api/graphql/leituras/PaginaNavegacao/index.d.ts +48 -0
- package/dist/api/graphql/leituras/PaginaNavegacao/index.js +70 -0
- package/dist/api/graphql/leituras/Partida/index.d.ts +128 -0
- package/dist/api/graphql/leituras/Partida/index.js +154 -0
- package/dist/api/graphql/leituras/PosicaoFluxogramaCard/index.d.ts +45 -0
- package/dist/api/graphql/leituras/PosicaoFluxogramaCard/index.js +65 -0
- package/dist/api/graphql/leituras/SerDetalhe/index.d.ts +11 -2
- package/dist/api/graphql/leituras/SerDetalhe/index.js +17 -2
- package/dist/api/graphql/leituras/TipoStatusCard/index.d.ts +42 -0
- package/dist/api/graphql/leituras/TipoStatusCard/index.js +60 -0
- package/dist/api/graphql/leituras/index.d.ts +64 -0
- package/dist/api/graphql/leituras/index.js +64 -0
- package/dist/api/rest/index.d.ts +178 -3
- package/dist/api/rest/index.js +355 -2
- package/dist/dominio/index.d.ts +114 -1
- package/dist/dominio/index.js +28 -1
- package/dist/dtos/index.d.ts +602 -13
- package/dist/dtos/index.js +100 -2
- package/dist/menus/index.d.ts +2 -160
- package/dist/menus/index.js +1 -330
- package/dist/paginas/index.d.ts +90 -74
- package/dist/paginas/index.js +76 -106
- package/dist/shared/index.d.ts +175 -1
- package/dist/ws/index.d.ts +295 -14
- package/dist/ws/index.js +40 -3
- package/package.json +1 -1
package/dist/api/rest/index.js
CHANGED
|
@@ -50,6 +50,22 @@ var EventosApiRest;
|
|
|
50
50
|
endpoint: '/api/projetos-3d/consulta',
|
|
51
51
|
montaQueryString: parametros => `idProjeto=${encodeURIComponent(String(parametros.idProjeto))}`,
|
|
52
52
|
}),
|
|
53
|
+
capasArte: createApiRestGet({
|
|
54
|
+
transporte: ApiTransporte.REST,
|
|
55
|
+
tipoRequisicao: ApiTipoRequisicao.GET,
|
|
56
|
+
metodoHttp: ApiMetodoHttp.GET,
|
|
57
|
+
nome: 'capasArteProjeto3D',
|
|
58
|
+
endpoint: '/api/projetos-3d/capas-arte',
|
|
59
|
+
montaQueryString: () => '',
|
|
60
|
+
}),
|
|
61
|
+
imagemCapaArte: createApiRestGet({
|
|
62
|
+
transporte: ApiTransporte.REST,
|
|
63
|
+
tipoRequisicao: ApiTipoRequisicao.GET,
|
|
64
|
+
metodoHttp: ApiMetodoHttp.GET,
|
|
65
|
+
nome: 'imagemCapaArteProjeto3D',
|
|
66
|
+
endpoint: '/api/projetos-3d/capa-arte-imagem',
|
|
67
|
+
montaQueryString: parametros => `idProjeto=${encodeURIComponent(String(parametros.idProjeto))}`,
|
|
68
|
+
}),
|
|
53
69
|
};
|
|
54
70
|
const Projeto3DPost = {
|
|
55
71
|
salvar: createApiRestPost({
|
|
@@ -67,6 +83,25 @@ var EventosApiRest;
|
|
|
67
83
|
endpoint: '/api/projetos-3d/salvar-caso-simples',
|
|
68
84
|
}),
|
|
69
85
|
};
|
|
86
|
+
const AssinaturaArtistaGet = {
|
|
87
|
+
minha: createApiRestGet({
|
|
88
|
+
transporte: ApiTransporte.REST,
|
|
89
|
+
tipoRequisicao: ApiTipoRequisicao.GET,
|
|
90
|
+
metodoHttp: ApiMetodoHttp.GET,
|
|
91
|
+
nome: 'minhaAssinaturaArtista',
|
|
92
|
+
endpoint: '/api/assinatura-artista/minha',
|
|
93
|
+
montaQueryString: () => '',
|
|
94
|
+
}),
|
|
95
|
+
};
|
|
96
|
+
const AssinaturaArtistaPost = {
|
|
97
|
+
salvar: createApiRestPost({
|
|
98
|
+
transporte: ApiTransporte.REST,
|
|
99
|
+
tipoRequisicao: ApiTipoRequisicao.POST,
|
|
100
|
+
metodoHttp: ApiMetodoHttp.POST,
|
|
101
|
+
nome: 'salvarAssinaturaArtista',
|
|
102
|
+
endpoint: '/api/assinatura-artista/salvar',
|
|
103
|
+
}),
|
|
104
|
+
};
|
|
70
105
|
const TestePericiaPost = {
|
|
71
106
|
analisar: createApiRestPost({
|
|
72
107
|
transporte: ApiTransporte.REST,
|
|
@@ -95,6 +130,22 @@ var EventosApiRest;
|
|
|
95
130
|
endpoint: '/seres/criaSerComDetalhe',
|
|
96
131
|
}),
|
|
97
132
|
};
|
|
133
|
+
const CoeficienteGanhoEstatisticaPost = {
|
|
134
|
+
criar: createApiRestPost({
|
|
135
|
+
transporte: ApiTransporte.REST,
|
|
136
|
+
tipoRequisicao: ApiTipoRequisicao.POST,
|
|
137
|
+
metodoHttp: ApiMetodoHttp.POST,
|
|
138
|
+
nome: 'criarCoeficienteGanhoEstatistica',
|
|
139
|
+
endpoint: '/coeficientes_ganho_estatistica_classe/criar',
|
|
140
|
+
}),
|
|
141
|
+
atualizar: createApiRestPost({
|
|
142
|
+
transporte: ApiTransporte.REST,
|
|
143
|
+
tipoRequisicao: ApiTipoRequisicao.POST,
|
|
144
|
+
metodoHttp: ApiMetodoHttp.POST,
|
|
145
|
+
nome: 'atualizarCoeficienteGanhoEstatistica',
|
|
146
|
+
endpoint: '/coeficientes_ganho_estatistica_classe/atualizar',
|
|
147
|
+
}),
|
|
148
|
+
};
|
|
98
149
|
const SeresJogaveisMembrosGet = {
|
|
99
150
|
obter: createApiRestGet({
|
|
100
151
|
transporte: ApiTransporte.REST,
|
|
@@ -114,6 +165,16 @@ var EventosApiRest;
|
|
|
114
165
|
endpoint: '/seres_jogaveis_membros/salvar',
|
|
115
166
|
}),
|
|
116
167
|
};
|
|
168
|
+
const SeresJogaveisFichasGet = {
|
|
169
|
+
evolucaoPendente: createApiRestGet({
|
|
170
|
+
transporte: ApiTransporte.REST,
|
|
171
|
+
tipoRequisicao: ApiTipoRequisicao.GET,
|
|
172
|
+
metodoHttp: ApiMetodoHttp.GET,
|
|
173
|
+
nome: 'evolucaoPendenteDoSer',
|
|
174
|
+
endpoint: '/seres_jogaveis_fichas/evolucao-pendente',
|
|
175
|
+
montaQueryString: parametros => `fkSerId=${encodeURIComponent(String(parametros.fkSerId))}`,
|
|
176
|
+
}),
|
|
177
|
+
};
|
|
117
178
|
const SeresJogaveisFichasPost = {
|
|
118
179
|
criar: createApiRestPost({
|
|
119
180
|
transporte: ApiTransporte.REST,
|
|
@@ -123,8 +184,286 @@ var EventosApiRest;
|
|
|
123
184
|
endpoint: '/seres_jogaveis_fichas/criar',
|
|
124
185
|
}),
|
|
125
186
|
};
|
|
126
|
-
|
|
127
|
-
|
|
187
|
+
const DesafiosGet = {
|
|
188
|
+
estrutura: createApiRestGet({
|
|
189
|
+
transporte: ApiTransporte.REST,
|
|
190
|
+
tipoRequisicao: ApiTipoRequisicao.GET,
|
|
191
|
+
metodoHttp: ApiMetodoHttp.GET,
|
|
192
|
+
nome: 'estruturaDesafios',
|
|
193
|
+
endpoint: '/desafios/estrutura',
|
|
194
|
+
montaQueryString: () => '',
|
|
195
|
+
}),
|
|
196
|
+
};
|
|
197
|
+
const DesafiosAtivosGet = {
|
|
198
|
+
painel: createApiRestGet({
|
|
199
|
+
transporte: ApiTransporte.REST,
|
|
200
|
+
tipoRequisicao: ApiTipoRequisicao.GET,
|
|
201
|
+
metodoHttp: ApiMetodoHttp.GET,
|
|
202
|
+
nome: 'painelDesafiosAtivos',
|
|
203
|
+
endpoint: '/desafios-ativos/painel',
|
|
204
|
+
montaQueryString: parametros => parametros.instanteIso ? `instanteIso=${encodeURIComponent(parametros.instanteIso)}` : '',
|
|
205
|
+
}),
|
|
206
|
+
historico: createApiRestGet({
|
|
207
|
+
transporte: ApiTransporte.REST,
|
|
208
|
+
tipoRequisicao: ApiTipoRequisicao.GET,
|
|
209
|
+
metodoHttp: ApiMetodoHttp.GET,
|
|
210
|
+
nome: 'historicoDesafiosAtivos',
|
|
211
|
+
endpoint: '/desafios-ativos/historico',
|
|
212
|
+
montaQueryString: parametros => `tipo=${encodeURIComponent(parametros.tipo)}`,
|
|
213
|
+
}),
|
|
214
|
+
};
|
|
215
|
+
const DesafiosParticipacaoGet = {
|
|
216
|
+
politicas: createApiRestGet({
|
|
217
|
+
transporte: ApiTransporte.REST,
|
|
218
|
+
tipoRequisicao: ApiTipoRequisicao.GET,
|
|
219
|
+
metodoHttp: ApiMetodoHttp.GET,
|
|
220
|
+
nome: 'politicasParticipacao',
|
|
221
|
+
endpoint: '/desafios-participacao/politicas',
|
|
222
|
+
montaQueryString: () => '',
|
|
223
|
+
}),
|
|
224
|
+
painel: createApiRestGet({
|
|
225
|
+
transporte: ApiTransporte.REST,
|
|
226
|
+
tipoRequisicao: ApiTipoRequisicao.GET,
|
|
227
|
+
metodoHttp: ApiMetodoHttp.GET,
|
|
228
|
+
nome: 'painelParticipacao',
|
|
229
|
+
endpoint: '/desafios-participacao/painel',
|
|
230
|
+
montaQueryString: parametros => parametros.instanteIso ? `instanteIso=${encodeURIComponent(parametros.instanteIso)}` : '',
|
|
231
|
+
}),
|
|
232
|
+
};
|
|
233
|
+
const DesafiosLeaderboardGet = {
|
|
234
|
+
metricas: createApiRestGet({
|
|
235
|
+
transporte: ApiTransporte.REST,
|
|
236
|
+
tipoRequisicao: ApiTipoRequisicao.GET,
|
|
237
|
+
metodoHttp: ApiMetodoHttp.GET,
|
|
238
|
+
nome: 'metricasLeaderboard',
|
|
239
|
+
endpoint: '/desafios-leaderboard/metricas',
|
|
240
|
+
montaQueryString: () => '',
|
|
241
|
+
}),
|
|
242
|
+
instancia: createApiRestGet({
|
|
243
|
+
transporte: ApiTransporte.REST,
|
|
244
|
+
tipoRequisicao: ApiTipoRequisicao.GET,
|
|
245
|
+
metodoHttp: ApiMetodoHttp.GET,
|
|
246
|
+
nome: 'leaderboardInstancia',
|
|
247
|
+
endpoint: '/desafios-leaderboard/instancia',
|
|
248
|
+
montaQueryString: parametros => parametros.instanteIso ? `tipo=${encodeURIComponent(parametros.tipo)}&instanteIso=${encodeURIComponent(parametros.instanteIso)}` : `tipo=${encodeURIComponent(parametros.tipo)}`,
|
|
249
|
+
}),
|
|
250
|
+
historico: createApiRestGet({
|
|
251
|
+
transporte: ApiTransporte.REST,
|
|
252
|
+
tipoRequisicao: ApiTipoRequisicao.GET,
|
|
253
|
+
metodoHttp: ApiMetodoHttp.GET,
|
|
254
|
+
nome: 'historicoLeaderboard',
|
|
255
|
+
endpoint: '/desafios-leaderboard/historico',
|
|
256
|
+
montaQueryString: () => '',
|
|
257
|
+
}),
|
|
258
|
+
};
|
|
259
|
+
const PartidasGet = {
|
|
260
|
+
estruturaConfiguracao: createApiRestGet({
|
|
261
|
+
transporte: ApiTransporte.REST,
|
|
262
|
+
tipoRequisicao: ApiTipoRequisicao.GET,
|
|
263
|
+
metodoHttp: ApiMetodoHttp.GET,
|
|
264
|
+
nome: 'estruturaConfiguracaoPartidas',
|
|
265
|
+
endpoint: '/partidas/estrutura-configuracao',
|
|
266
|
+
montaQueryString: () => '',
|
|
267
|
+
}),
|
|
268
|
+
estruturaOrbital: createApiRestGet({
|
|
269
|
+
transporte: ApiTransporte.REST,
|
|
270
|
+
tipoRequisicao: ApiTipoRequisicao.GET,
|
|
271
|
+
metodoHttp: ApiMetodoHttp.GET,
|
|
272
|
+
nome: 'estruturaOrbitalPartidas',
|
|
273
|
+
endpoint: '/partidas/estrutura-orbital',
|
|
274
|
+
montaQueryString: () => '',
|
|
275
|
+
}),
|
|
276
|
+
configuracao: createApiRestGet({
|
|
277
|
+
transporte: ApiTransporte.REST,
|
|
278
|
+
tipoRequisicao: ApiTipoRequisicao.GET,
|
|
279
|
+
metodoHttp: ApiMetodoHttp.GET,
|
|
280
|
+
nome: 'configuracaoPartida',
|
|
281
|
+
endpoint: '/partidas/configuracao',
|
|
282
|
+
montaQueryString: parametros => `id=${encodeURIComponent(String(parametros.id))}`,
|
|
283
|
+
}),
|
|
284
|
+
arteCapa: createApiRestGet({
|
|
285
|
+
transporte: ApiTransporte.REST,
|
|
286
|
+
tipoRequisicao: ApiTipoRequisicao.GET,
|
|
287
|
+
metodoHttp: ApiMetodoHttp.GET,
|
|
288
|
+
nome: 'arteCapaPartida',
|
|
289
|
+
endpoint: '/partidas/arte-capa',
|
|
290
|
+
montaQueryString: parametros => `id=${encodeURIComponent(String(parametros.id))}`,
|
|
291
|
+
}),
|
|
292
|
+
musicaFundo: createApiRestGet({
|
|
293
|
+
transporte: ApiTransporte.REST,
|
|
294
|
+
tipoRequisicao: ApiTipoRequisicao.GET,
|
|
295
|
+
metodoHttp: ApiMetodoHttp.GET,
|
|
296
|
+
nome: 'musicaFundoPartida',
|
|
297
|
+
endpoint: '/partidas/musica-fundo',
|
|
298
|
+
montaQueryString: parametros => `id=${encodeURIComponent(String(parametros.id))}`,
|
|
299
|
+
}),
|
|
300
|
+
};
|
|
301
|
+
const DesafiosPost = {
|
|
302
|
+
criarDesafio: createApiRestPost({
|
|
303
|
+
transporte: ApiTransporte.REST,
|
|
304
|
+
tipoRequisicao: ApiTipoRequisicao.POST,
|
|
305
|
+
metodoHttp: ApiMetodoHttp.POST,
|
|
306
|
+
nome: 'criarDesafio',
|
|
307
|
+
endpoint: '/desafios/criar-desafio',
|
|
308
|
+
}),
|
|
309
|
+
salvarDesafio: createApiRestPost({
|
|
310
|
+
transporte: ApiTransporte.REST,
|
|
311
|
+
tipoRequisicao: ApiTipoRequisicao.POST,
|
|
312
|
+
metodoHttp: ApiMetodoHttp.POST,
|
|
313
|
+
nome: 'salvarDesafio',
|
|
314
|
+
endpoint: '/desafios/salvar-desafio',
|
|
315
|
+
}),
|
|
316
|
+
alternarDesafio: createApiRestPost({
|
|
317
|
+
transporte: ApiTransporte.REST,
|
|
318
|
+
tipoRequisicao: ApiTipoRequisicao.POST,
|
|
319
|
+
metodoHttp: ApiMetodoHttp.POST,
|
|
320
|
+
nome: 'alternarDesafio',
|
|
321
|
+
endpoint: '/desafios/alternar-desafio',
|
|
322
|
+
}),
|
|
323
|
+
reordenarDesafios: createApiRestPost({
|
|
324
|
+
transporte: ApiTransporte.REST,
|
|
325
|
+
tipoRequisicao: ApiTipoRequisicao.POST,
|
|
326
|
+
metodoHttp: ApiMetodoHttp.POST,
|
|
327
|
+
nome: 'reordenarDesafios',
|
|
328
|
+
endpoint: '/desafios/reordenar-desafios',
|
|
329
|
+
}),
|
|
330
|
+
};
|
|
331
|
+
const DesafiosAtivosPost = {
|
|
332
|
+
garantir: createApiRestPost({
|
|
333
|
+
transporte: ApiTransporte.REST,
|
|
334
|
+
tipoRequisicao: ApiTipoRequisicao.POST,
|
|
335
|
+
metodoHttp: ApiMetodoHttp.POST,
|
|
336
|
+
nome: 'garantirDesafioAtivo',
|
|
337
|
+
endpoint: '/desafios-ativos/garantir',
|
|
338
|
+
}),
|
|
339
|
+
};
|
|
340
|
+
const DesafiosParticipacaoPost = {
|
|
341
|
+
salvarPolitica: createApiRestPost({
|
|
342
|
+
transporte: ApiTransporte.REST,
|
|
343
|
+
tipoRequisicao: ApiTipoRequisicao.POST,
|
|
344
|
+
metodoHttp: ApiMetodoHttp.POST,
|
|
345
|
+
nome: 'salvarPoliticaParticipacao',
|
|
346
|
+
endpoint: '/desafios-participacao/salvar-politica',
|
|
347
|
+
}),
|
|
348
|
+
registrarTentativa: createApiRestPost({
|
|
349
|
+
transporte: ApiTransporte.REST,
|
|
350
|
+
tipoRequisicao: ApiTipoRequisicao.POST,
|
|
351
|
+
metodoHttp: ApiMetodoHttp.POST,
|
|
352
|
+
nome: 'registrarTentativaParticipacao',
|
|
353
|
+
endpoint: '/desafios-participacao/registrar-tentativa',
|
|
354
|
+
}),
|
|
355
|
+
};
|
|
356
|
+
const DesafiosLeaderboardPost = {
|
|
357
|
+
salvarMetrica: createApiRestPost({
|
|
358
|
+
transporte: ApiTransporte.REST,
|
|
359
|
+
tipoRequisicao: ApiTipoRequisicao.POST,
|
|
360
|
+
metodoHttp: ApiMetodoHttp.POST,
|
|
361
|
+
nome: 'salvarMetricaLeaderboard',
|
|
362
|
+
endpoint: '/desafios-leaderboard/salvar-metrica',
|
|
363
|
+
}),
|
|
364
|
+
registrarResultado: createApiRestPost({
|
|
365
|
+
transporte: ApiTransporte.REST,
|
|
366
|
+
tipoRequisicao: ApiTipoRequisicao.POST,
|
|
367
|
+
metodoHttp: ApiMetodoHttp.POST,
|
|
368
|
+
nome: 'registrarResultadoDesafio',
|
|
369
|
+
endpoint: '/desafios-leaderboard/registrar-resultado',
|
|
370
|
+
}),
|
|
371
|
+
};
|
|
372
|
+
const PartidasPost = {
|
|
373
|
+
criarCatalogo: createApiRestPost({
|
|
374
|
+
transporte: ApiTransporte.REST,
|
|
375
|
+
tipoRequisicao: ApiTipoRequisicao.POST,
|
|
376
|
+
metodoHttp: ApiMetodoHttp.POST,
|
|
377
|
+
nome: 'criarCatalogoPartida',
|
|
378
|
+
endpoint: '/partidas/criar-catalogo',
|
|
379
|
+
}),
|
|
380
|
+
salvarCatalogo: createApiRestPost({
|
|
381
|
+
transporte: ApiTransporte.REST,
|
|
382
|
+
tipoRequisicao: ApiTipoRequisicao.POST,
|
|
383
|
+
metodoHttp: ApiMetodoHttp.POST,
|
|
384
|
+
nome: 'salvarCatalogoPartida',
|
|
385
|
+
endpoint: '/partidas/salvar-catalogo',
|
|
386
|
+
}),
|
|
387
|
+
deletarCatalogo: createApiRestPost({
|
|
388
|
+
transporte: ApiTransporte.REST,
|
|
389
|
+
tipoRequisicao: ApiTipoRequisicao.POST,
|
|
390
|
+
metodoHttp: ApiMetodoHttp.POST,
|
|
391
|
+
nome: 'deletarCatalogoPartida',
|
|
392
|
+
endpoint: '/partidas/deletar-catalogo',
|
|
393
|
+
}),
|
|
394
|
+
criarPartida: createApiRestPost({
|
|
395
|
+
transporte: ApiTransporte.REST,
|
|
396
|
+
tipoRequisicao: ApiTipoRequisicao.POST,
|
|
397
|
+
metodoHttp: ApiMetodoHttp.POST,
|
|
398
|
+
nome: 'criarPartida',
|
|
399
|
+
endpoint: '/partidas/criar-partida',
|
|
400
|
+
}),
|
|
401
|
+
salvarPartida: createApiRestPost({
|
|
402
|
+
transporte: ApiTransporte.REST,
|
|
403
|
+
tipoRequisicao: ApiTipoRequisicao.POST,
|
|
404
|
+
metodoHttp: ApiMetodoHttp.POST,
|
|
405
|
+
nome: 'salvarPartida',
|
|
406
|
+
endpoint: '/partidas/salvar-partida',
|
|
407
|
+
}),
|
|
408
|
+
adicionarPartidaCatalogo: createApiRestPost({
|
|
409
|
+
transporte: ApiTransporte.REST,
|
|
410
|
+
tipoRequisicao: ApiTipoRequisicao.POST,
|
|
411
|
+
metodoHttp: ApiMetodoHttp.POST,
|
|
412
|
+
nome: 'adicionarPartidaCatalogo',
|
|
413
|
+
endpoint: '/partidas/adicionar-partida-catalogo',
|
|
414
|
+
}),
|
|
415
|
+
removerPartidaCatalogo: createApiRestPost({
|
|
416
|
+
transporte: ApiTransporte.REST,
|
|
417
|
+
tipoRequisicao: ApiTipoRequisicao.POST,
|
|
418
|
+
metodoHttp: ApiMetodoHttp.POST,
|
|
419
|
+
nome: 'removerPartidaCatalogo',
|
|
420
|
+
endpoint: '/partidas/remover-partida-catalogo',
|
|
421
|
+
}),
|
|
422
|
+
alternarExibicaoPartida: createApiRestPost({
|
|
423
|
+
transporte: ApiTransporte.REST,
|
|
424
|
+
tipoRequisicao: ApiTipoRequisicao.POST,
|
|
425
|
+
metodoHttp: ApiMetodoHttp.POST,
|
|
426
|
+
nome: 'alternarExibicaoPartida',
|
|
427
|
+
endpoint: '/partidas/alternar-exibicao-partida',
|
|
428
|
+
}),
|
|
429
|
+
reordenarPartidasCatalogo: createApiRestPost({
|
|
430
|
+
transporte: ApiTransporte.REST,
|
|
431
|
+
tipoRequisicao: ApiTipoRequisicao.POST,
|
|
432
|
+
metodoHttp: ApiMetodoHttp.POST,
|
|
433
|
+
nome: 'reordenarPartidasCatalogo',
|
|
434
|
+
endpoint: '/partidas/reordenar-partidas-catalogo',
|
|
435
|
+
}),
|
|
436
|
+
alternarDesabilitadaPartida: createApiRestPost({
|
|
437
|
+
transporte: ApiTransporte.REST,
|
|
438
|
+
tipoRequisicao: ApiTipoRequisicao.POST,
|
|
439
|
+
metodoHttp: ApiMetodoHttp.POST,
|
|
440
|
+
nome: 'alternarDesabilitadaPartida',
|
|
441
|
+
endpoint: '/partidas/alternar-desabilitada-partida',
|
|
442
|
+
}),
|
|
443
|
+
salvarConfiguracao: createApiRestPost({
|
|
444
|
+
transporte: ApiTransporte.REST,
|
|
445
|
+
tipoRequisicao: ApiTipoRequisicao.POST,
|
|
446
|
+
metodoHttp: ApiMetodoHttp.POST,
|
|
447
|
+
nome: 'salvarConfiguracaoPartida',
|
|
448
|
+
endpoint: '/partidas/salvar-configuracao',
|
|
449
|
+
}),
|
|
450
|
+
salvarArteCapa: createApiRestPost({
|
|
451
|
+
transporte: ApiTransporte.REST,
|
|
452
|
+
tipoRequisicao: ApiTipoRequisicao.POST,
|
|
453
|
+
metodoHttp: ApiMetodoHttp.POST,
|
|
454
|
+
nome: 'salvarArteCapaPartida',
|
|
455
|
+
endpoint: '/partidas/salvar-arte-capa',
|
|
456
|
+
}),
|
|
457
|
+
salvarMusicaFundo: createApiRestPost({
|
|
458
|
+
transporte: ApiTransporte.REST,
|
|
459
|
+
tipoRequisicao: ApiTipoRequisicao.POST,
|
|
460
|
+
metodoHttp: ApiMetodoHttp.POST,
|
|
461
|
+
nome: 'salvarMusicaFundoPartida',
|
|
462
|
+
endpoint: '/partidas/salvar-musica-fundo',
|
|
463
|
+
}),
|
|
464
|
+
};
|
|
465
|
+
EventosApiRest.GET = { Rest, Projeto3D, Projeto3DTecnico, AssinaturaArtista: AssinaturaArtistaGet, SeresJogaveisMembros: SeresJogaveisMembrosGet, SeresJogaveisFichas: SeresJogaveisFichasGet, Desafios: DesafiosGet, DesafiosAtivos: DesafiosAtivosGet, DesafiosParticipacao: DesafiosParticipacaoGet, DesafiosLeaderboard: DesafiosLeaderboardGet, Partidas: PartidasGet };
|
|
466
|
+
EventosApiRest.POST = { Projeto3D: Projeto3DPost, AssinaturaArtista: AssinaturaArtistaPost, TestePericia: TestePericiaPost, SerRegistro: SerRegistroPost, CoeficienteGanhoEstatistica: CoeficienteGanhoEstatisticaPost, SeresJogaveisMembros: SeresJogaveisMembrosPost, SeresJogaveisFichas: SeresJogaveisFichasPost, Desafios: DesafiosPost, DesafiosAtivos: DesafiosAtivosPost, DesafiosParticipacao: DesafiosParticipacaoPost, DesafiosLeaderboard: DesafiosLeaderboardPost, Partidas: PartidasPost };
|
|
128
467
|
})(EventosApiRest || (EventosApiRest = {}));
|
|
129
468
|
var EventosApi;
|
|
130
469
|
(function (EventosApi) {
|
|
@@ -132,14 +471,28 @@ var EventosApi;
|
|
|
132
471
|
Rest: EventosApiRest.GET.Rest,
|
|
133
472
|
Projeto3D: EventosApiRest.GET.Projeto3D,
|
|
134
473
|
Projeto3DTecnico: EventosApiRest.GET.Projeto3DTecnico,
|
|
474
|
+
AssinaturaArtista: EventosApiRest.GET.AssinaturaArtista,
|
|
135
475
|
SeresJogaveisMembros: EventosApiRest.GET.SeresJogaveisMembros,
|
|
476
|
+
SeresJogaveisFichas: EventosApiRest.GET.SeresJogaveisFichas,
|
|
477
|
+
Desafios: EventosApiRest.GET.Desafios,
|
|
478
|
+
DesafiosAtivos: EventosApiRest.GET.DesafiosAtivos,
|
|
479
|
+
DesafiosParticipacao: EventosApiRest.GET.DesafiosParticipacao,
|
|
480
|
+
DesafiosLeaderboard: EventosApiRest.GET.DesafiosLeaderboard,
|
|
481
|
+
Partidas: EventosApiRest.GET.Partidas,
|
|
136
482
|
};
|
|
137
483
|
EventosApi.POST = {
|
|
138
484
|
Projeto3D: EventosApiRest.POST.Projeto3D,
|
|
485
|
+
AssinaturaArtista: EventosApiRest.POST.AssinaturaArtista,
|
|
139
486
|
TestePericia: EventosApiRest.POST.TestePericia,
|
|
140
487
|
SerRegistro: EventosApiRest.POST.SerRegistro,
|
|
141
488
|
SeresJogaveisMembros: EventosApiRest.POST.SeresJogaveisMembros,
|
|
142
489
|
SeresJogaveisFichas: EventosApiRest.POST.SeresJogaveisFichas,
|
|
490
|
+
Desafios: EventosApiRest.POST.Desafios,
|
|
491
|
+
DesafiosAtivos: EventosApiRest.POST.DesafiosAtivos,
|
|
492
|
+
DesafiosParticipacao: EventosApiRest.POST.DesafiosParticipacao,
|
|
493
|
+
DesafiosLeaderboard: EventosApiRest.POST.DesafiosLeaderboard,
|
|
494
|
+
Partidas: EventosApiRest.POST.Partidas,
|
|
495
|
+
CoeficienteGanhoEstatistica: EventosApiRest.POST.CoeficienteGanhoEstatistica,
|
|
143
496
|
};
|
|
144
497
|
})(EventosApi || (EventosApi = {}));
|
|
145
498
|
export { ApiMetodoHttp, ApiTipoRequisicao, ApiTransporte, EventosApi, EventosApiRest, createApiRestGet, createApiRestPost };
|
package/dist/dominio/index.d.ts
CHANGED
|
@@ -442,6 +442,10 @@ declare const CAPACIDADES: {
|
|
|
442
442
|
readonly id: 6;
|
|
443
443
|
readonly nome: "ARTISTA.CRIACAO.UPLOAD_IMAGEM";
|
|
444
444
|
};
|
|
445
|
+
readonly COLABORADOR__PAINEL_DO_MEDO: {
|
|
446
|
+
readonly id: 55;
|
|
447
|
+
readonly nome: "COLABORADOR.PAINEL_DO_MEDO";
|
|
448
|
+
};
|
|
445
449
|
readonly DESENVOLVEDOR: {
|
|
446
450
|
readonly id: 36;
|
|
447
451
|
readonly nome: "DESENVOLVEDOR";
|
|
@@ -598,6 +602,115 @@ declare const ESTILOS_SESSAO_MESTRADA: {
|
|
|
598
602
|
};
|
|
599
603
|
type EstilosSessaoMestradaDef = (typeof ESTILOS_SESSAO_MESTRADA)[keyof typeof ESTILOS_SESSAO_MESTRADA];
|
|
600
604
|
type EstilosSessaoMestradaKey = keyof typeof ESTILOS_SESSAO_MESTRADA;
|
|
605
|
+
declare const NIVEIS: {
|
|
606
|
+
readonly GRAU_EX_P_0: {
|
|
607
|
+
readonly id: 1;
|
|
608
|
+
readonly nomeVisualizacao: "Grau Ex.P. 0";
|
|
609
|
+
readonly valorNivel: 0;
|
|
610
|
+
};
|
|
611
|
+
readonly GRAU_EX_P_1: {
|
|
612
|
+
readonly id: 2;
|
|
613
|
+
readonly nomeVisualizacao: "Grau Ex.P. 1";
|
|
614
|
+
readonly valorNivel: 1;
|
|
615
|
+
};
|
|
616
|
+
readonly GRAU_EX_P_10: {
|
|
617
|
+
readonly id: 11;
|
|
618
|
+
readonly nomeVisualizacao: "Grau Ex.P. 10";
|
|
619
|
+
readonly valorNivel: 10;
|
|
620
|
+
};
|
|
621
|
+
readonly GRAU_EX_P_11: {
|
|
622
|
+
readonly id: 12;
|
|
623
|
+
readonly nomeVisualizacao: "Grau Ex.P. 11";
|
|
624
|
+
readonly valorNivel: 11;
|
|
625
|
+
};
|
|
626
|
+
readonly GRAU_EX_P_12: {
|
|
627
|
+
readonly id: 13;
|
|
628
|
+
readonly nomeVisualizacao: "Grau Ex.P. 12";
|
|
629
|
+
readonly valorNivel: 12;
|
|
630
|
+
};
|
|
631
|
+
readonly GRAU_EX_P_13: {
|
|
632
|
+
readonly id: 14;
|
|
633
|
+
readonly nomeVisualizacao: "Grau Ex.P. 13";
|
|
634
|
+
readonly valorNivel: 13;
|
|
635
|
+
};
|
|
636
|
+
readonly GRAU_EX_P_14: {
|
|
637
|
+
readonly id: 15;
|
|
638
|
+
readonly nomeVisualizacao: "Grau Ex.P. 14";
|
|
639
|
+
readonly valorNivel: 14;
|
|
640
|
+
};
|
|
641
|
+
readonly GRAU_EX_P_15: {
|
|
642
|
+
readonly id: 16;
|
|
643
|
+
readonly nomeVisualizacao: "Grau Ex.P. 15";
|
|
644
|
+
readonly valorNivel: 15;
|
|
645
|
+
};
|
|
646
|
+
readonly GRAU_EX_P_16: {
|
|
647
|
+
readonly id: 17;
|
|
648
|
+
readonly nomeVisualizacao: "Grau Ex.P. 16";
|
|
649
|
+
readonly valorNivel: 16;
|
|
650
|
+
};
|
|
651
|
+
readonly GRAU_EX_P_17: {
|
|
652
|
+
readonly id: 18;
|
|
653
|
+
readonly nomeVisualizacao: "Grau Ex.P. 17";
|
|
654
|
+
readonly valorNivel: 17;
|
|
655
|
+
};
|
|
656
|
+
readonly GRAU_EX_P_18: {
|
|
657
|
+
readonly id: 19;
|
|
658
|
+
readonly nomeVisualizacao: "Grau Ex.P. 18";
|
|
659
|
+
readonly valorNivel: 18;
|
|
660
|
+
};
|
|
661
|
+
readonly GRAU_EX_P_19: {
|
|
662
|
+
readonly id: 20;
|
|
663
|
+
readonly nomeVisualizacao: "Grau Ex.P. 19";
|
|
664
|
+
readonly valorNivel: 19;
|
|
665
|
+
};
|
|
666
|
+
readonly GRAU_EX_P_2: {
|
|
667
|
+
readonly id: 3;
|
|
668
|
+
readonly nomeVisualizacao: "Grau Ex.P. 2";
|
|
669
|
+
readonly valorNivel: 2;
|
|
670
|
+
};
|
|
671
|
+
readonly GRAU_EX_P_20: {
|
|
672
|
+
readonly id: 21;
|
|
673
|
+
readonly nomeVisualizacao: "Grau Ex.P. 20";
|
|
674
|
+
readonly valorNivel: 20;
|
|
675
|
+
};
|
|
676
|
+
readonly GRAU_EX_P_3: {
|
|
677
|
+
readonly id: 4;
|
|
678
|
+
readonly nomeVisualizacao: "Grau Ex.P. 3";
|
|
679
|
+
readonly valorNivel: 3;
|
|
680
|
+
};
|
|
681
|
+
readonly GRAU_EX_P_4: {
|
|
682
|
+
readonly id: 5;
|
|
683
|
+
readonly nomeVisualizacao: "Grau Ex.P. 4";
|
|
684
|
+
readonly valorNivel: 4;
|
|
685
|
+
};
|
|
686
|
+
readonly GRAU_EX_P_5: {
|
|
687
|
+
readonly id: 6;
|
|
688
|
+
readonly nomeVisualizacao: "Grau Ex.P. 5";
|
|
689
|
+
readonly valorNivel: 5;
|
|
690
|
+
};
|
|
691
|
+
readonly GRAU_EX_P_6: {
|
|
692
|
+
readonly id: 7;
|
|
693
|
+
readonly nomeVisualizacao: "Grau Ex.P. 6";
|
|
694
|
+
readonly valorNivel: 6;
|
|
695
|
+
};
|
|
696
|
+
readonly GRAU_EX_P_7: {
|
|
697
|
+
readonly id: 8;
|
|
698
|
+
readonly nomeVisualizacao: "Grau Ex.P. 7";
|
|
699
|
+
readonly valorNivel: 7;
|
|
700
|
+
};
|
|
701
|
+
readonly GRAU_EX_P_8: {
|
|
702
|
+
readonly id: 9;
|
|
703
|
+
readonly nomeVisualizacao: "Grau Ex.P. 8";
|
|
704
|
+
readonly valorNivel: 8;
|
|
705
|
+
};
|
|
706
|
+
readonly GRAU_EX_P_9: {
|
|
707
|
+
readonly id: 10;
|
|
708
|
+
readonly nomeVisualizacao: "Grau Ex.P. 9";
|
|
709
|
+
readonly valorNivel: 9;
|
|
710
|
+
};
|
|
711
|
+
};
|
|
712
|
+
type NiveisDef = (typeof NIVEIS)[keyof typeof NIVEIS];
|
|
713
|
+
type NiveisKey = keyof typeof NIVEIS;
|
|
601
714
|
declare const PASSES: {
|
|
602
715
|
readonly PASSE_DE_FUNDADOR: {
|
|
603
716
|
readonly ativo: true;
|
|
@@ -1025,4 +1138,4 @@ declare const TIPOS_SER: {
|
|
|
1025
1138
|
};
|
|
1026
1139
|
type TipoSerDef = (typeof TIPOS_SER)[keyof typeof TIPOS_SER];
|
|
1027
1140
|
type TipoSerKey = keyof typeof TIPOS_SER;
|
|
1028
|
-
export { ARQUIVOS_INTERNOS, ATRIBUTOS, ArquivoInternoDef, ArquivoInternoKey, AtributosDef, AtributosKey, CAPACIDADES, CLASSES, CapacidadeDef, CapacidadeKey, ClassesDef, ClassesKey, ESTATISTICAS_DANIFICAVEIS, ESTILOS_SESSAO_MESTRADA, EstatisticasDanificaveisDef, EstatisticasDanificaveisKey, EstilosSessaoMestradaDef, EstilosSessaoMestradaKey, PASSES, PATENTES_PERICIAS, PERICIAS, PERMISSOES_ESTADOS, PRODUTOS, PasseDef, PasseKey, PatentesPericiasDef, PatentesPericiasKey, PericiasDef, PericiasKey, PermissaoEstadoDef, PermissaoEstadoKey, ProdutoDef, ProdutoKey, TIPOS_ARQUIVO, TIPOS_GANHO_NIVEL, TIPOS_PERSONAGEM, TIPOS_SER, TipoArquivoDef, TipoArquivoKey, TipoPersonagemDef, TipoPersonagemKey, TipoSerDef, TipoSerKey, TiposGanhoNivelDef, TiposGanhoNivelKey };
|
|
1141
|
+
export { ARQUIVOS_INTERNOS, ATRIBUTOS, ArquivoInternoDef, ArquivoInternoKey, AtributosDef, AtributosKey, CAPACIDADES, CLASSES, CapacidadeDef, CapacidadeKey, ClassesDef, ClassesKey, ESTATISTICAS_DANIFICAVEIS, ESTILOS_SESSAO_MESTRADA, EstatisticasDanificaveisDef, EstatisticasDanificaveisKey, EstilosSessaoMestradaDef, EstilosSessaoMestradaKey, NIVEIS, NiveisDef, NiveisKey, PASSES, PATENTES_PERICIAS, PERICIAS, PERMISSOES_ESTADOS, PRODUTOS, PasseDef, PasseKey, PatentesPericiasDef, PatentesPericiasKey, PericiasDef, PericiasKey, PermissaoEstadoDef, PermissaoEstadoKey, ProdutoDef, ProdutoKey, TIPOS_ARQUIVO, TIPOS_GANHO_NIVEL, TIPOS_PERSONAGEM, TIPOS_SER, TipoArquivoDef, TipoArquivoKey, TipoPersonagemDef, TipoPersonagemKey, TipoSerDef, TipoSerKey, TiposGanhoNivelDef, TiposGanhoNivelKey };
|
package/dist/dominio/index.js
CHANGED
|
@@ -119,6 +119,7 @@ const CAPACIDADES = {
|
|
|
119
119
|
ARTISTA__CRIACAO__RESPONSABILIDADES__AVATARES: { id: 41, nome: 'ARTISTA.CRIACAO.RESPONSABILIDADES.AVATARES' },
|
|
120
120
|
ARTISTA__CRIACAO__RESPONSABILIDADES__EMBLEMAS: { id: 42, nome: 'ARTISTA.CRIACAO.RESPONSABILIDADES.EMBLEMAS' },
|
|
121
121
|
ARTISTA__CRIACAO__UPLOAD_IMAGEM: { id: 6, nome: 'ARTISTA.CRIACAO.UPLOAD_IMAGEM' },
|
|
122
|
+
COLABORADOR__PAINEL_DO_MEDO: { id: 55, nome: 'COLABORADOR.PAINEL_DO_MEDO' },
|
|
122
123
|
DESENVOLVEDOR: { id: 36, nome: 'DESENVOLVEDOR' },
|
|
123
124
|
GAME_DESIGNER__CRIACAO__CAPACIDADES_INATAS: { id: 52, nome: 'GAME_DESIGNER.CRIACAO.CAPACIDADES_INATAS' },
|
|
124
125
|
GAME_DESIGNER__CRIACAO__HABILIDADES_ESPECIAIS: { id: 51, nome: 'GAME_DESIGNER.CRIACAO.HABILIDADES_ESPECIAIS' },
|
|
@@ -169,6 +170,32 @@ const ESTILOS_SESSAO_MESTRADA = {
|
|
|
169
170
|
/* eslint-disable */
|
|
170
171
|
// Arquivo gerado automaticamente. Não edite manualmente.
|
|
171
172
|
// Para atualizar: npm run codegen:contratos
|
|
173
|
+
const NIVEIS = {
|
|
174
|
+
GRAU_EX_P_0: { id: 1, nomeVisualizacao: 'Grau Ex.P. 0', valorNivel: 0 },
|
|
175
|
+
GRAU_EX_P_1: { id: 2, nomeVisualizacao: 'Grau Ex.P. 1', valorNivel: 1 },
|
|
176
|
+
GRAU_EX_P_10: { id: 11, nomeVisualizacao: 'Grau Ex.P. 10', valorNivel: 10 },
|
|
177
|
+
GRAU_EX_P_11: { id: 12, nomeVisualizacao: 'Grau Ex.P. 11', valorNivel: 11 },
|
|
178
|
+
GRAU_EX_P_12: { id: 13, nomeVisualizacao: 'Grau Ex.P. 12', valorNivel: 12 },
|
|
179
|
+
GRAU_EX_P_13: { id: 14, nomeVisualizacao: 'Grau Ex.P. 13', valorNivel: 13 },
|
|
180
|
+
GRAU_EX_P_14: { id: 15, nomeVisualizacao: 'Grau Ex.P. 14', valorNivel: 14 },
|
|
181
|
+
GRAU_EX_P_15: { id: 16, nomeVisualizacao: 'Grau Ex.P. 15', valorNivel: 15 },
|
|
182
|
+
GRAU_EX_P_16: { id: 17, nomeVisualizacao: 'Grau Ex.P. 16', valorNivel: 16 },
|
|
183
|
+
GRAU_EX_P_17: { id: 18, nomeVisualizacao: 'Grau Ex.P. 17', valorNivel: 17 },
|
|
184
|
+
GRAU_EX_P_18: { id: 19, nomeVisualizacao: 'Grau Ex.P. 18', valorNivel: 18 },
|
|
185
|
+
GRAU_EX_P_19: { id: 20, nomeVisualizacao: 'Grau Ex.P. 19', valorNivel: 19 },
|
|
186
|
+
GRAU_EX_P_2: { id: 3, nomeVisualizacao: 'Grau Ex.P. 2', valorNivel: 2 },
|
|
187
|
+
GRAU_EX_P_20: { id: 21, nomeVisualizacao: 'Grau Ex.P. 20', valorNivel: 20 },
|
|
188
|
+
GRAU_EX_P_3: { id: 4, nomeVisualizacao: 'Grau Ex.P. 3', valorNivel: 3 },
|
|
189
|
+
GRAU_EX_P_4: { id: 5, nomeVisualizacao: 'Grau Ex.P. 4', valorNivel: 4 },
|
|
190
|
+
GRAU_EX_P_5: { id: 6, nomeVisualizacao: 'Grau Ex.P. 5', valorNivel: 5 },
|
|
191
|
+
GRAU_EX_P_6: { id: 7, nomeVisualizacao: 'Grau Ex.P. 6', valorNivel: 6 },
|
|
192
|
+
GRAU_EX_P_7: { id: 8, nomeVisualizacao: 'Grau Ex.P. 7', valorNivel: 7 },
|
|
193
|
+
GRAU_EX_P_8: { id: 9, nomeVisualizacao: 'Grau Ex.P. 8', valorNivel: 8 },
|
|
194
|
+
GRAU_EX_P_9: { id: 10, nomeVisualizacao: 'Grau Ex.P. 9', valorNivel: 9 },
|
|
195
|
+
};
|
|
196
|
+
/* eslint-disable */
|
|
197
|
+
// Arquivo gerado automaticamente. Não edite manualmente.
|
|
198
|
+
// Para atualizar: npm run codegen:contratos
|
|
172
199
|
const PASSES = {
|
|
173
200
|
PASSE_DE_FUNDADOR: { ativo: true, codigo_interno: 'PASSE_DE_FUNDADOR', descricao: 'Passe de Apoio durante desenvolvimento inicial', id: 1, nome: 'Passe de Fundador' },
|
|
174
201
|
};
|
|
@@ -270,4 +297,4 @@ const TIPOS_SER = {
|
|
|
270
297
|
SER_GENERICO: { id: 2, nome: 'Ser Genérico' },
|
|
271
298
|
SER_UNICO: { id: 1, nome: 'Ser Único' },
|
|
272
299
|
};
|
|
273
|
-
export { ARQUIVOS_INTERNOS, ATRIBUTOS, CAPACIDADES, CLASSES, ESTATISTICAS_DANIFICAVEIS, ESTILOS_SESSAO_MESTRADA, PASSES, PATENTES_PERICIAS, PERICIAS, PERMISSOES_ESTADOS, PRODUTOS, TIPOS_ARQUIVO, TIPOS_GANHO_NIVEL, TIPOS_PERSONAGEM, TIPOS_SER };
|
|
300
|
+
export { ARQUIVOS_INTERNOS, ATRIBUTOS, CAPACIDADES, CLASSES, ESTATISTICAS_DANIFICAVEIS, ESTILOS_SESSAO_MESTRADA, NIVEIS, PASSES, PATENTES_PERICIAS, PERICIAS, PERMISSOES_ESTADOS, PRODUTOS, TIPOS_ARQUIVO, TIPOS_GANHO_NIVEL, TIPOS_PERSONAGEM, TIPOS_SER };
|