@things-factory/operato-dataset 9.0.0-beta.4 → 9.0.0-beta.40

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/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"""
@@ -1155,6 +1159,11 @@ type DataItem {
1155
1159
  """
1156
1160
  stat: String
1157
1161
 
1162
+ """
1163
+ Specifies a secondary grouping identifier for data items with related content, allowing them to be displayed as subgroups within the overall dataset.
1164
+ """
1165
+ subgroup: String
1166
+
1158
1167
  """
1159
1168
  Specifies a key name to be used as a property in a JSON-like object, representing a subfield of a dataset record.
1160
1169
  """
@@ -1204,6 +1213,11 @@ input DataItemPatch {
1204
1213
  """
1205
1214
  stat: String
1206
1215
 
1216
+ """
1217
+ Specifies a secondary grouping identifier for data items with related content, allowing them to be displayed as subgroups within the overall dataset.
1218
+ """
1219
+ subgroup: String
1220
+
1207
1221
  """
1208
1222
  Specifies a key name to be used as a property in a JSON-like object, representing a subfield of a dataset record.
1209
1223
  """
@@ -1225,6 +1239,7 @@ enum DataItemType {
1225
1239
  number
1226
1240
  radio
1227
1241
  select
1242
+ signature
1228
1243
  text
1229
1244
  }
1230
1245
 
@@ -1382,6 +1397,7 @@ type DataSensor {
1382
1397
  active: Boolean
1383
1398
  appliance: Appliance
1384
1399
  brand: String
1400
+ capacity: Float
1385
1401
  createdAt: DateTimeISO
1386
1402
  creator: User
1387
1403
  dataSet: DataSet
@@ -1400,6 +1416,7 @@ type DataSensor {
1400
1416
  refBy: String
1401
1417
  serialNo: String
1402
1418
  tag: String
1419
+ unit: String
1403
1420
  updatedAt: DateTimeISO
1404
1421
  updater: User
1405
1422
  }
@@ -1413,6 +1430,7 @@ input DataSensorPatch {
1413
1430
  active: Boolean
1414
1431
  appliance: ObjectRef
1415
1432
  brand: String
1433
+ capacity: Float
1416
1434
  cuFlag: String!
1417
1435
  dataSet: ObjectRef
1418
1436
  decoder: ObjectRef
@@ -1425,12 +1443,15 @@ input DataSensorPatch {
1425
1443
  refBy: String
1426
1444
  serialNo: String
1427
1445
  tag: String
1446
+ unit: String
1428
1447
  }
1429
1448
 
1430
1449
  """Entity for DataSet"""
1431
1450
  type DataSet {
1432
1451
  """Indicates whether the dataset is currently active or in use."""
1433
1452
  active: Boolean
1453
+
1454
+ """Retrieves the approval line items for the dataset"""
1434
1455
  approvalLine: [ApprovalLineItem!]!
1435
1456
 
1436
1457
  """Who to contact for OOC issues"""
@@ -1453,6 +1474,8 @@ type DataSet {
1453
1474
 
1454
1475
  """The domain to which the dataset belongs"""
1455
1476
  domain: Domain
1477
+
1478
+ """Retrieves the entry board for the dataset"""
1456
1479
  entryBoard: Board
1457
1480
 
1458
1481
  """The person responsible for manually entering the data for that dataset"""
@@ -1470,7 +1493,17 @@ type DataSet {
1470
1493
 
1471
1494
  """The unique identifier of the dataset"""
1472
1495
  id: ID!
1496
+
1497
+ """Whether the user is allowed to enter data for this dataset"""
1498
+ isEntryAllowed: Boolean!
1499
+
1500
+ """Whether the user is a supervisor for this dataset"""
1501
+ isSupervisor: Boolean!
1502
+
1503
+ """Retrieves the latest collection time for the dataset."""
1473
1504
  latestCollectedAt: DateTimeISO
1505
+
1506
+ """Retrieves the monitor board for the dataset"""
1474
1507
  monitorBoard: Board
1475
1508
 
1476
1509
  """
@@ -1485,7 +1518,11 @@ type DataSet {
1485
1518
 
1486
1519
  """The name of the dataset"""
1487
1520
  name: String!
1521
+
1522
+ """Retrieves the next schedule time for the dataset."""
1488
1523
  nextSchedule: DateTimeISO
1524
+
1525
+ """Retrieves the next summary schedule time for the dataset."""
1489
1526
  nextSummarySchedule: DateTimeISO
1490
1527
 
1491
1528
  """Scenario for handling normal data-sample occurance for that dataset"""
@@ -1505,6 +1542,8 @@ type DataSet {
1505
1542
  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
1543
  """
1507
1544
  partitionKeys: Object
1545
+
1546
+ """Retrieves the previous schedule time for the dataset."""
1508
1547
  prevSchedule: DateTimeISO
1509
1548
 
1510
1549
  """The report template of the dataset"""
@@ -1523,6 +1562,9 @@ type DataSet {
1523
1562
  """Indicates if the dataset requires review"""
1524
1563
  requiresReview: Boolean
1525
1564
 
1565
+ """The final authority on resolving outlier related to that dataset."""
1566
+ resolverRole: Role
1567
+
1526
1568
  """Approval line for confrim of the dataset"""
1527
1569
  reviewApprovalLine: [ApprovalLineItem!]
1528
1570
 
@@ -1548,6 +1590,11 @@ type DataSet {
1548
1590
  """A tag name of data to be published when a data sample created"""
1549
1591
  tag: String
1550
1592
 
1593
+ """
1594
+ The maximum allowed time limit (in seconds) for completing the data entry operation
1595
+ """
1596
+ timeLimit: Float
1597
+
1551
1598
  """The timezone of the dataset"""
1552
1599
  timezone: String
1553
1600
 
@@ -1628,7 +1675,6 @@ type DataSetList {
1628
1675
 
1629
1676
  input DataSetPatch {
1630
1677
  active: Boolean
1631
- assignees: Object
1632
1678
  cuFlag: String!
1633
1679
  dataItems: [DataItemPatch!]
1634
1680
  dataKeySet: ObjectRef
@@ -1648,6 +1694,7 @@ input DataSetPatch {
1648
1694
  reportType: String
1649
1695
  reportView: String
1650
1696
  requiresReview: Boolean
1697
+ resolverRole: ObjectRef
1651
1698
  reviewApprovalLine: Object
1652
1699
  schedule: String
1653
1700
  summaryPeriod: String
@@ -1655,6 +1702,11 @@ input DataSetPatch {
1655
1702
 
1656
1703
  """A tag name of data to be published when a data sample created"""
1657
1704
  tag: String
1705
+
1706
+ """
1707
+ The maximum allowed time limit (in seconds) for completing the data entry operation
1708
+ """
1709
+ timeLimit: Float
1658
1710
  timezone: String
1659
1711
  type: String
1660
1712
  useCase: String
@@ -1803,6 +1855,7 @@ input DomainGeneratorInput {
1803
1855
 
1804
1856
  input DomainInput {
1805
1857
  description: String
1858
+ extType: String
1806
1859
  name: String!
1807
1860
  }
1808
1861
 
@@ -1817,6 +1870,7 @@ input DomainPatch {
1817
1870
  brandName: String
1818
1871
  contentImage: String
1819
1872
  description: String
1873
+ extType: String
1820
1874
  id: String
1821
1875
  name: String
1822
1876
  owner: String
@@ -1870,6 +1924,8 @@ type Employee {
1870
1924
  address: String
1871
1925
  alias: String
1872
1926
  approvalLines: [ApprovalLine!]!
1927
+ bankAccount: String
1928
+ bankName: String
1873
1929
  contact: Contact
1874
1930
  controlNo: String!
1875
1931
  createdAt: DateTimeISO
@@ -1878,8 +1934,10 @@ type Employee {
1878
1934
  department: Department
1879
1935
  domain: Domain!
1880
1936
  email: EmailAddress
1937
+ emergencyContact: String
1938
+ emergencyContactPhone: String
1881
1939
  extension: String
1882
- hiredOn: String
1940
+ hiredOn: DateTimeISO
1883
1941
  id: ID!
1884
1942
  jobPosition: String
1885
1943
  jobResponsibility: String
@@ -1889,7 +1947,7 @@ type Employee {
1889
1947
  phone: String
1890
1948
  photo: String
1891
1949
  profile: Profile
1892
- retiredAt: String
1950
+ retiredOn: DateTimeISO
1893
1951
  supervises: [Employee!]!
1894
1952
  supervisor: Employee
1895
1953
  type: String
@@ -1907,18 +1965,22 @@ type EmployeeList {
1907
1965
  input EmployeePatch {
1908
1966
  active: Boolean
1909
1967
  alias: String
1968
+ bankAccount: String
1969
+ bankName: String
1910
1970
  contact: ObjectRefForContact
1911
1971
  controlNo: String
1912
1972
  cuFlag: String
1913
1973
  department: ObjectRefForDepartment
1914
- hiredOn: String
1974
+ emergencyContact: String
1975
+ emergencyContactPhone: String
1976
+ hiredOn: DateTimeISO
1915
1977
  id: ID
1916
1978
  jobPosition: String
1917
1979
  jobResponsibility: String
1918
1980
  name: String
1919
1981
  note: String
1920
1982
  photo: Upload
1921
- retiredAt: String
1983
+ retiredOn: DateTimeISO
1922
1984
  supervisor: ObjectRefForEmployee
1923
1985
  type: EmployeeType
1924
1986
  user: ObjectRefForUser
@@ -2273,18 +2335,23 @@ type LiteMenu {
2273
2335
  active: Boolean
2274
2336
  appName: String
2275
2337
  board: Board
2338
+
2339
+ """Settings for help contents"""
2276
2340
  createdAt: DateTimeISO
2277
2341
  creator: User
2278
2342
  description: String
2279
2343
  domain: Domain!
2344
+ help: String
2280
2345
  icon: String
2281
2346
  id: ID!
2282
2347
  label: String!
2348
+
2349
+ """Settings for multilingual titles"""
2283
2350
  labels: Object
2284
2351
  name: String!
2285
2352
  parent: String
2286
- privilege: PrivilegeObject
2287
2353
  rank: Int
2354
+ role: Role
2288
2355
  type: String
2289
2356
  updatedAt: DateTimeISO
2290
2357
  updater: User
@@ -2300,12 +2367,13 @@ input LiteMenuPatch {
2300
2367
  active: Boolean
2301
2368
  appName: String
2302
2369
  description: String
2370
+ help: String
2303
2371
  icon: String
2304
2372
  labels: Object
2305
2373
  name: String
2306
2374
  parent: String
2307
- privilege: PrivilegeInput
2308
2375
  rank: Int
2376
+ role: ObjectRef
2309
2377
  type: String
2310
2378
  value: String
2311
2379
  }
@@ -2360,7 +2428,6 @@ type Menu {
2360
2428
  name: String
2361
2429
  pagination: Boolean
2362
2430
  parent: Menu
2363
- privilege: PrivilegeObject
2364
2431
  rank: Float
2365
2432
  resourceId: String
2366
2433
  resourceName: String
@@ -2682,7 +2749,6 @@ input MenuPatch {
2682
2749
  name: String
2683
2750
  pagination: Boolean
2684
2751
  parent: ObjectRef
2685
- privilege: PrivilegeInput
2686
2752
  rank: Int
2687
2753
  resourceId: String
2688
2754
  resourceName: String
@@ -2707,7 +2773,7 @@ type Mutation {
2707
2773
  activateInstallableActivity(name: String!): Activity!
2708
2774
 
2709
2775
  """To activate user"""
2710
- activateUser(userId: String!): Boolean!
2776
+ activateUser(username: String!): Boolean!
2711
2777
 
2712
2778
  """To approve ActivityApproval"""
2713
2779
  approveActivityApproval(comment: String, id: String!): ActivityApproval
@@ -3012,7 +3078,7 @@ type Mutation {
3012
3078
  deleteDomain(name: String!): Domain!
3013
3079
 
3014
3080
  """To delete domain user"""
3015
- deleteDomainUser(email: EmailAddress!): Boolean!
3081
+ deleteDomainUser(username: String!): Boolean!
3016
3082
 
3017
3083
  """To delete multiple domains (Only superuser is granted this privilege.)"""
3018
3084
  deleteDomains(names: [String!]!): Boolean!
@@ -3190,7 +3256,7 @@ type Mutation {
3190
3256
  deleteThemes(ids: [String!]!): Boolean!
3191
3257
 
3192
3258
  """To delete a user"""
3193
- deleteUser(email: EmailAddress!): Boolean!
3259
+ deleteUser(username: String!): Boolean!
3194
3260
 
3195
3261
  """To delete UserPreference"""
3196
3262
  deleteUserPreference(id: String!): Boolean!
@@ -3199,7 +3265,7 @@ type Mutation {
3199
3265
  deleteUserPreferences(ids: [String!]!): Boolean!
3200
3266
 
3201
3267
  """To delete some users"""
3202
- deleteUsers(emails: [String!]!): Boolean!
3268
+ deleteUsers(usernames: [String!]!): Boolean!
3203
3269
 
3204
3270
  """To delete multiple workShifts"""
3205
3271
  deleteWorkShifts(ids: [String!]!): Boolean!
@@ -3329,15 +3395,18 @@ type Mutation {
3329
3395
  importThemes(themes: [ThemePatch!]!): Boolean!
3330
3396
 
3331
3397
  """To inactivate user"""
3332
- inactivateUser(userId: String!): Boolean!
3398
+ inactivateUser(username: String!): Boolean!
3333
3399
  inviteCustomer(customerDomainName: String!): Boolean!
3334
3400
 
3335
3401
  """To invite new user"""
3336
- inviteUser(email: EmailAddress!): Boolean!
3402
+ inviteUser(username: String!): Boolean!
3337
3403
 
3338
3404
  """To issue standard ActivityInstance"""
3339
3405
  issueActivityInstance(activityInstance: ActivityInstanceIssue!): ActivityInstance!
3340
3406
 
3407
+ """To issue data-collection task for the given dataset"""
3408
+ issueDataCollection(dataSetId: String!): Boolean!
3409
+
3341
3410
  """To make the board to join the group"""
3342
3411
  joinGroup(boardIds: [String!]!, id: String!): Group!
3343
3412
 
@@ -3378,6 +3447,7 @@ type Mutation {
3378
3447
  """Employee Id"""
3379
3448
  employeeId: String!
3380
3449
  ): Boolean!
3450
+ registerSchedule(schedule: NewSchedule!): ID!
3381
3451
 
3382
3452
  """To reject ActivityApproval"""
3383
3453
  rejectActivityApproval(comment: String, id: String!): ActivityApproval
@@ -3390,7 +3460,7 @@ type Mutation {
3390
3460
  reorderPlayGroup(boardIds: [String!]!, id: String!): PlayGroup!
3391
3461
 
3392
3462
  """To reset password to default"""
3393
- resetPasswordToDefault(userId: String!): Boolean!
3463
+ resetPasswordToDefault(username: String!): Boolean!
3394
3464
 
3395
3465
  """To restart ActivityThread"""
3396
3466
  restartActivityThread(id: String!, output: Object, reason: String): ActivityThread
@@ -3450,6 +3520,9 @@ type Mutation {
3450
3520
  """To submit a ActivityThread"""
3451
3521
  submitActivityThread(id: String!, output: Object, reason: String): ActivityThread!
3452
3522
 
3523
+ """To submit ActivityThread List"""
3524
+ submitActivityThreadList(ids: [String!]!): Boolean!
3525
+
3453
3526
  """To synchronize auth-providers users"""
3454
3527
  synchronizeAuthProviderUsers(id: String!): Boolean!
3455
3528
 
@@ -3460,7 +3533,8 @@ type Mutation {
3460
3533
  terminateContract(partnerName: String!): Boolean!
3461
3534
 
3462
3535
  """To transfer owner of domain"""
3463
- transferOwner(email: EmailAddress!): Boolean!
3536
+ transferOwner(username: String!): Boolean!
3537
+ unregisterSchedule(handle: ID!): Boolean!
3464
3538
 
3465
3539
  """To modify Activity information"""
3466
3540
  updateActivity(id: String!, patch: ActivityPatch!): Activity!
@@ -3700,6 +3774,7 @@ type Mutation {
3700
3774
 
3701
3775
  """To modify scenario information"""
3702
3776
  updateScenario(name: String!, patch: ScenarioPatch!): Scenario!
3777
+ updateSchedule(schedule: SchedulePatch!): ID!
3703
3778
 
3704
3779
  """To update secure IP list for domain"""
3705
3780
  updateSecureIPList(iplist: Object!): Object
@@ -3726,7 +3801,7 @@ type Mutation {
3726
3801
  updateUserPreference(id: String!, patch: UserPreferencePatch!): UserPreference!
3727
3802
 
3728
3803
  """To update roles for a user"""
3729
- updateUserRoles(availableRoles: [ObjectRef!]!, selectedRoles: [ObjectRef!]!, userId: String!): User!
3804
+ updateUserRoles(availableRoles: [ObjectRef!]!, selectedRoles: [ObjectRef!]!, username: String!): User!
3730
3805
  }
3731
3806
 
3732
3807
  input NewActivity {
@@ -3810,6 +3885,7 @@ input NewAttachment {
3810
3885
  file: Upload!
3811
3886
  refBy: String
3812
3887
  refType: String
3888
+ tags: Object
3813
3889
  }
3814
3890
 
3815
3891
  input NewAttributeSet {
@@ -3931,6 +4007,7 @@ input NewDataSensor {
3931
4007
  active: Boolean
3932
4008
  appliance: ObjectRef
3933
4009
  brand: String
4010
+ capacity: Float
3934
4011
  dataSet: ObjectRef
3935
4012
  decoder: ObjectRef
3936
4013
  description: String
@@ -3941,11 +4018,11 @@ input NewDataSensor {
3941
4018
  refBy: String
3942
4019
  serialNo: String
3943
4020
  tag: String
4021
+ unit: String
3944
4022
  }
3945
4023
 
3946
4024
  input NewDataSet {
3947
4025
  active: Boolean
3948
- assignees: Object
3949
4026
  dataItems: [DataItemPatch!]
3950
4027
  dataKeySet: ObjectRef
3951
4028
  description: String
@@ -3963,6 +4040,7 @@ input NewDataSet {
3963
4040
  reportType: String
3964
4041
  reportView: String
3965
4042
  requiresReview: Boolean
4043
+ resolverRole: ObjectRef
3966
4044
  reviewApprovalLine: Object
3967
4045
  schedule: String
3968
4046
  summaryPeriod: String
@@ -3970,6 +4048,11 @@ input NewDataSet {
3970
4048
 
3971
4049
  """A tag name of data to be published when a data sample created"""
3972
4050
  tag: String
4051
+
4052
+ """
4053
+ The maximum allowed time limit (in seconds) for completing the data entry operation
4054
+ """
4055
+ timeLimit: Float
3973
4056
  timezone: String
3974
4057
  type: String
3975
4058
  useCase: String
@@ -3989,17 +4072,21 @@ input NewDepartment {
3989
4072
  input NewEmployee {
3990
4073
  active: Boolean
3991
4074
  alias: String
4075
+ bankAccount: String
4076
+ bankName: String
3992
4077
  contact: ObjectRefForContact
3993
4078
  controlNo: String!
3994
4079
  department: ObjectRefForDepartment
4080
+ emergencyContact: String
4081
+ emergencyContactPhone: String
3995
4082
  extension: String
3996
- hiredOn: String
4083
+ hiredOn: DateTimeISO
3997
4084
  jobPosition: String
3998
4085
  jobResponsibility: String
3999
4086
  name: String!
4000
4087
  note: String
4001
4088
  photo: Upload
4002
- retiredAt: String
4089
+ retiredOn: DateTimeISO
4003
4090
  supervisor: ObjectRefForEmployee
4004
4091
  type: EmployeeType
4005
4092
  user: ObjectRefForUser
@@ -4085,12 +4172,13 @@ input NewLiteMenu {
4085
4172
  active: Boolean
4086
4173
  appName: String
4087
4174
  description: String
4175
+ help: String
4088
4176
  icon: String
4089
4177
  labels: Object
4090
4178
  name: String!
4091
4179
  parent: String
4092
- privilege: PrivilegeInput
4093
4180
  rank: Int
4181
+ role: ObjectRef
4094
4182
  type: String
4095
4183
  value: String
4096
4184
  }
@@ -4113,7 +4201,6 @@ input NewMenu {
4113
4201
  name: String!
4114
4202
  pagination: Boolean
4115
4203
  parent: ObjectRef
4116
- privilege: PrivilegeInput
4117
4204
  rank: Int
4118
4205
  resourceId: String
4119
4206
  resourceName: String
@@ -4334,13 +4421,22 @@ input NewScenario {
4334
4421
  active: Boolean
4335
4422
  description: String
4336
4423
  name: String!
4337
- privilege: PrivilegeInput
4424
+ role: ObjectRef
4338
4425
  schedule: String
4339
4426
  timezone: String
4340
4427
  ttl: Float
4341
4428
  type: String
4342
4429
  }
4343
4430
 
4431
+ input NewSchedule {
4432
+ client: ScheduleClientInput!
4433
+ name: String!
4434
+ schedule: String
4435
+ task: ScheduleTaskInput!
4436
+ timezone: String
4437
+ type: String!
4438
+ }
4439
+
4344
4440
  input NewSetting {
4345
4441
  category: String!
4346
4442
  description: String
@@ -4402,6 +4498,7 @@ input NewUser {
4402
4498
  password: String
4403
4499
  roles: [ObjectRef!]
4404
4500
  userType: String
4501
+ username: String!
4405
4502
  }
4406
4503
 
4407
4504
  input NewUserByDomainWizardInput {
@@ -4622,7 +4719,7 @@ input ObjectRefForEmployee {
4622
4719
  """Field description"""
4623
4720
  description: String
4624
4721
  email: EmailAddress
4625
- hiredOn: String
4722
+ hiredOn: DateTimeISO
4626
4723
 
4627
4724
  """Field id"""
4628
4725
  id: ID!
@@ -4873,13 +4970,6 @@ type Privilege {
4873
4970
  updater: User
4874
4971
  }
4875
4972
 
4876
- input PrivilegeInput {
4877
- category: String
4878
- owner: Boolean
4879
- privilege: String
4880
- super: Boolean
4881
- }
4882
-
4883
4973
  type PrivilegeList {
4884
4974
  items: [Privilege!]
4885
4975
  total: Int
@@ -5210,6 +5300,9 @@ type Query {
5210
5300
  """To fetch domain"""
5211
5301
  domain(id: String!): Domain!
5212
5302
 
5303
+ """To fetch domain"""
5304
+ domainTypes: [String!]!
5305
+
5213
5306
  """To fetch all domains (Only superuser is granted this privilege.)"""
5214
5307
  domains(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DomainList!
5215
5308
 
@@ -5469,6 +5562,10 @@ type Query {
5469
5562
 
5470
5563
  """To fetch multiple scenarios"""
5471
5564
  scenarios(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ScenarioList!
5565
+ schedule(id: ID!): Schedule
5566
+
5567
+ """To fetch multiple Schedules"""
5568
+ schedules(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ScheduleList!
5472
5569
  searchCustomers(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DomainList!
5473
5570
 
5474
5571
  """To fetch domain"""
@@ -5653,6 +5750,7 @@ type Scenario {
5653
5750
  """accessible and executable system-wide"""
5654
5751
  public: Boolean
5655
5752
  publishTags: [Connection!]!
5753
+ role: Role
5656
5754
  schedule: String
5657
5755
  scheduleId: String
5658
5756
  state: String
@@ -5734,7 +5832,7 @@ input ScenarioPatch {
5734
5832
  description: String
5735
5833
  id: ID
5736
5834
  name: String
5737
- privilege: PrivilegeInput
5835
+ role: ObjectRef
5738
5836
  schedule: String
5739
5837
  steps: [StepPatch!]
5740
5838
  timezone: String
@@ -5747,6 +5845,81 @@ type ScenarioQueueState {
5747
5845
  queue: [PendingObject!]!
5748
5846
  }
5749
5847
 
5848
+ type Schedule {
5849
+ client: ScheduleClient!
5850
+ id: ID!
5851
+ name: String
5852
+ schedule: String
5853
+ task: ScheduleTask!
5854
+ timezone: String
5855
+ type: String!
5856
+ }
5857
+
5858
+ type ScheduleClient {
5859
+ application: String!
5860
+ group: String!
5861
+ key: String!
5862
+ operation: String!
5863
+ type: String!
5864
+ }
5865
+
5866
+ input ScheduleClientInput {
5867
+ application: String!
5868
+ group: String!
5869
+ key: String!
5870
+ operation: String!
5871
+ type: String!
5872
+ }
5873
+
5874
+ type ScheduleList {
5875
+ items: [Schedule!]!
5876
+ total: Int!
5877
+ }
5878
+
5879
+ input SchedulePatch {
5880
+ client: ScheduleClientInput!
5881
+ id: String
5882
+ name: String
5883
+ schedule: String
5884
+ task: ScheduleTaskInput!
5885
+ timezone: String
5886
+ type: String!
5887
+ }
5888
+
5889
+ type ScheduleTask {
5890
+ connection: ScheduleTaskConnection!
5891
+ data: Object!
5892
+ failed_policy: String!
5893
+ history_check: Boolean!
5894
+ max_retry_count: Int!
5895
+ retry_count: Int!
5896
+ retry_wait: Int!
5897
+ type: String!
5898
+ }
5899
+
5900
+ type ScheduleTaskConnection {
5901
+ headers: Object
5902
+ host: String
5903
+ topic: String
5904
+ }
5905
+
5906
+ input ScheduleTaskConnectionInput {
5907
+ headers: Object
5908
+ host: String
5909
+ topic: String
5910
+ }
5911
+
5912
+ input ScheduleTaskInput {
5913
+ connection: ScheduleTaskConnectionInput!
5914
+ data: Object!
5915
+ failed_policy: String!
5916
+ history_check: Boolean!
5917
+ max_retry_count: Int!
5918
+ retry_count: Int!
5919
+ retry_wait: Int!
5920
+ type: String!
5921
+ }
5922
+
5750
5923
  """Entity for Setting"""
5751
5924
  type Setting {
5752
5925
  category: String!
@@ -6057,6 +6230,7 @@ type User {
6057
6230
  updatedAt: DateTimeISO
6058
6231
  updater: User
6059
6232
  userType: String
6233
+ username: String
6060
6234
  usersAuthProviders: [UsersAuthProviders!]
6061
6235
  }
6062
6236
 
@@ -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" />
@@ -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" />