@timeback/oneroster 0.2.0 → 0.2.1-beta.20260320221119
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-4fwv2yyb.js → chunk-bnh0e9yt.js} +68 -54
- package/dist/errors.js +1 -1
- package/dist/index.d.ts +3 -3
- package/dist/index.js +53 -6
- package/dist/public-types.d.ts +3 -3
- package/dist/resources/resources/resources.d.ts +8 -0
- package/dist/resources/resources/resources.d.ts.map +1 -1
- package/dist/resources/rostering/classes.d.ts.map +1 -1
- package/dist/resources/rostering/courses.d.ts.map +1 -1
- package/dist/resources/rostering/users.d.ts.map +1 -1
- package/package.json +1 -1
- package/dist/errors.d.ts.map +0 -1
- package/dist/index.d.ts.map +0 -1
- package/dist/public-types.d.ts.map +0 -1
|
@@ -643,6 +643,13 @@ var BEYONDAI_PATHS = {
|
|
|
643
643
|
webhookFilterUpdate: "/webhook-filters/{id}",
|
|
644
644
|
webhookFilterDelete: "/webhook-filters/{id}",
|
|
645
645
|
webhookFiltersByWebhook: "/webhook-filters/webhook/{webhookId}"
|
|
646
|
+
},
|
|
647
|
+
reporting: {
|
|
648
|
+
mcp: "/mcp/reporting",
|
|
649
|
+
savedQueryExecute: "/reporting/saved-queries/{id}",
|
|
650
|
+
adminGroupCheck: "/mcp/admin/users/{email}/group",
|
|
651
|
+
adminGroupAdd: "/mcp/admin/users/{email}/group",
|
|
652
|
+
adminGroupRemove: "/mcp/admin/users/{email}/group"
|
|
646
653
|
}
|
|
647
654
|
};
|
|
648
655
|
var LEARNWITHAI_PATHS = {
|
|
@@ -659,6 +666,7 @@ var LEARNWITHAI_PATHS = {
|
|
|
659
666
|
resources: "/resources/1.0"
|
|
660
667
|
},
|
|
661
668
|
webhooks: null,
|
|
669
|
+
reporting: null,
|
|
662
670
|
edubridge: null,
|
|
663
671
|
powerpath: null,
|
|
664
672
|
clr: null,
|
|
@@ -687,6 +695,7 @@ function resolvePathProfiles(pathProfile, customPaths) {
|
|
|
687
695
|
caliper: customPaths?.caliper ?? basePaths.caliper,
|
|
688
696
|
oneroster: customPaths?.oneroster ?? basePaths.oneroster,
|
|
689
697
|
webhooks: customPaths?.webhooks ?? basePaths.webhooks,
|
|
698
|
+
reporting: customPaths?.reporting ?? basePaths.reporting,
|
|
690
699
|
edubridge: customPaths?.edubridge ?? basePaths.edubridge,
|
|
691
700
|
powerpath: customPaths?.powerpath ?? basePaths.powerpath,
|
|
692
701
|
clr: customPaths?.clr ?? basePaths.clr,
|
|
@@ -699,11 +708,11 @@ class TimebackProvider {
|
|
|
699
708
|
env;
|
|
700
709
|
auth;
|
|
701
710
|
timeout;
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
711
|
+
_endpoints;
|
|
712
|
+
_authUrl;
|
|
713
|
+
_tokenScope;
|
|
714
|
+
_pathProfiles;
|
|
715
|
+
_tokenManagers = new Map;
|
|
707
716
|
constructor(config) {
|
|
708
717
|
this.timeout = config.timeout ?? 30000;
|
|
709
718
|
if (isEnvConfig(config)) {
|
|
@@ -716,84 +725,89 @@ class TimebackProvider {
|
|
|
716
725
|
if (!platformEndpoints) {
|
|
717
726
|
throw new Error(`Unknown platform: ${platform}`);
|
|
718
727
|
}
|
|
719
|
-
this.
|
|
720
|
-
this.
|
|
721
|
-
this.
|
|
722
|
-
this.
|
|
728
|
+
this._authUrl = platformEndpoints.token[env];
|
|
729
|
+
this._tokenScope = platformEndpoints.tokenScope ?? undefined;
|
|
730
|
+
this._pathProfiles = PLATFORM_PATHS[platform] ?? BEYONDAI_PATHS;
|
|
731
|
+
this._endpoints = {
|
|
723
732
|
oneroster: {
|
|
724
733
|
baseUrl: platformEndpoints.api[env],
|
|
725
|
-
authUrl: this.
|
|
734
|
+
authUrl: this._authUrl
|
|
726
735
|
},
|
|
727
736
|
edubridge: {
|
|
728
737
|
baseUrl: platformEndpoints.api[env],
|
|
729
|
-
authUrl: this.
|
|
738
|
+
authUrl: this._authUrl
|
|
730
739
|
},
|
|
731
740
|
powerpath: {
|
|
732
741
|
baseUrl: platformEndpoints.api[env],
|
|
733
|
-
authUrl: this.
|
|
742
|
+
authUrl: this._authUrl
|
|
734
743
|
},
|
|
735
744
|
clr: {
|
|
736
745
|
baseUrl: platformEndpoints.api[env],
|
|
737
|
-
authUrl: this.
|
|
746
|
+
authUrl: this._authUrl
|
|
738
747
|
},
|
|
739
748
|
case: {
|
|
740
749
|
baseUrl: platformEndpoints.api[env],
|
|
741
|
-
authUrl: this.
|
|
750
|
+
authUrl: this._authUrl
|
|
742
751
|
},
|
|
743
752
|
caliper: {
|
|
744
753
|
baseUrl: platformEndpoints.caliper[env],
|
|
745
|
-
authUrl: this.
|
|
754
|
+
authUrl: this._authUrl
|
|
746
755
|
},
|
|
747
756
|
webhooks: {
|
|
748
757
|
baseUrl: platformEndpoints.caliper[env],
|
|
749
|
-
authUrl: this.
|
|
758
|
+
authUrl: this._authUrl
|
|
759
|
+
},
|
|
760
|
+
reporting: {
|
|
761
|
+
baseUrl: platformEndpoints.api[env],
|
|
762
|
+
authUrl: this._authUrl
|
|
750
763
|
},
|
|
751
764
|
qti: {
|
|
752
765
|
baseUrl: platformEndpoints.qti[env],
|
|
753
|
-
authUrl: this.
|
|
766
|
+
authUrl: this._authUrl
|
|
754
767
|
}
|
|
755
768
|
};
|
|
756
769
|
} else if (isExplicitConfig(config)) {
|
|
757
770
|
this.auth = config.auth;
|
|
758
|
-
this.
|
|
759
|
-
this.
|
|
760
|
-
this.
|
|
761
|
-
oneroster: { baseUrl: config.baseUrl, authUrl: this.
|
|
762
|
-
edubridge: { baseUrl: config.baseUrl, authUrl: this.
|
|
763
|
-
powerpath: { baseUrl: config.baseUrl, authUrl: this.
|
|
764
|
-
clr: { baseUrl: config.baseUrl, authUrl: this.
|
|
765
|
-
case: { baseUrl: config.baseUrl, authUrl: this.
|
|
766
|
-
caliper: { baseUrl: config.baseUrl, authUrl: this.
|
|
767
|
-
webhooks: { baseUrl: config.baseUrl, authUrl: this.
|
|
768
|
-
|
|
771
|
+
this._authUrl = config.authUrl;
|
|
772
|
+
this._pathProfiles = resolvePathProfiles(config.pathProfile, config.paths);
|
|
773
|
+
this._endpoints = {
|
|
774
|
+
oneroster: { baseUrl: config.baseUrl, authUrl: this._authUrl },
|
|
775
|
+
edubridge: { baseUrl: config.baseUrl, authUrl: this._authUrl },
|
|
776
|
+
powerpath: { baseUrl: config.baseUrl, authUrl: this._authUrl },
|
|
777
|
+
clr: { baseUrl: config.baseUrl, authUrl: this._authUrl },
|
|
778
|
+
case: { baseUrl: config.baseUrl, authUrl: this._authUrl },
|
|
779
|
+
caliper: { baseUrl: config.baseUrl, authUrl: this._authUrl },
|
|
780
|
+
webhooks: { baseUrl: config.baseUrl, authUrl: this._authUrl },
|
|
781
|
+
reporting: { baseUrl: config.baseUrl, authUrl: this._authUrl },
|
|
782
|
+
qti: { baseUrl: config.baseUrl, authUrl: this._authUrl }
|
|
769
783
|
};
|
|
770
784
|
} else if (isServicesConfig(config)) {
|
|
771
785
|
this.auth = config.auth;
|
|
772
|
-
this.
|
|
773
|
-
this.
|
|
774
|
-
this.
|
|
786
|
+
this._authUrl = config.authUrl;
|
|
787
|
+
this._pathProfiles = resolvePathProfiles(config.pathProfile, config.paths);
|
|
788
|
+
this._endpoints = {};
|
|
775
789
|
for (const [service, baseUrl] of Object.entries(config.services)) {
|
|
776
790
|
if (baseUrl) {
|
|
777
|
-
this.
|
|
791
|
+
this._endpoints[service] = {
|
|
778
792
|
baseUrl,
|
|
779
|
-
authUrl: this.
|
|
793
|
+
authUrl: this._authUrl
|
|
780
794
|
};
|
|
781
795
|
}
|
|
782
796
|
}
|
|
783
797
|
} else {
|
|
784
798
|
throw new Error("Invalid provider configuration");
|
|
785
799
|
}
|
|
786
|
-
for (const service of Object.keys(this.
|
|
787
|
-
if (this.
|
|
788
|
-
delete this.
|
|
800
|
+
for (const service of Object.keys(this._pathProfiles)) {
|
|
801
|
+
if (this._pathProfiles[service] === null) {
|
|
802
|
+
delete this._endpoints[service];
|
|
789
803
|
}
|
|
790
804
|
}
|
|
791
805
|
}
|
|
792
806
|
getEndpoint(service) {
|
|
793
|
-
const endpoint = this.
|
|
807
|
+
const endpoint = this._endpoints[service];
|
|
794
808
|
if (!endpoint) {
|
|
795
809
|
const pathKey = service;
|
|
796
|
-
if (pathKey in this.
|
|
810
|
+
if (pathKey in this._pathProfiles && this._pathProfiles[pathKey] === null) {
|
|
797
811
|
throw new Error(`Service "${service}" is not supported on ${this.platform ?? "this"} platform.`);
|
|
798
812
|
}
|
|
799
813
|
throw new Error(`Service "${service}" is not configured in this provider`);
|
|
@@ -801,13 +815,13 @@ class TimebackProvider {
|
|
|
801
815
|
return endpoint;
|
|
802
816
|
}
|
|
803
817
|
hasService(service) {
|
|
804
|
-
return service in this.
|
|
818
|
+
return service in this._endpoints;
|
|
805
819
|
}
|
|
806
820
|
getAvailableServices() {
|
|
807
|
-
return Object.keys(this.
|
|
821
|
+
return Object.keys(this._endpoints);
|
|
808
822
|
}
|
|
809
823
|
getTokenUrl() {
|
|
810
|
-
return this.
|
|
824
|
+
return this._authUrl;
|
|
811
825
|
}
|
|
812
826
|
getEndpointWithPaths(service) {
|
|
813
827
|
const endpoint = this.getEndpoint(service);
|
|
@@ -815,17 +829,17 @@ class TimebackProvider {
|
|
|
815
829
|
return { ...endpoint, paths };
|
|
816
830
|
}
|
|
817
831
|
getPaths() {
|
|
818
|
-
return this.
|
|
832
|
+
return this._pathProfiles;
|
|
819
833
|
}
|
|
820
834
|
getServicePaths(service) {
|
|
821
|
-
const paths = this.
|
|
835
|
+
const paths = this._pathProfiles[service];
|
|
822
836
|
if (!paths) {
|
|
823
837
|
throw new Error(`Service "${service}" is not supported on ${this.platform ?? "this"} platform.`);
|
|
824
838
|
}
|
|
825
839
|
return paths;
|
|
826
840
|
}
|
|
827
841
|
hasServiceSupport(service) {
|
|
828
|
-
return this.
|
|
842
|
+
return this._pathProfiles[service] !== null;
|
|
829
843
|
}
|
|
830
844
|
getTokenProvider(service) {
|
|
831
845
|
const endpoint = this.getEndpoint(service);
|
|
@@ -836,7 +850,7 @@ class TimebackProvider {
|
|
|
836
850
|
if (!this.auth) {
|
|
837
851
|
throw new Error(`Service "${service}" requires authentication but no credentials were provided`);
|
|
838
852
|
}
|
|
839
|
-
let manager = this.
|
|
853
|
+
let manager = this._tokenManagers.get(authUrl);
|
|
840
854
|
if (!manager) {
|
|
841
855
|
manager = new TokenManager({
|
|
842
856
|
tokenUrl: authUrl,
|
|
@@ -844,28 +858,28 @@ class TimebackProvider {
|
|
|
844
858
|
clientId: this.auth.clientId,
|
|
845
859
|
clientSecret: this.auth.clientSecret
|
|
846
860
|
},
|
|
847
|
-
scope: this.
|
|
861
|
+
scope: this._tokenScope
|
|
848
862
|
});
|
|
849
|
-
this.
|
|
863
|
+
this._tokenManagers.set(authUrl, manager);
|
|
850
864
|
}
|
|
851
865
|
return manager;
|
|
852
866
|
}
|
|
853
867
|
async checkAuth() {
|
|
854
|
-
if (!this.
|
|
868
|
+
if (!this._authUrl || !this.auth) {
|
|
855
869
|
throw new Error("No auth configured on this provider");
|
|
856
870
|
}
|
|
857
871
|
const startTime = Date.now();
|
|
858
|
-
let manager = this.
|
|
872
|
+
let manager = this._tokenManagers.get(this._authUrl);
|
|
859
873
|
if (!manager) {
|
|
860
874
|
manager = new TokenManager({
|
|
861
|
-
tokenUrl: this.
|
|
875
|
+
tokenUrl: this._authUrl,
|
|
862
876
|
credentials: {
|
|
863
877
|
clientId: this.auth.clientId,
|
|
864
878
|
clientSecret: this.auth.clientSecret
|
|
865
879
|
},
|
|
866
|
-
scope: this.
|
|
880
|
+
scope: this._tokenScope
|
|
867
881
|
});
|
|
868
|
-
this.
|
|
882
|
+
this._tokenManagers.set(this._authUrl, manager);
|
|
869
883
|
}
|
|
870
884
|
try {
|
|
871
885
|
await manager.getToken();
|
|
@@ -884,10 +898,10 @@ class TimebackProvider {
|
|
|
884
898
|
}
|
|
885
899
|
}
|
|
886
900
|
invalidateTokens() {
|
|
887
|
-
for (const manager of this.
|
|
901
|
+
for (const manager of this._tokenManagers.values()) {
|
|
888
902
|
manager.invalidate?.();
|
|
889
903
|
}
|
|
890
|
-
this.
|
|
904
|
+
this._tokenManagers.clear();
|
|
891
905
|
}
|
|
892
906
|
}
|
|
893
907
|
// ../../internal/client-infra/src/utils/utils.ts
|
package/dist/errors.js
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -678,9 +678,9 @@ type ResourceType = 'rostering' | 'gradebook' | 'resources'
|
|
|
678
678
|
*/
|
|
679
679
|
interface BaseResourceMetadata {
|
|
680
680
|
/** Academic subject area (e.g., "Math", "Science", "Language") */
|
|
681
|
-
subject?:
|
|
682
|
-
/** Array or range of grade levels
|
|
683
|
-
grades?:
|
|
681
|
+
subject?: TimebackSubject
|
|
682
|
+
/** Array or range of grade levels */
|
|
683
|
+
grades?: TimebackGrade[]
|
|
684
684
|
/** Language of the content, using standard IETF BCP 47 codes (e.g., "en-US") */
|
|
685
685
|
language?: string
|
|
686
686
|
/** Experience points (XP) assigned for completing this resource */
|
package/dist/index.js
CHANGED
|
@@ -12,7 +12,7 @@ import {
|
|
|
12
12
|
validateSourcedId,
|
|
13
13
|
validateWithSchema,
|
|
14
14
|
whereToFilter
|
|
15
|
-
} from "./chunk-
|
|
15
|
+
} from "./chunk-bnh0e9yt.js";
|
|
16
16
|
import"./chunk-6jf1natv.js";
|
|
17
17
|
|
|
18
18
|
// src/constants.ts
|
|
@@ -739,7 +739,9 @@ var EduBridgeEnrollment = z7.object({
|
|
|
739
739
|
school: z7.object({
|
|
740
740
|
id: z7.string(),
|
|
741
741
|
name: z7.string()
|
|
742
|
-
})
|
|
742
|
+
}),
|
|
743
|
+
testOutSupported: z7.boolean(),
|
|
744
|
+
testOutEligible: z7.boolean()
|
|
743
745
|
});
|
|
744
746
|
var SubjectMetrics = z7.object({
|
|
745
747
|
activityMetrics: z7.object({
|
|
@@ -1534,6 +1536,18 @@ var PowerPathPlacementQueryParams = z10.object({
|
|
|
1534
1536
|
student: NonEmptyString,
|
|
1535
1537
|
subject: TimebackSubject
|
|
1536
1538
|
});
|
|
1539
|
+
var PowerPathMakeExternalStudentTestOutAssignmentInput = z10.object({
|
|
1540
|
+
oneRosterSourcedId: NonEmptyString,
|
|
1541
|
+
subject: NonEmptyString
|
|
1542
|
+
});
|
|
1543
|
+
var PowerPathRenderConfigUpsertInput = z10.object({
|
|
1544
|
+
courseIds: z10.array(NonEmptyString).min(1),
|
|
1545
|
+
rendererId: NonEmptyString,
|
|
1546
|
+
rendererUrl: z10.url(),
|
|
1547
|
+
rendererVersion: NonEmptyString.optional(),
|
|
1548
|
+
suppressFeedback: z10.boolean().optional(),
|
|
1549
|
+
suppressCorrectResponse: z10.boolean().optional()
|
|
1550
|
+
});
|
|
1537
1551
|
var PowerPathSyllabusQueryParams = z10.object({
|
|
1538
1552
|
status: z10.enum(["active", "tobedeleted"]).optional()
|
|
1539
1553
|
});
|
|
@@ -1798,6 +1812,23 @@ var QtiLessonFeedbackInput = z11.object({
|
|
|
1798
1812
|
lessonId: NonEmptyString,
|
|
1799
1813
|
humanApproved: z11.boolean().optional()
|
|
1800
1814
|
}).strict();
|
|
1815
|
+
// ../../types/src/zod/reporting.ts
|
|
1816
|
+
import { z as z12 } from "zod/v4";
|
|
1817
|
+
var ReportingAuthMode = z12.enum(["creator_only", "same_org", "all_orgs"]);
|
|
1818
|
+
var ReportingSavedQueryId = z12.string().uuid();
|
|
1819
|
+
var ReportingUserEmail = z12.email();
|
|
1820
|
+
var ReportingQueryInput = z12.object({
|
|
1821
|
+
sql: NonEmptyString
|
|
1822
|
+
});
|
|
1823
|
+
var PersistReportingQueryInput = z12.object({
|
|
1824
|
+
endpointName: NonEmptyString,
|
|
1825
|
+
sql: NonEmptyString,
|
|
1826
|
+
authMode: ReportingAuthMode,
|
|
1827
|
+
description: NonEmptyString.optional()
|
|
1828
|
+
});
|
|
1829
|
+
var RemoveReportingQueryInput = z12.object({
|
|
1830
|
+
endpointId: ReportingSavedQueryId
|
|
1831
|
+
});
|
|
1801
1832
|
// src/lib/validation.ts
|
|
1802
1833
|
function validateListParams(params) {
|
|
1803
1834
|
if (!params)
|
|
@@ -2350,6 +2381,19 @@ class ScoreScalesResource extends BaseResource {
|
|
|
2350
2381
|
}
|
|
2351
2382
|
}
|
|
2352
2383
|
// src/resources/resources/resources.ts
|
|
2384
|
+
function normalizeResourceFromApi(resource) {
|
|
2385
|
+
if (!resource.metadata) {
|
|
2386
|
+
return resource;
|
|
2387
|
+
}
|
|
2388
|
+
return {
|
|
2389
|
+
...resource,
|
|
2390
|
+
metadata: {
|
|
2391
|
+
...resource.metadata,
|
|
2392
|
+
grades: parseGrades(resource.metadata.grades)
|
|
2393
|
+
}
|
|
2394
|
+
};
|
|
2395
|
+
}
|
|
2396
|
+
|
|
2353
2397
|
class ScopedResourceResource {
|
|
2354
2398
|
transport;
|
|
2355
2399
|
basePath;
|
|
@@ -2362,7 +2406,7 @@ class ScopedResourceResource {
|
|
|
2362
2406
|
}
|
|
2363
2407
|
async get() {
|
|
2364
2408
|
const response = await this.transport.request(this.basePath);
|
|
2365
|
-
return response.resource;
|
|
2409
|
+
return normalizeResourceFromApi(response.resource);
|
|
2366
2410
|
}
|
|
2367
2411
|
exists() {
|
|
2368
2412
|
return this.transport.exists(this.basePath);
|
|
@@ -2400,6 +2444,9 @@ class ResourcesResourceImpl extends BaseResource {
|
|
|
2400
2444
|
get updateSchema() {
|
|
2401
2445
|
return OneRosterResourceCreateInput.partial();
|
|
2402
2446
|
}
|
|
2447
|
+
transform(resource) {
|
|
2448
|
+
return normalizeResourceFromApi(resource);
|
|
2449
|
+
}
|
|
2403
2450
|
}
|
|
2404
2451
|
function createResourcesResource(transport) {
|
|
2405
2452
|
const impl = new ResourcesResourceImpl(transport);
|
|
@@ -2451,7 +2498,7 @@ class ScopedUserResource {
|
|
|
2451
2498
|
return this.streamResources(params).toArray();
|
|
2452
2499
|
}
|
|
2453
2500
|
streamResources(params) {
|
|
2454
|
-
return new Paginator2(this.transport, `${this.transport.paths.resources}/resources/users/${this.userId}/resources`, params, "resources");
|
|
2501
|
+
return new Paginator2(this.transport, `${this.transport.paths.resources}/resources/users/${this.userId}/resources`, params, "resources", normalizeResourceFromApi);
|
|
2455
2502
|
}
|
|
2456
2503
|
classes(params) {
|
|
2457
2504
|
return this.streamClasses(params).toArray();
|
|
@@ -2936,7 +2983,7 @@ class ScopedClassResource {
|
|
|
2936
2983
|
return this.streamResources(params).toArray();
|
|
2937
2984
|
}
|
|
2938
2985
|
streamResources(params) {
|
|
2939
|
-
return new Paginator2(this.transport, `${this.transport.paths.resources}/resources/classes/${this.classId}/resources`, params, "resources");
|
|
2986
|
+
return new Paginator2(this.transport, `${this.transport.paths.resources}/resources/classes/${this.classId}/resources`, params, "resources", normalizeResourceFromApi);
|
|
2940
2987
|
}
|
|
2941
2988
|
student(studentId) {
|
|
2942
2989
|
return new ScopedClassStudentResource(this.transport, this.classId, studentId);
|
|
@@ -3040,7 +3087,7 @@ class ScopedCourseResource {
|
|
|
3040
3087
|
return this.streamResources(params).toArray();
|
|
3041
3088
|
}
|
|
3042
3089
|
streamResources(params) {
|
|
3043
|
-
return new Paginator2(this.transport, `${this.transport.paths.resources}/resources/courses/${this.courseId}/resources`, params, "resources");
|
|
3090
|
+
return new Paginator2(this.transport, `${this.transport.paths.resources}/resources/courses/${this.courseId}/resources`, params, "resources", normalizeResourceFromApi);
|
|
3044
3091
|
}
|
|
3045
3092
|
}
|
|
3046
3093
|
|
package/dist/public-types.d.ts
CHANGED
|
@@ -703,9 +703,9 @@ type ResourceType = 'rostering' | 'gradebook' | 'resources'
|
|
|
703
703
|
*/
|
|
704
704
|
interface BaseResourceMetadata {
|
|
705
705
|
/** Academic subject area (e.g., "Math", "Science", "Language") */
|
|
706
|
-
subject?:
|
|
707
|
-
/** Array or range of grade levels
|
|
708
|
-
grades?:
|
|
706
|
+
subject?: TimebackSubject
|
|
707
|
+
/** Array or range of grade levels */
|
|
708
|
+
grades?: TimebackGrade[]
|
|
709
709
|
/** Language of the content, using standard IETF BCP 47 codes (e.g., "en-US") */
|
|
710
710
|
language?: string
|
|
711
711
|
/** Experience points (XP) assigned for completing this resource */
|
|
@@ -4,6 +4,14 @@
|
|
|
4
4
|
* Manage digital learning resources.
|
|
5
5
|
*/
|
|
6
6
|
import type { OneRosterTransportLike, Resource, ResourcesCallable } from '../../types';
|
|
7
|
+
/**
|
|
8
|
+
* Normalize API fields on a resource (e.g. string `metadata.grades` → numeric grades).
|
|
9
|
+
* Shared by scoped `get()`, `ResourcesResourceImpl.transform`, and course-scoped resource paginators.
|
|
10
|
+
*
|
|
11
|
+
* @param resource - Raw resource from the OneRoster API
|
|
12
|
+
* @returns Resource with normalized metadata when present
|
|
13
|
+
*/
|
|
14
|
+
export declare function normalizeResourceFromApi(resource: Resource): Resource;
|
|
7
15
|
/**
|
|
8
16
|
* Scoped resource for operations on a specific resource.
|
|
9
17
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"resources.d.ts","sourceRoot":"","sources":["../../../src/resources/resources/resources.ts"],"names":[],"mappings":"AAAA;;;;GAIG;
|
|
1
|
+
{"version":3,"file":"resources.d.ts","sourceRoot":"","sources":["../../../src/resources/resources/resources.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AASH,OAAO,KAAK,EACX,sBAAsB,EACtB,QAAQ,EAGR,iBAAiB,EACjB,MAAM,aAAa,CAAA;AAEpB;;;;;;GAMG;AACH,wBAAgB,wBAAwB,CAAC,QAAQ,EAAE,QAAQ,GAAG,QAAQ,CAYrE;AAMD;;;;;;;;;GASG;AACH,qBAAa,sBAAsB;IAKjC,OAAO,CAAC,QAAQ,CAAC,SAAS;IAJ3B,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAQ;IACjC,OAAO,CAAC,QAAQ,CAAC,UAAU,CAAQ;IAEnC,YACkB,SAAS,EAAE,sBAAsB,EAClD,UAAU,EAAE,MAAM,EAKlB;IAED;;;OAGG;IACG,GAAG,IAAI,OAAO,CAAC,QAAQ,CAAC,CAG7B;IAED;;;OAGG;IACH,MAAM,IAAI,OAAO,CAAC,OAAO,CAAC,CAEzB;IAED;;;OAGG;IACG,MAAM,IAAI,OAAO,CAAC,WAAW,CAAC,CAUnC;CACD;AAwDD;;;;GAIG;AACH,wBAAgB,uBAAuB,CAAC,SAAS,EAAE,sBAAsB,GAAG,iBAAiB,CAmB5F"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"classes.d.ts","sourceRoot":"","sources":["../../../src/resources/rostering/classes.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAUH,OAAO,EAAE,SAAS,EAAE,MAAM,WAAW,CAAA;
|
|
1
|
+
{"version":3,"file":"classes.d.ts","sourceRoot":"","sources":["../../../src/resources/rostering/classes.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"courses.d.ts","sourceRoot":"","sources":["../../../src/resources/rostering/courses.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAUH,OAAO,EAAE,SAAS,EAAE,MAAM,WAAW,CAAA;
|
|
1
|
+
{"version":3,"file":"courses.d.ts","sourceRoot":"","sources":["../../../src/resources/rostering/courses.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAUH,OAAO,EAAE,SAAS,EAAE,MAAM,WAAW,CAAA;AAYrC,OAAO,KAAK,EACX,KAAK,EACL,iBAAiB,EAGjB,MAAM,EACN,eAAe,EACf,2BAA2B,EAE3B,eAAe,EAEf,kBAAkB,EAClB,sBAAsB,EACtB,QAAQ,EACR,oBAAoB,EACpB,MAAM,aAAa,CAAA;AAMpB;;;;;;;;;;;;GAYG;AACH,qBAAa,oBAAoB;IAK/B,OAAO,CAAC,QAAQ,CAAC,SAAS;IAJ3B,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAQ;IACjC,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAQ;IAEjC,YACkB,SAAS,EAAE,sBAAsB,EAClD,QAAQ,EAAE,MAAM,EAKhB;IAED;;;OAGG;IACG,GAAG,IAAI,OAAO,CAAC,MAAM,CAAC,CAG3B;IAED;;;OAGG;IACH,MAAM,IAAI,OAAO,CAAC,OAAO,CAAC,CAEzB;IAED;;;;OAIG;IACH,OAAO,CAAC,MAAM,CAAC,EAAE,kBAAkB,CAAC,iBAAiB,CAAC,GAAG,OAAO,CAAC,KAAK,EAAE,CAAC,CAExE;IAED;;;;OAIG;IACH,aAAa,CACZ,MAAM,CAAC,EAAE,kBAAkB,CAAC,iBAAiB,CAAC,GAC5C,SAAS,CAAC,KAAK,EAAE,iBAAiB,CAAC,CAOrC;IAED;;;;OAIG;IACH,UAAU,CACT,MAAM,CAAC,EAAE,kBAAkB,CAAC,2BAA2B,CAAC,GACtD,OAAO,CAAC,eAAe,EAAE,CAAC,CAE5B;IAED;;;;OAIG;IACH,gBAAgB,CACf,MAAM,CAAC,EAAE,kBAAkB,CAAC,2BAA2B,CAAC,GACtD,SAAS,CAAC,eAAe,EAAE,2BAA2B,CAAC,CAYzD;IAED;;;;OAIG;IACH,SAAS,CAAC,MAAM,CAAC,EAAE,kBAAkB,CAAC,oBAAoB,CAAC,GAAG,OAAO,CAAC,QAAQ,EAAE,CAAC,CAEhF;IAED;;;;OAIG;IACH,eAAe,CACd,MAAM,CAAC,EAAE,kBAAkB,CAAC,oBAAoB,CAAC,GAC/C,SAAS,CAAC,QAAQ,EAAE,oBAAoB,CAAC,CAQ3C;CACD;AAiKD;;;;GAIG;AACH,wBAAgB,qBAAqB,CAAC,SAAS,EAAE,sBAAsB,GAAG,eAAe,CA8BxF"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"users.d.ts","sourceRoot":"","sources":["../../../src/resources/rostering/users.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAGH,OAAO,EAEN,wBAAwB,EAExB,MAAM,qBAAqB,CAAA;AAE5B,OAAO,EAAE,SAAS,EAAE,MAAM,WAAW,CAAA;
|
|
1
|
+
{"version":3,"file":"users.d.ts","sourceRoot":"","sources":["../../../src/resources/rostering/users.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
package/dist/errors.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"errors.d.ts","sourceRoot":"","sources":["../src/errors.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EACN,QAAQ,IAAI,cAAc,EAC1B,cAAc,EACd,oBAAoB,EACpB,aAAa,EACb,iBAAiB,EACjB,eAAe,GACf,MAAM,iCAAiC,CAAA"}
|
package/dist/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiCG;AAMH,OAAO,EAAE,eAAe,EAAE,KAAK,uBAAuB,EAAE,MAAM,UAAU,CAAA;AAExE,OAAO,EAAE,qBAAqB,EAAE,MAAM,WAAW,CAAA;AAEjD,YAAY,EAAE,qBAAqB,EAAE,MAAM,gBAAgB,CAAA;AAM3D,YAAY,EAAE,WAAW,EAAE,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAA;AAExE,YAAY,EAAE,kBAAkB,EAAE,MAAM,SAAS,CAAA;AAEjD,YAAY,EAAE,eAAe,EAAE,UAAU,EAAE,UAAU,EAAE,MAAM,iCAAiC,CAAA;AAM9F,OAAO,EAAE,aAAa,EAAE,MAAM,iCAAiC,CAAA;AAE/D,YAAY,EACX,cAAc,EACd,cAAc,EACd,YAAY,EACZ,WAAW,EACX,WAAW,EACX,WAAW,GACX,MAAM,iCAAiC,CAAA;AAMxC,OAAO,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"public-types.d.ts","sourceRoot":"","sources":["../src/public-types.ts"],"names":[],"mappings":"AAAA,cAAc,qCAAqC,CAAA;AAEnD,YAAY,EACX,0BAA0B,EAC1B,UAAU,EACV,6BAA6B,EAC7B,2BAA2B,EAC3B,gBAAgB,EAChB,mBAAmB,EACnB,gBAAgB,EAChB,4BAA4B,EAC5B,0BAA0B,EAC1B,iBAAiB,EACjB,oBAAoB,EACpB,uBAAuB,EACvB,WAAW,EACX,qBAAqB,EACrB,mBAAmB,EACnB,cAAc,EACd,mBAAmB,EACnB,iBAAiB,EACjB,iBAAiB,EACjB,qBAAqB,EACrB,eAAe,EACf,aAAa,GACb,MAAM,qBAAqB,CAAA"}
|