@things-factory/operato-dataset 9.0.0-beta.2 → 9.0.0-beta.21
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/_index.html +0 -1
- package/dist-client/tsconfig.tsbuildinfo +1 -1
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- package/package.json +40 -40
- package/schema.graphql +183 -33
- package/views/auth-page.html +0 -1
- package/views/public/home.html +0 -1
package/schema.graphql
CHANGED
|
@@ -89,6 +89,7 @@ type Activity {
|
|
|
89
89
|
type ActivityApproval {
|
|
90
90
|
activityThread: ActivityThread
|
|
91
91
|
approver: User
|
|
92
|
+
approverRole: Role
|
|
92
93
|
comment: String
|
|
93
94
|
createdAt: DateTimeISO
|
|
94
95
|
creator: User
|
|
@@ -484,6 +485,7 @@ type AppBinding {
|
|
|
484
485
|
updatedAt: DateTimeISO
|
|
485
486
|
updater: User!
|
|
486
487
|
userType: String
|
|
488
|
+
username: String
|
|
487
489
|
usersAuthProviders: [UsersAuthProviders!]
|
|
488
490
|
}
|
|
489
491
|
|
|
@@ -651,6 +653,7 @@ type Attachment {
|
|
|
651
653
|
refBy: String
|
|
652
654
|
refType: String
|
|
653
655
|
size: String!
|
|
656
|
+
tags: Object
|
|
654
657
|
updatedAt: DateTimeISO!
|
|
655
658
|
updater: User
|
|
656
659
|
}
|
|
@@ -669,6 +672,7 @@ input AttachmentPatch {
|
|
|
669
672
|
name: String
|
|
670
673
|
refBy: String
|
|
671
674
|
refType: String
|
|
675
|
+
tags: Object
|
|
672
676
|
}
|
|
673
677
|
|
|
674
678
|
"""Entity for AttributeSet"""
|
|
@@ -1225,6 +1229,7 @@ enum DataItemType {
|
|
|
1225
1229
|
number
|
|
1226
1230
|
radio
|
|
1227
1231
|
select
|
|
1232
|
+
signature
|
|
1228
1233
|
text
|
|
1229
1234
|
}
|
|
1230
1235
|
|
|
@@ -1431,6 +1436,8 @@ input DataSensorPatch {
|
|
|
1431
1436
|
type DataSet {
|
|
1432
1437
|
"""Indicates whether the dataset is currently active or in use."""
|
|
1433
1438
|
active: Boolean
|
|
1439
|
+
|
|
1440
|
+
"""Retrieves the approval line items for the dataset"""
|
|
1434
1441
|
approvalLine: [ApprovalLineItem!]!
|
|
1435
1442
|
|
|
1436
1443
|
"""Who to contact for OOC issues"""
|
|
@@ -1453,6 +1460,8 @@ type DataSet {
|
|
|
1453
1460
|
|
|
1454
1461
|
"""The domain to which the dataset belongs"""
|
|
1455
1462
|
domain: Domain
|
|
1463
|
+
|
|
1464
|
+
"""Retrieves the entry board for the dataset"""
|
|
1456
1465
|
entryBoard: Board
|
|
1457
1466
|
|
|
1458
1467
|
"""The person responsible for manually entering the data for that dataset"""
|
|
@@ -1470,7 +1479,17 @@ type DataSet {
|
|
|
1470
1479
|
|
|
1471
1480
|
"""The unique identifier of the dataset"""
|
|
1472
1481
|
id: ID!
|
|
1482
|
+
|
|
1483
|
+
"""Whether the user is allowed to enter data for this dataset"""
|
|
1484
|
+
isEntryAllowed: Boolean!
|
|
1485
|
+
|
|
1486
|
+
"""Whether the user is a supervisor for this dataset"""
|
|
1487
|
+
isSupervisor: Boolean!
|
|
1488
|
+
|
|
1489
|
+
"""Retrieves the latest collection time for the dataset."""
|
|
1473
1490
|
latestCollectedAt: DateTimeISO
|
|
1491
|
+
|
|
1492
|
+
"""Retrieves the monitor board for the dataset"""
|
|
1474
1493
|
monitorBoard: Board
|
|
1475
1494
|
|
|
1476
1495
|
"""
|
|
@@ -1485,7 +1504,11 @@ type DataSet {
|
|
|
1485
1504
|
|
|
1486
1505
|
"""The name of the dataset"""
|
|
1487
1506
|
name: String!
|
|
1507
|
+
|
|
1508
|
+
"""Retrieves the next schedule time for the dataset."""
|
|
1488
1509
|
nextSchedule: DateTimeISO
|
|
1510
|
+
|
|
1511
|
+
"""Retrieves the next summary schedule time for the dataset."""
|
|
1489
1512
|
nextSummarySchedule: DateTimeISO
|
|
1490
1513
|
|
|
1491
1514
|
"""Scenario for handling normal data-sample occurance for that dataset"""
|
|
@@ -1505,6 +1528,8 @@ type DataSet {
|
|
|
1505
1528
|
Specifies the partition keys used to distribute and organize the dataset's data. Partition keys are properties or attributes that determine how data is logically grouped, stored, and retrieved. They enable efficient data management and querying by allowing data to be organized into smaller, manageable partitions or segments.
|
|
1506
1529
|
"""
|
|
1507
1530
|
partitionKeys: Object
|
|
1531
|
+
|
|
1532
|
+
"""Retrieves the previous schedule time for the dataset."""
|
|
1508
1533
|
prevSchedule: DateTimeISO
|
|
1509
1534
|
|
|
1510
1535
|
"""The report template of the dataset"""
|
|
@@ -1523,6 +1548,9 @@ type DataSet {
|
|
|
1523
1548
|
"""Indicates if the dataset requires review"""
|
|
1524
1549
|
requiresReview: Boolean
|
|
1525
1550
|
|
|
1551
|
+
"""The final authority on resolving outlier related to that dataset."""
|
|
1552
|
+
resolverRole: Role
|
|
1553
|
+
|
|
1526
1554
|
"""Approval line for confrim of the dataset"""
|
|
1527
1555
|
reviewApprovalLine: [ApprovalLineItem!]
|
|
1528
1556
|
|
|
@@ -1548,6 +1576,11 @@ type DataSet {
|
|
|
1548
1576
|
"""A tag name of data to be published when a data sample created"""
|
|
1549
1577
|
tag: String
|
|
1550
1578
|
|
|
1579
|
+
"""
|
|
1580
|
+
The maximum allowed time limit (in seconds) for completing the data entry operation
|
|
1581
|
+
"""
|
|
1582
|
+
timeLimit: Float
|
|
1583
|
+
|
|
1551
1584
|
"""The timezone of the dataset"""
|
|
1552
1585
|
timezone: String
|
|
1553
1586
|
|
|
@@ -1628,7 +1661,6 @@ type DataSetList {
|
|
|
1628
1661
|
|
|
1629
1662
|
input DataSetPatch {
|
|
1630
1663
|
active: Boolean
|
|
1631
|
-
assignees: Object
|
|
1632
1664
|
cuFlag: String!
|
|
1633
1665
|
dataItems: [DataItemPatch!]
|
|
1634
1666
|
dataKeySet: ObjectRef
|
|
@@ -1648,6 +1680,7 @@ input DataSetPatch {
|
|
|
1648
1680
|
reportType: String
|
|
1649
1681
|
reportView: String
|
|
1650
1682
|
requiresReview: Boolean
|
|
1683
|
+
resolverRole: ObjectRef
|
|
1651
1684
|
reviewApprovalLine: Object
|
|
1652
1685
|
schedule: String
|
|
1653
1686
|
summaryPeriod: String
|
|
@@ -1655,6 +1688,11 @@ input DataSetPatch {
|
|
|
1655
1688
|
|
|
1656
1689
|
"""A tag name of data to be published when a data sample created"""
|
|
1657
1690
|
tag: String
|
|
1691
|
+
|
|
1692
|
+
"""
|
|
1693
|
+
The maximum allowed time limit (in seconds) for completing the data entry operation
|
|
1694
|
+
"""
|
|
1695
|
+
timeLimit: Float
|
|
1658
1696
|
timezone: String
|
|
1659
1697
|
type: String
|
|
1660
1698
|
useCase: String
|
|
@@ -1870,6 +1908,8 @@ type Employee {
|
|
|
1870
1908
|
address: String
|
|
1871
1909
|
alias: String
|
|
1872
1910
|
approvalLines: [ApprovalLine!]!
|
|
1911
|
+
bankAccount: String
|
|
1912
|
+
bankName: String
|
|
1873
1913
|
contact: Contact
|
|
1874
1914
|
controlNo: String!
|
|
1875
1915
|
createdAt: DateTimeISO
|
|
@@ -1878,8 +1918,10 @@ type Employee {
|
|
|
1878
1918
|
department: Department
|
|
1879
1919
|
domain: Domain!
|
|
1880
1920
|
email: EmailAddress
|
|
1921
|
+
emergencyContact: String
|
|
1922
|
+
emergencyContactPhone: String
|
|
1881
1923
|
extension: String
|
|
1882
|
-
hiredOn:
|
|
1924
|
+
hiredOn: DateTimeISO
|
|
1883
1925
|
id: ID!
|
|
1884
1926
|
jobPosition: String
|
|
1885
1927
|
jobResponsibility: String
|
|
@@ -1889,7 +1931,7 @@ type Employee {
|
|
|
1889
1931
|
phone: String
|
|
1890
1932
|
photo: String
|
|
1891
1933
|
profile: Profile
|
|
1892
|
-
|
|
1934
|
+
retiredOn: DateTimeISO
|
|
1893
1935
|
supervises: [Employee!]!
|
|
1894
1936
|
supervisor: Employee
|
|
1895
1937
|
type: String
|
|
@@ -1907,18 +1949,22 @@ type EmployeeList {
|
|
|
1907
1949
|
input EmployeePatch {
|
|
1908
1950
|
active: Boolean
|
|
1909
1951
|
alias: String
|
|
1952
|
+
bankAccount: String
|
|
1953
|
+
bankName: String
|
|
1910
1954
|
contact: ObjectRefForContact
|
|
1911
1955
|
controlNo: String
|
|
1912
1956
|
cuFlag: String
|
|
1913
1957
|
department: ObjectRefForDepartment
|
|
1914
|
-
|
|
1958
|
+
emergencyContact: String
|
|
1959
|
+
emergencyContactPhone: String
|
|
1960
|
+
hiredOn: DateTimeISO
|
|
1915
1961
|
id: ID
|
|
1916
1962
|
jobPosition: String
|
|
1917
1963
|
jobResponsibility: String
|
|
1918
1964
|
name: String
|
|
1919
1965
|
note: String
|
|
1920
1966
|
photo: Upload
|
|
1921
|
-
|
|
1967
|
+
retiredOn: DateTimeISO
|
|
1922
1968
|
supervisor: ObjectRefForEmployee
|
|
1923
1969
|
type: EmployeeType
|
|
1924
1970
|
user: ObjectRefForUser
|
|
@@ -2273,18 +2319,23 @@ type LiteMenu {
|
|
|
2273
2319
|
active: Boolean
|
|
2274
2320
|
appName: String
|
|
2275
2321
|
board: Board
|
|
2322
|
+
|
|
2323
|
+
"""Settings for help contents"""
|
|
2276
2324
|
createdAt: DateTimeISO
|
|
2277
2325
|
creator: User
|
|
2278
2326
|
description: String
|
|
2279
2327
|
domain: Domain!
|
|
2328
|
+
help: String
|
|
2280
2329
|
icon: String
|
|
2281
2330
|
id: ID!
|
|
2282
2331
|
label: String!
|
|
2332
|
+
|
|
2333
|
+
"""Settings for multilingual titles"""
|
|
2283
2334
|
labels: Object
|
|
2284
2335
|
name: String!
|
|
2285
2336
|
parent: String
|
|
2286
|
-
privilege: PrivilegeObject
|
|
2287
2337
|
rank: Int
|
|
2338
|
+
role: Role
|
|
2288
2339
|
type: String
|
|
2289
2340
|
updatedAt: DateTimeISO
|
|
2290
2341
|
updater: User
|
|
@@ -2300,12 +2351,13 @@ input LiteMenuPatch {
|
|
|
2300
2351
|
active: Boolean
|
|
2301
2352
|
appName: String
|
|
2302
2353
|
description: String
|
|
2354
|
+
help: String
|
|
2303
2355
|
icon: String
|
|
2304
2356
|
labels: Object
|
|
2305
2357
|
name: String
|
|
2306
2358
|
parent: String
|
|
2307
|
-
privilege: PrivilegeInput
|
|
2308
2359
|
rank: Int
|
|
2360
|
+
role: ObjectRef
|
|
2309
2361
|
type: String
|
|
2310
2362
|
value: String
|
|
2311
2363
|
}
|
|
@@ -2360,7 +2412,6 @@ type Menu {
|
|
|
2360
2412
|
name: String
|
|
2361
2413
|
pagination: Boolean
|
|
2362
2414
|
parent: Menu
|
|
2363
|
-
privilege: PrivilegeObject
|
|
2364
2415
|
rank: Float
|
|
2365
2416
|
resourceId: String
|
|
2366
2417
|
resourceName: String
|
|
@@ -2682,7 +2733,6 @@ input MenuPatch {
|
|
|
2682
2733
|
name: String
|
|
2683
2734
|
pagination: Boolean
|
|
2684
2735
|
parent: ObjectRef
|
|
2685
|
-
privilege: PrivilegeInput
|
|
2686
2736
|
rank: Int
|
|
2687
2737
|
resourceId: String
|
|
2688
2738
|
resourceName: String
|
|
@@ -2707,7 +2757,7 @@ type Mutation {
|
|
|
2707
2757
|
activateInstallableActivity(name: String!): Activity!
|
|
2708
2758
|
|
|
2709
2759
|
"""To activate user"""
|
|
2710
|
-
activateUser(
|
|
2760
|
+
activateUser(username: String!): Boolean!
|
|
2711
2761
|
|
|
2712
2762
|
"""To approve ActivityApproval"""
|
|
2713
2763
|
approveActivityApproval(comment: String, id: String!): ActivityApproval
|
|
@@ -3012,7 +3062,7 @@ type Mutation {
|
|
|
3012
3062
|
deleteDomain(name: String!): Domain!
|
|
3013
3063
|
|
|
3014
3064
|
"""To delete domain user"""
|
|
3015
|
-
deleteDomainUser(
|
|
3065
|
+
deleteDomainUser(username: String!): Boolean!
|
|
3016
3066
|
|
|
3017
3067
|
"""To delete multiple domains (Only superuser is granted this privilege.)"""
|
|
3018
3068
|
deleteDomains(names: [String!]!): Boolean!
|
|
@@ -3190,7 +3240,7 @@ type Mutation {
|
|
|
3190
3240
|
deleteThemes(ids: [String!]!): Boolean!
|
|
3191
3241
|
|
|
3192
3242
|
"""To delete a user"""
|
|
3193
|
-
deleteUser(
|
|
3243
|
+
deleteUser(username: String!): Boolean!
|
|
3194
3244
|
|
|
3195
3245
|
"""To delete UserPreference"""
|
|
3196
3246
|
deleteUserPreference(id: String!): Boolean!
|
|
@@ -3199,7 +3249,7 @@ type Mutation {
|
|
|
3199
3249
|
deleteUserPreferences(ids: [String!]!): Boolean!
|
|
3200
3250
|
|
|
3201
3251
|
"""To delete some users"""
|
|
3202
|
-
deleteUsers(
|
|
3252
|
+
deleteUsers(usernames: [String!]!): Boolean!
|
|
3203
3253
|
|
|
3204
3254
|
"""To delete multiple workShifts"""
|
|
3205
3255
|
deleteWorkShifts(ids: [String!]!): Boolean!
|
|
@@ -3329,15 +3379,18 @@ type Mutation {
|
|
|
3329
3379
|
importThemes(themes: [ThemePatch!]!): Boolean!
|
|
3330
3380
|
|
|
3331
3381
|
"""To inactivate user"""
|
|
3332
|
-
inactivateUser(
|
|
3382
|
+
inactivateUser(username: String!): Boolean!
|
|
3333
3383
|
inviteCustomer(customerDomainName: String!): Boolean!
|
|
3334
3384
|
|
|
3335
3385
|
"""To invite new user"""
|
|
3336
|
-
inviteUser(
|
|
3386
|
+
inviteUser(username: String!): Boolean!
|
|
3337
3387
|
|
|
3338
3388
|
"""To issue standard ActivityInstance"""
|
|
3339
3389
|
issueActivityInstance(activityInstance: ActivityInstanceIssue!): ActivityInstance!
|
|
3340
3390
|
|
|
3391
|
+
"""To issue data-collection task for the given dataset"""
|
|
3392
|
+
issueDataCollection(dataSetId: String!): Boolean!
|
|
3393
|
+
|
|
3341
3394
|
"""To make the board to join the group"""
|
|
3342
3395
|
joinGroup(boardIds: [String!]!, id: String!): Group!
|
|
3343
3396
|
|
|
@@ -3378,6 +3431,7 @@ type Mutation {
|
|
|
3378
3431
|
"""Employee Id"""
|
|
3379
3432
|
employeeId: String!
|
|
3380
3433
|
): Boolean!
|
|
3434
|
+
registerSchedule(schedule: NewSchedule!): ID!
|
|
3381
3435
|
|
|
3382
3436
|
"""To reject ActivityApproval"""
|
|
3383
3437
|
rejectActivityApproval(comment: String, id: String!): ActivityApproval
|
|
@@ -3390,7 +3444,7 @@ type Mutation {
|
|
|
3390
3444
|
reorderPlayGroup(boardIds: [String!]!, id: String!): PlayGroup!
|
|
3391
3445
|
|
|
3392
3446
|
"""To reset password to default"""
|
|
3393
|
-
resetPasswordToDefault(
|
|
3447
|
+
resetPasswordToDefault(username: String!): Boolean!
|
|
3394
3448
|
|
|
3395
3449
|
"""To restart ActivityThread"""
|
|
3396
3450
|
restartActivityThread(id: String!, output: Object, reason: String): ActivityThread
|
|
@@ -3460,7 +3514,8 @@ type Mutation {
|
|
|
3460
3514
|
terminateContract(partnerName: String!): Boolean!
|
|
3461
3515
|
|
|
3462
3516
|
"""To transfer owner of domain"""
|
|
3463
|
-
transferOwner(
|
|
3517
|
+
transferOwner(username: String!): Boolean!
|
|
3518
|
+
unregisterSchedule(handle: ID!): Boolean!
|
|
3464
3519
|
|
|
3465
3520
|
"""To modify Activity information"""
|
|
3466
3521
|
updateActivity(id: String!, patch: ActivityPatch!): Activity!
|
|
@@ -3700,6 +3755,7 @@ type Mutation {
|
|
|
3700
3755
|
|
|
3701
3756
|
"""To modify scenario information"""
|
|
3702
3757
|
updateScenario(name: String!, patch: ScenarioPatch!): Scenario!
|
|
3758
|
+
updateSchedule(schedule: SchedulePatch!): ID!
|
|
3703
3759
|
|
|
3704
3760
|
"""To update secure IP list for domain"""
|
|
3705
3761
|
updateSecureIPList(iplist: Object!): Object
|
|
@@ -3726,7 +3782,7 @@ type Mutation {
|
|
|
3726
3782
|
updateUserPreference(id: String!, patch: UserPreferencePatch!): UserPreference!
|
|
3727
3783
|
|
|
3728
3784
|
"""To update roles for a user"""
|
|
3729
|
-
updateUserRoles(availableRoles: [ObjectRef!]!, selectedRoles: [ObjectRef!]!,
|
|
3785
|
+
updateUserRoles(availableRoles: [ObjectRef!]!, selectedRoles: [ObjectRef!]!, username: String!): User!
|
|
3730
3786
|
}
|
|
3731
3787
|
|
|
3732
3788
|
input NewActivity {
|
|
@@ -3810,6 +3866,7 @@ input NewAttachment {
|
|
|
3810
3866
|
file: Upload!
|
|
3811
3867
|
refBy: String
|
|
3812
3868
|
refType: String
|
|
3869
|
+
tags: Object
|
|
3813
3870
|
}
|
|
3814
3871
|
|
|
3815
3872
|
input NewAttributeSet {
|
|
@@ -3945,7 +4002,6 @@ input NewDataSensor {
|
|
|
3945
4002
|
|
|
3946
4003
|
input NewDataSet {
|
|
3947
4004
|
active: Boolean
|
|
3948
|
-
assignees: Object
|
|
3949
4005
|
dataItems: [DataItemPatch!]
|
|
3950
4006
|
dataKeySet: ObjectRef
|
|
3951
4007
|
description: String
|
|
@@ -3963,6 +4019,7 @@ input NewDataSet {
|
|
|
3963
4019
|
reportType: String
|
|
3964
4020
|
reportView: String
|
|
3965
4021
|
requiresReview: Boolean
|
|
4022
|
+
resolverRole: ObjectRef
|
|
3966
4023
|
reviewApprovalLine: Object
|
|
3967
4024
|
schedule: String
|
|
3968
4025
|
summaryPeriod: String
|
|
@@ -3970,6 +4027,11 @@ input NewDataSet {
|
|
|
3970
4027
|
|
|
3971
4028
|
"""A tag name of data to be published when a data sample created"""
|
|
3972
4029
|
tag: String
|
|
4030
|
+
|
|
4031
|
+
"""
|
|
4032
|
+
The maximum allowed time limit (in seconds) for completing the data entry operation
|
|
4033
|
+
"""
|
|
4034
|
+
timeLimit: Float
|
|
3973
4035
|
timezone: String
|
|
3974
4036
|
type: String
|
|
3975
4037
|
useCase: String
|
|
@@ -3989,17 +4051,21 @@ input NewDepartment {
|
|
|
3989
4051
|
input NewEmployee {
|
|
3990
4052
|
active: Boolean
|
|
3991
4053
|
alias: String
|
|
4054
|
+
bankAccount: String
|
|
4055
|
+
bankName: String
|
|
3992
4056
|
contact: ObjectRefForContact
|
|
3993
4057
|
controlNo: String!
|
|
3994
4058
|
department: ObjectRefForDepartment
|
|
4059
|
+
emergencyContact: String
|
|
4060
|
+
emergencyContactPhone: String
|
|
3995
4061
|
extension: String
|
|
3996
|
-
hiredOn:
|
|
4062
|
+
hiredOn: DateTimeISO
|
|
3997
4063
|
jobPosition: String
|
|
3998
4064
|
jobResponsibility: String
|
|
3999
4065
|
name: String!
|
|
4000
4066
|
note: String
|
|
4001
4067
|
photo: Upload
|
|
4002
|
-
|
|
4068
|
+
retiredOn: DateTimeISO
|
|
4003
4069
|
supervisor: ObjectRefForEmployee
|
|
4004
4070
|
type: EmployeeType
|
|
4005
4071
|
user: ObjectRefForUser
|
|
@@ -4085,12 +4151,13 @@ input NewLiteMenu {
|
|
|
4085
4151
|
active: Boolean
|
|
4086
4152
|
appName: String
|
|
4087
4153
|
description: String
|
|
4154
|
+
help: String
|
|
4088
4155
|
icon: String
|
|
4089
4156
|
labels: Object
|
|
4090
4157
|
name: String!
|
|
4091
4158
|
parent: String
|
|
4092
|
-
privilege: PrivilegeInput
|
|
4093
4159
|
rank: Int
|
|
4160
|
+
role: ObjectRef
|
|
4094
4161
|
type: String
|
|
4095
4162
|
value: String
|
|
4096
4163
|
}
|
|
@@ -4113,7 +4180,6 @@ input NewMenu {
|
|
|
4113
4180
|
name: String!
|
|
4114
4181
|
pagination: Boolean
|
|
4115
4182
|
parent: ObjectRef
|
|
4116
|
-
privilege: PrivilegeInput
|
|
4117
4183
|
rank: Int
|
|
4118
4184
|
resourceId: String
|
|
4119
4185
|
resourceName: String
|
|
@@ -4334,13 +4400,22 @@ input NewScenario {
|
|
|
4334
4400
|
active: Boolean
|
|
4335
4401
|
description: String
|
|
4336
4402
|
name: String!
|
|
4337
|
-
|
|
4403
|
+
role: ObjectRef
|
|
4338
4404
|
schedule: String
|
|
4339
4405
|
timezone: String
|
|
4340
4406
|
ttl: Float
|
|
4341
4407
|
type: String
|
|
4342
4408
|
}
|
|
4343
4409
|
|
|
4410
|
+
input NewSchedule {
|
|
4411
|
+
client: ScheduleClientInput!
|
|
4412
|
+
name: String!
|
|
4413
|
+
schedule: String
|
|
4414
|
+
task: ScheduleTaskInput!
|
|
4415
|
+
timezone: String
|
|
4416
|
+
type: String!
|
|
4417
|
+
}
|
|
4418
|
+
|
|
4344
4419
|
input NewSetting {
|
|
4345
4420
|
category: String!
|
|
4346
4421
|
description: String
|
|
@@ -4402,6 +4477,7 @@ input NewUser {
|
|
|
4402
4477
|
password: String
|
|
4403
4478
|
roles: [ObjectRef!]
|
|
4404
4479
|
userType: String
|
|
4480
|
+
username: String!
|
|
4405
4481
|
}
|
|
4406
4482
|
|
|
4407
4483
|
input NewUserByDomainWizardInput {
|
|
@@ -4622,7 +4698,7 @@ input ObjectRefForEmployee {
|
|
|
4622
4698
|
"""Field description"""
|
|
4623
4699
|
description: String
|
|
4624
4700
|
email: EmailAddress
|
|
4625
|
-
hiredOn:
|
|
4701
|
+
hiredOn: DateTimeISO
|
|
4626
4702
|
|
|
4627
4703
|
"""Field id"""
|
|
4628
4704
|
id: ID!
|
|
@@ -4873,13 +4949,6 @@ type Privilege {
|
|
|
4873
4949
|
updater: User
|
|
4874
4950
|
}
|
|
4875
4951
|
|
|
4876
|
-
input PrivilegeInput {
|
|
4877
|
-
category: String
|
|
4878
|
-
owner: Boolean
|
|
4879
|
-
privilege: String
|
|
4880
|
-
super: Boolean
|
|
4881
|
-
}
|
|
4882
|
-
|
|
4883
4952
|
type PrivilegeList {
|
|
4884
4953
|
items: [Privilege!]
|
|
4885
4954
|
total: Int
|
|
@@ -5469,6 +5538,10 @@ type Query {
|
|
|
5469
5538
|
|
|
5470
5539
|
"""To fetch multiple scenarios"""
|
|
5471
5540
|
scenarios(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ScenarioList!
|
|
5541
|
+
schedule(id: ID!): Schedule
|
|
5542
|
+
|
|
5543
|
+
"""To fetch multiple Schedules"""
|
|
5544
|
+
schedules(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ScheduleList!
|
|
5472
5545
|
searchCustomers(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DomainList!
|
|
5473
5546
|
|
|
5474
5547
|
"""To fetch domain"""
|
|
@@ -5653,6 +5726,7 @@ type Scenario {
|
|
|
5653
5726
|
"""accessible and executable system-wide"""
|
|
5654
5727
|
public: Boolean
|
|
5655
5728
|
publishTags: [Connection!]!
|
|
5729
|
+
role: Role
|
|
5656
5730
|
schedule: String
|
|
5657
5731
|
scheduleId: String
|
|
5658
5732
|
state: String
|
|
@@ -5734,7 +5808,7 @@ input ScenarioPatch {
|
|
|
5734
5808
|
description: String
|
|
5735
5809
|
id: ID
|
|
5736
5810
|
name: String
|
|
5737
|
-
|
|
5811
|
+
role: ObjectRef
|
|
5738
5812
|
schedule: String
|
|
5739
5813
|
steps: [StepPatch!]
|
|
5740
5814
|
timezone: String
|
|
@@ -5747,6 +5821,81 @@ type ScenarioQueueState {
|
|
|
5747
5821
|
queue: [PendingObject!]!
|
|
5748
5822
|
}
|
|
5749
5823
|
|
|
5824
|
+
type Schedule {
|
|
5825
|
+
client: ScheduleClient!
|
|
5826
|
+
id: ID!
|
|
5827
|
+
name: String
|
|
5828
|
+
schedule: String
|
|
5829
|
+
task: ScheduleTask!
|
|
5830
|
+
timezone: String
|
|
5831
|
+
type: String!
|
|
5832
|
+
}
|
|
5833
|
+
|
|
5834
|
+
type ScheduleClient {
|
|
5835
|
+
application: String!
|
|
5836
|
+
group: String!
|
|
5837
|
+
key: String!
|
|
5838
|
+
operation: String!
|
|
5839
|
+
type: String!
|
|
5840
|
+
}
|
|
5841
|
+
|
|
5842
|
+
input ScheduleClientInput {
|
|
5843
|
+
application: String!
|
|
5844
|
+
group: String!
|
|
5845
|
+
key: String!
|
|
5846
|
+
operation: String!
|
|
5847
|
+
type: String!
|
|
5848
|
+
}
|
|
5849
|
+
|
|
5850
|
+
type ScheduleList {
|
|
5851
|
+
items: [Schedule!]!
|
|
5852
|
+
total: Int!
|
|
5853
|
+
}
|
|
5854
|
+
|
|
5855
|
+
input SchedulePatch {
|
|
5856
|
+
client: ScheduleClientInput!
|
|
5857
|
+
id: String
|
|
5858
|
+
name: String
|
|
5859
|
+
schedule: String
|
|
5860
|
+
task: ScheduleTaskInput!
|
|
5861
|
+
timezone: String
|
|
5862
|
+
type: String!
|
|
5863
|
+
}
|
|
5864
|
+
|
|
5865
|
+
type ScheduleTask {
|
|
5866
|
+
connection: ScheduleTaskConnection!
|
|
5867
|
+
data: Object!
|
|
5868
|
+
failed_policy: String!
|
|
5869
|
+
history_check: Boolean!
|
|
5870
|
+
max_retry_count: Int!
|
|
5871
|
+
retry_count: Int!
|
|
5872
|
+
retry_wait: Int!
|
|
5873
|
+
type: String!
|
|
5874
|
+
}
|
|
5875
|
+
|
|
5876
|
+
type ScheduleTaskConnection {
|
|
5877
|
+
headers: Object
|
|
5878
|
+
host: String
|
|
5879
|
+
topic: String
|
|
5880
|
+
}
|
|
5881
|
+
|
|
5882
|
+
input ScheduleTaskConnectionInput {
|
|
5883
|
+
headers: Object
|
|
5884
|
+
host: String
|
|
5885
|
+
topic: String
|
|
5886
|
+
}
|
|
5887
|
+
|
|
5888
|
+
input ScheduleTaskInput {
|
|
5889
|
+
connection: ScheduleTaskConnectionInput!
|
|
5890
|
+
data: Object!
|
|
5891
|
+
failed_policy: String!
|
|
5892
|
+
history_check: Boolean!
|
|
5893
|
+
max_retry_count: Int!
|
|
5894
|
+
retry_count: Int!
|
|
5895
|
+
retry_wait: Int!
|
|
5896
|
+
type: String!
|
|
5897
|
+
}
|
|
5898
|
+
|
|
5750
5899
|
"""Entity for Setting"""
|
|
5751
5900
|
type Setting {
|
|
5752
5901
|
category: String!
|
|
@@ -6057,6 +6206,7 @@ type User {
|
|
|
6057
6206
|
updatedAt: DateTimeISO
|
|
6058
6207
|
updater: User
|
|
6059
6208
|
userType: String
|
|
6209
|
+
username: String
|
|
6060
6210
|
usersAuthProviders: [UsersAuthProviders!]
|
|
6061
6211
|
}
|
|
6062
6212
|
|
package/views/auth-page.html
CHANGED
|
@@ -52,7 +52,6 @@
|
|
|
52
52
|
|
|
53
53
|
<!-- Performance tip: hint to the browser to start the handshake for the fonts site -->
|
|
54
54
|
<link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin />
|
|
55
|
-
<link href="/node_modules/@material-design-icons/font/index.css" rel="stylesheet" />
|
|
56
55
|
<link href="/node_modules/material-symbols/index.css" rel="stylesheet" />
|
|
57
56
|
<link href="/node_modules/@fontsource/roboto/index.css" rel="stylesheet" />
|
|
58
57
|
<link rel="stylesheet" href="/theme.css" />
|
package/views/public/home.html
CHANGED
|
@@ -51,7 +51,6 @@
|
|
|
51
51
|
|
|
52
52
|
<!-- Performance tip: hint to the browser to start the handshake for the fonts site -->
|
|
53
53
|
<link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin />
|
|
54
|
-
<link href="/node_modules/@material-design-icons/font/index.css" rel="stylesheet" />
|
|
55
54
|
<link href="/node_modules/material-symbols/index.css" rel="stylesheet" />
|
|
56
55
|
<link href="/node_modules/@fontsource/roboto/index.css" rel="stylesheet" />
|
|
57
56
|
<link rel="stylesheet" href="/theme.css" />
|