types-nora-api 0.0.358 → 0.0.359
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/classes.d.ts +16 -26
- package/dist/classes.js +0 -5
- package/package.json +1 -1
package/dist/classes.d.ts
CHANGED
|
@@ -1025,12 +1025,20 @@ interface IDetalheSessaoUnica {
|
|
|
1025
1025
|
participantesSessaoUnica: ParticipanteSessaoUnicaDto[];
|
|
1026
1026
|
}
|
|
1027
1027
|
type DetalheSessaoUnicaDto = IDetalheSessaoUnica;
|
|
1028
|
+
interface IFichaAmarradaParticipanteSessaoUnica {
|
|
1029
|
+
fkParticipanteSessaoUnicaId: number;
|
|
1030
|
+
participanteSessaoUnica: ParticipanteSessaoUnicaDto;
|
|
1031
|
+
fichaTemporaria: FichaTemporariaDto;
|
|
1032
|
+
}
|
|
1033
|
+
type FichaAmarradaParticipanteSessaoUnicaDto = IFichaAmarradaParticipanteSessaoUnica;
|
|
1028
1034
|
interface IParticipanteSessaoUnica {
|
|
1029
1035
|
id: number;
|
|
1030
1036
|
detalheSessaoUnica: DetalheSessaoUnicaDto;
|
|
1031
1037
|
usuario: UsuarioDto;
|
|
1032
1038
|
personagem: PersonagemDto | null;
|
|
1039
|
+
fichaAmarrada: FichaAmarradaParticipanteSessaoUnicaDto | null;
|
|
1033
1040
|
valido: boolean;
|
|
1041
|
+
participantePendente: boolean;
|
|
1034
1042
|
}
|
|
1035
1043
|
type ParticipanteSessaoUnicaDto = IParticipanteSessaoUnica;
|
|
1036
1044
|
interface IDisponibilidadeUsuarioHistorico {
|
|
@@ -1521,7 +1529,7 @@ interface IPersonagem {
|
|
|
1521
1529
|
tempoProximaSessaoPersonagem: string;
|
|
1522
1530
|
}
|
|
1523
1531
|
type PersonagemDto = IPersonagem;
|
|
1524
|
-
type PersonagemSalaJogoDto = Pick<PersonagemDto, 'id' | 'usuario' | '
|
|
1532
|
+
type PersonagemSalaJogoDto = Pick<PersonagemDto, 'id' | 'usuario' | 'informacao' | 'caminhoAvatar'>;
|
|
1525
1533
|
interface IResumoPersonagemAventura {
|
|
1526
1534
|
fkPersonagensId: number;
|
|
1527
1535
|
fkAventurasId: number;
|
|
@@ -1631,7 +1639,7 @@ type SessaoDadosGerais = {
|
|
|
1631
1639
|
};
|
|
1632
1640
|
type ParticipanteSessao = {
|
|
1633
1641
|
jogador: UsuarioDto;
|
|
1634
|
-
|
|
1642
|
+
dadosParticipanteJogo: DadosParticipanteJogo;
|
|
1635
1643
|
};
|
|
1636
1644
|
type DadosCriacaoSessao = {
|
|
1637
1645
|
idsUsuariosParticipantes: number[];
|
|
@@ -1743,7 +1751,7 @@ type SalaDeJogo_Participante_Narrador = {
|
|
|
1743
1751
|
type SalaDeJogo_Participante_Jogador = {
|
|
1744
1752
|
tipo: SalaDeJogo_TipoParticipante.SALA__JOGADOR;
|
|
1745
1753
|
idUsuario: number;
|
|
1746
|
-
|
|
1754
|
+
dadosParticipanteJogo: DadosParticipanteJogo;
|
|
1747
1755
|
};
|
|
1748
1756
|
type SalaDeJogo_FUNC_AtualizaParticipanteParams = {
|
|
1749
1757
|
acao: "adicionar";
|
|
@@ -1767,6 +1775,10 @@ type ObjetoEmJogoDto = {
|
|
|
1767
1775
|
tipoParticipante: SalaDeJogo_TipoParticipante.SALA__JOGADOR;
|
|
1768
1776
|
fichaDeJogo: FichaDeJogo | null;
|
|
1769
1777
|
};
|
|
1778
|
+
type DadosParticipanteJogo = {
|
|
1779
|
+
personagem: PersonagemSalaJogoDto | null;
|
|
1780
|
+
ficha: FichaDeJogo | null;
|
|
1781
|
+
};
|
|
1770
1782
|
type MenuItemNode = {
|
|
1771
1783
|
readonly tipo: 'item';
|
|
1772
1784
|
readonly titulo: string;
|
|
@@ -2080,15 +2092,6 @@ declare namespace EventosWebSocket {
|
|
|
2080
2092
|
};
|
|
2081
2093
|
};
|
|
2082
2094
|
readonly Jogo: {
|
|
2083
|
-
requisicaoDeAberturaDeSala: {
|
|
2084
|
-
tipo: "envia-e-recebe";
|
|
2085
|
-
payload: {
|
|
2086
|
-
idSessao: number;
|
|
2087
|
-
};
|
|
2088
|
-
response: {
|
|
2089
|
-
codigoSala: SalaDeJogo_Codigo;
|
|
2090
|
-
};
|
|
2091
|
-
};
|
|
2092
2095
|
requisicaoDeFechamentoDeSalaAberta: {
|
|
2093
2096
|
tipo: "envia-e-recebe";
|
|
2094
2097
|
payload: {};
|
|
@@ -2523,19 +2526,6 @@ declare const Eventos_EnviaERecebe: {
|
|
|
2523
2526
|
};
|
|
2524
2527
|
readonly Jogo: {
|
|
2525
2528
|
eventos: {
|
|
2526
|
-
requisicaoDeAberturaDeSala: {
|
|
2527
|
-
tipo: "envia-e-recebe";
|
|
2528
|
-
payload: {
|
|
2529
|
-
idSessao: number;
|
|
2530
|
-
};
|
|
2531
|
-
response: {
|
|
2532
|
-
codigoSala: SalaDeJogo_Codigo;
|
|
2533
|
-
};
|
|
2534
|
-
} & {
|
|
2535
|
-
readonly nome: "requisicaoDeAberturaDeSala";
|
|
2536
|
-
readonly gateway: "Jogo";
|
|
2537
|
-
readonly fullName: "Jogo:requisicaoDeAberturaDeSala";
|
|
2538
|
-
};
|
|
2539
2529
|
requisicaoDeFechamentoDeSalaAberta: {
|
|
2540
2530
|
tipo: "envia-e-recebe";
|
|
2541
2531
|
payload: {};
|
|
@@ -2907,4 +2897,4 @@ declare function isRegrasUploadArquivoValidas(regras: RegrasUploadArquivo): regr
|
|
|
2907
2897
|
declare function mimeFromFormato(formato: FormatoUploadArquivo): string | null;
|
|
2908
2898
|
declare function acceptFromFormatos(formatos: FormatoUploadArquivo[]): string;
|
|
2909
2899
|
declare function isFormatoImagemBitmap(formato: FormatoUploadArquivo): formato is "webp";
|
|
2910
|
-
export { ARQUIVOS_INTERNOS, ArquivoInternoDef, ArquivoInternoKey, ATRIBUTOS, AtributosDef, AtributosKey, CAPACIDADES, CapacidadeDef, CapacidadeKey, CLASSES, ClassesDef, ClassesKey, ESTATISTICAS_DANIFICAVEIS, EstatisticasDanificaveisDef, EstatisticasDanificaveisKey, PATENTES_PERICIAS, PatentesPericiasDef, PatentesPericiasKey, PERICIAS, PericiasDef, PericiasKey, PERMISSOES_ESTADOS, PermissaoEstadoDef, PermissaoEstadoKey, TIPOS_ARQUIVO, TipoArquivoDef, TipoArquivoKey, TIPOS_GANHO_NIVEL, TiposGanhoNivelDef, TiposGanhoNivelKey, CtxAcesso, temSudoBurlarCapacidades, IPermissoesEstado, PermissoesEstadoDto, IPermissoesItem, PermissoesItemDto, ItemPermissaoDto, ArvoreItensPermissaoDto, IPermissoesUsuario, PermissoesUsuarioDto, IPermissoesUsuariosHistorico, PermissoesUsuariosHistoricoDto, IAprovacaoArquivo, AprovacaoArquivoDto, IArquivo, ArquivoDto, IDetalheArquivoInterno, DetalheArquivoInternoDto, ITipoArquivo, TipoArquivoDto, IArcoAventura, ArcoAventuraDto, IAventura, AventuraDto, IConviteGrupoAventuraPersonagem, ConviteGrupoAventuraPersonagemDto, IGrupoAventura, GrupoAventuraDto, IGrupoAventuraPersonagem, GrupoAventuraPersonagemDto, IRespostaConvite, RespostaConviteDto, IVariavelAmbiente, VariavelAmbienteDto, IConquista, ConquistaDto, ITipoConquista, TipoConquistaDto, IDetalheSessaoAventura, DetalheSessaoAventuraDto, IDetalheSessaoCanonica, DetalheSessaoCanonicaDto, CapituloSessaoCanonica, IDetalheSessaoUnica, DetalheSessaoUnicaDto, IParticipanteSessaoUnica, ParticipanteSessaoUnicaDto, IDisponibilidadeUsuarioHistorico, DisponibilidadeUsuarioHistoricoDto, IJanelaDisponibilidade, JanelaDisponibilidadeDto, DadosJanelaDisponibilidade, DadosDataParaSessao, ITipoFrequencia, TipoFrequenciaDto, IFicha, FichaDto, FichaEmProcessoDeEvolucaoDto, ObjetoFicha, DetalheEvolucao, DetalhesExtras, FichaDeJogo, AtributoFicha, PericiaFicha, EstatisticaDanificavelFicha, DetalheFicha, RegistroPericiaLivre, PaiFichaTipo, PaiFichaRef, DadosEvolucaoFicha, IFichaTemporaria, FichaTemporariaDto, HistoricoDetalhesEvolucao, ICoeficienteGanhoEstatisticaClasse, CoeficienteGanhoEstatisticaClasseDto, IGanhoNivelClasse, GanhoNivelClasseDto, DadosDoTipoGanho, DadosGanho_Atributos, DadosGanho_Pericias, DadosGanho_Estatisticas, DadosGanho_Classes, DadosGanho_ValorMaximoAtributo, DadosGanho_PontosHabilidadesEspeciais, DadosGanho_PontosHabilidadesParanormais, DadosGanho_PontosHabilidadeElemental, IGanhoRelativoCoeficienteAtributo, GanhoRelativoCoeficienteAtributoDto, ITipoGanhoNivel, TipoGanhoNivelDto, IGeracao, GeracaoDto, IImagem, ImagemDto, ITipoImagem, TipoImagemDto, IAlcance, AlcanceDto, IAtributo, AtributoDto, ICategoriaRitual, CategoriaRitualDto, ICirculoRitual, CirculoRitualDto, IClasse, ClasseDto, IDuracao, DuracaoDto, IElemento, ElementoDto, IEstatisticaDanificavel, EstatisticaDanificavelDto, IExecucao, ExecucaoDto, IFormatoAlcance, FormatoAlcanceDto, ILinhaEfeito, LinhaEfeitoDto, INivel, NivelDto, INivelComponente, NivelComponenteDto, INivelProficiencia, NivelProficienciaDto, INivelRitual, NivelRitualDto, IPatentePericia, PatentePericiaDto, IPericia, PericiaDto, IProficiencia, ProficienciaDto, ITipoAlvo, TipoAlvoDto, ITipoCategoria, TipoCategoriaDto, ITipoDano, TipoDanoDto, ITipoEfeito, TipoEfeitoDto, ITipoItem, TipoItemDto, ITipoProficiencia, TipoProficienciaDto, ILink, LinkDto, ITipoLink, TipoLinkDto, IDificuldadeSessao, DificuldadeSessaoDto, IEstiloSessaoMestrada, EstiloSessaoMestradaDto, ITipoSessao, TipoSessaoDto, IPerfilAdmin, PerfilAdminDto, IPerfilJogador, PerfilJogadorDto, IPerfilMestre, PerfilMestreDto, IFichaPersonagem, FichaPersonagemDto, IInformacaoPersonagem, InformacaoPersonagemDto, IPersonagem, PersonagemDto, PersonagemSalaJogoDto, IResumoPersonagemAventura, ResumoPersonagemAventuraDto, ITipoPersonagem, TipoPersonagemDto, IDetalheRascunhoAventura, DetalheRascunhoAventuraDto, IDetalheRascunhoSessaoUnicaCanonica, DetalheRascunhoSessaoUnicaCanonicaDto, IDetalheRascunhoSessaoUnicaNaoCanonica, DetalheRascunhoSessaoUnicaNaoCanonicaDto, IRascunho, RascunhoDto, IEstudo, EstudoDto, IFichaSer, FichaSerDto, ISer, SerDto, IRegistroSessao, RegistroSessaoDto, ISessao, SessaoDto, TipoSessao, TIPO_SESSAO_LABEL, SessaoDadosGerais, ParticipanteSessao, DadosCriacaoSessao, AuthSession, ICustomizacaoUsuario, CustomizacaoUsuarioDto, IDisponibilidadeUsuario, DisponibilidadeUsuarioDto, ListaDisponibilidadesUsuario, DisponibilidadesDDS, JanelaDisponibilidade, IGithubUsuario, GithubUsuarioDto, IUsuario, UsuarioDto, LayoutContextualizadoInicial, SalaDeJogo_Codigo, SalaDeJogoParams, SalaDeJogo_Tipo, SalaDeJogo_Estado, SalaDeJogo_TipoMestre, SalaDeJogo_Mestre, SalaDeJogo_Mestre_Mestrada, SalaDeJogo_Mestre_Inteligente, SalaDeJogo_TipoParticipante, SalaDeJogo_Participante, SalaDeJogo_Participante_Narrador, SalaDeJogo_Participante_Jogador, SalaDeJogo_FUNC_AtualizaParticipanteParams, SalaDeJogoDto, ObjetoEmJogoDto, MenuItemNode, MenuGrupoNode, MenuNode, menuItem, menuGrupo, PaginaLike, ChildKeys, HasChildren, MenuInternoChildren, MenuInternoTree, MenusInternos, PaginaComLayout, HasLayout, ChildKeysByHasLayout, TemFilhos, FilhosDePagina, MenuLayoutLeaf, menuVazio, menuDinamico, MenuLayoutChildren, MenuLayoutNode, RootMenuLayout, MenusInternosLayoutContexto, Brand, ParamSingle, ParamMany, ParamValue, ParamsRecord, ExtrairParamsDoTemplate, PaginaParamsDoTemplate, PaginaInfoBase, PaginaInfoComLayoutContextualizado, PaginaInfo, PaginaTemplate, PaginaDef, PaginaParams, montarHref, LimparUndefinedValue, LimparUndefinedRecord, limparUndefined, pagina, paginaComLayoutContextualizado, RequiredKeys, ParamsProps, toParamsRecord, FormatoUploadArquivo, DimensoesImagem, RequireAtLeastOne, RegraTamanhoArquivo, RegraDimensoesImagem, RegraProporcaoImagem, RegrasUploadBase, RegrasUploadImagem, RegrasUploadArquivo, ResultadoSaveFile, MensagemChatRecebida, SalaChat, SalaChatFront, MensagemChatPayload, PayloadExecutaTestePericia_PROTOTIPO, SOCKET_AcessoUsuario, SOCKET_UsuarioExistente, TelemetryConnectionInfo, WsEventAudienceUnico, WsEventAudienceMultiplo, WsEventAudience, TelemetryEventLog, TelemetrySnapshot, WsErrorResponse, WsUnauthorizedErrorResponse, WsResult, isWsErrorResponse, isWsUnauthorizedErrorResponse, wsErro, wsUnauthorized, wsMap, wsChain, EventoTipo, EmitDelivery, EventoAuthDefault, EventoEnvia, EventoEmite, EventoEnviaERecebe, EventoSchema, GatewayDef, createGateway, EventosWebSocket, isRecord, getEmitDelivery, WsEmitTarget, WsEmitParams, EventosEmiteMap, EventoEmiteAny, PaletaCores, EstruturaPaginaDefinicao, ConteudoItem, DefinicaoElemento, ListaItem, AventuraEstado, EstadoPendenciaPersonagem, EstadoPendenciaAdministrativaPersonagem, EstadoOcupacaoPersonagem, EstadoSessao, DiaDaSemana, obtemDiaDaSemanaPorExtensoPorDDS, NumeroHora24, NumeroMomento, MomentoFormatado24, MomentoFormatado, CargoExibicaoUsuario, CargosUsuario, ObjetoAutenticacao, ObjetoCache, ObjetoPendeciaPersonagem, TipoVariavelAmbiente, ObjetoEvolucaoCompleto, ObjetoEvolucao, ObjetoGanhosEvolucao, GanhoEstatistica, FormatoMomento, DetalheUtilizacaoRascunho, PathTokenPadrao, TituloSessaoInteligente, PermissaoItemMinimo, ListaCapacidadesNecessarias, AcessoPagina, momentoParaMinutos, concatenarDataEHoraEmNovaData, pluralize, minutosParaMs, Gateways, EventoTipoLiteral, FiltraEventosPorTipo, criarEventosFiltrados, Eventos_Envia, Eventos_Emite, Eventos_EnviaERecebe, DecisaoAcessoPagina, ResolverMenuInterno, Opts, decidirAcessoPagina, decidirAcessoPagina_Rec, PAGINAS, Folhas, PaginaFolha, PaginaTemplateFolha, PaginaDestino, PaginaDestinoPagina, PaginaHrefTemplate, PaginaHref, PaginaDefAny, PaginaTemplateAny, filtrarMenuPorAcesso, MENU_PRINCIPAL, MENUS_INTERNOS, MENUS_INTERNOS_LAYOUTCONTEXTO, PaginasNodeValue, PaginasNodeRecord, MenusNodeRecord, isPaginaComLayout, isMenuLeaf, getPaginaKey, MENUS_LAYOUTCONTEXTO_POR_PAGINA, obterMenuInternoLayoutContexto, MENUS_INTERNOS_POR_PAGINA, obterMenuInterno, resolverMenuInterno, ResultadoValidacao, isNumeroInteiroPositivo, isNumeroPositivo, pushErro, validarFormatos, validarTamanho, validarDimensoesDim, validarDimensoesRegra, validarProporcao, validarMaxPixels, validarImagem, validarRegrasUploadArquivo, isRegrasUploadArquivoValidas, mimeFromFormato, acceptFromFormatos, isFormatoImagemBitmap };
|
|
2900
|
+
export { ARQUIVOS_INTERNOS, ArquivoInternoDef, ArquivoInternoKey, ATRIBUTOS, AtributosDef, AtributosKey, CAPACIDADES, CapacidadeDef, CapacidadeKey, CLASSES, ClassesDef, ClassesKey, ESTATISTICAS_DANIFICAVEIS, EstatisticasDanificaveisDef, EstatisticasDanificaveisKey, PATENTES_PERICIAS, PatentesPericiasDef, PatentesPericiasKey, PERICIAS, PericiasDef, PericiasKey, PERMISSOES_ESTADOS, PermissaoEstadoDef, PermissaoEstadoKey, TIPOS_ARQUIVO, TipoArquivoDef, TipoArquivoKey, TIPOS_GANHO_NIVEL, TiposGanhoNivelDef, TiposGanhoNivelKey, CtxAcesso, temSudoBurlarCapacidades, IPermissoesEstado, PermissoesEstadoDto, IPermissoesItem, PermissoesItemDto, ItemPermissaoDto, ArvoreItensPermissaoDto, IPermissoesUsuario, PermissoesUsuarioDto, IPermissoesUsuariosHistorico, PermissoesUsuariosHistoricoDto, IAprovacaoArquivo, AprovacaoArquivoDto, IArquivo, ArquivoDto, IDetalheArquivoInterno, DetalheArquivoInternoDto, ITipoArquivo, TipoArquivoDto, IArcoAventura, ArcoAventuraDto, IAventura, AventuraDto, IConviteGrupoAventuraPersonagem, ConviteGrupoAventuraPersonagemDto, IGrupoAventura, GrupoAventuraDto, IGrupoAventuraPersonagem, GrupoAventuraPersonagemDto, IRespostaConvite, RespostaConviteDto, IVariavelAmbiente, VariavelAmbienteDto, IConquista, ConquistaDto, ITipoConquista, TipoConquistaDto, IDetalheSessaoAventura, DetalheSessaoAventuraDto, IDetalheSessaoCanonica, DetalheSessaoCanonicaDto, CapituloSessaoCanonica, IDetalheSessaoUnica, DetalheSessaoUnicaDto, IFichaAmarradaParticipanteSessaoUnica, FichaAmarradaParticipanteSessaoUnicaDto, IParticipanteSessaoUnica, ParticipanteSessaoUnicaDto, IDisponibilidadeUsuarioHistorico, DisponibilidadeUsuarioHistoricoDto, IJanelaDisponibilidade, JanelaDisponibilidadeDto, DadosJanelaDisponibilidade, DadosDataParaSessao, ITipoFrequencia, TipoFrequenciaDto, IFicha, FichaDto, FichaEmProcessoDeEvolucaoDto, ObjetoFicha, DetalheEvolucao, DetalhesExtras, FichaDeJogo, AtributoFicha, PericiaFicha, EstatisticaDanificavelFicha, DetalheFicha, RegistroPericiaLivre, PaiFichaTipo, PaiFichaRef, DadosEvolucaoFicha, IFichaTemporaria, FichaTemporariaDto, HistoricoDetalhesEvolucao, ICoeficienteGanhoEstatisticaClasse, CoeficienteGanhoEstatisticaClasseDto, IGanhoNivelClasse, GanhoNivelClasseDto, DadosDoTipoGanho, DadosGanho_Atributos, DadosGanho_Pericias, DadosGanho_Estatisticas, DadosGanho_Classes, DadosGanho_ValorMaximoAtributo, DadosGanho_PontosHabilidadesEspeciais, DadosGanho_PontosHabilidadesParanormais, DadosGanho_PontosHabilidadeElemental, IGanhoRelativoCoeficienteAtributo, GanhoRelativoCoeficienteAtributoDto, ITipoGanhoNivel, TipoGanhoNivelDto, IGeracao, GeracaoDto, IImagem, ImagemDto, ITipoImagem, TipoImagemDto, IAlcance, AlcanceDto, IAtributo, AtributoDto, ICategoriaRitual, CategoriaRitualDto, ICirculoRitual, CirculoRitualDto, IClasse, ClasseDto, IDuracao, DuracaoDto, IElemento, ElementoDto, IEstatisticaDanificavel, EstatisticaDanificavelDto, IExecucao, ExecucaoDto, IFormatoAlcance, FormatoAlcanceDto, ILinhaEfeito, LinhaEfeitoDto, INivel, NivelDto, INivelComponente, NivelComponenteDto, INivelProficiencia, NivelProficienciaDto, INivelRitual, NivelRitualDto, IPatentePericia, PatentePericiaDto, IPericia, PericiaDto, IProficiencia, ProficienciaDto, ITipoAlvo, TipoAlvoDto, ITipoCategoria, TipoCategoriaDto, ITipoDano, TipoDanoDto, ITipoEfeito, TipoEfeitoDto, ITipoItem, TipoItemDto, ITipoProficiencia, TipoProficienciaDto, ILink, LinkDto, ITipoLink, TipoLinkDto, IDificuldadeSessao, DificuldadeSessaoDto, IEstiloSessaoMestrada, EstiloSessaoMestradaDto, ITipoSessao, TipoSessaoDto, IPerfilAdmin, PerfilAdminDto, IPerfilJogador, PerfilJogadorDto, IPerfilMestre, PerfilMestreDto, IFichaPersonagem, FichaPersonagemDto, IInformacaoPersonagem, InformacaoPersonagemDto, IPersonagem, PersonagemDto, PersonagemSalaJogoDto, IResumoPersonagemAventura, ResumoPersonagemAventuraDto, ITipoPersonagem, TipoPersonagemDto, IDetalheRascunhoAventura, DetalheRascunhoAventuraDto, IDetalheRascunhoSessaoUnicaCanonica, DetalheRascunhoSessaoUnicaCanonicaDto, IDetalheRascunhoSessaoUnicaNaoCanonica, DetalheRascunhoSessaoUnicaNaoCanonicaDto, IRascunho, RascunhoDto, IEstudo, EstudoDto, IFichaSer, FichaSerDto, ISer, SerDto, IRegistroSessao, RegistroSessaoDto, ISessao, SessaoDto, TipoSessao, TIPO_SESSAO_LABEL, SessaoDadosGerais, ParticipanteSessao, DadosCriacaoSessao, AuthSession, ICustomizacaoUsuario, CustomizacaoUsuarioDto, IDisponibilidadeUsuario, DisponibilidadeUsuarioDto, ListaDisponibilidadesUsuario, DisponibilidadesDDS, JanelaDisponibilidade, IGithubUsuario, GithubUsuarioDto, IUsuario, UsuarioDto, LayoutContextualizadoInicial, SalaDeJogo_Codigo, SalaDeJogoParams, SalaDeJogo_Tipo, SalaDeJogo_Estado, SalaDeJogo_TipoMestre, SalaDeJogo_Mestre, SalaDeJogo_Mestre_Mestrada, SalaDeJogo_Mestre_Inteligente, SalaDeJogo_TipoParticipante, SalaDeJogo_Participante, SalaDeJogo_Participante_Narrador, SalaDeJogo_Participante_Jogador, SalaDeJogo_FUNC_AtualizaParticipanteParams, SalaDeJogoDto, ObjetoEmJogoDto, DadosParticipanteJogo, MenuItemNode, MenuGrupoNode, MenuNode, menuItem, menuGrupo, PaginaLike, ChildKeys, HasChildren, MenuInternoChildren, MenuInternoTree, MenusInternos, PaginaComLayout, HasLayout, ChildKeysByHasLayout, TemFilhos, FilhosDePagina, MenuLayoutLeaf, menuVazio, menuDinamico, MenuLayoutChildren, MenuLayoutNode, RootMenuLayout, MenusInternosLayoutContexto, Brand, ParamSingle, ParamMany, ParamValue, ParamsRecord, ExtrairParamsDoTemplate, PaginaParamsDoTemplate, PaginaInfoBase, PaginaInfoComLayoutContextualizado, PaginaInfo, PaginaTemplate, PaginaDef, PaginaParams, montarHref, LimparUndefinedValue, LimparUndefinedRecord, limparUndefined, pagina, paginaComLayoutContextualizado, RequiredKeys, ParamsProps, toParamsRecord, FormatoUploadArquivo, DimensoesImagem, RequireAtLeastOne, RegraTamanhoArquivo, RegraDimensoesImagem, RegraProporcaoImagem, RegrasUploadBase, RegrasUploadImagem, RegrasUploadArquivo, ResultadoSaveFile, MensagemChatRecebida, SalaChat, SalaChatFront, MensagemChatPayload, PayloadExecutaTestePericia_PROTOTIPO, SOCKET_AcessoUsuario, SOCKET_UsuarioExistente, TelemetryConnectionInfo, WsEventAudienceUnico, WsEventAudienceMultiplo, WsEventAudience, TelemetryEventLog, TelemetrySnapshot, WsErrorResponse, WsUnauthorizedErrorResponse, WsResult, isWsErrorResponse, isWsUnauthorizedErrorResponse, wsErro, wsUnauthorized, wsMap, wsChain, EventoTipo, EmitDelivery, EventoAuthDefault, EventoEnvia, EventoEmite, EventoEnviaERecebe, EventoSchema, GatewayDef, createGateway, EventosWebSocket, isRecord, getEmitDelivery, WsEmitTarget, WsEmitParams, EventosEmiteMap, EventoEmiteAny, PaletaCores, EstruturaPaginaDefinicao, ConteudoItem, DefinicaoElemento, ListaItem, AventuraEstado, EstadoPendenciaPersonagem, EstadoPendenciaAdministrativaPersonagem, EstadoOcupacaoPersonagem, EstadoSessao, DiaDaSemana, obtemDiaDaSemanaPorExtensoPorDDS, NumeroHora24, NumeroMomento, MomentoFormatado24, MomentoFormatado, CargoExibicaoUsuario, CargosUsuario, ObjetoAutenticacao, ObjetoCache, ObjetoPendeciaPersonagem, TipoVariavelAmbiente, ObjetoEvolucaoCompleto, ObjetoEvolucao, ObjetoGanhosEvolucao, GanhoEstatistica, FormatoMomento, DetalheUtilizacaoRascunho, PathTokenPadrao, TituloSessaoInteligente, PermissaoItemMinimo, ListaCapacidadesNecessarias, AcessoPagina, momentoParaMinutos, concatenarDataEHoraEmNovaData, pluralize, minutosParaMs, Gateways, EventoTipoLiteral, FiltraEventosPorTipo, criarEventosFiltrados, Eventos_Envia, Eventos_Emite, Eventos_EnviaERecebe, DecisaoAcessoPagina, ResolverMenuInterno, Opts, decidirAcessoPagina, decidirAcessoPagina_Rec, PAGINAS, Folhas, PaginaFolha, PaginaTemplateFolha, PaginaDestino, PaginaDestinoPagina, PaginaHrefTemplate, PaginaHref, PaginaDefAny, PaginaTemplateAny, filtrarMenuPorAcesso, MENU_PRINCIPAL, MENUS_INTERNOS, MENUS_INTERNOS_LAYOUTCONTEXTO, PaginasNodeValue, PaginasNodeRecord, MenusNodeRecord, isPaginaComLayout, isMenuLeaf, getPaginaKey, MENUS_LAYOUTCONTEXTO_POR_PAGINA, obterMenuInternoLayoutContexto, MENUS_INTERNOS_POR_PAGINA, obterMenuInterno, resolverMenuInterno, ResultadoValidacao, isNumeroInteiroPositivo, isNumeroPositivo, pushErro, validarFormatos, validarTamanho, validarDimensoesDim, validarDimensoesRegra, validarProporcao, validarMaxPixels, validarImagem, validarRegrasUploadArquivo, isRegrasUploadArquivoValidas, mimeFromFormato, acceptFromFormatos, isFormatoImagemBitmap };
|
package/dist/classes.js
CHANGED
|
@@ -334,11 +334,6 @@ var EventosWebSocket;
|
|
|
334
334
|
},
|
|
335
335
|
});
|
|
336
336
|
const Jogo = createGateway({
|
|
337
|
-
requisicaoDeAberturaDeSala: {
|
|
338
|
-
tipo: 'envia-e-recebe',
|
|
339
|
-
payload: { idSessao: 0 },
|
|
340
|
-
response: { codigoSala: {} },
|
|
341
|
-
},
|
|
342
337
|
requisicaoDeFechamentoDeSalaAberta: {
|
|
343
338
|
tipo: 'envia-e-recebe',
|
|
344
339
|
payload: {},
|