types-nora-api 0.0.25 → 0.0.27
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 +114 -37
- package/dist/classes.js +10 -9
- package/package.json +1 -1
package/dist/classes.d.ts
CHANGED
|
@@ -1,78 +1,102 @@
|
|
|
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
|
+
estadoAtual: 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;
|
|
27
|
-
|
|
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;
|
|
31
|
+
estadoAtual: AventuraEstado;
|
|
28
32
|
obtemTextoInformacionalOcorrencia: string | null;
|
|
33
|
+
tempoProximaSessao: string | undefined;
|
|
29
34
|
}
|
|
30
35
|
type GrupoAventuraDto = IGrupoAventura;
|
|
31
36
|
interface IGrupoAventuraPersonagem {
|
|
37
|
+
fkGruposAventurasId: number;
|
|
38
|
+
fkPersonagensId: number;
|
|
32
39
|
grupoAventura: GrupoAventuraDto;
|
|
33
40
|
personagem: PersonagemDto;
|
|
34
41
|
}
|
|
35
42
|
type GrupoAventuraPersonagemDto = IGrupoAventuraPersonagem;
|
|
36
43
|
interface IRespostaConvite {
|
|
44
|
+
fkConviteGrupoAventuraPersonagemId: number;
|
|
45
|
+
fkPersonagensId: number;
|
|
37
46
|
convite: ConviteGrupoAventuraPersonagemDto;
|
|
38
|
-
tipoResposta: TipoRespostaConviteDto;
|
|
39
47
|
personagemVinculado: PersonagemDto;
|
|
40
48
|
dataCriacao: Date;
|
|
49
|
+
criouNovoPersonagem: boolean;
|
|
41
50
|
}
|
|
42
51
|
type RespostaConviteDto = IRespostaConvite;
|
|
43
|
-
interface ITipoRespostaConvite {
|
|
44
|
-
nome: string;
|
|
45
|
-
}
|
|
46
|
-
type TipoRespostaConviteDto = ITipoRespostaConvite;
|
|
47
52
|
interface IConquista {
|
|
53
|
+
id: number;
|
|
48
54
|
tipoConquista: TipoConquistaDto;
|
|
49
55
|
nome: string;
|
|
50
56
|
descricao: string;
|
|
51
57
|
}
|
|
52
58
|
type ConquistaDto = IConquista;
|
|
53
59
|
interface ITipoConquista {
|
|
60
|
+
id: number;
|
|
54
61
|
nome: string;
|
|
55
62
|
}
|
|
56
63
|
type TipoConquistaDto = ITipoConquista;
|
|
57
64
|
interface IGeracao {
|
|
58
65
|
id: number;
|
|
59
|
-
aventuras: AventuraDto[];
|
|
60
|
-
nome: string;
|
|
61
|
-
anoInicio: number;
|
|
66
|
+
aventuras: AventuraDto[] | null;
|
|
67
|
+
nome: string | null;
|
|
68
|
+
anoInicio: number | null;
|
|
62
69
|
}
|
|
63
70
|
type GeracaoDto = IGeracao;
|
|
64
|
-
|
|
71
|
+
interface IImagem {
|
|
65
72
|
id: number;
|
|
66
|
-
|
|
67
|
-
|
|
73
|
+
uuid: string;
|
|
74
|
+
filename: string;
|
|
75
|
+
type: string;
|
|
76
|
+
status: string;
|
|
77
|
+
resolution: string;
|
|
78
|
+
folder: string;
|
|
79
|
+
originalName: string;
|
|
80
|
+
mimeType: string;
|
|
81
|
+
size: number;
|
|
82
|
+
isPublic: boolean;
|
|
83
|
+
rejectionReason: string;
|
|
84
|
+
createdAt: Date;
|
|
85
|
+
updatedAt: Date;
|
|
86
|
+
validatedBy: UsuarioDto;
|
|
87
|
+
usuario: UsuarioDto;
|
|
88
|
+
fullPath: string;
|
|
68
89
|
}
|
|
90
|
+
type ImagemDto = IImagem;
|
|
69
91
|
interface IAlcance {
|
|
92
|
+
id: number;
|
|
70
93
|
nome: string;
|
|
71
94
|
numeroMetros: number;
|
|
72
|
-
descricao: string;
|
|
95
|
+
descricao: string | null;
|
|
73
96
|
}
|
|
74
97
|
type AlcanceDto = IAlcance;
|
|
75
98
|
interface IAtributo {
|
|
99
|
+
id: number;
|
|
76
100
|
linhaEfeito: LinhaEfeitoDto;
|
|
77
101
|
pericias: PericiaDto[];
|
|
78
102
|
nome: string;
|
|
@@ -81,6 +105,7 @@ interface IAtributo {
|
|
|
81
105
|
}
|
|
82
106
|
type AtributoDto = IAtributo;
|
|
83
107
|
interface ICategoriaRitual {
|
|
108
|
+
id: number;
|
|
84
109
|
circuloRitual: CirculoRitualDto;
|
|
85
110
|
nivelRitual: NivelRitualDto;
|
|
86
111
|
valorPsSacrificado: number;
|
|
@@ -88,25 +113,30 @@ interface ICategoriaRitual {
|
|
|
88
113
|
}
|
|
89
114
|
type CategoriaRitualDto = ICategoriaRitual;
|
|
90
115
|
interface ICirculoRitual {
|
|
116
|
+
id: number;
|
|
91
117
|
nome: string;
|
|
92
118
|
nomeCompleto: string;
|
|
93
119
|
}
|
|
94
120
|
type CirculoRitualDto = ICirculoRitual;
|
|
95
121
|
interface IClasse {
|
|
122
|
+
id: number;
|
|
96
123
|
nome: string;
|
|
97
124
|
descricao: string;
|
|
98
125
|
}
|
|
99
126
|
type ClasseDto = IClasse;
|
|
100
127
|
interface IDuracao {
|
|
128
|
+
id: number;
|
|
101
129
|
nome: string;
|
|
102
130
|
}
|
|
103
131
|
type DuracaoDto = IDuracao;
|
|
104
132
|
interface IElemento {
|
|
133
|
+
id: number;
|
|
105
134
|
nome: string;
|
|
106
135
|
cores: PaletaCores;
|
|
107
136
|
}
|
|
108
137
|
type ElementoDto = IElemento;
|
|
109
138
|
interface IEstatisticaDanificavel {
|
|
139
|
+
id: number;
|
|
110
140
|
nome: string;
|
|
111
141
|
cor: string;
|
|
112
142
|
descricao: string;
|
|
@@ -114,42 +144,51 @@ interface IEstatisticaDanificavel {
|
|
|
114
144
|
}
|
|
115
145
|
type EstatisticaDanificavelDto = IEstatisticaDanificavel;
|
|
116
146
|
interface IExecucao {
|
|
147
|
+
id: number;
|
|
117
148
|
linhaEfeito: LinhaEfeitoDto;
|
|
118
149
|
nome: string;
|
|
119
150
|
}
|
|
120
151
|
type ExecucaoDto = IExecucao;
|
|
121
152
|
interface IFormatoAlcance {
|
|
153
|
+
id: number;
|
|
122
154
|
nome: string;
|
|
123
155
|
}
|
|
124
156
|
type FormatoAlcanceDto = IFormatoAlcance;
|
|
125
157
|
interface ILinhaEfeito {
|
|
158
|
+
id: number;
|
|
126
159
|
nome: string;
|
|
127
160
|
}
|
|
128
161
|
type LinhaEfeitoDto = ILinhaEfeito;
|
|
129
162
|
interface INivel {
|
|
163
|
+
id: number;
|
|
130
164
|
valoNivel: number;
|
|
131
|
-
|
|
165
|
+
nomeVisualizacao: string;
|
|
132
166
|
}
|
|
133
167
|
type NivelDto = INivel;
|
|
134
168
|
interface INivelComponente {
|
|
169
|
+
id: number;
|
|
135
170
|
nome: string;
|
|
136
171
|
}
|
|
137
172
|
type NivelComponenteDto = INivelComponente;
|
|
138
173
|
interface INivelProficiencia {
|
|
174
|
+
id: number;
|
|
139
175
|
nivel: number;
|
|
140
176
|
}
|
|
141
177
|
type NivelProficienciaDto = INivelProficiencia;
|
|
142
178
|
interface INivelRitual {
|
|
179
|
+
id: number;
|
|
143
180
|
nome: string;
|
|
144
181
|
}
|
|
145
182
|
type NivelRitualDto = INivelRitual;
|
|
146
183
|
interface IPatentePericia {
|
|
184
|
+
id: number;
|
|
147
185
|
nome: string;
|
|
148
186
|
bonusPatente: number;
|
|
149
187
|
cor: string;
|
|
150
188
|
}
|
|
151
189
|
type PatentePericiaDto = IPatentePericia;
|
|
152
190
|
interface IPericia {
|
|
191
|
+
id: number;
|
|
153
192
|
atributo: AtributoDto;
|
|
154
193
|
linhaEfeito: LinhaEfeitoDto;
|
|
155
194
|
nome: string;
|
|
@@ -158,61 +197,75 @@ interface IPericia {
|
|
|
158
197
|
}
|
|
159
198
|
type PericiaDto = IPericia;
|
|
160
199
|
interface IProficiencia {
|
|
200
|
+
id: number;
|
|
161
201
|
tipoProficiencia: TipoProficienciaDto;
|
|
162
202
|
nivelProficiencia: NivelProficienciaDto;
|
|
163
203
|
nome: string;
|
|
164
204
|
}
|
|
165
205
|
type ProficienciaDto = IProficiencia;
|
|
166
206
|
interface ITipoAlvo {
|
|
207
|
+
id: number;
|
|
167
208
|
nome: string;
|
|
168
209
|
}
|
|
169
210
|
type TipoAlvoDto = ITipoAlvo;
|
|
170
211
|
interface ITipoCategoria {
|
|
171
|
-
|
|
172
|
-
|
|
212
|
+
id: number;
|
|
213
|
+
valor: number;
|
|
214
|
+
nome: string;
|
|
173
215
|
}
|
|
174
216
|
type TipoCategoriaDto = ITipoCategoria;
|
|
175
217
|
interface ITipoDano {
|
|
218
|
+
id: number;
|
|
176
219
|
linhaEfeito: LinhaEfeitoDto;
|
|
177
|
-
tipoDanoPertencente: TipoDanoDto;
|
|
220
|
+
tipoDanoPertencente: TipoDanoDto | null;
|
|
178
221
|
nome: string;
|
|
179
222
|
}
|
|
180
223
|
type TipoDanoDto = ITipoDano;
|
|
181
224
|
interface ITipoEfeito {
|
|
225
|
+
id: number;
|
|
182
226
|
nome: string;
|
|
183
227
|
nomeVisualizacao: string;
|
|
184
228
|
}
|
|
185
229
|
type TipoEfeitoDto = ITipoEfeito;
|
|
186
230
|
interface ITipoItem {
|
|
231
|
+
id: number;
|
|
187
232
|
nome: string;
|
|
188
233
|
}
|
|
189
234
|
type TipoItemDto = ITipoItem;
|
|
190
235
|
interface ITipoProficiencia {
|
|
236
|
+
id: number;
|
|
191
237
|
nome: string;
|
|
192
238
|
}
|
|
193
239
|
type TipoProficienciaDto = ITipoProficiencia;
|
|
194
240
|
interface IPerfilAdmin {
|
|
241
|
+
id: number;
|
|
195
242
|
nome: string;
|
|
196
243
|
descricao: string;
|
|
197
244
|
}
|
|
198
245
|
type PerfilAdminDto = IPerfilAdmin;
|
|
199
246
|
interface IPerfilJogador {
|
|
247
|
+
id: number;
|
|
200
248
|
nome: string;
|
|
201
249
|
descricao: string;
|
|
202
250
|
}
|
|
203
251
|
type PerfilJogadorDto = IPerfilJogador;
|
|
204
252
|
interface IPerfilMestre {
|
|
253
|
+
id: number;
|
|
205
254
|
nome: string;
|
|
206
255
|
descricao: string;
|
|
207
256
|
}
|
|
208
257
|
type PerfilMestreDto = IPerfilMestre;
|
|
209
258
|
interface IAtributoPersonagem {
|
|
259
|
+
fkPersonagemId: number;
|
|
260
|
+
fkAtributoId: number;
|
|
210
261
|
personagem: PersonagemDto;
|
|
211
262
|
atributo: AtributoDto;
|
|
212
263
|
valor: number;
|
|
213
264
|
}
|
|
214
265
|
type AtributoPersonagemDto = IAtributoPersonagem;
|
|
215
266
|
interface IEstatisticaDanificavelPersonagem {
|
|
267
|
+
fkPersonagemId: number;
|
|
268
|
+
fkEstatisticaDanificavelId: number;
|
|
216
269
|
personagem: PersonagemDto;
|
|
217
270
|
estatisticaDanificavel: EstatisticaDanificavelDto;
|
|
218
271
|
valorMaximo: number;
|
|
@@ -220,38 +273,52 @@ interface IEstatisticaDanificavelPersonagem {
|
|
|
220
273
|
}
|
|
221
274
|
type EstatisticaDanificavelPersonagemDto = IEstatisticaDanificavelPersonagem;
|
|
222
275
|
interface IInformacaoPersonagem {
|
|
276
|
+
fkPersonagensId: number;
|
|
223
277
|
personagem: PersonagemDto;
|
|
224
278
|
nome: string;
|
|
279
|
+
anoNascimento: number;
|
|
225
280
|
}
|
|
226
281
|
type InformacaoPersonagemDto = IInformacaoPersonagem;
|
|
227
282
|
interface IPericiaPersonagem {
|
|
283
|
+
fkPersonagemId: number;
|
|
284
|
+
fkPericiaId: number;
|
|
228
285
|
personagem: PersonagemDto;
|
|
229
286
|
pericia: PericiaDto;
|
|
230
287
|
patentePericia: PatentePericiaDto;
|
|
231
288
|
}
|
|
232
289
|
type PericiaPersonagemDto = IPericiaPersonagem;
|
|
233
290
|
interface IPersonagem {
|
|
291
|
+
id: number;
|
|
234
292
|
tipoPersonagem: TipoPersonagemDto;
|
|
235
293
|
usuario: UsuarioDto;
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
294
|
+
imagemAvatar: ImagemDto | null;
|
|
295
|
+
informacao: InformacaoPersonagemDto | null;
|
|
296
|
+
estatisticasDanificaveisPersonagem: EstatisticaDanificavelPersonagemDto[] | null;
|
|
297
|
+
atributosPersonagem: AtributoPersonagemDto[] | null;
|
|
298
|
+
periciasPersonagem: PericiaPersonagemDto[] | null;
|
|
240
299
|
estadoPendencia: EstadoPendenciaPersonagem;
|
|
300
|
+
mensagemPendencia: string | null;
|
|
301
|
+
indexEstadoOcupacaoAtual: EstadoOcupacaoPersonagem;
|
|
302
|
+
mensagemEstadoOcupacao: string;
|
|
303
|
+
tempoProximaSessaoPersonagem: string | undefined;
|
|
241
304
|
}
|
|
242
305
|
type PersonagemDto = IPersonagem;
|
|
243
306
|
interface IResumoPersonagemAventura {
|
|
307
|
+
fkPersonagensId: number;
|
|
308
|
+
fkAventurasId: number;
|
|
244
309
|
personagem: PersonagemDto;
|
|
245
310
|
aventura: AventuraDto;
|
|
246
311
|
texto: string;
|
|
247
312
|
}
|
|
248
313
|
type ResumoPersonagemAventuraDto = IResumoPersonagemAventura;
|
|
249
314
|
interface ITipoPersonagem {
|
|
315
|
+
id: number;
|
|
250
316
|
nome: string;
|
|
251
317
|
descricao: string;
|
|
252
318
|
}
|
|
253
319
|
type TipoPersonagemDto = ITipoPersonagem;
|
|
254
320
|
interface IEstudo {
|
|
321
|
+
id: number;
|
|
255
322
|
nome: string;
|
|
256
323
|
}
|
|
257
324
|
type EstudoDto = IEstudo;
|
|
@@ -263,15 +330,17 @@ declare class AuthSession {
|
|
|
263
330
|
constructor(expiredAt: number, id: string, json: string, destroyedAt?: Date | undefined);
|
|
264
331
|
}
|
|
265
332
|
interface ICustomizacaoUsuario {
|
|
333
|
+
fkUsuariosId: number;
|
|
266
334
|
usuario: UsuarioDto;
|
|
267
|
-
personagemAvatarPrincipal: PersonagemDto;
|
|
268
|
-
conquistaExibirPerfil1: ConquistaDto;
|
|
269
|
-
conquistaExibirPerfil2: ConquistaDto;
|
|
270
|
-
conquistaExibirPerfil3: ConquistaDto;
|
|
335
|
+
personagemAvatarPrincipal: PersonagemDto | null;
|
|
336
|
+
conquistaExibirPerfil1: ConquistaDto | null;
|
|
337
|
+
conquistaExibirPerfil2: ConquistaDto | null;
|
|
338
|
+
conquistaExibirPerfil3: ConquistaDto | null;
|
|
271
339
|
caminhoAvatar: string;
|
|
272
340
|
}
|
|
273
341
|
type CustomizacaoUsuarioDto = ICustomizacaoUsuario;
|
|
274
342
|
interface IDisponibilidadeUsuario {
|
|
343
|
+
id: number;
|
|
275
344
|
usuario: UsuarioDto;
|
|
276
345
|
diaDaSemana: number;
|
|
277
346
|
horaInicio: string;
|
|
@@ -284,9 +353,10 @@ interface IUsuario {
|
|
|
284
353
|
perfilMestre: PerfilMestreDto;
|
|
285
354
|
perfilAdmin: PerfilAdminDto;
|
|
286
355
|
customizacao: CustomizacaoUsuarioDto;
|
|
287
|
-
username: string;
|
|
356
|
+
username: string | null;
|
|
288
357
|
email: string;
|
|
289
358
|
discordId: string;
|
|
359
|
+
dataCriacao: Date;
|
|
290
360
|
}
|
|
291
361
|
type UsuarioDto = IUsuario;
|
|
292
362
|
type Done = (err: Error | null, usuario: UsuarioDto | null) => void;
|
|
@@ -343,8 +413,15 @@ declare enum AventuraEstado {
|
|
|
343
413
|
}
|
|
344
414
|
declare enum EstadoPendenciaPersonagem {
|
|
345
415
|
INFORMACOES_PENDENTES = "Informa\u00E7\u00F5es B\u00E1sicas Pendentes",
|
|
416
|
+
RESUMO_AVENTURA_PENDENTE = "Informa\u00E7\u00F5es sobre Aventura Pendentes",
|
|
417
|
+
FICHA_NAO_CRIADA = "Cria\u00E7\u00E3o da Ficha Pendente",
|
|
346
418
|
FICHA_PENDENTE = "Atualiza\u00E7\u00E3o de Ficha Pendente",
|
|
347
419
|
SEM_PENDENCIAS = ""
|
|
348
420
|
}
|
|
421
|
+
declare enum EstadoOcupacaoPersonagem {
|
|
422
|
+
SE_PREPARANDO_AVENTURA = 0,
|
|
423
|
+
EM_AVENTURA = 1,
|
|
424
|
+
EM_ESPERA = 2
|
|
425
|
+
}
|
|
349
426
|
type dds = 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
350
|
-
export { IAventura, AventuraDto, IConviteGrupoAventuraPersonagem, ConviteGrupoAventuraPersonagemDto, IGrupoAventura, GrupoAventuraDto, IGrupoAventuraPersonagem, GrupoAventuraPersonagemDto, IRespostaConvite, RespostaConviteDto,
|
|
427
|
+
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, EstadoOcupacaoPersonagem, 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;
|
|
@@ -54,7 +46,16 @@ var AventuraEstado;
|
|
|
54
46
|
var EstadoPendenciaPersonagem;
|
|
55
47
|
(function (EstadoPendenciaPersonagem) {
|
|
56
48
|
EstadoPendenciaPersonagem["INFORMACOES_PENDENTES"] = "Informa\u00E7\u00F5es B\u00E1sicas Pendentes";
|
|
49
|
+
EstadoPendenciaPersonagem["RESUMO_AVENTURA_PENDENTE"] = "Informa\u00E7\u00F5es sobre Aventura Pendentes";
|
|
50
|
+
EstadoPendenciaPersonagem["FICHA_NAO_CRIADA"] = "Cria\u00E7\u00E3o da Ficha Pendente";
|
|
57
51
|
EstadoPendenciaPersonagem["FICHA_PENDENTE"] = "Atualiza\u00E7\u00E3o de Ficha Pendente";
|
|
58
52
|
EstadoPendenciaPersonagem["SEM_PENDENCIAS"] = "";
|
|
59
53
|
})(EstadoPendenciaPersonagem || (EstadoPendenciaPersonagem = {}));
|
|
60
|
-
|
|
54
|
+
// @tipoCompartilhadoFront
|
|
55
|
+
var EstadoOcupacaoPersonagem;
|
|
56
|
+
(function (EstadoOcupacaoPersonagem) {
|
|
57
|
+
EstadoOcupacaoPersonagem[EstadoOcupacaoPersonagem["SE_PREPARANDO_AVENTURA"] = 0] = "SE_PREPARANDO_AVENTURA";
|
|
58
|
+
EstadoOcupacaoPersonagem[EstadoOcupacaoPersonagem["EM_AVENTURA"] = 1] = "EM_AVENTURA";
|
|
59
|
+
EstadoOcupacaoPersonagem[EstadoOcupacaoPersonagem["EM_ESPERA"] = 2] = "EM_ESPERA";
|
|
60
|
+
})(EstadoOcupacaoPersonagem || (EstadoOcupacaoPersonagem = {}));
|
|
61
|
+
export { AuthSession, DadosMinhasDisponibilidades, AventuraEstado, EstadoPendenciaPersonagem, EstadoOcupacaoPersonagem };
|