types-nora-api 0.0.365 → 0.0.369
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 +667 -475
- package/dist/classes.js +6 -0
- package/package.json +1 -1
package/dist/classes.d.ts
CHANGED
|
@@ -805,24 +805,30 @@ type CtxAcesso = {
|
|
|
805
805
|
cadastroPermitido: boolean;
|
|
806
806
|
};
|
|
807
807
|
declare function temSudoBurlarCapacidades(ctx: CtxAcesso): boolean;
|
|
808
|
-
|
|
808
|
+
type PermissoesEstadoCompletaDto = {
|
|
809
809
|
id: number;
|
|
810
810
|
chave: string;
|
|
811
811
|
descricao: string;
|
|
812
812
|
temPermissao: boolean;
|
|
813
|
-
}
|
|
814
|
-
type
|
|
815
|
-
interface IPermissoesItem {
|
|
813
|
+
};
|
|
814
|
+
type PermissoesItemSemPaiEFilhosDto = {
|
|
816
815
|
id: number;
|
|
817
|
-
|
|
818
|
-
itensFilhos: PermissoesItemDto[];
|
|
819
|
-
usuariosPermitidos: PermissoesUsuarioDto[];
|
|
820
|
-
usuarioCriou: UsuarioDto;
|
|
816
|
+
usuarioCriou: UsuarioCompletaDto;
|
|
821
817
|
codigo: string;
|
|
822
818
|
descricao: string;
|
|
823
819
|
dataCriacao: Date;
|
|
824
|
-
|
|
825
|
-
|
|
820
|
+
usuariosPermitidos: PermissoesUsuarioSemItemDto[];
|
|
821
|
+
};
|
|
822
|
+
type PermissoesItemCompletaDto = {
|
|
823
|
+
id: number;
|
|
824
|
+
itemPai: PermissoesItemSemPaiEFilhosDto | null;
|
|
825
|
+
itensFilhos: PermissoesItemSemPaiEFilhosDto[];
|
|
826
|
+
usuariosPermitidos: PermissoesUsuarioSemItemDto[];
|
|
827
|
+
usuarioCriou: UsuarioCompletaDto;
|
|
828
|
+
codigo: string;
|
|
829
|
+
descricao: string;
|
|
830
|
+
dataCriacao: Date;
|
|
831
|
+
};
|
|
826
832
|
type ItemPermissaoDto = {
|
|
827
833
|
id: number;
|
|
828
834
|
codigo: string;
|
|
@@ -848,67 +854,81 @@ type ArvoreItensPermissaoDto = {
|
|
|
848
854
|
isLockedLeaf: boolean;
|
|
849
855
|
}>;
|
|
850
856
|
};
|
|
851
|
-
|
|
857
|
+
type PermissoesUsuarioSemItemDto = {
|
|
852
858
|
fkPermissoesItemId: number;
|
|
853
859
|
fkUsuarioId: number;
|
|
854
860
|
fkPermissoesEstadoId: number;
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
861
|
+
usuario: UsuarioCompletaDto;
|
|
862
|
+
permissoesEstado: PermissoesEstadoCompletaDto;
|
|
863
|
+
};
|
|
864
|
+
type PermissoesUsuarioCompletaDto = {
|
|
865
|
+
fkPermissoesItemId: number;
|
|
866
|
+
fkUsuarioId: number;
|
|
867
|
+
fkPermissoesEstadoId: number;
|
|
868
|
+
permissoesItem: PermissoesItemSemPaiEFilhosDto;
|
|
869
|
+
usuario: UsuarioCompletaDto;
|
|
870
|
+
permissoesEstado: PermissoesEstadoCompletaDto;
|
|
871
|
+
};
|
|
872
|
+
type PermissoesUsuariosHistoricoCompletaDto = {
|
|
873
|
+
id: number;
|
|
874
|
+
usuario: UsuarioCompletaDto;
|
|
875
|
+
permissaoItem: PermissoesItemSemPaiEFilhosDto;
|
|
876
|
+
permissaoEstadoAnterior: PermissoesEstadoCompletaDto | null;
|
|
877
|
+
permissaoEstadoAtual: PermissoesEstadoCompletaDto;
|
|
878
|
+
usuarioAlterou: UsuarioCompletaDto | null;
|
|
867
879
|
dataCriacao: Date;
|
|
868
880
|
mensagem: string | null;
|
|
869
|
-
}
|
|
870
|
-
type
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
881
|
+
};
|
|
882
|
+
type AprovacaoArquivoSemArquivoDto = {
|
|
883
|
+
fkArquivoId: number;
|
|
884
|
+
usuarioAprovou: UsuarioCompletaDto | null;
|
|
885
|
+
dataAprovacao: Date | null;
|
|
886
|
+
};
|
|
887
|
+
type AprovacaoArquivoCompletaDto = {
|
|
888
|
+
fkArquivoId: number;
|
|
889
|
+
arquivo: ArquivoCompletaDto;
|
|
890
|
+
usuarioAprovou: UsuarioCompletaDto | null;
|
|
891
|
+
dataAprovacao: Date | null;
|
|
892
|
+
};
|
|
893
|
+
type ArquivoCompletaDto = {
|
|
875
894
|
id: number;
|
|
876
|
-
tipoArquivo:
|
|
877
|
-
usuarioAdicionou:
|
|
878
|
-
usuarioAtualizou:
|
|
879
|
-
detalheArquivoInterno:
|
|
895
|
+
tipoArquivo: TipoArquivoCompletaDto;
|
|
896
|
+
usuarioAdicionou: UsuarioCompletaDto;
|
|
897
|
+
usuarioAtualizou: UsuarioCompletaDto | null;
|
|
898
|
+
detalheArquivoInterno: DetalheArquivoInternoSemArquivoDto | null;
|
|
899
|
+
aprovacaoArquivo: AprovacaoArquivoSemArquivoDto | null;
|
|
880
900
|
caminhoArquivo: string;
|
|
881
901
|
tipoMime: string;
|
|
882
902
|
dataCriacao: Date;
|
|
883
903
|
dataAtualizacao: Date | null;
|
|
884
904
|
pendenteAprovacao: boolean;
|
|
885
905
|
nomeGeralArquivo: string | null;
|
|
886
|
-
}
|
|
887
|
-
type
|
|
888
|
-
interface IDetalheArquivoInterno {
|
|
906
|
+
};
|
|
907
|
+
type DetalheArquivoInternoSemArquivoDto = {
|
|
889
908
|
fkArquivoId: number;
|
|
890
|
-
arquivo: ArquivoDto;
|
|
891
909
|
nomeInterno: string;
|
|
892
|
-
}
|
|
893
|
-
type
|
|
894
|
-
|
|
910
|
+
};
|
|
911
|
+
type DetalheArquivoInternoCompletaDto = {
|
|
912
|
+
fkArquivoId: number;
|
|
913
|
+
arquivo: ArquivoCompletaDto;
|
|
914
|
+
nomeInterno: string;
|
|
915
|
+
};
|
|
916
|
+
type TipoArquivoCompletaDto = {
|
|
895
917
|
id: number;
|
|
896
918
|
nome: string;
|
|
897
|
-
}
|
|
898
|
-
type
|
|
899
|
-
interface IArcoAventura {
|
|
919
|
+
};
|
|
920
|
+
type ArcoAventuraCompletaDto = {
|
|
900
921
|
id: number;
|
|
901
922
|
nome: string;
|
|
902
923
|
aplicaNomeArcoAventura: boolean;
|
|
903
|
-
}
|
|
904
|
-
type
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
gruposAventura: GrupoAventuraDto[] | null;
|
|
924
|
+
};
|
|
925
|
+
type AventuraCompletaDto = {
|
|
926
|
+
id: number;
|
|
927
|
+
geracao: GeracaoSemAventurasDto;
|
|
928
|
+
imagemCapa: ImagemCompletaDto | null;
|
|
929
|
+
detalheRascunhoAventura: DetalheRascunhoAventuraCompletaDto | null;
|
|
930
|
+
arco: ArcoAventuraCompletaDto | null;
|
|
931
|
+
gruposAventura: GrupoAventuraCompletaDto[] | null;
|
|
912
932
|
titulo: string;
|
|
913
933
|
dataCriacao: Date;
|
|
914
934
|
nomeCompletoAventura: string;
|
|
@@ -916,27 +936,25 @@ interface IAventura {
|
|
|
916
936
|
estadoAtual: AventuraEstado;
|
|
917
937
|
dataInicioAventura: Date | null;
|
|
918
938
|
dataFimAventura: Date | null;
|
|
919
|
-
}
|
|
920
|
-
type
|
|
921
|
-
interface IConviteGrupoAventuraPersonagem {
|
|
939
|
+
};
|
|
940
|
+
type ConviteGrupoAventuraPersonagemCompletaDto = {
|
|
922
941
|
id: number;
|
|
923
|
-
grupoAventura:
|
|
924
|
-
usuario:
|
|
925
|
-
respostaConvite:
|
|
942
|
+
grupoAventura: GrupoAventuraCompletaDto;
|
|
943
|
+
usuario: UsuarioCompletaDto;
|
|
944
|
+
respostaConvite: RespostaConviteCompletaDto;
|
|
926
945
|
dataCriacao: Date;
|
|
927
|
-
}
|
|
928
|
-
type
|
|
929
|
-
interface IGrupoAventura {
|
|
946
|
+
};
|
|
947
|
+
type GrupoAventuraCompletaDto = {
|
|
930
948
|
id: number;
|
|
931
949
|
nome: string;
|
|
932
|
-
aventura:
|
|
933
|
-
usuarioMestre:
|
|
934
|
-
linkTrailerYoutube:
|
|
935
|
-
linkPlaylistYoutube:
|
|
936
|
-
linkSerieSpotify:
|
|
937
|
-
detalhesSessoesAventuras:
|
|
938
|
-
personagensDaAventura:
|
|
939
|
-
sessaoFinal:
|
|
950
|
+
aventura: AventuraCompletaDto;
|
|
951
|
+
usuarioMestre: UsuarioCompletaDto;
|
|
952
|
+
linkTrailerYoutube: LinkCompletaDto | null;
|
|
953
|
+
linkPlaylistYoutube: LinkCompletaDto | null;
|
|
954
|
+
linkSerieSpotify: LinkCompletaDto | null;
|
|
955
|
+
detalhesSessoesAventuras: DetalheSessaoAventuraCompletaDto[];
|
|
956
|
+
personagensDaAventura: GrupoAventuraPersonagemSemGrupoAventuraDto[];
|
|
957
|
+
sessaoFinal: SessaoCompletaDto | null;
|
|
940
958
|
dataPrevisaoInicio: Date | null;
|
|
941
959
|
ddsPadrao: number | null;
|
|
942
960
|
recorrencia: string | null;
|
|
@@ -946,7 +964,7 @@ interface IGrupoAventura {
|
|
|
946
964
|
dataQueEncerrou: Date | null;
|
|
947
965
|
estadoAtual: AventuraEstado;
|
|
948
966
|
obtemTextoInformacionalOcorrencia: string | null;
|
|
949
|
-
sessaoMaisRecente:
|
|
967
|
+
sessaoMaisRecente: SessaoCompletaDto | null;
|
|
950
968
|
numeroSessoesFinalizadasGrupoAventura: number;
|
|
951
969
|
duracaoGrupoAventuraEmSegundos: number | null;
|
|
952
970
|
tempoProximaSessao: string | null;
|
|
@@ -954,25 +972,39 @@ interface IGrupoAventura {
|
|
|
954
972
|
temCapaConfigurada: boolean;
|
|
955
973
|
caminhoCapa: string;
|
|
956
974
|
};
|
|
957
|
-
}
|
|
958
|
-
type
|
|
959
|
-
interface IGrupoAventuraPersonagem {
|
|
975
|
+
};
|
|
976
|
+
type GrupoAventuraPersonagemSemGrupoAventuraDto = {
|
|
960
977
|
fkGruposAventurasId: number;
|
|
961
978
|
fkPersonagensId: number;
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
979
|
+
personagem: PersonagemCompletaDto;
|
|
980
|
+
};
|
|
981
|
+
type GrupoAventuraPersonagemSemPersonagemDto = {
|
|
982
|
+
fkGruposAventurasId: number;
|
|
983
|
+
fkPersonagensId: number;
|
|
984
|
+
grupoAventura: GrupoAventuraCompletaDto;
|
|
985
|
+
};
|
|
986
|
+
type GrupoAventuraPersonagemCompletaDto = {
|
|
987
|
+
fkGruposAventurasId: number;
|
|
988
|
+
fkPersonagensId: number;
|
|
989
|
+
grupoAventura: GrupoAventuraCompletaDto;
|
|
990
|
+
personagem: PersonagemCompletaDto;
|
|
991
|
+
};
|
|
992
|
+
type RespostaConviteSemConviteDto = {
|
|
967
993
|
fkConviteGrupoAventuraPersonagemId: number;
|
|
968
994
|
fkPersonagensId: number;
|
|
969
|
-
|
|
970
|
-
personagemVinculado: PersonagemDto;
|
|
995
|
+
personagemVinculado: PersonagemCompletaDto;
|
|
971
996
|
dataResposta: Date;
|
|
972
997
|
criouNovoPersonagem: boolean;
|
|
973
|
-
}
|
|
974
|
-
type
|
|
975
|
-
|
|
998
|
+
};
|
|
999
|
+
type RespostaConviteCompletaDto = {
|
|
1000
|
+
fkConviteGrupoAventuraPersonagemId: number;
|
|
1001
|
+
fkPersonagensId: number;
|
|
1002
|
+
convite: ConviteGrupoAventuraPersonagemCompletaDto;
|
|
1003
|
+
personagemVinculado: PersonagemCompletaDto;
|
|
1004
|
+
dataResposta: Date;
|
|
1005
|
+
criouNovoPersonagem: boolean;
|
|
1006
|
+
};
|
|
1007
|
+
type VariavelAmbienteCompletaDto = {
|
|
976
1008
|
id: number;
|
|
977
1009
|
chave: string;
|
|
978
1010
|
tipo: TipoVariavelAmbiente;
|
|
@@ -980,85 +1012,93 @@ interface IVariavelAmbiente {
|
|
|
980
1012
|
descricao: string | null;
|
|
981
1013
|
dataCriacao: Date;
|
|
982
1014
|
dataAtualizacao: Date;
|
|
983
|
-
}
|
|
984
|
-
type
|
|
985
|
-
interface IConquista {
|
|
1015
|
+
};
|
|
1016
|
+
type ConquistaCompletaDto = {
|
|
986
1017
|
id: number;
|
|
987
|
-
tipoConquista:
|
|
1018
|
+
tipoConquista: TipoConquistaCompletaDto;
|
|
988
1019
|
nome: string;
|
|
989
1020
|
descricao: string;
|
|
990
|
-
}
|
|
991
|
-
type
|
|
992
|
-
interface ITipoConquista {
|
|
1021
|
+
};
|
|
1022
|
+
type TipoConquistaCompletaDto = {
|
|
993
1023
|
id: number;
|
|
994
1024
|
nome: string;
|
|
995
|
-
}
|
|
996
|
-
type
|
|
997
|
-
interface IDetalheSessaoAventura {
|
|
1025
|
+
};
|
|
1026
|
+
type DetalheSessaoAventuraCompletaDto = {
|
|
998
1027
|
fkSessaoId: number;
|
|
999
|
-
sessao: SessaoDto;
|
|
1000
|
-
grupoAventura: GrupoAventuraDto;
|
|
1001
1028
|
episodio: number;
|
|
1002
1029
|
episodioPorExtenso: string;
|
|
1003
1030
|
nomeUnico: string;
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1031
|
+
grupoAventura: GrupoAventuraCompletaDto;
|
|
1032
|
+
};
|
|
1033
|
+
type DetalheSessaoCanonicaSemSessaoDto = {
|
|
1007
1034
|
fkSessaoId: number;
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1035
|
+
linkSessaoYoutube: LinkCompletaDto | null;
|
|
1036
|
+
linkSessaoSpotify: LinkCompletaDto | null;
|
|
1037
|
+
capitulos: CapituloSessaoCanonica[] | null;
|
|
1038
|
+
detalhes: string | null;
|
|
1039
|
+
};
|
|
1040
|
+
type DetalheSessaoCanonicaCompletaDto = {
|
|
1041
|
+
fkSessaoId: number;
|
|
1042
|
+
sessao: SessaoCompletaDto;
|
|
1043
|
+
linkSessaoYoutube: LinkCompletaDto | null;
|
|
1044
|
+
linkSessaoSpotify: LinkCompletaDto | null;
|
|
1045
|
+
capitulos: CapituloSessaoCanonica[] | null;
|
|
1046
|
+
detalhes: string | null;
|
|
1047
|
+
};
|
|
1015
1048
|
type CapituloSessaoCanonica = {
|
|
1016
1049
|
descricao: string;
|
|
1017
1050
|
momentoInicioEmSegundos: number;
|
|
1018
1051
|
};
|
|
1019
|
-
|
|
1052
|
+
type DetalheSessaoUnicaCompletaDto = {
|
|
1020
1053
|
fkSessaoId: number;
|
|
1021
|
-
sessao:
|
|
1022
|
-
rascunho
|
|
1023
|
-
usuarioMestre:
|
|
1024
|
-
imagemCapa
|
|
1025
|
-
participantesSessaoUnica:
|
|
1026
|
-
}
|
|
1027
|
-
type
|
|
1028
|
-
interface IFichaAmarradaParticipanteSessaoUnica {
|
|
1054
|
+
sessao: SessaoCompletaDto;
|
|
1055
|
+
rascunho: RascunhoCompletaDto | null;
|
|
1056
|
+
usuarioMestre: UsuarioCompletaDto;
|
|
1057
|
+
imagemCapa: ArquivoCompletaDto | null;
|
|
1058
|
+
participantesSessaoUnica: ParticipanteSessaoUnicaCompletaDto[];
|
|
1059
|
+
};
|
|
1060
|
+
type FichaAmarradaParticipanteSessaoUnicaSemFichaTemporariaDto = {
|
|
1029
1061
|
fkParticipanteSessaoUnicaId: number;
|
|
1030
|
-
participanteSessaoUnica:
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1062
|
+
participanteSessaoUnica: ParticipanteSessaoUnicaCompletaDto;
|
|
1063
|
+
};
|
|
1064
|
+
type FichaAmarradaParticipanteSessaoUnicaCompletaDto = {
|
|
1065
|
+
fkParticipanteSessaoUnicaId: number;
|
|
1066
|
+
participanteSessaoUnica: ParticipanteSessaoUnicaCompletaDto;
|
|
1067
|
+
fichaTemporaria: FichaTemporariaCompletaDto;
|
|
1068
|
+
};
|
|
1069
|
+
type ParticipanteSessaoUnicaSemDetalheSessaoUnicaDto = {
|
|
1035
1070
|
id: number;
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
amarracaoFichaSessaoUnica: FichaAmarradaParticipanteSessaoUnicaDto | null;
|
|
1071
|
+
usuario: UsuarioCompletaDto;
|
|
1072
|
+
personagem: PersonagemCompletaDto | null;
|
|
1073
|
+
amarracaoFichaSessaoUnica: FichaAmarradaParticipanteSessaoUnicaCompletaDto | null;
|
|
1040
1074
|
valido: boolean;
|
|
1041
1075
|
participantePendente: boolean;
|
|
1042
|
-
}
|
|
1043
|
-
type
|
|
1044
|
-
|
|
1076
|
+
};
|
|
1077
|
+
type ParticipanteSessaoUnicaCompletaDto = {
|
|
1078
|
+
id: number;
|
|
1079
|
+
detalheSessaoUnica: DetalheSessaoUnicaCompletaDto;
|
|
1080
|
+
usuario: UsuarioCompletaDto;
|
|
1081
|
+
personagem: PersonagemCompletaDto | null;
|
|
1082
|
+
amarracaoFichaSessaoUnica: FichaAmarradaParticipanteSessaoUnicaCompletaDto | null;
|
|
1083
|
+
valido: boolean;
|
|
1084
|
+
participantePendente: boolean;
|
|
1085
|
+
};
|
|
1086
|
+
type DisponibilidadeUsuarioHistoricoCompletaDto = {
|
|
1045
1087
|
id: number;
|
|
1046
|
-
usuario:
|
|
1088
|
+
usuario: UsuarioCompletaDto;
|
|
1047
1089
|
snapshot: ListaDisponibilidadesUsuario;
|
|
1048
|
-
tipoFrequencia:
|
|
1090
|
+
tipoFrequencia: TipoFrequenciaCompletaDto;
|
|
1049
1091
|
dataCriacao: Date;
|
|
1050
|
-
}
|
|
1051
|
-
type
|
|
1052
|
-
interface IJanelaDisponibilidade {
|
|
1092
|
+
};
|
|
1093
|
+
type JanelaDisponibilidadeCompletaDto = {
|
|
1053
1094
|
id: number;
|
|
1054
|
-
disponibilidadeUsuario:
|
|
1095
|
+
disponibilidadeUsuario: DisponibilidadeUsuarioCompletaDto;
|
|
1055
1096
|
dds: DiaDaSemana;
|
|
1056
1097
|
horaInicio: MomentoFormatado24;
|
|
1057
1098
|
horaFim: MomentoFormatado24;
|
|
1058
1099
|
duracaoEmMinutos: number;
|
|
1059
1100
|
janelaPorExtenso: string;
|
|
1060
|
-
}
|
|
1061
|
-
type JanelaDisponibilidadeDto = IJanelaDisponibilidade;
|
|
1101
|
+
};
|
|
1062
1102
|
type DadosJanelaDisponibilidade = {
|
|
1063
1103
|
dds: DiaDaSemana;
|
|
1064
1104
|
horaInicio: MomentoFormatado24;
|
|
@@ -1069,60 +1109,38 @@ type DadosDataParaSessao = {
|
|
|
1069
1109
|
horaInicio: MomentoFormatado24;
|
|
1070
1110
|
horaFim: MomentoFormatado24;
|
|
1071
1111
|
};
|
|
1072
|
-
|
|
1112
|
+
type TipoFrequenciaCompletaDto = {
|
|
1073
1113
|
id: number;
|
|
1074
1114
|
nome: string;
|
|
1075
|
-
}
|
|
1076
|
-
type
|
|
1077
|
-
interface IFicha {
|
|
1115
|
+
};
|
|
1116
|
+
type FichaCompletaDto = {
|
|
1078
1117
|
id: number;
|
|
1079
|
-
fichaPersonagem:
|
|
1080
|
-
fichaTemporaria:
|
|
1081
|
-
fichaSer:
|
|
1118
|
+
fichaPersonagem: FichaPersonagemCompletaDto | null;
|
|
1119
|
+
fichaTemporaria: FichaTemporariaCompletaDto | null;
|
|
1120
|
+
fichaSer: FichaSerCompletaDto | null;
|
|
1082
1121
|
dataAtualizacao: Date;
|
|
1083
|
-
ficha:
|
|
1122
|
+
ficha: J_FichaPersistida;
|
|
1084
1123
|
detalhesEvolucao: DetalheEvolucao[];
|
|
1085
|
-
fichaDeJogo: FichaDeJogo | null;
|
|
1086
1124
|
pai: PaiFichaRef;
|
|
1087
1125
|
paiTipo: PaiFichaTipo;
|
|
1088
1126
|
nome: string | null;
|
|
1089
1127
|
nomeComDetalhe: string | null;
|
|
1090
|
-
nivel:
|
|
1091
|
-
usuario:
|
|
1092
|
-
}
|
|
1093
|
-
type FichaDto = IFicha;
|
|
1128
|
+
nivel: NivelCompletaDto | null;
|
|
1129
|
+
usuario: UsuarioCompletaDto | null;
|
|
1130
|
+
};
|
|
1094
1131
|
type FichaEmProcessoDeEvolucaoDto = {
|
|
1095
1132
|
id: number;
|
|
1096
|
-
fichaPersonagem:
|
|
1097
|
-
fichaTemporaria:
|
|
1098
|
-
fichaSer:
|
|
1133
|
+
fichaPersonagem: FichaPersonagemCompletaDto | null;
|
|
1134
|
+
fichaTemporaria: FichaTemporariaCompletaDto | null;
|
|
1135
|
+
fichaSer: FichaSerCompletaDto | null;
|
|
1099
1136
|
dataAtualizacao: Date;
|
|
1100
|
-
ficha:
|
|
1137
|
+
ficha: J_FichaPersistida;
|
|
1101
1138
|
detalhesEvolucao: DetalheEvolucao[];
|
|
1102
1139
|
fichaDeJogo: FichaDeJogo;
|
|
1103
1140
|
paiTipo: PaiFichaTipo;
|
|
1104
1141
|
nome: string | null;
|
|
1105
1142
|
nomeComDetalhe: string | null;
|
|
1106
|
-
nivel:
|
|
1107
|
-
};
|
|
1108
|
-
type ObjetoFicha = {
|
|
1109
|
-
atributos: {
|
|
1110
|
-
id: number;
|
|
1111
|
-
valor: number;
|
|
1112
|
-
}[];
|
|
1113
|
-
pericias: {
|
|
1114
|
-
id: number;
|
|
1115
|
-
idPatente: number;
|
|
1116
|
-
}[];
|
|
1117
|
-
estatisticasDanificaveis: {
|
|
1118
|
-
id: number;
|
|
1119
|
-
valorMaximo: number;
|
|
1120
|
-
}[];
|
|
1121
|
-
classe: {
|
|
1122
|
-
id: number;
|
|
1123
|
-
};
|
|
1124
|
-
detalhe: DetalheFicha;
|
|
1125
|
-
detalhesUsoEvolucaoPericiasLivres: RegistroPericiaLivre[];
|
|
1143
|
+
nivel: NivelCompletaDto;
|
|
1126
1144
|
};
|
|
1127
1145
|
type DetalheEvolucao = {
|
|
1128
1146
|
etapa: string;
|
|
@@ -1134,24 +1152,24 @@ type FichaDeJogo = {
|
|
|
1134
1152
|
pericias: PericiaFicha[];
|
|
1135
1153
|
estatisticasDanificaveis: EstatisticaDanificavelFicha[];
|
|
1136
1154
|
detalhe: DetalheFicha;
|
|
1137
|
-
classe:
|
|
1155
|
+
classe: ClasseCompletaDto;
|
|
1138
1156
|
detalhesUsoEvolucaoPericiasLivres: RegistroPericiaLivre[];
|
|
1139
1157
|
};
|
|
1140
1158
|
type AtributoFicha = {
|
|
1141
|
-
atributo:
|
|
1159
|
+
atributo: AtributoCompletaDto;
|
|
1142
1160
|
valor: number;
|
|
1143
1161
|
valorTotal: number;
|
|
1144
1162
|
detalhesValor: string[];
|
|
1145
1163
|
};
|
|
1146
1164
|
type PericiaFicha = {
|
|
1147
|
-
pericia:
|
|
1148
|
-
patentePericia:
|
|
1165
|
+
pericia: PericiaCompletaDto;
|
|
1166
|
+
patentePericia: PatentePericiaCompletaDto;
|
|
1149
1167
|
valorEfeito: number;
|
|
1150
1168
|
valorTotal: number;
|
|
1151
1169
|
detalhesValor: string[];
|
|
1152
1170
|
};
|
|
1153
1171
|
type EstatisticaDanificavelFicha = {
|
|
1154
|
-
estatisticaDanificavel:
|
|
1172
|
+
estatisticaDanificavel: EstatisticaDanificavelCompletaDto;
|
|
1155
1173
|
valorMaximo: number;
|
|
1156
1174
|
};
|
|
1157
1175
|
type DetalheFicha = {
|
|
@@ -1167,50 +1185,58 @@ type RegistroPericiaLivre = {
|
|
|
1167
1185
|
type PaiFichaTipo = 'PERSONAGEM' | 'TEMPORARIA' | 'SER';
|
|
1168
1186
|
type PaiFichaRef = {
|
|
1169
1187
|
tipo: 'PERSONAGEM';
|
|
1170
|
-
ref:
|
|
1188
|
+
ref: FichaPersonagemSemPersonagemDto;
|
|
1171
1189
|
} | {
|
|
1172
1190
|
tipo: 'TEMPORARIA';
|
|
1173
|
-
ref:
|
|
1191
|
+
ref: FichaTemporariaSemFichaDto;
|
|
1174
1192
|
} | {
|
|
1175
1193
|
tipo: 'SER';
|
|
1176
|
-
ref:
|
|
1194
|
+
ref: FichaSerSemFichaDto;
|
|
1177
1195
|
};
|
|
1178
1196
|
type DadosEvolucaoFicha = {
|
|
1179
1197
|
fichaDeJogo: FichaDeJogo;
|
|
1180
1198
|
detalhesEvolucao: DetalheEvolucao[];
|
|
1181
1199
|
};
|
|
1182
|
-
|
|
1200
|
+
type FichaTemporariaCompletaDto = {
|
|
1183
1201
|
id: number;
|
|
1184
|
-
usuario:
|
|
1185
|
-
ficha:
|
|
1186
|
-
nivel:
|
|
1187
|
-
amarracaoFichaSessaoUnica:
|
|
1202
|
+
usuario: UsuarioCompletaDto;
|
|
1203
|
+
ficha: FichaCompletaDto;
|
|
1204
|
+
nivel: NivelCompletaDto;
|
|
1205
|
+
amarracaoFichaSessaoUnica: FichaAmarradaParticipanteSessaoUnicaSemFichaTemporariaDto | null;
|
|
1188
1206
|
dataAtualizacao: Date;
|
|
1189
1207
|
historicoDetalhesEvolucao: HistoricoDetalhesEvolucao;
|
|
1190
1208
|
nome: string;
|
|
1191
1209
|
descricao: string | null;
|
|
1192
|
-
detalheSessaoUnicaAmarrada:
|
|
1193
|
-
}
|
|
1194
|
-
type
|
|
1210
|
+
detalheSessaoUnicaAmarrada: DetalheSessaoUnicaCompletaDto | null;
|
|
1211
|
+
};
|
|
1212
|
+
type FichaTemporariaSemFichaDto = {
|
|
1213
|
+
id: number;
|
|
1214
|
+
usuario: UsuarioCompletaDto;
|
|
1215
|
+
nivel: NivelCompletaDto;
|
|
1216
|
+
amarracaoFichaSessaoUnica: FichaAmarradaParticipanteSessaoUnicaSemFichaTemporariaDto | null;
|
|
1217
|
+
dataAtualizacao: Date;
|
|
1218
|
+
historicoDetalhesEvolucao: HistoricoDetalhesEvolucao;
|
|
1219
|
+
nome: string;
|
|
1220
|
+
descricao: string | null;
|
|
1221
|
+
detalheSessaoUnicaAmarrada: DetalheSessaoUnicaCompletaDto | null;
|
|
1222
|
+
};
|
|
1195
1223
|
type HistoricoDetalhesEvolucao = DetalheEvolucao[][];
|
|
1196
|
-
|
|
1224
|
+
type CoeficienteGanhoEstatisticaClasseCompletaDto = {
|
|
1197
1225
|
id: number;
|
|
1198
|
-
classe:
|
|
1199
|
-
estatisticaDanificavel:
|
|
1200
|
-
ganhosRelativos:
|
|
1226
|
+
classe: ClasseCompletaDto;
|
|
1227
|
+
estatisticaDanificavel: EstatisticaDanificavelCompletaDto;
|
|
1228
|
+
ganhosRelativos: GanhoRelativoCoeficienteAtributoCompletaDto[];
|
|
1201
1229
|
coeficiente: number;
|
|
1202
|
-
}
|
|
1203
|
-
type
|
|
1204
|
-
interface IGanhoNivelClasse {
|
|
1230
|
+
};
|
|
1231
|
+
type GanhoNivelClasseCompletaDto = {
|
|
1205
1232
|
fkNivelId: number;
|
|
1206
1233
|
fkTipoGanhoNivelId: number;
|
|
1207
1234
|
fkClassesId: number;
|
|
1208
|
-
nivel:
|
|
1209
|
-
tipoGanhoNivel:
|
|
1210
|
-
classe:
|
|
1235
|
+
nivel: NivelCompletaDto;
|
|
1236
|
+
tipoGanhoNivel: TipoGanhoNivelCompletaDto;
|
|
1237
|
+
classe: ClasseCompletaDto;
|
|
1211
1238
|
dados: DadosDoTipoGanho;
|
|
1212
|
-
}
|
|
1213
|
-
type GanhoNivelClasseDto = IGanhoNivelClasse;
|
|
1239
|
+
};
|
|
1214
1240
|
type DadosDoTipoGanho = DadosGanho_Atributos | DadosGanho_Pericias | DadosGanho_Estatisticas | DadosGanho_Classes | DadosGanho_ValorMaximoAtributo | DadosGanho_PontosHabilidadesEspeciais | DadosGanho_PontosHabilidadesParanormais | DadosGanho_PontosHabilidadeElemental;
|
|
1215
1241
|
type DadosGanho_Atributos = {
|
|
1216
1242
|
ganhos: number;
|
|
@@ -1246,34 +1272,42 @@ type DadosGanho_PontosHabilidadesParanormais = {
|
|
|
1246
1272
|
type DadosGanho_PontosHabilidadeElemental = {
|
|
1247
1273
|
valorAumento: number;
|
|
1248
1274
|
};
|
|
1249
|
-
|
|
1275
|
+
type GanhoRelativoCoeficienteAtributoSemCoeficienteDto = {
|
|
1250
1276
|
fkCoeficientesGanhoEstatisticaClasseId: number;
|
|
1251
1277
|
fkAtributosId: number;
|
|
1252
|
-
|
|
1253
|
-
atributo: AtributoDto;
|
|
1278
|
+
atributo: AtributoCompletaDto;
|
|
1254
1279
|
valorPorcentagem: number;
|
|
1255
|
-
}
|
|
1256
|
-
type
|
|
1257
|
-
|
|
1280
|
+
};
|
|
1281
|
+
type GanhoRelativoCoeficienteAtributoCompletaDto = {
|
|
1282
|
+
fkCoeficientesGanhoEstatisticaClasseId: number;
|
|
1283
|
+
fkAtributosId: number;
|
|
1284
|
+
coeficiente: CoeficienteGanhoEstatisticaClasseCompletaDto;
|
|
1285
|
+
atributo: AtributoCompletaDto;
|
|
1286
|
+
valorPorcentagem: number;
|
|
1287
|
+
};
|
|
1288
|
+
type TipoGanhoNivelCompletaDto = {
|
|
1258
1289
|
id: number;
|
|
1259
1290
|
nome: string;
|
|
1260
1291
|
ordem: number;
|
|
1261
|
-
}
|
|
1262
|
-
type
|
|
1263
|
-
interface IGeracao {
|
|
1292
|
+
};
|
|
1293
|
+
type GeracaoSemAventurasDto = {
|
|
1264
1294
|
id: number;
|
|
1265
|
-
aventuras: AventuraDto[] | null;
|
|
1266
1295
|
nome: string | null;
|
|
1267
1296
|
anoInicio: number | null;
|
|
1268
|
-
}
|
|
1269
|
-
type
|
|
1270
|
-
|
|
1297
|
+
};
|
|
1298
|
+
type GeracaoCompletaDto = {
|
|
1299
|
+
id: number;
|
|
1300
|
+
aventuras: AventuraCompletaDto[] | null;
|
|
1301
|
+
nome: string | null;
|
|
1302
|
+
anoInicio: number | null;
|
|
1303
|
+
};
|
|
1304
|
+
type ImagemCompletaDto = {
|
|
1271
1305
|
id: number;
|
|
1272
1306
|
uuid: string;
|
|
1273
|
-
validatedBy:
|
|
1274
|
-
usuario:
|
|
1275
|
-
uploader:
|
|
1276
|
-
tipoImagem:
|
|
1307
|
+
validatedBy: UsuarioCompletaDto | null;
|
|
1308
|
+
usuario: UsuarioCompletaDto | null;
|
|
1309
|
+
uploader: UsuarioCompletaDto | null;
|
|
1310
|
+
tipoImagem: TipoImagemCompletaDto;
|
|
1277
1311
|
filename: string;
|
|
1278
1312
|
status: string;
|
|
1279
1313
|
resolution: string;
|
|
@@ -1287,106 +1321,96 @@ interface IImagem {
|
|
|
1287
1321
|
createdAt: Date;
|
|
1288
1322
|
updatedAt: Date;
|
|
1289
1323
|
fullPath: string;
|
|
1290
|
-
}
|
|
1291
|
-
type
|
|
1292
|
-
interface ITipoImagem {
|
|
1324
|
+
};
|
|
1325
|
+
type TipoImagemCompletaDto = {
|
|
1293
1326
|
id: number;
|
|
1294
1327
|
nome: string;
|
|
1295
|
-
}
|
|
1296
|
-
type
|
|
1297
|
-
interface IAlcance {
|
|
1328
|
+
};
|
|
1329
|
+
type AlcanceCompletaDto = {
|
|
1298
1330
|
id: number;
|
|
1299
1331
|
nome: string;
|
|
1300
1332
|
numeroMetros: number;
|
|
1301
1333
|
descricao: string | null;
|
|
1302
|
-
}
|
|
1303
|
-
type
|
|
1304
|
-
interface IAtributo {
|
|
1334
|
+
};
|
|
1335
|
+
type AtributoSemPericiasDto = {
|
|
1305
1336
|
id: number;
|
|
1306
|
-
linhaEfeito:
|
|
1307
|
-
pericias: PericiaDto[];
|
|
1337
|
+
linhaEfeito: LinhaEfeitoCompletaDto;
|
|
1308
1338
|
nome: string;
|
|
1309
1339
|
descricao: string;
|
|
1310
1340
|
nomeAbreviado: string;
|
|
1311
|
-
}
|
|
1312
|
-
type
|
|
1313
|
-
interface ICategoriaRitual {
|
|
1341
|
+
};
|
|
1342
|
+
type AtributoCompletaDto = {
|
|
1314
1343
|
id: number;
|
|
1315
|
-
|
|
1316
|
-
|
|
1344
|
+
linhaEfeito: LinhaEfeitoCompletaDto;
|
|
1345
|
+
pericias: PericiaCompletaDto[];
|
|
1346
|
+
nome: string;
|
|
1347
|
+
descricao: string;
|
|
1348
|
+
nomeAbreviado: string;
|
|
1349
|
+
};
|
|
1350
|
+
type CategoriaRitualCompletaDto = {
|
|
1351
|
+
id: number;
|
|
1352
|
+
circuloRitual: CirculoRitualCompletaDto;
|
|
1353
|
+
nivelRitual: NivelRitualCompletaDto;
|
|
1317
1354
|
valorPsSacrificado: number;
|
|
1318
1355
|
nome: string;
|
|
1319
|
-
}
|
|
1320
|
-
type
|
|
1321
|
-
interface ICirculoRitual {
|
|
1356
|
+
};
|
|
1357
|
+
type CirculoRitualCompletaDto = {
|
|
1322
1358
|
id: number;
|
|
1323
1359
|
nome: string;
|
|
1324
1360
|
nomeCompleto: string;
|
|
1325
|
-
}
|
|
1326
|
-
type
|
|
1327
|
-
interface IClasse {
|
|
1361
|
+
};
|
|
1362
|
+
type ClasseCompletaDto = {
|
|
1328
1363
|
id: number;
|
|
1329
1364
|
nome: string;
|
|
1330
1365
|
descricao: string;
|
|
1331
|
-
}
|
|
1332
|
-
type
|
|
1333
|
-
interface IDuracao {
|
|
1366
|
+
};
|
|
1367
|
+
type DuracaoCompletaDto = {
|
|
1334
1368
|
id: number;
|
|
1335
1369
|
nome: string;
|
|
1336
|
-
}
|
|
1337
|
-
type
|
|
1338
|
-
interface IElemento {
|
|
1370
|
+
};
|
|
1371
|
+
type ElementoCompletaDto = {
|
|
1339
1372
|
id: number;
|
|
1340
1373
|
nome: string;
|
|
1341
1374
|
cores: PaletaCores;
|
|
1342
|
-
}
|
|
1343
|
-
type
|
|
1344
|
-
interface IEstatisticaDanificavel {
|
|
1375
|
+
};
|
|
1376
|
+
type EstatisticaDanificavelCompletaDto = {
|
|
1345
1377
|
id: number;
|
|
1346
1378
|
nome: string;
|
|
1347
1379
|
cor: string;
|
|
1348
1380
|
descricao: string;
|
|
1349
1381
|
nomeAbreviado: string;
|
|
1350
|
-
}
|
|
1351
|
-
type
|
|
1352
|
-
interface IExecucao {
|
|
1382
|
+
};
|
|
1383
|
+
type ExecucaoCompletaDto = {
|
|
1353
1384
|
id: number;
|
|
1354
|
-
linhaEfeito:
|
|
1385
|
+
linhaEfeito: LinhaEfeitoCompletaDto;
|
|
1355
1386
|
nome: string;
|
|
1356
|
-
}
|
|
1357
|
-
type
|
|
1358
|
-
interface IFormatoAlcance {
|
|
1387
|
+
};
|
|
1388
|
+
type FormatoAlcanceCompletaDto = {
|
|
1359
1389
|
id: number;
|
|
1360
1390
|
nome: string;
|
|
1361
|
-
}
|
|
1362
|
-
type
|
|
1363
|
-
interface ILinhaEfeito {
|
|
1391
|
+
};
|
|
1392
|
+
type LinhaEfeitoCompletaDto = {
|
|
1364
1393
|
id: number;
|
|
1365
1394
|
nome: string;
|
|
1366
|
-
}
|
|
1367
|
-
type
|
|
1368
|
-
interface INivel {
|
|
1395
|
+
};
|
|
1396
|
+
type NivelCompletaDto = {
|
|
1369
1397
|
id: number;
|
|
1370
1398
|
valorNivel: number;
|
|
1371
1399
|
nomeVisualizacao: string;
|
|
1372
|
-
}
|
|
1373
|
-
type
|
|
1374
|
-
interface INivelComponente {
|
|
1400
|
+
};
|
|
1401
|
+
type NivelComponenteCompletaDto = {
|
|
1375
1402
|
id: number;
|
|
1376
1403
|
nome: string;
|
|
1377
|
-
}
|
|
1378
|
-
type
|
|
1379
|
-
interface INivelProficiencia {
|
|
1404
|
+
};
|
|
1405
|
+
type NivelProficienciaCompletaDto = {
|
|
1380
1406
|
id: number;
|
|
1381
1407
|
nivel: number;
|
|
1382
|
-
}
|
|
1383
|
-
type
|
|
1384
|
-
interface INivelRitual {
|
|
1408
|
+
};
|
|
1409
|
+
type NivelRitualCompletaDto = {
|
|
1385
1410
|
id: number;
|
|
1386
1411
|
nome: string;
|
|
1387
|
-
}
|
|
1388
|
-
type
|
|
1389
|
-
interface IPatentePericia {
|
|
1412
|
+
};
|
|
1413
|
+
type PatentePericiaCompletaDto = {
|
|
1390
1414
|
id: number;
|
|
1391
1415
|
nome: string;
|
|
1392
1416
|
varianciaQualidadeAcao: number;
|
|
@@ -1394,254 +1418,293 @@ interface IPatentePericia {
|
|
|
1394
1418
|
descricao: string;
|
|
1395
1419
|
cor: string;
|
|
1396
1420
|
nomeAbreviado: string;
|
|
1397
|
-
}
|
|
1398
|
-
type
|
|
1399
|
-
interface IPericia {
|
|
1421
|
+
};
|
|
1422
|
+
type PericiaCompletaDto = {
|
|
1400
1423
|
id: number;
|
|
1401
|
-
atributo:
|
|
1402
|
-
linhaEfeito:
|
|
1424
|
+
atributo: AtributoSemPericiasDto;
|
|
1425
|
+
linhaEfeito: LinhaEfeitoCompletaDto;
|
|
1403
1426
|
nome: string;
|
|
1404
1427
|
descricao: string;
|
|
1405
1428
|
nomeAbreviado: string;
|
|
1406
|
-
}
|
|
1407
|
-
type
|
|
1408
|
-
interface IProficiencia {
|
|
1429
|
+
};
|
|
1430
|
+
type ProficienciaCompletaDto = {
|
|
1409
1431
|
id: number;
|
|
1410
|
-
tipoProficiencia:
|
|
1411
|
-
nivelProficiencia:
|
|
1432
|
+
tipoProficiencia: TipoProficienciaCompletaDto;
|
|
1433
|
+
nivelProficiencia: NivelProficienciaCompletaDto;
|
|
1412
1434
|
nome: string;
|
|
1413
|
-
}
|
|
1414
|
-
type
|
|
1415
|
-
interface ITipoAlvo {
|
|
1435
|
+
};
|
|
1436
|
+
type TipoAlvoCompletaDto = {
|
|
1416
1437
|
id: number;
|
|
1417
1438
|
nome: string;
|
|
1418
|
-
}
|
|
1419
|
-
type
|
|
1420
|
-
interface ITipoCategoria {
|
|
1439
|
+
};
|
|
1440
|
+
type TipoCategoriaCompletaDto = {
|
|
1421
1441
|
id: number;
|
|
1422
1442
|
valor: number;
|
|
1423
1443
|
nome: string;
|
|
1424
|
-
}
|
|
1425
|
-
type
|
|
1426
|
-
interface ITipoDano {
|
|
1444
|
+
};
|
|
1445
|
+
type TipoDanoSemPaiDto = {
|
|
1427
1446
|
id: number;
|
|
1428
|
-
linhaEfeito:
|
|
1429
|
-
tipoDanoPertencente: TipoDanoDto | null;
|
|
1447
|
+
linhaEfeito: LinhaEfeitoCompletaDto;
|
|
1430
1448
|
nome: string;
|
|
1431
|
-
}
|
|
1432
|
-
type
|
|
1433
|
-
|
|
1449
|
+
};
|
|
1450
|
+
type TipoDanoCompletaDto = {
|
|
1451
|
+
id: number;
|
|
1452
|
+
linhaEfeito: LinhaEfeitoCompletaDto;
|
|
1453
|
+
tipoDanoPertencente: TipoDanoSemPaiDto | null;
|
|
1454
|
+
nome: string;
|
|
1455
|
+
};
|
|
1456
|
+
type TipoEfeitoCompletaDto = {
|
|
1434
1457
|
id: number;
|
|
1435
1458
|
nome: string;
|
|
1436
1459
|
nomeVisualizacao: string;
|
|
1437
|
-
}
|
|
1438
|
-
type
|
|
1439
|
-
interface ITipoItem {
|
|
1460
|
+
};
|
|
1461
|
+
type TipoItemCompletaDto = {
|
|
1440
1462
|
id: number;
|
|
1441
1463
|
nome: string;
|
|
1442
|
-
}
|
|
1443
|
-
type
|
|
1444
|
-
interface ITipoProficiencia {
|
|
1464
|
+
};
|
|
1465
|
+
type TipoProficienciaCompletaDto = {
|
|
1445
1466
|
id: number;
|
|
1446
1467
|
nome: string;
|
|
1447
|
-
}
|
|
1448
|
-
type
|
|
1449
|
-
interface ILink {
|
|
1468
|
+
};
|
|
1469
|
+
type LinkCompletaDto = {
|
|
1450
1470
|
id: number;
|
|
1451
|
-
tipoLink:
|
|
1471
|
+
tipoLink: TipoLinkCompletaDto;
|
|
1452
1472
|
sufixo: string;
|
|
1453
1473
|
descricao: string;
|
|
1454
1474
|
dataCriacao: Date;
|
|
1455
1475
|
urlCompleta: string | null;
|
|
1456
|
-
}
|
|
1457
|
-
type
|
|
1458
|
-
interface ITipoLink {
|
|
1476
|
+
};
|
|
1477
|
+
type TipoLinkCompletaDto = {
|
|
1459
1478
|
id: number;
|
|
1460
1479
|
nome: string;
|
|
1461
1480
|
prefixo: string;
|
|
1462
|
-
}
|
|
1463
|
-
type
|
|
1464
|
-
interface IDificuldadeSessao {
|
|
1481
|
+
};
|
|
1482
|
+
type DificuldadeSessaoCompletaDto = {
|
|
1465
1483
|
id: number;
|
|
1466
1484
|
descricao: string;
|
|
1467
|
-
}
|
|
1468
|
-
type
|
|
1469
|
-
interface IEstiloSessaoMestrada {
|
|
1485
|
+
};
|
|
1486
|
+
type EstiloSessaoMestradaCompletaDto = {
|
|
1470
1487
|
id: number;
|
|
1471
1488
|
descricao: string;
|
|
1472
1489
|
ehSessaoUnica: boolean;
|
|
1473
|
-
}
|
|
1474
|
-
type
|
|
1475
|
-
interface ITipoSessao {
|
|
1490
|
+
};
|
|
1491
|
+
type TipoSessaoCompletaDto = {
|
|
1476
1492
|
id: number;
|
|
1477
1493
|
descricao: string;
|
|
1478
|
-
}
|
|
1479
|
-
type
|
|
1480
|
-
interface IPerfilAdmin {
|
|
1494
|
+
};
|
|
1495
|
+
type PerfilAdminCompletaDto = {
|
|
1481
1496
|
id: number;
|
|
1482
1497
|
nome: string;
|
|
1483
1498
|
descricao: string;
|
|
1484
|
-
}
|
|
1485
|
-
type
|
|
1486
|
-
interface IPerfilJogador {
|
|
1499
|
+
};
|
|
1500
|
+
type PerfilJogadorCompletaDto = {
|
|
1487
1501
|
id: number;
|
|
1488
1502
|
nome: string;
|
|
1489
1503
|
descricao: string;
|
|
1490
|
-
}
|
|
1491
|
-
type
|
|
1492
|
-
interface IPerfilMestre {
|
|
1504
|
+
};
|
|
1505
|
+
type PerfilMestreCompletaDto = {
|
|
1493
1506
|
id: number;
|
|
1494
1507
|
nome: string;
|
|
1495
1508
|
descricao: string;
|
|
1496
|
-
}
|
|
1497
|
-
type
|
|
1498
|
-
interface IFichaPersonagem {
|
|
1509
|
+
};
|
|
1510
|
+
type FichaPersonagemSemFichaDto = {
|
|
1499
1511
|
fkPersonagensId: number;
|
|
1500
1512
|
fkNiveisId: number;
|
|
1501
|
-
personagem:
|
|
1502
|
-
nivel:
|
|
1503
|
-
|
|
1504
|
-
|
|
1505
|
-
|
|
1506
|
-
|
|
1513
|
+
personagem: PersonagemCompletaDto;
|
|
1514
|
+
nivel: NivelCompletaDto;
|
|
1515
|
+
};
|
|
1516
|
+
type FichaPersonagemSemPersonagemDto = {
|
|
1517
|
+
fkPersonagensId: number;
|
|
1518
|
+
fkNiveisId: number;
|
|
1519
|
+
nivel: NivelCompletaDto;
|
|
1520
|
+
ficha: FichaCompletaDto;
|
|
1521
|
+
};
|
|
1522
|
+
type FichaPersonagemCompletaDto = {
|
|
1523
|
+
fkPersonagensId: number;
|
|
1524
|
+
fkNiveisId: number;
|
|
1525
|
+
personagem: PersonagemCompletaDto;
|
|
1526
|
+
nivel: NivelCompletaDto;
|
|
1527
|
+
ficha: FichaCompletaDto;
|
|
1528
|
+
};
|
|
1529
|
+
type InformacaoPersonagemSemPersonagemDto = {
|
|
1507
1530
|
fkPersonagensId: number;
|
|
1508
|
-
personagem: PersonagemDto;
|
|
1509
1531
|
nome: string;
|
|
1510
1532
|
anoNascimento: number;
|
|
1511
|
-
}
|
|
1512
|
-
type
|
|
1513
|
-
|
|
1514
|
-
|
|
1515
|
-
|
|
1516
|
-
|
|
1517
|
-
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
|
|
1521
|
-
|
|
1522
|
-
|
|
1533
|
+
};
|
|
1534
|
+
type InformacaoPersonagemCompletaDto = {
|
|
1535
|
+
fkPersonagensId: number;
|
|
1536
|
+
personagem: PersonagemCompletaDto;
|
|
1537
|
+
nome: string;
|
|
1538
|
+
anoNascimento: number;
|
|
1539
|
+
};
|
|
1540
|
+
type PersonagemCompletaDto = {
|
|
1541
|
+
id: number;
|
|
1542
|
+
tipoPersonagem: TipoPersonagemCompletaDto;
|
|
1543
|
+
nivelVigente: NivelCompletaDto | null;
|
|
1544
|
+
usuario: UsuarioCompletaDto;
|
|
1545
|
+
imagemAvatar: ImagemCompletaDto | null;
|
|
1546
|
+
informacao: InformacaoPersonagemSemPersonagemDto;
|
|
1547
|
+
gruposAventuraPersonagem: GrupoAventuraPersonagemSemPersonagemDto[] | null;
|
|
1548
|
+
resumosPersonagemAventura: ResumoPersonagemAventuraCompletaDto[] | null;
|
|
1523
1549
|
caminhoAvatar: string;
|
|
1524
|
-
fichaVigente: FichaPersonagemDto | null;
|
|
1525
1550
|
temCriacaoPendente: boolean;
|
|
1526
1551
|
temEvolucaoPendente: boolean;
|
|
1527
1552
|
pendencias: ObjetoPendeciaPersonagem;
|
|
1528
|
-
ultimoGrupoParticipado:
|
|
1553
|
+
ultimoGrupoParticipado: GrupoAventuraPersonagemSemPersonagemDto | null;
|
|
1529
1554
|
indexEstadoOcupacaoAtual: EstadoOcupacaoPersonagem;
|
|
1530
1555
|
mensagemEstadoOcupacao: string;
|
|
1531
1556
|
tempoProximaSessaoPersonagem: string;
|
|
1532
|
-
}
|
|
1533
|
-
type
|
|
1534
|
-
type
|
|
1535
|
-
interface IResumoPersonagemAventura {
|
|
1557
|
+
};
|
|
1558
|
+
type PersonagemSalaJogoDto = Pick<PersonagemCompletaDto, 'id' | 'usuario' | 'informacao' | 'caminhoAvatar'>;
|
|
1559
|
+
type ResumoPersonagemAventuraSemPersonagemDto = {
|
|
1536
1560
|
fkPersonagensId: number;
|
|
1537
1561
|
fkAventurasId: number;
|
|
1538
|
-
|
|
1539
|
-
aventura: AventuraDto;
|
|
1562
|
+
aventura: AventuraCompletaDto;
|
|
1540
1563
|
texto: string;
|
|
1541
|
-
}
|
|
1542
|
-
type
|
|
1543
|
-
|
|
1564
|
+
};
|
|
1565
|
+
type ResumoPersonagemAventuraCompletaDto = {
|
|
1566
|
+
fkPersonagensId: number;
|
|
1567
|
+
fkAventurasId: number;
|
|
1568
|
+
personagem: PersonagemCompletaDto;
|
|
1569
|
+
aventura: AventuraCompletaDto;
|
|
1570
|
+
texto: string;
|
|
1571
|
+
};
|
|
1572
|
+
type TipoPersonagemCompletaDto = {
|
|
1544
1573
|
id: number;
|
|
1545
1574
|
nome: string;
|
|
1546
1575
|
descricao: string;
|
|
1547
|
-
}
|
|
1548
|
-
type
|
|
1549
|
-
interface IDetalheRascunhoAventura {
|
|
1576
|
+
};
|
|
1577
|
+
type DetalheRascunhoAventuraSemRefsDto = {
|
|
1550
1578
|
fkRascunhoId: number;
|
|
1551
|
-
rascunho: RascunhoDto;
|
|
1552
|
-
aventura: AventuraDto | null;
|
|
1553
1579
|
descricao: Record<string, any>;
|
|
1554
1580
|
dataAtualizacao: Date;
|
|
1555
|
-
}
|
|
1556
|
-
type
|
|
1557
|
-
interface IDetalheRascunhoSessaoUnicaCanonica {
|
|
1581
|
+
};
|
|
1582
|
+
type DetalheRascunhoAventuraCompletaDto = {
|
|
1558
1583
|
fkRascunhoId: number;
|
|
1559
|
-
rascunho:
|
|
1560
|
-
|
|
1561
|
-
dificuldadeSessao: DificuldadeSessaoDto;
|
|
1562
|
-
sessaoUnica: DetalheSessaoUnicaDto;
|
|
1584
|
+
rascunho: RascunhoCompletaDto;
|
|
1585
|
+
aventura: AventuraCompletaDto | null;
|
|
1563
1586
|
descricao: Record<string, any>;
|
|
1564
1587
|
dataAtualizacao: Date;
|
|
1565
|
-
}
|
|
1566
|
-
type
|
|
1567
|
-
|
|
1588
|
+
};
|
|
1589
|
+
type DetalheRascunhoSessaoUnicaCanonicaSemRefsDto = {
|
|
1590
|
+
fkRascunhoId: number;
|
|
1591
|
+
tipoSessao: TipoSessaoCompletaDto;
|
|
1592
|
+
dificuldadeSessao: DificuldadeSessaoCompletaDto;
|
|
1593
|
+
sessaoUnica: DetalheSessaoUnicaCompletaDto | null;
|
|
1594
|
+
descricao: Record<string, any>;
|
|
1595
|
+
dataAtualizacao: Date;
|
|
1596
|
+
};
|
|
1597
|
+
type DetalheRascunhoSessaoUnicaCanonicaCompletaDto = {
|
|
1568
1598
|
fkRascunhoId: number;
|
|
1569
|
-
rascunho:
|
|
1570
|
-
tipoSessao:
|
|
1571
|
-
dificuldadeSessao:
|
|
1572
|
-
|
|
1573
|
-
|
|
1599
|
+
rascunho: RascunhoCompletaDto;
|
|
1600
|
+
tipoSessao: TipoSessaoCompletaDto;
|
|
1601
|
+
dificuldadeSessao: DificuldadeSessaoCompletaDto;
|
|
1602
|
+
sessaoUnica: DetalheSessaoUnicaCompletaDto | null;
|
|
1603
|
+
descricao: Record<string, any>;
|
|
1604
|
+
dataAtualizacao: Date;
|
|
1605
|
+
};
|
|
1606
|
+
type DetalheRascunhoSessaoUnicaNaoCanonicaSemRefsDto = {
|
|
1607
|
+
fkRascunhoId: number;
|
|
1608
|
+
tipoSessao: TipoSessaoCompletaDto;
|
|
1609
|
+
dificuldadeSessao: DificuldadeSessaoCompletaDto;
|
|
1610
|
+
sessoesUnicas: DetalheSessaoUnicaCompletaDto[];
|
|
1611
|
+
nivelPersonagem: NivelCompletaDto;
|
|
1574
1612
|
numeroMinimoJogadores: number;
|
|
1575
1613
|
numeroMaximoJogadores: number | null;
|
|
1576
1614
|
descricao: Record<string, any>;
|
|
1577
1615
|
dataAtualizacao: Date;
|
|
1578
|
-
}
|
|
1579
|
-
type
|
|
1580
|
-
|
|
1581
|
-
|
|
1582
|
-
|
|
1583
|
-
|
|
1584
|
-
|
|
1585
|
-
|
|
1586
|
-
|
|
1616
|
+
};
|
|
1617
|
+
type DetalheRascunhoSessaoUnicaNaoCanonicaCompletaDto = {
|
|
1618
|
+
fkRascunhoId: number;
|
|
1619
|
+
rascunho: RascunhoCompletaDto;
|
|
1620
|
+
tipoSessao: TipoSessaoCompletaDto;
|
|
1621
|
+
dificuldadeSessao: DificuldadeSessaoCompletaDto;
|
|
1622
|
+
sessoesUnicas: DetalheSessaoUnicaCompletaDto[];
|
|
1623
|
+
nivelPersonagem: NivelCompletaDto;
|
|
1624
|
+
numeroMinimoJogadores: number;
|
|
1625
|
+
numeroMaximoJogadores: number | null;
|
|
1626
|
+
descricao: Record<string, any>;
|
|
1627
|
+
dataAtualizacao: Date;
|
|
1628
|
+
};
|
|
1629
|
+
type RascunhoCompletaDto = {
|
|
1630
|
+
id: number;
|
|
1631
|
+
estiloSessaoMestrada: EstiloSessaoMestradaCompletaDto;
|
|
1632
|
+
usuario: UsuarioCompletaDto;
|
|
1633
|
+
detalheRascunhoAventura: DetalheRascunhoAventuraSemRefsDto | null;
|
|
1634
|
+
detalheRascunhoSessaoUnicaCanonica: DetalheRascunhoSessaoUnicaCanonicaSemRefsDto | null;
|
|
1635
|
+
detalheRascunhoSessaoUnicaNaoCanonica: DetalheRascunhoSessaoUnicaNaoCanonicaSemRefsDto | null;
|
|
1587
1636
|
titulo: string;
|
|
1588
1637
|
dataCriacao: Date;
|
|
1589
1638
|
possuiDetalhesConfigurados: boolean;
|
|
1590
1639
|
detalheUtilizacaoRascunho: DetalheUtilizacaoRascunho;
|
|
1591
|
-
}
|
|
1592
|
-
type
|
|
1593
|
-
interface IEstudo {
|
|
1640
|
+
};
|
|
1641
|
+
type EstudoCompletaDto = {
|
|
1594
1642
|
id: number;
|
|
1595
1643
|
nome: string;
|
|
1596
|
-
}
|
|
1597
|
-
type
|
|
1598
|
-
interface IFichaSer {
|
|
1599
|
-
}
|
|
1600
|
-
type FichaSerDto = IFichaSer;
|
|
1601
|
-
interface ISer {
|
|
1644
|
+
};
|
|
1645
|
+
type FichaSerCompletaDto = {
|
|
1602
1646
|
id: number;
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
|
|
1647
|
+
fkSeresId: number;
|
|
1648
|
+
ser: SerCompletaDto;
|
|
1649
|
+
ficha: FichaCompletaDto;
|
|
1650
|
+
};
|
|
1651
|
+
type FichaSerSemSerDto = {
|
|
1606
1652
|
id: number;
|
|
1607
|
-
|
|
1653
|
+
fkSeresId: number;
|
|
1654
|
+
ficha: FichaCompletaDto;
|
|
1655
|
+
};
|
|
1656
|
+
type FichaSerSemFichaDto = {
|
|
1657
|
+
id: number;
|
|
1658
|
+
fkSeresId: number;
|
|
1659
|
+
ser: SerCompletaDto;
|
|
1660
|
+
};
|
|
1661
|
+
type SerCompletaDto = {
|
|
1662
|
+
id: number;
|
|
1663
|
+
fichaSer: FichaSerCompletaDto;
|
|
1664
|
+
};
|
|
1665
|
+
type RegistroSessaoCompletaDto = {
|
|
1666
|
+
id: number;
|
|
1667
|
+
sessao: SessaoCompletaDto;
|
|
1608
1668
|
tempoDoInicio: string;
|
|
1609
1669
|
tempoDeDuracao: string;
|
|
1610
1670
|
descricao: string;
|
|
1611
|
-
}
|
|
1612
|
-
type
|
|
1613
|
-
interface ISessao {
|
|
1671
|
+
};
|
|
1672
|
+
type SessaoCompletaDto = {
|
|
1614
1673
|
id: number;
|
|
1615
|
-
detalheSessaoAventura: DetalheSessaoAventuraDto;
|
|
1616
|
-
detalheSessaoUnica: DetalheSessaoUnicaDto;
|
|
1617
|
-
detalheSessaoCanonica: DetalheSessaoCanonicaDto;
|
|
1618
1674
|
dataCriacao: Date;
|
|
1619
1675
|
dataPrevisaoInicio: Date;
|
|
1620
1676
|
dataInicio: Date | null;
|
|
1621
1677
|
duracaoEmSegundos: number | null;
|
|
1622
|
-
tipo: TipoSessao;
|
|
1623
|
-
tipoPorExtenso: string;
|
|
1624
|
-
usuarioMestre: UsuarioDto;
|
|
1625
1678
|
dataQueEncerrou: Date | null;
|
|
1626
1679
|
estadoAtual: EstadoSessao;
|
|
1680
|
+
detalheData: string;
|
|
1681
|
+
tipo: TipoSessao;
|
|
1682
|
+
tipoPorExtenso: string;
|
|
1683
|
+
usuarioMestre: UsuarioCompletaDto;
|
|
1627
1684
|
tituloInteligente: TituloSessaoInteligente;
|
|
1628
1685
|
imagemCapa: {
|
|
1629
1686
|
temCapaConfigurada: boolean;
|
|
1630
1687
|
caminhoCapa: string;
|
|
1631
1688
|
};
|
|
1632
|
-
|
|
1633
|
-
|
|
1634
|
-
|
|
1635
|
-
|
|
1689
|
+
dadosGerais: SessaoDadosGerais;
|
|
1690
|
+
};
|
|
1691
|
+
type SessaoEmJogoDto = {
|
|
1692
|
+
titulo: string;
|
|
1693
|
+
imagemCapa: string;
|
|
1694
|
+
};
|
|
1636
1695
|
type TipoSessao = 'AVENTURA' | 'SESSAO_UNICA_CANONICA' | 'SESSAO_UNICA_NAO_CANONICA';
|
|
1637
1696
|
declare const TIPO_SESSAO_LABEL: Record<TipoSessao, string>;
|
|
1638
1697
|
type SessaoDadosGerais = {
|
|
1639
|
-
mestre:
|
|
1698
|
+
mestre: UsuarioCompletaDto;
|
|
1640
1699
|
participantes: ParticipanteSessao[];
|
|
1641
1700
|
};
|
|
1701
|
+
type ParticipanteSessaoVinculoJogo = {
|
|
1702
|
+
personagem: PersonagemSalaJogoDto | null;
|
|
1703
|
+
ficha: FichaCompletaDto | null;
|
|
1704
|
+
};
|
|
1642
1705
|
type ParticipanteSessao = {
|
|
1643
|
-
jogador:
|
|
1644
|
-
|
|
1706
|
+
jogador: UsuarioCompletaDto;
|
|
1707
|
+
vinculoJogo: ParticipanteSessaoVinculoJogo;
|
|
1645
1708
|
};
|
|
1646
1709
|
type DadosCriacaoSessao = {
|
|
1647
1710
|
dadosParticipantes: DadosCriacaoSessao_Participante[];
|
|
@@ -1664,26 +1727,32 @@ declare class AuthSession {
|
|
|
1664
1727
|
json: string;
|
|
1665
1728
|
constructor(expiredAt: number, id: string, json: string, destroyedAt?: Date | undefined);
|
|
1666
1729
|
}
|
|
1667
|
-
|
|
1730
|
+
type CustomizacaoUsuarioSemUsuarioDto = {
|
|
1668
1731
|
fkUsuariosId: number;
|
|
1669
|
-
|
|
1670
|
-
|
|
1671
|
-
|
|
1672
|
-
|
|
1673
|
-
conquistaExibirPerfil3: ConquistaDto | null;
|
|
1732
|
+
personagemAvatarPrincipal: PersonagemCompletaDto | null;
|
|
1733
|
+
conquistaExibirPerfil1: ConquistaCompletaDto | null;
|
|
1734
|
+
conquistaExibirPerfil2: ConquistaCompletaDto | null;
|
|
1735
|
+
conquistaExibirPerfil3: ConquistaCompletaDto | null;
|
|
1674
1736
|
caminhoAvatar: string;
|
|
1675
|
-
}
|
|
1676
|
-
type
|
|
1677
|
-
|
|
1737
|
+
};
|
|
1738
|
+
type CustomizacaoUsuarioCompletaDto = {
|
|
1739
|
+
fkUsuariosId: number;
|
|
1740
|
+
usuario: UsuarioCompletaDto;
|
|
1741
|
+
personagemAvatarPrincipal: PersonagemCompletaDto | null;
|
|
1742
|
+
conquistaExibirPerfil1: ConquistaCompletaDto | null;
|
|
1743
|
+
conquistaExibirPerfil2: ConquistaCompletaDto | null;
|
|
1744
|
+
conquistaExibirPerfil3: ConquistaCompletaDto | null;
|
|
1745
|
+
caminhoAvatar: string;
|
|
1746
|
+
};
|
|
1747
|
+
type DisponibilidadeUsuarioCompletaDto = {
|
|
1678
1748
|
fkUsuariosId: number;
|
|
1679
|
-
usuario:
|
|
1680
|
-
tipoFrequencia:
|
|
1749
|
+
usuario: UsuarioCompletaDto;
|
|
1750
|
+
tipoFrequencia: TipoFrequenciaCompletaDto;
|
|
1681
1751
|
disponibilidades: ListaDisponibilidadesUsuario;
|
|
1682
1752
|
dataAtualizacao: Date;
|
|
1683
1753
|
dataValidade: Date;
|
|
1684
1754
|
estaValido: boolean;
|
|
1685
|
-
}
|
|
1686
|
-
type DisponibilidadeUsuarioDto = IDisponibilidadeUsuario;
|
|
1755
|
+
};
|
|
1687
1756
|
type ListaDisponibilidadesUsuario = DisponibilidadesDDS[];
|
|
1688
1757
|
interface DisponibilidadesDDS {
|
|
1689
1758
|
dds: DiaDaSemana;
|
|
@@ -1693,41 +1762,137 @@ interface JanelaDisponibilidade {
|
|
|
1693
1762
|
horaInicio: MomentoFormatado24;
|
|
1694
1763
|
horaFim: MomentoFormatado24;
|
|
1695
1764
|
}
|
|
1696
|
-
|
|
1765
|
+
type GithubUsuarioSemUsuarioDto = {
|
|
1697
1766
|
fkUsuarioId: number;
|
|
1698
|
-
usuario: UsuarioDto;
|
|
1699
1767
|
githubId: string;
|
|
1700
|
-
}
|
|
1701
|
-
type
|
|
1702
|
-
|
|
1703
|
-
|
|
1704
|
-
|
|
1705
|
-
|
|
1706
|
-
|
|
1707
|
-
|
|
1708
|
-
|
|
1709
|
-
|
|
1710
|
-
|
|
1768
|
+
};
|
|
1769
|
+
type GithubUsuarioCompletaDto = {
|
|
1770
|
+
fkUsuarioId: number;
|
|
1771
|
+
usuario: UsuarioCompletaDto;
|
|
1772
|
+
githubId: string;
|
|
1773
|
+
};
|
|
1774
|
+
type UsuarioCompletaDto = {
|
|
1775
|
+
id: number;
|
|
1776
|
+
perfilJogador: PerfilJogadorCompletaDto;
|
|
1777
|
+
perfilMestre: PerfilMestreCompletaDto;
|
|
1778
|
+
perfilAdmin: PerfilAdminCompletaDto;
|
|
1779
|
+
permissoes: PermissoesUsuarioCompletaDto[];
|
|
1780
|
+
customizacao: CustomizacaoUsuarioCompletaDto;
|
|
1781
|
+
personagens: PersonagemCompletaDto[] | null;
|
|
1782
|
+
githubUsuario: GithubUsuarioSemUsuarioDto | null;
|
|
1711
1783
|
username: string;
|
|
1712
1784
|
email: string | null;
|
|
1713
1785
|
discordId: string;
|
|
1714
1786
|
githubId: string | null;
|
|
1715
1787
|
dataCriacao: Date;
|
|
1716
1788
|
listaCargos: CargosUsuario;
|
|
1717
|
-
}
|
|
1718
|
-
type UsuarioDto = IUsuario;
|
|
1789
|
+
};
|
|
1719
1790
|
type LayoutContextualizadoInicial = {
|
|
1720
1791
|
readonly titulo?: string;
|
|
1721
1792
|
readonly escondeFundo?: boolean;
|
|
1722
1793
|
readonly proporcaoConteudo?: number;
|
|
1723
1794
|
};
|
|
1795
|
+
/**
|
|
1796
|
+
* Estrutura persistida da ficha.
|
|
1797
|
+
* Representa exatamente o JSON salvo em banco e funciona como a fonte de verdade serializada da ficha.
|
|
1798
|
+
* Não deve carregar dados enriquecidos, estado de jogo ou responsabilidades de renderização.
|
|
1799
|
+
*/
|
|
1800
|
+
type J_FichaPersistida = {
|
|
1801
|
+
atributos: {
|
|
1802
|
+
id: number;
|
|
1803
|
+
valor: number;
|
|
1804
|
+
}[];
|
|
1805
|
+
pericias: {
|
|
1806
|
+
id: number;
|
|
1807
|
+
idPatente: number;
|
|
1808
|
+
}[];
|
|
1809
|
+
estatisticasDanificaveis: {
|
|
1810
|
+
id: number;
|
|
1811
|
+
valorMaximo: number;
|
|
1812
|
+
}[];
|
|
1813
|
+
classe: {
|
|
1814
|
+
id: number;
|
|
1815
|
+
};
|
|
1816
|
+
detalhe: DetalheFicha;
|
|
1817
|
+
detalhesUsoEvolucaoPericiasLivres: RegistroPericiaLivre[];
|
|
1818
|
+
};
|
|
1819
|
+
/**
|
|
1820
|
+
* Estrutura base da ficha dentro da Sala de Jogo.
|
|
1821
|
+
* Representa a ficha carregada na sala como fonte de verdade imutável durante a sessão.
|
|
1822
|
+
* Não deve conter dados de vínculo, origem anterior, estado mutável ou dados enriquecidos de lógica.
|
|
1823
|
+
*/
|
|
1824
|
+
type SalaDeJogo_FichaBase = {
|
|
1825
|
+
fichaPersistida: J_FichaPersistida;
|
|
1826
|
+
};
|
|
1827
|
+
/**
|
|
1828
|
+
* Estado atual e mutável da ficha durante o jogo.
|
|
1829
|
+
* Representa a materialização lógica da ficha base, com os dados resolvidos e sempre atualizados para o motor.
|
|
1830
|
+
* Deve conter apenas o estado jogável vigente, sem incorporar a ficha base ou dados de vínculo.
|
|
1831
|
+
*/
|
|
1832
|
+
type FichaEmJogo = {
|
|
1833
|
+
atributos: AtributoFicha[];
|
|
1834
|
+
pericias: PericiaFicha[];
|
|
1835
|
+
estatisticasDanificaveis: EstatisticaDanificavelFicha[];
|
|
1836
|
+
detalhe: DetalheFicha;
|
|
1837
|
+
classe: ClasseCompletaDto;
|
|
1838
|
+
detalhesUsoEvolucaoPericiasLivres: RegistroPericiaLivre[];
|
|
1839
|
+
};
|
|
1840
|
+
/**
|
|
1841
|
+
* Snapshot serializável e enxuto da ficha em jogo.
|
|
1842
|
+
* É o payload recorrente enviado pelo backend ao frontend com o estado atual da ficha,
|
|
1843
|
+
* contendo apenas os dados dinâmicos necessários para tradução e renderização.
|
|
1844
|
+
* Não deve repetir metadados estáveis ou objetos ricos de catálogo a cada atualização.
|
|
1845
|
+
*/
|
|
1846
|
+
type J_DadosFichaEmJogo = {
|
|
1847
|
+
atributos: {
|
|
1848
|
+
id: number;
|
|
1849
|
+
valor: number;
|
|
1850
|
+
valorTotal: number;
|
|
1851
|
+
detalhesValor: string[];
|
|
1852
|
+
}[];
|
|
1853
|
+
pericias: {
|
|
1854
|
+
id: number;
|
|
1855
|
+
idPatente: number;
|
|
1856
|
+
valorEfeito: number;
|
|
1857
|
+
valorTotal: number;
|
|
1858
|
+
detalhesValor: string[];
|
|
1859
|
+
}[];
|
|
1860
|
+
estatisticasDanificaveis: {
|
|
1861
|
+
id: number;
|
|
1862
|
+
valorMaximo: number;
|
|
1863
|
+
}[];
|
|
1864
|
+
classe: {
|
|
1865
|
+
id: number;
|
|
1866
|
+
};
|
|
1867
|
+
detalhe: DetalheFicha;
|
|
1868
|
+
detalhesUsoEvolucaoPericiasLivres: RegistroPericiaLivre[];
|
|
1869
|
+
};
|
|
1870
|
+
/**
|
|
1871
|
+
* Vínculo fixo da participação jogável dentro da Sala de Jogo.
|
|
1872
|
+
* É armazenado pela sala em uma estrutura indexada por idUsuario, então não precisa repetir o id do usuário internamente.
|
|
1873
|
+
* Representa qual ficha foi carregada para aquela participação e qual é o pai fixo dessa ficha.
|
|
1874
|
+
*/
|
|
1875
|
+
type SalaDeJogo_JogadorEmJogo = {
|
|
1876
|
+
idFicha: number;
|
|
1877
|
+
paiFicha: PaiFichaRef;
|
|
1878
|
+
fichaBase: SalaDeJogo_FichaBase;
|
|
1879
|
+
};
|
|
1880
|
+
/**
|
|
1881
|
+
* Snapshot fixo e serializável da ficha em jogo.
|
|
1882
|
+
* É o payload estático solicitado quando o client entra na página de jogo e precisa dos dados fixos da ficha.
|
|
1883
|
+
* Nesta primeira versão, reutiliza o pai da ficha já resolvido pela sala para expor o vínculo fixo completo.
|
|
1884
|
+
*/
|
|
1885
|
+
type J_DadosFixosFichaEmJogo = {
|
|
1886
|
+
idFicha: number;
|
|
1887
|
+
paiFicha: PaiFichaRef;
|
|
1888
|
+
};
|
|
1724
1889
|
type SalaDeJogo_Codigo = `${number}_${string}`;
|
|
1725
1890
|
type SalaDeJogoParams = {
|
|
1726
1891
|
tipo: "sessao";
|
|
1727
|
-
sessao:
|
|
1892
|
+
sessao: SessaoCompletaDto;
|
|
1728
1893
|
} | {
|
|
1729
1894
|
tipo: "solo";
|
|
1730
|
-
jogadorSolo:
|
|
1895
|
+
jogadorSolo: UsuarioCompletaDto;
|
|
1731
1896
|
};
|
|
1732
1897
|
declare enum SalaDeJogo_Tipo {
|
|
1733
1898
|
SALA__SOLO = "Sess\u00E3o Solo",
|
|
@@ -1762,7 +1927,7 @@ type SalaDeJogo_Participante_Narrador = {
|
|
|
1762
1927
|
type SalaDeJogo_Participante_Jogador = {
|
|
1763
1928
|
tipo: SalaDeJogo_TipoParticipante.SALA__JOGADOR;
|
|
1764
1929
|
idUsuario: number;
|
|
1765
|
-
|
|
1930
|
+
vinculoSessao: ParticipanteSessaoVinculoJogo;
|
|
1766
1931
|
};
|
|
1767
1932
|
type SalaDeJogo_FUNC_AtualizaParticipanteParams = {
|
|
1768
1933
|
acao: "adicionar";
|
|
@@ -1785,11 +1950,18 @@ type ObjetoEmJogoDto = {
|
|
|
1785
1950
|
listaIdsUsuariosParticipantes: number[];
|
|
1786
1951
|
} | {
|
|
1787
1952
|
tipoParticipante: SalaDeJogo_TipoParticipante.SALA__JOGADOR;
|
|
1788
|
-
ficha:
|
|
1953
|
+
ficha: J_DadosFichaEmJogo | null;
|
|
1954
|
+
};
|
|
1955
|
+
type ObjetoEmJogoFixoDto = {
|
|
1956
|
+
tipoParticipante: SalaDeJogo_TipoParticipante.SALA__NARRADOR;
|
|
1957
|
+
listaIdsUsuariosParticipantes: number[];
|
|
1958
|
+
} | {
|
|
1959
|
+
tipoParticipante: SalaDeJogo_TipoParticipante.SALA__JOGADOR;
|
|
1960
|
+
dadosFixosFicha: J_DadosFixosFichaEmJogo | null;
|
|
1789
1961
|
};
|
|
1790
1962
|
type DadosParticipanteJogo = {
|
|
1791
1963
|
personagem: PersonagemSalaJogoDto | null;
|
|
1792
|
-
ficha:
|
|
1964
|
+
ficha: FichaCompletaDto | null;
|
|
1793
1965
|
};
|
|
1794
1966
|
type MenuItemNode = {
|
|
1795
1967
|
readonly tipo: 'item';
|
|
@@ -1990,7 +2162,7 @@ type PayloadExecutaTestePericia_PROTOTIPO = {
|
|
|
1990
2162
|
abrevPericia: string;
|
|
1991
2163
|
};
|
|
1992
2164
|
type SOCKET_AcessoUsuario = {
|
|
1993
|
-
usuario:
|
|
2165
|
+
usuario: UsuarioCompletaDto;
|
|
1994
2166
|
paginaAtual?: PaginaTemplate | null;
|
|
1995
2167
|
dataAtualizacao: Date;
|
|
1996
2168
|
};
|
|
@@ -2121,7 +2293,7 @@ declare namespace EventosWebSocket {
|
|
|
2121
2293
|
tipo: "emite";
|
|
2122
2294
|
payload: {};
|
|
2123
2295
|
response: {
|
|
2124
|
-
sessaoEmAndamento:
|
|
2296
|
+
sessaoEmAndamento: SessaoCompletaDto | null;
|
|
2125
2297
|
};
|
|
2126
2298
|
delivery: "perRecipient";
|
|
2127
2299
|
};
|
|
@@ -2155,6 +2327,14 @@ declare namespace EventosWebSocket {
|
|
|
2155
2327
|
};
|
|
2156
2328
|
delivery: "broadcast";
|
|
2157
2329
|
};
|
|
2330
|
+
emitirDadosFixosObjetoEmJogo: {
|
|
2331
|
+
tipo: "emite";
|
|
2332
|
+
payload: {};
|
|
2333
|
+
response: {
|
|
2334
|
+
objetoEmJogoFixo: ObjetoEmJogoFixoDto | null;
|
|
2335
|
+
};
|
|
2336
|
+
delivery: "perRecipient";
|
|
2337
|
+
};
|
|
2158
2338
|
};
|
|
2159
2339
|
readonly UsuariosConectados: {
|
|
2160
2340
|
emitirUsuariosConectadosAgora: {
|
|
@@ -2284,21 +2464,21 @@ type CargosUsuario = {
|
|
|
2284
2464
|
cargos: string[];
|
|
2285
2465
|
};
|
|
2286
2466
|
type ObjetoAutenticacao = {
|
|
2287
|
-
usuarioLogado:
|
|
2288
|
-
variaveisAmbiente:
|
|
2467
|
+
usuarioLogado: UsuarioCompletaDto | null;
|
|
2468
|
+
variaveisAmbiente: VariavelAmbienteCompletaDto[];
|
|
2289
2469
|
capacidadesConcedidas: Record<string, true>;
|
|
2290
2470
|
cadastroPermitido: boolean;
|
|
2291
2471
|
};
|
|
2292
2472
|
type ObjetoCache = {
|
|
2293
|
-
atributos:
|
|
2294
|
-
pericias:
|
|
2295
|
-
patentesPericia:
|
|
2296
|
-
estatisticasDanificaveis:
|
|
2297
|
-
classes:
|
|
2298
|
-
tiposGanho:
|
|
2299
|
-
niveis:
|
|
2300
|
-
dificuldadesSessao:
|
|
2301
|
-
tiposSessao:
|
|
2473
|
+
atributos: AtributoCompletaDto[];
|
|
2474
|
+
pericias: PericiaCompletaDto[];
|
|
2475
|
+
patentesPericia: PatentePericiaCompletaDto[];
|
|
2476
|
+
estatisticasDanificaveis: EstatisticaDanificavelCompletaDto[];
|
|
2477
|
+
classes: ClasseCompletaDto[];
|
|
2478
|
+
tiposGanho: TipoGanhoNivelCompletaDto[];
|
|
2479
|
+
niveis: NivelCompletaDto[];
|
|
2480
|
+
dificuldadesSessao: DificuldadeSessaoCompletaDto[];
|
|
2481
|
+
tiposSessao: TipoSessaoCompletaDto[];
|
|
2302
2482
|
};
|
|
2303
2483
|
type ObjetoPendeciaPersonagem = {
|
|
2304
2484
|
pendeciaUsuario: EstadoPendenciaPersonagem;
|
|
@@ -2308,21 +2488,21 @@ type TipoVariavelAmbiente = 'boolean' | 'string' | 'number';
|
|
|
2308
2488
|
type ObjetoEvolucaoCompleto = ObjetoEvolucao & ObjetoGanhosEvolucao;
|
|
2309
2489
|
type ObjetoEvolucao = {
|
|
2310
2490
|
fichaEmProcessoDeEvolucao: FichaEmProcessoDeEvolucaoDto;
|
|
2311
|
-
listaReferenciaTodosAtributos:
|
|
2312
|
-
listaReferenciaPericiasDisponiveis:
|
|
2313
|
-
listaReferenciaTodasPatentes:
|
|
2314
|
-
listaReferenciaTodasEstatisticasDanificaveis:
|
|
2315
|
-
listaReferenciaTodasClasses:
|
|
2316
|
-
listaReferenciaTodosTiposGanho:
|
|
2491
|
+
listaReferenciaTodosAtributos: AtributoCompletaDto[];
|
|
2492
|
+
listaReferenciaPericiasDisponiveis: PericiaCompletaDto[];
|
|
2493
|
+
listaReferenciaTodasPatentes: PatentePericiaCompletaDto[];
|
|
2494
|
+
listaReferenciaTodasEstatisticasDanificaveis: EstatisticaDanificavelCompletaDto[];
|
|
2495
|
+
listaReferenciaTodasClasses: ClasseCompletaDto[];
|
|
2496
|
+
listaReferenciaTodosTiposGanho: TipoGanhoNivelCompletaDto[];
|
|
2317
2497
|
};
|
|
2318
2498
|
type ObjetoGanhosEvolucao = {
|
|
2319
|
-
listaGanhos:
|
|
2499
|
+
listaGanhos: GanhoNivelClasseCompletaDto[];
|
|
2320
2500
|
listaGanhosEstatisticasPorAtributos: GanhoEstatistica[];
|
|
2321
2501
|
};
|
|
2322
2502
|
type GanhoEstatistica = {
|
|
2323
|
-
estatisticaDanificavel:
|
|
2503
|
+
estatisticaDanificavel: EstatisticaDanificavelCompletaDto;
|
|
2324
2504
|
ganhosPorAtributo: {
|
|
2325
|
-
atributo:
|
|
2505
|
+
atributo: AtributoCompletaDto;
|
|
2326
2506
|
valorPorUnidade: number;
|
|
2327
2507
|
}[];
|
|
2328
2508
|
};
|
|
@@ -2452,7 +2632,7 @@ declare const Eventos_Emite: {
|
|
|
2452
2632
|
tipo: "emite";
|
|
2453
2633
|
payload: {};
|
|
2454
2634
|
response: {
|
|
2455
|
-
sessaoEmAndamento:
|
|
2635
|
+
sessaoEmAndamento: SessaoCompletaDto | null;
|
|
2456
2636
|
};
|
|
2457
2637
|
delivery: "perRecipient";
|
|
2458
2638
|
} & {
|
|
@@ -2498,6 +2678,18 @@ declare const Eventos_Emite: {
|
|
|
2498
2678
|
readonly gateway: "Jogo";
|
|
2499
2679
|
readonly fullName: "Jogo:emitirMensagemSalaDeJogo";
|
|
2500
2680
|
};
|
|
2681
|
+
emitirDadosFixosObjetoEmJogo: {
|
|
2682
|
+
tipo: "emite";
|
|
2683
|
+
payload: {};
|
|
2684
|
+
response: {
|
|
2685
|
+
objetoEmJogoFixo: ObjetoEmJogoFixoDto | null;
|
|
2686
|
+
};
|
|
2687
|
+
delivery: "perRecipient";
|
|
2688
|
+
} & {
|
|
2689
|
+
readonly nome: "emitirDadosFixosObjetoEmJogo";
|
|
2690
|
+
readonly gateway: "Jogo";
|
|
2691
|
+
readonly fullName: "Jogo:emitirDadosFixosObjetoEmJogo";
|
|
2692
|
+
};
|
|
2501
2693
|
};
|
|
2502
2694
|
};
|
|
2503
2695
|
readonly UsuariosConectados: {
|
|
@@ -2909,4 +3101,4 @@ declare function isRegrasUploadArquivoValidas(regras: RegrasUploadArquivo): regr
|
|
|
2909
3101
|
declare function mimeFromFormato(formato: FormatoUploadArquivo): string | null;
|
|
2910
3102
|
declare function acceptFromFormatos(formatos: FormatoUploadArquivo[]): string;
|
|
2911
3103
|
declare function isFormatoImagemBitmap(formato: FormatoUploadArquivo): formato is "webp";
|
|
2912
|
-
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,
|
|
3104
|
+
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, PermissoesEstadoCompletaDto, PermissoesItemSemPaiEFilhosDto, PermissoesItemCompletaDto, ItemPermissaoDto, ArvoreItensPermissaoDto, PermissoesUsuarioSemItemDto, PermissoesUsuarioCompletaDto, PermissoesUsuariosHistoricoCompletaDto, AprovacaoArquivoSemArquivoDto, AprovacaoArquivoCompletaDto, ArquivoCompletaDto, DetalheArquivoInternoSemArquivoDto, DetalheArquivoInternoCompletaDto, TipoArquivoCompletaDto, ArcoAventuraCompletaDto, AventuraCompletaDto, ConviteGrupoAventuraPersonagemCompletaDto, GrupoAventuraCompletaDto, GrupoAventuraPersonagemSemGrupoAventuraDto, GrupoAventuraPersonagemSemPersonagemDto, GrupoAventuraPersonagemCompletaDto, RespostaConviteSemConviteDto, RespostaConviteCompletaDto, VariavelAmbienteCompletaDto, ConquistaCompletaDto, TipoConquistaCompletaDto, DetalheSessaoAventuraCompletaDto, DetalheSessaoCanonicaSemSessaoDto, DetalheSessaoCanonicaCompletaDto, CapituloSessaoCanonica, DetalheSessaoUnicaCompletaDto, FichaAmarradaParticipanteSessaoUnicaSemFichaTemporariaDto, FichaAmarradaParticipanteSessaoUnicaCompletaDto, ParticipanteSessaoUnicaSemDetalheSessaoUnicaDto, ParticipanteSessaoUnicaCompletaDto, DisponibilidadeUsuarioHistoricoCompletaDto, JanelaDisponibilidadeCompletaDto, DadosJanelaDisponibilidade, DadosDataParaSessao, TipoFrequenciaCompletaDto, FichaCompletaDto, FichaEmProcessoDeEvolucaoDto, DetalheEvolucao, DetalhesExtras, FichaDeJogo, AtributoFicha, PericiaFicha, EstatisticaDanificavelFicha, DetalheFicha, RegistroPericiaLivre, PaiFichaTipo, PaiFichaRef, DadosEvolucaoFicha, FichaTemporariaCompletaDto, FichaTemporariaSemFichaDto, HistoricoDetalhesEvolucao, CoeficienteGanhoEstatisticaClasseCompletaDto, GanhoNivelClasseCompletaDto, DadosDoTipoGanho, DadosGanho_Atributos, DadosGanho_Pericias, DadosGanho_Estatisticas, DadosGanho_Classes, DadosGanho_ValorMaximoAtributo, DadosGanho_PontosHabilidadesEspeciais, DadosGanho_PontosHabilidadesParanormais, DadosGanho_PontosHabilidadeElemental, GanhoRelativoCoeficienteAtributoSemCoeficienteDto, GanhoRelativoCoeficienteAtributoCompletaDto, TipoGanhoNivelCompletaDto, GeracaoSemAventurasDto, GeracaoCompletaDto, ImagemCompletaDto, TipoImagemCompletaDto, AlcanceCompletaDto, AtributoSemPericiasDto, AtributoCompletaDto, CategoriaRitualCompletaDto, CirculoRitualCompletaDto, ClasseCompletaDto, DuracaoCompletaDto, ElementoCompletaDto, EstatisticaDanificavelCompletaDto, ExecucaoCompletaDto, FormatoAlcanceCompletaDto, LinhaEfeitoCompletaDto, NivelCompletaDto, NivelComponenteCompletaDto, NivelProficienciaCompletaDto, NivelRitualCompletaDto, PatentePericiaCompletaDto, PericiaCompletaDto, ProficienciaCompletaDto, TipoAlvoCompletaDto, TipoCategoriaCompletaDto, TipoDanoSemPaiDto, TipoDanoCompletaDto, TipoEfeitoCompletaDto, TipoItemCompletaDto, TipoProficienciaCompletaDto, LinkCompletaDto, TipoLinkCompletaDto, DificuldadeSessaoCompletaDto, EstiloSessaoMestradaCompletaDto, TipoSessaoCompletaDto, PerfilAdminCompletaDto, PerfilJogadorCompletaDto, PerfilMestreCompletaDto, FichaPersonagemSemFichaDto, FichaPersonagemSemPersonagemDto, FichaPersonagemCompletaDto, InformacaoPersonagemSemPersonagemDto, InformacaoPersonagemCompletaDto, PersonagemCompletaDto, PersonagemSalaJogoDto, ResumoPersonagemAventuraSemPersonagemDto, ResumoPersonagemAventuraCompletaDto, TipoPersonagemCompletaDto, DetalheRascunhoAventuraSemRefsDto, DetalheRascunhoAventuraCompletaDto, DetalheRascunhoSessaoUnicaCanonicaSemRefsDto, DetalheRascunhoSessaoUnicaCanonicaCompletaDto, DetalheRascunhoSessaoUnicaNaoCanonicaSemRefsDto, DetalheRascunhoSessaoUnicaNaoCanonicaCompletaDto, RascunhoCompletaDto, EstudoCompletaDto, FichaSerCompletaDto, FichaSerSemSerDto, FichaSerSemFichaDto, SerCompletaDto, RegistroSessaoCompletaDto, SessaoCompletaDto, SessaoEmJogoDto, TipoSessao, TIPO_SESSAO_LABEL, SessaoDadosGerais, ParticipanteSessaoVinculoJogo, ParticipanteSessao, DadosCriacaoSessao, DadosCriacaoSessao_Participante, AuthSession, CustomizacaoUsuarioSemUsuarioDto, CustomizacaoUsuarioCompletaDto, DisponibilidadeUsuarioCompletaDto, ListaDisponibilidadesUsuario, DisponibilidadesDDS, JanelaDisponibilidade, GithubUsuarioSemUsuarioDto, GithubUsuarioCompletaDto, UsuarioCompletaDto, LayoutContextualizadoInicial, J_FichaPersistida, SalaDeJogo_FichaBase, FichaEmJogo, J_DadosFichaEmJogo, SalaDeJogo_JogadorEmJogo, J_DadosFixosFichaEmJogo, 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, ObjetoEmJogoFixoDto, 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 };
|