[PR #4049] [MERGED] Pluggy.ai bank sync #12219

Closed
opened 2026-04-10 21:22:52 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/actualbudget/actual/pull/4049
Author: @lelemm
Created: 12/27/2024
Status: Merged
Merged: 3/4/2025
Merged by: @lelemm

Base: masterHead: pluggy.ai


📝 Commits (10+)

  • 11752f4 added Pluggy.ai bank sync
  • f5917da added md
  • 57ded0f code review nits
  • f75eccc small fixes
  • df0ce3a Merge remote-tracking branch 'origin/master' into pluggy.ai
  • bbc2b7c fix syncs
  • f9f0c76 Merge remote-tracking branch 'origin/master' into pluggy.ai
  • 6aaf5d2 Merge remote-tracking branch 'origin/master' into pluggy.ai
  • c743066 Merge remote-tracking branch 'origin/master' into pluggy.ai
  • a7d6ff0 refactory after redux changes

📊 Changes

25 files changed (+1103 additions, -6 deletions)

View changed files

📝 packages/desktop-client/src/components/Modals.tsx (+6 -0)
📝 packages/desktop-client/src/components/banksync/EditSyncAccount.tsx (+19 -0)
📝 packages/desktop-client/src/components/banksync/index.tsx (+1 -0)
📝 packages/desktop-client/src/components/modals/CreateAccountModal.tsx (+174 -2)
packages/desktop-client/src/components/modals/PluggyAiInitialiseModal.tsx (+191 -0)
📝 packages/desktop-client/src/components/modals/SelectLinkedAccountsModal.jsx (+13 -0)
📝 packages/desktop-client/src/components/settings/Experimental.tsx (+6 -0)
📝 packages/desktop-client/src/hooks/useFeatureFlag.ts (+1 -0)
packages/desktop-client/src/hooks/usePluggyAiStatus.ts (+33 -0)
📝 packages/loot-core/src/client/accounts/accountsSlice.ts (+24 -0)
📝 packages/loot-core/src/client/state-types/modals.d.ts (+3 -0)
📝 packages/loot-core/src/server/accounts/app.ts (+120 -1)
📝 packages/loot-core/src/server/accounts/sync.ts (+50 -0)
📝 packages/loot-core/src/server/server-config.ts (+2 -0)
📝 packages/loot-core/src/types/models/bank-sync.d.ts (+1 -1)
📝 packages/loot-core/src/types/models/index.d.ts (+1 -0)
packages/loot-core/src/types/models/pluggyai.d.ts (+18 -0)
📝 packages/loot-core/src/types/prefs.d.ts (+2 -1)
📝 packages/sync-server/package.json (+1 -0)
packages/sync-server/src/app-pluggyai/app-pluggyai.js (+206 -0)

...and 5 more files

📄 Description

Pluggy.ai bank sync for Brazilian banks
Closes #3995


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/actualbudget/actual/pull/4049 **Author:** [@lelemm](https://github.com/lelemm) **Created:** 12/27/2024 **Status:** ✅ Merged **Merged:** 3/4/2025 **Merged by:** [@lelemm](https://github.com/lelemm) **Base:** `master` ← **Head:** `pluggy.ai` --- ### 📝 Commits (10+) - [`11752f4`](https://github.com/actualbudget/actual/commit/11752f4c1b192de80f81204a367095325a9df1ff) added Pluggy.ai bank sync - [`f5917da`](https://github.com/actualbudget/actual/commit/f5917da10c87cad75bf8713aaf0b7110068af44f) added md - [`57ded0f`](https://github.com/actualbudget/actual/commit/57ded0f9aeec9877580e8e0767cc668ce5983bb4) code review nits - [`f75eccc`](https://github.com/actualbudget/actual/commit/f75eccc80943e78763cdbbd28bc2eacf72aa70c6) small fixes - [`df0ce3a`](https://github.com/actualbudget/actual/commit/df0ce3a3eb0c7a7fbddda401653b6e2a80b7fba3) Merge remote-tracking branch 'origin/master' into pluggy.ai - [`bbc2b7c`](https://github.com/actualbudget/actual/commit/bbc2b7c8ea2af4763ae84d59ac21037ea7029a84) fix syncs - [`f9f0c76`](https://github.com/actualbudget/actual/commit/f9f0c76cda6e0f320860b65b55527e5e05f53811) Merge remote-tracking branch 'origin/master' into pluggy.ai - [`6aaf5d2`](https://github.com/actualbudget/actual/commit/6aaf5d26e2fa4ff57a7184ff3e6fe024a1340f74) Merge remote-tracking branch 'origin/master' into pluggy.ai - [`c743066`](https://github.com/actualbudget/actual/commit/c7430661ea7e7d3ecf836367973ed420d23ca2fa) Merge remote-tracking branch 'origin/master' into pluggy.ai - [`a7d6ff0`](https://github.com/actualbudget/actual/commit/a7d6ff088c73cc00cfbe3c5ddbf6fc04df065d80) refactory after redux changes ### 📊 Changes **25 files changed** (+1103 additions, -6 deletions) <details> <summary>View changed files</summary> 📝 `packages/desktop-client/src/components/Modals.tsx` (+6 -0) 📝 `packages/desktop-client/src/components/banksync/EditSyncAccount.tsx` (+19 -0) 📝 `packages/desktop-client/src/components/banksync/index.tsx` (+1 -0) 📝 `packages/desktop-client/src/components/modals/CreateAccountModal.tsx` (+174 -2) ➕ `packages/desktop-client/src/components/modals/PluggyAiInitialiseModal.tsx` (+191 -0) 📝 `packages/desktop-client/src/components/modals/SelectLinkedAccountsModal.jsx` (+13 -0) 📝 `packages/desktop-client/src/components/settings/Experimental.tsx` (+6 -0) 📝 `packages/desktop-client/src/hooks/useFeatureFlag.ts` (+1 -0) ➕ `packages/desktop-client/src/hooks/usePluggyAiStatus.ts` (+33 -0) 📝 `packages/loot-core/src/client/accounts/accountsSlice.ts` (+24 -0) 📝 `packages/loot-core/src/client/state-types/modals.d.ts` (+3 -0) 📝 `packages/loot-core/src/server/accounts/app.ts` (+120 -1) 📝 `packages/loot-core/src/server/accounts/sync.ts` (+50 -0) 📝 `packages/loot-core/src/server/server-config.ts` (+2 -0) 📝 `packages/loot-core/src/types/models/bank-sync.d.ts` (+1 -1) 📝 `packages/loot-core/src/types/models/index.d.ts` (+1 -0) ➕ `packages/loot-core/src/types/models/pluggyai.d.ts` (+18 -0) 📝 `packages/loot-core/src/types/prefs.d.ts` (+2 -1) 📝 `packages/sync-server/package.json` (+1 -0) ➕ `packages/sync-server/src/app-pluggyai/app-pluggyai.js` (+206 -0) _...and 5 more files_ </details> ### 📄 Description Pluggy.ai bank sync for Brazilian banks Closes #3995 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-04-10 21:22:52 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/actual#12219