Skip to content

New APIs OpenPlaidBankLogin and OpenPlaidBankAccountSelector and AddPersonalBankAccount #9423

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 14 commits into from
Jul 19, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/CONST.js
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ const CONST = {
FREE_PLAN_BANK_ACCOUNT_ID: 'expensify_freePlanBankAccountID',
ACH_DATA_THROTTLED: 'expensify_ACHData_throttled',
FAILED_BANK_ACCOUNT_VALIDATIONS_PREFIX: 'private_failedBankValidations_',
BANK_ACCOUNT_GET_THROTTLED: 'private_throttledHistory_BankAccount_Get',
PLAID_THROTTLED: 'private_throttledHistory_openPlaidBankAccountSelector',
PREFERRED_LOCALE: 'preferredLocale',
KYC_MIGRATION: 'expensify_migration_2020_04_28_RunKycVerifications',
PREFERRED_EMOJI_SKIN_TONE: 'expensify_preferredEmojiSkinTone',
Expand Down
11 changes: 7 additions & 4 deletions src/ONYXKEYS.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,11 +89,11 @@ export default {
// Contains the users's block expiration (if they have one)
NVP_BLOCKED_FROM_CONCIERGE: 'private_blockedFromConcierge',

// SDK token used to communicate with Plaid API
PLAID_LINK_TOKEN: 'plaidLinkToken',
// Plaid data (access tokens, bank accounts ...)
PLAID_DATA: 'plaidData',

// List of bank accounts returned by Plaid
PLAID_BANK_ACCOUNTS: 'plaidBankAccounts',
// Token needed to initialize Plaid link
PLAID_LINK_TOKEN: 'plaidLinkToken',

// Collection Keys
COLLECTION: {
Expand Down Expand Up @@ -138,6 +138,9 @@ export default {
// Stores information about the user's saved statements
WALLET_STATEMENT: 'walletStatement',

// Stores information about the active personal bank account being set up
PERSONAL_BANK_ACCOUNT: 'personalBankAccount',

// Stores information about the active reimbursement account being set up
REIMBURSEMENT_ACCOUNT: 'reimbursementAccount',

Expand Down
Loading