@operato/scene-visualizer 8.0.0-alpha.1 → 8.0.0-alpha.7

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
@@ -29,7 +29,7 @@ type AppBinding {
29
29
  email: EmailAddress!
30
30
  id: ID!
31
31
  locale: String
32
- name: String!
32
+ name: String
33
33
  owner: Boolean
34
34
  reference: String
35
35
  refreshToken: String
@@ -201,6 +201,7 @@ type Attachment {
201
201
  refBy: String
202
202
  refType: String
203
203
  size: String!
204
+ tags: Object
204
205
  updatedAt: DateTimeISO!
205
206
  updater: User
206
207
  }
@@ -219,6 +220,7 @@ input AttachmentPatch {
219
220
  name: String
220
221
  refBy: String
221
222
  refType: String
223
+ tags: Object
222
224
  }
223
225
 
224
226
  """Entity for AttributeSet"""
@@ -287,7 +289,6 @@ type AuthProvider {
287
289
  id: ID!
288
290
  params: Object
289
291
  privateKey: String
290
- state: String
291
292
  tenantId: String
292
293
  type: String
293
294
  updatedAt: DateTimeISO
@@ -748,7 +749,7 @@ scalar EmailAddress @specifiedBy(url: "https://html.spec.whatwg.org/multipage/in
748
749
  """Entity for Employee"""
749
750
  type Employee {
750
751
  active: Boolean
751
- address: String!
752
+ address: String
752
753
  alias: String
753
754
  approvalLines: [ApprovalLine!]!
754
755
  contact: Contact
@@ -788,9 +789,10 @@ type EmployeeList {
788
789
  input EmployeePatch {
789
790
  active: Boolean
790
791
  alias: String
792
+ contact: ObjectRefForContact
791
793
  controlNo: String
792
794
  cuFlag: String
793
- department: ObjectRef
795
+ department: ObjectRefForDepartment
794
796
  hiredOn: String
795
797
  id: ID
796
798
  jobPosition: String
@@ -1503,7 +1505,9 @@ type Mutation {
1503
1505
  """To activate user"""
1504
1506
  activateUser(userId: String!): Boolean!
1505
1507
 
1506
- """To attach a contact on Employee"""
1508
+ """
1509
+ Attaches an existing contact to an employee. The contact is identified by its ID and the employee is identified by their ID.
1510
+ """
1507
1511
  attachContact(contactId: String!, id: String!): Employee!
1508
1512
  cancelInvitation(email: EmailAddress!, reference: String!, type: String!): Boolean!
1509
1513
 
@@ -1560,7 +1564,9 @@ type Mutation {
1560
1564
  """To create domain (Only superuser is granted this privilege.)"""
1561
1565
  createDomain(domainInput: DomainPatch!): Domain!
1562
1566
 
1563
- """To create new Employee"""
1567
+ """
1568
+ Creates a new employee record with the provided details. Optionally associates the employee with a supervisor, department, and system user. If a photo is provided, it will be attached to the employee record.
1569
+ """
1564
1570
  createEmployee(employee: NewEmployee!): Employee!
1565
1571
 
1566
1572
  """To create new Entity"""
@@ -1599,6 +1605,9 @@ type Mutation {
1599
1605
  """To create new ApprovalLine for current user"""
1600
1606
  createMyApprovalLine(approvalLine: NewApprovalLine!): ApprovalLine!
1601
1607
 
1608
+ """To create my new PagePreference"""
1609
+ createMyPagePreference(pagePreference: NewPagePreference!): PagePreference!
1610
+
1602
1611
  """To create new Notification"""
1603
1612
  createNotification(notification: NewNotification!): Notification!
1604
1613
 
@@ -1608,6 +1617,12 @@ type Mutation {
1608
1617
  """To create new Oauth2Client"""
1609
1618
  createOauth2Client(oauth2Client: NewOauth2Client!): Oauth2Client!
1610
1619
 
1620
+ """To create new PDFRelease"""
1621
+ createPDFRelease(pdfRelease: NewPDFRelease!): PDFRelease!
1622
+
1623
+ """To create new PDFTemplate"""
1624
+ createPDFTemplate(pdfTemplate: NewPDFTemplate!): PDFTemplate!
1625
+
1611
1626
  """To create new PayloadLog"""
1612
1627
  createPayloadLog(payloadLog: NewPayloadLog!): PayloadLog!
1613
1628
 
@@ -1640,6 +1655,9 @@ type Mutation {
1640
1655
 
1641
1656
  """To create new user"""
1642
1657
  createUser(user: NewUser!): User!
1658
+
1659
+ """To create new UserPreference"""
1660
+ createUserPreference(preference: NewUserPreference!): UserPreference!
1643
1661
  deleteAppBinding(id: String!): Boolean!
1644
1662
 
1645
1663
  """To delete appliance"""
@@ -1654,7 +1672,7 @@ type Mutation {
1654
1672
  """To delete multiple ApprovalLines"""
1655
1673
  deleteApprovalLines(ids: [String!]!): Boolean!
1656
1674
  deleteAttachment(id: String!): Boolean!
1657
- deleteAttachmentsByRef(refBys: [String!]!): Boolean!
1675
+ deleteAttachmentsByRef(refBys: [String!]!, refType: String): Boolean!
1658
1676
 
1659
1677
  """To delete AttributeSet"""
1660
1678
  deleteAttributeSet(id: String!): Boolean!
@@ -1711,10 +1729,14 @@ type Mutation {
1711
1729
  """To delete multiple domains (Only superuser is granted this privilege.)"""
1712
1730
  deleteDomains(names: [String!]!): Boolean!
1713
1731
 
1714
- """To delete Employee"""
1732
+ """
1733
+ Deletes an employee record identified by the given ID. Also deletes any attachments associated with the employee.
1734
+ """
1715
1735
  deleteEmployee(id: String!): Boolean!
1716
1736
 
1717
- """To delete multiple Employees"""
1737
+ """
1738
+ Deletes multiple employee records identified by the given IDs. Also deletes any attachments associated with each employee.
1739
+ """
1718
1740
  deleteEmployees(ids: [String!]!): Boolean!
1719
1741
 
1720
1742
  """To delete multiple Entities"""
@@ -1780,6 +1802,12 @@ type Mutation {
1780
1802
  """To delete multiple ApprovalLines for current user"""
1781
1803
  deleteMyApprovalLines(ids: [String!]!): Boolean!
1782
1804
 
1805
+ """To delete my PagePreference"""
1806
+ deleteMyPagePreference(element: String!, page: String!): Boolean!
1807
+
1808
+ """To delete my preference"""
1809
+ deleteMyUserPreference(element: String!, key: String!): Boolean!
1810
+
1783
1811
  """To delete Notification"""
1784
1812
  deleteNotification(id: String!): Boolean!
1785
1813
 
@@ -1798,6 +1826,24 @@ type Mutation {
1798
1826
  """To delete multiple Oauth2Clients"""
1799
1827
  deleteOauth2Clients(ids: [String!]!): Boolean!
1800
1828
 
1829
+ """To delete PDFRelease"""
1830
+ deletePDFRelease(id: String!): Boolean!
1831
+
1832
+ """To delete multiple PDFReleases"""
1833
+ deletePDFReleases(ids: [String!]!): Boolean!
1834
+
1835
+ """To delete PDFTemplate"""
1836
+ deletePDFTemplate(id: String!): Boolean!
1837
+
1838
+ """To delete multiple PDFTemplates"""
1839
+ deletePDFTemplates(ids: [String!]!): Boolean!
1840
+
1841
+ """To delete PagePreference"""
1842
+ deletePagePreference(id: String!): Boolean!
1843
+
1844
+ """To delete multiple PagePreferences"""
1845
+ deletePagePreferences(ids: [String!]!): Boolean!
1846
+
1801
1847
  """To delete multiple partnerSettings"""
1802
1848
  deletePartnerSettings(ids: [String!]!): Boolean!
1803
1849
 
@@ -1861,10 +1907,18 @@ type Mutation {
1861
1907
  """To delete a user"""
1862
1908
  deleteUser(email: EmailAddress!): Boolean!
1863
1909
 
1910
+ """To delete UserPreference"""
1911
+ deleteUserPreference(id: String!): Boolean!
1912
+
1913
+ """To delete multiple UserPreferences"""
1914
+ deleteUserPreferences(ids: [String!]!): Boolean!
1915
+
1864
1916
  """To delete some users"""
1865
1917
  deleteUsers(emails: [String!]!): Boolean!
1866
1918
 
1867
- """To detach a contact from Employee"""
1919
+ """
1920
+ Detaches an existing contact from an employee. The employee is identified by their ID.
1921
+ """
1868
1922
  detachContact(id: String!): Employee!
1869
1923
 
1870
1924
  """To disconnect a connection"""
@@ -1906,7 +1960,9 @@ type Mutation {
1906
1960
  """To import multiple Departments"""
1907
1961
  importDepartments(departments: [DepartmentPatch!]!): Boolean!
1908
1962
 
1909
- """To import multiple Employees"""
1963
+ """
1964
+ Imports multiple employee records into the system. Each employee record must be provided in the EmployeePatch format.
1965
+ """
1910
1966
  importEmployees(employees: [EmployeePatch!]!): Boolean!
1911
1967
 
1912
1968
  """To import multiple MenuButtons"""
@@ -1933,6 +1989,12 @@ type Mutation {
1933
1989
  """To import multiple Oauth2Clients"""
1934
1990
  importOauth2Clients(oauth2Clients: [Oauth2ClientPatch!]!): Boolean!
1935
1991
 
1992
+ """To import multiple PDFReleases"""
1993
+ importPDFReleases(pdfReleases: [PDFReleasePatch!]!): Boolean!
1994
+
1995
+ """To import multiple PDFTemplates"""
1996
+ importPDFTemplates(pdfTemplates: [PDFTemplatePatch!]!): Boolean!
1997
+
1936
1998
  """To import multiple scenarios"""
1937
1999
  importScenarios(scenarios: [ScenarioPatch!]!): Boolean!
1938
2000
 
@@ -1980,6 +2042,14 @@ type Mutation {
1980
2042
  visibility: String!
1981
2043
  ): BoardTemplate!
1982
2044
 
2045
+ """
2046
+ Registers an existing employee as a system user, granting them access to the system. The employee is identified by their ID.
2047
+ """
2048
+ registerEmployeeAsSystemUser(
2049
+ """Employee Id"""
2050
+ employeeId: String!
2051
+ ): Boolean!
2052
+
1983
2053
  """To release a Board"""
1984
2054
  releaseBoard(id: String!): Board!
1985
2055
  renewApplicationAccessToken(id: String!, scope: String!): AccessToken!
@@ -1996,7 +2066,7 @@ type Mutation {
1996
2066
  """
1997
2067
  To run new scenario instance and will return the result after the scenario stop.
1998
2068
  """
1999
- runScenario(instanceName: String, scenarioName: String!, variables: Object): ScenarioInstance!
2069
+ runScenario(instanceName: String, scenarioName: String!, variables: Object): ScenarioInstanceRunResult!
2000
2070
  sendInvitation(email: EmailAddress!, reference: String!, type: String!): Invitation!
2001
2071
  singleUpload(file: Upload!): Attachment!
2002
2072
 
@@ -2069,7 +2139,9 @@ type Mutation {
2069
2139
  """To update multiple domains (Only superuser is granted this privilege.)"""
2070
2140
  updateDomains(patches: [DomainPatch!]!): Boolean!
2071
2141
 
2072
- """To modify Employee information"""
2142
+ """
2143
+ Updates the details of an existing employee identified by the given ID. Optionally updates the supervisor, department, system user, and photo associated with the employee.
2144
+ """
2073
2145
  updateEmployee(id: String!, patch: EmployeePatch!): Employee!
2074
2146
 
2075
2147
  """To modify Entity' information"""
@@ -2124,7 +2196,9 @@ type Mutation {
2124
2196
  """To modify multiple Departments' information"""
2125
2197
  updateMultipleDepartment(patches: [DepartmentPatch!]!): [Department!]!
2126
2198
 
2127
- """To modify multiple Employees' information"""
2199
+ """
2200
+ Updates or creates multiple employee records based on the provided patches. New employees are created if the "cuFlag" is "+", and existing employees are updated if the "cuFlag" is "M".
2201
+ """
2128
2202
  updateMultipleEmployee(patches: [EmployeePatch!]!): [Employee!]!
2129
2203
 
2130
2204
  """To modify multiple Entitys' information"""
@@ -2145,6 +2219,12 @@ type Mutation {
2145
2219
  """To modify multiple NotificationRules' information"""
2146
2220
  updateMultipleNotificationRule(patches: [NotificationRulePatch!]!): [NotificationRule!]!
2147
2221
 
2222
+ """To modify multiple PDFReleases' information"""
2223
+ updateMultiplePDFRelease(patches: [PDFReleasePatch!]!): [PDFRelease!]!
2224
+
2225
+ """To modify multiple PDFTemplates' information"""
2226
+ updateMultiplePDFTemplate(patches: [PDFTemplatePatch!]!): [PDFTemplate!]!
2227
+
2148
2228
  """To modify multiple PartnerSettings' information"""
2149
2229
  updateMultiplePartnerSetting(patches: [PartnerSettingPatch!]!): [PartnerSetting!]!
2150
2230
 
@@ -2178,6 +2258,12 @@ type Mutation {
2178
2258
  """To modify ApprovalLine information for current user"""
2179
2259
  updateMyApprovalLine(id: String!, patch: ApprovalLinePatch!): ApprovalLine!
2180
2260
 
2261
+ """To create or update my PagePreference"""
2262
+ updateMyPagePreference(element: String!, page: String!, preference: Object!): PagePreference!
2263
+
2264
+ """To create or update my preference"""
2265
+ updateMyUserPreference(key: String!, preference: Object!): UserPreference!
2266
+
2181
2267
  """To modify Notification information"""
2182
2268
  updateNotification(id: String!, patch: NotificationPatch!): Notification!
2183
2269
 
@@ -2187,6 +2273,12 @@ type Mutation {
2187
2273
  """To modify Oauth2Client information"""
2188
2274
  updateOauth2Client(id: String!, patch: Oauth2ClientPatch!): Oauth2Client!
2189
2275
 
2276
+ """To modify PDFRelease information"""
2277
+ updatePDFRelease(id: String!, patch: PDFReleasePatch!): PDFRelease!
2278
+
2279
+ """To modify PDFTemplate information"""
2280
+ updatePDFTemplate(id: String!, patch: PDFTemplatePatch!): PDFTemplate!
2281
+
2190
2282
  """To modify PayloadLog information"""
2191
2283
  updatePayloadLog(id: String!, patch: PayloadLogPatch!): PayloadLog!
2192
2284
 
@@ -2232,6 +2324,9 @@ type Mutation {
2232
2324
  """To modify user information"""
2233
2325
  updateUser(email: EmailAddress!, patch: UserPatch!): User!
2234
2326
 
2327
+ """To modify UserPreference information"""
2328
+ updateUserPreference(id: String!, patch: UserPreferencePatch!): UserPreference!
2329
+
2235
2330
  """To update roles for a user"""
2236
2331
  updateUserRoles(availableRoles: [ObjectRef!]!, selectedRoles: [ObjectRef!]!, userId: String!): User!
2237
2332
  }
@@ -2270,6 +2365,7 @@ input NewAttachment {
2270
2365
  file: Upload!
2271
2366
  refBy: String
2272
2367
  refType: String
2368
+ tags: Object
2273
2369
  }
2274
2370
 
2275
2371
  input NewAttributeSet {
@@ -2354,8 +2450,9 @@ input NewDepartment {
2354
2450
  input NewEmployee {
2355
2451
  active: Boolean
2356
2452
  alias: String
2453
+ contact: ObjectRefForContact
2357
2454
  controlNo: String!
2358
- department: ObjectRef
2455
+ department: ObjectRefForDepartment
2359
2456
  extension: String
2360
2457
  hiredOn: String
2361
2458
  jobPosition: String
@@ -2631,6 +2728,35 @@ input NewOauth2Client {
2631
2728
  webhook: String
2632
2729
  }
2633
2730
 
2731
+ input NewPDFRelease {
2732
+ active: Boolean
2733
+ description: String
2734
+ name: String!
2735
+ params: String
2736
+ state: PDFReleaseStatus
2737
+ }
2738
+
2739
+ input NewPDFTemplate {
2740
+ active: Boolean
2741
+ content_template: String
2742
+ cover_template: String
2743
+ description: String
2744
+ footer_template: String
2745
+ header_template: String
2746
+ last_template: String
2747
+ name: String!
2748
+ page_size: String = "A4"
2749
+ state: PDFTemplateStatus
2750
+ watermark: String
2751
+ }
2752
+
2753
+ input NewPagePreference {
2754
+ element: String
2755
+ page: String
2756
+ preference: Object!
2757
+ user: ObjectRef!
2758
+ }
2759
+
2634
2760
  input NewPayloadLog {
2635
2761
  description: String
2636
2762
  name: String!
@@ -2680,6 +2806,7 @@ input NewScenario {
2680
2806
  privilege: PrivilegeInput
2681
2807
  schedule: String
2682
2808
  timezone: String
2809
+ ttl: Float
2683
2810
  type: String
2684
2811
  }
2685
2812
 
@@ -2691,12 +2818,34 @@ input NewSetting {
2691
2818
  }
2692
2819
 
2693
2820
  input NewStateRegister {
2821
+ """Description of the state register"""
2694
2822
  description: String
2823
+
2824
+ """Group name for the state register"""
2825
+ group: String
2826
+
2827
+ """Name of the state register"""
2695
2828
  name: String!
2829
+
2830
+ """Number of decimal places if the state is a number type"""
2831
+ place: String
2832
+
2833
+ """
2834
+ Reference to an external entity or data, used as a flexible foreign key
2835
+ """
2696
2836
  refBy: String
2837
+
2838
+ """Current state value"""
2697
2839
  state: Object
2840
+
2841
+ """Time to live for the state value in seconds"""
2698
2842
  ttl: Int
2843
+
2844
+ """Type of the state"""
2699
2845
  type: String
2846
+
2847
+ """Unit of the state value"""
2848
+ unit: String
2700
2849
  }
2701
2850
 
2702
2851
  input NewTerminology {
@@ -2733,6 +2882,12 @@ input NewUserByDomainWizardInput {
2733
2882
  roles: [NewRole!]!
2734
2883
  }
2735
2884
 
2885
+ input NewUserPreference {
2886
+ key: String!
2887
+ preference: Object!
2888
+ user: ObjectRef!
2889
+ }
2890
+
2736
2891
  """Entity for Notification"""
2737
2892
  type Notification {
2738
2893
  body: String
@@ -2900,6 +3055,34 @@ input ObjectRefApprovalLineOwnerType {
2900
3055
  name: String
2901
3056
  }
2902
3057
 
3058
+ input ObjectRefForContact {
3059
+ address: String
3060
+
3061
+ """Field description"""
3062
+ description: String
3063
+ email: EmailAddress
3064
+
3065
+ """Field id"""
3066
+ id: ID!
3067
+
3068
+ """Field name"""
3069
+ name: String
3070
+ phone: String
3071
+ }
3072
+
3073
+ input ObjectRefForDepartment {
3074
+ controlNo: String
3075
+
3076
+ """Field description"""
3077
+ description: String
3078
+
3079
+ """Field id"""
3080
+ id: ID!
3081
+
3082
+ """Field name"""
3083
+ name: String
3084
+ }
3085
+
2903
3086
  input ObjectRefForEmployee {
2904
3087
  active: Boolean
2905
3088
  alias: String
@@ -2956,18 +3139,123 @@ enum OrgMemberTargetType {
2956
3139
  Role
2957
3140
  }
2958
3141
 
3142
+ """Entity for PDFRelease"""
3143
+ type PDFRelease {
3144
+ active: Boolean
3145
+ createdAt: DateTimeISO
3146
+ creator: User
3147
+ deletedAt: DateTimeISO
3148
+ description: String
3149
+ domain: Domain
3150
+ filePath: String
3151
+ fileUrl: String
3152
+ id: ID!
3153
+ name: String
3154
+ state: String
3155
+ template: PDFTemplate!
3156
+ templateId: String!
3157
+ updatedAt: DateTimeISO
3158
+ updater: User
3159
+ }
3160
+
3161
+ type PDFReleaseList {
3162
+ items: [PDFRelease!]!
3163
+ total: Int!
3164
+ }
3165
+
3166
+ input PDFReleasePatch {
3167
+ active: Boolean
3168
+ cuFlag: String
3169
+ description: String
3170
+ id: ID
3171
+ name: String
3172
+ state: PDFReleaseStatus
3173
+ }
3174
+
3175
+ """state enumeration of a PDFRelease"""
3176
+ enum PDFReleaseStatus {
3177
+ failed
3178
+ published
3179
+ }
3180
+
3181
+ """Entity for PDFTemplate"""
3182
+ type PDFTemplate {
3183
+ active: Boolean
3184
+ content_template: String
3185
+ cover_template: String
3186
+ createdAt: DateTimeISO
3187
+ creator: User
3188
+ description: String
3189
+ domain: Domain
3190
+ footer_template: String
3191
+ header_template: String
3192
+ id: ID!
3193
+ last_template: String
3194
+ name: String
3195
+ page_size: String
3196
+ state: String
3197
+ updatedAt: DateTimeISO
3198
+ updater: User
3199
+ watermark: String
3200
+ }
3201
+
3202
+ type PDFTemplateList {
3203
+ items: [PDFTemplate!]!
3204
+ total: Int!
3205
+ }
3206
+
3207
+ input PDFTemplatePatch {
3208
+ active: Boolean
3209
+ content_template: String
3210
+ cover_template: String
3211
+ cuFlag: String
3212
+ description: String
3213
+ footer_template: String
3214
+ header_template: String
3215
+ id: ID
3216
+ last_template: String
3217
+ name: String
3218
+ page_size: String = "A4"
3219
+ state: PDFTemplateStatus
3220
+ }
3221
+
3222
+ """state enumeration of a PDF Template"""
3223
+ enum PDFTemplateStatus {
3224
+ draft
3225
+ released
3226
+ }
3227
+
3228
+ """Entity for PagePreference"""
3229
+ type PagePreference {
3230
+ createdAt: DateTimeISO
3231
+ creator: User
3232
+ domain: Domain!
3233
+ element: String
3234
+ id: ID!
3235
+ page: String
3236
+ preference: Object
3237
+ updatedAt: DateTimeISO
3238
+ updater: User
3239
+ user: User!
3240
+ }
3241
+
3242
+ type PagePreferenceList {
3243
+ items: [PagePreference!]!
3244
+ total: Int!
3245
+ }
3246
+
2959
3247
  input Pagination {
2960
3248
  limit: Int
2961
3249
  page: Int
2962
3250
  }
2963
3251
 
2964
3252
  type Partner {
2965
- approvedAt: DateTimeISO!
3253
+ approvedAt: DateTimeISO
2966
3254
  approver: User
2967
3255
  domain: Domain!
2968
3256
  id: ID!
2969
3257
  partnerDomain: Domain!
2970
- requestedAt: DateTimeISO!
3258
+ requestedAt: DateTimeISO
2971
3259
  requester: User
2972
3260
  }
2973
3261
 
@@ -3007,6 +3295,18 @@ input PartnerSettingPatch {
3007
3295
  value: String
3008
3296
  }
3009
3297
 
3298
+ type PasswordRule {
3299
+ allowRepeat: Boolean
3300
+ digit: Boolean
3301
+ looseCharacterLength: Float
3302
+ lowerCase: Boolean
3303
+ specialCharacter: Boolean
3304
+ tightCharacterLength: Float
3305
+ upperCase: Boolean
3306
+ useLoosePattern: Boolean
3307
+ useTightPattern: Boolean
3308
+ }
3309
+
3010
3310
  """Entity for PayloadLog"""
3011
3311
  type PayloadLog {
3012
3312
  createdAt: DateTimeISO
@@ -3183,6 +3483,12 @@ type PropertySpec {
3183
3483
 
3184
3484
  type Query {
3185
3485
  APIDocCompletion(input: APIDocCompletionInput!): APIDocCompletionOutput!
3486
+
3487
+ """To fetch a PDFTemplate"""
3488
+ PDFTemplate(id: String!): PDFTemplate
3489
+
3490
+ """To fetch multiple PDFTemplates"""
3491
+ PDFTemplates(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PDFTemplateList!
3186
3492
  appBinding(id: String!): AppBinding!
3187
3493
  appBindings(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): AppBindingList!
3188
3494
 
@@ -3255,19 +3561,25 @@ type Query {
3255
3561
  boardsCreatedByMe(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BoardList!
3256
3562
  chatCompletion(input: ChatCompletionInput!): ChatCompletionOutput!
3257
3563
 
3258
- """To check if system would provide default password to create new user"""
3564
+ """
3565
+ Checks if the system is configured to provide a default password for new users.
3566
+ """
3259
3567
  checkDefaultPassword: Boolean!
3260
3568
 
3261
- """To check if system would provide default password to create new user"""
3569
+ """
3570
+ Determines whether the system provides a default password when creating a new user.
3571
+ """
3262
3572
  checkResettablePasswordToDefault: Boolean!
3263
3573
 
3264
3574
  """To fetch the preset of role for new user"""
3265
3575
  checkRolePreset: [Role!]!
3266
3576
 
3267
- """To check if current user is belongs to current domain"""
3577
+ """
3578
+ Checks if the current authenticated user belongs to the current domain.
3579
+ """
3268
3580
  checkUserBelongsDomain: Boolean!
3269
3581
 
3270
- """..."""
3582
+ """Checks if a user with the given email address exists in the system."""
3271
3583
  checkUserExistence(email: EmailAddress!): Boolean!
3272
3584
 
3273
3585
  """To fetch common approval lines"""
@@ -3327,10 +3639,14 @@ type Query {
3327
3639
  """To fetch multiple appliance"""
3328
3640
  edges(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApplianceList!
3329
3641
 
3330
- """To fetch a Employee"""
3642
+ """
3643
+ Fetches a specific employee by their unique ID. Returns the employee object if found, or null if not found.
3644
+ """
3331
3645
  employee(id: String!): Employee
3332
3646
 
3333
- """To fetch multiple Employees"""
3647
+ """
3648
+ Fetches a list of employees based on provided query parameters. Supports searching by name, control number, and alias.
3649
+ """
3334
3650
  employees(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): EmployeeList!
3335
3651
 
3336
3652
  """To fetch multiple Entities"""
@@ -3439,9 +3755,24 @@ type Query {
3439
3755
  """To fetch my notifications"""
3440
3756
  myNotifications(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): NotificationList!
3441
3757
 
3758
+ """To fetch a User's own PagePreference"""
3759
+ myPageAllPreferences(page: String!): [PagePreference!]
3760
+
3761
+ """To fetch a User's own PagePreference"""
3762
+ myPagePreference(element: String!, page: String!): PagePreference
3763
+
3764
+ """To fetch multiple PagePreferences"""
3765
+ myPagePreferences(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PagePreferenceList!
3766
+
3442
3767
  """To fetch roles of current user"""
3443
3768
  myRoles: [Role!]!
3444
3769
 
3770
+ """To fetch a User's own UserPreference"""
3771
+ myUserPreference(element: String!, key: String!): UserPreference
3772
+
3773
+ """To fetch multiple UserPreferences"""
3774
+ myUserPreferences(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): UserPreferenceList!
3775
+
3445
3776
  """To fetch a Notification"""
3446
3777
  notification(id: String!): Notification
3447
3778
 
@@ -3460,6 +3791,9 @@ type Query {
3460
3791
  """To fetch multiple Oauth2Clients"""
3461
3792
  oauth2Clients(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): Oauth2ClientList!
3462
3793
 
3794
+ """To fetch a PagePreference"""
3795
+ pagePreference(id: String!): PagePreference
3796
+
3463
3797
  """To fetch specific domain's CommonCodes by given name"""
3464
3798
  partnerCommonCode(name: String!, partnerDomainId: String!): CommonCode!
3465
3799
 
@@ -3470,12 +3804,23 @@ type Query {
3470
3804
  partnerSettings(filters: [Filter!]!, pagination: Pagination!, partnerDomain: ObjectRef!, sortings: [Sorting!]!): PartnerSettingList!
3471
3805
  partners(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PartnerList!
3472
3806
 
3807
+ """
3808
+ Retrieves the current password rule configuration for the system, such as required character types and minimum length.
3809
+ """
3810
+ passwordRule: PasswordRule!
3811
+
3473
3812
  """To fetch a PayloadLog"""
3474
3813
  payloadLog(id: String!): PayloadLog!
3475
3814
 
3476
3815
  """To fetch multiple PayloadLogs"""
3477
3816
  payloadLogs(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PayloadLogList!
3478
3817
 
3818
+ """To fetch a PDFRelease"""
3819
+ pdfRelease(id: String!): PDFRelease
3820
+
3821
+ """To fetch multiple PDFReleases"""
3822
+ pdfReleases(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PDFReleaseList!
3823
+
3479
3824
  """To fetch a PlayGroup"""
3480
3825
  playGroup(id: String!): PlayGroup
3481
3826
 
@@ -3485,6 +3830,9 @@ type Query {
3485
3830
  """To fetch multiple PlayGroups"""
3486
3831
  playGroups(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PlayGroupList!
3487
3832
 
3833
+ """To fetch a UserPreference"""
3834
+ preference(id: String!): UserPreference
3835
+
3488
3836
  """To fetch a PrinterDevice"""
3489
3837
  printerDevice(id: String!): PrinterDevice!
3490
3838
 
@@ -3564,7 +3912,7 @@ type Query {
3564
3912
  """To fetch multiple Themes"""
3565
3913
  themes(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ThemeList!
3566
3914
 
3567
- """To fetch user"""
3915
+ """Fetches a user by their email address within the current domain."""
3568
3916
  user(email: EmailAddress!): User!
3569
3917
 
3570
3918
  """To fetch Menus by role"""
@@ -3573,7 +3921,9 @@ type Query {
3573
3921
  """To fetch roles of a user"""
3574
3922
  userRoles(userId: String!): [UserRole!]!
3575
3923
 
3576
- """To fetch multiple users"""
3924
+ """
3925
+ Fetches a list of users based on provided search parameters within the current domain.
3926
+ """
3577
3927
  users(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): UserList!
3578
3928
  vendors: [Domain!]!
3579
3929
  }
@@ -3590,7 +3940,7 @@ type Role {
3590
3940
  description: String
3591
3941
  domain: Domain!
3592
3942
  id: ID!
3593
- name: String!
3943
+ name: String
3594
3944
  privileges: [Privilege!]
3595
3945
  updatedAt: DateTimeISO
3596
3946
  updater: User
@@ -3640,6 +3990,7 @@ type Scenario {
3640
3990
  state: String
3641
3991
  steps: [Step!]
3642
3992
  timezone: String
3993
+ ttl: Float
3643
3994
  type: String
3644
3995
  updatedAt: DateTimeISO
3645
3996
  updater: User
@@ -3672,6 +4023,17 @@ type ScenarioInstanceProgress {
3672
4023
  steps: Int!
3673
4024
  }
3674
4025
 
4026
+ type ScenarioInstanceRunResult {
4027
+ data: Object
4028
+ instanceName: String
4029
+ message: String
4030
+ result: Object
4031
+ scenarioName: String
4032
+ state: String
4033
+ timestamp: DateTimeISO
4034
+ variables: Object
4035
+ }
4036
+
3675
4037
  type ScenarioInstanceState {
3676
4038
  data: Object
3677
4039
  domain: Domain
@@ -3708,6 +4070,7 @@ input ScenarioPatch {
3708
4070
  schedule: String
3709
4071
  steps: [StepPatch!]
3710
4072
  timezone: String
4073
+ ttl: Float
3711
4074
  type: String
3712
4075
  }
3713
4076
 
@@ -3756,36 +4119,113 @@ input Sorting {
3756
4119
 
3757
4120
  """Entity for StateRegister"""
3758
4121
  type StateRegister {
4122
+ """Creation time of the state register"""
3759
4123
  createdAt: DateTimeISO
4124
+
4125
+ """User who created the state register"""
3760
4126
  creator: User
4127
+
4128
+ """ID of the user who created the state register"""
4129
+ creatorId: String
4130
+
4131
+ """Description of the state register"""
3761
4132
  description: String
4133
+
4134
+ """Associated domain for the state register"""
3762
4135
  domain: Domain!
4136
+
4137
+ """ID of the associated domain"""
4138
+ domainId: String!
4139
+
4140
+ """Group name for the state register"""
4141
+ group: String
3763
4142
  id: ID!
4143
+
4144
+ """Name of the state register"""
3764
4145
  name: String
4146
+
4147
+ """Number of decimal places if the state is a number type"""
4148
+ place: String
4149
+
4150
+ """
4151
+ Reference to an external entity or data, used as a flexible foreign key
4152
+ """
3765
4153
  refBy: String
4154
+
4155
+ """Current state value"""
3766
4156
  state: Object
4157
+
4158
+ """Time to live for the state value in seconds"""
3767
4159
  ttl: Int
4160
+
4161
+ """Type of the state"""
3768
4162
  type: String
4163
+
4164
+ """Unit of the state value"""
4165
+ unit: String
4166
+
4167
+ """Last update time of the state register"""
3769
4168
  updatedAt: DateTimeISO
4169
+
4170
+ """User who last updated the state register"""
3770
4171
  updater: User
4172
+
4173
+ """ID of the user who last updated the state register"""
4174
+ updaterId: String
4175
+
4176
+ """User who wrote the state"""
3771
4177
  writer: User
4178
+
4179
+ """ID of the user who wrote the state"""
4180
+ writerId: String
4181
+
4182
+ """Time when the state was recorded"""
3772
4183
  wroteAt: DateTimeISO
3773
4184
  }
3774
4185
 
3775
4186
  type StateRegisterList {
4187
+ """List of state registers"""
3776
4188
  items: [StateRegister!]!
4189
+
4190
+ """Total number of state registers"""
3777
4191
  total: Int!
3778
4192
  }
3779
4193
 
3780
4194
  input StateRegisterPatch {
4195
+ """Flag indicating create/update operations"""
3781
4196
  cuFlag: String
4197
+
4198
+ """Description of the state register"""
3782
4199
  description: String
4200
+
4201
+ """Group name for the state register"""
4202
+ group: String
4203
+
4204
+ """ID of the state register"""
3783
4205
  id: ID
4206
+
4207
+ """Name of the state register"""
3784
4208
  name: String
4209
+
4210
+ """Number of decimal places if the state is a number type"""
4211
+ place: String
4212
+
4213
+ """
4214
+ Reference to an external entity or data, used as a flexible foreign key
4215
+ """
3785
4216
  refBy: String
4217
+
4218
+ """Current state value"""
3786
4219
  state: Object
4220
+
4221
+ """Time to live for the state value in seconds"""
3787
4222
  ttl: Int
4223
+
4224
+ """Type of the state"""
3788
4225
  type: String
4226
+
4227
+ """Unit of the state value"""
4228
+ unit: String
3789
4229
  }
3790
4230
 
3791
4231
  type Step {
@@ -3859,6 +4299,7 @@ type TaskTypeList {
3859
4299
  type Terminology {
3860
4300
  category: String!
3861
4301
  createdAt: DateTimeISO
4302
+ creator: User
3862
4303
  description: String
3863
4304
  display: String!
3864
4305
  domain: Domain!
@@ -3866,6 +4307,7 @@ type Terminology {
3866
4307
  locale: String!
3867
4308
  name: String!
3868
4309
  updatedAt: DateTimeISO
4310
+ updater: User
3869
4311
  }
3870
4312
 
3871
4313
  type TerminologyList {
@@ -3874,12 +4316,12 @@ type TerminologyList {
3874
4316
  }
3875
4317
 
3876
4318
  input TerminologyPatch {
3877
- category: String!
4319
+ category: String
3878
4320
  cuFlag: String
3879
4321
  description: String
3880
- display: String!
4322
+ display: String
3881
4323
  id: ID
3882
- locale: String!
4324
+ locale: String
3883
4325
  name: String
3884
4326
  }
3885
4327
 
@@ -3930,7 +4372,7 @@ type User {
3930
4372
  email: EmailAddress!
3931
4373
  id: ID!
3932
4374
  locale: String
3933
- name: String!
4375
+ name: String
3934
4376
  owner: Boolean
3935
4377
  reference: String
3936
4378
  roles: [Role!]!
@@ -3960,6 +4402,32 @@ input UserPatch {
3960
4402
  userType: String
3961
4403
  }
3962
4404
 
4405
+ """Entity for UserPreference"""
4406
+ type UserPreference {
4407
+ createdAt: DateTimeISO
4408
+ creator: User
4409
+ domain: Domain
4410
+ id: ID!
4411
+ key: String
4412
+ preference: Object
4413
+ updatedAt: DateTimeISO
4414
+ updater: User
4415
+ user: User!
4416
+ }
4417
+
4418
+ type UserPreferenceList {
4419
+ items: [UserPreference!]!
4420
+ total: Int!
4421
+ }
4422
+
4423
+ input UserPreferencePatch {
4424
+ cuFlag: String
4425
+ id: ID
4426
+ key: String!
4427
+ preference: Object!
4428
+ user: ObjectRef!
4429
+ }
4430
+
3963
4431
  type UserRole {
3964
4432
  assigned: Boolean
3965
4433
  description: String