@midwayjs/tablestore 2.13.4 → 3.0.0-beta.4
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/CHANGELOG.md +22 -3
- package/dist/configuration.js +0 -2
- package/dist/interface.d.ts +5 -0
- package/package.json +8 -5
- package/dist/config.default.d.ts +0 -4
- package/dist/config.default.js +0 -18
package/CHANGELOG.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
# [3.0.0-beta.4](https://github.com/midwayjs/midway/compare/v3.0.0-beta.3...v3.0.0-beta.4) (2021-11-24)
|
|
7
7
|
|
|
8
8
|
**Note:** Version bump only for package @midwayjs/tablestore
|
|
9
9
|
|
|
@@ -11,9 +11,28 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
|
|
14
|
-
|
|
14
|
+
# [3.0.0-beta.3](https://github.com/midwayjs/midway/compare/v3.0.0-beta.2...v3.0.0-beta.3) (2021-11-18)
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
### Features
|
|
18
18
|
|
|
19
|
-
* add
|
|
19
|
+
* add component and framework config definition ([#1367](https://github.com/midwayjs/midway/issues/1367)) ([b2fe615](https://github.com/midwayjs/midway/commit/b2fe6157f99659471ff1333eca0b86bb889f61a3))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
# [3.0.0-beta.2](https://github.com/midwayjs/midway/compare/v3.0.0-beta.1...v3.0.0-beta.2) (2021-11-16)
|
|
26
|
+
|
|
27
|
+
**Note:** Version bump only for package @midwayjs/tablestore
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
# [3.0.0-beta.1](https://github.com/midwayjs/midway/compare/v2.12.4...v3.0.0-beta.1) (2021-11-14)
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
### Features
|
|
37
|
+
|
|
38
|
+
* add tablestore component and typescript definition ([#1302](https://github.com/midwayjs/midway/issues/1302)) ([aaa4877](https://github.com/midwayjs/midway/commit/aaa4877dc2e6a148346e130dcc6f5401c470eb4c))
|
package/dist/configuration.js
CHANGED
|
@@ -8,7 +8,6 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
|
|
8
8
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
9
|
exports.TableStoreConfiguration = void 0;
|
|
10
10
|
const decorator_1 = require("@midwayjs/decorator");
|
|
11
|
-
const path_1 = require("path");
|
|
12
11
|
const manager_1 = require("./manager");
|
|
13
12
|
let TableStoreConfiguration = class TableStoreConfiguration {
|
|
14
13
|
async onReady(container) {
|
|
@@ -18,7 +17,6 @@ let TableStoreConfiguration = class TableStoreConfiguration {
|
|
|
18
17
|
TableStoreConfiguration = __decorate([
|
|
19
18
|
(0, decorator_1.Configuration)({
|
|
20
19
|
namespace: 'tableStore',
|
|
21
|
-
importConfigs: [(0, path_1.join)(__dirname, './config.default')],
|
|
22
20
|
})
|
|
23
21
|
], TableStoreConfiguration);
|
|
24
22
|
exports.TableStoreConfiguration = TableStoreConfiguration;
|
package/dist/interface.d.ts
CHANGED
|
@@ -721,4 +721,9 @@ export interface TableStoreConfig {
|
|
|
721
721
|
*/
|
|
722
722
|
computeChecksums?: boolean;
|
|
723
723
|
}
|
|
724
|
+
declare module '@midwayjs/core/dist/interface' {
|
|
725
|
+
interface MidwayConfig {
|
|
726
|
+
tableStore?: ServiceFactoryConfigOption<TableStoreConfig>;
|
|
727
|
+
}
|
|
728
|
+
}
|
|
724
729
|
//# sourceMappingURL=interface.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@midwayjs/tablestore",
|
|
3
3
|
"description": "midway tablestore component",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "3.0.0-beta.4",
|
|
5
5
|
"main": "dist/index",
|
|
6
6
|
"typings": "dist/index.d.ts",
|
|
7
7
|
"files": [
|
|
@@ -9,9 +9,9 @@
|
|
|
9
9
|
"dist/**/*.d.ts"
|
|
10
10
|
],
|
|
11
11
|
"devDependencies": {
|
|
12
|
-
"@midwayjs/core": "^
|
|
13
|
-
"@midwayjs/decorator": "^
|
|
14
|
-
"@midwayjs/mock": "^
|
|
12
|
+
"@midwayjs/core": "^3.0.0-beta.4",
|
|
13
|
+
"@midwayjs/decorator": "^3.0.0-beta.4",
|
|
14
|
+
"@midwayjs/mock": "^3.0.0-beta.4"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"tablestore": "^5.0.6"
|
|
@@ -29,9 +29,12 @@
|
|
|
29
29
|
"ci": "npm run test",
|
|
30
30
|
"lint": "mwts check"
|
|
31
31
|
},
|
|
32
|
+
"engines": {
|
|
33
|
+
"node": ">=12"
|
|
34
|
+
},
|
|
32
35
|
"repository": {
|
|
33
36
|
"type": "git",
|
|
34
37
|
"url": "https://github.com/midwayjs/midway.git"
|
|
35
38
|
},
|
|
36
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "02e2144e302f807770b512b0d89da3145b1cbf2e"
|
|
37
40
|
}
|
package/dist/config.default.d.ts
DELETED
package/dist/config.default.js
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.tableStore = void 0;
|
|
4
|
-
// accessKeyId: null,
|
|
5
|
-
// secretAccessKey: null,
|
|
6
|
-
// accessKeySecret: null, //the same with secretAccessKey
|
|
7
|
-
// stsToken: null,
|
|
8
|
-
// securityToken: null, // the same with stsToken
|
|
9
|
-
// logger: null,
|
|
10
|
-
// endpoint: undefined,
|
|
11
|
-
// httpOptions: {},//timeout,maxSockets。default maxSockets = 300
|
|
12
|
-
// maxRetries: undefined,
|
|
13
|
-
// instancename: undefined,
|
|
14
|
-
// computeChecksums: true,
|
|
15
|
-
exports.tableStore = {
|
|
16
|
-
default: {},
|
|
17
|
-
};
|
|
18
|
-
//# sourceMappingURL=config.default.js.map
|