@things-factory/operato-board 6.1.22 → 6.1.28

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.22",
3
+ "version": "6.1.28",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "client/index.js",
6
6
  "things-factory": true,
@@ -80,41 +80,41 @@
80
80
  "@operato/shell": "^1.0.1",
81
81
  "@operato/styles": "^1.0.0",
82
82
  "@operato/utils": "^1.0.1",
83
- "@things-factory/apptool-ui": "^6.1.22",
84
- "@things-factory/auth-ui": "^6.1.22",
85
- "@things-factory/board-service": "^6.1.22",
86
- "@things-factory/board-ui": "^6.1.22",
87
- "@things-factory/context-ui": "^6.1.22",
88
- "@things-factory/export-ui": "^6.1.22",
89
- "@things-factory/fav-base": "^6.1.22",
90
- "@things-factory/font-base": "^6.1.22",
91
- "@things-factory/form-ui": "^6.1.22",
92
- "@things-factory/help": "^6.1.22",
93
- "@things-factory/i18n-base": "^6.1.22",
94
- "@things-factory/import-ui": "^6.1.22",
95
- "@things-factory/integration-base": "^6.1.22",
96
- "@things-factory/integration-msgraph": "^6.1.22",
97
- "@things-factory/integration-notification": "^6.1.22",
98
- "@things-factory/integration-openai": "^6.1.22",
99
- "@things-factory/integration-ui": "^6.1.22",
100
- "@things-factory/layout-ui": "^6.1.22",
101
- "@things-factory/more-ui": "^6.1.22",
102
- "@things-factory/notification": "^6.1.22",
103
- "@things-factory/oauth2-client": "^6.1.22",
104
- "@things-factory/offline-ui": "^6.1.22",
83
+ "@things-factory/apptool-ui": "^6.1.28",
84
+ "@things-factory/auth-ui": "^6.1.28",
85
+ "@things-factory/board-service": "^6.1.28",
86
+ "@things-factory/board-ui": "^6.1.28",
87
+ "@things-factory/context-ui": "^6.1.28",
88
+ "@things-factory/export-ui": "^6.1.28",
89
+ "@things-factory/fav-base": "^6.1.28",
90
+ "@things-factory/font-base": "^6.1.28",
91
+ "@things-factory/form-ui": "^6.1.28",
92
+ "@things-factory/help": "^6.1.28",
93
+ "@things-factory/i18n-base": "^6.1.28",
94
+ "@things-factory/import-ui": "^6.1.28",
95
+ "@things-factory/integration-base": "^6.1.28",
96
+ "@things-factory/integration-msgraph": "^6.1.28",
97
+ "@things-factory/integration-notification": "^6.1.28",
98
+ "@things-factory/integration-openai": "^6.1.28",
99
+ "@things-factory/integration-ui": "^6.1.28",
100
+ "@things-factory/layout-ui": "^6.1.28",
101
+ "@things-factory/more-ui": "^6.1.28",
102
+ "@things-factory/notification": "^6.1.28",
103
+ "@things-factory/oauth2-client": "^6.1.28",
104
+ "@things-factory/offline-ui": "^6.1.28",
105
105
  "@things-factory/operato-license-checker": "^3.1.0",
106
- "@things-factory/pdf": "^6.1.22",
107
- "@things-factory/print-service": "^6.1.22",
108
- "@things-factory/print-ui": "^6.1.22",
109
- "@things-factory/resource-ui": "^6.1.22",
110
- "@things-factory/scene-google-map": "^6.1.22",
111
- "@things-factory/setting-ui": "^6.1.22",
112
- "@things-factory/shell": "^6.1.22",
113
- "@things-factory/system-ui": "^6.1.22"
106
+ "@things-factory/pdf": "^6.1.28",
107
+ "@things-factory/print-service": "^6.1.28",
108
+ "@things-factory/print-ui": "^6.1.28",
109
+ "@things-factory/resource-ui": "^6.1.28",
110
+ "@things-factory/scene-google-map": "^6.1.28",
111
+ "@things-factory/setting-ui": "^6.1.28",
112
+ "@things-factory/shell": "^6.1.28",
113
+ "@things-factory/system-ui": "^6.1.28"
114
114
  },
115
115
  "devDependencies": {
116
- "@things-factory/board-test": "^6.1.22",
117
- "@things-factory/builder": "^6.1.22"
116
+ "@things-factory/board-test": "^6.1.28",
117
+ "@things-factory/builder": "^6.1.28"
118
118
  },
119
- "gitHead": "b745ff277f5bd9359d74201edb88bc88c9392508"
119
+ "gitHead": "6830586c0142afaf8a23ff84aced6d4da18f1746"
120
120
  }
package/schema.gql CHANGED
@@ -1470,6 +1470,9 @@ type Mutation {
1470
1470
  """To create new Setting"""
1471
1471
  createSetting(setting: NewSetting!): Setting!
1472
1472
 
1473
+ """To create new Share"""
1474
+ createShare(share: NewShare!): Share!
1475
+
1473
1476
  """To create new Terminology"""
1474
1477
  createTerminology(terminology: NewTerminology!): Terminology!
1475
1478
 
@@ -1659,6 +1662,12 @@ type Mutation {
1659
1662
  """To delete multiple settings"""
1660
1663
  deleteSettings(names: [String!]!): Boolean!
1661
1664
 
1665
+ """To delete Share"""
1666
+ deleteShare(id: String!): Boolean!
1667
+
1668
+ """To delete multiple Shares"""
1669
+ deleteShares(ids: [String!]!): Boolean!
1670
+
1662
1671
  """To delete multiple steps"""
1663
1672
  deleteSteps(ids: [String!]!): Boolean!
1664
1673
 
@@ -1737,6 +1746,9 @@ type Mutation {
1737
1746
  """To import multiple scenarios"""
1738
1747
  importScenarios(scenarios: [ScenarioPatch!]!): Boolean!
1739
1748
 
1749
+ """To import multiple Shares"""
1750
+ importShares(shares: [SharePatch!]!): Boolean!
1751
+
1740
1752
  """To import multiple Terminologies"""
1741
1753
  importTerminologies(terminologies: [TerminologyPatch!]!): Boolean!
1742
1754
 
@@ -1912,6 +1924,9 @@ type Mutation {
1912
1924
  """To modify multiple Settings' information"""
1913
1925
  updateMultipleSetting(patches: [SettingPatch!]!): [Setting!]!
1914
1926
 
1927
+ """To modify multiple Shares' information"""
1928
+ updateMultipleShare(patches: [SharePatch!]!): [Share!]!
1929
+
1915
1930
  """To modify multiple steps' in a scenario"""
1916
1931
  updateMultipleStep(patches: [StepPatch!]!, scenarioId: String!): [Step!]!
1917
1932
 
@@ -1957,6 +1972,9 @@ type Mutation {
1957
1972
  """To modify Setting information"""
1958
1973
  updateSetting(name: String!, patch: SettingPatch!): Setting!
1959
1974
 
1975
+ """To modify Share information"""
1976
+ updateShare(id: String!, patch: SharePatch!): Share!
1977
+
1960
1978
  """To modify Terminology information"""
1961
1979
  updateTerminology(id: String!, patch: TerminologyPatch!): Terminology!
1962
1980
 
@@ -2378,6 +2396,12 @@ input NewSetting {
2378
2396
  value: String
2379
2397
  }
2380
2398
 
2399
+ input NewShare {
2400
+ description: String
2401
+ name: String!
2402
+ value: Object
2403
+ }
2404
+
2381
2405
  input NewTerminology {
2382
2406
  category: String!
2383
2407
  description: String
@@ -3082,6 +3106,12 @@ type Query {
3082
3106
  """To fetch multiple Settings"""
3083
3107
  settings(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): SettingList!
3084
3108
 
3109
+ """To fetch a Share"""
3110
+ share(id: String!): Share
3111
+
3112
+ """To fetch multiple Shares"""
3113
+ shares(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ShareList!
3114
+
3085
3115
  """To fetch a step"""
3086
3116
  step(name: String!): Step!
3087
3117
 
@@ -3277,6 +3307,34 @@ input SettingPatch {
3277
3307
  value: String
3278
3308
  }
3279
3309
 
3310
+ """Entity for Share"""
3311
+ type Share {
3312
+ createdAt: Timestamp
3313
+ creator: User
3314
+ deletedAt: Timestamp
3315
+ description: String
3316
+ domain: Domain
3317
+ id: ID!
3318
+ name: String
3319
+ type: String
3320
+ updatedAt: Timestamp
3321
+ updater: User
3322
+ value: Object
3323
+ }
3324
+
3325
+ type ShareList {
3326
+ items: [Share!]!
3327
+ total: Int!
3328
+ }
3329
+
3330
+ input SharePatch {
3331
+ cuFlag: String
3332
+ description: String
3333
+ id: ID
3334
+ name: String
3335
+ value: Object
3336
+ }
3337
+
3280
3338
  input Sorting {
3281
3339
  """
3282
3340
  Set to true if descending sort. Default is "false"