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: package.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
"name": "appwrite",
3
3
"homepage": "https://appwrite.io/support",
4
4
"description": "Appwrite is an open-source self-hosted backend server that abstract and simplify complex and repetitive development tasks behind a very simple REST API",
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/account.ts
+10-10Lines changed: 10 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -129,7 +129,7 @@ This endpoint can also be used to convert an anonymous account to a normal one,
129
129
);
130
130
}
131
131
/**
132
-
* List Identities
132
+
* List identities
133
133
*
134
134
* Get the list of identities for the currently logged in user.
135
135
*
@@ -273,7 +273,7 @@ This endpoint can also be used to convert an anonymous account to a normal one,
273
273
);
274
274
}
275
275
/**
276
-
* Create Authenticator
276
+
* Create authenticator
277
277
*
278
278
* Add an authenticator app to be used as an MFA factor. Verify the authenticator using the [verify authenticator](/docs/references/cloud/client-web/account#updateMfaAuthenticator) method.
279
279
*
@@ -302,7 +302,7 @@ This endpoint can also be used to convert an anonymous account to a normal one,
302
302
);
303
303
}
304
304
/**
305
-
* Verify Authenticator
305
+
* Verify authenticator
306
306
*
307
307
* Verify an authenticator app after adding it using the [add authenticator](/docs/references/cloud/client-web/account#createMfaAuthenticator) method.
308
308
*
@@ -338,7 +338,7 @@ This endpoint can also be used to convert an anonymous account to a normal one,
338
338
);
339
339
}
340
340
/**
341
-
* Delete Authenticator
341
+
* Delete authenticator
342
342
*
343
343
* Delete an authenticator for a user by ID.
344
344
*
@@ -367,7 +367,7 @@ This endpoint can also be used to convert an anonymous account to a normal one,
367
367
);
368
368
}
369
369
/**
370
-
* Create MFA Challenge
370
+
* Create MFA challenge
371
371
*
372
372
* Begin the process of MFA verification after sign-in. Finish the flow with [updateMfaChallenge](/docs/references/cloud/client-web/account#updateMfaChallenge) method.
373
373
*
@@ -399,7 +399,7 @@ This endpoint can also be used to convert an anonymous account to a normal one,
399
399
);
400
400
}
401
401
/**
402
-
* Create MFA Challenge (confirmation)
402
+
* Create MFA challenge (confirmation)
403
403
*
404
404
* Complete the MFA challenge by providing the one-time password. Finish the process of MFA verification by providing the one-time password. To begin the flow, use [createMfaChallenge](/docs/references/cloud/client-web/account#createMfaChallenge) method.
405
405
*
@@ -438,7 +438,7 @@ This endpoint can also be used to convert an anonymous account to a normal one,
438
438
);
439
439
}
440
440
/**
441
-
* List Factors
441
+
* List factors
442
442
*
443
443
* List the factors available on the account to be used as a MFA challange.
444
444
*
@@ -463,7 +463,7 @@ This endpoint can also be used to convert an anonymous account to a normal one,
463
463
);
464
464
}
465
465
/**
466
-
* Get MFA Recovery Codes
466
+
* Get MFA recovery codes
467
467
*
468
468
* Get recovery codes that can be used as backup for MFA flow. Before getting codes, they must be generated using [createMfaRecoveryCodes](/docs/references/cloud/client-web/account#createMfaRecoveryCodes) method. An OTP challenge is required to read recovery codes.
469
469
*
@@ -488,7 +488,7 @@ This endpoint can also be used to convert an anonymous account to a normal one,
488
488
);
489
489
}
490
490
/**
491
-
* Create MFA Recovery Codes
491
+
* Create MFA recovery codes
492
492
*
493
493
* Generate recovery codes as backup for MFA flow. It's recommended to generate and show then immediately after user successfully adds their authehticator. Recovery codes can be used as a MFA verification type in [createMfaChallenge](/docs/references/cloud/client-web/account#createMfaChallenge) method.
494
494
*
@@ -513,7 +513,7 @@ This endpoint can also be used to convert an anonymous account to a normal one,
513
513
);
514
514
}
515
515
/**
516
-
* Regenerate MFA Recovery Codes
516
+
* Regenerate MFA recovery codes
517
517
*
518
518
* Regenerate recovery codes that can be used as backup for MFA flow. Before regenerating codes, they must be first generated using [createMfaRecoveryCodes](/docs/references/cloud/client-web/account#createMfaRecoveryCodes) method. An OTP challenge is required to regenreate recovery codes.
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