@kengic/uni 0.6.2-beta.1 → 0.6.2

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.
@@ -58,7 +58,9 @@ type IRequestOptions = Omit<UniApp.RequestOptions, 'url'> & {
58
58
  dynamicQueryExcludeProperties?: Array<string>;
59
59
 
60
60
  /**
61
- * 如果该参数不为空, 表示该请求启用了高级查询, 该参数包含各个字段的高级查询操作符.
61
+ * <p>各个请求参数的高级查询操作符.</p>
62
+ * <p>如果该参数不为空, 表示该请求启用了高级查询.</p>
63
+ * <p>其中的 key 表示参数名, 对应的 value 表示该参数的高级查询操作符(>,=,<...).</p>
62
64
  */
63
65
  dynamicQueryOperatorModel?: Record<string, KG_DYNAMIC_QUERY_OPERATOR>;
64
66
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kengic/uni",
3
- "version": "0.6.2-beta.1",
3
+ "version": "0.6.2",
4
4
  "scripts": {
5
5
  "build": "npm run switch-node-version && rimraf dist && vue-tsc && vite build",
6
6
  "------ -------------------------------------------": "",
@@ -20,10 +20,10 @@
20
20
  "--- ----------------------------------------------": "",
21
21
  "switch-node-version": "nvm use 20.11.0 && corepack enable && corepack prepare pnpm@7.30.5 --activate",
22
22
  "---- ---------------------------------------------": "",
23
- "bump-version:beta": "npm run switch-node-version && node scripts/bump.mjs beta --experimental-default-type=module",
24
23
  "bump-version:major": "npm run switch-node-version && node scripts/bump.mjs major --experimental-default-type=module",
25
24
  "bump-version:minor": "npm run switch-node-version && node scripts/bump.mjs minor --experimental-default-type=module",
26
25
  "bump-version:patch": "npm run switch-node-version && node scripts/bump.mjs patch --experimental-default-type=module",
26
+ "bump-version:beta": "npm run switch-node-version && node scripts/bump.mjs beta --experimental-default-type=module",
27
27
  "----- --------------------------------------------": "",
28
28
  "publish:all": "npm run switch-node-version && node scripts/publish.mjs --experimental-default-type=module",
29
29
  "publish:npm": "npm run switch-node-version && npmrc kengic && npm publish ./ --registry https://registry.npmjs.org/ --access public"