@eggjs/dal-runtime 4.0.0-beta.8 → 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/README.md +1 -1
- package/dist/BaseSqlMap.d.ts +18 -0
- package/dist/BaseSqlMap.js +249 -0
- package/dist/CodeGenerator.d.ts +17 -0
- package/dist/CodeGenerator.js +119 -0
- package/dist/DaoLoader.d.ts +8 -0
- package/dist/DaoLoader.js +16 -0
- package/dist/DataSource.d.ts +33 -0
- package/dist/DataSource.js +75 -0
- package/dist/DatabaseForker.d.ts +16 -0
- package/dist/DatabaseForker.js +49 -0
- package/dist/MySqlDataSource.d.ts +32 -0
- package/dist/MySqlDataSource.js +59 -0
- package/dist/NunjucksConverter.d.ts +76 -0
- package/dist/NunjucksConverter.js +90 -0
- package/dist/NunjucksUtil.d.ts +9 -0
- package/dist/NunjucksUtil.js +64 -0
- package/dist/SqlGenerator.d.ts +13 -0
- package/dist/SqlGenerator.js +224 -0
- package/dist/SqlMapLoader.d.ts +14 -0
- package/dist/SqlMapLoader.js +25 -0
- package/dist/SqlUtil.d.ts +6 -0
- package/dist/SqlUtil.js +193 -0
- package/dist/TableModelInstanceBuilder.d.ts +10 -0
- package/dist/TableModelInstanceBuilder.js +25 -0
- package/dist/TableSqlMap.d.ts +21 -0
- package/dist/TableSqlMap.js +98 -0
- package/dist/TemplateUtil.d.ts +22 -0
- package/dist/TemplateUtil.js +75 -0
- package/dist/index.d.ts +15 -244
- package/dist/index.js +14 -1265
- package/package.json +36 -39
package/package.json
CHANGED
|
@@ -1,67 +1,64 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eggjs/dal-runtime",
|
|
3
|
-
"version": "4.0.
|
|
4
|
-
"description": "tegg dal
|
|
3
|
+
"version": "4.0.1-beta.0",
|
|
4
|
+
"description": "tegg dal runtime",
|
|
5
5
|
"keywords": [
|
|
6
|
-
"
|
|
7
|
-
"typescript",
|
|
6
|
+
"dal",
|
|
8
7
|
"decorator",
|
|
8
|
+
"egg",
|
|
9
|
+
"runtime",
|
|
9
10
|
"tegg",
|
|
10
|
-
"
|
|
11
|
-
],
|
|
12
|
-
"type": "module",
|
|
13
|
-
"exports": {
|
|
14
|
-
".": "./dist/index.js",
|
|
15
|
-
"./package.json": "./package.json"
|
|
16
|
-
},
|
|
17
|
-
"files": [
|
|
18
|
-
"dist"
|
|
11
|
+
"typescript"
|
|
19
12
|
],
|
|
20
|
-
"
|
|
21
|
-
"license": "MIT",
|
|
22
|
-
"homepage": "https://github.com/eggjs/tegg/tree/next/core/dal-runtime",
|
|
13
|
+
"homepage": "https://github.com/eggjs/egg/tree/next/tegg/core/dal-runtime",
|
|
23
14
|
"bugs": {
|
|
24
|
-
"url": "https://github.com/eggjs/
|
|
15
|
+
"url": "https://github.com/eggjs/egg/issues"
|
|
25
16
|
},
|
|
17
|
+
"license": "MIT",
|
|
18
|
+
"author": "killagu <killa123@126.com>",
|
|
26
19
|
"repository": {
|
|
27
20
|
"type": "git",
|
|
28
|
-
"url": "git
|
|
29
|
-
"directory": "core/dal-
|
|
21
|
+
"url": "git+https://github.com/eggjs/egg.git",
|
|
22
|
+
"directory": "tegg/core/dal-runtime"
|
|
30
23
|
},
|
|
31
|
-
"
|
|
32
|
-
"
|
|
24
|
+
"files": [
|
|
25
|
+
"dist"
|
|
26
|
+
],
|
|
27
|
+
"type": "module",
|
|
28
|
+
"main": "./dist/index.js",
|
|
29
|
+
"module": "./dist/index.js",
|
|
30
|
+
"types": "./dist/index.d.ts",
|
|
31
|
+
"exports": {
|
|
32
|
+
".": "./dist/index.js",
|
|
33
|
+
"./package.json": "./package.json"
|
|
34
|
+
},
|
|
35
|
+
"publishConfig": {
|
|
36
|
+
"access": "public"
|
|
33
37
|
},
|
|
34
38
|
"dependencies": {
|
|
35
|
-
"@eggjs/rds": "^1.
|
|
39
|
+
"@eggjs/rds": "^1.5.0",
|
|
36
40
|
"js-beautify": "^1.15.3",
|
|
37
41
|
"lodash": "^4.17.21",
|
|
38
42
|
"nunjucks": "^3.2.4",
|
|
39
43
|
"sdk-base": "^5.0.1",
|
|
40
44
|
"sqlstring": "^2.3.3",
|
|
41
|
-
"@eggjs/core-decorator": "4.0.
|
|
42
|
-
"@eggjs/dal-decorator": "4.0.
|
|
43
|
-
"@eggjs/tegg-loader": "4.0.
|
|
44
|
-
"@eggjs/tegg-types": "4.0.
|
|
45
|
-
},
|
|
46
|
-
"publishConfig": {
|
|
47
|
-
"access": "public"
|
|
45
|
+
"@eggjs/core-decorator": "4.0.1-beta.0",
|
|
46
|
+
"@eggjs/dal-decorator": "4.0.1-beta.0",
|
|
47
|
+
"@eggjs/tegg-loader": "4.0.1-beta.0",
|
|
48
|
+
"@eggjs/tegg-types": "4.0.1-beta.0"
|
|
48
49
|
},
|
|
49
50
|
"devDependencies": {
|
|
50
51
|
"@types/js-beautify": "^1.14.3",
|
|
51
52
|
"@types/lodash": "^4.17.20",
|
|
52
|
-
"@types/node": "^
|
|
53
|
+
"@types/node": "^24.10.2",
|
|
53
54
|
"@types/nunjucks": "^3.2.6",
|
|
54
55
|
"@types/sqlstring": "^2.3.2",
|
|
55
|
-
"typescript": "^5.9.3"
|
|
56
|
-
|
|
57
|
-
|
|
56
|
+
"typescript": "^5.9.3"
|
|
57
|
+
},
|
|
58
|
+
"engines": {
|
|
59
|
+
"node": ">=22.18.0"
|
|
58
60
|
},
|
|
59
|
-
"main": "./dist/index.js",
|
|
60
|
-
"module": "./dist/index.js",
|
|
61
|
-
"types": "./dist/index.d.ts",
|
|
62
61
|
"scripts": {
|
|
63
|
-
"
|
|
64
|
-
"build": "tsdown",
|
|
65
|
-
"typecheck": "tsc --noEmit"
|
|
62
|
+
"typecheck": "tsgo --noEmit"
|
|
66
63
|
}
|
|
67
64
|
}
|