@elizaos/core 1.5.7 → 1.6.0-alpha.0

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,2 +1,3 @@
1
1
  // Type definitions for @elizaos/core (Browser)
2
+ // Re-exports all types from the compiled Browser declarations
2
3
  export * from '../index.browser';
package/dist/index.d.ts CHANGED
@@ -1,27 +1,3 @@
1
- /**
2
- * Main entry point for @elizaos/core
3
- *
4
- * This is the default export that includes all modules.
5
- * The build system creates separate bundles for Node.js and browser environments.
6
- * Package.json conditional exports handle the routing to the correct build.
7
- */
8
- export * from './types';
9
- export * from './utils';
10
- export * from './schemas/character';
11
- export * from './utils/environment';
12
- export * from './utils/buffer';
13
- export * from './actions';
14
- export * from './database';
15
- export * from './entities';
16
- export * from './logger';
17
- export * from './prompts';
18
- export * from './roles';
19
- export * from './runtime';
20
- export * from './settings';
21
- export * from './services';
22
- export * from './search';
23
- export * from './sentry/instrument';
24
- export declare const isBrowser: boolean;
25
- export declare const isNode: boolean;
26
- export * from './utils/server-health';
27
- //# sourceMappingURL=index.d.ts.map
1
+ // Type definitions for @elizaos/core (fallback)
2
+ // Re-exports all types from the Node.js build
3
+ export * from './index.node';
package/dist/index.js CHANGED
@@ -1,2 +1,4 @@
1
- // Main entry point fallback for @elizaos/core
1
+ // Main entry point for @elizaos/core
2
+ // Fallback when conditional exports don't match or are bypassed
3
+ // Re-exports everything from the Node.js build which has the full API surface
2
4
  export * from './node/index.node.js';
@@ -1,2 +1,3 @@
1
1
  // Type definitions for @elizaos/core (Node.js)
2
+ // Re-exports all types from the compiled Node.js declarations
2
3
  export * from '../index.node';