@midwayjs/tablestore 3.4.11 → 3.5.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/manager.js +3 -0
- package/package.json +4 -4
package/dist/manager.js
CHANGED
|
@@ -42,6 +42,9 @@ exports.TableStoreServiceFactory = TableStoreServiceFactory;
|
|
|
42
42
|
let TableStoreService = class TableStoreService {
|
|
43
43
|
async init() {
|
|
44
44
|
this.instance = this.serviceFactory.get('default');
|
|
45
|
+
if (!this.instance) {
|
|
46
|
+
throw new core_1.MidwayCommonError('TableStore default instance not found.');
|
|
47
|
+
}
|
|
45
48
|
}
|
|
46
49
|
};
|
|
47
50
|
__decorate([
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@midwayjs/tablestore",
|
|
3
3
|
"description": "midway tablestore component",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.5.0",
|
|
5
5
|
"main": "dist/index",
|
|
6
6
|
"typings": "index.d.ts",
|
|
7
7
|
"files": [
|
|
@@ -10,9 +10,9 @@
|
|
|
10
10
|
"index.d.ts"
|
|
11
11
|
],
|
|
12
12
|
"devDependencies": {
|
|
13
|
-
"@midwayjs/core": "^3.
|
|
13
|
+
"@midwayjs/core": "^3.5.0",
|
|
14
14
|
"@midwayjs/decorator": "^3.4.11",
|
|
15
|
-
"@midwayjs/mock": "^3.
|
|
15
|
+
"@midwayjs/mock": "^3.5.0"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"int64-buffer": "1.0.1",
|
|
@@ -38,5 +38,5 @@
|
|
|
38
38
|
"type": "git",
|
|
39
39
|
"url": "https://github.com/midwayjs/midway.git"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "4200e30d1af97a7817c36899c4ffc41a7d97c06d"
|
|
42
42
|
}
|