@actual-app/api 6.3.0 → 6.5.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/dist/app/bundle.api.js +2307 -2542
- package/dist/app/query.js +2 -1
- package/dist/index.js +6 -2
- package/dist/jest.config.js +24 -0
- package/dist/methods.js +2 -9
- package/dist/methods.test.js +305 -0
- package/dist/migrations/1632571489012_remove_cache.js +18 -18
- package/dist/migrations/1704572023730_add_account_sync_source.sql +5 -0
- package/dist/migrations/1704572023731_add_missing_goCardless_sync_source.sql +9 -0
- package/dist/package.json +12 -5
- package/package.json +12 -5
- package/dist/app/bundle.api.d.ts +0 -6
- package/dist/app/query.d.ts +0 -19
- package/dist/index.d.ts +0 -6
- package/dist/injected.d.ts +0 -2
- package/dist/methods.d.ts +0 -39
- package/dist/migrations/1632571489012_remove_cache.d.ts +0 -1
- package/dist/utils.d.ts +0 -2
- package/dist/validateNodeVersion.d.ts +0 -1
package/dist/methods.d.ts
DELETED
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
export function runImport(name: any, func: any): Promise<void>;
|
|
2
|
-
export function loadBudget(budgetId: any): Promise<any>;
|
|
3
|
-
export function downloadBudget(syncId: any, { password }?: {
|
|
4
|
-
password: any;
|
|
5
|
-
}): Promise<any>;
|
|
6
|
-
export function sync(): Promise<any>;
|
|
7
|
-
export function batchBudgetUpdates(func: any): Promise<void>;
|
|
8
|
-
export function runQuery(query: any): any;
|
|
9
|
-
export function getBudgetMonths(): any;
|
|
10
|
-
export function getBudgetMonth(month: any): any;
|
|
11
|
-
export function setBudgetAmount(month: any, categoryId: any, value: any): any;
|
|
12
|
-
export function setBudgetCarryover(month: any, categoryId: any, flag: any): any;
|
|
13
|
-
export function addTransactions(accountId: any, transactions: any, { learnCategories, runTransfers }?: {
|
|
14
|
-
learnCategories?: boolean;
|
|
15
|
-
runTransfers?: boolean;
|
|
16
|
-
}): any;
|
|
17
|
-
export function importTransactions(accountId: any, transactions: any): any;
|
|
18
|
-
export function getTransactions(accountId: any, startDate: any, endDate: any): any;
|
|
19
|
-
export function filterTransactions(accountId: any, text: any): any;
|
|
20
|
-
export function updateTransaction(id: any, fields: any): any;
|
|
21
|
-
export function deleteTransaction(id: any): any;
|
|
22
|
-
export function getAccounts(): any;
|
|
23
|
-
export function createAccount(account: any, initialBalance: any): any;
|
|
24
|
-
export function updateAccount(id: any, fields: any): any;
|
|
25
|
-
export function closeAccount(id: any, transferAccountId: any, transferCategoryId: any): any;
|
|
26
|
-
export function reopenAccount(id: any): any;
|
|
27
|
-
export function deleteAccount(id: any): any;
|
|
28
|
-
export function createCategoryGroup(group: any): any;
|
|
29
|
-
export function updateCategoryGroup(id: any, fields: any): any;
|
|
30
|
-
export function deleteCategoryGroup(id: any, transferCategoryId: any): any;
|
|
31
|
-
export function getCategories(): any;
|
|
32
|
-
export function createCategory(category: any): any;
|
|
33
|
-
export function updateCategory(id: any, fields: any): any;
|
|
34
|
-
export function deleteCategory(id: any, transferCategoryId: any): any;
|
|
35
|
-
export function getPayees(): any;
|
|
36
|
-
export function createPayee(payee: any): any;
|
|
37
|
-
export function updatePayee(id: any, fields: any): any;
|
|
38
|
-
export function deletePayee(id: any): any;
|
|
39
|
-
export { default as q } from "./app/query";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export default function runMigration(db: any, uuid: any): Promise<void>;
|
package/dist/utils.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export function validateNodeVersion(): void;
|