@operato/scene-scichart 7.3.8 → 7.3.10

Sign up to get free protection for your applications and to get access to all the features.
package/schema.graphql CHANGED
@@ -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"""
@@ -747,7 +749,7 @@ scalar EmailAddress @specifiedBy(url: "https://html.spec.whatwg.org/multipage/in
747
749
  """Entity for Employee"""
748
750
  type Employee {
749
751
  active: Boolean
750
- address: String!
752
+ address: String
751
753
  alias: String
752
754
  approvalLines: [ApprovalLine!]!
753
755
  contact: Contact
@@ -787,9 +789,10 @@ type EmployeeList {
787
789
  input EmployeePatch {
788
790
  active: Boolean
789
791
  alias: String
792
+ contact: ObjectRefForContact
790
793
  controlNo: String
791
794
  cuFlag: String
792
- department: ObjectRef
795
+ department: ObjectRefForDepartment
793
796
  hiredOn: String
794
797
  id: ID
795
798
  jobPosition: String
@@ -1502,7 +1505,9 @@ type Mutation {
1502
1505
  """To activate user"""
1503
1506
  activateUser(userId: String!): Boolean!
1504
1507
 
1505
- """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
+ """
1506
1511
  attachContact(contactId: String!, id: String!): Employee!
1507
1512
  cancelInvitation(email: EmailAddress!, reference: String!, type: String!): Boolean!
1508
1513
 
@@ -1559,7 +1564,9 @@ type Mutation {
1559
1564
  """To create domain (Only superuser is granted this privilege.)"""
1560
1565
  createDomain(domainInput: DomainPatch!): Domain!
1561
1566
 
1562
- """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
+ """
1563
1570
  createEmployee(employee: NewEmployee!): Employee!
1564
1571
 
1565
1572
  """To create new Entity"""
@@ -1598,6 +1605,9 @@ type Mutation {
1598
1605
  """To create new ApprovalLine for current user"""
1599
1606
  createMyApprovalLine(approvalLine: NewApprovalLine!): ApprovalLine!
1600
1607
 
1608
+ """To create my new PagePreference"""
1609
+ createMyPagePreference(pagePreference: NewPagePreference!): PagePreference!
1610
+
1601
1611
  """To create new Notification"""
1602
1612
  createNotification(notification: NewNotification!): Notification!
1603
1613
 
@@ -1607,6 +1617,12 @@ type Mutation {
1607
1617
  """To create new Oauth2Client"""
1608
1618
  createOauth2Client(oauth2Client: NewOauth2Client!): Oauth2Client!
1609
1619
 
1620
+ """To create new PDFRelease"""
1621
+ createPDFRelease(pdfRelease: NewPDFRelease!): PDFRelease!
1622
+
1623
+ """To create new PDFTemplate"""
1624
+ createPDFTemplate(pdfTemplate: NewPDFTemplate!): PDFTemplate!
1625
+
1610
1626
  """To create new PayloadLog"""
1611
1627
  createPayloadLog(payloadLog: NewPayloadLog!): PayloadLog!
1612
1628
 
@@ -1639,6 +1655,9 @@ type Mutation {
1639
1655
 
1640
1656
  """To create new user"""
1641
1657
  createUser(user: NewUser!): User!
1658
+
1659
+ """To create new UserPreference"""
1660
+ createUserPreference(preference: NewUserPreference!): UserPreference!
1642
1661
  deleteAppBinding(id: String!): Boolean!
1643
1662
 
1644
1663
  """To delete appliance"""
@@ -1710,10 +1729,14 @@ type Mutation {
1710
1729
  """To delete multiple domains (Only superuser is granted this privilege.)"""
1711
1730
  deleteDomains(names: [String!]!): Boolean!
1712
1731
 
1713
- """To delete Employee"""
1732
+ """
1733
+ Deletes an employee record identified by the given ID. Also deletes any attachments associated with the employee.
1734
+ """
1714
1735
  deleteEmployee(id: String!): Boolean!
1715
1736
 
1716
- """To delete multiple Employees"""
1737
+ """
1738
+ Deletes multiple employee records identified by the given IDs. Also deletes any attachments associated with each employee.
1739
+ """
1717
1740
  deleteEmployees(ids: [String!]!): Boolean!
1718
1741
 
1719
1742
  """To delete multiple Entities"""
@@ -1779,6 +1802,12 @@ type Mutation {
1779
1802
  """To delete multiple ApprovalLines for current user"""
1780
1803
  deleteMyApprovalLines(ids: [String!]!): Boolean!
1781
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
+
1782
1811
  """To delete Notification"""
1783
1812
  deleteNotification(id: String!): Boolean!
1784
1813
 
@@ -1797,6 +1826,24 @@ type Mutation {
1797
1826
  """To delete multiple Oauth2Clients"""
1798
1827
  deleteOauth2Clients(ids: [String!]!): Boolean!
1799
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
+
1800
1847
  """To delete multiple partnerSettings"""
1801
1848
  deletePartnerSettings(ids: [String!]!): Boolean!
1802
1849
 
@@ -1860,10 +1907,18 @@ type Mutation {
1860
1907
  """To delete a user"""
1861
1908
  deleteUser(email: EmailAddress!): Boolean!
1862
1909
 
1910
+ """To delete UserPreference"""
1911
+ deleteUserPreference(id: String!): Boolean!
1912
+
1913
+ """To delete multiple UserPreferences"""
1914
+ deleteUserPreferences(ids: [String!]!): Boolean!
1915
+
1863
1916
  """To delete some users"""
1864
1917
  deleteUsers(emails: [String!]!): Boolean!
1865
1918
 
1866
- """To detach a contact from Employee"""
1919
+ """
1920
+ Detaches an existing contact from an employee. The employee is identified by their ID.
1921
+ """
1867
1922
  detachContact(id: String!): Employee!
1868
1923
 
1869
1924
  """To disconnect a connection"""
@@ -1905,7 +1960,9 @@ type Mutation {
1905
1960
  """To import multiple Departments"""
1906
1961
  importDepartments(departments: [DepartmentPatch!]!): Boolean!
1907
1962
 
1908
- """To import multiple Employees"""
1963
+ """
1964
+ Imports multiple employee records into the system. Each employee record must be provided in the EmployeePatch format.
1965
+ """
1909
1966
  importEmployees(employees: [EmployeePatch!]!): Boolean!
1910
1967
 
1911
1968
  """To import multiple MenuButtons"""
@@ -1932,6 +1989,12 @@ type Mutation {
1932
1989
  """To import multiple Oauth2Clients"""
1933
1990
  importOauth2Clients(oauth2Clients: [Oauth2ClientPatch!]!): Boolean!
1934
1991
 
1992
+ """To import multiple PDFReleases"""
1993
+ importPDFReleases(pdfReleases: [PDFReleasePatch!]!): Boolean!
1994
+
1995
+ """To import multiple PDFTemplates"""
1996
+ importPDFTemplates(pdfTemplates: [PDFTemplatePatch!]!): Boolean!
1997
+
1935
1998
  """To import multiple scenarios"""
1936
1999
  importScenarios(scenarios: [ScenarioPatch!]!): Boolean!
1937
2000
 
@@ -1979,6 +2042,14 @@ type Mutation {
1979
2042
  visibility: String!
1980
2043
  ): BoardTemplate!
1981
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
+
1982
2053
  """To release a Board"""
1983
2054
  releaseBoard(id: String!): Board!
1984
2055
  renewApplicationAccessToken(id: String!, scope: String!): AccessToken!
@@ -2068,7 +2139,9 @@ type Mutation {
2068
2139
  """To update multiple domains (Only superuser is granted this privilege.)"""
2069
2140
  updateDomains(patches: [DomainPatch!]!): Boolean!
2070
2141
 
2071
- """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
+ """
2072
2145
  updateEmployee(id: String!, patch: EmployeePatch!): Employee!
2073
2146
 
2074
2147
  """To modify Entity' information"""
@@ -2123,7 +2196,9 @@ type Mutation {
2123
2196
  """To modify multiple Departments' information"""
2124
2197
  updateMultipleDepartment(patches: [DepartmentPatch!]!): [Department!]!
2125
2198
 
2126
- """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
+ """
2127
2202
  updateMultipleEmployee(patches: [EmployeePatch!]!): [Employee!]!
2128
2203
 
2129
2204
  """To modify multiple Entitys' information"""
@@ -2144,6 +2219,12 @@ type Mutation {
2144
2219
  """To modify multiple NotificationRules' information"""
2145
2220
  updateMultipleNotificationRule(patches: [NotificationRulePatch!]!): [NotificationRule!]!
2146
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
+
2147
2228
  """To modify multiple PartnerSettings' information"""
2148
2229
  updateMultiplePartnerSetting(patches: [PartnerSettingPatch!]!): [PartnerSetting!]!
2149
2230
 
@@ -2177,6 +2258,12 @@ type Mutation {
2177
2258
  """To modify ApprovalLine information for current user"""
2178
2259
  updateMyApprovalLine(id: String!, patch: ApprovalLinePatch!): ApprovalLine!
2179
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
+
2180
2267
  """To modify Notification information"""
2181
2268
  updateNotification(id: String!, patch: NotificationPatch!): Notification!
2182
2269
 
@@ -2186,6 +2273,12 @@ type Mutation {
2186
2273
  """To modify Oauth2Client information"""
2187
2274
  updateOauth2Client(id: String!, patch: Oauth2ClientPatch!): Oauth2Client!
2188
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
+
2189
2282
  """To modify PayloadLog information"""
2190
2283
  updatePayloadLog(id: String!, patch: PayloadLogPatch!): PayloadLog!
2191
2284
 
@@ -2231,6 +2324,9 @@ type Mutation {
2231
2324
  """To modify user information"""
2232
2325
  updateUser(email: EmailAddress!, patch: UserPatch!): User!
2233
2326
 
2327
+ """To modify UserPreference information"""
2328
+ updateUserPreference(id: String!, patch: UserPreferencePatch!): UserPreference!
2329
+
2234
2330
  """To update roles for a user"""
2235
2331
  updateUserRoles(availableRoles: [ObjectRef!]!, selectedRoles: [ObjectRef!]!, userId: String!): User!
2236
2332
  }
@@ -2269,6 +2365,7 @@ input NewAttachment {
2269
2365
  file: Upload!
2270
2366
  refBy: String
2271
2367
  refType: String
2368
+ tags: Object
2272
2369
  }
2273
2370
 
2274
2371
  input NewAttributeSet {
@@ -2353,8 +2450,9 @@ input NewDepartment {
2353
2450
  input NewEmployee {
2354
2451
  active: Boolean
2355
2452
  alias: String
2453
+ contact: ObjectRefForContact
2356
2454
  controlNo: String!
2357
- department: ObjectRef
2455
+ department: ObjectRefForDepartment
2358
2456
  extension: String
2359
2457
  hiredOn: String
2360
2458
  jobPosition: String
@@ -2630,6 +2728,35 @@ input NewOauth2Client {
2630
2728
  webhook: String
2631
2729
  }
2632
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
+
2633
2760
  input NewPayloadLog {
2634
2761
  description: String
2635
2762
  name: String!
@@ -2755,6 +2882,12 @@ input NewUserByDomainWizardInput {
2755
2882
  roles: [NewRole!]!
2756
2883
  }
2757
2884
 
2885
+ input NewUserPreference {
2886
+ key: String!
2887
+ preference: Object!
2888
+ user: ObjectRef!
2889
+ }
2890
+
2758
2891
  """Entity for Notification"""
2759
2892
  type Notification {
2760
2893
  body: String
@@ -2922,6 +3055,34 @@ input ObjectRefApprovalLineOwnerType {
2922
3055
  name: String
2923
3056
  }
2924
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
+
2925
3086
  input ObjectRefForEmployee {
2926
3087
  active: Boolean
2927
3088
  alias: String
@@ -2978,6 +3139,111 @@ enum OrgMemberTargetType {
2978
3139
  Role
2979
3140
  }
2980
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
+
2981
3247
  input Pagination {
2982
3248
  limit: Int
2983
3249
  page: Int
@@ -3029,6 +3295,18 @@ input PartnerSettingPatch {
3029
3295
  value: String
3030
3296
  }
3031
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
+
3032
3310
  """Entity for PayloadLog"""
3033
3311
  type PayloadLog {
3034
3312
  createdAt: DateTimeISO
@@ -3205,6 +3483,12 @@ type PropertySpec {
3205
3483
 
3206
3484
  type Query {
3207
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!
3208
3492
  appBinding(id: String!): AppBinding!
3209
3493
  appBindings(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): AppBindingList!
3210
3494
 
@@ -3277,19 +3561,25 @@ type Query {
3277
3561
  boardsCreatedByMe(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BoardList!
3278
3562
  chatCompletion(input: ChatCompletionInput!): ChatCompletionOutput!
3279
3563
 
3280
- """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
+ """
3281
3567
  checkDefaultPassword: Boolean!
3282
3568
 
3283
- """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
+ """
3284
3572
  checkResettablePasswordToDefault: Boolean!
3285
3573
 
3286
3574
  """To fetch the preset of role for new user"""
3287
3575
  checkRolePreset: [Role!]!
3288
3576
 
3289
- """To check if current user is belongs to current domain"""
3577
+ """
3578
+ Checks if the current authenticated user belongs to the current domain.
3579
+ """
3290
3580
  checkUserBelongsDomain: Boolean!
3291
3581
 
3292
- """..."""
3582
+ """Checks if a user with the given email address exists in the system."""
3293
3583
  checkUserExistence(email: EmailAddress!): Boolean!
3294
3584
 
3295
3585
  """To fetch common approval lines"""
@@ -3349,10 +3639,14 @@ type Query {
3349
3639
  """To fetch multiple appliance"""
3350
3640
  edges(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApplianceList!
3351
3641
 
3352
- """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
+ """
3353
3645
  employee(id: String!): Employee
3354
3646
 
3355
- """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
+ """
3356
3650
  employees(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): EmployeeList!
3357
3651
 
3358
3652
  """To fetch multiple Entities"""
@@ -3461,9 +3755,24 @@ type Query {
3461
3755
  """To fetch my notifications"""
3462
3756
  myNotifications(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): NotificationList!
3463
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
+
3464
3767
  """To fetch roles of current user"""
3465
3768
  myRoles: [Role!]!
3466
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
+
3467
3776
  """To fetch a Notification"""
3468
3777
  notification(id: String!): Notification
3469
3778
 
@@ -3482,6 +3791,9 @@ type Query {
3482
3791
  """To fetch multiple Oauth2Clients"""
3483
3792
  oauth2Clients(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): Oauth2ClientList!
3484
3793
 
3794
+ """To fetch a PagePreference"""
3795
+ pagePreference(id: String!): PagePreference
3796
+
3485
3797
  """To fetch specific domain's CommonCodes by given name"""
3486
3798
  partnerCommonCode(name: String!, partnerDomainId: String!): CommonCode!
3487
3799
 
@@ -3492,12 +3804,23 @@ type Query {
3492
3804
  partnerSettings(filters: [Filter!]!, pagination: Pagination!, partnerDomain: ObjectRef!, sortings: [Sorting!]!): PartnerSettingList!
3493
3805
  partners(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PartnerList!
3494
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
+
3495
3812
  """To fetch a PayloadLog"""
3496
3813
  payloadLog(id: String!): PayloadLog!
3497
3814
 
3498
3815
  """To fetch multiple PayloadLogs"""
3499
3816
  payloadLogs(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PayloadLogList!
3500
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
+
3501
3824
  """To fetch a PlayGroup"""
3502
3825
  playGroup(id: String!): PlayGroup
3503
3826
 
@@ -3507,6 +3830,9 @@ type Query {
3507
3830
  """To fetch multiple PlayGroups"""
3508
3831
  playGroups(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PlayGroupList!
3509
3832
 
3833
+ """To fetch a UserPreference"""
3834
+ preference(id: String!): UserPreference
3835
+
3510
3836
  """To fetch a PrinterDevice"""
3511
3837
  printerDevice(id: String!): PrinterDevice!
3512
3838
 
@@ -3586,7 +3912,7 @@ type Query {
3586
3912
  """To fetch multiple Themes"""
3587
3913
  themes(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ThemeList!
3588
3914
 
3589
- """To fetch user"""
3915
+ """Fetches a user by their email address within the current domain."""
3590
3916
  user(email: EmailAddress!): User!
3591
3917
 
3592
3918
  """To fetch Menus by role"""
@@ -3595,7 +3921,9 @@ type Query {
3595
3921
  """To fetch roles of a user"""
3596
3922
  userRoles(userId: String!): [UserRole!]!
3597
3923
 
3598
- """To fetch multiple users"""
3924
+ """
3925
+ Fetches a list of users based on provided search parameters within the current domain.
3926
+ """
3599
3927
  users(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): UserList!
3600
3928
  vendors: [Domain!]!
3601
3929
  }
@@ -4074,6 +4402,32 @@ input UserPatch {
4074
4402
  userType: String
4075
4403
  }
4076
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
+
4077
4431
  type UserRole {
4078
4432
  assigned: Boolean
4079
4433
  description: String