@cosmicdrift/kumiko-framework 0.151.0 → 0.151.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cosmicdrift/kumiko-framework",
3
- "version": "0.151.0",
3
+ "version": "0.151.1",
4
4
  "description": "Framework core — engine, pipeline, API, DB, and every other bit that makes Kumiko go.",
5
5
  "license": "BUSL-1.1",
6
6
  "author": "Marc Frost <marc@cosmicdriftgamestudio.com>",
@@ -193,7 +193,7 @@
193
193
  "zod": "^4.4.3"
194
194
  },
195
195
  "devDependencies": {
196
- "@cosmicdrift/kumiko-dispatcher-live": "0.151.0",
196
+ "@cosmicdrift/kumiko-dispatcher-live": "0.151.1",
197
197
  "bun-types": "^1.3.13",
198
198
  "pino-pretty": "^13.1.3"
199
199
  },
@@ -23,6 +23,7 @@ export {
23
23
  incrementCounter,
24
24
  insertMany,
25
25
  insertOne,
26
+ runInSavepoint,
26
27
  selectMany,
27
28
  transaction,
28
29
  type UpsertOnConflictOptions,
package/src/db/index.ts CHANGED
@@ -107,6 +107,7 @@ export {
107
107
  fetchOne,
108
108
  insertMany,
109
109
  insertOne,
110
+ runInSavepoint,
110
111
  selectMany,
111
112
  transaction,
112
113
  updateMany,
@@ -17,6 +17,7 @@ export {
17
17
  fetchOne,
18
18
  insertMany,
19
19
  insertOne,
20
+ runInSavepoint,
20
21
  selectMany,
21
22
  transaction,
22
23
  updateMany,