@eggjs/dal-plugin 4.0.0-beta.35 → 4.0.1-beta.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/dist/_virtual/_@oxc-project_runtime@0.103.0/helpers/decorate.js +10 -0
- package/dist/_virtual/_@oxc-project_runtime@0.103.0/helpers/decorateMetadata.js +7 -0
- package/dist/_virtual/_@oxc-project_runtime@0.103.0/helpers/decorateParam.js +9 -0
- package/dist/app/extend/application.d.ts +8 -0
- package/dist/app/extend/application.js +9 -0
- package/dist/app.d.ts +13 -9
- package/dist/app.js +32 -34
- package/dist/index.d.ts +10 -9
- package/dist/index.js +10 -9
- package/dist/lib/DalModuleLoadUnitHook.d.ts +13 -9
- package/dist/lib/DalModuleLoadUnitHook.js +37 -41
- package/dist/lib/DalTableEggPrototypeHook.d.ts +11 -7
- package/dist/lib/DalTableEggPrototypeHook.js +21 -20
- package/dist/lib/DataSource.d.ts +11 -7
- package/dist/lib/DataSource.js +63 -76
- package/dist/lib/MysqlDataSourceManager.d.ts +14 -10
- package/dist/lib/MysqlDataSourceManager.js +58 -53
- package/dist/lib/SqlMapManager.d.ts +12 -8
- package/dist/lib/SqlMapManager.js +25 -22
- package/dist/lib/TableModelManager.d.ts +12 -8
- package/dist/lib/TableModelManager.js +25 -22
- package/dist/lib/TransactionPrototypeHook.d.ts +12 -8
- package/dist/lib/TransactionPrototypeHook.js +47 -53
- package/dist/lib/TransactionalAOP.d.ts +13 -9
- package/dist/lib/TransactionalAOP.js +21 -27
- package/dist/types.d.ts +1 -1
- package/dist/types.js +3 -2
- package/package.json +54 -57
package/package.json
CHANGED
|
@@ -1,32 +1,35 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eggjs/dal-plugin",
|
|
3
|
-
"
|
|
4
|
-
"name": "teggDal",
|
|
5
|
-
"strict": false,
|
|
6
|
-
"dependencies": [
|
|
7
|
-
"tegg"
|
|
8
|
-
]
|
|
9
|
-
},
|
|
10
|
-
"eggModule": {
|
|
11
|
-
"name": "teggDal"
|
|
12
|
-
},
|
|
13
|
-
"version": "4.0.0-beta.35",
|
|
3
|
+
"version": "4.0.1-beta.0",
|
|
14
4
|
"description": "dal plugin for egg",
|
|
15
5
|
"keywords": [
|
|
6
|
+
"dal",
|
|
16
7
|
"egg",
|
|
17
|
-
"plugin",
|
|
18
|
-
"typescript",
|
|
19
8
|
"module",
|
|
9
|
+
"plugin",
|
|
20
10
|
"tegg",
|
|
21
|
-
"
|
|
11
|
+
"typescript"
|
|
22
12
|
],
|
|
13
|
+
"homepage": "https://github.com/eggjs/egg/tree/next/tegg/plugin/dal",
|
|
14
|
+
"bugs": {
|
|
15
|
+
"url": "https://github.com/eggjs/egg/issues"
|
|
16
|
+
},
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "git+https://github.com/eggjs/egg.git",
|
|
20
|
+
"directory": "tegg/plugin/dal"
|
|
21
|
+
},
|
|
23
22
|
"files": [
|
|
24
23
|
"dist"
|
|
25
24
|
],
|
|
26
25
|
"type": "module",
|
|
26
|
+
"main": "./dist/index.js",
|
|
27
|
+
"module": "./dist/index.js",
|
|
28
|
+
"types": "./dist/index.d.ts",
|
|
27
29
|
"exports": {
|
|
28
30
|
".": "./dist/index.js",
|
|
29
31
|
"./app": "./dist/app.js",
|
|
32
|
+
"./app/extend/application": "./dist/app/extend/application.js",
|
|
30
33
|
"./lib/DalModuleLoadUnitHook": "./dist/lib/DalModuleLoadUnitHook.js",
|
|
31
34
|
"./lib/DalTableEggPrototypeHook": "./dist/lib/DalTableEggPrototypeHook.js",
|
|
32
35
|
"./lib/DataSource": "./dist/lib/DataSource.js",
|
|
@@ -38,57 +41,51 @@
|
|
|
38
41
|
"./types": "./dist/types.js",
|
|
39
42
|
"./package.json": "./package.json"
|
|
40
43
|
},
|
|
41
|
-
"
|
|
42
|
-
|
|
43
|
-
"url": "https://github.com/eggjs/egg/issues"
|
|
44
|
-
},
|
|
45
|
-
"repository": {
|
|
46
|
-
"type": "git",
|
|
47
|
-
"url": "git+https://github.com/eggjs/egg.git",
|
|
48
|
-
"directory": "tegg/plugin/dal"
|
|
49
|
-
},
|
|
50
|
-
"engines": {
|
|
51
|
-
"node": ">=22.18.0"
|
|
44
|
+
"publishConfig": {
|
|
45
|
+
"access": "public"
|
|
52
46
|
},
|
|
53
47
|
"dependencies": {
|
|
54
|
-
"@eggjs/aop-decorator": "4.0.
|
|
55
|
-
"@eggjs/core-decorator": "4.0.
|
|
56
|
-
"@eggjs/dal-
|
|
57
|
-
"@eggjs/dal-
|
|
58
|
-
"@eggjs/
|
|
59
|
-
"@eggjs/
|
|
60
|
-
"@eggjs/tegg-loader": "4.0.
|
|
61
|
-
"@eggjs/
|
|
62
|
-
"@eggjs/
|
|
63
|
-
"@eggjs/
|
|
64
|
-
},
|
|
65
|
-
"peerDependencies": {
|
|
66
|
-
"@eggjs/tegg-plugin": "4.0.0-beta.35",
|
|
67
|
-
"egg": "4.1.0-beta.35"
|
|
48
|
+
"@eggjs/aop-decorator": "4.0.1-beta.0",
|
|
49
|
+
"@eggjs/core-decorator": "4.0.1-beta.0",
|
|
50
|
+
"@eggjs/dal-decorator": "4.0.1-beta.0",
|
|
51
|
+
"@eggjs/dal-runtime": "4.0.1-beta.0",
|
|
52
|
+
"@eggjs/lifecycle": "4.0.1-beta.0",
|
|
53
|
+
"@eggjs/metadata": "4.0.1-beta.0",
|
|
54
|
+
"@eggjs/tegg-loader": "4.0.1-beta.0",
|
|
55
|
+
"@eggjs/tegg-common-util": "4.0.1-beta.0",
|
|
56
|
+
"@eggjs/tegg-types": "4.0.1-beta.0",
|
|
57
|
+
"@eggjs/transaction-decorator": "4.0.1-beta.0"
|
|
68
58
|
},
|
|
69
59
|
"devDependencies": {
|
|
70
|
-
"@types/node": "^24.10.
|
|
60
|
+
"@types/node": "^24.10.2",
|
|
71
61
|
"globby": "^11.0.2",
|
|
72
|
-
"tsdown": "^0.17.0",
|
|
73
62
|
"typescript": "^5.9.3",
|
|
74
|
-
"
|
|
75
|
-
"@eggjs/
|
|
76
|
-
"@eggjs/
|
|
77
|
-
"@eggjs/
|
|
78
|
-
"@eggjs/
|
|
79
|
-
"@eggjs/tegg-
|
|
80
|
-
"
|
|
81
|
-
"egg": "4.1.0-beta.35"
|
|
63
|
+
"@eggjs/aop-plugin": "4.0.1-beta.0",
|
|
64
|
+
"@eggjs/mock": "7.0.1-beta.0",
|
|
65
|
+
"@eggjs/tegg": "4.0.1-beta.0",
|
|
66
|
+
"@eggjs/tegg-plugin": "4.0.1-beta.0",
|
|
67
|
+
"@eggjs/tracer": "4.0.1-beta.0",
|
|
68
|
+
"@eggjs/tegg-config": "4.0.1-beta.0",
|
|
69
|
+
"egg": "4.1.1-beta.0"
|
|
82
70
|
},
|
|
83
|
-
"
|
|
84
|
-
"
|
|
71
|
+
"peerDependencies": {
|
|
72
|
+
"@eggjs/tegg-plugin": "4.0.1-beta.0",
|
|
73
|
+
"egg": "4.1.1-beta.0"
|
|
74
|
+
},
|
|
75
|
+
"engines": {
|
|
76
|
+
"node": ">=22.18.0"
|
|
77
|
+
},
|
|
78
|
+
"eggModule": {
|
|
79
|
+
"name": "teggDal"
|
|
80
|
+
},
|
|
81
|
+
"eggPlugin": {
|
|
82
|
+
"name": "teggDal",
|
|
83
|
+
"strict": false,
|
|
84
|
+
"dependencies": [
|
|
85
|
+
"tegg"
|
|
86
|
+
]
|
|
85
87
|
},
|
|
86
|
-
"main": "./dist/index.js",
|
|
87
|
-
"module": "./dist/index.js",
|
|
88
|
-
"types": "./dist/index.d.ts",
|
|
89
88
|
"scripts": {
|
|
90
|
-
"
|
|
91
|
-
"build": "tsdown && npm run clean && tsc -p tsconfig.build.json",
|
|
92
|
-
"typecheck": "tsc --noEmit"
|
|
89
|
+
"typecheck": "tsgo --noEmit"
|
|
93
90
|
}
|
|
94
91
|
}
|