anbaric 1.3.0 → 1.5.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.
package/README.md CHANGED
@@ -5,7 +5,7 @@ full app-facing surface of [`anbaric-tsapi`](https://npmjs.com/package/anbaric-t
5
5
  (contracts and value classes), [`anbaric-state-machine`](https://npmjs.com/package/anbaric-state-machine)
6
6
  (the state machine and in-memory implementations),
7
7
  [`anbaric-data-store`](https://npmjs.com/package/anbaric-data-store)
8
- (document and secret stores) and [`anbaric-cloud`](https://npmjs.com/package/anbaric-cloud)
8
+ (document and secret stores) and [`anbaric-impl-cloud`](https://npmjs.com/package/anbaric-impl-cloud)
9
9
  (the clients the factories switch to when deployed).
10
10
 
11
11
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "anbaric",
3
- "version": "1.3.0",
3
+ "version": "1.5.0",
4
4
  "description": "Everything needed to write an Anbaric app: state machines, jobs, document and secret stores, local in-memory implementations and the Anbaric Cloud clients",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -10,9 +10,9 @@
10
10
  "src"
11
11
  ],
12
12
  "dependencies": {
13
- "anbaric-cloud": "^1.3.0",
14
- "anbaric-data-store": "^1.3.0",
15
- "anbaric-state-machine": "^1.3.0",
16
- "anbaric-tsapi": "^1.3.0"
13
+ "anbaric-impl-cloud": "^1.5.0",
14
+ "anbaric-data-store": "^1.5.0",
15
+ "anbaric-state-machine": "^1.5.0",
16
+ "anbaric-tsapi": "^1.5.0"
17
17
  }
18
18
  }
package/src/index.ts CHANGED
@@ -1,4 +1,4 @@
1
1
  export * from "anbaric-tsapi";
2
2
  export * from "anbaric-state-machine";
3
3
  export * from "anbaric-data-store";
4
- export * from "anbaric-cloud";
4
+ export * from "anbaric-impl-cloud";