@playcademy/sandbox 0.3.16 → 0.3.17-beta.10

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
@@ -234,7 +234,8 @@ var TIMEBACK_ROUTES, TIMEBACK_ORG_SOURCED_ID = "PLAYCADEMY", TIMEBACK_ORG_NAME =
234
234
  var init_timeback = __esm(() => {
235
235
  TIMEBACK_ROUTES = {
236
236
  END_ACTIVITY: "/integrations/timeback/end-activity",
237
- GET_XP: "/integrations/timeback/xp"
237
+ GET_XP: "/integrations/timeback/xp",
238
+ HEARTBEAT: "/integrations/timeback/heartbeat"
238
239
  };
239
240
  TIMEBACK_COURSE_DEFAULTS = {
240
241
  gradingScheme: "STANDARD",
@@ -275,7 +276,7 @@ var init_timeback = __esm(() => {
275
276
  });
276
277
 
277
278
  // ../constants/src/workers.ts
278
- var WORKER_NAMING, SECRETS_PREFIX = "secrets_";
279
+ var WORKER_NAMING, SECRETS_PREFIX = "secrets_", CLOUDFLARE_COMPATIBILITY_DATE = "2025-10-11";
279
280
  var init_workers = __esm(() => {
280
281
  WORKER_NAMING = {
281
282
  STAGING_PREFIX: "staging-",
package/dist/server.d.ts CHANGED
@@ -58,6 +58,7 @@ interface TimebackCourseConfig {
58
58
  * Used for seeding and display
59
59
  */
60
60
  interface ProjectInfo {
61
+ gameId?: string;
61
62
  slug: string;
62
63
  displayName: string;
63
64
  version: string;