@eggjs/tegg-dal-plugin 3.60.3 → 3.61.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.
@@ -0,0 +1,5 @@
1
+ import { MysqlDataSourceManager } from '../../lib/MysqlDataSourceManager';
2
+ declare const _default: {
3
+ readonly mysqlDataSourceManager: MysqlDataSourceManager;
4
+ };
5
+ export default _default;
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const MysqlDataSourceManager_1 = require("../../lib/MysqlDataSourceManager");
4
+ exports.default = {
5
+ get mysqlDataSourceManager() {
6
+ return MysqlDataSourceManager_1.MysqlDataSourceManager.instance;
7
+ },
8
+ };
9
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBwbGljYXRpb24uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyJhcHBsaWNhdGlvbi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOztBQUFBLDZFQUEwRTtBQUUxRSxrQkFBZTtJQUNiLElBQUksc0JBQXNCO1FBQ3hCLE9BQU8sK0NBQXNCLENBQUMsUUFBUSxDQUFDO0lBQ3pDLENBQUM7Q0FDRixDQUFDIn0=
package/index.d.ts ADDED
@@ -0,0 +1 @@
1
+ export { MysqlDataSourceManager } from './lib/MysqlDataSourceManager';
package/index.js ADDED
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.MysqlDataSourceManager = void 0;
4
+ var MysqlDataSourceManager_1 = require("./lib/MysqlDataSourceManager");
5
+ Object.defineProperty(exports, "MysqlDataSourceManager", { enumerable: true, get: function () { return MysqlDataSourceManager_1.MysqlDataSourceManager; } });
6
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyJpbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7QUFBQSx1RUFBc0U7QUFBN0QsZ0lBQUEsc0JBQXNCLE9BQUEifQ==
package/package.json CHANGED
@@ -10,8 +10,9 @@
10
10
  "eggModule": {
11
11
  "name": "teggDal"
12
12
  },
13
- "version": "3.60.3",
13
+ "version": "3.61.0",
14
14
  "description": "dal plugin for egg",
15
+ "main": "index.js",
15
16
  "keywords": [
16
17
  "egg",
17
18
  "plugin",
@@ -23,13 +24,14 @@
23
24
  "files": [
24
25
  "app.js",
25
26
  "app.d.ts",
27
+ "index.js",
28
+ "index.d.ts",
26
29
  "lib/**/*.js",
27
30
  "lib/**/*.d.ts",
28
31
  "app/**/*.js",
29
32
  "app/**/*.d.ts",
30
33
  "typings/*.d.ts"
31
34
  ],
32
- "types": "typings/index.d.ts",
33
35
  "scripts": {
34
36
  "test": "cross-env NODE_ENV=test NODE_OPTIONS='--no-deprecation' mocha",
35
37
  "clean": "tsc -b --clean",
@@ -50,12 +52,12 @@
50
52
  "node": ">=14.0.0"
51
53
  },
52
54
  "dependencies": {
53
- "@eggjs/dal-runtime": "^3.60.3"
55
+ "@eggjs/dal-runtime": "^3.61.0"
54
56
  },
55
57
  "devDependencies": {
56
- "@eggjs/tegg-aop-plugin": "^3.60.3",
57
- "@eggjs/tegg-config": "^3.60.3",
58
- "@eggjs/tegg-plugin": "^3.60.3",
58
+ "@eggjs/tegg-aop-plugin": "^3.61.0",
59
+ "@eggjs/tegg-config": "^3.61.0",
60
+ "@eggjs/tegg-plugin": "^3.61.0",
59
61
  "@types/mocha": "^10.0.1",
60
62
  "@types/node": "^20.2.4",
61
63
  "cross-env": "^7.0.3",
@@ -70,5 +72,5 @@
70
72
  "publishConfig": {
71
73
  "access": "public"
72
74
  },
73
- "gitHead": "cfeabf2ca5f1350df9a8d1c7c4baa99ad776483c"
75
+ "gitHead": "9a4a2db96ad85909b34de22f222950933f95b19a"
74
76
  }