@hatiolab/things-scene 3.3.27 → 3.3.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/db.sqlite +0 -0
- package/package.json +1 -1
- package/schema.gql +15 -0
- package/things-scene-ie.js +1 -1
- package/things-scene-min.js +1 -1
- package/things-scene.d.ts +1 -0
- package/things-scene.mjs +2 -2
package/db.sqlite
CHANGED
|
Binary file
|
package/package.json
CHANGED
package/schema.gql
CHANGED
|
@@ -1043,6 +1043,11 @@ type LoginHistory {
|
|
|
1043
1043
|
id: ID!
|
|
1044
1044
|
}
|
|
1045
1045
|
|
|
1046
|
+
type LoginHistoryList {
|
|
1047
|
+
items: [LoginHistory!]!
|
|
1048
|
+
total: Int!
|
|
1049
|
+
}
|
|
1050
|
+
|
|
1046
1051
|
"""Entity for Menu"""
|
|
1047
1052
|
type Menu {
|
|
1048
1053
|
buttons: [MenuButton!]!
|
|
@@ -2697,6 +2702,8 @@ input ObjectRefApprovalLineOwnerType {
|
|
|
2697
2702
|
}
|
|
2698
2703
|
|
|
2699
2704
|
input ObjectRefForEmployee {
|
|
2705
|
+
active: Boolean
|
|
2706
|
+
alias: String
|
|
2700
2707
|
controlNo: String
|
|
2701
2708
|
|
|
2702
2709
|
"""Field description"""
|
|
@@ -3139,9 +3146,15 @@ type Query {
|
|
|
3139
3146
|
hasPrivilege(category: String!, name: String!): Boolean!
|
|
3140
3147
|
i18nCompletion(input: i18nCompletionInput!): i18nCompletionOutput!
|
|
3141
3148
|
imageCompletion(input: ImageCompletionInput!): ImageCompletionOutput!
|
|
3149
|
+
|
|
3150
|
+
"""To fetch integration Analyses"""
|
|
3151
|
+
integrationAnalysis: Object!
|
|
3142
3152
|
invitation(email: String!, reference: String!, type: String!): Invitation!
|
|
3143
3153
|
invitations(reference: String!, type: String!): InvitationList!
|
|
3144
3154
|
|
|
3155
|
+
"""To fetch multiple LoginHistories"""
|
|
3156
|
+
loginHistories(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): LoginHistoryList!
|
|
3157
|
+
|
|
3145
3158
|
"""To fetch a Menu"""
|
|
3146
3159
|
menu(id: String!): Menu!
|
|
3147
3160
|
|
|
@@ -3362,6 +3375,7 @@ type RolePrivilege {
|
|
|
3362
3375
|
type Scenario {
|
|
3363
3376
|
"""[will be deprecated] automatically be started when this server start"""
|
|
3364
3377
|
active: Boolean
|
|
3378
|
+
connectionNames: [Connection!]!
|
|
3365
3379
|
createdAt: Timestamp
|
|
3366
3380
|
creator: User
|
|
3367
3381
|
description: String
|
|
@@ -3372,6 +3386,7 @@ type Scenario {
|
|
|
3372
3386
|
|
|
3373
3387
|
"""accessible and executable system-wide"""
|
|
3374
3388
|
public: Boolean
|
|
3389
|
+
publishTags: [Connection!]!
|
|
3375
3390
|
schedule: String
|
|
3376
3391
|
scheduleId: String
|
|
3377
3392
|
state: String
|