@@ -2795,6 +2795,8 @@ export type Mutation = {
2795
2795
updateUser: User;
2796
2796
/** Updates the specified User Group. */
2797
2797
updateUserGroup: UserGroup;
2798
+ /** Update the platform settings, such as nameID, email, for the specified User. */
2799
+ updateUserPlatformSettings: User;
2798
2800
/** Updates the image URI for the specified Visual. */
2799
2801
updateVisual: Visual;
2800
2802
/** Updates the specified Whiteboard. */
@@ -3387,6 +3389,10 @@ export type MutationUpdateUserGroupArgs = {
3387
3389
userGroupData: UpdateUserGroupInput;
3388
3390
};
3389
3391
3392
+ export type MutationUpdateUserPlatformSettingsArgs = {
3393
+ updateData: UpdateUserPlatformSettingsInput;
3394
+ };
3395
+
3390
3396
export type MutationUpdateVisualArgs = {
3391
3397
updateData: UpdateVisualInput;
3392
3398
};
@@ -5425,6 +5431,14 @@ export type UpdateUserInput = {
5425
5431
serviceProfile?: InputMaybe<Scalars['Boolean']>;
5426
5432
};
5427
5433
5434
+ export type UpdateUserPlatformSettingsInput = {
5435
+ email?: InputMaybe<Scalars['String']>;
5436
+ /** Upate the URL path for the User. */
5437
+ nameID?: InputMaybe<Scalars['NameID']>;
5438
+ /** The identifier for the User whose platform managed information is to be updated. */
5439
+ userID: Scalars['String'];
5440
+ };
5441
+
5428
5442
export type UpdateUserPreferenceInput = {
5429
5443
/** Type of the user preference */
5430
5444
type: UserPreferenceType;
@@ -17533,19 +17547,6 @@ export type CommunityUserPrivilegesWithParentCommunityQuery = {
17533
17547
authorization?:
17534
17548
| { __typename?: 'Authorization'; id: string; myPrivileges?: Array<AuthorizationPrivilege> | undefined }
17535
17549
| undefined;
17536
- leadUsers?:
17537
- | Array<{
17538
- __typename?: 'User';
17539
- id: string;
17540
- profile: {
17541
- __typename?: 'Profile';
17542
- id: string;
17543
- displayName: string;
17544
- avatar?: { __typename?: 'Visual'; id: string; uri: string; name: string } | undefined;
17545
- location?: { __typename?: 'Location'; id: string; country: string; city: string } | undefined;
17546
- };
17547
- }>
17548
- | undefined;
17549
17550
}
17550
17551
| undefined;
17551
17552
challenge?: {
@@ -17562,19 +17563,6 @@ export type CommunityUserPrivilegesWithParentCommunityQuery = {
17562
17563
authorization?:
17563
17564
| { __typename?: 'Authorization'; id: string; myPrivileges?: Array<AuthorizationPrivilege> | undefined }
17564
17565
| undefined;
17565
- leadUsers?:
17566
- | Array<{
17567
- __typename?: 'User';
17568
- id: string;
17569
- profile: {
17570
- __typename?: 'Profile';
17571
- id: string;
17572
- displayName: string;
17573
- avatar?: { __typename?: 'Visual'; id: string; uri: string; name: string } | undefined;
17574
- location?: { __typename?: 'Location'; id: string; country: string; city: string } | undefined;
17575
- };
17576
- }>
17577
- | undefined;
17578
17566
}
17579
17567
| undefined;
17580
17568
};
@@ -17592,6 +17580,32 @@ export type CommunityUserPrivilegesWithParentCommunityQuery = {
17592
17580
authorization?:
17593
17581
| { __typename?: 'Authorization'; id: string; myPrivileges?: Array<AuthorizationPrivilege> | undefined }
17594
17582
| undefined;
17583
+ leadUsers?:
17584
+ | Array<{
17585
+ __typename?: 'User';
17586
+ id: string;
17587
+ profile: {
17588
+ __typename?: 'Profile';
17589
+ id: string;
17590
+ displayName: string;
17591
+ avatar?: { __typename?: 'Visual'; id: string; uri: string; name: string } | undefined;
17592
+ location?: { __typename?: 'Location'; id: string; country: string; city: string } | undefined;
17593
+ };
17594
+ }>
17595
+ | undefined;
17596
+ adminUsers?:
17597
+ | Array<{
17598
+ __typename?: 'User';
17599
+ id: string;
17600
+ profile: {
17601
+ __typename?: 'Profile';
17602
+ id: string;
17603
+ displayName: string;
17604
+ avatar?: { __typename?: 'Visual'; id: string; uri: string; name: string } | undefined;
17605
+ location?: { __typename?: 'Location'; id: string; country: string; city: string } | undefined;
17606
+ };
17607
+ }>
17608
+ | undefined;
17595
17609
}
17596
17610
| undefined;
17597
17611
};
0 commit comments