@cloudbase/js-sdk 2.28.8 → 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,119 @@
1
+ var __values = (this && this.__values) || function(o) {
2
+ var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
3
+ if (m) return m.call(o);
4
+ if (o && typeof o.length === "number") return {
5
+ next: function () {
6
+ if (o && i >= o.length) o = void 0;
7
+ return { value: o && o[i++], done: !o };
8
+ }
9
+ };
10
+ throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
11
+ };
12
+ import { SYMBOL_GEO_POLYGON } from '../helper/symbol';
13
+ import { isArray, isNumber } from '../utils/type';
14
+ import { Polygon } from './polygon';
15
+ var MultiPolygon = (function () {
16
+ function MultiPolygon(polygons) {
17
+ var e_1, _a;
18
+ if (!isArray(polygons)) {
19
+ throw new TypeError("\"polygons\" must be of type Polygon[]. Received type ".concat(typeof polygons));
20
+ }
21
+ if (polygons.length === 0) {
22
+ throw new Error('MultiPolygon must contain 1 polygon at least');
23
+ }
24
+ try {
25
+ for (var polygons_1 = __values(polygons), polygons_1_1 = polygons_1.next(); !polygons_1_1.done; polygons_1_1 = polygons_1.next()) {
26
+ var polygon = polygons_1_1.value;
27
+ if (!(polygon instanceof Polygon)) {
28
+ throw new TypeError("\"polygon\" must be of type Polygon[]. Received type ".concat(typeof polygon, "[]"));
29
+ }
30
+ }
31
+ }
32
+ catch (e_1_1) { e_1 = { error: e_1_1 }; }
33
+ finally {
34
+ try {
35
+ if (polygons_1_1 && !polygons_1_1.done && (_a = polygons_1.return)) _a.call(polygons_1);
36
+ }
37
+ finally { if (e_1) throw e_1.error; }
38
+ }
39
+ this.polygons = polygons;
40
+ }
41
+ MultiPolygon.prototype.parse = function (key) {
42
+ var _a;
43
+ return _a = {},
44
+ _a[key] = {
45
+ type: 'MultiPolygon',
46
+ coordinates: this.polygons.map(function (polygon) {
47
+ return polygon.lines.map(function (line) {
48
+ return line.points.map(function (point) { return [point.longitude, point.latitude]; });
49
+ });
50
+ })
51
+ },
52
+ _a;
53
+ };
54
+ MultiPolygon.prototype.toJSON = function () {
55
+ return {
56
+ type: 'MultiPolygon',
57
+ coordinates: this.polygons.map(function (polygon) {
58
+ return polygon.lines.map(function (line) {
59
+ return line.points.map(function (point) { return [point.longitude, point.latitude]; });
60
+ });
61
+ })
62
+ };
63
+ };
64
+ MultiPolygon.validate = function (multiPolygon) {
65
+ var e_2, _a, e_3, _b, e_4, _c;
66
+ if (multiPolygon.type !== 'MultiPolygon' || !isArray(multiPolygon.coordinates)) {
67
+ return false;
68
+ }
69
+ try {
70
+ for (var _d = __values(multiPolygon.coordinates), _e = _d.next(); !_e.done; _e = _d.next()) {
71
+ var polygon = _e.value;
72
+ try {
73
+ for (var polygon_1 = (e_3 = void 0, __values(polygon)), polygon_1_1 = polygon_1.next(); !polygon_1_1.done; polygon_1_1 = polygon_1.next()) {
74
+ var line = polygon_1_1.value;
75
+ try {
76
+ 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()) {
77
+ var point = line_1_1.value;
78
+ if (!isNumber(point[0]) || !isNumber(point[1])) {
79
+ return false;
80
+ }
81
+ }
82
+ }
83
+ catch (e_4_1) { e_4 = { error: e_4_1 }; }
84
+ finally {
85
+ try {
86
+ if (line_1_1 && !line_1_1.done && (_c = line_1.return)) _c.call(line_1);
87
+ }
88
+ finally { if (e_4) throw e_4.error; }
89
+ }
90
+ }
91
+ }
92
+ catch (e_3_1) { e_3 = { error: e_3_1 }; }
93
+ finally {
94
+ try {
95
+ if (polygon_1_1 && !polygon_1_1.done && (_b = polygon_1.return)) _b.call(polygon_1);
96
+ }
97
+ finally { if (e_3) throw e_3.error; }
98
+ }
99
+ }
100
+ }
101
+ catch (e_2_1) { e_2 = { error: e_2_1 }; }
102
+ finally {
103
+ try {
104
+ if (_e && !_e.done && (_a = _d.return)) _a.call(_d);
105
+ }
106
+ finally { if (e_2) throw e_2.error; }
107
+ }
108
+ return true;
109
+ };
110
+ Object.defineProperty(MultiPolygon.prototype, "_internalType", {
111
+ get: function () {
112
+ return SYMBOL_GEO_POLYGON;
113
+ },
114
+ enumerable: false,
115
+ configurable: true
116
+ });
117
+ return MultiPolygon;
118
+ }());
119
+ export { 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,47 @@
1
+ import { Validate } from '../validate';
2
+ import { SYMBOL_GEO_POINT } from '../helper/symbol';
3
+ import { isArray } from '../utils/type';
4
+ var Point = (function () {
5
+ function Point(longitude, latitude) {
6
+ Validate.isGeopoint('longitude', longitude);
7
+ Validate.isGeopoint('latitude', latitude);
8
+ this.longitude = longitude;
9
+ this.latitude = latitude;
10
+ }
11
+ Point.prototype.parse = function (key) {
12
+ var _a;
13
+ return _a = {},
14
+ _a[key] = {
15
+ type: 'Point',
16
+ coordinates: [this.longitude, this.latitude]
17
+ },
18
+ _a;
19
+ };
20
+ Point.prototype.toJSON = function () {
21
+ return {
22
+ type: 'Point',
23
+ coordinates: [
24
+ this.longitude,
25
+ this.latitude,
26
+ ],
27
+ };
28
+ };
29
+ Point.prototype.toReadableString = function () {
30
+ return "[".concat(this.longitude, ",").concat(this.latitude, "]");
31
+ };
32
+ Point.validate = function (point) {
33
+ return point.type === 'Point' &&
34
+ isArray(point.coordinates) &&
35
+ Validate.isGeopoint('longitude', point.coordinates[0]) &&
36
+ Validate.isGeopoint('latitude', point.coordinates[1]);
37
+ };
38
+ Object.defineProperty(Point.prototype, "_internalType", {
39
+ get: function () {
40
+ return SYMBOL_GEO_POINT;
41
+ },
42
+ enumerable: false,
43
+ configurable: true
44
+ });
45
+ return Point;
46
+ }());
47
+ export { 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,106 @@
1
+ var __values = (this && this.__values) || function(o) {
2
+ var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
3
+ if (m) return m.call(o);
4
+ if (o && typeof o.length === "number") return {
5
+ next: function () {
6
+ if (o && i >= o.length) o = void 0;
7
+ return { value: o && o[i++], done: !o };
8
+ }
9
+ };
10
+ throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
11
+ };
12
+ import { SYMBOL_GEO_MULTI_POLYGON } from '../helper/symbol';
13
+ import { isArray, isNumber } from '../utils/type';
14
+ import { LineString } from './lineString';
15
+ var Polygon = (function () {
16
+ function Polygon(lines) {
17
+ if (!isArray(lines)) {
18
+ throw new TypeError("\"lines\" must be of type LineString[]. Received type ".concat(typeof lines));
19
+ }
20
+ if (lines.length === 0) {
21
+ throw new Error('Polygon must contain 1 linestring at least');
22
+ }
23
+ lines.forEach(function (line) {
24
+ if (!(line instanceof LineString)) {
25
+ throw new TypeError("\"lines\" must be of type LineString[]. Received type ".concat(typeof line, "[]"));
26
+ }
27
+ if (!LineString.isClosed(line)) {
28
+ throw new Error("LineString ".concat(line.points.map(function (p) { return p.toReadableString(); }), " is not a closed cycle"));
29
+ }
30
+ });
31
+ this.lines = lines;
32
+ }
33
+ Polygon.prototype.parse = function (key) {
34
+ var _a;
35
+ return _a = {},
36
+ _a[key] = {
37
+ type: 'Polygon',
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
+ Polygon.prototype.toJSON = function () {
45
+ return {
46
+ type: 'Polygon',
47
+ coordinates: this.lines.map(function (line) {
48
+ return line.points.map(function (point) { return [point.longitude, point.latitude]; });
49
+ })
50
+ };
51
+ };
52
+ Polygon.validate = function (polygon) {
53
+ var e_1, _a, e_2, _b;
54
+ if (polygon.type !== 'Polygon' || !isArray(polygon.coordinates)) {
55
+ return false;
56
+ }
57
+ try {
58
+ for (var _c = __values(polygon.coordinates), _d = _c.next(); !_d.done; _d = _c.next()) {
59
+ var line = _d.value;
60
+ if (!this.isCloseLineString(line)) {
61
+ return false;
62
+ }
63
+ try {
64
+ 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()) {
65
+ var point = line_1_1.value;
66
+ if (!isNumber(point[0]) || !isNumber(point[1])) {
67
+ return false;
68
+ }
69
+ }
70
+ }
71
+ catch (e_2_1) { e_2 = { error: e_2_1 }; }
72
+ finally {
73
+ try {
74
+ if (line_1_1 && !line_1_1.done && (_b = line_1.return)) _b.call(line_1);
75
+ }
76
+ finally { if (e_2) throw e_2.error; }
77
+ }
78
+ }
79
+ }
80
+ catch (e_1_1) { e_1 = { error: e_1_1 }; }
81
+ finally {
82
+ try {
83
+ if (_d && !_d.done && (_a = _c.return)) _a.call(_c);
84
+ }
85
+ finally { if (e_1) throw e_1.error; }
86
+ }
87
+ return true;
88
+ };
89
+ Polygon.isCloseLineString = function (lineString) {
90
+ var firstPoint = lineString[0];
91
+ var lastPoint = lineString[lineString.length - 1];
92
+ if (firstPoint[0] !== lastPoint[0] || firstPoint[1] !== lastPoint[1]) {
93
+ return false;
94
+ }
95
+ return true;
96
+ };
97
+ Object.defineProperty(Polygon.prototype, "_internalType", {
98
+ get: function () {
99
+ return SYMBOL_GEO_MULTI_POLYGON;
100
+ },
101
+ enumerable: false,
102
+ configurable: true
103
+ });
104
+ return Polygon;
105
+ }());
106
+ export { 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,14 @@
1
+ import InternalSymbol from '../utils/symbol';
2
+ export * from '../utils/symbol';
3
+ export var SYMBOL_UNSET_FIELD_NAME = InternalSymbol.for('UNSET_FIELD_NAME');
4
+ export var SYMBOL_UPDATE_COMMAND = InternalSymbol.for('UPDATE_COMMAND');
5
+ export var SYMBOL_QUERY_COMMAND = InternalSymbol.for('QUERY_COMMAND');
6
+ export var SYMBOL_LOGIC_COMMAND = InternalSymbol.for('LOGIC_COMMAND');
7
+ export var SYMBOL_GEO_POINT = InternalSymbol.for('GEO_POINT');
8
+ export var SYMBOL_GEO_LINE_STRING = InternalSymbol.for('SYMBOL_GEO_LINE_STRING');
9
+ export var SYMBOL_GEO_POLYGON = InternalSymbol.for('SYMBOL_GEO_POLYGON');
10
+ export var SYMBOL_GEO_MULTI_POINT = InternalSymbol.for('SYMBOL_GEO_MULTI_POINT');
11
+ export var SYMBOL_GEO_MULTI_LINE_STRING = InternalSymbol.for('SYMBOL_GEO_MULTI_LINE_STRING');
12
+ export var SYMBOL_GEO_MULTI_POLYGON = InternalSymbol.for('SYMBOL_GEO_MULTI_POLYGON');
13
+ export var SYMBOL_SERVER_DATE = InternalSymbol.for('SERVER_DATE');
14
+ export var SYMBOL_REGEXP = InternalSymbol.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,55 @@
1
+ import * as Geo from './geo/index';
2
+ import { CollectionReference } from './collection';
3
+ import { Command } from './command';
4
+ import { ServerDateConstructor } from './serverDate/index';
5
+ import { RegExpConstructor } from './regexp/index';
6
+ import { startTransaction, runTransaction } from './transaction/index';
7
+ import { LogicCommand } from './commands/logic';
8
+ import { QueryCommand } from './commands/query';
9
+ import { UpdateCommand } from './commands/update';
10
+ export { Query } from './query';
11
+ export { CollectionReference } from './collection';
12
+ export { DocumentReference } from './document';
13
+ var Db = (function () {
14
+ function Db(config) {
15
+ this.config = config;
16
+ this.Geo = Geo;
17
+ this.serverDate = ServerDateConstructor;
18
+ this.command = Command;
19
+ this.RegExp = RegExpConstructor;
20
+ this.startTransaction = startTransaction;
21
+ this.runTransaction = runTransaction;
22
+ this.logicCommand = LogicCommand;
23
+ this.updateCommand = UpdateCommand;
24
+ this.queryCommand = QueryCommand;
25
+ }
26
+ Db.createRequest = function (config) {
27
+ var request = new Db.reqClass(config);
28
+ var originalSend = request.send;
29
+ request.send = function (action, data) {
30
+ if (config.instance) {
31
+ data.instance = config.instance;
32
+ }
33
+ if (config.database) {
34
+ data.database = config.database;
35
+ }
36
+ return originalSend.call(this, action, data);
37
+ };
38
+ return request;
39
+ };
40
+ Db.prototype.collection = function (collName) {
41
+ if (!collName) {
42
+ throw new Error('Collection name is required');
43
+ }
44
+ return new CollectionReference(this, collName);
45
+ };
46
+ Db.prototype.createCollection = function (collName) {
47
+ var request = Db.createRequest(this.config);
48
+ var params = {
49
+ collectionName: collName
50
+ };
51
+ return request.send('database.addCollection', params);
52
+ };
53
+ return Db;
54
+ }());
55
+ export { Db };
@@ -0,0 +1 @@
1
+ export declare const createPromiseCallback: () => any;
@@ -0,0 +1,22 @@
1
+ export var createPromiseCallback = function () {
2
+ var cb = function () { };
3
+ if (!Promise) {
4
+ cb.promise = {};
5
+ var throwPromiseNotDefined = function () {
6
+ throw new Error('Your Node runtime does support ES6 Promises. ' +
7
+ 'Set "global.Promise" to your preferred implementation of promises.');
8
+ };
9
+ Object.defineProperty(cb.promise, 'then', { get: throwPromiseNotDefined });
10
+ Object.defineProperty(cb.promise, 'catch', { get: throwPromiseNotDefined });
11
+ return cb;
12
+ }
13
+ var promise = new Promise(function (resolve, reject) {
14
+ cb = function (err, data) {
15
+ if (err)
16
+ return reject(err);
17
+ return resolve(data);
18
+ };
19
+ });
20
+ cb.promise = promise;
21
+ return cb;
22
+ };
@@ -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,20 @@
1
+ import { QUERY_COMMANDS_LITERAL } from './commands/query';
2
+ import { LOGIC_COMMANDS_LITERAL } from './commands/logic';
3
+ import { UPDATE_COMMANDS_LITERAL } from './commands/update';
4
+ export var OperatorMap = {};
5
+ for (var key in QUERY_COMMANDS_LITERAL) {
6
+ OperatorMap[key] = '$' + key;
7
+ }
8
+ for (var key in LOGIC_COMMANDS_LITERAL) {
9
+ OperatorMap[key] = '$' + key;
10
+ }
11
+ for (var key in UPDATE_COMMANDS_LITERAL) {
12
+ OperatorMap[key] = '$' + key;
13
+ }
14
+ OperatorMap[QUERY_COMMANDS_LITERAL.NEQ] = '$ne';
15
+ OperatorMap[UPDATE_COMMANDS_LITERAL.REMOVE] = '$unset';
16
+ OperatorMap[UPDATE_COMMANDS_LITERAL.SHIFT] = '$pop';
17
+ OperatorMap[UPDATE_COMMANDS_LITERAL.UNSHIFT] = '$push';
18
+ export function operatorToString(operator) {
19
+ return OperatorMap[operator] || '$' + operator;
20
+ }
@@ -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 {};