@playcademy/sandbox 0.1.0-beta.11 → 0.1.0-beta.12

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.
@@ -21,9 +21,9 @@ export declare function seedCurrentProjectGame(db: Awaited<ReturnType<typeof set
21
21
  id: string;
22
22
  createdAt: Date | null;
23
23
  updatedAt: Date | null;
24
- displayName: string;
25
24
  developerId: string | null;
26
25
  slug: string;
26
+ displayName: string;
27
27
  version: string;
28
28
  assetBundleBase: string;
29
29
  platform: "web" | "godot" | "unity";
package/dist/pglite.data CHANGED
Binary file
package/dist/pglite.wasm CHANGED
Binary file
@@ -0,0 +1,3 @@
1
+ import { Hono } from 'hono';
2
+ import type { HonoEnv } from '../types';
3
+ export declare const characterRouter: Hono<HonoEnv, import("hono/types").BlankSchema, "/">;
@@ -10,3 +10,7 @@ export { mapRouter, mapsRouter } from './maps';
10
10
  export { shopListingsRouter } from './shop-listings';
11
11
  export { devRouter } from './dev';
12
12
  export { levelsRouter } from './levels';
13
+ export { leaderboardRouter } from './leaderboard';
14
+ export { realtimeRouter } from './realtime';
15
+ export { characterRouter } from './character';
16
+ export { spriteRouter } from './sprite';
@@ -0,0 +1,3 @@
1
+ import { Hono } from 'hono';
2
+ import type { HonoEnv } from '../types';
3
+ export declare const leaderboardRouter: Hono<HonoEnv, import("hono/types").BlankSchema, "/">;
@@ -0,0 +1,3 @@
1
+ import { Hono } from 'hono';
2
+ import type { HonoEnv } from '../types';
3
+ export declare const realtimeRouter: Hono<HonoEnv, import("hono/types").BlankSchema, "/">;
@@ -0,0 +1,3 @@
1
+ import { Hono } from 'hono';
2
+ import type { HonoEnv } from '../types';
3
+ export declare const spriteRouter: Hono<HonoEnv, import("hono/types").BlankSchema, "/">;