@contractspec/lib.runtime-sandbox 2.7.5 → 2.7.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.
package/src/web/index.ts CHANGED
@@ -1,21 +1,16 @@
1
1
  // Re-export database schema and types
2
2
  export * from './database/migrations';
3
3
  export * from './database/schema';
4
-
5
- // Storage
6
- export * from './storage/indexeddb';
7
-
8
- // Utils
9
- export * from './utils/id';
10
-
11
- // GraphQL client
12
- export * from './graphql/local-client';
13
-
14
4
  // Event bus
15
5
  export * from './events/local-pubsub';
16
-
6
+ // GraphQL client
7
+ export * from './graphql/local-client';
17
8
  // Runtime services
18
9
  export * from './runtime/services';
10
+ // Storage
11
+ export * from './storage/indexeddb';
12
+ // Utils
13
+ export * from './utils/id';
19
14
 
20
15
  // Handlers (Deprecated/Removed)
21
16
  // export * from './handlers';