@legendsoflearning/lol-sdk-core 0.0.2
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/README.md +172 -0
- package/dist/auth/index.d.mts +1 -0
- package/dist/auth/index.d.ts +1 -0
- package/dist/auth/index.js +12 -0
- package/dist/auth/index.js.map +1 -0
- package/dist/auth/index.mjs +3 -0
- package/dist/auth/index.mjs.map +1 -0
- package/dist/cache/index.d.mts +26 -0
- package/dist/cache/index.d.ts +26 -0
- package/dist/cache/index.js +63 -0
- package/dist/cache/index.js.map +1 -0
- package/dist/cache/index.mjs +60 -0
- package/dist/cache/index.mjs.map +1 -0
- package/dist/chunk-Q4UXELOU.mjs +284 -0
- package/dist/chunk-Q4UXELOU.mjs.map +1 -0
- package/dist/chunk-WWN77BBN.js +286 -0
- package/dist/chunk-WWN77BBN.js.map +1 -0
- package/dist/generated/admins/index.d.mts +2738 -0
- package/dist/generated/admins/index.d.ts +2738 -0
- package/dist/generated/admins/index.js +126 -0
- package/dist/generated/admins/index.js.map +1 -0
- package/dist/generated/admins/index.mjs +108 -0
- package/dist/generated/admins/index.mjs.map +1 -0
- package/dist/generated/agents/index.d.mts +1744 -0
- package/dist/generated/agents/index.d.ts +1744 -0
- package/dist/generated/agents/index.js +220 -0
- package/dist/generated/agents/index.js.map +1 -0
- package/dist/generated/agents/index.mjs +168 -0
- package/dist/generated/agents/index.mjs.map +1 -0
- package/dist/generated/developers/index.d.mts +748 -0
- package/dist/generated/developers/index.d.ts +748 -0
- package/dist/generated/developers/index.js +72 -0
- package/dist/generated/developers/index.js.map +1 -0
- package/dist/generated/developers/index.mjs +54 -0
- package/dist/generated/developers/index.mjs.map +1 -0
- package/dist/generated/parents/index.d.mts +2446 -0
- package/dist/generated/parents/index.d.ts +2446 -0
- package/dist/generated/parents/index.js +272 -0
- package/dist/generated/parents/index.js.map +1 -0
- package/dist/generated/parents/index.mjs +206 -0
- package/dist/generated/parents/index.mjs.map +1 -0
- package/dist/generated/play/index.d.mts +1740 -0
- package/dist/generated/play/index.d.ts +1740 -0
- package/dist/generated/play/index.js +173 -0
- package/dist/generated/play/index.js.map +1 -0
- package/dist/generated/play/index.mjs +139 -0
- package/dist/generated/play/index.mjs.map +1 -0
- package/dist/generated/public/index.d.mts +1126 -0
- package/dist/generated/public/index.d.ts +1126 -0
- package/dist/generated/public/index.js +58 -0
- package/dist/generated/public/index.js.map +1 -0
- package/dist/generated/public/index.mjs +46 -0
- package/dist/generated/public/index.mjs.map +1 -0
- package/dist/generated/teachers/index.d.mts +6205 -0
- package/dist/generated/teachers/index.d.ts +6205 -0
- package/dist/generated/teachers/index.js +353 -0
- package/dist/generated/teachers/index.js.map +1 -0
- package/dist/generated/teachers/index.mjs +282 -0
- package/dist/generated/teachers/index.mjs.map +1 -0
- package/dist/generated/translation-hub/index.d.mts +2018 -0
- package/dist/generated/translation-hub/index.d.ts +2018 -0
- package/dist/generated/translation-hub/index.js +186 -0
- package/dist/generated/translation-hub/index.js.map +1 -0
- package/dist/generated/translation-hub/index.mjs +135 -0
- package/dist/generated/translation-hub/index.mjs.map +1 -0
- package/dist/index-CYIBtoSV.d.mts +173 -0
- package/dist/index-CYIBtoSV.d.ts +173 -0
- package/dist/index.d.mts +154 -0
- package/dist/index.d.ts +154 -0
- package/dist/index.js +364 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +348 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +121 -0
|
@@ -0,0 +1,2018 @@
|
|
|
1
|
+
import { TypedDocumentNode, DocumentTypeDecoration, ResultOf } from '@graphql-typed-document-node/core';
|
|
2
|
+
|
|
3
|
+
type Maybe<T> = T | null;
|
|
4
|
+
type InputMaybe<T> = Maybe<T>;
|
|
5
|
+
type Exact<T extends {
|
|
6
|
+
[key: string]: unknown;
|
|
7
|
+
}> = {
|
|
8
|
+
[K in keyof T]: T[K];
|
|
9
|
+
};
|
|
10
|
+
type MakeOptional<T, K extends keyof T> = Omit<T, K> & {
|
|
11
|
+
[SubKey in K]?: Maybe<T[SubKey]>;
|
|
12
|
+
};
|
|
13
|
+
type MakeMaybe<T, K extends keyof T> = Omit<T, K> & {
|
|
14
|
+
[SubKey in K]: Maybe<T[SubKey]>;
|
|
15
|
+
};
|
|
16
|
+
type MakeEmpty<T extends {
|
|
17
|
+
[key: string]: unknown;
|
|
18
|
+
}, K extends keyof T> = {
|
|
19
|
+
[_ in K]?: never;
|
|
20
|
+
};
|
|
21
|
+
type Incremental<T> = T | {
|
|
22
|
+
[P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never;
|
|
23
|
+
};
|
|
24
|
+
/** All built-in and custom scalars, mapped to their actual values */
|
|
25
|
+
type Scalars = {
|
|
26
|
+
ID: {
|
|
27
|
+
input: string;
|
|
28
|
+
output: string;
|
|
29
|
+
};
|
|
30
|
+
String: {
|
|
31
|
+
input: string;
|
|
32
|
+
output: string;
|
|
33
|
+
};
|
|
34
|
+
Boolean: {
|
|
35
|
+
input: boolean;
|
|
36
|
+
output: boolean;
|
|
37
|
+
};
|
|
38
|
+
Int: {
|
|
39
|
+
input: number;
|
|
40
|
+
output: number;
|
|
41
|
+
};
|
|
42
|
+
Float: {
|
|
43
|
+
input: number;
|
|
44
|
+
output: number;
|
|
45
|
+
};
|
|
46
|
+
/**
|
|
47
|
+
* The `DateTime` scalar type represents a date and time in the UTC
|
|
48
|
+
* timezone. The DateTime appears in a JSON response as an ISO8601 formatted
|
|
49
|
+
* string, including UTC timezone ("Z"). The parsed date and time string will
|
|
50
|
+
* be converted to UTC if there is an offset.
|
|
51
|
+
*/
|
|
52
|
+
DateTime: {
|
|
53
|
+
input: any;
|
|
54
|
+
output: any;
|
|
55
|
+
};
|
|
56
|
+
};
|
|
57
|
+
/** An AI prompt template for translation or review */
|
|
58
|
+
type AiPrompt = {
|
|
59
|
+
__typename?: 'AiPrompt';
|
|
60
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
61
|
+
id: Scalars['ID']['output'];
|
|
62
|
+
insertedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
63
|
+
isActive: Scalars['Boolean']['output'];
|
|
64
|
+
maxTokens: Scalars['Int']['output'];
|
|
65
|
+
model: Scalars['String']['output'];
|
|
66
|
+
name: Scalars['String']['output'];
|
|
67
|
+
purpose: Scalars['String']['output'];
|
|
68
|
+
temperature: Scalars['Float']['output'];
|
|
69
|
+
template: Scalars['String']['output'];
|
|
70
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
71
|
+
variables?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
72
|
+
/** Version history for this prompt */
|
|
73
|
+
versions?: Maybe<Array<Maybe<AiPromptVersion>>>;
|
|
74
|
+
};
|
|
75
|
+
/** Input for creating or updating an AI prompt */
|
|
76
|
+
type AiPromptInput = {
|
|
77
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
78
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
79
|
+
isActive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
80
|
+
maxTokens?: InputMaybe<Scalars['Int']['input']>;
|
|
81
|
+
model?: InputMaybe<Scalars['String']['input']>;
|
|
82
|
+
name: Scalars['String']['input'];
|
|
83
|
+
purpose: Scalars['String']['input'];
|
|
84
|
+
temperature?: InputMaybe<Scalars['Float']['input']>;
|
|
85
|
+
template: Scalars['String']['input'];
|
|
86
|
+
variables?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
87
|
+
};
|
|
88
|
+
/** A version snapshot of an AI prompt */
|
|
89
|
+
type AiPromptVersion = {
|
|
90
|
+
__typename?: 'AiPromptVersion';
|
|
91
|
+
changeNote?: Maybe<Scalars['String']['output']>;
|
|
92
|
+
id: Scalars['ID']['output'];
|
|
93
|
+
insertedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
94
|
+
maxTokens: Scalars['Int']['output'];
|
|
95
|
+
model: Scalars['String']['output'];
|
|
96
|
+
/** The prompt this version belongs to */
|
|
97
|
+
prompt?: Maybe<AiPrompt>;
|
|
98
|
+
promptId: Scalars['ID']['output'];
|
|
99
|
+
temperature: Scalars['Float']['output'];
|
|
100
|
+
template: Scalars['String']['output'];
|
|
101
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
102
|
+
variables?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
103
|
+
version: Scalars['Int']['output'];
|
|
104
|
+
};
|
|
105
|
+
/** Input for creating a new AI prompt version */
|
|
106
|
+
type AiPromptVersionInput = {
|
|
107
|
+
changeNote?: InputMaybe<Scalars['String']['input']>;
|
|
108
|
+
maxTokens?: InputMaybe<Scalars['Int']['input']>;
|
|
109
|
+
model?: InputMaybe<Scalars['String']['input']>;
|
|
110
|
+
promptId: Scalars['ID']['input'];
|
|
111
|
+
temperature?: InputMaybe<Scalars['Float']['input']>;
|
|
112
|
+
template: Scalars['String']['input'];
|
|
113
|
+
variables?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
114
|
+
};
|
|
115
|
+
/** Input for assigning a translation */
|
|
116
|
+
type AssignTranslationInput = {
|
|
117
|
+
dueDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
118
|
+
priority?: InputMaybe<AssignmentPriority>;
|
|
119
|
+
reviewerId: Scalars['ID']['input'];
|
|
120
|
+
translationId: Scalars['ID']['input'];
|
|
121
|
+
};
|
|
122
|
+
/** Priority level for translation assignments */
|
|
123
|
+
declare enum AssignmentPriority {
|
|
124
|
+
High = "HIGH",
|
|
125
|
+
Low = "LOW",
|
|
126
|
+
Medium = "MEDIUM",
|
|
127
|
+
Urgent = "URGENT"
|
|
128
|
+
}
|
|
129
|
+
/** Input for reviewer application */
|
|
130
|
+
type CreateTranslationReviewerInput = {
|
|
131
|
+
bio?: InputMaybe<Scalars['String']['input']>;
|
|
132
|
+
email: Scalars['String']['input'];
|
|
133
|
+
languages: Array<Scalars['String']['input']>;
|
|
134
|
+
name: Scalars['String']['input'];
|
|
135
|
+
password: Scalars['String']['input'];
|
|
136
|
+
};
|
|
137
|
+
/** Translations grouped by game for dashboard display */
|
|
138
|
+
type GameTranslationGroup = {
|
|
139
|
+
__typename?: 'GameTranslationGroup';
|
|
140
|
+
/** Completed keys across all languages */
|
|
141
|
+
completedKeys: Scalars['Int']['output'];
|
|
142
|
+
/** Earliest assignment date */
|
|
143
|
+
earliestAssignmentDate?: Maybe<Scalars['DateTime']['output']>;
|
|
144
|
+
game: HubGame;
|
|
145
|
+
gameId: Scalars['ID']['output'];
|
|
146
|
+
gameVersion: HubGameVersion;
|
|
147
|
+
/** Total keys across all languages */
|
|
148
|
+
totalKeys: Scalars['Int']['output'];
|
|
149
|
+
/** Combined progress across all languages */
|
|
150
|
+
totalProgress: Scalars['Int']['output'];
|
|
151
|
+
/** All translations for this game assigned to the reviewer */
|
|
152
|
+
translations: Array<HubTranslation>;
|
|
153
|
+
};
|
|
154
|
+
/** Game information for Translation Hub */
|
|
155
|
+
type HubGame = {
|
|
156
|
+
__typename?: 'HubGame';
|
|
157
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
158
|
+
currentVersion?: Maybe<Scalars['String']['output']>;
|
|
159
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
160
|
+
/** Developer info */
|
|
161
|
+
developer?: Maybe<HubGameDeveloper>;
|
|
162
|
+
gradeLevel?: Maybe<Scalars['String']['output']>;
|
|
163
|
+
id: Scalars['ID']['output'];
|
|
164
|
+
/** Play URL for preview */
|
|
165
|
+
playUrl?: Maybe<Scalars['String']['output']>;
|
|
166
|
+
subject?: Maybe<Scalars['String']['output']>;
|
|
167
|
+
thumbnailUrl?: Maybe<Scalars['String']['output']>;
|
|
168
|
+
title: Scalars['String']['output'];
|
|
169
|
+
/** All translations for this game */
|
|
170
|
+
translations?: Maybe<Array<Maybe<HubTranslation>>>;
|
|
171
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
172
|
+
};
|
|
173
|
+
/** Game information for Translation Hub */
|
|
174
|
+
type HubGamePlayUrlArgs = {
|
|
175
|
+
language?: InputMaybe<Scalars['String']['input']>;
|
|
176
|
+
};
|
|
177
|
+
/** Game developer info */
|
|
178
|
+
type HubGameDeveloper = {
|
|
179
|
+
__typename?: 'HubGameDeveloper';
|
|
180
|
+
companyName?: Maybe<Scalars['String']['output']>;
|
|
181
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
182
|
+
id: Scalars['ID']['output'];
|
|
183
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
184
|
+
};
|
|
185
|
+
/** Game version for Translation Hub */
|
|
186
|
+
type HubGameVersion = {
|
|
187
|
+
__typename?: 'HubGameVersion';
|
|
188
|
+
/** The game */
|
|
189
|
+
game?: Maybe<HubGame>;
|
|
190
|
+
gameId: Scalars['ID']['output'];
|
|
191
|
+
id: Scalars['ID']['output'];
|
|
192
|
+
publishedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
193
|
+
sourceLanguage?: Maybe<Scalars['String']['output']>;
|
|
194
|
+
/** Number of translatable strings */
|
|
195
|
+
translationKeys?: Maybe<Scalars['Int']['output']>;
|
|
196
|
+
/** All translations for this version */
|
|
197
|
+
translations?: Maybe<Array<Maybe<HubTranslation>>>;
|
|
198
|
+
version?: Maybe<Scalars['String']['output']>;
|
|
199
|
+
};
|
|
200
|
+
/** A translation of a game version into a target language */
|
|
201
|
+
type HubTranslation = {
|
|
202
|
+
__typename?: 'HubTranslation';
|
|
203
|
+
/** Whether AI generated initial translations */
|
|
204
|
+
aiGenerated: Scalars['Boolean']['output'];
|
|
205
|
+
/** When assigned */
|
|
206
|
+
assignedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
207
|
+
/** Assigned reviewer */
|
|
208
|
+
assignedReviewer?: Maybe<TranslationReviewer>;
|
|
209
|
+
/** Assigned reviewer ID */
|
|
210
|
+
assignedToId?: Maybe<Scalars['ID']['output']>;
|
|
211
|
+
/** When completed */
|
|
212
|
+
completedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
213
|
+
/** Number of completed/reviewed keys */
|
|
214
|
+
completedKeys: Scalars['Int']['output'];
|
|
215
|
+
/** Translation entries (phrases) */
|
|
216
|
+
entries?: Maybe<Array<Maybe<TranslationEntry>>>;
|
|
217
|
+
/** The game being translated */
|
|
218
|
+
game?: Maybe<HubGame>;
|
|
219
|
+
/** The game version being translated */
|
|
220
|
+
gameVersion?: Maybe<HubGameVersion>;
|
|
221
|
+
gameVersionId: Scalars['ID']['output'];
|
|
222
|
+
id: Scalars['ID']['output'];
|
|
223
|
+
insertedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
224
|
+
/** Progress percentage (0-100) */
|
|
225
|
+
progress: Scalars['Int']['output'];
|
|
226
|
+
/** Sibling translations (same game, different languages, same reviewer) */
|
|
227
|
+
siblingTranslations?: Maybe<Array<Maybe<HubTranslation>>>;
|
|
228
|
+
/** Current status */
|
|
229
|
+
status: TranslationStatus;
|
|
230
|
+
/** Target language code */
|
|
231
|
+
targetLanguage: Scalars['String']['output'];
|
|
232
|
+
/** Target language details */
|
|
233
|
+
targetLanguageDetails?: Maybe<TranslationLanguage>;
|
|
234
|
+
/** Total entry count for pagination */
|
|
235
|
+
totalEntries: Scalars['Int']['output'];
|
|
236
|
+
/** Total number of translation keys */
|
|
237
|
+
totalKeys: Scalars['Int']['output'];
|
|
238
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
239
|
+
};
|
|
240
|
+
/** A translation of a game version into a target language */
|
|
241
|
+
type HubTranslationEntriesArgs = {
|
|
242
|
+
approvedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
243
|
+
editedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
244
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
245
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
246
|
+
pendingOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
247
|
+
};
|
|
248
|
+
/** Audio file for a phrase at a specific playback speed */
|
|
249
|
+
type PhraseAudio = {
|
|
250
|
+
__typename?: 'PhraseAudio';
|
|
251
|
+
/** TTS engine used (polly, elevenlabs) */
|
|
252
|
+
engine?: Maybe<Scalars['String']['output']>;
|
|
253
|
+
/** When the audio was generated */
|
|
254
|
+
generatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
255
|
+
id: Scalars['ID']['output'];
|
|
256
|
+
phraseId: Scalars['ID']['output'];
|
|
257
|
+
/** Playback speed (0.5, 1.0, 1.5, 2.0) */
|
|
258
|
+
speed: Scalars['Float']['output'];
|
|
259
|
+
/** CDN URL for the audio file */
|
|
260
|
+
url: Scalars['String']['output'];
|
|
261
|
+
/** Voice ID used for generation */
|
|
262
|
+
voiceId?: Maybe<Scalars['String']['output']>;
|
|
263
|
+
};
|
|
264
|
+
/** Input for reviewing a reviewer application */
|
|
265
|
+
type ReviewReviewerInput = {
|
|
266
|
+
approvedLanguages?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
267
|
+
decision: TranslationReviewerStatus;
|
|
268
|
+
rejectionReason?: InputMaybe<Scalars['String']['input']>;
|
|
269
|
+
reviewerId: Scalars['ID']['input'];
|
|
270
|
+
};
|
|
271
|
+
/** Reviewer dashboard data */
|
|
272
|
+
type ReviewerDashboard = {
|
|
273
|
+
__typename?: 'ReviewerDashboard';
|
|
274
|
+
activeGameGroups: Array<GameTranslationGroup>;
|
|
275
|
+
recentlyCompleted?: Maybe<Array<Maybe<GameTranslationGroup>>>;
|
|
276
|
+
reviewer: TranslationReviewer;
|
|
277
|
+
stats: TranslationReviewerStats;
|
|
278
|
+
};
|
|
279
|
+
/** Filter input for reviewers */
|
|
280
|
+
type ReviewerFilterInput = {
|
|
281
|
+
language?: InputMaybe<Scalars['String']['input']>;
|
|
282
|
+
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
283
|
+
status?: InputMaybe<TranslationReviewerStatus>;
|
|
284
|
+
};
|
|
285
|
+
type RootMutationType = {
|
|
286
|
+
__typename?: 'RootMutationType';
|
|
287
|
+
/** Approve additional languages for a reviewer */
|
|
288
|
+
approveReviewerLanguages?: Maybe<TranslationReviewer>;
|
|
289
|
+
/** Assign a translation to a reviewer */
|
|
290
|
+
assignHubTranslation?: Maybe<HubTranslation>;
|
|
291
|
+
/** Mark translation as complete */
|
|
292
|
+
completeHubTranslation?: Maybe<HubTranslation>;
|
|
293
|
+
/** Create a new version of an AI prompt */
|
|
294
|
+
createAiPromptVersion?: Maybe<AiPromptVersion>;
|
|
295
|
+
/** Generate AI translations for a game version */
|
|
296
|
+
generateAiTranslations?: Maybe<Array<Maybe<HubTranslation>>>;
|
|
297
|
+
/** Reactivate a suspended reviewer */
|
|
298
|
+
reactivateTranslationReviewer?: Maybe<TranslationReviewer>;
|
|
299
|
+
/** Reassign a translation to a different reviewer */
|
|
300
|
+
reassignHubTranslation?: Maybe<HubTranslation>;
|
|
301
|
+
/** Request revision for a completed translation */
|
|
302
|
+
requestTranslationRevision?: Maybe<HubTranslation>;
|
|
303
|
+
/** Approve or reject a reviewer application */
|
|
304
|
+
reviewTranslationReviewer?: Maybe<TranslationReviewer>;
|
|
305
|
+
/** Save AI-generated translation entries with prompt version tracking */
|
|
306
|
+
saveAiTranslationEntries?: Maybe<SaveEntriesResult>;
|
|
307
|
+
/** Save translation entry edits */
|
|
308
|
+
saveTranslationEntries?: Maybe<SaveEntriesResult>;
|
|
309
|
+
/** Suspend an active reviewer */
|
|
310
|
+
suspendTranslationReviewer?: Maybe<TranslationReviewer>;
|
|
311
|
+
/** Login with email and password */
|
|
312
|
+
translationHubLogin?: Maybe<TranslationHubAuthPayload>;
|
|
313
|
+
/** Logout current session */
|
|
314
|
+
translationHubLogout?: Maybe<Scalars['Boolean']['output']>;
|
|
315
|
+
/** Register as a new translation reviewer */
|
|
316
|
+
translationHubSignup?: Maybe<TranslationHubAuthPayload>;
|
|
317
|
+
/** Unassign a translation */
|
|
318
|
+
unassignHubTranslation?: Maybe<HubTranslation>;
|
|
319
|
+
/** Create or update an AI prompt */
|
|
320
|
+
upsertAiPrompt?: Maybe<AiPrompt>;
|
|
321
|
+
/** Use AI suggestion for an entry */
|
|
322
|
+
useAiSuggestion?: Maybe<TranslationEntry>;
|
|
323
|
+
};
|
|
324
|
+
type RootMutationTypeApproveReviewerLanguagesArgs = {
|
|
325
|
+
languages: Array<Scalars['String']['input']>;
|
|
326
|
+
reviewerId: Scalars['ID']['input'];
|
|
327
|
+
};
|
|
328
|
+
type RootMutationTypeAssignHubTranslationArgs = {
|
|
329
|
+
input: AssignTranslationInput;
|
|
330
|
+
};
|
|
331
|
+
type RootMutationTypeCompleteHubTranslationArgs = {
|
|
332
|
+
translationId: Scalars['ID']['input'];
|
|
333
|
+
};
|
|
334
|
+
type RootMutationTypeCreateAiPromptVersionArgs = {
|
|
335
|
+
input: AiPromptVersionInput;
|
|
336
|
+
};
|
|
337
|
+
type RootMutationTypeGenerateAiTranslationsArgs = {
|
|
338
|
+
gameVersionId: Scalars['ID']['input'];
|
|
339
|
+
targetLanguages: Array<Scalars['String']['input']>;
|
|
340
|
+
};
|
|
341
|
+
type RootMutationTypeReactivateTranslationReviewerArgs = {
|
|
342
|
+
reviewerId: Scalars['ID']['input'];
|
|
343
|
+
};
|
|
344
|
+
type RootMutationTypeReassignHubTranslationArgs = {
|
|
345
|
+
newReviewerId: Scalars['ID']['input'];
|
|
346
|
+
translationId: Scalars['ID']['input'];
|
|
347
|
+
};
|
|
348
|
+
type RootMutationTypeRequestTranslationRevisionArgs = {
|
|
349
|
+
reason: Scalars['String']['input'];
|
|
350
|
+
translationId: Scalars['ID']['input'];
|
|
351
|
+
};
|
|
352
|
+
type RootMutationTypeReviewTranslationReviewerArgs = {
|
|
353
|
+
input: ReviewReviewerInput;
|
|
354
|
+
};
|
|
355
|
+
type RootMutationTypeSaveAiTranslationEntriesArgs = {
|
|
356
|
+
input: SaveAiTranslationEntriesInput;
|
|
357
|
+
};
|
|
358
|
+
type RootMutationTypeSaveTranslationEntriesArgs = {
|
|
359
|
+
input: SaveTranslationEntriesInput;
|
|
360
|
+
};
|
|
361
|
+
type RootMutationTypeSuspendTranslationReviewerArgs = {
|
|
362
|
+
reason?: InputMaybe<Scalars['String']['input']>;
|
|
363
|
+
reviewerId: Scalars['ID']['input'];
|
|
364
|
+
};
|
|
365
|
+
type RootMutationTypeTranslationHubLoginArgs = {
|
|
366
|
+
email: Scalars['String']['input'];
|
|
367
|
+
password: Scalars['String']['input'];
|
|
368
|
+
};
|
|
369
|
+
type RootMutationTypeTranslationHubSignupArgs = {
|
|
370
|
+
input: CreateTranslationReviewerInput;
|
|
371
|
+
};
|
|
372
|
+
type RootMutationTypeUnassignHubTranslationArgs = {
|
|
373
|
+
translationId: Scalars['ID']['input'];
|
|
374
|
+
};
|
|
375
|
+
type RootMutationTypeUpsertAiPromptArgs = {
|
|
376
|
+
input: AiPromptInput;
|
|
377
|
+
};
|
|
378
|
+
type RootMutationTypeUseAiSuggestionArgs = {
|
|
379
|
+
entryId: Scalars['ID']['input'];
|
|
380
|
+
};
|
|
381
|
+
type RootQueryType = {
|
|
382
|
+
__typename?: 'RootQueryType';
|
|
383
|
+
/** Get active translations (in progress) */
|
|
384
|
+
activeHubTranslations?: Maybe<Array<Maybe<HubTranslation>>>;
|
|
385
|
+
/** Get a specific AI prompt by ID */
|
|
386
|
+
aiPrompt?: Maybe<AiPrompt>;
|
|
387
|
+
/** Get versions for a specific AI prompt */
|
|
388
|
+
aiPromptVersions?: Maybe<Array<Maybe<AiPromptVersion>>>;
|
|
389
|
+
/** List all AI prompts */
|
|
390
|
+
aiPrompts?: Maybe<Array<Maybe<AiPrompt>>>;
|
|
391
|
+
/** Get reviewers eligible for a specific language */
|
|
392
|
+
eligibleReviewers?: Maybe<Array<Maybe<TranslationReviewer>>>;
|
|
393
|
+
/** Get a specific game */
|
|
394
|
+
hubGame?: Maybe<HubGame>;
|
|
395
|
+
/** List games with translations */
|
|
396
|
+
hubGames?: Maybe<Array<Maybe<HubGame>>>;
|
|
397
|
+
/** List all translations */
|
|
398
|
+
hubTranslations?: Maybe<Array<Maybe<HubTranslation>>>;
|
|
399
|
+
/** Get the currently authenticated translation reviewer */
|
|
400
|
+
me?: Maybe<TranslationReviewer>;
|
|
401
|
+
/** Get completed translations for the reviewer */
|
|
402
|
+
myCompletedTranslations?: Maybe<Array<Maybe<GameTranslationGroup>>>;
|
|
403
|
+
/** Get reviewer's queue (translations grouped by game) */
|
|
404
|
+
myQueue?: Maybe<Array<Maybe<GameTranslationGroup>>>;
|
|
405
|
+
/** Get reviewer's statistics */
|
|
406
|
+
myStats?: Maybe<TranslationReviewerStats>;
|
|
407
|
+
/** Get reviewers pending approval */
|
|
408
|
+
pendingTranslationReviewers?: Maybe<Array<Maybe<TranslationReviewer>>>;
|
|
409
|
+
/** Get recent games */
|
|
410
|
+
recentHubGames?: Maybe<Array<Maybe<HubGame>>>;
|
|
411
|
+
/** Get reviewer's dashboard data */
|
|
412
|
+
reviewerDashboard?: Maybe<ReviewerDashboard>;
|
|
413
|
+
/** Get sibling translations (same game, same reviewer, different language) */
|
|
414
|
+
siblingTranslations?: Maybe<Array<Maybe<HubTranslation>>>;
|
|
415
|
+
/** Get all supported languages */
|
|
416
|
+
supportedLanguages?: Maybe<Array<Maybe<TranslationLanguage>>>;
|
|
417
|
+
/** Get a specific translation for editing */
|
|
418
|
+
translation?: Maybe<HubTranslation>;
|
|
419
|
+
/** Get translation entries with pagination */
|
|
420
|
+
translationEntries?: Maybe<Array<Maybe<TranslationEntry>>>;
|
|
421
|
+
/** Get admin dashboard data */
|
|
422
|
+
translationHubAdminDashboard?: Maybe<TranslationHubAdminDashboard>;
|
|
423
|
+
/** Get admin statistics */
|
|
424
|
+
translationHubAdminStats?: Maybe<TranslationHubAdminStats>;
|
|
425
|
+
/** Get language by code */
|
|
426
|
+
translationLanguage?: Maybe<TranslationLanguage>;
|
|
427
|
+
/** Get a specific reviewer by ID */
|
|
428
|
+
translationReviewer?: Maybe<TranslationReviewer>;
|
|
429
|
+
/** List all translation reviewers */
|
|
430
|
+
translationReviewers?: Maybe<Array<Maybe<TranslationReviewer>>>;
|
|
431
|
+
/** Get unassigned translations */
|
|
432
|
+
unassignedTranslations?: Maybe<Array<Maybe<HubTranslation>>>;
|
|
433
|
+
};
|
|
434
|
+
type RootQueryTypeActiveHubTranslationsArgs = {
|
|
435
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
436
|
+
};
|
|
437
|
+
type RootQueryTypeAiPromptArgs = {
|
|
438
|
+
id: Scalars['ID']['input'];
|
|
439
|
+
};
|
|
440
|
+
type RootQueryTypeAiPromptVersionsArgs = {
|
|
441
|
+
promptId: Scalars['ID']['input'];
|
|
442
|
+
};
|
|
443
|
+
type RootQueryTypeAiPromptsArgs = {
|
|
444
|
+
activeOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
445
|
+
purpose?: InputMaybe<Scalars['String']['input']>;
|
|
446
|
+
};
|
|
447
|
+
type RootQueryTypeEligibleReviewersArgs = {
|
|
448
|
+
languageCode: Scalars['String']['input'];
|
|
449
|
+
};
|
|
450
|
+
type RootQueryTypeHubGameArgs = {
|
|
451
|
+
id: Scalars['ID']['input'];
|
|
452
|
+
};
|
|
453
|
+
type RootQueryTypeHubGamesArgs = {
|
|
454
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
455
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
456
|
+
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
457
|
+
};
|
|
458
|
+
type RootQueryTypeHubTranslationsArgs = {
|
|
459
|
+
filter?: InputMaybe<TranslationFilterInput>;
|
|
460
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
461
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
462
|
+
};
|
|
463
|
+
type RootQueryTypeMyCompletedTranslationsArgs = {
|
|
464
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
465
|
+
};
|
|
466
|
+
type RootQueryTypeMyQueueArgs = {
|
|
467
|
+
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
468
|
+
};
|
|
469
|
+
type RootQueryTypePendingTranslationReviewersArgs = {
|
|
470
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
471
|
+
};
|
|
472
|
+
type RootQueryTypeRecentHubGamesArgs = {
|
|
473
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
474
|
+
};
|
|
475
|
+
type RootQueryTypeSiblingTranslationsArgs = {
|
|
476
|
+
translationId: Scalars['ID']['input'];
|
|
477
|
+
};
|
|
478
|
+
type RootQueryTypeTranslationArgs = {
|
|
479
|
+
id: Scalars['ID']['input'];
|
|
480
|
+
};
|
|
481
|
+
type RootQueryTypeTranslationEntriesArgs = {
|
|
482
|
+
approvedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
483
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
484
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
485
|
+
pendingOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
486
|
+
translationId: Scalars['ID']['input'];
|
|
487
|
+
};
|
|
488
|
+
type RootQueryTypeTranslationLanguageArgs = {
|
|
489
|
+
code: Scalars['String']['input'];
|
|
490
|
+
};
|
|
491
|
+
type RootQueryTypeTranslationReviewerArgs = {
|
|
492
|
+
id: Scalars['ID']['input'];
|
|
493
|
+
};
|
|
494
|
+
type RootQueryTypeTranslationReviewersArgs = {
|
|
495
|
+
filter?: InputMaybe<ReviewerFilterInput>;
|
|
496
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
497
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
498
|
+
};
|
|
499
|
+
type RootQueryTypeUnassignedTranslationsArgs = {
|
|
500
|
+
languageCode?: InputMaybe<Scalars['String']['input']>;
|
|
501
|
+
};
|
|
502
|
+
/** Input for saving AI-generated translation entries with prompt tracking */
|
|
503
|
+
type SaveAiTranslationEntriesInput = {
|
|
504
|
+
entries: Array<TranslationEntryEditInput>;
|
|
505
|
+
promptVersionId: Scalars['ID']['input'];
|
|
506
|
+
translationId: Scalars['ID']['input'];
|
|
507
|
+
};
|
|
508
|
+
/** Result of saving translation entries */
|
|
509
|
+
type SaveEntriesResult = {
|
|
510
|
+
__typename?: 'SaveEntriesResult';
|
|
511
|
+
success: Scalars['Boolean']['output'];
|
|
512
|
+
translation?: Maybe<HubTranslation>;
|
|
513
|
+
updatedCount: Scalars['Int']['output'];
|
|
514
|
+
updatedEntries?: Maybe<Array<Maybe<TranslationEntry>>>;
|
|
515
|
+
};
|
|
516
|
+
/** Input for saving translation entries */
|
|
517
|
+
type SaveTranslationEntriesInput = {
|
|
518
|
+
entries: Array<TranslationEntryEditInput>;
|
|
519
|
+
translationId: Scalars['ID']['input'];
|
|
520
|
+
};
|
|
521
|
+
/** A single translatable string entry */
|
|
522
|
+
type TranslationEntry = {
|
|
523
|
+
__typename?: 'TranslationEntry';
|
|
524
|
+
/** AI-generated suggestion */
|
|
525
|
+
aiSuggestion?: Maybe<Scalars['String']['output']>;
|
|
526
|
+
/** Audio files at different playback speeds */
|
|
527
|
+
audioFiles?: Maybe<Array<Maybe<PhraseAudio>>>;
|
|
528
|
+
/** Context hint for translators */
|
|
529
|
+
context?: Maybe<Scalars['String']['output']>;
|
|
530
|
+
id: Scalars['ID']['output'];
|
|
531
|
+
/** Whether approved */
|
|
532
|
+
isApproved: Scalars['Boolean']['output'];
|
|
533
|
+
/** Whether edited from AI suggestion */
|
|
534
|
+
isEdited: Scalars['Boolean']['output'];
|
|
535
|
+
/** Translation key (e.g., 'menu.start') */
|
|
536
|
+
key: Scalars['String']['output'];
|
|
537
|
+
/** Display order */
|
|
538
|
+
order?: Maybe<Scalars['Int']['output']>;
|
|
539
|
+
/** Reviewer notes */
|
|
540
|
+
reviewerNotes?: Maybe<Scalars['String']['output']>;
|
|
541
|
+
/** Original English text (looked up from source translation) */
|
|
542
|
+
sourceText: Scalars['String']['output'];
|
|
543
|
+
/** Current translated text */
|
|
544
|
+
translatedText?: Maybe<Scalars['String']['output']>;
|
|
545
|
+
translationId: Scalars['ID']['output'];
|
|
546
|
+
};
|
|
547
|
+
/** Single translation entry edit */
|
|
548
|
+
type TranslationEntryEditInput = {
|
|
549
|
+
entryId: Scalars['ID']['input'];
|
|
550
|
+
isApproved?: InputMaybe<Scalars['Boolean']['input']>;
|
|
551
|
+
reviewerNotes?: InputMaybe<Scalars['String']['input']>;
|
|
552
|
+
translatedText: Scalars['String']['input'];
|
|
553
|
+
};
|
|
554
|
+
/** Filter input for translations */
|
|
555
|
+
type TranslationFilterInput = {
|
|
556
|
+
assignedToId?: InputMaybe<Scalars['ID']['input']>;
|
|
557
|
+
gameId?: InputMaybe<Scalars['ID']['input']>;
|
|
558
|
+
status?: InputMaybe<TranslationStatus>;
|
|
559
|
+
targetLanguage?: InputMaybe<Scalars['String']['input']>;
|
|
560
|
+
unassignedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
561
|
+
};
|
|
562
|
+
/** Admin dashboard data */
|
|
563
|
+
type TranslationHubAdminDashboard = {
|
|
564
|
+
__typename?: 'TranslationHubAdminDashboard';
|
|
565
|
+
activeTranslations: Array<HubTranslation>;
|
|
566
|
+
pendingReviewers: Array<TranslationReviewer>;
|
|
567
|
+
recentGames?: Maybe<Array<Maybe<HubGame>>>;
|
|
568
|
+
stats: TranslationHubAdminStats;
|
|
569
|
+
};
|
|
570
|
+
/** Admin dashboard statistics */
|
|
571
|
+
type TranslationHubAdminStats = {
|
|
572
|
+
__typename?: 'TranslationHubAdminStats';
|
|
573
|
+
activeReviewers: Scalars['Int']['output'];
|
|
574
|
+
averageCompletionDays?: Maybe<Scalars['Float']['output']>;
|
|
575
|
+
completedThisMonth: Scalars['Int']['output'];
|
|
576
|
+
languagesCovered: Scalars['Int']['output'];
|
|
577
|
+
pendingReviewers: Scalars['Int']['output'];
|
|
578
|
+
pendingTranslations: Scalars['Int']['output'];
|
|
579
|
+
totalGames: Scalars['Int']['output'];
|
|
580
|
+
totalPendingStrings?: Maybe<Scalars['Int']['output']>;
|
|
581
|
+
};
|
|
582
|
+
/** Authentication payload */
|
|
583
|
+
type TranslationHubAuthPayload = {
|
|
584
|
+
__typename?: 'TranslationHubAuthPayload';
|
|
585
|
+
reviewer: TranslationReviewer;
|
|
586
|
+
token: Scalars['String']['output'];
|
|
587
|
+
};
|
|
588
|
+
/** A supported language for translation */
|
|
589
|
+
type TranslationLanguage = {
|
|
590
|
+
__typename?: 'TranslationLanguage';
|
|
591
|
+
/** ISO language code (e.g., 'es', 'fr', 'zh') */
|
|
592
|
+
code: Scalars['String']['output'];
|
|
593
|
+
/** Flag emoji for display */
|
|
594
|
+
flag?: Maybe<Scalars['String']['output']>;
|
|
595
|
+
/** English name (e.g., 'Spanish') */
|
|
596
|
+
name: Scalars['String']['output'];
|
|
597
|
+
/** Native name (e.g., 'Español') */
|
|
598
|
+
nativeName?: Maybe<Scalars['String']['output']>;
|
|
599
|
+
};
|
|
600
|
+
/** A translation reviewer who reviews AI-generated translations */
|
|
601
|
+
type TranslationReviewer = {
|
|
602
|
+
__typename?: 'TranslationReviewer';
|
|
603
|
+
/** When the reviewer applied */
|
|
604
|
+
appliedAt: Scalars['DateTime']['output'];
|
|
605
|
+
/** When the reviewer was approved */
|
|
606
|
+
approvedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
607
|
+
/** ID of admin who approved */
|
|
608
|
+
approvedById?: Maybe<Scalars['ID']['output']>;
|
|
609
|
+
/** Full language details for approved languages */
|
|
610
|
+
approvedLanguageDetails?: Maybe<Array<Maybe<TranslationLanguage>>>;
|
|
611
|
+
/** Language codes that have been approved */
|
|
612
|
+
approvedLanguages: Array<Scalars['String']['output']>;
|
|
613
|
+
avatar?: Maybe<Scalars['String']['output']>;
|
|
614
|
+
/** Average rating (0-5) */
|
|
615
|
+
averageRating: Scalars['Float']['output'];
|
|
616
|
+
/** Biography/experience description */
|
|
617
|
+
bio?: Maybe<Scalars['String']['output']>;
|
|
618
|
+
/** Total completed translations */
|
|
619
|
+
completedTranslations: Scalars['Int']['output'];
|
|
620
|
+
createdAt: Scalars['DateTime']['output'];
|
|
621
|
+
email: Scalars['String']['output'];
|
|
622
|
+
id: Scalars['ID']['output'];
|
|
623
|
+
/** Full language details for requested languages */
|
|
624
|
+
languageDetails?: Maybe<Array<Maybe<TranslationLanguage>>>;
|
|
625
|
+
/** Language codes the reviewer applied to translate */
|
|
626
|
+
languages: Array<Scalars['String']['output']>;
|
|
627
|
+
name: Scalars['String']['output'];
|
|
628
|
+
/** Current approval status */
|
|
629
|
+
status: TranslationReviewerStatus;
|
|
630
|
+
/** Translations assigned to this reviewer */
|
|
631
|
+
translations?: Maybe<Array<Maybe<HubTranslation>>>;
|
|
632
|
+
/** Translations grouped by game for dashboard */
|
|
633
|
+
translationsByGame?: Maybe<Array<Maybe<GameTranslationGroup>>>;
|
|
634
|
+
};
|
|
635
|
+
/** A translation reviewer who reviews AI-generated translations */
|
|
636
|
+
type TranslationReviewerTranslationsArgs = {
|
|
637
|
+
activeOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
638
|
+
status?: InputMaybe<TranslationStatus>;
|
|
639
|
+
};
|
|
640
|
+
/** A translation reviewer who reviews AI-generated translations */
|
|
641
|
+
type TranslationReviewerTranslationsByGameArgs = {
|
|
642
|
+
activeOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
643
|
+
};
|
|
644
|
+
/** Reviewer statistics */
|
|
645
|
+
type TranslationReviewerStats = {
|
|
646
|
+
__typename?: 'TranslationReviewerStats';
|
|
647
|
+
activeGames: Scalars['Int']['output'];
|
|
648
|
+
activeLanguages: Scalars['Int']['output'];
|
|
649
|
+
assignedTranslations: Scalars['Int']['output'];
|
|
650
|
+
averageCompletionTime?: Maybe<Scalars['String']['output']>;
|
|
651
|
+
completedTranslations: Scalars['Int']['output'];
|
|
652
|
+
pendingReview: Scalars['Int']['output'];
|
|
653
|
+
};
|
|
654
|
+
/** Status of a translation reviewer */
|
|
655
|
+
declare enum TranslationReviewerStatus {
|
|
656
|
+
/** Approved to review translations */
|
|
657
|
+
Approved = "APPROVED",
|
|
658
|
+
/** Application pending review */
|
|
659
|
+
Pending = "PENDING",
|
|
660
|
+
/** Application rejected */
|
|
661
|
+
Rejected = "REJECTED",
|
|
662
|
+
/** Account suspended */
|
|
663
|
+
Suspended = "SUSPENDED"
|
|
664
|
+
}
|
|
665
|
+
/** Status of a translation */
|
|
666
|
+
declare enum TranslationStatus {
|
|
667
|
+
/** Review complete */
|
|
668
|
+
Completed = "COMPLETED",
|
|
669
|
+
/** Being reviewed */
|
|
670
|
+
InProgress = "IN_PROGRESS",
|
|
671
|
+
/** Requires additional review */
|
|
672
|
+
NeedsRevision = "NEEDS_REVISION",
|
|
673
|
+
/** Awaiting assignment */
|
|
674
|
+
Pending = "PENDING"
|
|
675
|
+
}
|
|
676
|
+
type TranslationHubLoginMutationVariables = Exact<{
|
|
677
|
+
email: Scalars['String']['input'];
|
|
678
|
+
password: Scalars['String']['input'];
|
|
679
|
+
}>;
|
|
680
|
+
type TranslationHubLoginMutation = {
|
|
681
|
+
__typename?: 'RootMutationType';
|
|
682
|
+
translationHubLogin?: {
|
|
683
|
+
__typename?: 'TranslationHubAuthPayload';
|
|
684
|
+
token: string;
|
|
685
|
+
reviewer: {
|
|
686
|
+
__typename?: 'TranslationReviewer';
|
|
687
|
+
id: string;
|
|
688
|
+
email: string;
|
|
689
|
+
name: string;
|
|
690
|
+
status: TranslationReviewerStatus;
|
|
691
|
+
approvedLanguages: Array<string>;
|
|
692
|
+
};
|
|
693
|
+
} | null;
|
|
694
|
+
};
|
|
695
|
+
type TranslationHubSignupMutationVariables = Exact<{
|
|
696
|
+
input: CreateTranslationReviewerInput;
|
|
697
|
+
}>;
|
|
698
|
+
type TranslationHubSignupMutation = {
|
|
699
|
+
__typename?: 'RootMutationType';
|
|
700
|
+
translationHubSignup?: {
|
|
701
|
+
__typename?: 'TranslationHubAuthPayload';
|
|
702
|
+
token: string;
|
|
703
|
+
reviewer: {
|
|
704
|
+
__typename?: 'TranslationReviewer';
|
|
705
|
+
id: string;
|
|
706
|
+
email: string;
|
|
707
|
+
name: string;
|
|
708
|
+
status: TranslationReviewerStatus;
|
|
709
|
+
languages: Array<string>;
|
|
710
|
+
};
|
|
711
|
+
} | null;
|
|
712
|
+
};
|
|
713
|
+
type TranslationHubLogoutMutationVariables = Exact<{
|
|
714
|
+
[key: string]: never;
|
|
715
|
+
}>;
|
|
716
|
+
type TranslationHubLogoutMutation = {
|
|
717
|
+
__typename?: 'RootMutationType';
|
|
718
|
+
translationHubLogout?: boolean | null;
|
|
719
|
+
};
|
|
720
|
+
type SaveTranslationEntriesMutationVariables = Exact<{
|
|
721
|
+
input: SaveTranslationEntriesInput;
|
|
722
|
+
}>;
|
|
723
|
+
type SaveTranslationEntriesMutation = {
|
|
724
|
+
__typename?: 'RootMutationType';
|
|
725
|
+
saveTranslationEntries?: {
|
|
726
|
+
__typename?: 'SaveEntriesResult';
|
|
727
|
+
success: boolean;
|
|
728
|
+
updatedCount: number;
|
|
729
|
+
translation?: {
|
|
730
|
+
__typename?: 'HubTranslation';
|
|
731
|
+
id: string;
|
|
732
|
+
status: TranslationStatus;
|
|
733
|
+
progress: number;
|
|
734
|
+
completedKeys: number;
|
|
735
|
+
} | null;
|
|
736
|
+
updatedEntries?: Array<{
|
|
737
|
+
__typename?: 'TranslationEntry';
|
|
738
|
+
id: string;
|
|
739
|
+
translatedText?: string | null;
|
|
740
|
+
isApproved: boolean;
|
|
741
|
+
isEdited: boolean;
|
|
742
|
+
reviewerNotes?: string | null;
|
|
743
|
+
} | null> | null;
|
|
744
|
+
} | null;
|
|
745
|
+
};
|
|
746
|
+
type CompleteHubTranslationMutationVariables = Exact<{
|
|
747
|
+
translationId: Scalars['ID']['input'];
|
|
748
|
+
}>;
|
|
749
|
+
type CompleteHubTranslationMutation = {
|
|
750
|
+
__typename?: 'RootMutationType';
|
|
751
|
+
completeHubTranslation?: {
|
|
752
|
+
__typename?: 'HubTranslation';
|
|
753
|
+
id: string;
|
|
754
|
+
status: TranslationStatus;
|
|
755
|
+
progress: number;
|
|
756
|
+
completedAt?: any | null;
|
|
757
|
+
} | null;
|
|
758
|
+
};
|
|
759
|
+
type UseAiSuggestionMutationVariables = Exact<{
|
|
760
|
+
entryId: Scalars['ID']['input'];
|
|
761
|
+
}>;
|
|
762
|
+
type UseAiSuggestionMutation = {
|
|
763
|
+
__typename?: 'RootMutationType';
|
|
764
|
+
useAiSuggestion?: {
|
|
765
|
+
__typename?: 'TranslationEntry';
|
|
766
|
+
id: string;
|
|
767
|
+
translatedText?: string | null;
|
|
768
|
+
isApproved: boolean;
|
|
769
|
+
isEdited: boolean;
|
|
770
|
+
} | null;
|
|
771
|
+
};
|
|
772
|
+
type ReviewTranslationReviewerMutationVariables = Exact<{
|
|
773
|
+
input: ReviewReviewerInput;
|
|
774
|
+
}>;
|
|
775
|
+
type ReviewTranslationReviewerMutation = {
|
|
776
|
+
__typename?: 'RootMutationType';
|
|
777
|
+
reviewTranslationReviewer?: {
|
|
778
|
+
__typename?: 'TranslationReviewer';
|
|
779
|
+
id: string;
|
|
780
|
+
status: TranslationReviewerStatus;
|
|
781
|
+
approvedLanguages: Array<string>;
|
|
782
|
+
approvedAt?: any | null;
|
|
783
|
+
approvedById?: string | null;
|
|
784
|
+
} | null;
|
|
785
|
+
};
|
|
786
|
+
type SuspendTranslationReviewerMutationVariables = Exact<{
|
|
787
|
+
reviewerId: Scalars['ID']['input'];
|
|
788
|
+
reason?: InputMaybe<Scalars['String']['input']>;
|
|
789
|
+
}>;
|
|
790
|
+
type SuspendTranslationReviewerMutation = {
|
|
791
|
+
__typename?: 'RootMutationType';
|
|
792
|
+
suspendTranslationReviewer?: {
|
|
793
|
+
__typename?: 'TranslationReviewer';
|
|
794
|
+
id: string;
|
|
795
|
+
status: TranslationReviewerStatus;
|
|
796
|
+
} | null;
|
|
797
|
+
};
|
|
798
|
+
type ReactivateTranslationReviewerMutationVariables = Exact<{
|
|
799
|
+
reviewerId: Scalars['ID']['input'];
|
|
800
|
+
}>;
|
|
801
|
+
type ReactivateTranslationReviewerMutation = {
|
|
802
|
+
__typename?: 'RootMutationType';
|
|
803
|
+
reactivateTranslationReviewer?: {
|
|
804
|
+
__typename?: 'TranslationReviewer';
|
|
805
|
+
id: string;
|
|
806
|
+
status: TranslationReviewerStatus;
|
|
807
|
+
} | null;
|
|
808
|
+
};
|
|
809
|
+
type ApproveReviewerLanguagesMutationVariables = Exact<{
|
|
810
|
+
reviewerId: Scalars['ID']['input'];
|
|
811
|
+
languages: Array<Scalars['String']['input']> | Scalars['String']['input'];
|
|
812
|
+
}>;
|
|
813
|
+
type ApproveReviewerLanguagesMutation = {
|
|
814
|
+
__typename?: 'RootMutationType';
|
|
815
|
+
approveReviewerLanguages?: {
|
|
816
|
+
__typename?: 'TranslationReviewer';
|
|
817
|
+
id: string;
|
|
818
|
+
approvedLanguages: Array<string>;
|
|
819
|
+
approvedLanguageDetails?: Array<{
|
|
820
|
+
__typename?: 'TranslationLanguage';
|
|
821
|
+
code: string;
|
|
822
|
+
name: string;
|
|
823
|
+
flag?: string | null;
|
|
824
|
+
} | null> | null;
|
|
825
|
+
} | null;
|
|
826
|
+
};
|
|
827
|
+
type AssignHubTranslationMutationVariables = Exact<{
|
|
828
|
+
input: AssignTranslationInput;
|
|
829
|
+
}>;
|
|
830
|
+
type AssignHubTranslationMutation = {
|
|
831
|
+
__typename?: 'RootMutationType';
|
|
832
|
+
assignHubTranslation?: {
|
|
833
|
+
__typename?: 'HubTranslation';
|
|
834
|
+
id: string;
|
|
835
|
+
status: TranslationStatus;
|
|
836
|
+
assignedToId?: string | null;
|
|
837
|
+
assignedAt?: any | null;
|
|
838
|
+
assignedReviewer?: {
|
|
839
|
+
__typename?: 'TranslationReviewer';
|
|
840
|
+
id: string;
|
|
841
|
+
name: string;
|
|
842
|
+
} | null;
|
|
843
|
+
} | null;
|
|
844
|
+
};
|
|
845
|
+
type ReassignHubTranslationMutationVariables = Exact<{
|
|
846
|
+
translationId: Scalars['ID']['input'];
|
|
847
|
+
newReviewerId: Scalars['ID']['input'];
|
|
848
|
+
}>;
|
|
849
|
+
type ReassignHubTranslationMutation = {
|
|
850
|
+
__typename?: 'RootMutationType';
|
|
851
|
+
reassignHubTranslation?: {
|
|
852
|
+
__typename?: 'HubTranslation';
|
|
853
|
+
id: string;
|
|
854
|
+
assignedToId?: string | null;
|
|
855
|
+
assignedAt?: any | null;
|
|
856
|
+
assignedReviewer?: {
|
|
857
|
+
__typename?: 'TranslationReviewer';
|
|
858
|
+
id: string;
|
|
859
|
+
name: string;
|
|
860
|
+
} | null;
|
|
861
|
+
} | null;
|
|
862
|
+
};
|
|
863
|
+
type UnassignHubTranslationMutationVariables = Exact<{
|
|
864
|
+
translationId: Scalars['ID']['input'];
|
|
865
|
+
}>;
|
|
866
|
+
type UnassignHubTranslationMutation = {
|
|
867
|
+
__typename?: 'RootMutationType';
|
|
868
|
+
unassignHubTranslation?: {
|
|
869
|
+
__typename?: 'HubTranslation';
|
|
870
|
+
id: string;
|
|
871
|
+
status: TranslationStatus;
|
|
872
|
+
assignedToId?: string | null;
|
|
873
|
+
assignedAt?: any | null;
|
|
874
|
+
} | null;
|
|
875
|
+
};
|
|
876
|
+
type RequestTranslationRevisionMutationVariables = Exact<{
|
|
877
|
+
translationId: Scalars['ID']['input'];
|
|
878
|
+
reason: Scalars['String']['input'];
|
|
879
|
+
}>;
|
|
880
|
+
type RequestTranslationRevisionMutation = {
|
|
881
|
+
__typename?: 'RootMutationType';
|
|
882
|
+
requestTranslationRevision?: {
|
|
883
|
+
__typename?: 'HubTranslation';
|
|
884
|
+
id: string;
|
|
885
|
+
status: TranslationStatus;
|
|
886
|
+
} | null;
|
|
887
|
+
};
|
|
888
|
+
type GenerateAiTranslationsMutationVariables = Exact<{
|
|
889
|
+
gameVersionId: Scalars['ID']['input'];
|
|
890
|
+
targetLanguages: Array<Scalars['String']['input']> | Scalars['String']['input'];
|
|
891
|
+
}>;
|
|
892
|
+
type GenerateAiTranslationsMutation = {
|
|
893
|
+
__typename?: 'RootMutationType';
|
|
894
|
+
generateAiTranslations?: Array<{
|
|
895
|
+
__typename?: 'HubTranslation';
|
|
896
|
+
id: string;
|
|
897
|
+
targetLanguage: string;
|
|
898
|
+
status: TranslationStatus;
|
|
899
|
+
aiGenerated: boolean;
|
|
900
|
+
totalKeys: number;
|
|
901
|
+
} | null> | null;
|
|
902
|
+
};
|
|
903
|
+
type UpsertAiPromptMutationVariables = Exact<{
|
|
904
|
+
input: AiPromptInput;
|
|
905
|
+
}>;
|
|
906
|
+
type UpsertAiPromptMutation = {
|
|
907
|
+
__typename?: 'RootMutationType';
|
|
908
|
+
upsertAiPrompt?: {
|
|
909
|
+
__typename?: 'AiPrompt';
|
|
910
|
+
id: string;
|
|
911
|
+
name: string;
|
|
912
|
+
description?: string | null;
|
|
913
|
+
purpose: string;
|
|
914
|
+
template: string;
|
|
915
|
+
variables?: Array<string | null> | null;
|
|
916
|
+
model: string;
|
|
917
|
+
temperature: number;
|
|
918
|
+
maxTokens: number;
|
|
919
|
+
isActive: boolean;
|
|
920
|
+
insertedAt?: any | null;
|
|
921
|
+
updatedAt?: any | null;
|
|
922
|
+
} | null;
|
|
923
|
+
};
|
|
924
|
+
type CreateAiPromptVersionMutationVariables = Exact<{
|
|
925
|
+
input: AiPromptVersionInput;
|
|
926
|
+
}>;
|
|
927
|
+
type CreateAiPromptVersionMutation = {
|
|
928
|
+
__typename?: 'RootMutationType';
|
|
929
|
+
createAiPromptVersion?: {
|
|
930
|
+
__typename?: 'AiPromptVersion';
|
|
931
|
+
id: string;
|
|
932
|
+
promptId: string;
|
|
933
|
+
version: number;
|
|
934
|
+
template: string;
|
|
935
|
+
variables?: Array<string | null> | null;
|
|
936
|
+
model: string;
|
|
937
|
+
temperature: number;
|
|
938
|
+
maxTokens: number;
|
|
939
|
+
changeNote?: string | null;
|
|
940
|
+
insertedAt?: any | null;
|
|
941
|
+
} | null;
|
|
942
|
+
};
|
|
943
|
+
type SaveAiTranslationEntriesMutationVariables = Exact<{
|
|
944
|
+
input: SaveAiTranslationEntriesInput;
|
|
945
|
+
}>;
|
|
946
|
+
type SaveAiTranslationEntriesMutation = {
|
|
947
|
+
__typename?: 'RootMutationType';
|
|
948
|
+
saveAiTranslationEntries?: {
|
|
949
|
+
__typename?: 'SaveEntriesResult';
|
|
950
|
+
success: boolean;
|
|
951
|
+
updatedCount: number;
|
|
952
|
+
translation?: {
|
|
953
|
+
__typename?: 'HubTranslation';
|
|
954
|
+
id: string;
|
|
955
|
+
status: TranslationStatus;
|
|
956
|
+
progress: number;
|
|
957
|
+
completedKeys: number;
|
|
958
|
+
aiGenerated: boolean;
|
|
959
|
+
} | null;
|
|
960
|
+
updatedEntries?: Array<{
|
|
961
|
+
__typename?: 'TranslationEntry';
|
|
962
|
+
id: string;
|
|
963
|
+
translatedText?: string | null;
|
|
964
|
+
aiSuggestion?: string | null;
|
|
965
|
+
isApproved: boolean;
|
|
966
|
+
isEdited: boolean;
|
|
967
|
+
} | null> | null;
|
|
968
|
+
} | null;
|
|
969
|
+
};
|
|
970
|
+
type GetMeQueryVariables = Exact<{
|
|
971
|
+
[key: string]: never;
|
|
972
|
+
}>;
|
|
973
|
+
type GetMeQuery = {
|
|
974
|
+
__typename?: 'RootQueryType';
|
|
975
|
+
me?: {
|
|
976
|
+
__typename?: 'TranslationReviewer';
|
|
977
|
+
id: string;
|
|
978
|
+
email: string;
|
|
979
|
+
name: string;
|
|
980
|
+
avatar?: string | null;
|
|
981
|
+
status: TranslationReviewerStatus;
|
|
982
|
+
languages: Array<string>;
|
|
983
|
+
approvedLanguages: Array<string>;
|
|
984
|
+
bio?: string | null;
|
|
985
|
+
completedTranslations: number;
|
|
986
|
+
averageRating: number;
|
|
987
|
+
appliedAt: any;
|
|
988
|
+
approvedAt?: any | null;
|
|
989
|
+
} | null;
|
|
990
|
+
};
|
|
991
|
+
type GetReviewerDashboardQueryVariables = Exact<{
|
|
992
|
+
[key: string]: never;
|
|
993
|
+
}>;
|
|
994
|
+
type GetReviewerDashboardQuery = {
|
|
995
|
+
__typename?: 'RootQueryType';
|
|
996
|
+
reviewerDashboard?: {
|
|
997
|
+
__typename?: 'ReviewerDashboard';
|
|
998
|
+
reviewer: {
|
|
999
|
+
__typename?: 'TranslationReviewer';
|
|
1000
|
+
id: string;
|
|
1001
|
+
name: string;
|
|
1002
|
+
email: string;
|
|
1003
|
+
avatar?: string | null;
|
|
1004
|
+
status: TranslationReviewerStatus;
|
|
1005
|
+
approvedLanguages: Array<string>;
|
|
1006
|
+
};
|
|
1007
|
+
activeGameGroups: Array<{
|
|
1008
|
+
__typename?: 'GameTranslationGroup';
|
|
1009
|
+
gameId: string;
|
|
1010
|
+
totalProgress: number;
|
|
1011
|
+
totalKeys: number;
|
|
1012
|
+
completedKeys: number;
|
|
1013
|
+
game: {
|
|
1014
|
+
__typename?: 'HubGame';
|
|
1015
|
+
id: string;
|
|
1016
|
+
title: string;
|
|
1017
|
+
thumbnailUrl?: string | null;
|
|
1018
|
+
};
|
|
1019
|
+
gameVersion: {
|
|
1020
|
+
__typename?: 'HubGameVersion';
|
|
1021
|
+
id: string;
|
|
1022
|
+
version?: string | null;
|
|
1023
|
+
};
|
|
1024
|
+
translations: Array<{
|
|
1025
|
+
__typename?: 'HubTranslation';
|
|
1026
|
+
id: string;
|
|
1027
|
+
targetLanguage: string;
|
|
1028
|
+
status: TranslationStatus;
|
|
1029
|
+
progress: number;
|
|
1030
|
+
totalKeys: number;
|
|
1031
|
+
completedKeys: number;
|
|
1032
|
+
}>;
|
|
1033
|
+
}>;
|
|
1034
|
+
recentlyCompleted?: Array<{
|
|
1035
|
+
__typename?: 'GameTranslationGroup';
|
|
1036
|
+
gameId: string;
|
|
1037
|
+
game: {
|
|
1038
|
+
__typename?: 'HubGame';
|
|
1039
|
+
id: string;
|
|
1040
|
+
title: string;
|
|
1041
|
+
};
|
|
1042
|
+
translations: Array<{
|
|
1043
|
+
__typename?: 'HubTranslation';
|
|
1044
|
+
id: string;
|
|
1045
|
+
targetLanguage: string;
|
|
1046
|
+
completedAt?: any | null;
|
|
1047
|
+
}>;
|
|
1048
|
+
} | null> | null;
|
|
1049
|
+
stats: {
|
|
1050
|
+
__typename?: 'TranslationReviewerStats';
|
|
1051
|
+
assignedTranslations: number;
|
|
1052
|
+
completedTranslations: number;
|
|
1053
|
+
pendingReview: number;
|
|
1054
|
+
averageCompletionTime?: string | null;
|
|
1055
|
+
activeGames: number;
|
|
1056
|
+
activeLanguages: number;
|
|
1057
|
+
};
|
|
1058
|
+
} | null;
|
|
1059
|
+
};
|
|
1060
|
+
type GetMyQueueQueryVariables = Exact<{
|
|
1061
|
+
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
1062
|
+
}>;
|
|
1063
|
+
type GetMyQueueQuery = {
|
|
1064
|
+
__typename?: 'RootQueryType';
|
|
1065
|
+
myQueue?: Array<{
|
|
1066
|
+
__typename?: 'GameTranslationGroup';
|
|
1067
|
+
gameId: string;
|
|
1068
|
+
totalProgress: number;
|
|
1069
|
+
totalKeys: number;
|
|
1070
|
+
completedKeys: number;
|
|
1071
|
+
earliestAssignmentDate?: any | null;
|
|
1072
|
+
game: {
|
|
1073
|
+
__typename?: 'HubGame';
|
|
1074
|
+
id: string;
|
|
1075
|
+
title: string;
|
|
1076
|
+
thumbnailUrl?: string | null;
|
|
1077
|
+
subject?: string | null;
|
|
1078
|
+
gradeLevel?: string | null;
|
|
1079
|
+
};
|
|
1080
|
+
gameVersion: {
|
|
1081
|
+
__typename?: 'HubGameVersion';
|
|
1082
|
+
id: string;
|
|
1083
|
+
version?: string | null;
|
|
1084
|
+
};
|
|
1085
|
+
translations: Array<{
|
|
1086
|
+
__typename?: 'HubTranslation';
|
|
1087
|
+
id: string;
|
|
1088
|
+
targetLanguage: string;
|
|
1089
|
+
status: TranslationStatus;
|
|
1090
|
+
progress: number;
|
|
1091
|
+
totalKeys: number;
|
|
1092
|
+
completedKeys: number;
|
|
1093
|
+
assignedAt?: any | null;
|
|
1094
|
+
targetLanguageDetails?: {
|
|
1095
|
+
__typename?: 'TranslationLanguage';
|
|
1096
|
+
code: string;
|
|
1097
|
+
name: string;
|
|
1098
|
+
nativeName?: string | null;
|
|
1099
|
+
flag?: string | null;
|
|
1100
|
+
} | null;
|
|
1101
|
+
}>;
|
|
1102
|
+
} | null> | null;
|
|
1103
|
+
};
|
|
1104
|
+
type GetMyStatsQueryVariables = Exact<{
|
|
1105
|
+
[key: string]: never;
|
|
1106
|
+
}>;
|
|
1107
|
+
type GetMyStatsQuery = {
|
|
1108
|
+
__typename?: 'RootQueryType';
|
|
1109
|
+
myStats?: {
|
|
1110
|
+
__typename?: 'TranslationReviewerStats';
|
|
1111
|
+
assignedTranslations: number;
|
|
1112
|
+
completedTranslations: number;
|
|
1113
|
+
pendingReview: number;
|
|
1114
|
+
averageCompletionTime?: string | null;
|
|
1115
|
+
activeGames: number;
|
|
1116
|
+
activeLanguages: number;
|
|
1117
|
+
} | null;
|
|
1118
|
+
};
|
|
1119
|
+
type GetTranslationQueryVariables = Exact<{
|
|
1120
|
+
id: Scalars['ID']['input'];
|
|
1121
|
+
}>;
|
|
1122
|
+
type GetTranslationQuery = {
|
|
1123
|
+
__typename?: 'RootQueryType';
|
|
1124
|
+
translation?: {
|
|
1125
|
+
__typename?: 'HubTranslation';
|
|
1126
|
+
id: string;
|
|
1127
|
+
gameVersionId: string;
|
|
1128
|
+
targetLanguage: string;
|
|
1129
|
+
status: TranslationStatus;
|
|
1130
|
+
progress: number;
|
|
1131
|
+
totalKeys: number;
|
|
1132
|
+
completedKeys: number;
|
|
1133
|
+
assignedToId?: string | null;
|
|
1134
|
+
assignedAt?: any | null;
|
|
1135
|
+
completedAt?: any | null;
|
|
1136
|
+
aiGenerated: boolean;
|
|
1137
|
+
totalEntries: number;
|
|
1138
|
+
game?: {
|
|
1139
|
+
__typename?: 'HubGame';
|
|
1140
|
+
id: string;
|
|
1141
|
+
title: string;
|
|
1142
|
+
thumbnailUrl?: string | null;
|
|
1143
|
+
playUrl?: string | null;
|
|
1144
|
+
} | null;
|
|
1145
|
+
gameVersion?: {
|
|
1146
|
+
__typename?: 'HubGameVersion';
|
|
1147
|
+
id: string;
|
|
1148
|
+
version?: string | null;
|
|
1149
|
+
translationKeys?: number | null;
|
|
1150
|
+
} | null;
|
|
1151
|
+
targetLanguageDetails?: {
|
|
1152
|
+
__typename?: 'TranslationLanguage';
|
|
1153
|
+
code: string;
|
|
1154
|
+
name: string;
|
|
1155
|
+
nativeName?: string | null;
|
|
1156
|
+
flag?: string | null;
|
|
1157
|
+
} | null;
|
|
1158
|
+
siblingTranslations?: Array<{
|
|
1159
|
+
__typename?: 'HubTranslation';
|
|
1160
|
+
id: string;
|
|
1161
|
+
targetLanguage: string;
|
|
1162
|
+
status: TranslationStatus;
|
|
1163
|
+
progress: number;
|
|
1164
|
+
targetLanguageDetails?: {
|
|
1165
|
+
__typename?: 'TranslationLanguage';
|
|
1166
|
+
code: string;
|
|
1167
|
+
name: string;
|
|
1168
|
+
flag?: string | null;
|
|
1169
|
+
} | null;
|
|
1170
|
+
} | null> | null;
|
|
1171
|
+
} | null;
|
|
1172
|
+
};
|
|
1173
|
+
type GetTranslationEntriesQueryVariables = Exact<{
|
|
1174
|
+
translationId: Scalars['ID']['input'];
|
|
1175
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1176
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
1177
|
+
pendingOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1178
|
+
approvedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1179
|
+
}>;
|
|
1180
|
+
type GetTranslationEntriesQuery = {
|
|
1181
|
+
__typename?: 'RootQueryType';
|
|
1182
|
+
translationEntries?: Array<{
|
|
1183
|
+
__typename?: 'TranslationEntry';
|
|
1184
|
+
id: string;
|
|
1185
|
+
translationId: string;
|
|
1186
|
+
key: string;
|
|
1187
|
+
sourceText: string;
|
|
1188
|
+
translatedText?: string | null;
|
|
1189
|
+
aiSuggestion?: string | null;
|
|
1190
|
+
isApproved: boolean;
|
|
1191
|
+
isEdited: boolean;
|
|
1192
|
+
context?: string | null;
|
|
1193
|
+
reviewerNotes?: string | null;
|
|
1194
|
+
order?: number | null;
|
|
1195
|
+
audioFiles?: Array<{
|
|
1196
|
+
__typename?: 'PhraseAudio';
|
|
1197
|
+
id: string;
|
|
1198
|
+
speed: number;
|
|
1199
|
+
url: string;
|
|
1200
|
+
} | null> | null;
|
|
1201
|
+
} | null> | null;
|
|
1202
|
+
};
|
|
1203
|
+
type GetSiblingTranslationsQueryVariables = Exact<{
|
|
1204
|
+
translationId: Scalars['ID']['input'];
|
|
1205
|
+
}>;
|
|
1206
|
+
type GetSiblingTranslationsQuery = {
|
|
1207
|
+
__typename?: 'RootQueryType';
|
|
1208
|
+
siblingTranslations?: Array<{
|
|
1209
|
+
__typename?: 'HubTranslation';
|
|
1210
|
+
id: string;
|
|
1211
|
+
targetLanguage: string;
|
|
1212
|
+
status: TranslationStatus;
|
|
1213
|
+
progress: number;
|
|
1214
|
+
totalKeys: number;
|
|
1215
|
+
completedKeys: number;
|
|
1216
|
+
targetLanguageDetails?: {
|
|
1217
|
+
__typename?: 'TranslationLanguage';
|
|
1218
|
+
code: string;
|
|
1219
|
+
name: string;
|
|
1220
|
+
nativeName?: string | null;
|
|
1221
|
+
flag?: string | null;
|
|
1222
|
+
} | null;
|
|
1223
|
+
} | null> | null;
|
|
1224
|
+
};
|
|
1225
|
+
type GetMyCompletedTranslationsQueryVariables = Exact<{
|
|
1226
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1227
|
+
}>;
|
|
1228
|
+
type GetMyCompletedTranslationsQuery = {
|
|
1229
|
+
__typename?: 'RootQueryType';
|
|
1230
|
+
myCompletedTranslations?: Array<{
|
|
1231
|
+
__typename?: 'GameTranslationGroup';
|
|
1232
|
+
gameId: string;
|
|
1233
|
+
game: {
|
|
1234
|
+
__typename?: 'HubGame';
|
|
1235
|
+
id: string;
|
|
1236
|
+
title: string;
|
|
1237
|
+
thumbnailUrl?: string | null;
|
|
1238
|
+
};
|
|
1239
|
+
gameVersion: {
|
|
1240
|
+
__typename?: 'HubGameVersion';
|
|
1241
|
+
id: string;
|
|
1242
|
+
version?: string | null;
|
|
1243
|
+
};
|
|
1244
|
+
translations: Array<{
|
|
1245
|
+
__typename?: 'HubTranslation';
|
|
1246
|
+
id: string;
|
|
1247
|
+
targetLanguage: string;
|
|
1248
|
+
completedAt?: any | null;
|
|
1249
|
+
}>;
|
|
1250
|
+
} | null> | null;
|
|
1251
|
+
};
|
|
1252
|
+
type GetTranslationHubAdminDashboardQueryVariables = Exact<{
|
|
1253
|
+
[key: string]: never;
|
|
1254
|
+
}>;
|
|
1255
|
+
type GetTranslationHubAdminDashboardQuery = {
|
|
1256
|
+
__typename?: 'RootQueryType';
|
|
1257
|
+
translationHubAdminDashboard?: {
|
|
1258
|
+
__typename?: 'TranslationHubAdminDashboard';
|
|
1259
|
+
stats: {
|
|
1260
|
+
__typename?: 'TranslationHubAdminStats';
|
|
1261
|
+
pendingReviewers: number;
|
|
1262
|
+
activeReviewers: number;
|
|
1263
|
+
pendingTranslations: number;
|
|
1264
|
+
completedThisMonth: number;
|
|
1265
|
+
totalGames: number;
|
|
1266
|
+
languagesCovered: number;
|
|
1267
|
+
totalPendingStrings?: number | null;
|
|
1268
|
+
averageCompletionDays?: number | null;
|
|
1269
|
+
};
|
|
1270
|
+
pendingReviewers: Array<{
|
|
1271
|
+
__typename?: 'TranslationReviewer';
|
|
1272
|
+
id: string;
|
|
1273
|
+
name: string;
|
|
1274
|
+
email: string;
|
|
1275
|
+
languages: Array<string>;
|
|
1276
|
+
bio?: string | null;
|
|
1277
|
+
appliedAt: any;
|
|
1278
|
+
}>;
|
|
1279
|
+
activeTranslations: Array<{
|
|
1280
|
+
__typename?: 'HubTranslation';
|
|
1281
|
+
id: string;
|
|
1282
|
+
targetLanguage: string;
|
|
1283
|
+
status: TranslationStatus;
|
|
1284
|
+
progress: number;
|
|
1285
|
+
game?: {
|
|
1286
|
+
__typename?: 'HubGame';
|
|
1287
|
+
id: string;
|
|
1288
|
+
title: string;
|
|
1289
|
+
} | null;
|
|
1290
|
+
assignedReviewer?: {
|
|
1291
|
+
__typename?: 'TranslationReviewer';
|
|
1292
|
+
id: string;
|
|
1293
|
+
name: string;
|
|
1294
|
+
} | null;
|
|
1295
|
+
}>;
|
|
1296
|
+
recentGames?: Array<{
|
|
1297
|
+
__typename?: 'HubGame';
|
|
1298
|
+
id: string;
|
|
1299
|
+
title: string;
|
|
1300
|
+
thumbnailUrl?: string | null;
|
|
1301
|
+
} | null> | null;
|
|
1302
|
+
} | null;
|
|
1303
|
+
};
|
|
1304
|
+
type GetTranslationHubAdminStatsQueryVariables = Exact<{
|
|
1305
|
+
[key: string]: never;
|
|
1306
|
+
}>;
|
|
1307
|
+
type GetTranslationHubAdminStatsQuery = {
|
|
1308
|
+
__typename?: 'RootQueryType';
|
|
1309
|
+
translationHubAdminStats?: {
|
|
1310
|
+
__typename?: 'TranslationHubAdminStats';
|
|
1311
|
+
pendingReviewers: number;
|
|
1312
|
+
activeReviewers: number;
|
|
1313
|
+
pendingTranslations: number;
|
|
1314
|
+
completedThisMonth: number;
|
|
1315
|
+
totalGames: number;
|
|
1316
|
+
languagesCovered: number;
|
|
1317
|
+
totalPendingStrings?: number | null;
|
|
1318
|
+
averageCompletionDays?: number | null;
|
|
1319
|
+
} | null;
|
|
1320
|
+
};
|
|
1321
|
+
type GetTranslationReviewersQueryVariables = Exact<{
|
|
1322
|
+
filter?: InputMaybe<ReviewerFilterInput>;
|
|
1323
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1324
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
1325
|
+
}>;
|
|
1326
|
+
type GetTranslationReviewersQuery = {
|
|
1327
|
+
__typename?: 'RootQueryType';
|
|
1328
|
+
translationReviewers?: Array<{
|
|
1329
|
+
__typename?: 'TranslationReviewer';
|
|
1330
|
+
id: string;
|
|
1331
|
+
email: string;
|
|
1332
|
+
name: string;
|
|
1333
|
+
avatar?: string | null;
|
|
1334
|
+
status: TranslationReviewerStatus;
|
|
1335
|
+
languages: Array<string>;
|
|
1336
|
+
approvedLanguages: Array<string>;
|
|
1337
|
+
bio?: string | null;
|
|
1338
|
+
completedTranslations: number;
|
|
1339
|
+
averageRating: number;
|
|
1340
|
+
appliedAt: any;
|
|
1341
|
+
approvedAt?: any | null;
|
|
1342
|
+
} | null> | null;
|
|
1343
|
+
};
|
|
1344
|
+
type GetTranslationReviewerQueryVariables = Exact<{
|
|
1345
|
+
id: Scalars['ID']['input'];
|
|
1346
|
+
}>;
|
|
1347
|
+
type GetTranslationReviewerQuery = {
|
|
1348
|
+
__typename?: 'RootQueryType';
|
|
1349
|
+
translationReviewer?: {
|
|
1350
|
+
__typename?: 'TranslationReviewer';
|
|
1351
|
+
id: string;
|
|
1352
|
+
email: string;
|
|
1353
|
+
name: string;
|
|
1354
|
+
avatar?: string | null;
|
|
1355
|
+
status: TranslationReviewerStatus;
|
|
1356
|
+
languages: Array<string>;
|
|
1357
|
+
approvedLanguages: Array<string>;
|
|
1358
|
+
bio?: string | null;
|
|
1359
|
+
completedTranslations: number;
|
|
1360
|
+
averageRating: number;
|
|
1361
|
+
appliedAt: any;
|
|
1362
|
+
approvedAt?: any | null;
|
|
1363
|
+
approvedById?: string | null;
|
|
1364
|
+
languageDetails?: Array<{
|
|
1365
|
+
__typename?: 'TranslationLanguage';
|
|
1366
|
+
code: string;
|
|
1367
|
+
name: string;
|
|
1368
|
+
nativeName?: string | null;
|
|
1369
|
+
flag?: string | null;
|
|
1370
|
+
} | null> | null;
|
|
1371
|
+
approvedLanguageDetails?: Array<{
|
|
1372
|
+
__typename?: 'TranslationLanguage';
|
|
1373
|
+
code: string;
|
|
1374
|
+
name: string;
|
|
1375
|
+
nativeName?: string | null;
|
|
1376
|
+
flag?: string | null;
|
|
1377
|
+
} | null> | null;
|
|
1378
|
+
translations?: Array<{
|
|
1379
|
+
__typename?: 'HubTranslation';
|
|
1380
|
+
id: string;
|
|
1381
|
+
targetLanguage: string;
|
|
1382
|
+
status: TranslationStatus;
|
|
1383
|
+
progress: number;
|
|
1384
|
+
game?: {
|
|
1385
|
+
__typename?: 'HubGame';
|
|
1386
|
+
id: string;
|
|
1387
|
+
title: string;
|
|
1388
|
+
} | null;
|
|
1389
|
+
} | null> | null;
|
|
1390
|
+
} | null;
|
|
1391
|
+
};
|
|
1392
|
+
type GetPendingTranslationReviewersQueryVariables = Exact<{
|
|
1393
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1394
|
+
}>;
|
|
1395
|
+
type GetPendingTranslationReviewersQuery = {
|
|
1396
|
+
__typename?: 'RootQueryType';
|
|
1397
|
+
pendingTranslationReviewers?: Array<{
|
|
1398
|
+
__typename?: 'TranslationReviewer';
|
|
1399
|
+
id: string;
|
|
1400
|
+
email: string;
|
|
1401
|
+
name: string;
|
|
1402
|
+
languages: Array<string>;
|
|
1403
|
+
bio?: string | null;
|
|
1404
|
+
appliedAt: any;
|
|
1405
|
+
languageDetails?: Array<{
|
|
1406
|
+
__typename?: 'TranslationLanguage';
|
|
1407
|
+
code: string;
|
|
1408
|
+
name: string;
|
|
1409
|
+
nativeName?: string | null;
|
|
1410
|
+
flag?: string | null;
|
|
1411
|
+
} | null> | null;
|
|
1412
|
+
} | null> | null;
|
|
1413
|
+
};
|
|
1414
|
+
type GetEligibleReviewersQueryVariables = Exact<{
|
|
1415
|
+
languageCode: Scalars['String']['input'];
|
|
1416
|
+
}>;
|
|
1417
|
+
type GetEligibleReviewersQuery = {
|
|
1418
|
+
__typename?: 'RootQueryType';
|
|
1419
|
+
eligibleReviewers?: Array<{
|
|
1420
|
+
__typename?: 'TranslationReviewer';
|
|
1421
|
+
id: string;
|
|
1422
|
+
name: string;
|
|
1423
|
+
email: string;
|
|
1424
|
+
approvedLanguages: Array<string>;
|
|
1425
|
+
completedTranslations: number;
|
|
1426
|
+
averageRating: number;
|
|
1427
|
+
} | null> | null;
|
|
1428
|
+
};
|
|
1429
|
+
type GetHubTranslationsQueryVariables = Exact<{
|
|
1430
|
+
filter?: InputMaybe<TranslationFilterInput>;
|
|
1431
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1432
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
1433
|
+
}>;
|
|
1434
|
+
type GetHubTranslationsQuery = {
|
|
1435
|
+
__typename?: 'RootQueryType';
|
|
1436
|
+
hubTranslations?: Array<{
|
|
1437
|
+
__typename?: 'HubTranslation';
|
|
1438
|
+
id: string;
|
|
1439
|
+
targetLanguage: string;
|
|
1440
|
+
status: TranslationStatus;
|
|
1441
|
+
progress: number;
|
|
1442
|
+
totalKeys: number;
|
|
1443
|
+
completedKeys: number;
|
|
1444
|
+
assignedToId?: string | null;
|
|
1445
|
+
assignedAt?: any | null;
|
|
1446
|
+
completedAt?: any | null;
|
|
1447
|
+
aiGenerated: boolean;
|
|
1448
|
+
game?: {
|
|
1449
|
+
__typename?: 'HubGame';
|
|
1450
|
+
id: string;
|
|
1451
|
+
title: string;
|
|
1452
|
+
thumbnailUrl?: string | null;
|
|
1453
|
+
} | null;
|
|
1454
|
+
gameVersion?: {
|
|
1455
|
+
__typename?: 'HubGameVersion';
|
|
1456
|
+
id: string;
|
|
1457
|
+
version?: string | null;
|
|
1458
|
+
} | null;
|
|
1459
|
+
targetLanguageDetails?: {
|
|
1460
|
+
__typename?: 'TranslationLanguage';
|
|
1461
|
+
code: string;
|
|
1462
|
+
name: string;
|
|
1463
|
+
flag?: string | null;
|
|
1464
|
+
} | null;
|
|
1465
|
+
assignedReviewer?: {
|
|
1466
|
+
__typename?: 'TranslationReviewer';
|
|
1467
|
+
id: string;
|
|
1468
|
+
name: string;
|
|
1469
|
+
} | null;
|
|
1470
|
+
} | null> | null;
|
|
1471
|
+
};
|
|
1472
|
+
type GetUnassignedTranslationsQueryVariables = Exact<{
|
|
1473
|
+
languageCode?: InputMaybe<Scalars['String']['input']>;
|
|
1474
|
+
}>;
|
|
1475
|
+
type GetUnassignedTranslationsQuery = {
|
|
1476
|
+
__typename?: 'RootQueryType';
|
|
1477
|
+
unassignedTranslations?: Array<{
|
|
1478
|
+
__typename?: 'HubTranslation';
|
|
1479
|
+
id: string;
|
|
1480
|
+
targetLanguage: string;
|
|
1481
|
+
totalKeys: number;
|
|
1482
|
+
aiGenerated: boolean;
|
|
1483
|
+
insertedAt?: any | null;
|
|
1484
|
+
game?: {
|
|
1485
|
+
__typename?: 'HubGame';
|
|
1486
|
+
id: string;
|
|
1487
|
+
title: string;
|
|
1488
|
+
thumbnailUrl?: string | null;
|
|
1489
|
+
} | null;
|
|
1490
|
+
targetLanguageDetails?: {
|
|
1491
|
+
__typename?: 'TranslationLanguage';
|
|
1492
|
+
code: string;
|
|
1493
|
+
name: string;
|
|
1494
|
+
flag?: string | null;
|
|
1495
|
+
} | null;
|
|
1496
|
+
} | null> | null;
|
|
1497
|
+
};
|
|
1498
|
+
type GetActiveHubTranslationsQueryVariables = Exact<{
|
|
1499
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1500
|
+
}>;
|
|
1501
|
+
type GetActiveHubTranslationsQuery = {
|
|
1502
|
+
__typename?: 'RootQueryType';
|
|
1503
|
+
activeHubTranslations?: Array<{
|
|
1504
|
+
__typename?: 'HubTranslation';
|
|
1505
|
+
id: string;
|
|
1506
|
+
targetLanguage: string;
|
|
1507
|
+
status: TranslationStatus;
|
|
1508
|
+
progress: number;
|
|
1509
|
+
assignedAt?: any | null;
|
|
1510
|
+
game?: {
|
|
1511
|
+
__typename?: 'HubGame';
|
|
1512
|
+
id: string;
|
|
1513
|
+
title: string;
|
|
1514
|
+
} | null;
|
|
1515
|
+
assignedReviewer?: {
|
|
1516
|
+
__typename?: 'TranslationReviewer';
|
|
1517
|
+
id: string;
|
|
1518
|
+
name: string;
|
|
1519
|
+
} | null;
|
|
1520
|
+
} | null> | null;
|
|
1521
|
+
};
|
|
1522
|
+
type GetHubGamesQueryVariables = Exact<{
|
|
1523
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1524
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
1525
|
+
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
1526
|
+
}>;
|
|
1527
|
+
type GetHubGamesQuery = {
|
|
1528
|
+
__typename?: 'RootQueryType';
|
|
1529
|
+
hubGames?: Array<{
|
|
1530
|
+
__typename?: 'HubGame';
|
|
1531
|
+
id: string;
|
|
1532
|
+
title: string;
|
|
1533
|
+
description?: string | null;
|
|
1534
|
+
thumbnailUrl?: string | null;
|
|
1535
|
+
subject?: string | null;
|
|
1536
|
+
gradeLevel?: string | null;
|
|
1537
|
+
currentVersion?: string | null;
|
|
1538
|
+
developer?: {
|
|
1539
|
+
__typename?: 'HubGameDeveloper';
|
|
1540
|
+
id: string;
|
|
1541
|
+
name?: string | null;
|
|
1542
|
+
companyName?: string | null;
|
|
1543
|
+
} | null;
|
|
1544
|
+
translations?: Array<{
|
|
1545
|
+
__typename?: 'HubTranslation';
|
|
1546
|
+
id: string;
|
|
1547
|
+
targetLanguage: string;
|
|
1548
|
+
status: TranslationStatus;
|
|
1549
|
+
progress: number;
|
|
1550
|
+
} | null> | null;
|
|
1551
|
+
} | null> | null;
|
|
1552
|
+
};
|
|
1553
|
+
type GetRecentHubGamesQueryVariables = Exact<{
|
|
1554
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1555
|
+
}>;
|
|
1556
|
+
type GetRecentHubGamesQuery = {
|
|
1557
|
+
__typename?: 'RootQueryType';
|
|
1558
|
+
recentHubGames?: Array<{
|
|
1559
|
+
__typename?: 'HubGame';
|
|
1560
|
+
id: string;
|
|
1561
|
+
title: string;
|
|
1562
|
+
thumbnailUrl?: string | null;
|
|
1563
|
+
currentVersion?: string | null;
|
|
1564
|
+
} | null> | null;
|
|
1565
|
+
};
|
|
1566
|
+
type GetHubGameQueryVariables = Exact<{
|
|
1567
|
+
id: Scalars['ID']['input'];
|
|
1568
|
+
}>;
|
|
1569
|
+
type GetHubGameQuery = {
|
|
1570
|
+
__typename?: 'RootQueryType';
|
|
1571
|
+
hubGame?: {
|
|
1572
|
+
__typename?: 'HubGame';
|
|
1573
|
+
id: string;
|
|
1574
|
+
title: string;
|
|
1575
|
+
description?: string | null;
|
|
1576
|
+
thumbnailUrl?: string | null;
|
|
1577
|
+
subject?: string | null;
|
|
1578
|
+
gradeLevel?: string | null;
|
|
1579
|
+
currentVersion?: string | null;
|
|
1580
|
+
playUrl?: string | null;
|
|
1581
|
+
developer?: {
|
|
1582
|
+
__typename?: 'HubGameDeveloper';
|
|
1583
|
+
id: string;
|
|
1584
|
+
name?: string | null;
|
|
1585
|
+
companyName?: string | null;
|
|
1586
|
+
email?: string | null;
|
|
1587
|
+
} | null;
|
|
1588
|
+
translations?: Array<{
|
|
1589
|
+
__typename?: 'HubTranslation';
|
|
1590
|
+
id: string;
|
|
1591
|
+
targetLanguage: string;
|
|
1592
|
+
status: TranslationStatus;
|
|
1593
|
+
progress: number;
|
|
1594
|
+
totalKeys: number;
|
|
1595
|
+
completedKeys: number;
|
|
1596
|
+
aiGenerated: boolean;
|
|
1597
|
+
targetLanguageDetails?: {
|
|
1598
|
+
__typename?: 'TranslationLanguage';
|
|
1599
|
+
code: string;
|
|
1600
|
+
name: string;
|
|
1601
|
+
flag?: string | null;
|
|
1602
|
+
} | null;
|
|
1603
|
+
assignedReviewer?: {
|
|
1604
|
+
__typename?: 'TranslationReviewer';
|
|
1605
|
+
id: string;
|
|
1606
|
+
name: string;
|
|
1607
|
+
} | null;
|
|
1608
|
+
} | null> | null;
|
|
1609
|
+
} | null;
|
|
1610
|
+
};
|
|
1611
|
+
type GetSupportedLanguagesQueryVariables = Exact<{
|
|
1612
|
+
[key: string]: never;
|
|
1613
|
+
}>;
|
|
1614
|
+
type GetSupportedLanguagesQuery = {
|
|
1615
|
+
__typename?: 'RootQueryType';
|
|
1616
|
+
supportedLanguages?: Array<{
|
|
1617
|
+
__typename?: 'TranslationLanguage';
|
|
1618
|
+
code: string;
|
|
1619
|
+
name: string;
|
|
1620
|
+
nativeName?: string | null;
|
|
1621
|
+
flag?: string | null;
|
|
1622
|
+
} | null> | null;
|
|
1623
|
+
};
|
|
1624
|
+
type GetTranslationLanguageQueryVariables = Exact<{
|
|
1625
|
+
code: Scalars['String']['input'];
|
|
1626
|
+
}>;
|
|
1627
|
+
type GetTranslationLanguageQuery = {
|
|
1628
|
+
__typename?: 'RootQueryType';
|
|
1629
|
+
translationLanguage?: {
|
|
1630
|
+
__typename?: 'TranslationLanguage';
|
|
1631
|
+
code: string;
|
|
1632
|
+
name: string;
|
|
1633
|
+
nativeName?: string | null;
|
|
1634
|
+
flag?: string | null;
|
|
1635
|
+
} | null;
|
|
1636
|
+
};
|
|
1637
|
+
type GetAiPromptsQueryVariables = Exact<{
|
|
1638
|
+
purpose?: InputMaybe<Scalars['String']['input']>;
|
|
1639
|
+
activeOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1640
|
+
}>;
|
|
1641
|
+
type GetAiPromptsQuery = {
|
|
1642
|
+
__typename?: 'RootQueryType';
|
|
1643
|
+
aiPrompts?: Array<{
|
|
1644
|
+
__typename?: 'AiPrompt';
|
|
1645
|
+
id: string;
|
|
1646
|
+
name: string;
|
|
1647
|
+
description?: string | null;
|
|
1648
|
+
purpose: string;
|
|
1649
|
+
template: string;
|
|
1650
|
+
variables?: Array<string | null> | null;
|
|
1651
|
+
model: string;
|
|
1652
|
+
temperature: number;
|
|
1653
|
+
maxTokens: number;
|
|
1654
|
+
isActive: boolean;
|
|
1655
|
+
insertedAt?: any | null;
|
|
1656
|
+
updatedAt?: any | null;
|
|
1657
|
+
} | null> | null;
|
|
1658
|
+
};
|
|
1659
|
+
type GetAiPromptQueryVariables = Exact<{
|
|
1660
|
+
id: Scalars['ID']['input'];
|
|
1661
|
+
}>;
|
|
1662
|
+
type GetAiPromptQuery = {
|
|
1663
|
+
__typename?: 'RootQueryType';
|
|
1664
|
+
aiPrompt?: {
|
|
1665
|
+
__typename?: 'AiPrompt';
|
|
1666
|
+
id: string;
|
|
1667
|
+
name: string;
|
|
1668
|
+
description?: string | null;
|
|
1669
|
+
purpose: string;
|
|
1670
|
+
template: string;
|
|
1671
|
+
variables?: Array<string | null> | null;
|
|
1672
|
+
model: string;
|
|
1673
|
+
temperature: number;
|
|
1674
|
+
maxTokens: number;
|
|
1675
|
+
isActive: boolean;
|
|
1676
|
+
insertedAt?: any | null;
|
|
1677
|
+
updatedAt?: any | null;
|
|
1678
|
+
versions?: Array<{
|
|
1679
|
+
__typename?: 'AiPromptVersion';
|
|
1680
|
+
id: string;
|
|
1681
|
+
version: number;
|
|
1682
|
+
template: string;
|
|
1683
|
+
variables?: Array<string | null> | null;
|
|
1684
|
+
model: string;
|
|
1685
|
+
temperature: number;
|
|
1686
|
+
maxTokens: number;
|
|
1687
|
+
changeNote?: string | null;
|
|
1688
|
+
insertedAt?: any | null;
|
|
1689
|
+
} | null> | null;
|
|
1690
|
+
} | null;
|
|
1691
|
+
};
|
|
1692
|
+
type GetAiPromptVersionsQueryVariables = Exact<{
|
|
1693
|
+
promptId: Scalars['ID']['input'];
|
|
1694
|
+
}>;
|
|
1695
|
+
type GetAiPromptVersionsQuery = {
|
|
1696
|
+
__typename?: 'RootQueryType';
|
|
1697
|
+
aiPromptVersions?: Array<{
|
|
1698
|
+
__typename?: 'AiPromptVersion';
|
|
1699
|
+
id: string;
|
|
1700
|
+
promptId: string;
|
|
1701
|
+
version: number;
|
|
1702
|
+
template: string;
|
|
1703
|
+
variables?: Array<string | null> | null;
|
|
1704
|
+
model: string;
|
|
1705
|
+
temperature: number;
|
|
1706
|
+
maxTokens: number;
|
|
1707
|
+
changeNote?: string | null;
|
|
1708
|
+
insertedAt?: any | null;
|
|
1709
|
+
updatedAt?: any | null;
|
|
1710
|
+
} | null> | null;
|
|
1711
|
+
};
|
|
1712
|
+
declare const TranslationHubLoginDocument: TypedDocumentNode<TranslationHubLoginMutation, TranslationHubLoginMutationVariables>;
|
|
1713
|
+
declare const TranslationHubSignupDocument: TypedDocumentNode<TranslationHubSignupMutation, TranslationHubSignupMutationVariables>;
|
|
1714
|
+
declare const TranslationHubLogoutDocument: TypedDocumentNode<TranslationHubLogoutMutation, TranslationHubLogoutMutationVariables>;
|
|
1715
|
+
declare const SaveTranslationEntriesDocument: TypedDocumentNode<SaveTranslationEntriesMutation, SaveTranslationEntriesMutationVariables>;
|
|
1716
|
+
declare const CompleteHubTranslationDocument: TypedDocumentNode<CompleteHubTranslationMutation, CompleteHubTranslationMutationVariables>;
|
|
1717
|
+
declare const UseAiSuggestionDocument: TypedDocumentNode<UseAiSuggestionMutation, UseAiSuggestionMutationVariables>;
|
|
1718
|
+
declare const ReviewTranslationReviewerDocument: TypedDocumentNode<ReviewTranslationReviewerMutation, ReviewTranslationReviewerMutationVariables>;
|
|
1719
|
+
declare const SuspendTranslationReviewerDocument: TypedDocumentNode<SuspendTranslationReviewerMutation, SuspendTranslationReviewerMutationVariables>;
|
|
1720
|
+
declare const ReactivateTranslationReviewerDocument: TypedDocumentNode<ReactivateTranslationReviewerMutation, ReactivateTranslationReviewerMutationVariables>;
|
|
1721
|
+
declare const ApproveReviewerLanguagesDocument: TypedDocumentNode<ApproveReviewerLanguagesMutation, ApproveReviewerLanguagesMutationVariables>;
|
|
1722
|
+
declare const AssignHubTranslationDocument: TypedDocumentNode<AssignHubTranslationMutation, AssignHubTranslationMutationVariables>;
|
|
1723
|
+
declare const ReassignHubTranslationDocument: TypedDocumentNode<ReassignHubTranslationMutation, ReassignHubTranslationMutationVariables>;
|
|
1724
|
+
declare const UnassignHubTranslationDocument: TypedDocumentNode<UnassignHubTranslationMutation, UnassignHubTranslationMutationVariables>;
|
|
1725
|
+
declare const RequestTranslationRevisionDocument: TypedDocumentNode<RequestTranslationRevisionMutation, RequestTranslationRevisionMutationVariables>;
|
|
1726
|
+
declare const GenerateAiTranslationsDocument: TypedDocumentNode<GenerateAiTranslationsMutation, GenerateAiTranslationsMutationVariables>;
|
|
1727
|
+
declare const UpsertAiPromptDocument: TypedDocumentNode<UpsertAiPromptMutation, UpsertAiPromptMutationVariables>;
|
|
1728
|
+
declare const CreateAiPromptVersionDocument: TypedDocumentNode<CreateAiPromptVersionMutation, CreateAiPromptVersionMutationVariables>;
|
|
1729
|
+
declare const SaveAiTranslationEntriesDocument: TypedDocumentNode<SaveAiTranslationEntriesMutation, SaveAiTranslationEntriesMutationVariables>;
|
|
1730
|
+
declare const GetMeDocument: TypedDocumentNode<GetMeQuery, GetMeQueryVariables>;
|
|
1731
|
+
declare const GetReviewerDashboardDocument: TypedDocumentNode<GetReviewerDashboardQuery, GetReviewerDashboardQueryVariables>;
|
|
1732
|
+
declare const GetMyQueueDocument: TypedDocumentNode<GetMyQueueQuery, GetMyQueueQueryVariables>;
|
|
1733
|
+
declare const GetMyStatsDocument: TypedDocumentNode<GetMyStatsQuery, GetMyStatsQueryVariables>;
|
|
1734
|
+
declare const GetTranslationDocument: TypedDocumentNode<GetTranslationQuery, GetTranslationQueryVariables>;
|
|
1735
|
+
declare const GetTranslationEntriesDocument: TypedDocumentNode<GetTranslationEntriesQuery, GetTranslationEntriesQueryVariables>;
|
|
1736
|
+
declare const GetSiblingTranslationsDocument: TypedDocumentNode<GetSiblingTranslationsQuery, GetSiblingTranslationsQueryVariables>;
|
|
1737
|
+
declare const GetMyCompletedTranslationsDocument: TypedDocumentNode<GetMyCompletedTranslationsQuery, GetMyCompletedTranslationsQueryVariables>;
|
|
1738
|
+
declare const GetTranslationHubAdminDashboardDocument: TypedDocumentNode<GetTranslationHubAdminDashboardQuery, GetTranslationHubAdminDashboardQueryVariables>;
|
|
1739
|
+
declare const GetTranslationHubAdminStatsDocument: TypedDocumentNode<GetTranslationHubAdminStatsQuery, GetTranslationHubAdminStatsQueryVariables>;
|
|
1740
|
+
declare const GetTranslationReviewersDocument: TypedDocumentNode<GetTranslationReviewersQuery, GetTranslationReviewersQueryVariables>;
|
|
1741
|
+
declare const GetTranslationReviewerDocument: TypedDocumentNode<GetTranslationReviewerQuery, GetTranslationReviewerQueryVariables>;
|
|
1742
|
+
declare const GetPendingTranslationReviewersDocument: TypedDocumentNode<GetPendingTranslationReviewersQuery, GetPendingTranslationReviewersQueryVariables>;
|
|
1743
|
+
declare const GetEligibleReviewersDocument: TypedDocumentNode<GetEligibleReviewersQuery, GetEligibleReviewersQueryVariables>;
|
|
1744
|
+
declare const GetHubTranslationsDocument: TypedDocumentNode<GetHubTranslationsQuery, GetHubTranslationsQueryVariables>;
|
|
1745
|
+
declare const GetUnassignedTranslationsDocument: TypedDocumentNode<GetUnassignedTranslationsQuery, GetUnassignedTranslationsQueryVariables>;
|
|
1746
|
+
declare const GetActiveHubTranslationsDocument: TypedDocumentNode<GetActiveHubTranslationsQuery, GetActiveHubTranslationsQueryVariables>;
|
|
1747
|
+
declare const GetHubGamesDocument: TypedDocumentNode<GetHubGamesQuery, GetHubGamesQueryVariables>;
|
|
1748
|
+
declare const GetRecentHubGamesDocument: TypedDocumentNode<GetRecentHubGamesQuery, GetRecentHubGamesQueryVariables>;
|
|
1749
|
+
declare const GetHubGameDocument: TypedDocumentNode<GetHubGameQuery, GetHubGameQueryVariables>;
|
|
1750
|
+
declare const GetSupportedLanguagesDocument: TypedDocumentNode<GetSupportedLanguagesQuery, GetSupportedLanguagesQueryVariables>;
|
|
1751
|
+
declare const GetTranslationLanguageDocument: TypedDocumentNode<GetTranslationLanguageQuery, GetTranslationLanguageQueryVariables>;
|
|
1752
|
+
declare const GetAiPromptsDocument: TypedDocumentNode<GetAiPromptsQuery, GetAiPromptsQueryVariables>;
|
|
1753
|
+
declare const GetAiPromptDocument: TypedDocumentNode<GetAiPromptQuery, GetAiPromptQueryVariables>;
|
|
1754
|
+
declare const GetAiPromptVersionsDocument: TypedDocumentNode<GetAiPromptVersionsQuery, GetAiPromptVersionsQueryVariables>;
|
|
1755
|
+
|
|
1756
|
+
type FragmentType<TDocumentType extends DocumentTypeDecoration<any, any>> = TDocumentType extends DocumentTypeDecoration<infer TType, any> ? [TType] extends [{
|
|
1757
|
+
' $fragmentName'?: infer TKey;
|
|
1758
|
+
}] ? TKey extends string ? {
|
|
1759
|
+
' $fragmentRefs'?: {
|
|
1760
|
+
[key in TKey]: TType;
|
|
1761
|
+
};
|
|
1762
|
+
} : never : never : never;
|
|
1763
|
+
declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: FragmentType<DocumentTypeDecoration<TType, any>>): TType;
|
|
1764
|
+
declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: FragmentType<DocumentTypeDecoration<TType, any>> | undefined): TType | undefined;
|
|
1765
|
+
declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: FragmentType<DocumentTypeDecoration<TType, any>> | null): TType | null;
|
|
1766
|
+
declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: FragmentType<DocumentTypeDecoration<TType, any>> | null | undefined): TType | null | undefined;
|
|
1767
|
+
declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: Array<FragmentType<DocumentTypeDecoration<TType, any>>>): Array<TType>;
|
|
1768
|
+
declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: Array<FragmentType<DocumentTypeDecoration<TType, any>>> | null | undefined): Array<TType> | null | undefined;
|
|
1769
|
+
declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: ReadonlyArray<FragmentType<DocumentTypeDecoration<TType, any>>>): ReadonlyArray<TType>;
|
|
1770
|
+
declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: ReadonlyArray<FragmentType<DocumentTypeDecoration<TType, any>>> | null | undefined): ReadonlyArray<TType> | null | undefined;
|
|
1771
|
+
declare function makeFragmentData<F extends DocumentTypeDecoration<any, any>, FT extends ResultOf<F>>(data: FT, _fragment: F): FragmentType<F>;
|
|
1772
|
+
declare function isFragmentReady<TQuery, TFrag>(queryNode: DocumentTypeDecoration<TQuery, any>, fragmentNode: TypedDocumentNode<TFrag>, data: FragmentType<TypedDocumentNode<Incremental<TFrag>, any>> | null | undefined): data is FragmentType<typeof fragmentNode>;
|
|
1773
|
+
|
|
1774
|
+
/**
|
|
1775
|
+
* Map of all GraphQL operations in the project.
|
|
1776
|
+
*
|
|
1777
|
+
* This map has several performance disadvantages:
|
|
1778
|
+
* 1. It is not tree-shakeable, so it will include all operations in the project.
|
|
1779
|
+
* 2. It is not minifiable, so the string of a GraphQL query will be multiple times inside the bundle.
|
|
1780
|
+
* 3. It does not support dead code elimination, so it will add unused operations.
|
|
1781
|
+
*
|
|
1782
|
+
* Therefore it is highly recommended to use the babel or swc plugin for production.
|
|
1783
|
+
* Learn more about it here: https://the-guild.dev/graphql/codegen/plugins/presets/preset-client#reducing-bundle-size
|
|
1784
|
+
*/
|
|
1785
|
+
type Documents = {
|
|
1786
|
+
"\n mutation TranslationHubLogin($email: String!, $password: String!) {\n translationHubLogin(email: $email, password: $password) {\n token\n reviewer {\n id\n email\n name\n status\n approvedLanguages\n }\n }\n }\n": typeof TranslationHubLoginDocument;
|
|
1787
|
+
"\n mutation TranslationHubSignup($input: CreateTranslationReviewerInput!) {\n translationHubSignup(input: $input) {\n token\n reviewer {\n id\n email\n name\n status\n languages\n }\n }\n }\n": typeof TranslationHubSignupDocument;
|
|
1788
|
+
"\n mutation TranslationHubLogout {\n translationHubLogout\n }\n": typeof TranslationHubLogoutDocument;
|
|
1789
|
+
"\n mutation SaveTranslationEntries($input: SaveTranslationEntriesInput!) {\n saveTranslationEntries(input: $input) {\n success\n updatedCount\n translation {\n id\n status\n progress\n completedKeys\n }\n updatedEntries {\n id\n translatedText\n isApproved\n isEdited\n reviewerNotes\n }\n }\n }\n": typeof SaveTranslationEntriesDocument;
|
|
1790
|
+
"\n mutation CompleteHubTranslation($translationId: ID!) {\n completeHubTranslation(translationId: $translationId) {\n id\n status\n progress\n completedAt\n }\n }\n": typeof CompleteHubTranslationDocument;
|
|
1791
|
+
"\n mutation UseAiSuggestion($entryId: ID!) {\n useAiSuggestion(entryId: $entryId) {\n id\n translatedText\n isApproved\n isEdited\n }\n }\n": typeof UseAiSuggestionDocument;
|
|
1792
|
+
"\n mutation ReviewTranslationReviewer($input: ReviewReviewerInput!) {\n reviewTranslationReviewer(input: $input) {\n id\n status\n approvedLanguages\n approvedAt\n approvedById\n }\n }\n": typeof ReviewTranslationReviewerDocument;
|
|
1793
|
+
"\n mutation SuspendTranslationReviewer($reviewerId: ID!, $reason: String) {\n suspendTranslationReviewer(reviewerId: $reviewerId, reason: $reason) {\n id\n status\n }\n }\n": typeof SuspendTranslationReviewerDocument;
|
|
1794
|
+
"\n mutation ReactivateTranslationReviewer($reviewerId: ID!) {\n reactivateTranslationReviewer(reviewerId: $reviewerId) {\n id\n status\n }\n }\n": typeof ReactivateTranslationReviewerDocument;
|
|
1795
|
+
"\n mutation ApproveReviewerLanguages($reviewerId: ID!, $languages: [String!]!) {\n approveReviewerLanguages(reviewerId: $reviewerId, languages: $languages) {\n id\n approvedLanguages\n approvedLanguageDetails {\n code\n name\n flag\n }\n }\n }\n": typeof ApproveReviewerLanguagesDocument;
|
|
1796
|
+
"\n mutation AssignHubTranslation($input: AssignTranslationInput!) {\n assignHubTranslation(input: $input) {\n id\n status\n assignedToId\n assignedReviewer {\n id\n name\n }\n assignedAt\n }\n }\n": typeof AssignHubTranslationDocument;
|
|
1797
|
+
"\n mutation ReassignHubTranslation($translationId: ID!, $newReviewerId: ID!) {\n reassignHubTranslation(translationId: $translationId, newReviewerId: $newReviewerId) {\n id\n assignedToId\n assignedReviewer {\n id\n name\n }\n assignedAt\n }\n }\n": typeof ReassignHubTranslationDocument;
|
|
1798
|
+
"\n mutation UnassignHubTranslation($translationId: ID!) {\n unassignHubTranslation(translationId: $translationId) {\n id\n status\n assignedToId\n assignedAt\n }\n }\n": typeof UnassignHubTranslationDocument;
|
|
1799
|
+
"\n mutation RequestTranslationRevision($translationId: ID!, $reason: String!) {\n requestTranslationRevision(translationId: $translationId, reason: $reason) {\n id\n status\n }\n }\n": typeof RequestTranslationRevisionDocument;
|
|
1800
|
+
"\n mutation GenerateAiTranslations($gameVersionId: ID!, $targetLanguages: [String!]!) {\n generateAiTranslations(gameVersionId: $gameVersionId, targetLanguages: $targetLanguages) {\n id\n targetLanguage\n status\n aiGenerated\n totalKeys\n }\n }\n": typeof GenerateAiTranslationsDocument;
|
|
1801
|
+
"\n mutation UpsertAiPrompt($input: AiPromptInput!) {\n upsertAiPrompt(input: $input) {\n id\n name\n description\n purpose\n template\n variables\n model\n temperature\n maxTokens\n isActive\n insertedAt\n updatedAt\n }\n }\n": typeof UpsertAiPromptDocument;
|
|
1802
|
+
"\n mutation CreateAiPromptVersion($input: AiPromptVersionInput!) {\n createAiPromptVersion(input: $input) {\n id\n promptId\n version\n template\n variables\n model\n temperature\n maxTokens\n changeNote\n insertedAt\n }\n }\n": typeof CreateAiPromptVersionDocument;
|
|
1803
|
+
"\n mutation SaveAiTranslationEntries($input: SaveAiTranslationEntriesInput!) {\n saveAiTranslationEntries(input: $input) {\n success\n updatedCount\n translation {\n id\n status\n progress\n completedKeys\n aiGenerated\n }\n updatedEntries {\n id\n translatedText\n aiSuggestion\n isApproved\n isEdited\n }\n }\n }\n": typeof SaveAiTranslationEntriesDocument;
|
|
1804
|
+
"\n query GetMe {\n me {\n id\n email\n name\n avatar\n status\n languages\n approvedLanguages\n bio\n completedTranslations\n averageRating\n appliedAt\n approvedAt\n }\n }\n": typeof GetMeDocument;
|
|
1805
|
+
"\n query GetReviewerDashboard {\n reviewerDashboard {\n reviewer {\n id\n name\n email\n avatar\n status\n approvedLanguages\n }\n activeGameGroups {\n gameId\n game {\n id\n title\n thumbnailUrl\n }\n gameVersion {\n id\n version\n }\n translations {\n id\n targetLanguage\n status\n progress\n totalKeys\n completedKeys\n }\n totalProgress\n totalKeys\n completedKeys\n }\n recentlyCompleted {\n gameId\n game {\n id\n title\n }\n translations {\n id\n targetLanguage\n completedAt\n }\n }\n stats {\n assignedTranslations\n completedTranslations\n pendingReview\n averageCompletionTime\n activeGames\n activeLanguages\n }\n }\n }\n": typeof GetReviewerDashboardDocument;
|
|
1806
|
+
"\n query GetMyQueue($searchQuery: String) {\n myQueue(searchQuery: $searchQuery) {\n gameId\n game {\n id\n title\n thumbnailUrl\n subject\n gradeLevel\n }\n gameVersion {\n id\n version\n }\n translations {\n id\n targetLanguage\n targetLanguageDetails {\n code\n name\n nativeName\n flag\n }\n status\n progress\n totalKeys\n completedKeys\n assignedAt\n }\n totalProgress\n totalKeys\n completedKeys\n earliestAssignmentDate\n }\n }\n": typeof GetMyQueueDocument;
|
|
1807
|
+
"\n query GetMyStats {\n myStats {\n assignedTranslations\n completedTranslations\n pendingReview\n averageCompletionTime\n activeGames\n activeLanguages\n }\n }\n": typeof GetMyStatsDocument;
|
|
1808
|
+
"\n query GetTranslation($id: ID!) {\n translation(id: $id) {\n id\n gameVersionId\n game {\n id\n title\n thumbnailUrl\n playUrl\n }\n gameVersion {\n id\n version\n translationKeys\n }\n targetLanguage\n targetLanguageDetails {\n code\n name\n nativeName\n flag\n }\n status\n progress\n totalKeys\n completedKeys\n assignedToId\n assignedAt\n completedAt\n aiGenerated\n totalEntries\n siblingTranslations {\n id\n targetLanguage\n targetLanguageDetails {\n code\n name\n flag\n }\n status\n progress\n }\n }\n }\n": typeof GetTranslationDocument;
|
|
1809
|
+
"\n query GetTranslationEntries(\n $translationId: ID!\n $limit: Int\n $offset: Int\n $pendingOnly: Boolean\n $approvedOnly: Boolean\n ) {\n translationEntries(\n translationId: $translationId\n limit: $limit\n offset: $offset\n pendingOnly: $pendingOnly\n approvedOnly: $approvedOnly\n ) {\n id\n translationId\n key\n sourceText\n translatedText\n aiSuggestion\n isApproved\n isEdited\n context\n reviewerNotes\n order\n audioFiles {\n id\n speed\n url\n }\n }\n }\n": typeof GetTranslationEntriesDocument;
|
|
1810
|
+
"\n query GetSiblingTranslations($translationId: ID!) {\n siblingTranslations(translationId: $translationId) {\n id\n targetLanguage\n targetLanguageDetails {\n code\n name\n nativeName\n flag\n }\n status\n progress\n totalKeys\n completedKeys\n }\n }\n": typeof GetSiblingTranslationsDocument;
|
|
1811
|
+
"\n query GetMyCompletedTranslations($limit: Int) {\n myCompletedTranslations(limit: $limit) {\n gameId\n game {\n id\n title\n thumbnailUrl\n }\n gameVersion {\n id\n version\n }\n translations {\n id\n targetLanguage\n completedAt\n }\n }\n }\n": typeof GetMyCompletedTranslationsDocument;
|
|
1812
|
+
"\n query GetTranslationHubAdminDashboard {\n translationHubAdminDashboard {\n stats {\n pendingReviewers\n activeReviewers\n pendingTranslations\n completedThisMonth\n totalGames\n languagesCovered\n totalPendingStrings\n averageCompletionDays\n }\n pendingReviewers {\n id\n name\n email\n languages\n bio\n appliedAt\n }\n activeTranslations {\n id\n game {\n id\n title\n }\n targetLanguage\n status\n progress\n assignedReviewer {\n id\n name\n }\n }\n recentGames {\n id\n title\n thumbnailUrl\n }\n }\n }\n": typeof GetTranslationHubAdminDashboardDocument;
|
|
1813
|
+
"\n query GetTranslationHubAdminStats {\n translationHubAdminStats {\n pendingReviewers\n activeReviewers\n pendingTranslations\n completedThisMonth\n totalGames\n languagesCovered\n totalPendingStrings\n averageCompletionDays\n }\n }\n": typeof GetTranslationHubAdminStatsDocument;
|
|
1814
|
+
"\n query GetTranslationReviewers(\n $filter: ReviewerFilterInput\n $limit: Int\n $offset: Int\n ) {\n translationReviewers(filter: $filter, limit: $limit, offset: $offset) {\n id\n email\n name\n avatar\n status\n languages\n approvedLanguages\n bio\n completedTranslations\n averageRating\n appliedAt\n approvedAt\n }\n }\n": typeof GetTranslationReviewersDocument;
|
|
1815
|
+
"\n query GetTranslationReviewer($id: ID!) {\n translationReviewer(id: $id) {\n id\n email\n name\n avatar\n status\n languages\n approvedLanguages\n languageDetails {\n code\n name\n nativeName\n flag\n }\n approvedLanguageDetails {\n code\n name\n nativeName\n flag\n }\n bio\n completedTranslations\n averageRating\n appliedAt\n approvedAt\n approvedById\n translations(activeOnly: true) {\n id\n game {\n id\n title\n }\n targetLanguage\n status\n progress\n }\n }\n }\n": typeof GetTranslationReviewerDocument;
|
|
1816
|
+
"\n query GetPendingTranslationReviewers($limit: Int) {\n pendingTranslationReviewers(limit: $limit) {\n id\n email\n name\n languages\n languageDetails {\n code\n name\n nativeName\n flag\n }\n bio\n appliedAt\n }\n }\n": typeof GetPendingTranslationReviewersDocument;
|
|
1817
|
+
"\n query GetEligibleReviewers($languageCode: String!) {\n eligibleReviewers(languageCode: $languageCode) {\n id\n name\n email\n approvedLanguages\n completedTranslations\n averageRating\n }\n }\n": typeof GetEligibleReviewersDocument;
|
|
1818
|
+
"\n query GetHubTranslations(\n $filter: TranslationFilterInput\n $limit: Int\n $offset: Int\n ) {\n hubTranslations(filter: $filter, limit: $limit, offset: $offset) {\n id\n game {\n id\n title\n thumbnailUrl\n }\n gameVersion {\n id\n version\n }\n targetLanguage\n targetLanguageDetails {\n code\n name\n flag\n }\n status\n progress\n totalKeys\n completedKeys\n assignedToId\n assignedReviewer {\n id\n name\n }\n assignedAt\n completedAt\n aiGenerated\n }\n }\n": typeof GetHubTranslationsDocument;
|
|
1819
|
+
"\n query GetUnassignedTranslations($languageCode: String) {\n unassignedTranslations(languageCode: $languageCode) {\n id\n game {\n id\n title\n thumbnailUrl\n }\n targetLanguage\n targetLanguageDetails {\n code\n name\n flag\n }\n totalKeys\n aiGenerated\n insertedAt\n }\n }\n": typeof GetUnassignedTranslationsDocument;
|
|
1820
|
+
"\n query GetActiveHubTranslations($limit: Int) {\n activeHubTranslations(limit: $limit) {\n id\n game {\n id\n title\n }\n targetLanguage\n status\n progress\n assignedReviewer {\n id\n name\n }\n assignedAt\n }\n }\n": typeof GetActiveHubTranslationsDocument;
|
|
1821
|
+
"\n query GetHubGames($limit: Int, $offset: Int, $searchQuery: String) {\n hubGames(limit: $limit, offset: $offset, searchQuery: $searchQuery) {\n id\n title\n description\n thumbnailUrl\n subject\n gradeLevel\n currentVersion\n developer {\n id\n name\n companyName\n }\n translations {\n id\n targetLanguage\n status\n progress\n }\n }\n }\n": typeof GetHubGamesDocument;
|
|
1822
|
+
"\n query GetRecentHubGames($limit: Int) {\n recentHubGames(limit: $limit) {\n id\n title\n thumbnailUrl\n currentVersion\n }\n }\n": typeof GetRecentHubGamesDocument;
|
|
1823
|
+
"\n query GetHubGame($id: ID!) {\n hubGame(id: $id) {\n id\n title\n description\n thumbnailUrl\n subject\n gradeLevel\n currentVersion\n developer {\n id\n name\n companyName\n email\n }\n translations {\n id\n targetLanguage\n targetLanguageDetails {\n code\n name\n flag\n }\n status\n progress\n totalKeys\n completedKeys\n assignedReviewer {\n id\n name\n }\n aiGenerated\n }\n playUrl\n }\n }\n": typeof GetHubGameDocument;
|
|
1824
|
+
"\n query GetSupportedLanguages {\n supportedLanguages {\n code\n name\n nativeName\n flag\n }\n }\n": typeof GetSupportedLanguagesDocument;
|
|
1825
|
+
"\n query GetTranslationLanguage($code: String!) {\n translationLanguage(code: $code) {\n code\n name\n nativeName\n flag\n }\n }\n": typeof GetTranslationLanguageDocument;
|
|
1826
|
+
"\n query GetAiPrompts($purpose: String, $activeOnly: Boolean) {\n aiPrompts(purpose: $purpose, activeOnly: $activeOnly) {\n id\n name\n description\n purpose\n template\n variables\n model\n temperature\n maxTokens\n isActive\n insertedAt\n updatedAt\n }\n }\n": typeof GetAiPromptsDocument;
|
|
1827
|
+
"\n query GetAiPrompt($id: ID!) {\n aiPrompt(id: $id) {\n id\n name\n description\n purpose\n template\n variables\n model\n temperature\n maxTokens\n isActive\n insertedAt\n updatedAt\n versions {\n id\n version\n template\n variables\n model\n temperature\n maxTokens\n changeNote\n insertedAt\n }\n }\n }\n": typeof GetAiPromptDocument;
|
|
1828
|
+
"\n query GetAiPromptVersions($promptId: ID!) {\n aiPromptVersions(promptId: $promptId) {\n id\n promptId\n version\n template\n variables\n model\n temperature\n maxTokens\n changeNote\n insertedAt\n updatedAt\n }\n }\n": typeof GetAiPromptVersionsDocument;
|
|
1829
|
+
};
|
|
1830
|
+
declare const documents: Documents;
|
|
1831
|
+
/**
|
|
1832
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1833
|
+
*
|
|
1834
|
+
*
|
|
1835
|
+
* @example
|
|
1836
|
+
* ```ts
|
|
1837
|
+
* const query = graphql(`query GetUser($id: ID!) { user(id: $id) { name } }`);
|
|
1838
|
+
* ```
|
|
1839
|
+
*
|
|
1840
|
+
* The query argument is unknown!
|
|
1841
|
+
* Please regenerate the types.
|
|
1842
|
+
*/
|
|
1843
|
+
declare function graphql(source: string): unknown;
|
|
1844
|
+
/**
|
|
1845
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1846
|
+
*/
|
|
1847
|
+
declare function graphql(source: "\n mutation TranslationHubLogin($email: String!, $password: String!) {\n translationHubLogin(email: $email, password: $password) {\n token\n reviewer {\n id\n email\n name\n status\n approvedLanguages\n }\n }\n }\n"): (typeof documents)["\n mutation TranslationHubLogin($email: String!, $password: String!) {\n translationHubLogin(email: $email, password: $password) {\n token\n reviewer {\n id\n email\n name\n status\n approvedLanguages\n }\n }\n }\n"];
|
|
1848
|
+
/**
|
|
1849
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1850
|
+
*/
|
|
1851
|
+
declare function graphql(source: "\n mutation TranslationHubSignup($input: CreateTranslationReviewerInput!) {\n translationHubSignup(input: $input) {\n token\n reviewer {\n id\n email\n name\n status\n languages\n }\n }\n }\n"): (typeof documents)["\n mutation TranslationHubSignup($input: CreateTranslationReviewerInput!) {\n translationHubSignup(input: $input) {\n token\n reviewer {\n id\n email\n name\n status\n languages\n }\n }\n }\n"];
|
|
1852
|
+
/**
|
|
1853
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1854
|
+
*/
|
|
1855
|
+
declare function graphql(source: "\n mutation TranslationHubLogout {\n translationHubLogout\n }\n"): (typeof documents)["\n mutation TranslationHubLogout {\n translationHubLogout\n }\n"];
|
|
1856
|
+
/**
|
|
1857
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1858
|
+
*/
|
|
1859
|
+
declare function graphql(source: "\n mutation SaveTranslationEntries($input: SaveTranslationEntriesInput!) {\n saveTranslationEntries(input: $input) {\n success\n updatedCount\n translation {\n id\n status\n progress\n completedKeys\n }\n updatedEntries {\n id\n translatedText\n isApproved\n isEdited\n reviewerNotes\n }\n }\n }\n"): (typeof documents)["\n mutation SaveTranslationEntries($input: SaveTranslationEntriesInput!) {\n saveTranslationEntries(input: $input) {\n success\n updatedCount\n translation {\n id\n status\n progress\n completedKeys\n }\n updatedEntries {\n id\n translatedText\n isApproved\n isEdited\n reviewerNotes\n }\n }\n }\n"];
|
|
1860
|
+
/**
|
|
1861
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1862
|
+
*/
|
|
1863
|
+
declare function graphql(source: "\n mutation CompleteHubTranslation($translationId: ID!) {\n completeHubTranslation(translationId: $translationId) {\n id\n status\n progress\n completedAt\n }\n }\n"): (typeof documents)["\n mutation CompleteHubTranslation($translationId: ID!) {\n completeHubTranslation(translationId: $translationId) {\n id\n status\n progress\n completedAt\n }\n }\n"];
|
|
1864
|
+
/**
|
|
1865
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1866
|
+
*/
|
|
1867
|
+
declare function graphql(source: "\n mutation UseAiSuggestion($entryId: ID!) {\n useAiSuggestion(entryId: $entryId) {\n id\n translatedText\n isApproved\n isEdited\n }\n }\n"): (typeof documents)["\n mutation UseAiSuggestion($entryId: ID!) {\n useAiSuggestion(entryId: $entryId) {\n id\n translatedText\n isApproved\n isEdited\n }\n }\n"];
|
|
1868
|
+
/**
|
|
1869
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1870
|
+
*/
|
|
1871
|
+
declare function graphql(source: "\n mutation ReviewTranslationReviewer($input: ReviewReviewerInput!) {\n reviewTranslationReviewer(input: $input) {\n id\n status\n approvedLanguages\n approvedAt\n approvedById\n }\n }\n"): (typeof documents)["\n mutation ReviewTranslationReviewer($input: ReviewReviewerInput!) {\n reviewTranslationReviewer(input: $input) {\n id\n status\n approvedLanguages\n approvedAt\n approvedById\n }\n }\n"];
|
|
1872
|
+
/**
|
|
1873
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1874
|
+
*/
|
|
1875
|
+
declare function graphql(source: "\n mutation SuspendTranslationReviewer($reviewerId: ID!, $reason: String) {\n suspendTranslationReviewer(reviewerId: $reviewerId, reason: $reason) {\n id\n status\n }\n }\n"): (typeof documents)["\n mutation SuspendTranslationReviewer($reviewerId: ID!, $reason: String) {\n suspendTranslationReviewer(reviewerId: $reviewerId, reason: $reason) {\n id\n status\n }\n }\n"];
|
|
1876
|
+
/**
|
|
1877
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1878
|
+
*/
|
|
1879
|
+
declare function graphql(source: "\n mutation ReactivateTranslationReviewer($reviewerId: ID!) {\n reactivateTranslationReviewer(reviewerId: $reviewerId) {\n id\n status\n }\n }\n"): (typeof documents)["\n mutation ReactivateTranslationReviewer($reviewerId: ID!) {\n reactivateTranslationReviewer(reviewerId: $reviewerId) {\n id\n status\n }\n }\n"];
|
|
1880
|
+
/**
|
|
1881
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1882
|
+
*/
|
|
1883
|
+
declare function graphql(source: "\n mutation ApproveReviewerLanguages($reviewerId: ID!, $languages: [String!]!) {\n approveReviewerLanguages(reviewerId: $reviewerId, languages: $languages) {\n id\n approvedLanguages\n approvedLanguageDetails {\n code\n name\n flag\n }\n }\n }\n"): (typeof documents)["\n mutation ApproveReviewerLanguages($reviewerId: ID!, $languages: [String!]!) {\n approveReviewerLanguages(reviewerId: $reviewerId, languages: $languages) {\n id\n approvedLanguages\n approvedLanguageDetails {\n code\n name\n flag\n }\n }\n }\n"];
|
|
1884
|
+
/**
|
|
1885
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1886
|
+
*/
|
|
1887
|
+
declare function graphql(source: "\n mutation AssignHubTranslation($input: AssignTranslationInput!) {\n assignHubTranslation(input: $input) {\n id\n status\n assignedToId\n assignedReviewer {\n id\n name\n }\n assignedAt\n }\n }\n"): (typeof documents)["\n mutation AssignHubTranslation($input: AssignTranslationInput!) {\n assignHubTranslation(input: $input) {\n id\n status\n assignedToId\n assignedReviewer {\n id\n name\n }\n assignedAt\n }\n }\n"];
|
|
1888
|
+
/**
|
|
1889
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1890
|
+
*/
|
|
1891
|
+
declare function graphql(source: "\n mutation ReassignHubTranslation($translationId: ID!, $newReviewerId: ID!) {\n reassignHubTranslation(translationId: $translationId, newReviewerId: $newReviewerId) {\n id\n assignedToId\n assignedReviewer {\n id\n name\n }\n assignedAt\n }\n }\n"): (typeof documents)["\n mutation ReassignHubTranslation($translationId: ID!, $newReviewerId: ID!) {\n reassignHubTranslation(translationId: $translationId, newReviewerId: $newReviewerId) {\n id\n assignedToId\n assignedReviewer {\n id\n name\n }\n assignedAt\n }\n }\n"];
|
|
1892
|
+
/**
|
|
1893
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1894
|
+
*/
|
|
1895
|
+
declare function graphql(source: "\n mutation UnassignHubTranslation($translationId: ID!) {\n unassignHubTranslation(translationId: $translationId) {\n id\n status\n assignedToId\n assignedAt\n }\n }\n"): (typeof documents)["\n mutation UnassignHubTranslation($translationId: ID!) {\n unassignHubTranslation(translationId: $translationId) {\n id\n status\n assignedToId\n assignedAt\n }\n }\n"];
|
|
1896
|
+
/**
|
|
1897
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1898
|
+
*/
|
|
1899
|
+
declare function graphql(source: "\n mutation RequestTranslationRevision($translationId: ID!, $reason: String!) {\n requestTranslationRevision(translationId: $translationId, reason: $reason) {\n id\n status\n }\n }\n"): (typeof documents)["\n mutation RequestTranslationRevision($translationId: ID!, $reason: String!) {\n requestTranslationRevision(translationId: $translationId, reason: $reason) {\n id\n status\n }\n }\n"];
|
|
1900
|
+
/**
|
|
1901
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1902
|
+
*/
|
|
1903
|
+
declare function graphql(source: "\n mutation GenerateAiTranslations($gameVersionId: ID!, $targetLanguages: [String!]!) {\n generateAiTranslations(gameVersionId: $gameVersionId, targetLanguages: $targetLanguages) {\n id\n targetLanguage\n status\n aiGenerated\n totalKeys\n }\n }\n"): (typeof documents)["\n mutation GenerateAiTranslations($gameVersionId: ID!, $targetLanguages: [String!]!) {\n generateAiTranslations(gameVersionId: $gameVersionId, targetLanguages: $targetLanguages) {\n id\n targetLanguage\n status\n aiGenerated\n totalKeys\n }\n }\n"];
|
|
1904
|
+
/**
|
|
1905
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1906
|
+
*/
|
|
1907
|
+
declare function graphql(source: "\n mutation UpsertAiPrompt($input: AiPromptInput!) {\n upsertAiPrompt(input: $input) {\n id\n name\n description\n purpose\n template\n variables\n model\n temperature\n maxTokens\n isActive\n insertedAt\n updatedAt\n }\n }\n"): (typeof documents)["\n mutation UpsertAiPrompt($input: AiPromptInput!) {\n upsertAiPrompt(input: $input) {\n id\n name\n description\n purpose\n template\n variables\n model\n temperature\n maxTokens\n isActive\n insertedAt\n updatedAt\n }\n }\n"];
|
|
1908
|
+
/**
|
|
1909
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1910
|
+
*/
|
|
1911
|
+
declare function graphql(source: "\n mutation CreateAiPromptVersion($input: AiPromptVersionInput!) {\n createAiPromptVersion(input: $input) {\n id\n promptId\n version\n template\n variables\n model\n temperature\n maxTokens\n changeNote\n insertedAt\n }\n }\n"): (typeof documents)["\n mutation CreateAiPromptVersion($input: AiPromptVersionInput!) {\n createAiPromptVersion(input: $input) {\n id\n promptId\n version\n template\n variables\n model\n temperature\n maxTokens\n changeNote\n insertedAt\n }\n }\n"];
|
|
1912
|
+
/**
|
|
1913
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1914
|
+
*/
|
|
1915
|
+
declare function graphql(source: "\n mutation SaveAiTranslationEntries($input: SaveAiTranslationEntriesInput!) {\n saveAiTranslationEntries(input: $input) {\n success\n updatedCount\n translation {\n id\n status\n progress\n completedKeys\n aiGenerated\n }\n updatedEntries {\n id\n translatedText\n aiSuggestion\n isApproved\n isEdited\n }\n }\n }\n"): (typeof documents)["\n mutation SaveAiTranslationEntries($input: SaveAiTranslationEntriesInput!) {\n saveAiTranslationEntries(input: $input) {\n success\n updatedCount\n translation {\n id\n status\n progress\n completedKeys\n aiGenerated\n }\n updatedEntries {\n id\n translatedText\n aiSuggestion\n isApproved\n isEdited\n }\n }\n }\n"];
|
|
1916
|
+
/**
|
|
1917
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1918
|
+
*/
|
|
1919
|
+
declare function graphql(source: "\n query GetMe {\n me {\n id\n email\n name\n avatar\n status\n languages\n approvedLanguages\n bio\n completedTranslations\n averageRating\n appliedAt\n approvedAt\n }\n }\n"): (typeof documents)["\n query GetMe {\n me {\n id\n email\n name\n avatar\n status\n languages\n approvedLanguages\n bio\n completedTranslations\n averageRating\n appliedAt\n approvedAt\n }\n }\n"];
|
|
1920
|
+
/**
|
|
1921
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1922
|
+
*/
|
|
1923
|
+
declare function graphql(source: "\n query GetReviewerDashboard {\n reviewerDashboard {\n reviewer {\n id\n name\n email\n avatar\n status\n approvedLanguages\n }\n activeGameGroups {\n gameId\n game {\n id\n title\n thumbnailUrl\n }\n gameVersion {\n id\n version\n }\n translations {\n id\n targetLanguage\n status\n progress\n totalKeys\n completedKeys\n }\n totalProgress\n totalKeys\n completedKeys\n }\n recentlyCompleted {\n gameId\n game {\n id\n title\n }\n translations {\n id\n targetLanguage\n completedAt\n }\n }\n stats {\n assignedTranslations\n completedTranslations\n pendingReview\n averageCompletionTime\n activeGames\n activeLanguages\n }\n }\n }\n"): (typeof documents)["\n query GetReviewerDashboard {\n reviewerDashboard {\n reviewer {\n id\n name\n email\n avatar\n status\n approvedLanguages\n }\n activeGameGroups {\n gameId\n game {\n id\n title\n thumbnailUrl\n }\n gameVersion {\n id\n version\n }\n translations {\n id\n targetLanguage\n status\n progress\n totalKeys\n completedKeys\n }\n totalProgress\n totalKeys\n completedKeys\n }\n recentlyCompleted {\n gameId\n game {\n id\n title\n }\n translations {\n id\n targetLanguage\n completedAt\n }\n }\n stats {\n assignedTranslations\n completedTranslations\n pendingReview\n averageCompletionTime\n activeGames\n activeLanguages\n }\n }\n }\n"];
|
|
1924
|
+
/**
|
|
1925
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1926
|
+
*/
|
|
1927
|
+
declare function graphql(source: "\n query GetMyQueue($searchQuery: String) {\n myQueue(searchQuery: $searchQuery) {\n gameId\n game {\n id\n title\n thumbnailUrl\n subject\n gradeLevel\n }\n gameVersion {\n id\n version\n }\n translations {\n id\n targetLanguage\n targetLanguageDetails {\n code\n name\n nativeName\n flag\n }\n status\n progress\n totalKeys\n completedKeys\n assignedAt\n }\n totalProgress\n totalKeys\n completedKeys\n earliestAssignmentDate\n }\n }\n"): (typeof documents)["\n query GetMyQueue($searchQuery: String) {\n myQueue(searchQuery: $searchQuery) {\n gameId\n game {\n id\n title\n thumbnailUrl\n subject\n gradeLevel\n }\n gameVersion {\n id\n version\n }\n translations {\n id\n targetLanguage\n targetLanguageDetails {\n code\n name\n nativeName\n flag\n }\n status\n progress\n totalKeys\n completedKeys\n assignedAt\n }\n totalProgress\n totalKeys\n completedKeys\n earliestAssignmentDate\n }\n }\n"];
|
|
1928
|
+
/**
|
|
1929
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1930
|
+
*/
|
|
1931
|
+
declare function graphql(source: "\n query GetMyStats {\n myStats {\n assignedTranslations\n completedTranslations\n pendingReview\n averageCompletionTime\n activeGames\n activeLanguages\n }\n }\n"): (typeof documents)["\n query GetMyStats {\n myStats {\n assignedTranslations\n completedTranslations\n pendingReview\n averageCompletionTime\n activeGames\n activeLanguages\n }\n }\n"];
|
|
1932
|
+
/**
|
|
1933
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1934
|
+
*/
|
|
1935
|
+
declare function graphql(source: "\n query GetTranslation($id: ID!) {\n translation(id: $id) {\n id\n gameVersionId\n game {\n id\n title\n thumbnailUrl\n playUrl\n }\n gameVersion {\n id\n version\n translationKeys\n }\n targetLanguage\n targetLanguageDetails {\n code\n name\n nativeName\n flag\n }\n status\n progress\n totalKeys\n completedKeys\n assignedToId\n assignedAt\n completedAt\n aiGenerated\n totalEntries\n siblingTranslations {\n id\n targetLanguage\n targetLanguageDetails {\n code\n name\n flag\n }\n status\n progress\n }\n }\n }\n"): (typeof documents)["\n query GetTranslation($id: ID!) {\n translation(id: $id) {\n id\n gameVersionId\n game {\n id\n title\n thumbnailUrl\n playUrl\n }\n gameVersion {\n id\n version\n translationKeys\n }\n targetLanguage\n targetLanguageDetails {\n code\n name\n nativeName\n flag\n }\n status\n progress\n totalKeys\n completedKeys\n assignedToId\n assignedAt\n completedAt\n aiGenerated\n totalEntries\n siblingTranslations {\n id\n targetLanguage\n targetLanguageDetails {\n code\n name\n flag\n }\n status\n progress\n }\n }\n }\n"];
|
|
1936
|
+
/**
|
|
1937
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1938
|
+
*/
|
|
1939
|
+
declare function graphql(source: "\n query GetTranslationEntries(\n $translationId: ID!\n $limit: Int\n $offset: Int\n $pendingOnly: Boolean\n $approvedOnly: Boolean\n ) {\n translationEntries(\n translationId: $translationId\n limit: $limit\n offset: $offset\n pendingOnly: $pendingOnly\n approvedOnly: $approvedOnly\n ) {\n id\n translationId\n key\n sourceText\n translatedText\n aiSuggestion\n isApproved\n isEdited\n context\n reviewerNotes\n order\n audioFiles {\n id\n speed\n url\n }\n }\n }\n"): (typeof documents)["\n query GetTranslationEntries(\n $translationId: ID!\n $limit: Int\n $offset: Int\n $pendingOnly: Boolean\n $approvedOnly: Boolean\n ) {\n translationEntries(\n translationId: $translationId\n limit: $limit\n offset: $offset\n pendingOnly: $pendingOnly\n approvedOnly: $approvedOnly\n ) {\n id\n translationId\n key\n sourceText\n translatedText\n aiSuggestion\n isApproved\n isEdited\n context\n reviewerNotes\n order\n audioFiles {\n id\n speed\n url\n }\n }\n }\n"];
|
|
1940
|
+
/**
|
|
1941
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1942
|
+
*/
|
|
1943
|
+
declare function graphql(source: "\n query GetSiblingTranslations($translationId: ID!) {\n siblingTranslations(translationId: $translationId) {\n id\n targetLanguage\n targetLanguageDetails {\n code\n name\n nativeName\n flag\n }\n status\n progress\n totalKeys\n completedKeys\n }\n }\n"): (typeof documents)["\n query GetSiblingTranslations($translationId: ID!) {\n siblingTranslations(translationId: $translationId) {\n id\n targetLanguage\n targetLanguageDetails {\n code\n name\n nativeName\n flag\n }\n status\n progress\n totalKeys\n completedKeys\n }\n }\n"];
|
|
1944
|
+
/**
|
|
1945
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1946
|
+
*/
|
|
1947
|
+
declare function graphql(source: "\n query GetMyCompletedTranslations($limit: Int) {\n myCompletedTranslations(limit: $limit) {\n gameId\n game {\n id\n title\n thumbnailUrl\n }\n gameVersion {\n id\n version\n }\n translations {\n id\n targetLanguage\n completedAt\n }\n }\n }\n"): (typeof documents)["\n query GetMyCompletedTranslations($limit: Int) {\n myCompletedTranslations(limit: $limit) {\n gameId\n game {\n id\n title\n thumbnailUrl\n }\n gameVersion {\n id\n version\n }\n translations {\n id\n targetLanguage\n completedAt\n }\n }\n }\n"];
|
|
1948
|
+
/**
|
|
1949
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1950
|
+
*/
|
|
1951
|
+
declare function graphql(source: "\n query GetTranslationHubAdminDashboard {\n translationHubAdminDashboard {\n stats {\n pendingReviewers\n activeReviewers\n pendingTranslations\n completedThisMonth\n totalGames\n languagesCovered\n totalPendingStrings\n averageCompletionDays\n }\n pendingReviewers {\n id\n name\n email\n languages\n bio\n appliedAt\n }\n activeTranslations {\n id\n game {\n id\n title\n }\n targetLanguage\n status\n progress\n assignedReviewer {\n id\n name\n }\n }\n recentGames {\n id\n title\n thumbnailUrl\n }\n }\n }\n"): (typeof documents)["\n query GetTranslationHubAdminDashboard {\n translationHubAdminDashboard {\n stats {\n pendingReviewers\n activeReviewers\n pendingTranslations\n completedThisMonth\n totalGames\n languagesCovered\n totalPendingStrings\n averageCompletionDays\n }\n pendingReviewers {\n id\n name\n email\n languages\n bio\n appliedAt\n }\n activeTranslations {\n id\n game {\n id\n title\n }\n targetLanguage\n status\n progress\n assignedReviewer {\n id\n name\n }\n }\n recentGames {\n id\n title\n thumbnailUrl\n }\n }\n }\n"];
|
|
1952
|
+
/**
|
|
1953
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1954
|
+
*/
|
|
1955
|
+
declare function graphql(source: "\n query GetTranslationHubAdminStats {\n translationHubAdminStats {\n pendingReviewers\n activeReviewers\n pendingTranslations\n completedThisMonth\n totalGames\n languagesCovered\n totalPendingStrings\n averageCompletionDays\n }\n }\n"): (typeof documents)["\n query GetTranslationHubAdminStats {\n translationHubAdminStats {\n pendingReviewers\n activeReviewers\n pendingTranslations\n completedThisMonth\n totalGames\n languagesCovered\n totalPendingStrings\n averageCompletionDays\n }\n }\n"];
|
|
1956
|
+
/**
|
|
1957
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1958
|
+
*/
|
|
1959
|
+
declare function graphql(source: "\n query GetTranslationReviewers(\n $filter: ReviewerFilterInput\n $limit: Int\n $offset: Int\n ) {\n translationReviewers(filter: $filter, limit: $limit, offset: $offset) {\n id\n email\n name\n avatar\n status\n languages\n approvedLanguages\n bio\n completedTranslations\n averageRating\n appliedAt\n approvedAt\n }\n }\n"): (typeof documents)["\n query GetTranslationReviewers(\n $filter: ReviewerFilterInput\n $limit: Int\n $offset: Int\n ) {\n translationReviewers(filter: $filter, limit: $limit, offset: $offset) {\n id\n email\n name\n avatar\n status\n languages\n approvedLanguages\n bio\n completedTranslations\n averageRating\n appliedAt\n approvedAt\n }\n }\n"];
|
|
1960
|
+
/**
|
|
1961
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1962
|
+
*/
|
|
1963
|
+
declare function graphql(source: "\n query GetTranslationReviewer($id: ID!) {\n translationReviewer(id: $id) {\n id\n email\n name\n avatar\n status\n languages\n approvedLanguages\n languageDetails {\n code\n name\n nativeName\n flag\n }\n approvedLanguageDetails {\n code\n name\n nativeName\n flag\n }\n bio\n completedTranslations\n averageRating\n appliedAt\n approvedAt\n approvedById\n translations(activeOnly: true) {\n id\n game {\n id\n title\n }\n targetLanguage\n status\n progress\n }\n }\n }\n"): (typeof documents)["\n query GetTranslationReviewer($id: ID!) {\n translationReviewer(id: $id) {\n id\n email\n name\n avatar\n status\n languages\n approvedLanguages\n languageDetails {\n code\n name\n nativeName\n flag\n }\n approvedLanguageDetails {\n code\n name\n nativeName\n flag\n }\n bio\n completedTranslations\n averageRating\n appliedAt\n approvedAt\n approvedById\n translations(activeOnly: true) {\n id\n game {\n id\n title\n }\n targetLanguage\n status\n progress\n }\n }\n }\n"];
|
|
1964
|
+
/**
|
|
1965
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1966
|
+
*/
|
|
1967
|
+
declare function graphql(source: "\n query GetPendingTranslationReviewers($limit: Int) {\n pendingTranslationReviewers(limit: $limit) {\n id\n email\n name\n languages\n languageDetails {\n code\n name\n nativeName\n flag\n }\n bio\n appliedAt\n }\n }\n"): (typeof documents)["\n query GetPendingTranslationReviewers($limit: Int) {\n pendingTranslationReviewers(limit: $limit) {\n id\n email\n name\n languages\n languageDetails {\n code\n name\n nativeName\n flag\n }\n bio\n appliedAt\n }\n }\n"];
|
|
1968
|
+
/**
|
|
1969
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1970
|
+
*/
|
|
1971
|
+
declare function graphql(source: "\n query GetEligibleReviewers($languageCode: String!) {\n eligibleReviewers(languageCode: $languageCode) {\n id\n name\n email\n approvedLanguages\n completedTranslations\n averageRating\n }\n }\n"): (typeof documents)["\n query GetEligibleReviewers($languageCode: String!) {\n eligibleReviewers(languageCode: $languageCode) {\n id\n name\n email\n approvedLanguages\n completedTranslations\n averageRating\n }\n }\n"];
|
|
1972
|
+
/**
|
|
1973
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1974
|
+
*/
|
|
1975
|
+
declare function graphql(source: "\n query GetHubTranslations(\n $filter: TranslationFilterInput\n $limit: Int\n $offset: Int\n ) {\n hubTranslations(filter: $filter, limit: $limit, offset: $offset) {\n id\n game {\n id\n title\n thumbnailUrl\n }\n gameVersion {\n id\n version\n }\n targetLanguage\n targetLanguageDetails {\n code\n name\n flag\n }\n status\n progress\n totalKeys\n completedKeys\n assignedToId\n assignedReviewer {\n id\n name\n }\n assignedAt\n completedAt\n aiGenerated\n }\n }\n"): (typeof documents)["\n query GetHubTranslations(\n $filter: TranslationFilterInput\n $limit: Int\n $offset: Int\n ) {\n hubTranslations(filter: $filter, limit: $limit, offset: $offset) {\n id\n game {\n id\n title\n thumbnailUrl\n }\n gameVersion {\n id\n version\n }\n targetLanguage\n targetLanguageDetails {\n code\n name\n flag\n }\n status\n progress\n totalKeys\n completedKeys\n assignedToId\n assignedReviewer {\n id\n name\n }\n assignedAt\n completedAt\n aiGenerated\n }\n }\n"];
|
|
1976
|
+
/**
|
|
1977
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1978
|
+
*/
|
|
1979
|
+
declare function graphql(source: "\n query GetUnassignedTranslations($languageCode: String) {\n unassignedTranslations(languageCode: $languageCode) {\n id\n game {\n id\n title\n thumbnailUrl\n }\n targetLanguage\n targetLanguageDetails {\n code\n name\n flag\n }\n totalKeys\n aiGenerated\n insertedAt\n }\n }\n"): (typeof documents)["\n query GetUnassignedTranslations($languageCode: String) {\n unassignedTranslations(languageCode: $languageCode) {\n id\n game {\n id\n title\n thumbnailUrl\n }\n targetLanguage\n targetLanguageDetails {\n code\n name\n flag\n }\n totalKeys\n aiGenerated\n insertedAt\n }\n }\n"];
|
|
1980
|
+
/**
|
|
1981
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1982
|
+
*/
|
|
1983
|
+
declare function graphql(source: "\n query GetActiveHubTranslations($limit: Int) {\n activeHubTranslations(limit: $limit) {\n id\n game {\n id\n title\n }\n targetLanguage\n status\n progress\n assignedReviewer {\n id\n name\n }\n assignedAt\n }\n }\n"): (typeof documents)["\n query GetActiveHubTranslations($limit: Int) {\n activeHubTranslations(limit: $limit) {\n id\n game {\n id\n title\n }\n targetLanguage\n status\n progress\n assignedReviewer {\n id\n name\n }\n assignedAt\n }\n }\n"];
|
|
1984
|
+
/**
|
|
1985
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1986
|
+
*/
|
|
1987
|
+
declare function graphql(source: "\n query GetHubGames($limit: Int, $offset: Int, $searchQuery: String) {\n hubGames(limit: $limit, offset: $offset, searchQuery: $searchQuery) {\n id\n title\n description\n thumbnailUrl\n subject\n gradeLevel\n currentVersion\n developer {\n id\n name\n companyName\n }\n translations {\n id\n targetLanguage\n status\n progress\n }\n }\n }\n"): (typeof documents)["\n query GetHubGames($limit: Int, $offset: Int, $searchQuery: String) {\n hubGames(limit: $limit, offset: $offset, searchQuery: $searchQuery) {\n id\n title\n description\n thumbnailUrl\n subject\n gradeLevel\n currentVersion\n developer {\n id\n name\n companyName\n }\n translations {\n id\n targetLanguage\n status\n progress\n }\n }\n }\n"];
|
|
1988
|
+
/**
|
|
1989
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1990
|
+
*/
|
|
1991
|
+
declare function graphql(source: "\n query GetRecentHubGames($limit: Int) {\n recentHubGames(limit: $limit) {\n id\n title\n thumbnailUrl\n currentVersion\n }\n }\n"): (typeof documents)["\n query GetRecentHubGames($limit: Int) {\n recentHubGames(limit: $limit) {\n id\n title\n thumbnailUrl\n currentVersion\n }\n }\n"];
|
|
1992
|
+
/**
|
|
1993
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1994
|
+
*/
|
|
1995
|
+
declare function graphql(source: "\n query GetHubGame($id: ID!) {\n hubGame(id: $id) {\n id\n title\n description\n thumbnailUrl\n subject\n gradeLevel\n currentVersion\n developer {\n id\n name\n companyName\n email\n }\n translations {\n id\n targetLanguage\n targetLanguageDetails {\n code\n name\n flag\n }\n status\n progress\n totalKeys\n completedKeys\n assignedReviewer {\n id\n name\n }\n aiGenerated\n }\n playUrl\n }\n }\n"): (typeof documents)["\n query GetHubGame($id: ID!) {\n hubGame(id: $id) {\n id\n title\n description\n thumbnailUrl\n subject\n gradeLevel\n currentVersion\n developer {\n id\n name\n companyName\n email\n }\n translations {\n id\n targetLanguage\n targetLanguageDetails {\n code\n name\n flag\n }\n status\n progress\n totalKeys\n completedKeys\n assignedReviewer {\n id\n name\n }\n aiGenerated\n }\n playUrl\n }\n }\n"];
|
|
1996
|
+
/**
|
|
1997
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1998
|
+
*/
|
|
1999
|
+
declare function graphql(source: "\n query GetSupportedLanguages {\n supportedLanguages {\n code\n name\n nativeName\n flag\n }\n }\n"): (typeof documents)["\n query GetSupportedLanguages {\n supportedLanguages {\n code\n name\n nativeName\n flag\n }\n }\n"];
|
|
2000
|
+
/**
|
|
2001
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
2002
|
+
*/
|
|
2003
|
+
declare function graphql(source: "\n query GetTranslationLanguage($code: String!) {\n translationLanguage(code: $code) {\n code\n name\n nativeName\n flag\n }\n }\n"): (typeof documents)["\n query GetTranslationLanguage($code: String!) {\n translationLanguage(code: $code) {\n code\n name\n nativeName\n flag\n }\n }\n"];
|
|
2004
|
+
/**
|
|
2005
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
2006
|
+
*/
|
|
2007
|
+
declare function graphql(source: "\n query GetAiPrompts($purpose: String, $activeOnly: Boolean) {\n aiPrompts(purpose: $purpose, activeOnly: $activeOnly) {\n id\n name\n description\n purpose\n template\n variables\n model\n temperature\n maxTokens\n isActive\n insertedAt\n updatedAt\n }\n }\n"): (typeof documents)["\n query GetAiPrompts($purpose: String, $activeOnly: Boolean) {\n aiPrompts(purpose: $purpose, activeOnly: $activeOnly) {\n id\n name\n description\n purpose\n template\n variables\n model\n temperature\n maxTokens\n isActive\n insertedAt\n updatedAt\n }\n }\n"];
|
|
2008
|
+
/**
|
|
2009
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
2010
|
+
*/
|
|
2011
|
+
declare function graphql(source: "\n query GetAiPrompt($id: ID!) {\n aiPrompt(id: $id) {\n id\n name\n description\n purpose\n template\n variables\n model\n temperature\n maxTokens\n isActive\n insertedAt\n updatedAt\n versions {\n id\n version\n template\n variables\n model\n temperature\n maxTokens\n changeNote\n insertedAt\n }\n }\n }\n"): (typeof documents)["\n query GetAiPrompt($id: ID!) {\n aiPrompt(id: $id) {\n id\n name\n description\n purpose\n template\n variables\n model\n temperature\n maxTokens\n isActive\n insertedAt\n updatedAt\n versions {\n id\n version\n template\n variables\n model\n temperature\n maxTokens\n changeNote\n insertedAt\n }\n }\n }\n"];
|
|
2012
|
+
/**
|
|
2013
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
2014
|
+
*/
|
|
2015
|
+
declare function graphql(source: "\n query GetAiPromptVersions($promptId: ID!) {\n aiPromptVersions(promptId: $promptId) {\n id\n promptId\n version\n template\n variables\n model\n temperature\n maxTokens\n changeNote\n insertedAt\n updatedAt\n }\n }\n"): (typeof documents)["\n query GetAiPromptVersions($promptId: ID!) {\n aiPromptVersions(promptId: $promptId) {\n id\n promptId\n version\n template\n variables\n model\n temperature\n maxTokens\n changeNote\n insertedAt\n updatedAt\n }\n }\n"];
|
|
2016
|
+
type DocumentType<TDocumentNode extends TypedDocumentNode<any, any>> = TDocumentNode extends TypedDocumentNode<infer TType, any> ? TType : never;
|
|
2017
|
+
|
|
2018
|
+
export { type AiPrompt, type AiPromptInput, type AiPromptVersion, type AiPromptVersionInput, ApproveReviewerLanguagesDocument, type ApproveReviewerLanguagesMutation, type ApproveReviewerLanguagesMutationVariables, AssignHubTranslationDocument, type AssignHubTranslationMutation, type AssignHubTranslationMutationVariables, type AssignTranslationInput, AssignmentPriority, CompleteHubTranslationDocument, type CompleteHubTranslationMutation, type CompleteHubTranslationMutationVariables, CreateAiPromptVersionDocument, type CreateAiPromptVersionMutation, type CreateAiPromptVersionMutationVariables, type CreateTranslationReviewerInput, type DocumentType, type Exact, type FragmentType, type GameTranslationGroup, GenerateAiTranslationsDocument, type GenerateAiTranslationsMutation, type GenerateAiTranslationsMutationVariables, GetActiveHubTranslationsDocument, type GetActiveHubTranslationsQuery, type GetActiveHubTranslationsQueryVariables, GetAiPromptDocument, type GetAiPromptQuery, type GetAiPromptQueryVariables, GetAiPromptVersionsDocument, type GetAiPromptVersionsQuery, type GetAiPromptVersionsQueryVariables, GetAiPromptsDocument, type GetAiPromptsQuery, type GetAiPromptsQueryVariables, GetEligibleReviewersDocument, type GetEligibleReviewersQuery, type GetEligibleReviewersQueryVariables, GetHubGameDocument, type GetHubGameQuery, type GetHubGameQueryVariables, GetHubGamesDocument, type GetHubGamesQuery, type GetHubGamesQueryVariables, GetHubTranslationsDocument, type GetHubTranslationsQuery, type GetHubTranslationsQueryVariables, GetMeDocument, type GetMeQuery, type GetMeQueryVariables, GetMyCompletedTranslationsDocument, type GetMyCompletedTranslationsQuery, type GetMyCompletedTranslationsQueryVariables, GetMyQueueDocument, type GetMyQueueQuery, type GetMyQueueQueryVariables, GetMyStatsDocument, type GetMyStatsQuery, type GetMyStatsQueryVariables, GetPendingTranslationReviewersDocument, type GetPendingTranslationReviewersQuery, type GetPendingTranslationReviewersQueryVariables, GetRecentHubGamesDocument, type GetRecentHubGamesQuery, type GetRecentHubGamesQueryVariables, GetReviewerDashboardDocument, type GetReviewerDashboardQuery, type GetReviewerDashboardQueryVariables, GetSiblingTranslationsDocument, type GetSiblingTranslationsQuery, type GetSiblingTranslationsQueryVariables, GetSupportedLanguagesDocument, type GetSupportedLanguagesQuery, type GetSupportedLanguagesQueryVariables, GetTranslationDocument, GetTranslationEntriesDocument, type GetTranslationEntriesQuery, type GetTranslationEntriesQueryVariables, GetTranslationHubAdminDashboardDocument, type GetTranslationHubAdminDashboardQuery, type GetTranslationHubAdminDashboardQueryVariables, GetTranslationHubAdminStatsDocument, type GetTranslationHubAdminStatsQuery, type GetTranslationHubAdminStatsQueryVariables, GetTranslationLanguageDocument, type GetTranslationLanguageQuery, type GetTranslationLanguageQueryVariables, type GetTranslationQuery, type GetTranslationQueryVariables, GetTranslationReviewerDocument, type GetTranslationReviewerQuery, type GetTranslationReviewerQueryVariables, GetTranslationReviewersDocument, type GetTranslationReviewersQuery, type GetTranslationReviewersQueryVariables, GetUnassignedTranslationsDocument, type GetUnassignedTranslationsQuery, type GetUnassignedTranslationsQueryVariables, type HubGame, type HubGameDeveloper, type HubGamePlayUrlArgs, type HubGameVersion, type HubTranslation, type HubTranslationEntriesArgs, type Incremental, type InputMaybe, type MakeEmpty, type MakeMaybe, type MakeOptional, type Maybe, type PhraseAudio, ReactivateTranslationReviewerDocument, type ReactivateTranslationReviewerMutation, type ReactivateTranslationReviewerMutationVariables, ReassignHubTranslationDocument, type ReassignHubTranslationMutation, type ReassignHubTranslationMutationVariables, RequestTranslationRevisionDocument, type RequestTranslationRevisionMutation, type RequestTranslationRevisionMutationVariables, type ReviewReviewerInput, ReviewTranslationReviewerDocument, type ReviewTranslationReviewerMutation, type ReviewTranslationReviewerMutationVariables, type ReviewerDashboard, type ReviewerFilterInput, type RootMutationType, type RootMutationTypeApproveReviewerLanguagesArgs, type RootMutationTypeAssignHubTranslationArgs, type RootMutationTypeCompleteHubTranslationArgs, type RootMutationTypeCreateAiPromptVersionArgs, type RootMutationTypeGenerateAiTranslationsArgs, type RootMutationTypeReactivateTranslationReviewerArgs, type RootMutationTypeReassignHubTranslationArgs, type RootMutationTypeRequestTranslationRevisionArgs, type RootMutationTypeReviewTranslationReviewerArgs, type RootMutationTypeSaveAiTranslationEntriesArgs, type RootMutationTypeSaveTranslationEntriesArgs, type RootMutationTypeSuspendTranslationReviewerArgs, type RootMutationTypeTranslationHubLoginArgs, type RootMutationTypeTranslationHubSignupArgs, type RootMutationTypeUnassignHubTranslationArgs, type RootMutationTypeUpsertAiPromptArgs, type RootMutationTypeUseAiSuggestionArgs, type RootQueryType, type RootQueryTypeActiveHubTranslationsArgs, type RootQueryTypeAiPromptArgs, type RootQueryTypeAiPromptVersionsArgs, type RootQueryTypeAiPromptsArgs, type RootQueryTypeEligibleReviewersArgs, type RootQueryTypeHubGameArgs, type RootQueryTypeHubGamesArgs, type RootQueryTypeHubTranslationsArgs, type RootQueryTypeMyCompletedTranslationsArgs, type RootQueryTypeMyQueueArgs, type RootQueryTypePendingTranslationReviewersArgs, type RootQueryTypeRecentHubGamesArgs, type RootQueryTypeSiblingTranslationsArgs, type RootQueryTypeTranslationArgs, type RootQueryTypeTranslationEntriesArgs, type RootQueryTypeTranslationLanguageArgs, type RootQueryTypeTranslationReviewerArgs, type RootQueryTypeTranslationReviewersArgs, type RootQueryTypeUnassignedTranslationsArgs, SaveAiTranslationEntriesDocument, type SaveAiTranslationEntriesInput, type SaveAiTranslationEntriesMutation, type SaveAiTranslationEntriesMutationVariables, type SaveEntriesResult, SaveTranslationEntriesDocument, type SaveTranslationEntriesInput, type SaveTranslationEntriesMutation, type SaveTranslationEntriesMutationVariables, type Scalars, SuspendTranslationReviewerDocument, type SuspendTranslationReviewerMutation, type SuspendTranslationReviewerMutationVariables, type TranslationEntry, type TranslationEntryEditInput, type TranslationFilterInput, type TranslationHubAdminDashboard, type TranslationHubAdminStats, type TranslationHubAuthPayload, TranslationHubLoginDocument, type TranslationHubLoginMutation, type TranslationHubLoginMutationVariables, TranslationHubLogoutDocument, type TranslationHubLogoutMutation, type TranslationHubLogoutMutationVariables, TranslationHubSignupDocument, type TranslationHubSignupMutation, type TranslationHubSignupMutationVariables, type TranslationLanguage, type TranslationReviewer, type TranslationReviewerStats, TranslationReviewerStatus, type TranslationReviewerTranslationsArgs, type TranslationReviewerTranslationsByGameArgs, TranslationStatus, UnassignHubTranslationDocument, type UnassignHubTranslationMutation, type UnassignHubTranslationMutationVariables, UpsertAiPromptDocument, type UpsertAiPromptMutation, type UpsertAiPromptMutationVariables, UseAiSuggestionDocument, type UseAiSuggestionMutation, type UseAiSuggestionMutationVariables, graphql, isFragmentReady, makeFragmentData, useFragment };
|