[PR #4787] [MERGED] Rename AQL module's runQuery function to aqlQuery to disambiguate with DB module's runQuery function + AQL types #5583

Closed
opened 2026-02-28 21:14:48 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/actualbudget/actual/pull/4787
Author: @joel-jeremy
Created: 4/9/2025
Status: Merged
Merged: 5/5/2025
Merged by: @joel-jeremy

Base: masterHead: rename-aql-runQuery-to-aqlQuery


📝 Commits (10+)

📊 Changes

40 files changed (+422 additions, -266 deletions)

View changed files

📝 packages/api/methods.ts (+8 -0)
📝 packages/desktop-client/src/components/accounts/Account.tsx (+10 -10)
📝 packages/desktop-client/src/components/mobile/transactions/TransactionEdit.jsx (+2 -2)
📝 packages/desktop-client/src/components/modals/EditRuleModal.jsx (+2 -2)
📝 packages/desktop-client/src/components/reports/spreadsheets/calendar-spreadsheet.ts (+3 -3)
📝 packages/desktop-client/src/components/reports/spreadsheets/custom-spreadsheet.ts (+3 -3)
📝 packages/desktop-client/src/components/reports/spreadsheets/grouped-spreadsheet.ts (+3 -3)
📝 packages/desktop-client/src/components/reports/spreadsheets/net-worth-spreadsheet.ts (+3 -3)
📝 packages/desktop-client/src/components/reports/spreadsheets/spending-spreadsheet.ts (+6 -6)
📝 packages/desktop-client/src/components/reports/spreadsheets/summary-spreadsheet.ts (+3 -3)
📝 packages/desktop-client/src/components/reports/util.ts (+2 -2)
📝 packages/desktop-client/src/components/schedules/DiscoverSchedules.tsx (+2 -2)
📝 packages/desktop-client/src/components/schedules/ScheduleDetails.tsx (+3 -3)
📝 packages/desktop-client/src/hooks/useTransactionBatchActions.ts (+7 -7)
📝 packages/desktop-client/src/index.tsx (+3 -3)
📝 packages/loot-core/src/client/query-helpers.test.ts (+3 -3)
📝 packages/loot-core/src/client/query-helpers.ts (+10 -10)
📝 packages/loot-core/src/mocks/budget.ts (+1 -1)
📝 packages/loot-core/src/server/accounts/sync.ts (+6 -6)
📝 packages/loot-core/src/server/api.ts (+1 -1)

...and 20 more files

📄 Description


🔄 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/4787 **Author:** [@joel-jeremy](https://github.com/joel-jeremy) **Created:** 4/9/2025 **Status:** ✅ Merged **Merged:** 5/5/2025 **Merged by:** [@joel-jeremy](https://github.com/joel-jeremy) **Base:** `master` ← **Head:** `rename-aql-runQuery-to-aqlQuery` --- ### 📝 Commits (10+) - [`4e1289e`](https://github.com/actualbudget/actual/commit/4e1289e1f460a6d6964204532922b993796123e2) Rename AQL module's runQuery function to aqlQuery to disambiguate with DB module runQuery function - [`aefbf26`](https://github.com/actualbudget/actual/commit/aefbf26948c43279baa81108c4c66633e213988d) Release notes - [`df2489f`](https://github.com/actualbudget/actual/commit/df2489f96381e133c789acb081df02da8b35ad0b) Update SqlPieces - [`f6b0d8d`](https://github.com/actualbudget/actual/commit/f6b0d8d54379933587d28a3e463adc0c814e6b4c) Fix lint - [`45adae2`](https://github.com/actualbudget/actual/commit/45adae27ea19204bc33eb46c255b8cdf41615a8d) Update SqlPieces.from - [`e26484a`](https://github.com/actualbudget/actual/commit/e26484af912d5ab89ea2ceb1999df0f98dde04f3) Add types - [`1219c53`](https://github.com/actualbudget/actual/commit/1219c530da6bbf4b0eff49441e76311b0d3b1cb8) Type result as any for now - [`17d09fc`](https://github.com/actualbudget/actual/commit/17d09fcdced7e87bb29dcf73096e0fad6971c5f8) Fix lint - [`2ea30d0`](https://github.com/actualbudget/actual/commit/2ea30d0b52c9f4472b86af0cc8a089e95794a818) Add types - [`a5408d4`](https://github.com/actualbudget/actual/commit/a5408d47c8aa602a14d140f39b85b8f848b012d4) Fix typo ### 📊 Changes **40 files changed** (+422 additions, -266 deletions) <details> <summary>View changed files</summary> 📝 `packages/api/methods.ts` (+8 -0) 📝 `packages/desktop-client/src/components/accounts/Account.tsx` (+10 -10) 📝 `packages/desktop-client/src/components/mobile/transactions/TransactionEdit.jsx` (+2 -2) 📝 `packages/desktop-client/src/components/modals/EditRuleModal.jsx` (+2 -2) 📝 `packages/desktop-client/src/components/reports/spreadsheets/calendar-spreadsheet.ts` (+3 -3) 📝 `packages/desktop-client/src/components/reports/spreadsheets/custom-spreadsheet.ts` (+3 -3) 📝 `packages/desktop-client/src/components/reports/spreadsheets/grouped-spreadsheet.ts` (+3 -3) 📝 `packages/desktop-client/src/components/reports/spreadsheets/net-worth-spreadsheet.ts` (+3 -3) 📝 `packages/desktop-client/src/components/reports/spreadsheets/spending-spreadsheet.ts` (+6 -6) 📝 `packages/desktop-client/src/components/reports/spreadsheets/summary-spreadsheet.ts` (+3 -3) 📝 `packages/desktop-client/src/components/reports/util.ts` (+2 -2) 📝 `packages/desktop-client/src/components/schedules/DiscoverSchedules.tsx` (+2 -2) 📝 `packages/desktop-client/src/components/schedules/ScheduleDetails.tsx` (+3 -3) 📝 `packages/desktop-client/src/hooks/useTransactionBatchActions.ts` (+7 -7) 📝 `packages/desktop-client/src/index.tsx` (+3 -3) 📝 `packages/loot-core/src/client/query-helpers.test.ts` (+3 -3) 📝 `packages/loot-core/src/client/query-helpers.ts` (+10 -10) 📝 `packages/loot-core/src/mocks/budget.ts` (+1 -1) 📝 `packages/loot-core/src/server/accounts/sync.ts` (+6 -6) 📝 `packages/loot-core/src/server/api.ts` (+1 -1) _...and 20 more files_ </details> ### 📄 Description <!-- Thank you for submitting a pull request! Make sure to follow the instructions to write release notes for your PR — it should only take a minute or two: https://github.com/actualbudget/docs#writing-good-release-notes. Try running yarn generate:release-notes *before* pushing your PR for an interactive experience. --> --- <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-02-28 21:14:48 -06:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/actual#5583