@neutron.co.id/pendidikan-operation 1.10.5-beta.1 → 1.11.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. package/build/index.cjs +2144 -2508
  2. package/build/index.d.ts +166 -442
  3. package/build/index.mjs +2142 -2508
  4. package/package.json +44 -36
package/build/index.d.ts CHANGED
@@ -1,15 +1,44 @@
1
+ import * as _neon_id_operation from '@neon.id/operation';
1
2
  import { Action, Hook } from '@neon.id/operation';
3
+ import { z } from '@neon.id/z';
4
+ import { Maybe, Schema } from '@neutron.co.id/pendidikan-types';
2
5
  import { NStream } from '@neon.id/types';
3
6
 
4
- interface SetSomethingInput {
7
+ interface GetStaffIdInput {
8
+ userId: any;
5
9
  }
6
- interface SetSomethingOutput {
7
- code: number;
10
+ interface GetStaffIdOutput {
11
+ staffId: any;
12
+ branchIds: any;
13
+ }
14
+ interface GetStaffIdMeta {
15
+ }
16
+ declare const getStaffId: Action<"getStaffId", GetStaffIdInput, GetStaffIdOutput, GetStaffIdMeta>;
17
+ type GetStaffIdAction = typeof getStaffId;
18
+
19
+ interface GetStudentIdInput {
20
+ userId: string;
21
+ startedAt: string;
22
+ endedAt: string;
23
+ }
24
+ interface GetStudentIdOutput {
25
+ studentId: string;
26
+ questionCount: number;
27
+ classGroupCount: number;
28
+ classActivityCount: number;
29
+ classAttendanceCount: number;
30
+ classSessionCount: number;
31
+ classConsultationCount: number;
32
+ gradingCount: number;
33
+ gradingRasionalizationCount: number;
34
+ shortInformationSession1: string;
35
+ shortInformationSession2: string;
36
+ shortInformationSession3: string;
8
37
  }
9
- interface SetSomethingMeta {
38
+ interface GetStudentIdMeta {
10
39
  }
11
- declare const setSomething: Action<"setSomething", SetSomethingInput, SetSomethingOutput, SetSomethingMeta>;
12
- type SetSomethingAction = typeof setSomething;
40
+ declare const getStudentId: Action<"getStudentId", GetStudentIdInput, GetStudentIdOutput, GetStudentIdMeta>;
41
+ type GetStudentIdAction = typeof getStudentId;
13
42
 
14
43
  interface PresenceSessionStudentInput {
15
44
  sessionId: string;
@@ -46,44 +75,10 @@ interface SyncCommitmentMeta {
46
75
  declare const syncCommitment: Action<"syncCommitment", SyncCommitmentInput, SyncCommitmentOutput, SyncCommitmentMeta>;
47
76
  type SyncCommitmentAction = typeof syncCommitment;
48
77
 
49
- interface GetStudentIdInput {
50
- userId: string;
51
- startedAt: string;
52
- endedAt: string;
53
- }
54
- interface GetStudentIdOutput {
55
- studentId: string;
56
- questionCount: number;
57
- classGroupCount: number;
58
- classActivityCount: number;
59
- classAttendanceCount: number;
60
- classSessionCount: number;
61
- classConsultationCount: number;
62
- gradingCount: number;
63
- gradingRasionalizationCount: number;
64
- shortInformationSession1: string;
65
- shortInformationSession2: string;
66
- shortInformationSession3: string;
67
- }
68
- interface GetStudentIdMeta {
69
- }
70
- declare const getStudentId: Action<"getStudentId", GetStudentIdInput, GetStudentIdOutput, GetStudentIdMeta>;
71
- type GetStudentIdAction = typeof getStudentId;
72
-
73
- interface GetStaffIdInput {
74
- userId: any;
75
- }
76
- interface GetStaffIdOutput {
77
- staffId: any;
78
- branchIds: any;
79
- }
80
- interface GetStaffIdMeta {
81
- }
82
- declare const getStaffId: Action<"getStaffId", GetStaffIdInput, GetStaffIdOutput, GetStaffIdMeta>;
83
- type GetStaffIdAction = typeof getStaffId;
84
-
85
78
  interface SyncStudentBranchInput {
86
79
  studentId: string;
80
+ branchIds: string[];
81
+ userIds: string[];
87
82
  }
88
83
  interface SyncStudentBranchOutput {
89
84
  code: number;
@@ -93,19 +88,18 @@ interface SyncStudentBranchMeta {
93
88
  declare const syncStudentBranch: Action<"syncStudentBranch", SyncStudentBranchInput, SyncStudentBranchOutput, SyncStudentBranchMeta>;
94
89
  type SyncStudentBranchAction = typeof syncStudentBranch;
95
90
 
96
- interface PrepareConflictInput {
97
- userId: string;
91
+ interface SyncStudentInformationInput {
92
+ studentId: string;
98
93
  startedAt: string;
99
94
  endedAt: string;
100
95
  }
101
- interface PrepareConflictOutput {
102
- id: string | undefined;
103
- sessionConflict: any;
96
+ interface SyncStudentInformationOutput {
97
+ code: number;
104
98
  }
105
- interface PrepareConflictMeta {
99
+ interface SyncStudentInformationMeta {
106
100
  }
107
- declare const prepareConflict: Action<"prepareConflict", PrepareConflictInput, PrepareConflictOutput, PrepareConflictMeta>;
108
- type PrepareConflictAction = typeof prepareConflict;
101
+ declare const syncStudentInformation: Action<"syncStudentInformation", SyncStudentInformationInput, SyncStudentInformationOutput, SyncStudentInformationMeta>;
102
+ type SyncStudentInformationAction = typeof syncStudentInformation;
109
103
 
110
104
  interface AllConflictInput {
111
105
  startedAt: string;
@@ -122,6 +116,26 @@ interface AllConflictMeta {
122
116
  declare const allConflict: Action<"allConflict", AllConflictInput, AllConflictOutput, AllConflictMeta>;
123
117
  type AllConflictAction = typeof allConflict;
124
118
 
119
+ interface ClassSessionInventoryOccursInput {
120
+ classSessionId: string;
121
+ }
122
+ interface ClassSessionInventoryOccursOutput {
123
+ }
124
+ interface ClassSessionInventoryOccursMeta {
125
+ }
126
+ declare const classSessionInventoryOccurs: Action<"classSessionInventoryOccurs", ClassSessionInventoryOccursInput, ClassSessionInventoryOccursOutput, ClassSessionInventoryOccursMeta>;
127
+ type ClassSessionInventoryOccursAction = typeof classSessionInventoryOccurs;
128
+
129
+ interface ClassSessionInventoryPreparationInput {
130
+ classSessionId: string;
131
+ }
132
+ interface ClassSessionInventoryPreparationOutput {
133
+ }
134
+ interface ClassSessionInventoryPreparationMeta {
135
+ }
136
+ declare const classSessionInventoryPreparation: Action<"classSessionInventoryPreparation", ClassSessionInventoryPreparationInput, ClassSessionInventoryPreparationOutput, ClassSessionInventoryPreparationMeta>;
137
+ type ClassSessionInventoryPreparationAction = typeof classSessionInventoryPreparation;
138
+
125
139
  interface CreateManySessionInput {
126
140
  groupId: string;
127
141
  frequency: number;
@@ -136,6 +150,20 @@ interface CreateManySessionMeta {
136
150
  declare const createManySession: Action<"createManySession", CreateManySessionInput, CreateManySessionOutput, CreateManySessionMeta>;
137
151
  type CreateManySessionAction = typeof createManySession;
138
152
 
153
+ interface PrepareConflictInput {
154
+ userId: string;
155
+ startedAt: string;
156
+ endedAt: string;
157
+ }
158
+ interface PrepareConflictOutput {
159
+ id: string | undefined;
160
+ sessionConflict: any;
161
+ }
162
+ interface PrepareConflictMeta {
163
+ }
164
+ declare const prepareConflict: Action<"prepareConflict", PrepareConflictInput, PrepareConflictOutput, PrepareConflictMeta>;
165
+ type PrepareConflictAction = typeof prepareConflict;
166
+
139
167
  interface UserCountStatsInput {
140
168
  userId: string;
141
169
  startedAt: string;
@@ -152,25 +180,40 @@ interface UserCountStatsMeta {
152
180
  declare const userCountStats: Action<"userCountStats", UserCountStatsInput, UserCountStatsOutput, UserCountStatsMeta>;
153
181
  type UserCountStatsAction = typeof userCountStats;
154
182
 
155
- interface ClassSessionInventoryOccursInput {
156
- classSessionId: string;
183
+ interface GetGradingCountInput {
184
+ userId: any;
157
185
  }
158
- interface ClassSessionInventoryOccursOutput {
186
+ interface GetGradingCountOutput {
187
+ gradingCount: any;
159
188
  }
160
- interface ClassSessionInventoryOccursMeta {
189
+ interface GetGradingCountMeta {
161
190
  }
162
- declare const classSessionInventoryOccurs: Action<"classSessionInventoryOccurs", ClassSessionInventoryOccursInput, ClassSessionInventoryOccursOutput, ClassSessionInventoryOccursMeta>;
163
- type ClassSessionInventoryOccursAction = typeof classSessionInventoryOccurs;
191
+ declare const getGradingCount: Action<"getGradingCount", GetGradingCountInput, GetGradingCountOutput, GetGradingCountMeta>;
192
+ type GetGradingCountAction = typeof getGradingCount;
164
193
 
165
- interface ClassSessionInventoryPreparationInput {
166
- classSessionId: string;
194
+ declare const PrepareExperienceSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
195
+
196
+ type PrepareExperienceInput = z.parse<typeof PrepareExperienceSchema>;
197
+ interface PrepareExperienceOutput {
198
+ student?: Maybe<Schema.Student>;
199
+ teacher?: Maybe<Schema.Teacher>;
200
+ staff?: Maybe<Schema.Staff>;
167
201
  }
168
- interface ClassSessionInventoryPreparationOutput {
202
+ interface PrepareExperienceMeta {
169
203
  }
170
- interface ClassSessionInventoryPreparationMeta {
204
+ declare const prepareExperience: Action<"prepareExperience", {}, PrepareExperienceOutput, PrepareExperienceMeta>;
205
+ type PrepareExperienceAction = typeof prepareExperience;
206
+
207
+ interface AddManyGradingComponentInput {
208
+ gradingId: string;
171
209
  }
172
- declare const classSessionInventoryPreparation: Action<"classSessionInventoryPreparation", ClassSessionInventoryPreparationInput, ClassSessionInventoryPreparationOutput, ClassSessionInventoryPreparationMeta>;
173
- type ClassSessionInventoryPreparationAction = typeof classSessionInventoryPreparation;
210
+ interface AddManyGradingComponentOutput {
211
+ code: number;
212
+ }
213
+ interface AddManyGradingComponentMeta {
214
+ }
215
+ declare const addManyGradingComponent: Action<"addManyGradingComponent", AddManyGradingComponentInput, AddManyGradingComponentOutput, AddManyGradingComponentMeta>;
216
+ type AddManyGradingComponentAction = typeof addManyGradingComponent;
174
217
 
175
218
  interface CalculateGradingInput {
176
219
  gradingInsertId: string;
@@ -303,17 +346,6 @@ interface UpdateGradingAndScoresMeta {
303
346
  declare const updateGradingAndScores: Action<"updateGradingAndScores", UpdateGradingAndScoresInput, UpdateGradingAndScoresOutput, UpdateGradingAndScoresMeta>;
304
347
  type UpdateGradingAndScoresAction = typeof updateGradingAndScores;
305
348
 
306
- interface AddManyGradingComponentInput {
307
- gradingId: string;
308
- }
309
- interface AddManyGradingComponentOutput {
310
- code: number;
311
- }
312
- interface AddManyGradingComponentMeta {
313
- }
314
- declare const addManyGradingComponent: Action<"addManyGradingComponent", AddManyGradingComponentInput, AddManyGradingComponentOutput, AddManyGradingComponentMeta>;
315
- type AddManyGradingComponentAction = typeof addManyGradingComponent;
316
-
317
349
  interface AcceptQuestionInput {
318
350
  questionId: string;
319
351
  }
@@ -336,27 +368,27 @@ interface EditAnswerMeta {
336
368
  declare const editAnswer: Action<"editAnswer", EditAnswerInput, EditAnswerOutput, EditAnswerMeta>;
337
369
  type EditAnswerAction = typeof editAnswer;
338
370
 
339
- interface SendAnswerInput {
340
- questionId: string;
371
+ interface GetQuestionCountInput {
372
+ userId: any;
341
373
  }
342
- interface SendAnswerOutput {
343
- code: number;
374
+ interface GetQuestionCountOutput {
375
+ questionCount: any;
344
376
  }
345
- interface SendAnswerMeta {
377
+ interface GetQuestionCountMeta {
346
378
  }
347
- declare const sendAnswer: Action<"sendAnswer", SendAnswerInput, SendAnswerOutput, SendAnswerMeta>;
348
- type SendAnswerAction = typeof sendAnswer;
379
+ declare const getQuestionCount: Action<"getQuestionCount", GetQuestionCountInput, GetQuestionCountOutput, GetQuestionCountMeta>;
380
+ type GetQuestionCountAction = typeof getQuestionCount;
349
381
 
350
- interface SendQuestionInput {
382
+ interface HasUnderstandInput {
351
383
  questionId: string;
352
384
  }
353
- interface SendQuestionOutput {
385
+ interface HasUnderstandOutput {
354
386
  code: number;
355
387
  }
356
- interface SendQuestionMeta {
388
+ interface HasUnderstandMeta {
357
389
  }
358
- declare const sendQuestion: Action<"sendQuestion", SendQuestionInput, SendQuestionOutput, SendQuestionMeta>;
359
- type SendQuestionAction = typeof sendQuestion;
390
+ declare const hasUnderstand: Action<"hasUnderstand", HasUnderstandInput, HasUnderstandOutput, HasUnderstandMeta>;
391
+ type HasUnderstandAction = typeof hasUnderstand;
360
392
 
361
393
  interface NotUnderstandInput {
362
394
  questionId: string;
@@ -369,372 +401,64 @@ interface NotUnderstandMeta {
369
401
  declare const notUnderstand: Action<"notUnderstand", NotUnderstandInput, NotUnderstandOutput, NotUnderstandMeta>;
370
402
  type NotUnderstandAction = typeof notUnderstand;
371
403
 
372
- interface HasUnderstandInput {
404
+ interface SendAnswerInput {
373
405
  questionId: string;
374
406
  }
375
- interface HasUnderstandOutput {
407
+ interface SendAnswerOutput {
376
408
  code: number;
377
409
  }
378
- interface HasUnderstandMeta {
379
- }
380
- declare const hasUnderstand: Action<"hasUnderstand", HasUnderstandInput, HasUnderstandOutput, HasUnderstandMeta>;
381
- type HasUnderstandAction = typeof hasUnderstand;
382
-
383
- interface GetQuestionCountInput {
384
- userId: any;
385
- }
386
- interface GetQuestionCountOutput {
387
- questionCount: any;
388
- }
389
- interface GetQuestionCountMeta {
410
+ interface SendAnswerMeta {
390
411
  }
391
- declare const getQuestionCount: Action<"getQuestionCount", GetQuestionCountInput, GetQuestionCountOutput, GetQuestionCountMeta>;
392
- type GetQuestionCountAction = typeof getQuestionCount;
412
+ declare const sendAnswer: Action<"sendAnswer", SendAnswerInput, SendAnswerOutput, SendAnswerMeta>;
413
+ type SendAnswerAction = typeof sendAnswer;
393
414
 
394
- interface GetGradingCountInput {
395
- userId: any;
396
- }
397
- interface GetGradingCountOutput {
398
- gradingCount: any;
415
+ interface SendQuestionInput {
416
+ questionId: string;
399
417
  }
400
- interface GetGradingCountMeta {
418
+ interface SendQuestionOutput {
419
+ code: number;
401
420
  }
402
- declare const getGradingCount: Action<"getGradingCount", GetGradingCountInput, GetGradingCountOutput, GetGradingCountMeta>;
403
- type GetGradingCountAction = typeof getGradingCount;
404
-
405
- type index_AcceptQuestionAction = AcceptQuestionAction;
406
- type index_AcceptQuestionInput = AcceptQuestionInput;
407
- type index_AcceptQuestionMeta = AcceptQuestionMeta;
408
- type index_AcceptQuestionOutput = AcceptQuestionOutput;
409
- type index_AddManyGradingComponentAction = AddManyGradingComponentAction;
410
- type index_AddManyGradingComponentInput = AddManyGradingComponentInput;
411
- type index_AddManyGradingComponentMeta = AddManyGradingComponentMeta;
412
- type index_AddManyGradingComponentOutput = AddManyGradingComponentOutput;
413
- type index_AllConflictAction = AllConflictAction;
414
- type index_AllConflictInput = AllConflictInput;
415
- type index_AllConflictMeta = AllConflictMeta;
416
- type index_AllConflictOutput = AllConflictOutput;
417
- type index_CalculateGradingAction = CalculateGradingAction;
418
- type index_CalculateGradingInput = CalculateGradingInput;
419
- type index_CalculateGradingMeta = CalculateGradingMeta;
420
- type index_CalculateGradingOutput = CalculateGradingOutput;
421
- type index_CalculateManyComparatorAction = CalculateManyComparatorAction;
422
- type index_CalculateManyComparatorInput = CalculateManyComparatorInput;
423
- type index_CalculateManyComparatorMeta = CalculateManyComparatorMeta;
424
- type index_CalculateManyComparatorOutput = CalculateManyComparatorOutput;
425
- type index_CalculateOneComparatorAction = CalculateOneComparatorAction;
426
- type index_CalculateOneComparatorInput = CalculateOneComparatorInput;
427
- type index_CalculateOneComparatorMeta = CalculateOneComparatorMeta;
428
- type index_CalculateOneComparatorOutput = CalculateOneComparatorOutput;
429
- type index_ClassSessionInventoryOccursAction = ClassSessionInventoryOccursAction;
430
- type index_ClassSessionInventoryOccursInput = ClassSessionInventoryOccursInput;
431
- type index_ClassSessionInventoryOccursMeta = ClassSessionInventoryOccursMeta;
432
- type index_ClassSessionInventoryOccursOutput = ClassSessionInventoryOccursOutput;
433
- type index_ClassSessionInventoryPreparationAction = ClassSessionInventoryPreparationAction;
434
- type index_ClassSessionInventoryPreparationInput = ClassSessionInventoryPreparationInput;
435
- type index_ClassSessionInventoryPreparationMeta = ClassSessionInventoryPreparationMeta;
436
- type index_ClassSessionInventoryPreparationOutput = ClassSessionInventoryPreparationOutput;
437
- type index_ClearAllOverridesAction = ClearAllOverridesAction;
438
- type index_ClearAllOverridesInput = ClearAllOverridesInput;
439
- type index_ClearAllOverridesMeta = ClearAllOverridesMeta;
440
- type index_ClearAllOverridesOutput = ClearAllOverridesOutput;
441
- type index_ClearGradingAction = ClearGradingAction;
442
- type index_ClearGradingInput = ClearGradingInput;
443
- type index_ClearGradingMeta = ClearGradingMeta;
444
- type index_ClearGradingOutput = ClearGradingOutput;
445
- type index_ClearOneOverridesAction = ClearOneOverridesAction;
446
- type index_ClearOneOverridesInput = ClearOneOverridesInput;
447
- type index_ClearOneOverridesMeta = ClearOneOverridesMeta;
448
- type index_ClearOneOverridesOutput = ClearOneOverridesOutput;
449
- type index_CreateGradingAndScoresAction = CreateGradingAndScoresAction;
450
- type index_CreateGradingAndScoresInput = CreateGradingAndScoresInput;
451
- type index_CreateGradingAndScoresMeta = CreateGradingAndScoresMeta;
452
- type index_CreateGradingAndScoresOutput = CreateGradingAndScoresOutput;
453
- type index_CreateManySessionAction = CreateManySessionAction;
454
- type index_CreateManySessionInput = CreateManySessionInput;
455
- type index_CreateManySessionMeta = CreateManySessionMeta;
456
- type index_CreateManySessionOutput = CreateManySessionOutput;
457
- type index_EditAnswerAction = EditAnswerAction;
458
- type index_EditAnswerInput = EditAnswerInput;
459
- type index_EditAnswerMeta = EditAnswerMeta;
460
- type index_EditAnswerOutput = EditAnswerOutput;
461
- type index_GenerateGradingAction = GenerateGradingAction;
462
- type index_GenerateGradingInput = GenerateGradingInput;
463
- type index_GenerateGradingMeta = GenerateGradingMeta;
464
- type index_GenerateGradingOutput = GenerateGradingOutput;
465
- type index_GetGradingCountAction = GetGradingCountAction;
466
- type index_GetGradingCountInput = GetGradingCountInput;
467
- type index_GetGradingCountMeta = GetGradingCountMeta;
468
- type index_GetGradingCountOutput = GetGradingCountOutput;
469
- type index_GetQuestionCountAction = GetQuestionCountAction;
470
- type index_GetQuestionCountInput = GetQuestionCountInput;
471
- type index_GetQuestionCountMeta = GetQuestionCountMeta;
472
- type index_GetQuestionCountOutput = GetQuestionCountOutput;
473
- type index_GetStaffIdAction = GetStaffIdAction;
474
- type index_GetStaffIdInput = GetStaffIdInput;
475
- type index_GetStaffIdMeta = GetStaffIdMeta;
476
- type index_GetStaffIdOutput = GetStaffIdOutput;
477
- type index_GetStudentIdAction = GetStudentIdAction;
478
- type index_GetStudentIdInput = GetStudentIdInput;
479
- type index_GetStudentIdMeta = GetStudentIdMeta;
480
- type index_GetStudentIdOutput = GetStudentIdOutput;
481
- type index_GradingComparator = GradingComparator;
482
- type index_GradingComparatorComparison = GradingComparatorComparison;
483
- type index_HasUnderstandAction = HasUnderstandAction;
484
- type index_HasUnderstandInput = HasUnderstandInput;
485
- type index_HasUnderstandMeta = HasUnderstandMeta;
486
- type index_HasUnderstandOutput = HasUnderstandOutput;
487
- type index_NotUnderstandAction = NotUnderstandAction;
488
- type index_NotUnderstandInput = NotUnderstandInput;
489
- type index_NotUnderstandMeta = NotUnderstandMeta;
490
- type index_NotUnderstandOutput = NotUnderstandOutput;
491
- type index_PrepareConflictAction = PrepareConflictAction;
492
- type index_PrepareConflictInput = PrepareConflictInput;
493
- type index_PrepareConflictMeta = PrepareConflictMeta;
494
- type index_PrepareConflictOutput = PrepareConflictOutput;
495
- type index_PresenceSessionStudentAction = PresenceSessionStudentAction;
496
- type index_PresenceSessionStudentInput = PresenceSessionStudentInput;
497
- type index_PresenceSessionStudentMeta = PresenceSessionStudentMeta;
498
- type index_PresenceSessionStudentOutput = PresenceSessionStudentOutput;
499
- type index_PresenceSessionTeacherAction = PresenceSessionTeacherAction;
500
- type index_PresenceSessionTeacherInput = PresenceSessionTeacherInput;
501
- type index_PresenceSessionTeacherMeta = PresenceSessionTeacherMeta;
502
- type index_PresenceSessionTeacherOutput = PresenceSessionTeacherOutput;
503
- type index_RasionalizeGradingAction = RasionalizeGradingAction;
504
- type index_RasionalizeGradingInput = RasionalizeGradingInput;
505
- type index_RasionalizeGradingMeta = RasionalizeGradingMeta;
506
- type index_RasionalizeGradingOutput = RasionalizeGradingOutput;
507
- type index_SendAnswerAction = SendAnswerAction;
508
- type index_SendAnswerInput = SendAnswerInput;
509
- type index_SendAnswerMeta = SendAnswerMeta;
510
- type index_SendAnswerOutput = SendAnswerOutput;
511
- type index_SendQuestionAction = SendQuestionAction;
512
- type index_SendQuestionInput = SendQuestionInput;
513
- type index_SendQuestionMeta = SendQuestionMeta;
514
- type index_SendQuestionOutput = SendQuestionOutput;
515
- type index_SetSomethingAction = SetSomethingAction;
516
- type index_SetSomethingInput = SetSomethingInput;
517
- type index_SetSomethingMeta = SetSomethingMeta;
518
- type index_SetSomethingOutput = SetSomethingOutput;
519
- type index_SyncCommitmentAction = SyncCommitmentAction;
520
- type index_SyncCommitmentInput = SyncCommitmentInput;
521
- type index_SyncCommitmentMeta = SyncCommitmentMeta;
522
- type index_SyncCommitmentOutput = SyncCommitmentOutput;
523
- type index_SyncStudentBranchAction = SyncStudentBranchAction;
524
- type index_SyncStudentBranchInput = SyncStudentBranchInput;
525
- type index_SyncStudentBranchMeta = SyncStudentBranchMeta;
526
- type index_SyncStudentBranchOutput = SyncStudentBranchOutput;
527
- type index_UpdateGradingAndScoresAction = UpdateGradingAndScoresAction;
528
- type index_UpdateGradingAndScoresInput = UpdateGradingAndScoresInput;
529
- type index_UpdateGradingAndScoresMeta = UpdateGradingAndScoresMeta;
530
- type index_UpdateGradingAndScoresOutput = UpdateGradingAndScoresOutput;
531
- type index_UserCountStatsAction = UserCountStatsAction;
532
- type index_UserCountStatsInput = UserCountStatsInput;
533
- type index_UserCountStatsMeta = UserCountStatsMeta;
534
- type index_UserCountStatsOutput = UserCountStatsOutput;
535
- declare const index__calculateComparison: typeof _calculateComparison;
536
- declare const index_acceptQuestion: typeof acceptQuestion;
537
- declare const index_addManyGradingComponent: typeof addManyGradingComponent;
538
- declare const index_allConflict: typeof allConflict;
539
- declare const index_calculateGrading: typeof calculateGrading;
540
- declare const index_calculateManyComparator: typeof calculateManyComparator;
541
- declare const index_calculateOneComparator: typeof calculateOneComparator;
542
- declare const index_classSessionInventoryOccurs: typeof classSessionInventoryOccurs;
543
- declare const index_classSessionInventoryPreparation: typeof classSessionInventoryPreparation;
544
- declare const index_clearAllOverrides: typeof clearAllOverrides;
545
- declare const index_clearGrading: typeof clearGrading;
546
- declare const index_clearOneOverrides: typeof clearOneOverrides;
547
- declare const index_createGradingAndScores: typeof createGradingAndScores;
548
- declare const index_createManySession: typeof createManySession;
549
- declare const index_editAnswer: typeof editAnswer;
550
- declare const index_generateGrading: typeof generateGrading;
551
- declare const index_getGradingCount: typeof getGradingCount;
552
- declare const index_getQuestionCount: typeof getQuestionCount;
553
- declare const index_getStaffId: typeof getStaffId;
554
- declare const index_getStudentId: typeof getStudentId;
555
- declare const index_hasUnderstand: typeof hasUnderstand;
556
- declare const index_notUnderstand: typeof notUnderstand;
557
- declare const index_prepareConflict: typeof prepareConflict;
558
- declare const index_presenceSessionStudent: typeof presenceSessionStudent;
559
- declare const index_presenceSessionTeacher: typeof presenceSessionTeacher;
560
- declare const index_rasionalizeGrading: typeof rasionalizeGrading;
561
- declare const index_sendAnswer: typeof sendAnswer;
562
- declare const index_sendQuestion: typeof sendQuestion;
563
- declare const index_setSomething: typeof setSomething;
564
- declare const index_syncCommitment: typeof syncCommitment;
565
- declare const index_syncModel: typeof syncModel;
566
- declare const index_syncStudentBranch: typeof syncStudentBranch;
567
- declare const index_updateGradingAndScores: typeof updateGradingAndScores;
568
- declare const index_userCountStats: typeof userCountStats;
569
- declare namespace index {
570
- export {
571
- index_AcceptQuestionAction as AcceptQuestionAction,
572
- index_AcceptQuestionInput as AcceptQuestionInput,
573
- index_AcceptQuestionMeta as AcceptQuestionMeta,
574
- index_AcceptQuestionOutput as AcceptQuestionOutput,
575
- index_AddManyGradingComponentAction as AddManyGradingComponentAction,
576
- index_AddManyGradingComponentInput as AddManyGradingComponentInput,
577
- index_AddManyGradingComponentMeta as AddManyGradingComponentMeta,
578
- index_AddManyGradingComponentOutput as AddManyGradingComponentOutput,
579
- index_AllConflictAction as AllConflictAction,
580
- index_AllConflictInput as AllConflictInput,
581
- index_AllConflictMeta as AllConflictMeta,
582
- index_AllConflictOutput as AllConflictOutput,
583
- index_CalculateGradingAction as CalculateGradingAction,
584
- index_CalculateGradingInput as CalculateGradingInput,
585
- index_CalculateGradingMeta as CalculateGradingMeta,
586
- index_CalculateGradingOutput as CalculateGradingOutput,
587
- index_CalculateManyComparatorAction as CalculateManyComparatorAction,
588
- index_CalculateManyComparatorInput as CalculateManyComparatorInput,
589
- index_CalculateManyComparatorMeta as CalculateManyComparatorMeta,
590
- index_CalculateManyComparatorOutput as CalculateManyComparatorOutput,
591
- index_CalculateOneComparatorAction as CalculateOneComparatorAction,
592
- index_CalculateOneComparatorInput as CalculateOneComparatorInput,
593
- index_CalculateOneComparatorMeta as CalculateOneComparatorMeta,
594
- index_CalculateOneComparatorOutput as CalculateOneComparatorOutput,
595
- index_ClassSessionInventoryOccursAction as ClassSessionInventoryOccursAction,
596
- index_ClassSessionInventoryOccursInput as ClassSessionInventoryOccursInput,
597
- index_ClassSessionInventoryOccursMeta as ClassSessionInventoryOccursMeta,
598
- index_ClassSessionInventoryOccursOutput as ClassSessionInventoryOccursOutput,
599
- index_ClassSessionInventoryPreparationAction as ClassSessionInventoryPreparationAction,
600
- index_ClassSessionInventoryPreparationInput as ClassSessionInventoryPreparationInput,
601
- index_ClassSessionInventoryPreparationMeta as ClassSessionInventoryPreparationMeta,
602
- index_ClassSessionInventoryPreparationOutput as ClassSessionInventoryPreparationOutput,
603
- index_ClearAllOverridesAction as ClearAllOverridesAction,
604
- index_ClearAllOverridesInput as ClearAllOverridesInput,
605
- index_ClearAllOverridesMeta as ClearAllOverridesMeta,
606
- index_ClearAllOverridesOutput as ClearAllOverridesOutput,
607
- index_ClearGradingAction as ClearGradingAction,
608
- index_ClearGradingInput as ClearGradingInput,
609
- index_ClearGradingMeta as ClearGradingMeta,
610
- index_ClearGradingOutput as ClearGradingOutput,
611
- index_ClearOneOverridesAction as ClearOneOverridesAction,
612
- index_ClearOneOverridesInput as ClearOneOverridesInput,
613
- index_ClearOneOverridesMeta as ClearOneOverridesMeta,
614
- index_ClearOneOverridesOutput as ClearOneOverridesOutput,
615
- index_CreateGradingAndScoresAction as CreateGradingAndScoresAction,
616
- index_CreateGradingAndScoresInput as CreateGradingAndScoresInput,
617
- index_CreateGradingAndScoresMeta as CreateGradingAndScoresMeta,
618
- index_CreateGradingAndScoresOutput as CreateGradingAndScoresOutput,
619
- index_CreateManySessionAction as CreateManySessionAction,
620
- index_CreateManySessionInput as CreateManySessionInput,
621
- index_CreateManySessionMeta as CreateManySessionMeta,
622
- index_CreateManySessionOutput as CreateManySessionOutput,
623
- index_EditAnswerAction as EditAnswerAction,
624
- index_EditAnswerInput as EditAnswerInput,
625
- index_EditAnswerMeta as EditAnswerMeta,
626
- index_EditAnswerOutput as EditAnswerOutput,
627
- index_GenerateGradingAction as GenerateGradingAction,
628
- index_GenerateGradingInput as GenerateGradingInput,
629
- index_GenerateGradingMeta as GenerateGradingMeta,
630
- index_GenerateGradingOutput as GenerateGradingOutput,
631
- index_GetGradingCountAction as GetGradingCountAction,
632
- index_GetGradingCountInput as GetGradingCountInput,
633
- index_GetGradingCountMeta as GetGradingCountMeta,
634
- index_GetGradingCountOutput as GetGradingCountOutput,
635
- index_GetQuestionCountAction as GetQuestionCountAction,
636
- index_GetQuestionCountInput as GetQuestionCountInput,
637
- index_GetQuestionCountMeta as GetQuestionCountMeta,
638
- index_GetQuestionCountOutput as GetQuestionCountOutput,
639
- index_GetStaffIdAction as GetStaffIdAction,
640
- index_GetStaffIdInput as GetStaffIdInput,
641
- index_GetStaffIdMeta as GetStaffIdMeta,
642
- index_GetStaffIdOutput as GetStaffIdOutput,
643
- index_GetStudentIdAction as GetStudentIdAction,
644
- index_GetStudentIdInput as GetStudentIdInput,
645
- index_GetStudentIdMeta as GetStudentIdMeta,
646
- index_GetStudentIdOutput as GetStudentIdOutput,
647
- index_GradingComparator as GradingComparator,
648
- index_GradingComparatorComparison as GradingComparatorComparison,
649
- index_HasUnderstandAction as HasUnderstandAction,
650
- index_HasUnderstandInput as HasUnderstandInput,
651
- index_HasUnderstandMeta as HasUnderstandMeta,
652
- index_HasUnderstandOutput as HasUnderstandOutput,
653
- index_NotUnderstandAction as NotUnderstandAction,
654
- index_NotUnderstandInput as NotUnderstandInput,
655
- index_NotUnderstandMeta as NotUnderstandMeta,
656
- index_NotUnderstandOutput as NotUnderstandOutput,
657
- index_PrepareConflictAction as PrepareConflictAction,
658
- index_PrepareConflictInput as PrepareConflictInput,
659
- index_PrepareConflictMeta as PrepareConflictMeta,
660
- index_PrepareConflictOutput as PrepareConflictOutput,
661
- index_PresenceSessionStudentAction as PresenceSessionStudentAction,
662
- index_PresenceSessionStudentInput as PresenceSessionStudentInput,
663
- index_PresenceSessionStudentMeta as PresenceSessionStudentMeta,
664
- index_PresenceSessionStudentOutput as PresenceSessionStudentOutput,
665
- index_PresenceSessionTeacherAction as PresenceSessionTeacherAction,
666
- index_PresenceSessionTeacherInput as PresenceSessionTeacherInput,
667
- index_PresenceSessionTeacherMeta as PresenceSessionTeacherMeta,
668
- index_PresenceSessionTeacherOutput as PresenceSessionTeacherOutput,
669
- index_RasionalizeGradingAction as RasionalizeGradingAction,
670
- index_RasionalizeGradingInput as RasionalizeGradingInput,
671
- index_RasionalizeGradingMeta as RasionalizeGradingMeta,
672
- index_RasionalizeGradingOutput as RasionalizeGradingOutput,
673
- index_SendAnswerAction as SendAnswerAction,
674
- index_SendAnswerInput as SendAnswerInput,
675
- index_SendAnswerMeta as SendAnswerMeta,
676
- index_SendAnswerOutput as SendAnswerOutput,
677
- index_SendQuestionAction as SendQuestionAction,
678
- index_SendQuestionInput as SendQuestionInput,
679
- index_SendQuestionMeta as SendQuestionMeta,
680
- index_SendQuestionOutput as SendQuestionOutput,
681
- index_SetSomethingAction as SetSomethingAction,
682
- index_SetSomethingInput as SetSomethingInput,
683
- index_SetSomethingMeta as SetSomethingMeta,
684
- index_SetSomethingOutput as SetSomethingOutput,
685
- index_SyncCommitmentAction as SyncCommitmentAction,
686
- index_SyncCommitmentInput as SyncCommitmentInput,
687
- index_SyncCommitmentMeta as SyncCommitmentMeta,
688
- index_SyncCommitmentOutput as SyncCommitmentOutput,
689
- index_SyncStudentBranchAction as SyncStudentBranchAction,
690
- index_SyncStudentBranchInput as SyncStudentBranchInput,
691
- index_SyncStudentBranchMeta as SyncStudentBranchMeta,
692
- index_SyncStudentBranchOutput as SyncStudentBranchOutput,
693
- index_UpdateGradingAndScoresAction as UpdateGradingAndScoresAction,
694
- index_UpdateGradingAndScoresInput as UpdateGradingAndScoresInput,
695
- index_UpdateGradingAndScoresMeta as UpdateGradingAndScoresMeta,
696
- index_UpdateGradingAndScoresOutput as UpdateGradingAndScoresOutput,
697
- index_UserCountStatsAction as UserCountStatsAction,
698
- index_UserCountStatsInput as UserCountStatsInput,
699
- index_UserCountStatsMeta as UserCountStatsMeta,
700
- index_UserCountStatsOutput as UserCountStatsOutput,
701
- index__calculateComparison as _calculateComparison,
702
- index_acceptQuestion as acceptQuestion,
703
- index_addManyGradingComponent as addManyGradingComponent,
704
- index_allConflict as allConflict,
705
- index_calculateGrading as calculateGrading,
706
- index_calculateManyComparator as calculateManyComparator,
707
- index_calculateOneComparator as calculateOneComparator,
708
- index_classSessionInventoryOccurs as classSessionInventoryOccurs,
709
- index_classSessionInventoryPreparation as classSessionInventoryPreparation,
710
- index_clearAllOverrides as clearAllOverrides,
711
- index_clearGrading as clearGrading,
712
- index_clearOneOverrides as clearOneOverrides,
713
- index_createGradingAndScores as createGradingAndScores,
714
- index_createManySession as createManySession,
715
- index_editAnswer as editAnswer,
716
- index_generateGrading as generateGrading,
717
- index_getGradingCount as getGradingCount,
718
- index_getQuestionCount as getQuestionCount,
719
- index_getStaffId as getStaffId,
720
- index_getStudentId as getStudentId,
721
- index_hasUnderstand as hasUnderstand,
722
- index_notUnderstand as notUnderstand,
723
- index_prepareConflict as prepareConflict,
724
- index_presenceSessionStudent as presenceSessionStudent,
725
- index_presenceSessionTeacher as presenceSessionTeacher,
726
- index_rasionalizeGrading as rasionalizeGrading,
727
- index_sendAnswer as sendAnswer,
728
- index_sendQuestion as sendQuestion,
729
- index_setSomething as setSomething,
730
- index_syncCommitment as syncCommitment,
731
- index_syncModel as syncModel,
732
- index_syncStudentBranch as syncStudentBranch,
733
- index_updateGradingAndScores as updateGradingAndScores,
734
- index_userCountStats as userCountStats,
735
- };
421
+ interface SendQuestionMeta {
736
422
  }
423
+ declare const sendQuestion: Action<"sendQuestion", SendQuestionInput, SendQuestionOutput, SendQuestionMeta>;
424
+ type SendQuestionAction = typeof sendQuestion;
737
425
 
738
426
  declare function registerOfficePendidikanHooks(hook: Hook): void;
739
427
 
740
- export { AcceptQuestionAction, AcceptQuestionInput, AcceptQuestionMeta, AcceptQuestionOutput, AddManyGradingComponentAction, AddManyGradingComponentInput, AddManyGradingComponentMeta, AddManyGradingComponentOutput, AllConflictAction, AllConflictInput, AllConflictMeta, AllConflictOutput, CalculateGradingAction, CalculateGradingInput, CalculateGradingMeta, CalculateGradingOutput, CalculateManyComparatorAction, CalculateManyComparatorInput, CalculateManyComparatorMeta, CalculateManyComparatorOutput, CalculateOneComparatorAction, CalculateOneComparatorInput, CalculateOneComparatorMeta, CalculateOneComparatorOutput, ClassSessionInventoryOccursAction, ClassSessionInventoryOccursInput, ClassSessionInventoryOccursMeta, ClassSessionInventoryOccursOutput, ClassSessionInventoryPreparationAction, ClassSessionInventoryPreparationInput, ClassSessionInventoryPreparationMeta, ClassSessionInventoryPreparationOutput, ClearAllOverridesAction, ClearAllOverridesInput, ClearAllOverridesMeta, ClearAllOverridesOutput, ClearGradingAction, ClearGradingInput, ClearGradingMeta, ClearGradingOutput, ClearOneOverridesAction, ClearOneOverridesInput, ClearOneOverridesMeta, ClearOneOverridesOutput, CreateGradingAndScoresAction, CreateGradingAndScoresInput, CreateGradingAndScoresMeta, CreateGradingAndScoresOutput, CreateManySessionAction, CreateManySessionInput, CreateManySessionMeta, CreateManySessionOutput, EditAnswerAction, EditAnswerInput, EditAnswerMeta, EditAnswerOutput, GenerateGradingAction, GenerateGradingInput, GenerateGradingMeta, GenerateGradingOutput, GetGradingCountAction, GetGradingCountInput, GetGradingCountMeta, GetGradingCountOutput, GetQuestionCountAction, GetQuestionCountInput, GetQuestionCountMeta, GetQuestionCountOutput, GetStaffIdAction, GetStaffIdInput, GetStaffIdMeta, GetStaffIdOutput, GetStudentIdAction, GetStudentIdInput, GetStudentIdMeta, GetStudentIdOutput, GradingComparator, GradingComparatorComparison, HasUnderstandAction, HasUnderstandInput, HasUnderstandMeta, HasUnderstandOutput, NotUnderstandAction, NotUnderstandInput, NotUnderstandMeta, NotUnderstandOutput, PrepareConflictAction, PrepareConflictInput, PrepareConflictMeta, PrepareConflictOutput, PresenceSessionStudentAction, PresenceSessionStudentInput, PresenceSessionStudentMeta, PresenceSessionStudentOutput, PresenceSessionTeacherAction, PresenceSessionTeacherInput, PresenceSessionTeacherMeta, PresenceSessionTeacherOutput, RasionalizeGradingAction, RasionalizeGradingInput, RasionalizeGradingMeta, RasionalizeGradingOutput, SendAnswerAction, SendAnswerInput, SendAnswerMeta, SendAnswerOutput, SendQuestionAction, SendQuestionInput, SendQuestionMeta, SendQuestionOutput, SetSomethingAction, SetSomethingInput, SetSomethingMeta, SetSomethingOutput, SyncCommitmentAction, SyncCommitmentInput, SyncCommitmentMeta, SyncCommitmentOutput, SyncStudentBranchAction, SyncStudentBranchInput, SyncStudentBranchMeta, SyncStudentBranchOutput, UpdateGradingAndScoresAction, UpdateGradingAndScoresInput, UpdateGradingAndScoresMeta, UpdateGradingAndScoresOutput, UserCountStatsAction, UserCountStatsInput, UserCountStatsMeta, UserCountStatsOutput, _calculateComparison, acceptQuestion, index as actions, addManyGradingComponent, allConflict, calculateGrading, calculateManyComparator, calculateOneComparator, classSessionInventoryOccurs, classSessionInventoryPreparation, clearAllOverrides, clearGrading, clearOneOverrides, createGradingAndScores, createManySession, editAnswer, generateGrading, getGradingCount, getQuestionCount, getStaffId, getStudentId, hasUnderstand, notUnderstand, prepareConflict, presenceSessionStudent, presenceSessionTeacher, rasionalizeGrading, registerOfficePendidikanHooks, sendAnswer, sendQuestion, setSomething, syncCommitment, syncModel, syncStudentBranch, updateGradingAndScores, userCountStats };
428
+ declare const actions: {
429
+ prepareExperience: _neon_id_operation.Action<"prepareExperience", {}, PrepareExperienceOutput, PrepareExperienceMeta>;
430
+ getStaffId: _neon_id_operation.Action<"getStaffId", GetStaffIdInput, GetStaffIdOutput, GetStaffIdMeta>;
431
+ getStudentId: _neon_id_operation.Action<"getStudentId", GetStudentIdInput, GetStudentIdOutput, GetStudentIdMeta>;
432
+ presenceSessionStudent: _neon_id_operation.Action<"presenceSessionStudent", PresenceSessionStudentInput, PresenceSessionStudentOutput, PresenceSessionStudentMeta>;
433
+ presenceSessionTeacher: _neon_id_operation.Action<"presenceSessionTeacher", PresenceSessionTeacherInput, PresenceSessionTeacherOutput, PresenceSessionTeacherMeta>;
434
+ syncStudentBranch: _neon_id_operation.Action<"syncStudentBranch", SyncStudentBranchInput, SyncStudentBranchOutput, SyncStudentBranchMeta>;
435
+ syncStudentInformation: _neon_id_operation.Action<"syncStudentInformation", SyncStudentInformationInput, SyncStudentInformationOutput, SyncStudentInformationMeta>;
436
+ syncCommitment: _neon_id_operation.Action<"syncCommitment", SyncCommitmentInput, SyncCommitmentOutput, SyncCommitmentMeta>;
437
+ allConflict: _neon_id_operation.Action<"allConflict", AllConflictInput, AllConflictOutput, AllConflictMeta>;
438
+ classSessionInventoryOccurs: _neon_id_operation.Action<"classSessionInventoryOccurs", ClassSessionInventoryOccursInput, ClassSessionInventoryOccursOutput, ClassSessionInventoryOccursMeta>;
439
+ classSessionInventoryPreparation: _neon_id_operation.Action<"classSessionInventoryPreparation", ClassSessionInventoryPreparationInput, ClassSessionInventoryPreparationOutput, ClassSessionInventoryPreparationMeta>;
440
+ createManySession: _neon_id_operation.Action<"createManySession", CreateManySessionInput, CreateManySessionOutput, CreateManySessionMeta>;
441
+ prepareConflict: _neon_id_operation.Action<"prepareConflict", PrepareConflictInput, PrepareConflictOutput, PrepareConflictMeta>;
442
+ userCountStats: _neon_id_operation.Action<"userCountStats", UserCountStatsInput, UserCountStatsOutput, UserCountStatsMeta>;
443
+ getGradingCount: _neon_id_operation.Action<"getGradingCount", GetGradingCountInput, GetGradingCountOutput, GetGradingCountMeta>;
444
+ addManyGradingComponent: _neon_id_operation.Action<"addManyGradingComponent", AddManyGradingComponentInput, AddManyGradingComponentOutput, AddManyGradingComponentMeta>;
445
+ calculateGrading: _neon_id_operation.Action<"calculateGrading", CalculateGradingInput, CalculateGradingOutput, CalculateGradingMeta>;
446
+ calculateManyComparator: _neon_id_operation.Action<"calculateManyComparator", CalculateManyComparatorInput, CalculateManyComparatorOutput, CalculateManyComparatorMeta>;
447
+ calculateOneComparator: _neon_id_operation.Action<"calculateOneComparator", CalculateOneComparatorInput, CalculateOneComparatorOutput, CalculateOneComparatorMeta>;
448
+ clearAllOverrides: _neon_id_operation.Action<"clearAllOverrides", ClearAllOverridesInput, ClearAllOverridesOutput, ClearAllOverridesMeta>;
449
+ clearGrading: _neon_id_operation.Action<"clearGrading", ClearGradingInput, ClearGradingOutput, ClearGradingMeta>;
450
+ clearOneOverrides: _neon_id_operation.Action<"clearOneOverrides", ClearOneOverridesInput, ClearOneOverridesOutput, ClearOneOverridesMeta>;
451
+ createGradingAndScores: _neon_id_operation.Action<"createGradingAndScores", CreateGradingAndScoresInput, CreateGradingAndScoresOutput, CreateGradingAndScoresMeta>;
452
+ generateGrading: _neon_id_operation.Action<"generateGrading", GenerateGradingInput, GenerateGradingOutput, GenerateGradingMeta>;
453
+ rasionalizeGrading: _neon_id_operation.Action<"rasionalizeGrading", RasionalizeGradingInput, RasionalizeGradingOutput, RasionalizeGradingMeta>;
454
+ updateGradingAndScores: _neon_id_operation.Action<"updateGradingAndScores", UpdateGradingAndScoresInput, UpdateGradingAndScoresOutput, UpdateGradingAndScoresMeta>;
455
+ acceptQuestion: _neon_id_operation.Action<"acceptQuestion", AcceptQuestionInput, AcceptQuestionOutput, AcceptQuestionMeta>;
456
+ editAnswer: _neon_id_operation.Action<"editAnswer", EditAnswerInput, EditAnswerOutput, EditAnswerMeta>;
457
+ getQuestionCount: _neon_id_operation.Action<"getQuestionCount", GetQuestionCountInput, GetQuestionCountOutput, GetQuestionCountMeta>;
458
+ hasUnderstand: _neon_id_operation.Action<"hasUnderstand", HasUnderstandInput, HasUnderstandOutput, HasUnderstandMeta>;
459
+ notUnderstand: _neon_id_operation.Action<"notUnderstand", NotUnderstandInput, NotUnderstandOutput, NotUnderstandMeta>;
460
+ sendAnswer: _neon_id_operation.Action<"sendAnswer", SendAnswerInput, SendAnswerOutput, SendAnswerMeta>;
461
+ sendQuestion: _neon_id_operation.Action<"sendQuestion", SendQuestionInput, SendQuestionOutput, SendQuestionMeta>;
462
+ };
463
+
464
+ export { AcceptQuestionAction, AcceptQuestionInput, AcceptQuestionMeta, AcceptQuestionOutput, AddManyGradingComponentAction, AddManyGradingComponentInput, AddManyGradingComponentMeta, AddManyGradingComponentOutput, AllConflictAction, AllConflictInput, AllConflictMeta, AllConflictOutput, CalculateGradingAction, CalculateGradingInput, CalculateGradingMeta, CalculateGradingOutput, CalculateManyComparatorAction, CalculateManyComparatorInput, CalculateManyComparatorMeta, CalculateManyComparatorOutput, CalculateOneComparatorAction, CalculateOneComparatorInput, CalculateOneComparatorMeta, CalculateOneComparatorOutput, ClassSessionInventoryOccursAction, ClassSessionInventoryOccursInput, ClassSessionInventoryOccursMeta, ClassSessionInventoryOccursOutput, ClassSessionInventoryPreparationAction, ClassSessionInventoryPreparationInput, ClassSessionInventoryPreparationMeta, ClassSessionInventoryPreparationOutput, ClearAllOverridesAction, ClearAllOverridesInput, ClearAllOverridesMeta, ClearAllOverridesOutput, ClearGradingAction, ClearGradingInput, ClearGradingMeta, ClearGradingOutput, ClearOneOverridesAction, ClearOneOverridesInput, ClearOneOverridesMeta, ClearOneOverridesOutput, CreateGradingAndScoresAction, CreateGradingAndScoresInput, CreateGradingAndScoresMeta, CreateGradingAndScoresOutput, CreateManySessionAction, CreateManySessionInput, CreateManySessionMeta, CreateManySessionOutput, EditAnswerAction, EditAnswerInput, EditAnswerMeta, EditAnswerOutput, GenerateGradingAction, GenerateGradingInput, GenerateGradingMeta, GenerateGradingOutput, GetGradingCountAction, GetGradingCountInput, GetGradingCountMeta, GetGradingCountOutput, GetQuestionCountAction, GetQuestionCountInput, GetQuestionCountMeta, GetQuestionCountOutput, GetStaffIdAction, GetStaffIdInput, GetStaffIdMeta, GetStaffIdOutput, GetStudentIdAction, GetStudentIdInput, GetStudentIdMeta, GetStudentIdOutput, GradingComparator, GradingComparatorComparison, HasUnderstandAction, HasUnderstandInput, HasUnderstandMeta, HasUnderstandOutput, NotUnderstandAction, NotUnderstandInput, NotUnderstandMeta, NotUnderstandOutput, PrepareConflictAction, PrepareConflictInput, PrepareConflictMeta, PrepareConflictOutput, PrepareExperienceAction, PrepareExperienceInput, PrepareExperienceMeta, PrepareExperienceOutput, PrepareExperienceSchema, PresenceSessionStudentAction, PresenceSessionStudentInput, PresenceSessionStudentMeta, PresenceSessionStudentOutput, PresenceSessionTeacherAction, PresenceSessionTeacherInput, PresenceSessionTeacherMeta, PresenceSessionTeacherOutput, RasionalizeGradingAction, RasionalizeGradingInput, RasionalizeGradingMeta, RasionalizeGradingOutput, SendAnswerAction, SendAnswerInput, SendAnswerMeta, SendAnswerOutput, SendQuestionAction, SendQuestionInput, SendQuestionMeta, SendQuestionOutput, SyncCommitmentAction, SyncCommitmentInput, SyncCommitmentMeta, SyncCommitmentOutput, SyncStudentBranchAction, SyncStudentBranchInput, SyncStudentBranchMeta, SyncStudentBranchOutput, SyncStudentInformationAction, SyncStudentInformationInput, SyncStudentInformationMeta, SyncStudentInformationOutput, UpdateGradingAndScoresAction, UpdateGradingAndScoresInput, UpdateGradingAndScoresMeta, UpdateGradingAndScoresOutput, UserCountStatsAction, UserCountStatsInput, UserCountStatsMeta, UserCountStatsOutput, _calculateComparison, acceptQuestion, actions, addManyGradingComponent, allConflict, calculateGrading, calculateManyComparator, calculateOneComparator, classSessionInventoryOccurs, classSessionInventoryPreparation, clearAllOverrides, clearGrading, clearOneOverrides, createGradingAndScores, createManySession, editAnswer, generateGrading, getGradingCount, getQuestionCount, getStaffId, getStudentId, hasUnderstand, notUnderstand, prepareConflict, prepareExperience, presenceSessionStudent, presenceSessionTeacher, rasionalizeGrading, registerOfficePendidikanHooks, sendAnswer, sendQuestion, syncCommitment, syncModel, syncStudentBranch, syncStudentInformation, updateGradingAndScores, userCountStats };