types-nora-api 0.0.368 → 0.0.370
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 +541 -455
- package/dist/classes.js +4 -1
- 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,33 +1109,30 @@ 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
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
1137
|
ficha: J_FichaPersistida;
|
|
1101
1138
|
detalhesEvolucao: DetalheEvolucao[];
|
|
@@ -1103,7 +1140,7 @@ type FichaEmProcessoDeEvolucaoDto = {
|
|
|
1103
1140
|
paiTipo: PaiFichaTipo;
|
|
1104
1141
|
nome: string | null;
|
|
1105
1142
|
nomeComDetalhe: string | null;
|
|
1106
|
-
nivel:
|
|
1143
|
+
nivel: NivelCompletaDto;
|
|
1107
1144
|
};
|
|
1108
1145
|
type DetalheEvolucao = {
|
|
1109
1146
|
etapa: string;
|
|
@@ -1115,24 +1152,24 @@ type FichaDeJogo = {
|
|
|
1115
1152
|
pericias: PericiaFicha[];
|
|
1116
1153
|
estatisticasDanificaveis: EstatisticaDanificavelFicha[];
|
|
1117
1154
|
detalhe: DetalheFicha;
|
|
1118
|
-
classe:
|
|
1155
|
+
classe: ClasseCompletaDto;
|
|
1119
1156
|
detalhesUsoEvolucaoPericiasLivres: RegistroPericiaLivre[];
|
|
1120
1157
|
};
|
|
1121
1158
|
type AtributoFicha = {
|
|
1122
|
-
atributo:
|
|
1159
|
+
atributo: AtributoCompletaDto;
|
|
1123
1160
|
valor: number;
|
|
1124
1161
|
valorTotal: number;
|
|
1125
1162
|
detalhesValor: string[];
|
|
1126
1163
|
};
|
|
1127
1164
|
type PericiaFicha = {
|
|
1128
|
-
pericia:
|
|
1129
|
-
patentePericia:
|
|
1165
|
+
pericia: PericiaCompletaDto;
|
|
1166
|
+
patentePericia: PatentePericiaCompletaDto;
|
|
1130
1167
|
valorEfeito: number;
|
|
1131
1168
|
valorTotal: number;
|
|
1132
1169
|
detalhesValor: string[];
|
|
1133
1170
|
};
|
|
1134
1171
|
type EstatisticaDanificavelFicha = {
|
|
1135
|
-
estatisticaDanificavel:
|
|
1172
|
+
estatisticaDanificavel: EstatisticaDanificavelCompletaDto;
|
|
1136
1173
|
valorMaximo: number;
|
|
1137
1174
|
};
|
|
1138
1175
|
type DetalheFicha = {
|
|
@@ -1148,50 +1185,58 @@ type RegistroPericiaLivre = {
|
|
|
1148
1185
|
type PaiFichaTipo = 'PERSONAGEM' | 'TEMPORARIA' | 'SER';
|
|
1149
1186
|
type PaiFichaRef = {
|
|
1150
1187
|
tipo: 'PERSONAGEM';
|
|
1151
|
-
ref:
|
|
1188
|
+
ref: FichaPersonagemSemPersonagemDto;
|
|
1152
1189
|
} | {
|
|
1153
1190
|
tipo: 'TEMPORARIA';
|
|
1154
|
-
ref:
|
|
1191
|
+
ref: FichaTemporariaSemFichaDto;
|
|
1155
1192
|
} | {
|
|
1156
1193
|
tipo: 'SER';
|
|
1157
|
-
ref:
|
|
1194
|
+
ref: FichaSerSemFichaDto;
|
|
1158
1195
|
};
|
|
1159
1196
|
type DadosEvolucaoFicha = {
|
|
1160
1197
|
fichaDeJogo: FichaDeJogo;
|
|
1161
1198
|
detalhesEvolucao: DetalheEvolucao[];
|
|
1162
1199
|
};
|
|
1163
|
-
|
|
1200
|
+
type FichaTemporariaCompletaDto = {
|
|
1164
1201
|
id: number;
|
|
1165
|
-
usuario:
|
|
1166
|
-
ficha:
|
|
1167
|
-
nivel:
|
|
1168
|
-
amarracaoFichaSessaoUnica:
|
|
1202
|
+
usuario: UsuarioCompletaDto;
|
|
1203
|
+
ficha: FichaCompletaDto;
|
|
1204
|
+
nivel: NivelCompletaDto;
|
|
1205
|
+
amarracaoFichaSessaoUnica: FichaAmarradaParticipanteSessaoUnicaSemFichaTemporariaDto | null;
|
|
1169
1206
|
dataAtualizacao: Date;
|
|
1170
1207
|
historicoDetalhesEvolucao: HistoricoDetalhesEvolucao;
|
|
1171
1208
|
nome: string;
|
|
1172
1209
|
descricao: string | null;
|
|
1173
|
-
detalheSessaoUnicaAmarrada:
|
|
1174
|
-
}
|
|
1175
|
-
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
|
+
};
|
|
1176
1223
|
type HistoricoDetalhesEvolucao = DetalheEvolucao[][];
|
|
1177
|
-
|
|
1224
|
+
type CoeficienteGanhoEstatisticaClasseCompletaDto = {
|
|
1178
1225
|
id: number;
|
|
1179
|
-
classe:
|
|
1180
|
-
estatisticaDanificavel:
|
|
1181
|
-
ganhosRelativos:
|
|
1226
|
+
classe: ClasseCompletaDto;
|
|
1227
|
+
estatisticaDanificavel: EstatisticaDanificavelCompletaDto;
|
|
1228
|
+
ganhosRelativos: GanhoRelativoCoeficienteAtributoCompletaDto[];
|
|
1182
1229
|
coeficiente: number;
|
|
1183
|
-
}
|
|
1184
|
-
type
|
|
1185
|
-
interface IGanhoNivelClasse {
|
|
1230
|
+
};
|
|
1231
|
+
type GanhoNivelClasseCompletaDto = {
|
|
1186
1232
|
fkNivelId: number;
|
|
1187
1233
|
fkTipoGanhoNivelId: number;
|
|
1188
1234
|
fkClassesId: number;
|
|
1189
|
-
nivel:
|
|
1190
|
-
tipoGanhoNivel:
|
|
1191
|
-
classe:
|
|
1235
|
+
nivel: NivelCompletaDto;
|
|
1236
|
+
tipoGanhoNivel: TipoGanhoNivelCompletaDto;
|
|
1237
|
+
classe: ClasseCompletaDto;
|
|
1192
1238
|
dados: DadosDoTipoGanho;
|
|
1193
|
-
}
|
|
1194
|
-
type GanhoNivelClasseDto = IGanhoNivelClasse;
|
|
1239
|
+
};
|
|
1195
1240
|
type DadosDoTipoGanho = DadosGanho_Atributos | DadosGanho_Pericias | DadosGanho_Estatisticas | DadosGanho_Classes | DadosGanho_ValorMaximoAtributo | DadosGanho_PontosHabilidadesEspeciais | DadosGanho_PontosHabilidadesParanormais | DadosGanho_PontosHabilidadeElemental;
|
|
1196
1241
|
type DadosGanho_Atributos = {
|
|
1197
1242
|
ganhos: number;
|
|
@@ -1227,34 +1272,42 @@ type DadosGanho_PontosHabilidadesParanormais = {
|
|
|
1227
1272
|
type DadosGanho_PontosHabilidadeElemental = {
|
|
1228
1273
|
valorAumento: number;
|
|
1229
1274
|
};
|
|
1230
|
-
|
|
1275
|
+
type GanhoRelativoCoeficienteAtributoSemCoeficienteDto = {
|
|
1231
1276
|
fkCoeficientesGanhoEstatisticaClasseId: number;
|
|
1232
1277
|
fkAtributosId: number;
|
|
1233
|
-
|
|
1234
|
-
atributo: AtributoDto;
|
|
1278
|
+
atributo: AtributoCompletaDto;
|
|
1235
1279
|
valorPorcentagem: number;
|
|
1236
|
-
}
|
|
1237
|
-
type
|
|
1238
|
-
|
|
1280
|
+
};
|
|
1281
|
+
type GanhoRelativoCoeficienteAtributoCompletaDto = {
|
|
1282
|
+
fkCoeficientesGanhoEstatisticaClasseId: number;
|
|
1283
|
+
fkAtributosId: number;
|
|
1284
|
+
coeficiente: CoeficienteGanhoEstatisticaClasseCompletaDto;
|
|
1285
|
+
atributo: AtributoCompletaDto;
|
|
1286
|
+
valorPorcentagem: number;
|
|
1287
|
+
};
|
|
1288
|
+
type TipoGanhoNivelCompletaDto = {
|
|
1239
1289
|
id: number;
|
|
1240
1290
|
nome: string;
|
|
1241
1291
|
ordem: number;
|
|
1242
|
-
}
|
|
1243
|
-
type
|
|
1244
|
-
interface IGeracao {
|
|
1292
|
+
};
|
|
1293
|
+
type GeracaoSemAventurasDto = {
|
|
1245
1294
|
id: number;
|
|
1246
|
-
aventuras: AventuraDto[] | null;
|
|
1247
1295
|
nome: string | null;
|
|
1248
1296
|
anoInicio: number | null;
|
|
1249
|
-
}
|
|
1250
|
-
type
|
|
1251
|
-
|
|
1297
|
+
};
|
|
1298
|
+
type GeracaoCompletaDto = {
|
|
1299
|
+
id: number;
|
|
1300
|
+
aventuras: AventuraCompletaDto[] | null;
|
|
1301
|
+
nome: string | null;
|
|
1302
|
+
anoInicio: number | null;
|
|
1303
|
+
};
|
|
1304
|
+
type ImagemCompletaDto = {
|
|
1252
1305
|
id: number;
|
|
1253
1306
|
uuid: string;
|
|
1254
|
-
validatedBy:
|
|
1255
|
-
usuario:
|
|
1256
|
-
uploader:
|
|
1257
|
-
tipoImagem:
|
|
1307
|
+
validatedBy: UsuarioCompletaDto | null;
|
|
1308
|
+
usuario: UsuarioCompletaDto | null;
|
|
1309
|
+
uploader: UsuarioCompletaDto | null;
|
|
1310
|
+
tipoImagem: TipoImagemCompletaDto;
|
|
1258
1311
|
filename: string;
|
|
1259
1312
|
status: string;
|
|
1260
1313
|
resolution: string;
|
|
@@ -1268,106 +1321,96 @@ interface IImagem {
|
|
|
1268
1321
|
createdAt: Date;
|
|
1269
1322
|
updatedAt: Date;
|
|
1270
1323
|
fullPath: string;
|
|
1271
|
-
}
|
|
1272
|
-
type
|
|
1273
|
-
interface ITipoImagem {
|
|
1324
|
+
};
|
|
1325
|
+
type TipoImagemCompletaDto = {
|
|
1274
1326
|
id: number;
|
|
1275
1327
|
nome: string;
|
|
1276
|
-
}
|
|
1277
|
-
type
|
|
1278
|
-
interface IAlcance {
|
|
1328
|
+
};
|
|
1329
|
+
type AlcanceCompletaDto = {
|
|
1279
1330
|
id: number;
|
|
1280
1331
|
nome: string;
|
|
1281
1332
|
numeroMetros: number;
|
|
1282
1333
|
descricao: string | null;
|
|
1283
|
-
}
|
|
1284
|
-
type
|
|
1285
|
-
interface IAtributo {
|
|
1334
|
+
};
|
|
1335
|
+
type AtributoSemPericiasDto = {
|
|
1286
1336
|
id: number;
|
|
1287
|
-
linhaEfeito:
|
|
1288
|
-
pericias: PericiaDto[];
|
|
1337
|
+
linhaEfeito: LinhaEfeitoCompletaDto;
|
|
1289
1338
|
nome: string;
|
|
1290
1339
|
descricao: string;
|
|
1291
1340
|
nomeAbreviado: string;
|
|
1292
|
-
}
|
|
1293
|
-
type
|
|
1294
|
-
interface ICategoriaRitual {
|
|
1341
|
+
};
|
|
1342
|
+
type AtributoCompletaDto = {
|
|
1295
1343
|
id: number;
|
|
1296
|
-
|
|
1297
|
-
|
|
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;
|
|
1298
1354
|
valorPsSacrificado: number;
|
|
1299
1355
|
nome: string;
|
|
1300
|
-
}
|
|
1301
|
-
type
|
|
1302
|
-
interface ICirculoRitual {
|
|
1356
|
+
};
|
|
1357
|
+
type CirculoRitualCompletaDto = {
|
|
1303
1358
|
id: number;
|
|
1304
1359
|
nome: string;
|
|
1305
1360
|
nomeCompleto: string;
|
|
1306
|
-
}
|
|
1307
|
-
type
|
|
1308
|
-
interface IClasse {
|
|
1361
|
+
};
|
|
1362
|
+
type ClasseCompletaDto = {
|
|
1309
1363
|
id: number;
|
|
1310
1364
|
nome: string;
|
|
1311
1365
|
descricao: string;
|
|
1312
|
-
}
|
|
1313
|
-
type
|
|
1314
|
-
interface IDuracao {
|
|
1366
|
+
};
|
|
1367
|
+
type DuracaoCompletaDto = {
|
|
1315
1368
|
id: number;
|
|
1316
1369
|
nome: string;
|
|
1317
|
-
}
|
|
1318
|
-
type
|
|
1319
|
-
interface IElemento {
|
|
1370
|
+
};
|
|
1371
|
+
type ElementoCompletaDto = {
|
|
1320
1372
|
id: number;
|
|
1321
1373
|
nome: string;
|
|
1322
1374
|
cores: PaletaCores;
|
|
1323
|
-
}
|
|
1324
|
-
type
|
|
1325
|
-
interface IEstatisticaDanificavel {
|
|
1375
|
+
};
|
|
1376
|
+
type EstatisticaDanificavelCompletaDto = {
|
|
1326
1377
|
id: number;
|
|
1327
1378
|
nome: string;
|
|
1328
1379
|
cor: string;
|
|
1329
1380
|
descricao: string;
|
|
1330
1381
|
nomeAbreviado: string;
|
|
1331
|
-
}
|
|
1332
|
-
type
|
|
1333
|
-
interface IExecucao {
|
|
1382
|
+
};
|
|
1383
|
+
type ExecucaoCompletaDto = {
|
|
1334
1384
|
id: number;
|
|
1335
|
-
linhaEfeito:
|
|
1385
|
+
linhaEfeito: LinhaEfeitoCompletaDto;
|
|
1336
1386
|
nome: string;
|
|
1337
|
-
}
|
|
1338
|
-
type
|
|
1339
|
-
interface IFormatoAlcance {
|
|
1387
|
+
};
|
|
1388
|
+
type FormatoAlcanceCompletaDto = {
|
|
1340
1389
|
id: number;
|
|
1341
1390
|
nome: string;
|
|
1342
|
-
}
|
|
1343
|
-
type
|
|
1344
|
-
interface ILinhaEfeito {
|
|
1391
|
+
};
|
|
1392
|
+
type LinhaEfeitoCompletaDto = {
|
|
1345
1393
|
id: number;
|
|
1346
1394
|
nome: string;
|
|
1347
|
-
}
|
|
1348
|
-
type
|
|
1349
|
-
interface INivel {
|
|
1395
|
+
};
|
|
1396
|
+
type NivelCompletaDto = {
|
|
1350
1397
|
id: number;
|
|
1351
1398
|
valorNivel: number;
|
|
1352
1399
|
nomeVisualizacao: string;
|
|
1353
|
-
}
|
|
1354
|
-
type
|
|
1355
|
-
interface INivelComponente {
|
|
1400
|
+
};
|
|
1401
|
+
type NivelComponenteCompletaDto = {
|
|
1356
1402
|
id: number;
|
|
1357
1403
|
nome: string;
|
|
1358
|
-
}
|
|
1359
|
-
type
|
|
1360
|
-
interface INivelProficiencia {
|
|
1404
|
+
};
|
|
1405
|
+
type NivelProficienciaCompletaDto = {
|
|
1361
1406
|
id: number;
|
|
1362
1407
|
nivel: number;
|
|
1363
|
-
}
|
|
1364
|
-
type
|
|
1365
|
-
interface INivelRitual {
|
|
1408
|
+
};
|
|
1409
|
+
type NivelRitualCompletaDto = {
|
|
1366
1410
|
id: number;
|
|
1367
1411
|
nome: string;
|
|
1368
|
-
}
|
|
1369
|
-
type
|
|
1370
|
-
interface IPatentePericia {
|
|
1412
|
+
};
|
|
1413
|
+
type PatentePericiaCompletaDto = {
|
|
1371
1414
|
id: number;
|
|
1372
1415
|
nome: string;
|
|
1373
1416
|
varianciaQualidadeAcao: number;
|
|
@@ -1375,261 +1418,292 @@ interface IPatentePericia {
|
|
|
1375
1418
|
descricao: string;
|
|
1376
1419
|
cor: string;
|
|
1377
1420
|
nomeAbreviado: string;
|
|
1378
|
-
}
|
|
1379
|
-
type
|
|
1380
|
-
interface IPericia {
|
|
1421
|
+
};
|
|
1422
|
+
type PericiaCompletaDto = {
|
|
1381
1423
|
id: number;
|
|
1382
|
-
atributo:
|
|
1383
|
-
linhaEfeito:
|
|
1424
|
+
atributo: AtributoSemPericiasDto;
|
|
1425
|
+
linhaEfeito: LinhaEfeitoCompletaDto;
|
|
1384
1426
|
nome: string;
|
|
1385
1427
|
descricao: string;
|
|
1386
1428
|
nomeAbreviado: string;
|
|
1387
|
-
}
|
|
1388
|
-
type
|
|
1389
|
-
interface IProficiencia {
|
|
1429
|
+
};
|
|
1430
|
+
type ProficienciaCompletaDto = {
|
|
1390
1431
|
id: number;
|
|
1391
|
-
tipoProficiencia:
|
|
1392
|
-
nivelProficiencia:
|
|
1432
|
+
tipoProficiencia: TipoProficienciaCompletaDto;
|
|
1433
|
+
nivelProficiencia: NivelProficienciaCompletaDto;
|
|
1393
1434
|
nome: string;
|
|
1394
|
-
}
|
|
1395
|
-
type
|
|
1396
|
-
interface ITipoAlvo {
|
|
1435
|
+
};
|
|
1436
|
+
type TipoAlvoCompletaDto = {
|
|
1397
1437
|
id: number;
|
|
1398
1438
|
nome: string;
|
|
1399
|
-
}
|
|
1400
|
-
type
|
|
1401
|
-
interface ITipoCategoria {
|
|
1439
|
+
};
|
|
1440
|
+
type TipoCategoriaCompletaDto = {
|
|
1402
1441
|
id: number;
|
|
1403
1442
|
valor: number;
|
|
1404
1443
|
nome: string;
|
|
1405
|
-
}
|
|
1406
|
-
type
|
|
1407
|
-
interface ITipoDano {
|
|
1444
|
+
};
|
|
1445
|
+
type TipoDanoSemPaiDto = {
|
|
1408
1446
|
id: number;
|
|
1409
|
-
linhaEfeito:
|
|
1410
|
-
tipoDanoPertencente: TipoDanoDto | null;
|
|
1447
|
+
linhaEfeito: LinhaEfeitoCompletaDto;
|
|
1411
1448
|
nome: string;
|
|
1412
|
-
}
|
|
1413
|
-
type
|
|
1414
|
-
|
|
1449
|
+
};
|
|
1450
|
+
type TipoDanoCompletaDto = {
|
|
1451
|
+
id: number;
|
|
1452
|
+
linhaEfeito: LinhaEfeitoCompletaDto;
|
|
1453
|
+
tipoDanoPertencente: TipoDanoSemPaiDto | null;
|
|
1454
|
+
nome: string;
|
|
1455
|
+
};
|
|
1456
|
+
type TipoEfeitoCompletaDto = {
|
|
1415
1457
|
id: number;
|
|
1416
1458
|
nome: string;
|
|
1417
1459
|
nomeVisualizacao: string;
|
|
1418
|
-
}
|
|
1419
|
-
type
|
|
1420
|
-
interface ITipoItem {
|
|
1460
|
+
};
|
|
1461
|
+
type TipoItemCompletaDto = {
|
|
1421
1462
|
id: number;
|
|
1422
1463
|
nome: string;
|
|
1423
|
-
}
|
|
1424
|
-
type
|
|
1425
|
-
interface ITipoProficiencia {
|
|
1464
|
+
};
|
|
1465
|
+
type TipoProficienciaCompletaDto = {
|
|
1426
1466
|
id: number;
|
|
1427
1467
|
nome: string;
|
|
1428
|
-
}
|
|
1429
|
-
type
|
|
1430
|
-
interface ILink {
|
|
1468
|
+
};
|
|
1469
|
+
type LinkCompletaDto = {
|
|
1431
1470
|
id: number;
|
|
1432
|
-
tipoLink:
|
|
1471
|
+
tipoLink: TipoLinkCompletaDto;
|
|
1433
1472
|
sufixo: string;
|
|
1434
1473
|
descricao: string;
|
|
1435
1474
|
dataCriacao: Date;
|
|
1436
1475
|
urlCompleta: string | null;
|
|
1437
|
-
}
|
|
1438
|
-
type
|
|
1439
|
-
interface ITipoLink {
|
|
1476
|
+
};
|
|
1477
|
+
type TipoLinkCompletaDto = {
|
|
1440
1478
|
id: number;
|
|
1441
1479
|
nome: string;
|
|
1442
1480
|
prefixo: string;
|
|
1443
|
-
}
|
|
1444
|
-
type
|
|
1445
|
-
interface IDificuldadeSessao {
|
|
1481
|
+
};
|
|
1482
|
+
type DificuldadeSessaoCompletaDto = {
|
|
1446
1483
|
id: number;
|
|
1447
1484
|
descricao: string;
|
|
1448
|
-
}
|
|
1449
|
-
type
|
|
1450
|
-
interface IEstiloSessaoMestrada {
|
|
1485
|
+
};
|
|
1486
|
+
type EstiloSessaoMestradaCompletaDto = {
|
|
1451
1487
|
id: number;
|
|
1452
1488
|
descricao: string;
|
|
1453
1489
|
ehSessaoUnica: boolean;
|
|
1454
|
-
}
|
|
1455
|
-
type
|
|
1456
|
-
interface ITipoSessao {
|
|
1490
|
+
};
|
|
1491
|
+
type TipoSessaoCompletaDto = {
|
|
1457
1492
|
id: number;
|
|
1458
1493
|
descricao: string;
|
|
1459
|
-
}
|
|
1460
|
-
type
|
|
1461
|
-
interface IPerfilAdmin {
|
|
1494
|
+
};
|
|
1495
|
+
type PerfilAdminCompletaDto = {
|
|
1462
1496
|
id: number;
|
|
1463
1497
|
nome: string;
|
|
1464
1498
|
descricao: string;
|
|
1465
|
-
}
|
|
1466
|
-
type
|
|
1467
|
-
interface IPerfilJogador {
|
|
1499
|
+
};
|
|
1500
|
+
type PerfilJogadorCompletaDto = {
|
|
1468
1501
|
id: number;
|
|
1469
1502
|
nome: string;
|
|
1470
1503
|
descricao: string;
|
|
1471
|
-
}
|
|
1472
|
-
type
|
|
1473
|
-
interface IPerfilMestre {
|
|
1504
|
+
};
|
|
1505
|
+
type PerfilMestreCompletaDto = {
|
|
1474
1506
|
id: number;
|
|
1475
1507
|
nome: string;
|
|
1476
1508
|
descricao: string;
|
|
1477
|
-
}
|
|
1478
|
-
type
|
|
1479
|
-
interface IFichaPersonagem {
|
|
1509
|
+
};
|
|
1510
|
+
type FichaPersonagemSemFichaDto = {
|
|
1480
1511
|
fkPersonagensId: number;
|
|
1481
1512
|
fkNiveisId: number;
|
|
1482
|
-
personagem:
|
|
1483
|
-
nivel:
|
|
1484
|
-
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
|
|
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 = {
|
|
1488
1530
|
fkPersonagensId: number;
|
|
1489
|
-
personagem: PersonagemDto;
|
|
1490
1531
|
nome: string;
|
|
1491
1532
|
anoNascimento: number;
|
|
1492
|
-
}
|
|
1493
|
-
type
|
|
1494
|
-
|
|
1495
|
-
|
|
1496
|
-
|
|
1497
|
-
|
|
1498
|
-
|
|
1499
|
-
|
|
1500
|
-
|
|
1501
|
-
|
|
1502
|
-
|
|
1503
|
-
|
|
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;
|
|
1504
1549
|
caminhoAvatar: string;
|
|
1505
|
-
fichaVigente: FichaPersonagemDto | null;
|
|
1506
1550
|
temCriacaoPendente: boolean;
|
|
1507
1551
|
temEvolucaoPendente: boolean;
|
|
1508
1552
|
pendencias: ObjetoPendeciaPersonagem;
|
|
1509
|
-
ultimoGrupoParticipado:
|
|
1553
|
+
ultimoGrupoParticipado: GrupoAventuraPersonagemSemPersonagemDto | null;
|
|
1510
1554
|
indexEstadoOcupacaoAtual: EstadoOcupacaoPersonagem;
|
|
1511
1555
|
mensagemEstadoOcupacao: string;
|
|
1512
1556
|
tempoProximaSessaoPersonagem: string;
|
|
1513
|
-
}
|
|
1514
|
-
type
|
|
1515
|
-
type
|
|
1516
|
-
interface IResumoPersonagemAventura {
|
|
1557
|
+
};
|
|
1558
|
+
type PersonagemSalaJogoDto = Pick<PersonagemCompletaDto, 'id' | 'usuario' | 'informacao' | 'caminhoAvatar'>;
|
|
1559
|
+
type ResumoPersonagemAventuraSemPersonagemDto = {
|
|
1517
1560
|
fkPersonagensId: number;
|
|
1518
1561
|
fkAventurasId: number;
|
|
1519
|
-
|
|
1520
|
-
aventura: AventuraDto;
|
|
1562
|
+
aventura: AventuraCompletaDto;
|
|
1521
1563
|
texto: string;
|
|
1522
|
-
}
|
|
1523
|
-
type
|
|
1524
|
-
|
|
1564
|
+
};
|
|
1565
|
+
type ResumoPersonagemAventuraCompletaDto = {
|
|
1566
|
+
fkPersonagensId: number;
|
|
1567
|
+
fkAventurasId: number;
|
|
1568
|
+
personagem: PersonagemCompletaDto;
|
|
1569
|
+
aventura: AventuraCompletaDto;
|
|
1570
|
+
texto: string;
|
|
1571
|
+
};
|
|
1572
|
+
type TipoPersonagemCompletaDto = {
|
|
1525
1573
|
id: number;
|
|
1526
1574
|
nome: string;
|
|
1527
1575
|
descricao: string;
|
|
1528
|
-
}
|
|
1529
|
-
type
|
|
1530
|
-
interface IDetalheRascunhoAventura {
|
|
1576
|
+
};
|
|
1577
|
+
type DetalheRascunhoAventuraSemRefsDto = {
|
|
1531
1578
|
fkRascunhoId: number;
|
|
1532
|
-
rascunho: RascunhoDto;
|
|
1533
|
-
aventura: AventuraDto | null;
|
|
1534
1579
|
descricao: Record<string, any>;
|
|
1535
1580
|
dataAtualizacao: Date;
|
|
1536
|
-
}
|
|
1537
|
-
type
|
|
1538
|
-
interface IDetalheRascunhoSessaoUnicaCanonica {
|
|
1581
|
+
};
|
|
1582
|
+
type DetalheRascunhoAventuraCompletaDto = {
|
|
1539
1583
|
fkRascunhoId: number;
|
|
1540
|
-
rascunho:
|
|
1541
|
-
|
|
1542
|
-
dificuldadeSessao: DificuldadeSessaoDto;
|
|
1543
|
-
sessaoUnica: DetalheSessaoUnicaDto;
|
|
1584
|
+
rascunho: RascunhoCompletaDto;
|
|
1585
|
+
aventura: AventuraCompletaDto | null;
|
|
1544
1586
|
descricao: Record<string, any>;
|
|
1545
1587
|
dataAtualizacao: Date;
|
|
1546
|
-
}
|
|
1547
|
-
type
|
|
1548
|
-
interface IDetalheRascunhoSessaoUnicaNaoCanonica {
|
|
1588
|
+
};
|
|
1589
|
+
type DetalheRascunhoSessaoUnicaCanonicaSemRefsDto = {
|
|
1549
1590
|
fkRascunhoId: number;
|
|
1550
|
-
|
|
1551
|
-
|
|
1552
|
-
|
|
1553
|
-
|
|
1554
|
-
|
|
1591
|
+
tipoSessao: TipoSessaoCompletaDto;
|
|
1592
|
+
dificuldadeSessao: DificuldadeSessaoCompletaDto;
|
|
1593
|
+
sessaoUnica: DetalheSessaoUnicaCompletaDto | null;
|
|
1594
|
+
descricao: Record<string, any>;
|
|
1595
|
+
dataAtualizacao: Date;
|
|
1596
|
+
};
|
|
1597
|
+
type DetalheRascunhoSessaoUnicaCanonicaCompletaDto = {
|
|
1598
|
+
fkRascunhoId: number;
|
|
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;
|
|
1555
1612
|
numeroMinimoJogadores: number;
|
|
1556
1613
|
numeroMaximoJogadores: number | null;
|
|
1557
1614
|
descricao: Record<string, any>;
|
|
1558
1615
|
dataAtualizacao: Date;
|
|
1559
|
-
}
|
|
1560
|
-
type
|
|
1561
|
-
|
|
1562
|
-
|
|
1563
|
-
|
|
1564
|
-
|
|
1565
|
-
|
|
1566
|
-
|
|
1567
|
-
|
|
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;
|
|
1568
1636
|
titulo: string;
|
|
1569
1637
|
dataCriacao: Date;
|
|
1570
1638
|
possuiDetalhesConfigurados: boolean;
|
|
1571
1639
|
detalheUtilizacaoRascunho: DetalheUtilizacaoRascunho;
|
|
1572
|
-
}
|
|
1573
|
-
type
|
|
1574
|
-
interface IEstudo {
|
|
1640
|
+
};
|
|
1641
|
+
type EstudoCompletaDto = {
|
|
1575
1642
|
id: number;
|
|
1576
1643
|
nome: string;
|
|
1577
|
-
}
|
|
1578
|
-
type
|
|
1579
|
-
interface IFichaSer {
|
|
1644
|
+
};
|
|
1645
|
+
type FichaSerCompletaDto = {
|
|
1580
1646
|
id: number;
|
|
1581
1647
|
fkSeresId: number;
|
|
1582
|
-
ser:
|
|
1583
|
-
ficha:
|
|
1584
|
-
}
|
|
1585
|
-
type
|
|
1586
|
-
interface ISer {
|
|
1648
|
+
ser: SerCompletaDto;
|
|
1649
|
+
ficha: FichaCompletaDto;
|
|
1650
|
+
};
|
|
1651
|
+
type FichaSerSemSerDto = {
|
|
1587
1652
|
id: number;
|
|
1588
|
-
|
|
1589
|
-
|
|
1590
|
-
|
|
1653
|
+
fkSeresId: number;
|
|
1654
|
+
ficha: FichaCompletaDto;
|
|
1655
|
+
};
|
|
1656
|
+
type FichaSerSemFichaDto = {
|
|
1591
1657
|
id: number;
|
|
1592
|
-
|
|
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;
|
|
1593
1668
|
tempoDoInicio: string;
|
|
1594
1669
|
tempoDeDuracao: string;
|
|
1595
1670
|
descricao: string;
|
|
1596
|
-
}
|
|
1597
|
-
type
|
|
1598
|
-
interface ISessao {
|
|
1671
|
+
};
|
|
1672
|
+
type SessaoCompletaDto = {
|
|
1599
1673
|
id: number;
|
|
1600
|
-
detalheSessaoAventura: DetalheSessaoAventuraDto;
|
|
1601
|
-
detalheSessaoUnica: DetalheSessaoUnicaDto;
|
|
1602
|
-
detalheSessaoCanonica: DetalheSessaoCanonicaDto;
|
|
1603
1674
|
dataCriacao: Date;
|
|
1604
1675
|
dataPrevisaoInicio: Date;
|
|
1605
1676
|
dataInicio: Date | null;
|
|
1606
1677
|
duracaoEmSegundos: number | null;
|
|
1607
|
-
tipo: TipoSessao;
|
|
1608
|
-
tipoPorExtenso: string;
|
|
1609
|
-
usuarioMestre: UsuarioDto;
|
|
1610
1678
|
dataQueEncerrou: Date | null;
|
|
1611
1679
|
estadoAtual: EstadoSessao;
|
|
1680
|
+
detalheData: string;
|
|
1681
|
+
tipo: TipoSessao;
|
|
1682
|
+
tipoPorExtenso: string;
|
|
1683
|
+
usuarioMestre: UsuarioCompletaDto;
|
|
1612
1684
|
tituloInteligente: TituloSessaoInteligente;
|
|
1613
1685
|
imagemCapa: {
|
|
1614
1686
|
temCapaConfigurada: boolean;
|
|
1615
1687
|
caminhoCapa: string;
|
|
1616
1688
|
};
|
|
1617
|
-
|
|
1618
|
-
|
|
1619
|
-
|
|
1620
|
-
|
|
1689
|
+
dadosGerais: SessaoDadosGerais;
|
|
1690
|
+
};
|
|
1691
|
+
type SessaoEmJogoDto = {
|
|
1692
|
+
titulo: string;
|
|
1693
|
+
imagemCapa: string;
|
|
1694
|
+
};
|
|
1621
1695
|
type TipoSessao = 'AVENTURA' | 'SESSAO_UNICA_CANONICA' | 'SESSAO_UNICA_NAO_CANONICA';
|
|
1622
1696
|
declare const TIPO_SESSAO_LABEL: Record<TipoSessao, string>;
|
|
1623
1697
|
type SessaoDadosGerais = {
|
|
1624
|
-
mestre:
|
|
1698
|
+
mestre: UsuarioCompletaDto;
|
|
1625
1699
|
participantes: ParticipanteSessao[];
|
|
1626
1700
|
};
|
|
1627
1701
|
type ParticipanteSessaoVinculoJogo = {
|
|
1628
1702
|
personagem: PersonagemSalaJogoDto | null;
|
|
1629
|
-
ficha:
|
|
1703
|
+
ficha: FichaCompletaDto | null;
|
|
1630
1704
|
};
|
|
1631
1705
|
type ParticipanteSessao = {
|
|
1632
|
-
jogador:
|
|
1706
|
+
jogador: UsuarioCompletaDto;
|
|
1633
1707
|
vinculoJogo: ParticipanteSessaoVinculoJogo;
|
|
1634
1708
|
};
|
|
1635
1709
|
type DadosCriacaoSessao = {
|
|
@@ -1653,26 +1727,32 @@ declare class AuthSession {
|
|
|
1653
1727
|
json: string;
|
|
1654
1728
|
constructor(expiredAt: number, id: string, json: string, destroyedAt?: Date | undefined);
|
|
1655
1729
|
}
|
|
1656
|
-
|
|
1730
|
+
type CustomizacaoUsuarioSemUsuarioDto = {
|
|
1657
1731
|
fkUsuariosId: number;
|
|
1658
|
-
|
|
1659
|
-
|
|
1660
|
-
|
|
1661
|
-
|
|
1662
|
-
conquistaExibirPerfil3: ConquistaDto | null;
|
|
1732
|
+
personagemAvatarPrincipal: PersonagemCompletaDto | null;
|
|
1733
|
+
conquistaExibirPerfil1: ConquistaCompletaDto | null;
|
|
1734
|
+
conquistaExibirPerfil2: ConquistaCompletaDto | null;
|
|
1735
|
+
conquistaExibirPerfil3: ConquistaCompletaDto | null;
|
|
1663
1736
|
caminhoAvatar: string;
|
|
1664
|
-
}
|
|
1665
|
-
type
|
|
1666
|
-
|
|
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 = {
|
|
1667
1748
|
fkUsuariosId: number;
|
|
1668
|
-
usuario:
|
|
1669
|
-
tipoFrequencia:
|
|
1749
|
+
usuario: UsuarioCompletaDto;
|
|
1750
|
+
tipoFrequencia: TipoFrequenciaCompletaDto;
|
|
1670
1751
|
disponibilidades: ListaDisponibilidadesUsuario;
|
|
1671
1752
|
dataAtualizacao: Date;
|
|
1672
1753
|
dataValidade: Date;
|
|
1673
1754
|
estaValido: boolean;
|
|
1674
|
-
}
|
|
1675
|
-
type DisponibilidadeUsuarioDto = IDisponibilidadeUsuario;
|
|
1755
|
+
};
|
|
1676
1756
|
type ListaDisponibilidadesUsuario = DisponibilidadesDDS[];
|
|
1677
1757
|
interface DisponibilidadesDDS {
|
|
1678
1758
|
dds: DiaDaSemana;
|
|
@@ -1682,29 +1762,31 @@ interface JanelaDisponibilidade {
|
|
|
1682
1762
|
horaInicio: MomentoFormatado24;
|
|
1683
1763
|
horaFim: MomentoFormatado24;
|
|
1684
1764
|
}
|
|
1685
|
-
|
|
1765
|
+
type GithubUsuarioSemUsuarioDto = {
|
|
1686
1766
|
fkUsuarioId: number;
|
|
1687
|
-
usuario: UsuarioDto;
|
|
1688
1767
|
githubId: string;
|
|
1689
|
-
}
|
|
1690
|
-
type
|
|
1691
|
-
|
|
1692
|
-
|
|
1693
|
-
|
|
1694
|
-
|
|
1695
|
-
|
|
1696
|
-
|
|
1697
|
-
|
|
1698
|
-
|
|
1699
|
-
|
|
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;
|
|
1700
1783
|
username: string;
|
|
1701
1784
|
email: string | null;
|
|
1702
1785
|
discordId: string;
|
|
1703
1786
|
githubId: string | null;
|
|
1704
1787
|
dataCriacao: Date;
|
|
1705
1788
|
listaCargos: CargosUsuario;
|
|
1706
|
-
}
|
|
1707
|
-
type UsuarioDto = IUsuario;
|
|
1789
|
+
};
|
|
1708
1790
|
type LayoutContextualizadoInicial = {
|
|
1709
1791
|
readonly titulo?: string;
|
|
1710
1792
|
readonly escondeFundo?: boolean;
|
|
@@ -1752,7 +1834,7 @@ type FichaEmJogo = {
|
|
|
1752
1834
|
pericias: PericiaFicha[];
|
|
1753
1835
|
estatisticasDanificaveis: EstatisticaDanificavelFicha[];
|
|
1754
1836
|
detalhe: DetalheFicha;
|
|
1755
|
-
classe:
|
|
1837
|
+
classe: ClasseCompletaDto;
|
|
1756
1838
|
detalhesUsoEvolucaoPericiasLivres: RegistroPericiaLivre[];
|
|
1757
1839
|
};
|
|
1758
1840
|
/**
|
|
@@ -1807,10 +1889,10 @@ type J_DadosFixosFichaEmJogo = {
|
|
|
1807
1889
|
type SalaDeJogo_Codigo = `${number}_${string}`;
|
|
1808
1890
|
type SalaDeJogoParams = {
|
|
1809
1891
|
tipo: "sessao";
|
|
1810
|
-
sessao:
|
|
1892
|
+
sessao: SessaoCompletaDto;
|
|
1811
1893
|
} | {
|
|
1812
1894
|
tipo: "solo";
|
|
1813
|
-
jogadorSolo:
|
|
1895
|
+
jogadorSolo: UsuarioCompletaDto;
|
|
1814
1896
|
};
|
|
1815
1897
|
declare enum SalaDeJogo_Tipo {
|
|
1816
1898
|
SALA__SOLO = "Sess\u00E3o Solo",
|
|
@@ -1879,7 +1961,7 @@ type ObjetoEmJogoFixoDto = {
|
|
|
1879
1961
|
};
|
|
1880
1962
|
type DadosParticipanteJogo = {
|
|
1881
1963
|
personagem: PersonagemSalaJogoDto | null;
|
|
1882
|
-
ficha:
|
|
1964
|
+
ficha: FichaCompletaDto | null;
|
|
1883
1965
|
};
|
|
1884
1966
|
type MenuItemNode = {
|
|
1885
1967
|
readonly tipo: 'item';
|
|
@@ -2080,7 +2162,7 @@ type PayloadExecutaTestePericia_PROTOTIPO = {
|
|
|
2080
2162
|
abrevPericia: string;
|
|
2081
2163
|
};
|
|
2082
2164
|
type SOCKET_AcessoUsuario = {
|
|
2083
|
-
usuario:
|
|
2165
|
+
usuario: UsuarioCompletaDto;
|
|
2084
2166
|
paginaAtual?: PaginaTemplate | null;
|
|
2085
2167
|
dataAtualizacao: Date;
|
|
2086
2168
|
};
|
|
@@ -2211,7 +2293,7 @@ declare namespace EventosWebSocket {
|
|
|
2211
2293
|
tipo: "emite";
|
|
2212
2294
|
payload: {};
|
|
2213
2295
|
response: {
|
|
2214
|
-
sessaoEmAndamento:
|
|
2296
|
+
sessaoEmAndamento: SessaoCompletaDto | null;
|
|
2215
2297
|
};
|
|
2216
2298
|
delivery: "perRecipient";
|
|
2217
2299
|
};
|
|
@@ -2382,21 +2464,21 @@ type CargosUsuario = {
|
|
|
2382
2464
|
cargos: string[];
|
|
2383
2465
|
};
|
|
2384
2466
|
type ObjetoAutenticacao = {
|
|
2385
|
-
usuarioLogado:
|
|
2386
|
-
variaveisAmbiente:
|
|
2467
|
+
usuarioLogado: UsuarioCompletaDto | null;
|
|
2468
|
+
variaveisAmbiente: VariavelAmbienteCompletaDto[];
|
|
2387
2469
|
capacidadesConcedidas: Record<string, true>;
|
|
2388
2470
|
cadastroPermitido: boolean;
|
|
2389
2471
|
};
|
|
2390
2472
|
type ObjetoCache = {
|
|
2391
|
-
atributos:
|
|
2392
|
-
pericias:
|
|
2393
|
-
patentesPericia:
|
|
2394
|
-
estatisticasDanificaveis:
|
|
2395
|
-
classes:
|
|
2396
|
-
tiposGanho:
|
|
2397
|
-
niveis:
|
|
2398
|
-
dificuldadesSessao:
|
|
2399
|
-
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[];
|
|
2400
2482
|
};
|
|
2401
2483
|
type ObjetoPendeciaPersonagem = {
|
|
2402
2484
|
pendeciaUsuario: EstadoPendenciaPersonagem;
|
|
@@ -2406,21 +2488,21 @@ type TipoVariavelAmbiente = 'boolean' | 'string' | 'number';
|
|
|
2406
2488
|
type ObjetoEvolucaoCompleto = ObjetoEvolucao & ObjetoGanhosEvolucao;
|
|
2407
2489
|
type ObjetoEvolucao = {
|
|
2408
2490
|
fichaEmProcessoDeEvolucao: FichaEmProcessoDeEvolucaoDto;
|
|
2409
|
-
listaReferenciaTodosAtributos:
|
|
2410
|
-
listaReferenciaPericiasDisponiveis:
|
|
2411
|
-
listaReferenciaTodasPatentes:
|
|
2412
|
-
listaReferenciaTodasEstatisticasDanificaveis:
|
|
2413
|
-
listaReferenciaTodasClasses:
|
|
2414
|
-
listaReferenciaTodosTiposGanho:
|
|
2491
|
+
listaReferenciaTodosAtributos: AtributoCompletaDto[];
|
|
2492
|
+
listaReferenciaPericiasDisponiveis: PericiaCompletaDto[];
|
|
2493
|
+
listaReferenciaTodasPatentes: PatentePericiaCompletaDto[];
|
|
2494
|
+
listaReferenciaTodasEstatisticasDanificaveis: EstatisticaDanificavelCompletaDto[];
|
|
2495
|
+
listaReferenciaTodasClasses: ClasseCompletaDto[];
|
|
2496
|
+
listaReferenciaTodosTiposGanho: TipoGanhoNivelCompletaDto[];
|
|
2415
2497
|
};
|
|
2416
2498
|
type ObjetoGanhosEvolucao = {
|
|
2417
|
-
listaGanhos:
|
|
2499
|
+
listaGanhos: GanhoNivelClasseCompletaDto[];
|
|
2418
2500
|
listaGanhosEstatisticasPorAtributos: GanhoEstatistica[];
|
|
2419
2501
|
};
|
|
2420
2502
|
type GanhoEstatistica = {
|
|
2421
|
-
estatisticaDanificavel:
|
|
2503
|
+
estatisticaDanificavel: EstatisticaDanificavelCompletaDto;
|
|
2422
2504
|
ganhosPorAtributo: {
|
|
2423
|
-
atributo:
|
|
2505
|
+
atributo: AtributoCompletaDto;
|
|
2424
2506
|
valorPorUnidade: number;
|
|
2425
2507
|
}[];
|
|
2426
2508
|
};
|
|
@@ -2550,7 +2632,7 @@ declare const Eventos_Emite: {
|
|
|
2550
2632
|
tipo: "emite";
|
|
2551
2633
|
payload: {};
|
|
2552
2634
|
response: {
|
|
2553
|
-
sessaoEmAndamento:
|
|
2635
|
+
sessaoEmAndamento: SessaoCompletaDto | null;
|
|
2554
2636
|
};
|
|
2555
2637
|
delivery: "perRecipient";
|
|
2556
2638
|
} & {
|
|
@@ -2834,6 +2916,7 @@ declare const PAGINAS: {
|
|
|
2834
2916
|
readonly sessoes: PaginaDef<"/sessoes", PaginaInfoComLayoutContextualizado>;
|
|
2835
2917
|
readonly sessao: PaginaDef<"/sessao/[id]", PaginaInfoComLayoutContextualizado>;
|
|
2836
2918
|
readonly sessaoAovivo: PaginaDef<"/sessao-aovivo", PaginaInfoBase>;
|
|
2919
|
+
readonly assistir: PaginaDef<"/assistir", PaginaInfoComLayoutContextualizado>;
|
|
2837
2920
|
};
|
|
2838
2921
|
type Folhas<T> = T extends PaginaDef<string> ? T | Folhas<Omit<T, keyof PaginaDef<string>>> : T extends readonly (infer U)[] ? Folhas<U> : T extends object ? {
|
|
2839
2922
|
[K in keyof T]-?: Folhas<NonNullable<T[K]>>;
|
|
@@ -2874,6 +2957,9 @@ declare const MENUS_INTERNOS_LAYOUTCONTEXTO: {
|
|
|
2874
2957
|
readonly aventuras: {
|
|
2875
2958
|
readonly tipo: "dinamico";
|
|
2876
2959
|
};
|
|
2960
|
+
readonly assistir: {
|
|
2961
|
+
readonly tipo: "dinamico";
|
|
2962
|
+
};
|
|
2877
2963
|
readonly jogo: {
|
|
2878
2964
|
readonly menu: readonly [MenuGrupoNode, MenuGrupoNode, MenuGrupoNode];
|
|
2879
2965
|
readonly admin: {
|
|
@@ -3019,4 +3105,4 @@ declare function isRegrasUploadArquivoValidas(regras: RegrasUploadArquivo): regr
|
|
|
3019
3105
|
declare function mimeFromFormato(formato: FormatoUploadArquivo): string | null;
|
|
3020
3106
|
declare function acceptFromFormatos(formatos: FormatoUploadArquivo[]): string;
|
|
3021
3107
|
declare function isFormatoImagemBitmap(formato: FormatoUploadArquivo): formato is "webp";
|
|
3022
|
-
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,
|
|
3108
|
+
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 };
|