@midwayjs/tablestore 3.1.6 → 3.1.7-alpha.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.
@@ -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
@@ -0,0 +1,8 @@
1
+ import { TableStoreConfig } from './dist';
2
+ export * from './dist/index';
3
+
4
+ declare module '@midwayjs/core' {
5
+ interface MidwayConfig {
6
+ tableStore?: ServiceFactoryConfigOption<TableStoreConfig>;
7
+ }
8
+ }
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.6",
4
+ "version": "3.1.7-alpha.0",
5
5
  "main": "dist/index",
6
- "typings": "dist/index.d.ts",
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.1.6",
13
+ "@midwayjs/core": "^3.1.7-alpha.0",
13
14
  "@midwayjs/decorator": "^3.1.6",
14
- "@midwayjs/mock": "^3.1.6"
15
+ "@midwayjs/mock": "^3.1.7-alpha.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": "8c157a2b1a23ca2360522dc0de58513098952391"
41
+ "gitHead": "8cb6db25f7eb794d9c61aaf69a43ac6506a289b5"
41
42
  }