@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.
Files changed (74) hide show
  1. package/README.md +172 -0
  2. package/dist/auth/index.d.mts +1 -0
  3. package/dist/auth/index.d.ts +1 -0
  4. package/dist/auth/index.js +12 -0
  5. package/dist/auth/index.js.map +1 -0
  6. package/dist/auth/index.mjs +3 -0
  7. package/dist/auth/index.mjs.map +1 -0
  8. package/dist/cache/index.d.mts +26 -0
  9. package/dist/cache/index.d.ts +26 -0
  10. package/dist/cache/index.js +63 -0
  11. package/dist/cache/index.js.map +1 -0
  12. package/dist/cache/index.mjs +60 -0
  13. package/dist/cache/index.mjs.map +1 -0
  14. package/dist/chunk-Q4UXELOU.mjs +284 -0
  15. package/dist/chunk-Q4UXELOU.mjs.map +1 -0
  16. package/dist/chunk-WWN77BBN.js +286 -0
  17. package/dist/chunk-WWN77BBN.js.map +1 -0
  18. package/dist/generated/admins/index.d.mts +2738 -0
  19. package/dist/generated/admins/index.d.ts +2738 -0
  20. package/dist/generated/admins/index.js +126 -0
  21. package/dist/generated/admins/index.js.map +1 -0
  22. package/dist/generated/admins/index.mjs +108 -0
  23. package/dist/generated/admins/index.mjs.map +1 -0
  24. package/dist/generated/agents/index.d.mts +1744 -0
  25. package/dist/generated/agents/index.d.ts +1744 -0
  26. package/dist/generated/agents/index.js +220 -0
  27. package/dist/generated/agents/index.js.map +1 -0
  28. package/dist/generated/agents/index.mjs +168 -0
  29. package/dist/generated/agents/index.mjs.map +1 -0
  30. package/dist/generated/developers/index.d.mts +748 -0
  31. package/dist/generated/developers/index.d.ts +748 -0
  32. package/dist/generated/developers/index.js +72 -0
  33. package/dist/generated/developers/index.js.map +1 -0
  34. package/dist/generated/developers/index.mjs +54 -0
  35. package/dist/generated/developers/index.mjs.map +1 -0
  36. package/dist/generated/parents/index.d.mts +2446 -0
  37. package/dist/generated/parents/index.d.ts +2446 -0
  38. package/dist/generated/parents/index.js +272 -0
  39. package/dist/generated/parents/index.js.map +1 -0
  40. package/dist/generated/parents/index.mjs +206 -0
  41. package/dist/generated/parents/index.mjs.map +1 -0
  42. package/dist/generated/play/index.d.mts +1740 -0
  43. package/dist/generated/play/index.d.ts +1740 -0
  44. package/dist/generated/play/index.js +173 -0
  45. package/dist/generated/play/index.js.map +1 -0
  46. package/dist/generated/play/index.mjs +139 -0
  47. package/dist/generated/play/index.mjs.map +1 -0
  48. package/dist/generated/public/index.d.mts +1126 -0
  49. package/dist/generated/public/index.d.ts +1126 -0
  50. package/dist/generated/public/index.js +58 -0
  51. package/dist/generated/public/index.js.map +1 -0
  52. package/dist/generated/public/index.mjs +46 -0
  53. package/dist/generated/public/index.mjs.map +1 -0
  54. package/dist/generated/teachers/index.d.mts +6205 -0
  55. package/dist/generated/teachers/index.d.ts +6205 -0
  56. package/dist/generated/teachers/index.js +353 -0
  57. package/dist/generated/teachers/index.js.map +1 -0
  58. package/dist/generated/teachers/index.mjs +282 -0
  59. package/dist/generated/teachers/index.mjs.map +1 -0
  60. package/dist/generated/translation-hub/index.d.mts +2018 -0
  61. package/dist/generated/translation-hub/index.d.ts +2018 -0
  62. package/dist/generated/translation-hub/index.js +186 -0
  63. package/dist/generated/translation-hub/index.js.map +1 -0
  64. package/dist/generated/translation-hub/index.mjs +135 -0
  65. package/dist/generated/translation-hub/index.mjs.map +1 -0
  66. package/dist/index-CYIBtoSV.d.mts +173 -0
  67. package/dist/index-CYIBtoSV.d.ts +173 -0
  68. package/dist/index.d.mts +154 -0
  69. package/dist/index.d.ts +154 -0
  70. package/dist/index.js +364 -0
  71. package/dist/index.js.map +1 -0
  72. package/dist/index.mjs +348 -0
  73. package/dist/index.mjs.map +1 -0
  74. package/package.json +121 -0
@@ -0,0 +1,748 @@
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
+ type Audience = {
58
+ __typename?: 'Audience';
59
+ g1?: Maybe<Scalars['Boolean']['output']>;
60
+ g2?: Maybe<Scalars['Boolean']['output']>;
61
+ g3?: Maybe<Scalars['Boolean']['output']>;
62
+ g4?: Maybe<Scalars['Boolean']['output']>;
63
+ g5?: Maybe<Scalars['Boolean']['output']>;
64
+ g6?: Maybe<Scalars['Boolean']['output']>;
65
+ g7?: Maybe<Scalars['Boolean']['output']>;
66
+ g8?: Maybe<Scalars['Boolean']['output']>;
67
+ g9?: Maybe<Scalars['Boolean']['output']>;
68
+ g10?: Maybe<Scalars['Boolean']['output']>;
69
+ g11?: Maybe<Scalars['Boolean']['output']>;
70
+ g12?: Maybe<Scalars['Boolean']['output']>;
71
+ k?: Maybe<Scalars['Boolean']['output']>;
72
+ };
73
+ type Concept = {
74
+ __typename?: 'Concept';
75
+ concept?: Maybe<Scalars['String']['output']>;
76
+ conceptId?: Maybe<Scalars['Int']['output']>;
77
+ conceptIdent?: Maybe<Scalars['String']['output']>;
78
+ conceptTagId?: Maybe<Scalars['ID']['output']>;
79
+ gameId?: Maybe<Scalars['ID']['output']>;
80
+ gameVersionId?: Maybe<Scalars['ID']['output']>;
81
+ learningObjectiveId?: Maybe<Scalars['ID']['output']>;
82
+ };
83
+ type Game = {
84
+ __typename?: 'Game';
85
+ audience?: Maybe<Audience>;
86
+ banner?: Maybe<Scalars['String']['output']>;
87
+ clonedFromGameId?: Maybe<Scalars['Int']['output']>;
88
+ contentType?: Maybe<Scalars['String']['output']>;
89
+ createdAt?: Maybe<Scalars['DateTime']['output']>;
90
+ description?: Maybe<Scalars['String']['output']>;
91
+ developerDescription?: Maybe<Scalars['String']['output']>;
92
+ developerInstructions?: Maybe<Scalars['String']['output']>;
93
+ discussionQuestionsAfter?: Maybe<Scalars['String']['output']>;
94
+ discussionQuestionsBefore?: Maybe<Scalars['String']['output']>;
95
+ editorPickAt?: Maybe<Scalars['DateTime']['output']>;
96
+ estimatedDuration?: Maybe<Scalars['Int']['output']>;
97
+ game?: Maybe<Scalars['String']['output']>;
98
+ gameDeveloperId?: Maybe<Scalars['Int']['output']>;
99
+ gameSlot?: Maybe<GameSlot>;
100
+ gameSlotId?: Maybe<Scalars['ID']['output']>;
101
+ gameStat?: Maybe<GameStat>;
102
+ gameStudio?: Maybe<GameDeveloper>;
103
+ gameVersions?: Maybe<Array<Maybe<GameVersion>>>;
104
+ id?: Maybe<Scalars['ID']['output']>;
105
+ image?: Maybe<Scalars['String']['output']>;
106
+ instructions?: Maybe<Scalars['String']['output']>;
107
+ isAvailable?: Maybe<Scalars['Boolean']['output']>;
108
+ learningObjective?: Maybe<LearningObjective>;
109
+ learningObjectiveId?: Maybe<Scalars['ID']['output']>;
110
+ paidOut?: Maybe<Scalars['Boolean']['output']>;
111
+ pdfUrl?: Maybe<Scalars['String']['output']>;
112
+ questionGame?: Maybe<Scalars['Boolean']['output']>;
113
+ savesProgress?: Maybe<Scalars['Boolean']['output']>;
114
+ shortName?: Maybe<Scalars['String']['output']>;
115
+ sponsorshipImageUrl?: Maybe<Scalars['String']['output']>;
116
+ sponsorshipLinkUrl?: Maybe<Scalars['String']['output']>;
117
+ supportsIpad?: Maybe<Scalars['Boolean']['output']>;
118
+ supportsTts?: Maybe<Scalars['Boolean']['output']>;
119
+ teacherFacingPdfUrl?: Maybe<Scalars['String']['output']>;
120
+ type?: Maybe<Scalars['String']['output']>;
121
+ updatedAt?: Maybe<Scalars['DateTime']['output']>;
122
+ version?: Maybe<GameVersion>;
123
+ video?: Maybe<Scalars['String']['output']>;
124
+ videoPreviewUrl?: Maybe<Scalars['String']['output']>;
125
+ vocabulary?: Maybe<Scalars['String']['output']>;
126
+ };
127
+ type GameDeveloper = {
128
+ __typename?: 'GameDeveloper';
129
+ email?: Maybe<Scalars['String']['output']>;
130
+ familyName?: Maybe<Scalars['String']['output']>;
131
+ gameSlots?: Maybe<Array<Maybe<GameSlot>>>;
132
+ gameStudio?: Maybe<Scalars['String']['output']>;
133
+ games?: Maybe<Array<Maybe<Game>>>;
134
+ givenName?: Maybe<Scalars['String']['output']>;
135
+ id?: Maybe<Scalars['ID']['output']>;
136
+ };
137
+ type GamePaymentProgram = {
138
+ __typename?: 'GamePaymentProgram';
139
+ id?: Maybe<Scalars['ID']['output']>;
140
+ name?: Maybe<Scalars['String']['output']>;
141
+ };
142
+ type GameSlot = {
143
+ __typename?: 'GameSlot';
144
+ createdAt?: Maybe<Scalars['DateTime']['output']>;
145
+ game?: Maybe<Game>;
146
+ gameDeveloper?: Maybe<GameDeveloper>;
147
+ gameDeveloperId?: Maybe<Scalars['ID']['output']>;
148
+ gamePaymentProgram?: Maybe<GamePaymentProgram>;
149
+ gamePaymentProgramId?: Maybe<Scalars['ID']['output']>;
150
+ id?: Maybe<Scalars['ID']['output']>;
151
+ learningObjective?: Maybe<LearningObjective>;
152
+ learningObjectiveId?: Maybe<Scalars['ID']['output']>;
153
+ };
154
+ type GameStat = {
155
+ __typename?: 'GameStat';
156
+ compositeRatingScore?: Maybe<Scalars['Float']['output']>;
157
+ contentIntegrationAvg?: Maybe<Scalars['Float']['output']>;
158
+ easeOfPlayAvg?: Maybe<Scalars['Float']['output']>;
159
+ id?: Maybe<Scalars['ID']['output']>;
160
+ studentRatingAvg?: Maybe<Scalars['Float']['output']>;
161
+ studentRatingCount?: Maybe<Scalars['Float']['output']>;
162
+ studentRatingScoreSummary?: Maybe<Scalars['String']['output']>;
163
+ suggestedUseSummary?: Maybe<Scalars['String']['output']>;
164
+ teacherRatingAvg?: Maybe<Scalars['Float']['output']>;
165
+ teacherRatingCount?: Maybe<Scalars['Float']['output']>;
166
+ teacherRatingScoreSummary?: Maybe<Scalars['String']['output']>;
167
+ };
168
+ type GameVersion = {
169
+ __typename?: 'GameVersion';
170
+ acceptedAt?: Maybe<Scalars['DateTime']['output']>;
171
+ apiVersion?: Maybe<Scalars['String']['output']>;
172
+ buildFile?: Maybe<Scalars['String']['output']>;
173
+ concepts?: Maybe<Array<Maybe<Concept>>>;
174
+ createdAt?: Maybe<Scalars['DateTime']['output']>;
175
+ gameId?: Maybe<Scalars['ID']['output']>;
176
+ gameType?: Maybe<Scalars['String']['output']>;
177
+ gameVersionState?: Maybe<Scalars['String']['output']>;
178
+ id?: Maybe<Scalars['ID']['output']>;
179
+ languageKey?: Maybe<Scalars['String']['output']>;
180
+ releaseNotes?: Maybe<Scalars['String']['output']>;
181
+ unityVersion?: Maybe<Scalars['String']['output']>;
182
+ url?: Maybe<Scalars['String']['output']>;
183
+ };
184
+ type LearningObjective = {
185
+ __typename?: 'LearningObjective';
186
+ concepts?: Maybe<Array<Maybe<Concept>>>;
187
+ description?: Maybe<Scalars['String']['output']>;
188
+ id?: Maybe<Scalars['ID']['output']>;
189
+ imageKey?: Maybe<Scalars['String']['output']>;
190
+ imageUrl?: Maybe<Scalars['String']['output']>;
191
+ learningObjective?: Maybe<Scalars['String']['output']>;
192
+ name?: Maybe<Scalars['String']['output']>;
193
+ ngssDciName?: Maybe<Scalars['String']['output']>;
194
+ standardCode?: Maybe<Scalars['String']['output']>;
195
+ };
196
+ type RootMutationType = {
197
+ __typename?: 'RootMutationType';
198
+ /** Create concept tag */
199
+ createConceptTag?: Maybe<Concept>;
200
+ /** Create game */
201
+ createGame?: Maybe<Game>;
202
+ /** Create game version */
203
+ createGameVersion?: Maybe<GameVersion>;
204
+ /** Unselect concept tag */
205
+ unselectConceptTag?: Maybe<Concept>;
206
+ /** Update game */
207
+ updateGame?: Maybe<Game>;
208
+ /** Update game version */
209
+ updateGameVersion?: Maybe<GameVersion>;
210
+ /** Update game version state */
211
+ updateGameVersionState?: Maybe<GameVersion>;
212
+ };
213
+ type RootMutationTypeCreateConceptTagArgs = {
214
+ conceptId?: InputMaybe<Scalars['ID']['input']>;
215
+ gameVersionId?: InputMaybe<Scalars['ID']['input']>;
216
+ };
217
+ type RootMutationTypeCreateGameArgs = {
218
+ contentType?: InputMaybe<Scalars['String']['input']>;
219
+ description?: InputMaybe<Scalars['String']['input']>;
220
+ discussionQuestionsAfter?: InputMaybe<Scalars['String']['input']>;
221
+ discussionQuestionsBefore?: InputMaybe<Scalars['String']['input']>;
222
+ estimatedDuration?: InputMaybe<Scalars['String']['input']>;
223
+ game?: InputMaybe<Scalars['String']['input']>;
224
+ gameSlotId?: InputMaybe<Scalars['ID']['input']>;
225
+ image?: InputMaybe<Scalars['String']['input']>;
226
+ instructions?: InputMaybe<Scalars['String']['input']>;
227
+ pdfUrl?: InputMaybe<Scalars['String']['input']>;
228
+ shortName?: InputMaybe<Scalars['String']['input']>;
229
+ teacherFacingPdfUrl?: InputMaybe<Scalars['String']['input']>;
230
+ videoPreviewUrl?: InputMaybe<Scalars['String']['input']>;
231
+ vocabulary?: InputMaybe<Scalars['String']['input']>;
232
+ };
233
+ type RootMutationTypeCreateGameVersionArgs = {
234
+ apiVersion?: InputMaybe<Scalars['String']['input']>;
235
+ buildFile?: InputMaybe<Scalars['String']['input']>;
236
+ gameId?: InputMaybe<Scalars['ID']['input']>;
237
+ gameType?: InputMaybe<Scalars['String']['input']>;
238
+ languageKey?: InputMaybe<Scalars['String']['input']>;
239
+ releaseNotes?: InputMaybe<Scalars['String']['input']>;
240
+ unityVersion?: InputMaybe<Scalars['String']['input']>;
241
+ url?: InputMaybe<Scalars['String']['input']>;
242
+ };
243
+ type RootMutationTypeUnselectConceptTagArgs = {
244
+ conceptId?: InputMaybe<Scalars['ID']['input']>;
245
+ gameVersionId?: InputMaybe<Scalars['ID']['input']>;
246
+ };
247
+ type RootMutationTypeUpdateGameArgs = {
248
+ contentType?: InputMaybe<Scalars['String']['input']>;
249
+ description?: InputMaybe<Scalars['String']['input']>;
250
+ discussionQuestionsAfter?: InputMaybe<Scalars['String']['input']>;
251
+ discussionQuestionsBefore?: InputMaybe<Scalars['String']['input']>;
252
+ estimatedDuration?: InputMaybe<Scalars['Int']['input']>;
253
+ game?: InputMaybe<Scalars['String']['input']>;
254
+ gameId?: InputMaybe<Scalars['ID']['input']>;
255
+ image?: InputMaybe<Scalars['String']['input']>;
256
+ instructions?: InputMaybe<Scalars['String']['input']>;
257
+ pdfUrl?: InputMaybe<Scalars['String']['input']>;
258
+ shortName?: InputMaybe<Scalars['String']['input']>;
259
+ teacherFacingPdfUrl?: InputMaybe<Scalars['String']['input']>;
260
+ videoPreviewUrl?: InputMaybe<Scalars['String']['input']>;
261
+ vocabulary?: InputMaybe<Scalars['String']['input']>;
262
+ };
263
+ type RootMutationTypeUpdateGameVersionArgs = {
264
+ apiVersion?: InputMaybe<Scalars['String']['input']>;
265
+ buildFile?: InputMaybe<Scalars['String']['input']>;
266
+ gameId?: InputMaybe<Scalars['ID']['input']>;
267
+ gameType?: InputMaybe<Scalars['String']['input']>;
268
+ gameVersionId?: InputMaybe<Scalars['ID']['input']>;
269
+ languageKey?: InputMaybe<Scalars['String']['input']>;
270
+ releaseNotes?: InputMaybe<Scalars['String']['input']>;
271
+ unityVersion?: InputMaybe<Scalars['String']['input']>;
272
+ url?: InputMaybe<Scalars['String']['input']>;
273
+ };
274
+ type RootMutationTypeUpdateGameVersionStateArgs = {
275
+ gameVersionId?: InputMaybe<Scalars['ID']['input']>;
276
+ };
277
+ type RootQueryType = {
278
+ __typename?: 'RootQueryType';
279
+ /** Get current user, when authenticated */
280
+ currentUser?: Maybe<User>;
281
+ /** Get game and assoc current version with learning objective */
282
+ game?: Maybe<Game>;
283
+ /** Get game and assoc game versions for game slot */
284
+ gameAndVersions?: Maybe<Game>;
285
+ /** Get game version */
286
+ gameVersion?: Maybe<GameVersion>;
287
+ /** Get game slots for the current developer */
288
+ slots?: Maybe<Array<Maybe<GameSlot>>>;
289
+ };
290
+ type RootQueryTypeGameArgs = {
291
+ gameId?: InputMaybe<Scalars['ID']['input']>;
292
+ };
293
+ type RootQueryTypeGameAndVersionsArgs = {
294
+ slotId?: InputMaybe<Scalars['ID']['input']>;
295
+ };
296
+ type RootQueryTypeGameVersionArgs = {
297
+ gameVersionId?: InputMaybe<Scalars['ID']['input']>;
298
+ };
299
+ type User = {
300
+ __typename?: 'User';
301
+ gameDeveloper?: Maybe<GameDeveloper>;
302
+ id?: Maybe<Scalars['ID']['output']>;
303
+ userId?: Maybe<Scalars['ID']['output']>;
304
+ };
305
+ type CreateGameVersionMutationVariables = Exact<{
306
+ gameId: Scalars['ID']['input'];
307
+ url: Scalars['String']['input'];
308
+ apiVersion: Scalars['String']['input'];
309
+ unityVersion?: InputMaybe<Scalars['String']['input']>;
310
+ gameType: Scalars['String']['input'];
311
+ buildFile: Scalars['String']['input'];
312
+ releaseNotes: Scalars['String']['input'];
313
+ }>;
314
+ type CreateGameVersionMutation = {
315
+ __typename?: 'RootMutationType';
316
+ createGameVersion?: {
317
+ __typename?: 'GameVersion';
318
+ id?: string | null;
319
+ } | null;
320
+ };
321
+ type UpdateGameVersionMutationVariables = Exact<{
322
+ gameVersionId: Scalars['ID']['input'];
323
+ url?: InputMaybe<Scalars['String']['input']>;
324
+ apiVersion?: InputMaybe<Scalars['String']['input']>;
325
+ unityVersion?: InputMaybe<Scalars['String']['input']>;
326
+ gameType?: InputMaybe<Scalars['String']['input']>;
327
+ buildFile?: InputMaybe<Scalars['String']['input']>;
328
+ releaseNotes?: InputMaybe<Scalars['String']['input']>;
329
+ }>;
330
+ type UpdateGameVersionMutation = {
331
+ __typename?: 'RootMutationType';
332
+ updateGameVersion?: {
333
+ __typename?: 'GameVersion';
334
+ id?: string | null;
335
+ } | null;
336
+ };
337
+ type UpdateGameMutationVariables = Exact<{
338
+ gameId: Scalars['ID']['input'];
339
+ game?: InputMaybe<Scalars['String']['input']>;
340
+ shortName?: InputMaybe<Scalars['String']['input']>;
341
+ description?: InputMaybe<Scalars['String']['input']>;
342
+ instructions?: InputMaybe<Scalars['String']['input']>;
343
+ image?: InputMaybe<Scalars['String']['input']>;
344
+ estimatedDuration?: InputMaybe<Scalars['Int']['input']>;
345
+ pdfUrl?: InputMaybe<Scalars['String']['input']>;
346
+ videoPreviewUrl?: InputMaybe<Scalars['String']['input']>;
347
+ teacherFacingPdfUrl?: InputMaybe<Scalars['String']['input']>;
348
+ vocabulary?: InputMaybe<Scalars['String']['input']>;
349
+ discussionQuestionsBefore?: InputMaybe<Scalars['String']['input']>;
350
+ discussionQuestionsAfter?: InputMaybe<Scalars['String']['input']>;
351
+ }>;
352
+ type UpdateGameMutation = {
353
+ __typename?: 'RootMutationType';
354
+ updateGame?: {
355
+ __typename?: 'Game';
356
+ id?: string | null;
357
+ } | null;
358
+ };
359
+ type CreateGameMutationVariables = Exact<{
360
+ gameSlotId: Scalars['ID']['input'];
361
+ contentType: Scalars['String']['input'];
362
+ }>;
363
+ type CreateGameMutation = {
364
+ __typename?: 'RootMutationType';
365
+ createGame?: {
366
+ __typename?: 'Game';
367
+ id?: string | null;
368
+ } | null;
369
+ };
370
+ type SubmitGameVersionMutationVariables = Exact<{
371
+ gameVersionId: Scalars['ID']['input'];
372
+ }>;
373
+ type SubmitGameVersionMutation = {
374
+ __typename?: 'RootMutationType';
375
+ updateGameVersionState?: {
376
+ __typename?: 'GameVersion';
377
+ id?: string | null;
378
+ gameVersionState?: string | null;
379
+ } | null;
380
+ };
381
+ type CreateConceptTagMutationVariables = Exact<{
382
+ gameVersionId: Scalars['ID']['input'];
383
+ conceptId: Scalars['ID']['input'];
384
+ }>;
385
+ type CreateConceptTagMutation = {
386
+ __typename?: 'RootMutationType';
387
+ createConceptTag?: {
388
+ __typename?: 'Concept';
389
+ conceptId?: number | null;
390
+ conceptTagId?: string | null;
391
+ } | null;
392
+ };
393
+ type UnselectConceptTagMutationVariables = Exact<{
394
+ gameVersionId: Scalars['ID']['input'];
395
+ conceptId: Scalars['ID']['input'];
396
+ }>;
397
+ type UnselectConceptTagMutation = {
398
+ __typename?: 'RootMutationType';
399
+ unselectConceptTag?: {
400
+ __typename?: 'Concept';
401
+ conceptId?: number | null;
402
+ conceptTagId?: string | null;
403
+ } | null;
404
+ };
405
+ type GetCurrentDeveloperQueryVariables = Exact<{
406
+ [key: string]: never;
407
+ }>;
408
+ type GetCurrentDeveloperQuery = {
409
+ __typename?: 'RootQueryType';
410
+ currentUser?: {
411
+ __typename?: 'User';
412
+ id?: string | null;
413
+ gameDeveloper?: {
414
+ __typename?: 'GameDeveloper';
415
+ id?: string | null;
416
+ email?: string | null;
417
+ games?: Array<{
418
+ __typename?: 'Game';
419
+ id?: string | null;
420
+ game?: string | null;
421
+ contentType?: string | null;
422
+ createdAt?: any | null;
423
+ learningObjective?: {
424
+ __typename?: 'LearningObjective';
425
+ id?: string | null;
426
+ ngssDciName?: string | null;
427
+ learningObjective?: string | null;
428
+ } | null;
429
+ gameSlot?: {
430
+ __typename?: 'GameSlot';
431
+ id?: string | null;
432
+ } | null;
433
+ version?: {
434
+ __typename?: 'GameVersion';
435
+ apiVersion?: string | null;
436
+ gameType?: string | null;
437
+ } | null;
438
+ } | null> | null;
439
+ } | null;
440
+ } | null;
441
+ };
442
+ type GetDeveloperGamesQueryVariables = Exact<{
443
+ [key: string]: never;
444
+ }>;
445
+ type GetDeveloperGamesQuery = {
446
+ __typename?: 'RootQueryType';
447
+ currentUser?: {
448
+ __typename?: 'User';
449
+ id?: string | null;
450
+ gameDeveloper?: {
451
+ __typename?: 'GameDeveloper';
452
+ id?: string | null;
453
+ email?: string | null;
454
+ games?: Array<{
455
+ __typename?: 'Game';
456
+ id?: string | null;
457
+ game?: string | null;
458
+ contentType?: string | null;
459
+ createdAt?: any | null;
460
+ learningObjective?: {
461
+ __typename?: 'LearningObjective';
462
+ id?: string | null;
463
+ ngssDciName?: string | null;
464
+ learningObjective?: string | null;
465
+ } | null;
466
+ gameSlot?: {
467
+ __typename?: 'GameSlot';
468
+ id?: string | null;
469
+ } | null;
470
+ version?: {
471
+ __typename?: 'GameVersion';
472
+ apiVersion?: string | null;
473
+ gameType?: string | null;
474
+ } | null;
475
+ gameVersions?: Array<{
476
+ __typename?: 'GameVersion';
477
+ id?: string | null;
478
+ createdAt?: any | null;
479
+ gameVersionState?: string | null;
480
+ } | null> | null;
481
+ } | null> | null;
482
+ } | null;
483
+ } | null;
484
+ };
485
+ type GetDeveloperGameQueryVariables = Exact<{
486
+ gameId: Scalars['ID']['input'];
487
+ }>;
488
+ type GetDeveloperGameQuery = {
489
+ __typename?: 'RootQueryType';
490
+ game?: {
491
+ __typename?: 'Game';
492
+ id?: string | null;
493
+ game?: string | null;
494
+ shortName?: string | null;
495
+ estimatedDuration?: number | null;
496
+ description?: string | null;
497
+ instructions?: string | null;
498
+ image?: string | null;
499
+ contentType?: string | null;
500
+ createdAt?: any | null;
501
+ pdfUrl?: string | null;
502
+ videoPreviewUrl?: string | null;
503
+ teacherFacingPdfUrl?: string | null;
504
+ vocabulary?: string | null;
505
+ discussionQuestionsBefore?: string | null;
506
+ discussionQuestionsAfter?: string | null;
507
+ learningObjective?: {
508
+ __typename?: 'LearningObjective';
509
+ id?: string | null;
510
+ learningObjective?: string | null;
511
+ ngssDciName?: string | null;
512
+ concepts?: Array<{
513
+ __typename?: 'Concept';
514
+ concept?: string | null;
515
+ conceptId?: number | null;
516
+ conceptIdent?: string | null;
517
+ } | null> | null;
518
+ } | null;
519
+ gameVersions?: Array<{
520
+ __typename?: 'GameVersion';
521
+ id?: string | null;
522
+ createdAt?: any | null;
523
+ gameVersionState?: string | null;
524
+ apiVersion?: string | null;
525
+ unityVersion?: string | null;
526
+ gameType?: string | null;
527
+ url?: string | null;
528
+ concepts?: Array<{
529
+ __typename?: 'Concept';
530
+ concept?: string | null;
531
+ conceptId?: number | null;
532
+ conceptIdent?: string | null;
533
+ } | null> | null;
534
+ } | null> | null;
535
+ } | null;
536
+ };
537
+ type GetGameVersionQueryVariables = Exact<{
538
+ gameVersionId: Scalars['ID']['input'];
539
+ gameId: Scalars['ID']['input'];
540
+ }>;
541
+ type GetGameVersionQuery = {
542
+ __typename?: 'RootQueryType';
543
+ gameVersion?: {
544
+ __typename?: 'GameVersion';
545
+ id?: string | null;
546
+ url?: string | null;
547
+ gameType?: string | null;
548
+ buildFile?: string | null;
549
+ languageKey?: string | null;
550
+ apiVersion?: string | null;
551
+ unityVersion?: string | null;
552
+ gameVersionState?: string | null;
553
+ releaseNotes?: string | null;
554
+ gameId?: string | null;
555
+ concepts?: Array<{
556
+ __typename?: 'Concept';
557
+ concept?: string | null;
558
+ conceptId?: number | null;
559
+ conceptIdent?: string | null;
560
+ } | null> | null;
561
+ } | null;
562
+ game?: {
563
+ __typename?: 'Game';
564
+ id?: string | null;
565
+ learningObjective?: {
566
+ __typename?: 'LearningObjective';
567
+ id?: string | null;
568
+ concepts?: Array<{
569
+ __typename?: 'Concept';
570
+ concept?: string | null;
571
+ conceptId?: number | null;
572
+ conceptIdent?: string | null;
573
+ } | null> | null;
574
+ } | null;
575
+ } | null;
576
+ };
577
+ type GetGameAndVersionsQueryVariables = Exact<{
578
+ slotId: Scalars['ID']['input'];
579
+ }>;
580
+ type GetGameAndVersionsQuery = {
581
+ __typename?: 'RootQueryType';
582
+ gameAndVersions?: {
583
+ __typename?: 'Game';
584
+ id?: string | null;
585
+ gameSlot?: {
586
+ __typename?: 'GameSlot';
587
+ id?: string | null;
588
+ } | null;
589
+ gameVersions?: Array<{
590
+ __typename?: 'GameVersion';
591
+ id?: string | null;
592
+ url?: string | null;
593
+ gameType?: string | null;
594
+ buildFile?: string | null;
595
+ createdAt?: any | null;
596
+ gameVersionState?: string | null;
597
+ } | null> | null;
598
+ } | null;
599
+ };
600
+ type GetDeveloperSlotsQueryVariables = Exact<{
601
+ [key: string]: never;
602
+ }>;
603
+ type GetDeveloperSlotsQuery = {
604
+ __typename?: 'RootQueryType';
605
+ slots?: Array<{
606
+ __typename?: 'GameSlot';
607
+ id?: string | null;
608
+ learningObjective?: {
609
+ __typename?: 'LearningObjective';
610
+ id?: string | null;
611
+ learningObjective?: string | null;
612
+ ngssDciName?: string | null;
613
+ } | null;
614
+ game?: {
615
+ __typename?: 'Game';
616
+ id?: string | null;
617
+ game?: string | null;
618
+ contentType?: string | null;
619
+ } | null;
620
+ } | null> | null;
621
+ };
622
+ declare const CreateGameVersionDocument: TypedDocumentNode<CreateGameVersionMutation, CreateGameVersionMutationVariables>;
623
+ declare const UpdateGameVersionDocument: TypedDocumentNode<UpdateGameVersionMutation, UpdateGameVersionMutationVariables>;
624
+ declare const UpdateGameDocument: TypedDocumentNode<UpdateGameMutation, UpdateGameMutationVariables>;
625
+ declare const CreateGameDocument: TypedDocumentNode<CreateGameMutation, CreateGameMutationVariables>;
626
+ declare const SubmitGameVersionDocument: TypedDocumentNode<SubmitGameVersionMutation, SubmitGameVersionMutationVariables>;
627
+ declare const CreateConceptTagDocument: TypedDocumentNode<CreateConceptTagMutation, CreateConceptTagMutationVariables>;
628
+ declare const UnselectConceptTagDocument: TypedDocumentNode<UnselectConceptTagMutation, UnselectConceptTagMutationVariables>;
629
+ declare const GetCurrentDeveloperDocument: TypedDocumentNode<GetCurrentDeveloperQuery, GetCurrentDeveloperQueryVariables>;
630
+ declare const GetDeveloperGamesDocument: TypedDocumentNode<GetDeveloperGamesQuery, GetDeveloperGamesQueryVariables>;
631
+ declare const GetDeveloperGameDocument: TypedDocumentNode<GetDeveloperGameQuery, GetDeveloperGameQueryVariables>;
632
+ declare const GetGameVersionDocument: TypedDocumentNode<GetGameVersionQuery, GetGameVersionQueryVariables>;
633
+ declare const GetGameAndVersionsDocument: TypedDocumentNode<GetGameAndVersionsQuery, GetGameAndVersionsQueryVariables>;
634
+ declare const GetDeveloperSlotsDocument: TypedDocumentNode<GetDeveloperSlotsQuery, GetDeveloperSlotsQueryVariables>;
635
+
636
+ type FragmentType<TDocumentType extends DocumentTypeDecoration<any, any>> = TDocumentType extends DocumentTypeDecoration<infer TType, any> ? [TType] extends [{
637
+ ' $fragmentName'?: infer TKey;
638
+ }] ? TKey extends string ? {
639
+ ' $fragmentRefs'?: {
640
+ [key in TKey]: TType;
641
+ };
642
+ } : never : never : never;
643
+ declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: FragmentType<DocumentTypeDecoration<TType, any>>): TType;
644
+ declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: FragmentType<DocumentTypeDecoration<TType, any>> | undefined): TType | undefined;
645
+ declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: FragmentType<DocumentTypeDecoration<TType, any>> | null): TType | null;
646
+ declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: FragmentType<DocumentTypeDecoration<TType, any>> | null | undefined): TType | null | undefined;
647
+ declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: Array<FragmentType<DocumentTypeDecoration<TType, any>>>): Array<TType>;
648
+ declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: Array<FragmentType<DocumentTypeDecoration<TType, any>>> | null | undefined): Array<TType> | null | undefined;
649
+ declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: ReadonlyArray<FragmentType<DocumentTypeDecoration<TType, any>>>): ReadonlyArray<TType>;
650
+ declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: ReadonlyArray<FragmentType<DocumentTypeDecoration<TType, any>>> | null | undefined): ReadonlyArray<TType> | null | undefined;
651
+ declare function makeFragmentData<F extends DocumentTypeDecoration<any, any>, FT extends ResultOf<F>>(data: FT, _fragment: F): FragmentType<F>;
652
+ 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>;
653
+
654
+ /**
655
+ * Map of all GraphQL operations in the project.
656
+ *
657
+ * This map has several performance disadvantages:
658
+ * 1. It is not tree-shakeable, so it will include all operations in the project.
659
+ * 2. It is not minifiable, so the string of a GraphQL query will be multiple times inside the bundle.
660
+ * 3. It does not support dead code elimination, so it will add unused operations.
661
+ *
662
+ * Therefore it is highly recommended to use the babel or swc plugin for production.
663
+ * Learn more about it here: https://the-guild.dev/graphql/codegen/plugins/presets/preset-client#reducing-bundle-size
664
+ */
665
+ type Documents = {
666
+ "\n mutation CreateGameVersion(\n $gameId: ID!\n $url: String!\n $apiVersion: String!\n $unityVersion: String\n $gameType: String!\n $buildFile: String!\n $releaseNotes: String!\n ) {\n createGameVersion(\n gameId: $gameId\n url: $url\n apiVersion: $apiVersion\n unityVersion: $unityVersion\n gameType: $gameType\n buildFile: $buildFile\n releaseNotes: $releaseNotes\n ) {\n id\n }\n }\n": typeof CreateGameVersionDocument;
667
+ "\n mutation UpdateGameVersion(\n $gameVersionId: ID!\n $url: String\n $apiVersion: String\n $unityVersion: String\n $gameType: String\n $buildFile: String\n $releaseNotes: String\n ) {\n updateGameVersion(\n gameVersionId: $gameVersionId\n url: $url\n apiVersion: $apiVersion\n unityVersion: $unityVersion\n gameType: $gameType\n buildFile: $buildFile\n releaseNotes: $releaseNotes\n ) {\n id\n }\n }\n": typeof UpdateGameVersionDocument;
668
+ "\n mutation UpdateGame(\n $gameId: ID!\n $game: String\n $shortName: String\n $description: String\n $instructions: String\n $image: String\n $estimatedDuration: Int\n $pdfUrl: String\n $videoPreviewUrl: String\n $teacherFacingPdfUrl: String\n $vocabulary: String\n $discussionQuestionsBefore: String\n $discussionQuestionsAfter: String\n ) {\n updateGame(\n gameId: $gameId\n game: $game\n shortName: $shortName\n description: $description\n instructions: $instructions\n image: $image\n estimatedDuration: $estimatedDuration\n pdfUrl: $pdfUrl\n videoPreviewUrl: $videoPreviewUrl\n teacherFacingPdfUrl: $teacherFacingPdfUrl\n vocabulary: $vocabulary\n discussionQuestionsBefore: $discussionQuestionsBefore\n discussionQuestionsAfter: $discussionQuestionsAfter\n ) {\n id\n }\n }\n": typeof UpdateGameDocument;
669
+ "\n mutation CreateGame($gameSlotId: ID!, $contentType: String!) {\n createGame(gameSlotId: $gameSlotId, contentType: $contentType) {\n id\n }\n }\n": typeof CreateGameDocument;
670
+ "\n mutation SubmitGameVersion($gameVersionId: ID!) {\n updateGameVersionState(gameVersionId: $gameVersionId) {\n id\n gameVersionState\n }\n }\n": typeof SubmitGameVersionDocument;
671
+ "\n mutation CreateConceptTag($gameVersionId: ID!, $conceptId: ID!) {\n createConceptTag(gameVersionId: $gameVersionId, conceptId: $conceptId) {\n conceptId\n conceptTagId\n }\n }\n": typeof CreateConceptTagDocument;
672
+ "\n mutation UnselectConceptTag($gameVersionId: ID!, $conceptId: ID!) {\n unselectConceptTag(gameVersionId: $gameVersionId, conceptId: $conceptId) {\n conceptId\n conceptTagId\n }\n }\n": typeof UnselectConceptTagDocument;
673
+ "\n query GetCurrentDeveloper {\n currentUser {\n id\n gameDeveloper {\n id\n email\n games {\n id\n game\n contentType\n createdAt\n learningObjective {\n id\n ngssDciName\n learningObjective\n }\n gameSlot {\n id\n }\n version {\n apiVersion\n gameType\n }\n }\n }\n }\n }\n": typeof GetCurrentDeveloperDocument;
674
+ "\n query GetDeveloperGames {\n currentUser {\n id\n gameDeveloper {\n id\n email\n games {\n id\n game\n contentType\n createdAt\n learningObjective {\n id\n ngssDciName\n learningObjective\n }\n gameSlot {\n id\n }\n version {\n apiVersion\n gameType\n }\n gameVersions {\n id\n createdAt\n gameVersionState\n }\n }\n }\n }\n }\n": typeof GetDeveloperGamesDocument;
675
+ "\n query GetDeveloperGame($gameId: ID!) {\n game(gameId: $gameId) {\n id\n game\n shortName\n estimatedDuration\n description\n instructions\n image\n contentType\n createdAt\n pdfUrl\n videoPreviewUrl\n teacherFacingPdfUrl\n vocabulary\n discussionQuestionsBefore\n discussionQuestionsAfter\n learningObjective {\n id\n learningObjective\n ngssDciName\n concepts {\n concept\n conceptId\n conceptIdent\n }\n }\n gameVersions {\n id\n createdAt\n gameVersionState\n apiVersion\n unityVersion\n gameType\n url\n concepts {\n concept\n conceptId\n conceptIdent\n }\n }\n }\n }\n": typeof GetDeveloperGameDocument;
676
+ "\n query GetGameVersion($gameVersionId: ID!, $gameId: ID!) {\n gameVersion(gameVersionId: $gameVersionId) {\n id\n url\n gameType\n buildFile\n languageKey\n apiVersion\n unityVersion\n gameVersionState\n releaseNotes\n gameId\n concepts {\n concept\n conceptId\n conceptIdent\n }\n }\n game(gameId: $gameId) {\n id\n learningObjective {\n id\n concepts {\n concept\n conceptId\n conceptIdent\n }\n }\n }\n }\n": typeof GetGameVersionDocument;
677
+ "\n query GetGameAndVersions($slotId: ID!) {\n gameAndVersions(slotId: $slotId) {\n id\n gameSlot {\n id\n }\n gameVersions {\n id\n url\n gameType\n buildFile\n createdAt\n gameVersionState\n }\n }\n }\n": typeof GetGameAndVersionsDocument;
678
+ "\n query GetDeveloperSlots {\n slots {\n id\n learningObjective {\n id\n learningObjective\n ngssDciName\n }\n game {\n id\n game\n contentType\n }\n }\n }\n": typeof GetDeveloperSlotsDocument;
679
+ };
680
+ declare const documents: Documents;
681
+ /**
682
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
683
+ *
684
+ *
685
+ * @example
686
+ * ```ts
687
+ * const query = graphql(`query GetUser($id: ID!) { user(id: $id) { name } }`);
688
+ * ```
689
+ *
690
+ * The query argument is unknown!
691
+ * Please regenerate the types.
692
+ */
693
+ declare function graphql(source: string): unknown;
694
+ /**
695
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
696
+ */
697
+ declare function graphql(source: "\n mutation CreateGameVersion(\n $gameId: ID!\n $url: String!\n $apiVersion: String!\n $unityVersion: String\n $gameType: String!\n $buildFile: String!\n $releaseNotes: String!\n ) {\n createGameVersion(\n gameId: $gameId\n url: $url\n apiVersion: $apiVersion\n unityVersion: $unityVersion\n gameType: $gameType\n buildFile: $buildFile\n releaseNotes: $releaseNotes\n ) {\n id\n }\n }\n"): (typeof documents)["\n mutation CreateGameVersion(\n $gameId: ID!\n $url: String!\n $apiVersion: String!\n $unityVersion: String\n $gameType: String!\n $buildFile: String!\n $releaseNotes: String!\n ) {\n createGameVersion(\n gameId: $gameId\n url: $url\n apiVersion: $apiVersion\n unityVersion: $unityVersion\n gameType: $gameType\n buildFile: $buildFile\n releaseNotes: $releaseNotes\n ) {\n id\n }\n }\n"];
698
+ /**
699
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
700
+ */
701
+ declare function graphql(source: "\n mutation UpdateGameVersion(\n $gameVersionId: ID!\n $url: String\n $apiVersion: String\n $unityVersion: String\n $gameType: String\n $buildFile: String\n $releaseNotes: String\n ) {\n updateGameVersion(\n gameVersionId: $gameVersionId\n url: $url\n apiVersion: $apiVersion\n unityVersion: $unityVersion\n gameType: $gameType\n buildFile: $buildFile\n releaseNotes: $releaseNotes\n ) {\n id\n }\n }\n"): (typeof documents)["\n mutation UpdateGameVersion(\n $gameVersionId: ID!\n $url: String\n $apiVersion: String\n $unityVersion: String\n $gameType: String\n $buildFile: String\n $releaseNotes: String\n ) {\n updateGameVersion(\n gameVersionId: $gameVersionId\n url: $url\n apiVersion: $apiVersion\n unityVersion: $unityVersion\n gameType: $gameType\n buildFile: $buildFile\n releaseNotes: $releaseNotes\n ) {\n id\n }\n }\n"];
702
+ /**
703
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
704
+ */
705
+ declare function graphql(source: "\n mutation UpdateGame(\n $gameId: ID!\n $game: String\n $shortName: String\n $description: String\n $instructions: String\n $image: String\n $estimatedDuration: Int\n $pdfUrl: String\n $videoPreviewUrl: String\n $teacherFacingPdfUrl: String\n $vocabulary: String\n $discussionQuestionsBefore: String\n $discussionQuestionsAfter: String\n ) {\n updateGame(\n gameId: $gameId\n game: $game\n shortName: $shortName\n description: $description\n instructions: $instructions\n image: $image\n estimatedDuration: $estimatedDuration\n pdfUrl: $pdfUrl\n videoPreviewUrl: $videoPreviewUrl\n teacherFacingPdfUrl: $teacherFacingPdfUrl\n vocabulary: $vocabulary\n discussionQuestionsBefore: $discussionQuestionsBefore\n discussionQuestionsAfter: $discussionQuestionsAfter\n ) {\n id\n }\n }\n"): (typeof documents)["\n mutation UpdateGame(\n $gameId: ID!\n $game: String\n $shortName: String\n $description: String\n $instructions: String\n $image: String\n $estimatedDuration: Int\n $pdfUrl: String\n $videoPreviewUrl: String\n $teacherFacingPdfUrl: String\n $vocabulary: String\n $discussionQuestionsBefore: String\n $discussionQuestionsAfter: String\n ) {\n updateGame(\n gameId: $gameId\n game: $game\n shortName: $shortName\n description: $description\n instructions: $instructions\n image: $image\n estimatedDuration: $estimatedDuration\n pdfUrl: $pdfUrl\n videoPreviewUrl: $videoPreviewUrl\n teacherFacingPdfUrl: $teacherFacingPdfUrl\n vocabulary: $vocabulary\n discussionQuestionsBefore: $discussionQuestionsBefore\n discussionQuestionsAfter: $discussionQuestionsAfter\n ) {\n id\n }\n }\n"];
706
+ /**
707
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
708
+ */
709
+ declare function graphql(source: "\n mutation CreateGame($gameSlotId: ID!, $contentType: String!) {\n createGame(gameSlotId: $gameSlotId, contentType: $contentType) {\n id\n }\n }\n"): (typeof documents)["\n mutation CreateGame($gameSlotId: ID!, $contentType: String!) {\n createGame(gameSlotId: $gameSlotId, contentType: $contentType) {\n id\n }\n }\n"];
710
+ /**
711
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
712
+ */
713
+ declare function graphql(source: "\n mutation SubmitGameVersion($gameVersionId: ID!) {\n updateGameVersionState(gameVersionId: $gameVersionId) {\n id\n gameVersionState\n }\n }\n"): (typeof documents)["\n mutation SubmitGameVersion($gameVersionId: ID!) {\n updateGameVersionState(gameVersionId: $gameVersionId) {\n id\n gameVersionState\n }\n }\n"];
714
+ /**
715
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
716
+ */
717
+ declare function graphql(source: "\n mutation CreateConceptTag($gameVersionId: ID!, $conceptId: ID!) {\n createConceptTag(gameVersionId: $gameVersionId, conceptId: $conceptId) {\n conceptId\n conceptTagId\n }\n }\n"): (typeof documents)["\n mutation CreateConceptTag($gameVersionId: ID!, $conceptId: ID!) {\n createConceptTag(gameVersionId: $gameVersionId, conceptId: $conceptId) {\n conceptId\n conceptTagId\n }\n }\n"];
718
+ /**
719
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
720
+ */
721
+ declare function graphql(source: "\n mutation UnselectConceptTag($gameVersionId: ID!, $conceptId: ID!) {\n unselectConceptTag(gameVersionId: $gameVersionId, conceptId: $conceptId) {\n conceptId\n conceptTagId\n }\n }\n"): (typeof documents)["\n mutation UnselectConceptTag($gameVersionId: ID!, $conceptId: ID!) {\n unselectConceptTag(gameVersionId: $gameVersionId, conceptId: $conceptId) {\n conceptId\n conceptTagId\n }\n }\n"];
722
+ /**
723
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
724
+ */
725
+ declare function graphql(source: "\n query GetCurrentDeveloper {\n currentUser {\n id\n gameDeveloper {\n id\n email\n games {\n id\n game\n contentType\n createdAt\n learningObjective {\n id\n ngssDciName\n learningObjective\n }\n gameSlot {\n id\n }\n version {\n apiVersion\n gameType\n }\n }\n }\n }\n }\n"): (typeof documents)["\n query GetCurrentDeveloper {\n currentUser {\n id\n gameDeveloper {\n id\n email\n games {\n id\n game\n contentType\n createdAt\n learningObjective {\n id\n ngssDciName\n learningObjective\n }\n gameSlot {\n id\n }\n version {\n apiVersion\n gameType\n }\n }\n }\n }\n }\n"];
726
+ /**
727
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
728
+ */
729
+ declare function graphql(source: "\n query GetDeveloperGames {\n currentUser {\n id\n gameDeveloper {\n id\n email\n games {\n id\n game\n contentType\n createdAt\n learningObjective {\n id\n ngssDciName\n learningObjective\n }\n gameSlot {\n id\n }\n version {\n apiVersion\n gameType\n }\n gameVersions {\n id\n createdAt\n gameVersionState\n }\n }\n }\n }\n }\n"): (typeof documents)["\n query GetDeveloperGames {\n currentUser {\n id\n gameDeveloper {\n id\n email\n games {\n id\n game\n contentType\n createdAt\n learningObjective {\n id\n ngssDciName\n learningObjective\n }\n gameSlot {\n id\n }\n version {\n apiVersion\n gameType\n }\n gameVersions {\n id\n createdAt\n gameVersionState\n }\n }\n }\n }\n }\n"];
730
+ /**
731
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
732
+ */
733
+ declare function graphql(source: "\n query GetDeveloperGame($gameId: ID!) {\n game(gameId: $gameId) {\n id\n game\n shortName\n estimatedDuration\n description\n instructions\n image\n contentType\n createdAt\n pdfUrl\n videoPreviewUrl\n teacherFacingPdfUrl\n vocabulary\n discussionQuestionsBefore\n discussionQuestionsAfter\n learningObjective {\n id\n learningObjective\n ngssDciName\n concepts {\n concept\n conceptId\n conceptIdent\n }\n }\n gameVersions {\n id\n createdAt\n gameVersionState\n apiVersion\n unityVersion\n gameType\n url\n concepts {\n concept\n conceptId\n conceptIdent\n }\n }\n }\n }\n"): (typeof documents)["\n query GetDeveloperGame($gameId: ID!) {\n game(gameId: $gameId) {\n id\n game\n shortName\n estimatedDuration\n description\n instructions\n image\n contentType\n createdAt\n pdfUrl\n videoPreviewUrl\n teacherFacingPdfUrl\n vocabulary\n discussionQuestionsBefore\n discussionQuestionsAfter\n learningObjective {\n id\n learningObjective\n ngssDciName\n concepts {\n concept\n conceptId\n conceptIdent\n }\n }\n gameVersions {\n id\n createdAt\n gameVersionState\n apiVersion\n unityVersion\n gameType\n url\n concepts {\n concept\n conceptId\n conceptIdent\n }\n }\n }\n }\n"];
734
+ /**
735
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
736
+ */
737
+ declare function graphql(source: "\n query GetGameVersion($gameVersionId: ID!, $gameId: ID!) {\n gameVersion(gameVersionId: $gameVersionId) {\n id\n url\n gameType\n buildFile\n languageKey\n apiVersion\n unityVersion\n gameVersionState\n releaseNotes\n gameId\n concepts {\n concept\n conceptId\n conceptIdent\n }\n }\n game(gameId: $gameId) {\n id\n learningObjective {\n id\n concepts {\n concept\n conceptId\n conceptIdent\n }\n }\n }\n }\n"): (typeof documents)["\n query GetGameVersion($gameVersionId: ID!, $gameId: ID!) {\n gameVersion(gameVersionId: $gameVersionId) {\n id\n url\n gameType\n buildFile\n languageKey\n apiVersion\n unityVersion\n gameVersionState\n releaseNotes\n gameId\n concepts {\n concept\n conceptId\n conceptIdent\n }\n }\n game(gameId: $gameId) {\n id\n learningObjective {\n id\n concepts {\n concept\n conceptId\n conceptIdent\n }\n }\n }\n }\n"];
738
+ /**
739
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
740
+ */
741
+ declare function graphql(source: "\n query GetGameAndVersions($slotId: ID!) {\n gameAndVersions(slotId: $slotId) {\n id\n gameSlot {\n id\n }\n gameVersions {\n id\n url\n gameType\n buildFile\n createdAt\n gameVersionState\n }\n }\n }\n"): (typeof documents)["\n query GetGameAndVersions($slotId: ID!) {\n gameAndVersions(slotId: $slotId) {\n id\n gameSlot {\n id\n }\n gameVersions {\n id\n url\n gameType\n buildFile\n createdAt\n gameVersionState\n }\n }\n }\n"];
742
+ /**
743
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
744
+ */
745
+ declare function graphql(source: "\n query GetDeveloperSlots {\n slots {\n id\n learningObjective {\n id\n learningObjective\n ngssDciName\n }\n game {\n id\n game\n contentType\n }\n }\n }\n"): (typeof documents)["\n query GetDeveloperSlots {\n slots {\n id\n learningObjective {\n id\n learningObjective\n ngssDciName\n }\n game {\n id\n game\n contentType\n }\n }\n }\n"];
746
+ type DocumentType<TDocumentNode extends TypedDocumentNode<any, any>> = TDocumentNode extends TypedDocumentNode<infer TType, any> ? TType : never;
747
+
748
+ export { type Audience, type Concept, CreateConceptTagDocument, type CreateConceptTagMutation, type CreateConceptTagMutationVariables, CreateGameDocument, type CreateGameMutation, type CreateGameMutationVariables, CreateGameVersionDocument, type CreateGameVersionMutation, type CreateGameVersionMutationVariables, type DocumentType, type Exact, type FragmentType, type Game, type GameDeveloper, type GamePaymentProgram, type GameSlot, type GameStat, type GameVersion, GetCurrentDeveloperDocument, type GetCurrentDeveloperQuery, type GetCurrentDeveloperQueryVariables, GetDeveloperGameDocument, type GetDeveloperGameQuery, type GetDeveloperGameQueryVariables, GetDeveloperGamesDocument, type GetDeveloperGamesQuery, type GetDeveloperGamesQueryVariables, GetDeveloperSlotsDocument, type GetDeveloperSlotsQuery, type GetDeveloperSlotsQueryVariables, GetGameAndVersionsDocument, type GetGameAndVersionsQuery, type GetGameAndVersionsQueryVariables, GetGameVersionDocument, type GetGameVersionQuery, type GetGameVersionQueryVariables, type Incremental, type InputMaybe, type LearningObjective, type MakeEmpty, type MakeMaybe, type MakeOptional, type Maybe, type RootMutationType, type RootMutationTypeCreateConceptTagArgs, type RootMutationTypeCreateGameArgs, type RootMutationTypeCreateGameVersionArgs, type RootMutationTypeUnselectConceptTagArgs, type RootMutationTypeUpdateGameArgs, type RootMutationTypeUpdateGameVersionArgs, type RootMutationTypeUpdateGameVersionStateArgs, type RootQueryType, type RootQueryTypeGameAndVersionsArgs, type RootQueryTypeGameArgs, type RootQueryTypeGameVersionArgs, type Scalars, SubmitGameVersionDocument, type SubmitGameVersionMutation, type SubmitGameVersionMutationVariables, UnselectConceptTagDocument, type UnselectConceptTagMutation, type UnselectConceptTagMutationVariables, UpdateGameDocument, type UpdateGameMutation, type UpdateGameMutationVariables, UpdateGameVersionDocument, type UpdateGameVersionMutation, type UpdateGameVersionMutationVariables, type User, graphql, isFragmentReady, makeFragmentData, useFragment };