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.
Files changed (52) hide show
  1. package/dist/api/graphql/leituras/ArquivoTipadoMusica/index.d.ts +24 -2
  2. package/dist/api/graphql/leituras/ArquivoTipadoMusica/index.js +33 -2
  3. package/dist/api/graphql/leituras/Card/index.d.ts +58 -0
  4. package/dist/api/graphql/leituras/Card/index.js +88 -0
  5. package/dist/api/graphql/leituras/CoeficienteGanhoEstatisticaClasse/index.d.ts +48 -0
  6. package/dist/api/graphql/leituras/CoeficienteGanhoEstatisticaClasse/index.js +66 -0
  7. package/dist/api/graphql/leituras/Coluna/index.d.ts +46 -0
  8. package/dist/api/graphql/leituras/Coluna/index.js +68 -0
  9. package/dist/api/graphql/leituras/Comentario/index.d.ts +57 -0
  10. package/dist/api/graphql/leituras/Comentario/index.js +87 -0
  11. package/dist/api/graphql/leituras/DependenciaCard/index.d.ts +51 -0
  12. package/dist/api/graphql/leituras/DependenciaCard/index.js +75 -0
  13. package/dist/api/graphql/leituras/DesenhoFluxograma/index.d.ts +43 -0
  14. package/dist/api/graphql/leituras/DesenhoFluxograma/index.js +63 -0
  15. package/dist/api/graphql/leituras/DimensaoClima/index.d.ts +38 -0
  16. package/dist/api/graphql/leituras/DimensaoClima/index.js +52 -0
  17. package/dist/api/graphql/leituras/FonteMusica/index.d.ts +38 -0
  18. package/dist/api/graphql/leituras/FonteMusica/index.js +56 -0
  19. package/dist/api/graphql/leituras/ItemChecklist/index.d.ts +50 -0
  20. package/dist/api/graphql/leituras/ItemChecklist/index.js +72 -0
  21. package/dist/api/graphql/leituras/Menu/index.d.ts +47 -0
  22. package/dist/api/graphql/leituras/Menu/index.js +67 -0
  23. package/dist/api/graphql/leituras/MusicaConfigurada/index.d.ts +75 -0
  24. package/dist/api/graphql/leituras/MusicaConfigurada/index.js +103 -0
  25. package/dist/api/graphql/leituras/Objetivo/index.d.ts +49 -0
  26. package/dist/api/graphql/leituras/Objetivo/index.js +73 -0
  27. package/dist/api/graphql/leituras/PaginaNavegacao/index.d.ts +48 -0
  28. package/dist/api/graphql/leituras/PaginaNavegacao/index.js +70 -0
  29. package/dist/api/graphql/leituras/Partida/index.d.ts +128 -0
  30. package/dist/api/graphql/leituras/Partida/index.js +154 -0
  31. package/dist/api/graphql/leituras/PosicaoFluxogramaCard/index.d.ts +45 -0
  32. package/dist/api/graphql/leituras/PosicaoFluxogramaCard/index.js +65 -0
  33. package/dist/api/graphql/leituras/SerDetalhe/index.d.ts +11 -2
  34. package/dist/api/graphql/leituras/SerDetalhe/index.js +17 -2
  35. package/dist/api/graphql/leituras/TipoStatusCard/index.d.ts +42 -0
  36. package/dist/api/graphql/leituras/TipoStatusCard/index.js +60 -0
  37. package/dist/api/graphql/leituras/index.d.ts +64 -0
  38. package/dist/api/graphql/leituras/index.js +64 -0
  39. package/dist/api/rest/index.d.ts +178 -3
  40. package/dist/api/rest/index.js +355 -2
  41. package/dist/dominio/index.d.ts +114 -1
  42. package/dist/dominio/index.js +28 -1
  43. package/dist/dtos/index.d.ts +602 -13
  44. package/dist/dtos/index.js +100 -2
  45. package/dist/menus/index.d.ts +2 -160
  46. package/dist/menus/index.js +1 -330
  47. package/dist/paginas/index.d.ts +90 -74
  48. package/dist/paginas/index.js +76 -106
  49. package/dist/shared/index.d.ts +175 -1
  50. package/dist/ws/index.d.ts +295 -14
  51. package/dist/ws/index.js +40 -3
  52. package/package.json +1 -1
@@ -35,9 +35,31 @@ interface ObjetoCenaCanonicaEditor3D {
35
35
  readonly visivel: boolean;
36
36
  readonly malhaEditavel?: MalhaEditavelCenaCanonicaEditor3D;
37
37
  }
38
+ type TipoProjetoEditor3D = 'PADRAO' | 'CAPA_ARTE';
39
+ interface CameraCenaCanonicaEditor3D {
40
+ readonly posicao: Vetor3CenaCanonicaEditor3D;
41
+ readonly alvo: Vetor3CenaCanonicaEditor3D;
42
+ readonly fov: number;
43
+ readonly perto: number;
44
+ readonly longe: number;
45
+ }
46
+ interface TextoCapaArteCenaCanonicaEditor3D {
47
+ readonly texto: string;
48
+ readonly posicao: Vetor3CenaCanonicaEditor3D;
49
+ readonly rotacao: Vetor3CenaCanonicaEditor3D;
50
+ readonly escala: Vetor3CenaCanonicaEditor3D;
51
+ readonly cor: Vetor3CenaCanonicaEditor3D;
52
+ }
53
+ interface CapaArteCenaCanonicaEditor3D {
54
+ readonly titulo: TextoCapaArteCenaCanonicaEditor3D;
55
+ readonly assinatura: TextoCapaArteCenaCanonicaEditor3D;
56
+ }
38
57
  interface CenaCanonicaEditor3D {
39
58
  readonly versao: 1;
59
+ readonly tipoProjeto: TipoProjetoEditor3D;
40
60
  readonly objetos: readonly ObjetoCenaCanonicaEditor3D[];
61
+ readonly camera?: CameraCenaCanonicaEditor3D;
62
+ readonly capaArte?: CapaArteCenaCanonicaEditor3D;
41
63
  }
42
64
  interface Projeto3DMinimoPersistido {
43
65
  readonly id: number;
@@ -59,16 +81,168 @@ type PAYLOAD__SalvarProjeto3D = {
59
81
  readonly idProjeto?: number;
60
82
  readonly nome: string;
61
83
  readonly cenaCanonica: CenaCanonicaEditor3D;
84
+ readonly imagemCapaBase64?: string;
85
+ readonly imagemCapaTituloBase64?: string;
86
+ };
87
+ interface Projeto3DCapaArteResumoPersistido {
88
+ readonly idProjeto: number;
89
+ readonly nome: string;
90
+ readonly largura: number;
91
+ readonly altura: number;
92
+ readonly dataAtualizacao: string;
93
+ }
94
+ interface Projeto3DCapaArteImagemPersistida {
95
+ readonly idProjeto: number;
96
+ readonly nome: string;
97
+ readonly imagemBase64: string;
98
+ readonly imagemTituloBase64: string | null;
99
+ readonly largura: number;
100
+ readonly altura: number;
101
+ }
102
+ type FonteAssinaturaArtista = 'GREAT_VIBES' | 'DANCING_SCRIPT' | 'ALLURA' | 'SACRAMENTO' | 'PACIFICO';
103
+ interface AssinaturaArtistaPersistida {
104
+ readonly texto: string;
105
+ readonly fonte: FonteAssinaturaArtista;
106
+ readonly dataAtualizacao: string;
107
+ }
108
+ type PAYLOAD__SalvarAssinaturaArtista = {
109
+ readonly texto: string;
110
+ readonly fonte: FonteAssinaturaArtista;
111
+ };
112
+ type ImagemBaseArteCapaUDM = string & {
113
+ readonly __brand: 'ImagemBaseArteCapaUDM';
62
114
  };
115
+ type CamadaTituloArteCapaUDM = string & {
116
+ readonly __brand: 'CamadaTituloArteCapaUDM';
117
+ };
118
+ interface ConteudoArteCapaUDM {
119
+ readonly imagem: ImagemBaseArteCapaUDM;
120
+ readonly camadaTitulo: CamadaTituloArteCapaUDM | null;
121
+ readonly assinatura: AssinaturaArtistaPersistida | null;
122
+ }
63
123
  type PAYLOAD__CriarSerRegistroComDetalhe = {
64
124
  readonly idTipoSer: number;
65
125
  readonly nome: string;
66
126
  readonly serJogavel?: boolean;
67
127
  readonly idNivel?: number;
128
+ readonly ehSemClasse?: boolean;
68
129
  };
69
130
  type SerRegistroCriado = {
70
131
  readonly id: number;
71
132
  };
133
+ type PAYLOAD__AtualizarCoeficienteGanhoEstatistica = {
134
+ readonly idCoeficiente: number;
135
+ readonly coeficiente: number;
136
+ readonly ganhosRelativos: readonly {
137
+ readonly fkAtributosId: number;
138
+ readonly valorPorcentagem: number;
139
+ }[];
140
+ };
141
+ type CoeficienteGanhoEstatisticaAtualizado = {
142
+ readonly id: number;
143
+ };
144
+ type PAYLOAD__CriarCoeficienteGanhoEstatistica = {
145
+ readonly idClasse: number;
146
+ readonly idEstatisticaDanificavel: number;
147
+ readonly coeficiente: number;
148
+ readonly ganhosRelativos: readonly {
149
+ readonly fkAtributosId: number;
150
+ readonly valorPorcentagem: number;
151
+ }[];
152
+ };
153
+ type CoeficienteGanhoEstatisticaCriado = {
154
+ readonly id: number;
155
+ };
156
+ type PAYLOAD__CriarObjetivo = {
157
+ readonly nome: string;
158
+ };
159
+ type PAYLOAD__CriarColuna = {
160
+ readonly nome: string;
161
+ };
162
+ type PAYLOAD__CriarCard = {
163
+ readonly fkObjetivosId: number;
164
+ readonly fkColunasId: number;
165
+ readonly fkTiposStatusCardId: number;
166
+ readonly titulo: string;
167
+ };
168
+ type PAYLOAD__CriarComentario = {
169
+ readonly fkCardsId: number;
170
+ readonly texto: string;
171
+ };
172
+ type PAYLOAD__AtualizarCard = {
173
+ readonly id: number;
174
+ readonly titulo: string;
175
+ readonly fkTiposStatusCardId: number;
176
+ readonly prazo: string | null;
177
+ };
178
+ type PAYLOAD__ReordenarCards = {
179
+ readonly fkColunasId: number;
180
+ readonly idsOrdenados: number[];
181
+ };
182
+ type PAYLOAD__CriarDependenciaCard = {
183
+ readonly fkCardsDependenteId: number;
184
+ readonly fkCardsRequisitoId: number;
185
+ readonly descricao: string | null;
186
+ readonly bloqueante: boolean;
187
+ };
188
+ type PAYLOAD__AtualizarDependenciaCard = {
189
+ readonly id: number;
190
+ readonly descricao: string | null;
191
+ readonly bloqueante: boolean;
192
+ };
193
+ type PAYLOAD__DeletarDependenciaCard = {
194
+ readonly id: number;
195
+ };
196
+ type PAYLOAD__DefinirPosicaoFluxogramaCard = {
197
+ readonly fkCardsId: number;
198
+ readonly posicaoX: number;
199
+ readonly posicaoY: number;
200
+ };
201
+ type PAYLOAD__SalvarDesenhoFluxograma = {
202
+ readonly fkObjetivosId: number;
203
+ readonly conteudo: string | null;
204
+ };
205
+ type PAYLOAD__AtualizarObjetivoFicha = {
206
+ readonly id: number;
207
+ readonly descricao: string | null;
208
+ readonly fkTiposStatusCardId: number | null;
209
+ };
210
+ type PAYLOAD__CriarItemChecklist = {
211
+ readonly fkCardsId: number | null;
212
+ readonly fkObjetivosId: number | null;
213
+ readonly texto: string;
214
+ };
215
+ type PAYLOAD__MarcarItemChecklist = {
216
+ readonly id: number;
217
+ readonly concluido: boolean;
218
+ };
219
+ type PAYLOAD__AtualizarItemChecklist = {
220
+ readonly id: number;
221
+ readonly texto: string;
222
+ };
223
+ type PAYLOAD__DeletarItemChecklist = {
224
+ readonly id: number;
225
+ };
226
+ type PAYLOAD__DeletarCard = {
227
+ readonly id: number;
228
+ };
229
+ type PAYLOAD__AtualizarColuna = {
230
+ readonly id: number;
231
+ readonly nome: string;
232
+ };
233
+ type PAYLOAD__DeletarColuna = {
234
+ readonly id: number;
235
+ };
236
+ type PAYLOAD__ReordenarColunas = {
237
+ readonly idsOrdenados: number[];
238
+ };
239
+ type PAYLOAD__AtualizarObjetivo = {
240
+ readonly id: number;
241
+ readonly nome: string;
242
+ };
243
+ type PAYLOAD__DeletarObjetivo = {
244
+ readonly id: number;
245
+ };
72
246
  type ParametrosAcaoMembroSerJogavel = {
73
247
  readonly dano?: number;
74
248
  };
@@ -334,4 +508,4 @@ declare function concatenarDataEHoraEmNovaData(data: Date | string, hora: string
334
508
  declare const pluralize: (count: number, singular: string, plural?: string) => string;
335
509
  declare function minutosParaMs(minutos: number): number;
336
510
  declare function formataDataCompacta(data?: Date): string;
337
- export { AcaoMembroSerJogavel, AcaoMembroSerJogavelInput, AcessoPagina, AventuraEstado, CONFIGURACAO_DEFAULT_PATENTES_TESTE_PERICIA, CONFIGURACAO_DEFAULT_TESTE_PERICIA, CargoExibicaoUsuario, CargosUsuario, CenaCanonicaEditor3D, ConfiguracaoIntervaloTestePericia, ConfiguracaoPatenteTestePericia, ConfiguracaoPatentesTestePericia, ConfiguracaoPatentesTestePericiaProjetada, ConfiguracaoTestePericia, ConfiguracaoTestePericiaProjetada, ConteudoItem, DefinicaoElemento, DetalheUtilizacaoRascunho, DiaDaSemana, EstadoOcupacaoPersonagem, EstadoPendenciaAdministrativaPersonagem, EstadoPendenciaPersonagem, EstadoSessao, EstruturaPaginaDefinicao, FaceMalhaEditavelCenaCanonicaEditor3D, FichaDoSerCriada, FormatoMomento, GanhoEstatistica, LinhaPreviewConfiguracaoPatenteTestePericia, LinhaPreviewConfiguracaoTestePericia, ListaCapacidadesNecessarias, ListaItem, MalhaEditavelCenaCanonicaEditor3D, MaterialVisualCenaCanonicaEditor3D, MembroSerJogavel, MembroSerJogavelInput, MomentoFormatado, MomentoFormatado24, NumeroHora24, NumeroMomento, ObjetoAutenticacao, ObjetoCache, ObjetoCenaCanonicaEditor3D, ObjetoEvolucao, ObjetoEvolucaoCompleto, ObjetoGanhosEvolucao, ObjetoPendeciaPersonagem, PAYLOAD__CriarFichaDoSer, PAYLOAD__CriarSerRegistroComDetalhe, PAYLOAD__SalvarCasoSimplesProjeto3D, PAYLOAD__SalvarConfiguracaoPatentesTestePericia, PAYLOAD__SalvarConfiguracaoTestePericia, PAYLOAD__SalvarMembrosSerJogavel, PAYLOAD__SalvarProjeto3D, PaletaCores, ParametrosAcaoMembroSerJogavel, PathArteCapaPadrao, PathAvatarPadrao, PermissaoItemMinimo, Projeto3DMinimoPersistido, Projeto3DResumoPersistido, SerJogavelMembrosPersistido, SerRegistroCriado, ShaderCenaCanonicaEditor3D, TipoMalhaCenaCanonicaEditor3D, TipoVariavelAmbiente, TituloSessaoInteligente, VALORES_ATRIBUTOS_OBRIGATORIOS_CONFIGURACAO_TESTE_PERICIA, Vetor3CenaCanonicaEditor3D, adicionaProximoIntervaloConfiguracaoTestePericia, calculaIncrementosAcumuladosPatenteTestePericia, calculaValorMinimoTestePericia, concatenarDataEHoraEmNovaData, formataDataCompacta, minutosParaMs, momentoParaMinutos, obtemDiaDaSemanaPorExtensoPorDDS, obtemIntervaloConfiguradoTestePericia, pluralize, projetaConfiguracaoPatentesTestePericia, projetaConfiguracaoTestePericia, removeUltimoIntervaloOpcionalConfiguracaoTestePericia, validaConfiguracaoPatentesTestePericia, validaConfiguracaoTestePericia };
511
+ export { AcaoMembroSerJogavel, AcaoMembroSerJogavelInput, AcessoPagina, AssinaturaArtistaPersistida, AventuraEstado, CONFIGURACAO_DEFAULT_PATENTES_TESTE_PERICIA, CONFIGURACAO_DEFAULT_TESTE_PERICIA, CamadaTituloArteCapaUDM, CameraCenaCanonicaEditor3D, CapaArteCenaCanonicaEditor3D, CargoExibicaoUsuario, CargosUsuario, CenaCanonicaEditor3D, CoeficienteGanhoEstatisticaAtualizado, CoeficienteGanhoEstatisticaCriado, ConfiguracaoIntervaloTestePericia, ConfiguracaoPatenteTestePericia, ConfiguracaoPatentesTestePericia, ConfiguracaoPatentesTestePericiaProjetada, ConfiguracaoTestePericia, ConfiguracaoTestePericiaProjetada, ConteudoArteCapaUDM, ConteudoItem, DefinicaoElemento, DetalheUtilizacaoRascunho, DiaDaSemana, EstadoOcupacaoPersonagem, EstadoPendenciaAdministrativaPersonagem, EstadoPendenciaPersonagem, EstadoSessao, EstruturaPaginaDefinicao, FaceMalhaEditavelCenaCanonicaEditor3D, FichaDoSerCriada, FonteAssinaturaArtista, FormatoMomento, GanhoEstatistica, ImagemBaseArteCapaUDM, LinhaPreviewConfiguracaoPatenteTestePericia, LinhaPreviewConfiguracaoTestePericia, ListaCapacidadesNecessarias, ListaItem, MalhaEditavelCenaCanonicaEditor3D, MaterialVisualCenaCanonicaEditor3D, MembroSerJogavel, MembroSerJogavelInput, MomentoFormatado, MomentoFormatado24, NumeroHora24, NumeroMomento, ObjetoAutenticacao, ObjetoCache, ObjetoCenaCanonicaEditor3D, ObjetoEvolucao, ObjetoEvolucaoCompleto, ObjetoGanhosEvolucao, ObjetoPendeciaPersonagem, PAYLOAD__AtualizarCard, PAYLOAD__AtualizarCoeficienteGanhoEstatistica, PAYLOAD__AtualizarColuna, PAYLOAD__AtualizarDependenciaCard, PAYLOAD__AtualizarItemChecklist, PAYLOAD__AtualizarObjetivo, PAYLOAD__AtualizarObjetivoFicha, PAYLOAD__CriarCard, PAYLOAD__CriarCoeficienteGanhoEstatistica, PAYLOAD__CriarColuna, PAYLOAD__CriarComentario, PAYLOAD__CriarDependenciaCard, PAYLOAD__CriarFichaDoSer, PAYLOAD__CriarItemChecklist, PAYLOAD__CriarObjetivo, PAYLOAD__CriarSerRegistroComDetalhe, PAYLOAD__DefinirPosicaoFluxogramaCard, PAYLOAD__DeletarCard, PAYLOAD__DeletarColuna, PAYLOAD__DeletarDependenciaCard, PAYLOAD__DeletarItemChecklist, PAYLOAD__DeletarObjetivo, PAYLOAD__MarcarItemChecklist, PAYLOAD__ReordenarCards, PAYLOAD__ReordenarColunas, PAYLOAD__SalvarAssinaturaArtista, PAYLOAD__SalvarCasoSimplesProjeto3D, PAYLOAD__SalvarConfiguracaoPatentesTestePericia, PAYLOAD__SalvarConfiguracaoTestePericia, PAYLOAD__SalvarDesenhoFluxograma, PAYLOAD__SalvarMembrosSerJogavel, PAYLOAD__SalvarProjeto3D, PaletaCores, ParametrosAcaoMembroSerJogavel, PathArteCapaPadrao, PathAvatarPadrao, PermissaoItemMinimo, Projeto3DCapaArteImagemPersistida, Projeto3DCapaArteResumoPersistido, Projeto3DMinimoPersistido, Projeto3DResumoPersistido, SerJogavelMembrosPersistido, SerRegistroCriado, ShaderCenaCanonicaEditor3D, TextoCapaArteCenaCanonicaEditor3D, TipoMalhaCenaCanonicaEditor3D, TipoProjetoEditor3D, TipoVariavelAmbiente, TituloSessaoInteligente, VALORES_ATRIBUTOS_OBRIGATORIOS_CONFIGURACAO_TESTE_PERICIA, Vetor3CenaCanonicaEditor3D, adicionaProximoIntervaloConfiguracaoTestePericia, calculaIncrementosAcumuladosPatenteTestePericia, calculaValorMinimoTestePericia, concatenarDataEHoraEmNovaData, formataDataCompacta, minutosParaMs, momentoParaMinutos, obtemDiaDaSemanaPorExtensoPorDDS, obtemIntervaloConfiguradoTestePericia, pluralize, projetaConfiguracaoPatentesTestePericia, projetaConfiguracaoTestePericia, removeUltimoIntervaloOpcionalConfiguracaoTestePericia, validaConfiguracaoPatentesTestePericia, validaConfiguracaoTestePericia };
@@ -1,5 +1,5 @@
1
1
  import { SalaDeJogo_Tipo } from '../dtos';
2
- import type { AberturaTutorialPayload, AcaoDePartidaTestePericiaExecutado, AcaoDisponivel, AcaoSalaJogoAuditoriaVisualizada, CaminhoArquivoAvatar, CodigoMissaoFuncionalSalaDeJogoRuntime, CodigoRecuperarFichaRuntime, EstadoTemporalSalaDeJogoRuntime, EventoUsuarioDto, J_DadosFichaEmJogo, KeyCombatenteMissaoFuncionalSalaDeJogoRuntime, LogicaJogoUsuario_EstouEmJogoDto, LogicaJogoUsuario_ObjetoEmJogoDto, MensagemSalaJogo, MensagemSalaJogoModoResposta, MensagemSalaJogoVisualizada, NotificacaoUsuario, PapelCombatenteMissaoFuncionalSalaDeJogoRuntime, RecursoFichaEmJogoCapacidadeFuncional, RecursoFichaEmJogoEstadoResumo, RecursoFichaEmJogoGrupoFuncional, ReferenciaAcaoDePartida, ResultadoMissaoFuncionalSalaDeJogoRuntime, SalaDeJogoDto, SalaDeJogo_Codigo, SalaDeJogo_SessaoDto, TipoInteragivelPercebidoSalaDeJogoRuntime, UsuarioParaObjetoAutenticacaoDto } from '../dtos';
2
+ import type { AberturaTutorialPayload, AcaoDePartidaTestePericiaExecutado, AcaoDisponivel, AcaoSalaJogoAuditoriaVisualizada, CaminhoArquivoAvatar, CodigoRecuperarFichaRuntime, EstadoItemInventarioSalaDeJogoRuntime, EstadoTemporalSalaDeJogoRuntime, EventoUsuarioDto, J_DadosFichaEmJogo, KeyCombatenteMissaoFuncionalSalaDeJogoRuntime, LogicaJogoUsuario_EstouEmJogoDto, LogicaJogoUsuario_ObjetoEmJogoDto, MensagemSalaJogo, MensagemSalaJogoModoResposta, MensagemSalaJogoVisualizada, NotificacaoUsuario, PapelCombatenteMissaoFuncionalSalaDeJogoRuntime, RecursoFichaEmJogoCapacidadeFuncional, RecursoFichaEmJogoEstadoResumo, RecursoFichaEmJogoGrupoFuncional, ReferenciaAcaoDePartida, ResultadoMissaoFuncionalSalaDeJogoRuntime, SalaDeJogoDto, SalaDeJogo_Codigo, SalaDeJogo_SessaoDto, TipoInteragivelPercebidoSalaDeJogoRuntime, UsuarioParaObjetoAutenticacaoDto } from '../dtos';
3
3
  import type { PaginaTemplate } from '../paginas';
4
4
  import type { ParametrosAcaoMembroSerJogavel } from '../shared';
5
5
  interface MensagemChatRecebida {
@@ -41,6 +41,17 @@ type PAYLOAD__executaAcaoSerNaSala = {
41
41
  type PAYLOAD__jogadorEsperaSalaJogo = {
42
42
  codigoSala: SalaDeJogo_Codigo;
43
43
  };
44
+ type PAYLOAD__jogadorMoveSerSalaJogo = {
45
+ codigoSala: SalaDeJogo_Codigo;
46
+ destino: {
47
+ readonly x: number;
48
+ readonly y: number;
49
+ };
50
+ };
51
+ type PAYLOAD__jogadorSacaItemSalaJogo = {
52
+ codigoSala: SalaDeJogo_Codigo;
53
+ keyItem: string;
54
+ };
44
55
  type PAYLOAD__NARRADOR_solicitaTestePericiaParticipantes = {
45
56
  codigoSala: SalaDeJogo_Codigo;
46
57
  idPericia: number;
@@ -90,10 +101,10 @@ type PAYLOAD__INDIVIDUAL__NARRADOR_executaAcaoParticipante_PROTOTIPO = {
90
101
  codigoSala: SalaDeJogo_Codigo;
91
102
  idPericia: number;
92
103
  };
93
- type PAYLOAD__IniciarModoSolo = {
94
- codigoMissaoFuncional?: CodigoMissaoFuncionalSalaDeJogoRuntime;
104
+ type PAYLOAD__IniciarPartida = {
105
+ idPartida: number;
95
106
  };
96
- type RESPONSE__IniciarModoSolo = {
107
+ type RESPONSE__IniciarPartida = {
97
108
  sucesso: true;
98
109
  codigoSala: SalaDeJogo_Codigo;
99
110
  tipoSala: SalaDeJogo_Tipo.SALA__SOLO;
@@ -161,7 +172,7 @@ type EstatisticaDanificavelSerNaSalaJogoWsDto = {
161
172
  valorAtual: number;
162
173
  valorMaximo: number;
163
174
  };
164
- type EstadoAcaoDisponivelSerNaSalaJogoWsDto = 'DISPONIVEL';
175
+ type EstadoAcaoDisponivelSerNaSalaJogoWsDto = 'DISPONIVEL' | 'EXECUTANDO';
165
176
  type OrigemAcaoDisponivelSerNaSalaJogoWsDto = {
166
177
  keyInstanciaSer: KeyCombatenteMissaoFuncionalSalaDeJogoRuntime;
167
178
  idSer: number;
@@ -185,6 +196,12 @@ type MembroSerNaSalaJogoWsDto = {
185
196
  capacidades: readonly CapacidadeInataSerNaSalaJogoWsDto[];
186
197
  acoesDisponiveis: readonly AcaoDisponivelSerNaSalaJogoWsDto[];
187
198
  };
199
+ type ItemInventarioSalaJogoWsDto = {
200
+ key: string;
201
+ nomeExibicao: string;
202
+ tempoSaqueMs: number;
203
+ estado: EstadoItemInventarioSalaDeJogoRuntime;
204
+ };
188
205
  type SerNaSalaJogoWsDto = {
189
206
  keyInstancia: KeyCombatenteMissaoFuncionalSalaDeJogoRuntime;
190
207
  papel: PapelCombatenteMissaoFuncionalSalaDeJogoRuntime;
@@ -193,6 +210,11 @@ type SerNaSalaJogoWsDto = {
193
210
  posicao: PosicaoMapaLogicoSalaJogoWsDto;
194
211
  estatisticasDanificaveis: readonly EstatisticaDanificavelSerNaSalaJogoWsDto[];
195
212
  membros: readonly MembroSerNaSalaJogoWsDto[];
213
+ inventario: readonly ItemInventarioSalaJogoWsDto[];
214
+ };
215
+ type DurabilidadeInteragivelSalaJogoWsDto = {
216
+ valorAtual: number;
217
+ valorMaximo: number;
196
218
  };
197
219
  type InteragivelPercebidoSalaJogoWsDto = {
198
220
  key: string;
@@ -200,6 +222,7 @@ type InteragivelPercebidoSalaJogoWsDto = {
200
222
  tipo: TipoInteragivelPercebidoSalaDeJogoRuntime;
201
223
  descricao: string;
202
224
  posicao: PosicaoMapaLogicoSalaJogoWsDto | null;
225
+ durabilidade: DurabilidadeInteragivelSalaJogoWsDto | null;
203
226
  };
204
227
  type MapaLogicoSalaJogoPayloadWsDto = {
205
228
  codigoSala: SalaDeJogo_Codigo;
@@ -211,6 +234,51 @@ type MapaLogicoSalaJogoPayloadWsDto = {
211
234
  type RESPONSE__EmitirMapaLogicoSalaJogo = {
212
235
  mapaLogicoSalaJogo: MapaLogicoSalaJogoPayloadWsDto;
213
236
  };
237
+ declare const MIXER_TESTE_ID_ARQUIVO_TIPADO_MUSICA = 1;
238
+ declare const MIXER_TESTE_ROOM = "mixer-teste";
239
+ declare const MIXER_CANAL_CONTROLAVEL_1 = "mixer-controlavel-1";
240
+ declare const MIXER_CANAL_CONTROLAVEL_2 = "mixer-controlavel-2";
241
+ type MixerStatusReproducao = "TOCANDO" | "PAUSADO";
242
+ type MixerFaixaDto = {
243
+ idArquivoTipadoMusica: number;
244
+ idArquivo: number;
245
+ caminhoArquivo: string;
246
+ tipoMime: string | null;
247
+ };
248
+ type MixerEstadoDto = {
249
+ status: MixerStatusReproducao;
250
+ faixa: MixerFaixaDto | null;
251
+ posicaoMs: number;
252
+ iniciadoEmMs: number | null;
253
+ atualizadoEmMs: number;
254
+ };
255
+ type PAYLOAD__Mixer_verificarEstado = Record<string, never>;
256
+ type RESPONSE__Mixer_verificarEstado = MixerEstadoDto;
257
+ type PAYLOAD__Mixer_admin_play = Record<string, never>;
258
+ type RESPONSE__Mixer_admin_play = MixerEstadoDto;
259
+ type PAYLOAD__Mixer_admin_pause = Record<string, never>;
260
+ type RESPONSE__Mixer_admin_pause = MixerEstadoDto;
261
+ type PAYLOAD__Mixer_admin_sincronizar = {
262
+ status: MixerStatusReproducao;
263
+ posicaoMs: number;
264
+ };
265
+ type RESPONSE__Mixer_admin_sincronizar = MixerEstadoDto;
266
+ type EMIT__Mixer_estadoAtualizado = MixerEstadoDto;
267
+ type MixerSelecaoDto = {
268
+ canal: string;
269
+ idMusicaConfigurada: number | null;
270
+ atualizadoEmMs: number;
271
+ };
272
+ type PAYLOAD__Mixer_verificarSelecao = {
273
+ canal: string;
274
+ };
275
+ type RESPONSE__Mixer_verificarSelecao = MixerSelecaoDto;
276
+ type PAYLOAD__Mixer_admin_definirMusica = {
277
+ canal: string;
278
+ idMusicaConfigurada: number | null;
279
+ };
280
+ type RESPONSE__Mixer_admin_definirMusica = MixerSelecaoDto;
281
+ type EMIT__Mixer_selecaoAtualizada = MixerSelecaoDto;
214
282
  declare const PALCO_ID_SALA = "palco-global";
215
283
  declare const PALCO_ID_LOBBY = "palco-global-lobby";
216
284
  declare const PALCO_LIVEKIT_ROOM = "palco";
@@ -475,10 +543,10 @@ declare namespace EventosWebSocket {
475
543
  };
476
544
  };
477
545
  readonly Jogo: {
478
- iniciarModoSolo: {
546
+ iniciarPartida: {
479
547
  tipo: "envia-e-recebe";
480
- payload: PAYLOAD__IniciarModoSolo;
481
- response: RESPONSE__IniciarModoSolo;
548
+ payload: PAYLOAD__IniciarPartida;
549
+ response: RESPONSE__IniciarPartida;
482
550
  };
483
551
  requisicaoDeFechamentoDeSalaAberta: {
484
552
  tipo: "envia-e-recebe";
@@ -562,6 +630,14 @@ declare namespace EventosWebSocket {
562
630
  tipo: "envia";
563
631
  payload: PAYLOAD__jogadorEsperaSalaJogo;
564
632
  };
633
+ jogadorMoveSerSalaJogo: {
634
+ tipo: "envia";
635
+ payload: PAYLOAD__jogadorMoveSerSalaJogo;
636
+ };
637
+ jogadorSacaItemSalaJogo: {
638
+ tipo: "envia";
639
+ payload: PAYLOAD__jogadorSacaItemSalaJogo;
640
+ };
565
641
  executaTestePericia: {
566
642
  tipo: "envia";
567
643
  payload: PAYLOAD__executaTestePericia;
@@ -762,6 +838,50 @@ declare namespace EventosWebSocket {
762
838
  delivery: "broadcast";
763
839
  };
764
840
  };
841
+ readonly Mixer: {
842
+ verificarEstado: {
843
+ tipo: "envia-e-recebe";
844
+ payload: PAYLOAD__Mixer_verificarEstado;
845
+ response: RESPONSE__Mixer_verificarEstado;
846
+ };
847
+ admin_play: {
848
+ tipo: "envia-e-recebe";
849
+ payload: PAYLOAD__Mixer_admin_play;
850
+ response: RESPONSE__Mixer_admin_play;
851
+ };
852
+ admin_pause: {
853
+ tipo: "envia-e-recebe";
854
+ payload: PAYLOAD__Mixer_admin_pause;
855
+ response: RESPONSE__Mixer_admin_pause;
856
+ };
857
+ admin_sincronizar: {
858
+ tipo: "envia-e-recebe";
859
+ payload: PAYLOAD__Mixer_admin_sincronizar;
860
+ response: RESPONSE__Mixer_admin_sincronizar;
861
+ };
862
+ estadoAtualizado: {
863
+ tipo: "emite";
864
+ payload: EMIT__Mixer_estadoAtualizado;
865
+ response: EMIT__Mixer_estadoAtualizado;
866
+ delivery: "broadcast";
867
+ };
868
+ verificarSelecao: {
869
+ tipo: "envia-e-recebe";
870
+ payload: PAYLOAD__Mixer_verificarSelecao;
871
+ response: RESPONSE__Mixer_verificarSelecao;
872
+ };
873
+ admin_definirMusica: {
874
+ tipo: "envia-e-recebe";
875
+ payload: PAYLOAD__Mixer_admin_definirMusica;
876
+ response: RESPONSE__Mixer_admin_definirMusica;
877
+ };
878
+ selecaoAtualizada: {
879
+ tipo: "emite";
880
+ payload: EMIT__Mixer_selecaoAtualizada;
881
+ response: EMIT__Mixer_selecaoAtualizada;
882
+ delivery: "broadcast";
883
+ };
884
+ };
765
885
  readonly EventosUsuario: {
766
886
  notificacaoRecebida: {
767
887
  tipo: "emite";
@@ -856,6 +976,28 @@ declare namespace EventosWebSocket {
856
976
  };
857
977
  };
858
978
  };
979
+ readonly PainelDoMedo: {
980
+ painelAtualizado: {
981
+ tipo: "emite";
982
+ payload: {};
983
+ response: {
984
+ ok: boolean;
985
+ };
986
+ delivery: "broadcast";
987
+ };
988
+ desenhoAtualizado: {
989
+ tipo: "emite";
990
+ payload: {
991
+ fkObjetivosId: number;
992
+ conteudo: string | null;
993
+ };
994
+ response: {
995
+ fkObjetivosId: number;
996
+ conteudo: string | null;
997
+ };
998
+ delivery: "broadcast";
999
+ };
1000
+ };
859
1001
  };
860
1002
  }
861
1003
  declare function isRecord(value: unknown): value is Record<string, unknown>;
@@ -945,6 +1087,22 @@ declare const Eventos_Envia: {
945
1087
  readonly gateway: "ExecucaoDeJogo";
946
1088
  readonly fullName: "ExecucaoDeJogo:jogadorEsperaSalaJogo";
947
1089
  };
1090
+ jogadorMoveSerSalaJogo: {
1091
+ tipo: "envia";
1092
+ payload: PAYLOAD__jogadorMoveSerSalaJogo;
1093
+ } & {
1094
+ readonly nome: "jogadorMoveSerSalaJogo";
1095
+ readonly gateway: "ExecucaoDeJogo";
1096
+ readonly fullName: "ExecucaoDeJogo:jogadorMoveSerSalaJogo";
1097
+ };
1098
+ jogadorSacaItemSalaJogo: {
1099
+ tipo: "envia";
1100
+ payload: PAYLOAD__jogadorSacaItemSalaJogo;
1101
+ } & {
1102
+ readonly nome: "jogadorSacaItemSalaJogo";
1103
+ readonly gateway: "ExecucaoDeJogo";
1104
+ readonly fullName: "ExecucaoDeJogo:jogadorSacaItemSalaJogo";
1105
+ };
948
1106
  executaTestePericia: {
949
1107
  tipo: "envia";
950
1108
  payload: PAYLOAD__executaTestePericia;
@@ -1023,6 +1181,9 @@ declare const Eventos_Envia: {
1023
1181
  };
1024
1182
  };
1025
1183
  };
1184
+ readonly Mixer: {
1185
+ eventos: {};
1186
+ };
1026
1187
  readonly EventosUsuario: {
1027
1188
  eventos: {
1028
1189
  dispararNotificacaoTeste: {
@@ -1097,6 +1258,9 @@ declare const Eventos_Envia: {
1097
1258
  };
1098
1259
  };
1099
1260
  };
1261
+ readonly PainelDoMedo: {
1262
+ eventos: {};
1263
+ };
1100
1264
  };
1101
1265
  declare const Eventos_Emite: {
1102
1266
  readonly Chat: {
@@ -1386,6 +1550,30 @@ declare const Eventos_Emite: {
1386
1550
  };
1387
1551
  };
1388
1552
  };
1553
+ readonly Mixer: {
1554
+ eventos: {
1555
+ estadoAtualizado: {
1556
+ tipo: "emite";
1557
+ payload: EMIT__Mixer_estadoAtualizado;
1558
+ response: EMIT__Mixer_estadoAtualizado;
1559
+ delivery: "broadcast";
1560
+ } & {
1561
+ readonly nome: "estadoAtualizado";
1562
+ readonly gateway: "Mixer";
1563
+ readonly fullName: "Mixer:estadoAtualizado";
1564
+ };
1565
+ selecaoAtualizada: {
1566
+ tipo: "emite";
1567
+ payload: EMIT__Mixer_selecaoAtualizada;
1568
+ response: EMIT__Mixer_selecaoAtualizada;
1569
+ delivery: "broadcast";
1570
+ } & {
1571
+ readonly nome: "selecaoAtualizada";
1572
+ readonly gateway: "Mixer";
1573
+ readonly fullName: "Mixer:selecaoAtualizada";
1574
+ };
1575
+ };
1576
+ };
1389
1577
  readonly EventosUsuario: {
1390
1578
  eventos: {
1391
1579
  notificacaoRecebida: {
@@ -1420,6 +1608,38 @@ declare const Eventos_Emite: {
1420
1608
  };
1421
1609
  };
1422
1610
  };
1611
+ readonly PainelDoMedo: {
1612
+ eventos: {
1613
+ painelAtualizado: {
1614
+ tipo: "emite";
1615
+ payload: {};
1616
+ response: {
1617
+ ok: boolean;
1618
+ };
1619
+ delivery: "broadcast";
1620
+ } & {
1621
+ readonly nome: "painelAtualizado";
1622
+ readonly gateway: "PainelDoMedo";
1623
+ readonly fullName: "PainelDoMedo:painelAtualizado";
1624
+ };
1625
+ desenhoAtualizado: {
1626
+ tipo: "emite";
1627
+ payload: {
1628
+ fkObjetivosId: number;
1629
+ conteudo: string | null;
1630
+ };
1631
+ response: {
1632
+ fkObjetivosId: number;
1633
+ conteudo: string | null;
1634
+ };
1635
+ delivery: "broadcast";
1636
+ } & {
1637
+ readonly nome: "desenhoAtualizado";
1638
+ readonly gateway: "PainelDoMedo";
1639
+ readonly fullName: "PainelDoMedo:desenhoAtualizado";
1640
+ };
1641
+ };
1642
+ };
1423
1643
  };
1424
1644
  declare const Eventos_EnviaERecebe: {
1425
1645
  readonly Chat: {
@@ -1439,14 +1659,14 @@ declare const Eventos_EnviaERecebe: {
1439
1659
  };
1440
1660
  readonly Jogo: {
1441
1661
  eventos: {
1442
- iniciarModoSolo: {
1662
+ iniciarPartida: {
1443
1663
  tipo: "envia-e-recebe";
1444
- payload: PAYLOAD__IniciarModoSolo;
1445
- response: RESPONSE__IniciarModoSolo;
1664
+ payload: PAYLOAD__IniciarPartida;
1665
+ response: RESPONSE__IniciarPartida;
1446
1666
  } & {
1447
- readonly nome: "iniciarModoSolo";
1667
+ readonly nome: "iniciarPartida";
1448
1668
  readonly gateway: "Jogo";
1449
- readonly fullName: "Jogo:iniciarModoSolo";
1669
+ readonly fullName: "Jogo:iniciarPartida";
1450
1670
  };
1451
1671
  requisicaoDeFechamentoDeSalaAberta: {
1452
1672
  tipo: "envia-e-recebe";
@@ -1582,6 +1802,64 @@ declare const Eventos_EnviaERecebe: {
1582
1802
  };
1583
1803
  };
1584
1804
  };
1805
+ readonly Mixer: {
1806
+ eventos: {
1807
+ verificarEstado: {
1808
+ tipo: "envia-e-recebe";
1809
+ payload: PAYLOAD__Mixer_verificarEstado;
1810
+ response: RESPONSE__Mixer_verificarEstado;
1811
+ } & {
1812
+ readonly nome: "verificarEstado";
1813
+ readonly gateway: "Mixer";
1814
+ readonly fullName: "Mixer:verificarEstado";
1815
+ };
1816
+ admin_play: {
1817
+ tipo: "envia-e-recebe";
1818
+ payload: PAYLOAD__Mixer_admin_play;
1819
+ response: RESPONSE__Mixer_admin_play;
1820
+ } & {
1821
+ readonly nome: "admin_play";
1822
+ readonly gateway: "Mixer";
1823
+ readonly fullName: "Mixer:admin_play";
1824
+ };
1825
+ admin_pause: {
1826
+ tipo: "envia-e-recebe";
1827
+ payload: PAYLOAD__Mixer_admin_pause;
1828
+ response: RESPONSE__Mixer_admin_pause;
1829
+ } & {
1830
+ readonly nome: "admin_pause";
1831
+ readonly gateway: "Mixer";
1832
+ readonly fullName: "Mixer:admin_pause";
1833
+ };
1834
+ admin_sincronizar: {
1835
+ tipo: "envia-e-recebe";
1836
+ payload: PAYLOAD__Mixer_admin_sincronizar;
1837
+ response: RESPONSE__Mixer_admin_sincronizar;
1838
+ } & {
1839
+ readonly nome: "admin_sincronizar";
1840
+ readonly gateway: "Mixer";
1841
+ readonly fullName: "Mixer:admin_sincronizar";
1842
+ };
1843
+ verificarSelecao: {
1844
+ tipo: "envia-e-recebe";
1845
+ payload: PAYLOAD__Mixer_verificarSelecao;
1846
+ response: RESPONSE__Mixer_verificarSelecao;
1847
+ } & {
1848
+ readonly nome: "verificarSelecao";
1849
+ readonly gateway: "Mixer";
1850
+ readonly fullName: "Mixer:verificarSelecao";
1851
+ };
1852
+ admin_definirMusica: {
1853
+ tipo: "envia-e-recebe";
1854
+ payload: PAYLOAD__Mixer_admin_definirMusica;
1855
+ response: RESPONSE__Mixer_admin_definirMusica;
1856
+ } & {
1857
+ readonly nome: "admin_definirMusica";
1858
+ readonly gateway: "Mixer";
1859
+ readonly fullName: "Mixer:admin_definirMusica";
1860
+ };
1861
+ };
1862
+ };
1585
1863
  readonly EventosUsuario: {
1586
1864
  eventos: {
1587
1865
  obterMeusEventos: {
@@ -1640,5 +1918,8 @@ declare const Eventos_EnviaERecebe: {
1640
1918
  };
1641
1919
  };
1642
1920
  };
1921
+ readonly PainelDoMedo: {
1922
+ eventos: {};
1923
+ };
1643
1924
  };
1644
- export { AcaoDisponivelSerNaSalaJogoWsDto, CapacidadeInataSerNaSalaJogoWsDto, EMIT__Palco_diagnosticoAudio, EMIT__Palco_encerrado, EMIT__Palco_estadoAtualizado, EMIT__Palco_tokenMidia, EMIT__TesteVoz_receberAnswer, EMIT__TesteVoz_receberIceCandidate, EMIT__TesteVoz_receberOffer, EMIT__TesteVoz_usuarioEntrou, EMIT__TesteVoz_usuarioSaiu, EmitDelivery, EstadoAcaoDisponivelSerNaSalaJogoWsDto, EstatisticaDanificavelSerNaSalaJogoWsDto, EventoAuthDefault, EventoEmite, EventoEmiteAny, EventoEnvia, EventoEnviaERecebe, EventoSchema, EventoTipo, EventoTipoLiteral, EventosEmiteMap, EventosWebSocket, Eventos_Emite, Eventos_Envia, Eventos_EnviaERecebe, FiltraEventosPorTipo, GatewayDef, Gateways, InteragivelPercebidoSalaJogoWsDto, MapaLogicoSalaJogoPayloadWsDto, MapaLogicoSalaJogoWsDto, MembroSerNaSalaJogoWsDto, MensagemChatPayload, MensagemChatRecebida, OcupanteMapaLogicoSalaJogoWsDto, OrigemAcaoDisponivelSerNaSalaJogoWsDto, PALCO_ID_LOBBY, PALCO_ID_SALA, PALCO_LIVEKIT_ROOM, PAYLOAD__EmitirEstadoTemporalSalaJogo, PAYLOAD__EmitirFichaEmJogo, PAYLOAD__EmitirMapaLogicoSalaJogo, PAYLOAD__EmitirResultadoMissaoFuncionalSalaJogo, PAYLOAD__ExecutaTestePericia_PROTOTIPO, PAYLOAD__INDIVIDUAL__NARRADOR_executaAcaoParticipante_PROTOTIPO, PAYLOAD__IniciarModoSolo, PAYLOAD__NARRADOR_executaAcaoParticipante_PROTOTIPO, PAYLOAD__NARRADOR_solicitaTestePericiaParticipantes, PAYLOAD__Palco_admin_criar, PAYLOAD__Palco_admin_definirPapel, PAYLOAD__Palco_admin_encerrar, PAYLOAD__Palco_admin_promover, PAYLOAD__Palco_admin_rebaixar, PAYLOAD__Palco_admin_remover, PAYLOAD__Palco_entrar, PAYLOAD__Palco_relatarTelemetriaAudio, PAYLOAD__Palco_verificarEstado, PAYLOAD__TesteVoz_entrarNaSala, PAYLOAD__TesteVoz_enviarAnswer, PAYLOAD__TesteVoz_enviarIceCandidate, PAYLOAD__TesteVoz_enviarOffer, PAYLOAD__emitirAuditoriaAcoesSalaJogo, PAYLOAD__emitirMensagemSalaJogo, PAYLOAD__emitirMensagemSalaJogo__Enviando, PAYLOAD__emitirMensagemSalaJogo__Escutando, PAYLOAD__emitirMensagensSalaJogo, PAYLOAD__encerrarAcompanhamentoAuditoriaAcoesSalaJogo, PAYLOAD__executaAcao, PAYLOAD__executaAcaoSerNaSala, PAYLOAD__executaTestePericia, PAYLOAD__jogadorEsperaSalaJogo, PalcoAudioDiagnosticoItem, PalcoEstadoDto, PalcoParticipanteDto, PalcoParticipantePapel, PerfilFuncionalInspecaoMapaLogicoSalaJogoWsDto, PosicaoMapaLogicoSalaJogoWsDto, RESPONSE__EmitirEstadoTemporalSalaJogo, RESPONSE__EmitirMapaLogicoSalaJogo, RESPONSE__EmitirResultadoMissaoFuncionalSalaJogo, RESPONSE__IniciarModoSolo, RESPONSE__NARRADOR_solicitaTestePericiaParticipantes, RESPONSE__Palco_admin_criar, RESPONSE__Palco_admin_definirPapel, RESPONSE__Palco_admin_encerrar, RESPONSE__Palco_admin_promover, RESPONSE__Palco_admin_rebaixar, RESPONSE__Palco_admin_remover, RESPONSE__Palco_entrar, RESPONSE__Palco_verificarEstado, RESPONSE__TesteVoz_entrarNaSala, RESPONSE__emitirAuditoriaAcoesSalaJogo, RESPONSE__emitirMensagensSalaJogo, RecursoFuncionalInspecaoMapaLogicoSalaJogoWsDto, SOCKET_AcessoSocket, SOCKET_AcessoUsuario, SOCKET_PresencaUsuario, SOCKET_UsuarioExistente, SalaChat, SalaChatFront, SerNaSalaJogoWsDto, TESTE_VOZ_ID_SALA, TelemetryConnectionInfo, TelemetryEventLog, TelemetrySnapshot, TesteVoz_DescricaoSessao, TesteVoz_DescricaoSessaoTipo, TesteVoz_IceCandidate, TesteVoz_IdSala, TesteVoz_IdSocket, TesteVoz_IdUsuario, WsEmitParams, WsEmitTarget, WsErrorResponse, WsEventAudience, WsEventAudienceMultiplo, WsEventAudienceUnico, WsResult, WsUnauthorizedErrorResponse, createGateway, criarEventosFiltrados, getEmitDelivery, isRecord, isWsErrorResponse, isWsUnauthorizedErrorResponse, wsChain, wsErro, wsMap, wsUnauthorized };
1925
+ export { AcaoDisponivelSerNaSalaJogoWsDto, CapacidadeInataSerNaSalaJogoWsDto, DurabilidadeInteragivelSalaJogoWsDto, EMIT__Mixer_estadoAtualizado, EMIT__Mixer_selecaoAtualizada, EMIT__Palco_diagnosticoAudio, EMIT__Palco_encerrado, EMIT__Palco_estadoAtualizado, EMIT__Palco_tokenMidia, EMIT__TesteVoz_receberAnswer, EMIT__TesteVoz_receberIceCandidate, EMIT__TesteVoz_receberOffer, EMIT__TesteVoz_usuarioEntrou, EMIT__TesteVoz_usuarioSaiu, EmitDelivery, EstadoAcaoDisponivelSerNaSalaJogoWsDto, EstatisticaDanificavelSerNaSalaJogoWsDto, EventoAuthDefault, EventoEmite, EventoEmiteAny, EventoEnvia, EventoEnviaERecebe, EventoSchema, EventoTipo, EventoTipoLiteral, EventosEmiteMap, EventosWebSocket, Eventos_Emite, Eventos_Envia, Eventos_EnviaERecebe, FiltraEventosPorTipo, GatewayDef, Gateways, InteragivelPercebidoSalaJogoWsDto, ItemInventarioSalaJogoWsDto, MIXER_CANAL_CONTROLAVEL_1, MIXER_CANAL_CONTROLAVEL_2, MIXER_TESTE_ID_ARQUIVO_TIPADO_MUSICA, MIXER_TESTE_ROOM, MapaLogicoSalaJogoPayloadWsDto, MapaLogicoSalaJogoWsDto, MembroSerNaSalaJogoWsDto, MensagemChatPayload, MensagemChatRecebida, MixerEstadoDto, MixerFaixaDto, MixerSelecaoDto, MixerStatusReproducao, OcupanteMapaLogicoSalaJogoWsDto, OrigemAcaoDisponivelSerNaSalaJogoWsDto, PALCO_ID_LOBBY, PALCO_ID_SALA, PALCO_LIVEKIT_ROOM, PAYLOAD__EmitirEstadoTemporalSalaJogo, PAYLOAD__EmitirFichaEmJogo, PAYLOAD__EmitirMapaLogicoSalaJogo, PAYLOAD__EmitirResultadoMissaoFuncionalSalaJogo, PAYLOAD__ExecutaTestePericia_PROTOTIPO, PAYLOAD__INDIVIDUAL__NARRADOR_executaAcaoParticipante_PROTOTIPO, PAYLOAD__IniciarPartida, PAYLOAD__Mixer_admin_definirMusica, PAYLOAD__Mixer_admin_pause, PAYLOAD__Mixer_admin_play, PAYLOAD__Mixer_admin_sincronizar, PAYLOAD__Mixer_verificarEstado, PAYLOAD__Mixer_verificarSelecao, PAYLOAD__NARRADOR_executaAcaoParticipante_PROTOTIPO, PAYLOAD__NARRADOR_solicitaTestePericiaParticipantes, PAYLOAD__Palco_admin_criar, PAYLOAD__Palco_admin_definirPapel, PAYLOAD__Palco_admin_encerrar, PAYLOAD__Palco_admin_promover, PAYLOAD__Palco_admin_rebaixar, PAYLOAD__Palco_admin_remover, PAYLOAD__Palco_entrar, PAYLOAD__Palco_relatarTelemetriaAudio, PAYLOAD__Palco_verificarEstado, PAYLOAD__TesteVoz_entrarNaSala, PAYLOAD__TesteVoz_enviarAnswer, PAYLOAD__TesteVoz_enviarIceCandidate, PAYLOAD__TesteVoz_enviarOffer, PAYLOAD__emitirAuditoriaAcoesSalaJogo, PAYLOAD__emitirMensagemSalaJogo, PAYLOAD__emitirMensagemSalaJogo__Enviando, PAYLOAD__emitirMensagemSalaJogo__Escutando, PAYLOAD__emitirMensagensSalaJogo, PAYLOAD__encerrarAcompanhamentoAuditoriaAcoesSalaJogo, PAYLOAD__executaAcao, PAYLOAD__executaAcaoSerNaSala, PAYLOAD__executaTestePericia, PAYLOAD__jogadorEsperaSalaJogo, PAYLOAD__jogadorMoveSerSalaJogo, PAYLOAD__jogadorSacaItemSalaJogo, PalcoAudioDiagnosticoItem, PalcoEstadoDto, PalcoParticipanteDto, PalcoParticipantePapel, PerfilFuncionalInspecaoMapaLogicoSalaJogoWsDto, PosicaoMapaLogicoSalaJogoWsDto, RESPONSE__EmitirEstadoTemporalSalaJogo, RESPONSE__EmitirMapaLogicoSalaJogo, RESPONSE__EmitirResultadoMissaoFuncionalSalaJogo, RESPONSE__IniciarPartida, RESPONSE__Mixer_admin_definirMusica, RESPONSE__Mixer_admin_pause, RESPONSE__Mixer_admin_play, RESPONSE__Mixer_admin_sincronizar, RESPONSE__Mixer_verificarEstado, RESPONSE__Mixer_verificarSelecao, RESPONSE__NARRADOR_solicitaTestePericiaParticipantes, RESPONSE__Palco_admin_criar, RESPONSE__Palco_admin_definirPapel, RESPONSE__Palco_admin_encerrar, RESPONSE__Palco_admin_promover, RESPONSE__Palco_admin_rebaixar, RESPONSE__Palco_admin_remover, RESPONSE__Palco_entrar, RESPONSE__Palco_verificarEstado, RESPONSE__TesteVoz_entrarNaSala, RESPONSE__emitirAuditoriaAcoesSalaJogo, RESPONSE__emitirMensagensSalaJogo, RecursoFuncionalInspecaoMapaLogicoSalaJogoWsDto, SOCKET_AcessoSocket, SOCKET_AcessoUsuario, SOCKET_PresencaUsuario, SOCKET_UsuarioExistente, SalaChat, SalaChatFront, SerNaSalaJogoWsDto, TESTE_VOZ_ID_SALA, TelemetryConnectionInfo, TelemetryEventLog, TelemetrySnapshot, TesteVoz_DescricaoSessao, TesteVoz_DescricaoSessaoTipo, TesteVoz_IceCandidate, TesteVoz_IdSala, TesteVoz_IdSocket, TesteVoz_IdUsuario, WsEmitParams, WsEmitTarget, WsErrorResponse, WsEventAudience, WsEventAudienceMultiplo, WsEventAudienceUnico, WsResult, WsUnauthorizedErrorResponse, createGateway, criarEventosFiltrados, getEmitDelivery, isRecord, isWsErrorResponse, isWsUnauthorizedErrorResponse, wsChain, wsErro, wsMap, wsUnauthorized };