types-nora-api 0.0.488 → 0.0.490
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/api/graphql/leituras/ArquivoTipadoMusica/index.d.ts +16 -4
- package/dist/api/graphql/leituras/ArquivoTipadoMusica/index.js +19 -4
- package/dist/api/graphql/leituras/CoeficienteGanhoEstatisticaClasse/index.d.ts +48 -0
- package/dist/api/graphql/leituras/CoeficienteGanhoEstatisticaClasse/index.js +66 -0
- package/dist/api/graphql/leituras/DimensaoClima/index.d.ts +2 -1
- package/dist/api/graphql/leituras/DimensaoClima/index.js +2 -1
- package/dist/api/graphql/leituras/FonteMusica/index.d.ts +3 -2
- package/dist/api/graphql/leituras/FonteMusica/index.js +8 -3
- package/dist/api/graphql/leituras/Menu/index.d.ts +47 -0
- package/dist/api/graphql/leituras/Menu/index.js +67 -0
- package/dist/api/graphql/leituras/MusicaConfigurada/index.d.ts +3 -2
- package/dist/api/graphql/leituras/MusicaConfigurada/index.js +8 -3
- package/dist/api/graphql/leituras/PaginaNavegacao/index.d.ts +48 -0
- package/dist/api/graphql/leituras/PaginaNavegacao/index.js +70 -0
- package/dist/api/graphql/leituras/Partida/index.d.ts +128 -0
- package/dist/api/graphql/leituras/Partida/index.js +154 -0
- package/dist/api/graphql/leituras/SerDetalhe/index.d.ts +11 -2
- package/dist/api/graphql/leituras/SerDetalhe/index.js +17 -2
- package/dist/api/graphql/leituras/index.d.ts +16 -20
- package/dist/api/graphql/leituras/index.js +16 -20
- package/dist/api/rest/index.d.ts +171 -76
- package/dist/api/rest/index.js +264 -80
- package/dist/dominio/index.d.ts +110 -1
- package/dist/dominio/index.js +27 -1
- package/dist/dtos/index.d.ts +561 -135
- package/dist/dtos/index.js +96 -1
- package/dist/menus/index.d.ts +2 -171
- package/dist/menus/index.js +1 -348
- package/dist/paginas/index.d.ts +64 -76
- package/dist/paginas/index.js +67 -106
- package/dist/shared/index.d.ts +85 -1
- package/dist/ws/index.d.ts +61 -14
- package/dist/ws/index.js +9 -1
- package/package.json +1 -1
- package/dist/api/graphql/leituras/CatalogoMissao/index.d.ts +0 -42
- package/dist/api/graphql/leituras/CatalogoMissao/index.js +0 -60
- package/dist/api/graphql/leituras/CatalogoMissaoExibicao/index.d.ts +0 -45
- package/dist/api/graphql/leituras/CatalogoMissaoExibicao/index.js +0 -65
- package/dist/api/graphql/leituras/Missao/index.d.ts +0 -37
- package/dist/api/graphql/leituras/Missao/index.js +0 -51
- package/dist/api/graphql/leituras/MissaoDetalhe/index.d.ts +0 -44
- package/dist/api/graphql/leituras/MissaoDetalhe/index.js +0 -62
- package/dist/api/graphql/leituras/MissaoExibicao/index.d.ts +0 -48
- package/dist/api/graphql/leituras/MissaoExibicao/index.js +0 -70
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
import type { GraphqlEntidadeDefLeituraPadrao, GraphqlItemEntidade, GraphqlListaEntidade, GraphqlObtemUmParametrosEntidadeRestrita, GraphqlObtemUmVariaveisEntidade, GraphqlObtemVariosParametrosEntidadeRestrita, GraphqlObtemVariosVariaveisEntidade, GraphqlOperacaoTotalDeRegistrosEntidade, GraphqlOperacaoUmEntidade, GraphqlOperacaoVariosEntidade, GraphqlRespostaTotalDeRegistrosEntidade, GraphqlRespostaUmEntidade, GraphqlRespostaVariosEntidade, GraphqlResultadoEntidade, GraphqlSelectEntidade, GraphqlTotalDeRegistrosParametrosEntidadeRestrita, GraphqlTotalDeRegistrosVariaveisEntidade } from '../../core';
|
|
2
|
+
declare class PartidaGraphqlDto {
|
|
3
|
+
id: number;
|
|
4
|
+
nome: string;
|
|
5
|
+
tipo: string;
|
|
6
|
+
partidaConfigurada: boolean;
|
|
7
|
+
desabilitada: boolean;
|
|
8
|
+
tipoDesafio: string | null;
|
|
9
|
+
arteCapa: {
|
|
10
|
+
idProjeto: number;
|
|
11
|
+
encaixe: {
|
|
12
|
+
escala: number;
|
|
13
|
+
deslocamentoX: number;
|
|
14
|
+
deslocamentoY: number;
|
|
15
|
+
};
|
|
16
|
+
} | null;
|
|
17
|
+
idMusicaConfigurada: number | null;
|
|
18
|
+
configuracao: {
|
|
19
|
+
narracaoInicial: string;
|
|
20
|
+
cenario: {
|
|
21
|
+
nome: string;
|
|
22
|
+
mapaLogico: {
|
|
23
|
+
larguraMetros: number;
|
|
24
|
+
alturaMetros: number;
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
controlaveis: readonly {
|
|
28
|
+
key: string;
|
|
29
|
+
referencia: {
|
|
30
|
+
tipo: string;
|
|
31
|
+
id: number;
|
|
32
|
+
};
|
|
33
|
+
posicaoInicial: {
|
|
34
|
+
x: number;
|
|
35
|
+
y: number;
|
|
36
|
+
};
|
|
37
|
+
nomeExibicao: string | null;
|
|
38
|
+
percepcaoInicial: string | null;
|
|
39
|
+
}[];
|
|
40
|
+
naoControlaveis: readonly {
|
|
41
|
+
key: string;
|
|
42
|
+
referencia: {
|
|
43
|
+
tipo: string;
|
|
44
|
+
id: number;
|
|
45
|
+
};
|
|
46
|
+
posicaoInicial: {
|
|
47
|
+
x: number;
|
|
48
|
+
y: number;
|
|
49
|
+
};
|
|
50
|
+
nomeExibicao: string | null;
|
|
51
|
+
percepcaoInicial: string | null;
|
|
52
|
+
}[];
|
|
53
|
+
interagiveis: readonly {
|
|
54
|
+
key: string;
|
|
55
|
+
nome: string;
|
|
56
|
+
tipo: string;
|
|
57
|
+
descricao: string;
|
|
58
|
+
posicao: {
|
|
59
|
+
x: number;
|
|
60
|
+
y: number;
|
|
61
|
+
} | null;
|
|
62
|
+
estadoPercepcaoInicial: string;
|
|
63
|
+
durabilidade: {
|
|
64
|
+
valorAtual: number;
|
|
65
|
+
valorMaximo: number;
|
|
66
|
+
} | null;
|
|
67
|
+
durabilidadeMaxima: number | null;
|
|
68
|
+
}[];
|
|
69
|
+
descobertasCondicionadas: readonly {
|
|
70
|
+
key: string;
|
|
71
|
+
nome: string;
|
|
72
|
+
descricaoInterna: string;
|
|
73
|
+
idCapacidadeInata: number;
|
|
74
|
+
recompensas: readonly {
|
|
75
|
+
dificuldadeMinima: number;
|
|
76
|
+
keysSeresPercebidos: readonly string[];
|
|
77
|
+
}[];
|
|
78
|
+
}[];
|
|
79
|
+
temporal: {
|
|
80
|
+
momentoInicialMs: number;
|
|
81
|
+
} | null;
|
|
82
|
+
condicaoVitoria: {
|
|
83
|
+
tipo: string;
|
|
84
|
+
keySerEmSala: string | null;
|
|
85
|
+
idEstatisticaDanificavel: number | null;
|
|
86
|
+
tempoAlvoMs: number | null;
|
|
87
|
+
distanciaMaximaMetros: number | null;
|
|
88
|
+
};
|
|
89
|
+
};
|
|
90
|
+
}
|
|
91
|
+
type PartidaGraphqlDefTipo = GraphqlEntidadeDefLeituraPadrao<PartidaGraphqlDto, 'Partida', 'PartidaPorPK', 'partidaPorPKGraphql', 'partidaPorPKGraphql', 'PartidaUm', 'partidaGraphql', 'partidaGraphql', 'PartidaVarios', 'partidasGraphql', 'partidasGraphql', 'PartidaTotalDeRegistros', 'totalDeRegistrosPartidasGraphql', 'totalDeRegistros'>;
|
|
92
|
+
declare const EventosApiGraphqlPartida: import("../../core").GraphqlEventosApiLeituraPadrao<PartidaGraphqlDto, PartidaGraphqlDefTipo>;
|
|
93
|
+
declare namespace GraphqlTypesPartida {
|
|
94
|
+
const eventos: import("../../core").GraphqlEventosApiLeituraPadrao<PartidaGraphqlDto, PartidaGraphqlDefTipo>;
|
|
95
|
+
const CamposWhereTrie: {
|
|
96
|
+
readonly id: true;
|
|
97
|
+
readonly nome: true;
|
|
98
|
+
readonly partidaConfigurada: true;
|
|
99
|
+
readonly tipo: true;
|
|
100
|
+
};
|
|
101
|
+
const CamposOrderTrie: {
|
|
102
|
+
readonly desabilitada: true;
|
|
103
|
+
readonly id: true;
|
|
104
|
+
readonly nome: true;
|
|
105
|
+
readonly partidaConfigurada: true;
|
|
106
|
+
readonly tipo: true;
|
|
107
|
+
};
|
|
108
|
+
type ObtemUmParametros = GraphqlObtemUmParametrosEntidadeRestrita<PartidaGraphqlDto, typeof CamposWhereTrie, typeof CamposOrderTrie>;
|
|
109
|
+
type ObtemUmVariaveis = GraphqlObtemUmVariaveisEntidade<ObtemUmParametros>;
|
|
110
|
+
type ObtemVariosParametros = GraphqlObtemVariosParametrosEntidadeRestrita<PartidaGraphqlDto, typeof CamposWhereTrie, typeof CamposOrderTrie>;
|
|
111
|
+
type ObtemVariosVariaveis = GraphqlObtemVariosVariaveisEntidade<ObtemVariosParametros>;
|
|
112
|
+
type TotalDeRegistrosParametros = GraphqlTotalDeRegistrosParametrosEntidadeRestrita<PartidaGraphqlDto, typeof CamposWhereTrie, typeof CamposOrderTrie>;
|
|
113
|
+
type TotalDeRegistrosVariaveis = GraphqlTotalDeRegistrosVariaveisEntidade<TotalDeRegistrosParametros>;
|
|
114
|
+
const CamposFiltroVisualizacao: readonly [import("../../core").GraphqlFiltroVisualizacaoCampoDef<PartidaGraphqlDto, "nome", readonly ["nome"]>, import("../../core").GraphqlFiltroVisualizacaoCampoDef<PartidaGraphqlDto, "tipo", readonly ["tipo"]>, import("../../core").GraphqlFiltroVisualizacaoCampoDef<PartidaGraphqlDto, "partidaConfigurada", readonly ["partidaConfigurada"]>, import("../../core").GraphqlFiltroVisualizacaoCampoDef<PartidaGraphqlDto, "tipoDesafio", readonly ["tipoDesafio"]>];
|
|
115
|
+
const CamposFiltroConsulta: readonly [import("../../core").GraphqlFiltroConsultaCampoDef<PartidaGraphqlDto, "nome", readonly ["nome"]>, import("../../core").GraphqlFiltroConsultaCampoDef<PartidaGraphqlDto, "tipo", readonly ["tipo"]>, import("../../core").GraphqlFiltroConsultaCampoDef<PartidaGraphqlDto, "partidaConfigurada", readonly ["partidaConfigurada"]>];
|
|
116
|
+
type Select = GraphqlSelectEntidade<PartidaGraphqlDto>;
|
|
117
|
+
const select: import("../../core").GraphqlSelectDef<PartidaGraphqlDto>;
|
|
118
|
+
type Resultado<TSelect extends Select> = GraphqlResultadoEntidade<PartidaGraphqlDto, TSelect>;
|
|
119
|
+
type Item<TSelect extends Select> = GraphqlItemEntidade<PartidaGraphqlDto, TSelect>;
|
|
120
|
+
type Lista<TSelect extends Select> = GraphqlListaEntidade<PartidaGraphqlDto, TSelect>;
|
|
121
|
+
type RespostaUm<TSelect extends Select> = GraphqlRespostaUmEntidade<PartidaGraphqlDefTipo, PartidaGraphqlDto, TSelect>;
|
|
122
|
+
type RespostaVarios<TSelect extends Select> = GraphqlRespostaVariosEntidade<PartidaGraphqlDefTipo, PartidaGraphqlDto, TSelect>;
|
|
123
|
+
type RespostaTotalDeRegistros = GraphqlRespostaTotalDeRegistrosEntidade<PartidaGraphqlDefTipo>;
|
|
124
|
+
type OperacaoUm<TSelect extends Select> = GraphqlOperacaoUmEntidade<'Partida', ObtemUmParametros, TSelect>;
|
|
125
|
+
type OperacaoVarios<TSelect extends Select> = GraphqlOperacaoVariosEntidade<'Partida', ObtemVariosParametros, TSelect>;
|
|
126
|
+
type OperacaoTotalDeRegistros = GraphqlOperacaoTotalDeRegistrosEntidade<'Partida', TotalDeRegistrosParametros>;
|
|
127
|
+
}
|
|
128
|
+
export { EventosApiGraphqlPartida, GraphqlTypesPartida, PartidaGraphqlDto };
|
|
@@ -0,0 +1,154 @@
|
|
|
1
|
+
// AUTO-GENERATED FILE - DO NOT EDIT
|
|
2
|
+
// Contratos GraphQL de leitura: Partida
|
|
3
|
+
import { GraphqlFiltroCampoTipo, GraphqlFiltroControleVisualizacao, criaEventosApiGraphqlLeituraPadrao, criaGraphqlCampoFiltroConsulta, criaGraphqlCampoFiltroVisualizacao, criaGraphqlDefLeituraPadrao, defineGraphqlCamposFiltroConsulta, defineGraphqlCamposFiltroVisualizacao, defineGraphqlSelect } from '../../core';
|
|
4
|
+
class PartidaGraphqlDto {
|
|
5
|
+
id;
|
|
6
|
+
nome;
|
|
7
|
+
tipo;
|
|
8
|
+
partidaConfigurada;
|
|
9
|
+
desabilitada;
|
|
10
|
+
tipoDesafio;
|
|
11
|
+
arteCapa;
|
|
12
|
+
idMusicaConfigurada;
|
|
13
|
+
configuracao;
|
|
14
|
+
}
|
|
15
|
+
const PartidaGraphqlSelectExpansoes = {
|
|
16
|
+
arteCapa: {
|
|
17
|
+
encaixe: {
|
|
18
|
+
deslocamentoX: true,
|
|
19
|
+
deslocamentoY: true,
|
|
20
|
+
escala: true,
|
|
21
|
+
},
|
|
22
|
+
idProjeto: true,
|
|
23
|
+
},
|
|
24
|
+
configuracao: {
|
|
25
|
+
cenario: {
|
|
26
|
+
mapaLogico: {
|
|
27
|
+
alturaMetros: true,
|
|
28
|
+
larguraMetros: true,
|
|
29
|
+
},
|
|
30
|
+
nome: true,
|
|
31
|
+
},
|
|
32
|
+
condicaoVitoria: {
|
|
33
|
+
distanciaMaximaMetros: true,
|
|
34
|
+
idEstatisticaDanificavel: true,
|
|
35
|
+
keySerEmSala: true,
|
|
36
|
+
tempoAlvoMs: true,
|
|
37
|
+
tipo: true,
|
|
38
|
+
},
|
|
39
|
+
controlaveis: {
|
|
40
|
+
key: true,
|
|
41
|
+
nomeExibicao: true,
|
|
42
|
+
percepcaoInicial: true,
|
|
43
|
+
posicaoInicial: {
|
|
44
|
+
x: true,
|
|
45
|
+
y: true,
|
|
46
|
+
},
|
|
47
|
+
referencia: {
|
|
48
|
+
id: true,
|
|
49
|
+
tipo: true,
|
|
50
|
+
},
|
|
51
|
+
},
|
|
52
|
+
descobertasCondicionadas: {
|
|
53
|
+
descricaoInterna: true,
|
|
54
|
+
idCapacidadeInata: true,
|
|
55
|
+
key: true,
|
|
56
|
+
nome: true,
|
|
57
|
+
recompensas: {
|
|
58
|
+
dificuldadeMinima: true,
|
|
59
|
+
keysSeresPercebidos: true,
|
|
60
|
+
},
|
|
61
|
+
},
|
|
62
|
+
interagiveis: {
|
|
63
|
+
descricao: true,
|
|
64
|
+
durabilidade: {
|
|
65
|
+
valorAtual: true,
|
|
66
|
+
valorMaximo: true,
|
|
67
|
+
},
|
|
68
|
+
durabilidadeMaxima: true,
|
|
69
|
+
estadoPercepcaoInicial: true,
|
|
70
|
+
key: true,
|
|
71
|
+
nome: true,
|
|
72
|
+
posicao: {
|
|
73
|
+
x: true,
|
|
74
|
+
y: true,
|
|
75
|
+
},
|
|
76
|
+
tipo: true,
|
|
77
|
+
},
|
|
78
|
+
naoControlaveis: {
|
|
79
|
+
key: true,
|
|
80
|
+
nomeExibicao: true,
|
|
81
|
+
percepcaoInicial: true,
|
|
82
|
+
posicaoInicial: {
|
|
83
|
+
x: true,
|
|
84
|
+
y: true,
|
|
85
|
+
},
|
|
86
|
+
referencia: {
|
|
87
|
+
id: true,
|
|
88
|
+
tipo: true,
|
|
89
|
+
},
|
|
90
|
+
},
|
|
91
|
+
narracaoInicial: true,
|
|
92
|
+
temporal: {
|
|
93
|
+
momentoInicialMs: true,
|
|
94
|
+
},
|
|
95
|
+
},
|
|
96
|
+
};
|
|
97
|
+
const PartidaGraphqlDef = criaGraphqlDefLeituraPadrao()({
|
|
98
|
+
nome: 'Partida',
|
|
99
|
+
obtemPorPK: {
|
|
100
|
+
nomeOperacaoGraphql: 'PartidaPorPK',
|
|
101
|
+
nomeCampoQuery: 'partidaPorPKGraphql',
|
|
102
|
+
nomeAliasResposta: 'partidaPorPKGraphql',
|
|
103
|
+
},
|
|
104
|
+
obtemUm: {
|
|
105
|
+
nomeOperacaoGraphql: 'PartidaUm',
|
|
106
|
+
nomeCampoQuery: 'partidaGraphql',
|
|
107
|
+
nomeAliasResposta: 'partidaGraphql',
|
|
108
|
+
},
|
|
109
|
+
obtemVarios: {
|
|
110
|
+
nomeOperacaoGraphql: 'PartidaVarios',
|
|
111
|
+
nomeCampoQuery: 'partidasGraphql',
|
|
112
|
+
nomeAliasResposta: 'partidasGraphql',
|
|
113
|
+
},
|
|
114
|
+
totalDeRegistros: {
|
|
115
|
+
nomeOperacaoGraphql: 'PartidaTotalDeRegistros',
|
|
116
|
+
nomeCampoQuery: 'totalDeRegistrosPartidasGraphql',
|
|
117
|
+
nomeAliasResposta: 'totalDeRegistros',
|
|
118
|
+
},
|
|
119
|
+
});
|
|
120
|
+
const EventosApiGraphqlPartida = criaEventosApiGraphqlLeituraPadrao({
|
|
121
|
+
def: PartidaGraphqlDef,
|
|
122
|
+
expansoesSelect: PartidaGraphqlSelectExpansoes,
|
|
123
|
+
});
|
|
124
|
+
var GraphqlTypesPartida;
|
|
125
|
+
(function (GraphqlTypesPartida) {
|
|
126
|
+
GraphqlTypesPartida.eventos = EventosApiGraphqlPartida;
|
|
127
|
+
GraphqlTypesPartida.CamposWhereTrie = {
|
|
128
|
+
id: true,
|
|
129
|
+
nome: true,
|
|
130
|
+
partidaConfigurada: true,
|
|
131
|
+
tipo: true,
|
|
132
|
+
};
|
|
133
|
+
GraphqlTypesPartida.CamposOrderTrie = {
|
|
134
|
+
desabilitada: true,
|
|
135
|
+
id: true,
|
|
136
|
+
nome: true,
|
|
137
|
+
partidaConfigurada: true,
|
|
138
|
+
tipo: true,
|
|
139
|
+
};
|
|
140
|
+
GraphqlTypesPartida.CamposFiltroVisualizacao = defineGraphqlCamposFiltroVisualizacao()([
|
|
141
|
+
criaGraphqlCampoFiltroVisualizacao('nome', ['nome'], GraphqlFiltroCampoTipo.STRING, false, GraphqlFiltroControleVisualizacao.TEXTO, 'Nome'),
|
|
142
|
+
criaGraphqlCampoFiltroVisualizacao('tipo', ['tipo'], GraphqlFiltroCampoTipo.STRING, false, GraphqlFiltroControleVisualizacao.MULTISELECT, 'Tipo'),
|
|
143
|
+
criaGraphqlCampoFiltroVisualizacao('partidaConfigurada', ['partidaConfigurada'], GraphqlFiltroCampoTipo.BOOLEAN, false, GraphqlFiltroControleVisualizacao.BOOLEAN, 'Configurado'),
|
|
144
|
+
criaGraphqlCampoFiltroVisualizacao('tipoDesafio', ['tipoDesafio'], GraphqlFiltroCampoTipo.STRING, true, GraphqlFiltroControleVisualizacao.MULTISELECT, 'Tipo de Desafio')
|
|
145
|
+
]);
|
|
146
|
+
GraphqlTypesPartida.CamposFiltroConsulta = defineGraphqlCamposFiltroConsulta()([
|
|
147
|
+
criaGraphqlCampoFiltroConsulta('nome', ['nome'], GraphqlFiltroCampoTipo.STRING, false, GraphqlFiltroControleVisualizacao.TEXTO, 'Nome'),
|
|
148
|
+
criaGraphqlCampoFiltroConsulta('tipo', ['tipo'], GraphqlFiltroCampoTipo.STRING, false, GraphqlFiltroControleVisualizacao.MULTISELECT, 'Tipo'),
|
|
149
|
+
criaGraphqlCampoFiltroConsulta('partidaConfigurada', ['partidaConfigurada'], GraphqlFiltroCampoTipo.BOOLEAN, false, GraphqlFiltroControleVisualizacao.BOOLEAN, 'Configurado')
|
|
150
|
+
]);
|
|
151
|
+
GraphqlTypesPartida.select = defineGraphqlSelect();
|
|
152
|
+
})(GraphqlTypesPartida || (GraphqlTypesPartida = {}));
|
|
153
|
+
;
|
|
154
|
+
export { EventosApiGraphqlPartida, GraphqlTypesPartida, PartidaGraphqlDto };
|
|
@@ -7,34 +7,43 @@ declare class SerDetalheGraphqlDto {
|
|
|
7
7
|
nome: string;
|
|
8
8
|
fkUsuariosCriacaoId: number;
|
|
9
9
|
usuarioCriacao: Pick<UsuarioGraphqlDto, 'id' | 'username'>;
|
|
10
|
+
tipoSerNome: string;
|
|
11
|
+
gep: string | null;
|
|
12
|
+
evolucaoPendente: boolean;
|
|
10
13
|
}
|
|
11
14
|
type SerDetalheGraphqlDefTipo = GraphqlEntidadeDefLeituraPadrao<SerDetalheGraphqlDto, 'SerDetalhe', 'SerDetalhePorPK', 'serDetalhePorPKGraphql', 'serDetalhePorPKGraphql', 'SerDetalheUm', 'serDetalheGraphql', 'serDetalheGraphql', 'SerDetalheVarios', 'serDetalhesGraphql', 'serDetalhesGraphql', 'SerDetalheTotalDeRegistros', 'totalDeRegistrosSerDetalhesGraphql', 'totalDeRegistros'>;
|
|
12
15
|
declare const EventosApiGraphqlSerDetalhe: import("../../core").GraphqlEventosApiLeituraPadrao<SerDetalheGraphqlDto, SerDetalheGraphqlDefTipo>;
|
|
13
16
|
declare namespace GraphqlTypesSerDetalhe {
|
|
14
17
|
const eventos: import("../../core").GraphqlEventosApiLeituraPadrao<SerDetalheGraphqlDto, SerDetalheGraphqlDefTipo>;
|
|
15
18
|
const CamposWhereTrie: {
|
|
19
|
+
readonly evolucaoPendente: true;
|
|
16
20
|
readonly fkSerId: true;
|
|
17
21
|
readonly fkUsuariosCriacaoId: true;
|
|
22
|
+
readonly gep: true;
|
|
18
23
|
readonly nome: true;
|
|
19
24
|
readonly ser: {
|
|
20
25
|
readonly dataCriacao: true;
|
|
21
26
|
readonly fkTiposSerId: true;
|
|
22
27
|
readonly id: true;
|
|
23
28
|
};
|
|
29
|
+
readonly tipoSerNome: true;
|
|
24
30
|
readonly usuarioCriacao: {
|
|
25
31
|
readonly id: true;
|
|
26
32
|
readonly username: true;
|
|
27
33
|
};
|
|
28
34
|
};
|
|
29
35
|
const CamposOrderTrie: {
|
|
36
|
+
readonly evolucaoPendente: true;
|
|
30
37
|
readonly fkSerId: true;
|
|
31
38
|
readonly fkUsuariosCriacaoId: true;
|
|
39
|
+
readonly gep: true;
|
|
32
40
|
readonly nome: true;
|
|
33
41
|
readonly ser: {
|
|
34
42
|
readonly dataCriacao: true;
|
|
35
43
|
readonly fkTiposSerId: true;
|
|
36
44
|
readonly id: true;
|
|
37
45
|
};
|
|
46
|
+
readonly tipoSerNome: true;
|
|
38
47
|
readonly usuarioCriacao: {
|
|
39
48
|
readonly id: true;
|
|
40
49
|
readonly username: true;
|
|
@@ -46,8 +55,8 @@ declare namespace GraphqlTypesSerDetalhe {
|
|
|
46
55
|
type ObtemVariosVariaveis = GraphqlObtemVariosVariaveisEntidade<ObtemVariosParametros>;
|
|
47
56
|
type TotalDeRegistrosParametros = GraphqlTotalDeRegistrosParametrosEntidadeRestrita<SerDetalheGraphqlDto, typeof CamposWhereTrie, typeof CamposOrderTrie>;
|
|
48
57
|
type TotalDeRegistrosVariaveis = GraphqlTotalDeRegistrosVariaveisEntidade<TotalDeRegistrosParametros>;
|
|
49
|
-
const CamposFiltroVisualizacao: readonly [import("../../core").GraphqlFiltroVisualizacaoCampoDef<SerDetalheGraphqlDto, "ser.fkTiposSerId", readonly ["ser", "fkTiposSerId"]>, import("../../core").GraphqlFiltroVisualizacaoCampoDef<SerDetalheGraphqlDto, "ser.dataCriacao", readonly ["ser", "dataCriacao"]>, import("../../core").GraphqlFiltroVisualizacaoCampoDef<SerDetalheGraphqlDto, "nome", readonly ["nome"]>, import("../../core").GraphqlFiltroVisualizacaoCampoDef<SerDetalheGraphqlDto, "fkUsuariosCriacaoId", readonly ["fkUsuariosCriacaoId"]>, import("../../core").GraphqlFiltroVisualizacaoCampoDef<SerDetalheGraphqlDto, "usuarioCriacao.username", readonly ["usuarioCriacao", "username"]>];
|
|
50
|
-
const CamposFiltroConsulta: readonly [import("../../core").GraphqlFiltroConsultaCampoDef<SerDetalheGraphqlDto, "ser.fkTiposSerId", readonly ["ser", "fkTiposSerId"]>, import("../../core").GraphqlFiltroConsultaCampoDef<SerDetalheGraphqlDto, "ser.dataCriacao", readonly ["ser", "dataCriacao"]>, import("../../core").GraphqlFiltroConsultaCampoDef<SerDetalheGraphqlDto, "nome", readonly ["nome"]>, import("../../core").GraphqlFiltroConsultaCampoDef<SerDetalheGraphqlDto, "fkUsuariosCriacaoId", readonly ["fkUsuariosCriacaoId"]>, import("../../core").GraphqlFiltroConsultaCampoDef<SerDetalheGraphqlDto, "usuarioCriacao.username", readonly ["usuarioCriacao", "username"]>];
|
|
58
|
+
const CamposFiltroVisualizacao: readonly [import("../../core").GraphqlFiltroVisualizacaoCampoDef<SerDetalheGraphqlDto, "ser.fkTiposSerId", readonly ["ser", "fkTiposSerId"]>, import("../../core").GraphqlFiltroVisualizacaoCampoDef<SerDetalheGraphqlDto, "ser.dataCriacao", readonly ["ser", "dataCriacao"]>, import("../../core").GraphqlFiltroVisualizacaoCampoDef<SerDetalheGraphqlDto, "nome", readonly ["nome"]>, import("../../core").GraphqlFiltroVisualizacaoCampoDef<SerDetalheGraphqlDto, "fkUsuariosCriacaoId", readonly ["fkUsuariosCriacaoId"]>, import("../../core").GraphqlFiltroVisualizacaoCampoDef<SerDetalheGraphqlDto, "usuarioCriacao.username", readonly ["usuarioCriacao", "username"]>, import("../../core").GraphqlFiltroVisualizacaoCampoDef<SerDetalheGraphqlDto, "tipoSerNome", readonly ["tipoSerNome"]>, import("../../core").GraphqlFiltroVisualizacaoCampoDef<SerDetalheGraphqlDto, "gep", readonly ["gep"]>, import("../../core").GraphqlFiltroVisualizacaoCampoDef<SerDetalheGraphqlDto, "evolucaoPendente", readonly ["evolucaoPendente"]>];
|
|
59
|
+
const CamposFiltroConsulta: readonly [import("../../core").GraphqlFiltroConsultaCampoDef<SerDetalheGraphqlDto, "ser.fkTiposSerId", readonly ["ser", "fkTiposSerId"]>, import("../../core").GraphqlFiltroConsultaCampoDef<SerDetalheGraphqlDto, "ser.dataCriacao", readonly ["ser", "dataCriacao"]>, import("../../core").GraphqlFiltroConsultaCampoDef<SerDetalheGraphqlDto, "nome", readonly ["nome"]>, import("../../core").GraphqlFiltroConsultaCampoDef<SerDetalheGraphqlDto, "fkUsuariosCriacaoId", readonly ["fkUsuariosCriacaoId"]>, import("../../core").GraphqlFiltroConsultaCampoDef<SerDetalheGraphqlDto, "usuarioCriacao.username", readonly ["usuarioCriacao", "username"]>, import("../../core").GraphqlFiltroConsultaCampoDef<SerDetalheGraphqlDto, "tipoSerNome", readonly ["tipoSerNome"]>, import("../../core").GraphqlFiltroConsultaCampoDef<SerDetalheGraphqlDto, "gep", readonly ["gep"]>, import("../../core").GraphqlFiltroConsultaCampoDef<SerDetalheGraphqlDto, "evolucaoPendente", readonly ["evolucaoPendente"]>];
|
|
51
60
|
type Select = GraphqlSelectEntidade<SerDetalheGraphqlDto>;
|
|
52
61
|
const select: import("../../core").GraphqlSelectDef<SerDetalheGraphqlDto>;
|
|
53
62
|
type Resultado<TSelect extends Select> = GraphqlResultadoEntidade<SerDetalheGraphqlDto, TSelect>;
|
|
@@ -7,6 +7,9 @@ class SerDetalheGraphqlDto {
|
|
|
7
7
|
nome;
|
|
8
8
|
fkUsuariosCriacaoId;
|
|
9
9
|
usuarioCriacao;
|
|
10
|
+
tipoSerNome;
|
|
11
|
+
gep;
|
|
12
|
+
evolucaoPendente;
|
|
10
13
|
}
|
|
11
14
|
const SerDetalheGraphqlSelectExpansoes = {
|
|
12
15
|
ser: {
|
|
@@ -50,28 +53,34 @@ var GraphqlTypesSerDetalhe;
|
|
|
50
53
|
(function (GraphqlTypesSerDetalhe) {
|
|
51
54
|
GraphqlTypesSerDetalhe.eventos = EventosApiGraphqlSerDetalhe;
|
|
52
55
|
GraphqlTypesSerDetalhe.CamposWhereTrie = {
|
|
56
|
+
evolucaoPendente: true,
|
|
53
57
|
fkSerId: true,
|
|
54
58
|
fkUsuariosCriacaoId: true,
|
|
59
|
+
gep: true,
|
|
55
60
|
nome: true,
|
|
56
61
|
ser: {
|
|
57
62
|
dataCriacao: true,
|
|
58
63
|
fkTiposSerId: true,
|
|
59
64
|
id: true,
|
|
60
65
|
},
|
|
66
|
+
tipoSerNome: true,
|
|
61
67
|
usuarioCriacao: {
|
|
62
68
|
id: true,
|
|
63
69
|
username: true,
|
|
64
70
|
},
|
|
65
71
|
};
|
|
66
72
|
GraphqlTypesSerDetalhe.CamposOrderTrie = {
|
|
73
|
+
evolucaoPendente: true,
|
|
67
74
|
fkSerId: true,
|
|
68
75
|
fkUsuariosCriacaoId: true,
|
|
76
|
+
gep: true,
|
|
69
77
|
nome: true,
|
|
70
78
|
ser: {
|
|
71
79
|
dataCriacao: true,
|
|
72
80
|
fkTiposSerId: true,
|
|
73
81
|
id: true,
|
|
74
82
|
},
|
|
83
|
+
tipoSerNome: true,
|
|
75
84
|
usuarioCriacao: {
|
|
76
85
|
id: true,
|
|
77
86
|
username: true,
|
|
@@ -82,14 +91,20 @@ var GraphqlTypesSerDetalhe;
|
|
|
82
91
|
criaGraphqlCampoFiltroVisualizacao('ser.dataCriacao', ['ser', 'dataCriacao'], GraphqlFiltroCampoTipo.DATE, false, GraphqlFiltroControleVisualizacao.DATA_RANGE, 'Data de Criação'),
|
|
83
92
|
criaGraphqlCampoFiltroVisualizacao('nome', ['nome'], GraphqlFiltroCampoTipo.STRING, false, GraphqlFiltroControleVisualizacao.TEXTO, 'Nome'),
|
|
84
93
|
criaGraphqlCampoFiltroVisualizacao('fkUsuariosCriacaoId', ['fkUsuariosCriacaoId'], GraphqlFiltroCampoTipo.NUMBER, false, GraphqlFiltroControleVisualizacao.VALOR_UNICO, 'Usuário de Criação'),
|
|
85
|
-
criaGraphqlCampoFiltroVisualizacao('usuarioCriacao.username', ['usuarioCriacao', 'username'], GraphqlFiltroCampoTipo.STRING, false, GraphqlFiltroControleVisualizacao.MULTISELECT, 'Usuário')
|
|
94
|
+
criaGraphqlCampoFiltroVisualizacao('usuarioCriacao.username', ['usuarioCriacao', 'username'], GraphqlFiltroCampoTipo.STRING, false, GraphqlFiltroControleVisualizacao.MULTISELECT, 'Usuário'),
|
|
95
|
+
criaGraphqlCampoFiltroVisualizacao('tipoSerNome', ['tipoSerNome'], GraphqlFiltroCampoTipo.STRING, false, GraphqlFiltroControleVisualizacao.MULTISELECT, 'Tipo de Ser'),
|
|
96
|
+
criaGraphqlCampoFiltroVisualizacao('gep', ['gep'], GraphqlFiltroCampoTipo.STRING, true, GraphqlFiltroControleVisualizacao.MULTISELECT, 'GEP'),
|
|
97
|
+
criaGraphqlCampoFiltroVisualizacao('evolucaoPendente', ['evolucaoPendente'], GraphqlFiltroCampoTipo.BOOLEAN, false, GraphqlFiltroControleVisualizacao.BOOLEAN, 'Ficha Pendente')
|
|
86
98
|
]);
|
|
87
99
|
GraphqlTypesSerDetalhe.CamposFiltroConsulta = defineGraphqlCamposFiltroConsulta()([
|
|
88
100
|
criaGraphqlCampoFiltroConsulta('ser.fkTiposSerId', ['ser', 'fkTiposSerId'], GraphqlFiltroCampoTipo.NUMBER, false, GraphqlFiltroControleVisualizacao.VALOR_UNICO, 'Tipo de Ser'),
|
|
89
101
|
criaGraphqlCampoFiltroConsulta('ser.dataCriacao', ['ser', 'dataCriacao'], GraphqlFiltroCampoTipo.DATE, false, GraphqlFiltroControleVisualizacao.DATA_RANGE, 'Data de Criação'),
|
|
90
102
|
criaGraphqlCampoFiltroConsulta('nome', ['nome'], GraphqlFiltroCampoTipo.STRING, false, GraphqlFiltroControleVisualizacao.TEXTO, 'Nome'),
|
|
91
103
|
criaGraphqlCampoFiltroConsulta('fkUsuariosCriacaoId', ['fkUsuariosCriacaoId'], GraphqlFiltroCampoTipo.NUMBER, false, GraphqlFiltroControleVisualizacao.VALOR_UNICO, 'Usuário de Criação'),
|
|
92
|
-
criaGraphqlCampoFiltroConsulta('usuarioCriacao.username', ['usuarioCriacao', 'username'], GraphqlFiltroCampoTipo.STRING, false, GraphqlFiltroControleVisualizacao.MULTISELECT, 'Usuário')
|
|
104
|
+
criaGraphqlCampoFiltroConsulta('usuarioCriacao.username', ['usuarioCriacao', 'username'], GraphqlFiltroCampoTipo.STRING, false, GraphqlFiltroControleVisualizacao.MULTISELECT, 'Usuário'),
|
|
105
|
+
criaGraphqlCampoFiltroConsulta('tipoSerNome', ['tipoSerNome'], GraphqlFiltroCampoTipo.STRING, false, GraphqlFiltroControleVisualizacao.MULTISELECT, 'Tipo de Ser'),
|
|
106
|
+
criaGraphqlCampoFiltroConsulta('gep', ['gep'], GraphqlFiltroCampoTipo.STRING, true, GraphqlFiltroControleVisualizacao.MULTISELECT, 'GEP'),
|
|
107
|
+
criaGraphqlCampoFiltroConsulta('evolucaoPendente', ['evolucaoPendente'], GraphqlFiltroCampoTipo.BOOLEAN, false, GraphqlFiltroControleVisualizacao.BOOLEAN, 'Ficha Pendente')
|
|
93
108
|
]);
|
|
94
109
|
GraphqlTypesSerDetalhe.select = defineGraphqlSelect();
|
|
95
110
|
})(GraphqlTypesSerDetalhe || (GraphqlTypesSerDetalhe = {}));
|
|
@@ -5,9 +5,8 @@ import { EventosApiGraphqlArquivoTipadoMusica, GraphqlTypesArquivoTipadoMusica }
|
|
|
5
5
|
import { EventosApiGraphqlAventura, GraphqlTypesAventura } from './Aventura';
|
|
6
6
|
import { EventosApiGraphqlCapacidadeInata, GraphqlTypesCapacidadeInata } from './CapacidadeInata';
|
|
7
7
|
import { EventosApiGraphqlCard, GraphqlTypesCard } from './Card';
|
|
8
|
-
import { EventosApiGraphqlCatalogoMissao, GraphqlTypesCatalogoMissao } from './CatalogoMissao';
|
|
9
|
-
import { EventosApiGraphqlCatalogoMissaoExibicao, GraphqlTypesCatalogoMissaoExibicao } from './CatalogoMissaoExibicao';
|
|
10
8
|
import { EventosApiGraphqlChaveNovoAvatar, GraphqlTypesChaveNovoAvatar } from './ChaveNovoAvatar';
|
|
9
|
+
import { EventosApiGraphqlCoeficienteGanhoEstatisticaClasse, GraphqlTypesCoeficienteGanhoEstatisticaClasse } from './CoeficienteGanhoEstatisticaClasse';
|
|
11
10
|
import { EventosApiGraphqlColuna, GraphqlTypesColuna } from './Coluna';
|
|
12
11
|
import { EventosApiGraphqlComentario, GraphqlTypesComentario } from './Comentario';
|
|
13
12
|
import { EventosApiGraphqlCustomizacaoUsuario, GraphqlTypesCustomizacaoUsuario } from './CustomizacaoUsuario';
|
|
@@ -23,11 +22,11 @@ import { EventosApiGraphqlHabilidade, GraphqlTypesHabilidade } from './Habilidad
|
|
|
23
22
|
import { EventosApiGraphqlHabilidadeEspecial, GraphqlTypesHabilidadeEspecial } from './HabilidadeEspecial';
|
|
24
23
|
import { EventosApiGraphqlHabilidadePericia, GraphqlTypesHabilidadePericia } from './HabilidadePericia';
|
|
25
24
|
import { EventosApiGraphqlItemChecklist, GraphqlTypesItemChecklist } from './ItemChecklist';
|
|
26
|
-
import {
|
|
27
|
-
import { EventosApiGraphqlMissaoDetalhe, GraphqlTypesMissaoDetalhe } from './MissaoDetalhe';
|
|
28
|
-
import { EventosApiGraphqlMissaoExibicao, GraphqlTypesMissaoExibicao } from './MissaoExibicao';
|
|
25
|
+
import { EventosApiGraphqlMenu, GraphqlTypesMenu } from './Menu';
|
|
29
26
|
import { EventosApiGraphqlMusicaConfigurada, GraphqlTypesMusicaConfigurada } from './MusicaConfigurada';
|
|
30
27
|
import { EventosApiGraphqlObjetivo, GraphqlTypesObjetivo } from './Objetivo';
|
|
28
|
+
import { EventosApiGraphqlPaginaNavegacao, GraphqlTypesPaginaNavegacao } from './PaginaNavegacao';
|
|
29
|
+
import { EventosApiGraphqlPartida, GraphqlTypesPartida } from './Partida';
|
|
31
30
|
import { EventosApiGraphqlPatentePericia, GraphqlTypesPatentePericia } from './PatentePericia';
|
|
32
31
|
import { EventosApiGraphqlPericia, GraphqlTypesPericia } from './Pericia';
|
|
33
32
|
import { EventosApiGraphqlPersonagem, GraphqlTypesPersonagem } from './Personagem';
|
|
@@ -52,9 +51,8 @@ export * from './ArquivoTipadoMusica';
|
|
|
52
51
|
export * from './Aventura';
|
|
53
52
|
export * from './CapacidadeInata';
|
|
54
53
|
export * from './Card';
|
|
55
|
-
export * from './CatalogoMissao';
|
|
56
|
-
export * from './CatalogoMissaoExibicao';
|
|
57
54
|
export * from './ChaveNovoAvatar';
|
|
55
|
+
export * from './CoeficienteGanhoEstatisticaClasse';
|
|
58
56
|
export * from './Coluna';
|
|
59
57
|
export * from './Comentario';
|
|
60
58
|
export * from './CustomizacaoUsuario';
|
|
@@ -70,11 +68,11 @@ export * from './Habilidade';
|
|
|
70
68
|
export * from './HabilidadeEspecial';
|
|
71
69
|
export * from './HabilidadePericia';
|
|
72
70
|
export * from './ItemChecklist';
|
|
73
|
-
export * from './
|
|
74
|
-
export * from './MissaoDetalhe';
|
|
75
|
-
export * from './MissaoExibicao';
|
|
71
|
+
export * from './Menu';
|
|
76
72
|
export * from './MusicaConfigurada';
|
|
77
73
|
export * from './Objetivo';
|
|
74
|
+
export * from './PaginaNavegacao';
|
|
75
|
+
export * from './Partida';
|
|
78
76
|
export * from './PatentePericia';
|
|
79
77
|
export * from './Pericia';
|
|
80
78
|
export * from './Personagem';
|
|
@@ -100,9 +98,8 @@ declare const GraphqlLeituras: {
|
|
|
100
98
|
readonly Aventura: typeof GraphqlTypesAventura;
|
|
101
99
|
readonly CapacidadeInata: typeof GraphqlTypesCapacidadeInata;
|
|
102
100
|
readonly Card: typeof GraphqlTypesCard;
|
|
103
|
-
readonly CatalogoMissao: typeof GraphqlTypesCatalogoMissao;
|
|
104
|
-
readonly CatalogoMissaoExibicao: typeof GraphqlTypesCatalogoMissaoExibicao;
|
|
105
101
|
readonly ChaveNovoAvatar: typeof GraphqlTypesChaveNovoAvatar;
|
|
102
|
+
readonly CoeficienteGanhoEstatisticaClasse: typeof GraphqlTypesCoeficienteGanhoEstatisticaClasse;
|
|
106
103
|
readonly Coluna: typeof GraphqlTypesColuna;
|
|
107
104
|
readonly Comentario: typeof GraphqlTypesComentario;
|
|
108
105
|
readonly CustomizacaoUsuario: typeof GraphqlTypesCustomizacaoUsuario;
|
|
@@ -118,11 +115,11 @@ declare const GraphqlLeituras: {
|
|
|
118
115
|
readonly HabilidadeEspecial: typeof GraphqlTypesHabilidadeEspecial;
|
|
119
116
|
readonly HabilidadePericia: typeof GraphqlTypesHabilidadePericia;
|
|
120
117
|
readonly ItemChecklist: typeof GraphqlTypesItemChecklist;
|
|
121
|
-
readonly
|
|
122
|
-
readonly MissaoDetalhe: typeof GraphqlTypesMissaoDetalhe;
|
|
123
|
-
readonly MissaoExibicao: typeof GraphqlTypesMissaoExibicao;
|
|
118
|
+
readonly Menu: typeof GraphqlTypesMenu;
|
|
124
119
|
readonly MusicaConfigurada: typeof GraphqlTypesMusicaConfigurada;
|
|
125
120
|
readonly Objetivo: typeof GraphqlTypesObjetivo;
|
|
121
|
+
readonly PaginaNavegacao: typeof GraphqlTypesPaginaNavegacao;
|
|
122
|
+
readonly Partida: typeof GraphqlTypesPartida;
|
|
126
123
|
readonly PatentePericia: typeof GraphqlTypesPatentePericia;
|
|
127
124
|
readonly Pericia: typeof GraphqlTypesPericia;
|
|
128
125
|
readonly Personagem: typeof GraphqlTypesPersonagem;
|
|
@@ -152,9 +149,8 @@ declare const EventosApiGraphqlV2: {
|
|
|
152
149
|
readonly Aventura: typeof EventosApiGraphqlAventura;
|
|
153
150
|
readonly CapacidadeInata: typeof EventosApiGraphqlCapacidadeInata;
|
|
154
151
|
readonly Card: typeof EventosApiGraphqlCard;
|
|
155
|
-
readonly CatalogoMissao: typeof EventosApiGraphqlCatalogoMissao;
|
|
156
|
-
readonly CatalogoMissaoExibicao: typeof EventosApiGraphqlCatalogoMissaoExibicao;
|
|
157
152
|
readonly ChaveNovoAvatar: typeof EventosApiGraphqlChaveNovoAvatar;
|
|
153
|
+
readonly CoeficienteGanhoEstatisticaClasse: typeof EventosApiGraphqlCoeficienteGanhoEstatisticaClasse;
|
|
158
154
|
readonly Coluna: typeof EventosApiGraphqlColuna;
|
|
159
155
|
readonly Comentario: typeof EventosApiGraphqlComentario;
|
|
160
156
|
readonly CustomizacaoUsuario: typeof EventosApiGraphqlCustomizacaoUsuario;
|
|
@@ -170,11 +166,11 @@ declare const EventosApiGraphqlV2: {
|
|
|
170
166
|
readonly HabilidadeEspecial: typeof EventosApiGraphqlHabilidadeEspecial;
|
|
171
167
|
readonly HabilidadePericia: typeof EventosApiGraphqlHabilidadePericia;
|
|
172
168
|
readonly ItemChecklist: typeof EventosApiGraphqlItemChecklist;
|
|
173
|
-
readonly
|
|
174
|
-
readonly MissaoDetalhe: typeof EventosApiGraphqlMissaoDetalhe;
|
|
175
|
-
readonly MissaoExibicao: typeof EventosApiGraphqlMissaoExibicao;
|
|
169
|
+
readonly Menu: typeof EventosApiGraphqlMenu;
|
|
176
170
|
readonly MusicaConfigurada: typeof EventosApiGraphqlMusicaConfigurada;
|
|
177
171
|
readonly Objetivo: typeof EventosApiGraphqlObjetivo;
|
|
172
|
+
readonly PaginaNavegacao: typeof EventosApiGraphqlPaginaNavegacao;
|
|
173
|
+
readonly Partida: typeof EventosApiGraphqlPartida;
|
|
178
174
|
readonly PatentePericia: typeof EventosApiGraphqlPatentePericia;
|
|
179
175
|
readonly Pericia: typeof EventosApiGraphqlPericia;
|
|
180
176
|
readonly Personagem: typeof EventosApiGraphqlPersonagem;
|
|
@@ -7,9 +7,8 @@ import { EventosApiGraphqlArquivoTipadoMusica, GraphqlTypesArquivoTipadoMusica }
|
|
|
7
7
|
import { EventosApiGraphqlAventura, GraphqlTypesAventura } from './Aventura';
|
|
8
8
|
import { EventosApiGraphqlCapacidadeInata, GraphqlTypesCapacidadeInata } from './CapacidadeInata';
|
|
9
9
|
import { EventosApiGraphqlCard, GraphqlTypesCard } from './Card';
|
|
10
|
-
import { EventosApiGraphqlCatalogoMissao, GraphqlTypesCatalogoMissao } from './CatalogoMissao';
|
|
11
|
-
import { EventosApiGraphqlCatalogoMissaoExibicao, GraphqlTypesCatalogoMissaoExibicao } from './CatalogoMissaoExibicao';
|
|
12
10
|
import { EventosApiGraphqlChaveNovoAvatar, GraphqlTypesChaveNovoAvatar } from './ChaveNovoAvatar';
|
|
11
|
+
import { EventosApiGraphqlCoeficienteGanhoEstatisticaClasse, GraphqlTypesCoeficienteGanhoEstatisticaClasse } from './CoeficienteGanhoEstatisticaClasse';
|
|
13
12
|
import { EventosApiGraphqlColuna, GraphqlTypesColuna } from './Coluna';
|
|
14
13
|
import { EventosApiGraphqlComentario, GraphqlTypesComentario } from './Comentario';
|
|
15
14
|
import { EventosApiGraphqlCustomizacaoUsuario, GraphqlTypesCustomizacaoUsuario } from './CustomizacaoUsuario';
|
|
@@ -25,11 +24,11 @@ import { EventosApiGraphqlHabilidade, GraphqlTypesHabilidade } from './Habilidad
|
|
|
25
24
|
import { EventosApiGraphqlHabilidadeEspecial, GraphqlTypesHabilidadeEspecial } from './HabilidadeEspecial';
|
|
26
25
|
import { EventosApiGraphqlHabilidadePericia, GraphqlTypesHabilidadePericia } from './HabilidadePericia';
|
|
27
26
|
import { EventosApiGraphqlItemChecklist, GraphqlTypesItemChecklist } from './ItemChecklist';
|
|
28
|
-
import {
|
|
29
|
-
import { EventosApiGraphqlMissaoDetalhe, GraphqlTypesMissaoDetalhe } from './MissaoDetalhe';
|
|
30
|
-
import { EventosApiGraphqlMissaoExibicao, GraphqlTypesMissaoExibicao } from './MissaoExibicao';
|
|
27
|
+
import { EventosApiGraphqlMenu, GraphqlTypesMenu } from './Menu';
|
|
31
28
|
import { EventosApiGraphqlMusicaConfigurada, GraphqlTypesMusicaConfigurada } from './MusicaConfigurada';
|
|
32
29
|
import { EventosApiGraphqlObjetivo, GraphqlTypesObjetivo } from './Objetivo';
|
|
30
|
+
import { EventosApiGraphqlPaginaNavegacao, GraphqlTypesPaginaNavegacao } from './PaginaNavegacao';
|
|
31
|
+
import { EventosApiGraphqlPartida, GraphqlTypesPartida } from './Partida';
|
|
33
32
|
import { EventosApiGraphqlPatentePericia, GraphqlTypesPatentePericia } from './PatentePericia';
|
|
34
33
|
import { EventosApiGraphqlPericia, GraphqlTypesPericia } from './Pericia';
|
|
35
34
|
import { EventosApiGraphqlPersonagem, GraphqlTypesPersonagem } from './Personagem';
|
|
@@ -54,9 +53,8 @@ export * from './ArquivoTipadoMusica';
|
|
|
54
53
|
export * from './Aventura';
|
|
55
54
|
export * from './CapacidadeInata';
|
|
56
55
|
export * from './Card';
|
|
57
|
-
export * from './CatalogoMissao';
|
|
58
|
-
export * from './CatalogoMissaoExibicao';
|
|
59
56
|
export * from './ChaveNovoAvatar';
|
|
57
|
+
export * from './CoeficienteGanhoEstatisticaClasse';
|
|
60
58
|
export * from './Coluna';
|
|
61
59
|
export * from './Comentario';
|
|
62
60
|
export * from './CustomizacaoUsuario';
|
|
@@ -72,11 +70,11 @@ export * from './Habilidade';
|
|
|
72
70
|
export * from './HabilidadeEspecial';
|
|
73
71
|
export * from './HabilidadePericia';
|
|
74
72
|
export * from './ItemChecklist';
|
|
75
|
-
export * from './
|
|
76
|
-
export * from './MissaoDetalhe';
|
|
77
|
-
export * from './MissaoExibicao';
|
|
73
|
+
export * from './Menu';
|
|
78
74
|
export * from './MusicaConfigurada';
|
|
79
75
|
export * from './Objetivo';
|
|
76
|
+
export * from './PaginaNavegacao';
|
|
77
|
+
export * from './Partida';
|
|
80
78
|
export * from './PatentePericia';
|
|
81
79
|
export * from './Pericia';
|
|
82
80
|
export * from './Personagem';
|
|
@@ -102,9 +100,8 @@ const GraphqlLeituras = {
|
|
|
102
100
|
Aventura: GraphqlTypesAventura,
|
|
103
101
|
CapacidadeInata: GraphqlTypesCapacidadeInata,
|
|
104
102
|
Card: GraphqlTypesCard,
|
|
105
|
-
CatalogoMissao: GraphqlTypesCatalogoMissao,
|
|
106
|
-
CatalogoMissaoExibicao: GraphqlTypesCatalogoMissaoExibicao,
|
|
107
103
|
ChaveNovoAvatar: GraphqlTypesChaveNovoAvatar,
|
|
104
|
+
CoeficienteGanhoEstatisticaClasse: GraphqlTypesCoeficienteGanhoEstatisticaClasse,
|
|
108
105
|
Coluna: GraphqlTypesColuna,
|
|
109
106
|
Comentario: GraphqlTypesComentario,
|
|
110
107
|
CustomizacaoUsuario: GraphqlTypesCustomizacaoUsuario,
|
|
@@ -120,11 +117,11 @@ const GraphqlLeituras = {
|
|
|
120
117
|
HabilidadeEspecial: GraphqlTypesHabilidadeEspecial,
|
|
121
118
|
HabilidadePericia: GraphqlTypesHabilidadePericia,
|
|
122
119
|
ItemChecklist: GraphqlTypesItemChecklist,
|
|
123
|
-
|
|
124
|
-
MissaoDetalhe: GraphqlTypesMissaoDetalhe,
|
|
125
|
-
MissaoExibicao: GraphqlTypesMissaoExibicao,
|
|
120
|
+
Menu: GraphqlTypesMenu,
|
|
126
121
|
MusicaConfigurada: GraphqlTypesMusicaConfigurada,
|
|
127
122
|
Objetivo: GraphqlTypesObjetivo,
|
|
123
|
+
PaginaNavegacao: GraphqlTypesPaginaNavegacao,
|
|
124
|
+
Partida: GraphqlTypesPartida,
|
|
128
125
|
PatentePericia: GraphqlTypesPatentePericia,
|
|
129
126
|
Pericia: GraphqlTypesPericia,
|
|
130
127
|
Personagem: GraphqlTypesPersonagem,
|
|
@@ -153,9 +150,8 @@ const EventosApiGraphqlV2 = {
|
|
|
153
150
|
get Aventura() { return EventosApiGraphqlAventura; },
|
|
154
151
|
get CapacidadeInata() { return EventosApiGraphqlCapacidadeInata; },
|
|
155
152
|
get Card() { return EventosApiGraphqlCard; },
|
|
156
|
-
get CatalogoMissao() { return EventosApiGraphqlCatalogoMissao; },
|
|
157
|
-
get CatalogoMissaoExibicao() { return EventosApiGraphqlCatalogoMissaoExibicao; },
|
|
158
153
|
get ChaveNovoAvatar() { return EventosApiGraphqlChaveNovoAvatar; },
|
|
154
|
+
get CoeficienteGanhoEstatisticaClasse() { return EventosApiGraphqlCoeficienteGanhoEstatisticaClasse; },
|
|
159
155
|
get Coluna() { return EventosApiGraphqlColuna; },
|
|
160
156
|
get Comentario() { return EventosApiGraphqlComentario; },
|
|
161
157
|
get CustomizacaoUsuario() { return EventosApiGraphqlCustomizacaoUsuario; },
|
|
@@ -171,11 +167,11 @@ const EventosApiGraphqlV2 = {
|
|
|
171
167
|
get HabilidadeEspecial() { return EventosApiGraphqlHabilidadeEspecial; },
|
|
172
168
|
get HabilidadePericia() { return EventosApiGraphqlHabilidadePericia; },
|
|
173
169
|
get ItemChecklist() { return EventosApiGraphqlItemChecklist; },
|
|
174
|
-
get
|
|
175
|
-
get MissaoDetalhe() { return EventosApiGraphqlMissaoDetalhe; },
|
|
176
|
-
get MissaoExibicao() { return EventosApiGraphqlMissaoExibicao; },
|
|
170
|
+
get Menu() { return EventosApiGraphqlMenu; },
|
|
177
171
|
get MusicaConfigurada() { return EventosApiGraphqlMusicaConfigurada; },
|
|
178
172
|
get Objetivo() { return EventosApiGraphqlObjetivo; },
|
|
173
|
+
get PaginaNavegacao() { return EventosApiGraphqlPaginaNavegacao; },
|
|
174
|
+
get Partida() { return EventosApiGraphqlPartida; },
|
|
179
175
|
get PatentePericia() { return EventosApiGraphqlPatentePericia; },
|
|
180
176
|
get Pericia() { return EventosApiGraphqlPericia; },
|
|
181
177
|
get Personagem() { return EventosApiGraphqlPersonagem; },
|