@legendsoflearning/lol-sdk-core 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +172 -0
- package/dist/auth/index.d.mts +1 -0
- package/dist/auth/index.d.ts +1 -0
- package/dist/auth/index.js +12 -0
- package/dist/auth/index.js.map +1 -0
- package/dist/auth/index.mjs +3 -0
- package/dist/auth/index.mjs.map +1 -0
- package/dist/cache/index.d.mts +26 -0
- package/dist/cache/index.d.ts +26 -0
- package/dist/cache/index.js +63 -0
- package/dist/cache/index.js.map +1 -0
- package/dist/cache/index.mjs +60 -0
- package/dist/cache/index.mjs.map +1 -0
- package/dist/chunk-Q4UXELOU.mjs +284 -0
- package/dist/chunk-Q4UXELOU.mjs.map +1 -0
- package/dist/chunk-WWN77BBN.js +286 -0
- package/dist/chunk-WWN77BBN.js.map +1 -0
- package/dist/generated/admins/index.d.mts +2738 -0
- package/dist/generated/admins/index.d.ts +2738 -0
- package/dist/generated/admins/index.js +126 -0
- package/dist/generated/admins/index.js.map +1 -0
- package/dist/generated/admins/index.mjs +108 -0
- package/dist/generated/admins/index.mjs.map +1 -0
- package/dist/generated/agents/index.d.mts +1744 -0
- package/dist/generated/agents/index.d.ts +1744 -0
- package/dist/generated/agents/index.js +220 -0
- package/dist/generated/agents/index.js.map +1 -0
- package/dist/generated/agents/index.mjs +168 -0
- package/dist/generated/agents/index.mjs.map +1 -0
- package/dist/generated/developers/index.d.mts +748 -0
- package/dist/generated/developers/index.d.ts +748 -0
- package/dist/generated/developers/index.js +72 -0
- package/dist/generated/developers/index.js.map +1 -0
- package/dist/generated/developers/index.mjs +54 -0
- package/dist/generated/developers/index.mjs.map +1 -0
- package/dist/generated/parents/index.d.mts +2446 -0
- package/dist/generated/parents/index.d.ts +2446 -0
- package/dist/generated/parents/index.js +272 -0
- package/dist/generated/parents/index.js.map +1 -0
- package/dist/generated/parents/index.mjs +206 -0
- package/dist/generated/parents/index.mjs.map +1 -0
- package/dist/generated/play/index.d.mts +1740 -0
- package/dist/generated/play/index.d.ts +1740 -0
- package/dist/generated/play/index.js +173 -0
- package/dist/generated/play/index.js.map +1 -0
- package/dist/generated/play/index.mjs +139 -0
- package/dist/generated/play/index.mjs.map +1 -0
- package/dist/generated/public/index.d.mts +1126 -0
- package/dist/generated/public/index.d.ts +1126 -0
- package/dist/generated/public/index.js +58 -0
- package/dist/generated/public/index.js.map +1 -0
- package/dist/generated/public/index.mjs +46 -0
- package/dist/generated/public/index.mjs.map +1 -0
- package/dist/generated/teachers/index.d.mts +6205 -0
- package/dist/generated/teachers/index.d.ts +6205 -0
- package/dist/generated/teachers/index.js +353 -0
- package/dist/generated/teachers/index.js.map +1 -0
- package/dist/generated/teachers/index.mjs +282 -0
- package/dist/generated/teachers/index.mjs.map +1 -0
- package/dist/generated/translation-hub/index.d.mts +2018 -0
- package/dist/generated/translation-hub/index.d.ts +2018 -0
- package/dist/generated/translation-hub/index.js +186 -0
- package/dist/generated/translation-hub/index.js.map +1 -0
- package/dist/generated/translation-hub/index.mjs +135 -0
- package/dist/generated/translation-hub/index.mjs.map +1 -0
- package/dist/index-CYIBtoSV.d.mts +173 -0
- package/dist/index-CYIBtoSV.d.ts +173 -0
- package/dist/index.d.mts +154 -0
- package/dist/index.d.ts +154 -0
- package/dist/index.js +364 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +348 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +121 -0
|
@@ -0,0 +1,1740 @@
|
|
|
1
|
+
import { TypedDocumentNode, DocumentTypeDecoration, ResultOf } from '@graphql-typed-document-node/core';
|
|
2
|
+
|
|
3
|
+
type Maybe<T> = T | null;
|
|
4
|
+
type InputMaybe<T> = Maybe<T>;
|
|
5
|
+
type Exact<T extends {
|
|
6
|
+
[key: string]: unknown;
|
|
7
|
+
}> = {
|
|
8
|
+
[K in keyof T]: T[K];
|
|
9
|
+
};
|
|
10
|
+
type MakeOptional<T, K extends keyof T> = Omit<T, K> & {
|
|
11
|
+
[SubKey in K]?: Maybe<T[SubKey]>;
|
|
12
|
+
};
|
|
13
|
+
type MakeMaybe<T, K extends keyof T> = Omit<T, K> & {
|
|
14
|
+
[SubKey in K]: Maybe<T[SubKey]>;
|
|
15
|
+
};
|
|
16
|
+
type MakeEmpty<T extends {
|
|
17
|
+
[key: string]: unknown;
|
|
18
|
+
}, K extends keyof T> = {
|
|
19
|
+
[_ in K]?: never;
|
|
20
|
+
};
|
|
21
|
+
type Incremental<T> = T | {
|
|
22
|
+
[P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never;
|
|
23
|
+
};
|
|
24
|
+
/** All built-in and custom scalars, mapped to their actual values */
|
|
25
|
+
type Scalars = {
|
|
26
|
+
ID: {
|
|
27
|
+
input: string;
|
|
28
|
+
output: string;
|
|
29
|
+
};
|
|
30
|
+
String: {
|
|
31
|
+
input: string;
|
|
32
|
+
output: string;
|
|
33
|
+
};
|
|
34
|
+
Boolean: {
|
|
35
|
+
input: boolean;
|
|
36
|
+
output: boolean;
|
|
37
|
+
};
|
|
38
|
+
Int: {
|
|
39
|
+
input: number;
|
|
40
|
+
output: number;
|
|
41
|
+
};
|
|
42
|
+
Float: {
|
|
43
|
+
input: number;
|
|
44
|
+
output: number;
|
|
45
|
+
};
|
|
46
|
+
/**
|
|
47
|
+
* The `DateTime` scalar type represents a date and time in the UTC
|
|
48
|
+
* timezone. The DateTime appears in a JSON response as an ISO8601 formatted
|
|
49
|
+
* string, including UTC timezone ("Z"). The parsed date and time string will
|
|
50
|
+
* be converted to UTC if there is an offset.
|
|
51
|
+
*/
|
|
52
|
+
DateTime: {
|
|
53
|
+
input: any;
|
|
54
|
+
output: any;
|
|
55
|
+
};
|
|
56
|
+
/**
|
|
57
|
+
* The `Json` scalar type represents arbitrary json string data, represented as UTF-8
|
|
58
|
+
* character sequences. The Json type is most often used to represent a free-form
|
|
59
|
+
* human-readable json string.
|
|
60
|
+
*/
|
|
61
|
+
Json: {
|
|
62
|
+
input: any;
|
|
63
|
+
output: any;
|
|
64
|
+
};
|
|
65
|
+
/**
|
|
66
|
+
* The `Naive DateTime` scalar type represents a naive date and time without
|
|
67
|
+
* timezone. The DateTime appears in a JSON response as an ISO8601 formatted
|
|
68
|
+
* string.
|
|
69
|
+
*/
|
|
70
|
+
NaiveDateTime: {
|
|
71
|
+
input: any;
|
|
72
|
+
output: any;
|
|
73
|
+
};
|
|
74
|
+
};
|
|
75
|
+
type Activity = {
|
|
76
|
+
__typename?: 'Activity';
|
|
77
|
+
assessment?: Maybe<Assessment>;
|
|
78
|
+
awakeningActivity?: Maybe<AwakeningActivity>;
|
|
79
|
+
durationInMinutes?: Maybe<Scalars['Int']['output']>;
|
|
80
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
81
|
+
learningObjective?: Maybe<LearningObjective>;
|
|
82
|
+
miniGame?: Maybe<Game>;
|
|
83
|
+
miniGameVersion?: Maybe<GameVersion>;
|
|
84
|
+
numOfQuestions?: Maybe<Scalars['Int']['output']>;
|
|
85
|
+
order?: Maybe<Scalars['Float']['output']>;
|
|
86
|
+
questions?: Maybe<Array<Maybe<ActivityQuestion>>>;
|
|
87
|
+
questionsType?: Maybe<Scalars['String']['output']>;
|
|
88
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
89
|
+
video?: Maybe<Video>;
|
|
90
|
+
};
|
|
91
|
+
type ActivityInputV2 = {
|
|
92
|
+
assessmentId?: InputMaybe<Scalars['ID']['input']>;
|
|
93
|
+
awakeningActivityId?: InputMaybe<Scalars['ID']['input']>;
|
|
94
|
+
durationInMinutes?: InputMaybe<Scalars['Int']['input']>;
|
|
95
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
96
|
+
includeMiniGames?: InputMaybe<Scalars['Boolean']['input']>;
|
|
97
|
+
learningObjectiveId?: InputMaybe<Scalars['ID']['input']>;
|
|
98
|
+
miniGameAssessmentQuestionCount?: InputMaybe<Scalars['Int']['input']>;
|
|
99
|
+
miniGameId?: InputMaybe<Scalars['ID']['input']>;
|
|
100
|
+
numOfQuestions?: InputMaybe<Scalars['Int']['input']>;
|
|
101
|
+
order?: InputMaybe<Scalars['Float']['input']>;
|
|
102
|
+
questionsType?: InputMaybe<Scalars['String']['input']>;
|
|
103
|
+
randomQuestionOrder?: InputMaybe<Scalars['Boolean']['input']>;
|
|
104
|
+
standardId?: InputMaybe<Scalars['String']['input']>;
|
|
105
|
+
subjectId?: InputMaybe<Scalars['ID']['input']>;
|
|
106
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
107
|
+
videoId?: InputMaybe<Scalars['ID']['input']>;
|
|
108
|
+
};
|
|
109
|
+
type ActivityQuestion = {
|
|
110
|
+
__typename?: 'ActivityQuestion';
|
|
111
|
+
groupingId?: Maybe<Scalars['String']['output']>;
|
|
112
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
113
|
+
order?: Maybe<Scalars['Float']['output']>;
|
|
114
|
+
question?: Maybe<Question>;
|
|
115
|
+
};
|
|
116
|
+
type ActivityV2 = {
|
|
117
|
+
__typename?: 'ActivityV2';
|
|
118
|
+
assessment?: Maybe<Assessment>;
|
|
119
|
+
assessmentId?: Maybe<Scalars['ID']['output']>;
|
|
120
|
+
availableMiniGames?: Maybe<Array<Maybe<GameAlignment>>>;
|
|
121
|
+
awakeningActivity?: Maybe<AwakeningActivity>;
|
|
122
|
+
durationInMinutes?: Maybe<Scalars['Int']['output']>;
|
|
123
|
+
gameId?: Maybe<Scalars['ID']['output']>;
|
|
124
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
125
|
+
includeMiniGames?: Maybe<Scalars['Boolean']['output']>;
|
|
126
|
+
learningObjective?: Maybe<LearningObjective>;
|
|
127
|
+
learningObjectiveId?: Maybe<Scalars['ID']['output']>;
|
|
128
|
+
miniGame?: Maybe<Game>;
|
|
129
|
+
miniGameAssessmentQuestionCount?: Maybe<Scalars['Int']['output']>;
|
|
130
|
+
miniGameId?: Maybe<Scalars['ID']['output']>;
|
|
131
|
+
numOfQuestions?: Maybe<Scalars['Int']['output']>;
|
|
132
|
+
order?: Maybe<Scalars['Float']['output']>;
|
|
133
|
+
percentCorrect?: Maybe<Scalars['Float']['output']>;
|
|
134
|
+
playerActivities?: Maybe<Array<Maybe<PlayerActivity>>>;
|
|
135
|
+
questions?: Maybe<Array<Maybe<ActivityQuestion>>>;
|
|
136
|
+
questionsType?: Maybe<Scalars['String']['output']>;
|
|
137
|
+
randomQuestionOrder?: Maybe<Scalars['Boolean']['output']>;
|
|
138
|
+
standard?: Maybe<Scalars['String']['output']>;
|
|
139
|
+
subjectId?: Maybe<Scalars['ID']['output']>;
|
|
140
|
+
totalAnswered?: Maybe<Scalars['Int']['output']>;
|
|
141
|
+
totalCorrectlyAnswered?: Maybe<Scalars['Int']['output']>;
|
|
142
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
143
|
+
video?: Maybe<Video>;
|
|
144
|
+
};
|
|
145
|
+
type Answer = {
|
|
146
|
+
__typename?: 'Answer';
|
|
147
|
+
answer?: Maybe<Scalars['String']['output']>;
|
|
148
|
+
choiceNum?: Maybe<Scalars['Int']['output']>;
|
|
149
|
+
explanation?: Maybe<AnswerExplanation>;
|
|
150
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
151
|
+
isCorrect?: Maybe<Scalars['Boolean']['output']>;
|
|
152
|
+
};
|
|
153
|
+
type AnswerExplanation = {
|
|
154
|
+
__typename?: 'AnswerExplanation';
|
|
155
|
+
answerId?: Maybe<Scalars['ID']['output']>;
|
|
156
|
+
explanation?: Maybe<Scalars['String']['output']>;
|
|
157
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
158
|
+
};
|
|
159
|
+
type AnswerQuestionResponse = {
|
|
160
|
+
__typename?: 'AnswerQuestionResponse';
|
|
161
|
+
answer?: Maybe<PlayerActivityAnswer>;
|
|
162
|
+
play?: Maybe<AssignmentPlay>;
|
|
163
|
+
};
|
|
164
|
+
type Assessment = {
|
|
165
|
+
__typename?: 'Assessment';
|
|
166
|
+
activitySummary?: Maybe<Scalars['String']['output']>;
|
|
167
|
+
durationInMinutes?: Maybe<Scalars['String']['output']>;
|
|
168
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
169
|
+
mode?: Maybe<Scalars['String']['output']>;
|
|
170
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
171
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
172
|
+
visibility?: Maybe<Scalars['String']['output']>;
|
|
173
|
+
};
|
|
174
|
+
type Assignment = {
|
|
175
|
+
__typename?: 'Assignment';
|
|
176
|
+
activities?: Maybe<Array<Maybe<Activity>>>;
|
|
177
|
+
assignmentSetAssignment?: Maybe<Assignment>;
|
|
178
|
+
assignmentSetAssignmentLink?: Maybe<AssignmentSetAssignment>;
|
|
179
|
+
endTime?: Maybe<Scalars['DateTime']['output']>;
|
|
180
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
181
|
+
imageUrl?: Maybe<Scalars['String']['output']>;
|
|
182
|
+
initialLearningObjective?: Maybe<LearningObjective>;
|
|
183
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
184
|
+
ownedBy?: Maybe<AssignmentOwnershipType>;
|
|
185
|
+
playerAssignments?: Maybe<Array<Maybe<PlayerAssignment>>>;
|
|
186
|
+
startTime?: Maybe<Scalars['DateTime']['output']>;
|
|
187
|
+
};
|
|
188
|
+
declare enum AssignmentOwnershipType {
|
|
189
|
+
/** Assignments created by the district and teacher */
|
|
190
|
+
All = "ALL",
|
|
191
|
+
/** Assignments created by the district */
|
|
192
|
+
District = "DISTRICT",
|
|
193
|
+
/** Assignments created by the teacher */
|
|
194
|
+
Teacher = "TEACHER"
|
|
195
|
+
}
|
|
196
|
+
type AssignmentPlay = {
|
|
197
|
+
__typename?: 'AssignmentPlay';
|
|
198
|
+
assignmentMode?: Maybe<Scalars['String']['output']>;
|
|
199
|
+
completed: Scalars['Boolean']['output'];
|
|
200
|
+
currentStep?: Maybe<AssignmentPlayStep>;
|
|
201
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
202
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
203
|
+
paused: Scalars['Boolean']['output'];
|
|
204
|
+
questions?: Maybe<Array<Maybe<Question>>>;
|
|
205
|
+
steps?: Maybe<Array<Maybe<AssignmentPlayStep>>>;
|
|
206
|
+
stopped: Scalars['Boolean']['output'];
|
|
207
|
+
};
|
|
208
|
+
type AssignmentPlayStep = {
|
|
209
|
+
__typename?: 'AssignmentPlayStep';
|
|
210
|
+
activity?: Maybe<Activity>;
|
|
211
|
+
completed: Scalars['Boolean']['output'];
|
|
212
|
+
gameframeAttrs?: Maybe<GameframeAttrs>;
|
|
213
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
214
|
+
miniGameState?: Maybe<Scalars['Json']['output']>;
|
|
215
|
+
nextQuestion?: Maybe<ActivityQuestion>;
|
|
216
|
+
order: Scalars['Int']['output'];
|
|
217
|
+
playerActivity?: Maybe<PlayerActivity>;
|
|
218
|
+
playerActivityId?: Maybe<Scalars['ID']['output']>;
|
|
219
|
+
progress?: Maybe<Scalars['Int']['output']>;
|
|
220
|
+
/** Questions added to the activity that were not answered yet */
|
|
221
|
+
remainingQuestions?: Maybe<Array<Maybe<ActivityQuestion>>>;
|
|
222
|
+
reward?: Maybe<ClassroomReward>;
|
|
223
|
+
rewardId?: Maybe<Scalars['ID']['output']>;
|
|
224
|
+
stages?: Maybe<Array<Maybe<AssignmentPlayStepStage>>>;
|
|
225
|
+
type: PlayStepType;
|
|
226
|
+
};
|
|
227
|
+
type AssignmentPlayStepStage = {
|
|
228
|
+
__typename?: 'AssignmentPlayStepStage';
|
|
229
|
+
completed: Scalars['Boolean']['output'];
|
|
230
|
+
id: Scalars['ID']['output'];
|
|
231
|
+
name: Scalars['String']['output'];
|
|
232
|
+
};
|
|
233
|
+
type AssignmentSetAssignment = {
|
|
234
|
+
__typename?: 'AssignmentSetAssignment';
|
|
235
|
+
assignmentSetId?: Maybe<Scalars['ID']['output']>;
|
|
236
|
+
order?: Maybe<Scalars['Float']['output']>;
|
|
237
|
+
};
|
|
238
|
+
type AssignmentV2 = {
|
|
239
|
+
__typename?: 'AssignmentV2';
|
|
240
|
+
activities?: Maybe<Array<Maybe<ActivityV2>>>;
|
|
241
|
+
endTime?: Maybe<Scalars['DateTime']['output']>;
|
|
242
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
243
|
+
initialLearningObjective?: Maybe<LearningObjective>;
|
|
244
|
+
initialLearningObjectiveId?: Maybe<Scalars['ID']['output']>;
|
|
245
|
+
mode?: Maybe<Scalars['String']['output']>;
|
|
246
|
+
startTime?: Maybe<Scalars['DateTime']['output']>;
|
|
247
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
248
|
+
stoppedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
249
|
+
};
|
|
250
|
+
type AwakeningActivity = {
|
|
251
|
+
__typename?: 'AwakeningActivity';
|
|
252
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
253
|
+
playDurationSeconds?: Maybe<Scalars['Int']['output']>;
|
|
254
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
255
|
+
};
|
|
256
|
+
type ClassroomReward = {
|
|
257
|
+
__typename?: 'ClassroomReward';
|
|
258
|
+
activityId?: Maybe<Scalars['ID']['output']>;
|
|
259
|
+
amount?: Maybe<Scalars['Int']['output']>;
|
|
260
|
+
assignmentId?: Maybe<Scalars['ID']['output']>;
|
|
261
|
+
collectedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
262
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
263
|
+
currency?: Maybe<Scalars['String']['output']>;
|
|
264
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
265
|
+
order?: Maybe<Scalars['Int']['output']>;
|
|
266
|
+
quantity?: Maybe<Scalars['Int']['output']>;
|
|
267
|
+
total?: Maybe<Scalars['Int']['output']>;
|
|
268
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
269
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
270
|
+
userId?: Maybe<Scalars['ID']['output']>;
|
|
271
|
+
};
|
|
272
|
+
/** Client runtime input object */
|
|
273
|
+
type CrtInput = {
|
|
274
|
+
/** Amount of time(in ms) since the play started on the client */
|
|
275
|
+
time?: InputMaybe<Scalars['Int']['input']>;
|
|
276
|
+
/** Client timezone offset in minutes */
|
|
277
|
+
tz?: InputMaybe<Scalars['Int']['input']>;
|
|
278
|
+
};
|
|
279
|
+
type Domain = {
|
|
280
|
+
__typename?: 'Domain';
|
|
281
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
282
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
283
|
+
order?: Maybe<Scalars['Float']['output']>;
|
|
284
|
+
topics?: Maybe<TopicList>;
|
|
285
|
+
};
|
|
286
|
+
type FeatureFlagVariant = {
|
|
287
|
+
__typename?: 'FeatureFlagVariant';
|
|
288
|
+
name: Scalars['String']['output'];
|
|
289
|
+
value: Scalars['String']['output'];
|
|
290
|
+
};
|
|
291
|
+
type FluencyFact = {
|
|
292
|
+
__typename?: 'FluencyFact';
|
|
293
|
+
a: Scalars['Int']['output'];
|
|
294
|
+
b: Scalars['Int']['output'];
|
|
295
|
+
op: FluencyFactOperation;
|
|
296
|
+
};
|
|
297
|
+
declare enum FluencyFactOperation {
|
|
298
|
+
/** a + b */
|
|
299
|
+
Add = "ADD",
|
|
300
|
+
/** a / b */
|
|
301
|
+
Div = "DIV",
|
|
302
|
+
/** a * b */
|
|
303
|
+
Mul = "MUL",
|
|
304
|
+
/** a - b */
|
|
305
|
+
Sub = "SUB"
|
|
306
|
+
}
|
|
307
|
+
type FluencyFactProgressStatus = {
|
|
308
|
+
__typename?: 'FluencyFactProgressStatus';
|
|
309
|
+
a: Scalars['Int']['output'];
|
|
310
|
+
b: Scalars['Int']['output'];
|
|
311
|
+
op: FluencyFactOperation;
|
|
312
|
+
status: FluencyFactProgressStatusType;
|
|
313
|
+
};
|
|
314
|
+
declare enum FluencyFactProgressStatusType {
|
|
315
|
+
/** Fluent in the fact */
|
|
316
|
+
Fluent = "FLUENT",
|
|
317
|
+
/** Assessed but not fluent in the fact */
|
|
318
|
+
NotFluent = "NOT_FLUENT",
|
|
319
|
+
/** The fact has not yet been assessed */
|
|
320
|
+
Unassessed = "UNASSESSED"
|
|
321
|
+
}
|
|
322
|
+
type FluencyFocus = {
|
|
323
|
+
__typename?: 'FluencyFocus';
|
|
324
|
+
assessedFactsCount: Scalars['Int']['output'];
|
|
325
|
+
completeFluencySessionsCount: Scalars['Int']['output'];
|
|
326
|
+
fluencyGainFactsCount: Scalars['Int']['output'];
|
|
327
|
+
fluentFactsCount: Scalars['Int']['output'];
|
|
328
|
+
focus: FluencyFocusType;
|
|
329
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
330
|
+
initialAssessmentFluentFactsCount: Scalars['Int']['output'];
|
|
331
|
+
instructorUser: FluencyInstructor;
|
|
332
|
+
lastFluencyTrialTime?: Maybe<Scalars['DateTime']['output']>;
|
|
333
|
+
playerUser: FluencyPlayer;
|
|
334
|
+
playerUserId: Scalars['ID']['output'];
|
|
335
|
+
totalFactsCount: Scalars['Int']['output'];
|
|
336
|
+
totalFluencySessionsCount: Scalars['Int']['output'];
|
|
337
|
+
totalUsageTimeMs: Scalars['Int']['output'];
|
|
338
|
+
};
|
|
339
|
+
declare enum FluencyFocusInputType {
|
|
340
|
+
/** Addition and subtraction from 0 - 5 */
|
|
341
|
+
Add5 = "ADD5",
|
|
342
|
+
/** Addition and subtraction from 0 - 9 */
|
|
343
|
+
Add9 = "ADD9",
|
|
344
|
+
/** Addition and subtraction from 0 - 10 */
|
|
345
|
+
Add10 = "ADD10",
|
|
346
|
+
/** Multiplication and division from 0 - 9 */
|
|
347
|
+
Mul9 = "MUL9",
|
|
348
|
+
/** Multiplication and division from 0 - 10 */
|
|
349
|
+
Mul10 = "MUL10",
|
|
350
|
+
/** Multiplication and division from 0 - 10 */
|
|
351
|
+
Mul12 = "MUL12",
|
|
352
|
+
/** Unassign fluency */
|
|
353
|
+
None = "NONE"
|
|
354
|
+
}
|
|
355
|
+
type FluencyFocusList = {
|
|
356
|
+
__typename?: 'FluencyFocusList';
|
|
357
|
+
entries?: Maybe<Array<Maybe<FluencyFocus>>>;
|
|
358
|
+
pageNumber?: Maybe<Scalars['Int']['output']>;
|
|
359
|
+
pageSize?: Maybe<Scalars['Int']['output']>;
|
|
360
|
+
totalEntries?: Maybe<Scalars['Int']['output']>;
|
|
361
|
+
totalPages?: Maybe<Scalars['Int']['output']>;
|
|
362
|
+
};
|
|
363
|
+
declare enum FluencyFocusType {
|
|
364
|
+
/** Addition and subtraction from 0 - 5 */
|
|
365
|
+
Add5 = "ADD5",
|
|
366
|
+
/** Addition and subtraction from 0 - 9 */
|
|
367
|
+
Add9 = "ADD9",
|
|
368
|
+
/** Addition and subtraction from 0 - 10 */
|
|
369
|
+
Add10 = "ADD10",
|
|
370
|
+
/** Multiplication and division from 0 - 9 */
|
|
371
|
+
Mul9 = "MUL9",
|
|
372
|
+
/** Multiplication and division from 0 - 10 */
|
|
373
|
+
Mul10 = "MUL10",
|
|
374
|
+
/** Multiplication and division from 0 - 10 */
|
|
375
|
+
Mul12 = "MUL12"
|
|
376
|
+
}
|
|
377
|
+
type FluencyInstructor = {
|
|
378
|
+
__typename?: 'FluencyInstructor';
|
|
379
|
+
firstName?: Maybe<Scalars['String']['output']>;
|
|
380
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
381
|
+
lastName?: Maybe<Scalars['String']['output']>;
|
|
382
|
+
playerAvatar?: Maybe<PlayerAvatar>;
|
|
383
|
+
};
|
|
384
|
+
type FluencyPlayer = {
|
|
385
|
+
__typename?: 'FluencyPlayer';
|
|
386
|
+
currentSignInAt?: Maybe<Scalars['NaiveDateTime']['output']>;
|
|
387
|
+
fluencySessions?: Maybe<Array<Maybe<FluencySession>>>;
|
|
388
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
389
|
+
student?: Maybe<FluencyStudent>;
|
|
390
|
+
};
|
|
391
|
+
type FluencyPlayerFluencySessionsArgs = {
|
|
392
|
+
filter?: InputMaybe<FluencySessionFilter>;
|
|
393
|
+
};
|
|
394
|
+
type FluencySession = {
|
|
395
|
+
__typename?: 'FluencySession';
|
|
396
|
+
blueLightPercent: Scalars['Int']['output'];
|
|
397
|
+
id: Scalars['ID']['output'];
|
|
398
|
+
masteredTargetFactsCount: Scalars['Int']['output'];
|
|
399
|
+
startTime: Scalars['DateTime']['output'];
|
|
400
|
+
totalTargetFactsCount: Scalars['Int']['output'];
|
|
401
|
+
};
|
|
402
|
+
/** An activity for a fluency session */
|
|
403
|
+
type FluencySessionActivity = FluencySessionAssess | FluencySessionEstablish | FluencySessionPractice;
|
|
404
|
+
type FluencySessionAssess = {
|
|
405
|
+
__typename?: 'FluencySessionAssess';
|
|
406
|
+
facts?: Maybe<Array<FluencyFact>>;
|
|
407
|
+
};
|
|
408
|
+
type FluencySessionEstablish = {
|
|
409
|
+
__typename?: 'FluencySessionEstablish';
|
|
410
|
+
concept: FluencySessionInstructionConcept;
|
|
411
|
+
factFamilies?: Maybe<Array<Array<FluencyFact>>>;
|
|
412
|
+
facts?: Maybe<Array<FluencyFact>>;
|
|
413
|
+
targetFacts?: Maybe<Array<FluencyFact>>;
|
|
414
|
+
};
|
|
415
|
+
type FluencySessionFilter = {
|
|
416
|
+
startTimeAfter?: InputMaybe<Scalars['DateTime']['input']>;
|
|
417
|
+
};
|
|
418
|
+
declare enum FluencySessionInstructionConcept {
|
|
419
|
+
/** Fact family addition */
|
|
420
|
+
Addition = "ADDITION",
|
|
421
|
+
/** Add 10 */
|
|
422
|
+
AddTen = "ADD_TEN",
|
|
423
|
+
/** Add 0 */
|
|
424
|
+
AddZero = "ADD_ZERO",
|
|
425
|
+
/** Addition doubles. E.g. 2+2 and 3+3 */
|
|
426
|
+
Double = "DOUBLE",
|
|
427
|
+
/** Fact family multiplication */
|
|
428
|
+
Multiplication = "MULTIPLICATION",
|
|
429
|
+
/** No concept */
|
|
430
|
+
None = "NONE",
|
|
431
|
+
/** Squares. E.g. 2*2 and 3*3 */
|
|
432
|
+
Square = "SQUARE",
|
|
433
|
+
/** Multiplication by 11 */
|
|
434
|
+
TimesEleven = "TIMES_ELEVEN",
|
|
435
|
+
/** Multiplication by 10 */
|
|
436
|
+
TimesTen = "TIMES_TEN",
|
|
437
|
+
/** Multiplication by 2 */
|
|
438
|
+
TimesTwo = "TIMES_TWO",
|
|
439
|
+
/** Multiplication by 0 */
|
|
440
|
+
TimesZero = "TIMES_ZERO"
|
|
441
|
+
}
|
|
442
|
+
type FluencySessionPractice = {
|
|
443
|
+
__typename?: 'FluencySessionPractice';
|
|
444
|
+
facts?: Maybe<Array<FluencyFact>>;
|
|
445
|
+
targetFacts?: Maybe<Array<FluencyFact>>;
|
|
446
|
+
};
|
|
447
|
+
declare enum FluencySessionStageType {
|
|
448
|
+
/** Initial assessment for the fluency session */
|
|
449
|
+
Assess = "ASSESS",
|
|
450
|
+
/** Establishment of the target facts */
|
|
451
|
+
Establish = "ESTABLISH",
|
|
452
|
+
/** Practice game play */
|
|
453
|
+
Practice = "PRACTICE"
|
|
454
|
+
}
|
|
455
|
+
type FluencyStudent = {
|
|
456
|
+
__typename?: 'FluencyStudent';
|
|
457
|
+
firstName?: Maybe<Scalars['String']['output']>;
|
|
458
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
459
|
+
lastInitial?: Maybe<Scalars['String']['output']>;
|
|
460
|
+
lastName?: Maybe<Scalars['String']['output']>;
|
|
461
|
+
username?: Maybe<Scalars['String']['output']>;
|
|
462
|
+
};
|
|
463
|
+
type FluencyTrialInput = {
|
|
464
|
+
a: Scalars['Int']['input'];
|
|
465
|
+
answer?: InputMaybe<Scalars['Int']['input']>;
|
|
466
|
+
b: Scalars['Int']['input'];
|
|
467
|
+
inputLatencyMs: Scalars['Int']['input'];
|
|
468
|
+
latencyMs: Scalars['Int']['input'];
|
|
469
|
+
op: FluencyFactOperation;
|
|
470
|
+
startTime: Scalars['DateTime']['input'];
|
|
471
|
+
};
|
|
472
|
+
type FocusPath = {
|
|
473
|
+
__typename?: 'FocusPath';
|
|
474
|
+
currentTopicIndex?: Maybe<Scalars['Int']['output']>;
|
|
475
|
+
domain?: Maybe<Domain>;
|
|
476
|
+
topics?: Maybe<TopicList>;
|
|
477
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
478
|
+
};
|
|
479
|
+
type Game = {
|
|
480
|
+
__typename?: 'Game';
|
|
481
|
+
contentType?: Maybe<Scalars['String']['output']>;
|
|
482
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
483
|
+
estimatedDuration?: Maybe<Scalars['Int']['output']>;
|
|
484
|
+
game?: Maybe<Scalars['String']['output']>;
|
|
485
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
486
|
+
image?: Maybe<Scalars['String']['output']>;
|
|
487
|
+
instructions?: Maybe<Scalars['String']['output']>;
|
|
488
|
+
learningObjectiveId?: Maybe<Scalars['ID']['output']>;
|
|
489
|
+
lexileLevel?: Maybe<Scalars['Int']['output']>;
|
|
490
|
+
multiLanguage?: Maybe<Scalars['Boolean']['output']>;
|
|
491
|
+
pdfUrl?: Maybe<Scalars['String']['output']>;
|
|
492
|
+
questionGame?: Maybe<Scalars['Boolean']['output']>;
|
|
493
|
+
savesProgress?: Maybe<Scalars['Boolean']['output']>;
|
|
494
|
+
shortName?: Maybe<Scalars['String']['output']>;
|
|
495
|
+
/** Presigned URL for VTT subtitle file, if available */
|
|
496
|
+
subtitleUrl?: Maybe<Scalars['String']['output']>;
|
|
497
|
+
supportsIpad?: Maybe<Scalars['Boolean']['output']>;
|
|
498
|
+
supportsTts?: Maybe<Scalars['Boolean']['output']>;
|
|
499
|
+
teacherFacingPdfUrl?: Maybe<Scalars['String']['output']>;
|
|
500
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
501
|
+
videoPreviewUrl?: Maybe<Scalars['String']['output']>;
|
|
502
|
+
vocabulary?: Maybe<Scalars['String']['output']>;
|
|
503
|
+
};
|
|
504
|
+
type GameAlignment = {
|
|
505
|
+
__typename?: 'GameAlignment';
|
|
506
|
+
game?: Maybe<Game>;
|
|
507
|
+
gameId?: Maybe<Scalars['ID']['output']>;
|
|
508
|
+
learningObjective?: Maybe<LearningObjective>;
|
|
509
|
+
learningObjectiveId?: Maybe<Scalars['ID']['output']>;
|
|
510
|
+
};
|
|
511
|
+
type GameLanguage = {
|
|
512
|
+
__typename?: 'GameLanguage';
|
|
513
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
514
|
+
languageCode?: Maybe<Scalars['String']['output']>;
|
|
515
|
+
phrases?: Maybe<Array<Maybe<KeyValue>>>;
|
|
516
|
+
};
|
|
517
|
+
type GamePerformanceBucket = {
|
|
518
|
+
__typename?: 'GamePerformanceBucket';
|
|
519
|
+
cpuBucket?: Maybe<Scalars['Int']['output']>;
|
|
520
|
+
expectedLoadTimeSec?: Maybe<Scalars['Int']['output']>;
|
|
521
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
522
|
+
};
|
|
523
|
+
type GameVersion = {
|
|
524
|
+
__typename?: 'GameVersion';
|
|
525
|
+
acceptedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
526
|
+
apiVersion?: Maybe<Scalars['String']['output']>;
|
|
527
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
528
|
+
gameId?: Maybe<Scalars['ID']['output']>;
|
|
529
|
+
gameType?: Maybe<Scalars['String']['output']>;
|
|
530
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
531
|
+
languageKey?: Maybe<Scalars['String']['output']>;
|
|
532
|
+
releaseNotes?: Maybe<Scalars['String']['output']>;
|
|
533
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
534
|
+
};
|
|
535
|
+
type GameframeAttrs = {
|
|
536
|
+
__typename?: 'GameframeAttrs';
|
|
537
|
+
gameLanguage?: Maybe<GameLanguage>;
|
|
538
|
+
gamePerformance?: Maybe<Array<Maybe<GamePerformanceBucket>>>;
|
|
539
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
540
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
541
|
+
};
|
|
542
|
+
type Globals = {
|
|
543
|
+
__typename?: 'Globals';
|
|
544
|
+
progression?: Maybe<GlobalsProgression>;
|
|
545
|
+
};
|
|
546
|
+
type GlobalsMastery = {
|
|
547
|
+
__typename?: 'GlobalsMastery';
|
|
548
|
+
minimumMasteryScore?: Maybe<Scalars['Int']['output']>;
|
|
549
|
+
minimumQuestionsAnswered?: Maybe<Scalars['Int']['output']>;
|
|
550
|
+
};
|
|
551
|
+
type GlobalsProgression = {
|
|
552
|
+
__typename?: 'GlobalsProgression';
|
|
553
|
+
defaultNumberOfReviewQuestions?: Maybe<Scalars['Int']['output']>;
|
|
554
|
+
mastery?: Maybe<GlobalsMastery>;
|
|
555
|
+
};
|
|
556
|
+
type Group = {
|
|
557
|
+
__typename?: 'Group';
|
|
558
|
+
assignments?: Maybe<Array<Assignment>>;
|
|
559
|
+
color?: Maybe<Scalars['String']['output']>;
|
|
560
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
561
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
562
|
+
};
|
|
563
|
+
type GroupList = {
|
|
564
|
+
__typename?: 'GroupList';
|
|
565
|
+
entries?: Maybe<Array<Maybe<Group>>>;
|
|
566
|
+
pageNumber?: Maybe<Scalars['Int']['output']>;
|
|
567
|
+
pageSize?: Maybe<Scalars['Int']['output']>;
|
|
568
|
+
totalEntries?: Maybe<Scalars['Int']['output']>;
|
|
569
|
+
totalPages?: Maybe<Scalars['Int']['output']>;
|
|
570
|
+
};
|
|
571
|
+
type InviteParentToConnectMutationResult = {
|
|
572
|
+
__typename?: 'InviteParentToConnectMutationResult';
|
|
573
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
574
|
+
};
|
|
575
|
+
type KeyValue = {
|
|
576
|
+
__typename?: 'KeyValue';
|
|
577
|
+
k?: Maybe<Scalars['String']['output']>;
|
|
578
|
+
v?: Maybe<Scalars['String']['output']>;
|
|
579
|
+
};
|
|
580
|
+
type KeyValueBool = {
|
|
581
|
+
__typename?: 'KeyValueBool';
|
|
582
|
+
k?: Maybe<Scalars['String']['output']>;
|
|
583
|
+
v?: Maybe<Scalars['Boolean']['output']>;
|
|
584
|
+
};
|
|
585
|
+
type KeyValueInput = {
|
|
586
|
+
k?: InputMaybe<Scalars['String']['input']>;
|
|
587
|
+
v?: InputMaybe<Scalars['String']['input']>;
|
|
588
|
+
};
|
|
589
|
+
type LearningObjective = {
|
|
590
|
+
__typename?: 'LearningObjective';
|
|
591
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
592
|
+
domains?: Maybe<Array<Maybe<Domain>>>;
|
|
593
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
594
|
+
imageKey?: Maybe<Scalars['String']['output']>;
|
|
595
|
+
learningObjective?: Maybe<Scalars['String']['output']>;
|
|
596
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
597
|
+
ngssDciName?: Maybe<Scalars['String']['output']>;
|
|
598
|
+
standardCode?: Maybe<Scalars['String']['output']>;
|
|
599
|
+
subject?: Maybe<Subject>;
|
|
600
|
+
};
|
|
601
|
+
type ModeParams = {
|
|
602
|
+
mathBasecamp?: InputMaybe<Scalars['Boolean']['input']>;
|
|
603
|
+
subjectArea?: InputMaybe<Scalars['String']['input']>;
|
|
604
|
+
teacherUserId?: InputMaybe<Scalars['ID']['input']>;
|
|
605
|
+
};
|
|
606
|
+
declare enum PlayStepType {
|
|
607
|
+
Assessment = "ASSESSMENT",
|
|
608
|
+
AwakeningActivity = "AWAKENING_ACTIVITY",
|
|
609
|
+
Exit = "EXIT",
|
|
610
|
+
HandsOn = "HANDS_ON",
|
|
611
|
+
MiniGame = "MINI_GAME",
|
|
612
|
+
Rewards = "REWARDS",
|
|
613
|
+
Video = "VIDEO",
|
|
614
|
+
VideoLesson = "VIDEO_LESSON"
|
|
615
|
+
}
|
|
616
|
+
type PlayerActivity = {
|
|
617
|
+
__typename?: 'PlayerActivity';
|
|
618
|
+
completedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
619
|
+
gameplay?: Maybe<PlayerActivityGameplay>;
|
|
620
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
621
|
+
isComplete?: Maybe<Scalars['Boolean']['output']>;
|
|
622
|
+
totalPlaytimeSec?: Maybe<Scalars['Int']['output']>;
|
|
623
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
624
|
+
};
|
|
625
|
+
type PlayerActivityAnswer = {
|
|
626
|
+
__typename?: 'PlayerActivityAnswer';
|
|
627
|
+
answerId?: Maybe<Scalars['ID']['output']>;
|
|
628
|
+
answersMap?: Maybe<Array<Maybe<KeyValue>>>;
|
|
629
|
+
answersMapGraded?: Maybe<Array<Maybe<KeyValueBool>>>;
|
|
630
|
+
assignmentActivityQuestionId?: Maybe<Scalars['ID']['output']>;
|
|
631
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
632
|
+
isCorrect?: Maybe<Scalars['Boolean']['output']>;
|
|
633
|
+
question?: Maybe<Question>;
|
|
634
|
+
questionId?: Maybe<Scalars['ID']['output']>;
|
|
635
|
+
questionScoreCard?: Maybe<Array<Maybe<KeyValue>>>;
|
|
636
|
+
};
|
|
637
|
+
type PlayerActivityGameplay = {
|
|
638
|
+
__typename?: 'PlayerActivityGameplay';
|
|
639
|
+
completedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
640
|
+
gameRating?: Maybe<Scalars['Int']['output']>;
|
|
641
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
642
|
+
maxProgress?: Maybe<Scalars['Int']['output']>;
|
|
643
|
+
progress?: Maybe<Scalars['Int']['output']>;
|
|
644
|
+
progressedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
645
|
+
score?: Maybe<Scalars['Int']['output']>;
|
|
646
|
+
startedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
647
|
+
videoCurrentTimeSec?: Maybe<Scalars['Int']['output']>;
|
|
648
|
+
videoFarthestTimeSec?: Maybe<Scalars['Int']['output']>;
|
|
649
|
+
};
|
|
650
|
+
type PlayerAssignment = {
|
|
651
|
+
__typename?: 'PlayerAssignment';
|
|
652
|
+
endTime?: Maybe<Scalars['DateTime']['output']>;
|
|
653
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
654
|
+
isComplete?: Maybe<Scalars['Boolean']['output']>;
|
|
655
|
+
playerActivities?: Maybe<Array<PlayerActivity>>;
|
|
656
|
+
};
|
|
657
|
+
type PlayerAvatar = {
|
|
658
|
+
__typename?: 'PlayerAvatar';
|
|
659
|
+
headshotImageUrl?: Maybe<Scalars['String']['output']>;
|
|
660
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
661
|
+
version?: Maybe<Scalars['String']['output']>;
|
|
662
|
+
};
|
|
663
|
+
type PlayerGroupsFilter = {
|
|
664
|
+
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
665
|
+
};
|
|
666
|
+
type Progression = {
|
|
667
|
+
__typename?: 'Progression';
|
|
668
|
+
currentPath?: Maybe<FocusPath>;
|
|
669
|
+
currentTopic?: Maybe<Topic>;
|
|
670
|
+
domainMastery?: Maybe<Array<Maybe<Domain>>>;
|
|
671
|
+
};
|
|
672
|
+
type ProgressionDomainMasteryArgs = {
|
|
673
|
+
domainId?: InputMaybe<Scalars['ID']['input']>;
|
|
674
|
+
};
|
|
675
|
+
type Question = {
|
|
676
|
+
__typename?: 'Question';
|
|
677
|
+
answers?: Maybe<Array<Maybe<Answer>>>;
|
|
678
|
+
correctAnswerId?: Maybe<Scalars['ID']['output']>;
|
|
679
|
+
depthOfKnowledge?: Maybe<Scalars['Int']['output']>;
|
|
680
|
+
explanation?: Maybe<QuestionExplanation>;
|
|
681
|
+
format?: Maybe<Scalars['String']['output']>;
|
|
682
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
683
|
+
imageKey?: Maybe<Scalars['String']['output']>;
|
|
684
|
+
layout?: Maybe<Scalars['String']['output']>;
|
|
685
|
+
question?: Maybe<Scalars['String']['output']>;
|
|
686
|
+
scoreCard?: Maybe<Array<Maybe<KeyValue>>>;
|
|
687
|
+
subjectArea?: Maybe<Scalars['String']['output']>;
|
|
688
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
689
|
+
};
|
|
690
|
+
type QuestionExplanation = {
|
|
691
|
+
__typename?: 'QuestionExplanation';
|
|
692
|
+
explanation?: Maybe<Scalars['String']['output']>;
|
|
693
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
694
|
+
questionId?: Maybe<Scalars['ID']['output']>;
|
|
695
|
+
};
|
|
696
|
+
type RootMutationType = {
|
|
697
|
+
__typename?: 'RootMutationType';
|
|
698
|
+
/** Initiates the playtime for a given player activity */
|
|
699
|
+
activateActivity?: Maybe<Scalars['Boolean']['output']>;
|
|
700
|
+
answerQuestion?: Maybe<AnswerQuestionResponse>;
|
|
701
|
+
/** Push prerequisites onto the focus task stack for the current focus */
|
|
702
|
+
applyPrerequisites?: Maybe<User>;
|
|
703
|
+
/** Update the current user's domain to a new random domain or the specified one */
|
|
704
|
+
changeDomain?: Maybe<User>;
|
|
705
|
+
collectRewards?: Maybe<AssignmentPlay>;
|
|
706
|
+
completeActivity?: Maybe<AssignmentPlay>;
|
|
707
|
+
/** Completes an assessment activity, this will likely be at the review questions screen */
|
|
708
|
+
completeAssessment?: Maybe<AssignmentPlay>;
|
|
709
|
+
/** Complete the gameplay for a given mini game, this is not the same as completing the activity. */
|
|
710
|
+
completeMiniGamePlay?: Maybe<AssignmentPlay>;
|
|
711
|
+
/** Create assignment */
|
|
712
|
+
createAssignment?: Maybe<AssignmentV2>;
|
|
713
|
+
/** Generates an access token for Awakening native mobile client deep link to share a session */
|
|
714
|
+
createAwakeningDeepLinkToken?: Maybe<Scalars['String']['output']>;
|
|
715
|
+
/** Creates a player activity for an awakening activity step in basic mode. Returns the player_activity_id. This is isolated from existing tracking code and only used by the basic game player. */
|
|
716
|
+
createAwakeningPlayerActivity?: Maybe<Scalars['ID']['output']>;
|
|
717
|
+
/** Send email invitation to parent for a given player */
|
|
718
|
+
inviteParentToConnect?: Maybe<InviteParentToConnectMutationResult>;
|
|
719
|
+
joinTeacher?: Maybe<Teacher>;
|
|
720
|
+
leaveTeacher?: Maybe<Teacher>;
|
|
721
|
+
putFluencyTrials?: Maybe<FluencySession>;
|
|
722
|
+
/** Rate a mini game and complete the activity */
|
|
723
|
+
rateMiniGame?: Maybe<AssignmentPlay>;
|
|
724
|
+
/** Activates a play client on page load. This is used to initiate the client runtime to support heartbeats. */
|
|
725
|
+
registerClient?: Maybe<Scalars['String']['output']>;
|
|
726
|
+
reportHandsOnProgress?: Maybe<AssignmentPlay>;
|
|
727
|
+
reportMiniGameProgress?: Maybe<AssignmentPlay>;
|
|
728
|
+
reportVideoLessonProgress?: Maybe<AssignmentPlay>;
|
|
729
|
+
restartFluencySession?: Maybe<FluencySession>;
|
|
730
|
+
saveMiniGameState?: Maybe<AssignmentPlay>;
|
|
731
|
+
/** Heartbeats sent from the client to track user playtime and focus. */
|
|
732
|
+
sendHeartbeat?: Maybe<Scalars['Boolean']['output']>;
|
|
733
|
+
/** Sets mode of play, enabling learning objective progression */
|
|
734
|
+
setMode?: Maybe<Scalars['Boolean']['output']>;
|
|
735
|
+
updateSelfFluencyFocus?: Maybe<Array<FluencyFocus>>;
|
|
736
|
+
};
|
|
737
|
+
type RootMutationTypeActivateActivityArgs = {
|
|
738
|
+
crt?: InputMaybe<CrtInput>;
|
|
739
|
+
playerActivityId: Scalars['ID']['input'];
|
|
740
|
+
rte?: InputMaybe<RuntimeEventInput>;
|
|
741
|
+
ui?: InputMaybe<UiInput>;
|
|
742
|
+
};
|
|
743
|
+
type RootMutationTypeAnswerQuestionArgs = {
|
|
744
|
+
activityQuestionId: Scalars['ID']['input'];
|
|
745
|
+
answerId?: InputMaybe<Scalars['ID']['input']>;
|
|
746
|
+
answersMap?: InputMaybe<Array<InputMaybe<KeyValueInput>>>;
|
|
747
|
+
playerActivityId: Scalars['ID']['input'];
|
|
748
|
+
};
|
|
749
|
+
type RootMutationTypeApplyPrerequisitesArgs = {
|
|
750
|
+
loIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
751
|
+
};
|
|
752
|
+
type RootMutationTypeChangeDomainArgs = {
|
|
753
|
+
domainId?: InputMaybe<Scalars['ID']['input']>;
|
|
754
|
+
};
|
|
755
|
+
type RootMutationTypeCollectRewardsArgs = {
|
|
756
|
+
rewardId: Scalars['ID']['input'];
|
|
757
|
+
};
|
|
758
|
+
type RootMutationTypeCompleteActivityArgs = {
|
|
759
|
+
playerActivityId: Scalars['ID']['input'];
|
|
760
|
+
skip?: InputMaybe<Scalars['Boolean']['input']>;
|
|
761
|
+
};
|
|
762
|
+
type RootMutationTypeCompleteAssessmentArgs = {
|
|
763
|
+
playerActivityId: Scalars['ID']['input'];
|
|
764
|
+
};
|
|
765
|
+
type RootMutationTypeCompleteMiniGamePlayArgs = {
|
|
766
|
+
playerActivityId: Scalars['ID']['input'];
|
|
767
|
+
};
|
|
768
|
+
type RootMutationTypeCreateAssignmentArgs = {
|
|
769
|
+
activities: Array<InputMaybe<ActivityInputV2>>;
|
|
770
|
+
autoStart?: InputMaybe<Scalars['Boolean']['input']>;
|
|
771
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
772
|
+
durationDays?: InputMaybe<Scalars['Int']['input']>;
|
|
773
|
+
endTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
774
|
+
initialLearningObjectiveId?: InputMaybe<Scalars['ID']['input']>;
|
|
775
|
+
mode: Scalars['String']['input'];
|
|
776
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
777
|
+
startTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
778
|
+
};
|
|
779
|
+
type RootMutationTypeCreateAwakeningPlayerActivityArgs = {
|
|
780
|
+
stepId: Scalars['ID']['input'];
|
|
781
|
+
};
|
|
782
|
+
type RootMutationTypeInviteParentToConnectArgs = {
|
|
783
|
+
email: Scalars['String']['input'];
|
|
784
|
+
};
|
|
785
|
+
type RootMutationTypeJoinTeacherArgs = {
|
|
786
|
+
teacherCode: Scalars['String']['input'];
|
|
787
|
+
};
|
|
788
|
+
type RootMutationTypeLeaveTeacherArgs = {
|
|
789
|
+
teacherCode: Scalars['String']['input'];
|
|
790
|
+
};
|
|
791
|
+
type RootMutationTypePutFluencyTrialsArgs = {
|
|
792
|
+
instructorUserId: Scalars['ID']['input'];
|
|
793
|
+
stage: FluencySessionStageType;
|
|
794
|
+
trials?: InputMaybe<Array<FluencyTrialInput>>;
|
|
795
|
+
};
|
|
796
|
+
type RootMutationTypeRateMiniGameArgs = {
|
|
797
|
+
playerActivityId: Scalars['ID']['input'];
|
|
798
|
+
rating?: InputMaybe<Scalars['Int']['input']>;
|
|
799
|
+
};
|
|
800
|
+
type RootMutationTypeRegisterClientArgs = {
|
|
801
|
+
assignmentId?: InputMaybe<Scalars['ID']['input']>;
|
|
802
|
+
awkClientSetsMode?: InputMaybe<Scalars['Boolean']['input']>;
|
|
803
|
+
};
|
|
804
|
+
type RootMutationTypeReportHandsOnProgressArgs = {
|
|
805
|
+
maxProgress: Scalars['Int']['input'];
|
|
806
|
+
playerActivityId: Scalars['ID']['input'];
|
|
807
|
+
progress: Scalars['Int']['input'];
|
|
808
|
+
score?: InputMaybe<Scalars['Int']['input']>;
|
|
809
|
+
};
|
|
810
|
+
type RootMutationTypeReportMiniGameProgressArgs = {
|
|
811
|
+
maxProgress: Scalars['Int']['input'];
|
|
812
|
+
playerActivityId: Scalars['ID']['input'];
|
|
813
|
+
progress: Scalars['Int']['input'];
|
|
814
|
+
score?: InputMaybe<Scalars['Int']['input']>;
|
|
815
|
+
};
|
|
816
|
+
type RootMutationTypeReportVideoLessonProgressArgs = {
|
|
817
|
+
durationSec: Scalars['Int']['input'];
|
|
818
|
+
playerActivityId: Scalars['ID']['input'];
|
|
819
|
+
videoCurrentTimeSec: Scalars['Int']['input'];
|
|
820
|
+
};
|
|
821
|
+
type RootMutationTypeRestartFluencySessionArgs = {
|
|
822
|
+
instructorUserId: Scalars['ID']['input'];
|
|
823
|
+
};
|
|
824
|
+
type RootMutationTypeSaveMiniGameStateArgs = {
|
|
825
|
+
playerActivityId: Scalars['ID']['input'];
|
|
826
|
+
state: Scalars['Json']['input'];
|
|
827
|
+
};
|
|
828
|
+
type RootMutationTypeSendHeartbeatArgs = {
|
|
829
|
+
crt?: InputMaybe<CrtInput>;
|
|
830
|
+
playerActivityId: Scalars['ID']['input'];
|
|
831
|
+
rte?: InputMaybe<RuntimeEventInput>;
|
|
832
|
+
ui?: InputMaybe<UiInput>;
|
|
833
|
+
};
|
|
834
|
+
type RootMutationTypeSetModeArgs = {
|
|
835
|
+
params?: InputMaybe<ModeParams>;
|
|
836
|
+
};
|
|
837
|
+
type RootMutationTypeUpdateSelfFluencyFocusArgs = {
|
|
838
|
+
focus: FluencyFocusInputType;
|
|
839
|
+
};
|
|
840
|
+
type RootQueryType = {
|
|
841
|
+
__typename?: 'RootQueryType';
|
|
842
|
+
activityAnswers?: Maybe<Array<Maybe<PlayerActivityAnswer>>>;
|
|
843
|
+
assignmentPlay?: Maybe<AssignmentPlay>;
|
|
844
|
+
currentUser?: Maybe<User>;
|
|
845
|
+
fluencyFactProgressStatuses?: Maybe<Array<Maybe<FluencyFactProgressStatus>>>;
|
|
846
|
+
fluencySession?: Maybe<FluencySession>;
|
|
847
|
+
fluencySessionActivity: FluencySessionActivity;
|
|
848
|
+
globals?: Maybe<Globals>;
|
|
849
|
+
listFluencyFocuses?: Maybe<FluencyFocusList>;
|
|
850
|
+
listFocusAreas?: Maybe<TeacherFocusAreasList>;
|
|
851
|
+
listGroups?: Maybe<GroupList>;
|
|
852
|
+
listTeachers?: Maybe<TeacherList>;
|
|
853
|
+
myFeatureFlagVariants?: Maybe<Array<Maybe<FeatureFlagVariant>>>;
|
|
854
|
+
myFeatureFlags?: Maybe<Array<Scalars['String']['output']>>;
|
|
855
|
+
};
|
|
856
|
+
type RootQueryTypeActivityAnswersArgs = {
|
|
857
|
+
playerActivityId: Scalars['ID']['input'];
|
|
858
|
+
};
|
|
859
|
+
type RootQueryTypeAssignmentPlayArgs = {
|
|
860
|
+
assignmentId: Scalars['ID']['input'];
|
|
861
|
+
awakening?: InputMaybe<Scalars['Boolean']['input']>;
|
|
862
|
+
};
|
|
863
|
+
type RootQueryTypeFluencyFactProgressStatusesArgs = {
|
|
864
|
+
fluencyFocus?: InputMaybe<FluencyFocusType>;
|
|
865
|
+
startTimeAfter?: InputMaybe<Scalars['DateTime']['input']>;
|
|
866
|
+
startTimeBefore?: InputMaybe<Scalars['DateTime']['input']>;
|
|
867
|
+
};
|
|
868
|
+
type RootQueryTypeFluencySessionArgs = {
|
|
869
|
+
instructorUserId: Scalars['ID']['input'];
|
|
870
|
+
};
|
|
871
|
+
type RootQueryTypeFluencySessionActivityArgs = {
|
|
872
|
+
instructorUserId: Scalars['ID']['input'];
|
|
873
|
+
};
|
|
874
|
+
type RootQueryTypeListFluencyFocusesArgs = {
|
|
875
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
876
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
877
|
+
};
|
|
878
|
+
type RootQueryTypeListFocusAreasArgs = {
|
|
879
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
880
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
881
|
+
teacherIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
882
|
+
teacherUserIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
883
|
+
};
|
|
884
|
+
type RootQueryTypeListGroupsArgs = {
|
|
885
|
+
filter?: InputMaybe<PlayerGroupsFilter>;
|
|
886
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
887
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
888
|
+
};
|
|
889
|
+
type RootQueryTypeListTeachersArgs = {
|
|
890
|
+
filterTeacherIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
891
|
+
includeSelf?: InputMaybe<Scalars['Boolean']['input']>;
|
|
892
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
893
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
894
|
+
};
|
|
895
|
+
type RootSubscriptionType = {
|
|
896
|
+
__typename?: 'RootSubscriptionType';
|
|
897
|
+
activitySkipped?: Maybe<Scalars['Boolean']['output']>;
|
|
898
|
+
assignmentPaused?: Maybe<Scalars['Boolean']['output']>;
|
|
899
|
+
assignmentRestarted?: Maybe<Scalars['Boolean']['output']>;
|
|
900
|
+
assignmentResumed?: Maybe<Scalars['Boolean']['output']>;
|
|
901
|
+
assignmentStopped?: Maybe<Scalars['Boolean']['output']>;
|
|
902
|
+
};
|
|
903
|
+
type RootSubscriptionTypeActivitySkippedArgs = {
|
|
904
|
+
assignmentId: Scalars['ID']['input'];
|
|
905
|
+
};
|
|
906
|
+
type RootSubscriptionTypeAssignmentPausedArgs = {
|
|
907
|
+
assignmentId: Scalars['ID']['input'];
|
|
908
|
+
};
|
|
909
|
+
type RootSubscriptionTypeAssignmentRestartedArgs = {
|
|
910
|
+
assignmentId: Scalars['ID']['input'];
|
|
911
|
+
};
|
|
912
|
+
type RootSubscriptionTypeAssignmentResumedArgs = {
|
|
913
|
+
assignmentId: Scalars['ID']['input'];
|
|
914
|
+
};
|
|
915
|
+
type RootSubscriptionTypeAssignmentStoppedArgs = {
|
|
916
|
+
assignmentId: Scalars['ID']['input'];
|
|
917
|
+
};
|
|
918
|
+
/** Runtime event from the client side, generally game load/failed event */
|
|
919
|
+
type RuntimeEventInput = {
|
|
920
|
+
browser?: InputMaybe<Scalars['String']['input']>;
|
|
921
|
+
browserVersion?: InputMaybe<Scalars['String']['input']>;
|
|
922
|
+
cpuMeasure?: InputMaybe<Scalars['Int']['input']>;
|
|
923
|
+
device?: InputMaybe<Scalars['String']['input']>;
|
|
924
|
+
errorCount?: InputMaybe<Scalars['Int']['input']>;
|
|
925
|
+
errorMessage?: InputMaybe<Scalars['String']['input']>;
|
|
926
|
+
eventType?: InputMaybe<Scalars['String']['input']>;
|
|
927
|
+
};
|
|
928
|
+
type Subject = {
|
|
929
|
+
__typename?: 'Subject';
|
|
930
|
+
gradeLevel?: Maybe<Scalars['String']['output']>;
|
|
931
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
932
|
+
imageKey?: Maybe<Scalars['String']['output']>;
|
|
933
|
+
imageUrl?: Maybe<Scalars['String']['output']>;
|
|
934
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
935
|
+
standard?: Maybe<Scalars['String']['output']>;
|
|
936
|
+
subject?: Maybe<Scalars['String']['output']>;
|
|
937
|
+
subjectArea?: Maybe<Scalars['String']['output']>;
|
|
938
|
+
};
|
|
939
|
+
type Teacher = {
|
|
940
|
+
__typename?: 'Teacher';
|
|
941
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
942
|
+
familyName?: Maybe<Scalars['String']['output']>;
|
|
943
|
+
givenName?: Maybe<Scalars['String']['output']>;
|
|
944
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
945
|
+
schoolId?: Maybe<Scalars['ID']['output']>;
|
|
946
|
+
user?: Maybe<TeacherUser>;
|
|
947
|
+
};
|
|
948
|
+
type TeacherFocusArea = {
|
|
949
|
+
__typename?: 'TeacherFocusArea';
|
|
950
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
951
|
+
insertedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
952
|
+
learningObjective?: Maybe<LearningObjective>;
|
|
953
|
+
learningObjectiveId?: Maybe<Scalars['ID']['output']>;
|
|
954
|
+
order?: Maybe<Scalars['Int']['output']>;
|
|
955
|
+
teacherUserId?: Maybe<Scalars['ID']['output']>;
|
|
956
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
957
|
+
};
|
|
958
|
+
type TeacherFocusAreasList = {
|
|
959
|
+
__typename?: 'TeacherFocusAreasList';
|
|
960
|
+
entries?: Maybe<Array<Maybe<TeacherFocusArea>>>;
|
|
961
|
+
pageNumber?: Maybe<Scalars['Int']['output']>;
|
|
962
|
+
pageSize?: Maybe<Scalars['Int']['output']>;
|
|
963
|
+
totalEntries?: Maybe<Scalars['Int']['output']>;
|
|
964
|
+
totalPages?: Maybe<Scalars['Int']['output']>;
|
|
965
|
+
};
|
|
966
|
+
type TeacherList = {
|
|
967
|
+
__typename?: 'TeacherList';
|
|
968
|
+
entries?: Maybe<Array<Maybe<Teacher>>>;
|
|
969
|
+
pageNumber?: Maybe<Scalars['Int']['output']>;
|
|
970
|
+
pageSize?: Maybe<Scalars['Int']['output']>;
|
|
971
|
+
totalEntries?: Maybe<Scalars['Int']['output']>;
|
|
972
|
+
totalPages?: Maybe<Scalars['Int']['output']>;
|
|
973
|
+
};
|
|
974
|
+
type TeacherUser = {
|
|
975
|
+
__typename?: 'TeacherUser';
|
|
976
|
+
createdAssignments?: Maybe<Array<Assignment>>;
|
|
977
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
978
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
979
|
+
joinableCount?: Maybe<Scalars['Int']['output']>;
|
|
980
|
+
playerAvatar?: Maybe<PlayerAvatar>;
|
|
981
|
+
};
|
|
982
|
+
type Topic = {
|
|
983
|
+
__typename?: 'Topic';
|
|
984
|
+
firstMasteredAt?: Maybe<Scalars['DateTime']['output']>;
|
|
985
|
+
gradeLevel?: Maybe<Scalars['Int']['output']>;
|
|
986
|
+
hasUnmasteredPrerequisites?: Maybe<Scalars['Boolean']['output']>;
|
|
987
|
+
learningObjective?: Maybe<LearningObjective>;
|
|
988
|
+
masteryScore?: Maybe<Scalars['Int']['output']>;
|
|
989
|
+
order?: Maybe<Scalars['Float']['output']>;
|
|
990
|
+
questionsAnswered?: Maybe<Scalars['Int']['output']>;
|
|
991
|
+
remainingQuestions?: Maybe<Scalars['Int']['output']>;
|
|
992
|
+
stars?: Maybe<Scalars['Int']['output']>;
|
|
993
|
+
unmasteredPrerequisites?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
994
|
+
};
|
|
995
|
+
type TopicList = {
|
|
996
|
+
__typename?: 'TopicList';
|
|
997
|
+
entries?: Maybe<Array<Maybe<Topic>>>;
|
|
998
|
+
pageNumber?: Maybe<Scalars['Int']['output']>;
|
|
999
|
+
pageSize?: Maybe<Scalars['Int']['output']>;
|
|
1000
|
+
totalEntries?: Maybe<Scalars['Int']['output']>;
|
|
1001
|
+
totalPages?: Maybe<Scalars['Int']['output']>;
|
|
1002
|
+
};
|
|
1003
|
+
/** User interaction input object */
|
|
1004
|
+
type UiInput = {
|
|
1005
|
+
/** Focused at */
|
|
1006
|
+
fa?: InputMaybe<Scalars['Int']['input']>;
|
|
1007
|
+
/** Unfocused at */
|
|
1008
|
+
ufa?: InputMaybe<Scalars['Int']['input']>;
|
|
1009
|
+
/** Unfocused time in ms */
|
|
1010
|
+
uft?: InputMaybe<Scalars['Int']['input']>;
|
|
1011
|
+
};
|
|
1012
|
+
type User = {
|
|
1013
|
+
__typename?: 'User';
|
|
1014
|
+
firstName?: Maybe<Scalars['String']['output']>;
|
|
1015
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
1016
|
+
isAfterSchool?: Maybe<Scalars['Boolean']['output']>;
|
|
1017
|
+
lastInitial?: Maybe<Scalars['String']['output']>;
|
|
1018
|
+
/** Learning progression */
|
|
1019
|
+
progression?: Maybe<Progression>;
|
|
1020
|
+
studentId?: Maybe<Scalars['ID']['output']>;
|
|
1021
|
+
username?: Maybe<Scalars['String']['output']>;
|
|
1022
|
+
};
|
|
1023
|
+
type Video = {
|
|
1024
|
+
__typename?: 'Video';
|
|
1025
|
+
duration?: Maybe<Scalars['Int']['output']>;
|
|
1026
|
+
endsAt?: Maybe<Scalars['Int']['output']>;
|
|
1027
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
1028
|
+
playDuration?: Maybe<Scalars['Int']['output']>;
|
|
1029
|
+
startsAt?: Maybe<Scalars['Int']['output']>;
|
|
1030
|
+
thumbnailUrl?: Maybe<Scalars['String']['output']>;
|
|
1031
|
+
title: Scalars['String']['output'];
|
|
1032
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
1033
|
+
url: Scalars['String']['output'];
|
|
1034
|
+
};
|
|
1035
|
+
type AssignmentPlayFragmentFragment = {
|
|
1036
|
+
__typename?: 'AssignmentPlay';
|
|
1037
|
+
id?: string | null;
|
|
1038
|
+
name?: string | null;
|
|
1039
|
+
paused: boolean;
|
|
1040
|
+
stopped: boolean;
|
|
1041
|
+
completed: boolean;
|
|
1042
|
+
assignmentMode?: string | null;
|
|
1043
|
+
steps?: Array<{
|
|
1044
|
+
__typename?: 'AssignmentPlayStep';
|
|
1045
|
+
id?: string | null;
|
|
1046
|
+
completed: boolean;
|
|
1047
|
+
order: number;
|
|
1048
|
+
progress?: number | null;
|
|
1049
|
+
type: PlayStepType;
|
|
1050
|
+
playerActivityId?: string | null;
|
|
1051
|
+
reward?: {
|
|
1052
|
+
__typename?: 'ClassroomReward';
|
|
1053
|
+
id?: string | null;
|
|
1054
|
+
quantity?: number | null;
|
|
1055
|
+
total?: number | null;
|
|
1056
|
+
amount?: number | null;
|
|
1057
|
+
} | null;
|
|
1058
|
+
activity?: {
|
|
1059
|
+
__typename?: 'Activity';
|
|
1060
|
+
id?: string | null;
|
|
1061
|
+
numOfQuestions?: number | null;
|
|
1062
|
+
questionsType?: string | null;
|
|
1063
|
+
durationInMinutes?: number | null;
|
|
1064
|
+
learningObjective?: {
|
|
1065
|
+
__typename?: 'LearningObjective';
|
|
1066
|
+
id?: string | null;
|
|
1067
|
+
ngssDciName?: string | null;
|
|
1068
|
+
imageKey?: string | null;
|
|
1069
|
+
learningObjective?: string | null;
|
|
1070
|
+
} | null;
|
|
1071
|
+
miniGame?: {
|
|
1072
|
+
__typename?: 'Game';
|
|
1073
|
+
id?: string | null;
|
|
1074
|
+
game?: string | null;
|
|
1075
|
+
image?: string | null;
|
|
1076
|
+
pdfUrl?: string | null;
|
|
1077
|
+
videoPreviewUrl?: string | null;
|
|
1078
|
+
} | null;
|
|
1079
|
+
miniGameVersion?: {
|
|
1080
|
+
__typename?: 'GameVersion';
|
|
1081
|
+
id?: string | null;
|
|
1082
|
+
url?: string | null;
|
|
1083
|
+
} | null;
|
|
1084
|
+
video?: {
|
|
1085
|
+
__typename?: 'Video';
|
|
1086
|
+
id?: string | null;
|
|
1087
|
+
thumbnailUrl?: string | null;
|
|
1088
|
+
} | null;
|
|
1089
|
+
awakeningActivity?: {
|
|
1090
|
+
__typename?: 'AwakeningActivity';
|
|
1091
|
+
id?: string | null;
|
|
1092
|
+
type?: string | null;
|
|
1093
|
+
playDurationSeconds?: number | null;
|
|
1094
|
+
} | null;
|
|
1095
|
+
} | null;
|
|
1096
|
+
stages?: Array<{
|
|
1097
|
+
__typename?: 'AssignmentPlayStepStage';
|
|
1098
|
+
id: string;
|
|
1099
|
+
name: string;
|
|
1100
|
+
completed: boolean;
|
|
1101
|
+
} | null> | null;
|
|
1102
|
+
} | null> | null;
|
|
1103
|
+
currentStep?: {
|
|
1104
|
+
__typename?: 'AssignmentPlayStep';
|
|
1105
|
+
id?: string | null;
|
|
1106
|
+
completed: boolean;
|
|
1107
|
+
order: number;
|
|
1108
|
+
progress?: number | null;
|
|
1109
|
+
type: PlayStepType;
|
|
1110
|
+
playerActivityId?: string | null;
|
|
1111
|
+
rewardId?: string | null;
|
|
1112
|
+
miniGameState?: any | null;
|
|
1113
|
+
playerActivity?: {
|
|
1114
|
+
__typename?: 'PlayerActivity';
|
|
1115
|
+
id?: string | null;
|
|
1116
|
+
gameplay?: {
|
|
1117
|
+
__typename?: 'PlayerActivityGameplay';
|
|
1118
|
+
id?: string | null;
|
|
1119
|
+
videoCurrentTimeSec?: number | null;
|
|
1120
|
+
videoFarthestTimeSec?: number | null;
|
|
1121
|
+
} | null;
|
|
1122
|
+
} | null;
|
|
1123
|
+
reward?: {
|
|
1124
|
+
__typename?: 'ClassroomReward';
|
|
1125
|
+
id?: string | null;
|
|
1126
|
+
quantity?: number | null;
|
|
1127
|
+
total?: number | null;
|
|
1128
|
+
amount?: number | null;
|
|
1129
|
+
} | null;
|
|
1130
|
+
activity?: {
|
|
1131
|
+
__typename?: 'Activity';
|
|
1132
|
+
id?: string | null;
|
|
1133
|
+
numOfQuestions?: number | null;
|
|
1134
|
+
questionsType?: string | null;
|
|
1135
|
+
durationInMinutes?: number | null;
|
|
1136
|
+
learningObjective?: {
|
|
1137
|
+
__typename?: 'LearningObjective';
|
|
1138
|
+
id?: string | null;
|
|
1139
|
+
ngssDciName?: string | null;
|
|
1140
|
+
imageKey?: string | null;
|
|
1141
|
+
learningObjective?: string | null;
|
|
1142
|
+
} | null;
|
|
1143
|
+
questions?: Array<{
|
|
1144
|
+
__typename?: 'ActivityQuestion';
|
|
1145
|
+
id?: string | null;
|
|
1146
|
+
order?: number | null;
|
|
1147
|
+
groupingId?: string | null;
|
|
1148
|
+
question?: {
|
|
1149
|
+
__typename?: 'Question';
|
|
1150
|
+
id?: string | null;
|
|
1151
|
+
format?: string | null;
|
|
1152
|
+
question?: string | null;
|
|
1153
|
+
imageKey?: string | null;
|
|
1154
|
+
correctAnswerId?: string | null;
|
|
1155
|
+
explanation?: {
|
|
1156
|
+
__typename?: 'QuestionExplanation';
|
|
1157
|
+
id?: string | null;
|
|
1158
|
+
explanation?: string | null;
|
|
1159
|
+
} | null;
|
|
1160
|
+
answers?: Array<{
|
|
1161
|
+
__typename?: 'Answer';
|
|
1162
|
+
id?: string | null;
|
|
1163
|
+
answer?: string | null;
|
|
1164
|
+
choiceNum?: number | null;
|
|
1165
|
+
explanation?: {
|
|
1166
|
+
__typename?: 'AnswerExplanation';
|
|
1167
|
+
id?: string | null;
|
|
1168
|
+
explanation?: string | null;
|
|
1169
|
+
} | null;
|
|
1170
|
+
} | null> | null;
|
|
1171
|
+
} | null;
|
|
1172
|
+
} | null> | null;
|
|
1173
|
+
video?: {
|
|
1174
|
+
__typename?: 'Video';
|
|
1175
|
+
id?: string | null;
|
|
1176
|
+
playDuration?: number | null;
|
|
1177
|
+
startsAt?: number | null;
|
|
1178
|
+
endsAt?: number | null;
|
|
1179
|
+
thumbnailUrl?: string | null;
|
|
1180
|
+
title: string;
|
|
1181
|
+
type?: string | null;
|
|
1182
|
+
url: string;
|
|
1183
|
+
} | null;
|
|
1184
|
+
miniGame?: {
|
|
1185
|
+
__typename?: 'Game';
|
|
1186
|
+
id?: string | null;
|
|
1187
|
+
game?: string | null;
|
|
1188
|
+
image?: string | null;
|
|
1189
|
+
contentType?: string | null;
|
|
1190
|
+
questionGame?: boolean | null;
|
|
1191
|
+
pdfUrl?: string | null;
|
|
1192
|
+
videoPreviewUrl?: string | null;
|
|
1193
|
+
} | null;
|
|
1194
|
+
miniGameVersion?: {
|
|
1195
|
+
__typename?: 'GameVersion';
|
|
1196
|
+
id?: string | null;
|
|
1197
|
+
url?: string | null;
|
|
1198
|
+
} | null;
|
|
1199
|
+
} | null;
|
|
1200
|
+
nextQuestion?: {
|
|
1201
|
+
__typename?: 'ActivityQuestion';
|
|
1202
|
+
id?: string | null;
|
|
1203
|
+
order?: number | null;
|
|
1204
|
+
question?: {
|
|
1205
|
+
__typename?: 'Question';
|
|
1206
|
+
id?: string | null;
|
|
1207
|
+
format?: string | null;
|
|
1208
|
+
question?: string | null;
|
|
1209
|
+
imageKey?: string | null;
|
|
1210
|
+
correctAnswerId?: string | null;
|
|
1211
|
+
explanation?: {
|
|
1212
|
+
__typename?: 'QuestionExplanation';
|
|
1213
|
+
id?: string | null;
|
|
1214
|
+
explanation?: string | null;
|
|
1215
|
+
} | null;
|
|
1216
|
+
answers?: Array<{
|
|
1217
|
+
__typename?: 'Answer';
|
|
1218
|
+
id?: string | null;
|
|
1219
|
+
answer?: string | null;
|
|
1220
|
+
choiceNum?: number | null;
|
|
1221
|
+
explanation?: {
|
|
1222
|
+
__typename?: 'AnswerExplanation';
|
|
1223
|
+
id?: string | null;
|
|
1224
|
+
explanation?: string | null;
|
|
1225
|
+
} | null;
|
|
1226
|
+
} | null> | null;
|
|
1227
|
+
} | null;
|
|
1228
|
+
} | null;
|
|
1229
|
+
remainingQuestions?: Array<{
|
|
1230
|
+
__typename?: 'ActivityQuestion';
|
|
1231
|
+
id?: string | null;
|
|
1232
|
+
order?: number | null;
|
|
1233
|
+
groupingId?: string | null;
|
|
1234
|
+
question?: {
|
|
1235
|
+
__typename?: 'Question';
|
|
1236
|
+
id?: string | null;
|
|
1237
|
+
format?: string | null;
|
|
1238
|
+
question?: string | null;
|
|
1239
|
+
correctAnswerId?: string | null;
|
|
1240
|
+
imageKey?: string | null;
|
|
1241
|
+
explanation?: {
|
|
1242
|
+
__typename?: 'QuestionExplanation';
|
|
1243
|
+
id?: string | null;
|
|
1244
|
+
explanation?: string | null;
|
|
1245
|
+
} | null;
|
|
1246
|
+
answers?: Array<{
|
|
1247
|
+
__typename?: 'Answer';
|
|
1248
|
+
id?: string | null;
|
|
1249
|
+
answer?: string | null;
|
|
1250
|
+
choiceNum?: number | null;
|
|
1251
|
+
explanation?: {
|
|
1252
|
+
__typename?: 'AnswerExplanation';
|
|
1253
|
+
id?: string | null;
|
|
1254
|
+
explanation?: string | null;
|
|
1255
|
+
} | null;
|
|
1256
|
+
} | null> | null;
|
|
1257
|
+
} | null;
|
|
1258
|
+
} | null> | null;
|
|
1259
|
+
gameframeAttrs?: {
|
|
1260
|
+
__typename?: 'GameframeAttrs';
|
|
1261
|
+
id?: string | null;
|
|
1262
|
+
url?: string | null;
|
|
1263
|
+
gameLanguage?: {
|
|
1264
|
+
__typename?: 'GameLanguage';
|
|
1265
|
+
id?: string | null;
|
|
1266
|
+
languageCode?: string | null;
|
|
1267
|
+
phrases?: Array<{
|
|
1268
|
+
__typename?: 'KeyValue';
|
|
1269
|
+
k?: string | null;
|
|
1270
|
+
v?: string | null;
|
|
1271
|
+
} | null> | null;
|
|
1272
|
+
} | null;
|
|
1273
|
+
gamePerformance?: Array<{
|
|
1274
|
+
__typename?: 'GamePerformanceBucket';
|
|
1275
|
+
id?: string | null;
|
|
1276
|
+
cpuBucket?: number | null;
|
|
1277
|
+
expectedLoadTimeSec?: number | null;
|
|
1278
|
+
} | null> | null;
|
|
1279
|
+
} | null;
|
|
1280
|
+
stages?: Array<{
|
|
1281
|
+
__typename?: 'AssignmentPlayStepStage';
|
|
1282
|
+
id: string;
|
|
1283
|
+
name: string;
|
|
1284
|
+
completed: boolean;
|
|
1285
|
+
} | null> | null;
|
|
1286
|
+
} | null;
|
|
1287
|
+
} & {
|
|
1288
|
+
' $fragmentName'?: 'AssignmentPlayFragmentFragment';
|
|
1289
|
+
};
|
|
1290
|
+
type CompleteActivityMutationVariables = Exact<{
|
|
1291
|
+
playerActivityId: Scalars['ID']['input'];
|
|
1292
|
+
skip?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1293
|
+
}>;
|
|
1294
|
+
type CompleteActivityMutation = {
|
|
1295
|
+
__typename?: 'RootMutationType';
|
|
1296
|
+
completeActivity?: ({
|
|
1297
|
+
__typename?: 'AssignmentPlay';
|
|
1298
|
+
} & {
|
|
1299
|
+
' $fragmentRefs'?: {
|
|
1300
|
+
'AssignmentPlayFragmentFragment': AssignmentPlayFragmentFragment;
|
|
1301
|
+
};
|
|
1302
|
+
}) | null;
|
|
1303
|
+
};
|
|
1304
|
+
type CollectRewardsMutationVariables = Exact<{
|
|
1305
|
+
rewardId: Scalars['ID']['input'];
|
|
1306
|
+
}>;
|
|
1307
|
+
type CollectRewardsMutation = {
|
|
1308
|
+
__typename?: 'RootMutationType';
|
|
1309
|
+
collectRewards?: ({
|
|
1310
|
+
__typename?: 'AssignmentPlay';
|
|
1311
|
+
} & {
|
|
1312
|
+
' $fragmentRefs'?: {
|
|
1313
|
+
'AssignmentPlayFragmentFragment': AssignmentPlayFragmentFragment;
|
|
1314
|
+
};
|
|
1315
|
+
}) | null;
|
|
1316
|
+
};
|
|
1317
|
+
type AnswerQuestionMutationVariables = Exact<{
|
|
1318
|
+
playerActivityId: Scalars['ID']['input'];
|
|
1319
|
+
activityQuestionId: Scalars['ID']['input'];
|
|
1320
|
+
answerId?: InputMaybe<Scalars['ID']['input']>;
|
|
1321
|
+
answersMap?: InputMaybe<Array<InputMaybe<KeyValueInput>> | InputMaybe<KeyValueInput>>;
|
|
1322
|
+
}>;
|
|
1323
|
+
type AnswerQuestionMutation = {
|
|
1324
|
+
__typename?: 'RootMutationType';
|
|
1325
|
+
answerQuestion?: {
|
|
1326
|
+
__typename?: 'AnswerQuestionResponse';
|
|
1327
|
+
play?: ({
|
|
1328
|
+
__typename?: 'AssignmentPlay';
|
|
1329
|
+
} & {
|
|
1330
|
+
' $fragmentRefs'?: {
|
|
1331
|
+
'AssignmentPlayFragmentFragment': AssignmentPlayFragmentFragment;
|
|
1332
|
+
};
|
|
1333
|
+
}) | null;
|
|
1334
|
+
answer?: {
|
|
1335
|
+
__typename?: 'PlayerActivityAnswer';
|
|
1336
|
+
id?: string | null;
|
|
1337
|
+
isCorrect?: boolean | null;
|
|
1338
|
+
questionScoreCard?: Array<{
|
|
1339
|
+
__typename?: 'KeyValue';
|
|
1340
|
+
k?: string | null;
|
|
1341
|
+
v?: string | null;
|
|
1342
|
+
} | null> | null;
|
|
1343
|
+
answersMap?: Array<{
|
|
1344
|
+
__typename?: 'KeyValue';
|
|
1345
|
+
k?: string | null;
|
|
1346
|
+
v?: string | null;
|
|
1347
|
+
} | null> | null;
|
|
1348
|
+
answersMapGraded?: Array<{
|
|
1349
|
+
__typename?: 'KeyValueBool';
|
|
1350
|
+
k?: string | null;
|
|
1351
|
+
v?: boolean | null;
|
|
1352
|
+
} | null> | null;
|
|
1353
|
+
} | null;
|
|
1354
|
+
} | null;
|
|
1355
|
+
};
|
|
1356
|
+
type ReportVideoLessonProgressMutationVariables = Exact<{
|
|
1357
|
+
playerActivityId: Scalars['ID']['input'];
|
|
1358
|
+
videoCurrentTimeSec: Scalars['Int']['input'];
|
|
1359
|
+
durationSec: Scalars['Int']['input'];
|
|
1360
|
+
}>;
|
|
1361
|
+
type ReportVideoLessonProgressMutation = {
|
|
1362
|
+
__typename?: 'RootMutationType';
|
|
1363
|
+
reportVideoLessonProgress?: ({
|
|
1364
|
+
__typename?: 'AssignmentPlay';
|
|
1365
|
+
} & {
|
|
1366
|
+
' $fragmentRefs'?: {
|
|
1367
|
+
'AssignmentPlayFragmentFragment': AssignmentPlayFragmentFragment;
|
|
1368
|
+
};
|
|
1369
|
+
}) | null;
|
|
1370
|
+
};
|
|
1371
|
+
type ReportMiniGameProgressMutationVariables = Exact<{
|
|
1372
|
+
playerActivityId: Scalars['ID']['input'];
|
|
1373
|
+
progress: Scalars['Int']['input'];
|
|
1374
|
+
maxProgress: Scalars['Int']['input'];
|
|
1375
|
+
score?: InputMaybe<Scalars['Int']['input']>;
|
|
1376
|
+
}>;
|
|
1377
|
+
type ReportMiniGameProgressMutation = {
|
|
1378
|
+
__typename?: 'RootMutationType';
|
|
1379
|
+
reportMiniGameProgress?: ({
|
|
1380
|
+
__typename?: 'AssignmentPlay';
|
|
1381
|
+
} & {
|
|
1382
|
+
' $fragmentRefs'?: {
|
|
1383
|
+
'AssignmentPlayFragmentFragment': AssignmentPlayFragmentFragment;
|
|
1384
|
+
};
|
|
1385
|
+
}) | null;
|
|
1386
|
+
};
|
|
1387
|
+
type SaveMiniGameStateMutationVariables = Exact<{
|
|
1388
|
+
playerActivityId: Scalars['ID']['input'];
|
|
1389
|
+
state: Scalars['Json']['input'];
|
|
1390
|
+
}>;
|
|
1391
|
+
type SaveMiniGameStateMutation = {
|
|
1392
|
+
__typename?: 'RootMutationType';
|
|
1393
|
+
saveMiniGameState?: ({
|
|
1394
|
+
__typename?: 'AssignmentPlay';
|
|
1395
|
+
} & {
|
|
1396
|
+
' $fragmentRefs'?: {
|
|
1397
|
+
'AssignmentPlayFragmentFragment': AssignmentPlayFragmentFragment;
|
|
1398
|
+
};
|
|
1399
|
+
}) | null;
|
|
1400
|
+
};
|
|
1401
|
+
type CompleteMiniGamePlayMutationVariables = Exact<{
|
|
1402
|
+
playerActivityId: Scalars['ID']['input'];
|
|
1403
|
+
}>;
|
|
1404
|
+
type CompleteMiniGamePlayMutation = {
|
|
1405
|
+
__typename?: 'RootMutationType';
|
|
1406
|
+
completeMiniGamePlay?: ({
|
|
1407
|
+
__typename?: 'AssignmentPlay';
|
|
1408
|
+
} & {
|
|
1409
|
+
' $fragmentRefs'?: {
|
|
1410
|
+
'AssignmentPlayFragmentFragment': AssignmentPlayFragmentFragment;
|
|
1411
|
+
};
|
|
1412
|
+
}) | null;
|
|
1413
|
+
};
|
|
1414
|
+
type RateMiniGameMutationVariables = Exact<{
|
|
1415
|
+
playerActivityId: Scalars['ID']['input'];
|
|
1416
|
+
rating?: InputMaybe<Scalars['Int']['input']>;
|
|
1417
|
+
}>;
|
|
1418
|
+
type RateMiniGameMutation = {
|
|
1419
|
+
__typename?: 'RootMutationType';
|
|
1420
|
+
rateMiniGame?: ({
|
|
1421
|
+
__typename?: 'AssignmentPlay';
|
|
1422
|
+
} & {
|
|
1423
|
+
' $fragmentRefs'?: {
|
|
1424
|
+
'AssignmentPlayFragmentFragment': AssignmentPlayFragmentFragment;
|
|
1425
|
+
};
|
|
1426
|
+
}) | null;
|
|
1427
|
+
};
|
|
1428
|
+
type CompleteAssessmentMutationVariables = Exact<{
|
|
1429
|
+
playerActivityId: Scalars['ID']['input'];
|
|
1430
|
+
}>;
|
|
1431
|
+
type CompleteAssessmentMutation = {
|
|
1432
|
+
__typename?: 'RootMutationType';
|
|
1433
|
+
completeAssessment?: ({
|
|
1434
|
+
__typename?: 'AssignmentPlay';
|
|
1435
|
+
} & {
|
|
1436
|
+
' $fragmentRefs'?: {
|
|
1437
|
+
'AssignmentPlayFragmentFragment': AssignmentPlayFragmentFragment;
|
|
1438
|
+
};
|
|
1439
|
+
}) | null;
|
|
1440
|
+
};
|
|
1441
|
+
type RegisterClientMutationVariables = Exact<{
|
|
1442
|
+
assignmentId: Scalars['ID']['input'];
|
|
1443
|
+
}>;
|
|
1444
|
+
type RegisterClientMutation = {
|
|
1445
|
+
__typename?: 'RootMutationType';
|
|
1446
|
+
registerClient?: string | null;
|
|
1447
|
+
};
|
|
1448
|
+
type CreateAwakeningPlayerActivityMutationVariables = Exact<{
|
|
1449
|
+
stepId: Scalars['ID']['input'];
|
|
1450
|
+
}>;
|
|
1451
|
+
type CreateAwakeningPlayerActivityMutation = {
|
|
1452
|
+
__typename?: 'RootMutationType';
|
|
1453
|
+
createAwakeningPlayerActivity?: string | null;
|
|
1454
|
+
};
|
|
1455
|
+
type ActivateActivityMutationVariables = Exact<{
|
|
1456
|
+
playerActivityId: Scalars['ID']['input'];
|
|
1457
|
+
crt?: InputMaybe<CrtInput>;
|
|
1458
|
+
ui?: InputMaybe<UiInput>;
|
|
1459
|
+
rte?: InputMaybe<RuntimeEventInput>;
|
|
1460
|
+
}>;
|
|
1461
|
+
type ActivateActivityMutation = {
|
|
1462
|
+
__typename?: 'RootMutationType';
|
|
1463
|
+
activateActivity?: boolean | null;
|
|
1464
|
+
};
|
|
1465
|
+
type SendHeartbeatMutationVariables = Exact<{
|
|
1466
|
+
playerActivityId: Scalars['ID']['input'];
|
|
1467
|
+
crt?: InputMaybe<CrtInput>;
|
|
1468
|
+
ui?: InputMaybe<UiInput>;
|
|
1469
|
+
rte?: InputMaybe<RuntimeEventInput>;
|
|
1470
|
+
}>;
|
|
1471
|
+
type SendHeartbeatMutation = {
|
|
1472
|
+
__typename?: 'RootMutationType';
|
|
1473
|
+
sendHeartbeat?: boolean | null;
|
|
1474
|
+
};
|
|
1475
|
+
type GetAssignmentPlayQueryVariables = Exact<{
|
|
1476
|
+
assignmentId: Scalars['ID']['input'];
|
|
1477
|
+
awakening: Scalars['Boolean']['input'];
|
|
1478
|
+
}>;
|
|
1479
|
+
type GetAssignmentPlayQuery = {
|
|
1480
|
+
__typename?: 'RootQueryType';
|
|
1481
|
+
assignmentPlay?: ({
|
|
1482
|
+
__typename?: 'AssignmentPlay';
|
|
1483
|
+
} & {
|
|
1484
|
+
' $fragmentRefs'?: {
|
|
1485
|
+
'AssignmentPlayFragmentFragment': AssignmentPlayFragmentFragment;
|
|
1486
|
+
};
|
|
1487
|
+
}) | null;
|
|
1488
|
+
};
|
|
1489
|
+
type GetActivityAnswersQueryVariables = Exact<{
|
|
1490
|
+
playerActivityId: Scalars['ID']['input'];
|
|
1491
|
+
}>;
|
|
1492
|
+
type GetActivityAnswersQuery = {
|
|
1493
|
+
__typename?: 'RootQueryType';
|
|
1494
|
+
activityAnswers?: Array<{
|
|
1495
|
+
__typename?: 'PlayerActivityAnswer';
|
|
1496
|
+
id?: string | null;
|
|
1497
|
+
isCorrect?: boolean | null;
|
|
1498
|
+
answerId?: string | null;
|
|
1499
|
+
assignmentActivityQuestionId?: string | null;
|
|
1500
|
+
questionScoreCard?: Array<{
|
|
1501
|
+
__typename?: 'KeyValue';
|
|
1502
|
+
k?: string | null;
|
|
1503
|
+
v?: string | null;
|
|
1504
|
+
} | null> | null;
|
|
1505
|
+
answersMap?: Array<{
|
|
1506
|
+
__typename?: 'KeyValue';
|
|
1507
|
+
k?: string | null;
|
|
1508
|
+
v?: string | null;
|
|
1509
|
+
} | null> | null;
|
|
1510
|
+
answersMapGraded?: Array<{
|
|
1511
|
+
__typename?: 'KeyValueBool';
|
|
1512
|
+
k?: string | null;
|
|
1513
|
+
v?: boolean | null;
|
|
1514
|
+
} | null> | null;
|
|
1515
|
+
question?: {
|
|
1516
|
+
__typename?: 'Question';
|
|
1517
|
+
id?: string | null;
|
|
1518
|
+
format?: string | null;
|
|
1519
|
+
question?: string | null;
|
|
1520
|
+
imageKey?: string | null;
|
|
1521
|
+
correctAnswerId?: string | null;
|
|
1522
|
+
answers?: Array<{
|
|
1523
|
+
__typename?: 'Answer';
|
|
1524
|
+
id?: string | null;
|
|
1525
|
+
answer?: string | null;
|
|
1526
|
+
choiceNum?: number | null;
|
|
1527
|
+
} | null> | null;
|
|
1528
|
+
} | null;
|
|
1529
|
+
} | null> | null;
|
|
1530
|
+
};
|
|
1531
|
+
type AssignmentPausedSubscriptionVariables = Exact<{
|
|
1532
|
+
assignmentId: Scalars['ID']['input'];
|
|
1533
|
+
}>;
|
|
1534
|
+
type AssignmentPausedSubscription = {
|
|
1535
|
+
__typename?: 'RootSubscriptionType';
|
|
1536
|
+
assignmentPaused?: boolean | null;
|
|
1537
|
+
};
|
|
1538
|
+
type AssignmentStoppedSubscriptionVariables = Exact<{
|
|
1539
|
+
assignmentId: Scalars['ID']['input'];
|
|
1540
|
+
}>;
|
|
1541
|
+
type AssignmentStoppedSubscription = {
|
|
1542
|
+
__typename?: 'RootSubscriptionType';
|
|
1543
|
+
assignmentStopped?: boolean | null;
|
|
1544
|
+
};
|
|
1545
|
+
type AssignmentResumedSubscriptionVariables = Exact<{
|
|
1546
|
+
assignmentId: Scalars['ID']['input'];
|
|
1547
|
+
}>;
|
|
1548
|
+
type AssignmentResumedSubscription = {
|
|
1549
|
+
__typename?: 'RootSubscriptionType';
|
|
1550
|
+
assignmentResumed?: boolean | null;
|
|
1551
|
+
};
|
|
1552
|
+
type AssignmentRestartedSubscriptionVariables = Exact<{
|
|
1553
|
+
assignmentId: Scalars['ID']['input'];
|
|
1554
|
+
}>;
|
|
1555
|
+
type AssignmentRestartedSubscription = {
|
|
1556
|
+
__typename?: 'RootSubscriptionType';
|
|
1557
|
+
assignmentRestarted?: boolean | null;
|
|
1558
|
+
};
|
|
1559
|
+
type ActivitySkippedSubscriptionVariables = Exact<{
|
|
1560
|
+
assignmentId: Scalars['ID']['input'];
|
|
1561
|
+
}>;
|
|
1562
|
+
type ActivitySkippedSubscription = {
|
|
1563
|
+
__typename?: 'RootSubscriptionType';
|
|
1564
|
+
activitySkipped?: boolean | null;
|
|
1565
|
+
};
|
|
1566
|
+
declare const AssignmentPlayFragmentFragmentDoc: TypedDocumentNode<AssignmentPlayFragmentFragment, unknown>;
|
|
1567
|
+
declare const CompleteActivityDocument: TypedDocumentNode<CompleteActivityMutation, CompleteActivityMutationVariables>;
|
|
1568
|
+
declare const CollectRewardsDocument: TypedDocumentNode<CollectRewardsMutation, CollectRewardsMutationVariables>;
|
|
1569
|
+
declare const AnswerQuestionDocument: TypedDocumentNode<AnswerQuestionMutation, AnswerQuestionMutationVariables>;
|
|
1570
|
+
declare const ReportVideoLessonProgressDocument: TypedDocumentNode<ReportVideoLessonProgressMutation, ReportVideoLessonProgressMutationVariables>;
|
|
1571
|
+
declare const ReportMiniGameProgressDocument: TypedDocumentNode<ReportMiniGameProgressMutation, ReportMiniGameProgressMutationVariables>;
|
|
1572
|
+
declare const SaveMiniGameStateDocument: TypedDocumentNode<SaveMiniGameStateMutation, SaveMiniGameStateMutationVariables>;
|
|
1573
|
+
declare const CompleteMiniGamePlayDocument: TypedDocumentNode<CompleteMiniGamePlayMutation, CompleteMiniGamePlayMutationVariables>;
|
|
1574
|
+
declare const RateMiniGameDocument: TypedDocumentNode<RateMiniGameMutation, RateMiniGameMutationVariables>;
|
|
1575
|
+
declare const CompleteAssessmentDocument: TypedDocumentNode<CompleteAssessmentMutation, CompleteAssessmentMutationVariables>;
|
|
1576
|
+
declare const RegisterClientDocument: TypedDocumentNode<RegisterClientMutation, RegisterClientMutationVariables>;
|
|
1577
|
+
declare const CreateAwakeningPlayerActivityDocument: TypedDocumentNode<CreateAwakeningPlayerActivityMutation, CreateAwakeningPlayerActivityMutationVariables>;
|
|
1578
|
+
declare const ActivateActivityDocument: TypedDocumentNode<ActivateActivityMutation, ActivateActivityMutationVariables>;
|
|
1579
|
+
declare const SendHeartbeatDocument: TypedDocumentNode<SendHeartbeatMutation, SendHeartbeatMutationVariables>;
|
|
1580
|
+
declare const GetAssignmentPlayDocument: TypedDocumentNode<GetAssignmentPlayQuery, GetAssignmentPlayQueryVariables>;
|
|
1581
|
+
declare const GetActivityAnswersDocument: TypedDocumentNode<GetActivityAnswersQuery, GetActivityAnswersQueryVariables>;
|
|
1582
|
+
declare const AssignmentPausedDocument: TypedDocumentNode<AssignmentPausedSubscription, AssignmentPausedSubscriptionVariables>;
|
|
1583
|
+
declare const AssignmentStoppedDocument: TypedDocumentNode<AssignmentStoppedSubscription, AssignmentStoppedSubscriptionVariables>;
|
|
1584
|
+
declare const AssignmentResumedDocument: TypedDocumentNode<AssignmentResumedSubscription, AssignmentResumedSubscriptionVariables>;
|
|
1585
|
+
declare const AssignmentRestartedDocument: TypedDocumentNode<AssignmentRestartedSubscription, AssignmentRestartedSubscriptionVariables>;
|
|
1586
|
+
declare const ActivitySkippedDocument: TypedDocumentNode<ActivitySkippedSubscription, ActivitySkippedSubscriptionVariables>;
|
|
1587
|
+
|
|
1588
|
+
type FragmentType<TDocumentType extends DocumentTypeDecoration<any, any>> = TDocumentType extends DocumentTypeDecoration<infer TType, any> ? [TType] extends [{
|
|
1589
|
+
' $fragmentName'?: infer TKey;
|
|
1590
|
+
}] ? TKey extends string ? {
|
|
1591
|
+
' $fragmentRefs'?: {
|
|
1592
|
+
[key in TKey]: TType;
|
|
1593
|
+
};
|
|
1594
|
+
} : never : never : never;
|
|
1595
|
+
declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: FragmentType<DocumentTypeDecoration<TType, any>>): TType;
|
|
1596
|
+
declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: FragmentType<DocumentTypeDecoration<TType, any>> | undefined): TType | undefined;
|
|
1597
|
+
declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: FragmentType<DocumentTypeDecoration<TType, any>> | null): TType | null;
|
|
1598
|
+
declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: FragmentType<DocumentTypeDecoration<TType, any>> | null | undefined): TType | null | undefined;
|
|
1599
|
+
declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: Array<FragmentType<DocumentTypeDecoration<TType, any>>>): Array<TType>;
|
|
1600
|
+
declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: Array<FragmentType<DocumentTypeDecoration<TType, any>>> | null | undefined): Array<TType> | null | undefined;
|
|
1601
|
+
declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: ReadonlyArray<FragmentType<DocumentTypeDecoration<TType, any>>>): ReadonlyArray<TType>;
|
|
1602
|
+
declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: ReadonlyArray<FragmentType<DocumentTypeDecoration<TType, any>>> | null | undefined): ReadonlyArray<TType> | null | undefined;
|
|
1603
|
+
declare function makeFragmentData<F extends DocumentTypeDecoration<any, any>, FT extends ResultOf<F>>(data: FT, _fragment: F): FragmentType<F>;
|
|
1604
|
+
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>;
|
|
1605
|
+
|
|
1606
|
+
/**
|
|
1607
|
+
* Map of all GraphQL operations in the project.
|
|
1608
|
+
*
|
|
1609
|
+
* This map has several performance disadvantages:
|
|
1610
|
+
* 1. It is not tree-shakeable, so it will include all operations in the project.
|
|
1611
|
+
* 2. It is not minifiable, so the string of a GraphQL query will be multiple times inside the bundle.
|
|
1612
|
+
* 3. It does not support dead code elimination, so it will add unused operations.
|
|
1613
|
+
*
|
|
1614
|
+
* Therefore it is highly recommended to use the babel or swc plugin for production.
|
|
1615
|
+
* Learn more about it here: https://the-guild.dev/graphql/codegen/plugins/presets/preset-client#reducing-bundle-size
|
|
1616
|
+
*/
|
|
1617
|
+
type Documents = {
|
|
1618
|
+
"\n fragment AssignmentPlayFragment on AssignmentPlay {\n id\n name\n paused\n stopped\n completed\n assignmentMode\n steps {\n id\n completed\n order\n progress\n type\n playerActivityId\n reward {\n id\n quantity\n total\n amount\n }\n activity {\n id\n numOfQuestions\n questionsType\n durationInMinutes\n learningObjective {\n id\n ngssDciName\n imageKey\n learningObjective\n }\n miniGame {\n id\n game\n image\n pdfUrl\n videoPreviewUrl\n }\n miniGameVersion {\n id\n url\n }\n video {\n id\n thumbnailUrl\n }\n awakeningActivity {\n id\n type\n playDurationSeconds\n }\n }\n stages {\n id\n name\n completed\n }\n }\n currentStep {\n id\n completed\n order\n progress\n type\n playerActivity {\n id\n gameplay {\n id\n videoCurrentTimeSec\n videoFarthestTimeSec\n }\n }\n playerActivityId\n reward {\n id\n quantity\n total\n amount\n }\n rewardId\n activity {\n id\n numOfQuestions\n questionsType\n durationInMinutes\n learningObjective {\n id\n ngssDciName\n imageKey\n learningObjective\n }\n questions {\n id\n order\n groupingId\n question {\n id\n format\n question\n imageKey\n correctAnswerId\n explanation {\n id\n explanation\n }\n answers {\n id\n answer\n choiceNum\n explanation {\n id\n explanation\n }\n }\n }\n }\n video {\n id\n playDuration\n startsAt\n endsAt\n thumbnailUrl\n title\n type\n url\n }\n miniGame {\n id\n game\n image\n contentType\n questionGame\n pdfUrl\n videoPreviewUrl\n }\n miniGameVersion {\n id\n url\n }\n }\n nextQuestion {\n id\n order\n question {\n id\n format\n question\n imageKey\n correctAnswerId\n explanation {\n id\n explanation\n }\n answers {\n id\n answer\n choiceNum\n explanation {\n id\n explanation\n }\n }\n }\n }\n remainingQuestions {\n id\n order\n groupingId\n question {\n id\n format\n question\n correctAnswerId\n imageKey\n explanation {\n id\n explanation\n }\n answers {\n id\n answer\n choiceNum\n explanation {\n id\n explanation\n }\n }\n }\n }\n gameframeAttrs {\n id\n url\n gameLanguage {\n id\n languageCode\n phrases {\n k\n v\n }\n }\n gamePerformance {\n id\n cpuBucket\n expectedLoadTimeSec\n }\n }\n miniGameState\n stages {\n id\n name\n completed\n }\n }\n }\n": typeof AssignmentPlayFragmentFragmentDoc;
|
|
1619
|
+
"\n mutation CompleteActivity($playerActivityId: ID!, $skip: Boolean) {\n completeActivity(playerActivityId: $playerActivityId, skip: $skip) {\n ...AssignmentPlayFragment\n }\n }\n \n": typeof CompleteActivityDocument;
|
|
1620
|
+
"\n mutation CollectRewards($rewardId: ID!) {\n collectRewards(rewardId: $rewardId) {\n ...AssignmentPlayFragment\n }\n }\n \n": typeof CollectRewardsDocument;
|
|
1621
|
+
"\n mutation AnswerQuestion(\n $playerActivityId: ID!\n $activityQuestionId: ID!\n $answerId: ID\n $answersMap: [KeyValueInput]\n ) {\n answerQuestion(\n playerActivityId: $playerActivityId\n activityQuestionId: $activityQuestionId\n answerId: $answerId\n answersMap: $answersMap\n ) {\n play {\n ...AssignmentPlayFragment\n }\n answer {\n id\n isCorrect\n questionScoreCard {\n k\n v\n }\n answersMap {\n k\n v\n }\n answersMapGraded {\n k\n v\n }\n }\n }\n }\n \n": typeof AnswerQuestionDocument;
|
|
1622
|
+
"\n mutation ReportVideoLessonProgress(\n $playerActivityId: ID!\n $videoCurrentTimeSec: Int!\n $durationSec: Int!\n ) {\n reportVideoLessonProgress(\n playerActivityId: $playerActivityId\n videoCurrentTimeSec: $videoCurrentTimeSec\n durationSec: $durationSec\n ) {\n ...AssignmentPlayFragment\n }\n }\n \n": typeof ReportVideoLessonProgressDocument;
|
|
1623
|
+
"\n mutation ReportMiniGameProgress(\n $playerActivityId: ID!\n $progress: Int!\n $maxProgress: Int!\n $score: Int\n ) {\n reportMiniGameProgress(\n playerActivityId: $playerActivityId\n score: $score\n progress: $progress\n maxProgress: $maxProgress\n ) {\n ...AssignmentPlayFragment\n }\n }\n \n": typeof ReportMiniGameProgressDocument;
|
|
1624
|
+
"\n mutation SaveMiniGameState($playerActivityId: ID!, $state: Json!) {\n saveMiniGameState(playerActivityId: $playerActivityId, state: $state) {\n ...AssignmentPlayFragment\n }\n }\n \n": typeof SaveMiniGameStateDocument;
|
|
1625
|
+
"\n mutation CompleteMiniGamePlay($playerActivityId: ID!) {\n completeMiniGamePlay(playerActivityId: $playerActivityId) {\n ...AssignmentPlayFragment\n }\n }\n \n": typeof CompleteMiniGamePlayDocument;
|
|
1626
|
+
"\n mutation RateMiniGame($playerActivityId: ID!, $rating: Int) {\n rateMiniGame(playerActivityId: $playerActivityId, rating: $rating) {\n ...AssignmentPlayFragment\n }\n }\n \n": typeof RateMiniGameDocument;
|
|
1627
|
+
"\n mutation CompleteAssessment($playerActivityId: ID!) {\n completeAssessment(playerActivityId: $playerActivityId) {\n ...AssignmentPlayFragment\n }\n }\n \n": typeof CompleteAssessmentDocument;
|
|
1628
|
+
"\n mutation RegisterClient($assignmentId: ID!) {\n registerClient(assignmentId: $assignmentId)\n }\n": typeof RegisterClientDocument;
|
|
1629
|
+
"\n mutation CreateAwakeningPlayerActivity($stepId: ID!) {\n createAwakeningPlayerActivity(stepId: $stepId)\n }\n": typeof CreateAwakeningPlayerActivityDocument;
|
|
1630
|
+
"\n mutation ActivateActivity(\n $playerActivityId: ID!\n $crt: CrtInput\n $ui: UiInput\n $rte: RuntimeEventInput\n ) {\n activateActivity(\n playerActivityId: $playerActivityId\n ui: $ui\n crt: $crt\n rte: $rte\n )\n }\n": typeof ActivateActivityDocument;
|
|
1631
|
+
"\n mutation SendHeartbeat(\n $playerActivityId: ID!\n $crt: CrtInput\n $ui: UiInput\n $rte: RuntimeEventInput\n ) {\n sendHeartbeat(\n playerActivityId: $playerActivityId\n crt: $crt\n ui: $ui\n rte: $rte\n )\n }\n": typeof SendHeartbeatDocument;
|
|
1632
|
+
"\n query GetAssignmentPlay($assignmentId: ID!, $awakening: Boolean!) {\n assignmentPlay(assignmentId: $assignmentId, awakening: $awakening) {\n ...AssignmentPlayFragment\n }\n }\n \n": typeof GetAssignmentPlayDocument;
|
|
1633
|
+
"\n query GetActivityAnswers($playerActivityId: ID!) {\n activityAnswers(playerActivityId: $playerActivityId) {\n id\n isCorrect\n answerId\n assignmentActivityQuestionId\n questionScoreCard {\n k\n v\n }\n answersMap {\n k\n v\n }\n answersMapGraded {\n k\n v\n }\n question {\n id\n format\n question\n imageKey\n correctAnswerId\n answers {\n id\n answer\n choiceNum\n }\n }\n }\n }\n": typeof GetActivityAnswersDocument;
|
|
1634
|
+
"\n subscription AssignmentPaused($assignmentId: ID!) {\n assignmentPaused(assignmentId: $assignmentId)\n }\n": typeof AssignmentPausedDocument;
|
|
1635
|
+
"\n subscription AssignmentStopped($assignmentId: ID!) {\n assignmentStopped(assignmentId: $assignmentId)\n }\n": typeof AssignmentStoppedDocument;
|
|
1636
|
+
"\n subscription AssignmentResumed($assignmentId: ID!) {\n assignmentResumed(assignmentId: $assignmentId)\n }\n": typeof AssignmentResumedDocument;
|
|
1637
|
+
"\n subscription AssignmentRestarted($assignmentId: ID!) {\n assignmentRestarted(assignmentId: $assignmentId)\n }\n": typeof AssignmentRestartedDocument;
|
|
1638
|
+
"\n subscription ActivitySkipped($assignmentId: ID!) {\n activitySkipped(assignmentId: $assignmentId)\n }\n": typeof ActivitySkippedDocument;
|
|
1639
|
+
};
|
|
1640
|
+
declare const documents: Documents;
|
|
1641
|
+
/**
|
|
1642
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1643
|
+
*
|
|
1644
|
+
*
|
|
1645
|
+
* @example
|
|
1646
|
+
* ```ts
|
|
1647
|
+
* const query = graphql(`query GetUser($id: ID!) { user(id: $id) { name } }`);
|
|
1648
|
+
* ```
|
|
1649
|
+
*
|
|
1650
|
+
* The query argument is unknown!
|
|
1651
|
+
* Please regenerate the types.
|
|
1652
|
+
*/
|
|
1653
|
+
declare function graphql(source: string): unknown;
|
|
1654
|
+
/**
|
|
1655
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1656
|
+
*/
|
|
1657
|
+
declare function graphql(source: "\n fragment AssignmentPlayFragment on AssignmentPlay {\n id\n name\n paused\n stopped\n completed\n assignmentMode\n steps {\n id\n completed\n order\n progress\n type\n playerActivityId\n reward {\n id\n quantity\n total\n amount\n }\n activity {\n id\n numOfQuestions\n questionsType\n durationInMinutes\n learningObjective {\n id\n ngssDciName\n imageKey\n learningObjective\n }\n miniGame {\n id\n game\n image\n pdfUrl\n videoPreviewUrl\n }\n miniGameVersion {\n id\n url\n }\n video {\n id\n thumbnailUrl\n }\n awakeningActivity {\n id\n type\n playDurationSeconds\n }\n }\n stages {\n id\n name\n completed\n }\n }\n currentStep {\n id\n completed\n order\n progress\n type\n playerActivity {\n id\n gameplay {\n id\n videoCurrentTimeSec\n videoFarthestTimeSec\n }\n }\n playerActivityId\n reward {\n id\n quantity\n total\n amount\n }\n rewardId\n activity {\n id\n numOfQuestions\n questionsType\n durationInMinutes\n learningObjective {\n id\n ngssDciName\n imageKey\n learningObjective\n }\n questions {\n id\n order\n groupingId\n question {\n id\n format\n question\n imageKey\n correctAnswerId\n explanation {\n id\n explanation\n }\n answers {\n id\n answer\n choiceNum\n explanation {\n id\n explanation\n }\n }\n }\n }\n video {\n id\n playDuration\n startsAt\n endsAt\n thumbnailUrl\n title\n type\n url\n }\n miniGame {\n id\n game\n image\n contentType\n questionGame\n pdfUrl\n videoPreviewUrl\n }\n miniGameVersion {\n id\n url\n }\n }\n nextQuestion {\n id\n order\n question {\n id\n format\n question\n imageKey\n correctAnswerId\n explanation {\n id\n explanation\n }\n answers {\n id\n answer\n choiceNum\n explanation {\n id\n explanation\n }\n }\n }\n }\n remainingQuestions {\n id\n order\n groupingId\n question {\n id\n format\n question\n correctAnswerId\n imageKey\n explanation {\n id\n explanation\n }\n answers {\n id\n answer\n choiceNum\n explanation {\n id\n explanation\n }\n }\n }\n }\n gameframeAttrs {\n id\n url\n gameLanguage {\n id\n languageCode\n phrases {\n k\n v\n }\n }\n gamePerformance {\n id\n cpuBucket\n expectedLoadTimeSec\n }\n }\n miniGameState\n stages {\n id\n name\n completed\n }\n }\n }\n"): (typeof documents)["\n fragment AssignmentPlayFragment on AssignmentPlay {\n id\n name\n paused\n stopped\n completed\n assignmentMode\n steps {\n id\n completed\n order\n progress\n type\n playerActivityId\n reward {\n id\n quantity\n total\n amount\n }\n activity {\n id\n numOfQuestions\n questionsType\n durationInMinutes\n learningObjective {\n id\n ngssDciName\n imageKey\n learningObjective\n }\n miniGame {\n id\n game\n image\n pdfUrl\n videoPreviewUrl\n }\n miniGameVersion {\n id\n url\n }\n video {\n id\n thumbnailUrl\n }\n awakeningActivity {\n id\n type\n playDurationSeconds\n }\n }\n stages {\n id\n name\n completed\n }\n }\n currentStep {\n id\n completed\n order\n progress\n type\n playerActivity {\n id\n gameplay {\n id\n videoCurrentTimeSec\n videoFarthestTimeSec\n }\n }\n playerActivityId\n reward {\n id\n quantity\n total\n amount\n }\n rewardId\n activity {\n id\n numOfQuestions\n questionsType\n durationInMinutes\n learningObjective {\n id\n ngssDciName\n imageKey\n learningObjective\n }\n questions {\n id\n order\n groupingId\n question {\n id\n format\n question\n imageKey\n correctAnswerId\n explanation {\n id\n explanation\n }\n answers {\n id\n answer\n choiceNum\n explanation {\n id\n explanation\n }\n }\n }\n }\n video {\n id\n playDuration\n startsAt\n endsAt\n thumbnailUrl\n title\n type\n url\n }\n miniGame {\n id\n game\n image\n contentType\n questionGame\n pdfUrl\n videoPreviewUrl\n }\n miniGameVersion {\n id\n url\n }\n }\n nextQuestion {\n id\n order\n question {\n id\n format\n question\n imageKey\n correctAnswerId\n explanation {\n id\n explanation\n }\n answers {\n id\n answer\n choiceNum\n explanation {\n id\n explanation\n }\n }\n }\n }\n remainingQuestions {\n id\n order\n groupingId\n question {\n id\n format\n question\n correctAnswerId\n imageKey\n explanation {\n id\n explanation\n }\n answers {\n id\n answer\n choiceNum\n explanation {\n id\n explanation\n }\n }\n }\n }\n gameframeAttrs {\n id\n url\n gameLanguage {\n id\n languageCode\n phrases {\n k\n v\n }\n }\n gamePerformance {\n id\n cpuBucket\n expectedLoadTimeSec\n }\n }\n miniGameState\n stages {\n id\n name\n completed\n }\n }\n }\n"];
|
|
1658
|
+
/**
|
|
1659
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1660
|
+
*/
|
|
1661
|
+
declare function graphql(source: "\n mutation CompleteActivity($playerActivityId: ID!, $skip: Boolean) {\n completeActivity(playerActivityId: $playerActivityId, skip: $skip) {\n ...AssignmentPlayFragment\n }\n }\n \n"): (typeof documents)["\n mutation CompleteActivity($playerActivityId: ID!, $skip: Boolean) {\n completeActivity(playerActivityId: $playerActivityId, skip: $skip) {\n ...AssignmentPlayFragment\n }\n }\n \n"];
|
|
1662
|
+
/**
|
|
1663
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1664
|
+
*/
|
|
1665
|
+
declare function graphql(source: "\n mutation CollectRewards($rewardId: ID!) {\n collectRewards(rewardId: $rewardId) {\n ...AssignmentPlayFragment\n }\n }\n \n"): (typeof documents)["\n mutation CollectRewards($rewardId: ID!) {\n collectRewards(rewardId: $rewardId) {\n ...AssignmentPlayFragment\n }\n }\n \n"];
|
|
1666
|
+
/**
|
|
1667
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1668
|
+
*/
|
|
1669
|
+
declare function graphql(source: "\n mutation AnswerQuestion(\n $playerActivityId: ID!\n $activityQuestionId: ID!\n $answerId: ID\n $answersMap: [KeyValueInput]\n ) {\n answerQuestion(\n playerActivityId: $playerActivityId\n activityQuestionId: $activityQuestionId\n answerId: $answerId\n answersMap: $answersMap\n ) {\n play {\n ...AssignmentPlayFragment\n }\n answer {\n id\n isCorrect\n questionScoreCard {\n k\n v\n }\n answersMap {\n k\n v\n }\n answersMapGraded {\n k\n v\n }\n }\n }\n }\n \n"): (typeof documents)["\n mutation AnswerQuestion(\n $playerActivityId: ID!\n $activityQuestionId: ID!\n $answerId: ID\n $answersMap: [KeyValueInput]\n ) {\n answerQuestion(\n playerActivityId: $playerActivityId\n activityQuestionId: $activityQuestionId\n answerId: $answerId\n answersMap: $answersMap\n ) {\n play {\n ...AssignmentPlayFragment\n }\n answer {\n id\n isCorrect\n questionScoreCard {\n k\n v\n }\n answersMap {\n k\n v\n }\n answersMapGraded {\n k\n v\n }\n }\n }\n }\n \n"];
|
|
1670
|
+
/**
|
|
1671
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1672
|
+
*/
|
|
1673
|
+
declare function graphql(source: "\n mutation ReportVideoLessonProgress(\n $playerActivityId: ID!\n $videoCurrentTimeSec: Int!\n $durationSec: Int!\n ) {\n reportVideoLessonProgress(\n playerActivityId: $playerActivityId\n videoCurrentTimeSec: $videoCurrentTimeSec\n durationSec: $durationSec\n ) {\n ...AssignmentPlayFragment\n }\n }\n \n"): (typeof documents)["\n mutation ReportVideoLessonProgress(\n $playerActivityId: ID!\n $videoCurrentTimeSec: Int!\n $durationSec: Int!\n ) {\n reportVideoLessonProgress(\n playerActivityId: $playerActivityId\n videoCurrentTimeSec: $videoCurrentTimeSec\n durationSec: $durationSec\n ) {\n ...AssignmentPlayFragment\n }\n }\n \n"];
|
|
1674
|
+
/**
|
|
1675
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1676
|
+
*/
|
|
1677
|
+
declare function graphql(source: "\n mutation ReportMiniGameProgress(\n $playerActivityId: ID!\n $progress: Int!\n $maxProgress: Int!\n $score: Int\n ) {\n reportMiniGameProgress(\n playerActivityId: $playerActivityId\n score: $score\n progress: $progress\n maxProgress: $maxProgress\n ) {\n ...AssignmentPlayFragment\n }\n }\n \n"): (typeof documents)["\n mutation ReportMiniGameProgress(\n $playerActivityId: ID!\n $progress: Int!\n $maxProgress: Int!\n $score: Int\n ) {\n reportMiniGameProgress(\n playerActivityId: $playerActivityId\n score: $score\n progress: $progress\n maxProgress: $maxProgress\n ) {\n ...AssignmentPlayFragment\n }\n }\n \n"];
|
|
1678
|
+
/**
|
|
1679
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1680
|
+
*/
|
|
1681
|
+
declare function graphql(source: "\n mutation SaveMiniGameState($playerActivityId: ID!, $state: Json!) {\n saveMiniGameState(playerActivityId: $playerActivityId, state: $state) {\n ...AssignmentPlayFragment\n }\n }\n \n"): (typeof documents)["\n mutation SaveMiniGameState($playerActivityId: ID!, $state: Json!) {\n saveMiniGameState(playerActivityId: $playerActivityId, state: $state) {\n ...AssignmentPlayFragment\n }\n }\n \n"];
|
|
1682
|
+
/**
|
|
1683
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1684
|
+
*/
|
|
1685
|
+
declare function graphql(source: "\n mutation CompleteMiniGamePlay($playerActivityId: ID!) {\n completeMiniGamePlay(playerActivityId: $playerActivityId) {\n ...AssignmentPlayFragment\n }\n }\n \n"): (typeof documents)["\n mutation CompleteMiniGamePlay($playerActivityId: ID!) {\n completeMiniGamePlay(playerActivityId: $playerActivityId) {\n ...AssignmentPlayFragment\n }\n }\n \n"];
|
|
1686
|
+
/**
|
|
1687
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1688
|
+
*/
|
|
1689
|
+
declare function graphql(source: "\n mutation RateMiniGame($playerActivityId: ID!, $rating: Int) {\n rateMiniGame(playerActivityId: $playerActivityId, rating: $rating) {\n ...AssignmentPlayFragment\n }\n }\n \n"): (typeof documents)["\n mutation RateMiniGame($playerActivityId: ID!, $rating: Int) {\n rateMiniGame(playerActivityId: $playerActivityId, rating: $rating) {\n ...AssignmentPlayFragment\n }\n }\n \n"];
|
|
1690
|
+
/**
|
|
1691
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1692
|
+
*/
|
|
1693
|
+
declare function graphql(source: "\n mutation CompleteAssessment($playerActivityId: ID!) {\n completeAssessment(playerActivityId: $playerActivityId) {\n ...AssignmentPlayFragment\n }\n }\n \n"): (typeof documents)["\n mutation CompleteAssessment($playerActivityId: ID!) {\n completeAssessment(playerActivityId: $playerActivityId) {\n ...AssignmentPlayFragment\n }\n }\n \n"];
|
|
1694
|
+
/**
|
|
1695
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1696
|
+
*/
|
|
1697
|
+
declare function graphql(source: "\n mutation RegisterClient($assignmentId: ID!) {\n registerClient(assignmentId: $assignmentId)\n }\n"): (typeof documents)["\n mutation RegisterClient($assignmentId: ID!) {\n registerClient(assignmentId: $assignmentId)\n }\n"];
|
|
1698
|
+
/**
|
|
1699
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1700
|
+
*/
|
|
1701
|
+
declare function graphql(source: "\n mutation CreateAwakeningPlayerActivity($stepId: ID!) {\n createAwakeningPlayerActivity(stepId: $stepId)\n }\n"): (typeof documents)["\n mutation CreateAwakeningPlayerActivity($stepId: ID!) {\n createAwakeningPlayerActivity(stepId: $stepId)\n }\n"];
|
|
1702
|
+
/**
|
|
1703
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1704
|
+
*/
|
|
1705
|
+
declare function graphql(source: "\n mutation ActivateActivity(\n $playerActivityId: ID!\n $crt: CrtInput\n $ui: UiInput\n $rte: RuntimeEventInput\n ) {\n activateActivity(\n playerActivityId: $playerActivityId\n ui: $ui\n crt: $crt\n rte: $rte\n )\n }\n"): (typeof documents)["\n mutation ActivateActivity(\n $playerActivityId: ID!\n $crt: CrtInput\n $ui: UiInput\n $rte: RuntimeEventInput\n ) {\n activateActivity(\n playerActivityId: $playerActivityId\n ui: $ui\n crt: $crt\n rte: $rte\n )\n }\n"];
|
|
1706
|
+
/**
|
|
1707
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1708
|
+
*/
|
|
1709
|
+
declare function graphql(source: "\n mutation SendHeartbeat(\n $playerActivityId: ID!\n $crt: CrtInput\n $ui: UiInput\n $rte: RuntimeEventInput\n ) {\n sendHeartbeat(\n playerActivityId: $playerActivityId\n crt: $crt\n ui: $ui\n rte: $rte\n )\n }\n"): (typeof documents)["\n mutation SendHeartbeat(\n $playerActivityId: ID!\n $crt: CrtInput\n $ui: UiInput\n $rte: RuntimeEventInput\n ) {\n sendHeartbeat(\n playerActivityId: $playerActivityId\n crt: $crt\n ui: $ui\n rte: $rte\n )\n }\n"];
|
|
1710
|
+
/**
|
|
1711
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1712
|
+
*/
|
|
1713
|
+
declare function graphql(source: "\n query GetAssignmentPlay($assignmentId: ID!, $awakening: Boolean!) {\n assignmentPlay(assignmentId: $assignmentId, awakening: $awakening) {\n ...AssignmentPlayFragment\n }\n }\n \n"): (typeof documents)["\n query GetAssignmentPlay($assignmentId: ID!, $awakening: Boolean!) {\n assignmentPlay(assignmentId: $assignmentId, awakening: $awakening) {\n ...AssignmentPlayFragment\n }\n }\n \n"];
|
|
1714
|
+
/**
|
|
1715
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1716
|
+
*/
|
|
1717
|
+
declare function graphql(source: "\n query GetActivityAnswers($playerActivityId: ID!) {\n activityAnswers(playerActivityId: $playerActivityId) {\n id\n isCorrect\n answerId\n assignmentActivityQuestionId\n questionScoreCard {\n k\n v\n }\n answersMap {\n k\n v\n }\n answersMapGraded {\n k\n v\n }\n question {\n id\n format\n question\n imageKey\n correctAnswerId\n answers {\n id\n answer\n choiceNum\n }\n }\n }\n }\n"): (typeof documents)["\n query GetActivityAnswers($playerActivityId: ID!) {\n activityAnswers(playerActivityId: $playerActivityId) {\n id\n isCorrect\n answerId\n assignmentActivityQuestionId\n questionScoreCard {\n k\n v\n }\n answersMap {\n k\n v\n }\n answersMapGraded {\n k\n v\n }\n question {\n id\n format\n question\n imageKey\n correctAnswerId\n answers {\n id\n answer\n choiceNum\n }\n }\n }\n }\n"];
|
|
1718
|
+
/**
|
|
1719
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1720
|
+
*/
|
|
1721
|
+
declare function graphql(source: "\n subscription AssignmentPaused($assignmentId: ID!) {\n assignmentPaused(assignmentId: $assignmentId)\n }\n"): (typeof documents)["\n subscription AssignmentPaused($assignmentId: ID!) {\n assignmentPaused(assignmentId: $assignmentId)\n }\n"];
|
|
1722
|
+
/**
|
|
1723
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1724
|
+
*/
|
|
1725
|
+
declare function graphql(source: "\n subscription AssignmentStopped($assignmentId: ID!) {\n assignmentStopped(assignmentId: $assignmentId)\n }\n"): (typeof documents)["\n subscription AssignmentStopped($assignmentId: ID!) {\n assignmentStopped(assignmentId: $assignmentId)\n }\n"];
|
|
1726
|
+
/**
|
|
1727
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1728
|
+
*/
|
|
1729
|
+
declare function graphql(source: "\n subscription AssignmentResumed($assignmentId: ID!) {\n assignmentResumed(assignmentId: $assignmentId)\n }\n"): (typeof documents)["\n subscription AssignmentResumed($assignmentId: ID!) {\n assignmentResumed(assignmentId: $assignmentId)\n }\n"];
|
|
1730
|
+
/**
|
|
1731
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1732
|
+
*/
|
|
1733
|
+
declare function graphql(source: "\n subscription AssignmentRestarted($assignmentId: ID!) {\n assignmentRestarted(assignmentId: $assignmentId)\n }\n"): (typeof documents)["\n subscription AssignmentRestarted($assignmentId: ID!) {\n assignmentRestarted(assignmentId: $assignmentId)\n }\n"];
|
|
1734
|
+
/**
|
|
1735
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
1736
|
+
*/
|
|
1737
|
+
declare function graphql(source: "\n subscription ActivitySkipped($assignmentId: ID!) {\n activitySkipped(assignmentId: $assignmentId)\n }\n"): (typeof documents)["\n subscription ActivitySkipped($assignmentId: ID!) {\n activitySkipped(assignmentId: $assignmentId)\n }\n"];
|
|
1738
|
+
type DocumentType<TDocumentNode extends TypedDocumentNode<any, any>> = TDocumentNode extends TypedDocumentNode<infer TType, any> ? TType : never;
|
|
1739
|
+
|
|
1740
|
+
export { ActivateActivityDocument, type ActivateActivityMutation, type ActivateActivityMutationVariables, type Activity, type ActivityInputV2, type ActivityQuestion, ActivitySkippedDocument, type ActivitySkippedSubscription, type ActivitySkippedSubscriptionVariables, type ActivityV2, type Answer, type AnswerExplanation, AnswerQuestionDocument, type AnswerQuestionMutation, type AnswerQuestionMutationVariables, type AnswerQuestionResponse, type Assessment, type Assignment, AssignmentOwnershipType, AssignmentPausedDocument, type AssignmentPausedSubscription, type AssignmentPausedSubscriptionVariables, type AssignmentPlay, type AssignmentPlayFragmentFragment, AssignmentPlayFragmentFragmentDoc, type AssignmentPlayStep, type AssignmentPlayStepStage, AssignmentRestartedDocument, type AssignmentRestartedSubscription, type AssignmentRestartedSubscriptionVariables, AssignmentResumedDocument, type AssignmentResumedSubscription, type AssignmentResumedSubscriptionVariables, type AssignmentSetAssignment, AssignmentStoppedDocument, type AssignmentStoppedSubscription, type AssignmentStoppedSubscriptionVariables, type AssignmentV2, type AwakeningActivity, type ClassroomReward, CollectRewardsDocument, type CollectRewardsMutation, type CollectRewardsMutationVariables, CompleteActivityDocument, type CompleteActivityMutation, type CompleteActivityMutationVariables, CompleteAssessmentDocument, type CompleteAssessmentMutation, type CompleteAssessmentMutationVariables, CompleteMiniGamePlayDocument, type CompleteMiniGamePlayMutation, type CompleteMiniGamePlayMutationVariables, CreateAwakeningPlayerActivityDocument, type CreateAwakeningPlayerActivityMutation, type CreateAwakeningPlayerActivityMutationVariables, type CrtInput, type DocumentType, type Domain, type Exact, type FeatureFlagVariant, type FluencyFact, FluencyFactOperation, type FluencyFactProgressStatus, FluencyFactProgressStatusType, type FluencyFocus, FluencyFocusInputType, type FluencyFocusList, FluencyFocusType, type FluencyInstructor, type FluencyPlayer, type FluencyPlayerFluencySessionsArgs, type FluencySession, type FluencySessionActivity, type FluencySessionAssess, type FluencySessionEstablish, type FluencySessionFilter, FluencySessionInstructionConcept, type FluencySessionPractice, FluencySessionStageType, type FluencyStudent, type FluencyTrialInput, type FocusPath, type FragmentType, type Game, type GameAlignment, type GameLanguage, type GamePerformanceBucket, type GameVersion, type GameframeAttrs, GetActivityAnswersDocument, type GetActivityAnswersQuery, type GetActivityAnswersQueryVariables, GetAssignmentPlayDocument, type GetAssignmentPlayQuery, type GetAssignmentPlayQueryVariables, type Globals, type GlobalsMastery, type GlobalsProgression, type Group, type GroupList, type Incremental, type InputMaybe, type InviteParentToConnectMutationResult, type KeyValue, type KeyValueBool, type KeyValueInput, type LearningObjective, type MakeEmpty, type MakeMaybe, type MakeOptional, type Maybe, type ModeParams, PlayStepType, type PlayerActivity, type PlayerActivityAnswer, type PlayerActivityGameplay, type PlayerAssignment, type PlayerAvatar, type PlayerGroupsFilter, type Progression, type ProgressionDomainMasteryArgs, type Question, type QuestionExplanation, RateMiniGameDocument, type RateMiniGameMutation, type RateMiniGameMutationVariables, RegisterClientDocument, type RegisterClientMutation, type RegisterClientMutationVariables, ReportMiniGameProgressDocument, type ReportMiniGameProgressMutation, type ReportMiniGameProgressMutationVariables, ReportVideoLessonProgressDocument, type ReportVideoLessonProgressMutation, type ReportVideoLessonProgressMutationVariables, type RootMutationType, type RootMutationTypeActivateActivityArgs, type RootMutationTypeAnswerQuestionArgs, type RootMutationTypeApplyPrerequisitesArgs, type RootMutationTypeChangeDomainArgs, type RootMutationTypeCollectRewardsArgs, type RootMutationTypeCompleteActivityArgs, type RootMutationTypeCompleteAssessmentArgs, type RootMutationTypeCompleteMiniGamePlayArgs, type RootMutationTypeCreateAssignmentArgs, type RootMutationTypeCreateAwakeningPlayerActivityArgs, type RootMutationTypeInviteParentToConnectArgs, type RootMutationTypeJoinTeacherArgs, type RootMutationTypeLeaveTeacherArgs, type RootMutationTypePutFluencyTrialsArgs, type RootMutationTypeRateMiniGameArgs, type RootMutationTypeRegisterClientArgs, type RootMutationTypeReportHandsOnProgressArgs, type RootMutationTypeReportMiniGameProgressArgs, type RootMutationTypeReportVideoLessonProgressArgs, type RootMutationTypeRestartFluencySessionArgs, type RootMutationTypeSaveMiniGameStateArgs, type RootMutationTypeSendHeartbeatArgs, type RootMutationTypeSetModeArgs, type RootMutationTypeUpdateSelfFluencyFocusArgs, type RootQueryType, type RootQueryTypeActivityAnswersArgs, type RootQueryTypeAssignmentPlayArgs, type RootQueryTypeFluencyFactProgressStatusesArgs, type RootQueryTypeFluencySessionActivityArgs, type RootQueryTypeFluencySessionArgs, type RootQueryTypeListFluencyFocusesArgs, type RootQueryTypeListFocusAreasArgs, type RootQueryTypeListGroupsArgs, type RootQueryTypeListTeachersArgs, type RootSubscriptionType, type RootSubscriptionTypeActivitySkippedArgs, type RootSubscriptionTypeAssignmentPausedArgs, type RootSubscriptionTypeAssignmentRestartedArgs, type RootSubscriptionTypeAssignmentResumedArgs, type RootSubscriptionTypeAssignmentStoppedArgs, type RuntimeEventInput, SaveMiniGameStateDocument, type SaveMiniGameStateMutation, type SaveMiniGameStateMutationVariables, type Scalars, SendHeartbeatDocument, type SendHeartbeatMutation, type SendHeartbeatMutationVariables, type Subject, type Teacher, type TeacherFocusArea, type TeacherFocusAreasList, type TeacherList, type TeacherUser, type Topic, type TopicList, type UiInput, type User, type Video, graphql, isFragmentReady, makeFragmentData, useFragment };
|