You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/models.ts
+7-3Lines changed: 7 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -842,11 +842,11 @@ export namespace Models {
842
842
*/
843
843
userId: string;
844
844
/**
845
-
* User name.
845
+
* User name. Hide this attribute by toggling membership privacy in the Console.
846
846
*/
847
847
userName: string;
848
848
/**
849
-
* User email address.
849
+
* User email address. Hide this attribute by toggling membership privacy in the Console.
850
850
*/
851
851
userEmail: string;
852
852
/**
@@ -870,7 +870,7 @@ export namespace Models {
870
870
*/
871
871
confirm: boolean;
872
872
/**
873
-
* Multi factor authentication status, true if the user has MFA enabled or false otherwise.
873
+
* Multi factor authentication status, true if the user has MFA enabled or false otherwise. Hide this attribute by toggling membership privacy in the Console.
Copy file name to clipboardExpand all lines: src/services/teams.ts
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -182,7 +182,7 @@ export class Teams {
182
182
/**
183
183
* List team memberships
184
184
*
185
-
* Use this endpoint to list a team's members using the team's ID. All team members have read access to this endpoint.
185
+
* Use this endpoint to list a team's members using the team's ID. All team members have read access to this endpoint. Hide sensitive attributes from the response by toggling membership privacy in the Console.
186
186
*
187
187
* @param {string} teamId
188
188
* @param {string[]} queries
@@ -282,7 +282,7 @@ Please note that to avoid a [Redirect Attack](https://github.com/OWASP/CheatShee
282
282
/**
283
283
* Get team membership
284
284
*
285
-
* Get a team member by the membership unique id. All team members have read access for this resource.
285
+
* Get a team member by the membership unique id. All team members have read access for this resource. Hide sensitive attributes from the response by toggling membership privacy in the Console.
0 commit comments