@actual-app/api 24.10.1 → 24.11.0
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/@types/loot-core/client/state-types/modals.d.ts +11 -0
- package/@types/loot-core/platform/server/log/index.d.ts +0 -3
- package/@types/loot-core/server/accounts/rules.d.ts +23 -27
- package/@types/loot-core/server/accounts/transaction-rules.d.ts +8 -3
- package/@types/loot-core/server/budget/goals/goalsCopy.d.ts +7 -0
- package/@types/loot-core/server/main-app.d.ts +1 -1
- package/@types/loot-core/server/prefs.d.ts +2 -0
- package/@types/loot-core/shared/rules.d.ts +1 -1
- package/@types/loot-core/shared/schedules.d.ts +1 -1
- package/@types/loot-core/shared/util.d.ts +1 -3
- package/@types/loot-core/types/models/payee.d.ts +1 -1
- package/@types/loot-core/types/models/rule.d.ts +4 -2
- package/@types/loot-core/types/prefs.d.ts +5 -1
- package/@types/loot-core/types/server-events.d.ts +2 -1
- package/dist/app/bundle.api.js +5402 -665
- package/dist/migrations/1722804019000_create_dashboard_table.js +2 -1
- package/dist/package.json +1 -1
- package/package.json +1 -1
|
@@ -19,7 +19,8 @@ async function runMigration(db) {
|
|
|
19
19
|
INSERT INTO dashboard (id, type, width, height, x, y)
|
|
20
20
|
VALUES
|
|
21
21
|
('${(0, uuid_1.v4)()}','net-worth-card', 8, 2, 0, 0),
|
|
22
|
-
('${(0, uuid_1.v4)()}', 'cash-flow-card', 4, 2, 8, 0)
|
|
22
|
+
('${(0, uuid_1.v4)()}', 'cash-flow-card', 4, 2, 8, 0),
|
|
23
|
+
('${(0, uuid_1.v4)()}', 'spending-card', 4, 2, 0, 2);
|
|
23
24
|
`);
|
|
24
25
|
// Add custom reports to the dashboard
|
|
25
26
|
const reports = db.runQuery('SELECT id FROM custom_reports WHERE tombstone = 0 ORDER BY name COLLATE NOCASE ASC', [], true);
|
package/dist/package.json
CHANGED