@actual-app/api 6.0.1 → 6.1.1
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/README.md +1 -1
- package/dist/app/bundle.api.d.ts +149 -3
- package/dist/app/bundle.api.js +34267 -50944
- package/dist/index.js +3 -1
- package/dist/methods.d.ts +1 -0
- package/dist/methods.js +5 -1
- package/dist/migrations/1685007876842_add_category_hidden.sql +6 -0
- package/dist/migrations/1686139660866_remove_account_type.sql +5 -0
- package/dist/migrations/1688749527273_transaction_filters.sql +10 -0
- package/dist/migrations/1688841238000_add_account_type.sql +5 -0
- package/package.json +3 -3
package/README.md
CHANGED
package/dist/app/bundle.api.d.ts
CHANGED
|
@@ -1,3 +1,149 @@
|
|
|
1
|
-
export =
|
|
2
|
-
export
|
|
3
|
-
|
|
1
|
+
export = __webpack_exports__;
|
|
2
|
+
export const EntryHeader: any;
|
|
3
|
+
export const MainHeader: any;
|
|
4
|
+
export const Deflater: any;
|
|
5
|
+
export const Inflater: any;
|
|
6
|
+
export const ZipCrypto: any;
|
|
7
|
+
export function decrypt(data: any, header: any, pwd: any): Buffer;
|
|
8
|
+
export function encrypt(data: any, header: any, pwd: any, ...args: any[]): any;
|
|
9
|
+
export function _salter(data: any): void;
|
|
10
|
+
export function require(): any;
|
|
11
|
+
export const Constants: any;
|
|
12
|
+
export const Errors: any;
|
|
13
|
+
export const FileAttr: any;
|
|
14
|
+
declare function applyBind(...args: any[]): any;
|
|
15
|
+
export function exportSymbol(a: any, b: any, c: any): void;
|
|
16
|
+
export function inherits(a: any, b: any): void;
|
|
17
|
+
export namespace object {
|
|
18
|
+
import extend_1 = goog.object.extend;
|
|
19
|
+
export { extend_1 as extend };
|
|
20
|
+
}
|
|
21
|
+
export function typeOf(a: any): "string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "function" | "null" | "array";
|
|
22
|
+
export const name: string;
|
|
23
|
+
export const __esModule: boolean;
|
|
24
|
+
export const merkle: any;
|
|
25
|
+
export function getClock(): any;
|
|
26
|
+
export function setClock(clock_: any): void;
|
|
27
|
+
export function makeClock(timestamp: any, ...args: any[]): {
|
|
28
|
+
timestamp: {
|
|
29
|
+
setMillis(n: any): void;
|
|
30
|
+
setCounter(n: any): void;
|
|
31
|
+
setNode(n: any): void;
|
|
32
|
+
_state: {
|
|
33
|
+
millis: any;
|
|
34
|
+
counter: any;
|
|
35
|
+
node: any;
|
|
36
|
+
};
|
|
37
|
+
valueOf(): string;
|
|
38
|
+
toString(): string;
|
|
39
|
+
millis(): any;
|
|
40
|
+
counter(): any;
|
|
41
|
+
node(): any;
|
|
42
|
+
hash(): any;
|
|
43
|
+
};
|
|
44
|
+
merkle: any;
|
|
45
|
+
};
|
|
46
|
+
export function makeClientId(): any;
|
|
47
|
+
export function serializeClock(clock: any): string;
|
|
48
|
+
export function deserializeClock(clock: any): {
|
|
49
|
+
timestamp: {
|
|
50
|
+
setMillis(n: any): void;
|
|
51
|
+
setCounter(n: any): void;
|
|
52
|
+
setNode(n: any): void;
|
|
53
|
+
_state: {
|
|
54
|
+
millis: any;
|
|
55
|
+
counter: any;
|
|
56
|
+
node: any;
|
|
57
|
+
};
|
|
58
|
+
valueOf(): string;
|
|
59
|
+
toString(): string;
|
|
60
|
+
millis(): any;
|
|
61
|
+
counter(): any;
|
|
62
|
+
node(): any;
|
|
63
|
+
hash(): any;
|
|
64
|
+
};
|
|
65
|
+
merkle: any;
|
|
66
|
+
};
|
|
67
|
+
/**
|
|
68
|
+
* timestamp instance class
|
|
69
|
+
*/
|
|
70
|
+
export class Timestamp {
|
|
71
|
+
static init(...args: any[]): void;
|
|
72
|
+
/**
|
|
73
|
+
* timestamp parsing
|
|
74
|
+
* converts a fixed-length string timestamp to the structured value
|
|
75
|
+
*/
|
|
76
|
+
static parse(timestamp: any): {
|
|
77
|
+
_state: {
|
|
78
|
+
millis: any;
|
|
79
|
+
counter: any;
|
|
80
|
+
node: any;
|
|
81
|
+
};
|
|
82
|
+
valueOf(): string;
|
|
83
|
+
toString(): string;
|
|
84
|
+
millis(): any;
|
|
85
|
+
counter(): any;
|
|
86
|
+
node(): any;
|
|
87
|
+
hash(): any;
|
|
88
|
+
};
|
|
89
|
+
/**
|
|
90
|
+
* Timestamp send. Generates a unique, monotonic timestamp suitable
|
|
91
|
+
* for transmission to another system in string format
|
|
92
|
+
*/
|
|
93
|
+
static send(): {
|
|
94
|
+
_state: {
|
|
95
|
+
millis: any;
|
|
96
|
+
counter: any;
|
|
97
|
+
node: any;
|
|
98
|
+
};
|
|
99
|
+
valueOf(): string;
|
|
100
|
+
toString(): string;
|
|
101
|
+
millis(): any;
|
|
102
|
+
counter(): any;
|
|
103
|
+
node(): any;
|
|
104
|
+
hash(): any;
|
|
105
|
+
};
|
|
106
|
+
static recv(msg: any): {
|
|
107
|
+
_state: {
|
|
108
|
+
millis: any;
|
|
109
|
+
counter: any;
|
|
110
|
+
node: any;
|
|
111
|
+
};
|
|
112
|
+
valueOf(): string;
|
|
113
|
+
toString(): string;
|
|
114
|
+
millis(): any;
|
|
115
|
+
counter(): any;
|
|
116
|
+
node(): any;
|
|
117
|
+
hash(): any;
|
|
118
|
+
};
|
|
119
|
+
constructor(millis: any, counter: any, node: any);
|
|
120
|
+
_state: {
|
|
121
|
+
millis: any;
|
|
122
|
+
counter: any;
|
|
123
|
+
node: any;
|
|
124
|
+
};
|
|
125
|
+
valueOf(): string;
|
|
126
|
+
toString(): string;
|
|
127
|
+
millis(): any;
|
|
128
|
+
counter(): any;
|
|
129
|
+
node(): any;
|
|
130
|
+
hash(): any;
|
|
131
|
+
}
|
|
132
|
+
export function emptyTrie(): {
|
|
133
|
+
hash: number;
|
|
134
|
+
};
|
|
135
|
+
export function getKeys(trie: any): string[];
|
|
136
|
+
export function keyToTimestamp(key: any): number;
|
|
137
|
+
/**
|
|
138
|
+
* Mutates `trie` to insert a node at `timestamp`
|
|
139
|
+
*/
|
|
140
|
+
export function insert(trie: any, timestamp: any): any;
|
|
141
|
+
export function build(timestamps: any): {
|
|
142
|
+
hash: number;
|
|
143
|
+
};
|
|
144
|
+
export function diff(trie1: any, trie2: any): number;
|
|
145
|
+
export function prune(trie: any, ...args: any[]): any;
|
|
146
|
+
export function debug(trie: any, ...args: any[]): any;
|
|
147
|
+
declare const SyncPb: any;
|
|
148
|
+
declare function extend(a: any, b: any, ...args: any[]): void;
|
|
149
|
+
export { applyBind as apply, Map, Message, BinaryReader, BinaryWriter, ExtensionFieldInfo, ExtensionFieldBinaryInfo, SyncPb as SyncProtoBuf };
|