@timeback/core 0.1.7-beta.20260310173551 → 0.2.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.
- package/dist/{chunk-rjcapq41.js → chunk-858qz9cb.js} +2 -1
- package/dist/{chunk-cx16s110.js → chunk-cjf6wewp.js} +279 -232
- package/dist/{chunk-y308dzvb.js → chunk-k030r9e8.js} +13 -5
- package/dist/errors.js +1 -1
- package/dist/index.js +185 -96
- package/dist/types.js +1 -1
- package/dist/utils.js +2 -2
- package/package.json +9 -9
|
@@ -7,7 +7,7 @@ import {
|
|
|
7
7
|
validateNonEmptyString,
|
|
8
8
|
validateUuid,
|
|
9
9
|
validateWithSchema
|
|
10
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-k030r9e8.js";
|
|
11
11
|
|
|
12
12
|
// ../edubridge/src/utils.ts
|
|
13
13
|
var log = createScopedLogger("edubridge");
|
|
@@ -119,6 +119,7 @@ import { z } from "zod/v4";
|
|
|
119
119
|
var IsoDateTimeRegex = /^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}(?:\.\d+)?(?:Z|[+-]\d{2}:\d{2})$/;
|
|
120
120
|
var IsoDateTimeString = z.string().min(1).regex(IsoDateTimeRegex, "must be a valid ISO 8601 datetime");
|
|
121
121
|
var IsoDateString = z.string().min(1).regex(/^\d{4}-\d{2}-\d{2}$/, "must be a valid ISO 8601 date (YYYY-MM-DD)");
|
|
122
|
+
var NonEmptyString = z.string().trim().min(1);
|
|
122
123
|
var TimebackSubject = z.enum([
|
|
123
124
|
"Reading",
|
|
124
125
|
"Language",
|
|
@@ -232,6 +233,7 @@ var IMSErrorResponse = z.object({
|
|
|
232
233
|
});
|
|
233
234
|
// ../../types/src/zod/caliper.ts
|
|
234
235
|
import { z as z2 } from "zod/v4";
|
|
236
|
+
var CaliperIri = z2.union([z2.url(), z2.string().regex(/^urn:/, "Must be a URL or URN")]);
|
|
235
237
|
var TimebackUser = z2.object({
|
|
236
238
|
id: z2.url(),
|
|
237
239
|
type: z2.literal("TimebackUser"),
|
|
@@ -341,11 +343,10 @@ var CaliperProfile = z2.enum([
|
|
|
341
343
|
]);
|
|
342
344
|
var CaliperEntity = z2.union([z2.string(), z2.record(z2.string(), z2.unknown())]);
|
|
343
345
|
var CaliperActor = z2.object({
|
|
344
|
-
id:
|
|
346
|
+
id: CaliperIri,
|
|
345
347
|
type: z2.string(),
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
}).loose()
|
|
348
|
+
name: z2.string().optional(),
|
|
349
|
+
extensions: z2.record(z2.string(), z2.unknown()).optional()
|
|
349
350
|
}).strict();
|
|
350
351
|
var CaliperEvent = z2.object({
|
|
351
352
|
"@context": z2.string().optional(),
|
|
@@ -367,30 +368,81 @@ var CaliperEvent = z2.object({
|
|
|
367
368
|
extensions: z2.record(z2.string(), z2.unknown()).optional()
|
|
368
369
|
}).strict();
|
|
369
370
|
var CaliperEnvelopeInput = z2.object({
|
|
370
|
-
sensor:
|
|
371
|
+
sensor: NonEmptyString,
|
|
371
372
|
sendTime: IsoDateTimeString,
|
|
372
373
|
dataVersion: z2.literal("http://purl.imsglobal.org/ctx/caliper/v1p2"),
|
|
373
374
|
data: z2.array(CaliperEvent).min(1, "data must contain at least one event")
|
|
374
375
|
});
|
|
375
376
|
var CaliperSendEventsInput = z2.object({
|
|
376
|
-
sensor:
|
|
377
|
+
sensor: NonEmptyString,
|
|
377
378
|
events: z2.array(CaliperEvent).min(1, "events must contain at least one event")
|
|
378
379
|
});
|
|
379
380
|
var CaliperListEventsParams = z2.object({
|
|
380
381
|
limit: z2.number().int().positive().optional(),
|
|
381
382
|
offset: z2.number().int().min(0).optional(),
|
|
382
|
-
sensor:
|
|
383
|
+
sensor: NonEmptyString.optional(),
|
|
383
384
|
startDate: IsoDateTimeString.optional(),
|
|
384
385
|
endDate: IsoDateTimeString.optional(),
|
|
385
|
-
actorId:
|
|
386
|
+
actorId: NonEmptyString.optional(),
|
|
386
387
|
actorEmail: z2.email().optional()
|
|
387
388
|
}).strict();
|
|
389
|
+
var AssessmentItemObject = z2.object({
|
|
390
|
+
id: z2.string(),
|
|
391
|
+
name: z2.string().optional(),
|
|
392
|
+
isPartOf: CaliperEntity.optional(),
|
|
393
|
+
extensions: z2.record(z2.string(), z2.unknown()).optional()
|
|
394
|
+
});
|
|
395
|
+
var ResponseGenerated = z2.object({
|
|
396
|
+
id: z2.string(),
|
|
397
|
+
attempt: z2.union([z2.string(), z2.record(z2.string(), z2.unknown())]).optional(),
|
|
398
|
+
startedAtTime: IsoDateTimeString.optional(),
|
|
399
|
+
endedAtTime: IsoDateTimeString.optional(),
|
|
400
|
+
duration: z2.string().optional(),
|
|
401
|
+
extensions: z2.record(z2.string(), z2.unknown()).optional()
|
|
402
|
+
});
|
|
403
|
+
var ScoreGenerated = z2.object({
|
|
404
|
+
id: z2.string().optional(),
|
|
405
|
+
scoreGiven: z2.number(),
|
|
406
|
+
maxScore: z2.number().optional(),
|
|
407
|
+
attempt: z2.union([z2.string(), z2.record(z2.string(), z2.unknown())]).optional(),
|
|
408
|
+
comment: z2.string().optional(),
|
|
409
|
+
extensions: z2.record(z2.string(), z2.unknown()).optional()
|
|
410
|
+
});
|
|
411
|
+
var QuestionSeenInput = z2.object({
|
|
412
|
+
actor: z2.union([z2.string(), CaliperActor, TimebackUser]),
|
|
413
|
+
object: AssessmentItemObject,
|
|
414
|
+
edApp: CaliperEntity,
|
|
415
|
+
id: z2.string().optional(),
|
|
416
|
+
eventTime: IsoDateTimeString.optional(),
|
|
417
|
+
session: CaliperEntity.optional(),
|
|
418
|
+
extensions: z2.record(z2.string(), z2.unknown()).optional()
|
|
419
|
+
}).strict();
|
|
420
|
+
var QuestionAnsweredInput = z2.object({
|
|
421
|
+
actor: z2.union([z2.string(), CaliperActor, TimebackUser]),
|
|
422
|
+
object: AssessmentItemObject,
|
|
423
|
+
edApp: CaliperEntity,
|
|
424
|
+
generated: ResponseGenerated.optional(),
|
|
425
|
+
id: z2.string().optional(),
|
|
426
|
+
eventTime: IsoDateTimeString.optional(),
|
|
427
|
+
session: CaliperEntity.optional(),
|
|
428
|
+
extensions: z2.record(z2.string(), z2.unknown()).optional()
|
|
429
|
+
}).strict();
|
|
430
|
+
var QuestionGradedInput = z2.object({
|
|
431
|
+
actor: z2.union([z2.string(), CaliperActor, TimebackUser]),
|
|
432
|
+
object: z2.string(),
|
|
433
|
+
generated: ScoreGenerated,
|
|
434
|
+
edApp: CaliperEntity,
|
|
435
|
+
id: z2.string().optional(),
|
|
436
|
+
eventTime: IsoDateTimeString.optional(),
|
|
437
|
+
session: CaliperEntity.optional(),
|
|
438
|
+
extensions: z2.record(z2.string(), z2.unknown()).optional()
|
|
439
|
+
}).strict();
|
|
388
440
|
// ../../types/src/zod/webhooks.ts
|
|
389
441
|
import { z as z3 } from "zod/v4";
|
|
390
442
|
var WebhookCreateInput = z3.object({
|
|
391
|
-
name:
|
|
443
|
+
name: NonEmptyString,
|
|
392
444
|
targetUrl: z3.url("targetUrl must be a valid URL"),
|
|
393
|
-
secret:
|
|
445
|
+
secret: NonEmptyString,
|
|
394
446
|
active: z3.boolean(),
|
|
395
447
|
sensor: z3.string().nullable().optional(),
|
|
396
448
|
description: z3.string().nullable().optional()
|
|
@@ -413,9 +465,9 @@ var WebhookFilterOperation = z3.enum([
|
|
|
413
465
|
"regexp"
|
|
414
466
|
]);
|
|
415
467
|
var WebhookFilterCreateInput = z3.object({
|
|
416
|
-
webhookId:
|
|
417
|
-
filterKey:
|
|
418
|
-
filterValue:
|
|
468
|
+
webhookId: NonEmptyString,
|
|
469
|
+
filterKey: NonEmptyString,
|
|
470
|
+
filterValue: NonEmptyString,
|
|
419
471
|
filterType: WebhookFilterType,
|
|
420
472
|
filterOperator: WebhookFilterOperation,
|
|
421
473
|
active: z3.boolean()
|
|
@@ -423,7 +475,6 @@ var WebhookFilterCreateInput = z3.object({
|
|
|
423
475
|
var WebhookFilterUpdateInput = WebhookFilterCreateInput;
|
|
424
476
|
// ../../types/src/zod/case.ts
|
|
425
477
|
import { z as z4 } from "zod/v4";
|
|
426
|
-
var NonEmptyString = z4.string().trim().min(1);
|
|
427
478
|
var UuidString = z4.string().uuid();
|
|
428
479
|
var InputNodeURISchema = z4.object({
|
|
429
480
|
title: NonEmptyString,
|
|
@@ -517,15 +568,15 @@ var ClrProfileSchema = z5.object({
|
|
|
517
568
|
email: z5.string().email().optional()
|
|
518
569
|
});
|
|
519
570
|
var ClrProofSchema = z5.object({
|
|
520
|
-
type:
|
|
521
|
-
proofPurpose:
|
|
522
|
-
verificationMethod:
|
|
571
|
+
type: NonEmptyString,
|
|
572
|
+
proofPurpose: NonEmptyString,
|
|
573
|
+
verificationMethod: NonEmptyString,
|
|
523
574
|
created: z5.iso.datetime(),
|
|
524
|
-
proofValue:
|
|
575
|
+
proofValue: NonEmptyString,
|
|
525
576
|
cryptosuite: z5.string().optional()
|
|
526
577
|
});
|
|
527
578
|
var ClrCredentialSchemaSchema = z5.object({
|
|
528
|
-
id:
|
|
579
|
+
id: NonEmptyString,
|
|
529
580
|
type: z5.literal("1EdTechJsonSchemaValidator2019")
|
|
530
581
|
});
|
|
531
582
|
var AchievementCriteriaSchema = z5.object({
|
|
@@ -535,8 +586,8 @@ var AchievementCriteriaSchema = z5.object({
|
|
|
535
586
|
var AchievementSchema = z5.object({
|
|
536
587
|
id: z5.url(),
|
|
537
588
|
type: z5.array(z5.string()).min(1).refine((arr) => arr.includes("Achievement"), 'type must include "Achievement"'),
|
|
538
|
-
name:
|
|
539
|
-
description:
|
|
589
|
+
name: NonEmptyString,
|
|
590
|
+
description: NonEmptyString,
|
|
540
591
|
criteria: AchievementCriteriaSchema,
|
|
541
592
|
image: ClrImageSchema.optional(),
|
|
542
593
|
achievementType: z5.string().optional(),
|
|
@@ -544,8 +595,8 @@ var AchievementSchema = z5.object({
|
|
|
544
595
|
});
|
|
545
596
|
var IdentityObjectSchema = z5.object({
|
|
546
597
|
type: z5.literal("IdentityObject"),
|
|
547
|
-
identityHash:
|
|
548
|
-
identityType:
|
|
598
|
+
identityHash: NonEmptyString,
|
|
599
|
+
identityType: NonEmptyString,
|
|
549
600
|
hashed: z5.boolean(),
|
|
550
601
|
salt: z5.string().optional()
|
|
551
602
|
});
|
|
@@ -590,7 +641,7 @@ var ClrCredentialInput = z5.object({
|
|
|
590
641
|
id: z5.url(),
|
|
591
642
|
type: z5.array(z5.string()).min(1).refine((arr) => arr.includes("VerifiableCredential") && arr.includes("ClrCredential"), 'type must include "VerifiableCredential" and "ClrCredential"'),
|
|
592
643
|
issuer: ClrProfileSchema,
|
|
593
|
-
name:
|
|
644
|
+
name: NonEmptyString,
|
|
594
645
|
description: z5.string().optional(),
|
|
595
646
|
validFrom: z5.iso.datetime(),
|
|
596
647
|
validUntil: z5.iso.datetime().optional(),
|
|
@@ -767,10 +818,9 @@ var EduBridgeEnrollmentAnalyticsResponse = z7.object({
|
|
|
767
818
|
facts: EduBridgeAnalyticsFacts,
|
|
768
819
|
factsByApp: z7.unknown()
|
|
769
820
|
});
|
|
770
|
-
var NonEmptyString2 = z7.string().trim().min(1);
|
|
771
821
|
var EmailOrStudentId = z7.object({
|
|
772
822
|
email: z7.email().optional(),
|
|
773
|
-
studentId:
|
|
823
|
+
studentId: NonEmptyString.optional()
|
|
774
824
|
}).superRefine((value, ctx) => {
|
|
775
825
|
if (!value.email && !value.studentId) {
|
|
776
826
|
ctx.addIssue({
|
|
@@ -786,17 +836,17 @@ var EmailOrStudentId = z7.object({
|
|
|
786
836
|
}
|
|
787
837
|
});
|
|
788
838
|
var SubjectTrackInput = z7.object({
|
|
789
|
-
subject:
|
|
790
|
-
grade:
|
|
791
|
-
courseId:
|
|
792
|
-
orgSourcedId:
|
|
839
|
+
subject: NonEmptyString,
|
|
840
|
+
grade: NonEmptyString,
|
|
841
|
+
courseId: NonEmptyString,
|
|
842
|
+
orgSourcedId: NonEmptyString.optional()
|
|
793
843
|
});
|
|
794
844
|
var SubjectTrackUpsertInput = SubjectTrackInput;
|
|
795
845
|
var EdubridgeListEnrollmentsParams = z7.object({
|
|
796
|
-
userId:
|
|
846
|
+
userId: NonEmptyString
|
|
797
847
|
});
|
|
798
848
|
var EdubridgeEnrollOptions = z7.object({
|
|
799
|
-
sourcedId:
|
|
849
|
+
sourcedId: NonEmptyString.optional(),
|
|
800
850
|
role: EnrollmentRole.optional(),
|
|
801
851
|
beginDate: IsoDateTimeString.optional(),
|
|
802
852
|
metadata: z7.record(z7.string(), z7.unknown()).optional()
|
|
@@ -810,7 +860,7 @@ var EdubridgeUsersListParams = z7.object({
|
|
|
810
860
|
filter: z7.string().optional(),
|
|
811
861
|
search: z7.string().optional(),
|
|
812
862
|
roles: z7.array(OneRosterUserRole).min(1),
|
|
813
|
-
orgSourcedIds: z7.array(
|
|
863
|
+
orgSourcedIds: z7.array(NonEmptyString).optional()
|
|
814
864
|
});
|
|
815
865
|
var EdubridgeActivityParams = EmailOrStudentId.extend({
|
|
816
866
|
startDate: EdubridgeDateStringInput,
|
|
@@ -822,31 +872,30 @@ var EdubridgeWeeklyFactsParams = EmailOrStudentId.extend({
|
|
|
822
872
|
timezone: z7.string().optional()
|
|
823
873
|
});
|
|
824
874
|
var EdubridgeEnrollmentFactsParams = z7.object({
|
|
825
|
-
enrollmentId:
|
|
875
|
+
enrollmentId: NonEmptyString,
|
|
826
876
|
startDate: EdubridgeDateStringInput.optional(),
|
|
827
877
|
endDate: EdubridgeDateStringInput.optional(),
|
|
828
878
|
timezone: z7.string().optional()
|
|
829
879
|
});
|
|
830
880
|
// ../../types/src/zod/masterytrack.ts
|
|
831
881
|
import { z as z8 } from "zod/v4";
|
|
832
|
-
var NonEmptyString3 = z8.string().trim().min(1);
|
|
833
882
|
var MasteryTrackAuthorizerInput = z8.object({
|
|
834
883
|
email: z8.email()
|
|
835
884
|
});
|
|
836
885
|
var MasteryTrackInventorySearchParams = z8.object({
|
|
837
|
-
name:
|
|
838
|
-
timeback_id:
|
|
839
|
-
grade:
|
|
840
|
-
subject:
|
|
886
|
+
name: NonEmptyString.optional(),
|
|
887
|
+
timeback_id: NonEmptyString.optional(),
|
|
888
|
+
grade: NonEmptyString.optional(),
|
|
889
|
+
subject: NonEmptyString.optional(),
|
|
841
890
|
all: z8.boolean().optional()
|
|
842
891
|
});
|
|
843
892
|
var MasteryTrackAssignmentInput = z8.object({
|
|
844
893
|
student_email: z8.email(),
|
|
845
|
-
timeback_id:
|
|
846
|
-
subject:
|
|
894
|
+
timeback_id: NonEmptyString.optional(),
|
|
895
|
+
subject: NonEmptyString.optional(),
|
|
847
896
|
grade_rank: z8.number().int().min(0).max(12).optional(),
|
|
848
|
-
assessment_line_item_sourced_id:
|
|
849
|
-
assessment_result_sourced_id:
|
|
897
|
+
assessment_line_item_sourced_id: NonEmptyString.optional(),
|
|
898
|
+
assessment_result_sourced_id: NonEmptyString.optional()
|
|
850
899
|
}).superRefine((value, ctx) => {
|
|
851
900
|
const hasTimebackId = !!value.timeback_id;
|
|
852
901
|
const hasSubject = !!value.subject;
|
|
@@ -883,8 +932,8 @@ var MasteryTrackAssignmentInput = z8.object({
|
|
|
883
932
|
var MasteryTrackInvalidateAssignmentInput = z8.object({
|
|
884
933
|
student_email: z8.email(),
|
|
885
934
|
assignment_id: z8.number().int().positive().optional(),
|
|
886
|
-
timeback_id:
|
|
887
|
-
subject:
|
|
935
|
+
timeback_id: NonEmptyString.optional(),
|
|
936
|
+
subject: NonEmptyString.optional(),
|
|
888
937
|
grade_rank: z8.number().int().min(0).max(12).optional()
|
|
889
938
|
}).superRefine((value, ctx) => {
|
|
890
939
|
const byAssignment = value.assignment_id !== undefined;
|
|
@@ -907,11 +956,10 @@ var MasteryTrackInvalidateAssignmentInput = z8.object({
|
|
|
907
956
|
});
|
|
908
957
|
// ../../types/src/zod/oneroster.ts
|
|
909
958
|
import { z as z9 } from "zod/v4";
|
|
910
|
-
var NonEmptyString4 = z9.string().min(1);
|
|
911
959
|
var Status = z9.enum(["active", "tobedeleted"]);
|
|
912
960
|
var Metadata = z9.record(z9.string(), z9.unknown()).nullable().optional();
|
|
913
961
|
var Ref = z9.object({
|
|
914
|
-
sourcedId:
|
|
962
|
+
sourcedId: NonEmptyString,
|
|
915
963
|
type: z9.string().optional(),
|
|
916
964
|
href: z9.string().optional()
|
|
917
965
|
}).strict();
|
|
@@ -926,58 +974,58 @@ var OneRosterUserRoleInput = z9.object({
|
|
|
926
974
|
endDate: OneRosterDateString.optional()
|
|
927
975
|
}).strict();
|
|
928
976
|
var OneRosterUserCreateInput = z9.object({
|
|
929
|
-
sourcedId:
|
|
977
|
+
sourcedId: NonEmptyString.describe("sourcedId must be a non-empty string"),
|
|
930
978
|
status: Status.optional(),
|
|
931
979
|
enabledUser: z9.boolean(),
|
|
932
|
-
givenName:
|
|
933
|
-
familyName:
|
|
934
|
-
middleName:
|
|
935
|
-
username:
|
|
980
|
+
givenName: NonEmptyString.describe("givenName must be a non-empty string"),
|
|
981
|
+
familyName: NonEmptyString.describe("familyName must be a non-empty string"),
|
|
982
|
+
middleName: NonEmptyString.optional(),
|
|
983
|
+
username: NonEmptyString.optional(),
|
|
936
984
|
email: z9.email(),
|
|
937
985
|
roles: z9.array(OneRosterUserRoleInput).min(1, "roles must include at least one role"),
|
|
938
986
|
userIds: z9.array(z9.object({
|
|
939
|
-
type:
|
|
940
|
-
identifier:
|
|
987
|
+
type: NonEmptyString,
|
|
988
|
+
identifier: NonEmptyString
|
|
941
989
|
}).strict()).optional(),
|
|
942
990
|
agents: z9.array(Ref).optional(),
|
|
943
991
|
grades: z9.array(TimebackGrade).optional(),
|
|
944
|
-
identifier:
|
|
945
|
-
sms:
|
|
946
|
-
phone:
|
|
947
|
-
pronouns:
|
|
948
|
-
password:
|
|
992
|
+
identifier: NonEmptyString.optional(),
|
|
993
|
+
sms: NonEmptyString.optional(),
|
|
994
|
+
phone: NonEmptyString.optional(),
|
|
995
|
+
pronouns: NonEmptyString.optional(),
|
|
996
|
+
password: NonEmptyString.optional(),
|
|
949
997
|
metadata: Metadata
|
|
950
998
|
}).strict();
|
|
951
999
|
var OneRosterCourseCreateInput = z9.object({
|
|
952
|
-
sourcedId:
|
|
1000
|
+
sourcedId: NonEmptyString.describe("sourcedId must be a non-empty string").optional(),
|
|
953
1001
|
status: Status.optional(),
|
|
954
|
-
title:
|
|
1002
|
+
title: NonEmptyString.describe("title must be a non-empty string"),
|
|
955
1003
|
org: Ref,
|
|
956
|
-
courseCode:
|
|
1004
|
+
courseCode: NonEmptyString.optional(),
|
|
957
1005
|
subjects: z9.array(TimebackSubject).optional(),
|
|
958
1006
|
grades: z9.array(TimebackGrade).optional(),
|
|
959
|
-
level:
|
|
1007
|
+
level: NonEmptyString.optional(),
|
|
960
1008
|
metadata: Metadata
|
|
961
1009
|
}).strict();
|
|
962
1010
|
var OneRosterClassCreateInput = z9.object({
|
|
963
|
-
sourcedId:
|
|
1011
|
+
sourcedId: NonEmptyString.describe("sourcedId must be a non-empty string").optional(),
|
|
964
1012
|
status: Status.optional(),
|
|
965
|
-
title:
|
|
1013
|
+
title: NonEmptyString.describe("title must be a non-empty string"),
|
|
966
1014
|
terms: z9.array(Ref).min(1, "terms must have at least one item"),
|
|
967
1015
|
course: Ref,
|
|
968
1016
|
org: Ref,
|
|
969
|
-
classCode:
|
|
1017
|
+
classCode: NonEmptyString.optional(),
|
|
970
1018
|
classType: z9.enum(["homeroom", "scheduled"]).optional(),
|
|
971
|
-
location:
|
|
1019
|
+
location: NonEmptyString.optional(),
|
|
972
1020
|
grades: z9.array(TimebackGrade).optional(),
|
|
973
1021
|
subjects: z9.array(TimebackSubject).optional(),
|
|
974
|
-
subjectCodes: z9.array(
|
|
975
|
-
periods: z9.array(
|
|
1022
|
+
subjectCodes: z9.array(NonEmptyString).optional(),
|
|
1023
|
+
periods: z9.array(NonEmptyString).optional(),
|
|
976
1024
|
metadata: Metadata
|
|
977
1025
|
}).strict();
|
|
978
1026
|
var StringBoolean = z9.enum(["true", "false"]);
|
|
979
1027
|
var OneRosterEnrollmentCreateInput = z9.object({
|
|
980
|
-
sourcedId:
|
|
1028
|
+
sourcedId: NonEmptyString.describe("sourcedId must be a non-empty string").optional(),
|
|
981
1029
|
status: Status.optional(),
|
|
982
1030
|
user: Ref,
|
|
983
1031
|
class: Ref,
|
|
@@ -989,15 +1037,15 @@ var OneRosterEnrollmentCreateInput = z9.object({
|
|
|
989
1037
|
metadata: Metadata
|
|
990
1038
|
}).strict();
|
|
991
1039
|
var OneRosterCategoryCreateInput = z9.object({
|
|
992
|
-
sourcedId:
|
|
993
|
-
title:
|
|
1040
|
+
sourcedId: NonEmptyString.optional(),
|
|
1041
|
+
title: NonEmptyString.describe("title must be a non-empty string"),
|
|
994
1042
|
status: Status,
|
|
995
1043
|
weight: z9.number().nullable().optional(),
|
|
996
1044
|
metadata: Metadata
|
|
997
1045
|
}).strict();
|
|
998
1046
|
var OneRosterLineItemCreateInput = z9.object({
|
|
999
|
-
sourcedId:
|
|
1000
|
-
title:
|
|
1047
|
+
sourcedId: NonEmptyString.optional(),
|
|
1048
|
+
title: NonEmptyString.describe("title must be a non-empty string"),
|
|
1001
1049
|
class: Ref,
|
|
1002
1050
|
school: Ref,
|
|
1003
1051
|
category: Ref,
|
|
@@ -1011,7 +1059,7 @@ var OneRosterLineItemCreateInput = z9.object({
|
|
|
1011
1059
|
metadata: Metadata
|
|
1012
1060
|
}).strict();
|
|
1013
1061
|
var OneRosterResultCreateInput = z9.object({
|
|
1014
|
-
sourcedId:
|
|
1062
|
+
sourcedId: NonEmptyString.optional(),
|
|
1015
1063
|
lineItem: Ref,
|
|
1016
1064
|
student: Ref,
|
|
1017
1065
|
class: Ref.optional(),
|
|
@@ -1030,15 +1078,15 @@ var OneRosterResultCreateInput = z9.object({
|
|
|
1030
1078
|
metadata: Metadata
|
|
1031
1079
|
}).strict();
|
|
1032
1080
|
var OneRosterScoreScaleCreateInput = z9.object({
|
|
1033
|
-
sourcedId:
|
|
1034
|
-
title:
|
|
1081
|
+
sourcedId: NonEmptyString.optional(),
|
|
1082
|
+
title: NonEmptyString.describe("title must be a non-empty string"),
|
|
1035
1083
|
status: Status.optional(),
|
|
1036
1084
|
type: z9.string(),
|
|
1037
1085
|
class: Ref,
|
|
1038
1086
|
course: Ref.nullable().optional(),
|
|
1039
1087
|
scoreScaleValue: z9.array(z9.object({
|
|
1040
|
-
itemValueLHS:
|
|
1041
|
-
itemValueRHS:
|
|
1088
|
+
itemValueLHS: NonEmptyString,
|
|
1089
|
+
itemValueRHS: NonEmptyString,
|
|
1042
1090
|
value: z9.string().optional(),
|
|
1043
1091
|
description: z9.string().optional()
|
|
1044
1092
|
}).strict()),
|
|
@@ -1047,10 +1095,10 @@ var OneRosterScoreScaleCreateInput = z9.object({
|
|
|
1047
1095
|
metadata: Metadata
|
|
1048
1096
|
}).strict();
|
|
1049
1097
|
var OneRosterAssessmentLineItemCreateInput = z9.object({
|
|
1050
|
-
sourcedId:
|
|
1098
|
+
sourcedId: NonEmptyString.optional(),
|
|
1051
1099
|
status: Status.optional(),
|
|
1052
1100
|
dateLastModified: IsoDateTimeString.optional(),
|
|
1053
|
-
title:
|
|
1101
|
+
title: NonEmptyString.describe("title must be a non-empty string"),
|
|
1054
1102
|
description: z9.string().nullable().optional(),
|
|
1055
1103
|
class: Ref.nullable().optional(),
|
|
1056
1104
|
parentAssessmentLineItem: Ref.nullable().optional(),
|
|
@@ -1076,7 +1124,7 @@ var LearningObjectiveScoreSetSchema = z9.array(z9.object({
|
|
|
1076
1124
|
learningObjectiveResults: z9.array(LearningObjectiveResult)
|
|
1077
1125
|
}));
|
|
1078
1126
|
var OneRosterAssessmentResultCreateInput = z9.object({
|
|
1079
|
-
sourcedId:
|
|
1127
|
+
sourcedId: NonEmptyString.optional(),
|
|
1080
1128
|
status: Status.optional(),
|
|
1081
1129
|
dateLastModified: IsoDateTimeString.optional(),
|
|
1082
1130
|
metadata: Metadata,
|
|
@@ -1102,53 +1150,53 @@ var OneRosterAssessmentResultCreateInput = z9.object({
|
|
|
1102
1150
|
missing: z9.string().nullable().optional()
|
|
1103
1151
|
}).strict();
|
|
1104
1152
|
var OneRosterOrgCreateInput = z9.object({
|
|
1105
|
-
sourcedId:
|
|
1153
|
+
sourcedId: NonEmptyString.optional(),
|
|
1106
1154
|
status: Status.optional(),
|
|
1107
|
-
name:
|
|
1155
|
+
name: NonEmptyString.describe("name must be a non-empty string"),
|
|
1108
1156
|
type: OrganizationType,
|
|
1109
|
-
identifier:
|
|
1157
|
+
identifier: NonEmptyString.optional(),
|
|
1110
1158
|
parent: Ref.optional(),
|
|
1111
1159
|
metadata: Metadata
|
|
1112
1160
|
}).strict();
|
|
1113
1161
|
var OneRosterSchoolCreateInput = z9.object({
|
|
1114
|
-
sourcedId:
|
|
1162
|
+
sourcedId: NonEmptyString.optional(),
|
|
1115
1163
|
status: Status.optional(),
|
|
1116
|
-
name:
|
|
1164
|
+
name: NonEmptyString.describe("name must be a non-empty string"),
|
|
1117
1165
|
type: z9.literal("school").optional(),
|
|
1118
|
-
identifier:
|
|
1166
|
+
identifier: NonEmptyString.optional(),
|
|
1119
1167
|
parent: Ref.optional(),
|
|
1120
1168
|
metadata: Metadata
|
|
1121
1169
|
}).strict();
|
|
1122
1170
|
var OneRosterAcademicSessionCreateInput = z9.object({
|
|
1123
|
-
sourcedId:
|
|
1171
|
+
sourcedId: NonEmptyString.describe("sourcedId must be a non-empty string"),
|
|
1124
1172
|
status: Status,
|
|
1125
|
-
title:
|
|
1173
|
+
title: NonEmptyString.describe("title must be a non-empty string"),
|
|
1126
1174
|
startDate: OneRosterDateString,
|
|
1127
1175
|
endDate: OneRosterDateString,
|
|
1128
1176
|
type: z9.enum(["gradingPeriod", "semester", "schoolYear", "term"]),
|
|
1129
|
-
schoolYear:
|
|
1177
|
+
schoolYear: NonEmptyString.describe("schoolYear must be a non-empty string"),
|
|
1130
1178
|
org: Ref,
|
|
1131
1179
|
parent: Ref.optional(),
|
|
1132
1180
|
children: z9.array(Ref).optional(),
|
|
1133
1181
|
metadata: Metadata
|
|
1134
1182
|
}).strict();
|
|
1135
1183
|
var OneRosterComponentResourceCreateInput = z9.object({
|
|
1136
|
-
sourcedId:
|
|
1137
|
-
title:
|
|
1184
|
+
sourcedId: NonEmptyString.optional(),
|
|
1185
|
+
title: NonEmptyString.describe("title must be a non-empty string"),
|
|
1138
1186
|
courseComponent: Ref,
|
|
1139
1187
|
resource: Ref,
|
|
1140
1188
|
status: Status,
|
|
1141
1189
|
metadata: Metadata
|
|
1142
1190
|
}).strict();
|
|
1143
1191
|
var OneRosterCourseComponentCreateInput = z9.object({
|
|
1144
|
-
sourcedId:
|
|
1145
|
-
title:
|
|
1192
|
+
sourcedId: NonEmptyString.optional(),
|
|
1193
|
+
title: NonEmptyString.describe("title must be a non-empty string"),
|
|
1146
1194
|
course: Ref,
|
|
1147
1195
|
status: Status,
|
|
1148
1196
|
metadata: Metadata
|
|
1149
1197
|
}).strict();
|
|
1150
1198
|
var OneRosterEnrollInput = z9.object({
|
|
1151
|
-
sourcedId:
|
|
1199
|
+
sourcedId: NonEmptyString.describe("sourcedId must be a non-empty string"),
|
|
1152
1200
|
role: z9.enum(["student", "teacher"]),
|
|
1153
1201
|
primary: StringBoolean.optional(),
|
|
1154
1202
|
beginDate: IsoDateString.optional(),
|
|
@@ -1156,17 +1204,17 @@ var OneRosterEnrollInput = z9.object({
|
|
|
1156
1204
|
metadata: Metadata
|
|
1157
1205
|
}).strict();
|
|
1158
1206
|
var OneRosterAgentInput = z9.object({
|
|
1159
|
-
agentSourcedId:
|
|
1207
|
+
agentSourcedId: NonEmptyString.describe("agentSourcedId must be a non-empty string")
|
|
1160
1208
|
}).strict();
|
|
1161
1209
|
var OneRosterCredentialInput = z9.object({
|
|
1162
|
-
applicationName:
|
|
1210
|
+
applicationName: NonEmptyString.describe("applicationName must be a non-empty string"),
|
|
1163
1211
|
credentials: z9.object({
|
|
1164
|
-
username:
|
|
1165
|
-
password:
|
|
1212
|
+
username: NonEmptyString.describe("username must be a non-empty string"),
|
|
1213
|
+
password: NonEmptyString.describe("password must be a non-empty string")
|
|
1166
1214
|
})
|
|
1167
1215
|
}).strict();
|
|
1168
1216
|
var OneRosterDemographicsCreateInput = z9.object({
|
|
1169
|
-
sourcedId:
|
|
1217
|
+
sourcedId: NonEmptyString.describe("sourcedId must be a non-empty string")
|
|
1170
1218
|
}).loose();
|
|
1171
1219
|
var CommonResourceMetadataSchema = z9.object({
|
|
1172
1220
|
type: ResourceType,
|
|
@@ -1238,9 +1286,9 @@ var ResourceMetadataSchema = z9.discriminatedUnion("type", [
|
|
|
1238
1286
|
AssessmentBankMetadataSchema
|
|
1239
1287
|
]);
|
|
1240
1288
|
var OneRosterResourceCreateInput = z9.object({
|
|
1241
|
-
sourcedId:
|
|
1242
|
-
title:
|
|
1243
|
-
vendorResourceId:
|
|
1289
|
+
sourcedId: NonEmptyString.optional(),
|
|
1290
|
+
title: NonEmptyString.describe("title must be a non-empty string"),
|
|
1291
|
+
vendorResourceId: NonEmptyString.describe("vendorResourceId must be a non-empty string"),
|
|
1244
1292
|
roles: z9.array(z9.enum(["primary", "secondary"])).optional(),
|
|
1245
1293
|
importance: z9.enum(["primary", "secondary"]).optional(),
|
|
1246
1294
|
vendorId: z9.string().optional(),
|
|
@@ -1249,18 +1297,18 @@ var OneRosterResourceCreateInput = z9.object({
|
|
|
1249
1297
|
metadata: ResourceMetadataSchema.nullable().optional()
|
|
1250
1298
|
}).strict();
|
|
1251
1299
|
var CourseStructureItem = z9.object({
|
|
1252
|
-
url:
|
|
1253
|
-
skillCode:
|
|
1254
|
-
lessonCode:
|
|
1255
|
-
title:
|
|
1256
|
-
"unit-title":
|
|
1257
|
-
status:
|
|
1300
|
+
url: NonEmptyString.describe("courseStructure.url must be a non-empty string"),
|
|
1301
|
+
skillCode: NonEmptyString.describe("courseStructure.skillCode must be a non-empty string"),
|
|
1302
|
+
lessonCode: NonEmptyString.describe("courseStructure.lessonCode must be a non-empty string"),
|
|
1303
|
+
title: NonEmptyString.describe("courseStructure.title must be a non-empty string"),
|
|
1304
|
+
"unit-title": NonEmptyString.describe("courseStructure.unit-title must be a non-empty string"),
|
|
1305
|
+
status: NonEmptyString.describe("courseStructure.status must be a non-empty string"),
|
|
1258
1306
|
xp: z9.number()
|
|
1259
1307
|
}).loose();
|
|
1260
1308
|
var OneRosterCourseStructureInput = z9.object({
|
|
1261
1309
|
course: z9.object({
|
|
1262
|
-
sourcedId:
|
|
1263
|
-
title:
|
|
1310
|
+
sourcedId: NonEmptyString.describe("course.sourcedId must be a non-empty string").optional(),
|
|
1311
|
+
title: NonEmptyString.describe("course.title must be a non-empty string"),
|
|
1264
1312
|
org: Ref,
|
|
1265
1313
|
status: Status,
|
|
1266
1314
|
metadata: Metadata
|
|
@@ -1273,7 +1321,6 @@ var OneRosterBulkResultItem = z9.object({
|
|
|
1273
1321
|
var OneRosterBulkResultsInput = z9.array(OneRosterBulkResultItem).min(1, "results must have at least one item");
|
|
1274
1322
|
// ../../types/src/zod/powerpath.ts
|
|
1275
1323
|
import { z as z10 } from "zod/v4";
|
|
1276
|
-
var NonEmptyString5 = z10.string().trim().min(1);
|
|
1277
1324
|
var ToolProvider = z10.enum(["edulastic", "mastery-track"]);
|
|
1278
1325
|
var LessonTypeRequired = z10.enum([
|
|
1279
1326
|
"powerpath-100",
|
|
@@ -1286,14 +1333,14 @@ var LessonTypeRequired = z10.enum([
|
|
|
1286
1333
|
var GradeArray = z10.array(TimebackGrade);
|
|
1287
1334
|
var ResourceMetadata = z10.record(z10.string(), z10.unknown()).optional();
|
|
1288
1335
|
var ExternalTestBase = z10.object({
|
|
1289
|
-
courseId:
|
|
1290
|
-
lessonTitle:
|
|
1291
|
-
launchUrl:
|
|
1336
|
+
courseId: NonEmptyString,
|
|
1337
|
+
lessonTitle: NonEmptyString.optional(),
|
|
1338
|
+
launchUrl: NonEmptyString.optional(),
|
|
1292
1339
|
toolProvider: ToolProvider,
|
|
1293
|
-
unitTitle:
|
|
1294
|
-
courseComponentSourcedId:
|
|
1295
|
-
vendorId:
|
|
1296
|
-
description:
|
|
1340
|
+
unitTitle: NonEmptyString.optional(),
|
|
1341
|
+
courseComponentSourcedId: NonEmptyString.optional(),
|
|
1342
|
+
vendorId: NonEmptyString.optional(),
|
|
1343
|
+
description: NonEmptyString.optional(),
|
|
1297
1344
|
resourceMetadata: ResourceMetadata.nullable().optional(),
|
|
1298
1345
|
grades: GradeArray
|
|
1299
1346
|
});
|
|
@@ -1303,28 +1350,28 @@ var ExternalTestOut = ExternalTestBase.extend({
|
|
|
1303
1350
|
});
|
|
1304
1351
|
var ExternalPlacement = ExternalTestBase.extend({
|
|
1305
1352
|
lessonType: z10.literal("placement"),
|
|
1306
|
-
courseIdOnFail:
|
|
1353
|
+
courseIdOnFail: NonEmptyString.nullable().optional(),
|
|
1307
1354
|
xp: z10.number().optional()
|
|
1308
1355
|
});
|
|
1309
1356
|
var PowerPathCreateExternalPlacementTestInput = ExternalPlacement;
|
|
1310
1357
|
var PowerPathCreateExternalTestOutInput = ExternalTestOut;
|
|
1311
1358
|
var InternalTestBase = z10.object({
|
|
1312
|
-
courseId:
|
|
1359
|
+
courseId: NonEmptyString,
|
|
1313
1360
|
lessonType: LessonTypeRequired,
|
|
1314
|
-
lessonTitle:
|
|
1315
|
-
unitTitle:
|
|
1316
|
-
courseComponentSourcedId:
|
|
1361
|
+
lessonTitle: NonEmptyString.optional(),
|
|
1362
|
+
unitTitle: NonEmptyString.optional(),
|
|
1363
|
+
courseComponentSourcedId: NonEmptyString.optional(),
|
|
1317
1364
|
resourceMetadata: ResourceMetadata.nullable().optional(),
|
|
1318
1365
|
xp: z10.number().optional(),
|
|
1319
1366
|
grades: GradeArray.optional(),
|
|
1320
|
-
courseIdOnFail:
|
|
1367
|
+
courseIdOnFail: NonEmptyString.nullable().optional()
|
|
1321
1368
|
});
|
|
1322
1369
|
var PowerPathCreateInternalTestInput = z10.discriminatedUnion("testType", [
|
|
1323
1370
|
InternalTestBase.extend({
|
|
1324
1371
|
testType: z10.literal("qti"),
|
|
1325
1372
|
qti: z10.object({
|
|
1326
1373
|
url: z10.url(),
|
|
1327
|
-
title:
|
|
1374
|
+
title: NonEmptyString.optional(),
|
|
1328
1375
|
metadata: z10.record(z10.string(), z10.unknown()).optional()
|
|
1329
1376
|
})
|
|
1330
1377
|
}),
|
|
@@ -1333,28 +1380,28 @@ var PowerPathCreateInternalTestInput = z10.discriminatedUnion("testType", [
|
|
|
1333
1380
|
assessmentBank: z10.object({
|
|
1334
1381
|
resources: z10.array(z10.object({
|
|
1335
1382
|
url: z10.url(),
|
|
1336
|
-
title:
|
|
1383
|
+
title: NonEmptyString.optional(),
|
|
1337
1384
|
metadata: z10.record(z10.string(), z10.unknown()).optional()
|
|
1338
1385
|
})).min(1)
|
|
1339
1386
|
})
|
|
1340
1387
|
})
|
|
1341
1388
|
]);
|
|
1342
1389
|
var PowerPathCreateNewAttemptInput = z10.object({
|
|
1343
|
-
student:
|
|
1344
|
-
lesson:
|
|
1390
|
+
student: NonEmptyString,
|
|
1391
|
+
lesson: NonEmptyString
|
|
1345
1392
|
});
|
|
1346
1393
|
var PowerPathFinalStudentAssessmentResponseInput = z10.object({
|
|
1347
|
-
student:
|
|
1348
|
-
lesson:
|
|
1394
|
+
student: NonEmptyString,
|
|
1395
|
+
lesson: NonEmptyString
|
|
1349
1396
|
});
|
|
1350
1397
|
var PowerPathLessonPlansCreateInput = z10.object({
|
|
1351
|
-
courseId:
|
|
1352
|
-
userId:
|
|
1353
|
-
classId:
|
|
1398
|
+
courseId: NonEmptyString,
|
|
1399
|
+
userId: NonEmptyString,
|
|
1400
|
+
classId: NonEmptyString.optional()
|
|
1354
1401
|
});
|
|
1355
1402
|
var LessonPlanTarget = z10.object({
|
|
1356
1403
|
type: z10.enum(["component", "resource"]),
|
|
1357
|
-
id:
|
|
1404
|
+
id: NonEmptyString
|
|
1358
1405
|
});
|
|
1359
1406
|
var PowerPathLessonPlanOperationInput = z10.union([
|
|
1360
1407
|
z10.object({
|
|
@@ -1367,8 +1414,8 @@ var PowerPathLessonPlanOperationInput = z10.union([
|
|
|
1367
1414
|
z10.object({
|
|
1368
1415
|
type: z10.literal("add-custom-resource"),
|
|
1369
1416
|
payload: z10.object({
|
|
1370
|
-
resource_id:
|
|
1371
|
-
parent_component_id:
|
|
1417
|
+
resource_id: NonEmptyString,
|
|
1418
|
+
parent_component_id: NonEmptyString,
|
|
1372
1419
|
skipped: z10.boolean().optional()
|
|
1373
1420
|
})
|
|
1374
1421
|
}),
|
|
@@ -1376,14 +1423,14 @@ var PowerPathLessonPlanOperationInput = z10.union([
|
|
|
1376
1423
|
type: z10.literal("move-item-before"),
|
|
1377
1424
|
payload: z10.object({
|
|
1378
1425
|
target: LessonPlanTarget,
|
|
1379
|
-
reference_id:
|
|
1426
|
+
reference_id: NonEmptyString
|
|
1380
1427
|
})
|
|
1381
1428
|
}),
|
|
1382
1429
|
z10.object({
|
|
1383
1430
|
type: z10.literal("move-item-after"),
|
|
1384
1431
|
payload: z10.object({
|
|
1385
1432
|
target: LessonPlanTarget,
|
|
1386
|
-
reference_id:
|
|
1433
|
+
reference_id: NonEmptyString
|
|
1387
1434
|
})
|
|
1388
1435
|
}),
|
|
1389
1436
|
z10.object({
|
|
@@ -1402,107 +1449,107 @@ var PowerPathLessonPlanOperationInput = z10.union([
|
|
|
1402
1449
|
type: z10.literal("change-item-parent"),
|
|
1403
1450
|
payload: z10.object({
|
|
1404
1451
|
target: LessonPlanTarget,
|
|
1405
|
-
new_parent_id:
|
|
1452
|
+
new_parent_id: NonEmptyString,
|
|
1406
1453
|
position: z10.enum(["start", "end"]).optional()
|
|
1407
1454
|
})
|
|
1408
1455
|
})
|
|
1409
1456
|
]);
|
|
1410
1457
|
var PowerPathLessonPlanOperationsInput = z10.object({
|
|
1411
1458
|
operation: PowerPathLessonPlanOperationInput,
|
|
1412
|
-
reason:
|
|
1459
|
+
reason: NonEmptyString.optional()
|
|
1413
1460
|
});
|
|
1414
1461
|
var PowerPathLessonPlanUpdateStudentItemResponseInput = z10.object({
|
|
1415
|
-
studentId:
|
|
1416
|
-
componentResourceId:
|
|
1462
|
+
studentId: NonEmptyString,
|
|
1463
|
+
componentResourceId: NonEmptyString,
|
|
1417
1464
|
result: z10.object({
|
|
1418
1465
|
status: z10.enum(["active", "tobedeleted"]),
|
|
1419
1466
|
metadata: z10.record(z10.string(), z10.unknown()).optional(),
|
|
1420
1467
|
score: z10.number().optional(),
|
|
1421
|
-
textScore:
|
|
1468
|
+
textScore: NonEmptyString.optional(),
|
|
1422
1469
|
scoreDate: z10.string().datetime(),
|
|
1423
1470
|
scorePercentile: z10.number().optional(),
|
|
1424
1471
|
scoreStatus: ScoreStatus,
|
|
1425
|
-
comment:
|
|
1472
|
+
comment: NonEmptyString.optional(),
|
|
1426
1473
|
learningObjectiveSet: z10.array(z10.object({
|
|
1427
|
-
source:
|
|
1474
|
+
source: NonEmptyString,
|
|
1428
1475
|
learningObjectiveResults: z10.array(z10.object({
|
|
1429
|
-
learningObjectiveId:
|
|
1476
|
+
learningObjectiveId: NonEmptyString,
|
|
1430
1477
|
score: z10.number().optional(),
|
|
1431
|
-
textScore:
|
|
1478
|
+
textScore: NonEmptyString.optional()
|
|
1432
1479
|
}))
|
|
1433
1480
|
})).optional(),
|
|
1434
|
-
inProgress:
|
|
1435
|
-
incomplete:
|
|
1436
|
-
late:
|
|
1437
|
-
missing:
|
|
1481
|
+
inProgress: NonEmptyString.optional(),
|
|
1482
|
+
incomplete: NonEmptyString.optional(),
|
|
1483
|
+
late: NonEmptyString.optional(),
|
|
1484
|
+
missing: NonEmptyString.optional()
|
|
1438
1485
|
})
|
|
1439
1486
|
});
|
|
1440
1487
|
var PowerPathMakeExternalTestAssignmentInput = z10.object({
|
|
1441
|
-
student:
|
|
1442
|
-
lesson:
|
|
1443
|
-
applicationName:
|
|
1444
|
-
testId:
|
|
1488
|
+
student: NonEmptyString,
|
|
1489
|
+
lesson: NonEmptyString,
|
|
1490
|
+
applicationName: NonEmptyString.optional(),
|
|
1491
|
+
testId: NonEmptyString.optional(),
|
|
1445
1492
|
skipCourseEnrollment: z10.boolean().optional()
|
|
1446
1493
|
});
|
|
1447
1494
|
var PowerPathPlacementResetUserPlacementInput = z10.object({
|
|
1448
|
-
student:
|
|
1495
|
+
student: NonEmptyString,
|
|
1449
1496
|
subject: TimebackSubject
|
|
1450
1497
|
});
|
|
1451
1498
|
var PowerPathResetAttemptInput = z10.object({
|
|
1452
|
-
student:
|
|
1453
|
-
lesson:
|
|
1499
|
+
student: NonEmptyString,
|
|
1500
|
+
lesson: NonEmptyString
|
|
1454
1501
|
});
|
|
1455
1502
|
var PowerPathScreeningResetSessionInput = z10.object({
|
|
1456
|
-
userId:
|
|
1503
|
+
userId: NonEmptyString
|
|
1457
1504
|
});
|
|
1458
1505
|
var PowerPathScreeningAssignTestInput = z10.object({
|
|
1459
|
-
userId:
|
|
1506
|
+
userId: NonEmptyString,
|
|
1460
1507
|
subject: z10.enum(["Math", "Reading", "Language", "Science"])
|
|
1461
1508
|
});
|
|
1462
1509
|
var PowerPathTestAssignmentsCreateInput = z10.object({
|
|
1463
|
-
student:
|
|
1510
|
+
student: NonEmptyString,
|
|
1464
1511
|
subject: TimebackSubject,
|
|
1465
1512
|
grade: TimebackGrade,
|
|
1466
|
-
testName:
|
|
1513
|
+
testName: NonEmptyString.optional()
|
|
1467
1514
|
});
|
|
1468
1515
|
var PowerPathTestAssignmentsUpdateInput = z10.object({
|
|
1469
|
-
testName:
|
|
1516
|
+
testName: NonEmptyString
|
|
1470
1517
|
});
|
|
1471
1518
|
var PowerPathTestAssignmentItemInput = z10.object({
|
|
1472
|
-
student:
|
|
1519
|
+
student: NonEmptyString,
|
|
1473
1520
|
subject: TimebackSubject,
|
|
1474
1521
|
grade: TimebackGrade,
|
|
1475
|
-
testName:
|
|
1522
|
+
testName: NonEmptyString.optional()
|
|
1476
1523
|
});
|
|
1477
1524
|
var PowerPathTestAssignmentsBulkInput = z10.object({
|
|
1478
1525
|
items: z10.array(PowerPathTestAssignmentItemInput)
|
|
1479
1526
|
});
|
|
1480
1527
|
var PowerPathTestAssignmentsImportInput = z10.object({
|
|
1481
1528
|
spreadsheetUrl: z10.url(),
|
|
1482
|
-
sheet:
|
|
1529
|
+
sheet: NonEmptyString
|
|
1483
1530
|
});
|
|
1484
1531
|
var PowerPathTestAssignmentsListParams = z10.object({
|
|
1485
|
-
student:
|
|
1532
|
+
student: NonEmptyString,
|
|
1486
1533
|
status: z10.enum(["assigned", "in_progress", "completed", "failed", "expired", "cancelled"]).optional(),
|
|
1487
|
-
subject:
|
|
1534
|
+
subject: NonEmptyString.optional(),
|
|
1488
1535
|
grade: TimebackGrade.optional(),
|
|
1489
1536
|
limit: z10.number().int().positive().max(3000).optional(),
|
|
1490
1537
|
offset: z10.number().int().nonnegative().optional()
|
|
1491
1538
|
});
|
|
1492
1539
|
var PowerPathTestAssignmentsAdminParams = z10.object({
|
|
1493
|
-
student:
|
|
1540
|
+
student: NonEmptyString.optional(),
|
|
1494
1541
|
status: z10.enum(["assigned", "in_progress", "completed", "failed", "expired", "cancelled"]).optional(),
|
|
1495
|
-
subject:
|
|
1542
|
+
subject: NonEmptyString.optional(),
|
|
1496
1543
|
grade: TimebackGrade.optional(),
|
|
1497
1544
|
limit: z10.number().int().positive().max(3000).optional(),
|
|
1498
1545
|
offset: z10.number().int().nonnegative().optional()
|
|
1499
1546
|
});
|
|
1500
1547
|
var PowerPathUpdateStudentQuestionResponseInput = z10.object({
|
|
1501
|
-
student:
|
|
1502
|
-
question:
|
|
1503
|
-
response: z10.union([
|
|
1504
|
-
responses: z10.record(z10.string(), z10.union([
|
|
1505
|
-
lesson:
|
|
1548
|
+
student: NonEmptyString,
|
|
1549
|
+
question: NonEmptyString,
|
|
1550
|
+
response: z10.union([NonEmptyString, z10.array(NonEmptyString)]).optional(),
|
|
1551
|
+
responses: z10.record(z10.string(), z10.union([NonEmptyString, z10.array(NonEmptyString)])).optional(),
|
|
1552
|
+
lesson: NonEmptyString,
|
|
1506
1553
|
rendererOutcomes: z10.object({
|
|
1507
1554
|
score: z10.number(),
|
|
1508
1555
|
maxScore: z10.number().min(0),
|
|
@@ -1519,29 +1566,29 @@ var PowerPathUpdateStudentQuestionResponseInput = z10.object({
|
|
|
1519
1566
|
return data;
|
|
1520
1567
|
});
|
|
1521
1568
|
var PowerPathGetAssessmentProgressParams = z10.object({
|
|
1522
|
-
student:
|
|
1523
|
-
lesson:
|
|
1569
|
+
student: NonEmptyString,
|
|
1570
|
+
lesson: NonEmptyString,
|
|
1524
1571
|
attempt: z10.number().int().positive().optional()
|
|
1525
1572
|
});
|
|
1526
1573
|
var PowerPathGetNextQuestionParams = z10.object({
|
|
1527
|
-
student:
|
|
1528
|
-
lesson:
|
|
1574
|
+
student: NonEmptyString,
|
|
1575
|
+
lesson: NonEmptyString
|
|
1529
1576
|
});
|
|
1530
1577
|
var PowerPathGetAttemptsParams = z10.object({
|
|
1531
|
-
student:
|
|
1532
|
-
lesson:
|
|
1578
|
+
student: NonEmptyString,
|
|
1579
|
+
lesson: NonEmptyString
|
|
1533
1580
|
});
|
|
1534
1581
|
var PowerPathTestOutParams = z10.object({
|
|
1535
|
-
student:
|
|
1536
|
-
course:
|
|
1582
|
+
student: NonEmptyString,
|
|
1583
|
+
course: NonEmptyString
|
|
1537
1584
|
});
|
|
1538
1585
|
var PowerPathImportExternalTestAssignmentResultsParams = z10.object({
|
|
1539
|
-
student:
|
|
1540
|
-
lesson:
|
|
1541
|
-
applicationName:
|
|
1586
|
+
student: NonEmptyString,
|
|
1587
|
+
lesson: NonEmptyString,
|
|
1588
|
+
applicationName: NonEmptyString.optional()
|
|
1542
1589
|
});
|
|
1543
1590
|
var PowerPathPlacementQueryParams = z10.object({
|
|
1544
|
-
student:
|
|
1591
|
+
student: NonEmptyString,
|
|
1545
1592
|
subject: TimebackSubject
|
|
1546
1593
|
});
|
|
1547
1594
|
var PowerPathSyllabusQueryParams = z10.object({
|
|
@@ -1592,18 +1639,18 @@ var QtiCorrectResponse = z11.object({
|
|
|
1592
1639
|
value: z11.array(z11.string())
|
|
1593
1640
|
}).strict();
|
|
1594
1641
|
var QtiResponseDeclaration = z11.object({
|
|
1595
|
-
identifier:
|
|
1642
|
+
identifier: NonEmptyString,
|
|
1596
1643
|
cardinality: QtiCardinality,
|
|
1597
1644
|
baseType: QtiBaseType.optional(),
|
|
1598
1645
|
correctResponse: QtiCorrectResponse
|
|
1599
1646
|
}).strict();
|
|
1600
1647
|
var QtiOutcomeDeclaration = z11.object({
|
|
1601
|
-
identifier:
|
|
1648
|
+
identifier: NonEmptyString,
|
|
1602
1649
|
cardinality: QtiCardinality,
|
|
1603
1650
|
baseType: QtiBaseType.optional()
|
|
1604
1651
|
}).strict();
|
|
1605
1652
|
var QtiTestOutcomeDeclaration = z11.object({
|
|
1606
|
-
identifier:
|
|
1653
|
+
identifier: NonEmptyString,
|
|
1607
1654
|
cardinality: QtiCardinality.optional(),
|
|
1608
1655
|
baseType: QtiBaseType,
|
|
1609
1656
|
normalMaximum: z11.number().optional(),
|
|
@@ -1613,19 +1660,19 @@ var QtiTestOutcomeDeclaration = z11.object({
|
|
|
1613
1660
|
}).strict().optional()
|
|
1614
1661
|
}).strict();
|
|
1615
1662
|
var QtiInlineFeedback = z11.object({
|
|
1616
|
-
outcomeIdentifier:
|
|
1617
|
-
variableIdentifier:
|
|
1663
|
+
outcomeIdentifier: NonEmptyString,
|
|
1664
|
+
variableIdentifier: NonEmptyString
|
|
1618
1665
|
}).strict();
|
|
1619
1666
|
var QtiResponseProcessing = z11.object({
|
|
1620
1667
|
templateType: z11.enum(["match_correct", "map_response"]),
|
|
1621
|
-
responseDeclarationIdentifier:
|
|
1622
|
-
outcomeIdentifier:
|
|
1623
|
-
correctResponseIdentifier:
|
|
1624
|
-
incorrectResponseIdentifier:
|
|
1668
|
+
responseDeclarationIdentifier: NonEmptyString,
|
|
1669
|
+
outcomeIdentifier: NonEmptyString,
|
|
1670
|
+
correctResponseIdentifier: NonEmptyString,
|
|
1671
|
+
incorrectResponseIdentifier: NonEmptyString,
|
|
1625
1672
|
inlineFeedback: QtiInlineFeedback.optional()
|
|
1626
1673
|
}).strict();
|
|
1627
1674
|
var QtiLearningObjectiveSet = z11.object({
|
|
1628
|
-
source:
|
|
1675
|
+
source: NonEmptyString,
|
|
1629
1676
|
learningObjectiveIds: z11.array(z11.string())
|
|
1630
1677
|
}).strict();
|
|
1631
1678
|
var QtiItemMetadata = z11.object({
|
|
@@ -1635,32 +1682,32 @@ var QtiItemMetadata = z11.object({
|
|
|
1635
1682
|
learningObjectiveSet: z11.array(QtiLearningObjectiveSet).optional()
|
|
1636
1683
|
}).loose();
|
|
1637
1684
|
var QtiModalFeedback = z11.object({
|
|
1638
|
-
outcomeIdentifier:
|
|
1639
|
-
identifier:
|
|
1685
|
+
outcomeIdentifier: NonEmptyString,
|
|
1686
|
+
identifier: NonEmptyString,
|
|
1640
1687
|
showHide: QtiShowHide,
|
|
1641
1688
|
content: z11.string(),
|
|
1642
1689
|
title: z11.string()
|
|
1643
1690
|
}).strict();
|
|
1644
1691
|
var QtiFeedbackInline = z11.object({
|
|
1645
|
-
outcomeIdentifier:
|
|
1646
|
-
identifier:
|
|
1692
|
+
outcomeIdentifier: NonEmptyString,
|
|
1693
|
+
identifier: NonEmptyString,
|
|
1647
1694
|
showHide: QtiShowHide,
|
|
1648
1695
|
content: z11.string(),
|
|
1649
1696
|
class: z11.array(z11.string())
|
|
1650
1697
|
}).strict();
|
|
1651
1698
|
var QtiFeedbackBlock = z11.object({
|
|
1652
|
-
outcomeIdentifier:
|
|
1653
|
-
identifier:
|
|
1699
|
+
outcomeIdentifier: NonEmptyString,
|
|
1700
|
+
identifier: NonEmptyString,
|
|
1654
1701
|
showHide: QtiShowHide,
|
|
1655
1702
|
content: z11.string(),
|
|
1656
1703
|
class: z11.array(z11.string())
|
|
1657
1704
|
}).strict();
|
|
1658
1705
|
var QtiStylesheet = z11.object({
|
|
1659
|
-
href:
|
|
1660
|
-
type:
|
|
1706
|
+
href: NonEmptyString,
|
|
1707
|
+
type: NonEmptyString
|
|
1661
1708
|
}).strict();
|
|
1662
1709
|
var QtiCatalogInfo = z11.object({
|
|
1663
|
-
id:
|
|
1710
|
+
id: NonEmptyString,
|
|
1664
1711
|
support: z11.string(),
|
|
1665
1712
|
content: z11.string()
|
|
1666
1713
|
}).strict();
|
|
@@ -1672,12 +1719,12 @@ var QtiPaginationParams = z11.object({
|
|
|
1672
1719
|
}).strict();
|
|
1673
1720
|
var QtiAssessmentItemXmlCreateInput = z11.object({
|
|
1674
1721
|
format: z11.string().pipe(z11.literal("xml")),
|
|
1675
|
-
xml:
|
|
1722
|
+
xml: NonEmptyString,
|
|
1676
1723
|
metadata: QtiItemMetadata.optional()
|
|
1677
1724
|
}).strict();
|
|
1678
1725
|
var QtiAssessmentItemJsonCreateInput = z11.object({
|
|
1679
|
-
identifier:
|
|
1680
|
-
title:
|
|
1726
|
+
identifier: NonEmptyString,
|
|
1727
|
+
title: NonEmptyString,
|
|
1681
1728
|
type: QtiAssessmentItemType,
|
|
1682
1729
|
qtiVersion: z11.string().optional(),
|
|
1683
1730
|
timeDependent: z11.boolean().optional(),
|
|
@@ -1695,8 +1742,8 @@ var QtiAssessmentItemCreateInput = z11.union([
|
|
|
1695
1742
|
QtiAssessmentItemJsonCreateInput
|
|
1696
1743
|
]);
|
|
1697
1744
|
var QtiAssessmentItemUpdateInput = z11.object({
|
|
1698
|
-
identifier:
|
|
1699
|
-
title:
|
|
1745
|
+
identifier: NonEmptyString.optional(),
|
|
1746
|
+
title: NonEmptyString,
|
|
1700
1747
|
type: QtiAssessmentItemType,
|
|
1701
1748
|
qtiVersion: z11.string().optional(),
|
|
1702
1749
|
timeDependent: z11.boolean().optional(),
|
|
@@ -1712,17 +1759,17 @@ var QtiAssessmentItemUpdateInput = z11.object({
|
|
|
1712
1759
|
content: z11.record(z11.string(), z11.unknown())
|
|
1713
1760
|
}).strict();
|
|
1714
1761
|
var QtiAssessmentItemProcessResponseInput = z11.object({
|
|
1715
|
-
identifier:
|
|
1762
|
+
identifier: NonEmptyString,
|
|
1716
1763
|
response: z11.union([z11.string(), z11.array(z11.string())])
|
|
1717
1764
|
}).strict();
|
|
1718
1765
|
var QtiAssessmentItemRef = z11.object({
|
|
1719
|
-
identifier:
|
|
1720
|
-
href:
|
|
1766
|
+
identifier: NonEmptyString,
|
|
1767
|
+
href: NonEmptyString,
|
|
1721
1768
|
sequence: z11.number().int().positive().optional()
|
|
1722
1769
|
}).strict();
|
|
1723
1770
|
var QtiAssessmentSection = z11.object({
|
|
1724
|
-
identifier:
|
|
1725
|
-
title:
|
|
1771
|
+
identifier: NonEmptyString,
|
|
1772
|
+
title: NonEmptyString,
|
|
1726
1773
|
visible: z11.boolean(),
|
|
1727
1774
|
required: z11.boolean().optional(),
|
|
1728
1775
|
fixed: z11.boolean().optional(),
|
|
@@ -1730,7 +1777,7 @@ var QtiAssessmentSection = z11.object({
|
|
|
1730
1777
|
"qti-assessment-item-ref": z11.array(QtiAssessmentItemRef).optional()
|
|
1731
1778
|
}).strict();
|
|
1732
1779
|
var QtiTestPart = z11.object({
|
|
1733
|
-
identifier:
|
|
1780
|
+
identifier: NonEmptyString,
|
|
1734
1781
|
navigationMode: z11.string().pipe(QtiNavigationMode),
|
|
1735
1782
|
submissionMode: z11.string().pipe(QtiSubmissionMode),
|
|
1736
1783
|
"qti-assessment-section": z11.array(QtiAssessmentSection)
|
|
@@ -1742,8 +1789,8 @@ var QtiAssessmentTestMetadataUpdateInput = z11.object({
|
|
|
1742
1789
|
metadata: z11.record(z11.string(), z11.unknown()).optional()
|
|
1743
1790
|
}).strict();
|
|
1744
1791
|
var QtiAssessmentTestCreateInput = z11.object({
|
|
1745
|
-
identifier:
|
|
1746
|
-
title:
|
|
1792
|
+
identifier: NonEmptyString,
|
|
1793
|
+
title: NonEmptyString,
|
|
1747
1794
|
qtiVersion: z11.string().optional(),
|
|
1748
1795
|
toolName: z11.string().optional(),
|
|
1749
1796
|
toolVersion: z11.string().optional(),
|
|
@@ -1755,8 +1802,8 @@ var QtiAssessmentTestCreateInput = z11.object({
|
|
|
1755
1802
|
"qti-outcome-declaration": z11.array(QtiTestOutcomeDeclaration).optional()
|
|
1756
1803
|
}).strict();
|
|
1757
1804
|
var QtiAssessmentTestUpdateInput = z11.object({
|
|
1758
|
-
identifier:
|
|
1759
|
-
title:
|
|
1805
|
+
identifier: NonEmptyString.optional(),
|
|
1806
|
+
title: NonEmptyString,
|
|
1760
1807
|
qtiVersion: z11.string().optional(),
|
|
1761
1808
|
toolName: z11.string().optional(),
|
|
1762
1809
|
toolVersion: z11.string().optional(),
|
|
@@ -1768,8 +1815,8 @@ var QtiAssessmentTestUpdateInput = z11.object({
|
|
|
1768
1815
|
"qti-outcome-declaration": z11.array(QtiTestOutcomeDeclaration).optional()
|
|
1769
1816
|
}).strict();
|
|
1770
1817
|
var QtiStimulusCreateInput = z11.object({
|
|
1771
|
-
identifier:
|
|
1772
|
-
title:
|
|
1818
|
+
identifier: NonEmptyString,
|
|
1819
|
+
title: NonEmptyString,
|
|
1773
1820
|
label: z11.string().optional(),
|
|
1774
1821
|
language: z11.string().optional(),
|
|
1775
1822
|
stylesheet: QtiStylesheet.optional(),
|
|
@@ -1780,8 +1827,8 @@ var QtiStimulusCreateInput = z11.object({
|
|
|
1780
1827
|
metadata: z11.record(z11.string(), z11.unknown()).optional()
|
|
1781
1828
|
}).strict();
|
|
1782
1829
|
var QtiStimulusUpdateInput = z11.object({
|
|
1783
|
-
identifier:
|
|
1784
|
-
title:
|
|
1830
|
+
identifier: NonEmptyString.optional(),
|
|
1831
|
+
title: NonEmptyString,
|
|
1785
1832
|
label: z11.string().optional(),
|
|
1786
1833
|
language: z11.string().optional(),
|
|
1787
1834
|
stylesheet: QtiStylesheet.optional(),
|
|
@@ -1803,9 +1850,9 @@ var QtiValidateBatchInput = z11.object({
|
|
|
1803
1850
|
}).strict();
|
|
1804
1851
|
var QtiLessonFeedbackInput = z11.object({
|
|
1805
1852
|
questionId: z11.string().optional(),
|
|
1806
|
-
userId:
|
|
1807
|
-
feedback:
|
|
1808
|
-
lessonId:
|
|
1853
|
+
userId: NonEmptyString,
|
|
1854
|
+
feedback: NonEmptyString,
|
|
1855
|
+
lessonId: NonEmptyString,
|
|
1809
1856
|
humanApproved: z11.boolean().optional()
|
|
1810
1857
|
}).strict();
|
|
1811
1858
|
// ../edubridge/src/resources/analytics.ts
|
|
@@ -2072,4 +2119,4 @@ function createEdubridgeClient(registry = DEFAULT_PROVIDER_REGISTRY) {
|
|
|
2072
2119
|
|
|
2073
2120
|
// ../edubridge/src/client.ts
|
|
2074
2121
|
var EdubridgeClient = createEdubridgeClient();
|
|
2075
|
-
export { ActivityCompletedInput, TimeSpentInput, CaliperEnvelopeInput, CaliperSendEventsInput, CaliperListEventsParams, WebhookCreateInput, WebhookUpdateInput, WebhookFilterCreateInput, WebhookFilterUpdateInput, CasePackageInput, ClrCredentialInput, OneRosterUserCreateInput, OneRosterCourseCreateInput, OneRosterClassCreateInput, OneRosterEnrollmentCreateInput, OneRosterCategoryCreateInput, OneRosterLineItemCreateInput, OneRosterResultCreateInput, OneRosterScoreScaleCreateInput, OneRosterAssessmentLineItemCreateInput, OneRosterAssessmentResultCreateInput, OneRosterOrgCreateInput, OneRosterSchoolCreateInput, OneRosterAcademicSessionCreateInput, OneRosterComponentResourceCreateInput, OneRosterCourseComponentCreateInput, OneRosterEnrollInput, OneRosterAgentInput, OneRosterCredentialInput, OneRosterDemographicsCreateInput, OneRosterResourceCreateInput, OneRosterCourseStructureInput, OneRosterBulkResultsInput, PowerPathCreateExternalPlacementTestInput, PowerPathCreateExternalTestOutInput, PowerPathCreateInternalTestInput, PowerPathCreateNewAttemptInput, PowerPathFinalStudentAssessmentResponseInput, PowerPathLessonPlansCreateInput, PowerPathLessonPlanOperationsInput, PowerPathLessonPlanUpdateStudentItemResponseInput, PowerPathMakeExternalTestAssignmentInput, PowerPathPlacementResetUserPlacementInput, PowerPathResetAttemptInput, PowerPathScreeningResetSessionInput, PowerPathScreeningAssignTestInput, PowerPathTestAssignmentsCreateInput, PowerPathTestAssignmentsUpdateInput, PowerPathTestAssignmentsBulkInput, PowerPathTestAssignmentsImportInput, PowerPathTestAssignmentsListParams, PowerPathTestAssignmentsAdminParams, PowerPathUpdateStudentQuestionResponseInput, PowerPathGetAssessmentProgressParams, PowerPathGetNextQuestionParams, PowerPathGetAttemptsParams, PowerPathTestOutParams, PowerPathImportExternalTestAssignmentResultsParams, PowerPathPlacementQueryParams, PowerPathSyllabusQueryParams, QtiAssessmentItemXmlCreateInput, QtiAssessmentItemJsonCreateInput, QtiAssessmentItemCreateInput, QtiAssessmentItemUpdateInput, QtiAssessmentItemProcessResponseInput, QtiAssessmentItemRef, QtiAssessmentSection, QtiTestPart, QtiReorderItemsInput, QtiAssessmentTestMetadataUpdateInput, QtiAssessmentTestCreateInput, QtiAssessmentTestUpdateInput, QtiStimulusCreateInput, QtiStimulusUpdateInput, QtiValidateInput, QtiValidateBatchInput, QtiLessonFeedbackInput, aggregateActivityMetrics, EdubridgeClient };
|
|
2122
|
+
export { ActivityCompletedInput, TimeSpentInput, CaliperEnvelopeInput, CaliperSendEventsInput, CaliperListEventsParams, QuestionSeenInput, QuestionAnsweredInput, QuestionGradedInput, WebhookCreateInput, WebhookUpdateInput, WebhookFilterCreateInput, WebhookFilterUpdateInput, CasePackageInput, ClrCredentialInput, OneRosterUserCreateInput, OneRosterCourseCreateInput, OneRosterClassCreateInput, OneRosterEnrollmentCreateInput, OneRosterCategoryCreateInput, OneRosterLineItemCreateInput, OneRosterResultCreateInput, OneRosterScoreScaleCreateInput, OneRosterAssessmentLineItemCreateInput, OneRosterAssessmentResultCreateInput, OneRosterOrgCreateInput, OneRosterSchoolCreateInput, OneRosterAcademicSessionCreateInput, OneRosterComponentResourceCreateInput, OneRosterCourseComponentCreateInput, OneRosterEnrollInput, OneRosterAgentInput, OneRosterCredentialInput, OneRosterDemographicsCreateInput, OneRosterResourceCreateInput, OneRosterCourseStructureInput, OneRosterBulkResultsInput, PowerPathCreateExternalPlacementTestInput, PowerPathCreateExternalTestOutInput, PowerPathCreateInternalTestInput, PowerPathCreateNewAttemptInput, PowerPathFinalStudentAssessmentResponseInput, PowerPathLessonPlansCreateInput, PowerPathLessonPlanOperationsInput, PowerPathLessonPlanUpdateStudentItemResponseInput, PowerPathMakeExternalTestAssignmentInput, PowerPathPlacementResetUserPlacementInput, PowerPathResetAttemptInput, PowerPathScreeningResetSessionInput, PowerPathScreeningAssignTestInput, PowerPathTestAssignmentsCreateInput, PowerPathTestAssignmentsUpdateInput, PowerPathTestAssignmentsBulkInput, PowerPathTestAssignmentsImportInput, PowerPathTestAssignmentsListParams, PowerPathTestAssignmentsAdminParams, PowerPathUpdateStudentQuestionResponseInput, PowerPathGetAssessmentProgressParams, PowerPathGetNextQuestionParams, PowerPathGetAttemptsParams, PowerPathTestOutParams, PowerPathImportExternalTestAssignmentResultsParams, PowerPathPlacementQueryParams, PowerPathSyllabusQueryParams, QtiAssessmentItemXmlCreateInput, QtiAssessmentItemJsonCreateInput, QtiAssessmentItemCreateInput, QtiAssessmentItemUpdateInput, QtiAssessmentItemProcessResponseInput, QtiAssessmentItemRef, QtiAssessmentSection, QtiTestPart, QtiReorderItemsInput, QtiAssessmentTestMetadataUpdateInput, QtiAssessmentTestCreateInput, QtiAssessmentTestUpdateInput, QtiStimulusCreateInput, QtiStimulusUpdateInput, QtiValidateInput, QtiValidateBatchInput, QtiLessonFeedbackInput, aggregateActivityMetrics, EdubridgeClient };
|