mirror of
https://github.com/appwrite/appwrite
synced 2026-05-21 07:58:55 +00:00
rebuilt specs changes
This commit is contained in:
parent
0aaee54a63
commit
c6426d29e2
1 changed files with 1 additions and 29 deletions
|
|
@ -5347,16 +5347,12 @@
|
|||
* @param {string} password
|
||||
* @param {string} passwordSalt
|
||||
* @param {string} passwordSaltSeparator
|
||||
* @param {number} passwordCpu
|
||||
* @param {number} passwordMemory
|
||||
* @param {number} passwordParallel
|
||||
* @param {number} passwordLength
|
||||
* @param {string} passwordSignerKey
|
||||
* @param {string} name
|
||||
* @throws {AppwriteException}
|
||||
* @returns {Promise}
|
||||
*/
|
||||
createSCryptModifiedUser: (userId, email, password, passwordSalt, passwordSaltSeparator, passwordCpu, passwordMemory, passwordParallel, passwordLength, passwordSignerKey, name) => __awaiter(this, void 0, void 0, function* () {
|
||||
createSCryptModifiedUser: (userId, email, password, passwordSalt, passwordSaltSeparator, passwordSignerKey, name) => __awaiter(this, void 0, void 0, function* () {
|
||||
if (typeof userId === 'undefined') {
|
||||
throw new AppwriteException('Missing required parameter: "userId"');
|
||||
}
|
||||
|
|
@ -5372,18 +5368,6 @@
|
|||
if (typeof passwordSaltSeparator === 'undefined') {
|
||||
throw new AppwriteException('Missing required parameter: "passwordSaltSeparator"');
|
||||
}
|
||||
if (typeof passwordCpu === 'undefined') {
|
||||
throw new AppwriteException('Missing required parameter: "passwordCpu"');
|
||||
}
|
||||
if (typeof passwordMemory === 'undefined') {
|
||||
throw new AppwriteException('Missing required parameter: "passwordMemory"');
|
||||
}
|
||||
if (typeof passwordParallel === 'undefined') {
|
||||
throw new AppwriteException('Missing required parameter: "passwordParallel"');
|
||||
}
|
||||
if (typeof passwordLength === 'undefined') {
|
||||
throw new AppwriteException('Missing required parameter: "passwordLength"');
|
||||
}
|
||||
if (typeof passwordSignerKey === 'undefined') {
|
||||
throw new AppwriteException('Missing required parameter: "passwordSignerKey"');
|
||||
}
|
||||
|
|
@ -5404,18 +5388,6 @@
|
|||
if (typeof passwordSaltSeparator !== 'undefined') {
|
||||
payload['passwordSaltSeparator'] = passwordSaltSeparator;
|
||||
}
|
||||
if (typeof passwordCpu !== 'undefined') {
|
||||
payload['passwordCpu'] = passwordCpu;
|
||||
}
|
||||
if (typeof passwordMemory !== 'undefined') {
|
||||
payload['passwordMemory'] = passwordMemory;
|
||||
}
|
||||
if (typeof passwordParallel !== 'undefined') {
|
||||
payload['passwordParallel'] = passwordParallel;
|
||||
}
|
||||
if (typeof passwordLength !== 'undefined') {
|
||||
payload['passwordLength'] = passwordLength;
|
||||
}
|
||||
if (typeof passwordSignerKey !== 'undefined') {
|
||||
payload['passwordSignerKey'] = passwordSignerKey;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue