@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,2446 @@
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 `Date` scalar type represents a date. The Date appears in a JSON
48
+ * response as an ISO8601 formatted string, without a time component.
49
+ */
50
+ Date: {
51
+ input: any;
52
+ output: any;
53
+ };
54
+ /**
55
+ * The `DateTime` scalar type represents a date and time in the UTC
56
+ * timezone. The DateTime appears in a JSON response as an ISO8601 formatted
57
+ * string, including UTC timezone ("Z"). The parsed date and time string will
58
+ * be converted to UTC if there is an offset.
59
+ */
60
+ DateTime: {
61
+ input: any;
62
+ output: any;
63
+ };
64
+ /**
65
+ * The `Naive DateTime` scalar type represents a naive date and time without
66
+ * timezone. The DateTime appears in a JSON response as an ISO8601 formatted
67
+ * string.
68
+ */
69
+ NaiveDateTime: {
70
+ input: any;
71
+ output: any;
72
+ };
73
+ };
74
+ type ActivitySummary = {
75
+ __typename?: 'ActivitySummary';
76
+ count: Scalars['Int']['output'];
77
+ playDate: Scalars['Date']['output'];
78
+ };
79
+ type Answer = {
80
+ __typename?: 'Answer';
81
+ answer?: Maybe<Scalars['String']['output']>;
82
+ choiceNum?: Maybe<Scalars['Int']['output']>;
83
+ id?: Maybe<Scalars['ID']['output']>;
84
+ isCorrect?: Maybe<Scalars['Boolean']['output']>;
85
+ };
86
+ type Audience = {
87
+ __typename?: 'Audience';
88
+ g1?: Maybe<Scalars['Boolean']['output']>;
89
+ g2?: Maybe<Scalars['Boolean']['output']>;
90
+ g3?: Maybe<Scalars['Boolean']['output']>;
91
+ g4?: Maybe<Scalars['Boolean']['output']>;
92
+ g5?: Maybe<Scalars['Boolean']['output']>;
93
+ g6?: Maybe<Scalars['Boolean']['output']>;
94
+ g7?: Maybe<Scalars['Boolean']['output']>;
95
+ g8?: Maybe<Scalars['Boolean']['output']>;
96
+ g9?: Maybe<Scalars['Boolean']['output']>;
97
+ g10?: Maybe<Scalars['Boolean']['output']>;
98
+ g11?: Maybe<Scalars['Boolean']['output']>;
99
+ g12?: Maybe<Scalars['Boolean']['output']>;
100
+ k?: Maybe<Scalars['Boolean']['output']>;
101
+ };
102
+ type AwakeningSubscription = {
103
+ __typename?: 'AwakeningSubscription';
104
+ autoRenew?: Maybe<Scalars['Boolean']['output']>;
105
+ expiresAt?: Maybe<Scalars['DateTime']['output']>;
106
+ id: Scalars['ID']['output'];
107
+ isActive: Scalars['Boolean']['output'];
108
+ payerUser?: Maybe<User>;
109
+ payerUserId?: Maybe<Scalars['ID']['output']>;
110
+ purchasedAt?: Maybe<Scalars['DateTime']['output']>;
111
+ subscriptionPlanType?: Maybe<AwakeningSubscriptionPlanType>;
112
+ subscriptionProvider?: Maybe<SubscriptionProviderType>;
113
+ };
114
+ type AwakeningSubscriptionPlan = {
115
+ __typename?: 'AwakeningSubscriptionPlan';
116
+ billingFrequencyDisplay?: Maybe<Scalars['String']['output']>;
117
+ chargeAmountInCents?: Maybe<Scalars['Int']['output']>;
118
+ chargeCurrency?: Maybe<Scalars['String']['output']>;
119
+ chargePeriodType?: Maybe<Scalars['String']['output']>;
120
+ durationDisplay?: Maybe<Scalars['String']['output']>;
121
+ id: Scalars['ID']['output'];
122
+ onSale?: Maybe<Scalars['Boolean']['output']>;
123
+ originalPriceInCents?: Maybe<Scalars['Int']['output']>;
124
+ savingDescriptionDisplay?: Maybe<Scalars['String']['output']>;
125
+ savingPercentageDisplay?: Maybe<Scalars['String']['output']>;
126
+ type?: Maybe<AwakeningSubscriptionPlanType>;
127
+ };
128
+ declare enum AwakeningSubscriptionPlanType {
129
+ OneMonth = "ONE_MONTH",
130
+ OneYear = "ONE_YEAR",
131
+ SixMonth = "SIX_MONTH"
132
+ }
133
+ type AwakeningSubscriptionPlansHeader = {
134
+ __typename?: 'AwakeningSubscriptionPlansHeader';
135
+ bannerText?: Maybe<Scalars['String']['output']>;
136
+ displayText?: Maybe<Scalars['String']['output']>;
137
+ };
138
+ type BuildVersion = {
139
+ __typename?: 'BuildVersion';
140
+ build?: Maybe<Scalars['String']['output']>;
141
+ version?: Maybe<Scalars['String']['output']>;
142
+ };
143
+ type Concept = {
144
+ __typename?: 'Concept';
145
+ concept?: Maybe<Scalars['String']['output']>;
146
+ conceptIdent?: Maybe<Scalars['String']['output']>;
147
+ id?: Maybe<Scalars['ID']['output']>;
148
+ };
149
+ type Connection = {
150
+ __typename?: 'Connection';
151
+ confirmedAt: Scalars['DateTime']['output'];
152
+ connectedAt: Scalars['DateTime']['output'];
153
+ id: Scalars['ID']['output'];
154
+ parentUser?: Maybe<User>;
155
+ parentUserId: Scalars['ID']['output'];
156
+ studentUser?: Maybe<User>;
157
+ studentUserId: Scalars['ID']['output'];
158
+ };
159
+ type ConnectionsList = {
160
+ __typename?: 'ConnectionsList';
161
+ entries?: Maybe<Array<Maybe<Connection>>>;
162
+ pageNumber?: Maybe<Scalars['Int']['output']>;
163
+ pageSize?: Maybe<Scalars['Int']['output']>;
164
+ totalEntries?: Maybe<Scalars['Int']['output']>;
165
+ totalPages?: Maybe<Scalars['Int']['output']>;
166
+ };
167
+ type CreatedStudent = {
168
+ __typename?: 'CreatedStudent';
169
+ password?: Maybe<Scalars['String']['output']>;
170
+ student?: Maybe<Student>;
171
+ };
172
+ type CurrentUser = {
173
+ __typename?: 'CurrentUser';
174
+ displayName?: Maybe<Scalars['String']['output']>;
175
+ email?: Maybe<Scalars['String']['output']>;
176
+ firstName?: Maybe<Scalars['String']['output']>;
177
+ hasGoogleAccount?: Maybe<Scalars['Boolean']['output']>;
178
+ id?: Maybe<Scalars['ID']['output']>;
179
+ imageUploadHash?: Maybe<Scalars['String']['output']>;
180
+ isStripeCustomer: Scalars['Boolean']['output'];
181
+ lastName?: Maybe<Scalars['String']['output']>;
182
+ referralCode?: Maybe<Scalars['String']['output']>;
183
+ signInCount?: Maybe<Scalars['Int']['output']>;
184
+ teacherId?: Maybe<Scalars['Int']['output']>;
185
+ timezone?: Maybe<Scalars['String']['output']>;
186
+ username?: Maybe<Scalars['String']['output']>;
187
+ };
188
+ type FluencyFact = {
189
+ __typename?: 'FluencyFact';
190
+ a: Scalars['Int']['output'];
191
+ b: Scalars['Int']['output'];
192
+ op: FluencyFactOperation;
193
+ };
194
+ declare enum FluencyFactOperation {
195
+ /** a + b */
196
+ Add = "ADD",
197
+ /** a / b */
198
+ Div = "DIV",
199
+ /** a * b */
200
+ Mul = "MUL",
201
+ /** a - b */
202
+ Sub = "SUB"
203
+ }
204
+ type FluencyFactProgressStatus = {
205
+ __typename?: 'FluencyFactProgressStatus';
206
+ a: Scalars['Int']['output'];
207
+ b: Scalars['Int']['output'];
208
+ op: FluencyFactOperation;
209
+ status: FluencyFactProgressStatusType;
210
+ };
211
+ declare enum FluencyFactProgressStatusType {
212
+ /** Fluent in the fact */
213
+ Fluent = "FLUENT",
214
+ /** Assessed but not fluent in the fact */
215
+ NotFluent = "NOT_FLUENT",
216
+ /** The fact has not yet been assessed */
217
+ Unassessed = "UNASSESSED"
218
+ }
219
+ type FluencyFocus = {
220
+ __typename?: 'FluencyFocus';
221
+ assessedFactsCount: Scalars['Int']['output'];
222
+ completeFluencySessionsCount: Scalars['Int']['output'];
223
+ fluencyGainFactsCount: Scalars['Int']['output'];
224
+ fluentFactsCount: Scalars['Int']['output'];
225
+ focus: FluencyFocusType;
226
+ id?: Maybe<Scalars['ID']['output']>;
227
+ initialAssessmentFluentFactsCount: Scalars['Int']['output'];
228
+ instructorUser: FluencyInstructor;
229
+ instructorUserId: Scalars['ID']['output'];
230
+ lastFluencyTrialTime?: Maybe<Scalars['DateTime']['output']>;
231
+ playerUser: FluencyPlayer;
232
+ playerUserId: Scalars['ID']['output'];
233
+ totalFactsCount: Scalars['Int']['output'];
234
+ totalFluencySessionsCount: Scalars['Int']['output'];
235
+ totalUsageTimeMs: Scalars['Int']['output'];
236
+ };
237
+ declare enum FluencyFocusType {
238
+ /** Addition and subtraction from 0 - 5 */
239
+ Add5 = "ADD5",
240
+ /** Addition and subtraction from 0 - 9 */
241
+ Add9 = "ADD9",
242
+ /** Addition and subtraction from 0 - 10 */
243
+ Add10 = "ADD10",
244
+ /** Multiplication and division from 0 - 9 */
245
+ Mul9 = "MUL9",
246
+ /** Multiplication and division from 0 - 10 */
247
+ Mul10 = "MUL10",
248
+ /** Multiplication and division from 0 - 10 */
249
+ Mul12 = "MUL12"
250
+ }
251
+ type FluencyInstructor = {
252
+ __typename?: 'FluencyInstructor';
253
+ firstName?: Maybe<Scalars['String']['output']>;
254
+ id?: Maybe<Scalars['ID']['output']>;
255
+ lastName?: Maybe<Scalars['String']['output']>;
256
+ };
257
+ type FluencyPlayer = {
258
+ __typename?: 'FluencyPlayer';
259
+ currentSignInAt?: Maybe<Scalars['NaiveDateTime']['output']>;
260
+ fluencySessions?: Maybe<Array<Maybe<FluencySession>>>;
261
+ id?: Maybe<Scalars['ID']['output']>;
262
+ student?: Maybe<FluencyStudent>;
263
+ };
264
+ type FluencyPlayerFluencySessionsArgs = {
265
+ filter?: InputMaybe<FluencySessionFilter>;
266
+ };
267
+ type FluencySession = {
268
+ __typename?: 'FluencySession';
269
+ blueLightPercent: Scalars['Int']['output'];
270
+ id: Scalars['ID']['output'];
271
+ masteredTargetFactsCount: Scalars['Int']['output'];
272
+ startTime: Scalars['DateTime']['output'];
273
+ totalTargetFactsCount: Scalars['Int']['output'];
274
+ };
275
+ type FluencySessionFilter = {
276
+ startTimeAfter?: InputMaybe<Scalars['DateTime']['input']>;
277
+ };
278
+ type FluencyStudent = {
279
+ __typename?: 'FluencyStudent';
280
+ firstName?: Maybe<Scalars['String']['output']>;
281
+ id?: Maybe<Scalars['ID']['output']>;
282
+ lastInitial?: Maybe<Scalars['String']['output']>;
283
+ username?: Maybe<Scalars['String']['output']>;
284
+ };
285
+ type FocusAreaStatus = {
286
+ __typename?: 'FocusAreaStatus';
287
+ beastieBattleCount?: Maybe<Scalars['Int']['output']>;
288
+ beastieChallengeCount?: Maybe<Scalars['Int']['output']>;
289
+ count?: Maybe<Scalars['Int']['output']>;
290
+ id?: Maybe<Scalars['ID']['output']>;
291
+ isActive?: Maybe<Scalars['Boolean']['output']>;
292
+ learningObjectiveId?: Maybe<Scalars['ID']['output']>;
293
+ miniGameCount?: Maybe<Scalars['Int']['output']>;
294
+ playerUserId?: Maybe<Scalars['ID']['output']>;
295
+ quizzlerCount?: Maybe<Scalars['Int']['output']>;
296
+ subjectArea?: Maybe<SubjectArea>;
297
+ totalAnswered?: Maybe<Scalars['Int']['output']>;
298
+ totalCorrectlyAnswered?: Maybe<Scalars['Int']['output']>;
299
+ type?: Maybe<FocusAreaStatusType>;
300
+ };
301
+ declare enum FocusAreaStatusType {
302
+ InProgress = "IN_PROGRESS",
303
+ Mastered = "MASTERED",
304
+ Unstarted = "UNSTARTED"
305
+ }
306
+ type FocusAreaStatusesList = {
307
+ __typename?: 'FocusAreaStatusesList';
308
+ entries?: Maybe<Array<Maybe<FocusAreaStatus>>>;
309
+ pageNumber?: Maybe<Scalars['Int']['output']>;
310
+ pageSize?: Maybe<Scalars['Int']['output']>;
311
+ totalEntries?: Maybe<Scalars['Int']['output']>;
312
+ totalPages?: Maybe<Scalars['Int']['output']>;
313
+ };
314
+ type FocusMastery = {
315
+ __typename?: 'FocusMastery';
316
+ learningObjectives?: Maybe<Array<Maybe<ProgressionLearningObjective>>>;
317
+ progressCells?: Maybe<Array<Maybe<ProgressionCell>>>;
318
+ };
319
+ type Game = {
320
+ __typename?: 'Game';
321
+ audience?: Maybe<Audience>;
322
+ banner?: Maybe<Scalars['String']['output']>;
323
+ clonedFromGameId?: Maybe<Scalars['Int']['output']>;
324
+ conceptAlignedQuestions?: Maybe<Array<Maybe<Question>>>;
325
+ concepts?: Maybe<Array<Maybe<Concept>>>;
326
+ contentType?: Maybe<Scalars['String']['output']>;
327
+ createdAt?: Maybe<Scalars['DateTime']['output']>;
328
+ description?: Maybe<Scalars['String']['output']>;
329
+ developerDescription?: Maybe<Scalars['String']['output']>;
330
+ developerInstructions?: Maybe<Scalars['String']['output']>;
331
+ discussionQuestionsAfter?: Maybe<Scalars['String']['output']>;
332
+ discussionQuestionsBefore?: Maybe<Scalars['String']['output']>;
333
+ editorPickAt?: Maybe<Scalars['DateTime']['output']>;
334
+ estimatedDuration?: Maybe<Scalars['Int']['output']>;
335
+ game?: Maybe<Scalars['String']['output']>;
336
+ gameDeveloperId?: Maybe<Scalars['Int']['output']>;
337
+ id?: Maybe<Scalars['ID']['output']>;
338
+ image?: Maybe<Scalars['String']['output']>;
339
+ instructions?: Maybe<Scalars['String']['output']>;
340
+ isAvailable?: Maybe<Scalars['Boolean']['output']>;
341
+ learningObjectiveId?: Maybe<Scalars['ID']['output']>;
342
+ learningObjectives?: Maybe<Array<Maybe<LearningObjective>>>;
343
+ lexileLevel?: Maybe<Scalars['Int']['output']>;
344
+ multiLanguage?: Maybe<Scalars['Boolean']['output']>;
345
+ paidOut?: Maybe<Scalars['Boolean']['output']>;
346
+ pdfUrl?: Maybe<Scalars['String']['output']>;
347
+ questionGame?: Maybe<Scalars['Boolean']['output']>;
348
+ savesProgress?: Maybe<Scalars['Boolean']['output']>;
349
+ shortName?: Maybe<Scalars['String']['output']>;
350
+ sponsorshipImageUrl?: Maybe<Scalars['String']['output']>;
351
+ sponsorshipLinkUrl?: Maybe<Scalars['String']['output']>;
352
+ stat?: Maybe<GameStat>;
353
+ supportsIpad?: Maybe<Scalars['Boolean']['output']>;
354
+ supportsSpanish?: Maybe<Scalars['Boolean']['output']>;
355
+ supportsTts?: Maybe<Scalars['Boolean']['output']>;
356
+ teacherFacingPdfUrl?: Maybe<Scalars['String']['output']>;
357
+ teacherReviews?: Maybe<GameReviewsList>;
358
+ type?: Maybe<Scalars['String']['output']>;
359
+ updatedAt?: Maybe<Scalars['DateTime']['output']>;
360
+ version?: Maybe<GameVersion>;
361
+ video?: Maybe<Scalars['String']['output']>;
362
+ videoPreviewUrl?: Maybe<Scalars['String']['output']>;
363
+ vocabulary?: Maybe<Scalars['String']['output']>;
364
+ };
365
+ type GameConceptAlignedQuestionsArgs = {
366
+ learningObjectiveId: Scalars['ID']['input'];
367
+ pageSize?: InputMaybe<Scalars['Int']['input']>;
368
+ };
369
+ type GameTeacherReviewsArgs = {
370
+ page?: InputMaybe<Scalars['Int']['input']>;
371
+ pageSize?: InputMaybe<Scalars['Int']['input']>;
372
+ };
373
+ type GameReview = {
374
+ __typename?: 'GameReview';
375
+ checkAlignment?: Maybe<Scalars['Boolean']['output']>;
376
+ checkEngagement?: Maybe<Scalars['Boolean']['output']>;
377
+ checkFriendlyness?: Maybe<Scalars['Boolean']['output']>;
378
+ checkIssuesFree?: Maybe<Scalars['Boolean']['output']>;
379
+ contentIntegration?: Maybe<Scalars['Int']['output']>;
380
+ createdAt?: Maybe<Scalars['DateTime']['output']>;
381
+ criticalThinkingLevel?: Maybe<Scalars['Int']['output']>;
382
+ easeOfPlay?: Maybe<Scalars['Int']['output']>;
383
+ id?: Maybe<Scalars['ID']['output']>;
384
+ manuallyApproved?: Maybe<Scalars['Boolean']['output']>;
385
+ ratingEffectiveness?: Maybe<Scalars['Int']['output']>;
386
+ ratingEngagement?: Maybe<Scalars['Int']['output']>;
387
+ ratingInstructionClarity?: Maybe<Scalars['Int']['output']>;
388
+ ratingStability?: Maybe<Scalars['Int']['output']>;
389
+ review?: Maybe<Scalars['String']['output']>;
390
+ score?: Maybe<Scalars['Int']['output']>;
391
+ suggestedUse?: Maybe<Scalars['String']['output']>;
392
+ suggestions?: Maybe<Scalars['String']['output']>;
393
+ teacherName?: Maybe<Scalars['String']['output']>;
394
+ testerDisplayName?: Maybe<Scalars['String']['output']>;
395
+ upvotesCount?: Maybe<Scalars['Int']['output']>;
396
+ userHasUpvoted?: Maybe<Scalars['Boolean']['output']>;
397
+ };
398
+ type GameReviewsList = {
399
+ __typename?: 'GameReviewsList';
400
+ entries?: Maybe<Array<Maybe<GameReview>>>;
401
+ pageNumber?: Maybe<Scalars['Int']['output']>;
402
+ pageSize?: Maybe<Scalars['Int']['output']>;
403
+ totalEntries?: Maybe<Scalars['Int']['output']>;
404
+ totalPages?: Maybe<Scalars['Int']['output']>;
405
+ };
406
+ type GameStat = {
407
+ __typename?: 'GameStat';
408
+ compositeRatingAvg?: Maybe<Scalars['Float']['output']>;
409
+ compositeRatingScore?: Maybe<Scalars['Float']['output']>;
410
+ contentIntegrationAvg?: Maybe<Scalars['Float']['output']>;
411
+ easeOfPlayAvg?: Maybe<Scalars['Float']['output']>;
412
+ id?: Maybe<Scalars['Int']['output']>;
413
+ studentRatingAvg?: Maybe<Scalars['Float']['output']>;
414
+ studentRatingCount?: Maybe<Scalars['Float']['output']>;
415
+ studentRatingScoreSummary?: Maybe<Scalars['String']['output']>;
416
+ suggestedUseSummary?: Maybe<Scalars['String']['output']>;
417
+ teacherRatingAvg?: Maybe<Scalars['Float']['output']>;
418
+ teacherRatingCount?: Maybe<Scalars['Float']['output']>;
419
+ teacherRatingScoreSummary?: Maybe<Scalars['String']['output']>;
420
+ };
421
+ type GameVersion = {
422
+ __typename?: 'GameVersion';
423
+ acceptedAt?: Maybe<Scalars['DateTime']['output']>;
424
+ apiVersion?: Maybe<Scalars['String']['output']>;
425
+ createdAt?: Maybe<Scalars['DateTime']['output']>;
426
+ gameId?: Maybe<Scalars['ID']['output']>;
427
+ gameType?: Maybe<Scalars['String']['output']>;
428
+ id?: Maybe<Scalars['ID']['output']>;
429
+ languageKey?: Maybe<Scalars['String']['output']>;
430
+ releaseNotes?: Maybe<Scalars['String']['output']>;
431
+ url?: Maybe<Scalars['String']['output']>;
432
+ };
433
+ type GamesList = {
434
+ __typename?: 'GamesList';
435
+ entries?: Maybe<Array<Maybe<Game>>>;
436
+ pageNumber?: Maybe<Scalars['Int']['output']>;
437
+ pageSize?: Maybe<Scalars['Int']['output']>;
438
+ totalEntries?: Maybe<Scalars['Int']['output']>;
439
+ totalPages?: Maybe<Scalars['Int']['output']>;
440
+ };
441
+ type Grade = {
442
+ __typename?: 'Grade';
443
+ grade?: Maybe<Scalars['String']['output']>;
444
+ learningObjectiveId?: Maybe<Scalars['ID']['output']>;
445
+ };
446
+ type Image = {
447
+ __typename?: 'Image';
448
+ errorCode?: Maybe<Scalars['String']['output']>;
449
+ id?: Maybe<Scalars['ID']['output']>;
450
+ status?: Maybe<Scalars['String']['output']>;
451
+ url?: Maybe<Scalars['String']['output']>;
452
+ };
453
+ type LearningObjective = {
454
+ __typename?: 'LearningObjective';
455
+ description?: Maybe<Scalars['String']['output']>;
456
+ gameCount?: Maybe<Scalars['Int']['output']>;
457
+ games?: Maybe<GamesList>;
458
+ grades?: Maybe<Array<Maybe<Grade>>>;
459
+ id?: Maybe<Scalars['ID']['output']>;
460
+ imageKey?: Maybe<Scalars['String']['output']>;
461
+ imageUrl?: Maybe<Scalars['String']['output']>;
462
+ learningObjective?: Maybe<Scalars['String']['output']>;
463
+ name?: Maybe<Scalars['String']['output']>;
464
+ ngssDciName?: Maybe<Scalars['String']['output']>;
465
+ questionCount?: Maybe<Scalars['Int']['output']>;
466
+ sortOrder?: Maybe<Scalars['String']['output']>;
467
+ standardCode?: Maybe<Scalars['String']['output']>;
468
+ subject?: Maybe<Subject>;
469
+ };
470
+ type LearningObjectiveGamesArgs = {
471
+ page?: InputMaybe<Scalars['Int']['input']>;
472
+ pageSize?: InputMaybe<Scalars['Int']['input']>;
473
+ type?: InputMaybe<Scalars['String']['input']>;
474
+ };
475
+ type LearningObjectiveUnit = {
476
+ __typename?: 'LearningObjectiveUnit';
477
+ id?: Maybe<Scalars['ID']['output']>;
478
+ learningObjective?: Maybe<LearningObjective>;
479
+ learningObjectiveId?: Maybe<Scalars['Int']['output']>;
480
+ standardUnitId?: Maybe<Scalars['Int']['output']>;
481
+ };
482
+ type LearningObjectivesList = {
483
+ __typename?: 'LearningObjectivesList';
484
+ entries?: Maybe<Array<Maybe<LearningObjective>>>;
485
+ pageNumber?: Maybe<Scalars['Int']['output']>;
486
+ pageSize?: Maybe<Scalars['Int']['output']>;
487
+ totalEntries?: Maybe<Scalars['Int']['output']>;
488
+ totalPages?: Maybe<Scalars['Int']['output']>;
489
+ };
490
+ type ParentLearningObjectiveUnit = {
491
+ __typename?: 'ParentLearningObjectiveUnit';
492
+ answers?: Maybe<Array<Maybe<ParentPlayerActivityAnswer>>>;
493
+ complete?: Maybe<Scalars['Boolean']['output']>;
494
+ id?: Maybe<Scalars['ID']['output']>;
495
+ learningObjective?: Maybe<Scalars['String']['output']>;
496
+ learningObjectiveId?: Maybe<Scalars['Int']['output']>;
497
+ loAnswers?: Maybe<ParentQuestionAnswerData>;
498
+ standardUnitId?: Maybe<Scalars['Int']['output']>;
499
+ total?: Maybe<Scalars['Float']['output']>;
500
+ };
501
+ type ParentPlayerActivityAnswer = {
502
+ __typename?: 'ParentPlayerActivityAnswer';
503
+ id?: Maybe<Scalars['ID']['output']>;
504
+ isCorrect?: Maybe<Scalars['Boolean']['output']>;
505
+ };
506
+ type ParentQuestionAnswerData = {
507
+ __typename?: 'ParentQuestionAnswerData';
508
+ answered?: Maybe<Scalars['Float']['output']>;
509
+ correct?: Maybe<Scalars['Float']['output']>;
510
+ incorrect?: Maybe<Scalars['Float']['output']>;
511
+ };
512
+ type ParentStandardUnit = {
513
+ __typename?: 'ParentStandardUnit';
514
+ gradeLevel?: Maybe<Scalars['Int']['output']>;
515
+ id?: Maybe<Scalars['ID']['output']>;
516
+ learningObjectiveUnits?: Maybe<Array<Maybe<ParentLearningObjectiveUnit>>>;
517
+ name?: Maybe<Scalars['String']['output']>;
518
+ standardId?: Maybe<Scalars['Int']['output']>;
519
+ unitAnswers?: Maybe<ParentQuestionAnswerData>;
520
+ unitCode?: Maybe<Scalars['String']['output']>;
521
+ unitComplete?: Maybe<Scalars['Boolean']['output']>;
522
+ unitNumber?: Maybe<Scalars['Float']['output']>;
523
+ unitTotal?: Maybe<Scalars['Float']['output']>;
524
+ };
525
+ type ParentStandardUnitEntriesList = {
526
+ __typename?: 'ParentStandardUnitEntriesList';
527
+ entries?: Maybe<Array<Maybe<ParentStandardUnitEntry>>>;
528
+ pageNumber?: Maybe<Scalars['Int']['output']>;
529
+ pageSize?: Maybe<Scalars['Int']['output']>;
530
+ standardIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
531
+ topics?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
532
+ totalEntries?: Maybe<Scalars['Int']['output']>;
533
+ totalPages?: Maybe<Scalars['Int']['output']>;
534
+ };
535
+ type ParentStandardUnitEntry = {
536
+ __typename?: 'ParentStandardUnitEntry';
537
+ gradeLevel?: Maybe<Scalars['Int']['output']>;
538
+ name?: Maybe<Scalars['String']['output']>;
539
+ standardId?: Maybe<Scalars['String']['output']>;
540
+ standardUnitId?: Maybe<Scalars['ID']['output']>;
541
+ unitCode?: Maybe<Scalars['String']['output']>;
542
+ unitNumber?: Maybe<Scalars['Int']['output']>;
543
+ };
544
+ type Player = {
545
+ __typename?: 'Player';
546
+ buddyListEnabled?: Maybe<Scalars['Boolean']['output']>;
547
+ id?: Maybe<Scalars['ID']['output']>;
548
+ };
549
+ type PlayerActiveUnit = {
550
+ __typename?: 'PlayerActiveUnit';
551
+ id?: Maybe<Scalars['ID']['output']>;
552
+ mostActive?: Maybe<Scalars['Boolean']['output']>;
553
+ standard?: Maybe<Standard>;
554
+ };
555
+ type PlayerActivitiesSummariesList = {
556
+ __typename?: 'PlayerActivitiesSummariesList';
557
+ entries?: Maybe<Array<Maybe<PlayerActivitiesSummary>>>;
558
+ pageNumber?: Maybe<Scalars['Int']['output']>;
559
+ pageSize?: Maybe<Scalars['Int']['output']>;
560
+ totalEntries?: Maybe<Scalars['Int']['output']>;
561
+ totalPages?: Maybe<Scalars['Int']['output']>;
562
+ };
563
+ type PlayerActivitiesSummary = {
564
+ __typename?: 'PlayerActivitiesSummary';
565
+ questionsAnswered?: Maybe<Scalars['Int']['output']>;
566
+ questionsAnsweredCorrectly?: Maybe<Scalars['Int']['output']>;
567
+ won: Scalars['Boolean']['output'];
568
+ };
569
+ type PlayerSubjectArea = {
570
+ __typename?: 'PlayerSubjectArea';
571
+ imageKey?: Maybe<Scalars['String']['output']>;
572
+ isSelected?: Maybe<Scalars['Boolean']['output']>;
573
+ label?: Maybe<Scalars['String']['output']>;
574
+ standardId?: Maybe<Scalars['String']['output']>;
575
+ };
576
+ type Playtime = {
577
+ __typename?: 'Playtime';
578
+ playDate: Scalars['Date']['output'];
579
+ playTimeSec: Scalars['Int']['output'];
580
+ type?: Maybe<PlaytimeType>;
581
+ };
582
+ declare enum PlaytimeType {
583
+ Assessment = "ASSESSMENT",
584
+ AwakeningAcademy = "AWAKENING_ACADEMY",
585
+ AwakeningOverworld = "AWAKENING_OVERWORLD",
586
+ AwakeningQuizzler = "AWAKENING_QUIZZLER",
587
+ AwakeningV3Overworld = "AWAKENING_V3_OVERWORLD",
588
+ Battle = "BATTLE",
589
+ BeastieBattle = "BEASTIE_BATTLE",
590
+ BeastieChallenge = "BEASTIE_CHALLENGE",
591
+ ClassicPlaylistOverworld = "CLASSIC_PLAYLIST_OVERWORLD",
592
+ ClassroomAwakening = "CLASSROOM_AWAKENING",
593
+ FluencyAssess = "FLUENCY_ASSESS",
594
+ FluencyEstablish = "FLUENCY_ESTABLISH",
595
+ FluencyPractice = "FLUENCY_PRACTICE",
596
+ FluencyTyping = "FLUENCY_TYPING",
597
+ MiniGame = "MINI_GAME",
598
+ StructuredFreeplay = "STRUCTURED_FREEPLAY",
599
+ StudentHomePlay = "STUDENT_HOME_PLAY",
600
+ TargetedLearningOverworld = "TARGETED_LEARNING_OVERWORLD",
601
+ Video = "VIDEO"
602
+ }
603
+ type ProgressionCell = {
604
+ __typename?: 'ProgressionCell';
605
+ correctAnswers?: Maybe<Scalars['Int']['output']>;
606
+ dateMastered?: Maybe<Scalars['DateTime']['output']>;
607
+ dateStarted?: Maybe<Scalars['DateTime']['output']>;
608
+ lastActivity?: Maybe<Scalars['DateTime']['output']>;
609
+ learningObjectiveId?: Maybe<Scalars['Int']['output']>;
610
+ masteryAchievement?: Maybe<Scalars['Boolean']['output']>;
611
+ masteryScore?: Maybe<Scalars['Int']['output']>;
612
+ questionsAnswered?: Maybe<Scalars['Int']['output']>;
613
+ remainingQuestions?: Maybe<Scalars['Int']['output']>;
614
+ status?: Maybe<Scalars['String']['output']>;
615
+ studentId?: Maybe<Scalars['Int']['output']>;
616
+ taskType?: Maybe<Scalars['String']['output']>;
617
+ };
618
+ type ProgressionLearningObjective = {
619
+ __typename?: 'ProgressionLearningObjective';
620
+ description?: Maybe<Scalars['String']['output']>;
621
+ domainName?: Maybe<Scalars['String']['output']>;
622
+ gradeLevel?: Maybe<Scalars['Int']['output']>;
623
+ id?: Maybe<Scalars['Int']['output']>;
624
+ name?: Maybe<Scalars['String']['output']>;
625
+ ngssDciName?: Maybe<Scalars['String']['output']>;
626
+ order?: Maybe<Scalars['Float']['output']>;
627
+ standard?: Maybe<Scalars['String']['output']>;
628
+ subjectArea?: Maybe<Scalars['String']['output']>;
629
+ };
630
+ type Question = {
631
+ __typename?: 'Question';
632
+ answers?: Maybe<Array<Maybe<Answer>>>;
633
+ correctAnswerId?: Maybe<Scalars['Int']['output']>;
634
+ depthOfKnowledge?: Maybe<Scalars['Int']['output']>;
635
+ format?: Maybe<Scalars['String']['output']>;
636
+ id?: Maybe<Scalars['ID']['output']>;
637
+ image?: Maybe<Image>;
638
+ imageId?: Maybe<Scalars['ID']['output']>;
639
+ imageKey?: Maybe<Scalars['String']['output']>;
640
+ layout?: Maybe<Scalars['String']['output']>;
641
+ question?: Maybe<Scalars['String']['output']>;
642
+ scoreCard?: Maybe<Scalars['String']['output']>;
643
+ subjectArea?: Maybe<Scalars['String']['output']>;
644
+ type?: Maybe<Scalars['String']['output']>;
645
+ };
646
+ type RootMutationType = {
647
+ __typename?: 'RootMutationType';
648
+ /** Update parent password */
649
+ changePassword?: Maybe<CurrentUser>;
650
+ changeStudentPassword?: Maybe<Student>;
651
+ /** Confirm student connection */
652
+ confirmConnection?: Maybe<Scalars['Boolean']['output']>;
653
+ connectToStudent?: Maybe<Student>;
654
+ /** Generates an access token for Awakening native mobile client deep link to share a session */
655
+ createAwakeningDeepLinkToken?: Maybe<Scalars['String']['output']>;
656
+ createStripeCustomer?: Maybe<Scalars['Boolean']['output']>;
657
+ createStripeSetupIntent: Scalars['String']['output'];
658
+ createStudent?: Maybe<CreatedStudent>;
659
+ disconnectStudent?: Maybe<Scalars['ID']['output']>;
660
+ redeemPrepaidVoucher?: Maybe<Scalars['Boolean']['output']>;
661
+ subscribePlayer?: Maybe<Scalars['Boolean']['output']>;
662
+ unsubscribePlayer?: Maybe<Scalars['Boolean']['output']>;
663
+ updateAllowHomeAccessDuringSchoolHours?: Maybe<Student>;
664
+ /** Update parent first name and last name */
665
+ updateName?: Maybe<CurrentUser>;
666
+ updateStudentBuddyList?: Maybe<Student>;
667
+ /** Update student fluency focus */
668
+ updateStudentFluencyFocus?: Maybe<User>;
669
+ updateStudentGradeLevel?: Maybe<Student>;
670
+ updateStudentName?: Maybe<Student>;
671
+ updateStudentState?: Maybe<Student>;
672
+ };
673
+ type RootMutationTypeChangePasswordArgs = {
674
+ password?: InputMaybe<Scalars['String']['input']>;
675
+ };
676
+ type RootMutationTypeChangeStudentPasswordArgs = {
677
+ password?: InputMaybe<Scalars['String']['input']>;
678
+ studentUserId?: InputMaybe<Scalars['ID']['input']>;
679
+ };
680
+ type RootMutationTypeConfirmConnectionArgs = {
681
+ studentUserId: Scalars['ID']['input'];
682
+ };
683
+ type RootMutationTypeConnectToStudentArgs = {
684
+ password?: InputMaybe<Scalars['String']['input']>;
685
+ username?: InputMaybe<Scalars['String']['input']>;
686
+ };
687
+ type RootMutationTypeCreateStripeCustomerArgs = {
688
+ paymentMethod?: InputMaybe<Scalars['String']['input']>;
689
+ };
690
+ type RootMutationTypeCreateStudentArgs = {
691
+ firstName: Scalars['String']['input'];
692
+ gradeLevel?: InputMaybe<Scalars['String']['input']>;
693
+ lastInitial: Scalars['String']['input'];
694
+ password?: InputMaybe<Scalars['String']['input']>;
695
+ stateId?: InputMaybe<Scalars['ID']['input']>;
696
+ username?: InputMaybe<Scalars['String']['input']>;
697
+ };
698
+ type RootMutationTypeDisconnectStudentArgs = {
699
+ studentUserId: Scalars['ID']['input'];
700
+ };
701
+ type RootMutationTypeRedeemPrepaidVoucherArgs = {
702
+ playerUserId: Scalars['ID']['input'];
703
+ prepaidVoucherRedemptionToken: Scalars['String']['input'];
704
+ };
705
+ type RootMutationTypeSubscribePlayerArgs = {
706
+ paymentMethod: Scalars['String']['input'];
707
+ playerUserId: Scalars['ID']['input'];
708
+ promoCode?: InputMaybe<Scalars['String']['input']>;
709
+ subscriptionPlanId: Scalars['ID']['input'];
710
+ };
711
+ type RootMutationTypeUnsubscribePlayerArgs = {
712
+ playerUserId: Scalars['ID']['input'];
713
+ };
714
+ type RootMutationTypeUpdateAllowHomeAccessDuringSchoolHoursArgs = {
715
+ allowHomeAccessDuringSchoolHours?: InputMaybe<Scalars['Boolean']['input']>;
716
+ studentUserId?: InputMaybe<Scalars['ID']['input']>;
717
+ };
718
+ type RootMutationTypeUpdateNameArgs = {
719
+ firstName?: InputMaybe<Scalars['String']['input']>;
720
+ lastName?: InputMaybe<Scalars['String']['input']>;
721
+ };
722
+ type RootMutationTypeUpdateStudentBuddyListArgs = {
723
+ buddyListEnabled?: InputMaybe<Scalars['Boolean']['input']>;
724
+ studentUserId?: InputMaybe<Scalars['ID']['input']>;
725
+ };
726
+ type RootMutationTypeUpdateStudentFluencyFocusArgs = {
727
+ focus?: InputMaybe<FluencyFocusType>;
728
+ studentUserId?: InputMaybe<Scalars['ID']['input']>;
729
+ };
730
+ type RootMutationTypeUpdateStudentGradeLevelArgs = {
731
+ gradeLevel?: InputMaybe<Scalars['String']['input']>;
732
+ studentUserId?: InputMaybe<Scalars['ID']['input']>;
733
+ };
734
+ type RootMutationTypeUpdateStudentNameArgs = {
735
+ firstName?: InputMaybe<Scalars['String']['input']>;
736
+ lastInitial?: InputMaybe<Scalars['String']['input']>;
737
+ studentUserId?: InputMaybe<Scalars['ID']['input']>;
738
+ username?: InputMaybe<Scalars['String']['input']>;
739
+ };
740
+ type RootMutationTypeUpdateStudentStateArgs = {
741
+ stateId?: InputMaybe<Scalars['String']['input']>;
742
+ studentUserId?: InputMaybe<Scalars['ID']['input']>;
743
+ };
744
+ type RootQueryType = {
745
+ __typename?: 'RootQueryType';
746
+ /** The current version for the LoL Parents GraphQL API. */
747
+ apiVersion?: Maybe<BuildVersion>;
748
+ awakeningSubscriptionPlans?: Maybe<Array<AwakeningSubscriptionPlan>>;
749
+ awakeningSubscriptionPlansHeader?: Maybe<AwakeningSubscriptionPlansHeader>;
750
+ /** Get current user, when authenticated */
751
+ currentUser?: Maybe<CurrentUser>;
752
+ defaultStripePaymentMethod?: Maybe<StripePaymentMethod>;
753
+ /** Fluency Fact Progress Statuses */
754
+ fluencyFactProgressStatuses?: Maybe<Array<Maybe<FluencyFactProgressStatus>>>;
755
+ /** Fluency Facts */
756
+ fluencyFacts?: Maybe<Array<Maybe<FluencyFact>>>;
757
+ /** Focus area list */
758
+ focusAreaStatuses?: Maybe<FocusAreaStatusesList>;
759
+ /** Focus mastery belonging to the current student */
760
+ focusMastery?: Maybe<FocusMastery>;
761
+ /** Learning objectives belonging to current teacher */
762
+ learningObjectives?: Maybe<LearningObjectivesList>;
763
+ listStates?: Maybe<Array<State>>;
764
+ /** List unconfirmed student connections */
765
+ listUnconfirmedConnections?: Maybe<ConnectionsList>;
766
+ myFeatureFlags?: Maybe<Array<Scalars['String']['output']>>;
767
+ /** Get parents assoc children */
768
+ parentChildren?: Maybe<Array<Maybe<Student>>>;
769
+ /** Get all standard units for this user and grades */
770
+ parentStandardUnitEntries?: Maybe<ParentStandardUnitEntriesList>;
771
+ /** Get player active units */
772
+ playerActiveUnits?: Maybe<Array<Maybe<PlayerActiveUnit>>>;
773
+ /** Get an activity summary */
774
+ playerActivitiesSummary?: Maybe<PlayerActivitiesSummariesList>;
775
+ /** Get default subject areas */
776
+ playerSubjectAreas?: Maybe<Array<Maybe<PlayerSubjectArea>>>;
777
+ /** Standard progression belonging to the current student */
778
+ standardProgression?: Maybe<StandardProgressionList>;
779
+ /** Get a list of standard units based on their ids */
780
+ standardUnitEntries?: Maybe<StandardUnitEntriesList>;
781
+ /** Get standard units for player and standard */
782
+ standardUnits?: Maybe<Array<Maybe<ParentStandardUnit>>>;
783
+ /** Get student details */
784
+ studentDetail?: Maybe<Student>;
785
+ /** Get a children's teacher list */
786
+ studentTeachers?: Maybe<StudentTeachersList>;
787
+ /** Student User by ID */
788
+ studentUser?: Maybe<User>;
789
+ /** Get a standard unit activities summary */
790
+ unitActivities?: Maybe<UnitActivitiesList>;
791
+ };
792
+ type RootQueryTypeFluencyFactProgressStatusesArgs = {
793
+ fluencyFocus: FluencyFocusType;
794
+ startTimeAfter?: InputMaybe<Scalars['DateTime']['input']>;
795
+ startTimeBefore: Scalars['DateTime']['input'];
796
+ studentUserId: Scalars['ID']['input'];
797
+ };
798
+ type RootQueryTypeFluencyFactsArgs = {
799
+ focus: FluencyFocusType;
800
+ };
801
+ type RootQueryTypeFocusAreaStatusesArgs = {
802
+ page?: InputMaybe<Scalars['Int']['input']>;
803
+ pageSize?: InputMaybe<Scalars['Int']['input']>;
804
+ studentUserId?: InputMaybe<Scalars['ID']['input']>;
805
+ subjectArea?: InputMaybe<SubjectArea>;
806
+ teacherUserId?: InputMaybe<Scalars['ID']['input']>;
807
+ };
808
+ type RootQueryTypeFocusMasteryArgs = {
809
+ gradeLevel?: InputMaybe<Scalars['Int']['input']>;
810
+ loSearch?: InputMaybe<Scalars['String']['input']>;
811
+ progressType?: InputMaybe<Scalars['String']['input']>;
812
+ standard?: InputMaybe<Scalars['String']['input']>;
813
+ studentUserId: Scalars['ID']['input'];
814
+ subjectArea?: InputMaybe<SubjectArea>;
815
+ };
816
+ type RootQueryTypeLearningObjectivesArgs = {
817
+ ids?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
818
+ page?: InputMaybe<Scalars['Int']['input']>;
819
+ pageSize?: InputMaybe<Scalars['Int']['input']>;
820
+ };
821
+ type RootQueryTypeListUnconfirmedConnectionsArgs = {
822
+ page?: InputMaybe<Scalars['Int']['input']>;
823
+ pageSize?: InputMaybe<Scalars['Int']['input']>;
824
+ };
825
+ type RootQueryTypeParentStandardUnitEntriesArgs = {
826
+ grades: Array<InputMaybe<Scalars['String']['input']>>;
827
+ page?: InputMaybe<Scalars['Int']['input']>;
828
+ pageSize?: InputMaybe<Scalars['Int']['input']>;
829
+ standards?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
830
+ studentUserId: Scalars['ID']['input'];
831
+ subjectArea: Scalars['String']['input'];
832
+ topics?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
833
+ };
834
+ type RootQueryTypePlayerActiveUnitsArgs = {
835
+ studentUserId: Scalars['String']['input'];
836
+ };
837
+ type RootQueryTypePlayerActivitiesSummaryArgs = {
838
+ page?: InputMaybe<Scalars['Int']['input']>;
839
+ pageSize?: InputMaybe<Scalars['Int']['input']>;
840
+ teacherFocusAreaId: Scalars['ID']['input'];
841
+ };
842
+ type RootQueryTypePlayerSubjectAreasArgs = {
843
+ studentUserId: Scalars['String']['input'];
844
+ };
845
+ type RootQueryTypeStandardProgressionArgs = {
846
+ page?: InputMaybe<Scalars['Int']['input']>;
847
+ pageSize?: InputMaybe<Scalars['Int']['input']>;
848
+ studentUserId: Scalars['ID']['input'];
849
+ };
850
+ type RootQueryTypeStandardUnitEntriesArgs = {
851
+ ids?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
852
+ page?: InputMaybe<Scalars['Int']['input']>;
853
+ pageSize?: InputMaybe<Scalars['Int']['input']>;
854
+ };
855
+ type RootQueryTypeStandardUnitsArgs = {
856
+ gradeLevel: Scalars['String']['input'];
857
+ standardId: Scalars['String']['input'];
858
+ studentUserId: Scalars['String']['input'];
859
+ };
860
+ type RootQueryTypeStudentDetailArgs = {
861
+ studentUserId: Scalars['String']['input'];
862
+ };
863
+ type RootQueryTypeStudentTeachersArgs = {
864
+ page?: InputMaybe<Scalars['Int']['input']>;
865
+ pageSize?: InputMaybe<Scalars['Int']['input']>;
866
+ studentUserId?: InputMaybe<Scalars['ID']['input']>;
867
+ };
868
+ type RootQueryTypeStudentUserArgs = {
869
+ id: Scalars['ID']['input'];
870
+ };
871
+ type RootQueryTypeUnitActivitiesArgs = {
872
+ page?: InputMaybe<Scalars['Int']['input']>;
873
+ pageSize?: InputMaybe<Scalars['Int']['input']>;
874
+ standardUnitId: Scalars['ID']['input'];
875
+ studentUserId: Scalars['ID']['input'];
876
+ };
877
+ type Standard = {
878
+ __typename?: 'Standard';
879
+ id?: Maybe<Scalars['ID']['output']>;
880
+ publicName?: Maybe<Scalars['String']['output']>;
881
+ subjectArea?: Maybe<Scalars['String']['output']>;
882
+ };
883
+ type StandardProgressionEntry = {
884
+ __typename?: 'StandardProgressionEntry';
885
+ awakeningQuizzlerCount?: Maybe<Scalars['Int']['output']>;
886
+ beastieBattleCount?: Maybe<Scalars['Int']['output']>;
887
+ beastieChallengeCount?: Maybe<Scalars['Int']['output']>;
888
+ gradeLevel?: Maybe<Scalars['Int']['output']>;
889
+ isActive?: Maybe<Scalars['Boolean']['output']>;
890
+ miniGameCount?: Maybe<Scalars['Int']['output']>;
891
+ name?: Maybe<Scalars['String']['output']>;
892
+ playerUserId?: Maybe<Scalars['ID']['output']>;
893
+ progress?: Maybe<Scalars['String']['output']>;
894
+ standardUnitId?: Maybe<Scalars['ID']['output']>;
895
+ totalAnswered?: Maybe<Scalars['Int']['output']>;
896
+ totalCorrectlyAnswered?: Maybe<Scalars['Int']['output']>;
897
+ unitCode?: Maybe<Scalars['String']['output']>;
898
+ unitNumber?: Maybe<Scalars['Int']['output']>;
899
+ };
900
+ type StandardProgressionList = {
901
+ __typename?: 'StandardProgressionList';
902
+ entries?: Maybe<Array<Maybe<StandardProgressionEntry>>>;
903
+ pageNumber?: Maybe<Scalars['Int']['output']>;
904
+ pageSize?: Maybe<Scalars['Int']['output']>;
905
+ totalEntries?: Maybe<Scalars['Int']['output']>;
906
+ totalPages?: Maybe<Scalars['Int']['output']>;
907
+ };
908
+ type StandardUnit = {
909
+ __typename?: 'StandardUnit';
910
+ gradeLevel?: Maybe<Scalars['Int']['output']>;
911
+ id?: Maybe<Scalars['ID']['output']>;
912
+ learningObjectiveUnits?: Maybe<Array<Maybe<LearningObjectiveUnit>>>;
913
+ name?: Maybe<Scalars['String']['output']>;
914
+ unitCode?: Maybe<Scalars['String']['output']>;
915
+ unitNumber?: Maybe<Scalars['String']['output']>;
916
+ };
917
+ type StandardUnitEntriesList = {
918
+ __typename?: 'StandardUnitEntriesList';
919
+ entries?: Maybe<Array<Maybe<StandardUnitEntry>>>;
920
+ pageNumber?: Maybe<Scalars['Int']['output']>;
921
+ pageSize?: Maybe<Scalars['Int']['output']>;
922
+ totalEntries?: Maybe<Scalars['Int']['output']>;
923
+ totalPages?: Maybe<Scalars['Int']['output']>;
924
+ };
925
+ type StandardUnitEntry = {
926
+ __typename?: 'StandardUnitEntry';
927
+ gradeLevel?: Maybe<Scalars['Int']['output']>;
928
+ id?: Maybe<Scalars['ID']['output']>;
929
+ name?: Maybe<Scalars['String']['output']>;
930
+ standardId?: Maybe<Scalars['String']['output']>;
931
+ subjectArea?: Maybe<Scalars['String']['output']>;
932
+ unitCode?: Maybe<Scalars['String']['output']>;
933
+ unitNumber?: Maybe<Scalars['Int']['output']>;
934
+ };
935
+ type State = {
936
+ __typename?: 'State';
937
+ abbrev: Scalars['String']['output'];
938
+ id: Scalars['ID']['output'];
939
+ name: Scalars['String']['output'];
940
+ };
941
+ type StripePaymentMethod = {
942
+ __typename?: 'StripePaymentMethod';
943
+ id?: Maybe<Scalars['ID']['output']>;
944
+ last4?: Maybe<Scalars['String']['output']>;
945
+ };
946
+ type Student = {
947
+ __typename?: 'Student';
948
+ firstName?: Maybe<Scalars['String']['output']>;
949
+ id?: Maybe<Scalars['ID']['output']>;
950
+ lastInitial?: Maybe<Scalars['String']['output']>;
951
+ user?: Maybe<User>;
952
+ username?: Maybe<Scalars['String']['output']>;
953
+ };
954
+ type StudentTeacher = {
955
+ __typename?: 'StudentTeacher';
956
+ familyName?: Maybe<Scalars['String']['output']>;
957
+ givenName?: Maybe<Scalars['String']['output']>;
958
+ schoolId?: Maybe<Scalars['ID']['output']>;
959
+ stateId?: Maybe<Scalars['ID']['output']>;
960
+ teacherId?: Maybe<Scalars['ID']['output']>;
961
+ teacherUserId?: Maybe<Scalars['ID']['output']>;
962
+ };
963
+ type StudentTeachersList = {
964
+ __typename?: 'StudentTeachersList';
965
+ entries?: Maybe<Array<Maybe<StudentTeacher>>>;
966
+ pageNumber?: Maybe<Scalars['Int']['output']>;
967
+ pageSize?: Maybe<Scalars['Int']['output']>;
968
+ totalEntries?: Maybe<Scalars['Int']['output']>;
969
+ totalPages?: Maybe<Scalars['Int']['output']>;
970
+ };
971
+ type Subject = {
972
+ __typename?: 'Subject';
973
+ gradeLevel?: Maybe<Scalars['String']['output']>;
974
+ iconSvgName?: Maybe<Scalars['String']['output']>;
975
+ id?: Maybe<Scalars['ID']['output']>;
976
+ imageKey?: Maybe<Scalars['String']['output']>;
977
+ imageUrl?: Maybe<Scalars['String']['output']>;
978
+ learningObjectives?: Maybe<Array<Maybe<LearningObjective>>>;
979
+ name?: Maybe<Scalars['String']['output']>;
980
+ sortOrder?: Maybe<Scalars['String']['output']>;
981
+ standard?: Maybe<Scalars['String']['output']>;
982
+ subject?: Maybe<Scalars['String']['output']>;
983
+ subjectArea?: Maybe<Scalars['String']['output']>;
984
+ };
985
+ declare enum SubjectArea {
986
+ Math = "MATH",
987
+ Science = "SCIENCE",
988
+ SocialStudies = "SOCIAL_STUDIES"
989
+ }
990
+ /** The payment provider on an Awakening subscription */
991
+ declare enum SubscriptionProviderType {
992
+ /** Android Play Store */
993
+ Android = "ANDROID",
994
+ /** District */
995
+ District = "DISTRICT",
996
+ /** iOS App Store */
997
+ Ios = "IOS",
998
+ /** Internal LOL subscription */
999
+ Lol = "LOL",
1000
+ /** School */
1001
+ School = "SCHOOL",
1002
+ /** Stripe */
1003
+ Stripe = "STRIPE",
1004
+ /** Teacher */
1005
+ Teacher = "TEACHER"
1006
+ }
1007
+ type UnitActivitiesList = {
1008
+ __typename?: 'UnitActivitiesList';
1009
+ entries?: Maybe<Array<Maybe<UnitActivitiesSummary>>>;
1010
+ pageNumber?: Maybe<Scalars['Int']['output']>;
1011
+ pageSize?: Maybe<Scalars['Int']['output']>;
1012
+ totalEntries?: Maybe<Scalars['Int']['output']>;
1013
+ totalPages?: Maybe<Scalars['Int']['output']>;
1014
+ };
1015
+ type UnitActivitiesSummary = {
1016
+ __typename?: 'UnitActivitiesSummary';
1017
+ playerId?: Maybe<Scalars['Int']['output']>;
1018
+ standardUnitId?: Maybe<Scalars['Int']['output']>;
1019
+ totalAnswered?: Maybe<Scalars['Int']['output']>;
1020
+ totalCorrectlyAnswered?: Maybe<Scalars['Int']['output']>;
1021
+ type?: Maybe<Scalars['String']['output']>;
1022
+ unitCode?: Maybe<Scalars['String']['output']>;
1023
+ };
1024
+ type User = {
1025
+ __typename?: 'User';
1026
+ activityDailySummaries?: Maybe<Array<Maybe<ActivitySummary>>>;
1027
+ allowHomeAccessDuringSchoolHours?: Maybe<Scalars['Boolean']['output']>;
1028
+ assignedFluencyFocus?: Maybe<FluencyFocus>;
1029
+ assignedFluencyFocuses?: Maybe<Array<Maybe<FluencyFocus>>>;
1030
+ awakeningSubscriptions?: Maybe<Array<Maybe<AwakeningSubscription>>>;
1031
+ currentSignInAt?: Maybe<Scalars['DateTime']['output']>;
1032
+ currentStandardUnit?: Maybe<StandardUnit>;
1033
+ email?: Maybe<Scalars['String']['output']>;
1034
+ firstName?: Maybe<Scalars['String']['output']>;
1035
+ fluencySessions?: Maybe<Array<Maybe<FluencySession>>>;
1036
+ gradeLevel?: Maybe<Scalars['String']['output']>;
1037
+ hasAwakeningManagedSubscription?: Maybe<Scalars['Boolean']['output']>;
1038
+ id?: Maybe<Scalars['ID']['output']>;
1039
+ imageUploadHash?: Maybe<Scalars['String']['output']>;
1040
+ isStripeCustomer: Scalars['Boolean']['output'];
1041
+ isSubscribed?: Maybe<Scalars['Boolean']['output']>;
1042
+ lastName?: Maybe<Scalars['String']['output']>;
1043
+ mostRecentAddSubFocus?: Maybe<FluencyFocusType>;
1044
+ mostRecentMulDivFocus?: Maybe<FluencyFocusType>;
1045
+ player?: Maybe<Player>;
1046
+ playtimeDailySummaries?: Maybe<Array<Maybe<Playtime>>>;
1047
+ standardId?: Maybe<Scalars['String']['output']>;
1048
+ state?: Maybe<State>;
1049
+ username?: Maybe<Scalars['String']['output']>;
1050
+ };
1051
+ type UserActivityDailySummariesArgs = {
1052
+ endDate?: InputMaybe<Scalars['Date']['input']>;
1053
+ excludeTypes?: InputMaybe<Array<InputMaybe<PlaytimeType>>>;
1054
+ startDate?: InputMaybe<Scalars['Date']['input']>;
1055
+ types?: InputMaybe<Array<InputMaybe<PlaytimeType>>>;
1056
+ };
1057
+ type UserAssignedFluencyFocusArgs = {
1058
+ filterOnCurrentUser?: InputMaybe<Scalars['Boolean']['input']>;
1059
+ };
1060
+ type UserAwakeningSubscriptionsArgs = {
1061
+ isActive?: InputMaybe<Scalars['Boolean']['input']>;
1062
+ };
1063
+ type UserFluencySessionsArgs = {
1064
+ filter?: InputMaybe<FluencySessionFilter>;
1065
+ };
1066
+ type UserPlaytimeDailySummariesArgs = {
1067
+ endDate?: InputMaybe<Scalars['Date']['input']>;
1068
+ excludeTypes?: InputMaybe<Array<InputMaybe<PlaytimeType>>>;
1069
+ startDate?: InputMaybe<Scalars['Date']['input']>;
1070
+ types?: InputMaybe<Array<PlaytimeType>>;
1071
+ };
1072
+ type CreateStripeSetupIntentMutationVariables = Exact<{
1073
+ [key: string]: never;
1074
+ }>;
1075
+ type CreateStripeSetupIntentMutation = {
1076
+ __typename?: 'RootMutationType';
1077
+ clientSecret: string;
1078
+ };
1079
+ type CreateStripeCustomerMutationVariables = Exact<{
1080
+ paymentMethod: Scalars['String']['input'];
1081
+ }>;
1082
+ type CreateStripeCustomerMutation = {
1083
+ __typename?: 'RootMutationType';
1084
+ createStripeCustomer?: boolean | null;
1085
+ };
1086
+ type CreateStripeCustomerForPrepaidVoucherMutationVariables = Exact<{
1087
+ [key: string]: never;
1088
+ }>;
1089
+ type CreateStripeCustomerForPrepaidVoucherMutation = {
1090
+ __typename?: 'RootMutationType';
1091
+ createStripeCustomer?: boolean | null;
1092
+ };
1093
+ type SubscribePlayerMutationVariables = Exact<{
1094
+ playerUserId: Scalars['ID']['input'];
1095
+ subscriptionPlanId: Scalars['ID']['input'];
1096
+ paymentMethod: Scalars['String']['input'];
1097
+ promoCode?: InputMaybe<Scalars['String']['input']>;
1098
+ }>;
1099
+ type SubscribePlayerMutation = {
1100
+ __typename?: 'RootMutationType';
1101
+ subscribePlayer?: boolean | null;
1102
+ };
1103
+ type RedeemPrepaidVoucherMutationVariables = Exact<{
1104
+ playerUserId: Scalars['ID']['input'];
1105
+ prepaidVoucherRedemptionToken: Scalars['String']['input'];
1106
+ }>;
1107
+ type RedeemPrepaidVoucherMutation = {
1108
+ __typename?: 'RootMutationType';
1109
+ redeemPrepaidVoucher?: boolean | null;
1110
+ };
1111
+ type ChildAccountEditStudentNameMutationVariables = Exact<{
1112
+ studentUserId: Scalars['ID']['input'];
1113
+ firstName: Scalars['String']['input'];
1114
+ lastInitial: Scalars['String']['input'];
1115
+ username: Scalars['String']['input'];
1116
+ }>;
1117
+ type ChildAccountEditStudentNameMutation = {
1118
+ __typename?: 'RootMutationType';
1119
+ updateStudentName?: {
1120
+ __typename?: 'Student';
1121
+ id?: string | null;
1122
+ firstName?: string | null;
1123
+ lastInitial?: string | null;
1124
+ username?: string | null;
1125
+ user?: {
1126
+ __typename?: 'User';
1127
+ id?: string | null;
1128
+ firstName?: string | null;
1129
+ lastName?: string | null;
1130
+ username?: string | null;
1131
+ } | null;
1132
+ } | null;
1133
+ };
1134
+ type ChildAccountEditStateMutationVariables = Exact<{
1135
+ studentUserId: Scalars['ID']['input'];
1136
+ stateId: Scalars['String']['input'];
1137
+ }>;
1138
+ type ChildAccountEditStateMutation = {
1139
+ __typename?: 'RootMutationType';
1140
+ student?: {
1141
+ __typename?: 'Student';
1142
+ user?: {
1143
+ __typename?: 'User';
1144
+ state?: {
1145
+ __typename?: 'State';
1146
+ id: string;
1147
+ } | null;
1148
+ } | null;
1149
+ } | null;
1150
+ };
1151
+ type ChildAccountEditGradeLevelMutationVariables = Exact<{
1152
+ studentUserId: Scalars['ID']['input'];
1153
+ gradeLevel: Scalars['String']['input'];
1154
+ }>;
1155
+ type ChildAccountEditGradeLevelMutation = {
1156
+ __typename?: 'RootMutationType';
1157
+ student?: {
1158
+ __typename?: 'Student';
1159
+ id?: string | null;
1160
+ user?: {
1161
+ __typename?: 'User';
1162
+ id?: string | null;
1163
+ gradeLevel?: string | null;
1164
+ } | null;
1165
+ } | null;
1166
+ };
1167
+ type UpdateAwakeningHomeAccessMutationVariables = Exact<{
1168
+ studentUserId: Scalars['ID']['input'];
1169
+ allowHomeAccessDuringSchoolHours: Scalars['Boolean']['input'];
1170
+ }>;
1171
+ type UpdateAwakeningHomeAccessMutation = {
1172
+ __typename?: 'RootMutationType';
1173
+ updateAllowHomeAccessDuringSchoolHours?: {
1174
+ __typename?: 'Student';
1175
+ user?: {
1176
+ __typename?: 'User';
1177
+ id?: string | null;
1178
+ allowHomeAccessDuringSchoolHours?: boolean | null;
1179
+ } | null;
1180
+ } | null;
1181
+ };
1182
+ type UpdateFluencyFocusMutationVariables = Exact<{
1183
+ studentUserId: Scalars['ID']['input'];
1184
+ fluencyFocus?: InputMaybe<FluencyFocusType>;
1185
+ }>;
1186
+ type UpdateFluencyFocusMutation = {
1187
+ __typename?: 'RootMutationType';
1188
+ updateStudentFluencyFocus?: {
1189
+ __typename?: 'User';
1190
+ id?: string | null;
1191
+ assignedFluencyFocus?: {
1192
+ __typename?: 'FluencyFocus';
1193
+ id?: string | null;
1194
+ focus: FluencyFocusType;
1195
+ } | null;
1196
+ } | null;
1197
+ };
1198
+ type DisconnectStudentMutationVariables = Exact<{
1199
+ studentUserId: Scalars['ID']['input'];
1200
+ }>;
1201
+ type DisconnectStudentMutation = {
1202
+ __typename?: 'RootMutationType';
1203
+ disconnectStudent?: string | null;
1204
+ };
1205
+ type ConnectToStudentMutationVariables = Exact<{
1206
+ username: Scalars['String']['input'];
1207
+ password: Scalars['String']['input'];
1208
+ }>;
1209
+ type ConnectToStudentMutation = {
1210
+ __typename?: 'RootMutationType';
1211
+ student?: {
1212
+ __typename?: 'Student';
1213
+ id?: string | null;
1214
+ username?: string | null;
1215
+ firstName?: string | null;
1216
+ lastInitial?: string | null;
1217
+ user?: {
1218
+ __typename?: 'User';
1219
+ id?: string | null;
1220
+ imageUploadHash?: string | null;
1221
+ gradeLevel?: string | null;
1222
+ state?: {
1223
+ __typename?: 'State';
1224
+ id: string;
1225
+ name: string;
1226
+ } | null;
1227
+ } | null;
1228
+ } | null;
1229
+ };
1230
+ type CreateStudentMutationVariables = Exact<{
1231
+ firstName: Scalars['String']['input'];
1232
+ lastInitial: Scalars['String']['input'];
1233
+ stateId?: InputMaybe<Scalars['ID']['input']>;
1234
+ gradeLevel?: InputMaybe<Scalars['String']['input']>;
1235
+ }>;
1236
+ type CreateStudentMutation = {
1237
+ __typename?: 'RootMutationType';
1238
+ createStudent?: {
1239
+ __typename?: 'CreatedStudent';
1240
+ password?: string | null;
1241
+ student?: {
1242
+ __typename?: 'Student';
1243
+ id?: string | null;
1244
+ username?: string | null;
1245
+ firstName?: string | null;
1246
+ user?: {
1247
+ __typename?: 'User';
1248
+ id?: string | null;
1249
+ } | null;
1250
+ } | null;
1251
+ } | null;
1252
+ };
1253
+ type ConfirmStudentConnectionMutationVariables = Exact<{
1254
+ studentUserId: Scalars['ID']['input'];
1255
+ }>;
1256
+ type ConfirmStudentConnectionMutation = {
1257
+ __typename?: 'RootMutationType';
1258
+ confirmConnection?: boolean | null;
1259
+ };
1260
+ type ChangeStudentPasswordMutationVariables = Exact<{
1261
+ studentUserId: Scalars['ID']['input'];
1262
+ password: Scalars['String']['input'];
1263
+ }>;
1264
+ type ChangeStudentPasswordMutation = {
1265
+ __typename?: 'RootMutationType';
1266
+ changeStudentPassword?: {
1267
+ __typename?: 'Student';
1268
+ id?: string | null;
1269
+ } | null;
1270
+ };
1271
+ type ChangePasswordMutationVariables = Exact<{
1272
+ password: Scalars['String']['input'];
1273
+ }>;
1274
+ type ChangePasswordMutation = {
1275
+ __typename?: 'RootMutationType';
1276
+ changePassword?: {
1277
+ __typename?: 'CurrentUser';
1278
+ id?: string | null;
1279
+ } | null;
1280
+ };
1281
+ type UpdateNameMutationVariables = Exact<{
1282
+ firstName: Scalars['String']['input'];
1283
+ lastName: Scalars['String']['input'];
1284
+ }>;
1285
+ type UpdateNameMutation = {
1286
+ __typename?: 'RootMutationType';
1287
+ updateName?: {
1288
+ __typename?: 'CurrentUser';
1289
+ id?: string | null;
1290
+ firstName?: string | null;
1291
+ lastName?: string | null;
1292
+ } | null;
1293
+ };
1294
+ type UpdateParentAccountMutationVariables = Exact<{
1295
+ firstName: Scalars['String']['input'];
1296
+ lastName: Scalars['String']['input'];
1297
+ }>;
1298
+ type UpdateParentAccountMutation = {
1299
+ __typename?: 'RootMutationType';
1300
+ updateName?: {
1301
+ __typename?: 'CurrentUser';
1302
+ id?: string | null;
1303
+ firstName?: string | null;
1304
+ lastName?: string | null;
1305
+ } | null;
1306
+ };
1307
+ type GetCurrentUserQueryVariables = Exact<{
1308
+ [key: string]: never;
1309
+ }>;
1310
+ type GetCurrentUserQuery = {
1311
+ __typename?: 'RootQueryType';
1312
+ currentUser?: {
1313
+ __typename?: 'CurrentUser';
1314
+ email?: string | null;
1315
+ firstName?: string | null;
1316
+ lastName?: string | null;
1317
+ } | null;
1318
+ };
1319
+ type UserDetailsQueryVariables = Exact<{
1320
+ [key: string]: never;
1321
+ }>;
1322
+ type UserDetailsQuery = {
1323
+ __typename?: 'RootQueryType';
1324
+ currentUser?: {
1325
+ __typename?: 'CurrentUser';
1326
+ id?: string | null;
1327
+ firstName?: string | null;
1328
+ lastName?: string | null;
1329
+ } | null;
1330
+ };
1331
+ type UserMenuQueryQueryVariables = Exact<{
1332
+ [key: string]: never;
1333
+ }>;
1334
+ type UserMenuQueryQuery = {
1335
+ __typename?: 'RootQueryType';
1336
+ currentUser?: {
1337
+ __typename?: 'CurrentUser';
1338
+ id?: string | null;
1339
+ isStripeCustomer: boolean;
1340
+ } | null;
1341
+ };
1342
+ type CurrentUserContextQueryVariables = Exact<{
1343
+ [key: string]: never;
1344
+ }>;
1345
+ type CurrentUserContextQuery = {
1346
+ __typename?: 'RootQueryType';
1347
+ currentUser?: {
1348
+ __typename?: 'CurrentUser';
1349
+ id?: string | null;
1350
+ firstName?: string | null;
1351
+ lastName?: string | null;
1352
+ email?: string | null;
1353
+ } | null;
1354
+ };
1355
+ type MyAccountDetailsQueryVariables = Exact<{
1356
+ [key: string]: never;
1357
+ }>;
1358
+ type MyAccountDetailsQuery = {
1359
+ __typename?: 'RootQueryType';
1360
+ currentUser?: {
1361
+ __typename?: 'CurrentUser';
1362
+ id?: string | null;
1363
+ firstName?: string | null;
1364
+ lastName?: string | null;
1365
+ email?: string | null;
1366
+ } | null;
1367
+ };
1368
+ type MyFeatureFlagsQueryVariables = Exact<{
1369
+ [key: string]: never;
1370
+ }>;
1371
+ type MyFeatureFlagsQuery = {
1372
+ __typename?: 'RootQueryType';
1373
+ myFeatureFlags?: Array<string> | null;
1374
+ };
1375
+ type ListChildrenQueryVariables = Exact<{
1376
+ [key: string]: never;
1377
+ }>;
1378
+ type ListChildrenQuery = {
1379
+ __typename?: 'RootQueryType';
1380
+ parentChildren?: Array<{
1381
+ __typename?: 'Student';
1382
+ id?: string | null;
1383
+ firstName?: string | null;
1384
+ lastInitial?: string | null;
1385
+ username?: string | null;
1386
+ user?: {
1387
+ __typename?: 'User';
1388
+ id?: string | null;
1389
+ username?: string | null;
1390
+ imageUploadHash?: string | null;
1391
+ hasAwakeningManagedSubscription?: boolean | null;
1392
+ activeAwakeningSubscriptions?: Array<{
1393
+ __typename?: 'AwakeningSubscription';
1394
+ payerUserId?: string | null;
1395
+ id: string;
1396
+ } | null> | null;
1397
+ assignedFluencyFocuses?: Array<{
1398
+ __typename?: 'FluencyFocus';
1399
+ id?: string | null;
1400
+ } | null> | null;
1401
+ } | null;
1402
+ } | null> | null;
1403
+ listUnconfirmedConnections?: {
1404
+ __typename?: 'ConnectionsList';
1405
+ totalEntries?: number | null;
1406
+ entries?: Array<{
1407
+ __typename?: 'Connection';
1408
+ studentUserId: string;
1409
+ } | null> | null;
1410
+ } | null;
1411
+ };
1412
+ type SidebarChildrenQueryVariables = Exact<{
1413
+ [key: string]: never;
1414
+ }>;
1415
+ type SidebarChildrenQuery = {
1416
+ __typename?: 'RootQueryType';
1417
+ parentChildren?: Array<{
1418
+ __typename?: 'Student';
1419
+ id?: string | null;
1420
+ firstName?: string | null;
1421
+ lastInitial?: string | null;
1422
+ username?: string | null;
1423
+ user?: {
1424
+ __typename?: 'User';
1425
+ id?: string | null;
1426
+ imageUploadHash?: string | null;
1427
+ } | null;
1428
+ } | null> | null;
1429
+ };
1430
+ type GetStudentDetailsQueryVariables = Exact<{
1431
+ studentUserId: Scalars['String']['input'];
1432
+ }>;
1433
+ type GetStudentDetailsQuery = {
1434
+ __typename?: 'RootQueryType';
1435
+ studentDetail?: {
1436
+ __typename?: 'Student';
1437
+ id?: string | null;
1438
+ firstName?: string | null;
1439
+ lastInitial?: string | null;
1440
+ username?: string | null;
1441
+ user?: {
1442
+ __typename?: 'User';
1443
+ firstName?: string | null;
1444
+ lastName?: string | null;
1445
+ id?: string | null;
1446
+ gradeLevel?: string | null;
1447
+ standardId?: string | null;
1448
+ isSubscribed?: boolean | null;
1449
+ } | null;
1450
+ } | null;
1451
+ };
1452
+ type GetStudentDetailsLayoutQueryVariables = Exact<{
1453
+ studentUserId: Scalars['String']['input'];
1454
+ }>;
1455
+ type GetStudentDetailsLayoutQuery = {
1456
+ __typename?: 'RootQueryType';
1457
+ studentDetail?: {
1458
+ __typename?: 'Student';
1459
+ id?: string | null;
1460
+ user?: {
1461
+ __typename?: 'User';
1462
+ isSubscribed?: boolean | null;
1463
+ } | null;
1464
+ } | null;
1465
+ };
1466
+ type GetStudentDetailsProgressionQueryVariables = Exact<{
1467
+ studentUserId: Scalars['String']['input'];
1468
+ }>;
1469
+ type GetStudentDetailsProgressionQuery = {
1470
+ __typename?: 'RootQueryType';
1471
+ studentDetail?: {
1472
+ __typename?: 'Student';
1473
+ id?: string | null;
1474
+ firstName?: string | null;
1475
+ user?: {
1476
+ __typename?: 'User';
1477
+ firstName?: string | null;
1478
+ lastName?: string | null;
1479
+ gradeLevel?: string | null;
1480
+ } | null;
1481
+ } | null;
1482
+ };
1483
+ type GetStudentDetailsMasteryQueryVariables = Exact<{
1484
+ studentUserId: Scalars['String']['input'];
1485
+ }>;
1486
+ type GetStudentDetailsMasteryQuery = {
1487
+ __typename?: 'RootQueryType';
1488
+ studentDetail?: {
1489
+ __typename?: 'Student';
1490
+ id?: string | null;
1491
+ firstName?: string | null;
1492
+ user?: {
1493
+ __typename?: 'User';
1494
+ firstName?: string | null;
1495
+ lastName?: string | null;
1496
+ } | null;
1497
+ } | null;
1498
+ };
1499
+ type GetBasicStudentDetailsQueryVariables = Exact<{
1500
+ studentUserId: Scalars['String']['input'];
1501
+ }>;
1502
+ type GetBasicStudentDetailsQuery = {
1503
+ __typename?: 'RootQueryType';
1504
+ studentDetail?: {
1505
+ __typename?: 'Student';
1506
+ id?: string | null;
1507
+ firstName?: string | null;
1508
+ lastInitial?: string | null;
1509
+ username?: string | null;
1510
+ user?: {
1511
+ __typename?: 'User';
1512
+ id?: string | null;
1513
+ gradeLevel?: string | null;
1514
+ standardId?: string | null;
1515
+ isSubscribed?: boolean | null;
1516
+ awakeningSubscriptions?: Array<{
1517
+ __typename?: 'AwakeningSubscription';
1518
+ id: string;
1519
+ purchasedAt?: any | null;
1520
+ subscriptionPlanType?: AwakeningSubscriptionPlanType | null;
1521
+ expiresAt?: any | null;
1522
+ autoRenew?: boolean | null;
1523
+ payerUser?: {
1524
+ __typename?: 'User';
1525
+ id?: string | null;
1526
+ email?: string | null;
1527
+ firstName?: string | null;
1528
+ lastName?: string | null;
1529
+ } | null;
1530
+ } | null> | null;
1531
+ } | null;
1532
+ } | null;
1533
+ };
1534
+ type GetStudentForConfirmationQueryVariables = Exact<{
1535
+ studentUserId: Scalars['String']['input'];
1536
+ }>;
1537
+ type GetStudentForConfirmationQuery = {
1538
+ __typename?: 'RootQueryType';
1539
+ studentDetail?: {
1540
+ __typename?: 'Student';
1541
+ id?: string | null;
1542
+ firstName?: string | null;
1543
+ lastInitial?: string | null;
1544
+ username?: string | null;
1545
+ user?: {
1546
+ __typename?: 'User';
1547
+ id?: string | null;
1548
+ imageUploadHash?: string | null;
1549
+ gradeLevel?: string | null;
1550
+ standardId?: string | null;
1551
+ state?: {
1552
+ __typename?: 'State';
1553
+ id: string;
1554
+ name: string;
1555
+ } | null;
1556
+ } | null;
1557
+ } | null;
1558
+ };
1559
+ type AccountPageGetStudentDetailsQueryVariables = Exact<{
1560
+ studentUserId: Scalars['String']['input'];
1561
+ }>;
1562
+ type AccountPageGetStudentDetailsQuery = {
1563
+ __typename?: 'RootQueryType';
1564
+ currentUser?: {
1565
+ __typename?: 'CurrentUser';
1566
+ id?: string | null;
1567
+ isStripeCustomer: boolean;
1568
+ } | null;
1569
+ listStates?: Array<{
1570
+ __typename?: 'State';
1571
+ id: string;
1572
+ name: string;
1573
+ }> | null;
1574
+ studentDetail?: {
1575
+ __typename?: 'Student';
1576
+ id?: string | null;
1577
+ firstName?: string | null;
1578
+ lastInitial?: string | null;
1579
+ username?: string | null;
1580
+ user?: {
1581
+ __typename?: 'User';
1582
+ firstName?: string | null;
1583
+ lastName?: string | null;
1584
+ username?: string | null;
1585
+ id?: string | null;
1586
+ gradeLevel?: string | null;
1587
+ standardId?: string | null;
1588
+ isSubscribed?: boolean | null;
1589
+ isStripeCustomer: boolean;
1590
+ allowHomeAccessDuringSchoolHours?: boolean | null;
1591
+ hasAwakeningManagedSubscription?: boolean | null;
1592
+ assignedFluencyFocus?: {
1593
+ __typename?: 'FluencyFocus';
1594
+ id?: string | null;
1595
+ focus: FluencyFocusType;
1596
+ } | null;
1597
+ state?: {
1598
+ __typename?: 'State';
1599
+ id: string;
1600
+ name: string;
1601
+ } | null;
1602
+ activeAwakeningSubscriptions?: Array<{
1603
+ __typename?: 'AwakeningSubscription';
1604
+ id: string;
1605
+ payerUserId?: string | null;
1606
+ subscriptionProvider?: SubscriptionProviderType | null;
1607
+ } | null> | null;
1608
+ } | null;
1609
+ } | null;
1610
+ };
1611
+ type ChangePasswordMyStudentQueryVariables = Exact<{
1612
+ studentUserId: Scalars['String']['input'];
1613
+ }>;
1614
+ type ChangePasswordMyStudentQuery = {
1615
+ __typename?: 'RootQueryType';
1616
+ studentDetail?: {
1617
+ __typename?: 'Student';
1618
+ firstName?: string | null;
1619
+ lastInitial?: string | null;
1620
+ } | null;
1621
+ };
1622
+ type DisconnectStudentQueryQueryVariables = Exact<{
1623
+ studentUserId: Scalars['String']['input'];
1624
+ }>;
1625
+ type DisconnectStudentQueryQuery = {
1626
+ __typename?: 'RootQueryType';
1627
+ studentDetail?: {
1628
+ __typename?: 'Student';
1629
+ id?: string | null;
1630
+ user?: {
1631
+ __typename?: 'User';
1632
+ id?: string | null;
1633
+ firstName?: string | null;
1634
+ } | null;
1635
+ } | null;
1636
+ };
1637
+ type SubscriptionConfirmationStudentQueryVariables = Exact<{
1638
+ studentUserId: Scalars['String']['input'];
1639
+ }>;
1640
+ type SubscriptionConfirmationStudentQuery = {
1641
+ __typename?: 'RootQueryType';
1642
+ child?: {
1643
+ __typename?: 'Student';
1644
+ id?: string | null;
1645
+ firstName?: string | null;
1646
+ lastInitial?: string | null;
1647
+ username?: string | null;
1648
+ user?: {
1649
+ __typename?: 'User';
1650
+ id?: string | null;
1651
+ imageUploadHash?: string | null;
1652
+ gradeLevel?: string | null;
1653
+ state?: {
1654
+ __typename?: 'State';
1655
+ id: string;
1656
+ name: string;
1657
+ } | null;
1658
+ } | null;
1659
+ } | null;
1660
+ };
1661
+ type UpgradeStudentModalQueryVariables = Exact<{
1662
+ [key: string]: never;
1663
+ }>;
1664
+ type UpgradeStudentModalQuery = {
1665
+ __typename?: 'RootQueryType';
1666
+ parentChildren?: Array<{
1667
+ __typename?: 'Student';
1668
+ id?: string | null;
1669
+ firstName?: string | null;
1670
+ user?: {
1671
+ __typename?: 'User';
1672
+ id?: string | null;
1673
+ imageUploadHash?: string | null;
1674
+ awakeningSubscriptions?: Array<{
1675
+ __typename?: 'AwakeningSubscription';
1676
+ id: string;
1677
+ purchasedAt?: any | null;
1678
+ expiresAt?: any | null;
1679
+ } | null> | null;
1680
+ } | null;
1681
+ } | null> | null;
1682
+ };
1683
+ type SubscribeSubscriptionPlansQueryVariables = Exact<{
1684
+ [key: string]: never;
1685
+ }>;
1686
+ type SubscribeSubscriptionPlansQuery = {
1687
+ __typename?: 'RootQueryType';
1688
+ awakeningSubscriptionPlans?: Array<{
1689
+ __typename?: 'AwakeningSubscriptionPlan';
1690
+ id: string;
1691
+ chargeAmountInCents?: number | null;
1692
+ originalPriceInCents?: number | null;
1693
+ durationDisplay?: string | null;
1694
+ billingFrequencyDisplay?: string | null;
1695
+ savingPercentageDisplay?: string | null;
1696
+ type?: AwakeningSubscriptionPlanType | null;
1697
+ }> | null;
1698
+ awakeningSubscriptionPlansHeader?: {
1699
+ __typename?: 'AwakeningSubscriptionPlansHeader';
1700
+ displayText?: string | null;
1701
+ } | null;
1702
+ };
1703
+ type DashboardListStudentsPlaytimesQueryVariables = Exact<{
1704
+ startDate: Scalars['Date']['input'];
1705
+ endDate: Scalars['Date']['input'];
1706
+ }>;
1707
+ type DashboardListStudentsPlaytimesQuery = {
1708
+ __typename?: 'RootQueryType';
1709
+ parentChildren?: Array<{
1710
+ __typename?: 'Student';
1711
+ id?: string | null;
1712
+ user?: {
1713
+ __typename?: 'User';
1714
+ id?: string | null;
1715
+ username?: string | null;
1716
+ hasAwakeningManagedSubscription?: boolean | null;
1717
+ currentSignInAt?: any | null;
1718
+ gradeLevel?: string | null;
1719
+ awakeningSubscriptions?: Array<{
1720
+ __typename?: 'AwakeningSubscription';
1721
+ id: string;
1722
+ expiresAt?: any | null;
1723
+ autoRenew?: boolean | null;
1724
+ } | null> | null;
1725
+ currentStandardUnit?: {
1726
+ __typename?: 'StandardUnit';
1727
+ id?: string | null;
1728
+ name?: string | null;
1729
+ } | null;
1730
+ quizzlerActivityCount?: Array<{
1731
+ __typename?: 'ActivitySummary';
1732
+ playDate: any;
1733
+ count: number;
1734
+ } | null> | null;
1735
+ beastieChallengeActivityCount?: Array<{
1736
+ __typename?: 'ActivitySummary';
1737
+ playDate: any;
1738
+ count: number;
1739
+ } | null> | null;
1740
+ miniGamesActivityCount?: Array<{
1741
+ __typename?: 'ActivitySummary';
1742
+ playDate: any;
1743
+ count: number;
1744
+ } | null> | null;
1745
+ otherActivityCount?: Array<{
1746
+ __typename?: 'ActivitySummary';
1747
+ playDate: any;
1748
+ count: number;
1749
+ } | null> | null;
1750
+ awakeningMonthUsage?: Array<{
1751
+ __typename?: 'Playtime';
1752
+ playDate: any;
1753
+ playTimeSec: number;
1754
+ } | null> | null;
1755
+ miniGamesMonthUsage?: Array<{
1756
+ __typename?: 'Playtime';
1757
+ playDate: any;
1758
+ playTimeSec: number;
1759
+ } | null> | null;
1760
+ quizzlerMonthUsage?: Array<{
1761
+ __typename?: 'Playtime';
1762
+ playDate: any;
1763
+ playTimeSec: number;
1764
+ } | null> | null;
1765
+ beastieChallengeMonthUsage?: Array<{
1766
+ __typename?: 'Playtime';
1767
+ playDate: any;
1768
+ playTimeSec: number;
1769
+ } | null> | null;
1770
+ } | null;
1771
+ } | null> | null;
1772
+ };
1773
+ type GetPlayerActivitiesSummariesQueryVariables = Exact<{
1774
+ teacherFocusAreaId: Scalars['ID']['input'];
1775
+ pageSize?: InputMaybe<Scalars['Int']['input']>;
1776
+ }>;
1777
+ type GetPlayerActivitiesSummariesQuery = {
1778
+ __typename?: 'RootQueryType';
1779
+ playerActivitiesSummary?: {
1780
+ __typename?: 'PlayerActivitiesSummariesList';
1781
+ totalEntries?: number | null;
1782
+ entries?: Array<{
1783
+ __typename?: 'PlayerActivitiesSummary';
1784
+ won: boolean;
1785
+ questionsAnswered?: number | null;
1786
+ questionsAnsweredCorrectly?: number | null;
1787
+ } | null> | null;
1788
+ } | null;
1789
+ };
1790
+ type TeacherFocusAreaReportQueryVariables = Exact<{
1791
+ subjectArea?: InputMaybe<SubjectArea>;
1792
+ studentUserId: Scalars['ID']['input'];
1793
+ loSearch?: InputMaybe<Scalars['String']['input']>;
1794
+ standard?: InputMaybe<Scalars['String']['input']>;
1795
+ gradeLevel?: InputMaybe<Scalars['Int']['input']>;
1796
+ progressType?: InputMaybe<Scalars['String']['input']>;
1797
+ }>;
1798
+ type TeacherFocusAreaReportQuery = {
1799
+ __typename?: 'RootQueryType';
1800
+ focusMastery?: {
1801
+ __typename?: 'FocusMastery';
1802
+ progressCells?: Array<{
1803
+ __typename?: 'ProgressionCell';
1804
+ correctAnswers?: number | null;
1805
+ dateStarted?: any | null;
1806
+ dateMastered?: any | null;
1807
+ lastActivity?: any | null;
1808
+ learningObjectiveId?: number | null;
1809
+ masteryAchievement?: boolean | null;
1810
+ masteryScore?: number | null;
1811
+ questionsAnswered?: number | null;
1812
+ remainingQuestions?: number | null;
1813
+ status?: string | null;
1814
+ taskType?: string | null;
1815
+ } | null> | null;
1816
+ learningObjectives?: Array<{
1817
+ __typename?: 'ProgressionLearningObjective';
1818
+ id?: number | null;
1819
+ description?: string | null;
1820
+ domainName?: string | null;
1821
+ gradeLevel?: number | null;
1822
+ name?: string | null;
1823
+ ngssDciName?: string | null;
1824
+ order?: number | null;
1825
+ standard?: string | null;
1826
+ subjectArea?: string | null;
1827
+ } | null> | null;
1828
+ } | null;
1829
+ };
1830
+ type MyStandardUnitsQueryVariables = Exact<{
1831
+ standardId: Scalars['String']['input'];
1832
+ gradeLevel: Scalars['String']['input'];
1833
+ studentUserId: Scalars['String']['input'];
1834
+ }>;
1835
+ type MyStandardUnitsQuery = {
1836
+ __typename?: 'RootQueryType';
1837
+ standardUnits?: Array<{
1838
+ __typename?: 'ParentStandardUnit';
1839
+ id?: string | null;
1840
+ name?: string | null;
1841
+ unitNumber?: number | null;
1842
+ unitTotal?: number | null;
1843
+ unitComplete?: boolean | null;
1844
+ unitAnswers?: {
1845
+ __typename?: 'ParentQuestionAnswerData';
1846
+ answered?: number | null;
1847
+ correct?: number | null;
1848
+ incorrect?: number | null;
1849
+ } | null;
1850
+ learningObjectiveUnits?: Array<{
1851
+ __typename?: 'ParentLearningObjectiveUnit';
1852
+ id?: string | null;
1853
+ total?: number | null;
1854
+ complete?: boolean | null;
1855
+ learningObjective?: string | null;
1856
+ learningObjectiveId?: number | null;
1857
+ loAnswers?: {
1858
+ __typename?: 'ParentQuestionAnswerData';
1859
+ answered?: number | null;
1860
+ correct?: number | null;
1861
+ incorrect?: number | null;
1862
+ } | null;
1863
+ answers?: Array<{
1864
+ __typename?: 'ParentPlayerActivityAnswer';
1865
+ id?: string | null;
1866
+ isCorrect?: boolean | null;
1867
+ } | null> | null;
1868
+ } | null> | null;
1869
+ } | null> | null;
1870
+ };
1871
+ type MySubjectAreasQueryVariables = Exact<{
1872
+ studentUserId: Scalars['String']['input'];
1873
+ }>;
1874
+ type MySubjectAreasQuery = {
1875
+ __typename?: 'RootQueryType';
1876
+ playerSubjectAreas?: Array<{
1877
+ __typename?: 'PlayerSubjectArea';
1878
+ label?: string | null;
1879
+ standardId?: string | null;
1880
+ isSelected?: boolean | null;
1881
+ } | null> | null;
1882
+ };
1883
+ type GetPlayerActiveUnitsQueryVariables = Exact<{
1884
+ studentUserId: Scalars['String']['input'];
1885
+ }>;
1886
+ type GetPlayerActiveUnitsQuery = {
1887
+ __typename?: 'RootQueryType';
1888
+ playerActiveUnits?: Array<{
1889
+ __typename?: 'PlayerActiveUnit';
1890
+ id?: string | null;
1891
+ mostActive?: boolean | null;
1892
+ standard?: {
1893
+ __typename?: 'Standard';
1894
+ id?: string | null;
1895
+ subjectArea?: string | null;
1896
+ } | null;
1897
+ } | null> | null;
1898
+ };
1899
+ type GetStandardUnitActivitiesSummariesQueryVariables = Exact<{
1900
+ studentUserId: Scalars['ID']['input'];
1901
+ standardUnitId: Scalars['ID']['input'];
1902
+ pageSize?: InputMaybe<Scalars['Int']['input']>;
1903
+ }>;
1904
+ type GetStandardUnitActivitiesSummariesQuery = {
1905
+ __typename?: 'RootQueryType';
1906
+ unitActivities?: {
1907
+ __typename?: 'UnitActivitiesList';
1908
+ totalEntries?: number | null;
1909
+ entries?: Array<{
1910
+ __typename?: 'UnitActivitiesSummary';
1911
+ playerId?: number | null;
1912
+ standardUnitId?: number | null;
1913
+ totalAnswered?: number | null;
1914
+ totalCorrectlyAnswered?: number | null;
1915
+ type?: string | null;
1916
+ unitCode?: string | null;
1917
+ } | null> | null;
1918
+ } | null;
1919
+ };
1920
+ type GetStandardProgressionQueryVariables = Exact<{
1921
+ studentUserId: Scalars['ID']['input'];
1922
+ }>;
1923
+ type GetStandardProgressionQuery = {
1924
+ __typename?: 'RootQueryType';
1925
+ standardProgression?: {
1926
+ __typename?: 'StandardProgressionList';
1927
+ entries?: Array<{
1928
+ __typename?: 'StandardProgressionEntry';
1929
+ progress?: string | null;
1930
+ isActive?: boolean | null;
1931
+ playerUserId?: string | null;
1932
+ totalAnswered?: number | null;
1933
+ totalCorrectlyAnswered?: number | null;
1934
+ standardUnitId?: string | null;
1935
+ miniGameCount?: number | null;
1936
+ beastieChallengeCount?: number | null;
1937
+ beastieBattleCount?: number | null;
1938
+ awakeningQuizzlerCount?: number | null;
1939
+ } | null> | null;
1940
+ } | null;
1941
+ };
1942
+ type GetAllStandardUnitsQueryVariables = Exact<{
1943
+ page?: InputMaybe<Scalars['Int']['input']>;
1944
+ pageSize?: InputMaybe<Scalars['Int']['input']>;
1945
+ standards?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>> | InputMaybe<Scalars['String']['input']>>;
1946
+ topics?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>> | InputMaybe<Scalars['String']['input']>>;
1947
+ grades: Array<InputMaybe<Scalars['String']['input']>> | InputMaybe<Scalars['String']['input']>;
1948
+ studentUserId: Scalars['ID']['input'];
1949
+ subjectArea: Scalars['String']['input'];
1950
+ }>;
1951
+ type GetAllStandardUnitsQuery = {
1952
+ __typename?: 'RootQueryType';
1953
+ parentStandardUnitEntries?: {
1954
+ __typename?: 'ParentStandardUnitEntriesList';
1955
+ pageNumber?: number | null;
1956
+ pageSize?: number | null;
1957
+ totalEntries?: number | null;
1958
+ totalPages?: number | null;
1959
+ topics?: Array<string | null> | null;
1960
+ standardIds?: Array<string | null> | null;
1961
+ entries?: Array<{
1962
+ __typename?: 'ParentStandardUnitEntry';
1963
+ standardUnitId?: string | null;
1964
+ standardId?: string | null;
1965
+ unitCode?: string | null;
1966
+ unitNumber?: number | null;
1967
+ gradeLevel?: number | null;
1968
+ name?: string | null;
1969
+ } | null> | null;
1970
+ } | null;
1971
+ };
1972
+ type FocusAreaParentStatusesQueryVariables = Exact<{
1973
+ studentUserId: Scalars['ID']['input'];
1974
+ subjectArea?: InputMaybe<SubjectArea>;
1975
+ teacherUserId?: InputMaybe<Scalars['ID']['input']>;
1976
+ }>;
1977
+ type FocusAreaParentStatusesQuery = {
1978
+ __typename?: 'RootQueryType';
1979
+ focusAreaStatuses?: {
1980
+ __typename?: 'FocusAreaStatusesList';
1981
+ pageNumber?: number | null;
1982
+ pageSize?: number | null;
1983
+ totalPages?: number | null;
1984
+ totalEntries?: number | null;
1985
+ entries?: Array<{
1986
+ __typename?: 'FocusAreaStatus';
1987
+ beastieBattleCount?: number | null;
1988
+ beastieChallengeCount?: number | null;
1989
+ count?: number | null;
1990
+ id?: string | null;
1991
+ isActive?: boolean | null;
1992
+ learningObjectiveId?: string | null;
1993
+ miniGameCount?: number | null;
1994
+ playerUserId?: string | null;
1995
+ quizzlerCount?: number | null;
1996
+ type?: FocusAreaStatusType | null;
1997
+ subjectArea?: SubjectArea | null;
1998
+ totalCorrectlyAnswered?: number | null;
1999
+ totalAnswered?: number | null;
2000
+ } | null> | null;
2001
+ } | null;
2002
+ };
2003
+ type GetStudentTeachersQueryVariables = Exact<{
2004
+ studentUserId: Scalars['ID']['input'];
2005
+ }>;
2006
+ type GetStudentTeachersQuery = {
2007
+ __typename?: 'RootQueryType';
2008
+ studentTeachers?: {
2009
+ __typename?: 'StudentTeachersList';
2010
+ entries?: Array<{
2011
+ __typename?: 'StudentTeacher';
2012
+ stateId?: string | null;
2013
+ schoolId?: string | null;
2014
+ teacherId?: string | null;
2015
+ teacherUserId?: string | null;
2016
+ givenName?: string | null;
2017
+ familyName?: string | null;
2018
+ } | null> | null;
2019
+ } | null;
2020
+ };
2021
+ type LearningObjectivesQueryVariables = Exact<{
2022
+ ids?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>> | InputMaybe<Scalars['ID']['input']>>;
2023
+ }>;
2024
+ type LearningObjectivesQuery = {
2025
+ __typename?: 'RootQueryType';
2026
+ learningObjectives?: {
2027
+ __typename?: 'LearningObjectivesList';
2028
+ entries?: Array<{
2029
+ __typename?: 'LearningObjective';
2030
+ id?: string | null;
2031
+ name?: string | null;
2032
+ sortOrder?: string | null;
2033
+ standardCode?: string | null;
2034
+ grades?: Array<{
2035
+ __typename?: 'Grade';
2036
+ grade?: string | null;
2037
+ } | null> | null;
2038
+ } | null> | null;
2039
+ } | null;
2040
+ };
2041
+ type FluencyFactProgressStatusesQueryVariables = Exact<{
2042
+ studentUserId: Scalars['ID']['input'];
2043
+ fluencyFocus: FluencyFocusType;
2044
+ startTimeBefore: Scalars['DateTime']['input'];
2045
+ startTimeAfter?: InputMaybe<Scalars['DateTime']['input']>;
2046
+ }>;
2047
+ type FluencyFactProgressStatusesQuery = {
2048
+ __typename?: 'RootQueryType';
2049
+ fluencyFactProgressStatuses?: Array<{
2050
+ __typename?: 'FluencyFactProgressStatus';
2051
+ a: number;
2052
+ b: number;
2053
+ op: FluencyFactOperation;
2054
+ status: FluencyFactProgressStatusType;
2055
+ } | null> | null;
2056
+ };
2057
+ type FluencyFactsQueryVariables = Exact<{
2058
+ focus: FluencyFocusType;
2059
+ }>;
2060
+ type FluencyFactsQuery = {
2061
+ __typename?: 'RootQueryType';
2062
+ fluencyFacts?: Array<{
2063
+ __typename?: 'FluencyFact';
2064
+ a: number;
2065
+ b: number;
2066
+ op: FluencyFactOperation;
2067
+ } | null> | null;
2068
+ };
2069
+ type ListStatesQueryVariables = Exact<{
2070
+ [key: string]: never;
2071
+ }>;
2072
+ type ListStatesQuery = {
2073
+ __typename?: 'RootQueryType';
2074
+ listStates?: Array<{
2075
+ __typename?: 'State';
2076
+ id: string;
2077
+ name: string;
2078
+ }> | null;
2079
+ };
2080
+ declare const CreateStripeSetupIntentDocument: TypedDocumentNode<CreateStripeSetupIntentMutation, CreateStripeSetupIntentMutationVariables>;
2081
+ declare const CreateStripeCustomerDocument: TypedDocumentNode<CreateStripeCustomerMutation, CreateStripeCustomerMutationVariables>;
2082
+ declare const CreateStripeCustomerForPrepaidVoucherDocument: TypedDocumentNode<CreateStripeCustomerForPrepaidVoucherMutation, CreateStripeCustomerForPrepaidVoucherMutationVariables>;
2083
+ declare const SubscribePlayerDocument: TypedDocumentNode<SubscribePlayerMutation, SubscribePlayerMutationVariables>;
2084
+ declare const RedeemPrepaidVoucherDocument: TypedDocumentNode<RedeemPrepaidVoucherMutation, RedeemPrepaidVoucherMutationVariables>;
2085
+ declare const ChildAccountEditStudentNameDocument: TypedDocumentNode<ChildAccountEditStudentNameMutation, ChildAccountEditStudentNameMutationVariables>;
2086
+ declare const ChildAccountEditStateDocument: TypedDocumentNode<ChildAccountEditStateMutation, ChildAccountEditStateMutationVariables>;
2087
+ declare const ChildAccountEditGradeLevelDocument: TypedDocumentNode<ChildAccountEditGradeLevelMutation, ChildAccountEditGradeLevelMutationVariables>;
2088
+ declare const UpdateAwakeningHomeAccessDocument: TypedDocumentNode<UpdateAwakeningHomeAccessMutation, UpdateAwakeningHomeAccessMutationVariables>;
2089
+ declare const UpdateFluencyFocusDocument: TypedDocumentNode<UpdateFluencyFocusMutation, UpdateFluencyFocusMutationVariables>;
2090
+ declare const DisconnectStudentDocument: TypedDocumentNode<DisconnectStudentMutation, DisconnectStudentMutationVariables>;
2091
+ declare const ConnectToStudentDocument: TypedDocumentNode<ConnectToStudentMutation, ConnectToStudentMutationVariables>;
2092
+ declare const CreateStudentDocument: TypedDocumentNode<CreateStudentMutation, CreateStudentMutationVariables>;
2093
+ declare const ConfirmStudentConnectionDocument: TypedDocumentNode<ConfirmStudentConnectionMutation, ConfirmStudentConnectionMutationVariables>;
2094
+ declare const ChangeStudentPasswordDocument: TypedDocumentNode<ChangeStudentPasswordMutation, ChangeStudentPasswordMutationVariables>;
2095
+ declare const ChangePasswordDocument: TypedDocumentNode<ChangePasswordMutation, ChangePasswordMutationVariables>;
2096
+ declare const UpdateNameDocument: TypedDocumentNode<UpdateNameMutation, UpdateNameMutationVariables>;
2097
+ declare const UpdateParentAccountDocument: TypedDocumentNode<UpdateParentAccountMutation, UpdateParentAccountMutationVariables>;
2098
+ declare const GetCurrentUserDocument: TypedDocumentNode<GetCurrentUserQuery, GetCurrentUserQueryVariables>;
2099
+ declare const UserDetailsDocument: TypedDocumentNode<UserDetailsQuery, UserDetailsQueryVariables>;
2100
+ declare const UserMenuQueryDocument: TypedDocumentNode<UserMenuQueryQuery, UserMenuQueryQueryVariables>;
2101
+ declare const CurrentUserContextDocument: TypedDocumentNode<CurrentUserContextQuery, CurrentUserContextQueryVariables>;
2102
+ declare const MyAccountDetailsDocument: TypedDocumentNode<MyAccountDetailsQuery, MyAccountDetailsQueryVariables>;
2103
+ declare const MyFeatureFlagsDocument: TypedDocumentNode<MyFeatureFlagsQuery, MyFeatureFlagsQueryVariables>;
2104
+ declare const ListChildrenDocument: TypedDocumentNode<ListChildrenQuery, ListChildrenQueryVariables>;
2105
+ declare const SidebarChildrenDocument: TypedDocumentNode<SidebarChildrenQuery, SidebarChildrenQueryVariables>;
2106
+ declare const GetStudentDetailsDocument: TypedDocumentNode<GetStudentDetailsQuery, GetStudentDetailsQueryVariables>;
2107
+ declare const GetStudentDetailsLayoutDocument: TypedDocumentNode<GetStudentDetailsLayoutQuery, GetStudentDetailsLayoutQueryVariables>;
2108
+ declare const GetStudentDetailsProgressionDocument: TypedDocumentNode<GetStudentDetailsProgressionQuery, GetStudentDetailsProgressionQueryVariables>;
2109
+ declare const GetStudentDetailsMasteryDocument: TypedDocumentNode<GetStudentDetailsMasteryQuery, GetStudentDetailsMasteryQueryVariables>;
2110
+ declare const GetBasicStudentDetailsDocument: TypedDocumentNode<GetBasicStudentDetailsQuery, GetBasicStudentDetailsQueryVariables>;
2111
+ declare const GetStudentForConfirmationDocument: TypedDocumentNode<GetStudentForConfirmationQuery, GetStudentForConfirmationQueryVariables>;
2112
+ declare const AccountPageGetStudentDetailsDocument: TypedDocumentNode<AccountPageGetStudentDetailsQuery, AccountPageGetStudentDetailsQueryVariables>;
2113
+ declare const ChangePasswordMyStudentDocument: TypedDocumentNode<ChangePasswordMyStudentQuery, ChangePasswordMyStudentQueryVariables>;
2114
+ declare const DisconnectStudentQueryDocument: TypedDocumentNode<DisconnectStudentQueryQuery, DisconnectStudentQueryQueryVariables>;
2115
+ declare const SubscriptionConfirmationStudentDocument: TypedDocumentNode<SubscriptionConfirmationStudentQuery, SubscriptionConfirmationStudentQueryVariables>;
2116
+ declare const UpgradeStudentModalDocument: TypedDocumentNode<UpgradeStudentModalQuery, UpgradeStudentModalQueryVariables>;
2117
+ declare const SubscribeSubscriptionPlansDocument: TypedDocumentNode<SubscribeSubscriptionPlansQuery, SubscribeSubscriptionPlansQueryVariables>;
2118
+ declare const DashboardListStudentsPlaytimesDocument: TypedDocumentNode<DashboardListStudentsPlaytimesQuery, DashboardListStudentsPlaytimesQueryVariables>;
2119
+ declare const GetPlayerActivitiesSummariesDocument: TypedDocumentNode<GetPlayerActivitiesSummariesQuery, GetPlayerActivitiesSummariesQueryVariables>;
2120
+ declare const TeacherFocusAreaReportDocument: TypedDocumentNode<TeacherFocusAreaReportQuery, TeacherFocusAreaReportQueryVariables>;
2121
+ declare const MyStandardUnitsDocument: TypedDocumentNode<MyStandardUnitsQuery, MyStandardUnitsQueryVariables>;
2122
+ declare const MySubjectAreasDocument: TypedDocumentNode<MySubjectAreasQuery, MySubjectAreasQueryVariables>;
2123
+ declare const GetPlayerActiveUnitsDocument: TypedDocumentNode<GetPlayerActiveUnitsQuery, GetPlayerActiveUnitsQueryVariables>;
2124
+ declare const GetStandardUnitActivitiesSummariesDocument: TypedDocumentNode<GetStandardUnitActivitiesSummariesQuery, GetStandardUnitActivitiesSummariesQueryVariables>;
2125
+ declare const GetStandardProgressionDocument: TypedDocumentNode<GetStandardProgressionQuery, GetStandardProgressionQueryVariables>;
2126
+ declare const GetAllStandardUnitsDocument: TypedDocumentNode<GetAllStandardUnitsQuery, GetAllStandardUnitsQueryVariables>;
2127
+ declare const FocusAreaParentStatusesDocument: TypedDocumentNode<FocusAreaParentStatusesQuery, FocusAreaParentStatusesQueryVariables>;
2128
+ declare const GetStudentTeachersDocument: TypedDocumentNode<GetStudentTeachersQuery, GetStudentTeachersQueryVariables>;
2129
+ declare const LearningObjectivesDocument: TypedDocumentNode<LearningObjectivesQuery, LearningObjectivesQueryVariables>;
2130
+ declare const FluencyFactProgressStatusesDocument: TypedDocumentNode<FluencyFactProgressStatusesQuery, FluencyFactProgressStatusesQueryVariables>;
2131
+ declare const FluencyFactsDocument: TypedDocumentNode<FluencyFactsQuery, FluencyFactsQueryVariables>;
2132
+ declare const ListStatesDocument: TypedDocumentNode<ListStatesQuery, ListStatesQueryVariables>;
2133
+
2134
+ type FragmentType<TDocumentType extends DocumentTypeDecoration<any, any>> = TDocumentType extends DocumentTypeDecoration<infer TType, any> ? [TType] extends [{
2135
+ ' $fragmentName'?: infer TKey;
2136
+ }] ? TKey extends string ? {
2137
+ ' $fragmentRefs'?: {
2138
+ [key in TKey]: TType;
2139
+ };
2140
+ } : never : never : never;
2141
+ declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: FragmentType<DocumentTypeDecoration<TType, any>>): TType;
2142
+ declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: FragmentType<DocumentTypeDecoration<TType, any>> | undefined): TType | undefined;
2143
+ declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: FragmentType<DocumentTypeDecoration<TType, any>> | null): TType | null;
2144
+ declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: FragmentType<DocumentTypeDecoration<TType, any>> | null | undefined): TType | null | undefined;
2145
+ declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: Array<FragmentType<DocumentTypeDecoration<TType, any>>>): Array<TType>;
2146
+ declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: Array<FragmentType<DocumentTypeDecoration<TType, any>>> | null | undefined): Array<TType> | null | undefined;
2147
+ declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: ReadonlyArray<FragmentType<DocumentTypeDecoration<TType, any>>>): ReadonlyArray<TType>;
2148
+ declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: ReadonlyArray<FragmentType<DocumentTypeDecoration<TType, any>>> | null | undefined): ReadonlyArray<TType> | null | undefined;
2149
+ declare function makeFragmentData<F extends DocumentTypeDecoration<any, any>, FT extends ResultOf<F>>(data: FT, _fragment: F): FragmentType<F>;
2150
+ 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>;
2151
+
2152
+ /**
2153
+ * Map of all GraphQL operations in the project.
2154
+ *
2155
+ * This map has several performance disadvantages:
2156
+ * 1. It is not tree-shakeable, so it will include all operations in the project.
2157
+ * 2. It is not minifiable, so the string of a GraphQL query will be multiple times inside the bundle.
2158
+ * 3. It does not support dead code elimination, so it will add unused operations.
2159
+ *
2160
+ * Therefore it is highly recommended to use the babel or swc plugin for production.
2161
+ * Learn more about it here: https://the-guild.dev/graphql/codegen/plugins/presets/preset-client#reducing-bundle-size
2162
+ */
2163
+ type Documents = {
2164
+ "\n mutation CreateStripeSetupIntent {\n clientSecret: createStripeSetupIntent\n }\n": typeof CreateStripeSetupIntentDocument;
2165
+ "\n mutation CreateStripeCustomer($paymentMethod: String!) {\n createStripeCustomer(paymentMethod: $paymentMethod)\n }\n": typeof CreateStripeCustomerDocument;
2166
+ "\n mutation CreateStripeCustomerForPrepaidVoucher {\n createStripeCustomer\n }\n": typeof CreateStripeCustomerForPrepaidVoucherDocument;
2167
+ "\n mutation SubscribePlayer(\n $playerUserId: ID!\n $subscriptionPlanId: ID!\n $paymentMethod: String!\n $promoCode: String\n ) {\n subscribePlayer(\n playerUserId: $playerUserId\n subscriptionPlanId: $subscriptionPlanId\n paymentMethod: $paymentMethod\n promoCode: $promoCode\n )\n }\n": typeof SubscribePlayerDocument;
2168
+ "\n mutation RedeemPrepaidVoucher(\n $playerUserId: ID!\n $prepaidVoucherRedemptionToken: String!\n ) {\n redeemPrepaidVoucher(\n playerUserId: $playerUserId\n prepaidVoucherRedemptionToken: $prepaidVoucherRedemptionToken\n )\n }\n": typeof RedeemPrepaidVoucherDocument;
2169
+ "\n mutation ChildAccountEditStudentName(\n $studentUserId: ID!\n $firstName: String!\n $lastInitial: String!\n $username: String!\n ) {\n updateStudentName(\n studentUserId: $studentUserId\n firstName: $firstName\n lastInitial: $lastInitial\n username: $username\n ) {\n id\n firstName\n lastInitial\n username\n user {\n id\n firstName\n lastName\n username\n }\n }\n }\n": typeof ChildAccountEditStudentNameDocument;
2170
+ "\n mutation ChildAccountEditState($studentUserId: ID!, $stateId: String!) {\n student: updateStudentState(\n studentUserId: $studentUserId\n stateId: $stateId\n ) {\n user {\n state {\n id\n }\n }\n }\n }\n": typeof ChildAccountEditStateDocument;
2171
+ "\n mutation ChildAccountEditGradeLevel(\n $studentUserId: ID!\n $gradeLevel: String!\n ) {\n student: updateStudentGradeLevel(\n studentUserId: $studentUserId\n gradeLevel: $gradeLevel\n ) {\n id\n user {\n id\n gradeLevel\n }\n }\n }\n": typeof ChildAccountEditGradeLevelDocument;
2172
+ "\n mutation UpdateAwakeningHomeAccess(\n $studentUserId: ID!\n $allowHomeAccessDuringSchoolHours: Boolean!\n ) {\n updateAllowHomeAccessDuringSchoolHours(\n studentUserId: $studentUserId\n allowHomeAccessDuringSchoolHours: $allowHomeAccessDuringSchoolHours\n ) {\n user {\n id\n allowHomeAccessDuringSchoolHours\n }\n }\n }\n": typeof UpdateAwakeningHomeAccessDocument;
2173
+ "\n mutation UpdateFluencyFocus(\n $studentUserId: ID!\n $fluencyFocus: FluencyFocusType\n ) {\n updateStudentFluencyFocus(\n studentUserId: $studentUserId\n focus: $fluencyFocus\n ) {\n id\n assignedFluencyFocus(filterOnCurrentUser: true) {\n id\n focus\n }\n }\n }\n": typeof UpdateFluencyFocusDocument;
2174
+ "\n mutation DisconnectStudent($studentUserId: ID!) {\n disconnectStudent(studentUserId: $studentUserId)\n }\n": typeof DisconnectStudentDocument;
2175
+ "\n mutation ConnectToStudent($username: String!, $password: String!) {\n student: connectToStudent(username: $username, password: $password) {\n id\n username\n firstName\n lastInitial\n user {\n id\n imageUploadHash\n gradeLevel\n state {\n id\n name\n }\n }\n }\n }\n": typeof ConnectToStudentDocument;
2176
+ "\n mutation CreateStudent(\n $firstName: String!\n $lastInitial: String!\n $stateId: ID\n $gradeLevel: String\n ) {\n createStudent(\n firstName: $firstName\n lastInitial: $lastInitial\n stateId: $stateId\n gradeLevel: $gradeLevel\n ) {\n student {\n id\n username\n firstName\n user {\n id\n }\n }\n password\n }\n }\n": typeof CreateStudentDocument;
2177
+ "\n mutation ConfirmStudentConnection($studentUserId: ID!) {\n confirmConnection(studentUserId: $studentUserId)\n }\n": typeof ConfirmStudentConnectionDocument;
2178
+ "\n mutation ChangeStudentPassword($studentUserId: ID!, $password: String!) {\n changeStudentPassword(studentUserId: $studentUserId, password: $password) {\n id\n }\n }\n": typeof ChangeStudentPasswordDocument;
2179
+ "\n mutation ChangePassword($password: String!) {\n changePassword(password: $password) {\n id\n }\n }\n": typeof ChangePasswordDocument;
2180
+ "\n mutation UpdateName($firstName: String!, $lastName: String!) {\n updateName(firstName: $firstName, lastName: $lastName) {\n id\n firstName\n lastName\n }\n }\n": typeof UpdateNameDocument;
2181
+ "\n mutation UpdateParentAccount($firstName: String!, $lastName: String!) {\n updateName(firstName: $firstName, lastName: $lastName) {\n id\n firstName\n lastName\n }\n }\n": typeof UpdateParentAccountDocument;
2182
+ "\n query GetCurrentUser {\n currentUser {\n email\n firstName\n lastName\n }\n }\n": typeof GetCurrentUserDocument;
2183
+ "\n query UserDetails {\n currentUser {\n id\n firstName\n lastName\n }\n }\n": typeof UserDetailsDocument;
2184
+ "\n query UserMenuQuery {\n currentUser {\n id\n isStripeCustomer\n }\n }\n": typeof UserMenuQueryDocument;
2185
+ "\n query CurrentUserContext {\n currentUser {\n id\n firstName\n lastName\n email\n }\n }\n": typeof CurrentUserContextDocument;
2186
+ "\n query MyAccountDetails {\n currentUser {\n id\n firstName\n lastName\n email\n }\n }\n": typeof MyAccountDetailsDocument;
2187
+ "\n query MyFeatureFlags {\n myFeatureFlags\n }\n": typeof MyFeatureFlagsDocument;
2188
+ "\n query ListChildren {\n parentChildren {\n id\n firstName\n lastInitial\n username\n user {\n id\n username\n imageUploadHash\n\n activeAwakeningSubscriptions: awakeningSubscriptions(isActive: true) {\n payerUserId\n id\n }\n\n hasAwakeningManagedSubscription\n assignedFluencyFocuses {\n id\n }\n }\n }\n listUnconfirmedConnections {\n totalEntries\n entries {\n studentUserId\n }\n }\n }\n": typeof ListChildrenDocument;
2189
+ "\n query SidebarChildren {\n parentChildren {\n id\n firstName\n lastInitial\n username\n user {\n id\n imageUploadHash\n }\n }\n }\n": typeof SidebarChildrenDocument;
2190
+ "\n query GetStudentDetails($studentUserId: String!) {\n studentDetail(studentUserId: $studentUserId) {\n id\n firstName\n lastInitial\n username\n user {\n firstName\n lastName\n id\n gradeLevel\n standardId\n isSubscribed\n }\n }\n }\n": typeof GetStudentDetailsDocument;
2191
+ "\n query GetStudentDetailsLayout($studentUserId: String!) {\n studentDetail(studentUserId: $studentUserId) {\n id\n user {\n isSubscribed\n }\n }\n }\n": typeof GetStudentDetailsLayoutDocument;
2192
+ "\n query GetStudentDetailsProgression($studentUserId: String!) {\n studentDetail(studentUserId: $studentUserId) {\n id\n firstName\n user {\n firstName\n lastName\n gradeLevel\n }\n }\n }\n": typeof GetStudentDetailsProgressionDocument;
2193
+ "\n query GetStudentDetailsMastery($studentUserId: String!) {\n studentDetail(studentUserId: $studentUserId) {\n id\n firstName\n user {\n firstName\n lastName\n }\n }\n }\n": typeof GetStudentDetailsMasteryDocument;
2194
+ "\n query GetBasicStudentDetails($studentUserId: String!) {\n studentDetail(studentUserId: $studentUserId) {\n id\n firstName\n lastInitial\n username\n user {\n id\n awakeningSubscriptions(isActive: true) {\n id\n purchasedAt\n subscriptionPlanType\n expiresAt\n autoRenew\n payerUser {\n id\n email\n firstName\n lastName\n }\n }\n gradeLevel\n standardId\n isSubscribed\n }\n }\n }\n": typeof GetBasicStudentDetailsDocument;
2195
+ "\n query GetStudentForConfirmation($studentUserId: String!) {\n studentDetail(studentUserId: $studentUserId) {\n id\n firstName\n lastInitial\n username\n user {\n id\n imageUploadHash\n gradeLevel\n standardId\n state {\n id\n name\n }\n }\n }\n }\n": typeof GetStudentForConfirmationDocument;
2196
+ "\n query AccountPageGetStudentDetails($studentUserId: String!) {\n currentUser {\n id\n isStripeCustomer\n }\n listStates {\n id\n name\n }\n studentDetail(studentUserId: $studentUserId) {\n id\n firstName\n lastInitial\n username\n user {\n firstName\n lastName\n username\n id\n gradeLevel\n standardId\n isSubscribed\n isStripeCustomer\n allowHomeAccessDuringSchoolHours\n assignedFluencyFocus(filterOnCurrentUser: true) {\n id\n focus\n }\n state {\n id\n name\n }\n hasAwakeningManagedSubscription\n activeAwakeningSubscriptions: awakeningSubscriptions(isActive: true) {\n id\n payerUserId\n subscriptionProvider\n }\n }\n }\n }\n": typeof AccountPageGetStudentDetailsDocument;
2197
+ "\n query ChangePasswordMyStudent($studentUserId: String!) {\n studentDetail(studentUserId: $studentUserId) {\n firstName\n lastInitial\n }\n }\n": typeof ChangePasswordMyStudentDocument;
2198
+ "\n query DisconnectStudentQuery($studentUserId: String!) {\n studentDetail(studentUserId: $studentUserId) {\n id\n user {\n id\n firstName\n }\n }\n }\n": typeof DisconnectStudentQueryDocument;
2199
+ "\n query SubscriptionConfirmationStudent($studentUserId: String!) {\n child: studentDetail(studentUserId: $studentUserId) {\n id\n firstName\n lastInitial\n username\n user {\n id\n imageUploadHash\n gradeLevel\n state {\n id\n name\n }\n }\n }\n }\n": typeof SubscriptionConfirmationStudentDocument;
2200
+ "\n query UpgradeStudentModal {\n parentChildren {\n id\n firstName\n user {\n id\n awakeningSubscriptions(isActive: true) {\n id\n purchasedAt\n expiresAt\n }\n imageUploadHash\n }\n }\n }\n": typeof UpgradeStudentModalDocument;
2201
+ "\n query SubscribeSubscriptionPlans {\n awakeningSubscriptionPlans {\n id\n chargeAmountInCents\n originalPriceInCents\n durationDisplay\n billingFrequencyDisplay\n savingPercentageDisplay\n type\n }\n awakeningSubscriptionPlansHeader {\n displayText\n }\n }\n": typeof SubscribeSubscriptionPlansDocument;
2202
+ "\n query DashboardListStudentsPlaytimes($startDate: Date!, $endDate: Date!) {\n parentChildren {\n id\n user {\n id\n username\n awakeningSubscriptions(isActive: true) {\n id\n expiresAt\n autoRenew\n }\n hasAwakeningManagedSubscription\n currentStandardUnit {\n id\n name\n }\n currentSignInAt\n gradeLevel\n\n quizzlerActivityCount: activityDailySummaries(\n startDate: $startDate\n endDate: $endDate\n types: [AWAKENING_QUIZZLER]\n ) {\n playDate\n count\n }\n\n beastieChallengeActivityCount: activityDailySummaries(\n startDate: $startDate\n endDate: $endDate\n types: [BEASTIE_CHALLENGE, BEASTIE_BATTLE]\n ) {\n playDate\n count\n }\n\n miniGamesActivityCount: activityDailySummaries(\n startDate: $startDate\n endDate: $endDate\n types: [MINI_GAME]\n ) {\n playDate\n count\n }\n\n otherActivityCount: activityDailySummaries(\n startDate: $startDate\n endDate: $endDate\n excludeTypes: [\n MINI_GAME\n BEASTIE_CHALLENGE\n BEASTIE_BATTLE\n AWAKENING_QUIZZLER\n ]\n ) {\n playDate\n count\n }\n\n awakeningMonthUsage: playtimeDailySummaries(\n startDate: $startDate\n endDate: $endDate\n ) {\n playDate\n playTimeSec\n }\n miniGamesMonthUsage: playtimeDailySummaries(\n startDate: $startDate\n endDate: $endDate\n types: [MINI_GAME]\n ) {\n playDate\n playTimeSec\n }\n quizzlerMonthUsage: playtimeDailySummaries(\n startDate: $startDate\n endDate: $endDate\n types: [AWAKENING_QUIZZLER]\n ) {\n playDate\n playTimeSec\n }\n beastieChallengeMonthUsage: playtimeDailySummaries(\n startDate: $startDate\n endDate: $endDate\n types: [BEASTIE_CHALLENGE, BEASTIE_BATTLE]\n ) {\n playDate\n playTimeSec\n }\n }\n }\n }\n": typeof DashboardListStudentsPlaytimesDocument;
2203
+ "\n query GetPlayerActivitiesSummaries($teacherFocusAreaId: ID!, $pageSize: Int) {\n playerActivitiesSummary(\n teacherFocusAreaId: $teacherFocusAreaId\n pageSize: $pageSize\n ) {\n entries {\n won\n questionsAnswered\n questionsAnsweredCorrectly\n }\n totalEntries\n }\n }\n": typeof GetPlayerActivitiesSummariesDocument;
2204
+ "\n query TeacherFocusAreaReport(\n $subjectArea: SubjectArea\n $studentUserId: ID!\n $loSearch: String\n $standard: String\n $gradeLevel: Int\n $progressType: String\n ) {\n focusMastery(\n subjectArea: $subjectArea\n studentUserId: $studentUserId\n loSearch: $loSearch\n standard: $standard\n gradeLevel: $gradeLevel\n progressType: $progressType\n ) {\n progressCells {\n correctAnswers\n dateStarted\n dateMastered\n lastActivity\n learningObjectiveId\n masteryAchievement\n masteryScore\n questionsAnswered\n remainingQuestions\n status\n taskType\n }\n\n learningObjectives {\n id\n description\n domainName\n gradeLevel\n name\n ngssDciName\n order\n standard\n subjectArea\n }\n }\n }\n": typeof TeacherFocusAreaReportDocument;
2205
+ "\n query MyStandardUnits(\n $standardId: String!\n $gradeLevel: String!\n $studentUserId: String!\n ) {\n standardUnits(\n studentUserId: $studentUserId\n standardId: $standardId\n gradeLevel: $gradeLevel\n ) {\n id\n name\n unitNumber\n unitTotal\n unitComplete\n unitAnswers {\n answered\n correct\n incorrect\n }\n learningObjectiveUnits {\n id\n total\n complete\n learningObjective\n learningObjectiveId\n loAnswers {\n answered\n correct\n incorrect\n }\n answers {\n id\n isCorrect\n }\n }\n }\n }\n": typeof MyStandardUnitsDocument;
2206
+ "\n query MySubjectAreas($studentUserId: String!) {\n playerSubjectAreas(studentUserId: $studentUserId) {\n label\n standardId\n isSelected\n }\n }\n": typeof MySubjectAreasDocument;
2207
+ "\n query GetPlayerActiveUnits($studentUserId: String!) {\n playerActiveUnits(studentUserId: $studentUserId) {\n id\n mostActive\n standard {\n id\n subjectArea\n }\n }\n }\n": typeof GetPlayerActiveUnitsDocument;
2208
+ "\n query GetStandardUnitActivitiesSummaries(\n $studentUserId: ID!\n $standardUnitId: ID!\n $pageSize: Int\n ) {\n unitActivities(\n studentUserId: $studentUserId\n standardUnitId: $standardUnitId\n pageSize: $pageSize\n ) {\n totalEntries\n entries {\n playerId\n standardUnitId\n totalAnswered\n totalCorrectlyAnswered\n type\n unitCode\n }\n }\n }\n": typeof GetStandardUnitActivitiesSummariesDocument;
2209
+ "\n query GetStandardProgression($studentUserId: ID!) {\n standardProgression(studentUserId: $studentUserId, pageSize: 2000) {\n entries {\n progress\n isActive\n playerUserId\n totalAnswered\n totalCorrectlyAnswered\n standardUnitId\n miniGameCount\n beastieChallengeCount\n beastieBattleCount\n awakeningQuizzlerCount\n }\n }\n }\n": typeof GetStandardProgressionDocument;
2210
+ "\n query GetAllStandardUnits(\n $page: Int\n $pageSize: Int\n $standards: [String]\n $topics: [String]\n $grades: [String]!\n $studentUserId: ID!\n $subjectArea: String!\n ) {\n parentStandardUnitEntries(\n page: $page\n pageSize: $pageSize\n standards: $standards\n topics: $topics\n grades: $grades\n studentUserId: $studentUserId\n subjectArea: $subjectArea\n ) {\n pageNumber\n pageSize\n totalEntries\n totalPages\n topics\n standardIds\n\n entries {\n standardUnitId\n standardId\n unitCode\n unitNumber\n gradeLevel\n name\n }\n }\n }\n": typeof GetAllStandardUnitsDocument;
2211
+ "\n query FocusAreaParentStatuses(\n $studentUserId: ID!\n $subjectArea: SubjectArea\n $teacherUserId: ID\n ) {\n focusAreaStatuses(\n studentUserId: $studentUserId\n teacherUserId: $teacherUserId\n subjectArea: $subjectArea\n pageSize: 5000\n ) {\n pageNumber\n pageSize\n totalPages\n totalEntries\n entries {\n beastieBattleCount\n beastieChallengeCount\n count\n id\n isActive\n learningObjectiveId\n miniGameCount\n playerUserId\n quizzlerCount\n type\n subjectArea\n totalCorrectlyAnswered\n totalAnswered\n }\n }\n }\n": typeof FocusAreaParentStatusesDocument;
2212
+ "\n query GetStudentTeachers($studentUserId: ID!) {\n studentTeachers(studentUserId: $studentUserId) {\n entries {\n stateId\n schoolId\n teacherId\n teacherUserId\n givenName\n familyName\n }\n }\n }\n": typeof GetStudentTeachersDocument;
2213
+ "\n query LearningObjectives($ids: [ID]) {\n learningObjectives(ids: $ids) {\n entries {\n id\n name\n sortOrder\n grades {\n grade\n }\n standardCode\n name\n standardCode\n grades {\n grade\n }\n }\n }\n }\n": typeof LearningObjectivesDocument;
2214
+ "\n query FluencyFactProgressStatuses(\n $studentUserId: ID!\n $fluencyFocus: FluencyFocusType!\n $startTimeBefore: DateTime!\n $startTimeAfter: DateTime\n ) {\n fluencyFactProgressStatuses(\n studentUserId: $studentUserId\n fluencyFocus: $fluencyFocus\n startTimeBefore: $startTimeBefore\n startTimeAfter: $startTimeAfter\n ) {\n a\n b\n op\n status\n }\n }\n": typeof FluencyFactProgressStatusesDocument;
2215
+ "\n query FluencyFacts($focus: FluencyFocusType!) {\n fluencyFacts(focus: $focus) {\n a\n b\n op\n }\n }\n": typeof FluencyFactsDocument;
2216
+ "\n query ListStates {\n listStates {\n id\n name\n }\n }\n": typeof ListStatesDocument;
2217
+ };
2218
+ declare const documents: Documents;
2219
+ /**
2220
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
2221
+ *
2222
+ *
2223
+ * @example
2224
+ * ```ts
2225
+ * const query = graphql(`query GetUser($id: ID!) { user(id: $id) { name } }`);
2226
+ * ```
2227
+ *
2228
+ * The query argument is unknown!
2229
+ * Please regenerate the types.
2230
+ */
2231
+ declare function graphql(source: string): unknown;
2232
+ /**
2233
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
2234
+ */
2235
+ declare function graphql(source: "\n mutation CreateStripeSetupIntent {\n clientSecret: createStripeSetupIntent\n }\n"): (typeof documents)["\n mutation CreateStripeSetupIntent {\n clientSecret: createStripeSetupIntent\n }\n"];
2236
+ /**
2237
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
2238
+ */
2239
+ declare function graphql(source: "\n mutation CreateStripeCustomer($paymentMethod: String!) {\n createStripeCustomer(paymentMethod: $paymentMethod)\n }\n"): (typeof documents)["\n mutation CreateStripeCustomer($paymentMethod: String!) {\n createStripeCustomer(paymentMethod: $paymentMethod)\n }\n"];
2240
+ /**
2241
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
2242
+ */
2243
+ declare function graphql(source: "\n mutation CreateStripeCustomerForPrepaidVoucher {\n createStripeCustomer\n }\n"): (typeof documents)["\n mutation CreateStripeCustomerForPrepaidVoucher {\n createStripeCustomer\n }\n"];
2244
+ /**
2245
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
2246
+ */
2247
+ declare function graphql(source: "\n mutation SubscribePlayer(\n $playerUserId: ID!\n $subscriptionPlanId: ID!\n $paymentMethod: String!\n $promoCode: String\n ) {\n subscribePlayer(\n playerUserId: $playerUserId\n subscriptionPlanId: $subscriptionPlanId\n paymentMethod: $paymentMethod\n promoCode: $promoCode\n )\n }\n"): (typeof documents)["\n mutation SubscribePlayer(\n $playerUserId: ID!\n $subscriptionPlanId: ID!\n $paymentMethod: String!\n $promoCode: String\n ) {\n subscribePlayer(\n playerUserId: $playerUserId\n subscriptionPlanId: $subscriptionPlanId\n paymentMethod: $paymentMethod\n promoCode: $promoCode\n )\n }\n"];
2248
+ /**
2249
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
2250
+ */
2251
+ declare function graphql(source: "\n mutation RedeemPrepaidVoucher(\n $playerUserId: ID!\n $prepaidVoucherRedemptionToken: String!\n ) {\n redeemPrepaidVoucher(\n playerUserId: $playerUserId\n prepaidVoucherRedemptionToken: $prepaidVoucherRedemptionToken\n )\n }\n"): (typeof documents)["\n mutation RedeemPrepaidVoucher(\n $playerUserId: ID!\n $prepaidVoucherRedemptionToken: String!\n ) {\n redeemPrepaidVoucher(\n playerUserId: $playerUserId\n prepaidVoucherRedemptionToken: $prepaidVoucherRedemptionToken\n )\n }\n"];
2252
+ /**
2253
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
2254
+ */
2255
+ declare function graphql(source: "\n mutation ChildAccountEditStudentName(\n $studentUserId: ID!\n $firstName: String!\n $lastInitial: String!\n $username: String!\n ) {\n updateStudentName(\n studentUserId: $studentUserId\n firstName: $firstName\n lastInitial: $lastInitial\n username: $username\n ) {\n id\n firstName\n lastInitial\n username\n user {\n id\n firstName\n lastName\n username\n }\n }\n }\n"): (typeof documents)["\n mutation ChildAccountEditStudentName(\n $studentUserId: ID!\n $firstName: String!\n $lastInitial: String!\n $username: String!\n ) {\n updateStudentName(\n studentUserId: $studentUserId\n firstName: $firstName\n lastInitial: $lastInitial\n username: $username\n ) {\n id\n firstName\n lastInitial\n username\n user {\n id\n firstName\n lastName\n username\n }\n }\n }\n"];
2256
+ /**
2257
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
2258
+ */
2259
+ declare function graphql(source: "\n mutation ChildAccountEditState($studentUserId: ID!, $stateId: String!) {\n student: updateStudentState(\n studentUserId: $studentUserId\n stateId: $stateId\n ) {\n user {\n state {\n id\n }\n }\n }\n }\n"): (typeof documents)["\n mutation ChildAccountEditState($studentUserId: ID!, $stateId: String!) {\n student: updateStudentState(\n studentUserId: $studentUserId\n stateId: $stateId\n ) {\n user {\n state {\n id\n }\n }\n }\n }\n"];
2260
+ /**
2261
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
2262
+ */
2263
+ declare function graphql(source: "\n mutation ChildAccountEditGradeLevel(\n $studentUserId: ID!\n $gradeLevel: String!\n ) {\n student: updateStudentGradeLevel(\n studentUserId: $studentUserId\n gradeLevel: $gradeLevel\n ) {\n id\n user {\n id\n gradeLevel\n }\n }\n }\n"): (typeof documents)["\n mutation ChildAccountEditGradeLevel(\n $studentUserId: ID!\n $gradeLevel: String!\n ) {\n student: updateStudentGradeLevel(\n studentUserId: $studentUserId\n gradeLevel: $gradeLevel\n ) {\n id\n user {\n id\n gradeLevel\n }\n }\n }\n"];
2264
+ /**
2265
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
2266
+ */
2267
+ declare function graphql(source: "\n mutation UpdateAwakeningHomeAccess(\n $studentUserId: ID!\n $allowHomeAccessDuringSchoolHours: Boolean!\n ) {\n updateAllowHomeAccessDuringSchoolHours(\n studentUserId: $studentUserId\n allowHomeAccessDuringSchoolHours: $allowHomeAccessDuringSchoolHours\n ) {\n user {\n id\n allowHomeAccessDuringSchoolHours\n }\n }\n }\n"): (typeof documents)["\n mutation UpdateAwakeningHomeAccess(\n $studentUserId: ID!\n $allowHomeAccessDuringSchoolHours: Boolean!\n ) {\n updateAllowHomeAccessDuringSchoolHours(\n studentUserId: $studentUserId\n allowHomeAccessDuringSchoolHours: $allowHomeAccessDuringSchoolHours\n ) {\n user {\n id\n allowHomeAccessDuringSchoolHours\n }\n }\n }\n"];
2268
+ /**
2269
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
2270
+ */
2271
+ declare function graphql(source: "\n mutation UpdateFluencyFocus(\n $studentUserId: ID!\n $fluencyFocus: FluencyFocusType\n ) {\n updateStudentFluencyFocus(\n studentUserId: $studentUserId\n focus: $fluencyFocus\n ) {\n id\n assignedFluencyFocus(filterOnCurrentUser: true) {\n id\n focus\n }\n }\n }\n"): (typeof documents)["\n mutation UpdateFluencyFocus(\n $studentUserId: ID!\n $fluencyFocus: FluencyFocusType\n ) {\n updateStudentFluencyFocus(\n studentUserId: $studentUserId\n focus: $fluencyFocus\n ) {\n id\n assignedFluencyFocus(filterOnCurrentUser: true) {\n id\n focus\n }\n }\n }\n"];
2272
+ /**
2273
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
2274
+ */
2275
+ declare function graphql(source: "\n mutation DisconnectStudent($studentUserId: ID!) {\n disconnectStudent(studentUserId: $studentUserId)\n }\n"): (typeof documents)["\n mutation DisconnectStudent($studentUserId: ID!) {\n disconnectStudent(studentUserId: $studentUserId)\n }\n"];
2276
+ /**
2277
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
2278
+ */
2279
+ declare function graphql(source: "\n mutation ConnectToStudent($username: String!, $password: String!) {\n student: connectToStudent(username: $username, password: $password) {\n id\n username\n firstName\n lastInitial\n user {\n id\n imageUploadHash\n gradeLevel\n state {\n id\n name\n }\n }\n }\n }\n"): (typeof documents)["\n mutation ConnectToStudent($username: String!, $password: String!) {\n student: connectToStudent(username: $username, password: $password) {\n id\n username\n firstName\n lastInitial\n user {\n id\n imageUploadHash\n gradeLevel\n state {\n id\n name\n }\n }\n }\n }\n"];
2280
+ /**
2281
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
2282
+ */
2283
+ declare function graphql(source: "\n mutation CreateStudent(\n $firstName: String!\n $lastInitial: String!\n $stateId: ID\n $gradeLevel: String\n ) {\n createStudent(\n firstName: $firstName\n lastInitial: $lastInitial\n stateId: $stateId\n gradeLevel: $gradeLevel\n ) {\n student {\n id\n username\n firstName\n user {\n id\n }\n }\n password\n }\n }\n"): (typeof documents)["\n mutation CreateStudent(\n $firstName: String!\n $lastInitial: String!\n $stateId: ID\n $gradeLevel: String\n ) {\n createStudent(\n firstName: $firstName\n lastInitial: $lastInitial\n stateId: $stateId\n gradeLevel: $gradeLevel\n ) {\n student {\n id\n username\n firstName\n user {\n id\n }\n }\n password\n }\n }\n"];
2284
+ /**
2285
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
2286
+ */
2287
+ declare function graphql(source: "\n mutation ConfirmStudentConnection($studentUserId: ID!) {\n confirmConnection(studentUserId: $studentUserId)\n }\n"): (typeof documents)["\n mutation ConfirmStudentConnection($studentUserId: ID!) {\n confirmConnection(studentUserId: $studentUserId)\n }\n"];
2288
+ /**
2289
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
2290
+ */
2291
+ declare function graphql(source: "\n mutation ChangeStudentPassword($studentUserId: ID!, $password: String!) {\n changeStudentPassword(studentUserId: $studentUserId, password: $password) {\n id\n }\n }\n"): (typeof documents)["\n mutation ChangeStudentPassword($studentUserId: ID!, $password: String!) {\n changeStudentPassword(studentUserId: $studentUserId, password: $password) {\n id\n }\n }\n"];
2292
+ /**
2293
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
2294
+ */
2295
+ declare function graphql(source: "\n mutation ChangePassword($password: String!) {\n changePassword(password: $password) {\n id\n }\n }\n"): (typeof documents)["\n mutation ChangePassword($password: String!) {\n changePassword(password: $password) {\n id\n }\n }\n"];
2296
+ /**
2297
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
2298
+ */
2299
+ declare function graphql(source: "\n mutation UpdateName($firstName: String!, $lastName: String!) {\n updateName(firstName: $firstName, lastName: $lastName) {\n id\n firstName\n lastName\n }\n }\n"): (typeof documents)["\n mutation UpdateName($firstName: String!, $lastName: String!) {\n updateName(firstName: $firstName, lastName: $lastName) {\n id\n firstName\n lastName\n }\n }\n"];
2300
+ /**
2301
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
2302
+ */
2303
+ declare function graphql(source: "\n mutation UpdateParentAccount($firstName: String!, $lastName: String!) {\n updateName(firstName: $firstName, lastName: $lastName) {\n id\n firstName\n lastName\n }\n }\n"): (typeof documents)["\n mutation UpdateParentAccount($firstName: String!, $lastName: String!) {\n updateName(firstName: $firstName, lastName: $lastName) {\n id\n firstName\n lastName\n }\n }\n"];
2304
+ /**
2305
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
2306
+ */
2307
+ declare function graphql(source: "\n query GetCurrentUser {\n currentUser {\n email\n firstName\n lastName\n }\n }\n"): (typeof documents)["\n query GetCurrentUser {\n currentUser {\n email\n firstName\n lastName\n }\n }\n"];
2308
+ /**
2309
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
2310
+ */
2311
+ declare function graphql(source: "\n query UserDetails {\n currentUser {\n id\n firstName\n lastName\n }\n }\n"): (typeof documents)["\n query UserDetails {\n currentUser {\n id\n firstName\n lastName\n }\n }\n"];
2312
+ /**
2313
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
2314
+ */
2315
+ declare function graphql(source: "\n query UserMenuQuery {\n currentUser {\n id\n isStripeCustomer\n }\n }\n"): (typeof documents)["\n query UserMenuQuery {\n currentUser {\n id\n isStripeCustomer\n }\n }\n"];
2316
+ /**
2317
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
2318
+ */
2319
+ declare function graphql(source: "\n query CurrentUserContext {\n currentUser {\n id\n firstName\n lastName\n email\n }\n }\n"): (typeof documents)["\n query CurrentUserContext {\n currentUser {\n id\n firstName\n lastName\n email\n }\n }\n"];
2320
+ /**
2321
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
2322
+ */
2323
+ declare function graphql(source: "\n query MyAccountDetails {\n currentUser {\n id\n firstName\n lastName\n email\n }\n }\n"): (typeof documents)["\n query MyAccountDetails {\n currentUser {\n id\n firstName\n lastName\n email\n }\n }\n"];
2324
+ /**
2325
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
2326
+ */
2327
+ declare function graphql(source: "\n query MyFeatureFlags {\n myFeatureFlags\n }\n"): (typeof documents)["\n query MyFeatureFlags {\n myFeatureFlags\n }\n"];
2328
+ /**
2329
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
2330
+ */
2331
+ declare function graphql(source: "\n query ListChildren {\n parentChildren {\n id\n firstName\n lastInitial\n username\n user {\n id\n username\n imageUploadHash\n\n activeAwakeningSubscriptions: awakeningSubscriptions(isActive: true) {\n payerUserId\n id\n }\n\n hasAwakeningManagedSubscription\n assignedFluencyFocuses {\n id\n }\n }\n }\n listUnconfirmedConnections {\n totalEntries\n entries {\n studentUserId\n }\n }\n }\n"): (typeof documents)["\n query ListChildren {\n parentChildren {\n id\n firstName\n lastInitial\n username\n user {\n id\n username\n imageUploadHash\n\n activeAwakeningSubscriptions: awakeningSubscriptions(isActive: true) {\n payerUserId\n id\n }\n\n hasAwakeningManagedSubscription\n assignedFluencyFocuses {\n id\n }\n }\n }\n listUnconfirmedConnections {\n totalEntries\n entries {\n studentUserId\n }\n }\n }\n"];
2332
+ /**
2333
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
2334
+ */
2335
+ declare function graphql(source: "\n query SidebarChildren {\n parentChildren {\n id\n firstName\n lastInitial\n username\n user {\n id\n imageUploadHash\n }\n }\n }\n"): (typeof documents)["\n query SidebarChildren {\n parentChildren {\n id\n firstName\n lastInitial\n username\n user {\n id\n imageUploadHash\n }\n }\n }\n"];
2336
+ /**
2337
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
2338
+ */
2339
+ declare function graphql(source: "\n query GetStudentDetails($studentUserId: String!) {\n studentDetail(studentUserId: $studentUserId) {\n id\n firstName\n lastInitial\n username\n user {\n firstName\n lastName\n id\n gradeLevel\n standardId\n isSubscribed\n }\n }\n }\n"): (typeof documents)["\n query GetStudentDetails($studentUserId: String!) {\n studentDetail(studentUserId: $studentUserId) {\n id\n firstName\n lastInitial\n username\n user {\n firstName\n lastName\n id\n gradeLevel\n standardId\n isSubscribed\n }\n }\n }\n"];
2340
+ /**
2341
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
2342
+ */
2343
+ declare function graphql(source: "\n query GetStudentDetailsLayout($studentUserId: String!) {\n studentDetail(studentUserId: $studentUserId) {\n id\n user {\n isSubscribed\n }\n }\n }\n"): (typeof documents)["\n query GetStudentDetailsLayout($studentUserId: String!) {\n studentDetail(studentUserId: $studentUserId) {\n id\n user {\n isSubscribed\n }\n }\n }\n"];
2344
+ /**
2345
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
2346
+ */
2347
+ declare function graphql(source: "\n query GetStudentDetailsProgression($studentUserId: String!) {\n studentDetail(studentUserId: $studentUserId) {\n id\n firstName\n user {\n firstName\n lastName\n gradeLevel\n }\n }\n }\n"): (typeof documents)["\n query GetStudentDetailsProgression($studentUserId: String!) {\n studentDetail(studentUserId: $studentUserId) {\n id\n firstName\n user {\n firstName\n lastName\n gradeLevel\n }\n }\n }\n"];
2348
+ /**
2349
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
2350
+ */
2351
+ declare function graphql(source: "\n query GetStudentDetailsMastery($studentUserId: String!) {\n studentDetail(studentUserId: $studentUserId) {\n id\n firstName\n user {\n firstName\n lastName\n }\n }\n }\n"): (typeof documents)["\n query GetStudentDetailsMastery($studentUserId: String!) {\n studentDetail(studentUserId: $studentUserId) {\n id\n firstName\n user {\n firstName\n lastName\n }\n }\n }\n"];
2352
+ /**
2353
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
2354
+ */
2355
+ declare function graphql(source: "\n query GetBasicStudentDetails($studentUserId: String!) {\n studentDetail(studentUserId: $studentUserId) {\n id\n firstName\n lastInitial\n username\n user {\n id\n awakeningSubscriptions(isActive: true) {\n id\n purchasedAt\n subscriptionPlanType\n expiresAt\n autoRenew\n payerUser {\n id\n email\n firstName\n lastName\n }\n }\n gradeLevel\n standardId\n isSubscribed\n }\n }\n }\n"): (typeof documents)["\n query GetBasicStudentDetails($studentUserId: String!) {\n studentDetail(studentUserId: $studentUserId) {\n id\n firstName\n lastInitial\n username\n user {\n id\n awakeningSubscriptions(isActive: true) {\n id\n purchasedAt\n subscriptionPlanType\n expiresAt\n autoRenew\n payerUser {\n id\n email\n firstName\n lastName\n }\n }\n gradeLevel\n standardId\n isSubscribed\n }\n }\n }\n"];
2356
+ /**
2357
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
2358
+ */
2359
+ declare function graphql(source: "\n query GetStudentForConfirmation($studentUserId: String!) {\n studentDetail(studentUserId: $studentUserId) {\n id\n firstName\n lastInitial\n username\n user {\n id\n imageUploadHash\n gradeLevel\n standardId\n state {\n id\n name\n }\n }\n }\n }\n"): (typeof documents)["\n query GetStudentForConfirmation($studentUserId: String!) {\n studentDetail(studentUserId: $studentUserId) {\n id\n firstName\n lastInitial\n username\n user {\n id\n imageUploadHash\n gradeLevel\n standardId\n state {\n id\n name\n }\n }\n }\n }\n"];
2360
+ /**
2361
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
2362
+ */
2363
+ declare function graphql(source: "\n query AccountPageGetStudentDetails($studentUserId: String!) {\n currentUser {\n id\n isStripeCustomer\n }\n listStates {\n id\n name\n }\n studentDetail(studentUserId: $studentUserId) {\n id\n firstName\n lastInitial\n username\n user {\n firstName\n lastName\n username\n id\n gradeLevel\n standardId\n isSubscribed\n isStripeCustomer\n allowHomeAccessDuringSchoolHours\n assignedFluencyFocus(filterOnCurrentUser: true) {\n id\n focus\n }\n state {\n id\n name\n }\n hasAwakeningManagedSubscription\n activeAwakeningSubscriptions: awakeningSubscriptions(isActive: true) {\n id\n payerUserId\n subscriptionProvider\n }\n }\n }\n }\n"): (typeof documents)["\n query AccountPageGetStudentDetails($studentUserId: String!) {\n currentUser {\n id\n isStripeCustomer\n }\n listStates {\n id\n name\n }\n studentDetail(studentUserId: $studentUserId) {\n id\n firstName\n lastInitial\n username\n user {\n firstName\n lastName\n username\n id\n gradeLevel\n standardId\n isSubscribed\n isStripeCustomer\n allowHomeAccessDuringSchoolHours\n assignedFluencyFocus(filterOnCurrentUser: true) {\n id\n focus\n }\n state {\n id\n name\n }\n hasAwakeningManagedSubscription\n activeAwakeningSubscriptions: awakeningSubscriptions(isActive: true) {\n id\n payerUserId\n subscriptionProvider\n }\n }\n }\n }\n"];
2364
+ /**
2365
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
2366
+ */
2367
+ declare function graphql(source: "\n query ChangePasswordMyStudent($studentUserId: String!) {\n studentDetail(studentUserId: $studentUserId) {\n firstName\n lastInitial\n }\n }\n"): (typeof documents)["\n query ChangePasswordMyStudent($studentUserId: String!) {\n studentDetail(studentUserId: $studentUserId) {\n firstName\n lastInitial\n }\n }\n"];
2368
+ /**
2369
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
2370
+ */
2371
+ declare function graphql(source: "\n query DisconnectStudentQuery($studentUserId: String!) {\n studentDetail(studentUserId: $studentUserId) {\n id\n user {\n id\n firstName\n }\n }\n }\n"): (typeof documents)["\n query DisconnectStudentQuery($studentUserId: String!) {\n studentDetail(studentUserId: $studentUserId) {\n id\n user {\n id\n firstName\n }\n }\n }\n"];
2372
+ /**
2373
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
2374
+ */
2375
+ declare function graphql(source: "\n query SubscriptionConfirmationStudent($studentUserId: String!) {\n child: studentDetail(studentUserId: $studentUserId) {\n id\n firstName\n lastInitial\n username\n user {\n id\n imageUploadHash\n gradeLevel\n state {\n id\n name\n }\n }\n }\n }\n"): (typeof documents)["\n query SubscriptionConfirmationStudent($studentUserId: String!) {\n child: studentDetail(studentUserId: $studentUserId) {\n id\n firstName\n lastInitial\n username\n user {\n id\n imageUploadHash\n gradeLevel\n state {\n id\n name\n }\n }\n }\n }\n"];
2376
+ /**
2377
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
2378
+ */
2379
+ declare function graphql(source: "\n query UpgradeStudentModal {\n parentChildren {\n id\n firstName\n user {\n id\n awakeningSubscriptions(isActive: true) {\n id\n purchasedAt\n expiresAt\n }\n imageUploadHash\n }\n }\n }\n"): (typeof documents)["\n query UpgradeStudentModal {\n parentChildren {\n id\n firstName\n user {\n id\n awakeningSubscriptions(isActive: true) {\n id\n purchasedAt\n expiresAt\n }\n imageUploadHash\n }\n }\n }\n"];
2380
+ /**
2381
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
2382
+ */
2383
+ declare function graphql(source: "\n query SubscribeSubscriptionPlans {\n awakeningSubscriptionPlans {\n id\n chargeAmountInCents\n originalPriceInCents\n durationDisplay\n billingFrequencyDisplay\n savingPercentageDisplay\n type\n }\n awakeningSubscriptionPlansHeader {\n displayText\n }\n }\n"): (typeof documents)["\n query SubscribeSubscriptionPlans {\n awakeningSubscriptionPlans {\n id\n chargeAmountInCents\n originalPriceInCents\n durationDisplay\n billingFrequencyDisplay\n savingPercentageDisplay\n type\n }\n awakeningSubscriptionPlansHeader {\n displayText\n }\n }\n"];
2384
+ /**
2385
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
2386
+ */
2387
+ declare function graphql(source: "\n query DashboardListStudentsPlaytimes($startDate: Date!, $endDate: Date!) {\n parentChildren {\n id\n user {\n id\n username\n awakeningSubscriptions(isActive: true) {\n id\n expiresAt\n autoRenew\n }\n hasAwakeningManagedSubscription\n currentStandardUnit {\n id\n name\n }\n currentSignInAt\n gradeLevel\n\n quizzlerActivityCount: activityDailySummaries(\n startDate: $startDate\n endDate: $endDate\n types: [AWAKENING_QUIZZLER]\n ) {\n playDate\n count\n }\n\n beastieChallengeActivityCount: activityDailySummaries(\n startDate: $startDate\n endDate: $endDate\n types: [BEASTIE_CHALLENGE, BEASTIE_BATTLE]\n ) {\n playDate\n count\n }\n\n miniGamesActivityCount: activityDailySummaries(\n startDate: $startDate\n endDate: $endDate\n types: [MINI_GAME]\n ) {\n playDate\n count\n }\n\n otherActivityCount: activityDailySummaries(\n startDate: $startDate\n endDate: $endDate\n excludeTypes: [\n MINI_GAME\n BEASTIE_CHALLENGE\n BEASTIE_BATTLE\n AWAKENING_QUIZZLER\n ]\n ) {\n playDate\n count\n }\n\n awakeningMonthUsage: playtimeDailySummaries(\n startDate: $startDate\n endDate: $endDate\n ) {\n playDate\n playTimeSec\n }\n miniGamesMonthUsage: playtimeDailySummaries(\n startDate: $startDate\n endDate: $endDate\n types: [MINI_GAME]\n ) {\n playDate\n playTimeSec\n }\n quizzlerMonthUsage: playtimeDailySummaries(\n startDate: $startDate\n endDate: $endDate\n types: [AWAKENING_QUIZZLER]\n ) {\n playDate\n playTimeSec\n }\n beastieChallengeMonthUsage: playtimeDailySummaries(\n startDate: $startDate\n endDate: $endDate\n types: [BEASTIE_CHALLENGE, BEASTIE_BATTLE]\n ) {\n playDate\n playTimeSec\n }\n }\n }\n }\n"): (typeof documents)["\n query DashboardListStudentsPlaytimes($startDate: Date!, $endDate: Date!) {\n parentChildren {\n id\n user {\n id\n username\n awakeningSubscriptions(isActive: true) {\n id\n expiresAt\n autoRenew\n }\n hasAwakeningManagedSubscription\n currentStandardUnit {\n id\n name\n }\n currentSignInAt\n gradeLevel\n\n quizzlerActivityCount: activityDailySummaries(\n startDate: $startDate\n endDate: $endDate\n types: [AWAKENING_QUIZZLER]\n ) {\n playDate\n count\n }\n\n beastieChallengeActivityCount: activityDailySummaries(\n startDate: $startDate\n endDate: $endDate\n types: [BEASTIE_CHALLENGE, BEASTIE_BATTLE]\n ) {\n playDate\n count\n }\n\n miniGamesActivityCount: activityDailySummaries(\n startDate: $startDate\n endDate: $endDate\n types: [MINI_GAME]\n ) {\n playDate\n count\n }\n\n otherActivityCount: activityDailySummaries(\n startDate: $startDate\n endDate: $endDate\n excludeTypes: [\n MINI_GAME\n BEASTIE_CHALLENGE\n BEASTIE_BATTLE\n AWAKENING_QUIZZLER\n ]\n ) {\n playDate\n count\n }\n\n awakeningMonthUsage: playtimeDailySummaries(\n startDate: $startDate\n endDate: $endDate\n ) {\n playDate\n playTimeSec\n }\n miniGamesMonthUsage: playtimeDailySummaries(\n startDate: $startDate\n endDate: $endDate\n types: [MINI_GAME]\n ) {\n playDate\n playTimeSec\n }\n quizzlerMonthUsage: playtimeDailySummaries(\n startDate: $startDate\n endDate: $endDate\n types: [AWAKENING_QUIZZLER]\n ) {\n playDate\n playTimeSec\n }\n beastieChallengeMonthUsage: playtimeDailySummaries(\n startDate: $startDate\n endDate: $endDate\n types: [BEASTIE_CHALLENGE, BEASTIE_BATTLE]\n ) {\n playDate\n playTimeSec\n }\n }\n }\n }\n"];
2388
+ /**
2389
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
2390
+ */
2391
+ declare function graphql(source: "\n query GetPlayerActivitiesSummaries($teacherFocusAreaId: ID!, $pageSize: Int) {\n playerActivitiesSummary(\n teacherFocusAreaId: $teacherFocusAreaId\n pageSize: $pageSize\n ) {\n entries {\n won\n questionsAnswered\n questionsAnsweredCorrectly\n }\n totalEntries\n }\n }\n"): (typeof documents)["\n query GetPlayerActivitiesSummaries($teacherFocusAreaId: ID!, $pageSize: Int) {\n playerActivitiesSummary(\n teacherFocusAreaId: $teacherFocusAreaId\n pageSize: $pageSize\n ) {\n entries {\n won\n questionsAnswered\n questionsAnsweredCorrectly\n }\n totalEntries\n }\n }\n"];
2392
+ /**
2393
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
2394
+ */
2395
+ declare function graphql(source: "\n query TeacherFocusAreaReport(\n $subjectArea: SubjectArea\n $studentUserId: ID!\n $loSearch: String\n $standard: String\n $gradeLevel: Int\n $progressType: String\n ) {\n focusMastery(\n subjectArea: $subjectArea\n studentUserId: $studentUserId\n loSearch: $loSearch\n standard: $standard\n gradeLevel: $gradeLevel\n progressType: $progressType\n ) {\n progressCells {\n correctAnswers\n dateStarted\n dateMastered\n lastActivity\n learningObjectiveId\n masteryAchievement\n masteryScore\n questionsAnswered\n remainingQuestions\n status\n taskType\n }\n\n learningObjectives {\n id\n description\n domainName\n gradeLevel\n name\n ngssDciName\n order\n standard\n subjectArea\n }\n }\n }\n"): (typeof documents)["\n query TeacherFocusAreaReport(\n $subjectArea: SubjectArea\n $studentUserId: ID!\n $loSearch: String\n $standard: String\n $gradeLevel: Int\n $progressType: String\n ) {\n focusMastery(\n subjectArea: $subjectArea\n studentUserId: $studentUserId\n loSearch: $loSearch\n standard: $standard\n gradeLevel: $gradeLevel\n progressType: $progressType\n ) {\n progressCells {\n correctAnswers\n dateStarted\n dateMastered\n lastActivity\n learningObjectiveId\n masteryAchievement\n masteryScore\n questionsAnswered\n remainingQuestions\n status\n taskType\n }\n\n learningObjectives {\n id\n description\n domainName\n gradeLevel\n name\n ngssDciName\n order\n standard\n subjectArea\n }\n }\n }\n"];
2396
+ /**
2397
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
2398
+ */
2399
+ declare function graphql(source: "\n query MyStandardUnits(\n $standardId: String!\n $gradeLevel: String!\n $studentUserId: String!\n ) {\n standardUnits(\n studentUserId: $studentUserId\n standardId: $standardId\n gradeLevel: $gradeLevel\n ) {\n id\n name\n unitNumber\n unitTotal\n unitComplete\n unitAnswers {\n answered\n correct\n incorrect\n }\n learningObjectiveUnits {\n id\n total\n complete\n learningObjective\n learningObjectiveId\n loAnswers {\n answered\n correct\n incorrect\n }\n answers {\n id\n isCorrect\n }\n }\n }\n }\n"): (typeof documents)["\n query MyStandardUnits(\n $standardId: String!\n $gradeLevel: String!\n $studentUserId: String!\n ) {\n standardUnits(\n studentUserId: $studentUserId\n standardId: $standardId\n gradeLevel: $gradeLevel\n ) {\n id\n name\n unitNumber\n unitTotal\n unitComplete\n unitAnswers {\n answered\n correct\n incorrect\n }\n learningObjectiveUnits {\n id\n total\n complete\n learningObjective\n learningObjectiveId\n loAnswers {\n answered\n correct\n incorrect\n }\n answers {\n id\n isCorrect\n }\n }\n }\n }\n"];
2400
+ /**
2401
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
2402
+ */
2403
+ declare function graphql(source: "\n query MySubjectAreas($studentUserId: String!) {\n playerSubjectAreas(studentUserId: $studentUserId) {\n label\n standardId\n isSelected\n }\n }\n"): (typeof documents)["\n query MySubjectAreas($studentUserId: String!) {\n playerSubjectAreas(studentUserId: $studentUserId) {\n label\n standardId\n isSelected\n }\n }\n"];
2404
+ /**
2405
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
2406
+ */
2407
+ declare function graphql(source: "\n query GetPlayerActiveUnits($studentUserId: String!) {\n playerActiveUnits(studentUserId: $studentUserId) {\n id\n mostActive\n standard {\n id\n subjectArea\n }\n }\n }\n"): (typeof documents)["\n query GetPlayerActiveUnits($studentUserId: String!) {\n playerActiveUnits(studentUserId: $studentUserId) {\n id\n mostActive\n standard {\n id\n subjectArea\n }\n }\n }\n"];
2408
+ /**
2409
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
2410
+ */
2411
+ declare function graphql(source: "\n query GetStandardUnitActivitiesSummaries(\n $studentUserId: ID!\n $standardUnitId: ID!\n $pageSize: Int\n ) {\n unitActivities(\n studentUserId: $studentUserId\n standardUnitId: $standardUnitId\n pageSize: $pageSize\n ) {\n totalEntries\n entries {\n playerId\n standardUnitId\n totalAnswered\n totalCorrectlyAnswered\n type\n unitCode\n }\n }\n }\n"): (typeof documents)["\n query GetStandardUnitActivitiesSummaries(\n $studentUserId: ID!\n $standardUnitId: ID!\n $pageSize: Int\n ) {\n unitActivities(\n studentUserId: $studentUserId\n standardUnitId: $standardUnitId\n pageSize: $pageSize\n ) {\n totalEntries\n entries {\n playerId\n standardUnitId\n totalAnswered\n totalCorrectlyAnswered\n type\n unitCode\n }\n }\n }\n"];
2412
+ /**
2413
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
2414
+ */
2415
+ declare function graphql(source: "\n query GetStandardProgression($studentUserId: ID!) {\n standardProgression(studentUserId: $studentUserId, pageSize: 2000) {\n entries {\n progress\n isActive\n playerUserId\n totalAnswered\n totalCorrectlyAnswered\n standardUnitId\n miniGameCount\n beastieChallengeCount\n beastieBattleCount\n awakeningQuizzlerCount\n }\n }\n }\n"): (typeof documents)["\n query GetStandardProgression($studentUserId: ID!) {\n standardProgression(studentUserId: $studentUserId, pageSize: 2000) {\n entries {\n progress\n isActive\n playerUserId\n totalAnswered\n totalCorrectlyAnswered\n standardUnitId\n miniGameCount\n beastieChallengeCount\n beastieBattleCount\n awakeningQuizzlerCount\n }\n }\n }\n"];
2416
+ /**
2417
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
2418
+ */
2419
+ declare function graphql(source: "\n query GetAllStandardUnits(\n $page: Int\n $pageSize: Int\n $standards: [String]\n $topics: [String]\n $grades: [String]!\n $studentUserId: ID!\n $subjectArea: String!\n ) {\n parentStandardUnitEntries(\n page: $page\n pageSize: $pageSize\n standards: $standards\n topics: $topics\n grades: $grades\n studentUserId: $studentUserId\n subjectArea: $subjectArea\n ) {\n pageNumber\n pageSize\n totalEntries\n totalPages\n topics\n standardIds\n\n entries {\n standardUnitId\n standardId\n unitCode\n unitNumber\n gradeLevel\n name\n }\n }\n }\n"): (typeof documents)["\n query GetAllStandardUnits(\n $page: Int\n $pageSize: Int\n $standards: [String]\n $topics: [String]\n $grades: [String]!\n $studentUserId: ID!\n $subjectArea: String!\n ) {\n parentStandardUnitEntries(\n page: $page\n pageSize: $pageSize\n standards: $standards\n topics: $topics\n grades: $grades\n studentUserId: $studentUserId\n subjectArea: $subjectArea\n ) {\n pageNumber\n pageSize\n totalEntries\n totalPages\n topics\n standardIds\n\n entries {\n standardUnitId\n standardId\n unitCode\n unitNumber\n gradeLevel\n name\n }\n }\n }\n"];
2420
+ /**
2421
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
2422
+ */
2423
+ declare function graphql(source: "\n query FocusAreaParentStatuses(\n $studentUserId: ID!\n $subjectArea: SubjectArea\n $teacherUserId: ID\n ) {\n focusAreaStatuses(\n studentUserId: $studentUserId\n teacherUserId: $teacherUserId\n subjectArea: $subjectArea\n pageSize: 5000\n ) {\n pageNumber\n pageSize\n totalPages\n totalEntries\n entries {\n beastieBattleCount\n beastieChallengeCount\n count\n id\n isActive\n learningObjectiveId\n miniGameCount\n playerUserId\n quizzlerCount\n type\n subjectArea\n totalCorrectlyAnswered\n totalAnswered\n }\n }\n }\n"): (typeof documents)["\n query FocusAreaParentStatuses(\n $studentUserId: ID!\n $subjectArea: SubjectArea\n $teacherUserId: ID\n ) {\n focusAreaStatuses(\n studentUserId: $studentUserId\n teacherUserId: $teacherUserId\n subjectArea: $subjectArea\n pageSize: 5000\n ) {\n pageNumber\n pageSize\n totalPages\n totalEntries\n entries {\n beastieBattleCount\n beastieChallengeCount\n count\n id\n isActive\n learningObjectiveId\n miniGameCount\n playerUserId\n quizzlerCount\n type\n subjectArea\n totalCorrectlyAnswered\n totalAnswered\n }\n }\n }\n"];
2424
+ /**
2425
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
2426
+ */
2427
+ declare function graphql(source: "\n query GetStudentTeachers($studentUserId: ID!) {\n studentTeachers(studentUserId: $studentUserId) {\n entries {\n stateId\n schoolId\n teacherId\n teacherUserId\n givenName\n familyName\n }\n }\n }\n"): (typeof documents)["\n query GetStudentTeachers($studentUserId: ID!) {\n studentTeachers(studentUserId: $studentUserId) {\n entries {\n stateId\n schoolId\n teacherId\n teacherUserId\n givenName\n familyName\n }\n }\n }\n"];
2428
+ /**
2429
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
2430
+ */
2431
+ declare function graphql(source: "\n query LearningObjectives($ids: [ID]) {\n learningObjectives(ids: $ids) {\n entries {\n id\n name\n sortOrder\n grades {\n grade\n }\n standardCode\n name\n standardCode\n grades {\n grade\n }\n }\n }\n }\n"): (typeof documents)["\n query LearningObjectives($ids: [ID]) {\n learningObjectives(ids: $ids) {\n entries {\n id\n name\n sortOrder\n grades {\n grade\n }\n standardCode\n name\n standardCode\n grades {\n grade\n }\n }\n }\n }\n"];
2432
+ /**
2433
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
2434
+ */
2435
+ declare function graphql(source: "\n query FluencyFactProgressStatuses(\n $studentUserId: ID!\n $fluencyFocus: FluencyFocusType!\n $startTimeBefore: DateTime!\n $startTimeAfter: DateTime\n ) {\n fluencyFactProgressStatuses(\n studentUserId: $studentUserId\n fluencyFocus: $fluencyFocus\n startTimeBefore: $startTimeBefore\n startTimeAfter: $startTimeAfter\n ) {\n a\n b\n op\n status\n }\n }\n"): (typeof documents)["\n query FluencyFactProgressStatuses(\n $studentUserId: ID!\n $fluencyFocus: FluencyFocusType!\n $startTimeBefore: DateTime!\n $startTimeAfter: DateTime\n ) {\n fluencyFactProgressStatuses(\n studentUserId: $studentUserId\n fluencyFocus: $fluencyFocus\n startTimeBefore: $startTimeBefore\n startTimeAfter: $startTimeAfter\n ) {\n a\n b\n op\n status\n }\n }\n"];
2436
+ /**
2437
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
2438
+ */
2439
+ declare function graphql(source: "\n query FluencyFacts($focus: FluencyFocusType!) {\n fluencyFacts(focus: $focus) {\n a\n b\n op\n }\n }\n"): (typeof documents)["\n query FluencyFacts($focus: FluencyFocusType!) {\n fluencyFacts(focus: $focus) {\n a\n b\n op\n }\n }\n"];
2440
+ /**
2441
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
2442
+ */
2443
+ declare function graphql(source: "\n query ListStates {\n listStates {\n id\n name\n }\n }\n"): (typeof documents)["\n query ListStates {\n listStates {\n id\n name\n }\n }\n"];
2444
+ type DocumentType<TDocumentNode extends TypedDocumentNode<any, any>> = TDocumentNode extends TypedDocumentNode<infer TType, any> ? TType : never;
2445
+
2446
+ export { AccountPageGetStudentDetailsDocument, type AccountPageGetStudentDetailsQuery, type AccountPageGetStudentDetailsQueryVariables, type ActivitySummary, type Answer, type Audience, type AwakeningSubscription, type AwakeningSubscriptionPlan, AwakeningSubscriptionPlanType, type AwakeningSubscriptionPlansHeader, type BuildVersion, ChangePasswordDocument, type ChangePasswordMutation, type ChangePasswordMutationVariables, ChangePasswordMyStudentDocument, type ChangePasswordMyStudentQuery, type ChangePasswordMyStudentQueryVariables, ChangeStudentPasswordDocument, type ChangeStudentPasswordMutation, type ChangeStudentPasswordMutationVariables, ChildAccountEditGradeLevelDocument, type ChildAccountEditGradeLevelMutation, type ChildAccountEditGradeLevelMutationVariables, ChildAccountEditStateDocument, type ChildAccountEditStateMutation, type ChildAccountEditStateMutationVariables, ChildAccountEditStudentNameDocument, type ChildAccountEditStudentNameMutation, type ChildAccountEditStudentNameMutationVariables, type Concept, ConfirmStudentConnectionDocument, type ConfirmStudentConnectionMutation, type ConfirmStudentConnectionMutationVariables, ConnectToStudentDocument, type ConnectToStudentMutation, type ConnectToStudentMutationVariables, type Connection, type ConnectionsList, CreateStripeCustomerDocument, CreateStripeCustomerForPrepaidVoucherDocument, type CreateStripeCustomerForPrepaidVoucherMutation, type CreateStripeCustomerForPrepaidVoucherMutationVariables, type CreateStripeCustomerMutation, type CreateStripeCustomerMutationVariables, CreateStripeSetupIntentDocument, type CreateStripeSetupIntentMutation, type CreateStripeSetupIntentMutationVariables, CreateStudentDocument, type CreateStudentMutation, type CreateStudentMutationVariables, type CreatedStudent, type CurrentUser, CurrentUserContextDocument, type CurrentUserContextQuery, type CurrentUserContextQueryVariables, DashboardListStudentsPlaytimesDocument, type DashboardListStudentsPlaytimesQuery, type DashboardListStudentsPlaytimesQueryVariables, DisconnectStudentDocument, type DisconnectStudentMutation, type DisconnectStudentMutationVariables, DisconnectStudentQueryDocument, type DisconnectStudentQueryQuery, type DisconnectStudentQueryQueryVariables, type DocumentType, type Exact, type FluencyFact, FluencyFactOperation, type FluencyFactProgressStatus, FluencyFactProgressStatusType, FluencyFactProgressStatusesDocument, type FluencyFactProgressStatusesQuery, type FluencyFactProgressStatusesQueryVariables, FluencyFactsDocument, type FluencyFactsQuery, type FluencyFactsQueryVariables, type FluencyFocus, FluencyFocusType, type FluencyInstructor, type FluencyPlayer, type FluencyPlayerFluencySessionsArgs, type FluencySession, type FluencySessionFilter, type FluencyStudent, FocusAreaParentStatusesDocument, type FocusAreaParentStatusesQuery, type FocusAreaParentStatusesQueryVariables, type FocusAreaStatus, FocusAreaStatusType, type FocusAreaStatusesList, type FocusMastery, type FragmentType, type Game, type GameConceptAlignedQuestionsArgs, type GameReview, type GameReviewsList, type GameStat, type GameTeacherReviewsArgs, type GameVersion, type GamesList, GetAllStandardUnitsDocument, type GetAllStandardUnitsQuery, type GetAllStandardUnitsQueryVariables, GetBasicStudentDetailsDocument, type GetBasicStudentDetailsQuery, type GetBasicStudentDetailsQueryVariables, GetCurrentUserDocument, type GetCurrentUserQuery, type GetCurrentUserQueryVariables, GetPlayerActiveUnitsDocument, type GetPlayerActiveUnitsQuery, type GetPlayerActiveUnitsQueryVariables, GetPlayerActivitiesSummariesDocument, type GetPlayerActivitiesSummariesQuery, type GetPlayerActivitiesSummariesQueryVariables, GetStandardProgressionDocument, type GetStandardProgressionQuery, type GetStandardProgressionQueryVariables, GetStandardUnitActivitiesSummariesDocument, type GetStandardUnitActivitiesSummariesQuery, type GetStandardUnitActivitiesSummariesQueryVariables, GetStudentDetailsDocument, GetStudentDetailsLayoutDocument, type GetStudentDetailsLayoutQuery, type GetStudentDetailsLayoutQueryVariables, GetStudentDetailsMasteryDocument, type GetStudentDetailsMasteryQuery, type GetStudentDetailsMasteryQueryVariables, GetStudentDetailsProgressionDocument, type GetStudentDetailsProgressionQuery, type GetStudentDetailsProgressionQueryVariables, type GetStudentDetailsQuery, type GetStudentDetailsQueryVariables, GetStudentForConfirmationDocument, type GetStudentForConfirmationQuery, type GetStudentForConfirmationQueryVariables, GetStudentTeachersDocument, type GetStudentTeachersQuery, type GetStudentTeachersQueryVariables, type Grade, type Image, type Incremental, type InputMaybe, type LearningObjective, type LearningObjectiveGamesArgs, type LearningObjectiveUnit, LearningObjectivesDocument, type LearningObjectivesList, type LearningObjectivesQuery, type LearningObjectivesQueryVariables, ListChildrenDocument, type ListChildrenQuery, type ListChildrenQueryVariables, ListStatesDocument, type ListStatesQuery, type ListStatesQueryVariables, type MakeEmpty, type MakeMaybe, type MakeOptional, type Maybe, MyAccountDetailsDocument, type MyAccountDetailsQuery, type MyAccountDetailsQueryVariables, MyFeatureFlagsDocument, type MyFeatureFlagsQuery, type MyFeatureFlagsQueryVariables, MyStandardUnitsDocument, type MyStandardUnitsQuery, type MyStandardUnitsQueryVariables, MySubjectAreasDocument, type MySubjectAreasQuery, type MySubjectAreasQueryVariables, type ParentLearningObjectiveUnit, type ParentPlayerActivityAnswer, type ParentQuestionAnswerData, type ParentStandardUnit, type ParentStandardUnitEntriesList, type ParentStandardUnitEntry, type Player, type PlayerActiveUnit, type PlayerActivitiesSummariesList, type PlayerActivitiesSummary, type PlayerSubjectArea, type Playtime, PlaytimeType, type ProgressionCell, type ProgressionLearningObjective, type Question, RedeemPrepaidVoucherDocument, type RedeemPrepaidVoucherMutation, type RedeemPrepaidVoucherMutationVariables, type RootMutationType, type RootMutationTypeChangePasswordArgs, type RootMutationTypeChangeStudentPasswordArgs, type RootMutationTypeConfirmConnectionArgs, type RootMutationTypeConnectToStudentArgs, type RootMutationTypeCreateStripeCustomerArgs, type RootMutationTypeCreateStudentArgs, type RootMutationTypeDisconnectStudentArgs, type RootMutationTypeRedeemPrepaidVoucherArgs, type RootMutationTypeSubscribePlayerArgs, type RootMutationTypeUnsubscribePlayerArgs, type RootMutationTypeUpdateAllowHomeAccessDuringSchoolHoursArgs, type RootMutationTypeUpdateNameArgs, type RootMutationTypeUpdateStudentBuddyListArgs, type RootMutationTypeUpdateStudentFluencyFocusArgs, type RootMutationTypeUpdateStudentGradeLevelArgs, type RootMutationTypeUpdateStudentNameArgs, type RootMutationTypeUpdateStudentStateArgs, type RootQueryType, type RootQueryTypeFluencyFactProgressStatusesArgs, type RootQueryTypeFluencyFactsArgs, type RootQueryTypeFocusAreaStatusesArgs, type RootQueryTypeFocusMasteryArgs, type RootQueryTypeLearningObjectivesArgs, type RootQueryTypeListUnconfirmedConnectionsArgs, type RootQueryTypeParentStandardUnitEntriesArgs, type RootQueryTypePlayerActiveUnitsArgs, type RootQueryTypePlayerActivitiesSummaryArgs, type RootQueryTypePlayerSubjectAreasArgs, type RootQueryTypeStandardProgressionArgs, type RootQueryTypeStandardUnitEntriesArgs, type RootQueryTypeStandardUnitsArgs, type RootQueryTypeStudentDetailArgs, type RootQueryTypeStudentTeachersArgs, type RootQueryTypeStudentUserArgs, type RootQueryTypeUnitActivitiesArgs, type Scalars, SidebarChildrenDocument, type SidebarChildrenQuery, type SidebarChildrenQueryVariables, type Standard, type StandardProgressionEntry, type StandardProgressionList, type StandardUnit, type StandardUnitEntriesList, type StandardUnitEntry, type State, type StripePaymentMethod, type Student, type StudentTeacher, type StudentTeachersList, type Subject, SubjectArea, SubscribePlayerDocument, type SubscribePlayerMutation, type SubscribePlayerMutationVariables, SubscribeSubscriptionPlansDocument, type SubscribeSubscriptionPlansQuery, type SubscribeSubscriptionPlansQueryVariables, SubscriptionConfirmationStudentDocument, type SubscriptionConfirmationStudentQuery, type SubscriptionConfirmationStudentQueryVariables, SubscriptionProviderType, TeacherFocusAreaReportDocument, type TeacherFocusAreaReportQuery, type TeacherFocusAreaReportQueryVariables, type UnitActivitiesList, type UnitActivitiesSummary, UpdateAwakeningHomeAccessDocument, type UpdateAwakeningHomeAccessMutation, type UpdateAwakeningHomeAccessMutationVariables, UpdateFluencyFocusDocument, type UpdateFluencyFocusMutation, type UpdateFluencyFocusMutationVariables, UpdateNameDocument, type UpdateNameMutation, type UpdateNameMutationVariables, UpdateParentAccountDocument, type UpdateParentAccountMutation, type UpdateParentAccountMutationVariables, UpgradeStudentModalDocument, type UpgradeStudentModalQuery, type UpgradeStudentModalQueryVariables, type User, type UserActivityDailySummariesArgs, type UserAssignedFluencyFocusArgs, type UserAwakeningSubscriptionsArgs, UserDetailsDocument, type UserDetailsQuery, type UserDetailsQueryVariables, type UserFluencySessionsArgs, UserMenuQueryDocument, type UserMenuQueryQuery, type UserMenuQueryQueryVariables, type UserPlaytimeDailySummariesArgs, graphql, isFragmentReady, makeFragmentData, useFragment };