* feat(snjs): add account recovery e2e test suite * fix(snjs): request params in account recovery tests * fix(snjs): context password passing * refactor: replace factory functions with context Co-authored-by: Mo <mo@standardnotes.com>
7 lines
143 B
TypeScript
7 lines
143 B
TypeScript
export interface RecoveryKeyParamsRequestParams {
|
|
api_version: string
|
|
username: string
|
|
code_challenge: string
|
|
recovery_codes: string
|
|
}
|