@things-factory/operato-gangsters 6.1.23 → 6.1.24
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 +78 -77
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.24",
|
|
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.23",
|
|
80
80
|
"@things-factory/shell": "^6.1.23",
|
|
81
81
|
"@things-factory/system-ui": "^6.1.23",
|
|
82
|
-
"@things-factory/worklist": "^6.1.
|
|
82
|
+
"@things-factory/worklist": "^6.1.24"
|
|
83
83
|
},
|
|
84
84
|
"devDependencies": {
|
|
85
85
|
"@things-factory/builder": "^6.1.23"
|
|
86
86
|
},
|
|
87
|
-
"gitHead": "
|
|
87
|
+
"gitHead": "937547135c52acc7551933e86a589fa0a122b2a5"
|
|
88
88
|
}
|
package/schema.gql
CHANGED
|
@@ -134,6 +134,7 @@ type ActivityInstance {
|
|
|
134
134
|
assignedAt: Timestamp
|
|
135
135
|
assigneeRole: Role
|
|
136
136
|
assignees: [AssigneeItem!]
|
|
137
|
+
bizKeys: Role!
|
|
137
138
|
createdAt: Timestamp
|
|
138
139
|
creator: User
|
|
139
140
|
description: String
|
|
@@ -1930,11 +1931,11 @@ type Mutation {
|
|
|
1930
1931
|
"""To create new ApprovalLine for current user"""
|
|
1931
1932
|
createMyApprovalLine(approvalLine: NewApprovalLine!): ApprovalLine!
|
|
1932
1933
|
|
|
1933
|
-
"""To create new NotiRule"""
|
|
1934
|
-
createNotiRule(notiRule: NewNotiRule!): NotiRule!
|
|
1935
|
-
|
|
1936
1934
|
"""To create new Notification"""
|
|
1937
|
-
createNotification(
|
|
1935
|
+
createNotification(notification: NewNotification!): Notification!
|
|
1936
|
+
|
|
1937
|
+
"""To create new NotificationRule"""
|
|
1938
|
+
createNotificationRule(notificationRule: NewNotificationRule!): NotificationRule!
|
|
1938
1939
|
|
|
1939
1940
|
"""To create new Oauth2Client"""
|
|
1940
1941
|
createOauth2Client(oauth2Client: NewOauth2Client!): Oauth2Client!
|
|
@@ -1970,7 +1971,7 @@ type Mutation {
|
|
|
1970
1971
|
delegateActivityApproval(comment: String, id: String!, to: ObjectRef!): ActivityApproval
|
|
1971
1972
|
|
|
1972
1973
|
"""To delegate a ActivityThread"""
|
|
1973
|
-
delegateActivityThread(
|
|
1974
|
+
delegateActivityThread(assignee: ObjectRef, dueAt: Timestamp, id: String!, reason: String): ActivityThread!
|
|
1974
1975
|
|
|
1975
1976
|
"""To delete multiple Activities"""
|
|
1976
1977
|
deleteActivities(ids: [String!]!): Boolean!
|
|
@@ -2122,15 +2123,15 @@ type Mutation {
|
|
|
2122
2123
|
"""To delete multiple ApprovalLines for current user"""
|
|
2123
2124
|
deleteMyApprovalLines(ids: [String!]!): Boolean!
|
|
2124
2125
|
|
|
2125
|
-
"""To delete NotiRule"""
|
|
2126
|
-
deleteNotiRule(id: String!): Boolean!
|
|
2127
|
-
|
|
2128
|
-
"""To delete multiple NotiRules"""
|
|
2129
|
-
deleteNotiRules(ids: [String!]!): Boolean!
|
|
2130
|
-
|
|
2131
2126
|
"""To delete Notification"""
|
|
2132
2127
|
deleteNotification(id: String!): Boolean!
|
|
2133
2128
|
|
|
2129
|
+
"""To delete NotificationRule"""
|
|
2130
|
+
deleteNotificationRule(id: String!): Boolean!
|
|
2131
|
+
|
|
2132
|
+
"""To delete multiple NotificationRules"""
|
|
2133
|
+
deleteNotificationRules(ids: [String!]!): Boolean!
|
|
2134
|
+
|
|
2134
2135
|
"""To delete multiple Notificationes"""
|
|
2135
2136
|
deleteNotificationes(ids: [String!]!): Boolean!
|
|
2136
2137
|
|
|
@@ -2257,8 +2258,8 @@ type Mutation {
|
|
|
2257
2258
|
"""To import multiple Menus"""
|
|
2258
2259
|
importMenus(menus: [MenuPatch!]!): Boolean!
|
|
2259
2260
|
|
|
2260
|
-
"""To import multiple
|
|
2261
|
-
|
|
2261
|
+
"""To import multiple NotificationRules"""
|
|
2262
|
+
importNotificationRules(notificationRules: [NotificationRulePatch!]!): Boolean!
|
|
2262
2263
|
|
|
2263
2264
|
"""To import multiple Oauth2Clients"""
|
|
2264
2265
|
importOauth2Clients(oauth2Clients: [Oauth2ClientPatch!]!): Boolean!
|
|
@@ -2473,12 +2474,12 @@ type Mutation {
|
|
|
2473
2474
|
"""To modify multiple ApprovalLines' information for current user"""
|
|
2474
2475
|
updateMultipleMyApprovalLine(patches: [ApprovalLinePatch!]!): [ApprovalLine!]!
|
|
2475
2476
|
|
|
2476
|
-
"""To modify multiple NotiRules' information"""
|
|
2477
|
-
updateMultipleNotiRule(patches: [NotiRulePatch!]!): [NotiRule!]!
|
|
2478
|
-
|
|
2479
2477
|
"""To modify multiple Notificationes' information"""
|
|
2480
2478
|
updateMultipleNotification(patches: [NotificationPatch!]!): [Notification!]!
|
|
2481
2479
|
|
|
2480
|
+
"""To modify multiple NotificationRules' information"""
|
|
2481
|
+
updateMultipleNotificationRule(patches: [NotificationRulePatch!]!): [NotificationRule!]!
|
|
2482
|
+
|
|
2482
2483
|
"""To modify multiple PartnerSettings' information"""
|
|
2483
2484
|
updateMultiplePartnerSetting(patches: [PartnerSettingPatch!]!): [PartnerSetting!]!
|
|
2484
2485
|
|
|
@@ -2503,12 +2504,12 @@ type Mutation {
|
|
|
2503
2504
|
"""To modify ApprovalLine information for current user"""
|
|
2504
2505
|
updateMyApprovalLine(id: String!, patch: ApprovalLinePatch!): ApprovalLine!
|
|
2505
2506
|
|
|
2506
|
-
"""To modify NotiRule information"""
|
|
2507
|
-
updateNotiRule(id: String!, patch: NotiRulePatch!): NotiRule!
|
|
2508
|
-
|
|
2509
2507
|
"""To modify Notification information"""
|
|
2510
2508
|
updateNotification(id: String!, patch: NotificationPatch!): Notification!
|
|
2511
2509
|
|
|
2510
|
+
"""To modify NotificationRule information"""
|
|
2511
|
+
updateNotificationRule(id: String!, patch: NotificationRulePatch!): NotificationRule!
|
|
2512
|
+
|
|
2512
2513
|
"""To modify Oauth2Client information"""
|
|
2513
2514
|
updateOauth2Client(id: String!, patch: Oauth2ClientPatch!): Oauth2Client!
|
|
2514
2515
|
|
|
@@ -2928,17 +2929,6 @@ input NewMenuDetailColumn {
|
|
|
2928
2929
|
virtualField: Boolean
|
|
2929
2930
|
}
|
|
2930
2931
|
|
|
2931
|
-
input NewNotiRule {
|
|
2932
|
-
active: Boolean
|
|
2933
|
-
body: String
|
|
2934
|
-
description: String
|
|
2935
|
-
name: String!
|
|
2936
|
-
state: NotiRuleStatus
|
|
2937
|
-
thumbnail: Upload
|
|
2938
|
-
title: String
|
|
2939
|
-
url: String
|
|
2940
|
-
}
|
|
2941
|
-
|
|
2942
2932
|
input NewNotification {
|
|
2943
2933
|
body: String
|
|
2944
2934
|
image: String
|
|
@@ -2951,6 +2941,17 @@ input NewNotification {
|
|
|
2951
2941
|
url: String
|
|
2952
2942
|
}
|
|
2953
2943
|
|
|
2944
|
+
input NewNotificationRule {
|
|
2945
|
+
active: Boolean
|
|
2946
|
+
body: String
|
|
2947
|
+
description: String
|
|
2948
|
+
name: String!
|
|
2949
|
+
state: NotificationRuleStatus
|
|
2950
|
+
thumbnail: Upload
|
|
2951
|
+
title: String
|
|
2952
|
+
url: String
|
|
2953
|
+
}
|
|
2954
|
+
|
|
2954
2955
|
input NewOauth2Client {
|
|
2955
2956
|
accessToken: String
|
|
2956
2957
|
accessTokenUrl: String
|
|
@@ -3038,84 +3039,84 @@ input NewUserByDomainWizardInput {
|
|
|
3038
3039
|
roles: [NewRole!]!
|
|
3039
3040
|
}
|
|
3040
3041
|
|
|
3041
|
-
"""Entity for
|
|
3042
|
-
type
|
|
3042
|
+
"""Entity for Notification"""
|
|
3043
|
+
type Notification {
|
|
3043
3044
|
body: String
|
|
3044
|
-
channels: String
|
|
3045
3045
|
createdAt: Timestamp
|
|
3046
3046
|
creator: User
|
|
3047
|
-
deletedAt: Timestamp
|
|
3048
|
-
description: String
|
|
3049
3047
|
domain: Domain
|
|
3050
3048
|
id: ID!
|
|
3051
|
-
|
|
3052
|
-
|
|
3053
|
-
|
|
3054
|
-
recipients: [RecipientItem!]
|
|
3049
|
+
image: String
|
|
3050
|
+
owner: User
|
|
3051
|
+
property: Object
|
|
3055
3052
|
state: String
|
|
3056
|
-
|
|
3053
|
+
subject: String
|
|
3054
|
+
timestamp: Date
|
|
3057
3055
|
title: String
|
|
3056
|
+
type: String
|
|
3058
3057
|
updatedAt: Timestamp
|
|
3059
3058
|
updater: User
|
|
3060
3059
|
url: String
|
|
3061
|
-
version: Float
|
|
3062
3060
|
}
|
|
3063
3061
|
|
|
3064
|
-
type
|
|
3065
|
-
items: [
|
|
3062
|
+
type NotificationList {
|
|
3063
|
+
items: [Notification!]!
|
|
3066
3064
|
total: Int!
|
|
3067
3065
|
}
|
|
3068
3066
|
|
|
3069
|
-
input
|
|
3070
|
-
body: String
|
|
3067
|
+
input NotificationPatch {
|
|
3071
3068
|
cuFlag: String
|
|
3072
|
-
description: String
|
|
3073
3069
|
id: ID
|
|
3074
|
-
|
|
3075
|
-
state: NotiRuleStatus
|
|
3076
|
-
thumbnail: Upload
|
|
3077
|
-
title: String
|
|
3078
|
-
url: String
|
|
3079
|
-
}
|
|
3080
|
-
|
|
3081
|
-
"""state enumeration of a notiRule"""
|
|
3082
|
-
enum NotiRuleStatus {
|
|
3083
|
-
DRAFT
|
|
3084
|
-
RELEASED
|
|
3070
|
+
state: NotificationStatus
|
|
3085
3071
|
}
|
|
3086
3072
|
|
|
3087
|
-
"""Entity for
|
|
3088
|
-
type
|
|
3073
|
+
"""Entity for NotificationRule"""
|
|
3074
|
+
type NotificationRule {
|
|
3089
3075
|
body: String
|
|
3076
|
+
channels: String
|
|
3090
3077
|
createdAt: Timestamp
|
|
3091
3078
|
creator: User
|
|
3079
|
+
deletedAt: Timestamp
|
|
3080
|
+
description: String
|
|
3092
3081
|
domain: Domain
|
|
3093
3082
|
id: ID!
|
|
3094
|
-
|
|
3095
|
-
|
|
3096
|
-
|
|
3083
|
+
name: String
|
|
3084
|
+
|
|
3085
|
+
"""notification recipients."""
|
|
3086
|
+
recipients: [RecipientItem!]
|
|
3097
3087
|
state: String
|
|
3098
|
-
|
|
3099
|
-
timestamp: Date
|
|
3088
|
+
thumbnail: String
|
|
3100
3089
|
title: String
|
|
3101
|
-
type: String
|
|
3102
3090
|
updatedAt: Timestamp
|
|
3103
3091
|
updater: User
|
|
3104
3092
|
url: String
|
|
3093
|
+
version: Float
|
|
3105
3094
|
}
|
|
3106
3095
|
|
|
3107
|
-
type
|
|
3108
|
-
items: [
|
|
3096
|
+
type NotificationRuleList {
|
|
3097
|
+
items: [NotificationRule!]!
|
|
3109
3098
|
total: Int!
|
|
3110
3099
|
}
|
|
3111
3100
|
|
|
3112
|
-
input
|
|
3101
|
+
input NotificationRulePatch {
|
|
3102
|
+
body: String
|
|
3113
3103
|
cuFlag: String
|
|
3104
|
+
description: String
|
|
3114
3105
|
id: ID
|
|
3115
|
-
|
|
3106
|
+
name: String
|
|
3107
|
+
state: NotificationRuleStatus
|
|
3108
|
+
thumbnail: Upload
|
|
3109
|
+
title: String
|
|
3110
|
+
url: String
|
|
3116
3111
|
}
|
|
3117
3112
|
|
|
3118
|
-
"""state enumeration of a
|
|
3113
|
+
"""state enumeration of a notificationRule"""
|
|
3114
|
+
enum NotificationRuleStatus {
|
|
3115
|
+
DRAFT
|
|
3116
|
+
RELEASED
|
|
3117
|
+
}
|
|
3118
|
+
|
|
3119
|
+
"""state enumeration of a notification"""
|
|
3119
3120
|
enum NotificationStatus {
|
|
3120
3121
|
NOTREAD
|
|
3121
3122
|
READ
|
|
@@ -3700,16 +3701,16 @@ type Query {
|
|
|
3700
3701
|
myRoles: [Role!]!
|
|
3701
3702
|
|
|
3702
3703
|
"""To fetch a Notification"""
|
|
3703
|
-
|
|
3704
|
+
notification(id: String!): Notification
|
|
3704
3705
|
|
|
3705
|
-
"""To fetch
|
|
3706
|
-
|
|
3706
|
+
"""To fetch a NotificationRule"""
|
|
3707
|
+
notificationRule(id: String!): NotificationRule
|
|
3707
3708
|
|
|
3708
|
-
"""To fetch
|
|
3709
|
-
|
|
3709
|
+
"""To fetch multiple NotificationRules"""
|
|
3710
|
+
notificationRules(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): NotificationRuleList!
|
|
3710
3711
|
|
|
3711
|
-
"""To fetch multiple
|
|
3712
|
-
|
|
3712
|
+
"""To fetch multiple Notificationes"""
|
|
3713
|
+
notificationes(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): NotificationList!
|
|
3713
3714
|
|
|
3714
3715
|
"""To fetch a Oauth2Client"""
|
|
3715
3716
|
oauth2Client(id: String!): Oauth2Client
|