@playcademy/sandbox 0.1.0-beta.8 → 0.1.0-beta.9

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.
@@ -1,4 +1,4 @@
1
- import type { Item, User } from '@playcademy/data/schemas';
1
+ import type { Item, User } from '@playcademy/data/types';
2
2
  export declare const DEMO_USER: User;
3
3
  export declare const DEMO_TOKEN = "demo-token";
4
4
  export declare const PLAYCADEMY_CREDITS_ID: `${string}-${string}-${string}-${string}-${string}`;
@@ -1,5 +1,5 @@
1
1
  import { PGlite } from '@electric-sql/pglite';
2
- import * as schema from '@playcademy/data/schemas';
2
+ import * as schema from '@playcademy/data/tables';
3
3
  import type { PgliteDatabase } from 'drizzle-orm/pglite';
4
4
  export declare function setupDatabase(customPath?: string): Promise<PgliteDatabase<typeof schema> & {
5
5
  $client: PGlite;