@midwayjs/tablestore 3.1.6 → 3.2.1
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/interface.d.ts +0 -5
- package/index.d.ts +8 -0
- package/package.json +7 -6
package/dist/interface.d.ts
CHANGED
|
@@ -721,9 +721,4 @@ 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
|
-
}
|
|
729
724
|
//# sourceMappingURL=interface.d.ts.map
|
package/index.d.ts
ADDED
package/package.json
CHANGED
|
@@ -1,17 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@midwayjs/tablestore",
|
|
3
3
|
"description": "midway tablestore component",
|
|
4
|
-
"version": "3.1
|
|
4
|
+
"version": "3.2.1",
|
|
5
5
|
"main": "dist/index",
|
|
6
|
-
"typings": "
|
|
6
|
+
"typings": "index.d.ts",
|
|
7
7
|
"files": [
|
|
8
8
|
"dist/**/*.js",
|
|
9
|
-
"dist/**/*.d.ts"
|
|
9
|
+
"dist/**/*.d.ts",
|
|
10
|
+
"index.d.ts"
|
|
10
11
|
],
|
|
11
12
|
"devDependencies": {
|
|
12
|
-
"@midwayjs/core": "^3.
|
|
13
|
+
"@midwayjs/core": "^3.2.0",
|
|
13
14
|
"@midwayjs/decorator": "^3.1.6",
|
|
14
|
-
"@midwayjs/mock": "^3.
|
|
15
|
+
"@midwayjs/mock": "^3.2.0"
|
|
15
16
|
},
|
|
16
17
|
"dependencies": {
|
|
17
18
|
"int64-buffer": "1.0.1",
|
|
@@ -37,5 +38,5 @@
|
|
|
37
38
|
"type": "git",
|
|
38
39
|
"url": "https://github.com/midwayjs/midway.git"
|
|
39
40
|
},
|
|
40
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "e957e25e353a2e4c56d5ddcce24bb55a10f007ca"
|
|
41
42
|
}
|