@things-factory/operato-board 6.1.28 → 6.1.39

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.28",
3
+ "version": "6.1.39",
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.28",
84
84
  "@things-factory/auth-ui": "^6.1.28",
85
- "@things-factory/board-service": "^6.1.28",
86
- "@things-factory/board-ui": "^6.1.28",
85
+ "@things-factory/board-service": "^6.1.39",
86
+ "@things-factory/board-ui": "^6.1.39",
87
87
  "@things-factory/context-ui": "^6.1.28",
88
88
  "@things-factory/export-ui": "^6.1.28",
89
89
  "@things-factory/fav-base": "^6.1.28",
@@ -113,8 +113,8 @@
113
113
  "@things-factory/system-ui": "^6.1.28"
114
114
  },
115
115
  "devDependencies": {
116
- "@things-factory/board-test": "^6.1.28",
116
+ "@things-factory/board-test": "^6.1.39",
117
117
  "@things-factory/builder": "^6.1.28"
118
118
  },
119
- "gitHead": "6830586c0142afaf8a23ff84aced6d4da18f1746"
119
+ "gitHead": "a596141c2db1970bc5dd3fb1693af57ad93ea07a"
120
120
  }
package/schema.gql CHANGED
@@ -1470,12 +1470,12 @@ 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
-
1476
1473
  """To create new Terminology"""
1477
1474
  createTerminology(terminology: NewTerminology!): Terminology!
1478
1475
 
1476
+ """To create new Theme"""
1477
+ createTheme(theme: NewTheme!): Theme!
1478
+
1479
1479
  """To create new user"""
1480
1480
  createUser(user: NewUser!): User!
1481
1481
  deleteAppBinding(id: String!): Boolean!
@@ -1662,12 +1662,6 @@ type Mutation {
1662
1662
  """To delete multiple settings"""
1663
1663
  deleteSettings(names: [String!]!): Boolean!
1664
1664
 
1665
- """To delete Share"""
1666
- deleteShare(id: String!): Boolean!
1667
-
1668
- """To delete multiple Shares"""
1669
- deleteShares(ids: [String!]!): Boolean!
1670
-
1671
1665
  """To delete multiple steps"""
1672
1666
  deleteSteps(ids: [String!]!): Boolean!
1673
1667
 
@@ -1677,6 +1671,12 @@ type Mutation {
1677
1671
  """To delete Terminology"""
1678
1672
  deleteTerminology(id: String!): Boolean!
1679
1673
 
1674
+ """To delete Theme"""
1675
+ deleteTheme(id: String!): Boolean!
1676
+
1677
+ """To delete multiple Themes"""
1678
+ deleteThemes(ids: [String!]!): Boolean!
1679
+
1680
1680
  """To delete a user"""
1681
1681
  deleteUser(email: String!): Boolean!
1682
1682
 
@@ -1746,12 +1746,12 @@ type Mutation {
1746
1746
  """To import multiple scenarios"""
1747
1747
  importScenarios(scenarios: [ScenarioPatch!]!): Boolean!
1748
1748
 
1749
- """To import multiple Shares"""
1750
- importShares(shares: [SharePatch!]!): Boolean!
1751
-
1752
1749
  """To import multiple Terminologies"""
1753
1750
  importTerminologies(terminologies: [TerminologyPatch!]!): Boolean!
1754
1751
 
1752
+ """To import multiple Themes"""
1753
+ importThemes(themes: [ThemePatch!]!): Boolean!
1754
+
1755
1755
  """To inactivate user"""
1756
1756
  inactivateUser(userId: String!): Boolean!
1757
1757
  inviteCustomer(customerDomainName: String!): Boolean!
@@ -1924,15 +1924,15 @@ type Mutation {
1924
1924
  """To modify multiple Settings' information"""
1925
1925
  updateMultipleSetting(patches: [SettingPatch!]!): [Setting!]!
1926
1926
 
1927
- """To modify multiple Shares' information"""
1928
- updateMultipleShare(patches: [SharePatch!]!): [Share!]!
1929
-
1930
1927
  """To modify multiple steps' in a scenario"""
1931
1928
  updateMultipleStep(patches: [StepPatch!]!, scenarioId: String!): [Step!]!
1932
1929
 
1933
1930
  """To modify multiple Terminologies' information"""
1934
1931
  updateMultipleTerminologies(patches: [TerminologyPatch!]!): [Terminology!]!
1935
1932
 
1933
+ """To modify multiple Themes' information"""
1934
+ updateMultipleTheme(patches: [ThemePatch!]!): [Theme!]!
1935
+
1936
1936
  """To modify multiple users information"""
1937
1937
  updateMultipleUser(patches: [UserPatch!]!): [User!]!
1938
1938
 
@@ -1972,12 +1972,12 @@ type Mutation {
1972
1972
  """To modify Setting information"""
1973
1973
  updateSetting(name: String!, patch: SettingPatch!): Setting!
1974
1974
 
1975
- """To modify Share information"""
1976
- updateShare(id: String!, patch: SharePatch!): Share!
1977
-
1978
1975
  """To modify Terminology information"""
1979
1976
  updateTerminology(id: String!, patch: TerminologyPatch!): Terminology!
1980
1977
 
1978
+ """To modify Theme information"""
1979
+ updateTheme(id: String!, patch: ThemePatch!): Theme!
1980
+
1981
1981
  """To modify user information"""
1982
1982
  updateUser(email: String!, patch: UserPatch!): User!
1983
1983
 
@@ -2396,12 +2396,6 @@ input NewSetting {
2396
2396
  value: String
2397
2397
  }
2398
2398
 
2399
- input NewShare {
2400
- description: String
2401
- name: String!
2402
- value: Object
2403
- }
2404
-
2405
2399
  input NewTerminology {
2406
2400
  category: String!
2407
2401
  description: String
@@ -2410,6 +2404,13 @@ input NewTerminology {
2410
2404
  name: String!
2411
2405
  }
2412
2406
 
2407
+ input NewTheme {
2408
+ description: String
2409
+ name: String!
2410
+ type: String
2411
+ value: Object
2412
+ }
2413
+
2413
2414
  input NewUser {
2414
2415
  description: String
2415
2416
  email: String!
@@ -3106,12 +3107,6 @@ type Query {
3106
3107
  """To fetch multiple Settings"""
3107
3108
  settings(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): SettingList!
3108
3109
 
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
-
3115
3110
  """To fetch a step"""
3116
3111
  step(name: String!): Step!
3117
3112
 
@@ -3133,6 +3128,12 @@ type Query {
3133
3128
  """To fetch a Terminology"""
3134
3129
  terminology(id: String!): Terminology!
3135
3130
 
3131
+ """To fetch a Theme"""
3132
+ theme(id: String!): Theme
3133
+
3134
+ """To fetch multiple Themes"""
3135
+ themes(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ThemeList!
3136
+
3136
3137
  """To fetch user"""
3137
3138
  user(email: String!): User!
3138
3139
 
@@ -3307,34 +3308,6 @@ input SettingPatch {
3307
3308
  value: String
3308
3309
  }
3309
3310
 
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
-
3338
3311
  input Sorting {
3339
3312
  """
3340
3313
  Set to true if descending sort. Default is "false"
@@ -3434,6 +3407,35 @@ input TerminologyPatch {
3434
3407
  name: String
3435
3408
  }
3436
3409
 
3410
+ """Entity for Theme"""
3411
+ type Theme {
3412
+ createdAt: Timestamp
3413
+ creator: User
3414
+ deletedAt: Timestamp
3415
+ description: String
3416
+ domain: Domain
3417
+ id: ID!
3418
+ name: String
3419
+ type: String
3420
+ updatedAt: Timestamp
3421
+ updater: User
3422
+ value: Object
3423
+ }
3424
+
3425
+ type ThemeList {
3426
+ items: [Theme!]!
3427
+ total: Int!
3428
+ }
3429
+
3430
+ input ThemePatch {
3431
+ cuFlag: String
3432
+ description: String
3433
+ id: ID
3434
+ name: String
3435
+ type: String
3436
+ value: Object
3437
+ }
3438
+
3437
3439
  """
3438
3440
  The javascript `Date` as integer. Type represents date and time as number of milliseconds from start of UNIX epoch.
3439
3441
  """