@stacksjs/database 0.74.47 → 0.74.48
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/dist/runtime.d.ts +14 -0
- package/dist/runtime.js +1 -0
- package/package.json +22 -16
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Request-time database entrypoint.
|
|
3
|
+
*
|
|
4
|
+
* The package root retains migrations, seeders, schema inspection, driver
|
|
5
|
+
* tooling, and generators. Servers can import this entry for the configured
|
|
6
|
+
* query facade and the small helpers used while handling application work.
|
|
7
|
+
*/
|
|
8
|
+
export * from './affected-rows';
|
|
9
|
+
export * from './dialect';
|
|
10
|
+
export * from './replicas';
|
|
11
|
+
export * from './sql-helpers';
|
|
12
|
+
export * from './transaction-context';
|
|
13
|
+
export * from './types';
|
|
14
|
+
export * from './utils';
|
package/dist/runtime.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export*from"./affected-rows";export*from"./dialect";export*from"./replicas";export*from"./sql-helpers";export*from"./transaction-context";export*from"./types";export*from"./utils";
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@stacksjs/database",
|
|
3
3
|
"type": "module",
|
|
4
4
|
"sideEffects": false,
|
|
5
|
-
"version": "0.74.
|
|
5
|
+
"version": "0.74.48",
|
|
6
6
|
"description": "The Stacks database integration.",
|
|
7
7
|
"author": "Chris Breuer",
|
|
8
8
|
"contributors": [
|
|
@@ -35,6 +35,12 @@
|
|
|
35
35
|
"import": "./dist/index.js",
|
|
36
36
|
"default": "./dist/index.js"
|
|
37
37
|
},
|
|
38
|
+
"./runtime": {
|
|
39
|
+
"types": "./dist/runtime.d.ts",
|
|
40
|
+
"bun": "./dist/runtime.js",
|
|
41
|
+
"import": "./dist/runtime.js",
|
|
42
|
+
"default": "./dist/runtime.js"
|
|
43
|
+
},
|
|
38
44
|
"./*": {
|
|
39
45
|
"types": "./dist/*.d.ts",
|
|
40
46
|
"bun": "./dist/*.js",
|
|
@@ -60,26 +66,26 @@
|
|
|
60
66
|
"prepublishOnly": "bun run build"
|
|
61
67
|
},
|
|
62
68
|
"dependencies": {
|
|
63
|
-
"@stacksjs/config": "0.74.
|
|
64
|
-
"@stacksjs/env": "0.74.
|
|
65
|
-
"@stacksjs/error-handling": "0.74.
|
|
66
|
-
"@stacksjs/faker": "^0.74.
|
|
67
|
-
"@stacksjs/features": "0.74.
|
|
68
|
-
"@stacksjs/logging": "0.74.
|
|
69
|
-
"@stacksjs/model-meta": "0.74.
|
|
70
|
-
"@stacksjs/path": "0.74.
|
|
71
|
-
"@stacksjs/query-builder": "^0.74.
|
|
72
|
-
"@stacksjs/security": "0.74.
|
|
73
|
-
"@stacksjs/storage": "0.74.
|
|
74
|
-
"@stacksjs/strings": "0.74.
|
|
69
|
+
"@stacksjs/config": "0.74.48",
|
|
70
|
+
"@stacksjs/env": "0.74.48",
|
|
71
|
+
"@stacksjs/error-handling": "0.74.48",
|
|
72
|
+
"@stacksjs/faker": "^0.74.48",
|
|
73
|
+
"@stacksjs/features": "0.74.48",
|
|
74
|
+
"@stacksjs/logging": "0.74.48",
|
|
75
|
+
"@stacksjs/model-meta": "0.74.48",
|
|
76
|
+
"@stacksjs/path": "0.74.48",
|
|
77
|
+
"@stacksjs/query-builder": "^0.74.48",
|
|
78
|
+
"@stacksjs/security": "0.74.48",
|
|
79
|
+
"@stacksjs/storage": "0.74.48",
|
|
80
|
+
"@stacksjs/strings": "0.74.48",
|
|
75
81
|
"@stacksjs/ts-validation": "^0.5.6",
|
|
76
82
|
"bun-query-builder": "^0.2.70",
|
|
77
83
|
"dynamodb-tooling": "^0.3.2"
|
|
78
84
|
},
|
|
79
85
|
"devDependencies": {
|
|
80
|
-
"@stacksjs/cli": "0.74.
|
|
81
|
-
"@stacksjs/router": "0.74.
|
|
82
|
-
"@stacksjs/utils": "0.74.
|
|
86
|
+
"@stacksjs/cli": "0.74.48",
|
|
87
|
+
"@stacksjs/router": "0.74.48",
|
|
88
|
+
"@stacksjs/utils": "0.74.48",
|
|
83
89
|
"better-dx": "^0.2.24"
|
|
84
90
|
}
|
|
85
91
|
}
|