types-nora-api 0.0.488 → 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.
Files changed (44) hide show
  1. package/dist/api/graphql/leituras/ArquivoTipadoMusica/index.d.ts +16 -4
  2. package/dist/api/graphql/leituras/ArquivoTipadoMusica/index.js +19 -4
  3. package/dist/api/graphql/leituras/CoeficienteGanhoEstatisticaClasse/index.d.ts +48 -0
  4. package/dist/api/graphql/leituras/CoeficienteGanhoEstatisticaClasse/index.js +66 -0
  5. package/dist/api/graphql/leituras/DimensaoClima/index.d.ts +2 -1
  6. package/dist/api/graphql/leituras/DimensaoClima/index.js +2 -1
  7. package/dist/api/graphql/leituras/FonteMusica/index.d.ts +3 -2
  8. package/dist/api/graphql/leituras/FonteMusica/index.js +8 -3
  9. package/dist/api/graphql/leituras/Menu/index.d.ts +47 -0
  10. package/dist/api/graphql/leituras/Menu/index.js +67 -0
  11. package/dist/api/graphql/leituras/MusicaConfigurada/index.d.ts +3 -2
  12. package/dist/api/graphql/leituras/MusicaConfigurada/index.js +8 -3
  13. package/dist/api/graphql/leituras/PaginaNavegacao/index.d.ts +48 -0
  14. package/dist/api/graphql/leituras/PaginaNavegacao/index.js +70 -0
  15. package/dist/api/graphql/leituras/Partida/index.d.ts +128 -0
  16. package/dist/api/graphql/leituras/Partida/index.js +154 -0
  17. package/dist/api/graphql/leituras/SerDetalhe/index.d.ts +11 -2
  18. package/dist/api/graphql/leituras/SerDetalhe/index.js +17 -2
  19. package/dist/api/graphql/leituras/index.d.ts +16 -20
  20. package/dist/api/graphql/leituras/index.js +16 -20
  21. package/dist/api/rest/index.d.ts +171 -76
  22. package/dist/api/rest/index.js +264 -80
  23. package/dist/dominio/index.d.ts +110 -1
  24. package/dist/dominio/index.js +27 -1
  25. package/dist/dtos/index.d.ts +561 -135
  26. package/dist/dtos/index.js +96 -1
  27. package/dist/menus/index.d.ts +2 -171
  28. package/dist/menus/index.js +1 -348
  29. package/dist/paginas/index.d.ts +64 -76
  30. package/dist/paginas/index.js +67 -106
  31. package/dist/shared/index.d.ts +85 -1
  32. package/dist/ws/index.d.ts +61 -14
  33. package/dist/ws/index.js +9 -1
  34. package/package.json +1 -1
  35. package/dist/api/graphql/leituras/CatalogoMissao/index.d.ts +0 -42
  36. package/dist/api/graphql/leituras/CatalogoMissao/index.js +0 -60
  37. package/dist/api/graphql/leituras/CatalogoMissaoExibicao/index.d.ts +0 -45
  38. package/dist/api/graphql/leituras/CatalogoMissaoExibicao/index.js +0 -65
  39. package/dist/api/graphql/leituras/Missao/index.d.ts +0 -37
  40. package/dist/api/graphql/leituras/Missao/index.js +0 -51
  41. package/dist/api/graphql/leituras/MissaoDetalhe/index.d.ts +0 -44
  42. package/dist/api/graphql/leituras/MissaoDetalhe/index.js +0 -62
  43. package/dist/api/graphql/leituras/MissaoExibicao/index.d.ts +0 -48
  44. package/dist/api/graphql/leituras/MissaoExibicao/index.js +0 -70
@@ -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,168 +184,286 @@ var EventosApiRest;
123
184
  endpoint: '/seres_jogaveis_fichas/criar',
124
185
  }),
125
186
  };
126
- const MissoesJogaveisGet = {
187
+ const DesafiosGet = {
127
188
  estrutura: createApiRestGet({
128
189
  transporte: ApiTransporte.REST,
129
190
  tipoRequisicao: ApiTipoRequisicao.GET,
130
191
  metodoHttp: ApiMetodoHttp.GET,
131
- nome: 'estruturaMissoesJogaveis',
132
- endpoint: '/missoes-jogaveis/estrutura',
192
+ nome: 'estruturaDesafios',
193
+ endpoint: '/desafios/estrutura',
133
194
  montaQueryString: () => '',
134
195
  }),
135
196
  };
136
- const MissoesConfiguracoesRuntimeGet = {
137
- obter: createApiRestGet({
197
+ const DesafiosAtivosGet = {
198
+ painel: createApiRestGet({
138
199
  transporte: ApiTransporte.REST,
139
200
  tipoRequisicao: ApiTipoRequisicao.GET,
140
201
  metodoHttp: ApiMetodoHttp.GET,
141
- nome: 'obterMissaoConfiguracaoRuntime',
142
- endpoint: '/missoes-configuracoes-runtime/obter',
143
- montaQueryString: parametros => `idMissao=${encodeURIComponent(String(parametros.idMissao))}`,
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)}`,
144
213
  }),
145
214
  };
146
- const CatalogosMissaoPost = {
147
- criar: createApiRestPost({
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({
148
310
  transporte: ApiTransporte.REST,
149
311
  tipoRequisicao: ApiTipoRequisicao.POST,
150
312
  metodoHttp: ApiMetodoHttp.POST,
151
- nome: 'criarCatalogoMissao',
152
- endpoint: '/catalogos-missao/criar',
313
+ nome: 'salvarDesafio',
314
+ endpoint: '/desafios/salvar-desafio',
153
315
  }),
154
- editar: createApiRestPost({
316
+ alternarDesafio: createApiRestPost({
155
317
  transporte: ApiTransporte.REST,
156
318
  tipoRequisicao: ApiTipoRequisicao.POST,
157
319
  metodoHttp: ApiMetodoHttp.POST,
158
- nome: 'editarCatalogoMissao',
159
- endpoint: '/catalogos-missao/editar',
320
+ nome: 'alternarDesafio',
321
+ endpoint: '/desafios/alternar-desafio',
160
322
  }),
161
- remover: createApiRestPost({
323
+ reordenarDesafios: createApiRestPost({
162
324
  transporte: ApiTransporte.REST,
163
325
  tipoRequisicao: ApiTipoRequisicao.POST,
164
326
  metodoHttp: ApiMetodoHttp.POST,
165
- nome: 'removerCatalogoMissao',
166
- endpoint: '/catalogos-missao/remover',
327
+ nome: 'reordenarDesafios',
328
+ endpoint: '/desafios/reordenar-desafios',
167
329
  }),
168
330
  };
169
- const CatalogosMissaoExibicaoPost = {
170
- salvar: createApiRestPost({
331
+ const DesafiosAtivosPost = {
332
+ garantir: createApiRestPost({
171
333
  transporte: ApiTransporte.REST,
172
334
  tipoRequisicao: ApiTipoRequisicao.POST,
173
335
  metodoHttp: ApiMetodoHttp.POST,
174
- nome: 'salvarCatalogoMissaoExibicao',
175
- endpoint: '/catalogos-missao-exibicao/salvar',
336
+ nome: 'garantirDesafioAtivo',
337
+ endpoint: '/desafios-ativos/garantir',
176
338
  }),
177
339
  };
178
- const MissoesPost = {
179
- criar: createApiRestPost({
340
+ const DesafiosParticipacaoPost = {
341
+ salvarPolitica: createApiRestPost({
180
342
  transporte: ApiTransporte.REST,
181
343
  tipoRequisicao: ApiTipoRequisicao.POST,
182
344
  metodoHttp: ApiMetodoHttp.POST,
183
- nome: 'criarMissao',
184
- endpoint: '/missoes/criar',
345
+ nome: 'salvarPoliticaParticipacao',
346
+ endpoint: '/desafios-participacao/salvar-politica',
185
347
  }),
186
- remover: createApiRestPost({
348
+ registrarTentativa: createApiRestPost({
187
349
  transporte: ApiTransporte.REST,
188
350
  tipoRequisicao: ApiTipoRequisicao.POST,
189
351
  metodoHttp: ApiMetodoHttp.POST,
190
- nome: 'removerMissao',
191
- endpoint: '/missoes/remover',
352
+ nome: 'registrarTentativaParticipacao',
353
+ endpoint: '/desafios-participacao/registrar-tentativa',
192
354
  }),
193
355
  };
194
- const MissoesDetalhesPost = {
195
- salvar: createApiRestPost({
356
+ const DesafiosLeaderboardPost = {
357
+ salvarMetrica: createApiRestPost({
196
358
  transporte: ApiTransporte.REST,
197
359
  tipoRequisicao: ApiTipoRequisicao.POST,
198
360
  metodoHttp: ApiMetodoHttp.POST,
199
- nome: 'salvarMissaoDetalhe',
200
- endpoint: '/missoes-detalhes/salvar',
361
+ nome: 'salvarMetricaLeaderboard',
362
+ endpoint: '/desafios-leaderboard/salvar-metrica',
201
363
  }),
202
- };
203
- const MissoesExibicaoPost = {
204
- salvar: createApiRestPost({
364
+ registrarResultado: createApiRestPost({
205
365
  transporte: ApiTransporte.REST,
206
366
  tipoRequisicao: ApiTipoRequisicao.POST,
207
367
  metodoHttp: ApiMetodoHttp.POST,
208
- nome: 'salvarMissaoExibicao',
209
- endpoint: '/missoes-exibicao/salvar',
368
+ nome: 'registrarResultadoDesafio',
369
+ endpoint: '/desafios-leaderboard/registrar-resultado',
210
370
  }),
211
371
  };
212
- const MissoesJogaveisPost = {
372
+ const PartidasPost = {
213
373
  criarCatalogo: createApiRestPost({
214
374
  transporte: ApiTransporte.REST,
215
375
  tipoRequisicao: ApiTipoRequisicao.POST,
216
376
  metodoHttp: ApiMetodoHttp.POST,
217
- nome: 'criarCatalogoMissaoJogavel',
218
- endpoint: '/missoes-jogaveis/criar-catalogo',
377
+ nome: 'criarCatalogoPartida',
378
+ endpoint: '/partidas/criar-catalogo',
219
379
  }),
220
380
  salvarCatalogo: createApiRestPost({
221
381
  transporte: ApiTransporte.REST,
222
382
  tipoRequisicao: ApiTipoRequisicao.POST,
223
383
  metodoHttp: ApiMetodoHttp.POST,
224
- nome: 'salvarCatalogoMissaoJogavel',
225
- endpoint: '/missoes-jogaveis/salvar-catalogo',
384
+ nome: 'salvarCatalogoPartida',
385
+ endpoint: '/partidas/salvar-catalogo',
226
386
  }),
227
- alternarCatalogo: createApiRestPost({
387
+ deletarCatalogo: createApiRestPost({
228
388
  transporte: ApiTransporte.REST,
229
389
  tipoRequisicao: ApiTipoRequisicao.POST,
230
390
  metodoHttp: ApiMetodoHttp.POST,
231
- nome: 'alternarCatalogoMissaoJogavel',
232
- endpoint: '/missoes-jogaveis/alternar-catalogo',
391
+ nome: 'deletarCatalogoPartida',
392
+ endpoint: '/partidas/deletar-catalogo',
233
393
  }),
234
- reordenarCatalogos: createApiRestPost({
394
+ criarPartida: createApiRestPost({
235
395
  transporte: ApiTransporte.REST,
236
396
  tipoRequisicao: ApiTipoRequisicao.POST,
237
397
  metodoHttp: ApiMetodoHttp.POST,
238
- nome: 'reordenarCatalogosMissaoJogavel',
239
- endpoint: '/missoes-jogaveis/reordenar-catalogos',
398
+ nome: 'criarPartida',
399
+ endpoint: '/partidas/criar-partida',
240
400
  }),
241
- criarMissao: createApiRestPost({
401
+ salvarPartida: createApiRestPost({
242
402
  transporte: ApiTransporte.REST,
243
403
  tipoRequisicao: ApiTipoRequisicao.POST,
244
404
  metodoHttp: ApiMetodoHttp.POST,
245
- nome: 'criarMissaoJogavel',
246
- endpoint: '/missoes-jogaveis/criar-missao',
405
+ nome: 'salvarPartida',
406
+ endpoint: '/partidas/salvar-partida',
247
407
  }),
248
- salvarMissao: createApiRestPost({
408
+ adicionarPartidaCatalogo: createApiRestPost({
249
409
  transporte: ApiTransporte.REST,
250
410
  tipoRequisicao: ApiTipoRequisicao.POST,
251
411
  metodoHttp: ApiMetodoHttp.POST,
252
- nome: 'salvarMissaoJogavel',
253
- endpoint: '/missoes-jogaveis/salvar-missao',
412
+ nome: 'adicionarPartidaCatalogo',
413
+ endpoint: '/partidas/adicionar-partida-catalogo',
254
414
  }),
255
- alternarMissao: createApiRestPost({
415
+ removerPartidaCatalogo: createApiRestPost({
256
416
  transporte: ApiTransporte.REST,
257
417
  tipoRequisicao: ApiTipoRequisicao.POST,
258
418
  metodoHttp: ApiMetodoHttp.POST,
259
- nome: 'alternarMissaoJogavel',
260
- endpoint: '/missoes-jogaveis/alternar-missao',
419
+ nome: 'removerPartidaCatalogo',
420
+ endpoint: '/partidas/remover-partida-catalogo',
261
421
  }),
262
- reordenarMissoesCatalogo: createApiRestPost({
422
+ alternarExibicaoPartida: createApiRestPost({
263
423
  transporte: ApiTransporte.REST,
264
424
  tipoRequisicao: ApiTipoRequisicao.POST,
265
425
  metodoHttp: ApiMetodoHttp.POST,
266
- nome: 'reordenarMissoesCatalogoJogavel',
267
- endpoint: '/missoes-jogaveis/reordenar-missoes-catalogo',
426
+ nome: 'alternarExibicaoPartida',
427
+ endpoint: '/partidas/alternar-exibicao-partida',
268
428
  }),
269
- };
270
- const MissoesConfiguracoesRuntimePost = {
271
- salvar: createApiRestPost({
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({
272
451
  transporte: ApiTransporte.REST,
273
452
  tipoRequisicao: ApiTipoRequisicao.POST,
274
453
  metodoHttp: ApiMetodoHttp.POST,
275
- nome: 'salvarMissaoConfiguracaoRuntime',
276
- endpoint: '/missoes-configuracoes-runtime/salvar',
454
+ nome: 'salvarArteCapaPartida',
455
+ endpoint: '/partidas/salvar-arte-capa',
277
456
  }),
278
- sincronizarMissoesFuncionaisIniciais: createApiRestPost({
457
+ salvarMusicaFundo: createApiRestPost({
279
458
  transporte: ApiTransporte.REST,
280
459
  tipoRequisicao: ApiTipoRequisicao.POST,
281
460
  metodoHttp: ApiMetodoHttp.POST,
282
- nome: 'sincronizarMissoesFuncionaisIniciais',
283
- endpoint: '/missoes-configuracoes-runtime/sincronizar-missoes-funcionais-iniciais',
461
+ nome: 'salvarMusicaFundoPartida',
462
+ endpoint: '/partidas/salvar-musica-fundo',
284
463
  }),
285
464
  };
286
- EventosApiRest.GET = { Rest, Projeto3D, Projeto3DTecnico, SeresJogaveisMembros: SeresJogaveisMembrosGet, MissoesJogaveis: MissoesJogaveisGet, MissoesConfiguracoesRuntime: MissoesConfiguracoesRuntimeGet };
287
- EventosApiRest.POST = { Projeto3D: Projeto3DPost, TestePericia: TestePericiaPost, SerRegistro: SerRegistroPost, SeresJogaveisMembros: SeresJogaveisMembrosPost, SeresJogaveisFichas: SeresJogaveisFichasPost, CatalogosMissao: CatalogosMissaoPost, CatalogosMissaoExibicao: CatalogosMissaoExibicaoPost, Missoes: MissoesPost, MissoesDetalhes: MissoesDetalhesPost, MissoesExibicao: MissoesExibicaoPost, MissoesJogaveis: MissoesJogaveisPost, MissoesConfiguracoesRuntime: MissoesConfiguracoesRuntimePost };
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 };
288
467
  })(EventosApiRest || (EventosApiRest = {}));
289
468
  var EventosApi;
290
469
  (function (EventosApi) {
@@ -292,23 +471,28 @@ var EventosApi;
292
471
  Rest: EventosApiRest.GET.Rest,
293
472
  Projeto3D: EventosApiRest.GET.Projeto3D,
294
473
  Projeto3DTecnico: EventosApiRest.GET.Projeto3DTecnico,
474
+ AssinaturaArtista: EventosApiRest.GET.AssinaturaArtista,
295
475
  SeresJogaveisMembros: EventosApiRest.GET.SeresJogaveisMembros,
296
- MissoesJogaveis: EventosApiRest.GET.MissoesJogaveis,
297
- MissoesConfiguracoesRuntime: EventosApiRest.GET.MissoesConfiguracoesRuntime,
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,
298
482
  };
299
483
  EventosApi.POST = {
300
484
  Projeto3D: EventosApiRest.POST.Projeto3D,
485
+ AssinaturaArtista: EventosApiRest.POST.AssinaturaArtista,
301
486
  TestePericia: EventosApiRest.POST.TestePericia,
302
487
  SerRegistro: EventosApiRest.POST.SerRegistro,
303
488
  SeresJogaveisMembros: EventosApiRest.POST.SeresJogaveisMembros,
304
489
  SeresJogaveisFichas: EventosApiRest.POST.SeresJogaveisFichas,
305
- CatalogosMissao: EventosApiRest.POST.CatalogosMissao,
306
- CatalogosMissaoExibicao: EventosApiRest.POST.CatalogosMissaoExibicao,
307
- Missoes: EventosApiRest.POST.Missoes,
308
- MissoesDetalhes: EventosApiRest.POST.MissoesDetalhes,
309
- MissoesExibicao: EventosApiRest.POST.MissoesExibicao,
310
- MissoesJogaveis: EventosApiRest.POST.MissoesJogaveis,
311
- MissoesConfiguracoesRuntime: EventosApiRest.POST.MissoesConfiguracoesRuntime,
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,
312
496
  };
313
497
  })(EventosApi || (EventosApi = {}));
314
498
  export { ApiMetodoHttp, ApiTipoRequisicao, ApiTransporte, EventosApi, EventosApiRest, createApiRestGet, createApiRestPost };
@@ -602,6 +602,115 @@ declare const ESTILOS_SESSAO_MESTRADA: {
602
602
  };
603
603
  type EstilosSessaoMestradaDef = (typeof ESTILOS_SESSAO_MESTRADA)[keyof typeof ESTILOS_SESSAO_MESTRADA];
604
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;
605
714
  declare const PASSES: {
606
715
  readonly PASSE_DE_FUNDADOR: {
607
716
  readonly ativo: true;
@@ -1029,4 +1138,4 @@ declare const TIPOS_SER: {
1029
1138
  };
1030
1139
  type TipoSerDef = (typeof TIPOS_SER)[keyof typeof TIPOS_SER];
1031
1140
  type TipoSerKey = keyof typeof TIPOS_SER;
1032
- 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 };
@@ -170,6 +170,32 @@ const ESTILOS_SESSAO_MESTRADA = {
170
170
  /* eslint-disable */
171
171
  // Arquivo gerado automaticamente. Não edite manualmente.
172
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
173
199
  const PASSES = {
174
200
  PASSE_DE_FUNDADOR: { ativo: true, codigo_interno: 'PASSE_DE_FUNDADOR', descricao: 'Passe de Apoio durante desenvolvimento inicial', id: 1, nome: 'Passe de Fundador' },
175
201
  };
@@ -271,4 +297,4 @@ const TIPOS_SER = {
271
297
  SER_GENERICO: { id: 2, nome: 'Ser Genérico' },
272
298
  SER_UNICO: { id: 1, nome: 'Ser Único' },
273
299
  };
274
- 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 };