Skip to content

Commit 8c3067a

Browse files
committed
feat: 1.6.x
1 parent b1e6772 commit 8c3067a

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

src/models.ts

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -839,11 +839,11 @@ export namespace Models {
839839
*/
840840
userId: string;
841841
/**
842-
* User name.
842+
* User name. Hide this attribute by toggling membership privacy in the Console.
843843
*/
844844
userName: string;
845845
/**
846-
* User email address.
846+
* User email address. Hide this attribute by toggling membership privacy in the Console.
847847
*/
848848
userEmail: string;
849849
/**
@@ -867,7 +867,7 @@ export namespace Models {
867867
*/
868868
confirm: boolean;
869869
/**
870-
* Multi factor authentication status, true if the user has MFA enabled or false otherwise.
870+
* Multi factor authentication status, true if the user has MFA enabled or false otherwise. Hide this attribute by toggling membership privacy in the Console.
871871
*/
872872
mfa: boolean;
873873
/**
@@ -1195,5 +1195,9 @@ export namespace Models {
11951195
* The target identifier.
11961196
*/
11971197
identifier: string;
1198+
/**
1199+
* Is the target expired.
1200+
*/
1201+
expired: boolean;
11981202
}
11991203
}

src/services/teams.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,8 @@ export class Teams extends Service {
168168
* List team memberships
169169
*
170170
* Use this endpoint to list a team's members using the team's ID. All team
171-
* members have read access to this endpoint.
171+
* members have read access to this endpoint. Hide sensitive attributes from
172+
* the response by toggling membership privacy in the Console.
172173
*
173174
* @param {string} teamId
174175
* @param {string[]} queries
@@ -279,7 +280,8 @@ export class Teams extends Service {
279280
* Get team membership
280281
*
281282
* Get a team member by the membership unique id. All team members have read
282-
* access for this resource.
283+
* access for this resource. Hide sensitive attributes from the response by
284+
* toggling membership privacy in the Console.
283285
*
284286
* @param {string} teamId
285287
* @param {string} membershipId

0 commit comments

Comments
 (0)