@steedos/service-ui 2.5.19 → 2.5.20-beta.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.
@@ -64,7 +64,7 @@ router.get('/service/api/:objectServiceName/uiSchema', core.requireAuthenticatio
64
64
  const objectName = objectServiceName.substring(1);
65
65
  const [result, hasImportTemplates] = yield Promise.all([
66
66
  callObjectServiceAction(`objectql.getRecordView`, userSession, { objectName }),
67
- callObjectServiceAction(`~packages-@steedos/data-import.hasImportTemplates`, userSession, {
67
+ callObjectServiceAction(`@steedos/data-import.hasImportTemplates`, userSession, {
68
68
  objectName: objectName
69
69
  })
70
70
  ]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@steedos/service-ui",
3
- "version": "2.5.19",
3
+ "version": "2.5.20-beta.2",
4
4
  "main": "package.service.js",
5
5
  "keywords": [
6
6
  "steedos"
@@ -11,9 +11,9 @@
11
11
  "description": "steedos package",
12
12
  "repository": {},
13
13
  "dependencies": {
14
- "@steedos/core": "2.5.19",
15
- "@steedos/i18n": "2.5.19",
16
- "@steedos/objectql": "2.5.19",
14
+ "@steedos/core": "2.5.20-beta.2",
15
+ "@steedos/i18n": "2.5.20-beta.2",
16
+ "@steedos/objectql": "2.5.20-beta.2",
17
17
  "express": "4.18.1"
18
18
  },
19
19
  "license": "MIT",
@@ -21,5 +21,5 @@
21
21
  "publishConfig": {
22
22
  "access": "public"
23
23
  },
24
- "gitHead": "f45f110239267697485b421285e61ca020e4779b"
24
+ "gitHead": "b9fc3773ae163df5d0062113bf6b21635c898b13"
25
25
  }
@@ -1,8 +1,8 @@
1
1
  /*
2
2
  * @Author: baozhoutao@steedos.com
3
3
  * @Date: 2022-06-09 10:19:47
4
- * @LastEditors: sunhaolin@hotoa.com
5
- * @LastEditTime: 2023-03-28 20:59:08
4
+ * @LastEditors: 孙浩林 sunhaolin@steedos.com
5
+ * @LastEditTime: 2023-11-14 11:11:06
6
6
  * @Description:
7
7
  */
8
8
  import { getSteedosSchema } from "@steedos/objectql";
@@ -63,7 +63,7 @@ router.get('/service/api/:objectServiceName/uiSchema', core.requireAuthenticatio
63
63
  const objectName = objectServiceName.substring(1);
64
64
  const [ result, hasImportTemplates ] = await Promise.all([
65
65
  callObjectServiceAction(`objectql.getRecordView`, userSession, { objectName }),
66
- callObjectServiceAction(`~packages-@steedos/data-import.hasImportTemplates`, userSession, {
66
+ callObjectServiceAction(`@steedos/data-import.hasImportTemplates`, userSession, {
67
67
  objectName: objectName
68
68
  })
69
69
  ])