@rolexjs/core 0.12.0-dev-20260302093102 → 1.0.0-dev-20260303011727

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +3 -3
  2. package/package.json +3 -3
package/dist/index.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import * as _rolexjs_system from '@rolexjs/system';
2
2
  import { Runtime, Initializer } from '@rolexjs/system';
3
3
  export { Create, GraphOp, Link, Process, Relation, Remove, Runtime, State, Structure, Transform, Unlink, create, createRuntime, link, process, relation, remove, structure, transform, unlink } from '@rolexjs/system';
4
- import { ResourceX } from 'resourcexjs';
4
+ import { ResourceXProvider } from '@resourcexjs/core';
5
5
 
6
6
  /**
7
7
  * Platform — external integration point for RoleX.
@@ -46,8 +46,8 @@ interface RoleXRepository {
46
46
  interface Platform {
47
47
  /** Unified data access layer — graph, prototypes, contexts. */
48
48
  readonly repository: RoleXRepository;
49
- /** Resource management capability (optional requires resourcexjs). */
50
- readonly resourcex?: ResourceX;
49
+ /** ResourceX provider injected storage backend for resource management. */
50
+ readonly resourcexProvider?: ResourceXProvider;
51
51
  /** Initializer — bootstrap the world on first run. */
52
52
  readonly initializer?: Initializer;
53
53
  /** Prototype sources to settle on genesis (local paths or ResourceX locators). */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rolexjs/core",
3
- "version": "0.12.0-dev-20260302093102",
3
+ "version": "1.0.0-dev-20260303011727",
4
4
  "description": "RoleX Core - AI Agent Role Management Framework",
5
5
  "keywords": [
6
6
  "rolex",
@@ -39,8 +39,8 @@
39
39
  "clean": "rm -rf dist"
40
40
  },
41
41
  "dependencies": {
42
- "@rolexjs/system": "0.12.0-dev-20260302093102",
43
- "resourcexjs": "^2.14.0"
42
+ "@rolexjs/system": "1.0.0-dev-20260303011727",
43
+ "@resourcexjs/core": "^2.14.0"
44
44
  },
45
45
  "devDependencies": {},
46
46
  "publishConfig": {