@fmsim/fmsim 1.0.80 → 1.0.82
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fmsim/fmsim",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.82",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "dist-client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -40,8 +40,8 @@
|
|
|
40
40
|
"docker:push": "docker image push hatiolab/fmsim:latest && docker image push hatiolab/fmsim:$npm_package_version"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@fmsim/layout-view": "^1.0.
|
|
44
|
-
"@fmsim/machine": "^1.0.
|
|
43
|
+
"@fmsim/layout-view": "^1.0.82",
|
|
44
|
+
"@fmsim/machine": "^1.0.82",
|
|
45
45
|
"@operato/attachment": "^1.0.1",
|
|
46
46
|
"@operato/font": "^1.0.1",
|
|
47
47
|
"@operato/i18n": "^1.0.0",
|
|
@@ -70,12 +70,12 @@
|
|
|
70
70
|
"pretendard": "^1.3.9"
|
|
71
71
|
},
|
|
72
72
|
"devDependencies": {
|
|
73
|
-
"@fmsim/builder": "^1.0.
|
|
73
|
+
"@fmsim/builder": "^1.0.82",
|
|
74
74
|
"copyfiles": "^2.4.1",
|
|
75
75
|
"typescript": "^5.8.2"
|
|
76
76
|
},
|
|
77
77
|
"resolutions": {
|
|
78
78
|
"lit": "^3.0.0"
|
|
79
79
|
},
|
|
80
|
-
"gitHead": "
|
|
80
|
+
"gitHead": "86aa8fff9008f026b7d54c76142ee839b06825c8"
|
|
81
81
|
}
|
package/schema.graphql
CHANGED
|
@@ -3329,8 +3329,8 @@ type Query {
|
|
|
3329
3329
|
"""To fetch my notifications"""
|
|
3330
3330
|
myNotifications(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): NotificationList!
|
|
3331
3331
|
|
|
3332
|
-
"""To fetch roles of current user"""
|
|
3333
|
-
myRoles: [
|
|
3332
|
+
"""To fetch roles of current user (id, name only)"""
|
|
3333
|
+
myRoles: [RoleBrief!]!
|
|
3334
3334
|
|
|
3335
3335
|
"""To fetch a Notification"""
|
|
3336
3336
|
notification(id: String!): Notification
|
|
@@ -3481,6 +3481,11 @@ type Role {
|
|
|
3481
3481
|
users: [User!]
|
|
3482
3482
|
}
|
|
3483
3483
|
|
|
3484
|
+
type RoleBrief {
|
|
3485
|
+
id: String
|
|
3486
|
+
name: String
|
|
3487
|
+
}
|
|
3488
|
+
|
|
3484
3489
|
type RoleList {
|
|
3485
3490
|
items: [Role!]
|
|
3486
3491
|
total: Int
|