@cloudbase/js-sdk 2.28.6 → 2.29.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.
Files changed (330) hide show
  1. package/CHANGELOG.md +147 -0
  2. package/ai/dist/index.esm.js +2 -3
  3. package/ai/dist/index.esm.js.map +1 -0
  4. package/ai/dist/index.js +2 -21
  5. package/ai/dist/index.js.map +1 -0
  6. package/apis/dist/index.esm.js +2 -3
  7. package/apis/dist/index.esm.js.map +1 -0
  8. package/apis/dist/index.js +2 -21
  9. package/apis/dist/index.js.map +1 -0
  10. package/app/dist/index.esm.js +2 -11
  11. package/app/dist/index.esm.js.map +1 -0
  12. package/app/dist/index.js +2 -18
  13. package/app/dist/index.js.map +1 -0
  14. package/auth/dist/index.d.ts +2 -2
  15. package/auth/dist/index.esm.js +3 -8
  16. package/auth/dist/index.esm.js.LICENSE.txt +12 -0
  17. package/auth/dist/index.esm.js.map +1 -0
  18. package/auth/dist/index.js +3 -13
  19. package/auth/dist/index.js.LICENSE.txt +12 -0
  20. package/auth/dist/index.js.map +1 -0
  21. package/cloudrun/dist/index.esm.js +2 -3
  22. package/cloudrun/dist/index.esm.js.map +1 -0
  23. package/cloudrun/dist/index.js +2 -21
  24. package/cloudrun/dist/index.js.map +1 -0
  25. package/container/dist/index.d.ts +2 -2
  26. package/container/dist/index.esm.js +2 -8
  27. package/container/dist/index.esm.js.map +1 -0
  28. package/container/dist/index.js +2 -13
  29. package/container/dist/index.js.map +1 -0
  30. package/database/dist/commonjs/aggregate.d.ts +29 -0
  31. package/database/dist/commonjs/aggregate.js +156 -0
  32. package/database/dist/commonjs/collection.d.ts +9 -0
  33. package/database/dist/commonjs/collection.js +49 -0
  34. package/database/dist/commonjs/command.d.ts +175 -0
  35. package/database/dist/commonjs/command.js +299 -0
  36. package/database/dist/commonjs/commands/logic.d.ts +24 -0
  37. package/database/dist/commonjs/commands/logic.js +89 -0
  38. package/database/dist/commonjs/commands/query.d.ts +68 -0
  39. package/database/dist/commonjs/commands/query.js +160 -0
  40. package/database/dist/commonjs/commands/update.d.ts +29 -0
  41. package/database/dist/commonjs/commands/update.js +51 -0
  42. package/database/dist/commonjs/config/app.config.d.ts +6 -0
  43. package/database/dist/commonjs/config/app.config.js +7 -0
  44. package/database/dist/commonjs/config/error.config.d.ts +3 -0
  45. package/database/dist/commonjs/config/error.config.js +16 -0
  46. package/database/dist/commonjs/const/code.d.ts +30 -0
  47. package/database/dist/commonjs/const/code.js +33 -0
  48. package/database/dist/commonjs/constant.d.ts +51 -0
  49. package/database/dist/commonjs/constant.js +75 -0
  50. package/database/dist/commonjs/document.d.ts +11 -0
  51. package/database/dist/commonjs/document.js +260 -0
  52. package/database/dist/commonjs/geo/index.d.ts +6 -0
  53. package/database/dist/commonjs/geo/index.js +22 -0
  54. package/database/dist/commonjs/geo/interface.d.ts +24 -0
  55. package/database/dist/commonjs/geo/interface.js +2 -0
  56. package/database/dist/commonjs/geo/lineString.d.ts +19 -0
  57. package/database/dist/commonjs/geo/lineString.js +86 -0
  58. package/database/dist/commonjs/geo/multiLineString.d.ts +18 -0
  59. package/database/dist/commonjs/geo/multiLineString.js +95 -0
  60. package/database/dist/commonjs/geo/multiPoint.d.ts +18 -0
  61. package/database/dist/commonjs/geo/multiPoint.js +79 -0
  62. package/database/dist/commonjs/geo/multiPolygon.d.ts +18 -0
  63. package/database/dist/commonjs/geo/multiPolygon.js +122 -0
  64. package/database/dist/commonjs/geo/point.d.ts +19 -0
  65. package/database/dist/commonjs/geo/point.js +50 -0
  66. package/database/dist/commonjs/geo/polygon.d.ts +19 -0
  67. package/database/dist/commonjs/geo/polygon.js +109 -0
  68. package/database/dist/commonjs/helper/symbol.d.ts +14 -0
  69. package/database/dist/commonjs/helper/symbol.js +31 -0
  70. package/database/dist/commonjs/index.d.ts +40 -0
  71. package/database/dist/commonjs/index.js +61 -0
  72. package/database/dist/commonjs/lib/util.d.ts +1 -0
  73. package/database/dist/commonjs/lib/util.js +26 -0
  74. package/database/dist/commonjs/operator-map.d.ts +4 -0
  75. package/database/dist/commonjs/operator-map.js +24 -0
  76. package/database/dist/commonjs/query.d.ts +22 -0
  77. package/database/dist/commonjs/query.js +252 -0
  78. package/database/dist/commonjs/regexp/index.d.ts +14 -0
  79. package/database/dist/commonjs/regexp/index.js +33 -0
  80. package/database/dist/commonjs/serializer/common.d.ts +11 -0
  81. package/database/dist/commonjs/serializer/common.js +127 -0
  82. package/database/dist/commonjs/serializer/datatype.d.ts +7 -0
  83. package/database/dist/commonjs/serializer/datatype.js +132 -0
  84. package/database/dist/commonjs/serializer/query.d.ts +7 -0
  85. package/database/dist/commonjs/serializer/query.js +232 -0
  86. package/database/dist/commonjs/serializer/update.d.ts +15 -0
  87. package/database/dist/commonjs/serializer/update.js +142 -0
  88. package/database/dist/commonjs/serverDate/index.d.ts +13 -0
  89. package/database/dist/commonjs/serverDate/index.js +30 -0
  90. package/database/dist/commonjs/transaction/collection.d.ts +7 -0
  91. package/database/dist/commonjs/transaction/collection.js +49 -0
  92. package/database/dist/commonjs/transaction/document.d.ts +27 -0
  93. package/database/dist/commonjs/transaction/document.js +205 -0
  94. package/database/dist/commonjs/transaction/index.d.ts +30 -0
  95. package/database/dist/commonjs/transaction/index.js +215 -0
  96. package/database/dist/commonjs/transaction/query.d.ts +43 -0
  97. package/database/dist/commonjs/transaction/query.js +261 -0
  98. package/database/dist/commonjs/typings/index.d.ts +40 -0
  99. package/database/dist/commonjs/typings/index.js +2 -0
  100. package/database/dist/commonjs/typings/realtime.d.ts +219 -0
  101. package/database/dist/commonjs/typings/realtime.js +2 -0
  102. package/database/dist/commonjs/util.d.ts +9 -0
  103. package/database/dist/commonjs/util.js +145 -0
  104. package/database/dist/commonjs/utils/error.d.ts +38 -0
  105. package/database/dist/commonjs/utils/error.js +91 -0
  106. package/database/dist/commonjs/utils/msg.d.ts +0 -0
  107. package/database/dist/commonjs/utils/msg.js +0 -0
  108. package/database/dist/commonjs/utils/symbol.d.ts +8 -0
  109. package/database/dist/commonjs/utils/symbol.js +58 -0
  110. package/database/dist/commonjs/utils/type.d.ts +13 -0
  111. package/database/dist/commonjs/utils/type.js +34 -0
  112. package/database/dist/commonjs/utils/utils.d.ts +4 -0
  113. package/database/dist/commonjs/utils/utils.js +39 -0
  114. package/database/dist/commonjs/validate.d.ts +1 -0
  115. package/database/dist/commonjs/validate.js +60 -0
  116. package/database/dist/esm/aggregate.d.ts +29 -0
  117. package/database/dist/esm/aggregate.js +154 -0
  118. package/database/dist/esm/collection.d.ts +9 -0
  119. package/database/dist/esm/collection.js +46 -0
  120. package/database/dist/esm/command.d.ts +175 -0
  121. package/database/dist/esm/command.js +296 -0
  122. package/database/dist/esm/commands/logic.d.ts +24 -0
  123. package/database/dist/esm/commands/logic.js +84 -0
  124. package/database/dist/esm/commands/query.d.ts +68 -0
  125. package/database/dist/esm/commands/query.js +154 -0
  126. package/database/dist/esm/commands/update.d.ts +29 -0
  127. package/database/dist/esm/commands/update.js +46 -0
  128. package/database/dist/esm/config/app.config.d.ts +6 -0
  129. package/database/dist/esm/config/app.config.js +5 -0
  130. package/database/dist/esm/config/error.config.d.ts +3 -0
  131. package/database/dist/esm/config/error.config.js +13 -0
  132. package/database/dist/esm/const/code.d.ts +30 -0
  133. package/database/dist/esm/const/code.js +30 -0
  134. package/database/dist/esm/constant.d.ts +51 -0
  135. package/database/dist/esm/constant.js +65 -0
  136. package/database/dist/esm/document.d.ts +11 -0
  137. package/database/dist/esm/document.js +257 -0
  138. package/database/dist/esm/geo/index.d.ts +6 -0
  139. package/database/dist/esm/geo/index.js +6 -0
  140. package/database/dist/esm/geo/interface.d.ts +24 -0
  141. package/database/dist/esm/geo/interface.js +1 -0
  142. package/database/dist/esm/geo/lineString.d.ts +19 -0
  143. package/database/dist/esm/geo/lineString.js +83 -0
  144. package/database/dist/esm/geo/multiLineString.d.ts +18 -0
  145. package/database/dist/esm/geo/multiLineString.js +92 -0
  146. package/database/dist/esm/geo/multiPoint.d.ts +18 -0
  147. package/database/dist/esm/geo/multiPoint.js +76 -0
  148. package/database/dist/esm/geo/multiPolygon.d.ts +18 -0
  149. package/database/dist/esm/geo/multiPolygon.js +119 -0
  150. package/database/dist/esm/geo/point.d.ts +19 -0
  151. package/database/dist/esm/geo/point.js +47 -0
  152. package/database/dist/esm/geo/polygon.d.ts +19 -0
  153. package/database/dist/esm/geo/polygon.js +106 -0
  154. package/database/dist/esm/helper/symbol.d.ts +14 -0
  155. package/database/dist/esm/helper/symbol.js +14 -0
  156. package/database/dist/esm/index.d.ts +40 -0
  157. package/database/dist/esm/index.js +55 -0
  158. package/database/dist/esm/lib/util.d.ts +1 -0
  159. package/database/dist/esm/lib/util.js +22 -0
  160. package/database/dist/esm/operator-map.d.ts +4 -0
  161. package/database/dist/esm/operator-map.js +20 -0
  162. package/database/dist/esm/query.d.ts +22 -0
  163. package/database/dist/esm/query.js +249 -0
  164. package/database/dist/esm/regexp/index.d.ts +14 -0
  165. package/database/dist/esm/regexp/index.js +29 -0
  166. package/database/dist/esm/serializer/common.d.ts +11 -0
  167. package/database/dist/esm/serializer/common.js +118 -0
  168. package/database/dist/esm/serializer/datatype.d.ts +7 -0
  169. package/database/dist/esm/serializer/datatype.js +127 -0
  170. package/database/dist/esm/serializer/query.d.ts +7 -0
  171. package/database/dist/esm/serializer/query.js +229 -0
  172. package/database/dist/esm/serializer/update.d.ts +15 -0
  173. package/database/dist/esm/serializer/update.js +139 -0
  174. package/database/dist/esm/serverDate/index.d.ts +13 -0
  175. package/database/dist/esm/serverDate/index.js +26 -0
  176. package/database/dist/esm/transaction/collection.d.ts +7 -0
  177. package/database/dist/esm/transaction/collection.js +46 -0
  178. package/database/dist/esm/transaction/document.d.ts +27 -0
  179. package/database/dist/esm/transaction/document.js +202 -0
  180. package/database/dist/esm/transaction/index.d.ts +30 -0
  181. package/database/dist/esm/transaction/index.js +210 -0
  182. package/database/dist/esm/transaction/query.d.ts +43 -0
  183. package/database/dist/esm/transaction/query.js +258 -0
  184. package/database/dist/esm/typings/index.d.ts +40 -0
  185. package/database/dist/esm/typings/index.js +1 -0
  186. package/database/dist/esm/typings/realtime.d.ts +219 -0
  187. package/database/dist/esm/typings/realtime.js +1 -0
  188. package/database/dist/esm/util.d.ts +9 -0
  189. package/database/dist/esm/util.js +142 -0
  190. package/database/dist/esm/utils/error.d.ts +38 -0
  191. package/database/dist/esm/utils/error.js +84 -0
  192. package/database/dist/esm/utils/msg.d.ts +0 -0
  193. package/database/dist/esm/utils/msg.js +0 -0
  194. package/database/dist/esm/utils/symbol.d.ts +8 -0
  195. package/database/dist/esm/utils/symbol.js +55 -0
  196. package/database/dist/esm/utils/type.d.ts +13 -0
  197. package/database/dist/esm/utils/type.js +20 -0
  198. package/database/dist/esm/utils/utils.d.ts +4 -0
  199. package/database/dist/esm/utils/utils.js +33 -0
  200. package/database/dist/esm/validate.d.ts +1 -0
  201. package/database/dist/esm/validate.js +57 -0
  202. package/database/package.json +34 -4
  203. package/dist/index.cjs.js +3 -40
  204. package/dist/index.cjs.js.LICENSE.txt +12 -0
  205. package/dist/index.cjs.js.map +1 -0
  206. package/dist/index.d.ts +9 -0
  207. package/dist/index.esm.js +3 -35
  208. package/dist/index.esm.js.LICENSE.txt +12 -0
  209. package/dist/index.esm.js.map +1 -0
  210. package/functions/dist/index.d.ts +2 -2
  211. package/functions/dist/index.esm.js +2 -8
  212. package/functions/dist/index.esm.js.map +1 -0
  213. package/functions/dist/index.js +2 -13
  214. package/functions/dist/index.js.map +1 -0
  215. package/index.d.ts +654 -45
  216. package/miniprogram_dist/ai.js +1 -1
  217. package/miniprogram_dist/apis.js +1 -1
  218. package/miniprogram_dist/app.js +1 -1
  219. package/miniprogram_dist/auth.js +1 -1
  220. package/miniprogram_dist/cloudrun.js +1 -1
  221. package/miniprogram_dist/container.js +1 -1
  222. package/miniprogram_dist/database.js +1 -1
  223. package/miniprogram_dist/functions.js +1 -1
  224. package/miniprogram_dist/index.js +1 -1
  225. package/miniprogram_dist/model.js +1 -1
  226. package/miniprogram_dist/mysql.js +1 -1
  227. package/miniprogram_dist/oauth.js +2 -1
  228. package/miniprogram_dist/realtime.js +1 -1
  229. package/miniprogram_dist/storage.js +1 -1
  230. package/model/dist/index.esm.js +2 -3
  231. package/model/dist/index.esm.js.map +1 -0
  232. package/model/dist/index.js +2 -21
  233. package/model/dist/index.js.map +1 -0
  234. package/mysql/dist/index.esm.js +2 -3
  235. package/mysql/dist/index.esm.js.map +1 -0
  236. package/mysql/dist/index.js +2 -21
  237. package/mysql/dist/index.js.map +1 -0
  238. package/oauth/dist/index.esm.js +3 -3
  239. package/oauth/dist/index.esm.js.LICENSE.txt +12 -0
  240. package/oauth/dist/index.esm.js.map +1 -0
  241. package/oauth/dist/index.js +3 -21
  242. package/oauth/dist/index.js.LICENSE.txt +12 -0
  243. package/oauth/dist/index.js.map +1 -0
  244. package/package.json +113 -20
  245. package/realtime/dist/index.d.ts +2 -2
  246. package/realtime/dist/index.esm.js +2 -8
  247. package/realtime/dist/index.esm.js.map +1 -0
  248. package/realtime/dist/index.js +2 -13
  249. package/realtime/dist/index.js.map +1 -0
  250. package/storage/dist/index.d.ts +2 -2
  251. package/storage/dist/index.esm.js +2 -4
  252. package/storage/dist/index.esm.js.map +1 -0
  253. package/storage/dist/index.js +2 -9
  254. package/storage/dist/index.js.map +1 -0
  255. package/types/analytics.d.ts +51 -0
  256. package/types/auth.d.ts +99 -0
  257. package/types/cache.d.ts +26 -0
  258. package/types/cloudrun.d.ts +9 -0
  259. package/types/component.d.ts +17 -0
  260. package/types/container.d.ts +93 -0
  261. package/types/database.d.ts +31 -0
  262. package/types/events.d.ts +13 -0
  263. package/types/functions.d.ts +40 -0
  264. package/types/index.d.ts +211 -0
  265. package/types/package.json +43 -0
  266. package/types/realtime.d.ts +350 -0
  267. package/types/request.d.ts +30 -0
  268. package/types/storage.d.ts +126 -0
  269. package/utilities/dist/cjs/adapters/index.d.ts +45 -0
  270. package/utilities/dist/cjs/adapters/index.js +68 -0
  271. package/utilities/dist/cjs/adapters/platforms/web.d.ts +20 -0
  272. package/utilities/dist/cjs/adapters/platforms/web.js +286 -0
  273. package/utilities/dist/cjs/constants/common.d.ts +6 -0
  274. package/utilities/dist/cjs/constants/common.js +24 -0
  275. package/utilities/dist/cjs/constants/errors.d.ts +8 -0
  276. package/utilities/dist/cjs/constants/errors.js +12 -0
  277. package/utilities/dist/cjs/constants/index.d.ts +3 -0
  278. package/utilities/dist/cjs/constants/index.js +21 -0
  279. package/utilities/dist/cjs/helpers/decorators.d.ts +11 -0
  280. package/utilities/dist/cjs/helpers/decorators.js +238 -0
  281. package/utilities/dist/cjs/helpers/index.d.ts +1 -0
  282. package/utilities/dist/cjs/helpers/index.js +18 -0
  283. package/utilities/dist/cjs/index.d.ts +13 -0
  284. package/utilities/dist/cjs/index.js +51 -0
  285. package/utilities/dist/cjs/libs/abortController.d.ts +9 -0
  286. package/utilities/dist/cjs/libs/abortController.js +25 -0
  287. package/utilities/dist/cjs/libs/cache.d.ts +17 -0
  288. package/utilities/dist/cjs/libs/cache.js +261 -0
  289. package/utilities/dist/cjs/libs/events.d.ts +27 -0
  290. package/utilities/dist/cjs/libs/events.js +108 -0
  291. package/utilities/dist/cjs/libs/langEvent.d.ts +3 -0
  292. package/utilities/dist/cjs/libs/langEvent.js +7 -0
  293. package/utilities/dist/cjs/libs/util.d.ts +49 -0
  294. package/utilities/dist/cjs/libs/util.js +282 -0
  295. package/utilities/dist/esm/adapters/index.d.ts +45 -0
  296. package/utilities/dist/esm/adapters/index.js +40 -0
  297. package/utilities/dist/esm/adapters/platforms/web.d.ts +20 -0
  298. package/utilities/dist/esm/adapters/platforms/web.js +282 -0
  299. package/utilities/dist/esm/constants/common.d.ts +6 -0
  300. package/utilities/dist/esm/constants/common.js +17 -0
  301. package/utilities/dist/esm/constants/errors.d.ts +8 -0
  302. package/utilities/dist/esm/constants/errors.js +9 -0
  303. package/utilities/dist/esm/constants/index.d.ts +3 -0
  304. package/utilities/dist/esm/constants/index.js +4 -0
  305. package/utilities/dist/esm/helpers/decorators.d.ts +11 -0
  306. package/utilities/dist/esm/helpers/decorators.js +234 -0
  307. package/utilities/dist/esm/helpers/index.d.ts +1 -0
  308. package/utilities/dist/esm/helpers/index.js +2 -0
  309. package/utilities/dist/esm/index.d.ts +13 -0
  310. package/utilities/dist/esm/index.js +14 -0
  311. package/utilities/dist/esm/libs/abortController.d.ts +9 -0
  312. package/utilities/dist/esm/libs/abortController.js +23 -0
  313. package/utilities/dist/esm/libs/cache.d.ts +17 -0
  314. package/utilities/dist/esm/libs/cache.js +258 -0
  315. package/utilities/dist/esm/libs/events.d.ts +27 -0
  316. package/utilities/dist/esm/libs/events.js +102 -0
  317. package/utilities/dist/esm/libs/langEvent.d.ts +3 -0
  318. package/utilities/dist/esm/libs/langEvent.js +4 -0
  319. package/utilities/dist/esm/libs/util.d.ts +49 -0
  320. package/utilities/dist/esm/libs/util.js +254 -0
  321. package/utilities/dist/miniprogram/index.js +1 -0
  322. package/utilities/package.json +26 -0
  323. package/analytics/dist/index.d.ts +0 -2
  324. package/analytics/dist/index.esm.js +0 -4
  325. package/analytics/dist/index.js +0 -9
  326. package/analytics/package.json +0 -6
  327. package/database/dist/index.d.ts +0 -3
  328. package/database/dist/index.esm.js +0 -503
  329. package/database/dist/index.js +0 -509
  330. package/miniprogram_dist/analytics.js +0 -1
@@ -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;
@@ -0,0 +1,31 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ exports.SYMBOL_REGEXP = exports.SYMBOL_SERVER_DATE = exports.SYMBOL_GEO_MULTI_POLYGON = exports.SYMBOL_GEO_MULTI_LINE_STRING = exports.SYMBOL_GEO_MULTI_POINT = exports.SYMBOL_GEO_POLYGON = exports.SYMBOL_GEO_LINE_STRING = exports.SYMBOL_GEO_POINT = exports.SYMBOL_LOGIC_COMMAND = exports.SYMBOL_QUERY_COMMAND = exports.SYMBOL_UPDATE_COMMAND = exports.SYMBOL_UNSET_FIELD_NAME = void 0;
18
+ var symbol_1 = require("../utils/symbol");
19
+ __exportStar(require("../utils/symbol"), exports);
20
+ exports.SYMBOL_UNSET_FIELD_NAME = symbol_1.default.for('UNSET_FIELD_NAME');
21
+ exports.SYMBOL_UPDATE_COMMAND = symbol_1.default.for('UPDATE_COMMAND');
22
+ exports.SYMBOL_QUERY_COMMAND = symbol_1.default.for('QUERY_COMMAND');
23
+ exports.SYMBOL_LOGIC_COMMAND = symbol_1.default.for('LOGIC_COMMAND');
24
+ exports.SYMBOL_GEO_POINT = symbol_1.default.for('GEO_POINT');
25
+ exports.SYMBOL_GEO_LINE_STRING = symbol_1.default.for('SYMBOL_GEO_LINE_STRING');
26
+ exports.SYMBOL_GEO_POLYGON = symbol_1.default.for('SYMBOL_GEO_POLYGON');
27
+ exports.SYMBOL_GEO_MULTI_POINT = symbol_1.default.for('SYMBOL_GEO_MULTI_POINT');
28
+ exports.SYMBOL_GEO_MULTI_LINE_STRING = symbol_1.default.for('SYMBOL_GEO_MULTI_LINE_STRING');
29
+ exports.SYMBOL_GEO_MULTI_POLYGON = symbol_1.default.for('SYMBOL_GEO_MULTI_POLYGON');
30
+ exports.SYMBOL_SERVER_DATE = symbol_1.default.for('SERVER_DATE');
31
+ exports.SYMBOL_REGEXP = symbol_1.default.for('REGEXP');
@@ -0,0 +1,40 @@
1
+ import { Point } from './geo/point';
2
+ import { CollectionReference } from './collection';
3
+ import { Command } from './command';
4
+ export interface IDbConfig {
5
+ env?: string;
6
+ instance?: string;
7
+ database?: string;
8
+ [key: string]: any;
9
+ }
10
+ interface GeoTeyp {
11
+ Point: typeof Point;
12
+ }
13
+ export { Query } from './query';
14
+ export { CollectionReference } from './collection';
15
+ export { DocumentReference } from './document';
16
+ export declare class Db {
17
+ Geo: GeoTeyp;
18
+ command: typeof Command;
19
+ RegExp: any;
20
+ serverDate: any;
21
+ startTransaction: any;
22
+ runTransaction: any;
23
+ logicCommand: any;
24
+ updateCommand: any;
25
+ queryCommand: any;
26
+ config: IDbConfig;
27
+ static ws: any;
28
+ static reqClass: any;
29
+ static wsClass: any;
30
+ static wsClientClass: any;
31
+ static createSign: Function;
32
+ static getAccessToken: Function;
33
+ static dataVersion: string;
34
+ static runtime: string;
35
+ static appSecretInfo: any;
36
+ static createRequest(config: IDbConfig): any;
37
+ constructor(config?: IDbConfig);
38
+ collection(collName: string): CollectionReference;
39
+ createCollection(collName: string): any;
40
+ }
@@ -0,0 +1,61 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Db = exports.DocumentReference = exports.CollectionReference = exports.Query = void 0;
4
+ var Geo = require("./geo/index");
5
+ var collection_1 = require("./collection");
6
+ var command_1 = require("./command");
7
+ var index_1 = require("./serverDate/index");
8
+ var index_2 = require("./regexp/index");
9
+ var index_3 = require("./transaction/index");
10
+ var logic_1 = require("./commands/logic");
11
+ var query_1 = require("./commands/query");
12
+ var update_1 = require("./commands/update");
13
+ var query_2 = require("./query");
14
+ Object.defineProperty(exports, "Query", { enumerable: true, get: function () { return query_2.Query; } });
15
+ var collection_2 = require("./collection");
16
+ Object.defineProperty(exports, "CollectionReference", { enumerable: true, get: function () { return collection_2.CollectionReference; } });
17
+ var document_1 = require("./document");
18
+ Object.defineProperty(exports, "DocumentReference", { enumerable: true, get: function () { return document_1.DocumentReference; } });
19
+ var Db = (function () {
20
+ function Db(config) {
21
+ this.config = config;
22
+ this.Geo = Geo;
23
+ this.serverDate = index_1.ServerDateConstructor;
24
+ this.command = command_1.Command;
25
+ this.RegExp = index_2.RegExpConstructor;
26
+ this.startTransaction = index_3.startTransaction;
27
+ this.runTransaction = index_3.runTransaction;
28
+ this.logicCommand = logic_1.LogicCommand;
29
+ this.updateCommand = update_1.UpdateCommand;
30
+ this.queryCommand = query_1.QueryCommand;
31
+ }
32
+ Db.createRequest = function (config) {
33
+ var request = new Db.reqClass(config);
34
+ var originalSend = request.send;
35
+ request.send = function (action, data) {
36
+ if (config.instance) {
37
+ data.instance = config.instance;
38
+ }
39
+ if (config.database) {
40
+ data.database = config.database;
41
+ }
42
+ return originalSend.call(this, action, data);
43
+ };
44
+ return request;
45
+ };
46
+ Db.prototype.collection = function (collName) {
47
+ if (!collName) {
48
+ throw new Error('Collection name is required');
49
+ }
50
+ return new collection_1.CollectionReference(this, collName);
51
+ };
52
+ Db.prototype.createCollection = function (collName) {
53
+ var request = Db.createRequest(this.config);
54
+ var params = {
55
+ collectionName: collName
56
+ };
57
+ return request.send('database.addCollection', params);
58
+ };
59
+ return Db;
60
+ }());
61
+ exports.Db = Db;
@@ -0,0 +1 @@
1
+ export declare const createPromiseCallback: () => any;
@@ -0,0 +1,26 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.createPromiseCallback = void 0;
4
+ var createPromiseCallback = function () {
5
+ var cb = function () { };
6
+ if (!Promise) {
7
+ cb.promise = {};
8
+ var throwPromiseNotDefined = function () {
9
+ throw new Error('Your Node runtime does support ES6 Promises. ' +
10
+ 'Set "global.Promise" to your preferred implementation of promises.');
11
+ };
12
+ Object.defineProperty(cb.promise, 'then', { get: throwPromiseNotDefined });
13
+ Object.defineProperty(cb.promise, 'catch', { get: throwPromiseNotDefined });
14
+ return cb;
15
+ }
16
+ var promise = new Promise(function (resolve, reject) {
17
+ cb = function (err, data) {
18
+ if (err)
19
+ return reject(err);
20
+ return resolve(data);
21
+ };
22
+ });
23
+ cb.promise = promise;
24
+ return cb;
25
+ };
26
+ exports.createPromiseCallback = createPromiseCallback;
@@ -0,0 +1,4 @@
1
+ export declare const OperatorMap: {
2
+ [key: string]: string;
3
+ };
4
+ export declare function operatorToString(operator: string): string;
@@ -0,0 +1,24 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.operatorToString = exports.OperatorMap = void 0;
4
+ var query_1 = require("./commands/query");
5
+ var logic_1 = require("./commands/logic");
6
+ var update_1 = require("./commands/update");
7
+ exports.OperatorMap = {};
8
+ for (var key in query_1.QUERY_COMMANDS_LITERAL) {
9
+ exports.OperatorMap[key] = '$' + key;
10
+ }
11
+ for (var key in logic_1.LOGIC_COMMANDS_LITERAL) {
12
+ exports.OperatorMap[key] = '$' + key;
13
+ }
14
+ for (var key in update_1.UPDATE_COMMANDS_LITERAL) {
15
+ exports.OperatorMap[key] = '$' + key;
16
+ }
17
+ exports.OperatorMap[query_1.QUERY_COMMANDS_LITERAL.NEQ] = '$ne';
18
+ exports.OperatorMap[update_1.UPDATE_COMMANDS_LITERAL.REMOVE] = '$unset';
19
+ exports.OperatorMap[update_1.UPDATE_COMMANDS_LITERAL.SHIFT] = '$pop';
20
+ exports.OperatorMap[update_1.UPDATE_COMMANDS_LITERAL.UNSHIFT] = '$push';
21
+ function operatorToString(operator) {
22
+ return exports.OperatorMap[operator] || '$' + operator;
23
+ }
24
+ exports.operatorToString = operatorToString;
@@ -0,0 +1,22 @@
1
+ import { OrderByDirection } from './constant';
2
+ import { IWatchOptions, DBRealtimeListener } from './typings/index';
3
+ interface GetRes {
4
+ data: any[];
5
+ requestId: string;
6
+ total: number;
7
+ limit: number;
8
+ offset: number;
9
+ }
10
+ export declare class Query {
11
+ get(callback?: any): Promise<GetRes>;
12
+ count(callback?: any): any;
13
+ where(query: object): Query;
14
+ orderBy(fieldPath: string, directionStr: OrderByDirection): Query;
15
+ limit(limit: number): Query;
16
+ skip(offset: number): Query;
17
+ update(data: Object, callback?: any): Promise<any>;
18
+ field(projection: any): Query;
19
+ remove(callback?: any): any;
20
+ watch: (options: IWatchOptions) => DBRealtimeListener;
21
+ }
22
+ export {};