@things-factory/operato-board 6.1.145 → 6.1.146

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": "@things-factory/operato-board",
3
- "version": "6.1.145",
3
+ "version": "6.1.146",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "dist-client/index.js",
6
6
  "things-factory": true,
@@ -50,6 +50,7 @@
50
50
  "@operato/graphql": "^1.0.0",
51
51
  "@operato/help": "^1.0.1",
52
52
  "@operato/i18n": "^1.0.0",
53
+ "@operato/input": "^1.0.1",
53
54
  "@operato/layout": "^1.0.1",
54
55
  "@operato/pull-to-refresh": "^1.0.0",
55
56
  "@operato/scene-auth": "^1.0.0",
@@ -84,41 +85,41 @@
84
85
  "@operato/shell": "^1.0.1",
85
86
  "@operato/styles": "^1.0.0",
86
87
  "@operato/utils": "^1.0.1",
87
- "@things-factory/apptool-ui": "^6.1.145",
88
- "@things-factory/auth-ui": "^6.1.145",
89
- "@things-factory/board-service": "^6.1.145",
88
+ "@things-factory/apptool-ui": "^6.1.146",
89
+ "@things-factory/auth-ui": "^6.1.146",
90
+ "@things-factory/board-service": "^6.1.146",
90
91
  "@things-factory/board-ui": "^6.1.145",
91
92
  "@things-factory/context-ui": "^6.1.145",
92
93
  "@things-factory/export-ui": "^6.1.145",
93
- "@things-factory/fav-base": "^6.1.145",
94
- "@things-factory/font-base": "^6.1.145",
94
+ "@things-factory/fav-base": "^6.1.146",
95
+ "@things-factory/font-base": "^6.1.146",
95
96
  "@things-factory/form-ui": "^6.1.145",
96
97
  "@things-factory/help": "^6.1.145",
97
98
  "@things-factory/i18n-base": "^6.1.145",
98
99
  "@things-factory/import-ui": "^6.1.145",
99
- "@things-factory/integration-base": "^6.1.145",
100
- "@things-factory/integration-msgraph": "^6.1.145",
101
- "@things-factory/integration-notification": "^6.1.145",
102
- "@things-factory/integration-openai": "^6.1.145",
103
- "@things-factory/integration-ui": "^6.1.145",
100
+ "@things-factory/integration-base": "^6.1.146",
101
+ "@things-factory/integration-msgraph": "^6.1.146",
102
+ "@things-factory/integration-notification": "^6.1.146",
103
+ "@things-factory/integration-openai": "^6.1.146",
104
+ "@things-factory/integration-ui": "^6.1.146",
104
105
  "@things-factory/layout-ui": "^6.1.145",
105
106
  "@things-factory/more-ui": "^6.1.145",
106
- "@things-factory/notification": "^6.1.145",
107
- "@things-factory/oauth2-client": "^6.1.145",
107
+ "@things-factory/notification": "^6.1.146",
108
+ "@things-factory/oauth2-client": "^6.1.146",
108
109
  "@things-factory/offline-ui": "^6.1.145",
109
110
  "@things-factory/operato-license-checker": "^3.1.0",
110
111
  "@things-factory/pdf": "^6.1.145",
111
112
  "@things-factory/print-service": "^6.1.145",
112
113
  "@things-factory/print-ui": "^6.1.145",
113
- "@things-factory/resource-ui": "^6.1.145",
114
+ "@things-factory/resource-ui": "^6.1.146",
114
115
  "@things-factory/scene-google-map": "^6.1.145",
115
- "@things-factory/setting-ui": "^6.1.145",
116
+ "@things-factory/setting-ui": "^6.1.146",
116
117
  "@things-factory/shell": "^6.1.145",
117
118
  "@things-factory/system-ui": "^6.1.145"
118
119
  },
119
120
  "devDependencies": {
120
- "@things-factory/board-test": "^6.1.145",
121
+ "@things-factory/board-test": "^6.1.146",
121
122
  "@things-factory/builder": "^6.1.145"
122
123
  },
123
- "gitHead": "615af7d8a649cb70f13c13dfafdf6cb84db13b9b"
124
+ "gitHead": "aa259261bbad566fd57b59848372675ca09329ce"
124
125
  }
package/schema.gql CHANGED
@@ -317,6 +317,24 @@ type BoardFavoriteList {
317
317
  total: Int!
318
318
  }
319
319
 
320
+ """History Entity of Board"""
321
+ type BoardHistory {
322
+ createdAt: Timestamp
323
+ creator: User
324
+ deletedAt: Timestamp
325
+ description: String
326
+ domain: Domain
327
+ group: Group
328
+ id: ID!
329
+ model: String
330
+ name: String!
331
+ playGroups: [PlayGroup!]
332
+ thumbnail: String
333
+ updatedAt: Timestamp
334
+ updater: User
335
+ version: Float
336
+ }
337
+
320
338
  type BoardList {
321
339
  items: [Board!]!
322
340
  total: Int!
@@ -1420,7 +1438,7 @@ type Mutation {
1420
1438
  cancelInvitation(email: String!, reference: String!, type: String!): Boolean!
1421
1439
 
1422
1440
  """To clone a Board from existing Board"""
1423
- cloneBoard(id: String!, patch: BoardPatch!): Board!
1441
+ cloneBoard(id: String!, patch: BoardPatch!, targetGroupId: String!, targetSubdomain: String!): Board!
1424
1442
 
1425
1443
  """To connect a connection"""
1426
1444
  connectConnection(name: String!): Connection!
@@ -1778,6 +1796,9 @@ type Mutation {
1778
1796
  """To import multiple AttributeSets"""
1779
1797
  importAttributeSets(attributes: [AttributeSetPatch!]!): Boolean!
1780
1798
 
1799
+ """To import some Boards"""
1800
+ importBoards(files: [Upload!]!, groupId: String!, overwrite: Boolean!): [Board!]!
1801
+
1781
1802
  """To import multiple CommonCodeDetails"""
1782
1803
  importCommonCodeDetails(commonCodeDetails: [CommonCodeDetailPatch!]!): Boolean!
1783
1804
 
@@ -1853,6 +1874,9 @@ type Mutation {
1853
1874
  """To reset password to default"""
1854
1875
  resetPasswordToDefault(userId: String!): Boolean!
1855
1876
 
1877
+ """To revert Board version"""
1878
+ revertBoardVersion(id: String!, version: Float!): Board!
1879
+
1856
1880
  """
1857
1881
  To run new scenario instance and will return the result after the scenario stop.
1858
1882
  """
@@ -3022,6 +3046,9 @@ type Query {
3022
3046
  """Board Usage Permissions"""
3023
3047
  boardPermissions: [String!]!
3024
3048
 
3049
+ """To fetch the latest Board published"""
3050
+ boardPublished(id: String!): BoardHistory!
3051
+
3025
3052
  """To fetch a BoardTemplate"""
3026
3053
  boardTemplate(id: String!): BoardTemplate
3027
3054
 
@@ -3034,6 +3061,9 @@ type Query {
3034
3061
  """To fetch BoardTemplates created by me"""
3035
3062
  boardTemplatesCreatedByMe(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BoardTemplateList!
3036
3063
 
3064
+ """To fetch a Board Versions"""
3065
+ boardVersions(id: String!): [BoardHistory!]!
3066
+
3037
3067
  """To fetch multiple Boards"""
3038
3068
  boards(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BoardList!
3039
3069
 
@@ -3107,6 +3137,9 @@ type Query {
3107
3137
  """To fetch all domains (Only superuser is granted this privilege.)"""
3108
3138
  domains(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DomainList!
3109
3139
 
3140
+ """To fetch domains with given privilege for user"""
3141
+ domainsWithPrivilege(category: String!, name: String!): [Domain!]!
3142
+
3110
3143
  """To fetch a Employee"""
3111
3144
  employee(id: String!): Employee
3112
3145
 
@@ -1,7 +1,10 @@
1
1
  {
2
+ "button.import-board": "import board",
3
+ "button.revert-board-version": "revert version",
2
4
  "label.information": "information",
3
5
  "label.play-group": "play group",
4
6
  "label.board": "board",
7
+ "label.board-copy": "board copy (domain, group)",
5
8
  "label.player": "player",
6
9
  "label.connection": "connection",
7
10
  "label.font": "font",
@@ -18,8 +21,10 @@
18
21
  "text.board cloned": "board '{board}' is cloned successfully",
19
22
  "text.board created": "board '{board}' is created successfully",
20
23
  "text.board released": "board '{board}' is released successfully",
24
+ "text.board reverted": "board '{board}' is reverted to version-'{version}' successfully",
21
25
  "text.board updated": "board '{board}' is updated successfully",
22
26
  "text.board deleted": "board '{board}' is deleted successfully",
27
+ "text.boards imported": "{count} boards are imported into group {group}",
23
28
  "text.group created": "group '{group}' is created successfully",
24
29
  "text.group updated": "group '{group}' is updated successfully",
25
30
  "text.group deleted": "group '{group}' is deleted successfully",
@@ -28,6 +33,7 @@
28
33
  "text.play-group deleted": "play-group '{playGroup}' is deleted successfully",
29
34
  "text.joined into play-group": "board '{board}' joined into play-group '{playGroup}'",
30
35
  "text.leaved from play-group": "board '{board}' leaved from play-group '{playGroup}'",
36
+ "text.no released version information available": "no released version information available",
31
37
  "title.attachment list": "attachment list",
32
38
  "title.board-template list": "board template list"
33
39
  }
@@ -1,7 +1,10 @@
1
1
  {
2
+ "button.import-board": "ボードをインポート",
3
+ "button.revert-board-version": "バージョンを戻す",
2
4
  "label.information": "基本情報",
3
5
  "label.play-group": "プレイ グループ",
4
6
  "label.board": "ボード",
7
+ "label.board-copy": "ボードコピー(ドメイン、グループ)",
5
8
  "label.player": "プレイヤー",
6
9
  "label.connection": "コネクション",
7
10
  "label.font": "フォント",
@@ -18,16 +21,19 @@
18
21
  "text.board cloned": "ボード '{board}'は正常にクローンされました",
19
22
  "text.board created": "ボード'{board}'が作成されました",
20
23
  "text.board released": "ボード'{board}'は正常にリリースされました",
24
+ "text.board reverted": "ボード '{board}' がバージョン '{version}' に正常に戻されました",
21
25
  "text.board updated": "ボード'{board}'が修正されました",
22
26
  "text.board deleted": "ボード'{board}'が削除されました",
23
27
  "text.group created": "グループ'{group}'が作成されました",
24
28
  "text.group updated": "グループ'{group}'が修正されました",
25
29
  "text.group deleted": "グループ'{group}'が削除されました",
30
+ "text.boards imported": "{count} つのボードがグループ {group} にインポートされました",
26
31
  "text.play-group created": "プレイグループ'{playGroup}'が作成されました",
27
32
  "text.play-group updated": "プレイグループ'{playGroup}'が修正されました",
28
33
  "text.play-group deleted": "プレイグループ'{playGroup}'が削除されました",
29
34
  "text.joined into play-group": "ボード'{board}'がプレイグループ'{playGroup}'に追加されました",
30
35
  "text.leaved from play-group": "ボード'{board}'がプレイグループ'{playGroup}'から削除されました",
36
+ "text.no released version information available": "リリースされたバージョン情報はありません",
31
37
  "title.attachment list": "添付ファイル照会",
32
38
  "title.board-template list": "ボードテンプレート管理"
33
39
  }
@@ -1,7 +1,10 @@
1
1
  {
2
+ "button.import-board": "보드 임포트",
3
+ "button.revert-board-version": "버전적용",
2
4
  "label.information": "기본정보",
3
5
  "label.play-group": "플레이그룹",
4
6
  "label.board": "보드",
7
+ "label.board-copy": "보드 복제 (도메인, 그룹)",
5
8
  "label.player": "플레이어",
6
9
  "label.connection": "커넥션",
7
10
  "label.font": "폰트",
@@ -18,16 +21,19 @@
18
21
  "text.board cloned": "보드 '{board}'이 복사되었습니다",
19
22
  "text.board created": "보드 '{board}'이 생성되었습니다",
20
23
  "text.board released": "보드 '{board}'이 배포되었습니다",
24
+ "text.board reverted": "보드 '{board}'이 버전-'{version}'으로 되돌려졌습니다",
21
25
  "text.board updated": "보드 '{board}'이 수정되었습니다",
22
26
  "text.board deleted": "보드 '{board}'이 삭제되었습니다",
23
27
  "text.group created": "그룹 '{group}'이 생성되었습니다",
24
28
  "text.group updated": "그룹 '{group}'이 수정되었습니다",
25
29
  "text.group deleted": "그룹 '{group}'이 삭제되었습니다",
30
+ "text.boards imported": "{count}개의 보드를 그룹'{group}'으로 가져왔습니다",
26
31
  "text.play-group created": "플레이그룹 '{playGroup}'이 생성되었습니다",
27
32
  "text.play-group updated": "플레이그룹 '{playGroup}'이 수정되었습니다",
28
33
  "text.play-group deleted": "플레이그룹 '{playGroup}'이 삭제되었습니다",
29
34
  "text.joined into play-group": "보드 '{board}'가 플레이그룹 '{playGroup}'에 추가되었습니다",
30
35
  "text.leaved from play-group": "보드 '{board}'가 플레이그룹 '{playGroup}'에서 제거되었습니다",
36
+ "text.no released version information available": "배포된 버전이 없습니다",
31
37
  "title.attachment list": "첨부파일 조회",
32
38
  "title.board-template list": "보드템플릿 조회"
33
39
  }
@@ -1,6 +1,9 @@
1
1
  {
2
+ "button.import-board": "Import papan",
3
+ "button.revert-board-version": "Kembalikan versi",
2
4
  "label.information": "maklumat",
3
5
  "label.play-group": "kumpulan mainan",
6
+ "label.board-copy": "salin papan (domain, kumpulan)",
4
7
  "label.board": "papan",
5
8
  "label.player": "pemain",
6
9
  "label.connection": "sambungan",
@@ -18,16 +21,19 @@
18
21
  "text.board cloned": "papan '{board}' telah berjaya dikelonkan",
19
22
  "text.board created": "papan '{board}' berjaya dicipta",
20
23
  "text.board released": "papan '{board}' telah berjaya dikeluarkan",
24
+ "text.board reverted": "Papan '{board}' telah berjaya dikembalikan kepada versi '{version}'",
21
25
  "text.board updated": "papan '{board}' berjaya dikemaskini",
22
26
  "text.board deleted": "papan '{board}' berjaya dipadam",
23
27
  "text.group created": "kumpulan '{group}' berjaya dicipta",
24
28
  "text.group updated": "kumpulan '{group}' berjaya dikemaskini",
25
29
  "text.group deleted": "kumpulan '{group}' berjaya dipadam",
30
+ "text.boards imported": "{count} papan telah diimport ke dalam kumpulan {group}",
26
31
  "text.play-group created": "kumpulan mainan '{playGroup}' berjaya dicipta",
27
32
  "text.play-group updated": "kumpulan mainan '{playGroup}' berjaya dikemaskini",
28
33
  "text.play-group deleted": "kumpulan mainan '{playGroup}' berjaya dipadam",
29
34
  "text.joined into play-group": "papan '{board}' menyertai kumpulan mainan '{playGroup}'",
30
35
  "text.leaved from play-group": "papan '{board}' keluar dari kumpulan mainan '{playGroup}'",
36
+ "text.no released version information available": "tiada maklumat versi yang dikeluarkan",
31
37
  "title.attachment list": "senarai lampiran",
32
38
  "title.board-template list": "templat papan"
33
39
  }
@@ -1,6 +1,9 @@
1
1
  {
2
+ "button.import-board": "导入面板",
3
+ "button.revert-board-version": "还原版本",
2
4
  "label.information": "信息",
3
5
  "label.play-group": "播放组",
6
+ "label.board-copy": "面板复制(域,群组)",
4
7
  "label.board": "看板",
5
8
  "label.player": "播放",
6
9
  "label.connection": "连接",
@@ -18,16 +21,19 @@
18
21
  "text.board cloned": "看板 '{board}' 已成功克隆",
19
22
  "text.board created": "看板 '{board}' 创建成功",
20
23
  "text.board released": "看板 '{board}' 成功发布",
24
+ "text.board reverted": "面板 '{board}' 已成功还原至版本 '{version}'",
21
25
  "text.board updated": "看板 '{board}' 更新成功",
22
26
  "text.board deleted": "看板 '{board}' 删除成功",
23
27
  "text.group created": "群组 '{group}' 创建成功",
24
28
  "text.group updated": "群组 '{group}' 更新成功",
25
29
  "text.group deleted": "群组 '{group}' 删除成功",
30
+ "text.boards imported": "已导入 {count} 个板块到群组 {group}",
26
31
  "text.play-group created": "播放组 '{playGroup}' 创建成功",
27
32
  "text.play-group updated": "播放组 '{playGroup}' 更新成功",
28
33
  "text.play-group deleted": "播放组 '{playGroup}' 删除成功",
29
34
  "text.joined into play-group": "看板 '{board}' 加入播放组 '{playGroup}'",
30
35
  "text.leaved from play-group": "看板 '{board}' 离开播放组 '{playGroup}'",
36
+ "text.no released version information available": "没有发布版本信息可用",
31
37
  "title.attachment list": "附件列表",
32
38
  "title.board-template list": "看板模板"
33
39
  }