@things-factory/operato-gangsters 6.1.52 → 6.1.53
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 +3 -3
- package/schema.gql +67 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/operato-gangsters",
|
|
3
|
-
"version": "6.1.
|
|
3
|
+
"version": "6.1.53",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "dist-client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -79,10 +79,10 @@
|
|
|
79
79
|
"@things-factory/setting-ui": "^6.1.48",
|
|
80
80
|
"@things-factory/shell": "^6.1.48",
|
|
81
81
|
"@things-factory/system-ui": "^6.1.48",
|
|
82
|
-
"@things-factory/worklist": "^6.1.
|
|
82
|
+
"@things-factory/worklist": "^6.1.53"
|
|
83
83
|
},
|
|
84
84
|
"devDependencies": {
|
|
85
85
|
"@things-factory/builder": "^6.1.48"
|
|
86
86
|
},
|
|
87
|
-
"gitHead": "
|
|
87
|
+
"gitHead": "fe6f78a510fd04e38c0af2e618871d486a6b8afa"
|
|
88
88
|
}
|
package/schema.gql
CHANGED
|
@@ -1961,6 +1961,9 @@ type Mutation {
|
|
|
1961
1961
|
"""To create new Terminology"""
|
|
1962
1962
|
createTerminology(terminology: NewTerminology!): Terminology!
|
|
1963
1963
|
|
|
1964
|
+
"""To create new Theme"""
|
|
1965
|
+
createTheme(theme: NewTheme!): Theme!
|
|
1966
|
+
|
|
1964
1967
|
"""To create new user"""
|
|
1965
1968
|
createUser(user: NewUser!): User!
|
|
1966
1969
|
|
|
@@ -2183,6 +2186,12 @@ type Mutation {
|
|
|
2183
2186
|
"""To delete Terminology"""
|
|
2184
2187
|
deleteTerminology(id: String!): Boolean!
|
|
2185
2188
|
|
|
2189
|
+
"""To delete Theme"""
|
|
2190
|
+
deleteTheme(id: String!): Boolean!
|
|
2191
|
+
|
|
2192
|
+
"""To delete multiple Themes"""
|
|
2193
|
+
deleteThemes(ids: [String!]!): Boolean!
|
|
2194
|
+
|
|
2186
2195
|
"""To delete a user"""
|
|
2187
2196
|
deleteUser(email: String!): Boolean!
|
|
2188
2197
|
|
|
@@ -2270,6 +2279,9 @@ type Mutation {
|
|
|
2270
2279
|
"""To import multiple Terminologies"""
|
|
2271
2280
|
importTerminologies(terminologies: [TerminologyPatch!]!): Boolean!
|
|
2272
2281
|
|
|
2282
|
+
"""To import multiple Themes"""
|
|
2283
|
+
importThemes(themes: [ThemePatch!]!): Boolean!
|
|
2284
|
+
|
|
2273
2285
|
"""To inactivate user"""
|
|
2274
2286
|
inactivateUser(userId: String!): Boolean!
|
|
2275
2287
|
inviteCustomer(customerDomainName: String!): Boolean!
|
|
@@ -2498,6 +2510,9 @@ type Mutation {
|
|
|
2498
2510
|
"""To modify multiple Terminologies' information"""
|
|
2499
2511
|
updateMultipleTerminologies(patches: [TerminologyPatch!]!): [Terminology!]!
|
|
2500
2512
|
|
|
2513
|
+
"""To modify multiple Themes' information"""
|
|
2514
|
+
updateMultipleTheme(patches: [ThemePatch!]!): [Theme!]!
|
|
2515
|
+
|
|
2501
2516
|
"""To modify multiple users information"""
|
|
2502
2517
|
updateMultipleUser(patches: [UserPatch!]!): [User!]!
|
|
2503
2518
|
|
|
@@ -2540,6 +2555,9 @@ type Mutation {
|
|
|
2540
2555
|
"""To modify Terminology information"""
|
|
2541
2556
|
updateTerminology(id: String!, patch: TerminologyPatch!): Terminology!
|
|
2542
2557
|
|
|
2558
|
+
"""To modify Theme information"""
|
|
2559
|
+
updateTheme(id: String!, patch: ThemePatch!): Theme!
|
|
2560
|
+
|
|
2543
2561
|
"""To modify user information"""
|
|
2544
2562
|
updateUser(email: String!, patch: UserPatch!): User!
|
|
2545
2563
|
|
|
@@ -3021,6 +3039,13 @@ input NewTerminology {
|
|
|
3021
3039
|
name: String!
|
|
3022
3040
|
}
|
|
3023
3041
|
|
|
3042
|
+
input NewTheme {
|
|
3043
|
+
description: String
|
|
3044
|
+
name: String!
|
|
3045
|
+
type: String
|
|
3046
|
+
value: Object
|
|
3047
|
+
}
|
|
3048
|
+
|
|
3024
3049
|
input NewUser {
|
|
3025
3050
|
description: String
|
|
3026
3051
|
email: String!
|
|
@@ -3807,6 +3832,12 @@ type Query {
|
|
|
3807
3832
|
"""To fetch a Terminology"""
|
|
3808
3833
|
terminology(id: String!): Terminology!
|
|
3809
3834
|
|
|
3835
|
+
"""To fetch a Theme"""
|
|
3836
|
+
theme(id: String!): Theme
|
|
3837
|
+
|
|
3838
|
+
"""To fetch multiple Themes"""
|
|
3839
|
+
themes(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ThemeList!
|
|
3840
|
+
|
|
3810
3841
|
"""To fetch my own ActivityThreads"""
|
|
3811
3842
|
todoList(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ActivityThreadList!
|
|
3812
3843
|
|
|
@@ -3894,6 +3925,7 @@ type ScenarioInstance {
|
|
|
3894
3925
|
instanceName: String
|
|
3895
3926
|
message: String
|
|
3896
3927
|
progress: ScenarioInstanceProgress
|
|
3928
|
+
result: Object
|
|
3897
3929
|
root: ScenarioInstance
|
|
3898
3930
|
scenarioName: String
|
|
3899
3931
|
state: String
|
|
@@ -4004,6 +4036,11 @@ type Step {
|
|
|
4004
4036
|
log: Boolean
|
|
4005
4037
|
name: String!
|
|
4006
4038
|
params: String
|
|
4039
|
+
|
|
4040
|
+
"""
|
|
4041
|
+
a boolean attribute indicating the inclusion status of an element in the result
|
|
4042
|
+
"""
|
|
4043
|
+
result: Boolean
|
|
4007
4044
|
scenario: Scenario
|
|
4008
4045
|
sequence: Float
|
|
4009
4046
|
skip: Boolean
|
|
@@ -4025,6 +4062,7 @@ input StepPatch {
|
|
|
4025
4062
|
log: Boolean
|
|
4026
4063
|
name: String
|
|
4027
4064
|
params: String
|
|
4065
|
+
result: Boolean
|
|
4028
4066
|
sequence: Int
|
|
4029
4067
|
skip: Boolean
|
|
4030
4068
|
task: String
|
|
@@ -4086,6 +4124,35 @@ input TerminologyPatch {
|
|
|
4086
4124
|
name: String
|
|
4087
4125
|
}
|
|
4088
4126
|
|
|
4127
|
+
"""Entity for Theme"""
|
|
4128
|
+
type Theme {
|
|
4129
|
+
createdAt: Timestamp
|
|
4130
|
+
creator: User
|
|
4131
|
+
deletedAt: Timestamp
|
|
4132
|
+
description: String
|
|
4133
|
+
domain: Domain
|
|
4134
|
+
id: ID!
|
|
4135
|
+
name: String
|
|
4136
|
+
type: String
|
|
4137
|
+
updatedAt: Timestamp
|
|
4138
|
+
updater: User
|
|
4139
|
+
value: Object
|
|
4140
|
+
}
|
|
4141
|
+
|
|
4142
|
+
type ThemeList {
|
|
4143
|
+
items: [Theme!]!
|
|
4144
|
+
total: Int!
|
|
4145
|
+
}
|
|
4146
|
+
|
|
4147
|
+
input ThemePatch {
|
|
4148
|
+
cuFlag: String
|
|
4149
|
+
description: String
|
|
4150
|
+
id: ID
|
|
4151
|
+
name: String
|
|
4152
|
+
type: String
|
|
4153
|
+
value: Object
|
|
4154
|
+
}
|
|
4155
|
+
|
|
4089
4156
|
"""
|
|
4090
4157
|
The javascript `Date` as integer. Type represents date and time as number of milliseconds from start of UNIX epoch.
|
|
4091
4158
|
"""
|