@things-factory/operato-board 6.0.99 → 6.0.104

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.0.99",
3
+ "version": "6.0.104",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "client/index.js",
6
6
  "things-factory": true,
@@ -79,40 +79,40 @@
79
79
  "@operato/shell": "^1.0.1",
80
80
  "@operato/styles": "^1.0.0",
81
81
  "@operato/utils": "^1.0.1",
82
- "@things-factory/apptool-ui": "^6.0.99",
83
- "@things-factory/auth-ui": "^6.0.99",
84
- "@things-factory/board-service": "^6.0.99",
85
- "@things-factory/board-ui": "^6.0.99",
86
- "@things-factory/context-ui": "^6.0.99",
87
- "@things-factory/export-ui": "^6.0.99",
88
- "@things-factory/fav-base": "^6.0.99",
89
- "@things-factory/font-base": "^6.0.99",
90
- "@things-factory/form-ui": "^6.0.99",
91
- "@things-factory/help": "^6.0.99",
92
- "@things-factory/i18n-base": "^6.0.99",
93
- "@things-factory/import-ui": "^6.0.99",
94
- "@things-factory/integration-base": "^6.0.99",
95
- "@things-factory/integration-msgraph": "^6.0.99",
96
- "@things-factory/integration-notification": "^6.0.99",
97
- "@things-factory/integration-openai": "^6.0.99",
98
- "@things-factory/integration-ui": "^6.0.99",
99
- "@things-factory/layout-ui": "^6.0.99",
100
- "@things-factory/more-ui": "^6.0.99",
101
- "@things-factory/notification": "^6.0.99",
102
- "@things-factory/oauth2-client": "^6.0.99",
103
- "@things-factory/offline-ui": "^6.0.99",
82
+ "@things-factory/apptool-ui": "^6.0.104",
83
+ "@things-factory/auth-ui": "^6.0.104",
84
+ "@things-factory/board-service": "^6.0.104",
85
+ "@things-factory/board-ui": "^6.0.104",
86
+ "@things-factory/context-ui": "^6.0.104",
87
+ "@things-factory/export-ui": "^6.0.104",
88
+ "@things-factory/fav-base": "^6.0.104",
89
+ "@things-factory/font-base": "^6.0.104",
90
+ "@things-factory/form-ui": "^6.0.101",
91
+ "@things-factory/help": "^6.0.104",
92
+ "@things-factory/i18n-base": "^6.0.104",
93
+ "@things-factory/import-ui": "^6.0.104",
94
+ "@things-factory/integration-base": "^6.0.104",
95
+ "@things-factory/integration-msgraph": "^6.0.104",
96
+ "@things-factory/integration-notification": "^6.0.104",
97
+ "@things-factory/integration-openai": "^6.0.104",
98
+ "@things-factory/integration-ui": "^6.0.104",
99
+ "@things-factory/layout-ui": "^6.0.101",
100
+ "@things-factory/more-ui": "^6.0.104",
101
+ "@things-factory/notification": "^6.0.104",
102
+ "@things-factory/oauth2-client": "^6.0.104",
103
+ "@things-factory/offline-ui": "^6.0.104",
104
104
  "@things-factory/operato-license-checker": "^3.1.0",
105
- "@things-factory/pdf": "^6.0.99",
106
- "@things-factory/print-service": "^6.0.99",
107
- "@things-factory/print-ui": "^6.0.99",
108
- "@things-factory/resource-ui": "^6.0.99",
109
- "@things-factory/scene-google-map": "^6.0.99",
110
- "@things-factory/setting-ui": "^6.0.99",
111
- "@things-factory/system-ui": "^6.0.99"
105
+ "@things-factory/pdf": "^6.0.101",
106
+ "@things-factory/print-service": "^6.0.104",
107
+ "@things-factory/print-ui": "^6.0.104",
108
+ "@things-factory/resource-ui": "^6.0.104",
109
+ "@things-factory/scene-google-map": "^6.0.101",
110
+ "@things-factory/setting-ui": "^6.0.104",
111
+ "@things-factory/system-ui": "^6.0.104"
112
112
  },
113
113
  "devDependencies": {
114
- "@things-factory/board-test": "^6.0.99",
115
- "@things-factory/builder": "^6.0.99"
114
+ "@things-factory/board-test": "^6.0.104",
115
+ "@things-factory/builder": "^6.0.104"
116
116
  },
117
- "gitHead": "1deaad12a84365ab799ae4e81dec5c5a230d7fc1"
117
+ "gitHead": "c239d87b7e21262af03804064e01a6dc3a2e23fa"
118
118
  }
package/schema.gql CHANGED
@@ -152,6 +152,61 @@ input AttachmentPatch {
152
152
  refType: String
153
153
  }
154
154
 
155
+ """Entity for AttributeSet"""
156
+ type AttributeSet {
157
+ createdAt: Timestamp
158
+ description: String
159
+ entity: String
160
+ id: ID!
161
+ items: [AttributeSetItem!]
162
+ updatedAt: Timestamp
163
+ }
164
+
165
+ """Entity for AttributeSetItem"""
166
+ type AttributeSetItem {
167
+ active: Boolean
168
+ description: String
169
+ hidden: Boolean
170
+ name: String!
171
+ options: Object
172
+ tag: String
173
+ type: String
174
+ }
175
+
176
+ input AttributeSetItemPatch {
177
+ active: Boolean
178
+ description: String
179
+ hidden: Boolean
180
+ name: String
181
+ options: Object
182
+ tag: String
183
+ type: AttributeSetItemType
184
+ }
185
+
186
+ """type enumeration of a attribute-set-item"""
187
+ enum AttributeSetItemType {
188
+ boolean
189
+ date
190
+ datetime
191
+ file
192
+ number
193
+ select
194
+ text
195
+ }
196
+
197
+ type AttributeSetList {
198
+ items: [AttributeSet!]!
199
+ total: Int!
200
+ }
201
+
202
+ input AttributeSetPatch {
203
+ cuFlag: String
204
+ description: String
205
+ entity: String
206
+ id: ID
207
+ items: [AttributeSetItemPatch!]
208
+ }
209
+
155
210
  """Entity for Visualization Board"""
156
211
  type Board {
157
212
  createdAt: Timestamp
@@ -326,6 +381,7 @@ type Data {
326
381
  scalar Date
327
382
 
328
383
  type Domain {
384
+ attributes: Object
329
385
  brandImage: String
330
386
  brandName: String
331
387
  contentImage: String
@@ -359,6 +415,7 @@ type DomainList {
359
415
  }
360
416
 
361
417
  input DomainPatch {
418
+ attributes: Object
362
419
  brandImage: String
363
420
  brandName: String
364
421
  contentImage: String
@@ -1056,6 +1113,9 @@ type Mutation {
1056
1113
  createAttachment(attachment: NewAttachment!): Attachment!
1057
1114
  createAttachments(attachments: [NewAttachment!]!): [Attachment!]!
1058
1115
 
1116
+ """To create new AttributeSet"""
1117
+ createAttributeSet(attribute: NewAttributeSet!): AttributeSet!
1118
+
1059
1119
  """To create new Board"""
1060
1120
  createBoard(board: NewBoard!): Board!
1061
1121
 
@@ -1140,6 +1200,12 @@ type Mutation {
1140
1200
  deleteAttachment(id: String!): Boolean!
1141
1201
  deleteAttachmentsByRef(refBys: [String!]!): Boolean!
1142
1202
 
1203
+ """To delete AttributeSet"""
1204
+ deleteAttributeSet(id: String!): Boolean!
1205
+
1206
+ """To delete multiple AttributeSets"""
1207
+ deleteAttributeSets(ids: [String!]!): Boolean!
1208
+
1143
1209
  """To delete Board"""
1144
1210
  deleteBoard(id: String!): Boolean!
1145
1211
 
@@ -1293,6 +1359,9 @@ type Mutation {
1293
1359
  getOauth2AuthUrl(id: String!): String!
1294
1360
  grantRoles(customerId: String!, roles: [RolePatch!]!): Boolean!
1295
1361
 
1362
+ """To import multiple AttributeSets"""
1363
+ importAttributeSets(attributes: [AttributeSetPatch!]!): Boolean!
1364
+
1296
1365
  """To import multiple CommonCodeDetails"""
1297
1366
  importCommonCodeDetails(commonCodeDetails: [CommonCodeDetailPatch!]!): Boolean!
1298
1367
 
@@ -1381,6 +1450,9 @@ type Mutation {
1381
1450
  updateApplication(id: String!, patch: ApplicationPatch!): Application!
1382
1451
  updateAttachment(id: String!, patch: AttachmentPatch!): Attachment!
1383
1452
 
1453
+ """To modify AttributeSet information"""
1454
+ updateAttributeSet(id: String!, patch: AttributeSetPatch!): AttributeSet!
1455
+
1384
1456
  """To modify Board information"""
1385
1457
  updateBoard(id: String!, patch: BoardPatch!): Board!
1386
1458
 
@@ -1429,6 +1501,9 @@ type Mutation {
1429
1501
  """To modify MenuDetailColumn information"""
1430
1502
  updateMenuDetailColumn(id: String!, patch: MenuDetailColumnPatch!): MenuDetailColumn!
1431
1503
 
1504
+ """To modify multiple AttributeSets' information"""
1505
+ updateMultipleAttributeSet(patches: [AttributeSetPatch!]!): [AttributeSet!]!
1506
+
1432
1507
  """To modify multiple CommonCodes' information"""
1433
1508
  updateMultipleCommonCode(patches: [CommonCodePatch!]!): [CommonCode!]!
1434
1509
 
@@ -1533,6 +1608,13 @@ input NewAttachment {
1533
1608
  refType: String
1534
1609
  }
1535
1610
 
1611
+ input NewAttributeSet {
1612
+ active: Boolean
1613
+ description: String
1614
+ entity: String!
1615
+ items: [AttributeSetItemPatch!]
1616
+ }
1617
+
1536
1618
  input NewBoard {
1537
1619
  description: String
1538
1620
  groupId: String
@@ -2109,6 +2191,15 @@ type Query {
2109
2191
  attachment(id: String!): Attachment!
2110
2192
  attachments(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): AttachmentList!
2111
2193
 
2194
+ """To fetch a AttributeSet"""
2195
+ attributeSet(id: String!): AttributeSet
2196
+
2197
+ """To fetch a AttributeSet by Entity name"""
2198
+ attributeSetByEntity(entity: String!): AttributeSet
2199
+
2200
+ """To fetch multiple AttributeSets"""
2201
+ attributeSets(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): AttributeSetList!
2202
+
2112
2203
  """To fetch a board"""
2113
2204
  board(id: String!): Board!
2114
2205