types-nora-api 0.0.24 → 0.0.26
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 +89 -39
- package/dist/classes.js +8 -9
- package/package.json +1 -1
package/dist/classes.d.ts
CHANGED
|
@@ -1,78 +1,85 @@
|
|
|
1
1
|
interface IAventura {
|
|
2
|
+
id: number;
|
|
2
3
|
geracao: GeracaoDto;
|
|
3
|
-
|
|
4
|
+
imagemCapa: ImagemDto | null;
|
|
5
|
+
gruposAventura: GrupoAventuraDto[] | null;
|
|
4
6
|
titulo: string;
|
|
5
7
|
dataCriacao: Date;
|
|
6
8
|
obtemEstadoAtual: AventuraEstado;
|
|
7
9
|
}
|
|
8
10
|
type AventuraDto = IAventura;
|
|
9
11
|
interface IConviteGrupoAventuraPersonagem {
|
|
12
|
+
id: number;
|
|
10
13
|
grupoAventura: GrupoAventuraDto;
|
|
11
14
|
usuario: UsuarioDto;
|
|
12
15
|
dataCriacao: Date;
|
|
13
16
|
}
|
|
14
17
|
type ConviteGrupoAventuraPersonagemDto = IConviteGrupoAventuraPersonagem;
|
|
15
18
|
interface IGrupoAventura {
|
|
19
|
+
id: number;
|
|
16
20
|
nome: string;
|
|
17
21
|
aventura: AventuraDto;
|
|
18
22
|
usuarioMestre: UsuarioDto;
|
|
19
|
-
personagensDaAventura: GrupoAventuraPersonagemDto[];
|
|
20
|
-
dataPrevisaoInicio: Date;
|
|
21
|
-
dataInicio: Date;
|
|
22
|
-
dataFim: Date;
|
|
23
|
-
ddsPadrao: number;
|
|
24
|
-
recorrencia: string;
|
|
25
|
-
horaInicio: string;
|
|
26
|
-
horaFim: string;
|
|
23
|
+
personagensDaAventura: GrupoAventuraPersonagemDto[] | null;
|
|
24
|
+
dataPrevisaoInicio: Date | null;
|
|
25
|
+
dataInicio: Date | null;
|
|
26
|
+
dataFim: Date | null;
|
|
27
|
+
ddsPadrao: number | null;
|
|
28
|
+
recorrencia: string | null;
|
|
29
|
+
horaInicio: string | null;
|
|
30
|
+
horaFim: string | null;
|
|
27
31
|
obtemEstadoAtual: AventuraEstado;
|
|
28
32
|
obtemTextoInformacionalOcorrencia: string | null;
|
|
29
33
|
}
|
|
30
34
|
type GrupoAventuraDto = IGrupoAventura;
|
|
31
35
|
interface IGrupoAventuraPersonagem {
|
|
36
|
+
fkGruposAventurasId: number;
|
|
37
|
+
fkPersonagensId: number;
|
|
32
38
|
grupoAventura: GrupoAventuraDto;
|
|
33
39
|
personagem: PersonagemDto;
|
|
34
40
|
}
|
|
35
41
|
type GrupoAventuraPersonagemDto = IGrupoAventuraPersonagem;
|
|
36
42
|
interface IRespostaConvite {
|
|
43
|
+
fkConviteGrupoAventuraPersonagemId: number;
|
|
37
44
|
convite: ConviteGrupoAventuraPersonagemDto;
|
|
38
|
-
tipoResposta: TipoRespostaConviteDto;
|
|
39
45
|
personagemVinculado: PersonagemDto;
|
|
40
46
|
dataCriacao: Date;
|
|
47
|
+
criouNovoPersonagem: boolean;
|
|
41
48
|
}
|
|
42
49
|
type RespostaConviteDto = IRespostaConvite;
|
|
43
|
-
interface ITipoRespostaConvite {
|
|
44
|
-
nome: string;
|
|
45
|
-
}
|
|
46
|
-
type TipoRespostaConviteDto = ITipoRespostaConvite;
|
|
47
50
|
interface IConquista {
|
|
51
|
+
id: number;
|
|
48
52
|
tipoConquista: TipoConquistaDto;
|
|
49
53
|
nome: string;
|
|
50
54
|
descricao: string;
|
|
51
55
|
}
|
|
52
56
|
type ConquistaDto = IConquista;
|
|
53
57
|
interface ITipoConquista {
|
|
58
|
+
id: number;
|
|
54
59
|
nome: string;
|
|
55
60
|
}
|
|
56
61
|
type TipoConquistaDto = ITipoConquista;
|
|
57
62
|
interface IGeracao {
|
|
58
63
|
id: number;
|
|
59
|
-
aventuras: AventuraDto[];
|
|
60
|
-
nome: string;
|
|
61
|
-
anoInicio: number;
|
|
64
|
+
aventuras: AventuraDto[] | null;
|
|
65
|
+
nome: string | null;
|
|
66
|
+
anoInicio: number | null;
|
|
62
67
|
}
|
|
63
68
|
type GeracaoDto = IGeracao;
|
|
64
|
-
|
|
69
|
+
interface IImagem {
|
|
65
70
|
id: number;
|
|
66
|
-
|
|
67
|
-
constructor(id: number, urlArquivo: string);
|
|
71
|
+
caminho: string;
|
|
68
72
|
}
|
|
73
|
+
type ImagemDto = IImagem;
|
|
69
74
|
interface IAlcance {
|
|
75
|
+
id: number;
|
|
70
76
|
nome: string;
|
|
71
77
|
numeroMetros: number;
|
|
72
|
-
descricao: string;
|
|
78
|
+
descricao: string | null;
|
|
73
79
|
}
|
|
74
80
|
type AlcanceDto = IAlcance;
|
|
75
81
|
interface IAtributo {
|
|
82
|
+
id: number;
|
|
76
83
|
linhaEfeito: LinhaEfeitoDto;
|
|
77
84
|
pericias: PericiaDto[];
|
|
78
85
|
nome: string;
|
|
@@ -81,6 +88,7 @@ interface IAtributo {
|
|
|
81
88
|
}
|
|
82
89
|
type AtributoDto = IAtributo;
|
|
83
90
|
interface ICategoriaRitual {
|
|
91
|
+
id: number;
|
|
84
92
|
circuloRitual: CirculoRitualDto;
|
|
85
93
|
nivelRitual: NivelRitualDto;
|
|
86
94
|
valorPsSacrificado: number;
|
|
@@ -88,25 +96,30 @@ interface ICategoriaRitual {
|
|
|
88
96
|
}
|
|
89
97
|
type CategoriaRitualDto = ICategoriaRitual;
|
|
90
98
|
interface ICirculoRitual {
|
|
99
|
+
id: number;
|
|
91
100
|
nome: string;
|
|
92
101
|
nomeCompleto: string;
|
|
93
102
|
}
|
|
94
103
|
type CirculoRitualDto = ICirculoRitual;
|
|
95
104
|
interface IClasse {
|
|
105
|
+
id: number;
|
|
96
106
|
nome: string;
|
|
97
107
|
descricao: string;
|
|
98
108
|
}
|
|
99
109
|
type ClasseDto = IClasse;
|
|
100
110
|
interface IDuracao {
|
|
111
|
+
id: number;
|
|
101
112
|
nome: string;
|
|
102
113
|
}
|
|
103
114
|
type DuracaoDto = IDuracao;
|
|
104
115
|
interface IElemento {
|
|
116
|
+
id: number;
|
|
105
117
|
nome: string;
|
|
106
118
|
cores: PaletaCores;
|
|
107
119
|
}
|
|
108
120
|
type ElementoDto = IElemento;
|
|
109
121
|
interface IEstatisticaDanificavel {
|
|
122
|
+
id: number;
|
|
110
123
|
nome: string;
|
|
111
124
|
cor: string;
|
|
112
125
|
descricao: string;
|
|
@@ -114,42 +127,51 @@ interface IEstatisticaDanificavel {
|
|
|
114
127
|
}
|
|
115
128
|
type EstatisticaDanificavelDto = IEstatisticaDanificavel;
|
|
116
129
|
interface IExecucao {
|
|
130
|
+
id: number;
|
|
117
131
|
linhaEfeito: LinhaEfeitoDto;
|
|
118
132
|
nome: string;
|
|
119
133
|
}
|
|
120
134
|
type ExecucaoDto = IExecucao;
|
|
121
135
|
interface IFormatoAlcance {
|
|
136
|
+
id: number;
|
|
122
137
|
nome: string;
|
|
123
138
|
}
|
|
124
139
|
type FormatoAlcanceDto = IFormatoAlcance;
|
|
125
140
|
interface ILinhaEfeito {
|
|
141
|
+
id: number;
|
|
126
142
|
nome: string;
|
|
127
143
|
}
|
|
128
144
|
type LinhaEfeitoDto = ILinhaEfeito;
|
|
129
145
|
interface INivel {
|
|
146
|
+
id: number;
|
|
130
147
|
valoNivel: number;
|
|
131
|
-
|
|
148
|
+
nomeVisualizacao: string;
|
|
132
149
|
}
|
|
133
150
|
type NivelDto = INivel;
|
|
134
151
|
interface INivelComponente {
|
|
152
|
+
id: number;
|
|
135
153
|
nome: string;
|
|
136
154
|
}
|
|
137
155
|
type NivelComponenteDto = INivelComponente;
|
|
138
156
|
interface INivelProficiencia {
|
|
157
|
+
id: number;
|
|
139
158
|
nivel: number;
|
|
140
159
|
}
|
|
141
160
|
type NivelProficienciaDto = INivelProficiencia;
|
|
142
161
|
interface INivelRitual {
|
|
162
|
+
id: number;
|
|
143
163
|
nome: string;
|
|
144
164
|
}
|
|
145
165
|
type NivelRitualDto = INivelRitual;
|
|
146
166
|
interface IPatentePericia {
|
|
167
|
+
id: number;
|
|
147
168
|
nome: string;
|
|
148
169
|
bonusPatente: number;
|
|
149
170
|
cor: string;
|
|
150
171
|
}
|
|
151
172
|
type PatentePericiaDto = IPatentePericia;
|
|
152
173
|
interface IPericia {
|
|
174
|
+
id: number;
|
|
153
175
|
atributo: AtributoDto;
|
|
154
176
|
linhaEfeito: LinhaEfeitoDto;
|
|
155
177
|
nome: string;
|
|
@@ -158,61 +180,75 @@ interface IPericia {
|
|
|
158
180
|
}
|
|
159
181
|
type PericiaDto = IPericia;
|
|
160
182
|
interface IProficiencia {
|
|
183
|
+
id: number;
|
|
161
184
|
tipoProficiencia: TipoProficienciaDto;
|
|
162
185
|
nivelProficiencia: NivelProficienciaDto;
|
|
163
186
|
nome: string;
|
|
164
187
|
}
|
|
165
188
|
type ProficienciaDto = IProficiencia;
|
|
166
189
|
interface ITipoAlvo {
|
|
190
|
+
id: number;
|
|
167
191
|
nome: string;
|
|
168
192
|
}
|
|
169
193
|
type TipoAlvoDto = ITipoAlvo;
|
|
170
194
|
interface ITipoCategoria {
|
|
171
|
-
|
|
172
|
-
|
|
195
|
+
id: number;
|
|
196
|
+
valor: number;
|
|
197
|
+
nome: string;
|
|
173
198
|
}
|
|
174
199
|
type TipoCategoriaDto = ITipoCategoria;
|
|
175
200
|
interface ITipoDano {
|
|
201
|
+
id: number;
|
|
176
202
|
linhaEfeito: LinhaEfeitoDto;
|
|
177
|
-
tipoDanoPertencente: TipoDanoDto;
|
|
203
|
+
tipoDanoPertencente: TipoDanoDto | null;
|
|
178
204
|
nome: string;
|
|
179
205
|
}
|
|
180
206
|
type TipoDanoDto = ITipoDano;
|
|
181
207
|
interface ITipoEfeito {
|
|
208
|
+
id: number;
|
|
182
209
|
nome: string;
|
|
183
210
|
nomeVisualizacao: string;
|
|
184
211
|
}
|
|
185
212
|
type TipoEfeitoDto = ITipoEfeito;
|
|
186
213
|
interface ITipoItem {
|
|
214
|
+
id: number;
|
|
187
215
|
nome: string;
|
|
188
216
|
}
|
|
189
217
|
type TipoItemDto = ITipoItem;
|
|
190
218
|
interface ITipoProficiencia {
|
|
219
|
+
id: number;
|
|
191
220
|
nome: string;
|
|
192
221
|
}
|
|
193
222
|
type TipoProficienciaDto = ITipoProficiencia;
|
|
194
223
|
interface IPerfilAdmin {
|
|
224
|
+
id: number;
|
|
195
225
|
nome: string;
|
|
196
226
|
descricao: string;
|
|
197
227
|
}
|
|
198
228
|
type PerfilAdminDto = IPerfilAdmin;
|
|
199
229
|
interface IPerfilJogador {
|
|
230
|
+
id: number;
|
|
200
231
|
nome: string;
|
|
201
232
|
descricao: string;
|
|
202
233
|
}
|
|
203
234
|
type PerfilJogadorDto = IPerfilJogador;
|
|
204
235
|
interface IPerfilMestre {
|
|
236
|
+
id: number;
|
|
205
237
|
nome: string;
|
|
206
238
|
descricao: string;
|
|
207
239
|
}
|
|
208
240
|
type PerfilMestreDto = IPerfilMestre;
|
|
209
241
|
interface IAtributoPersonagem {
|
|
242
|
+
fkPersonagemId: number;
|
|
243
|
+
fkAtributoId: number;
|
|
210
244
|
personagem: PersonagemDto;
|
|
211
245
|
atributo: AtributoDto;
|
|
212
246
|
valor: number;
|
|
213
247
|
}
|
|
214
248
|
type AtributoPersonagemDto = IAtributoPersonagem;
|
|
215
249
|
interface IEstatisticaDanificavelPersonagem {
|
|
250
|
+
fkPersonagemId: number;
|
|
251
|
+
fkEstatisticaDanificavelId: number;
|
|
216
252
|
personagem: PersonagemDto;
|
|
217
253
|
estatisticaDanificavel: EstatisticaDanificavelDto;
|
|
218
254
|
valorMaximo: number;
|
|
@@ -220,37 +256,46 @@ interface IEstatisticaDanificavelPersonagem {
|
|
|
220
256
|
}
|
|
221
257
|
type EstatisticaDanificavelPersonagemDto = IEstatisticaDanificavelPersonagem;
|
|
222
258
|
interface IInformacaoPersonagem {
|
|
259
|
+
fkPersonagensId: number;
|
|
223
260
|
personagem: PersonagemDto;
|
|
224
261
|
nome: string;
|
|
225
262
|
}
|
|
226
263
|
type InformacaoPersonagemDto = IInformacaoPersonagem;
|
|
227
264
|
interface IPericiaPersonagem {
|
|
265
|
+
fkPersonagemId: number;
|
|
266
|
+
fkPericiaId: number;
|
|
228
267
|
personagem: PersonagemDto;
|
|
229
268
|
pericia: PericiaDto;
|
|
230
269
|
patentePericia: PatentePericiaDto;
|
|
231
270
|
}
|
|
232
271
|
type PericiaPersonagemDto = IPericiaPersonagem;
|
|
233
272
|
interface IPersonagem {
|
|
273
|
+
id: number;
|
|
234
274
|
tipoPersonagem: TipoPersonagemDto;
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
275
|
+
usuario: UsuarioDto;
|
|
276
|
+
imagemAvatar: ImagemDto | null;
|
|
277
|
+
informacao: InformacaoPersonagemDto | null;
|
|
278
|
+
estatisticasDanificaveisPersonagem: EstatisticaDanificavelPersonagemDto[] | null;
|
|
279
|
+
atributosPersonagem: AtributoPersonagemDto[] | null;
|
|
280
|
+
periciasPersonagem: PericiaPersonagemDto[] | null;
|
|
281
|
+
estadoPendencia: EstadoPendenciaPersonagem;
|
|
240
282
|
}
|
|
241
283
|
type PersonagemDto = IPersonagem;
|
|
242
284
|
interface IResumoPersonagemAventura {
|
|
285
|
+
id: number;
|
|
243
286
|
personagem: PersonagemDto;
|
|
244
287
|
aventura: AventuraDto;
|
|
245
288
|
texto: string;
|
|
246
289
|
}
|
|
247
290
|
type ResumoPersonagemAventuraDto = IResumoPersonagemAventura;
|
|
248
291
|
interface ITipoPersonagem {
|
|
292
|
+
id: number;
|
|
249
293
|
nome: string;
|
|
250
294
|
descricao: string;
|
|
251
295
|
}
|
|
252
296
|
type TipoPersonagemDto = ITipoPersonagem;
|
|
253
297
|
interface IEstudo {
|
|
298
|
+
id: number;
|
|
254
299
|
nome: string;
|
|
255
300
|
}
|
|
256
301
|
type EstudoDto = IEstudo;
|
|
@@ -262,14 +307,17 @@ declare class AuthSession {
|
|
|
262
307
|
constructor(expiredAt: number, id: string, json: string, destroyedAt?: Date | undefined);
|
|
263
308
|
}
|
|
264
309
|
interface ICustomizacaoUsuario {
|
|
310
|
+
fkUsuariosId: number;
|
|
265
311
|
usuario: UsuarioDto;
|
|
266
|
-
personagemAvatarPrincipal: PersonagemDto;
|
|
267
|
-
conquistaExibirPerfil1: ConquistaDto;
|
|
268
|
-
conquistaExibirPerfil2: ConquistaDto;
|
|
269
|
-
conquistaExibirPerfil3: ConquistaDto;
|
|
312
|
+
personagemAvatarPrincipal: PersonagemDto | null;
|
|
313
|
+
conquistaExibirPerfil1: ConquistaDto | null;
|
|
314
|
+
conquistaExibirPerfil2: ConquistaDto | null;
|
|
315
|
+
conquistaExibirPerfil3: ConquistaDto | null;
|
|
316
|
+
caminhoAvatar: string;
|
|
270
317
|
}
|
|
271
318
|
type CustomizacaoUsuarioDto = ICustomizacaoUsuario;
|
|
272
319
|
interface IDisponibilidadeUsuario {
|
|
320
|
+
id: number;
|
|
273
321
|
usuario: UsuarioDto;
|
|
274
322
|
diaDaSemana: number;
|
|
275
323
|
horaInicio: string;
|
|
@@ -282,7 +330,7 @@ interface IUsuario {
|
|
|
282
330
|
perfilMestre: PerfilMestreDto;
|
|
283
331
|
perfilAdmin: PerfilAdminDto;
|
|
284
332
|
customizacao: CustomizacaoUsuarioDto;
|
|
285
|
-
username: string;
|
|
333
|
+
username: string | null;
|
|
286
334
|
email: string;
|
|
287
335
|
discordId: string;
|
|
288
336
|
}
|
|
@@ -329,9 +377,6 @@ type ListaItem = {
|
|
|
329
377
|
} | {
|
|
330
378
|
tipo: 'ItemListaSecreto';
|
|
331
379
|
};
|
|
332
|
-
type DadosMinhaPagina = Pick<UsuarioDto, 'username'> & {
|
|
333
|
-
caminhoAvatar: string;
|
|
334
|
-
};
|
|
335
380
|
declare class DadosMinhasDisponibilidades {
|
|
336
381
|
disponibilidades: DisponibilidadeUsuarioDto[];
|
|
337
382
|
constructor(disponibilidades: DisponibilidadeUsuarioDto[]);
|
|
@@ -342,5 +387,10 @@ declare enum AventuraEstado {
|
|
|
342
387
|
EM_ANDAMENTO = "Em Andamento",
|
|
343
388
|
FINALIZADA = "Finalizada"
|
|
344
389
|
}
|
|
390
|
+
declare enum EstadoPendenciaPersonagem {
|
|
391
|
+
INFORMACOES_PENDENTES = "Informa\u00E7\u00F5es B\u00E1sicas Pendentes",
|
|
392
|
+
FICHA_PENDENTE = "Atualiza\u00E7\u00E3o de Ficha Pendente",
|
|
393
|
+
SEM_PENDENCIAS = ""
|
|
394
|
+
}
|
|
345
395
|
type dds = 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
346
|
-
export { IAventura, AventuraDto, IConviteGrupoAventuraPersonagem, ConviteGrupoAventuraPersonagemDto, IGrupoAventura, GrupoAventuraDto, IGrupoAventuraPersonagem, GrupoAventuraPersonagemDto, IRespostaConvite, RespostaConviteDto,
|
|
396
|
+
export { IAventura, AventuraDto, IConviteGrupoAventuraPersonagem, ConviteGrupoAventuraPersonagemDto, IGrupoAventura, GrupoAventuraDto, IGrupoAventuraPersonagem, GrupoAventuraPersonagemDto, IRespostaConvite, RespostaConviteDto, IConquista, ConquistaDto, ITipoConquista, TipoConquistaDto, IGeracao, GeracaoDto, IImagem, ImagemDto, IAlcance, AlcanceDto, IAtributo, AtributoDto, ICategoriaRitual, CategoriaRitualDto, ICirculoRitual, CirculoRitualDto, IClasse, ClasseDto, IDuracao, DuracaoDto, IElemento, ElementoDto, IEstatisticaDanificavel, EstatisticaDanificavelDto, IExecucao, ExecucaoDto, IFormatoAlcance, FormatoAlcanceDto, ILinhaEfeito, LinhaEfeitoDto, INivel, NivelDto, INivelComponente, NivelComponenteDto, INivelProficiencia, NivelProficienciaDto, INivelRitual, NivelRitualDto, IPatentePericia, PatentePericiaDto, IPericia, PericiaDto, IProficiencia, ProficienciaDto, ITipoAlvo, TipoAlvoDto, ITipoCategoria, TipoCategoriaDto, ITipoDano, TipoDanoDto, ITipoEfeito, TipoEfeitoDto, ITipoItem, TipoItemDto, ITipoProficiencia, TipoProficienciaDto, IPerfilAdmin, PerfilAdminDto, IPerfilJogador, PerfilJogadorDto, IPerfilMestre, PerfilMestreDto, IAtributoPersonagem, AtributoPersonagemDto, IEstatisticaDanificavelPersonagem, EstatisticaDanificavelPersonagemDto, IInformacaoPersonagem, InformacaoPersonagemDto, IPericiaPersonagem, PericiaPersonagemDto, IPersonagem, PersonagemDto, IResumoPersonagemAventura, ResumoPersonagemAventuraDto, ITipoPersonagem, TipoPersonagemDto, IEstudo, EstudoDto, AuthSession, ICustomizacaoUsuario, CustomizacaoUsuarioDto, IDisponibilidadeUsuario, DisponibilidadeUsuarioDto, IUsuario, UsuarioDto, Done, RespostaBackEnd, PaletaCores, EstruturaPaginaDefinicao, ConteudoItem, DefinicaoElemento, ListaItem, DadosMinhasDisponibilidades, AventuraEstado, EstadoPendenciaPersonagem, dds };
|
package/dist/classes.js
CHANGED
|
@@ -1,12 +1,4 @@
|
|
|
1
1
|
// AUTO-GENERATED FILE - DO NOT EDIT
|
|
2
|
-
class Imagem {
|
|
3
|
-
id;
|
|
4
|
-
urlArquivo;
|
|
5
|
-
constructor(id, urlArquivo) {
|
|
6
|
-
this.id = id;
|
|
7
|
-
this.urlArquivo = urlArquivo;
|
|
8
|
-
}
|
|
9
|
-
}
|
|
10
2
|
class AuthSession {
|
|
11
3
|
expiredAt;
|
|
12
4
|
id;
|
|
@@ -50,4 +42,11 @@ var AventuraEstado;
|
|
|
50
42
|
AventuraEstado["EM_ANDAMENTO"] = "Em Andamento";
|
|
51
43
|
AventuraEstado["FINALIZADA"] = "Finalizada";
|
|
52
44
|
})(AventuraEstado || (AventuraEstado = {}));
|
|
53
|
-
|
|
45
|
+
// @tipoCompartilhadoFront
|
|
46
|
+
var EstadoPendenciaPersonagem;
|
|
47
|
+
(function (EstadoPendenciaPersonagem) {
|
|
48
|
+
EstadoPendenciaPersonagem["INFORMACOES_PENDENTES"] = "Informa\u00E7\u00F5es B\u00E1sicas Pendentes";
|
|
49
|
+
EstadoPendenciaPersonagem["FICHA_PENDENTE"] = "Atualiza\u00E7\u00E3o de Ficha Pendente";
|
|
50
|
+
EstadoPendenciaPersonagem["SEM_PENDENCIAS"] = "";
|
|
51
|
+
})(EstadoPendenciaPersonagem || (EstadoPendenciaPersonagem = {}));
|
|
52
|
+
export { AuthSession, DadosMinhasDisponibilidades, AventuraEstado, EstadoPendenciaPersonagem };
|