@cloudbase/js-sdk 3.6.8-beta.0 → 3.6.8
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/app/dist/index.esm.js +1 -1
- package/app/dist/index.esm.js.map +1 -1
- package/app/dist/index.js +1 -1
- package/app/dist/index.js.map +1 -1
- package/app/dist/index.node.esm.js +1 -1
- package/app/dist/index.node.esm.js.map +1 -1
- package/app/dist/index.node.js +1 -1
- package/app/dist/index.node.js.map +1 -1
- package/auth/dist/index.esm.js +1 -1
- package/auth/dist/index.esm.js.map +1 -1
- package/auth/dist/index.js +1 -1
- package/auth/dist/index.js.map +1 -1
- package/database/dist/commonjs/aggregate.d.ts +29 -0
- package/database/dist/commonjs/aggregate.js +156 -0
- package/database/dist/commonjs/collection.d.ts +9 -0
- package/database/dist/commonjs/collection.js +49 -0
- package/database/dist/commonjs/command.d.ts +175 -0
- package/database/dist/commonjs/command.js +299 -0
- package/database/dist/commonjs/commands/logic.d.ts +24 -0
- package/database/dist/commonjs/commands/logic.js +89 -0
- package/database/dist/commonjs/commands/query.d.ts +68 -0
- package/database/dist/commonjs/commands/query.js +160 -0
- package/database/dist/commonjs/commands/update.d.ts +29 -0
- package/database/dist/commonjs/commands/update.js +51 -0
- package/database/dist/commonjs/config/app.config.d.ts +6 -0
- package/database/dist/commonjs/config/app.config.js +7 -0
- package/database/dist/commonjs/config/error.config.d.ts +3 -0
- package/database/dist/commonjs/config/error.config.js +16 -0
- package/database/dist/commonjs/const/code.d.ts +30 -0
- package/database/dist/commonjs/const/code.js +33 -0
- package/database/dist/commonjs/constant.d.ts +51 -0
- package/database/dist/commonjs/constant.js +75 -0
- package/database/dist/commonjs/document.d.ts +11 -0
- package/database/dist/commonjs/document.js +260 -0
- package/database/dist/commonjs/geo/index.d.ts +6 -0
- package/database/dist/commonjs/geo/index.js +22 -0
- package/database/dist/commonjs/geo/interface.d.ts +24 -0
- package/database/dist/commonjs/geo/interface.js +2 -0
- package/database/dist/commonjs/geo/lineString.d.ts +19 -0
- package/database/dist/commonjs/geo/lineString.js +86 -0
- package/database/dist/commonjs/geo/multiLineString.d.ts +18 -0
- package/database/dist/commonjs/geo/multiLineString.js +95 -0
- package/database/dist/commonjs/geo/multiPoint.d.ts +18 -0
- package/database/dist/commonjs/geo/multiPoint.js +79 -0
- package/database/dist/commonjs/geo/multiPolygon.d.ts +18 -0
- package/database/dist/commonjs/geo/multiPolygon.js +122 -0
- package/database/dist/commonjs/geo/point.d.ts +19 -0
- package/database/dist/commonjs/geo/point.js +50 -0
- package/database/dist/commonjs/geo/polygon.d.ts +19 -0
- package/database/dist/commonjs/geo/polygon.js +109 -0
- package/database/dist/commonjs/helper/symbol.d.ts +14 -0
- package/database/dist/commonjs/helper/symbol.js +31 -0
- package/database/dist/commonjs/index.d.ts +40 -0
- package/database/dist/commonjs/index.js +61 -0
- package/database/dist/commonjs/lib/util.d.ts +1 -0
- package/database/dist/commonjs/lib/util.js +26 -0
- package/database/dist/commonjs/operator-map.d.ts +4 -0
- package/database/dist/commonjs/operator-map.js +24 -0
- package/database/dist/commonjs/query.d.ts +22 -0
- package/database/dist/commonjs/query.js +252 -0
- package/database/dist/commonjs/regexp/index.d.ts +14 -0
- package/database/dist/commonjs/regexp/index.js +33 -0
- package/database/dist/commonjs/serializer/common.d.ts +11 -0
- package/database/dist/commonjs/serializer/common.js +127 -0
- package/database/dist/commonjs/serializer/datatype.d.ts +7 -0
- package/database/dist/commonjs/serializer/datatype.js +132 -0
- package/database/dist/commonjs/serializer/query.d.ts +7 -0
- package/database/dist/commonjs/serializer/query.js +232 -0
- package/database/dist/commonjs/serializer/update.d.ts +15 -0
- package/database/dist/commonjs/serializer/update.js +142 -0
- package/database/dist/commonjs/serverDate/index.d.ts +13 -0
- package/database/dist/commonjs/serverDate/index.js +30 -0
- package/database/dist/commonjs/transaction/collection.d.ts +7 -0
- package/database/dist/commonjs/transaction/collection.js +49 -0
- package/database/dist/commonjs/transaction/document.d.ts +27 -0
- package/database/dist/commonjs/transaction/document.js +205 -0
- package/database/dist/commonjs/transaction/index.d.ts +30 -0
- package/database/dist/commonjs/transaction/index.js +215 -0
- package/database/dist/commonjs/transaction/query.d.ts +43 -0
- package/database/dist/commonjs/transaction/query.js +261 -0
- package/database/dist/commonjs/typings/index.d.ts +40 -0
- package/database/dist/commonjs/typings/index.js +2 -0
- package/database/dist/commonjs/typings/realtime.d.ts +219 -0
- package/database/dist/commonjs/typings/realtime.js +2 -0
- package/database/dist/commonjs/util.d.ts +9 -0
- package/database/dist/commonjs/util.js +145 -0
- package/database/dist/commonjs/utils/error.d.ts +38 -0
- package/database/dist/commonjs/utils/error.js +91 -0
- package/database/dist/commonjs/utils/msg.d.ts +0 -0
- package/database/dist/commonjs/utils/msg.js +0 -0
- package/database/dist/commonjs/utils/symbol.d.ts +8 -0
- package/database/dist/commonjs/utils/symbol.js +58 -0
- package/database/dist/commonjs/utils/type.d.ts +13 -0
- package/database/dist/commonjs/utils/type.js +34 -0
- package/database/dist/commonjs/utils/utils.d.ts +4 -0
- package/database/dist/commonjs/utils/utils.js +39 -0
- package/database/dist/commonjs/validate.d.ts +1 -0
- package/database/dist/commonjs/validate.js +60 -0
- package/database/dist/esm/aggregate.d.ts +29 -0
- package/database/dist/esm/aggregate.js +154 -0
- package/database/dist/esm/collection.d.ts +9 -0
- package/database/dist/esm/collection.js +46 -0
- package/database/dist/esm/command.d.ts +175 -0
- package/database/dist/esm/command.js +296 -0
- package/database/dist/esm/commands/logic.d.ts +24 -0
- package/database/dist/esm/commands/logic.js +84 -0
- package/database/dist/esm/commands/query.d.ts +68 -0
- package/database/dist/esm/commands/query.js +154 -0
- package/database/dist/esm/commands/update.d.ts +29 -0
- package/database/dist/esm/commands/update.js +46 -0
- package/database/dist/esm/config/app.config.d.ts +6 -0
- package/database/dist/esm/config/app.config.js +5 -0
- package/database/dist/esm/config/error.config.d.ts +3 -0
- package/database/dist/esm/config/error.config.js +13 -0
- package/database/dist/esm/const/code.d.ts +30 -0
- package/database/dist/esm/const/code.js +30 -0
- package/database/dist/esm/constant.d.ts +51 -0
- package/database/dist/esm/constant.js +65 -0
- package/database/dist/esm/document.d.ts +11 -0
- package/database/dist/esm/document.js +257 -0
- package/database/dist/esm/geo/index.d.ts +6 -0
- package/database/dist/esm/geo/index.js +6 -0
- package/database/dist/esm/geo/interface.d.ts +24 -0
- package/database/dist/esm/geo/interface.js +1 -0
- package/database/dist/esm/geo/lineString.d.ts +19 -0
- package/database/dist/esm/geo/lineString.js +83 -0
- package/database/dist/esm/geo/multiLineString.d.ts +18 -0
- package/database/dist/esm/geo/multiLineString.js +92 -0
- package/database/dist/esm/geo/multiPoint.d.ts +18 -0
- package/database/dist/esm/geo/multiPoint.js +76 -0
- package/database/dist/esm/geo/multiPolygon.d.ts +18 -0
- package/database/dist/esm/geo/multiPolygon.js +119 -0
- package/database/dist/esm/geo/point.d.ts +19 -0
- package/database/dist/esm/geo/point.js +47 -0
- package/database/dist/esm/geo/polygon.d.ts +19 -0
- package/database/dist/esm/geo/polygon.js +106 -0
- package/database/dist/esm/helper/symbol.d.ts +14 -0
- package/database/dist/esm/helper/symbol.js +14 -0
- package/database/dist/esm/index.d.ts +40 -0
- package/database/dist/esm/index.js +55 -0
- package/database/dist/esm/lib/util.d.ts +1 -0
- package/database/dist/esm/lib/util.js +22 -0
- package/database/dist/esm/operator-map.d.ts +4 -0
- package/database/dist/esm/operator-map.js +20 -0
- package/database/dist/esm/query.d.ts +22 -0
- package/database/dist/esm/query.js +249 -0
- package/database/dist/esm/regexp/index.d.ts +14 -0
- package/database/dist/esm/regexp/index.js +29 -0
- package/database/dist/esm/serializer/common.d.ts +11 -0
- package/database/dist/esm/serializer/common.js +118 -0
- package/database/dist/esm/serializer/datatype.d.ts +7 -0
- package/database/dist/esm/serializer/datatype.js +127 -0
- package/database/dist/esm/serializer/query.d.ts +7 -0
- package/database/dist/esm/serializer/query.js +229 -0
- package/database/dist/esm/serializer/update.d.ts +15 -0
- package/database/dist/esm/serializer/update.js +139 -0
- package/database/dist/esm/serverDate/index.d.ts +13 -0
- package/database/dist/esm/serverDate/index.js +26 -0
- package/database/dist/esm/transaction/collection.d.ts +7 -0
- package/database/dist/esm/transaction/collection.js +46 -0
- package/database/dist/esm/transaction/document.d.ts +27 -0
- package/database/dist/esm/transaction/document.js +202 -0
- package/database/dist/esm/transaction/index.d.ts +30 -0
- package/database/dist/esm/transaction/index.js +210 -0
- package/database/dist/esm/transaction/query.d.ts +43 -0
- package/database/dist/esm/transaction/query.js +258 -0
- package/database/dist/esm/typings/index.d.ts +40 -0
- package/database/dist/esm/typings/index.js +1 -0
- package/database/dist/esm/typings/realtime.d.ts +219 -0
- package/database/dist/esm/typings/realtime.js +1 -0
- package/database/dist/esm/util.d.ts +9 -0
- package/database/dist/esm/util.js +142 -0
- package/database/dist/esm/utils/error.d.ts +38 -0
- package/database/dist/esm/utils/error.js +84 -0
- package/database/dist/esm/utils/msg.d.ts +0 -0
- package/database/dist/esm/utils/msg.js +0 -0
- package/database/dist/esm/utils/symbol.d.ts +8 -0
- package/database/dist/esm/utils/symbol.js +55 -0
- package/database/dist/esm/utils/type.d.ts +13 -0
- package/database/dist/esm/utils/type.js +20 -0
- package/database/dist/esm/utils/utils.d.ts +4 -0
- package/database/dist/esm/utils/utils.js +33 -0
- package/database/dist/esm/validate.d.ts +1 -0
- package/database/dist/esm/validate.js +57 -0
- package/dist/index.cjs.js +1 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.node.cjs.js +1 -1
- package/dist/index.node.cjs.js.map +1 -1
- package/dist/index.node.esm.js +1 -1
- package/dist/index.node.esm.js.map +1 -1
- package/miniprogram_dist/auth/index.js +1 -1
- package/miniprogram_dist/index.js +1 -1
- package/oauth/dist/index.esm.js.map +1 -1
- package/oauth/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/types/package.json +1 -1
- package/utilities/package.json +2 -2
- package/database/dist/index.d.ts +0 -3
- package/database/dist/index.esm.js +0 -2
- package/database/dist/index.esm.js.map +0 -1
- package/database/dist/index.js +0 -2
- package/database/dist/index.js.map +0 -1
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __values = (this && this.__values) || function(o) {
|
|
3
|
+
var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
|
|
4
|
+
if (m) return m.call(o);
|
|
5
|
+
if (o && typeof o.length === "number") return {
|
|
6
|
+
next: function () {
|
|
7
|
+
if (o && i >= o.length) o = void 0;
|
|
8
|
+
return { value: o && o[i++], done: !o };
|
|
9
|
+
}
|
|
10
|
+
};
|
|
11
|
+
throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
|
|
12
|
+
};
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.LineString = void 0;
|
|
15
|
+
var symbol_1 = require("../helper/symbol");
|
|
16
|
+
var point_1 = require("./point");
|
|
17
|
+
var type_1 = require("../utils/type");
|
|
18
|
+
var LineString = (function () {
|
|
19
|
+
function LineString(points) {
|
|
20
|
+
if (!(0, type_1.isArray)(points)) {
|
|
21
|
+
throw new TypeError("\"points\" must be of type Point[]. Received type ".concat(typeof points));
|
|
22
|
+
}
|
|
23
|
+
if (points.length < 2) {
|
|
24
|
+
throw new Error('"points" must contain 2 points at least');
|
|
25
|
+
}
|
|
26
|
+
points.forEach(function (point) {
|
|
27
|
+
if (!(point instanceof point_1.Point)) {
|
|
28
|
+
throw new TypeError("\"points\" must be of type Point[]. Received type ".concat(typeof point, "[]"));
|
|
29
|
+
}
|
|
30
|
+
});
|
|
31
|
+
this.points = points;
|
|
32
|
+
}
|
|
33
|
+
LineString.prototype.parse = function (key) {
|
|
34
|
+
var _a;
|
|
35
|
+
return _a = {},
|
|
36
|
+
_a[key] = {
|
|
37
|
+
type: 'LineString',
|
|
38
|
+
coordinates: this.points.map(function (point) { return point.toJSON().coordinates; })
|
|
39
|
+
},
|
|
40
|
+
_a;
|
|
41
|
+
};
|
|
42
|
+
LineString.prototype.toJSON = function () {
|
|
43
|
+
return {
|
|
44
|
+
type: 'LineString',
|
|
45
|
+
coordinates: this.points.map(function (point) { return point.toJSON().coordinates; })
|
|
46
|
+
};
|
|
47
|
+
};
|
|
48
|
+
LineString.validate = function (lineString) {
|
|
49
|
+
var e_1, _a;
|
|
50
|
+
if (lineString.type !== 'LineString' || !(0, type_1.isArray)(lineString.coordinates)) {
|
|
51
|
+
return false;
|
|
52
|
+
}
|
|
53
|
+
try {
|
|
54
|
+
for (var _b = __values(lineString.coordinates), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
55
|
+
var point = _c.value;
|
|
56
|
+
if (!(0, type_1.isNumber)(point[0]) || !(0, type_1.isNumber)(point[1])) {
|
|
57
|
+
return false;
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
catch (e_1_1) { e_1 = { error: e_1_1 }; }
|
|
62
|
+
finally {
|
|
63
|
+
try {
|
|
64
|
+
if (_c && !_c.done && (_a = _b.return)) _a.call(_b);
|
|
65
|
+
}
|
|
66
|
+
finally { if (e_1) throw e_1.error; }
|
|
67
|
+
}
|
|
68
|
+
return true;
|
|
69
|
+
};
|
|
70
|
+
LineString.isClosed = function (lineString) {
|
|
71
|
+
var firstPoint = lineString.points[0];
|
|
72
|
+
var lastPoint = lineString.points[lineString.points.length - 1];
|
|
73
|
+
if (firstPoint.latitude === lastPoint.latitude && firstPoint.longitude === lastPoint.longitude) {
|
|
74
|
+
return true;
|
|
75
|
+
}
|
|
76
|
+
};
|
|
77
|
+
Object.defineProperty(LineString.prototype, "_internalType", {
|
|
78
|
+
get: function () {
|
|
79
|
+
return symbol_1.SYMBOL_GEO_LINE_STRING;
|
|
80
|
+
},
|
|
81
|
+
enumerable: false,
|
|
82
|
+
configurable: true
|
|
83
|
+
});
|
|
84
|
+
return LineString;
|
|
85
|
+
}());
|
|
86
|
+
exports.LineString = LineString;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { LineString } from './lineString';
|
|
2
|
+
import { ISerializedMultiLineString } from './interface';
|
|
3
|
+
export declare class MultiLineString {
|
|
4
|
+
readonly lines: LineString[];
|
|
5
|
+
constructor(lines: LineString[]);
|
|
6
|
+
parse(key: any): {
|
|
7
|
+
[x: number]: {
|
|
8
|
+
type: string;
|
|
9
|
+
coordinates: number[][][];
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
toJSON(): {
|
|
13
|
+
type: string;
|
|
14
|
+
coordinates: number[][][];
|
|
15
|
+
};
|
|
16
|
+
static validate(multiLineString: ISerializedMultiLineString): boolean;
|
|
17
|
+
get _internalType(): import("../utils/symbol").InternalSymbol;
|
|
18
|
+
}
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __values = (this && this.__values) || function(o) {
|
|
3
|
+
var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
|
|
4
|
+
if (m) return m.call(o);
|
|
5
|
+
if (o && typeof o.length === "number") return {
|
|
6
|
+
next: function () {
|
|
7
|
+
if (o && i >= o.length) o = void 0;
|
|
8
|
+
return { value: o && o[i++], done: !o };
|
|
9
|
+
}
|
|
10
|
+
};
|
|
11
|
+
throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
|
|
12
|
+
};
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.MultiLineString = void 0;
|
|
15
|
+
var symbol_1 = require("../helper/symbol");
|
|
16
|
+
var type_1 = require("../utils/type");
|
|
17
|
+
var lineString_1 = require("./lineString");
|
|
18
|
+
var MultiLineString = (function () {
|
|
19
|
+
function MultiLineString(lines) {
|
|
20
|
+
if (!(0, type_1.isArray)(lines)) {
|
|
21
|
+
throw new TypeError("\"lines\" must be of type LineString[]. Received type ".concat(typeof lines));
|
|
22
|
+
}
|
|
23
|
+
if (lines.length === 0) {
|
|
24
|
+
throw new Error('Polygon must contain 1 linestring at least');
|
|
25
|
+
}
|
|
26
|
+
lines.forEach(function (line) {
|
|
27
|
+
if (!(line instanceof lineString_1.LineString)) {
|
|
28
|
+
throw new TypeError("\"lines\" must be of type LineString[]. Received type ".concat(typeof line, "[]"));
|
|
29
|
+
}
|
|
30
|
+
});
|
|
31
|
+
this.lines = lines;
|
|
32
|
+
}
|
|
33
|
+
MultiLineString.prototype.parse = function (key) {
|
|
34
|
+
var _a;
|
|
35
|
+
return _a = {},
|
|
36
|
+
_a[key] = {
|
|
37
|
+
type: 'MultiLineString',
|
|
38
|
+
coordinates: this.lines.map(function (line) {
|
|
39
|
+
return line.points.map(function (point) { return [point.longitude, point.latitude]; });
|
|
40
|
+
})
|
|
41
|
+
},
|
|
42
|
+
_a;
|
|
43
|
+
};
|
|
44
|
+
MultiLineString.prototype.toJSON = function () {
|
|
45
|
+
return {
|
|
46
|
+
type: 'MultiLineString',
|
|
47
|
+
coordinates: this.lines.map(function (line) {
|
|
48
|
+
return line.points.map(function (point) { return [point.longitude, point.latitude]; });
|
|
49
|
+
})
|
|
50
|
+
};
|
|
51
|
+
};
|
|
52
|
+
MultiLineString.validate = function (multiLineString) {
|
|
53
|
+
var e_1, _a, e_2, _b;
|
|
54
|
+
if (multiLineString.type !== 'MultiLineString' || !(0, type_1.isArray)(multiLineString.coordinates)) {
|
|
55
|
+
return false;
|
|
56
|
+
}
|
|
57
|
+
try {
|
|
58
|
+
for (var _c = __values(multiLineString.coordinates), _d = _c.next(); !_d.done; _d = _c.next()) {
|
|
59
|
+
var line = _d.value;
|
|
60
|
+
try {
|
|
61
|
+
for (var line_1 = (e_2 = void 0, __values(line)), line_1_1 = line_1.next(); !line_1_1.done; line_1_1 = line_1.next()) {
|
|
62
|
+
var point = line_1_1.value;
|
|
63
|
+
if (!(0, type_1.isNumber)(point[0]) || !(0, type_1.isNumber)(point[1])) {
|
|
64
|
+
return false;
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
catch (e_2_1) { e_2 = { error: e_2_1 }; }
|
|
69
|
+
finally {
|
|
70
|
+
try {
|
|
71
|
+
if (line_1_1 && !line_1_1.done && (_b = line_1.return)) _b.call(line_1);
|
|
72
|
+
}
|
|
73
|
+
finally { if (e_2) throw e_2.error; }
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
catch (e_1_1) { e_1 = { error: e_1_1 }; }
|
|
78
|
+
finally {
|
|
79
|
+
try {
|
|
80
|
+
if (_d && !_d.done && (_a = _c.return)) _a.call(_c);
|
|
81
|
+
}
|
|
82
|
+
finally { if (e_1) throw e_1.error; }
|
|
83
|
+
}
|
|
84
|
+
return true;
|
|
85
|
+
};
|
|
86
|
+
Object.defineProperty(MultiLineString.prototype, "_internalType", {
|
|
87
|
+
get: function () {
|
|
88
|
+
return symbol_1.SYMBOL_GEO_MULTI_LINE_STRING;
|
|
89
|
+
},
|
|
90
|
+
enumerable: false,
|
|
91
|
+
configurable: true
|
|
92
|
+
});
|
|
93
|
+
return MultiLineString;
|
|
94
|
+
}());
|
|
95
|
+
exports.MultiLineString = MultiLineString;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Point } from './point';
|
|
2
|
+
import { ISerializedMultiPoint } from './interface';
|
|
3
|
+
export declare class MultiPoint {
|
|
4
|
+
readonly points: Point[];
|
|
5
|
+
constructor(points: Point[]);
|
|
6
|
+
parse(key: any): {
|
|
7
|
+
[x: number]: {
|
|
8
|
+
type: string;
|
|
9
|
+
coordinates: number[][];
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
toJSON(): {
|
|
13
|
+
type: string;
|
|
14
|
+
coordinates: number[][];
|
|
15
|
+
};
|
|
16
|
+
static validate(multiPoint: ISerializedMultiPoint): boolean;
|
|
17
|
+
get _internalType(): import("../utils/symbol").InternalSymbol;
|
|
18
|
+
}
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __values = (this && this.__values) || function(o) {
|
|
3
|
+
var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
|
|
4
|
+
if (m) return m.call(o);
|
|
5
|
+
if (o && typeof o.length === "number") return {
|
|
6
|
+
next: function () {
|
|
7
|
+
if (o && i >= o.length) o = void 0;
|
|
8
|
+
return { value: o && o[i++], done: !o };
|
|
9
|
+
}
|
|
10
|
+
};
|
|
11
|
+
throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
|
|
12
|
+
};
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.MultiPoint = void 0;
|
|
15
|
+
var symbol_1 = require("../helper/symbol");
|
|
16
|
+
var point_1 = require("./point");
|
|
17
|
+
var type_1 = require("../utils/type");
|
|
18
|
+
var MultiPoint = (function () {
|
|
19
|
+
function MultiPoint(points) {
|
|
20
|
+
if (!(0, type_1.isArray)(points)) {
|
|
21
|
+
throw new TypeError("\"points\" must be of type Point[]. Received type ".concat(typeof points));
|
|
22
|
+
}
|
|
23
|
+
if (points.length === 0) {
|
|
24
|
+
throw new Error('"points" must contain 1 point at least');
|
|
25
|
+
}
|
|
26
|
+
points.forEach(function (point) {
|
|
27
|
+
if (!(point instanceof point_1.Point)) {
|
|
28
|
+
throw new TypeError("\"points\" must be of type Point[]. Received type ".concat(typeof point, "[]"));
|
|
29
|
+
}
|
|
30
|
+
});
|
|
31
|
+
this.points = points;
|
|
32
|
+
}
|
|
33
|
+
MultiPoint.prototype.parse = function (key) {
|
|
34
|
+
var _a;
|
|
35
|
+
return _a = {},
|
|
36
|
+
_a[key] = {
|
|
37
|
+
type: 'MultiPoint',
|
|
38
|
+
coordinates: this.points.map(function (point) { return point.toJSON().coordinates; })
|
|
39
|
+
},
|
|
40
|
+
_a;
|
|
41
|
+
};
|
|
42
|
+
MultiPoint.prototype.toJSON = function () {
|
|
43
|
+
return {
|
|
44
|
+
type: 'MultiPoint',
|
|
45
|
+
coordinates: this.points.map(function (point) { return point.toJSON().coordinates; })
|
|
46
|
+
};
|
|
47
|
+
};
|
|
48
|
+
MultiPoint.validate = function (multiPoint) {
|
|
49
|
+
var e_1, _a;
|
|
50
|
+
if (multiPoint.type !== 'MultiPoint' || !(0, type_1.isArray)(multiPoint.coordinates)) {
|
|
51
|
+
return false;
|
|
52
|
+
}
|
|
53
|
+
try {
|
|
54
|
+
for (var _b = __values(multiPoint.coordinates), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
55
|
+
var point = _c.value;
|
|
56
|
+
if (!(0, type_1.isNumber)(point[0]) || !(0, type_1.isNumber)(point[1])) {
|
|
57
|
+
return false;
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
catch (e_1_1) { e_1 = { error: e_1_1 }; }
|
|
62
|
+
finally {
|
|
63
|
+
try {
|
|
64
|
+
if (_c && !_c.done && (_a = _b.return)) _a.call(_b);
|
|
65
|
+
}
|
|
66
|
+
finally { if (e_1) throw e_1.error; }
|
|
67
|
+
}
|
|
68
|
+
return true;
|
|
69
|
+
};
|
|
70
|
+
Object.defineProperty(MultiPoint.prototype, "_internalType", {
|
|
71
|
+
get: function () {
|
|
72
|
+
return symbol_1.SYMBOL_GEO_MULTI_POINT;
|
|
73
|
+
},
|
|
74
|
+
enumerable: false,
|
|
75
|
+
configurable: true
|
|
76
|
+
});
|
|
77
|
+
return MultiPoint;
|
|
78
|
+
}());
|
|
79
|
+
exports.MultiPoint = MultiPoint;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Polygon } from './polygon';
|
|
2
|
+
import { ISerializedMultiPolygon } from './interface';
|
|
3
|
+
export declare class MultiPolygon {
|
|
4
|
+
readonly polygons: Polygon[];
|
|
5
|
+
constructor(polygons: Polygon[]);
|
|
6
|
+
parse(key: any): {
|
|
7
|
+
[x: number]: {
|
|
8
|
+
type: string;
|
|
9
|
+
coordinates: number[][][][];
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
toJSON(): {
|
|
13
|
+
type: string;
|
|
14
|
+
coordinates: number[][][][];
|
|
15
|
+
};
|
|
16
|
+
static validate(multiPolygon: ISerializedMultiPolygon): boolean;
|
|
17
|
+
get _internalType(): import("../utils/symbol").InternalSymbol;
|
|
18
|
+
}
|
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __values = (this && this.__values) || function(o) {
|
|
3
|
+
var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
|
|
4
|
+
if (m) return m.call(o);
|
|
5
|
+
if (o && typeof o.length === "number") return {
|
|
6
|
+
next: function () {
|
|
7
|
+
if (o && i >= o.length) o = void 0;
|
|
8
|
+
return { value: o && o[i++], done: !o };
|
|
9
|
+
}
|
|
10
|
+
};
|
|
11
|
+
throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
|
|
12
|
+
};
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.MultiPolygon = void 0;
|
|
15
|
+
var symbol_1 = require("../helper/symbol");
|
|
16
|
+
var type_1 = require("../utils/type");
|
|
17
|
+
var polygon_1 = require("./polygon");
|
|
18
|
+
var MultiPolygon = (function () {
|
|
19
|
+
function MultiPolygon(polygons) {
|
|
20
|
+
var e_1, _a;
|
|
21
|
+
if (!(0, type_1.isArray)(polygons)) {
|
|
22
|
+
throw new TypeError("\"polygons\" must be of type Polygon[]. Received type ".concat(typeof polygons));
|
|
23
|
+
}
|
|
24
|
+
if (polygons.length === 0) {
|
|
25
|
+
throw new Error('MultiPolygon must contain 1 polygon at least');
|
|
26
|
+
}
|
|
27
|
+
try {
|
|
28
|
+
for (var polygons_1 = __values(polygons), polygons_1_1 = polygons_1.next(); !polygons_1_1.done; polygons_1_1 = polygons_1.next()) {
|
|
29
|
+
var polygon = polygons_1_1.value;
|
|
30
|
+
if (!(polygon instanceof polygon_1.Polygon)) {
|
|
31
|
+
throw new TypeError("\"polygon\" must be of type Polygon[]. Received type ".concat(typeof polygon, "[]"));
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
catch (e_1_1) { e_1 = { error: e_1_1 }; }
|
|
36
|
+
finally {
|
|
37
|
+
try {
|
|
38
|
+
if (polygons_1_1 && !polygons_1_1.done && (_a = polygons_1.return)) _a.call(polygons_1);
|
|
39
|
+
}
|
|
40
|
+
finally { if (e_1) throw e_1.error; }
|
|
41
|
+
}
|
|
42
|
+
this.polygons = polygons;
|
|
43
|
+
}
|
|
44
|
+
MultiPolygon.prototype.parse = function (key) {
|
|
45
|
+
var _a;
|
|
46
|
+
return _a = {},
|
|
47
|
+
_a[key] = {
|
|
48
|
+
type: 'MultiPolygon',
|
|
49
|
+
coordinates: this.polygons.map(function (polygon) {
|
|
50
|
+
return polygon.lines.map(function (line) {
|
|
51
|
+
return line.points.map(function (point) { return [point.longitude, point.latitude]; });
|
|
52
|
+
});
|
|
53
|
+
})
|
|
54
|
+
},
|
|
55
|
+
_a;
|
|
56
|
+
};
|
|
57
|
+
MultiPolygon.prototype.toJSON = function () {
|
|
58
|
+
return {
|
|
59
|
+
type: 'MultiPolygon',
|
|
60
|
+
coordinates: this.polygons.map(function (polygon) {
|
|
61
|
+
return polygon.lines.map(function (line) {
|
|
62
|
+
return line.points.map(function (point) { return [point.longitude, point.latitude]; });
|
|
63
|
+
});
|
|
64
|
+
})
|
|
65
|
+
};
|
|
66
|
+
};
|
|
67
|
+
MultiPolygon.validate = function (multiPolygon) {
|
|
68
|
+
var e_2, _a, e_3, _b, e_4, _c;
|
|
69
|
+
if (multiPolygon.type !== 'MultiPolygon' || !(0, type_1.isArray)(multiPolygon.coordinates)) {
|
|
70
|
+
return false;
|
|
71
|
+
}
|
|
72
|
+
try {
|
|
73
|
+
for (var _d = __values(multiPolygon.coordinates), _e = _d.next(); !_e.done; _e = _d.next()) {
|
|
74
|
+
var polygon = _e.value;
|
|
75
|
+
try {
|
|
76
|
+
for (var polygon_2 = (e_3 = void 0, __values(polygon)), polygon_2_1 = polygon_2.next(); !polygon_2_1.done; polygon_2_1 = polygon_2.next()) {
|
|
77
|
+
var line = polygon_2_1.value;
|
|
78
|
+
try {
|
|
79
|
+
for (var line_1 = (e_4 = void 0, __values(line)), line_1_1 = line_1.next(); !line_1_1.done; line_1_1 = line_1.next()) {
|
|
80
|
+
var point = line_1_1.value;
|
|
81
|
+
if (!(0, type_1.isNumber)(point[0]) || !(0, type_1.isNumber)(point[1])) {
|
|
82
|
+
return false;
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
catch (e_4_1) { e_4 = { error: e_4_1 }; }
|
|
87
|
+
finally {
|
|
88
|
+
try {
|
|
89
|
+
if (line_1_1 && !line_1_1.done && (_c = line_1.return)) _c.call(line_1);
|
|
90
|
+
}
|
|
91
|
+
finally { if (e_4) throw e_4.error; }
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
catch (e_3_1) { e_3 = { error: e_3_1 }; }
|
|
96
|
+
finally {
|
|
97
|
+
try {
|
|
98
|
+
if (polygon_2_1 && !polygon_2_1.done && (_b = polygon_2.return)) _b.call(polygon_2);
|
|
99
|
+
}
|
|
100
|
+
finally { if (e_3) throw e_3.error; }
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
catch (e_2_1) { e_2 = { error: e_2_1 }; }
|
|
105
|
+
finally {
|
|
106
|
+
try {
|
|
107
|
+
if (_e && !_e.done && (_a = _d.return)) _a.call(_d);
|
|
108
|
+
}
|
|
109
|
+
finally { if (e_2) throw e_2.error; }
|
|
110
|
+
}
|
|
111
|
+
return true;
|
|
112
|
+
};
|
|
113
|
+
Object.defineProperty(MultiPolygon.prototype, "_internalType", {
|
|
114
|
+
get: function () {
|
|
115
|
+
return symbol_1.SYMBOL_GEO_POLYGON;
|
|
116
|
+
},
|
|
117
|
+
enumerable: false,
|
|
118
|
+
configurable: true
|
|
119
|
+
});
|
|
120
|
+
return MultiPolygon;
|
|
121
|
+
}());
|
|
122
|
+
exports.MultiPolygon = MultiPolygon;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { ISerializedPoint } from './interface';
|
|
2
|
+
export declare class Point {
|
|
3
|
+
readonly latitude: number;
|
|
4
|
+
readonly longitude: number;
|
|
5
|
+
constructor(longitude: number, latitude: number);
|
|
6
|
+
parse(key: any): {
|
|
7
|
+
[x: number]: {
|
|
8
|
+
type: string;
|
|
9
|
+
coordinates: number[];
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
toJSON(): {
|
|
13
|
+
type: string;
|
|
14
|
+
coordinates: number[];
|
|
15
|
+
};
|
|
16
|
+
toReadableString(): string;
|
|
17
|
+
static validate(point: ISerializedPoint): boolean;
|
|
18
|
+
get _internalType(): import("../utils/symbol").InternalSymbol;
|
|
19
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.Point = void 0;
|
|
4
|
+
var validate_1 = require("../validate");
|
|
5
|
+
var symbol_1 = require("../helper/symbol");
|
|
6
|
+
var type_1 = require("../utils/type");
|
|
7
|
+
var Point = (function () {
|
|
8
|
+
function Point(longitude, latitude) {
|
|
9
|
+
validate_1.Validate.isGeopoint('longitude', longitude);
|
|
10
|
+
validate_1.Validate.isGeopoint('latitude', latitude);
|
|
11
|
+
this.longitude = longitude;
|
|
12
|
+
this.latitude = latitude;
|
|
13
|
+
}
|
|
14
|
+
Point.prototype.parse = function (key) {
|
|
15
|
+
var _a;
|
|
16
|
+
return _a = {},
|
|
17
|
+
_a[key] = {
|
|
18
|
+
type: 'Point',
|
|
19
|
+
coordinates: [this.longitude, this.latitude]
|
|
20
|
+
},
|
|
21
|
+
_a;
|
|
22
|
+
};
|
|
23
|
+
Point.prototype.toJSON = function () {
|
|
24
|
+
return {
|
|
25
|
+
type: 'Point',
|
|
26
|
+
coordinates: [
|
|
27
|
+
this.longitude,
|
|
28
|
+
this.latitude,
|
|
29
|
+
],
|
|
30
|
+
};
|
|
31
|
+
};
|
|
32
|
+
Point.prototype.toReadableString = function () {
|
|
33
|
+
return "[".concat(this.longitude, ",").concat(this.latitude, "]");
|
|
34
|
+
};
|
|
35
|
+
Point.validate = function (point) {
|
|
36
|
+
return point.type === 'Point' &&
|
|
37
|
+
(0, type_1.isArray)(point.coordinates) &&
|
|
38
|
+
validate_1.Validate.isGeopoint('longitude', point.coordinates[0]) &&
|
|
39
|
+
validate_1.Validate.isGeopoint('latitude', point.coordinates[1]);
|
|
40
|
+
};
|
|
41
|
+
Object.defineProperty(Point.prototype, "_internalType", {
|
|
42
|
+
get: function () {
|
|
43
|
+
return symbol_1.SYMBOL_GEO_POINT;
|
|
44
|
+
},
|
|
45
|
+
enumerable: false,
|
|
46
|
+
configurable: true
|
|
47
|
+
});
|
|
48
|
+
return Point;
|
|
49
|
+
}());
|
|
50
|
+
exports.Point = Point;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { LineString } from './lineString';
|
|
2
|
+
import { ISerializedPolygon } from './interface';
|
|
3
|
+
export declare class Polygon {
|
|
4
|
+
readonly lines: LineString[];
|
|
5
|
+
constructor(lines: LineString[]);
|
|
6
|
+
parse(key: any): {
|
|
7
|
+
[x: number]: {
|
|
8
|
+
type: string;
|
|
9
|
+
coordinates: number[][][];
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
toJSON(): {
|
|
13
|
+
type: string;
|
|
14
|
+
coordinates: number[][][];
|
|
15
|
+
};
|
|
16
|
+
static validate(polygon: ISerializedPolygon): boolean;
|
|
17
|
+
static isCloseLineString(lineString: any): boolean;
|
|
18
|
+
get _internalType(): import("../utils/symbol").InternalSymbol;
|
|
19
|
+
}
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __values = (this && this.__values) || function(o) {
|
|
3
|
+
var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
|
|
4
|
+
if (m) return m.call(o);
|
|
5
|
+
if (o && typeof o.length === "number") return {
|
|
6
|
+
next: function () {
|
|
7
|
+
if (o && i >= o.length) o = void 0;
|
|
8
|
+
return { value: o && o[i++], done: !o };
|
|
9
|
+
}
|
|
10
|
+
};
|
|
11
|
+
throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
|
|
12
|
+
};
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.Polygon = void 0;
|
|
15
|
+
var symbol_1 = require("../helper/symbol");
|
|
16
|
+
var type_1 = require("../utils/type");
|
|
17
|
+
var lineString_1 = require("./lineString");
|
|
18
|
+
var Polygon = (function () {
|
|
19
|
+
function Polygon(lines) {
|
|
20
|
+
if (!(0, type_1.isArray)(lines)) {
|
|
21
|
+
throw new TypeError("\"lines\" must be of type LineString[]. Received type ".concat(typeof lines));
|
|
22
|
+
}
|
|
23
|
+
if (lines.length === 0) {
|
|
24
|
+
throw new Error('Polygon must contain 1 linestring at least');
|
|
25
|
+
}
|
|
26
|
+
lines.forEach(function (line) {
|
|
27
|
+
if (!(line instanceof lineString_1.LineString)) {
|
|
28
|
+
throw new TypeError("\"lines\" must be of type LineString[]. Received type ".concat(typeof line, "[]"));
|
|
29
|
+
}
|
|
30
|
+
if (!lineString_1.LineString.isClosed(line)) {
|
|
31
|
+
throw new Error("LineString ".concat(line.points.map(function (p) { return p.toReadableString(); }), " is not a closed cycle"));
|
|
32
|
+
}
|
|
33
|
+
});
|
|
34
|
+
this.lines = lines;
|
|
35
|
+
}
|
|
36
|
+
Polygon.prototype.parse = function (key) {
|
|
37
|
+
var _a;
|
|
38
|
+
return _a = {},
|
|
39
|
+
_a[key] = {
|
|
40
|
+
type: 'Polygon',
|
|
41
|
+
coordinates: this.lines.map(function (line) {
|
|
42
|
+
return line.points.map(function (point) { return [point.longitude, point.latitude]; });
|
|
43
|
+
})
|
|
44
|
+
},
|
|
45
|
+
_a;
|
|
46
|
+
};
|
|
47
|
+
Polygon.prototype.toJSON = function () {
|
|
48
|
+
return {
|
|
49
|
+
type: 'Polygon',
|
|
50
|
+
coordinates: this.lines.map(function (line) {
|
|
51
|
+
return line.points.map(function (point) { return [point.longitude, point.latitude]; });
|
|
52
|
+
})
|
|
53
|
+
};
|
|
54
|
+
};
|
|
55
|
+
Polygon.validate = function (polygon) {
|
|
56
|
+
var e_1, _a, e_2, _b;
|
|
57
|
+
if (polygon.type !== 'Polygon' || !(0, type_1.isArray)(polygon.coordinates)) {
|
|
58
|
+
return false;
|
|
59
|
+
}
|
|
60
|
+
try {
|
|
61
|
+
for (var _c = __values(polygon.coordinates), _d = _c.next(); !_d.done; _d = _c.next()) {
|
|
62
|
+
var line = _d.value;
|
|
63
|
+
if (!this.isCloseLineString(line)) {
|
|
64
|
+
return false;
|
|
65
|
+
}
|
|
66
|
+
try {
|
|
67
|
+
for (var line_1 = (e_2 = void 0, __values(line)), line_1_1 = line_1.next(); !line_1_1.done; line_1_1 = line_1.next()) {
|
|
68
|
+
var point = line_1_1.value;
|
|
69
|
+
if (!(0, type_1.isNumber)(point[0]) || !(0, type_1.isNumber)(point[1])) {
|
|
70
|
+
return false;
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
catch (e_2_1) { e_2 = { error: e_2_1 }; }
|
|
75
|
+
finally {
|
|
76
|
+
try {
|
|
77
|
+
if (line_1_1 && !line_1_1.done && (_b = line_1.return)) _b.call(line_1);
|
|
78
|
+
}
|
|
79
|
+
finally { if (e_2) throw e_2.error; }
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
catch (e_1_1) { e_1 = { error: e_1_1 }; }
|
|
84
|
+
finally {
|
|
85
|
+
try {
|
|
86
|
+
if (_d && !_d.done && (_a = _c.return)) _a.call(_c);
|
|
87
|
+
}
|
|
88
|
+
finally { if (e_1) throw e_1.error; }
|
|
89
|
+
}
|
|
90
|
+
return true;
|
|
91
|
+
};
|
|
92
|
+
Polygon.isCloseLineString = function (lineString) {
|
|
93
|
+
var firstPoint = lineString[0];
|
|
94
|
+
var lastPoint = lineString[lineString.length - 1];
|
|
95
|
+
if (firstPoint[0] !== lastPoint[0] || firstPoint[1] !== lastPoint[1]) {
|
|
96
|
+
return false;
|
|
97
|
+
}
|
|
98
|
+
return true;
|
|
99
|
+
};
|
|
100
|
+
Object.defineProperty(Polygon.prototype, "_internalType", {
|
|
101
|
+
get: function () {
|
|
102
|
+
return symbol_1.SYMBOL_GEO_MULTI_POLYGON;
|
|
103
|
+
},
|
|
104
|
+
enumerable: false,
|
|
105
|
+
configurable: true
|
|
106
|
+
});
|
|
107
|
+
return Polygon;
|
|
108
|
+
}());
|
|
109
|
+
exports.Polygon = Polygon;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import InternalSymbol from '../utils/symbol';
|
|
2
|
+
export * from '../utils/symbol';
|
|
3
|
+
export declare const SYMBOL_UNSET_FIELD_NAME: InternalSymbol;
|
|
4
|
+
export declare const SYMBOL_UPDATE_COMMAND: InternalSymbol;
|
|
5
|
+
export declare const SYMBOL_QUERY_COMMAND: InternalSymbol;
|
|
6
|
+
export declare const SYMBOL_LOGIC_COMMAND: InternalSymbol;
|
|
7
|
+
export declare const SYMBOL_GEO_POINT: InternalSymbol;
|
|
8
|
+
export declare const SYMBOL_GEO_LINE_STRING: InternalSymbol;
|
|
9
|
+
export declare const SYMBOL_GEO_POLYGON: InternalSymbol;
|
|
10
|
+
export declare const SYMBOL_GEO_MULTI_POINT: InternalSymbol;
|
|
11
|
+
export declare const SYMBOL_GEO_MULTI_LINE_STRING: InternalSymbol;
|
|
12
|
+
export declare const SYMBOL_GEO_MULTI_POLYGON: InternalSymbol;
|
|
13
|
+
export declare const SYMBOL_SERVER_DATE: InternalSymbol;
|
|
14
|
+
export declare const SYMBOL_REGEXP: InternalSymbol;
|