@playcademy/sandbox 0.4.2-beta.1 → 0.4.2-beta.3

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/constants.js CHANGED
@@ -84,6 +84,7 @@ var init_timeback = __esm(() => {
84
84
  END_ACTIVITY: "/integrations/timeback/end-activity",
85
85
  GET_XP: "/integrations/timeback/xp",
86
86
  GET_MASTERY: "/integrations/timeback/mastery",
87
+ GET_HIGHEST_GRADE_MASTERED: "/integrations/timeback/highest-grade-mastered",
87
88
  HEARTBEAT: "/integrations/timeback/heartbeat",
88
89
  ADVANCE_COURSE: "/integrations/timeback/advance-course",
89
90
  UNENROLL_COURSE: "/integrations/timeback/unenroll-course"
@@ -30,6 +30,7 @@ export declare function getMockTimebackData(db: DatabaseInstance, timebackId: st
30
30
  * Uses the configured timebackId from sandbox config.
31
31
  */
32
32
  export declare function getMockTimebackUser(db: DatabaseInstance, gameId?: string): Promise<UserTimebackData>;
33
+ export declare function getMockHighestGradeMastered(enrollments: UserEnrollment[], subject: string): number | null;
33
34
  /**
34
35
  * Build a complete user response with mock timeback data.
35
36
  * Used to bypass api-core when in mock mode (avoids real API calls).