expensify-common 2.0.111 → 2.0.112
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/API.js +0 -12
- package/package.json +1 -1
package/dist/API.js
CHANGED
|
@@ -415,18 +415,6 @@ function API(network, args) {
|
|
|
415
415
|
const newParameters = Object.assign(Object.assign({}, parameters), { api_setCookie: false });
|
|
416
416
|
return performPOSTRequest(commandName, newParameters);
|
|
417
417
|
},
|
|
418
|
-
/**
|
|
419
|
-
* Resets the status of SMS delivery of a phone number
|
|
420
|
-
* @param {Object} parameters
|
|
421
|
-
* @param {String} parameters.email
|
|
422
|
-
* @returns {ExpensifyAPIDeferred}
|
|
423
|
-
*/
|
|
424
|
-
resetSMSDeliveryFailureStatus(parameters) {
|
|
425
|
-
const commandName = 'ResetSMSDeliveryFailureStatus';
|
|
426
|
-
requireParameters(['email'], parameters, commandName);
|
|
427
|
-
const newParameters = Object.assign(Object.assign({}, parameters), { api_setCookie: false });
|
|
428
|
-
return performPOSTRequest(commandName, newParameters);
|
|
429
|
-
},
|
|
430
418
|
/**
|
|
431
419
|
* Sets the password for an account
|
|
432
420
|
*
|