@byted-apaas/server-sdk-node 1.0.16 → 1.0.17

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 (2) hide show
  1. package/README.md +11 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,5 +1,16 @@
1
1
  ## aPaaS @byted-apaas/server-sdk-node 版本说明:
2
2
 
3
+ -------
4
+ ### 版本:1.0.17|兼容升级
5
+ 优化:废弃 flow.variables & flow.updateVariable 相关 API
6
+
7
+ -------
8
+ ### 版本:1.0.16|兼容升级
9
+ 新功能:支持模糊查询 fuzzySearch
10
+ ```js
11
+ await context.db.object("obj").fuzzySearch("keyword", ["field1", "field2"]).find();
12
+ ```
13
+
3
14
  -------
4
15
  ### 版本:1.0.15|兼容升级
5
16
  新功能:数据操作接口支持指定鉴权身份
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@byted-apaas/server-sdk-node",
3
- "version": "1.0.16",
3
+ "version": "1.0.17",
4
4
  "description": "aPaaS Server SDK",
5
5
  "author": "zhouwexin <zhouwexin@bytedance.com>",
6
6
  "homepage": "",
@@ -12,7 +12,7 @@
12
12
  "pre-build": "rm -rf build && tsc"
13
13
  },
14
14
  "dependencies": {
15
- "@byted-apaas/server-common-node": "^1.0.14",
15
+ "@byted-apaas/server-common-node": "^1.0.15",
16
16
  "@jorgeferrero/stream-to-buffer": "^2.0.6",
17
17
  "dayjs": "^1.9.6",
18
18
  "form-data": "^3.0.0",