@steedos/service-ui 2.3.2-beta.11 → 2.3.2-beta.13
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.
- package/main/default/routes/apps.router.js +2 -2
- package/main/default/routes/bootstrap.router.js +2 -2
- package/main/default/routes/objects.router.js +2 -2
- package/package.json +5 -5
- package/src/routes/apps.router.ts +3 -3
- package/src/routes/bootstrap.router.ts +2 -2
- package/src/routes/objects.router.ts +3 -3
|
@@ -3,8 +3,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
const tslib_1 = require("tslib");
|
|
4
4
|
const core_1 = require("@steedos/core");
|
|
5
5
|
const objectql_1 = require("@steedos/objectql");
|
|
6
|
-
const
|
|
7
|
-
const router =
|
|
6
|
+
const express = require('express');
|
|
7
|
+
const router = express.Router();
|
|
8
8
|
router.get('/service/api/apps/menus', core_1.requireAuthentication, function (req, res) {
|
|
9
9
|
return tslib_1.__awaiter(this, void 0, void 0, function* () {
|
|
10
10
|
const userSession = req.user;
|
|
@@ -9,8 +9,8 @@ require("@steedos/license");
|
|
|
9
9
|
const Fiber = require('fibers');
|
|
10
10
|
const clone = require("clone");
|
|
11
11
|
const _ = require('underscore');
|
|
12
|
-
const
|
|
13
|
-
const router =
|
|
12
|
+
const express = require('express');
|
|
13
|
+
const router = express.Router();
|
|
14
14
|
function getUserProfileObjectsLayout(userId, spaceId, objectName) {
|
|
15
15
|
return tslib_1.__awaiter(this, void 0, void 0, function* () {
|
|
16
16
|
let spaceUser;
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const tslib_1 = require("tslib");
|
|
4
4
|
const objectql_1 = require("@steedos/objectql");
|
|
5
|
-
const
|
|
6
|
-
const router =
|
|
5
|
+
const express = require('express');
|
|
6
|
+
const router = express.Router();
|
|
7
7
|
const core = require('@steedos/core');
|
|
8
8
|
const callObjectServiceAction = function (actionName, userSession, data) {
|
|
9
9
|
return tslib_1.__awaiter(this, void 0, void 0, function* () {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@steedos/service-ui",
|
|
3
|
-
"version": "2.3.2-beta.
|
|
3
|
+
"version": "2.3.2-beta.13",
|
|
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.3.2-beta.
|
|
15
|
-
"@steedos/i18n": "2.3.2-beta.
|
|
16
|
-
"@steedos/objectql": "2.3.2-beta.
|
|
14
|
+
"@steedos/core": "2.3.2-beta.13",
|
|
15
|
+
"@steedos/i18n": "2.3.2-beta.13",
|
|
16
|
+
"@steedos/objectql": "2.3.2-beta.13",
|
|
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": "
|
|
24
|
+
"gitHead": "0ffb7e237da2ef2aeb0f44f051267483598c2033"
|
|
25
25
|
}
|
|
@@ -2,13 +2,13 @@
|
|
|
2
2
|
* @Author: baozhoutao@steedos.com
|
|
3
3
|
* @Date: 2022-06-08 23:28:39
|
|
4
4
|
* @LastEditors: baozhoutao@steedos.com
|
|
5
|
-
* @LastEditTime: 2022-11-
|
|
5
|
+
* @LastEditTime: 2022-11-28 17:59:40
|
|
6
6
|
* @Description:
|
|
7
7
|
*/
|
|
8
8
|
import { requireAuthentication } from '@steedos/core';
|
|
9
9
|
import { getSteedosSchema } from '@steedos/objectql';
|
|
10
|
-
const
|
|
11
|
-
const router =
|
|
10
|
+
const express = require('express');
|
|
11
|
+
const router =express.Router();
|
|
12
12
|
|
|
13
13
|
router.get('/service/api/apps/menus', requireAuthentication, async function (req: any, res: any) {
|
|
14
14
|
const userSession = req.user;
|
|
@@ -7,8 +7,8 @@ const Fiber = require('fibers')
|
|
|
7
7
|
const clone = require("clone");
|
|
8
8
|
const _ = require('underscore');
|
|
9
9
|
|
|
10
|
-
const
|
|
11
|
-
const router =
|
|
10
|
+
const express = require('express');
|
|
11
|
+
const router =express.Router();
|
|
12
12
|
|
|
13
13
|
async function getUserProfileObjectsLayout(userId, spaceId, objectName?) {
|
|
14
14
|
let spaceUser;
|
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
* @Author: baozhoutao@steedos.com
|
|
3
3
|
* @Date: 2022-06-09 10:19:47
|
|
4
4
|
* @LastEditors: baozhoutao@steedos.com
|
|
5
|
-
* @LastEditTime: 2022-11-17
|
|
5
|
+
* @LastEditTime: 2022-11-28 17:59:54
|
|
6
6
|
* @Description:
|
|
7
7
|
*/
|
|
8
8
|
import { getSteedosSchema } from "@steedos/objectql";
|
|
9
|
-
const
|
|
10
|
-
const router =
|
|
9
|
+
const express = require('express');
|
|
10
|
+
const router =express.Router();
|
|
11
11
|
const core = require('@steedos/core');
|
|
12
12
|
|
|
13
13
|
|