@legendsoflearning/lol-sdk-core 0.1.0

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 (61) hide show
  1. package/dist/auth/index.d.mts +1 -0
  2. package/dist/auth/index.d.ts +1 -0
  3. package/dist/auth/index.js +12 -0
  4. package/dist/auth/index.js.map +1 -0
  5. package/dist/auth/index.mjs +3 -0
  6. package/dist/auth/index.mjs.map +1 -0
  7. package/dist/cache/index.d.mts +26 -0
  8. package/dist/cache/index.d.ts +26 -0
  9. package/dist/cache/index.js +63 -0
  10. package/dist/cache/index.js.map +1 -0
  11. package/dist/cache/index.mjs +60 -0
  12. package/dist/cache/index.mjs.map +1 -0
  13. package/dist/chunk-Q4UXELOU.mjs +284 -0
  14. package/dist/chunk-Q4UXELOU.mjs.map +1 -0
  15. package/dist/chunk-WWN77BBN.js +286 -0
  16. package/dist/chunk-WWN77BBN.js.map +1 -0
  17. package/dist/generated/admins/index.d.mts +2566 -0
  18. package/dist/generated/admins/index.d.ts +2566 -0
  19. package/dist/generated/admins/index.js +110 -0
  20. package/dist/generated/admins/index.js.map +1 -0
  21. package/dist/generated/admins/index.mjs +97 -0
  22. package/dist/generated/admins/index.mjs.map +1 -0
  23. package/dist/generated/developers/index.d.mts +330 -0
  24. package/dist/generated/developers/index.d.ts +330 -0
  25. package/dist/generated/developers/index.js +30 -0
  26. package/dist/generated/developers/index.js.map +1 -0
  27. package/dist/generated/developers/index.mjs +25 -0
  28. package/dist/generated/developers/index.mjs.map +1 -0
  29. package/dist/generated/parents/index.d.mts +1097 -0
  30. package/dist/generated/parents/index.d.ts +1097 -0
  31. package/dist/generated/parents/index.js +112 -0
  32. package/dist/generated/parents/index.js.map +1 -0
  33. package/dist/generated/parents/index.mjs +99 -0
  34. package/dist/generated/parents/index.mjs.map +1 -0
  35. package/dist/generated/play/index.d.mts +1060 -0
  36. package/dist/generated/play/index.d.ts +1060 -0
  37. package/dist/generated/play/index.js +109 -0
  38. package/dist/generated/play/index.js.map +1 -0
  39. package/dist/generated/play/index.mjs +96 -0
  40. package/dist/generated/play/index.mjs.map +1 -0
  41. package/dist/generated/public/index.d.mts +791 -0
  42. package/dist/generated/public/index.d.ts +791 -0
  43. package/dist/generated/public/index.js +39 -0
  44. package/dist/generated/public/index.js.map +1 -0
  45. package/dist/generated/public/index.mjs +33 -0
  46. package/dist/generated/public/index.mjs.map +1 -0
  47. package/dist/generated/teachers/index.d.mts +6205 -0
  48. package/dist/generated/teachers/index.d.ts +6205 -0
  49. package/dist/generated/teachers/index.js +353 -0
  50. package/dist/generated/teachers/index.js.map +1 -0
  51. package/dist/generated/teachers/index.mjs +282 -0
  52. package/dist/generated/teachers/index.mjs.map +1 -0
  53. package/dist/index-vM3xPKfV.d.mts +173 -0
  54. package/dist/index-vM3xPKfV.d.ts +173 -0
  55. package/dist/index.d.mts +154 -0
  56. package/dist/index.d.ts +154 -0
  57. package/dist/index.js +352 -0
  58. package/dist/index.js.map +1 -0
  59. package/dist/index.mjs +336 -0
  60. package/dist/index.mjs.map +1 -0
  61. package/package.json +111 -0
@@ -0,0 +1,1060 @@
1
+ import { DocumentTypeDecoration, ResultOf, TypedDocumentNode } 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
+ * The `Json` scalar type represents arbitrary json string data, represented as UTF-8
58
+ * character sequences. The Json type is most often used to represent a free-form
59
+ * human-readable json string.
60
+ */
61
+ Json: {
62
+ input: any;
63
+ output: any;
64
+ };
65
+ /**
66
+ * The `Naive DateTime` scalar type represents a naive date and time without
67
+ * timezone. The DateTime appears in a JSON response as an ISO8601 formatted
68
+ * string.
69
+ */
70
+ NaiveDateTime: {
71
+ input: any;
72
+ output: any;
73
+ };
74
+ };
75
+ type Activity = {
76
+ __typename?: 'Activity';
77
+ assessment?: Maybe<Assessment>;
78
+ awakeningActivity?: Maybe<AwakeningActivity>;
79
+ durationInMinutes?: Maybe<Scalars['Int']['output']>;
80
+ id?: Maybe<Scalars['ID']['output']>;
81
+ learningObjective?: Maybe<LearningObjective>;
82
+ miniGame?: Maybe<Game>;
83
+ miniGameVersion?: Maybe<GameVersion>;
84
+ numOfQuestions?: Maybe<Scalars['Int']['output']>;
85
+ order?: Maybe<Scalars['Float']['output']>;
86
+ questions?: Maybe<Array<Maybe<ActivityQuestion>>>;
87
+ questionsType?: Maybe<Scalars['String']['output']>;
88
+ type?: Maybe<Scalars['String']['output']>;
89
+ video?: Maybe<Video>;
90
+ };
91
+ type ActivityInputV2 = {
92
+ assessmentId?: InputMaybe<Scalars['ID']['input']>;
93
+ awakeningActivityId?: InputMaybe<Scalars['ID']['input']>;
94
+ durationInMinutes?: InputMaybe<Scalars['Int']['input']>;
95
+ id?: InputMaybe<Scalars['ID']['input']>;
96
+ includeMiniGames?: InputMaybe<Scalars['Boolean']['input']>;
97
+ learningObjectiveId?: InputMaybe<Scalars['ID']['input']>;
98
+ miniGameAssessmentQuestionCount?: InputMaybe<Scalars['Int']['input']>;
99
+ miniGameId?: InputMaybe<Scalars['ID']['input']>;
100
+ numOfQuestions?: InputMaybe<Scalars['Int']['input']>;
101
+ order?: InputMaybe<Scalars['Float']['input']>;
102
+ questionsType?: InputMaybe<Scalars['String']['input']>;
103
+ randomQuestionOrder?: InputMaybe<Scalars['Boolean']['input']>;
104
+ standardId?: InputMaybe<Scalars['String']['input']>;
105
+ subjectId?: InputMaybe<Scalars['ID']['input']>;
106
+ type?: InputMaybe<Scalars['String']['input']>;
107
+ videoId?: InputMaybe<Scalars['ID']['input']>;
108
+ };
109
+ type ActivityQuestion = {
110
+ __typename?: 'ActivityQuestion';
111
+ groupingId?: Maybe<Scalars['String']['output']>;
112
+ id?: Maybe<Scalars['ID']['output']>;
113
+ order?: Maybe<Scalars['Float']['output']>;
114
+ question?: Maybe<Question>;
115
+ };
116
+ type ActivityV2 = {
117
+ __typename?: 'ActivityV2';
118
+ assessment?: Maybe<Assessment>;
119
+ assessmentId?: Maybe<Scalars['ID']['output']>;
120
+ availableMiniGames?: Maybe<Array<Maybe<GameAlignment>>>;
121
+ awakeningActivity?: Maybe<AwakeningActivity>;
122
+ durationInMinutes?: Maybe<Scalars['Int']['output']>;
123
+ gameId?: Maybe<Scalars['ID']['output']>;
124
+ id?: Maybe<Scalars['ID']['output']>;
125
+ includeMiniGames?: Maybe<Scalars['Boolean']['output']>;
126
+ learningObjective?: Maybe<LearningObjective>;
127
+ learningObjectiveId?: Maybe<Scalars['ID']['output']>;
128
+ miniGame?: Maybe<Game>;
129
+ miniGameAssessmentQuestionCount?: Maybe<Scalars['Int']['output']>;
130
+ miniGameId?: Maybe<Scalars['ID']['output']>;
131
+ numOfQuestions?: Maybe<Scalars['Int']['output']>;
132
+ order?: Maybe<Scalars['Float']['output']>;
133
+ percentCorrect?: Maybe<Scalars['Float']['output']>;
134
+ playerActivities?: Maybe<Array<Maybe<PlayerActivity>>>;
135
+ questions?: Maybe<Array<Maybe<ActivityQuestion>>>;
136
+ questionsType?: Maybe<Scalars['String']['output']>;
137
+ randomQuestionOrder?: Maybe<Scalars['Boolean']['output']>;
138
+ standard?: Maybe<Scalars['String']['output']>;
139
+ subjectId?: Maybe<Scalars['ID']['output']>;
140
+ totalAnswered?: Maybe<Scalars['Int']['output']>;
141
+ totalCorrectlyAnswered?: Maybe<Scalars['Int']['output']>;
142
+ type?: Maybe<Scalars['String']['output']>;
143
+ video?: Maybe<Video>;
144
+ };
145
+ type Answer = {
146
+ __typename?: 'Answer';
147
+ answer?: Maybe<Scalars['String']['output']>;
148
+ choiceNum?: Maybe<Scalars['Int']['output']>;
149
+ explanation?: Maybe<AnswerExplanation>;
150
+ id?: Maybe<Scalars['ID']['output']>;
151
+ isCorrect?: Maybe<Scalars['Boolean']['output']>;
152
+ };
153
+ type AnswerExplanation = {
154
+ __typename?: 'AnswerExplanation';
155
+ answerId?: Maybe<Scalars['ID']['output']>;
156
+ explanation?: Maybe<Scalars['String']['output']>;
157
+ id?: Maybe<Scalars['ID']['output']>;
158
+ };
159
+ type AnswerQuestionResponse = {
160
+ __typename?: 'AnswerQuestionResponse';
161
+ answer?: Maybe<PlayerActivityAnswer>;
162
+ play?: Maybe<AssignmentPlay>;
163
+ };
164
+ type Assessment = {
165
+ __typename?: 'Assessment';
166
+ activitySummary?: Maybe<Scalars['String']['output']>;
167
+ durationInMinutes?: Maybe<Scalars['String']['output']>;
168
+ id?: Maybe<Scalars['ID']['output']>;
169
+ mode?: Maybe<Scalars['String']['output']>;
170
+ name?: Maybe<Scalars['String']['output']>;
171
+ status?: Maybe<Scalars['String']['output']>;
172
+ visibility?: Maybe<Scalars['String']['output']>;
173
+ };
174
+ type Assignment = {
175
+ __typename?: 'Assignment';
176
+ activities?: Maybe<Array<Maybe<Activity>>>;
177
+ assignmentSetAssignment?: Maybe<Assignment>;
178
+ assignmentSetAssignmentLink?: Maybe<AssignmentSetAssignment>;
179
+ endTime?: Maybe<Scalars['DateTime']['output']>;
180
+ id?: Maybe<Scalars['ID']['output']>;
181
+ imageUrl?: Maybe<Scalars['String']['output']>;
182
+ initialLearningObjective?: Maybe<LearningObjective>;
183
+ name?: Maybe<Scalars['String']['output']>;
184
+ ownedBy?: Maybe<AssignmentOwnershipType>;
185
+ playerAssignments?: Maybe<Array<Maybe<PlayerAssignment>>>;
186
+ startTime?: Maybe<Scalars['DateTime']['output']>;
187
+ };
188
+ declare enum AssignmentOwnershipType {
189
+ /** Assignments created by the district and teacher */
190
+ All = "ALL",
191
+ /** Assignments created by the district */
192
+ District = "DISTRICT",
193
+ /** Assignments created by the teacher */
194
+ Teacher = "TEACHER"
195
+ }
196
+ type AssignmentPlay = {
197
+ __typename?: 'AssignmentPlay';
198
+ assignmentMode?: Maybe<Scalars['String']['output']>;
199
+ completed: Scalars['Boolean']['output'];
200
+ currentStep?: Maybe<AssignmentPlayStep>;
201
+ id?: Maybe<Scalars['ID']['output']>;
202
+ name?: Maybe<Scalars['String']['output']>;
203
+ paused: Scalars['Boolean']['output'];
204
+ questions?: Maybe<Array<Maybe<Question>>>;
205
+ steps?: Maybe<Array<Maybe<AssignmentPlayStep>>>;
206
+ stopped: Scalars['Boolean']['output'];
207
+ };
208
+ type AssignmentPlayStep = {
209
+ __typename?: 'AssignmentPlayStep';
210
+ activity?: Maybe<Activity>;
211
+ completed: Scalars['Boolean']['output'];
212
+ gameframeAttrs?: Maybe<GameframeAttrs>;
213
+ id?: Maybe<Scalars['ID']['output']>;
214
+ miniGameState?: Maybe<Scalars['Json']['output']>;
215
+ nextQuestion?: Maybe<ActivityQuestion>;
216
+ order: Scalars['Int']['output'];
217
+ playerActivity?: Maybe<PlayerActivity>;
218
+ playerActivityId?: Maybe<Scalars['ID']['output']>;
219
+ progress?: Maybe<Scalars['Int']['output']>;
220
+ /** Questions added to the activity that were not answered yet */
221
+ remainingQuestions?: Maybe<Array<Maybe<ActivityQuestion>>>;
222
+ reward?: Maybe<ClassroomReward>;
223
+ rewardId?: Maybe<Scalars['ID']['output']>;
224
+ stages?: Maybe<Array<Maybe<AssignmentPlayStepStage>>>;
225
+ type: PlayStepType;
226
+ };
227
+ type AssignmentPlayStepStage = {
228
+ __typename?: 'AssignmentPlayStepStage';
229
+ completed: Scalars['Boolean']['output'];
230
+ id: Scalars['ID']['output'];
231
+ name: Scalars['String']['output'];
232
+ };
233
+ type AssignmentSetAssignment = {
234
+ __typename?: 'AssignmentSetAssignment';
235
+ assignmentSetId?: Maybe<Scalars['ID']['output']>;
236
+ order?: Maybe<Scalars['Float']['output']>;
237
+ };
238
+ type AssignmentV2 = {
239
+ __typename?: 'AssignmentV2';
240
+ activities?: Maybe<Array<Maybe<ActivityV2>>>;
241
+ endTime?: Maybe<Scalars['DateTime']['output']>;
242
+ id?: Maybe<Scalars['ID']['output']>;
243
+ initialLearningObjective?: Maybe<LearningObjective>;
244
+ initialLearningObjectiveId?: Maybe<Scalars['ID']['output']>;
245
+ mode?: Maybe<Scalars['String']['output']>;
246
+ startTime?: Maybe<Scalars['DateTime']['output']>;
247
+ status?: Maybe<Scalars['String']['output']>;
248
+ stoppedAt?: Maybe<Scalars['DateTime']['output']>;
249
+ };
250
+ type AwakeningActivity = {
251
+ __typename?: 'AwakeningActivity';
252
+ id?: Maybe<Scalars['ID']['output']>;
253
+ playDurationSeconds?: Maybe<Scalars['Int']['output']>;
254
+ type?: Maybe<Scalars['String']['output']>;
255
+ };
256
+ type ClassroomReward = {
257
+ __typename?: 'ClassroomReward';
258
+ activityId?: Maybe<Scalars['ID']['output']>;
259
+ amount?: Maybe<Scalars['Int']['output']>;
260
+ assignmentId?: Maybe<Scalars['ID']['output']>;
261
+ collectedAt?: Maybe<Scalars['DateTime']['output']>;
262
+ createdAt?: Maybe<Scalars['DateTime']['output']>;
263
+ currency?: Maybe<Scalars['String']['output']>;
264
+ id?: Maybe<Scalars['ID']['output']>;
265
+ order?: Maybe<Scalars['Int']['output']>;
266
+ quantity?: Maybe<Scalars['Int']['output']>;
267
+ total?: Maybe<Scalars['Int']['output']>;
268
+ type?: Maybe<Scalars['String']['output']>;
269
+ updatedAt?: Maybe<Scalars['DateTime']['output']>;
270
+ userId?: Maybe<Scalars['ID']['output']>;
271
+ };
272
+ /** Client runtime input object */
273
+ type CrtInput = {
274
+ /** Amount of time(in ms) since the play started on the client */
275
+ time?: InputMaybe<Scalars['Int']['input']>;
276
+ /** Client timezone offset in minutes */
277
+ tz?: InputMaybe<Scalars['Int']['input']>;
278
+ };
279
+ type Domain = {
280
+ __typename?: 'Domain';
281
+ id?: Maybe<Scalars['ID']['output']>;
282
+ name?: Maybe<Scalars['String']['output']>;
283
+ order?: Maybe<Scalars['Float']['output']>;
284
+ topics?: Maybe<TopicList>;
285
+ };
286
+ type FeatureFlagVariant = {
287
+ __typename?: 'FeatureFlagVariant';
288
+ name: Scalars['String']['output'];
289
+ value: Scalars['String']['output'];
290
+ };
291
+ type FluencyFact = {
292
+ __typename?: 'FluencyFact';
293
+ a: Scalars['Int']['output'];
294
+ b: Scalars['Int']['output'];
295
+ op: FluencyFactOperation;
296
+ };
297
+ declare enum FluencyFactOperation {
298
+ /** a + b */
299
+ Add = "ADD",
300
+ /** a / b */
301
+ Div = "DIV",
302
+ /** a * b */
303
+ Mul = "MUL",
304
+ /** a - b */
305
+ Sub = "SUB"
306
+ }
307
+ type FluencyFactProgressStatus = {
308
+ __typename?: 'FluencyFactProgressStatus';
309
+ a: Scalars['Int']['output'];
310
+ b: Scalars['Int']['output'];
311
+ op: FluencyFactOperation;
312
+ status: FluencyFactProgressStatusType;
313
+ };
314
+ declare enum FluencyFactProgressStatusType {
315
+ /** Fluent in the fact */
316
+ Fluent = "FLUENT",
317
+ /** Assessed but not fluent in the fact */
318
+ NotFluent = "NOT_FLUENT",
319
+ /** The fact has not yet been assessed */
320
+ Unassessed = "UNASSESSED"
321
+ }
322
+ type FluencyFocus = {
323
+ __typename?: 'FluencyFocus';
324
+ assessedFactsCount: Scalars['Int']['output'];
325
+ completeFluencySessionsCount: Scalars['Int']['output'];
326
+ fluencyGainFactsCount: Scalars['Int']['output'];
327
+ fluentFactsCount: Scalars['Int']['output'];
328
+ focus: FluencyFocusType;
329
+ id?: Maybe<Scalars['ID']['output']>;
330
+ initialAssessmentFluentFactsCount: Scalars['Int']['output'];
331
+ instructorUser: FluencyInstructor;
332
+ lastFluencyTrialTime?: Maybe<Scalars['DateTime']['output']>;
333
+ playerUser: FluencyPlayer;
334
+ playerUserId: Scalars['ID']['output'];
335
+ totalFactsCount: Scalars['Int']['output'];
336
+ totalFluencySessionsCount: Scalars['Int']['output'];
337
+ totalUsageTimeMs: Scalars['Int']['output'];
338
+ };
339
+ declare enum FluencyFocusInputType {
340
+ /** Addition and subtraction from 0 - 5 */
341
+ Add5 = "ADD5",
342
+ /** Addition and subtraction from 0 - 9 */
343
+ Add9 = "ADD9",
344
+ /** Addition and subtraction from 0 - 10 */
345
+ Add10 = "ADD10",
346
+ /** Multiplication and division from 0 - 9 */
347
+ Mul9 = "MUL9",
348
+ /** Multiplication and division from 0 - 10 */
349
+ Mul10 = "MUL10",
350
+ /** Multiplication and division from 0 - 10 */
351
+ Mul12 = "MUL12",
352
+ /** Unassign fluency */
353
+ None = "NONE"
354
+ }
355
+ type FluencyFocusList = {
356
+ __typename?: 'FluencyFocusList';
357
+ entries?: Maybe<Array<Maybe<FluencyFocus>>>;
358
+ pageNumber?: Maybe<Scalars['Int']['output']>;
359
+ pageSize?: Maybe<Scalars['Int']['output']>;
360
+ totalEntries?: Maybe<Scalars['Int']['output']>;
361
+ totalPages?: Maybe<Scalars['Int']['output']>;
362
+ };
363
+ declare enum FluencyFocusType {
364
+ /** Addition and subtraction from 0 - 5 */
365
+ Add5 = "ADD5",
366
+ /** Addition and subtraction from 0 - 9 */
367
+ Add9 = "ADD9",
368
+ /** Addition and subtraction from 0 - 10 */
369
+ Add10 = "ADD10",
370
+ /** Multiplication and division from 0 - 9 */
371
+ Mul9 = "MUL9",
372
+ /** Multiplication and division from 0 - 10 */
373
+ Mul10 = "MUL10",
374
+ /** Multiplication and division from 0 - 10 */
375
+ Mul12 = "MUL12"
376
+ }
377
+ type FluencyInstructor = {
378
+ __typename?: 'FluencyInstructor';
379
+ firstName?: Maybe<Scalars['String']['output']>;
380
+ id?: Maybe<Scalars['ID']['output']>;
381
+ lastName?: Maybe<Scalars['String']['output']>;
382
+ playerAvatar?: Maybe<PlayerAvatar>;
383
+ };
384
+ type FluencyPlayer = {
385
+ __typename?: 'FluencyPlayer';
386
+ currentSignInAt?: Maybe<Scalars['NaiveDateTime']['output']>;
387
+ fluencySessions?: Maybe<Array<Maybe<FluencySession>>>;
388
+ id?: Maybe<Scalars['ID']['output']>;
389
+ student?: Maybe<FluencyStudent>;
390
+ };
391
+ type FluencyPlayerFluencySessionsArgs = {
392
+ filter?: InputMaybe<FluencySessionFilter>;
393
+ };
394
+ type FluencySession = {
395
+ __typename?: 'FluencySession';
396
+ blueLightPercent: Scalars['Int']['output'];
397
+ id: Scalars['ID']['output'];
398
+ masteredTargetFactsCount: Scalars['Int']['output'];
399
+ startTime: Scalars['DateTime']['output'];
400
+ totalTargetFactsCount: Scalars['Int']['output'];
401
+ };
402
+ /** An activity for a fluency session */
403
+ type FluencySessionActivity = FluencySessionAssess | FluencySessionEstablish | FluencySessionPractice;
404
+ type FluencySessionAssess = {
405
+ __typename?: 'FluencySessionAssess';
406
+ facts?: Maybe<Array<FluencyFact>>;
407
+ };
408
+ type FluencySessionEstablish = {
409
+ __typename?: 'FluencySessionEstablish';
410
+ concept: FluencySessionInstructionConcept;
411
+ factFamilies?: Maybe<Array<Array<FluencyFact>>>;
412
+ facts?: Maybe<Array<FluencyFact>>;
413
+ targetFacts?: Maybe<Array<FluencyFact>>;
414
+ };
415
+ type FluencySessionFilter = {
416
+ startTimeAfter?: InputMaybe<Scalars['DateTime']['input']>;
417
+ };
418
+ declare enum FluencySessionInstructionConcept {
419
+ /** Fact family addition */
420
+ Addition = "ADDITION",
421
+ /** Add 10 */
422
+ AddTen = "ADD_TEN",
423
+ /** Add 0 */
424
+ AddZero = "ADD_ZERO",
425
+ /** Addition doubles. E.g. 2+2 and 3+3 */
426
+ Double = "DOUBLE",
427
+ /** Fact family multiplication */
428
+ Multiplication = "MULTIPLICATION",
429
+ /** No concept */
430
+ None = "NONE",
431
+ /** Squares. E.g. 2*2 and 3*3 */
432
+ Square = "SQUARE",
433
+ /** Multiplication by 11 */
434
+ TimesEleven = "TIMES_ELEVEN",
435
+ /** Multiplication by 10 */
436
+ TimesTen = "TIMES_TEN",
437
+ /** Multiplication by 2 */
438
+ TimesTwo = "TIMES_TWO",
439
+ /** Multiplication by 0 */
440
+ TimesZero = "TIMES_ZERO"
441
+ }
442
+ type FluencySessionPractice = {
443
+ __typename?: 'FluencySessionPractice';
444
+ facts?: Maybe<Array<FluencyFact>>;
445
+ targetFacts?: Maybe<Array<FluencyFact>>;
446
+ };
447
+ declare enum FluencySessionStageType {
448
+ /** Initial assessment for the fluency session */
449
+ Assess = "ASSESS",
450
+ /** Establishment of the target facts */
451
+ Establish = "ESTABLISH",
452
+ /** Practice game play */
453
+ Practice = "PRACTICE"
454
+ }
455
+ type FluencyStudent = {
456
+ __typename?: 'FluencyStudent';
457
+ firstName?: Maybe<Scalars['String']['output']>;
458
+ id?: Maybe<Scalars['ID']['output']>;
459
+ lastInitial?: Maybe<Scalars['String']['output']>;
460
+ lastName?: Maybe<Scalars['String']['output']>;
461
+ username?: Maybe<Scalars['String']['output']>;
462
+ };
463
+ type FluencyTrialInput = {
464
+ a: Scalars['Int']['input'];
465
+ answer?: InputMaybe<Scalars['Int']['input']>;
466
+ b: Scalars['Int']['input'];
467
+ inputLatencyMs: Scalars['Int']['input'];
468
+ latencyMs: Scalars['Int']['input'];
469
+ op: FluencyFactOperation;
470
+ startTime: Scalars['DateTime']['input'];
471
+ };
472
+ type FocusPath = {
473
+ __typename?: 'FocusPath';
474
+ currentTopicIndex?: Maybe<Scalars['Int']['output']>;
475
+ domain?: Maybe<Domain>;
476
+ topics?: Maybe<TopicList>;
477
+ type?: Maybe<Scalars['String']['output']>;
478
+ };
479
+ type Game = {
480
+ __typename?: 'Game';
481
+ contentType?: Maybe<Scalars['String']['output']>;
482
+ description?: Maybe<Scalars['String']['output']>;
483
+ estimatedDuration?: Maybe<Scalars['Int']['output']>;
484
+ game?: Maybe<Scalars['String']['output']>;
485
+ id?: Maybe<Scalars['ID']['output']>;
486
+ image?: Maybe<Scalars['String']['output']>;
487
+ instructions?: Maybe<Scalars['String']['output']>;
488
+ learningObjectiveId?: Maybe<Scalars['ID']['output']>;
489
+ lexileLevel?: Maybe<Scalars['Int']['output']>;
490
+ multiLanguage?: Maybe<Scalars['Boolean']['output']>;
491
+ pdfUrl?: Maybe<Scalars['String']['output']>;
492
+ questionGame?: Maybe<Scalars['Boolean']['output']>;
493
+ savesProgress?: Maybe<Scalars['Boolean']['output']>;
494
+ shortName?: Maybe<Scalars['String']['output']>;
495
+ /** Presigned URL for VTT subtitle file, if available */
496
+ subtitleUrl?: Maybe<Scalars['String']['output']>;
497
+ supportsIpad?: Maybe<Scalars['Boolean']['output']>;
498
+ supportsTts?: Maybe<Scalars['Boolean']['output']>;
499
+ teacherFacingPdfUrl?: Maybe<Scalars['String']['output']>;
500
+ type?: Maybe<Scalars['String']['output']>;
501
+ videoPreviewUrl?: Maybe<Scalars['String']['output']>;
502
+ vocabulary?: Maybe<Scalars['String']['output']>;
503
+ };
504
+ type GameAlignment = {
505
+ __typename?: 'GameAlignment';
506
+ game?: Maybe<Game>;
507
+ gameId?: Maybe<Scalars['ID']['output']>;
508
+ learningObjective?: Maybe<LearningObjective>;
509
+ learningObjectiveId?: Maybe<Scalars['ID']['output']>;
510
+ };
511
+ type GameLanguage = {
512
+ __typename?: 'GameLanguage';
513
+ id?: Maybe<Scalars['ID']['output']>;
514
+ languageCode?: Maybe<Scalars['String']['output']>;
515
+ phrases?: Maybe<Array<Maybe<KeyValue>>>;
516
+ };
517
+ type GamePerformanceBucket = {
518
+ __typename?: 'GamePerformanceBucket';
519
+ cpuBucket?: Maybe<Scalars['Int']['output']>;
520
+ expectedLoadTimeSec?: Maybe<Scalars['Int']['output']>;
521
+ id?: Maybe<Scalars['ID']['output']>;
522
+ };
523
+ type GameVersion = {
524
+ __typename?: 'GameVersion';
525
+ acceptedAt?: Maybe<Scalars['DateTime']['output']>;
526
+ apiVersion?: Maybe<Scalars['String']['output']>;
527
+ createdAt?: Maybe<Scalars['DateTime']['output']>;
528
+ gameId?: Maybe<Scalars['ID']['output']>;
529
+ gameType?: Maybe<Scalars['String']['output']>;
530
+ id?: Maybe<Scalars['ID']['output']>;
531
+ languageKey?: Maybe<Scalars['String']['output']>;
532
+ releaseNotes?: Maybe<Scalars['String']['output']>;
533
+ url?: Maybe<Scalars['String']['output']>;
534
+ };
535
+ type GameframeAttrs = {
536
+ __typename?: 'GameframeAttrs';
537
+ gameLanguage?: Maybe<GameLanguage>;
538
+ gamePerformance?: Maybe<Array<Maybe<GamePerformanceBucket>>>;
539
+ id?: Maybe<Scalars['ID']['output']>;
540
+ url?: Maybe<Scalars['String']['output']>;
541
+ };
542
+ type Globals = {
543
+ __typename?: 'Globals';
544
+ progression?: Maybe<GlobalsProgression>;
545
+ };
546
+ type GlobalsMastery = {
547
+ __typename?: 'GlobalsMastery';
548
+ minimumMasteryScore?: Maybe<Scalars['Int']['output']>;
549
+ minimumQuestionsAnswered?: Maybe<Scalars['Int']['output']>;
550
+ };
551
+ type GlobalsProgression = {
552
+ __typename?: 'GlobalsProgression';
553
+ defaultNumberOfReviewQuestions?: Maybe<Scalars['Int']['output']>;
554
+ mastery?: Maybe<GlobalsMastery>;
555
+ };
556
+ type Group = {
557
+ __typename?: 'Group';
558
+ assignments?: Maybe<Array<Assignment>>;
559
+ color?: Maybe<Scalars['String']['output']>;
560
+ id?: Maybe<Scalars['ID']['output']>;
561
+ name?: Maybe<Scalars['String']['output']>;
562
+ };
563
+ type GroupList = {
564
+ __typename?: 'GroupList';
565
+ entries?: Maybe<Array<Maybe<Group>>>;
566
+ pageNumber?: Maybe<Scalars['Int']['output']>;
567
+ pageSize?: Maybe<Scalars['Int']['output']>;
568
+ totalEntries?: Maybe<Scalars['Int']['output']>;
569
+ totalPages?: Maybe<Scalars['Int']['output']>;
570
+ };
571
+ type InviteParentToConnectMutationResult = {
572
+ __typename?: 'InviteParentToConnectMutationResult';
573
+ id?: Maybe<Scalars['ID']['output']>;
574
+ };
575
+ type KeyValue = {
576
+ __typename?: 'KeyValue';
577
+ k?: Maybe<Scalars['String']['output']>;
578
+ v?: Maybe<Scalars['String']['output']>;
579
+ };
580
+ type KeyValueBool = {
581
+ __typename?: 'KeyValueBool';
582
+ k?: Maybe<Scalars['String']['output']>;
583
+ v?: Maybe<Scalars['Boolean']['output']>;
584
+ };
585
+ type KeyValueInput = {
586
+ k?: InputMaybe<Scalars['String']['input']>;
587
+ v?: InputMaybe<Scalars['String']['input']>;
588
+ };
589
+ type LearningObjective = {
590
+ __typename?: 'LearningObjective';
591
+ description?: Maybe<Scalars['String']['output']>;
592
+ domains?: Maybe<Array<Maybe<Domain>>>;
593
+ id?: Maybe<Scalars['ID']['output']>;
594
+ imageKey?: Maybe<Scalars['String']['output']>;
595
+ learningObjective?: Maybe<Scalars['String']['output']>;
596
+ name?: Maybe<Scalars['String']['output']>;
597
+ ngssDciName?: Maybe<Scalars['String']['output']>;
598
+ standardCode?: Maybe<Scalars['String']['output']>;
599
+ subject?: Maybe<Subject>;
600
+ };
601
+ type ModeParams = {
602
+ mathBasecamp?: InputMaybe<Scalars['Boolean']['input']>;
603
+ subjectArea?: InputMaybe<Scalars['String']['input']>;
604
+ teacherUserId?: InputMaybe<Scalars['ID']['input']>;
605
+ };
606
+ declare enum PlayStepType {
607
+ Assessment = "ASSESSMENT",
608
+ AwakeningActivity = "AWAKENING_ACTIVITY",
609
+ Exit = "EXIT",
610
+ HandsOn = "HANDS_ON",
611
+ MiniGame = "MINI_GAME",
612
+ Rewards = "REWARDS",
613
+ Video = "VIDEO",
614
+ VideoLesson = "VIDEO_LESSON"
615
+ }
616
+ type PlayerActivity = {
617
+ __typename?: 'PlayerActivity';
618
+ completedAt?: Maybe<Scalars['DateTime']['output']>;
619
+ gameplay?: Maybe<PlayerActivityGameplay>;
620
+ id?: Maybe<Scalars['ID']['output']>;
621
+ isComplete?: Maybe<Scalars['Boolean']['output']>;
622
+ totalPlaytimeSec?: Maybe<Scalars['Int']['output']>;
623
+ type?: Maybe<Scalars['String']['output']>;
624
+ };
625
+ type PlayerActivityAnswer = {
626
+ __typename?: 'PlayerActivityAnswer';
627
+ answerId?: Maybe<Scalars['ID']['output']>;
628
+ answersMap?: Maybe<Array<Maybe<KeyValue>>>;
629
+ answersMapGraded?: Maybe<Array<Maybe<KeyValueBool>>>;
630
+ assignmentActivityQuestionId?: Maybe<Scalars['ID']['output']>;
631
+ id?: Maybe<Scalars['ID']['output']>;
632
+ isCorrect?: Maybe<Scalars['Boolean']['output']>;
633
+ question?: Maybe<Question>;
634
+ questionId?: Maybe<Scalars['ID']['output']>;
635
+ questionScoreCard?: Maybe<Array<Maybe<KeyValue>>>;
636
+ };
637
+ type PlayerActivityGameplay = {
638
+ __typename?: 'PlayerActivityGameplay';
639
+ completedAt?: Maybe<Scalars['DateTime']['output']>;
640
+ gameRating?: Maybe<Scalars['Int']['output']>;
641
+ id?: Maybe<Scalars['ID']['output']>;
642
+ maxProgress?: Maybe<Scalars['Int']['output']>;
643
+ progress?: Maybe<Scalars['Int']['output']>;
644
+ progressedAt?: Maybe<Scalars['DateTime']['output']>;
645
+ score?: Maybe<Scalars['Int']['output']>;
646
+ startedAt?: Maybe<Scalars['DateTime']['output']>;
647
+ videoCurrentTimeSec?: Maybe<Scalars['Int']['output']>;
648
+ videoFarthestTimeSec?: Maybe<Scalars['Int']['output']>;
649
+ };
650
+ type PlayerAssignment = {
651
+ __typename?: 'PlayerAssignment';
652
+ endTime?: Maybe<Scalars['DateTime']['output']>;
653
+ id?: Maybe<Scalars['ID']['output']>;
654
+ isComplete?: Maybe<Scalars['Boolean']['output']>;
655
+ playerActivities?: Maybe<Array<PlayerActivity>>;
656
+ };
657
+ type PlayerAvatar = {
658
+ __typename?: 'PlayerAvatar';
659
+ headshotImageUrl?: Maybe<Scalars['String']['output']>;
660
+ id?: Maybe<Scalars['ID']['output']>;
661
+ version?: Maybe<Scalars['String']['output']>;
662
+ };
663
+ type PlayerGroupsFilter = {
664
+ ids?: InputMaybe<Array<Scalars['ID']['input']>>;
665
+ };
666
+ type Progression = {
667
+ __typename?: 'Progression';
668
+ currentPath?: Maybe<FocusPath>;
669
+ currentTopic?: Maybe<Topic>;
670
+ domainMastery?: Maybe<Array<Maybe<Domain>>>;
671
+ };
672
+ type ProgressionDomainMasteryArgs = {
673
+ domainId?: InputMaybe<Scalars['ID']['input']>;
674
+ };
675
+ type Question = {
676
+ __typename?: 'Question';
677
+ answers?: Maybe<Array<Maybe<Answer>>>;
678
+ correctAnswerId?: Maybe<Scalars['ID']['output']>;
679
+ depthOfKnowledge?: Maybe<Scalars['Int']['output']>;
680
+ explanation?: Maybe<QuestionExplanation>;
681
+ format?: Maybe<Scalars['String']['output']>;
682
+ id?: Maybe<Scalars['ID']['output']>;
683
+ imageKey?: Maybe<Scalars['String']['output']>;
684
+ layout?: Maybe<Scalars['String']['output']>;
685
+ question?: Maybe<Scalars['String']['output']>;
686
+ scoreCard?: Maybe<Array<Maybe<KeyValue>>>;
687
+ subjectArea?: Maybe<Scalars['String']['output']>;
688
+ type?: Maybe<Scalars['String']['output']>;
689
+ };
690
+ type QuestionExplanation = {
691
+ __typename?: 'QuestionExplanation';
692
+ explanation?: Maybe<Scalars['String']['output']>;
693
+ id?: Maybe<Scalars['ID']['output']>;
694
+ questionId?: Maybe<Scalars['ID']['output']>;
695
+ };
696
+ type RootMutationType = {
697
+ __typename?: 'RootMutationType';
698
+ /** Initiates the playtime for a given player activity */
699
+ activateActivity?: Maybe<Scalars['Boolean']['output']>;
700
+ answerQuestion?: Maybe<AnswerQuestionResponse>;
701
+ /** Push prerequisites onto the focus task stack for the current focus */
702
+ applyPrerequisites?: Maybe<User>;
703
+ /** Update the current user's domain to a new random domain or the specified one */
704
+ changeDomain?: Maybe<User>;
705
+ collectRewards?: Maybe<AssignmentPlay>;
706
+ completeActivity?: Maybe<AssignmentPlay>;
707
+ /** Completes an assessment activity, this will likely be at the review questions screen */
708
+ completeAssessment?: Maybe<AssignmentPlay>;
709
+ /** Complete the gameplay for a given mini game, this is not the same as completing the activity. */
710
+ completeMiniGamePlay?: Maybe<AssignmentPlay>;
711
+ /** Create assignment */
712
+ createAssignment?: Maybe<AssignmentV2>;
713
+ /** Generates an access token for Awakening native mobile client deep link to share a session */
714
+ createAwakeningDeepLinkToken?: Maybe<Scalars['String']['output']>;
715
+ /** Creates a player activity for an awakening activity step in basic mode. Returns the player_activity_id. This is isolated from existing tracking code and only used by the basic game player. */
716
+ createAwakeningPlayerActivity?: Maybe<Scalars['ID']['output']>;
717
+ /** Send email invitation to parent for a given player */
718
+ inviteParentToConnect?: Maybe<InviteParentToConnectMutationResult>;
719
+ joinTeacher?: Maybe<Teacher>;
720
+ leaveTeacher?: Maybe<Teacher>;
721
+ putFluencyTrials?: Maybe<FluencySession>;
722
+ /** Rate a mini game and complete the activity */
723
+ rateMiniGame?: Maybe<AssignmentPlay>;
724
+ /** Activates a play client on page load. This is used to initiate the client runtime to support heartbeats. */
725
+ registerClient?: Maybe<Scalars['String']['output']>;
726
+ reportHandsOnProgress?: Maybe<AssignmentPlay>;
727
+ reportMiniGameProgress?: Maybe<AssignmentPlay>;
728
+ reportVideoLessonProgress?: Maybe<AssignmentPlay>;
729
+ restartFluencySession?: Maybe<FluencySession>;
730
+ saveMiniGameState?: Maybe<AssignmentPlay>;
731
+ /** Heartbeats sent from the client to track user playtime and focus. */
732
+ sendHeartbeat?: Maybe<Scalars['Boolean']['output']>;
733
+ /** Sets mode of play, enabling learning objective progression */
734
+ setMode?: Maybe<Scalars['Boolean']['output']>;
735
+ updateSelfFluencyFocus?: Maybe<Array<FluencyFocus>>;
736
+ };
737
+ type RootMutationTypeActivateActivityArgs = {
738
+ crt?: InputMaybe<CrtInput>;
739
+ playerActivityId: Scalars['ID']['input'];
740
+ rte?: InputMaybe<RuntimeEventInput>;
741
+ ui?: InputMaybe<UiInput>;
742
+ };
743
+ type RootMutationTypeAnswerQuestionArgs = {
744
+ activityQuestionId: Scalars['ID']['input'];
745
+ answerId?: InputMaybe<Scalars['ID']['input']>;
746
+ answersMap?: InputMaybe<Array<InputMaybe<KeyValueInput>>>;
747
+ playerActivityId: Scalars['ID']['input'];
748
+ };
749
+ type RootMutationTypeApplyPrerequisitesArgs = {
750
+ loIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
751
+ };
752
+ type RootMutationTypeChangeDomainArgs = {
753
+ domainId?: InputMaybe<Scalars['ID']['input']>;
754
+ };
755
+ type RootMutationTypeCollectRewardsArgs = {
756
+ rewardId: Scalars['ID']['input'];
757
+ };
758
+ type RootMutationTypeCompleteActivityArgs = {
759
+ playerActivityId: Scalars['ID']['input'];
760
+ skip?: InputMaybe<Scalars['Boolean']['input']>;
761
+ };
762
+ type RootMutationTypeCompleteAssessmentArgs = {
763
+ playerActivityId: Scalars['ID']['input'];
764
+ };
765
+ type RootMutationTypeCompleteMiniGamePlayArgs = {
766
+ playerActivityId: Scalars['ID']['input'];
767
+ };
768
+ type RootMutationTypeCreateAssignmentArgs = {
769
+ activities: Array<InputMaybe<ActivityInputV2>>;
770
+ autoStart?: InputMaybe<Scalars['Boolean']['input']>;
771
+ description?: InputMaybe<Scalars['String']['input']>;
772
+ durationDays?: InputMaybe<Scalars['Int']['input']>;
773
+ endTime?: InputMaybe<Scalars['DateTime']['input']>;
774
+ initialLearningObjectiveId?: InputMaybe<Scalars['ID']['input']>;
775
+ mode: Scalars['String']['input'];
776
+ name?: InputMaybe<Scalars['String']['input']>;
777
+ startTime?: InputMaybe<Scalars['DateTime']['input']>;
778
+ };
779
+ type RootMutationTypeCreateAwakeningPlayerActivityArgs = {
780
+ stepId: Scalars['ID']['input'];
781
+ };
782
+ type RootMutationTypeInviteParentToConnectArgs = {
783
+ email: Scalars['String']['input'];
784
+ };
785
+ type RootMutationTypeJoinTeacherArgs = {
786
+ teacherCode: Scalars['String']['input'];
787
+ };
788
+ type RootMutationTypeLeaveTeacherArgs = {
789
+ teacherCode: Scalars['String']['input'];
790
+ };
791
+ type RootMutationTypePutFluencyTrialsArgs = {
792
+ instructorUserId: Scalars['ID']['input'];
793
+ stage: FluencySessionStageType;
794
+ trials?: InputMaybe<Array<FluencyTrialInput>>;
795
+ };
796
+ type RootMutationTypeRateMiniGameArgs = {
797
+ playerActivityId: Scalars['ID']['input'];
798
+ rating?: InputMaybe<Scalars['Int']['input']>;
799
+ };
800
+ type RootMutationTypeRegisterClientArgs = {
801
+ assignmentId?: InputMaybe<Scalars['ID']['input']>;
802
+ awkClientSetsMode?: InputMaybe<Scalars['Boolean']['input']>;
803
+ };
804
+ type RootMutationTypeReportHandsOnProgressArgs = {
805
+ maxProgress: Scalars['Int']['input'];
806
+ playerActivityId: Scalars['ID']['input'];
807
+ progress: Scalars['Int']['input'];
808
+ score?: InputMaybe<Scalars['Int']['input']>;
809
+ };
810
+ type RootMutationTypeReportMiniGameProgressArgs = {
811
+ maxProgress: Scalars['Int']['input'];
812
+ playerActivityId: Scalars['ID']['input'];
813
+ progress: Scalars['Int']['input'];
814
+ score?: InputMaybe<Scalars['Int']['input']>;
815
+ };
816
+ type RootMutationTypeReportVideoLessonProgressArgs = {
817
+ durationSec: Scalars['Int']['input'];
818
+ playerActivityId: Scalars['ID']['input'];
819
+ videoCurrentTimeSec: Scalars['Int']['input'];
820
+ };
821
+ type RootMutationTypeRestartFluencySessionArgs = {
822
+ instructorUserId: Scalars['ID']['input'];
823
+ };
824
+ type RootMutationTypeSaveMiniGameStateArgs = {
825
+ playerActivityId: Scalars['ID']['input'];
826
+ state: Scalars['Json']['input'];
827
+ };
828
+ type RootMutationTypeSendHeartbeatArgs = {
829
+ crt?: InputMaybe<CrtInput>;
830
+ playerActivityId: Scalars['ID']['input'];
831
+ rte?: InputMaybe<RuntimeEventInput>;
832
+ ui?: InputMaybe<UiInput>;
833
+ };
834
+ type RootMutationTypeSetModeArgs = {
835
+ params?: InputMaybe<ModeParams>;
836
+ };
837
+ type RootMutationTypeUpdateSelfFluencyFocusArgs = {
838
+ focus: FluencyFocusInputType;
839
+ };
840
+ type RootQueryType = {
841
+ __typename?: 'RootQueryType';
842
+ activityAnswers?: Maybe<Array<Maybe<PlayerActivityAnswer>>>;
843
+ assignmentPlay?: Maybe<AssignmentPlay>;
844
+ currentUser?: Maybe<User>;
845
+ fluencyFactProgressStatuses?: Maybe<Array<Maybe<FluencyFactProgressStatus>>>;
846
+ fluencySession?: Maybe<FluencySession>;
847
+ fluencySessionActivity: FluencySessionActivity;
848
+ globals?: Maybe<Globals>;
849
+ listFluencyFocuses?: Maybe<FluencyFocusList>;
850
+ listFocusAreas?: Maybe<TeacherFocusAreasList>;
851
+ listGroups?: Maybe<GroupList>;
852
+ listTeachers?: Maybe<TeacherList>;
853
+ myFeatureFlagVariants?: Maybe<Array<Maybe<FeatureFlagVariant>>>;
854
+ myFeatureFlags?: Maybe<Array<Scalars['String']['output']>>;
855
+ };
856
+ type RootQueryTypeActivityAnswersArgs = {
857
+ playerActivityId: Scalars['ID']['input'];
858
+ };
859
+ type RootQueryTypeAssignmentPlayArgs = {
860
+ assignmentId: Scalars['ID']['input'];
861
+ awakening?: InputMaybe<Scalars['Boolean']['input']>;
862
+ };
863
+ type RootQueryTypeFluencyFactProgressStatusesArgs = {
864
+ fluencyFocus?: InputMaybe<FluencyFocusType>;
865
+ startTimeAfter?: InputMaybe<Scalars['DateTime']['input']>;
866
+ startTimeBefore?: InputMaybe<Scalars['DateTime']['input']>;
867
+ };
868
+ type RootQueryTypeFluencySessionArgs = {
869
+ instructorUserId: Scalars['ID']['input'];
870
+ };
871
+ type RootQueryTypeFluencySessionActivityArgs = {
872
+ instructorUserId: Scalars['ID']['input'];
873
+ };
874
+ type RootQueryTypeListFluencyFocusesArgs = {
875
+ page?: InputMaybe<Scalars['Int']['input']>;
876
+ pageSize?: InputMaybe<Scalars['Int']['input']>;
877
+ };
878
+ type RootQueryTypeListFocusAreasArgs = {
879
+ page?: InputMaybe<Scalars['Int']['input']>;
880
+ pageSize?: InputMaybe<Scalars['Int']['input']>;
881
+ teacherIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
882
+ teacherUserIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
883
+ };
884
+ type RootQueryTypeListGroupsArgs = {
885
+ filter?: InputMaybe<PlayerGroupsFilter>;
886
+ page?: InputMaybe<Scalars['Int']['input']>;
887
+ pageSize?: InputMaybe<Scalars['Int']['input']>;
888
+ };
889
+ type RootQueryTypeListTeachersArgs = {
890
+ filterTeacherIds?: InputMaybe<Array<Scalars['ID']['input']>>;
891
+ includeSelf?: InputMaybe<Scalars['Boolean']['input']>;
892
+ page?: InputMaybe<Scalars['Int']['input']>;
893
+ pageSize?: InputMaybe<Scalars['Int']['input']>;
894
+ };
895
+ type RootSubscriptionType = {
896
+ __typename?: 'RootSubscriptionType';
897
+ activitySkipped?: Maybe<Scalars['Boolean']['output']>;
898
+ assignmentPaused?: Maybe<Scalars['Boolean']['output']>;
899
+ assignmentRestarted?: Maybe<Scalars['Boolean']['output']>;
900
+ assignmentResumed?: Maybe<Scalars['Boolean']['output']>;
901
+ assignmentStopped?: Maybe<Scalars['Boolean']['output']>;
902
+ };
903
+ type RootSubscriptionTypeActivitySkippedArgs = {
904
+ assignmentId: Scalars['ID']['input'];
905
+ };
906
+ type RootSubscriptionTypeAssignmentPausedArgs = {
907
+ assignmentId: Scalars['ID']['input'];
908
+ };
909
+ type RootSubscriptionTypeAssignmentRestartedArgs = {
910
+ assignmentId: Scalars['ID']['input'];
911
+ };
912
+ type RootSubscriptionTypeAssignmentResumedArgs = {
913
+ assignmentId: Scalars['ID']['input'];
914
+ };
915
+ type RootSubscriptionTypeAssignmentStoppedArgs = {
916
+ assignmentId: Scalars['ID']['input'];
917
+ };
918
+ /** Runtime event from the client side, generally game load/failed event */
919
+ type RuntimeEventInput = {
920
+ browser?: InputMaybe<Scalars['String']['input']>;
921
+ browserVersion?: InputMaybe<Scalars['String']['input']>;
922
+ cpuMeasure?: InputMaybe<Scalars['Int']['input']>;
923
+ device?: InputMaybe<Scalars['String']['input']>;
924
+ errorCount?: InputMaybe<Scalars['Int']['input']>;
925
+ errorMessage?: InputMaybe<Scalars['String']['input']>;
926
+ eventType?: InputMaybe<Scalars['String']['input']>;
927
+ };
928
+ type Subject = {
929
+ __typename?: 'Subject';
930
+ gradeLevel?: Maybe<Scalars['String']['output']>;
931
+ id?: Maybe<Scalars['ID']['output']>;
932
+ imageKey?: Maybe<Scalars['String']['output']>;
933
+ imageUrl?: Maybe<Scalars['String']['output']>;
934
+ name?: Maybe<Scalars['String']['output']>;
935
+ standard?: Maybe<Scalars['String']['output']>;
936
+ subject?: Maybe<Scalars['String']['output']>;
937
+ subjectArea?: Maybe<Scalars['String']['output']>;
938
+ };
939
+ type Teacher = {
940
+ __typename?: 'Teacher';
941
+ code?: Maybe<Scalars['String']['output']>;
942
+ familyName?: Maybe<Scalars['String']['output']>;
943
+ givenName?: Maybe<Scalars['String']['output']>;
944
+ id?: Maybe<Scalars['ID']['output']>;
945
+ schoolId?: Maybe<Scalars['ID']['output']>;
946
+ user?: Maybe<TeacherUser>;
947
+ };
948
+ type TeacherFocusArea = {
949
+ __typename?: 'TeacherFocusArea';
950
+ id?: Maybe<Scalars['ID']['output']>;
951
+ insertedAt?: Maybe<Scalars['DateTime']['output']>;
952
+ learningObjective?: Maybe<LearningObjective>;
953
+ learningObjectiveId?: Maybe<Scalars['ID']['output']>;
954
+ order?: Maybe<Scalars['Int']['output']>;
955
+ teacherUserId?: Maybe<Scalars['ID']['output']>;
956
+ updatedAt?: Maybe<Scalars['DateTime']['output']>;
957
+ };
958
+ type TeacherFocusAreasList = {
959
+ __typename?: 'TeacherFocusAreasList';
960
+ entries?: Maybe<Array<Maybe<TeacherFocusArea>>>;
961
+ pageNumber?: Maybe<Scalars['Int']['output']>;
962
+ pageSize?: Maybe<Scalars['Int']['output']>;
963
+ totalEntries?: Maybe<Scalars['Int']['output']>;
964
+ totalPages?: Maybe<Scalars['Int']['output']>;
965
+ };
966
+ type TeacherList = {
967
+ __typename?: 'TeacherList';
968
+ entries?: Maybe<Array<Maybe<Teacher>>>;
969
+ pageNumber?: Maybe<Scalars['Int']['output']>;
970
+ pageSize?: Maybe<Scalars['Int']['output']>;
971
+ totalEntries?: Maybe<Scalars['Int']['output']>;
972
+ totalPages?: Maybe<Scalars['Int']['output']>;
973
+ };
974
+ type TeacherUser = {
975
+ __typename?: 'TeacherUser';
976
+ createdAssignments?: Maybe<Array<Assignment>>;
977
+ displayName?: Maybe<Scalars['String']['output']>;
978
+ id?: Maybe<Scalars['ID']['output']>;
979
+ joinableCount?: Maybe<Scalars['Int']['output']>;
980
+ playerAvatar?: Maybe<PlayerAvatar>;
981
+ };
982
+ type Topic = {
983
+ __typename?: 'Topic';
984
+ firstMasteredAt?: Maybe<Scalars['DateTime']['output']>;
985
+ gradeLevel?: Maybe<Scalars['Int']['output']>;
986
+ hasUnmasteredPrerequisites?: Maybe<Scalars['Boolean']['output']>;
987
+ learningObjective?: Maybe<LearningObjective>;
988
+ masteryScore?: Maybe<Scalars['Int']['output']>;
989
+ order?: Maybe<Scalars['Float']['output']>;
990
+ questionsAnswered?: Maybe<Scalars['Int']['output']>;
991
+ remainingQuestions?: Maybe<Scalars['Int']['output']>;
992
+ stars?: Maybe<Scalars['Int']['output']>;
993
+ unmasteredPrerequisites?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
994
+ };
995
+ type TopicList = {
996
+ __typename?: 'TopicList';
997
+ entries?: Maybe<Array<Maybe<Topic>>>;
998
+ pageNumber?: Maybe<Scalars['Int']['output']>;
999
+ pageSize?: Maybe<Scalars['Int']['output']>;
1000
+ totalEntries?: Maybe<Scalars['Int']['output']>;
1001
+ totalPages?: Maybe<Scalars['Int']['output']>;
1002
+ };
1003
+ /** User interaction input object */
1004
+ type UiInput = {
1005
+ /** Focused at */
1006
+ fa?: InputMaybe<Scalars['Int']['input']>;
1007
+ /** Unfocused at */
1008
+ ufa?: InputMaybe<Scalars['Int']['input']>;
1009
+ /** Unfocused time in ms */
1010
+ uft?: InputMaybe<Scalars['Int']['input']>;
1011
+ };
1012
+ type User = {
1013
+ __typename?: 'User';
1014
+ firstName?: Maybe<Scalars['String']['output']>;
1015
+ id?: Maybe<Scalars['ID']['output']>;
1016
+ isAfterSchool?: Maybe<Scalars['Boolean']['output']>;
1017
+ lastInitial?: Maybe<Scalars['String']['output']>;
1018
+ /** Learning progression */
1019
+ progression?: Maybe<Progression>;
1020
+ studentId?: Maybe<Scalars['ID']['output']>;
1021
+ username?: Maybe<Scalars['String']['output']>;
1022
+ };
1023
+ type Video = {
1024
+ __typename?: 'Video';
1025
+ duration?: Maybe<Scalars['Int']['output']>;
1026
+ endsAt?: Maybe<Scalars['Int']['output']>;
1027
+ id?: Maybe<Scalars['ID']['output']>;
1028
+ playDuration?: Maybe<Scalars['Int']['output']>;
1029
+ startsAt?: Maybe<Scalars['Int']['output']>;
1030
+ thumbnailUrl?: Maybe<Scalars['String']['output']>;
1031
+ title: Scalars['String']['output'];
1032
+ type?: Maybe<Scalars['String']['output']>;
1033
+ url: Scalars['String']['output'];
1034
+ };
1035
+
1036
+ type FragmentType<TDocumentType extends DocumentTypeDecoration<any, any>> = TDocumentType extends DocumentTypeDecoration<infer TType, any> ? [TType] extends [{
1037
+ ' $fragmentName'?: infer TKey;
1038
+ }] ? TKey extends string ? {
1039
+ ' $fragmentRefs'?: {
1040
+ [key in TKey]: TType;
1041
+ };
1042
+ } : never : never : never;
1043
+ declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: FragmentType<DocumentTypeDecoration<TType, any>>): TType;
1044
+ declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: FragmentType<DocumentTypeDecoration<TType, any>> | undefined): TType | undefined;
1045
+ declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: FragmentType<DocumentTypeDecoration<TType, any>> | null): TType | null;
1046
+ declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: FragmentType<DocumentTypeDecoration<TType, any>> | null | undefined): TType | null | undefined;
1047
+ declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: Array<FragmentType<DocumentTypeDecoration<TType, any>>>): Array<TType>;
1048
+ declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: Array<FragmentType<DocumentTypeDecoration<TType, any>>> | null | undefined): Array<TType> | null | undefined;
1049
+ declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: ReadonlyArray<FragmentType<DocumentTypeDecoration<TType, any>>>): ReadonlyArray<TType>;
1050
+ declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: ReadonlyArray<FragmentType<DocumentTypeDecoration<TType, any>>> | null | undefined): ReadonlyArray<TType> | null | undefined;
1051
+ declare function makeFragmentData<F extends DocumentTypeDecoration<any, any>, FT extends ResultOf<F>>(data: FT, _fragment: F): FragmentType<F>;
1052
+ 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>;
1053
+
1054
+ /**
1055
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
1056
+ */
1057
+ declare function graphql(source: string): unknown;
1058
+ type DocumentType<TDocumentNode extends TypedDocumentNode<any, any>> = TDocumentNode extends TypedDocumentNode<infer TType, any> ? TType : never;
1059
+
1060
+ export { type Activity, type ActivityInputV2, type ActivityQuestion, type ActivityV2, type Answer, type AnswerExplanation, type AnswerQuestionResponse, type Assessment, type Assignment, AssignmentOwnershipType, type AssignmentPlay, type AssignmentPlayStep, type AssignmentPlayStepStage, type AssignmentSetAssignment, type AssignmentV2, type AwakeningActivity, type ClassroomReward, type CrtInput, type DocumentType, type Domain, type Exact, type FeatureFlagVariant, type FluencyFact, FluencyFactOperation, type FluencyFactProgressStatus, FluencyFactProgressStatusType, type FluencyFocus, FluencyFocusInputType, type FluencyFocusList, FluencyFocusType, type FluencyInstructor, type FluencyPlayer, type FluencyPlayerFluencySessionsArgs, type FluencySession, type FluencySessionActivity, type FluencySessionAssess, type FluencySessionEstablish, type FluencySessionFilter, FluencySessionInstructionConcept, type FluencySessionPractice, FluencySessionStageType, type FluencyStudent, type FluencyTrialInput, type FocusPath, type FragmentType, type Game, type GameAlignment, type GameLanguage, type GamePerformanceBucket, type GameVersion, type GameframeAttrs, type Globals, type GlobalsMastery, type GlobalsProgression, type Group, type GroupList, type Incremental, type InputMaybe, type InviteParentToConnectMutationResult, type KeyValue, type KeyValueBool, type KeyValueInput, type LearningObjective, type MakeEmpty, type MakeMaybe, type MakeOptional, type Maybe, type ModeParams, PlayStepType, type PlayerActivity, type PlayerActivityAnswer, type PlayerActivityGameplay, type PlayerAssignment, type PlayerAvatar, type PlayerGroupsFilter, type Progression, type ProgressionDomainMasteryArgs, type Question, type QuestionExplanation, type RootMutationType, type RootMutationTypeActivateActivityArgs, type RootMutationTypeAnswerQuestionArgs, type RootMutationTypeApplyPrerequisitesArgs, type RootMutationTypeChangeDomainArgs, type RootMutationTypeCollectRewardsArgs, type RootMutationTypeCompleteActivityArgs, type RootMutationTypeCompleteAssessmentArgs, type RootMutationTypeCompleteMiniGamePlayArgs, type RootMutationTypeCreateAssignmentArgs, type RootMutationTypeCreateAwakeningPlayerActivityArgs, type RootMutationTypeInviteParentToConnectArgs, type RootMutationTypeJoinTeacherArgs, type RootMutationTypeLeaveTeacherArgs, type RootMutationTypePutFluencyTrialsArgs, type RootMutationTypeRateMiniGameArgs, type RootMutationTypeRegisterClientArgs, type RootMutationTypeReportHandsOnProgressArgs, type RootMutationTypeReportMiniGameProgressArgs, type RootMutationTypeReportVideoLessonProgressArgs, type RootMutationTypeRestartFluencySessionArgs, type RootMutationTypeSaveMiniGameStateArgs, type RootMutationTypeSendHeartbeatArgs, type RootMutationTypeSetModeArgs, type RootMutationTypeUpdateSelfFluencyFocusArgs, type RootQueryType, type RootQueryTypeActivityAnswersArgs, type RootQueryTypeAssignmentPlayArgs, type RootQueryTypeFluencyFactProgressStatusesArgs, type RootQueryTypeFluencySessionActivityArgs, type RootQueryTypeFluencySessionArgs, type RootQueryTypeListFluencyFocusesArgs, type RootQueryTypeListFocusAreasArgs, type RootQueryTypeListGroupsArgs, type RootQueryTypeListTeachersArgs, type RootSubscriptionType, type RootSubscriptionTypeActivitySkippedArgs, type RootSubscriptionTypeAssignmentPausedArgs, type RootSubscriptionTypeAssignmentRestartedArgs, type RootSubscriptionTypeAssignmentResumedArgs, type RootSubscriptionTypeAssignmentStoppedArgs, type RuntimeEventInput, type Scalars, type Subject, type Teacher, type TeacherFocusArea, type TeacherFocusAreasList, type TeacherList, type TeacherUser, type Topic, type TopicList, type UiInput, type User, type Video, graphql, isFragmentReady, makeFragmentData, useFragment };