@things-factory/operato-board 6.1.52 → 6.1.55

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.52",
3
+ "version": "6.1.55",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "client/index.js",
6
6
  "things-factory": true,
@@ -82,8 +82,8 @@
82
82
  "@operato/utils": "^1.0.1",
83
83
  "@things-factory/apptool-ui": "^6.1.48",
84
84
  "@things-factory/auth-ui": "^6.1.48",
85
- "@things-factory/board-service": "^6.1.48",
86
- "@things-factory/board-ui": "^6.1.48",
85
+ "@things-factory/board-service": "^6.1.55",
86
+ "@things-factory/board-ui": "^6.1.55",
87
87
  "@things-factory/context-ui": "^6.1.48",
88
88
  "@things-factory/export-ui": "^6.1.48",
89
89
  "@things-factory/fav-base": "^6.1.48",
@@ -94,12 +94,12 @@
94
94
  "@things-factory/import-ui": "^6.1.48",
95
95
  "@things-factory/integration-base": "^6.1.52",
96
96
  "@things-factory/integration-msgraph": "^6.1.52",
97
- "@things-factory/integration-notification": "^6.1.52",
97
+ "@things-factory/integration-notification": "^6.1.54",
98
98
  "@things-factory/integration-openai": "^6.1.52",
99
99
  "@things-factory/integration-ui": "^6.1.52",
100
100
  "@things-factory/layout-ui": "^6.1.48",
101
101
  "@things-factory/more-ui": "^6.1.48",
102
- "@things-factory/notification": "^6.1.48",
102
+ "@things-factory/notification": "^6.1.54",
103
103
  "@things-factory/oauth2-client": "^6.1.48",
104
104
  "@things-factory/offline-ui": "^6.1.48",
105
105
  "@things-factory/operato-license-checker": "^3.1.0",
@@ -113,8 +113,8 @@
113
113
  "@things-factory/system-ui": "^6.1.48"
114
114
  },
115
115
  "devDependencies": {
116
- "@things-factory/board-test": "^6.1.48",
116
+ "@things-factory/board-test": "^6.1.55",
117
117
  "@things-factory/builder": "^6.1.48"
118
118
  },
119
- "gitHead": "ef84aece7f35bd03fbdfc9dcde264d2fbe5ef215"
119
+ "gitHead": "11edc149a214ce17658fa1f6acb3aa918033d49d"
120
120
  }
package/schema.gql CHANGED
@@ -324,6 +324,43 @@ input BoardPatch {
324
324
  thumbnail: String
325
325
  }
326
326
 
327
+ """Entity for BoardTemplate"""
328
+ type BoardTemplate {
329
+ createdAt: Timestamp
330
+ creator: User
331
+ description: String
332
+ domain: Domain
333
+ id: ID!
334
+ model: String
335
+ name: String
336
+ state: String
337
+ thumbnail: String
338
+ updatedAt: Timestamp
339
+ updater: User
340
+ version: Float
341
+ }
342
+
343
+ type BoardTemplateList {
344
+ items: [BoardTemplate!]!
345
+ total: Int!
346
+ }
347
+
348
+ input BoardTemplatePatch {
349
+ cuFlag: String
350
+ description: String
351
+ id: ID
352
+ model: String!
353
+ name: String
354
+ state: BoardTemplateStatus
355
+ thumbnail: String
356
+ }
357
+
358
+ """state enumeration of a boardTemplate"""
359
+ enum BoardTemplateStatus {
360
+ DRAFT
361
+ RELEASED
362
+ }
363
+
327
364
  input ChatCompletionInput {
328
365
  content: String!
329
366
  }
@@ -1386,6 +1423,9 @@ type Mutation {
1386
1423
  """To create new Board"""
1387
1424
  createBoard(board: NewBoard!): Board!
1388
1425
 
1426
+ """To create new BoardTemplate"""
1427
+ createBoardTemplate(boardTemplate: NewBoardTemplate!): BoardTemplate!
1428
+
1389
1429
  """To create new CommonCode"""
1390
1430
  createCommonCode(commonCode: NewCommonCode!): CommonCode!
1391
1431
 
@@ -1503,6 +1543,9 @@ type Mutation {
1503
1543
  """To delete Board"""
1504
1544
  deleteBoard(id: String!): Boolean!
1505
1545
 
1546
+ """To delete BoardTemplate"""
1547
+ deleteBoardTemplate(id: String!): Boolean!
1548
+
1506
1549
  """To delete CommonCode"""
1507
1550
  deleteCommonCode(id: String!): Boolean!
1508
1551
 
@@ -1816,6 +1859,9 @@ type Mutation {
1816
1859
  """To modify Board information"""
1817
1860
  updateBoard(id: String!, patch: BoardPatch!): Board!
1818
1861
 
1862
+ """To modify BoardTemplate information"""
1863
+ updateBoardTemplate(id: String!, patch: BoardTemplatePatch!): BoardTemplate!
1864
+
1819
1865
  """To modify CommonCode information"""
1820
1866
  updateCommonCode(name: String!, patch: CommonCodePatch!): CommonCode!
1821
1867
 
@@ -2036,6 +2082,14 @@ input NewBoard {
2036
2082
  thumbnail: String
2037
2083
  }
2038
2084
 
2085
+ input NewBoardTemplate {
2086
+ description: String
2087
+ model: String!
2088
+ name: String!
2089
+ state: BoardTemplateStatus
2090
+ thumbnail: String
2091
+ }
2092
+
2039
2093
  input NewCommonCode {
2040
2094
  description: String
2041
2095
  details: [String!]
@@ -2851,6 +2905,18 @@ type Query {
2851
2905
  """Board Usage Permissions"""
2852
2906
  boardPermissions: [String!]!
2853
2907
 
2908
+ """To fetch a BoardTemplate"""
2909
+ boardTemplate(id: String!): BoardTemplate
2910
+
2911
+ """To fetch a BoardTemplate by name"""
2912
+ boardTemplateByName(name: String!): BoardTemplate
2913
+
2914
+ """To fetch multiple BoardTemplates"""
2915
+ boardTemplates(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BoardTemplateList!
2916
+
2917
+ """To fetch BoardTemplates created by me"""
2918
+ boardTemplatesCreatedByMe(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BoardTemplateList!
2919
+
2854
2920
  """To fetch multiple Boards"""
2855
2921
  boards(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BoardList!
2856
2922