@midwayjs/tablestore 3.0.0 → 3.0.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/dist/interface.d.ts +3 -3
- package/dist/interface.js +4 -3
- package/package.json +6 -6
package/dist/interface.d.ts
CHANGED
|
@@ -54,9 +54,9 @@ export declare enum IndexType {
|
|
|
54
54
|
IT_GLOBAL_INDEX = 0,
|
|
55
55
|
IT_LOCAL_INDEX = 1
|
|
56
56
|
}
|
|
57
|
-
export declare const INF_MIN:
|
|
58
|
-
export declare const INF_MAX:
|
|
59
|
-
export declare const PK_AUTO_INCR:
|
|
57
|
+
export declare const INF_MIN: any;
|
|
58
|
+
export declare const INF_MAX: any;
|
|
59
|
+
export declare const PK_AUTO_INCR: any;
|
|
60
60
|
/**
|
|
61
61
|
* search
|
|
62
62
|
*
|
package/dist/interface.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.ComparatorType = exports.ColumnConditionType = exports.LogicalOperator = exports.FilterType = exports.QueryOperator = exports.IndexOptions = exports.GeoDistanceType = exports.ColumnReturnType = exports.FieldType = exports.SortMode = exports.SortOrder = exports.ScoreMode = exports.QueryType = exports.PK_AUTO_INCR = exports.INF_MAX = exports.INF_MIN = exports.IndexType = exports.IndexUpdateMode = exports.PrimaryKeyOption = exports.PrimaryKeyType = exports.DefinedColumnType = exports.ReturnType = exports.UpdateType = exports.Direction = exports.RowExistenceExpectation = void 0;
|
|
4
|
+
const TableStore = require("tablestore");
|
|
4
5
|
/**
|
|
5
6
|
* metadata
|
|
6
7
|
*/
|
|
@@ -55,9 +56,9 @@ var IndexType;
|
|
|
55
56
|
IndexType[IndexType["IT_GLOBAL_INDEX"] = 0] = "IT_GLOBAL_INDEX";
|
|
56
57
|
IndexType[IndexType["IT_LOCAL_INDEX"] = 1] = "IT_LOCAL_INDEX";
|
|
57
58
|
})(IndexType = exports.IndexType || (exports.IndexType = {}));
|
|
58
|
-
exports.INF_MIN =
|
|
59
|
-
exports.INF_MAX =
|
|
60
|
-
exports.PK_AUTO_INCR =
|
|
59
|
+
exports.INF_MIN = TableStore.INF_MIN;
|
|
60
|
+
exports.INF_MAX = TableStore.INF_MAX;
|
|
61
|
+
exports.PK_AUTO_INCR = TableStore.PK_AUTO_INCR;
|
|
61
62
|
/**
|
|
62
63
|
* search
|
|
63
64
|
*
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@midwayjs/tablestore",
|
|
3
3
|
"description": "midway tablestore component",
|
|
4
|
-
"version": "3.0.
|
|
4
|
+
"version": "3.0.4",
|
|
5
5
|
"main": "dist/index",
|
|
6
6
|
"typings": "dist/index.d.ts",
|
|
7
7
|
"files": [
|
|
@@ -9,12 +9,12 @@
|
|
|
9
9
|
"dist/**/*.d.ts"
|
|
10
10
|
],
|
|
11
11
|
"devDependencies": {
|
|
12
|
-
"@midwayjs/core": "^3.0.
|
|
13
|
-
"@midwayjs/decorator": "^3.0.
|
|
14
|
-
"@midwayjs/mock": "^3.0.
|
|
12
|
+
"@midwayjs/core": "^3.0.4",
|
|
13
|
+
"@midwayjs/decorator": "^3.0.4",
|
|
14
|
+
"@midwayjs/mock": "^3.0.4"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"tablestore": "
|
|
17
|
+
"tablestore": "5.0.7"
|
|
18
18
|
},
|
|
19
19
|
"keywords": [
|
|
20
20
|
"aliyun",
|
|
@@ -36,5 +36,5 @@
|
|
|
36
36
|
"type": "git",
|
|
37
37
|
"url": "https://github.com/midwayjs/midway.git"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "c2a37dd026c7bf3e855f4498691f572ef61396e3"
|
|
40
40
|
}
|