@firela/api-types 0.0.0-canary.209967 → 0.0.0-canary.6feee68d
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/index.d.mts +1959 -1127
- package/dist/index.d.ts +1959 -1127
- package/dist/index.js +102 -125
- package/dist/index.mjs +102 -125
- package/package.json +1 -6
- package/src/generated/schemas.gen.ts +1650 -297
- package/src/generated/services.gen.ts +909 -941
- package/src/generated/types.gen.ts +2246 -1324
package/dist/index.d.mts
CHANGED
|
@@ -26,6 +26,10 @@ type CreateAccountDto = {
|
|
|
26
26
|
* Account path (hierarchical, colon-separated)
|
|
27
27
|
*/
|
|
28
28
|
path: string;
|
|
29
|
+
/**
|
|
30
|
+
* Display name to distinguish accounts at the same path (default: "")
|
|
31
|
+
*/
|
|
32
|
+
displayName?: string;
|
|
29
33
|
/**
|
|
30
34
|
* Account open date
|
|
31
35
|
*/
|
|
@@ -78,6 +82,10 @@ type AccountResponseDto = {
|
|
|
78
82
|
* Account path (hierarchical, colon-separated)
|
|
79
83
|
*/
|
|
80
84
|
path: string;
|
|
85
|
+
/**
|
|
86
|
+
* Display name distinguishing multiple accounts at the same path
|
|
87
|
+
*/
|
|
88
|
+
displayName: string;
|
|
81
89
|
/**
|
|
82
90
|
* Account type (root segment)
|
|
83
91
|
*/
|
|
@@ -164,6 +172,10 @@ type AccountListResponseDto = {
|
|
|
164
172
|
total: number;
|
|
165
173
|
};
|
|
166
174
|
type UpdateAccountDto = {
|
|
175
|
+
/**
|
|
176
|
+
* Display name to distinguish accounts at the same path
|
|
177
|
+
*/
|
|
178
|
+
displayName?: string;
|
|
167
179
|
/**
|
|
168
180
|
* Allowed currencies (null = no restriction)
|
|
169
181
|
*/
|
|
@@ -189,9 +201,7 @@ type UpdateAccountDto = {
|
|
|
189
201
|
/**
|
|
190
202
|
* Platform ID (references Platform.id), null to clear association
|
|
191
203
|
*/
|
|
192
|
-
platformId?:
|
|
193
|
-
[key: string]: unknown;
|
|
194
|
-
} | null;
|
|
204
|
+
platformId?: string | null;
|
|
195
205
|
};
|
|
196
206
|
type CloseAccountDto = {
|
|
197
207
|
/**
|
|
@@ -211,6 +221,78 @@ type ReopenAccountDto = {
|
|
|
211
221
|
*/
|
|
212
222
|
reopenDate?: string;
|
|
213
223
|
};
|
|
224
|
+
type AccountStandardResponseDto = {
|
|
225
|
+
/**
|
|
226
|
+
* Account path (hierarchical, colon-separated)
|
|
227
|
+
*/
|
|
228
|
+
path: string;
|
|
229
|
+
/**
|
|
230
|
+
* Account type in Beancount hierarchy
|
|
231
|
+
*/
|
|
232
|
+
type: 'Assets' | 'Liabilities' | 'Income' | 'Expenses' | 'Equity';
|
|
233
|
+
/**
|
|
234
|
+
* i18n key for localized display name
|
|
235
|
+
*/
|
|
236
|
+
i18nKey: string;
|
|
237
|
+
/**
|
|
238
|
+
* Short localized display name
|
|
239
|
+
*/
|
|
240
|
+
name?: string;
|
|
241
|
+
/**
|
|
242
|
+
* Account description (stable semantics only)
|
|
243
|
+
*/
|
|
244
|
+
description: string;
|
|
245
|
+
/**
|
|
246
|
+
* Account tags for categorization
|
|
247
|
+
*/
|
|
248
|
+
tags: Array<string>;
|
|
249
|
+
/**
|
|
250
|
+
* Icon identifier for UI display
|
|
251
|
+
*/
|
|
252
|
+
icon: string;
|
|
253
|
+
};
|
|
254
|
+
type AccountStandardListResponseDto = {
|
|
255
|
+
/**
|
|
256
|
+
* Array of account templates
|
|
257
|
+
*/
|
|
258
|
+
items: Array<AccountStandardResponseDto>;
|
|
259
|
+
/**
|
|
260
|
+
* Total number of account templates
|
|
261
|
+
*/
|
|
262
|
+
total: number;
|
|
263
|
+
/**
|
|
264
|
+
* Region code
|
|
265
|
+
*/
|
|
266
|
+
region: string;
|
|
267
|
+
};
|
|
268
|
+
type TemplateMetadataDto = {
|
|
269
|
+
/**
|
|
270
|
+
* Whether this path can be extended
|
|
271
|
+
*/
|
|
272
|
+
extendable: boolean;
|
|
273
|
+
/**
|
|
274
|
+
* Root account type
|
|
275
|
+
*/
|
|
276
|
+
rootType: string;
|
|
277
|
+
};
|
|
278
|
+
type TemplateMetadataResponseDto = {
|
|
279
|
+
metadata?: TemplateMetadataDto;
|
|
280
|
+
};
|
|
281
|
+
type RegionConfigDto = {
|
|
282
|
+
currency: string;
|
|
283
|
+
dateFormat: string;
|
|
284
|
+
locale: string;
|
|
285
|
+
};
|
|
286
|
+
type RegionInfoDto = {
|
|
287
|
+
code: string;
|
|
288
|
+
displayName: string;
|
|
289
|
+
parent?: string;
|
|
290
|
+
chain: Array<string>;
|
|
291
|
+
config: RegionConfigDto;
|
|
292
|
+
};
|
|
293
|
+
type RegionsMetadataResponseDto = {
|
|
294
|
+
regions: Array<RegionInfoDto>;
|
|
295
|
+
};
|
|
214
296
|
type CreatePostingDto = {
|
|
215
297
|
/**
|
|
216
298
|
* Account name in Beancount format (must start with uppercase, colon-separated)
|
|
@@ -401,6 +483,36 @@ type ApiProblemResponseDto = {
|
|
|
401
483
|
[key: string]: unknown;
|
|
402
484
|
};
|
|
403
485
|
};
|
|
486
|
+
type BatchCreateTransactionDto = {
|
|
487
|
+
/**
|
|
488
|
+
* Array of transactions to create
|
|
489
|
+
*/
|
|
490
|
+
transactions: Array<CreateTransactionDto>;
|
|
491
|
+
};
|
|
492
|
+
type BatchTransactionErrorDto = {
|
|
493
|
+
/**
|
|
494
|
+
* Index of failed transaction in the input array
|
|
495
|
+
*/
|
|
496
|
+
index: number;
|
|
497
|
+
/**
|
|
498
|
+
* Error message describing the failure
|
|
499
|
+
*/
|
|
500
|
+
error: string;
|
|
501
|
+
/**
|
|
502
|
+
* Structured error code for programmatic handling
|
|
503
|
+
*/
|
|
504
|
+
errorCode?: string;
|
|
505
|
+
};
|
|
506
|
+
type BatchTransactionResponseDto = {
|
|
507
|
+
/**
|
|
508
|
+
* Successfully created transactions
|
|
509
|
+
*/
|
|
510
|
+
succeeded: Array<TransactionResponseDto>;
|
|
511
|
+
/**
|
|
512
|
+
* Failed transactions with error details
|
|
513
|
+
*/
|
|
514
|
+
failed: Array<BatchTransactionErrorDto>;
|
|
515
|
+
};
|
|
404
516
|
type PostingDetailDto = {
|
|
405
517
|
/**
|
|
406
518
|
* Posting ID
|
|
@@ -583,61 +695,6 @@ type UpdateTransactionDto = {
|
|
|
583
695
|
[key: string]: unknown;
|
|
584
696
|
};
|
|
585
697
|
};
|
|
586
|
-
type AccountStandardResponseDto = {
|
|
587
|
-
/**
|
|
588
|
-
* Account path (hierarchical, colon-separated)
|
|
589
|
-
*/
|
|
590
|
-
path: string;
|
|
591
|
-
/**
|
|
592
|
-
* Account type in Beancount hierarchy
|
|
593
|
-
*/
|
|
594
|
-
type: 'Assets' | 'Liabilities' | 'Income' | 'Expenses' | 'Equity';
|
|
595
|
-
/**
|
|
596
|
-
* i18n key for localized display name
|
|
597
|
-
*/
|
|
598
|
-
i18nKey?: string;
|
|
599
|
-
/**
|
|
600
|
-
* Account description
|
|
601
|
-
*/
|
|
602
|
-
description?: string;
|
|
603
|
-
/**
|
|
604
|
-
* Account tags for categorization
|
|
605
|
-
*/
|
|
606
|
-
tags?: Array<string>;
|
|
607
|
-
/**
|
|
608
|
-
* Icon identifier for UI display
|
|
609
|
-
*/
|
|
610
|
-
icon?: string;
|
|
611
|
-
};
|
|
612
|
-
type AccountStandardListResponseDto = {
|
|
613
|
-
/**
|
|
614
|
-
* Array of account templates
|
|
615
|
-
*/
|
|
616
|
-
items: Array<AccountStandardResponseDto>;
|
|
617
|
-
/**
|
|
618
|
-
* Total number of account templates
|
|
619
|
-
*/
|
|
620
|
-
total: number;
|
|
621
|
-
/**
|
|
622
|
-
* Region code
|
|
623
|
-
*/
|
|
624
|
-
region: string;
|
|
625
|
-
};
|
|
626
|
-
type RegionConfigDto = {
|
|
627
|
-
currency: string;
|
|
628
|
-
dateFormat: string;
|
|
629
|
-
locale: string;
|
|
630
|
-
};
|
|
631
|
-
type RegionInfoDto = {
|
|
632
|
-
code: string;
|
|
633
|
-
displayName: string;
|
|
634
|
-
parent?: string;
|
|
635
|
-
chain: Array<string>;
|
|
636
|
-
config: RegionConfigDto;
|
|
637
|
-
};
|
|
638
|
-
type RegionsMetadataResponseDto = {
|
|
639
|
-
regions: Array<RegionInfoDto>;
|
|
640
|
-
};
|
|
641
698
|
type BalanceResponseDto = {
|
|
642
699
|
/**
|
|
643
700
|
* Account name
|
|
@@ -732,9 +789,15 @@ type ReviewSummaryDto = {
|
|
|
732
789
|
*/
|
|
733
790
|
confidenceLevel: 'HIGH' | 'MEDIUM' | 'LOW';
|
|
734
791
|
/**
|
|
735
|
-
*
|
|
792
|
+
* i18n message key for summary (e.g., review.summary.duplicate). Translate on frontend with summaryParams.
|
|
793
|
+
*/
|
|
794
|
+
summaryKey: string;
|
|
795
|
+
/**
|
|
796
|
+
* Parameters for summary message interpolation (e.g., { date: "2024-01-15", amount: "50" })
|
|
736
797
|
*/
|
|
737
|
-
|
|
798
|
+
summaryParams?: {
|
|
799
|
+
[key: string]: string;
|
|
800
|
+
};
|
|
738
801
|
/**
|
|
739
802
|
* Human-readable reasons for branching
|
|
740
803
|
*/
|
|
@@ -863,9 +926,15 @@ type ReviewDetailDto = {
|
|
|
863
926
|
*/
|
|
864
927
|
confidenceLevel: 'HIGH' | 'MEDIUM' | 'LOW';
|
|
865
928
|
/**
|
|
866
|
-
*
|
|
929
|
+
* i18n message key for summary (e.g., review.summary.duplicate). Translate on frontend with summaryParams.
|
|
930
|
+
*/
|
|
931
|
+
summaryKey: string;
|
|
932
|
+
/**
|
|
933
|
+
* Parameters for summary message interpolation (e.g., { date: "2024-01-15", amount: "50" })
|
|
867
934
|
*/
|
|
868
|
-
|
|
935
|
+
summaryParams?: {
|
|
936
|
+
[key: string]: string;
|
|
937
|
+
};
|
|
869
938
|
/**
|
|
870
939
|
* Human-readable reasons for branching
|
|
871
940
|
*/
|
|
@@ -921,6 +990,118 @@ type ReviewDetailDto = {
|
|
|
921
990
|
*/
|
|
922
991
|
transactionId?: string;
|
|
923
992
|
};
|
|
993
|
+
type ResolveReviewDto = {
|
|
994
|
+
/**
|
|
995
|
+
* Decision action. Available actions vary by review type: DUPLICATE: UPGRADE_REPLACE, KEEP_EXISTING, KEEP_BOTH | PAYEE_MATCH: ACCEPT, REJECT, ACCEPT_AND_LEARN | ACCOUNT_VALIDATION: FIX, REJECT | RULE_MATCH: ACCEPT, REJECT, ACCEPT_AND_LEARN
|
|
996
|
+
*/
|
|
997
|
+
action: string;
|
|
998
|
+
/**
|
|
999
|
+
* Additional data for the decision (e.g., selected account ID)
|
|
1000
|
+
*/
|
|
1001
|
+
data?: {
|
|
1002
|
+
[key: string]: unknown;
|
|
1003
|
+
};
|
|
1004
|
+
};
|
|
1005
|
+
type ResolveResultDto = {
|
|
1006
|
+
/**
|
|
1007
|
+
* Whether resolution was successful
|
|
1008
|
+
*/
|
|
1009
|
+
success: boolean;
|
|
1010
|
+
/**
|
|
1011
|
+
* i18n message key for result message (e.g., review.payee.result.mapped)
|
|
1012
|
+
*/
|
|
1013
|
+
messageKey?: string;
|
|
1014
|
+
/**
|
|
1015
|
+
* Parameters for message interpolation (e.g., { name: "PayeeName" })
|
|
1016
|
+
*/
|
|
1017
|
+
messageParams?: {
|
|
1018
|
+
[key: string]: string;
|
|
1019
|
+
};
|
|
1020
|
+
/**
|
|
1021
|
+
* Resolution ID for undo
|
|
1022
|
+
*/
|
|
1023
|
+
resolutionId: string;
|
|
1024
|
+
/**
|
|
1025
|
+
* Whether this decision can be undone
|
|
1026
|
+
*/
|
|
1027
|
+
canUndo: boolean;
|
|
1028
|
+
/**
|
|
1029
|
+
* Deadline for undo (24h from resolution)
|
|
1030
|
+
*/
|
|
1031
|
+
undoDeadline: string;
|
|
1032
|
+
/**
|
|
1033
|
+
* Rule ID if learning was triggered (ACCEPT_AND_LEARN actions). Use this to deep-link to the rule management page.
|
|
1034
|
+
*/
|
|
1035
|
+
learnedRuleId?: string;
|
|
1036
|
+
};
|
|
1037
|
+
type UndoResultDto = {
|
|
1038
|
+
/**
|
|
1039
|
+
* Whether undo was successful
|
|
1040
|
+
*/
|
|
1041
|
+
success: boolean;
|
|
1042
|
+
/**
|
|
1043
|
+
* Message
|
|
1044
|
+
*/
|
|
1045
|
+
message?: string;
|
|
1046
|
+
/**
|
|
1047
|
+
* Review item ID that was restored
|
|
1048
|
+
*/
|
|
1049
|
+
reviewId: string;
|
|
1050
|
+
};
|
|
1051
|
+
type BatchResolveDto = {
|
|
1052
|
+
/**
|
|
1053
|
+
* Review item IDs to resolve
|
|
1054
|
+
*/
|
|
1055
|
+
reviewIds: Array<string>;
|
|
1056
|
+
/**
|
|
1057
|
+
* Decision action to apply to all items
|
|
1058
|
+
*/
|
|
1059
|
+
action: string;
|
|
1060
|
+
/**
|
|
1061
|
+
* Additional data for the decision
|
|
1062
|
+
*/
|
|
1063
|
+
data?: {
|
|
1064
|
+
[key: string]: unknown;
|
|
1065
|
+
};
|
|
1066
|
+
};
|
|
1067
|
+
type BatchResolveResultDto = {
|
|
1068
|
+
/**
|
|
1069
|
+
* Number of successfully resolved items
|
|
1070
|
+
*/
|
|
1071
|
+
successCount: number;
|
|
1072
|
+
/**
|
|
1073
|
+
* Number of failed items
|
|
1074
|
+
*/
|
|
1075
|
+
failedCount: number;
|
|
1076
|
+
/**
|
|
1077
|
+
* Details for each item
|
|
1078
|
+
*/
|
|
1079
|
+
results: Array<string>;
|
|
1080
|
+
};
|
|
1081
|
+
type CreatePayeeDto = {
|
|
1082
|
+
/**
|
|
1083
|
+
* User's original payee name (e.g., 'Starbucks', 'McDonald'). This is the raw payee string as entered by the user.
|
|
1084
|
+
*/
|
|
1085
|
+
payee: string;
|
|
1086
|
+
/**
|
|
1087
|
+
* Optional reference to global PayeeProfile for standardized data (merchant info, i18n keys, categories)
|
|
1088
|
+
*/
|
|
1089
|
+
payeeProfileId?: string;
|
|
1090
|
+
/**
|
|
1091
|
+
* User's custom category for this payee (overrides PayeeProfile category)
|
|
1092
|
+
*/
|
|
1093
|
+
customCategory?: string;
|
|
1094
|
+
/**
|
|
1095
|
+
* User's custom tags for this payee (e.g., ['favorite', 'work_meal'])
|
|
1096
|
+
*/
|
|
1097
|
+
customTags?: Array<string>;
|
|
1098
|
+
/**
|
|
1099
|
+
* Metadata for extended information (location, notes, contact info, etc.)
|
|
1100
|
+
*/
|
|
1101
|
+
meta?: {
|
|
1102
|
+
[key: string]: unknown;
|
|
1103
|
+
};
|
|
1104
|
+
};
|
|
924
1105
|
type PayeeResponseDto = {
|
|
925
1106
|
/**
|
|
926
1107
|
* Unique identifier (UUID)
|
|
@@ -937,15 +1118,11 @@ type PayeeResponseDto = {
|
|
|
937
1118
|
/**
|
|
938
1119
|
* Reference to global PayeeProfile (merchant info, i18n keys, categories)
|
|
939
1120
|
*/
|
|
940
|
-
payeeProfileId?:
|
|
941
|
-
[key: string]: unknown;
|
|
942
|
-
} | null;
|
|
1121
|
+
payeeProfileId?: string | null;
|
|
943
1122
|
/**
|
|
944
1123
|
* User's custom category (overrides PayeeProfile category if set)
|
|
945
1124
|
*/
|
|
946
|
-
customCategory?:
|
|
947
|
-
[key: string]: unknown;
|
|
948
|
-
} | null;
|
|
1125
|
+
customCategory?: string | null;
|
|
949
1126
|
/**
|
|
950
1127
|
* User's custom tags (e.g., ['favorite', 'work_meal'])
|
|
951
1128
|
*/
|
|
@@ -1007,104 +1184,170 @@ type PayeeStatsResponseDto = {
|
|
|
1007
1184
|
*/
|
|
1008
1185
|
lastUsedAt: string;
|
|
1009
1186
|
};
|
|
1010
|
-
type
|
|
1187
|
+
type UpdatePayeeDto = {
|
|
1011
1188
|
/**
|
|
1012
|
-
*
|
|
1189
|
+
* Optional reference to global PayeeProfile for standardized data (merchant info, i18n keys, categories)
|
|
1013
1190
|
*/
|
|
1014
|
-
|
|
1191
|
+
payeeProfileId?: string;
|
|
1015
1192
|
/**
|
|
1016
|
-
*
|
|
1193
|
+
* User's custom category for this payee (overrides PayeeProfile category)
|
|
1017
1194
|
*/
|
|
1018
|
-
|
|
1195
|
+
customCategory?: string;
|
|
1019
1196
|
/**
|
|
1020
|
-
*
|
|
1197
|
+
* User's custom tags for this payee (e.g., ['favorite', 'work_meal'])
|
|
1021
1198
|
*/
|
|
1022
|
-
|
|
1199
|
+
customTags?: Array<string>;
|
|
1023
1200
|
/**
|
|
1024
|
-
*
|
|
1201
|
+
* Metadata for extended information (location, notes, contact info, etc.). Will merge with existing metadata.
|
|
1025
1202
|
*/
|
|
1026
|
-
|
|
1203
|
+
meta?: {
|
|
1027
1204
|
[key: string]: unknown;
|
|
1028
|
-
}
|
|
1205
|
+
};
|
|
1029
1206
|
/**
|
|
1030
|
-
*
|
|
1207
|
+
* Enable or disable this payee. Disabled payees will not appear in autocomplete suggestions.
|
|
1031
1208
|
*/
|
|
1032
|
-
|
|
1209
|
+
isActive?: boolean;
|
|
1210
|
+
};
|
|
1211
|
+
type CreatePayeeProfileDto = {
|
|
1033
1212
|
/**
|
|
1034
|
-
*
|
|
1213
|
+
* Canonical payee name (unique, case-insensitive). This is the primary identifier for the payee.
|
|
1035
1214
|
*/
|
|
1036
|
-
|
|
1037
|
-
[key: string]: unknown;
|
|
1038
|
-
} | null;
|
|
1215
|
+
canonical: string;
|
|
1039
1216
|
/**
|
|
1040
|
-
*
|
|
1217
|
+
* Multi-language aliases for the payee. Used for matching user input in different languages.
|
|
1041
1218
|
*/
|
|
1042
|
-
|
|
1219
|
+
aliases?: Array<string>;
|
|
1043
1220
|
/**
|
|
1044
|
-
*
|
|
1221
|
+
* Translation key for i18n integration (XLIFF translation system)
|
|
1045
1222
|
*/
|
|
1046
|
-
|
|
1047
|
-
[key: string]: unknown;
|
|
1048
|
-
} | null;
|
|
1223
|
+
i18nKey?: string;
|
|
1049
1224
|
/**
|
|
1050
|
-
*
|
|
1225
|
+
* Payee category classification
|
|
1051
1226
|
*/
|
|
1052
|
-
|
|
1227
|
+
category: 'RESTAURANT' | 'CAFE' | 'FAST_FOOD' | 'BAR' | 'SUPERMARKET' | 'CONVENIENCE_STORE' | 'SHOPPING_MALL' | 'ONLINE_SHOPPING' | 'TAXI' | 'RIDE_SHARING' | 'PUBLIC_TRANSPORT' | 'PARKING' | 'GAS_STATION' | 'UTILITIES' | 'TELECOM' | 'STREAMING' | 'HEALTHCARE' | 'EDUCATION' | 'ENTERTAINMENT' | 'SPORTS' | 'TRAVEL' | 'HOTEL' | 'OTHER';
|
|
1053
1228
|
/**
|
|
1054
|
-
*
|
|
1229
|
+
* Sub-category for more specific classification
|
|
1055
1230
|
*/
|
|
1056
|
-
|
|
1057
|
-
[key: string]: unknown;
|
|
1058
|
-
} | null;
|
|
1231
|
+
subCategory?: string;
|
|
1059
1232
|
/**
|
|
1060
|
-
*
|
|
1233
|
+
* Country/region codes where the payee operates (ISO 3166-1 alpha-2)
|
|
1061
1234
|
*/
|
|
1062
|
-
|
|
1063
|
-
[key: string]: unknown;
|
|
1064
|
-
} | null;
|
|
1235
|
+
countries?: Array<string>;
|
|
1065
1236
|
/**
|
|
1066
|
-
*
|
|
1237
|
+
* Primary operating country (ISO 3166-1 alpha-2)
|
|
1067
1238
|
*/
|
|
1068
|
-
|
|
1069
|
-
[key: string]: unknown;
|
|
1070
|
-
} | null;
|
|
1239
|
+
primaryCountry?: string;
|
|
1071
1240
|
/**
|
|
1072
|
-
*
|
|
1241
|
+
* Search keywords for fuzzy matching
|
|
1073
1242
|
*/
|
|
1074
|
-
|
|
1075
|
-
[key: string]: unknown;
|
|
1076
|
-
};
|
|
1243
|
+
keywords?: Array<string>;
|
|
1077
1244
|
/**
|
|
1078
|
-
*
|
|
1245
|
+
* Payee logo URL
|
|
1079
1246
|
*/
|
|
1080
|
-
|
|
1247
|
+
logoUrl?: string;
|
|
1081
1248
|
/**
|
|
1082
|
-
*
|
|
1249
|
+
* Official website URL
|
|
1083
1250
|
*/
|
|
1084
|
-
|
|
1085
|
-
[key: string]: unknown;
|
|
1086
|
-
} | null;
|
|
1251
|
+
website?: string;
|
|
1087
1252
|
/**
|
|
1088
|
-
*
|
|
1253
|
+
* Payee description
|
|
1089
1254
|
*/
|
|
1090
|
-
|
|
1255
|
+
description?: string;
|
|
1091
1256
|
/**
|
|
1092
|
-
*
|
|
1257
|
+
* Extended metadata (business hours, contact info, additional details)
|
|
1093
1258
|
*/
|
|
1094
|
-
|
|
1259
|
+
meta?: {
|
|
1260
|
+
[key: string]: unknown;
|
|
1261
|
+
};
|
|
1095
1262
|
/**
|
|
1096
|
-
*
|
|
1263
|
+
* Data source for this profile
|
|
1097
1264
|
*/
|
|
1098
|
-
|
|
1265
|
+
dataSource?: 'MANUAL' | 'IMPORT' | 'API' | 'CROWDSOURCED';
|
|
1099
1266
|
};
|
|
1100
1267
|
/**
|
|
1101
|
-
* Payee category
|
|
1268
|
+
* Payee category classification
|
|
1102
1269
|
*/
|
|
1103
1270
|
type category = 'RESTAURANT' | 'CAFE' | 'FAST_FOOD' | 'BAR' | 'SUPERMARKET' | 'CONVENIENCE_STORE' | 'SHOPPING_MALL' | 'ONLINE_SHOPPING' | 'TAXI' | 'RIDE_SHARING' | 'PUBLIC_TRANSPORT' | 'PARKING' | 'GAS_STATION' | 'UTILITIES' | 'TELECOM' | 'STREAMING' | 'HEALTHCARE' | 'EDUCATION' | 'ENTERTAINMENT' | 'SPORTS' | 'TRAVEL' | 'HOTEL' | 'OTHER';
|
|
1104
1271
|
/**
|
|
1105
|
-
* Data source
|
|
1272
|
+
* Data source for this profile
|
|
1106
1273
|
*/
|
|
1107
1274
|
type dataSource = 'MANUAL' | 'IMPORT' | 'API' | 'CROWDSOURCED';
|
|
1275
|
+
type PayeeProfileResponseDto = {
|
|
1276
|
+
/**
|
|
1277
|
+
* Unique identifier (UUID)
|
|
1278
|
+
*/
|
|
1279
|
+
id: string;
|
|
1280
|
+
/**
|
|
1281
|
+
* Canonical payee name (unique, case-insensitive)
|
|
1282
|
+
*/
|
|
1283
|
+
canonical: string;
|
|
1284
|
+
/**
|
|
1285
|
+
* Multi-language aliases
|
|
1286
|
+
*/
|
|
1287
|
+
aliases: Array<string>;
|
|
1288
|
+
/**
|
|
1289
|
+
* Translation key for i18n
|
|
1290
|
+
*/
|
|
1291
|
+
i18nKey?: string | null;
|
|
1292
|
+
/**
|
|
1293
|
+
* Payee category
|
|
1294
|
+
*/
|
|
1295
|
+
category: 'RESTAURANT' | 'CAFE' | 'FAST_FOOD' | 'BAR' | 'SUPERMARKET' | 'CONVENIENCE_STORE' | 'SHOPPING_MALL' | 'ONLINE_SHOPPING' | 'TAXI' | 'RIDE_SHARING' | 'PUBLIC_TRANSPORT' | 'PARKING' | 'GAS_STATION' | 'UTILITIES' | 'TELECOM' | 'STREAMING' | 'HEALTHCARE' | 'EDUCATION' | 'ENTERTAINMENT' | 'SPORTS' | 'TRAVEL' | 'HOTEL' | 'OTHER';
|
|
1296
|
+
/**
|
|
1297
|
+
* Sub-category
|
|
1298
|
+
*/
|
|
1299
|
+
subCategory?: string | null;
|
|
1300
|
+
/**
|
|
1301
|
+
* Country codes where payee operates
|
|
1302
|
+
*/
|
|
1303
|
+
countries: Array<string>;
|
|
1304
|
+
/**
|
|
1305
|
+
* Primary operating country
|
|
1306
|
+
*/
|
|
1307
|
+
primaryCountry?: string | null;
|
|
1308
|
+
/**
|
|
1309
|
+
* Search keywords
|
|
1310
|
+
*/
|
|
1311
|
+
keywords: Array<string>;
|
|
1312
|
+
/**
|
|
1313
|
+
* Logo URL
|
|
1314
|
+
*/
|
|
1315
|
+
logoUrl?: string | null;
|
|
1316
|
+
/**
|
|
1317
|
+
* Official website
|
|
1318
|
+
*/
|
|
1319
|
+
website?: string | null;
|
|
1320
|
+
/**
|
|
1321
|
+
* Description
|
|
1322
|
+
*/
|
|
1323
|
+
description?: string | null;
|
|
1324
|
+
/**
|
|
1325
|
+
* Extended metadata
|
|
1326
|
+
*/
|
|
1327
|
+
meta: {
|
|
1328
|
+
[key: string]: unknown;
|
|
1329
|
+
};
|
|
1330
|
+
/**
|
|
1331
|
+
* Data source
|
|
1332
|
+
*/
|
|
1333
|
+
dataSource: 'MANUAL' | 'IMPORT' | 'API' | 'CROWDSOURCED';
|
|
1334
|
+
/**
|
|
1335
|
+
* Verification timestamp (null if not verified)
|
|
1336
|
+
*/
|
|
1337
|
+
verifiedAt?: string | null;
|
|
1338
|
+
/**
|
|
1339
|
+
* Whether the profile is active
|
|
1340
|
+
*/
|
|
1341
|
+
isActive: boolean;
|
|
1342
|
+
/**
|
|
1343
|
+
* Creation timestamp
|
|
1344
|
+
*/
|
|
1345
|
+
createdAt: string;
|
|
1346
|
+
/**
|
|
1347
|
+
* Last update timestamp
|
|
1348
|
+
*/
|
|
1349
|
+
updatedAt: string;
|
|
1350
|
+
};
|
|
1108
1351
|
type PayeeProfileListResponseDto = {
|
|
1109
1352
|
/**
|
|
1110
1353
|
* List of payee profiles
|
|
@@ -1115,6 +1358,82 @@ type PayeeProfileListResponseDto = {
|
|
|
1115
1358
|
*/
|
|
1116
1359
|
total: number;
|
|
1117
1360
|
};
|
|
1361
|
+
type UpdatePayeeProfileDto = {
|
|
1362
|
+
/**
|
|
1363
|
+
* Multi-language aliases for the payee. Used for matching user input in different languages.
|
|
1364
|
+
*/
|
|
1365
|
+
aliases?: Array<string>;
|
|
1366
|
+
/**
|
|
1367
|
+
* Translation key for i18n integration (XLIFF translation system)
|
|
1368
|
+
*/
|
|
1369
|
+
i18nKey?: string;
|
|
1370
|
+
/**
|
|
1371
|
+
* Payee category classification
|
|
1372
|
+
*/
|
|
1373
|
+
category?: 'RESTAURANT' | 'CAFE' | 'FAST_FOOD' | 'BAR' | 'SUPERMARKET' | 'CONVENIENCE_STORE' | 'SHOPPING_MALL' | 'ONLINE_SHOPPING' | 'TAXI' | 'RIDE_SHARING' | 'PUBLIC_TRANSPORT' | 'PARKING' | 'GAS_STATION' | 'UTILITIES' | 'TELECOM' | 'STREAMING' | 'HEALTHCARE' | 'EDUCATION' | 'ENTERTAINMENT' | 'SPORTS' | 'TRAVEL' | 'HOTEL' | 'OTHER';
|
|
1374
|
+
/**
|
|
1375
|
+
* Sub-category for more specific classification
|
|
1376
|
+
*/
|
|
1377
|
+
subCategory?: string;
|
|
1378
|
+
/**
|
|
1379
|
+
* Country/region codes where the payee operates (ISO 3166-1 alpha-2)
|
|
1380
|
+
*/
|
|
1381
|
+
countries?: Array<string>;
|
|
1382
|
+
/**
|
|
1383
|
+
* Primary operating country (ISO 3166-1 alpha-2)
|
|
1384
|
+
*/
|
|
1385
|
+
primaryCountry?: string;
|
|
1386
|
+
/**
|
|
1387
|
+
* Search keywords for fuzzy matching
|
|
1388
|
+
*/
|
|
1389
|
+
keywords?: Array<string>;
|
|
1390
|
+
/**
|
|
1391
|
+
* Payee logo URL
|
|
1392
|
+
*/
|
|
1393
|
+
logoUrl?: string;
|
|
1394
|
+
/**
|
|
1395
|
+
* Official website URL
|
|
1396
|
+
*/
|
|
1397
|
+
website?: string;
|
|
1398
|
+
/**
|
|
1399
|
+
* Payee description
|
|
1400
|
+
*/
|
|
1401
|
+
description?: string;
|
|
1402
|
+
/**
|
|
1403
|
+
* Extended metadata (business hours, contact info, additional details)
|
|
1404
|
+
*/
|
|
1405
|
+
meta?: {
|
|
1406
|
+
[key: string]: unknown;
|
|
1407
|
+
};
|
|
1408
|
+
/**
|
|
1409
|
+
* Data source for this profile
|
|
1410
|
+
*/
|
|
1411
|
+
dataSource?: 'MANUAL' | 'IMPORT' | 'API' | 'CROWDSOURCED';
|
|
1412
|
+
/**
|
|
1413
|
+
* Whether the payee profile is active (soft delete)
|
|
1414
|
+
*/
|
|
1415
|
+
isActive?: boolean;
|
|
1416
|
+
/**
|
|
1417
|
+
* Verification timestamp. Set to current time to verify, or null to unverify.
|
|
1418
|
+
*/
|
|
1419
|
+
verifiedAt?: string | null;
|
|
1420
|
+
};
|
|
1421
|
+
type CreateCommodityDto = {
|
|
1422
|
+
/**
|
|
1423
|
+
* Commodity symbol (e.g., AAPL, USD, BTC) - corresponds to Beancount currency field
|
|
1424
|
+
*/
|
|
1425
|
+
symbol: string;
|
|
1426
|
+
/**
|
|
1427
|
+
* Commodity definition date (ISO 8601, required per Beancount spec). Represents when this commodity was first defined in the accounting system.
|
|
1428
|
+
*/
|
|
1429
|
+
date: string;
|
|
1430
|
+
/**
|
|
1431
|
+
* Metadata (corresponds to Beancount meta field). Can contain name, assetClass, precision, note, tags, etc.
|
|
1432
|
+
*/
|
|
1433
|
+
metadata?: {
|
|
1434
|
+
[key: string]: unknown;
|
|
1435
|
+
};
|
|
1436
|
+
};
|
|
1118
1437
|
type CommodityResponseDto = {
|
|
1119
1438
|
/**
|
|
1120
1439
|
* Unique identifier
|
|
@@ -1123,9 +1442,7 @@ type CommodityResponseDto = {
|
|
|
1123
1442
|
/**
|
|
1124
1443
|
* User ID (owner of the commodity)
|
|
1125
1444
|
*/
|
|
1126
|
-
userId?:
|
|
1127
|
-
[key: string]: unknown;
|
|
1128
|
-
} | null;
|
|
1445
|
+
userId?: string | null;
|
|
1129
1446
|
/**
|
|
1130
1447
|
* Commodity symbol (corresponds to Beancount currency field)
|
|
1131
1448
|
*/
|
|
@@ -1140,12 +1457,6 @@ type CommodityResponseDto = {
|
|
|
1140
1457
|
metadata: {
|
|
1141
1458
|
[key: string]: unknown;
|
|
1142
1459
|
};
|
|
1143
|
-
/**
|
|
1144
|
-
* Reference to SymbolProfile (market data integration, SaaS feature)
|
|
1145
|
-
*/
|
|
1146
|
-
symbolProfileId?: {
|
|
1147
|
-
[key: string]: unknown;
|
|
1148
|
-
} | null;
|
|
1149
1460
|
/**
|
|
1150
1461
|
* Creation timestamp
|
|
1151
1462
|
*/
|
|
@@ -1165,6 +1476,84 @@ type CommodityListResponseDto = {
|
|
|
1165
1476
|
*/
|
|
1166
1477
|
total: number;
|
|
1167
1478
|
};
|
|
1479
|
+
type UpdateCommodityDto = {
|
|
1480
|
+
/**
|
|
1481
|
+
* Commodity definition date (ISO 8601). Represents when this commodity was first defined in the accounting system.
|
|
1482
|
+
*/
|
|
1483
|
+
date?: string;
|
|
1484
|
+
/**
|
|
1485
|
+
* Metadata (corresponds to Beancount meta field). Will merge with existing metadata. Can contain name, assetClass, precision, note, tags, etc.
|
|
1486
|
+
*/
|
|
1487
|
+
metadata?: {
|
|
1488
|
+
[key: string]: unknown;
|
|
1489
|
+
};
|
|
1490
|
+
};
|
|
1491
|
+
type CreateRecurringRuleDto = {
|
|
1492
|
+
/**
|
|
1493
|
+
* Rule name (unique per user)
|
|
1494
|
+
*/
|
|
1495
|
+
name: string;
|
|
1496
|
+
/**
|
|
1497
|
+
* Icon emoji
|
|
1498
|
+
*/
|
|
1499
|
+
icon?: string;
|
|
1500
|
+
/**
|
|
1501
|
+
* Recurring frequency
|
|
1502
|
+
*/
|
|
1503
|
+
frequency: 'WEEKLY' | 'BIWEEKLY' | 'MONTHLY' | 'BIMONTHLY' | 'QUARTERLY' | 'YEARLY' | 'CUSTOM';
|
|
1504
|
+
/**
|
|
1505
|
+
* Expected amount (positive number)
|
|
1506
|
+
*/
|
|
1507
|
+
expectedAmount: number;
|
|
1508
|
+
/**
|
|
1509
|
+
* Expected day of month (1-31)
|
|
1510
|
+
*/
|
|
1511
|
+
expectedDay?: number;
|
|
1512
|
+
/**
|
|
1513
|
+
* Custom interval in days (required for CUSTOM frequency)
|
|
1514
|
+
*/
|
|
1515
|
+
customIntervalDays?: number;
|
|
1516
|
+
/**
|
|
1517
|
+
* Currency code
|
|
1518
|
+
*/
|
|
1519
|
+
currency: string;
|
|
1520
|
+
/**
|
|
1521
|
+
* Payee matching pattern (supports wildcards)
|
|
1522
|
+
*/
|
|
1523
|
+
matchPayeePattern?: string;
|
|
1524
|
+
/**
|
|
1525
|
+
* Amount tolerance percentage (0-1)
|
|
1526
|
+
*/
|
|
1527
|
+
matchAmountTolerance: number;
|
|
1528
|
+
/**
|
|
1529
|
+
* Default expense account for auto-create
|
|
1530
|
+
*/
|
|
1531
|
+
defaultExpenseAccount?: string;
|
|
1532
|
+
/**
|
|
1533
|
+
* Default payment account for auto-create
|
|
1534
|
+
*/
|
|
1535
|
+
defaultPaymentAccount?: string;
|
|
1536
|
+
/**
|
|
1537
|
+
* Default payee for auto-create
|
|
1538
|
+
*/
|
|
1539
|
+
defaultPayee?: string;
|
|
1540
|
+
/**
|
|
1541
|
+
* Auto-create transaction when expected date arrives
|
|
1542
|
+
*/
|
|
1543
|
+
autoCreate: boolean;
|
|
1544
|
+
/**
|
|
1545
|
+
* Rule start date (ISO format)
|
|
1546
|
+
*/
|
|
1547
|
+
startDate?: string;
|
|
1548
|
+
/**
|
|
1549
|
+
* Rule end date (ISO format)
|
|
1550
|
+
*/
|
|
1551
|
+
endDate?: string;
|
|
1552
|
+
};
|
|
1553
|
+
/**
|
|
1554
|
+
* Recurring frequency
|
|
1555
|
+
*/
|
|
1556
|
+
type frequency = 'WEEKLY' | 'BIWEEKLY' | 'MONTHLY' | 'BIMONTHLY' | 'QUARTERLY' | 'YEARLY' | 'CUSTOM';
|
|
1168
1557
|
type RecurringRuleResponseDto = {
|
|
1169
1558
|
/**
|
|
1170
1559
|
* Rule ID
|
|
@@ -1273,6 +1662,20 @@ type RecurringRuleResponseDto = {
|
|
|
1273
1662
|
*/
|
|
1274
1663
|
updatedAt: string;
|
|
1275
1664
|
};
|
|
1665
|
+
type CreateRuleFromTransactionDto = {
|
|
1666
|
+
/**
|
|
1667
|
+
* Recurring frequency
|
|
1668
|
+
*/
|
|
1669
|
+
frequency: 'WEEKLY' | 'BIWEEKLY' | 'MONTHLY' | 'BIMONTHLY' | 'QUARTERLY' | 'YEARLY' | 'CUSTOM';
|
|
1670
|
+
/**
|
|
1671
|
+
* Optional name override (default: transaction payee)
|
|
1672
|
+
*/
|
|
1673
|
+
name?: string;
|
|
1674
|
+
/**
|
|
1675
|
+
* Optional icon emoji
|
|
1676
|
+
*/
|
|
1677
|
+
icon?: string;
|
|
1678
|
+
};
|
|
1276
1679
|
type RecurringRuleWithStatsResponseDto = {
|
|
1277
1680
|
/**
|
|
1278
1681
|
* Rule ID
|
|
@@ -1427,6 +1830,68 @@ type RecurringRuleWithStatsResponseDto = {
|
|
|
1427
1830
|
*/
|
|
1428
1831
|
upcomingCount: number;
|
|
1429
1832
|
};
|
|
1833
|
+
type UpdateRecurringRuleDto = {
|
|
1834
|
+
/**
|
|
1835
|
+
* Rule name
|
|
1836
|
+
*/
|
|
1837
|
+
name?: string;
|
|
1838
|
+
/**
|
|
1839
|
+
* Icon emoji
|
|
1840
|
+
*/
|
|
1841
|
+
icon?: string;
|
|
1842
|
+
/**
|
|
1843
|
+
* Recurring frequency
|
|
1844
|
+
*/
|
|
1845
|
+
frequency?: 'WEEKLY' | 'BIWEEKLY' | 'MONTHLY' | 'BIMONTHLY' | 'QUARTERLY' | 'YEARLY' | 'CUSTOM';
|
|
1846
|
+
/**
|
|
1847
|
+
* Expected amount
|
|
1848
|
+
*/
|
|
1849
|
+
expectedAmount?: number;
|
|
1850
|
+
/**
|
|
1851
|
+
* Expected day of month (1-31)
|
|
1852
|
+
*/
|
|
1853
|
+
expectedDay?: number;
|
|
1854
|
+
/**
|
|
1855
|
+
* Custom interval in days
|
|
1856
|
+
*/
|
|
1857
|
+
customIntervalDays?: number;
|
|
1858
|
+
/**
|
|
1859
|
+
* Currency code
|
|
1860
|
+
*/
|
|
1861
|
+
currency?: string;
|
|
1862
|
+
/**
|
|
1863
|
+
* Payee matching pattern
|
|
1864
|
+
*/
|
|
1865
|
+
matchPayeePattern?: string;
|
|
1866
|
+
/**
|
|
1867
|
+
* Amount tolerance percentage (0-1)
|
|
1868
|
+
*/
|
|
1869
|
+
matchAmountTolerance?: number;
|
|
1870
|
+
/**
|
|
1871
|
+
* Default expense account
|
|
1872
|
+
*/
|
|
1873
|
+
defaultExpenseAccount?: string;
|
|
1874
|
+
/**
|
|
1875
|
+
* Default payment account
|
|
1876
|
+
*/
|
|
1877
|
+
defaultPaymentAccount?: string;
|
|
1878
|
+
/**
|
|
1879
|
+
* Default payee
|
|
1880
|
+
*/
|
|
1881
|
+
defaultPayee?: string;
|
|
1882
|
+
/**
|
|
1883
|
+
* Auto-create transaction
|
|
1884
|
+
*/
|
|
1885
|
+
autoCreate?: boolean;
|
|
1886
|
+
/**
|
|
1887
|
+
* Rule active status
|
|
1888
|
+
*/
|
|
1889
|
+
isActive?: boolean;
|
|
1890
|
+
/**
|
|
1891
|
+
* Rule end date (ISO format)
|
|
1892
|
+
*/
|
|
1893
|
+
endDate?: string;
|
|
1894
|
+
};
|
|
1430
1895
|
type ExpectedTransactionRuleDto = {
|
|
1431
1896
|
/**
|
|
1432
1897
|
* Rule name
|
|
@@ -1514,6 +1979,34 @@ type ExpectedTransactionListResponseDto = {
|
|
|
1514
1979
|
*/
|
|
1515
1980
|
total: number;
|
|
1516
1981
|
};
|
|
1982
|
+
type ConfirmMatchDto = {
|
|
1983
|
+
/**
|
|
1984
|
+
* Transaction ID to match with
|
|
1985
|
+
*/
|
|
1986
|
+
transactionId: string;
|
|
1987
|
+
};
|
|
1988
|
+
type EnterNowDto = {
|
|
1989
|
+
/**
|
|
1990
|
+
* Override expense account (uses rule default if not provided)
|
|
1991
|
+
*/
|
|
1992
|
+
expenseAccount?: string;
|
|
1993
|
+
/**
|
|
1994
|
+
* Override payment account (uses rule default if not provided)
|
|
1995
|
+
*/
|
|
1996
|
+
paymentAccount?: string;
|
|
1997
|
+
/**
|
|
1998
|
+
* Override amount (uses expected amount if not provided)
|
|
1999
|
+
*/
|
|
2000
|
+
amount?: number;
|
|
2001
|
+
/**
|
|
2002
|
+
* Override payee (uses rule default if not provided)
|
|
2003
|
+
*/
|
|
2004
|
+
payee?: string;
|
|
2005
|
+
/**
|
|
2006
|
+
* Optional narration
|
|
2007
|
+
*/
|
|
2008
|
+
narration?: string;
|
|
2009
|
+
};
|
|
1517
2010
|
type ForecastItemDto = {
|
|
1518
2011
|
/**
|
|
1519
2012
|
* Rule name
|
|
@@ -1534,9 +2027,7 @@ type ForecastItemDto = {
|
|
|
1534
2027
|
/**
|
|
1535
2028
|
* Rule icon emoji
|
|
1536
2029
|
*/
|
|
1537
|
-
icon:
|
|
1538
|
-
[key: string]: unknown;
|
|
1539
|
-
} | null;
|
|
2030
|
+
icon: string | null;
|
|
1540
2031
|
/**
|
|
1541
2032
|
* Currency code
|
|
1542
2033
|
*/
|
|
@@ -1594,11 +2085,55 @@ type ForecastResponseDto = {
|
|
|
1594
2085
|
*/
|
|
1595
2086
|
periodEnd: string;
|
|
1596
2087
|
};
|
|
1597
|
-
type
|
|
1598
|
-
|
|
1599
|
-
|
|
1600
|
-
|
|
1601
|
-
|
|
2088
|
+
type CreateTransactionRuleDto = {
|
|
2089
|
+
name: string;
|
|
2090
|
+
description?: string;
|
|
2091
|
+
narrationKeywords?: Array<unknown[]>;
|
|
2092
|
+
payeeKeywords?: Array<unknown[]>;
|
|
2093
|
+
categoryKeywords?: Array<unknown[]>;
|
|
2094
|
+
/**
|
|
2095
|
+
* Payment method keywords (e.g., HuaBei, YuEBao)
|
|
2096
|
+
*/
|
|
2097
|
+
methodKeywords?: Array<unknown[]>;
|
|
2098
|
+
/**
|
|
2099
|
+
* Destination account for expenses/income (e.g., Expenses:Food:Coffee)
|
|
2100
|
+
*/
|
|
2101
|
+
categoryAccount?: string;
|
|
2102
|
+
matchLogic: 'OR' | 'AND';
|
|
2103
|
+
/**
|
|
2104
|
+
* Minimum transaction amount (inclusive)
|
|
2105
|
+
*/
|
|
2106
|
+
amountMin?: number;
|
|
2107
|
+
/**
|
|
2108
|
+
* Maximum transaction amount (inclusive)
|
|
2109
|
+
*/
|
|
2110
|
+
amountMax?: number;
|
|
2111
|
+
priority: number;
|
|
2112
|
+
additionalTags?: Array<unknown[]>;
|
|
2113
|
+
additionalMetadata?: {
|
|
2114
|
+
[key: string]: unknown;
|
|
2115
|
+
};
|
|
2116
|
+
/**
|
|
2117
|
+
* If true, update existing rule with matching payeeKeywords[0] instead of creating new rule
|
|
2118
|
+
*/
|
|
2119
|
+
upsertByPayee?: boolean;
|
|
2120
|
+
};
|
|
2121
|
+
type matchLogic = 'OR' | 'AND';
|
|
2122
|
+
type AmountRangeDto = {
|
|
2123
|
+
/**
|
|
2124
|
+
* Minimum amount
|
|
2125
|
+
*/
|
|
2126
|
+
min?: number;
|
|
2127
|
+
/**
|
|
2128
|
+
* Maximum amount
|
|
2129
|
+
*/
|
|
2130
|
+
max?: number;
|
|
2131
|
+
};
|
|
2132
|
+
type TransactionRuleResponseDto = {
|
|
2133
|
+
/**
|
|
2134
|
+
* Rule ID
|
|
2135
|
+
*/
|
|
2136
|
+
id: string;
|
|
1602
2137
|
/**
|
|
1603
2138
|
* Rule name
|
|
1604
2139
|
*/
|
|
@@ -1634,9 +2169,7 @@ type TransactionRuleResponseDto = {
|
|
|
1634
2169
|
/**
|
|
1635
2170
|
* Amount range for matching
|
|
1636
2171
|
*/
|
|
1637
|
-
amountRange?:
|
|
1638
|
-
[key: string]: unknown;
|
|
1639
|
-
};
|
|
2172
|
+
amountRange?: AmountRangeDto;
|
|
1640
2173
|
/**
|
|
1641
2174
|
* Rule priority (0-1000, higher = first match)
|
|
1642
2175
|
*/
|
|
@@ -1648,7 +2181,7 @@ type TransactionRuleResponseDto = {
|
|
|
1648
2181
|
/**
|
|
1649
2182
|
* Learning source: NLP, REVIEW_CENTER, or null for manual
|
|
1650
2183
|
*/
|
|
1651
|
-
learningSource?: 'NLP' | 'REVIEW_CENTER';
|
|
2184
|
+
learningSource?: 'NLP' | 'REVIEW_CENTER' | null;
|
|
1652
2185
|
/**
|
|
1653
2186
|
* Whether auto-apply is enabled for this rule
|
|
1654
2187
|
*/
|
|
@@ -1665,7 +2198,7 @@ type TransactionRuleResponseDto = {
|
|
|
1665
2198
|
* Additional metadata
|
|
1666
2199
|
*/
|
|
1667
2200
|
additionalMetadata?: {
|
|
1668
|
-
[key: string]:
|
|
2201
|
+
[key: string]: string;
|
|
1669
2202
|
};
|
|
1670
2203
|
/**
|
|
1671
2204
|
* Created timestamp
|
|
@@ -1676,10 +2209,6 @@ type TransactionRuleResponseDto = {
|
|
|
1676
2209
|
*/
|
|
1677
2210
|
updatedAt: string;
|
|
1678
2211
|
};
|
|
1679
|
-
/**
|
|
1680
|
-
* Keyword matching logic
|
|
1681
|
-
*/
|
|
1682
|
-
type matchLogic = 'OR' | 'AND';
|
|
1683
2212
|
/**
|
|
1684
2213
|
* Learning source: NLP, REVIEW_CENTER, or null for manual
|
|
1685
2214
|
*/
|
|
@@ -1746,6 +2275,41 @@ type ValidateRuleResponseDto = {
|
|
|
1746
2275
|
*/
|
|
1747
2276
|
warnings: Array<unknown[]>;
|
|
1748
2277
|
};
|
|
2278
|
+
type BulkCreateRulesDto = {
|
|
2279
|
+
/**
|
|
2280
|
+
* Array of rules to import
|
|
2281
|
+
*/
|
|
2282
|
+
rules: Array<unknown[]>;
|
|
2283
|
+
/**
|
|
2284
|
+
* Conflict handling strategy: skip (default) ignores duplicates, replace soft-deletes existing rule
|
|
2285
|
+
*/
|
|
2286
|
+
conflictStrategy: 'replace' | 'skip';
|
|
2287
|
+
};
|
|
2288
|
+
/**
|
|
2289
|
+
* Conflict handling strategy: skip (default) ignores duplicates, replace soft-deletes existing rule
|
|
2290
|
+
*/
|
|
2291
|
+
type conflictStrategy = 'replace' | 'skip';
|
|
2292
|
+
type BulkCreateRulesResponseDto = {
|
|
2293
|
+
/**
|
|
2294
|
+
* Number of successfully created rules
|
|
2295
|
+
*/
|
|
2296
|
+
successCount: number;
|
|
2297
|
+
/**
|
|
2298
|
+
* Number of failed rules
|
|
2299
|
+
*/
|
|
2300
|
+
failureCount: number;
|
|
2301
|
+
/**
|
|
2302
|
+
* Error details for failed rules
|
|
2303
|
+
*/
|
|
2304
|
+
errors: Array<{
|
|
2305
|
+
index?: number;
|
|
2306
|
+
message?: string;
|
|
2307
|
+
}>;
|
|
2308
|
+
/**
|
|
2309
|
+
* IDs of successfully created rules
|
|
2310
|
+
*/
|
|
2311
|
+
createdRuleIds: Array<string>;
|
|
2312
|
+
};
|
|
1749
2313
|
type ExportRulesResponseDto = {
|
|
1750
2314
|
/**
|
|
1751
2315
|
* Export timestamp
|
|
@@ -1799,6 +2363,39 @@ type RuleStatisticsResponseDto = {
|
|
|
1799
2363
|
* Statistics time period
|
|
1800
2364
|
*/
|
|
1801
2365
|
type period = '7d' | '30d' | '90d';
|
|
2366
|
+
type UpdateTransactionRuleDto = {
|
|
2367
|
+
name?: string;
|
|
2368
|
+
description?: string;
|
|
2369
|
+
narrationKeywords?: Array<unknown[]>;
|
|
2370
|
+
payeeKeywords?: Array<unknown[]>;
|
|
2371
|
+
categoryKeywords?: Array<unknown[]>;
|
|
2372
|
+
/**
|
|
2373
|
+
* Payment method keywords (e.g., HuaBei, YuEBao)
|
|
2374
|
+
*/
|
|
2375
|
+
methodKeywords?: Array<unknown[]>;
|
|
2376
|
+
/**
|
|
2377
|
+
* Destination account for expenses/income (e.g., Expenses:Food:Coffee)
|
|
2378
|
+
*/
|
|
2379
|
+
categoryAccount?: string;
|
|
2380
|
+
matchLogic?: 'OR' | 'AND';
|
|
2381
|
+
/**
|
|
2382
|
+
* Minimum transaction amount (inclusive)
|
|
2383
|
+
*/
|
|
2384
|
+
amountMin?: number;
|
|
2385
|
+
/**
|
|
2386
|
+
* Maximum transaction amount (inclusive)
|
|
2387
|
+
*/
|
|
2388
|
+
amountMax?: number;
|
|
2389
|
+
priority?: number;
|
|
2390
|
+
/**
|
|
2391
|
+
* Enable or disable the rule
|
|
2392
|
+
*/
|
|
2393
|
+
enabled?: boolean;
|
|
2394
|
+
additionalTags?: Array<unknown[]>;
|
|
2395
|
+
additionalMetadata?: {
|
|
2396
|
+
[key: string]: unknown;
|
|
2397
|
+
};
|
|
2398
|
+
};
|
|
1802
2399
|
type TestRuleDto = {
|
|
1803
2400
|
narration: string;
|
|
1804
2401
|
payee?: string;
|
|
@@ -1932,6 +2529,12 @@ type colorScheme = 'DARK' | 'LIGHT';
|
|
|
1932
2529
|
* View mode
|
|
1933
2530
|
*/
|
|
1934
2531
|
type viewMode = 'DEFAULT' | 'ZEN';
|
|
2532
|
+
type UpdatePropertyDto = {
|
|
2533
|
+
/**
|
|
2534
|
+
* Property value
|
|
2535
|
+
*/
|
|
2536
|
+
value: string;
|
|
2537
|
+
};
|
|
1935
2538
|
type FileImportDto = {
|
|
1936
2539
|
/**
|
|
1937
2540
|
* Bill file to import (CSV, PDF, OFX, etc.)
|
|
@@ -2114,7 +2717,7 @@ type ImporterConfigDto = {
|
|
|
2114
2717
|
/**
|
|
2115
2718
|
* Importer identifier
|
|
2116
2719
|
*/
|
|
2117
|
-
importerId: 'alipay' | 'alipay-web' | 'alipay-yuebao' | 'wechat' | 'wechat-xlsx' | 'boc' | 'boc-credit' | 'ccb' | 'cmb' | 'cmbc' | 'cmbc-credit' | 'icbc' | 'icbc-credit' | 'hsbc-hk';
|
|
2720
|
+
importerId: 'alipay' | 'alipay-web' | 'alipay-yuebao' | 'wechat' | 'wechat-xlsx' | 'boc' | 'boc-credit' | 'ccb' | 'cmb' | 'cmbc' | 'cmbc-credit' | 'icbc' | 'icbc-credit' | 'hsbc-hk-credit' | 'hsbc-hk-debit';
|
|
2118
2721
|
/**
|
|
2119
2722
|
* Configuration version (semver)
|
|
2120
2723
|
*/
|
|
@@ -2139,7 +2742,107 @@ type ImporterConfigDto = {
|
|
|
2139
2742
|
/**
|
|
2140
2743
|
* Importer identifier
|
|
2141
2744
|
*/
|
|
2142
|
-
type importerId = 'alipay' | 'alipay-web' | 'alipay-yuebao' | 'wechat' | 'wechat-xlsx' | 'boc' | 'boc-credit' | 'ccb' | 'cmb' | 'cmbc' | 'cmbc-credit' | 'icbc' | 'icbc-credit' | 'hsbc-hk';
|
|
2745
|
+
type importerId = 'alipay' | 'alipay-web' | 'alipay-yuebao' | 'wechat' | 'wechat-xlsx' | 'boc' | 'boc-credit' | 'ccb' | 'cmb' | 'cmbc' | 'cmbc-credit' | 'icbc' | 'icbc-credit' | 'hsbc-hk-credit' | 'hsbc-hk-debit';
|
|
2746
|
+
type UpdateMapperDefaultsDto = {
|
|
2747
|
+
/**
|
|
2748
|
+
* Source account for transactions (Beancount format)
|
|
2749
|
+
*/
|
|
2750
|
+
sourceAccount?: string;
|
|
2751
|
+
/**
|
|
2752
|
+
* Default currency (ISO 4217 code)
|
|
2753
|
+
*/
|
|
2754
|
+
currency?: string;
|
|
2755
|
+
/**
|
|
2756
|
+
* Default expense account (optional)
|
|
2757
|
+
*/
|
|
2758
|
+
expenseAccount?: string;
|
|
2759
|
+
/**
|
|
2760
|
+
* Default income account (optional)
|
|
2761
|
+
*/
|
|
2762
|
+
incomeAccount?: string;
|
|
2763
|
+
/**
|
|
2764
|
+
* Payment method to source account mapping. Maps payment method keywords to Beancount account paths. Used by Alipay/WeChat importers to determine sourceAccount based on payment method (e.g., HuaBei, CreditCard).
|
|
2765
|
+
*/
|
|
2766
|
+
methodAccountMapping?: {
|
|
2767
|
+
[key: string]: unknown;
|
|
2768
|
+
};
|
|
2769
|
+
};
|
|
2770
|
+
type UpdateConfigDataDto = {
|
|
2771
|
+
/**
|
|
2772
|
+
* Mapper defaults configuration
|
|
2773
|
+
*/
|
|
2774
|
+
defaults?: UpdateMapperDefaultsDto;
|
|
2775
|
+
};
|
|
2776
|
+
type UpdateImporterConfigDto = {
|
|
2777
|
+
/**
|
|
2778
|
+
* Configuration data (v1 schema)
|
|
2779
|
+
*/
|
|
2780
|
+
data?: UpdateConfigDataDto;
|
|
2781
|
+
};
|
|
2782
|
+
type CreatePlatformDto = {
|
|
2783
|
+
/**
|
|
2784
|
+
* Platform name
|
|
2785
|
+
*/
|
|
2786
|
+
name: string;
|
|
2787
|
+
/**
|
|
2788
|
+
* Platform canonical identifier (lowercase, kebab-case)
|
|
2789
|
+
*/
|
|
2790
|
+
canonical: string;
|
|
2791
|
+
/**
|
|
2792
|
+
* Platform aliases (multi-language names for lookup)
|
|
2793
|
+
*/
|
|
2794
|
+
aliases: Array<string>;
|
|
2795
|
+
/**
|
|
2796
|
+
* Platform URL
|
|
2797
|
+
*/
|
|
2798
|
+
url: string;
|
|
2799
|
+
/**
|
|
2800
|
+
* Platform type
|
|
2801
|
+
*/
|
|
2802
|
+
type: 'BANK' | 'BROKERAGE' | 'CRYPTO_EXCHANGE' | 'PAYMENT' | 'INVESTMENT' | 'INSURANCE' | 'OTHER';
|
|
2803
|
+
/**
|
|
2804
|
+
* Platform logo URL
|
|
2805
|
+
*/
|
|
2806
|
+
logoUrl?: string;
|
|
2807
|
+
/**
|
|
2808
|
+
* Whether the platform is active
|
|
2809
|
+
*/
|
|
2810
|
+
isActive?: boolean;
|
|
2811
|
+
};
|
|
2812
|
+
/**
|
|
2813
|
+
* Platform type
|
|
2814
|
+
*/
|
|
2815
|
+
type type3 = 'BANK' | 'BROKERAGE' | 'CRYPTO_EXCHANGE' | 'PAYMENT' | 'INVESTMENT' | 'INSURANCE' | 'OTHER';
|
|
2816
|
+
type UpdatePlatformDto = {
|
|
2817
|
+
/**
|
|
2818
|
+
* Platform name
|
|
2819
|
+
*/
|
|
2820
|
+
name?: string;
|
|
2821
|
+
/**
|
|
2822
|
+
* Platform canonical identifier (lowercase, kebab-case)
|
|
2823
|
+
*/
|
|
2824
|
+
canonical?: string;
|
|
2825
|
+
/**
|
|
2826
|
+
* Platform aliases (multi-language names for lookup)
|
|
2827
|
+
*/
|
|
2828
|
+
aliases?: Array<string>;
|
|
2829
|
+
/**
|
|
2830
|
+
* Platform URL
|
|
2831
|
+
*/
|
|
2832
|
+
url?: string;
|
|
2833
|
+
/**
|
|
2834
|
+
* Platform type
|
|
2835
|
+
*/
|
|
2836
|
+
type?: 'BANK' | 'BROKERAGE' | 'CRYPTO_EXCHANGE' | 'PAYMENT' | 'INVESTMENT' | 'INSURANCE' | 'OTHER';
|
|
2837
|
+
/**
|
|
2838
|
+
* Platform logo URL
|
|
2839
|
+
*/
|
|
2840
|
+
logoUrl?: string;
|
|
2841
|
+
/**
|
|
2842
|
+
* Whether the platform is active
|
|
2843
|
+
*/
|
|
2844
|
+
isActive?: boolean;
|
|
2845
|
+
};
|
|
2143
2846
|
type ProviderSyncConfigDto = {
|
|
2144
2847
|
/**
|
|
2145
2848
|
* Source account for the first posting
|
|
@@ -2212,6 +2915,7 @@ type SupportedProvidersResponseDto = {
|
|
|
2212
2915
|
*/
|
|
2213
2916
|
providers: Array<string>;
|
|
2214
2917
|
};
|
|
2918
|
+
type ParserTelemetryReportDto = unknown;
|
|
2215
2919
|
type ProcessNlpDto = {
|
|
2216
2920
|
/**
|
|
2217
2921
|
* Natural language text describing a transaction (Chinese)
|
|
@@ -2221,6 +2925,12 @@ type ProcessNlpDto = {
|
|
|
2221
2925
|
* Session ID for multi-turn conversation (auto-generated if not provided)
|
|
2222
2926
|
*/
|
|
2223
2927
|
sessionId?: string;
|
|
2928
|
+
/**
|
|
2929
|
+
* Parsed data from previous NLP response for session recovery. Send back the parsedData received in confirm_payee/confirm responses.
|
|
2930
|
+
*/
|
|
2931
|
+
parsedData?: {
|
|
2932
|
+
[key: string]: unknown;
|
|
2933
|
+
};
|
|
2224
2934
|
};
|
|
2225
2935
|
type NlpTransactionInfoDto = {
|
|
2226
2936
|
/**
|
|
@@ -3191,7 +3901,7 @@ type AccountControllerCreateData = {
|
|
|
3191
3901
|
/**
|
|
3192
3902
|
* Region code for tenant context
|
|
3193
3903
|
*/
|
|
3194
|
-
region: 'cn' | 'us' | 'de';
|
|
3904
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
3195
3905
|
requestBody: CreateAccountDto;
|
|
3196
3906
|
};
|
|
3197
3907
|
type AccountControllerCreateResponse = AccountResponseDto;
|
|
@@ -3211,7 +3921,7 @@ type AccountControllerFindAllData = {
|
|
|
3211
3921
|
/**
|
|
3212
3922
|
* Region code for tenant context
|
|
3213
3923
|
*/
|
|
3214
|
-
region: 'cn' | 'us' | 'de';
|
|
3924
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
3215
3925
|
/**
|
|
3216
3926
|
* Search term for path or i18nKey
|
|
3217
3927
|
*/
|
|
@@ -3234,7 +3944,7 @@ type AccountControllerFindOneData = {
|
|
|
3234
3944
|
/**
|
|
3235
3945
|
* Region code for tenant context
|
|
3236
3946
|
*/
|
|
3237
|
-
region: 'cn' | 'us' | 'de';
|
|
3947
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
3238
3948
|
};
|
|
3239
3949
|
type AccountControllerFindOneResponse = AccountResponseDto;
|
|
3240
3950
|
type AccountControllerUpdateData = {
|
|
@@ -3245,7 +3955,7 @@ type AccountControllerUpdateData = {
|
|
|
3245
3955
|
/**
|
|
3246
3956
|
* Region code for tenant context
|
|
3247
3957
|
*/
|
|
3248
|
-
region: 'cn' | 'us' | 'de';
|
|
3958
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
3249
3959
|
requestBody: UpdateAccountDto;
|
|
3250
3960
|
};
|
|
3251
3961
|
type AccountControllerUpdateResponse = AccountResponseDto;
|
|
@@ -3257,7 +3967,7 @@ type AccountControllerDeleteData = {
|
|
|
3257
3967
|
/**
|
|
3258
3968
|
* Region code for tenant context
|
|
3259
3969
|
*/
|
|
3260
|
-
region: 'cn' | 'us' | 'de';
|
|
3970
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
3261
3971
|
};
|
|
3262
3972
|
type AccountControllerDeleteResponse = void;
|
|
3263
3973
|
type AccountControllerCloseData = {
|
|
@@ -3268,7 +3978,7 @@ type AccountControllerCloseData = {
|
|
|
3268
3978
|
/**
|
|
3269
3979
|
* Region code for tenant context
|
|
3270
3980
|
*/
|
|
3271
|
-
region: 'cn' | 'us' | 'de';
|
|
3981
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
3272
3982
|
requestBody: CloseAccountDto;
|
|
3273
3983
|
};
|
|
3274
3984
|
type AccountControllerCloseResponse = AccountResponseDto;
|
|
@@ -3280,15 +3990,48 @@ type AccountControllerReopenData = {
|
|
|
3280
3990
|
/**
|
|
3281
3991
|
* Region code for tenant context
|
|
3282
3992
|
*/
|
|
3283
|
-
region: 'cn' | 'us' | 'de';
|
|
3993
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
3284
3994
|
requestBody: ReopenAccountDto;
|
|
3285
3995
|
};
|
|
3286
3996
|
type AccountControllerReopenResponse = AccountResponseDto;
|
|
3997
|
+
type AccountStandardsControllerGetTemplatesData = {
|
|
3998
|
+
/**
|
|
3999
|
+
* Region code (cn, us, de)
|
|
4000
|
+
*/
|
|
4001
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
4002
|
+
/**
|
|
4003
|
+
* Search term for path or description
|
|
4004
|
+
*/
|
|
4005
|
+
search?: string;
|
|
4006
|
+
/**
|
|
4007
|
+
* Filter by account type
|
|
4008
|
+
*/
|
|
4009
|
+
type?: 'Assets' | 'Liabilities' | 'Income' | 'Expenses' | 'Equity';
|
|
4010
|
+
};
|
|
4011
|
+
type AccountStandardsControllerGetTemplatesResponse = AccountStandardListResponseDto;
|
|
4012
|
+
type AccountStandardsControllerGetTemplateMetadataData = {
|
|
4013
|
+
/**
|
|
4014
|
+
* Account path to check
|
|
4015
|
+
*/
|
|
4016
|
+
path: string;
|
|
4017
|
+
/**
|
|
4018
|
+
* Region code for tenant context
|
|
4019
|
+
*/
|
|
4020
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
4021
|
+
};
|
|
4022
|
+
type AccountStandardsControllerGetTemplateMetadataResponse = TemplateMetadataResponseDto;
|
|
4023
|
+
type AccountStandardsControllerGetRegionsData = {
|
|
4024
|
+
/**
|
|
4025
|
+
* Region code for tenant context
|
|
4026
|
+
*/
|
|
4027
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
4028
|
+
};
|
|
4029
|
+
type AccountStandardsControllerGetRegionsResponse = RegionsMetadataResponseDto;
|
|
3287
4030
|
type TransactionControllerCreateData = {
|
|
3288
4031
|
/**
|
|
3289
4032
|
* Region code for tenant context
|
|
3290
4033
|
*/
|
|
3291
|
-
region: 'cn' | 'us' | 'de';
|
|
4034
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
3292
4035
|
/**
|
|
3293
4036
|
* Transaction data with postings
|
|
3294
4037
|
*/
|
|
@@ -3319,7 +4062,7 @@ type TransactionControllerListData = {
|
|
|
3319
4062
|
/**
|
|
3320
4063
|
* Region code for tenant context
|
|
3321
4064
|
*/
|
|
3322
|
-
region: 'cn' | 'us' | 'de';
|
|
4065
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
3323
4066
|
/**
|
|
3324
4067
|
* Search in narration and payee fields (max 200 chars)
|
|
3325
4068
|
*/
|
|
@@ -3330,13 +4073,14 @@ type TransactionControllerListData = {
|
|
|
3330
4073
|
status?: 'ACTIVE' | 'VOIDED' | 'SUPERSEDED';
|
|
3331
4074
|
};
|
|
3332
4075
|
type TransactionControllerListResponse = TransactionListResponseDto;
|
|
3333
|
-
type
|
|
4076
|
+
type TransactionControllerCreateBatchData = {
|
|
3334
4077
|
/**
|
|
3335
4078
|
* Region code for tenant context
|
|
3336
4079
|
*/
|
|
3337
|
-
region: 'cn' | 'us' | 'de';
|
|
4080
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
4081
|
+
requestBody: BatchCreateTransactionDto;
|
|
3338
4082
|
};
|
|
3339
|
-
type
|
|
4083
|
+
type TransactionControllerCreateBatchResponse = BatchTransactionResponseDto;
|
|
3340
4084
|
type TransactionControllerGetDetailData = {
|
|
3341
4085
|
/**
|
|
3342
4086
|
* Transaction ID
|
|
@@ -3345,7 +4089,7 @@ type TransactionControllerGetDetailData = {
|
|
|
3345
4089
|
/**
|
|
3346
4090
|
* Region code for tenant context
|
|
3347
4091
|
*/
|
|
3348
|
-
region: 'cn' | 'us' | 'de';
|
|
4092
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
3349
4093
|
};
|
|
3350
4094
|
type TransactionControllerGetDetailResponse = TransactionDetailDto;
|
|
3351
4095
|
type TransactionControllerUpdateData = {
|
|
@@ -3356,42 +4100,24 @@ type TransactionControllerUpdateData = {
|
|
|
3356
4100
|
/**
|
|
3357
4101
|
* Region code for tenant context
|
|
3358
4102
|
*/
|
|
3359
|
-
region: 'cn' | 'us' | 'de';
|
|
4103
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
3360
4104
|
/**
|
|
3361
4105
|
* Fields to update (all optional)
|
|
3362
4106
|
*/
|
|
3363
4107
|
requestBody: UpdateTransactionDto;
|
|
3364
4108
|
};
|
|
3365
4109
|
type TransactionControllerUpdateResponse = TransactionDetailDto;
|
|
3366
|
-
type
|
|
3367
|
-
/**
|
|
3368
|
-
* Region code for tenant context
|
|
3369
|
-
*/
|
|
3370
|
-
region: 'cn' | 'us' | 'de';
|
|
3371
|
-
};
|
|
3372
|
-
type TransactionController1Response = void;
|
|
3373
|
-
type AccountStandardsControllerGetTemplatesData = {
|
|
4110
|
+
type TransactionControllerDeleteData = {
|
|
3374
4111
|
/**
|
|
3375
|
-
*
|
|
3376
|
-
*/
|
|
3377
|
-
region: 'cn' | 'us' | 'de';
|
|
3378
|
-
/**
|
|
3379
|
-
* Search term for path or description
|
|
3380
|
-
*/
|
|
3381
|
-
search?: string;
|
|
3382
|
-
/**
|
|
3383
|
-
* Filter by account type
|
|
4112
|
+
* Transaction ID
|
|
3384
4113
|
*/
|
|
3385
|
-
|
|
3386
|
-
};
|
|
3387
|
-
type AccountStandardsControllerGetTemplatesResponse = AccountStandardListResponseDto;
|
|
3388
|
-
type AccountStandardsControllerGetRegionsData = {
|
|
4114
|
+
id: string;
|
|
3389
4115
|
/**
|
|
3390
|
-
* Region code
|
|
4116
|
+
* Region code for tenant context
|
|
3391
4117
|
*/
|
|
3392
|
-
region: 'cn' | 'us' | 'de';
|
|
4118
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
3393
4119
|
};
|
|
3394
|
-
type
|
|
4120
|
+
type TransactionControllerDeleteResponse = void;
|
|
3395
4121
|
type BalanceControllerGetBalanceData = {
|
|
3396
4122
|
/**
|
|
3397
4123
|
* Account name (e.g., "Assets:Bank:Checking")
|
|
@@ -3406,16 +4132,16 @@ type BalanceControllerGetBalanceData = {
|
|
|
3406
4132
|
*/
|
|
3407
4133
|
date?: string;
|
|
3408
4134
|
/**
|
|
3409
|
-
* Region code
|
|
4135
|
+
* Region code for tenant context
|
|
3410
4136
|
*/
|
|
3411
|
-
region: 'cn' | 'us' | 'de';
|
|
4137
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
3412
4138
|
};
|
|
3413
4139
|
type BalanceControllerGetBalanceResponse = BalanceResponseDto;
|
|
3414
4140
|
type BalanceControllerGetMultiCurrencyBalanceData = {
|
|
3415
4141
|
/**
|
|
3416
|
-
* Region code
|
|
4142
|
+
* Region code for tenant context
|
|
3417
4143
|
*/
|
|
3418
|
-
region: 'cn' | 'us' | 'de';
|
|
4144
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
3419
4145
|
};
|
|
3420
4146
|
type BalanceControllerGetMultiCurrencyBalanceResponse = MultiCurrencyBalanceResponseDto;
|
|
3421
4147
|
type ReviewControllerFindAllData = {
|
|
@@ -3432,9 +4158,9 @@ type ReviewControllerFindAllData = {
|
|
|
3432
4158
|
*/
|
|
3433
4159
|
page?: number;
|
|
3434
4160
|
/**
|
|
3435
|
-
* Region code
|
|
4161
|
+
* Region code for tenant context
|
|
3436
4162
|
*/
|
|
3437
|
-
region: 'cn' | 'us' | 'de';
|
|
4163
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
3438
4164
|
/**
|
|
3439
4165
|
* Sort order
|
|
3440
4166
|
*/
|
|
@@ -3447,9 +4173,9 @@ type ReviewControllerFindAllData = {
|
|
|
3447
4173
|
type ReviewControllerFindAllResponse = ReviewListResponseDto;
|
|
3448
4174
|
type ReviewControllerGetStatsData = {
|
|
3449
4175
|
/**
|
|
3450
|
-
* Region code
|
|
4176
|
+
* Region code for tenant context
|
|
3451
4177
|
*/
|
|
3452
|
-
region: 'cn' | 'us' | 'de';
|
|
4178
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
3453
4179
|
};
|
|
3454
4180
|
type ReviewControllerGetStatsResponse = ReviewStatsDto;
|
|
3455
4181
|
type ReviewControllerFindOneData = {
|
|
@@ -3458,39 +4184,49 @@ type ReviewControllerFindOneData = {
|
|
|
3458
4184
|
*/
|
|
3459
4185
|
id: string;
|
|
3460
4186
|
/**
|
|
3461
|
-
* Region code
|
|
4187
|
+
* Region code for tenant context
|
|
3462
4188
|
*/
|
|
3463
|
-
region: 'cn' | 'us' | 'de';
|
|
4189
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
3464
4190
|
};
|
|
3465
4191
|
type ReviewControllerFindOneResponse = ReviewDetailDto;
|
|
3466
|
-
type
|
|
4192
|
+
type ReviewControllerResolveData = {
|
|
3467
4193
|
/**
|
|
3468
|
-
*
|
|
4194
|
+
* Review ID
|
|
3469
4195
|
*/
|
|
3470
|
-
|
|
3471
|
-
};
|
|
3472
|
-
type ReviewControllerResponse = unknown;
|
|
3473
|
-
type ReviewController1Data = {
|
|
4196
|
+
id: string;
|
|
3474
4197
|
/**
|
|
3475
|
-
* Region code
|
|
4198
|
+
* Region code for tenant context
|
|
3476
4199
|
*/
|
|
3477
|
-
region: 'cn' | 'us' | 'de';
|
|
4200
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
4201
|
+
requestBody: ResolveReviewDto;
|
|
3478
4202
|
};
|
|
3479
|
-
type
|
|
3480
|
-
type
|
|
4203
|
+
type ReviewControllerResolveResponse = ResolveResultDto;
|
|
4204
|
+
type ReviewControllerUndoData = {
|
|
3481
4205
|
/**
|
|
3482
|
-
*
|
|
4206
|
+
* Review ID
|
|
4207
|
+
*/
|
|
4208
|
+
id: string;
|
|
4209
|
+
/**
|
|
4210
|
+
* Region code for tenant context
|
|
3483
4211
|
*/
|
|
3484
|
-
region: 'cn' | 'us' | 'de';
|
|
4212
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
3485
4213
|
};
|
|
3486
|
-
type
|
|
3487
|
-
type
|
|
4214
|
+
type ReviewControllerUndoResponse = UndoResultDto;
|
|
4215
|
+
type ReviewControllerBatchResolveData = {
|
|
3488
4216
|
/**
|
|
3489
|
-
* Region code
|
|
4217
|
+
* Region code for tenant context
|
|
4218
|
+
*/
|
|
4219
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
4220
|
+
/**
|
|
4221
|
+
* Batch resolution request containing review IDs and action
|
|
3490
4222
|
*/
|
|
3491
|
-
|
|
4223
|
+
requestBody: BatchResolveDto;
|
|
4224
|
+
};
|
|
4225
|
+
type ReviewControllerBatchResolveResponse = BatchResolveResultDto;
|
|
4226
|
+
type PayeeControllerCreateData = {
|
|
4227
|
+
requestBody: CreatePayeeDto;
|
|
3492
4228
|
};
|
|
3493
|
-
type
|
|
4229
|
+
type PayeeControllerCreateResponse = PayeeResponseDto;
|
|
3494
4230
|
type PayeeControllerFindAllData = {
|
|
3495
4231
|
/**
|
|
3496
4232
|
* Filter by custom category
|
|
@@ -3504,10 +4240,6 @@ type PayeeControllerFindAllData = {
|
|
|
3504
4240
|
* Filter by exact payee name match
|
|
3505
4241
|
*/
|
|
3506
4242
|
payee?: string;
|
|
3507
|
-
/**
|
|
3508
|
-
* Region code (cn, us, de)
|
|
3509
|
-
*/
|
|
3510
|
-
region: 'cn' | 'us' | 'de';
|
|
3511
4243
|
/**
|
|
3512
4244
|
* Search term for payee name (partial match, case-insensitive). Useful for autocomplete.
|
|
3513
4245
|
*/
|
|
@@ -3527,10 +4259,6 @@ type PayeeControllerAutocompleteData = {
|
|
|
3527
4259
|
* Search query for payee name (partial match, case-insensitive)
|
|
3528
4260
|
*/
|
|
3529
4261
|
q: string;
|
|
3530
|
-
/**
|
|
3531
|
-
* Region code (cn, us, de)
|
|
3532
|
-
*/
|
|
3533
|
-
region: 'cn' | 'us' | 'de';
|
|
3534
4262
|
};
|
|
3535
4263
|
type PayeeControllerAutocompleteResponse = PayeeAutocompleteResponseDto;
|
|
3536
4264
|
type PayeeControllerGetTopPayeesData = {
|
|
@@ -3538,10 +4266,6 @@ type PayeeControllerGetTopPayeesData = {
|
|
|
3538
4266
|
* Maximum number of results
|
|
3539
4267
|
*/
|
|
3540
4268
|
limit?: number;
|
|
3541
|
-
/**
|
|
3542
|
-
* Region code (cn, us, de)
|
|
3543
|
-
*/
|
|
3544
|
-
region: 'cn' | 'us' | 'de';
|
|
3545
4269
|
};
|
|
3546
4270
|
type PayeeControllerGetTopPayeesResponse = Array<PayeeStatsResponseDto>;
|
|
3547
4271
|
type PayeeControllerFindOneData = {
|
|
@@ -3549,33 +4273,27 @@ type PayeeControllerFindOneData = {
|
|
|
3549
4273
|
* Payee UUID
|
|
3550
4274
|
*/
|
|
3551
4275
|
id: string;
|
|
3552
|
-
/**
|
|
3553
|
-
* Region code (cn, us, de)
|
|
3554
|
-
*/
|
|
3555
|
-
region: 'cn' | 'us' | 'de';
|
|
3556
4276
|
};
|
|
3557
4277
|
type PayeeControllerFindOneResponse = PayeeResponseDto;
|
|
3558
|
-
type
|
|
4278
|
+
type PayeeControllerUpdateData = {
|
|
3559
4279
|
/**
|
|
3560
|
-
*
|
|
4280
|
+
* Payee UUID
|
|
3561
4281
|
*/
|
|
3562
|
-
|
|
4282
|
+
id: string;
|
|
4283
|
+
requestBody: UpdatePayeeDto;
|
|
3563
4284
|
};
|
|
3564
|
-
type
|
|
3565
|
-
type
|
|
4285
|
+
type PayeeControllerUpdateResponse = PayeeResponseDto;
|
|
4286
|
+
type PayeeControllerDeleteData = {
|
|
3566
4287
|
/**
|
|
3567
|
-
*
|
|
4288
|
+
* Payee UUID
|
|
3568
4289
|
*/
|
|
3569
|
-
|
|
4290
|
+
id: string;
|
|
3570
4291
|
};
|
|
3571
|
-
type
|
|
3572
|
-
type
|
|
3573
|
-
|
|
3574
|
-
* Region code (cn, us, de)
|
|
3575
|
-
*/
|
|
3576
|
-
region: 'cn' | 'us' | 'de';
|
|
4292
|
+
type PayeeControllerDeleteResponse = void;
|
|
4293
|
+
type PayeeProfileAdminControllerCreateData = {
|
|
4294
|
+
requestBody: CreatePayeeProfileDto;
|
|
3577
4295
|
};
|
|
3578
|
-
type
|
|
4296
|
+
type PayeeProfileAdminControllerCreateResponse = PayeeProfileResponseDto;
|
|
3579
4297
|
type PayeeProfileAdminControllerFindAllData = {
|
|
3580
4298
|
/**
|
|
3581
4299
|
* Filter by category
|
|
@@ -3593,10 +4311,6 @@ type PayeeProfileAdminControllerFindAllData = {
|
|
|
3593
4311
|
* Filter by active status (default: true - show only active)
|
|
3594
4312
|
*/
|
|
3595
4313
|
isActive?: boolean;
|
|
3596
|
-
/**
|
|
3597
|
-
* Region code (cn, us, de)
|
|
3598
|
-
*/
|
|
3599
|
-
region: 'cn' | 'us' | 'de';
|
|
3600
4314
|
/**
|
|
3601
4315
|
* Search term for canonical name and aliases (case-insensitive)
|
|
3602
4316
|
*/
|
|
@@ -3612,52 +4326,50 @@ type PayeeProfileAdminControllerFindOneData = {
|
|
|
3612
4326
|
* Payee profile ID (UUID)
|
|
3613
4327
|
*/
|
|
3614
4328
|
id: string;
|
|
3615
|
-
/**
|
|
3616
|
-
* Region code (cn, us, de)
|
|
3617
|
-
*/
|
|
3618
|
-
region: 'cn' | 'us' | 'de';
|
|
3619
4329
|
};
|
|
3620
4330
|
type PayeeProfileAdminControllerFindOneResponse = PayeeProfileResponseDto;
|
|
3621
|
-
type
|
|
4331
|
+
type PayeeProfileAdminControllerUpdateData = {
|
|
3622
4332
|
/**
|
|
3623
|
-
*
|
|
4333
|
+
* Payee profile ID (UUID)
|
|
3624
4334
|
*/
|
|
3625
|
-
|
|
4335
|
+
id: string;
|
|
4336
|
+
requestBody: UpdatePayeeProfileDto;
|
|
3626
4337
|
};
|
|
3627
|
-
type
|
|
3628
|
-
type
|
|
4338
|
+
type PayeeProfileAdminControllerUpdateResponse = PayeeProfileResponseDto;
|
|
4339
|
+
type PayeeProfileAdminControllerDeleteData = {
|
|
3629
4340
|
/**
|
|
3630
|
-
*
|
|
4341
|
+
* Payee profile ID (UUID)
|
|
3631
4342
|
*/
|
|
3632
|
-
|
|
4343
|
+
id: string;
|
|
3633
4344
|
};
|
|
3634
|
-
type
|
|
3635
|
-
type
|
|
4345
|
+
type PayeeProfileAdminControllerDeleteResponse = void;
|
|
4346
|
+
type PayeeProfileAdminControllerVerifyData = {
|
|
3636
4347
|
/**
|
|
3637
|
-
*
|
|
4348
|
+
* Payee profile ID (UUID)
|
|
3638
4349
|
*/
|
|
3639
|
-
|
|
4350
|
+
id: string;
|
|
3640
4351
|
};
|
|
3641
|
-
type
|
|
3642
|
-
type
|
|
4352
|
+
type PayeeProfileAdminControllerVerifyResponse = PayeeProfileResponseDto;
|
|
4353
|
+
type PayeeProfileAdminControllerUnverifyData = {
|
|
3643
4354
|
/**
|
|
3644
|
-
*
|
|
4355
|
+
* Payee profile ID (UUID)
|
|
3645
4356
|
*/
|
|
3646
|
-
|
|
4357
|
+
id: string;
|
|
3647
4358
|
};
|
|
3648
|
-
type
|
|
3649
|
-
type
|
|
4359
|
+
type PayeeProfileAdminControllerUnverifyResponse = PayeeProfileResponseDto;
|
|
4360
|
+
type CommodityControllerCreateData = {
|
|
3650
4361
|
/**
|
|
3651
|
-
* Region code
|
|
4362
|
+
* Region code for tenant context
|
|
3652
4363
|
*/
|
|
3653
|
-
region: 'cn' | 'us' | 'de';
|
|
4364
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
4365
|
+
requestBody: CreateCommodityDto;
|
|
3654
4366
|
};
|
|
3655
|
-
type
|
|
4367
|
+
type CommodityControllerCreateResponse = CommodityResponseDto;
|
|
3656
4368
|
type CommodityControllerFindAllData = {
|
|
3657
4369
|
/**
|
|
3658
|
-
* Region code
|
|
4370
|
+
* Region code for tenant context
|
|
3659
4371
|
*/
|
|
3660
|
-
region: 'cn' | 'us' | 'de';
|
|
4372
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
3661
4373
|
/**
|
|
3662
4374
|
* Search term for symbol or metadata fields (partial match). Searches symbol and metadata.name.
|
|
3663
4375
|
*/
|
|
@@ -3670,50 +4382,64 @@ type CommodityControllerFindAllData = {
|
|
|
3670
4382
|
type CommodityControllerFindAllResponse = CommodityListResponseDto;
|
|
3671
4383
|
type CommodityControllerFindOneData = {
|
|
3672
4384
|
/**
|
|
3673
|
-
* Region code
|
|
4385
|
+
* Region code for tenant context
|
|
3674
4386
|
*/
|
|
3675
|
-
region: 'cn' | 'us' | 'de';
|
|
4387
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
3676
4388
|
/**
|
|
3677
4389
|
* Commodity symbol
|
|
3678
4390
|
*/
|
|
3679
4391
|
symbol: string;
|
|
3680
4392
|
};
|
|
3681
4393
|
type CommodityControllerFindOneResponse = CommodityResponseDto;
|
|
3682
|
-
type
|
|
4394
|
+
type CommodityControllerUpdateData = {
|
|
3683
4395
|
/**
|
|
3684
|
-
* Region code
|
|
4396
|
+
* Region code for tenant context
|
|
4397
|
+
*/
|
|
4398
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
4399
|
+
requestBody: UpdateCommodityDto;
|
|
4400
|
+
/**
|
|
4401
|
+
* Commodity symbol
|
|
3685
4402
|
*/
|
|
3686
|
-
|
|
4403
|
+
symbol: string;
|
|
3687
4404
|
};
|
|
3688
|
-
type
|
|
3689
|
-
type
|
|
4405
|
+
type CommodityControllerUpdateResponse = CommodityResponseDto;
|
|
4406
|
+
type CommodityControllerDeleteData = {
|
|
3690
4407
|
/**
|
|
3691
|
-
* Region code
|
|
4408
|
+
* Region code for tenant context
|
|
4409
|
+
*/
|
|
4410
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
4411
|
+
/**
|
|
4412
|
+
* Commodity symbol
|
|
3692
4413
|
*/
|
|
3693
|
-
|
|
4414
|
+
symbol: string;
|
|
3694
4415
|
};
|
|
3695
|
-
type
|
|
3696
|
-
type
|
|
4416
|
+
type CommodityControllerDeleteResponse = void;
|
|
4417
|
+
type CommodityControllerGetOrCreateData = {
|
|
3697
4418
|
/**
|
|
3698
|
-
* Region code
|
|
4419
|
+
* Region code for tenant context
|
|
3699
4420
|
*/
|
|
3700
|
-
region: 'cn' | 'us' | 'de';
|
|
4421
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
4422
|
+
/**
|
|
4423
|
+
* Commodity symbol
|
|
4424
|
+
*/
|
|
4425
|
+
symbol: string;
|
|
3701
4426
|
};
|
|
3702
|
-
type
|
|
3703
|
-
type
|
|
4427
|
+
type CommodityControllerGetOrCreateResponse = CommodityResponseDto;
|
|
4428
|
+
type CommodityControllerBulkCreateData = {
|
|
3704
4429
|
/**
|
|
3705
|
-
* Region code
|
|
4430
|
+
* Region code for tenant context
|
|
3706
4431
|
*/
|
|
3707
|
-
region: 'cn' | 'us' | 'de';
|
|
4432
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
3708
4433
|
};
|
|
3709
|
-
type
|
|
3710
|
-
type
|
|
4434
|
+
type CommodityControllerBulkCreateResponse = Array<CommodityResponseDto>;
|
|
4435
|
+
type RecurringRuleControllerCreateData = {
|
|
3711
4436
|
/**
|
|
3712
|
-
* Region code
|
|
4437
|
+
* Region code for tenant context
|
|
3713
4438
|
*/
|
|
3714
|
-
region: 'cn' | 'us' | 'de';
|
|
4439
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
4440
|
+
requestBody: CreateRecurringRuleDto;
|
|
3715
4441
|
};
|
|
3716
|
-
type
|
|
4442
|
+
type RecurringRuleControllerCreateResponse = RecurringRuleResponseDto;
|
|
3717
4443
|
type RecurringRuleControllerFindAllData = {
|
|
3718
4444
|
/**
|
|
3719
4445
|
* Filter by frequency (WEEKLY, MONTHLY, etc.)
|
|
@@ -3728,52 +4454,66 @@ type RecurringRuleControllerFindAllData = {
|
|
|
3728
4454
|
*/
|
|
3729
4455
|
isActive?: boolean;
|
|
3730
4456
|
/**
|
|
3731
|
-
* Region code
|
|
4457
|
+
* Region code for tenant context
|
|
3732
4458
|
*/
|
|
3733
|
-
region: 'cn' | 'us' | 'de';
|
|
4459
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
3734
4460
|
};
|
|
3735
4461
|
type RecurringRuleControllerFindAllResponse = Array<RecurringRuleResponseDto>;
|
|
3736
|
-
type
|
|
4462
|
+
type RecurringRuleControllerCreateFromTransactionData = {
|
|
3737
4463
|
/**
|
|
3738
|
-
* Region code
|
|
4464
|
+
* Region code for tenant context
|
|
3739
4465
|
*/
|
|
3740
|
-
region: 'cn' | 'us' | 'de';
|
|
4466
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
4467
|
+
requestBody: CreateRuleFromTransactionDto;
|
|
4468
|
+
/**
|
|
4469
|
+
* Source transaction ID
|
|
4470
|
+
*/
|
|
4471
|
+
transactionId: string;
|
|
3741
4472
|
};
|
|
3742
|
-
type
|
|
4473
|
+
type RecurringRuleControllerCreateFromTransactionResponse = RecurringRuleResponseDto;
|
|
3743
4474
|
type RecurringRuleControllerFindOneData = {
|
|
3744
4475
|
/**
|
|
3745
4476
|
* Rule ID
|
|
3746
4477
|
*/
|
|
3747
4478
|
id: string;
|
|
3748
4479
|
/**
|
|
3749
|
-
* Region code
|
|
4480
|
+
* Region code for tenant context
|
|
3750
4481
|
*/
|
|
3751
|
-
region: 'cn' | 'us' | 'de';
|
|
4482
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
3752
4483
|
};
|
|
3753
4484
|
type RecurringRuleControllerFindOneResponse = RecurringRuleResponseDto;
|
|
3754
|
-
type
|
|
4485
|
+
type RecurringRuleControllerUpdateData = {
|
|
3755
4486
|
/**
|
|
3756
|
-
*
|
|
4487
|
+
* Rule ID
|
|
3757
4488
|
*/
|
|
3758
|
-
|
|
4489
|
+
id: string;
|
|
4490
|
+
/**
|
|
4491
|
+
* Region code for tenant context
|
|
4492
|
+
*/
|
|
4493
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
4494
|
+
requestBody: UpdateRecurringRuleDto;
|
|
3759
4495
|
};
|
|
3760
|
-
type
|
|
3761
|
-
type
|
|
4496
|
+
type RecurringRuleControllerUpdateResponse = RecurringRuleResponseDto;
|
|
4497
|
+
type RecurringRuleControllerDeleteData = {
|
|
3762
4498
|
/**
|
|
3763
|
-
*
|
|
4499
|
+
* Rule ID
|
|
3764
4500
|
*/
|
|
3765
|
-
|
|
4501
|
+
id: string;
|
|
4502
|
+
/**
|
|
4503
|
+
* Region code for tenant context
|
|
4504
|
+
*/
|
|
4505
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
3766
4506
|
};
|
|
3767
|
-
type
|
|
4507
|
+
type RecurringRuleControllerDeleteResponse = void;
|
|
3768
4508
|
type RecurringRuleControllerGetWithStatsData = {
|
|
3769
4509
|
/**
|
|
3770
4510
|
* Rule ID
|
|
3771
4511
|
*/
|
|
3772
4512
|
id: string;
|
|
3773
4513
|
/**
|
|
3774
|
-
* Region code
|
|
4514
|
+
* Region code for tenant context
|
|
3775
4515
|
*/
|
|
3776
|
-
region: 'cn' | 'us' | 'de';
|
|
4516
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
3777
4517
|
};
|
|
3778
4518
|
type RecurringRuleControllerGetWithStatsResponse = RecurringRuleWithStatsResponseDto;
|
|
3779
4519
|
type ExpectedTransactionControllerFindAllData = {
|
|
@@ -3782,9 +4522,9 @@ type ExpectedTransactionControllerFindAllData = {
|
|
|
3782
4522
|
*/
|
|
3783
4523
|
fromDate?: string;
|
|
3784
4524
|
/**
|
|
3785
|
-
* Region code
|
|
4525
|
+
* Region code for tenant context
|
|
3786
4526
|
*/
|
|
3787
|
-
region: 'cn' | 'us' | 'de';
|
|
4527
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
3788
4528
|
/**
|
|
3789
4529
|
* Filter by recurring rule ID
|
|
3790
4530
|
*/
|
|
@@ -3801,9 +4541,9 @@ type ExpectedTransactionControllerFindAllData = {
|
|
|
3801
4541
|
type ExpectedTransactionControllerFindAllResponse = ExpectedTransactionListResponseDto;
|
|
3802
4542
|
type ExpectedTransactionControllerFindOverdueData = {
|
|
3803
4543
|
/**
|
|
3804
|
-
* Region code
|
|
4544
|
+
* Region code for tenant context
|
|
3805
4545
|
*/
|
|
3806
|
-
region: 'cn' | 'us' | 'de';
|
|
4546
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
3807
4547
|
};
|
|
3808
4548
|
type ExpectedTransactionControllerFindOverdueResponse = ExpectedTransactionListResponseDto;
|
|
3809
4549
|
type ExpectedTransactionControllerFindOneData = {
|
|
@@ -3812,64 +4552,87 @@ type ExpectedTransactionControllerFindOneData = {
|
|
|
3812
4552
|
*/
|
|
3813
4553
|
id: string;
|
|
3814
4554
|
/**
|
|
3815
|
-
* Region code
|
|
4555
|
+
* Region code for tenant context
|
|
3816
4556
|
*/
|
|
3817
|
-
region: 'cn' | 'us' | 'de';
|
|
4557
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
3818
4558
|
};
|
|
3819
4559
|
type ExpectedTransactionControllerFindOneResponse = ExpectedTransactionResponseDto;
|
|
3820
|
-
type
|
|
4560
|
+
type ExpectedTransactionControllerSkipData = {
|
|
3821
4561
|
/**
|
|
3822
|
-
*
|
|
4562
|
+
* Expected transaction ID
|
|
3823
4563
|
*/
|
|
3824
|
-
|
|
4564
|
+
id: string;
|
|
4565
|
+
/**
|
|
4566
|
+
* Region code for tenant context
|
|
4567
|
+
*/
|
|
4568
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
3825
4569
|
};
|
|
3826
|
-
type
|
|
3827
|
-
type
|
|
4570
|
+
type ExpectedTransactionControllerSkipResponse = ExpectedTransactionResponseDto;
|
|
4571
|
+
type ExpectedTransactionControllerUndoSkipData = {
|
|
3828
4572
|
/**
|
|
3829
|
-
*
|
|
4573
|
+
* Expected transaction ID
|
|
3830
4574
|
*/
|
|
3831
|
-
|
|
4575
|
+
id: string;
|
|
4576
|
+
/**
|
|
4577
|
+
* Region code for tenant context
|
|
4578
|
+
*/
|
|
4579
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
3832
4580
|
};
|
|
3833
|
-
type
|
|
3834
|
-
type
|
|
4581
|
+
type ExpectedTransactionControllerUndoSkipResponse = ExpectedTransactionResponseDto;
|
|
4582
|
+
type ExpectedTransactionControllerConfirmMatchData = {
|
|
3835
4583
|
/**
|
|
3836
|
-
*
|
|
4584
|
+
* Expected transaction ID
|
|
3837
4585
|
*/
|
|
3838
|
-
|
|
4586
|
+
id: string;
|
|
4587
|
+
/**
|
|
4588
|
+
* Region code for tenant context
|
|
4589
|
+
*/
|
|
4590
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
4591
|
+
requestBody: ConfirmMatchDto;
|
|
3839
4592
|
};
|
|
3840
|
-
type
|
|
3841
|
-
type
|
|
4593
|
+
type ExpectedTransactionControllerConfirmMatchResponse = unknown;
|
|
4594
|
+
type ExpectedTransactionControllerUnmatchData = {
|
|
3842
4595
|
/**
|
|
3843
|
-
*
|
|
4596
|
+
* Expected transaction ID
|
|
3844
4597
|
*/
|
|
3845
|
-
|
|
4598
|
+
id: string;
|
|
4599
|
+
/**
|
|
4600
|
+
* Region code for tenant context
|
|
4601
|
+
*/
|
|
4602
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
3846
4603
|
};
|
|
3847
|
-
type
|
|
3848
|
-
type
|
|
4604
|
+
type ExpectedTransactionControllerUnmatchResponse = unknown;
|
|
4605
|
+
type ExpectedTransactionControllerEnterNowData = {
|
|
3849
4606
|
/**
|
|
3850
|
-
*
|
|
4607
|
+
* Expected transaction ID
|
|
3851
4608
|
*/
|
|
3852
|
-
|
|
4609
|
+
id: string;
|
|
4610
|
+
/**
|
|
4611
|
+
* Region code for tenant context
|
|
4612
|
+
*/
|
|
4613
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
4614
|
+
requestBody: EnterNowDto;
|
|
3853
4615
|
};
|
|
3854
|
-
type
|
|
4616
|
+
type ExpectedTransactionControllerEnterNowResponse = unknown;
|
|
3855
4617
|
type ForecastControllerGetForecastData = {
|
|
3856
4618
|
/**
|
|
3857
4619
|
* Number of months to forecast (1-12, default 3)
|
|
3858
4620
|
*/
|
|
3859
4621
|
months?: number;
|
|
3860
4622
|
/**
|
|
3861
|
-
* Region code
|
|
4623
|
+
* Region code for tenant context
|
|
3862
4624
|
*/
|
|
3863
|
-
region: 'cn' | 'us' | 'de';
|
|
4625
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
3864
4626
|
};
|
|
3865
4627
|
type ForecastControllerGetForecastResponse = ForecastResponseDto;
|
|
3866
|
-
type
|
|
4628
|
+
type TransactionRuleControllerCreateData = {
|
|
3867
4629
|
/**
|
|
3868
|
-
* Region code
|
|
4630
|
+
* Region code for tenant context
|
|
3869
4631
|
*/
|
|
3870
|
-
region: 'cn' | 'us' | 'de';
|
|
4632
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
4633
|
+
requestBody: CreateTransactionRuleDto;
|
|
3871
4634
|
};
|
|
3872
|
-
type
|
|
4635
|
+
type TransactionRuleControllerCreateResponse = TransactionRuleResponseDto;
|
|
3873
4636
|
type TransactionRuleControllerListData = {
|
|
3874
4637
|
/**
|
|
3875
4638
|
* Filter by auto-apply status
|
|
@@ -3892,35 +4655,36 @@ type TransactionRuleControllerListData = {
|
|
|
3892
4655
|
*/
|
|
3893
4656
|
offset?: number;
|
|
3894
4657
|
/**
|
|
3895
|
-
* Region code
|
|
4658
|
+
* Region code for tenant context
|
|
3896
4659
|
*/
|
|
3897
|
-
region: 'cn' | 'us' | 'de';
|
|
4660
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
3898
4661
|
};
|
|
3899
4662
|
type TransactionRuleControllerListResponse = TransactionRuleListResponseDto;
|
|
3900
4663
|
type TransactionRuleControllerValidateData = {
|
|
3901
4664
|
/**
|
|
3902
|
-
* Region code
|
|
4665
|
+
* Region code for tenant context
|
|
3903
4666
|
*/
|
|
3904
|
-
region: 'cn' | 'us' | 'de';
|
|
4667
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
3905
4668
|
requestBody: ValidateRuleDto;
|
|
3906
4669
|
};
|
|
3907
4670
|
type TransactionRuleControllerValidateResponse = ValidateRuleResponseDto;
|
|
3908
|
-
type
|
|
4671
|
+
type TransactionRuleControllerBulkCreateData = {
|
|
3909
4672
|
/**
|
|
3910
|
-
* Region code
|
|
4673
|
+
* Region code for tenant context
|
|
3911
4674
|
*/
|
|
3912
|
-
region: 'cn' | 'us' | 'de';
|
|
4675
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
4676
|
+
requestBody: BulkCreateRulesDto;
|
|
3913
4677
|
};
|
|
3914
|
-
type
|
|
4678
|
+
type TransactionRuleControllerBulkCreateResponse = BulkCreateRulesResponseDto;
|
|
3915
4679
|
type TransactionRuleControllerExportData = {
|
|
3916
4680
|
/**
|
|
3917
4681
|
* Export format (currently only JSON supported)
|
|
3918
4682
|
*/
|
|
3919
4683
|
format: 'json';
|
|
3920
4684
|
/**
|
|
3921
|
-
* Region code
|
|
4685
|
+
* Region code for tenant context
|
|
3922
4686
|
*/
|
|
3923
|
-
region: 'cn' | 'us' | 'de';
|
|
4687
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
3924
4688
|
};
|
|
3925
4689
|
type TransactionRuleControllerExportResponse = ExportRulesResponseDto;
|
|
3926
4690
|
type TransactionRuleControllerGetStatisticsData = {
|
|
@@ -3929,41 +4693,50 @@ type TransactionRuleControllerGetStatisticsData = {
|
|
|
3929
4693
|
*/
|
|
3930
4694
|
period: '7d' | '30d' | '90d';
|
|
3931
4695
|
/**
|
|
3932
|
-
* Region code
|
|
4696
|
+
* Region code for tenant context
|
|
3933
4697
|
*/
|
|
3934
|
-
region: 'cn' | 'us' | 'de';
|
|
4698
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
3935
4699
|
};
|
|
3936
4700
|
type TransactionRuleControllerGetStatisticsResponse = RuleStatisticsResponseDto;
|
|
3937
4701
|
type TransactionRuleControllerGetDetailData = {
|
|
3938
4702
|
/**
|
|
3939
|
-
* Region code
|
|
4703
|
+
* Region code for tenant context
|
|
3940
4704
|
*/
|
|
3941
|
-
region: 'cn' | 'us' | 'de';
|
|
4705
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
3942
4706
|
/**
|
|
3943
4707
|
* Rule ID
|
|
3944
4708
|
*/
|
|
3945
4709
|
ruleId: string;
|
|
3946
4710
|
};
|
|
3947
4711
|
type TransactionRuleControllerGetDetailResponse = TransactionRuleResponseDto;
|
|
3948
|
-
type
|
|
4712
|
+
type TransactionRuleControllerUpdateData = {
|
|
3949
4713
|
/**
|
|
3950
|
-
* Region code
|
|
4714
|
+
* Region code for tenant context
|
|
4715
|
+
*/
|
|
4716
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
4717
|
+
requestBody: UpdateTransactionRuleDto;
|
|
4718
|
+
/**
|
|
4719
|
+
* Rule ID to update
|
|
3951
4720
|
*/
|
|
3952
|
-
|
|
4721
|
+
ruleId: string;
|
|
3953
4722
|
};
|
|
3954
|
-
type
|
|
3955
|
-
type
|
|
4723
|
+
type TransactionRuleControllerUpdateResponse = TransactionRuleResponseDto;
|
|
4724
|
+
type TransactionRuleControllerDeleteData = {
|
|
3956
4725
|
/**
|
|
3957
|
-
* Region code
|
|
4726
|
+
* Region code for tenant context
|
|
3958
4727
|
*/
|
|
3959
|
-
region: 'cn' | 'us' | 'de';
|
|
4728
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
4729
|
+
/**
|
|
4730
|
+
* Rule ID to delete
|
|
4731
|
+
*/
|
|
4732
|
+
ruleId: string;
|
|
3960
4733
|
};
|
|
3961
|
-
type
|
|
4734
|
+
type TransactionRuleControllerDeleteResponse = void;
|
|
3962
4735
|
type TransactionRuleControllerTestData = {
|
|
3963
4736
|
/**
|
|
3964
|
-
* Region code
|
|
4737
|
+
* Region code for tenant context
|
|
3965
4738
|
*/
|
|
3966
|
-
region: 'cn' | 'us' | 'de';
|
|
4739
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
3967
4740
|
requestBody: TestRuleDto;
|
|
3968
4741
|
/**
|
|
3969
4742
|
* Rule ID to test
|
|
@@ -3972,26 +4745,14 @@ type TransactionRuleControllerTestData = {
|
|
|
3972
4745
|
};
|
|
3973
4746
|
type TransactionRuleControllerTestResponse = TestRuleResponseDto;
|
|
3974
4747
|
type UserControllerDeleteOwnUserData = {
|
|
3975
|
-
/**
|
|
3976
|
-
* Region code (cn, us, de)
|
|
3977
|
-
*/
|
|
3978
|
-
region: 'cn' | 'us' | 'de';
|
|
3979
4748
|
requestBody: DeleteOwnUserDto;
|
|
3980
4749
|
};
|
|
3981
4750
|
type UserControllerDeleteOwnUserResponse = void;
|
|
3982
4751
|
type UserControllerGetUserData = {
|
|
3983
4752
|
acceptLanguage: string;
|
|
3984
|
-
/**
|
|
3985
|
-
* Region code (cn, us, de)
|
|
3986
|
-
*/
|
|
3987
|
-
region: 'cn' | 'us' | 'de';
|
|
3988
4753
|
};
|
|
3989
4754
|
type UserControllerGetUserResponse = unknown;
|
|
3990
4755
|
type UserControllerSignupUserData = {
|
|
3991
|
-
/**
|
|
3992
|
-
* Region code (cn, us, de)
|
|
3993
|
-
*/
|
|
3994
|
-
region: 'cn' | 'us' | 'de';
|
|
3995
4756
|
requestBody: SignupDto;
|
|
3996
4757
|
};
|
|
3997
4758
|
type UserControllerSignupUserResponse = unknown;
|
|
@@ -4000,10 +4761,6 @@ type UserControllerDeleteUserData = {
|
|
|
4000
4761
|
* User ID to delete
|
|
4001
4762
|
*/
|
|
4002
4763
|
id: string;
|
|
4003
|
-
/**
|
|
4004
|
-
* Region code (cn, us, de)
|
|
4005
|
-
*/
|
|
4006
|
-
region: 'cn' | 'us' | 'de';
|
|
4007
4764
|
};
|
|
4008
4765
|
type UserControllerDeleteUserResponse = void;
|
|
4009
4766
|
type UserControllerGetUserInfoData = {
|
|
@@ -4011,17 +4768,9 @@ type UserControllerGetUserInfoData = {
|
|
|
4011
4768
|
* User ID
|
|
4012
4769
|
*/
|
|
4013
4770
|
id: string;
|
|
4014
|
-
/**
|
|
4015
|
-
* Region code (cn, us, de)
|
|
4016
|
-
*/
|
|
4017
|
-
region: 'cn' | 'us' | 'de';
|
|
4018
4771
|
};
|
|
4019
4772
|
type UserControllerGetUserInfoResponse = unknown;
|
|
4020
4773
|
type UserControllerUpdateUserSettingData = {
|
|
4021
|
-
/**
|
|
4022
|
-
* Region code (cn, us, de)
|
|
4023
|
-
*/
|
|
4024
|
-
region: 'cn' | 'us' | 'de';
|
|
4025
4774
|
requestBody: UpdateUserSettingDto;
|
|
4026
4775
|
};
|
|
4027
4776
|
type UserControllerUpdateUserSettingResponse = unknown;
|
|
@@ -4034,60 +4783,42 @@ type UserControllerGetAllUserSettingsByPageData = {
|
|
|
4034
4783
|
* Page size
|
|
4035
4784
|
*/
|
|
4036
4785
|
pageSize: number;
|
|
4037
|
-
/**
|
|
4038
|
-
* Region code (cn, us, de)
|
|
4039
|
-
*/
|
|
4040
|
-
region: 'cn' | 'us' | 'de';
|
|
4041
4786
|
};
|
|
4042
4787
|
type UserControllerGetAllUserSettingsByPageResponse = unknown;
|
|
4043
|
-
type UserControllerGetAssetLiabilitySummaryData = {
|
|
4044
|
-
/**
|
|
4045
|
-
* Region code (cn, us, de)
|
|
4046
|
-
*/
|
|
4047
|
-
region: 'cn' | 'us' | 'de';
|
|
4048
|
-
};
|
|
4049
4788
|
type UserControllerGetAssetLiabilitySummaryResponse = unknown;
|
|
4050
|
-
type PropertyControllerGetAllData = {
|
|
4051
|
-
/**
|
|
4052
|
-
* Region code (cn, us, de)
|
|
4053
|
-
*/
|
|
4054
|
-
region: 'cn' | 'us' | 'de';
|
|
4055
|
-
};
|
|
4056
4789
|
type PropertyControllerGetAllResponse = unknown;
|
|
4057
4790
|
type PropertyControllerGetByKeyData = {
|
|
4058
4791
|
/**
|
|
4059
4792
|
* Property key
|
|
4060
4793
|
*/
|
|
4061
4794
|
key: string;
|
|
4062
|
-
/**
|
|
4063
|
-
* Region code (cn, us, de)
|
|
4064
|
-
*/
|
|
4065
|
-
region: 'cn' | 'us' | 'de';
|
|
4066
4795
|
};
|
|
4067
4796
|
type PropertyControllerGetByKeyResponse = unknown;
|
|
4068
|
-
type
|
|
4797
|
+
type PropertyControllerUpdateData = {
|
|
4069
4798
|
/**
|
|
4070
|
-
*
|
|
4799
|
+
* Property key
|
|
4071
4800
|
*/
|
|
4072
|
-
|
|
4801
|
+
key: string;
|
|
4802
|
+
requestBody: UpdatePropertyDto;
|
|
4073
4803
|
};
|
|
4074
|
-
type
|
|
4075
|
-
type
|
|
4804
|
+
type PropertyControllerUpdateResponse = unknown;
|
|
4805
|
+
type PropertyControllerDeleteData = {
|
|
4076
4806
|
/**
|
|
4077
|
-
*
|
|
4807
|
+
* Property key
|
|
4078
4808
|
*/
|
|
4079
|
-
|
|
4809
|
+
key: string;
|
|
4080
4810
|
};
|
|
4081
|
-
type
|
|
4811
|
+
type PropertyControllerDeleteResponse = void;
|
|
4812
|
+
type ExportControllerExportBeancountResponse = unknown;
|
|
4082
4813
|
type FileImportControllerImportFileData = {
|
|
4083
4814
|
/**
|
|
4084
4815
|
* Bill file to import
|
|
4085
4816
|
*/
|
|
4086
4817
|
formData: FileImportDto;
|
|
4087
4818
|
/**
|
|
4088
|
-
* Region code
|
|
4819
|
+
* Region code for tenant context
|
|
4089
4820
|
*/
|
|
4090
|
-
region: 'cn' | 'us' | 'de';
|
|
4821
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
4091
4822
|
};
|
|
4092
4823
|
type FileImportControllerImportFileResponse = ImportResultDto;
|
|
4093
4824
|
type FileImportControllerIdentifyFileData = {
|
|
@@ -4096,41 +4827,104 @@ type FileImportControllerIdentifyFileData = {
|
|
|
4096
4827
|
*/
|
|
4097
4828
|
formData: FileImportDto;
|
|
4098
4829
|
/**
|
|
4099
|
-
* Region code
|
|
4830
|
+
* Region code for tenant context
|
|
4100
4831
|
*/
|
|
4101
|
-
region: 'cn' | 'us' | 'de';
|
|
4832
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
4102
4833
|
};
|
|
4103
4834
|
type FileImportControllerIdentifyFileResponse = IdentifyResultDto;
|
|
4835
|
+
type FileImportControllerImportBeancountData = {
|
|
4836
|
+
/**
|
|
4837
|
+
* Beancount file to import
|
|
4838
|
+
*/
|
|
4839
|
+
formData: FileImportDto;
|
|
4840
|
+
/**
|
|
4841
|
+
* Region code for tenant context
|
|
4842
|
+
*/
|
|
4843
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
4844
|
+
};
|
|
4845
|
+
type FileImportControllerImportBeancountResponse = {
|
|
4846
|
+
imported?: number;
|
|
4847
|
+
skipped?: number;
|
|
4848
|
+
failed?: number;
|
|
4849
|
+
accountsCreated?: number;
|
|
4850
|
+
errors?: Array<{
|
|
4851
|
+
[key: string]: unknown;
|
|
4852
|
+
}>;
|
|
4853
|
+
};
|
|
4104
4854
|
type ImporterConfigControllerGetConfigData = {
|
|
4105
4855
|
/**
|
|
4106
|
-
* Importer identifier. Supported importers: alipay, alipay-web, wechat, boc, boc-credit, ccb, cmb, cmbc, cmbc-credit, icbc, icbc-credit, hsbc-hk
|
|
4856
|
+
* Importer identifier. Supported importers: alipay, alipay-web, wechat, boc, boc-credit, ccb, cmb, cmbc, cmbc-credit, icbc, icbc-credit, hsbc-hk-credit, hsbc-hk-debit
|
|
4107
4857
|
*/
|
|
4108
4858
|
importerId: string;
|
|
4109
4859
|
/**
|
|
4110
|
-
* Region code
|
|
4860
|
+
* Region code for tenant context
|
|
4111
4861
|
*/
|
|
4112
|
-
region: 'cn' | 'us' | 'de';
|
|
4862
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
4113
4863
|
};
|
|
4114
4864
|
type ImporterConfigControllerGetConfigResponse = ImporterConfigDto;
|
|
4115
|
-
type
|
|
4865
|
+
type ImporterConfigControllerUpdateConfigData = {
|
|
4116
4866
|
/**
|
|
4117
|
-
*
|
|
4867
|
+
* Importer identifier. Supported importers: alipay, alipay-web, wechat, boc, boc-credit, ccb, cmb, cmbc, cmbc-credit, icbc, icbc-credit, hsbc-hk-credit, hsbc-hk-debit
|
|
4868
|
+
*/
|
|
4869
|
+
importerId: string;
|
|
4870
|
+
/**
|
|
4871
|
+
* Region code for tenant context
|
|
4872
|
+
*/
|
|
4873
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
4874
|
+
/**
|
|
4875
|
+
* Partial configuration update. Only provided fields will be updated.
|
|
4118
4876
|
*/
|
|
4119
|
-
|
|
4877
|
+
requestBody: UpdateImporterConfigDto;
|
|
4120
4878
|
};
|
|
4121
|
-
type
|
|
4122
|
-
type
|
|
4879
|
+
type ImporterConfigControllerUpdateConfigResponse = ImporterConfigDto;
|
|
4880
|
+
type ImporterConfigControllerResetConfigData = {
|
|
4123
4881
|
/**
|
|
4124
|
-
*
|
|
4882
|
+
* Importer identifier. Supported importers: alipay, alipay-web, wechat, boc, boc-credit, ccb, cmb, cmbc, cmbc-credit, icbc, icbc-credit, hsbc-hk-credit, hsbc-hk-debit
|
|
4883
|
+
*/
|
|
4884
|
+
importerId: string;
|
|
4885
|
+
/**
|
|
4886
|
+
* Region code for tenant context
|
|
4125
4887
|
*/
|
|
4126
|
-
region: 'cn' | 'us' | 'de';
|
|
4888
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
4127
4889
|
};
|
|
4128
|
-
type
|
|
4890
|
+
type ImporterConfigControllerResetConfigResponse = ImporterConfigDto;
|
|
4891
|
+
type PlatformControllerFindAllResponse = unknown;
|
|
4892
|
+
type PlatformControllerCreateData = {
|
|
4893
|
+
requestBody: CreatePlatformDto;
|
|
4894
|
+
};
|
|
4895
|
+
type PlatformControllerCreateResponse = unknown;
|
|
4896
|
+
type PlatformControllerGetPlatformListResponse = unknown;
|
|
4897
|
+
type PlatformControllerMatchPlatformsData = {
|
|
4898
|
+
/**
|
|
4899
|
+
* Search query — Chinese name, English name, or abbreviation
|
|
4900
|
+
*/
|
|
4901
|
+
q: string;
|
|
4902
|
+
/**
|
|
4903
|
+
* Region code for category override lookup
|
|
4904
|
+
*/
|
|
4905
|
+
region?: string;
|
|
4906
|
+
};
|
|
4907
|
+
type PlatformControllerMatchPlatformsResponse = unknown;
|
|
4908
|
+
type PlatformControllerUpdateData = {
|
|
4909
|
+
/**
|
|
4910
|
+
* Platform ID
|
|
4911
|
+
*/
|
|
4912
|
+
id: string;
|
|
4913
|
+
requestBody: UpdatePlatformDto;
|
|
4914
|
+
};
|
|
4915
|
+
type PlatformControllerUpdateResponse = unknown;
|
|
4916
|
+
type PlatformControllerDeleteData = {
|
|
4917
|
+
/**
|
|
4918
|
+
* Platform ID
|
|
4919
|
+
*/
|
|
4920
|
+
id: string;
|
|
4921
|
+
};
|
|
4922
|
+
type PlatformControllerDeleteResponse = void;
|
|
4129
4923
|
type ProviderSyncControllerSyncData = {
|
|
4130
4924
|
/**
|
|
4131
4925
|
* Provider name
|
|
4132
4926
|
*/
|
|
4133
|
-
providerName: 'plaid' | 'teller' | 'truelayer' | 'gocardless' | 'simplefin' | 'yodlee' | 'beancount-direct';
|
|
4927
|
+
providerName: 'plaid' | 'teller' | 'truelayer' | 'gocardless' | 'simplefin' | 'yodlee' | 'beancount-direct' | 'parsed-bill';
|
|
4134
4928
|
/**
|
|
4135
4929
|
* Region code
|
|
4136
4930
|
*/
|
|
@@ -4140,9 +4934,9 @@ type ProviderSyncControllerSyncData = {
|
|
|
4140
4934
|
type ProviderSyncControllerSyncResponse = ProviderSyncResponseDto;
|
|
4141
4935
|
type ProviderSyncControllerGetSupportedProvidersData = {
|
|
4142
4936
|
/**
|
|
4143
|
-
* Region code
|
|
4937
|
+
* Region code for tenant context
|
|
4144
4938
|
*/
|
|
4145
|
-
region: 'cn' | 'us' | 'de';
|
|
4939
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
4146
4940
|
};
|
|
4147
4941
|
type ProviderSyncControllerGetSupportedProvidersResponse = SupportedProvidersResponseDto;
|
|
4148
4942
|
type ProviderSyncControllerIsProviderSupportedData = {
|
|
@@ -4151,16 +4945,24 @@ type ProviderSyncControllerIsProviderSupportedData = {
|
|
|
4151
4945
|
*/
|
|
4152
4946
|
providerName: string;
|
|
4153
4947
|
/**
|
|
4154
|
-
* Region code
|
|
4948
|
+
* Region code for tenant context
|
|
4155
4949
|
*/
|
|
4156
|
-
region: 'cn' | 'us' | 'de';
|
|
4950
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
4157
4951
|
};
|
|
4158
4952
|
type ProviderSyncControllerIsProviderSupportedResponse = unknown;
|
|
4953
|
+
type TelemetryControllerReportTelemetryData = {
|
|
4954
|
+
/**
|
|
4955
|
+
* Region code for tenant context
|
|
4956
|
+
*/
|
|
4957
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
4958
|
+
requestBody: ParserTelemetryReportDto;
|
|
4959
|
+
};
|
|
4960
|
+
type TelemetryControllerReportTelemetryResponse = unknown;
|
|
4159
4961
|
type NlpControllerProcessNaturalLanguageData = {
|
|
4160
4962
|
/**
|
|
4161
|
-
* Region code
|
|
4963
|
+
* Region code for tenant context
|
|
4162
4964
|
*/
|
|
4163
|
-
region: 'cn' | 'us' | 'de';
|
|
4965
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
4164
4966
|
/**
|
|
4165
4967
|
* Natural language transaction input with optional session ID
|
|
4166
4968
|
*/
|
|
@@ -4169,9 +4971,9 @@ type NlpControllerProcessNaturalLanguageData = {
|
|
|
4169
4971
|
type NlpControllerProcessNaturalLanguageResponse = NlpResponseDto;
|
|
4170
4972
|
type NlpControllerClearSessionData = {
|
|
4171
4973
|
/**
|
|
4172
|
-
* Region code
|
|
4974
|
+
* Region code for tenant context
|
|
4173
4975
|
*/
|
|
4174
|
-
region: 'cn' | 'us' | 'de';
|
|
4976
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
4175
4977
|
/**
|
|
4176
4978
|
* Specific session ID to clear (defaults to user session)
|
|
4177
4979
|
*/
|
|
@@ -4180,138 +4982,24 @@ type NlpControllerClearSessionData = {
|
|
|
4180
4982
|
type NlpControllerClearSessionResponse = void;
|
|
4181
4983
|
type NlpControllerGetSessionData = {
|
|
4182
4984
|
/**
|
|
4183
|
-
* Region code
|
|
4985
|
+
* Region code for tenant context
|
|
4184
4986
|
*/
|
|
4185
|
-
region: 'cn' | 'us' | 'de';
|
|
4987
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
4186
4988
|
/**
|
|
4187
4989
|
* Specific session ID to get (defaults to user session)
|
|
4188
4990
|
*/
|
|
4189
4991
|
sessionId?: string;
|
|
4190
4992
|
};
|
|
4191
4993
|
type NlpControllerGetSessionResponse = unknown;
|
|
4192
|
-
type PlatformControllerFindAllData = {
|
|
4193
|
-
/**
|
|
4194
|
-
* Region code (cn, us, de)
|
|
4195
|
-
*/
|
|
4196
|
-
region: 'cn' | 'us' | 'de';
|
|
4197
|
-
};
|
|
4198
|
-
type PlatformControllerFindAllResponse = unknown;
|
|
4199
|
-
type PlatformControllerData = {
|
|
4200
|
-
/**
|
|
4201
|
-
* Region code (cn, us, de)
|
|
4202
|
-
*/
|
|
4203
|
-
region: 'cn' | 'us' | 'de';
|
|
4204
|
-
};
|
|
4205
|
-
type PlatformControllerResponse = unknown;
|
|
4206
|
-
type PlatformControllerGetPlatformListData = {
|
|
4207
|
-
/**
|
|
4208
|
-
* Region code (cn, us, de)
|
|
4209
|
-
*/
|
|
4210
|
-
region: 'cn' | 'us' | 'de';
|
|
4211
|
-
};
|
|
4212
|
-
type PlatformControllerGetPlatformListResponse = unknown;
|
|
4213
|
-
type PlatformController1Data = {
|
|
4214
|
-
/**
|
|
4215
|
-
* Region code (cn, us, de)
|
|
4216
|
-
*/
|
|
4217
|
-
region: 'cn' | 'us' | 'de';
|
|
4218
|
-
};
|
|
4219
|
-
type PlatformController1Response = unknown;
|
|
4220
|
-
type PlatformController2Data = {
|
|
4221
|
-
/**
|
|
4222
|
-
* Region code (cn, us, de)
|
|
4223
|
-
*/
|
|
4224
|
-
region: 'cn' | 'us' | 'de';
|
|
4225
|
-
};
|
|
4226
|
-
type PlatformController2Response = void;
|
|
4227
|
-
type SymbolControllerLookupSymbolData = {
|
|
4228
|
-
/**
|
|
4229
|
-
* Geographic area filter (e.g., CN, US)
|
|
4230
|
-
*/
|
|
4231
|
-
area?: unknown;
|
|
4232
|
-
/**
|
|
4233
|
-
* Asset class filter
|
|
4234
|
-
*/
|
|
4235
|
-
assetClass?: unknown;
|
|
4236
|
-
/**
|
|
4237
|
-
* Asset sub-class filter
|
|
4238
|
-
*/
|
|
4239
|
-
assetSubClass?: unknown;
|
|
4240
|
-
/**
|
|
4241
|
-
* Include index symbols in results
|
|
4242
|
-
*/
|
|
4243
|
-
includeIndices?: unknown;
|
|
4244
|
-
/**
|
|
4245
|
-
* Search query string
|
|
4246
|
-
*/
|
|
4247
|
-
query?: unknown;
|
|
4248
|
-
/**
|
|
4249
|
-
* Region code (cn, us, de)
|
|
4250
|
-
*/
|
|
4251
|
-
region: 'cn' | 'us' | 'de';
|
|
4252
|
-
};
|
|
4253
|
-
type SymbolControllerLookupSymbolResponse = unknown;
|
|
4254
|
-
type SymbolControllerGetSymbolDataData = {
|
|
4255
|
-
/**
|
|
4256
|
-
* Data source provider
|
|
4257
|
-
*/
|
|
4258
|
-
dataSource: 'ALPHA_VANTAGE' | 'EOD_HISTORICAL_DATA' | 'FINANCIAL_MODELING_PREP' | 'MANUAL' | 'RAPID_API' | 'YAHOO' | 'COINGECKO' | 'TUSHARE' | 'BLOOMBERG' | 'CSI' | 'STOOQ' | 'TRADING_VIEW';
|
|
4259
|
-
/**
|
|
4260
|
-
* Include historical price data (0 or 1)
|
|
4261
|
-
*/
|
|
4262
|
-
includeHistoricalData?: unknown;
|
|
4263
|
-
/**
|
|
4264
|
-
* Region code (cn, us, de)
|
|
4265
|
-
*/
|
|
4266
|
-
region: 'cn' | 'us' | 'de';
|
|
4267
|
-
/**
|
|
4268
|
-
* Symbol identifier (e.g., ticker code)
|
|
4269
|
-
*/
|
|
4270
|
-
symbol: string;
|
|
4271
|
-
};
|
|
4272
|
-
type SymbolControllerGetSymbolDataResponse = unknown;
|
|
4273
|
-
type SymbolControllerGatherSymbolForDateData = {
|
|
4274
|
-
/**
|
|
4275
|
-
* Data source provider
|
|
4276
|
-
*/
|
|
4277
|
-
dataSource: 'ALPHA_VANTAGE' | 'EOD_HISTORICAL_DATA' | 'FINANCIAL_MODELING_PREP' | 'MANUAL' | 'RAPID_API' | 'YAHOO' | 'COINGECKO' | 'TUSHARE' | 'BLOOMBERG' | 'CSI' | 'STOOQ' | 'TRADING_VIEW';
|
|
4278
|
-
/**
|
|
4279
|
-
* Date in ISO 8601 format (YYYY-MM-DD)
|
|
4280
|
-
*/
|
|
4281
|
-
dateString: string;
|
|
4282
|
-
/**
|
|
4283
|
-
* Region code (cn, us, de)
|
|
4284
|
-
*/
|
|
4285
|
-
region: 'cn' | 'us' | 'de';
|
|
4286
|
-
/**
|
|
4287
|
-
* Symbol identifier (e.g., ticker code)
|
|
4288
|
-
*/
|
|
4289
|
-
symbol: string;
|
|
4290
|
-
};
|
|
4291
|
-
type SymbolControllerGatherSymbolForDateResponse = unknown;
|
|
4292
|
-
type SymbolControllerData = {
|
|
4293
|
-
/**
|
|
4294
|
-
* Region code (cn, us, de)
|
|
4295
|
-
*/
|
|
4296
|
-
region: 'cn' | 'us' | 'de';
|
|
4297
|
-
};
|
|
4298
|
-
type SymbolControllerResponse = unknown;
|
|
4299
|
-
type CacheControllerFlushCacheData = {
|
|
4300
|
-
/**
|
|
4301
|
-
* Region code (cn, us, de)
|
|
4302
|
-
*/
|
|
4303
|
-
region: 'cn' | 'us' | 'de';
|
|
4304
|
-
};
|
|
4305
|
-
type CacheControllerFlushCacheResponse = unknown;
|
|
4306
4994
|
type DashboardControllerGetNetWorthData = {
|
|
4307
4995
|
/**
|
|
4308
4996
|
* Date for balance calculation (ISO 8601 format)
|
|
4309
4997
|
*/
|
|
4310
4998
|
date?: string;
|
|
4311
4999
|
/**
|
|
4312
|
-
* Region code
|
|
5000
|
+
* Region code for tenant context
|
|
4313
5001
|
*/
|
|
4314
|
-
region: 'cn' | 'us' | 'de';
|
|
5002
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
4315
5003
|
};
|
|
4316
5004
|
type DashboardControllerGetNetWorthResponse = NetWorthResponseDto;
|
|
4317
5005
|
type DashboardControllerGetAccountsData = {
|
|
@@ -4324,9 +5012,9 @@ type DashboardControllerGetAccountsData = {
|
|
|
4324
5012
|
*/
|
|
4325
5013
|
groupBy?: 'platform' | 'assetClass';
|
|
4326
5014
|
/**
|
|
4327
|
-
* Region code
|
|
5015
|
+
* Region code for tenant context
|
|
4328
5016
|
*/
|
|
4329
|
-
region: 'cn' | 'us' | 'de';
|
|
5017
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
4330
5018
|
};
|
|
4331
5019
|
type DashboardControllerGetAccountsResponse = AccountsResponseDto | AssetClassAccountsResponseDto;
|
|
4332
5020
|
type DashboardControllerGetCashFlowData = {
|
|
@@ -4335,9 +5023,9 @@ type DashboardControllerGetCashFlowData = {
|
|
|
4335
5023
|
*/
|
|
4336
5024
|
period: string;
|
|
4337
5025
|
/**
|
|
4338
|
-
* Region code
|
|
5026
|
+
* Region code for tenant context
|
|
4339
5027
|
*/
|
|
4340
|
-
region: 'cn' | 'us' | 'de';
|
|
5028
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
4341
5029
|
};
|
|
4342
5030
|
type DashboardControllerGetCashFlowResponse = CashFlowResponseDto;
|
|
4343
5031
|
type ReportingControllerGetPortfolioTrendsData = {
|
|
@@ -4350,16 +5038,16 @@ type ReportingControllerGetPortfolioTrendsData = {
|
|
|
4350
5038
|
*/
|
|
4351
5039
|
period?: '1m' | '3m' | '6m' | '1y';
|
|
4352
5040
|
/**
|
|
4353
|
-
* Region code
|
|
5041
|
+
* Region code for tenant context
|
|
4354
5042
|
*/
|
|
4355
|
-
region: 'cn' | 'us' | 'de';
|
|
5043
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
4356
5044
|
};
|
|
4357
5045
|
type ReportingControllerGetPortfolioTrendsResponse = PortfolioTrendsResponseDto;
|
|
4358
5046
|
type ReportingControllerGenerateSnapshotData = {
|
|
4359
5047
|
/**
|
|
4360
|
-
* Region code
|
|
5048
|
+
* Region code for tenant context
|
|
4361
5049
|
*/
|
|
4362
|
-
region: 'cn' | 'us' | 'de';
|
|
5050
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
4363
5051
|
/**
|
|
4364
5052
|
* Optional date (defaults to today)
|
|
4365
5053
|
*/
|
|
@@ -4368,172 +5056,43 @@ type ReportingControllerGenerateSnapshotData = {
|
|
|
4368
5056
|
type ReportingControllerGenerateSnapshotResponse = GenerateSnapshotResponse;
|
|
4369
5057
|
type ReportingControllerBackfillSnapshotsData = {
|
|
4370
5058
|
/**
|
|
4371
|
-
* Region code
|
|
5059
|
+
* Region code for tenant context
|
|
4372
5060
|
*/
|
|
4373
|
-
region: 'cn' | 'us' | 'de';
|
|
5061
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
4374
5062
|
requestBody: BackfillSnapshotsBody;
|
|
4375
5063
|
};
|
|
4376
5064
|
type ReportingControllerBackfillSnapshotsResponse = BackfillSnapshotsResponse;
|
|
4377
|
-
type
|
|
4378
|
-
/**
|
|
4379
|
-
* Region code (cn, us, de)
|
|
4380
|
-
*/
|
|
4381
|
-
region: 'cn' | 'us' | 'de';
|
|
4382
|
-
};
|
|
4383
|
-
type ApiKeysControllerResponse = unknown;
|
|
5065
|
+
type ApiKeysControllerCreateApiKeyResponse = unknown;
|
|
4384
5066
|
type AuthControllerAccessTokenLoginData = {
|
|
4385
|
-
/**
|
|
4386
|
-
* Region code (cn, us, de)
|
|
4387
|
-
*/
|
|
4388
|
-
region: 'cn' | 'us' | 'de';
|
|
4389
5067
|
requestBody: AnonymousLoginDto;
|
|
4390
5068
|
};
|
|
4391
5069
|
type AuthControllerAccessTokenLoginResponse = unknown;
|
|
5070
|
+
type CacheControllerFlushCacheResponse = unknown;
|
|
4392
5071
|
type ExchangeRateControllerGetExchangeRateData = {
|
|
4393
5072
|
/**
|
|
4394
5073
|
* Date in ISO format (YYYY-MM-DD)
|
|
4395
5074
|
*/
|
|
4396
|
-
dateString: string;
|
|
4397
|
-
/**
|
|
4398
|
-
* Region code (cn, us, de)
|
|
4399
|
-
*/
|
|
4400
|
-
region: 'cn' | 'us' | 'de';
|
|
4401
|
-
/**
|
|
4402
|
-
* Currency pair symbol (e.g., USDCNY, EURUSD)
|
|
4403
|
-
*/
|
|
4404
|
-
symbol: string;
|
|
4405
|
-
};
|
|
4406
|
-
type ExchangeRateControllerGetExchangeRateResponse = unknown;
|
|
4407
|
-
type HealthControllerGetHealthData = {
|
|
4408
|
-
/**
|
|
4409
|
-
* Region code (cn, us, de)
|
|
4410
|
-
*/
|
|
4411
|
-
region: 'cn' | 'us' | 'de';
|
|
4412
|
-
};
|
|
4413
|
-
type HealthControllerGetHealthResponse = unknown;
|
|
4414
|
-
type HealthControllerCheckDatabaseData = {
|
|
4415
|
-
/**
|
|
4416
|
-
* Region code (cn, us, de)
|
|
4417
|
-
*/
|
|
4418
|
-
region: 'cn' | 'us' | 'de';
|
|
4419
|
-
};
|
|
4420
|
-
type HealthControllerCheckDatabaseResponse = unknown;
|
|
4421
|
-
type HealthControllerCheckRedisData = {
|
|
4422
|
-
/**
|
|
4423
|
-
* Region code (cn, us, de)
|
|
4424
|
-
*/
|
|
4425
|
-
region: 'cn' | 'us' | 'de';
|
|
4426
|
-
};
|
|
4427
|
-
type HealthControllerCheckRedisResponse = unknown;
|
|
4428
|
-
type HealthControllerGetCircuitBreakersHealthData = {
|
|
4429
|
-
/**
|
|
4430
|
-
* Region code (cn, us, de)
|
|
4431
|
-
*/
|
|
4432
|
-
region: 'cn' | 'us' | 'de';
|
|
4433
|
-
};
|
|
4434
|
-
type HealthControllerGetCircuitBreakersHealthResponse = unknown;
|
|
4435
|
-
type HealthControllerResetCircuitBreakerData = {
|
|
4436
|
-
/**
|
|
4437
|
-
* Circuit breaker name to reset
|
|
4438
|
-
*/
|
|
4439
|
-
name: string;
|
|
4440
|
-
/**
|
|
4441
|
-
* Region code (cn, us, de)
|
|
4442
|
-
*/
|
|
4443
|
-
region: 'cn' | 'us' | 'de';
|
|
4444
|
-
};
|
|
4445
|
-
type HealthControllerResetCircuitBreakerResponse = unknown;
|
|
4446
|
-
type HealthControllerGetMetricsData = {
|
|
4447
|
-
/**
|
|
4448
|
-
* Region code (cn, us, de)
|
|
4449
|
-
*/
|
|
4450
|
-
region: 'cn' | 'us' | 'de';
|
|
4451
|
-
};
|
|
4452
|
-
type HealthControllerGetMetricsResponse = unknown;
|
|
4453
|
-
type HealthControllerGetHealthOfDataEnhancerData = {
|
|
4454
|
-
/**
|
|
4455
|
-
* Data enhancer name
|
|
4456
|
-
*/
|
|
4457
|
-
name: string;
|
|
4458
|
-
/**
|
|
4459
|
-
* Region code (cn, us, de)
|
|
4460
|
-
*/
|
|
4461
|
-
region: 'cn' | 'us' | 'de';
|
|
4462
|
-
};
|
|
4463
|
-
type HealthControllerGetHealthOfDataEnhancerResponse = unknown;
|
|
4464
|
-
type HealthControllerCheckDataProvidersData = {
|
|
4465
|
-
/**
|
|
4466
|
-
* Region code (cn, us, de)
|
|
4467
|
-
*/
|
|
4468
|
-
region: 'cn' | 'us' | 'de';
|
|
4469
|
-
};
|
|
4470
|
-
type HealthControllerCheckDataProvidersResponse = unknown;
|
|
4471
|
-
type HealthControllerGetHealthOfDataProviderData = {
|
|
4472
|
-
/**
|
|
4473
|
-
* Data source identifier
|
|
4474
|
-
*/
|
|
4475
|
-
dataSource: string;
|
|
4476
|
-
/**
|
|
4477
|
-
* Region code (cn, us, de)
|
|
4478
|
-
*/
|
|
4479
|
-
region: 'cn' | 'us' | 'de';
|
|
4480
|
-
};
|
|
4481
|
-
type HealthControllerGetHealthOfDataProviderResponse = unknown;
|
|
4482
|
-
type InfoControllerGetInfoData = {
|
|
4483
|
-
/**
|
|
4484
|
-
* Region code (cn, us, de)
|
|
4485
|
-
*/
|
|
4486
|
-
region: 'cn' | 'us' | 'de';
|
|
4487
|
-
};
|
|
4488
|
-
type InfoControllerGetInfoResponse = unknown;
|
|
4489
|
-
type LogoControllerGetLogoByDataSourceAndSymbolData = {
|
|
4490
|
-
/**
|
|
4491
|
-
* Data source identifier (e.g., YAHOO, COINGECKO)
|
|
4492
|
-
*/
|
|
4493
|
-
dataSource: string;
|
|
4494
|
-
/**
|
|
4495
|
-
* Region code (cn, us, de)
|
|
4496
|
-
*/
|
|
4497
|
-
region: 'cn' | 'us' | 'de';
|
|
4498
|
-
/**
|
|
4499
|
-
* Asset symbol (e.g., AAPL, BTC)
|
|
4500
|
-
*/
|
|
4501
|
-
symbol: string;
|
|
4502
|
-
};
|
|
4503
|
-
type LogoControllerGetLogoByDataSourceAndSymbolResponse = unknown;
|
|
4504
|
-
type LogoControllerGetLogoByUrlData = {
|
|
4505
|
-
/**
|
|
4506
|
-
* Region code (cn, us, de)
|
|
4507
|
-
*/
|
|
4508
|
-
region: 'cn' | 'us' | 'de';
|
|
4509
|
-
/**
|
|
4510
|
-
* Website URL to fetch favicon from
|
|
4511
|
-
*/
|
|
4512
|
-
url: string;
|
|
4513
|
-
};
|
|
4514
|
-
type LogoControllerGetLogoByUrlResponse = unknown;
|
|
4515
|
-
type MarketDataControllerGetMarketDataBySymbolData = {
|
|
4516
|
-
/**
|
|
4517
|
-
* Data source provider
|
|
4518
|
-
*/
|
|
4519
|
-
dataSource: 'ALPHA_VANTAGE' | 'EOD_HISTORICAL_DATA' | 'FINANCIAL_MODELING_PREP' | 'MANUAL' | 'RAPID_API' | 'YAHOO' | 'COINGECKO' | 'TUSHARE' | 'BLOOMBERG' | 'CSI' | 'STOOQ' | 'TRADING_VIEW';
|
|
4520
|
-
/**
|
|
4521
|
-
* Region code (cn, us, de)
|
|
4522
|
-
*/
|
|
4523
|
-
region: 'cn' | 'us' | 'de';
|
|
5075
|
+
dateString: string;
|
|
4524
5076
|
/**
|
|
4525
|
-
*
|
|
5077
|
+
* Currency pair symbol (e.g., USDCNY, EURUSD)
|
|
4526
5078
|
*/
|
|
4527
5079
|
symbol: string;
|
|
4528
5080
|
};
|
|
4529
|
-
type
|
|
4530
|
-
type
|
|
5081
|
+
type ExchangeRateControllerGetExchangeRateResponse = unknown;
|
|
5082
|
+
type HealthControllerGetHealthResponse = unknown;
|
|
5083
|
+
type HealthControllerCheckDatabaseResponse = unknown;
|
|
5084
|
+
type HealthControllerCheckOpenBbResponse = unknown;
|
|
5085
|
+
type HealthControllerCheckRedisResponse = unknown;
|
|
5086
|
+
type HealthControllerGetCircuitBreakersHealthResponse = unknown;
|
|
5087
|
+
type HealthControllerResetCircuitBreakerData = {
|
|
4531
5088
|
/**
|
|
4532
|
-
*
|
|
5089
|
+
* Circuit breaker name to reset
|
|
4533
5090
|
*/
|
|
4534
|
-
|
|
5091
|
+
name: string;
|
|
4535
5092
|
};
|
|
4536
|
-
type
|
|
5093
|
+
type HealthControllerResetCircuitBreakerResponse = unknown;
|
|
5094
|
+
type HealthControllerGetMetricsResponse = unknown;
|
|
5095
|
+
type InfoControllerGetInfoResponse = unknown;
|
|
4537
5096
|
type $OpenApiTs = {
|
|
4538
5097
|
'/api/v1/{region}/bean/accounts': {
|
|
4539
5098
|
post: {
|
|
@@ -4642,6 +5201,39 @@ type $OpenApiTs = {
|
|
|
4642
5201
|
};
|
|
4643
5202
|
};
|
|
4644
5203
|
};
|
|
5204
|
+
'/api/v1/{region}/bean/account-standards': {
|
|
5205
|
+
get: {
|
|
5206
|
+
req: AccountStandardsControllerGetTemplatesData;
|
|
5207
|
+
res: {
|
|
5208
|
+
/**
|
|
5209
|
+
* Account templates retrieved successfully
|
|
5210
|
+
*/
|
|
5211
|
+
200: AccountStandardListResponseDto;
|
|
5212
|
+
};
|
|
5213
|
+
};
|
|
5214
|
+
};
|
|
5215
|
+
'/api/v1/{region}/bean/account-standards/template-metadata': {
|
|
5216
|
+
get: {
|
|
5217
|
+
req: AccountStandardsControllerGetTemplateMetadataData;
|
|
5218
|
+
res: {
|
|
5219
|
+
/**
|
|
5220
|
+
* Template metadata retrieved successfully
|
|
5221
|
+
*/
|
|
5222
|
+
200: TemplateMetadataResponseDto;
|
|
5223
|
+
};
|
|
5224
|
+
};
|
|
5225
|
+
};
|
|
5226
|
+
'/api/v1/{region}/bean/account-standards/regions': {
|
|
5227
|
+
get: {
|
|
5228
|
+
req: AccountStandardsControllerGetRegionsData;
|
|
5229
|
+
res: {
|
|
5230
|
+
/**
|
|
5231
|
+
* Regions metadata retrieved successfully
|
|
5232
|
+
*/
|
|
5233
|
+
200: RegionsMetadataResponseDto;
|
|
5234
|
+
};
|
|
5235
|
+
};
|
|
5236
|
+
};
|
|
4645
5237
|
'/api/v1/{region}/bean/transactions': {
|
|
4646
5238
|
post: {
|
|
4647
5239
|
req: TransactionControllerCreateData;
|
|
@@ -4675,6 +5267,10 @@ type $OpenApiTs = {
|
|
|
4675
5267
|
* Transaction list
|
|
4676
5268
|
*/
|
|
4677
5269
|
200: TransactionListResponseDto;
|
|
5270
|
+
/**
|
|
5271
|
+
* Validation failed
|
|
5272
|
+
*/
|
|
5273
|
+
400: ApiProblemResponseDto;
|
|
4678
5274
|
/**
|
|
4679
5275
|
* Authentication required
|
|
4680
5276
|
*/
|
|
@@ -4684,9 +5280,20 @@ type $OpenApiTs = {
|
|
|
4684
5280
|
};
|
|
4685
5281
|
'/api/v1/{region}/bean/transactions/batch': {
|
|
4686
5282
|
post: {
|
|
4687
|
-
req:
|
|
5283
|
+
req: TransactionControllerCreateBatchData;
|
|
4688
5284
|
res: {
|
|
4689
|
-
|
|
5285
|
+
/**
|
|
5286
|
+
* Transactions processed
|
|
5287
|
+
*/
|
|
5288
|
+
201: BatchTransactionResponseDto;
|
|
5289
|
+
/**
|
|
5290
|
+
* Invalid input
|
|
5291
|
+
*/
|
|
5292
|
+
400: ApiProblemResponseDto;
|
|
5293
|
+
/**
|
|
5294
|
+
* Authentication required
|
|
5295
|
+
*/
|
|
5296
|
+
401: ApiProblemResponseDto;
|
|
4690
5297
|
};
|
|
4691
5298
|
};
|
|
4692
5299
|
};
|
|
@@ -4730,31 +5337,24 @@ type $OpenApiTs = {
|
|
|
4730
5337
|
};
|
|
4731
5338
|
};
|
|
4732
5339
|
delete: {
|
|
4733
|
-
req:
|
|
5340
|
+
req: TransactionControllerDeleteData;
|
|
4734
5341
|
res: {
|
|
5342
|
+
/**
|
|
5343
|
+
* Transaction voided successfully
|
|
5344
|
+
*/
|
|
4735
5345
|
204: void;
|
|
4736
|
-
};
|
|
4737
|
-
};
|
|
4738
|
-
};
|
|
4739
|
-
'/api/v1/{region}/bean/account-standards': {
|
|
4740
|
-
get: {
|
|
4741
|
-
req: AccountStandardsControllerGetTemplatesData;
|
|
4742
|
-
res: {
|
|
4743
5346
|
/**
|
|
4744
|
-
*
|
|
5347
|
+
* Transaction already voided
|
|
4745
5348
|
*/
|
|
4746
|
-
|
|
4747
|
-
};
|
|
4748
|
-
};
|
|
4749
|
-
};
|
|
4750
|
-
'/api/v1/{region}/bean/account-standards/regions': {
|
|
4751
|
-
get: {
|
|
4752
|
-
req: AccountStandardsControllerGetRegionsData;
|
|
4753
|
-
res: {
|
|
5349
|
+
400: ApiProblemResponseDto;
|
|
4754
5350
|
/**
|
|
4755
|
-
*
|
|
5351
|
+
* Authentication required
|
|
4756
5352
|
*/
|
|
4757
|
-
|
|
5353
|
+
401: ApiProblemResponseDto;
|
|
5354
|
+
/**
|
|
5355
|
+
* Transaction not found
|
|
5356
|
+
*/
|
|
5357
|
+
404: ApiProblemResponseDto;
|
|
4758
5358
|
};
|
|
4759
5359
|
};
|
|
4760
5360
|
};
|
|
@@ -4822,33 +5422,44 @@ type $OpenApiTs = {
|
|
|
4822
5422
|
};
|
|
4823
5423
|
'/api/v1/{region}/bean/reviews/{id}/resolve': {
|
|
4824
5424
|
post: {
|
|
4825
|
-
req:
|
|
5425
|
+
req: ReviewControllerResolveData;
|
|
4826
5426
|
res: {
|
|
4827
|
-
|
|
5427
|
+
200: ResolveResultDto;
|
|
4828
5428
|
};
|
|
4829
5429
|
};
|
|
4830
5430
|
};
|
|
4831
5431
|
'/api/v1/{region}/bean/reviews/{id}/undo': {
|
|
4832
5432
|
post: {
|
|
4833
|
-
req:
|
|
5433
|
+
req: ReviewControllerUndoData;
|
|
4834
5434
|
res: {
|
|
4835
|
-
|
|
5435
|
+
200: UndoResultDto;
|
|
4836
5436
|
};
|
|
4837
5437
|
};
|
|
4838
5438
|
};
|
|
4839
5439
|
'/api/v1/{region}/bean/reviews/batch-resolve': {
|
|
4840
5440
|
post: {
|
|
4841
|
-
req:
|
|
5441
|
+
req: ReviewControllerBatchResolveData;
|
|
4842
5442
|
res: {
|
|
4843
|
-
|
|
5443
|
+
200: BatchResolveResultDto;
|
|
4844
5444
|
};
|
|
4845
5445
|
};
|
|
4846
5446
|
};
|
|
4847
5447
|
'/api/v1/bean/payees': {
|
|
4848
5448
|
post: {
|
|
4849
|
-
req:
|
|
5449
|
+
req: PayeeControllerCreateData;
|
|
4850
5450
|
res: {
|
|
4851
|
-
|
|
5451
|
+
/**
|
|
5452
|
+
* Payee created successfully
|
|
5453
|
+
*/
|
|
5454
|
+
201: PayeeResponseDto;
|
|
5455
|
+
/**
|
|
5456
|
+
* Invalid input data
|
|
5457
|
+
*/
|
|
5458
|
+
400: ApiProblemResponseDto;
|
|
5459
|
+
/**
|
|
5460
|
+
* Payee already exists
|
|
5461
|
+
*/
|
|
5462
|
+
409: ApiProblemResponseDto;
|
|
4852
5463
|
};
|
|
4853
5464
|
};
|
|
4854
5465
|
get: {
|
|
@@ -4902,23 +5513,56 @@ type $OpenApiTs = {
|
|
|
4902
5513
|
};
|
|
4903
5514
|
};
|
|
4904
5515
|
put: {
|
|
4905
|
-
req:
|
|
5516
|
+
req: PayeeControllerUpdateData;
|
|
4906
5517
|
res: {
|
|
4907
|
-
|
|
5518
|
+
/**
|
|
5519
|
+
* Payee updated successfully
|
|
5520
|
+
*/
|
|
5521
|
+
200: PayeeResponseDto;
|
|
5522
|
+
/**
|
|
5523
|
+
* Invalid input data
|
|
5524
|
+
*/
|
|
5525
|
+
400: ApiProblemResponseDto;
|
|
5526
|
+
/**
|
|
5527
|
+
* Payee not found
|
|
5528
|
+
*/
|
|
5529
|
+
404: ApiProblemResponseDto;
|
|
4908
5530
|
};
|
|
4909
5531
|
};
|
|
4910
5532
|
delete: {
|
|
4911
|
-
req:
|
|
5533
|
+
req: PayeeControllerDeleteData;
|
|
4912
5534
|
res: {
|
|
5535
|
+
/**
|
|
5536
|
+
* Payee deleted successfully
|
|
5537
|
+
*/
|
|
4913
5538
|
204: void;
|
|
5539
|
+
/**
|
|
5540
|
+
* Payee not found
|
|
5541
|
+
*/
|
|
5542
|
+
404: ApiProblemResponseDto;
|
|
4914
5543
|
};
|
|
4915
5544
|
};
|
|
4916
5545
|
};
|
|
4917
5546
|
'/api/v1/admin/payee-profiles': {
|
|
4918
5547
|
post: {
|
|
4919
|
-
req:
|
|
5548
|
+
req: PayeeProfileAdminControllerCreateData;
|
|
4920
5549
|
res: {
|
|
4921
|
-
|
|
5550
|
+
/**
|
|
5551
|
+
* Payee profile created successfully
|
|
5552
|
+
*/
|
|
5553
|
+
201: PayeeProfileResponseDto;
|
|
5554
|
+
/**
|
|
5555
|
+
* Validation failed
|
|
5556
|
+
*/
|
|
5557
|
+
400: ApiProblemResponseDto;
|
|
5558
|
+
/**
|
|
5559
|
+
* Admin access required
|
|
5560
|
+
*/
|
|
5561
|
+
403: ApiProblemResponseDto;
|
|
5562
|
+
/**
|
|
5563
|
+
* Payee profile already exists
|
|
5564
|
+
*/
|
|
5565
|
+
409: ApiProblemResponseDto;
|
|
4922
5566
|
};
|
|
4923
5567
|
};
|
|
4924
5568
|
get: {
|
|
@@ -4954,37 +5598,96 @@ type $OpenApiTs = {
|
|
|
4954
5598
|
};
|
|
4955
5599
|
};
|
|
4956
5600
|
put: {
|
|
4957
|
-
req:
|
|
5601
|
+
req: PayeeProfileAdminControllerUpdateData;
|
|
4958
5602
|
res: {
|
|
4959
|
-
|
|
5603
|
+
/**
|
|
5604
|
+
* Payee profile updated successfully
|
|
5605
|
+
*/
|
|
5606
|
+
200: PayeeProfileResponseDto;
|
|
5607
|
+
/**
|
|
5608
|
+
* Admin access required
|
|
5609
|
+
*/
|
|
5610
|
+
403: ApiProblemResponseDto;
|
|
5611
|
+
/**
|
|
5612
|
+
* Payee profile not found
|
|
5613
|
+
*/
|
|
5614
|
+
404: ApiProblemResponseDto;
|
|
4960
5615
|
};
|
|
4961
5616
|
};
|
|
4962
5617
|
delete: {
|
|
4963
|
-
req:
|
|
5618
|
+
req: PayeeProfileAdminControllerDeleteData;
|
|
4964
5619
|
res: {
|
|
5620
|
+
/**
|
|
5621
|
+
* Payee profile deleted successfully
|
|
5622
|
+
*/
|
|
4965
5623
|
204: void;
|
|
5624
|
+
/**
|
|
5625
|
+
* Admin access required
|
|
5626
|
+
*/
|
|
5627
|
+
403: ApiProblemResponseDto;
|
|
5628
|
+
/**
|
|
5629
|
+
* Payee profile not found
|
|
5630
|
+
*/
|
|
5631
|
+
404: ApiProblemResponseDto;
|
|
5632
|
+
/**
|
|
5633
|
+
* Payee profile is in use and cannot be deleted
|
|
5634
|
+
*/
|
|
5635
|
+
409: ApiProblemResponseDto;
|
|
4966
5636
|
};
|
|
4967
5637
|
};
|
|
4968
5638
|
};
|
|
4969
5639
|
'/api/v1/admin/payee-profiles/{id}/verify': {
|
|
4970
5640
|
post: {
|
|
4971
|
-
req:
|
|
5641
|
+
req: PayeeProfileAdminControllerVerifyData;
|
|
4972
5642
|
res: {
|
|
4973
|
-
|
|
5643
|
+
/**
|
|
5644
|
+
* Payee profile verified successfully
|
|
5645
|
+
*/
|
|
5646
|
+
201: PayeeProfileResponseDto;
|
|
5647
|
+
/**
|
|
5648
|
+
* Admin access required
|
|
5649
|
+
*/
|
|
5650
|
+
403: ApiProblemResponseDto;
|
|
5651
|
+
/**
|
|
5652
|
+
* Payee profile not found
|
|
5653
|
+
*/
|
|
5654
|
+
404: ApiProblemResponseDto;
|
|
4974
5655
|
};
|
|
4975
5656
|
};
|
|
4976
5657
|
delete: {
|
|
4977
|
-
req:
|
|
5658
|
+
req: PayeeProfileAdminControllerUnverifyData;
|
|
4978
5659
|
res: {
|
|
4979
|
-
|
|
5660
|
+
/**
|
|
5661
|
+
* Payee profile unverified successfully
|
|
5662
|
+
*/
|
|
5663
|
+
200: PayeeProfileResponseDto;
|
|
5664
|
+
/**
|
|
5665
|
+
* Admin access required
|
|
5666
|
+
*/
|
|
5667
|
+
403: ApiProblemResponseDto;
|
|
5668
|
+
/**
|
|
5669
|
+
* Payee profile not found
|
|
5670
|
+
*/
|
|
5671
|
+
404: ApiProblemResponseDto;
|
|
4980
5672
|
};
|
|
4981
5673
|
};
|
|
4982
5674
|
};
|
|
4983
5675
|
'/api/v1/{region}/bean/commodities': {
|
|
4984
5676
|
post: {
|
|
4985
|
-
req:
|
|
5677
|
+
req: CommodityControllerCreateData;
|
|
4986
5678
|
res: {
|
|
4987
|
-
|
|
5679
|
+
/**
|
|
5680
|
+
* Commodity created successfully
|
|
5681
|
+
*/
|
|
5682
|
+
201: CommodityResponseDto;
|
|
5683
|
+
/**
|
|
5684
|
+
* Invalid input data
|
|
5685
|
+
*/
|
|
5686
|
+
400: ApiProblemResponseDto;
|
|
5687
|
+
/**
|
|
5688
|
+
* Commodity already exists
|
|
5689
|
+
*/
|
|
5690
|
+
409: ApiProblemResponseDto;
|
|
4988
5691
|
};
|
|
4989
5692
|
};
|
|
4990
5693
|
get: {
|
|
@@ -5012,39 +5715,74 @@ type $OpenApiTs = {
|
|
|
5012
5715
|
};
|
|
5013
5716
|
};
|
|
5014
5717
|
put: {
|
|
5015
|
-
req:
|
|
5718
|
+
req: CommodityControllerUpdateData;
|
|
5016
5719
|
res: {
|
|
5017
|
-
|
|
5720
|
+
/**
|
|
5721
|
+
* Commodity updated successfully
|
|
5722
|
+
*/
|
|
5723
|
+
200: CommodityResponseDto;
|
|
5724
|
+
/**
|
|
5725
|
+
* Invalid input data
|
|
5726
|
+
*/
|
|
5727
|
+
400: ApiProblemResponseDto;
|
|
5728
|
+
/**
|
|
5729
|
+
* Commodity not found
|
|
5730
|
+
*/
|
|
5731
|
+
404: ApiProblemResponseDto;
|
|
5018
5732
|
};
|
|
5019
5733
|
};
|
|
5020
5734
|
delete: {
|
|
5021
|
-
req:
|
|
5735
|
+
req: CommodityControllerDeleteData;
|
|
5022
5736
|
res: {
|
|
5737
|
+
/**
|
|
5738
|
+
* Commodity deleted successfully
|
|
5739
|
+
*/
|
|
5023
5740
|
204: void;
|
|
5741
|
+
/**
|
|
5742
|
+
* Commodity not found
|
|
5743
|
+
*/
|
|
5744
|
+
404: ApiProblemResponseDto;
|
|
5024
5745
|
};
|
|
5025
5746
|
};
|
|
5026
5747
|
};
|
|
5027
5748
|
'/api/v1/{region}/bean/commodities/{symbol}/ensure': {
|
|
5028
5749
|
post: {
|
|
5029
|
-
req:
|
|
5750
|
+
req: CommodityControllerGetOrCreateData;
|
|
5030
5751
|
res: {
|
|
5031
|
-
|
|
5752
|
+
/**
|
|
5753
|
+
* Commodity retrieved or created
|
|
5754
|
+
*/
|
|
5755
|
+
200: CommodityResponseDto;
|
|
5032
5756
|
};
|
|
5033
5757
|
};
|
|
5034
5758
|
};
|
|
5035
5759
|
'/api/v1/{region}/bean/commodities/bulk': {
|
|
5036
5760
|
post: {
|
|
5037
|
-
req:
|
|
5761
|
+
req: CommodityControllerBulkCreateData;
|
|
5038
5762
|
res: {
|
|
5039
|
-
|
|
5763
|
+
/**
|
|
5764
|
+
* Commodities created successfully
|
|
5765
|
+
*/
|
|
5766
|
+
201: Array<CommodityResponseDto>;
|
|
5040
5767
|
};
|
|
5041
5768
|
};
|
|
5042
5769
|
};
|
|
5043
5770
|
'/api/v1/{region}/bean/recurring-rules': {
|
|
5044
5771
|
post: {
|
|
5045
|
-
req:
|
|
5772
|
+
req: RecurringRuleControllerCreateData;
|
|
5046
5773
|
res: {
|
|
5047
|
-
|
|
5774
|
+
/**
|
|
5775
|
+
* Rule created successfully
|
|
5776
|
+
*/
|
|
5777
|
+
201: RecurringRuleResponseDto;
|
|
5778
|
+
/**
|
|
5779
|
+
* Invalid input data (e.g., autoCreate without accounts)
|
|
5780
|
+
*/
|
|
5781
|
+
400: unknown;
|
|
5782
|
+
/**
|
|
5783
|
+
* Rule with same name already exists
|
|
5784
|
+
*/
|
|
5785
|
+
409: unknown;
|
|
5048
5786
|
};
|
|
5049
5787
|
};
|
|
5050
5788
|
get: {
|
|
@@ -5059,9 +5797,20 @@ type $OpenApiTs = {
|
|
|
5059
5797
|
};
|
|
5060
5798
|
'/api/v1/{region}/bean/recurring-rules/from-transaction/{transactionId}': {
|
|
5061
5799
|
post: {
|
|
5062
|
-
req:
|
|
5800
|
+
req: RecurringRuleControllerCreateFromTransactionData;
|
|
5063
5801
|
res: {
|
|
5064
|
-
|
|
5802
|
+
/**
|
|
5803
|
+
* Rule created successfully
|
|
5804
|
+
*/
|
|
5805
|
+
201: RecurringRuleResponseDto;
|
|
5806
|
+
/**
|
|
5807
|
+
* Transaction not found
|
|
5808
|
+
*/
|
|
5809
|
+
404: ApiProblemResponseDto;
|
|
5810
|
+
/**
|
|
5811
|
+
* Rule with same name already exists or transaction already linked
|
|
5812
|
+
*/
|
|
5813
|
+
409: ApiProblemResponseDto;
|
|
5065
5814
|
};
|
|
5066
5815
|
};
|
|
5067
5816
|
};
|
|
@@ -5080,15 +5829,33 @@ type $OpenApiTs = {
|
|
|
5080
5829
|
};
|
|
5081
5830
|
};
|
|
5082
5831
|
patch: {
|
|
5083
|
-
req:
|
|
5832
|
+
req: RecurringRuleControllerUpdateData;
|
|
5084
5833
|
res: {
|
|
5085
|
-
|
|
5834
|
+
/**
|
|
5835
|
+
* Rule updated successfully
|
|
5836
|
+
*/
|
|
5837
|
+
200: RecurringRuleResponseDto;
|
|
5838
|
+
/**
|
|
5839
|
+
* Invalid input data
|
|
5840
|
+
*/
|
|
5841
|
+
400: unknown;
|
|
5842
|
+
/**
|
|
5843
|
+
* Rule not found
|
|
5844
|
+
*/
|
|
5845
|
+
404: unknown;
|
|
5086
5846
|
};
|
|
5087
5847
|
};
|
|
5088
5848
|
delete: {
|
|
5089
|
-
req:
|
|
5849
|
+
req: RecurringRuleControllerDeleteData;
|
|
5090
5850
|
res: {
|
|
5851
|
+
/**
|
|
5852
|
+
* Rule deleted successfully
|
|
5853
|
+
*/
|
|
5091
5854
|
204: void;
|
|
5855
|
+
/**
|
|
5856
|
+
* Rule not found
|
|
5857
|
+
*/
|
|
5858
|
+
404: unknown;
|
|
5092
5859
|
};
|
|
5093
5860
|
};
|
|
5094
5861
|
};
|
|
@@ -5136,47 +5903,106 @@ type $OpenApiTs = {
|
|
|
5136
5903
|
/**
|
|
5137
5904
|
* Expected transaction retrieved successfully
|
|
5138
5905
|
*/
|
|
5139
|
-
200: ExpectedTransactionResponseDto;
|
|
5906
|
+
200: ExpectedTransactionResponseDto;
|
|
5907
|
+
/**
|
|
5908
|
+
* Expected transaction not found
|
|
5909
|
+
*/
|
|
5910
|
+
404: unknown;
|
|
5911
|
+
};
|
|
5912
|
+
};
|
|
5913
|
+
};
|
|
5914
|
+
'/api/v1/{region}/bean/expected-transactions/{id}/skip': {
|
|
5915
|
+
post: {
|
|
5916
|
+
req: ExpectedTransactionControllerSkipData;
|
|
5917
|
+
res: {
|
|
5918
|
+
/**
|
|
5919
|
+
* Expected transaction skipped successfully
|
|
5920
|
+
*/
|
|
5921
|
+
200: ExpectedTransactionResponseDto;
|
|
5922
|
+
/**
|
|
5923
|
+
* Cannot skip - not in PENDING status
|
|
5924
|
+
*/
|
|
5925
|
+
400: unknown;
|
|
5140
5926
|
/**
|
|
5141
5927
|
* Expected transaction not found
|
|
5142
5928
|
*/
|
|
5143
5929
|
404: unknown;
|
|
5144
5930
|
};
|
|
5145
5931
|
};
|
|
5146
|
-
};
|
|
5147
|
-
'/api/v1/{region}/bean/expected-transactions/{id}/skip': {
|
|
5148
|
-
post: {
|
|
5149
|
-
req: ExpectedTransactionControllerData;
|
|
5150
|
-
res: {
|
|
5151
|
-
200: unknown;
|
|
5152
|
-
};
|
|
5153
|
-
};
|
|
5154
5932
|
delete: {
|
|
5155
|
-
req:
|
|
5933
|
+
req: ExpectedTransactionControllerUndoSkipData;
|
|
5156
5934
|
res: {
|
|
5157
|
-
|
|
5935
|
+
/**
|
|
5936
|
+
* Skip undone successfully
|
|
5937
|
+
*/
|
|
5938
|
+
200: ExpectedTransactionResponseDto;
|
|
5939
|
+
/**
|
|
5940
|
+
* Cannot undo - not in SKIPPED status
|
|
5941
|
+
*/
|
|
5942
|
+
400: unknown;
|
|
5943
|
+
/**
|
|
5944
|
+
* Expected transaction not found
|
|
5945
|
+
*/
|
|
5946
|
+
404: unknown;
|
|
5158
5947
|
};
|
|
5159
5948
|
};
|
|
5160
5949
|
};
|
|
5161
5950
|
'/api/v1/{region}/bean/expected-transactions/{id}/match': {
|
|
5162
5951
|
post: {
|
|
5163
|
-
req:
|
|
5952
|
+
req: ExpectedTransactionControllerConfirmMatchData;
|
|
5164
5953
|
res: {
|
|
5954
|
+
/**
|
|
5955
|
+
* Match confirmed successfully
|
|
5956
|
+
*/
|
|
5165
5957
|
200: unknown;
|
|
5958
|
+
/**
|
|
5959
|
+
* Cannot match - not in PENDING status
|
|
5960
|
+
*/
|
|
5961
|
+
400: unknown;
|
|
5962
|
+
/**
|
|
5963
|
+
* Expected or actual transaction not found
|
|
5964
|
+
*/
|
|
5965
|
+
404: unknown;
|
|
5966
|
+
/**
|
|
5967
|
+
* Actual transaction already matched to another rule
|
|
5968
|
+
*/
|
|
5969
|
+
409: unknown;
|
|
5166
5970
|
};
|
|
5167
5971
|
};
|
|
5168
5972
|
delete: {
|
|
5169
|
-
req:
|
|
5973
|
+
req: ExpectedTransactionControllerUnmatchData;
|
|
5170
5974
|
res: {
|
|
5975
|
+
/**
|
|
5976
|
+
* Match removed successfully
|
|
5977
|
+
*/
|
|
5171
5978
|
200: unknown;
|
|
5979
|
+
/**
|
|
5980
|
+
* Cannot unmatch - not in COMPLETED status
|
|
5981
|
+
*/
|
|
5982
|
+
400: unknown;
|
|
5983
|
+
/**
|
|
5984
|
+
* Expected transaction not found
|
|
5985
|
+
*/
|
|
5986
|
+
404: unknown;
|
|
5172
5987
|
};
|
|
5173
5988
|
};
|
|
5174
5989
|
};
|
|
5175
5990
|
'/api/v1/{region}/bean/expected-transactions/{id}/enter': {
|
|
5176
5991
|
post: {
|
|
5177
|
-
req:
|
|
5992
|
+
req: ExpectedTransactionControllerEnterNowData;
|
|
5178
5993
|
res: {
|
|
5994
|
+
/**
|
|
5995
|
+
* Transaction created successfully
|
|
5996
|
+
*/
|
|
5179
5997
|
201: unknown;
|
|
5998
|
+
/**
|
|
5999
|
+
* Cannot enter - not in PENDING status or missing accounts
|
|
6000
|
+
*/
|
|
6001
|
+
400: unknown;
|
|
6002
|
+
/**
|
|
6003
|
+
* Expected transaction or accounts not found
|
|
6004
|
+
*/
|
|
6005
|
+
404: unknown;
|
|
5180
6006
|
};
|
|
5181
6007
|
};
|
|
5182
6008
|
};
|
|
@@ -5193,9 +6019,24 @@ type $OpenApiTs = {
|
|
|
5193
6019
|
};
|
|
5194
6020
|
'/api/v1/{region}/bean/transaction-rules': {
|
|
5195
6021
|
post: {
|
|
5196
|
-
req:
|
|
6022
|
+
req: TransactionRuleControllerCreateData;
|
|
5197
6023
|
res: {
|
|
5198
|
-
|
|
6024
|
+
/**
|
|
6025
|
+
* Rule updated successfully (upsert mode)
|
|
6026
|
+
*/
|
|
6027
|
+
200: TransactionRuleResponseDto;
|
|
6028
|
+
/**
|
|
6029
|
+
* Validation failed
|
|
6030
|
+
*/
|
|
6031
|
+
400: ApiProblemResponseDto;
|
|
6032
|
+
/**
|
|
6033
|
+
* Unauthorized
|
|
6034
|
+
*/
|
|
6035
|
+
401: ApiProblemResponseDto;
|
|
6036
|
+
/**
|
|
6037
|
+
* Resource conflict - another process is updating this rule
|
|
6038
|
+
*/
|
|
6039
|
+
409: ApiProblemResponseDto;
|
|
5199
6040
|
};
|
|
5200
6041
|
};
|
|
5201
6042
|
get: {
|
|
@@ -5220,6 +6061,10 @@ type $OpenApiTs = {
|
|
|
5220
6061
|
* Validation result
|
|
5221
6062
|
*/
|
|
5222
6063
|
200: ValidateRuleResponseDto;
|
|
6064
|
+
/**
|
|
6065
|
+
* Validation failed
|
|
6066
|
+
*/
|
|
6067
|
+
400: ApiProblemResponseDto;
|
|
5223
6068
|
/**
|
|
5224
6069
|
* Unauthorized
|
|
5225
6070
|
*/
|
|
@@ -5229,9 +6074,20 @@ type $OpenApiTs = {
|
|
|
5229
6074
|
};
|
|
5230
6075
|
'/api/v1/{region}/bean/transaction-rules/bulk': {
|
|
5231
6076
|
post: {
|
|
5232
|
-
req:
|
|
6077
|
+
req: TransactionRuleControllerBulkCreateData;
|
|
5233
6078
|
res: {
|
|
5234
|
-
|
|
6079
|
+
/**
|
|
6080
|
+
* Bulk create completed
|
|
6081
|
+
*/
|
|
6082
|
+
201: BulkCreateRulesResponseDto;
|
|
6083
|
+
/**
|
|
6084
|
+
* Invalid bulk create data
|
|
6085
|
+
*/
|
|
6086
|
+
400: ApiProblemResponseDto;
|
|
6087
|
+
/**
|
|
6088
|
+
* Unauthorized
|
|
6089
|
+
*/
|
|
6090
|
+
401: ApiProblemResponseDto;
|
|
5235
6091
|
};
|
|
5236
6092
|
};
|
|
5237
6093
|
};
|
|
@@ -5292,15 +6148,57 @@ type $OpenApiTs = {
|
|
|
5292
6148
|
};
|
|
5293
6149
|
};
|
|
5294
6150
|
put: {
|
|
5295
|
-
req:
|
|
6151
|
+
req: TransactionRuleControllerUpdateData;
|
|
5296
6152
|
res: {
|
|
5297
|
-
|
|
6153
|
+
/**
|
|
6154
|
+
* Rule updated successfully
|
|
6155
|
+
*/
|
|
6156
|
+
200: TransactionRuleResponseDto;
|
|
6157
|
+
/**
|
|
6158
|
+
* Validation failed
|
|
6159
|
+
*/
|
|
6160
|
+
400: ApiProblemResponseDto;
|
|
6161
|
+
/**
|
|
6162
|
+
* Unauthorized
|
|
6163
|
+
*/
|
|
6164
|
+
401: ApiProblemResponseDto;
|
|
6165
|
+
/**
|
|
6166
|
+
* Forbidden - not owner of rule
|
|
6167
|
+
*/
|
|
6168
|
+
403: ApiProblemResponseDto;
|
|
6169
|
+
/**
|
|
6170
|
+
* Rule not found
|
|
6171
|
+
*/
|
|
6172
|
+
404: ApiProblemResponseDto;
|
|
6173
|
+
/**
|
|
6174
|
+
* Resource conflict - rule is being modified by another process
|
|
6175
|
+
*/
|
|
6176
|
+
409: ApiProblemResponseDto;
|
|
5298
6177
|
};
|
|
5299
6178
|
};
|
|
5300
6179
|
delete: {
|
|
5301
|
-
req:
|
|
6180
|
+
req: TransactionRuleControllerDeleteData;
|
|
5302
6181
|
res: {
|
|
6182
|
+
/**
|
|
6183
|
+
* Rule deleted successfully
|
|
6184
|
+
*/
|
|
5303
6185
|
204: void;
|
|
6186
|
+
/**
|
|
6187
|
+
* Unauthorized
|
|
6188
|
+
*/
|
|
6189
|
+
401: ApiProblemResponseDto;
|
|
6190
|
+
/**
|
|
6191
|
+
* Forbidden - not owner of rule
|
|
6192
|
+
*/
|
|
6193
|
+
403: ApiProblemResponseDto;
|
|
6194
|
+
/**
|
|
6195
|
+
* Rule not found
|
|
6196
|
+
*/
|
|
6197
|
+
404: ApiProblemResponseDto;
|
|
6198
|
+
/**
|
|
6199
|
+
* Resource conflict - rule is being modified by another process
|
|
6200
|
+
*/
|
|
6201
|
+
409: ApiProblemResponseDto;
|
|
5304
6202
|
};
|
|
5305
6203
|
};
|
|
5306
6204
|
};
|
|
@@ -5426,7 +6324,6 @@ type $OpenApiTs = {
|
|
|
5426
6324
|
};
|
|
5427
6325
|
'/api/v1/users/asset-liability-summary': {
|
|
5428
6326
|
get: {
|
|
5429
|
-
req: UserControllerGetAssetLiabilitySummaryData;
|
|
5430
6327
|
res: {
|
|
5431
6328
|
/**
|
|
5432
6329
|
* Summary retrieved successfully
|
|
@@ -5437,7 +6334,6 @@ type $OpenApiTs = {
|
|
|
5437
6334
|
};
|
|
5438
6335
|
'/api/v1/admin/properties': {
|
|
5439
6336
|
get: {
|
|
5440
|
-
req: PropertyControllerGetAllData;
|
|
5441
6337
|
res: {
|
|
5442
6338
|
/**
|
|
5443
6339
|
* Properties retrieved successfully
|
|
@@ -5477,15 +6373,48 @@ type $OpenApiTs = {
|
|
|
5477
6373
|
};
|
|
5478
6374
|
};
|
|
5479
6375
|
put: {
|
|
5480
|
-
req:
|
|
6376
|
+
req: PropertyControllerUpdateData;
|
|
5481
6377
|
res: {
|
|
6378
|
+
/**
|
|
6379
|
+
* Property updated successfully
|
|
6380
|
+
*/
|
|
5482
6381
|
200: unknown;
|
|
6382
|
+
/**
|
|
6383
|
+
* Unauthorized
|
|
6384
|
+
*/
|
|
6385
|
+
401: unknown;
|
|
6386
|
+
/**
|
|
6387
|
+
* Forbidden - insufficient permissions
|
|
6388
|
+
*/
|
|
6389
|
+
403: unknown;
|
|
5483
6390
|
};
|
|
5484
6391
|
};
|
|
5485
6392
|
delete: {
|
|
5486
|
-
req:
|
|
6393
|
+
req: PropertyControllerDeleteData;
|
|
5487
6394
|
res: {
|
|
6395
|
+
/**
|
|
6396
|
+
* Property deleted successfully
|
|
6397
|
+
*/
|
|
5488
6398
|
204: void;
|
|
6399
|
+
/**
|
|
6400
|
+
* Unauthorized
|
|
6401
|
+
*/
|
|
6402
|
+
401: unknown;
|
|
6403
|
+
/**
|
|
6404
|
+
* Forbidden - insufficient permissions
|
|
6405
|
+
*/
|
|
6406
|
+
403: unknown;
|
|
6407
|
+
/**
|
|
6408
|
+
* Property not found
|
|
6409
|
+
*/
|
|
6410
|
+
404: unknown;
|
|
6411
|
+
};
|
|
6412
|
+
};
|
|
6413
|
+
};
|
|
6414
|
+
'/api/v1/{region}/bean/export/beancount': {
|
|
6415
|
+
get: {
|
|
6416
|
+
res: {
|
|
6417
|
+
200: unknown;
|
|
5489
6418
|
};
|
|
5490
6419
|
};
|
|
5491
6420
|
};
|
|
@@ -5558,6 +6487,29 @@ type $OpenApiTs = {
|
|
|
5558
6487
|
};
|
|
5559
6488
|
};
|
|
5560
6489
|
};
|
|
6490
|
+
'/api/v1/{region}/bean/import/beancount': {
|
|
6491
|
+
post: {
|
|
6492
|
+
req: FileImportControllerImportBeancountData;
|
|
6493
|
+
res: {
|
|
6494
|
+
/**
|
|
6495
|
+
* Beancount file imported successfully
|
|
6496
|
+
*/
|
|
6497
|
+
200: {
|
|
6498
|
+
imported?: number;
|
|
6499
|
+
skipped?: number;
|
|
6500
|
+
failed?: number;
|
|
6501
|
+
accountsCreated?: number;
|
|
6502
|
+
errors?: Array<{
|
|
6503
|
+
[key: string]: unknown;
|
|
6504
|
+
}>;
|
|
6505
|
+
};
|
|
6506
|
+
/**
|
|
6507
|
+
* Bad request - invalid file or no file uploaded
|
|
6508
|
+
*/
|
|
6509
|
+
400: ApiProblemResponseDto;
|
|
6510
|
+
};
|
|
6511
|
+
};
|
|
6512
|
+
};
|
|
5561
6513
|
'/api/v1/{region}/bean/import/config/{importerId}': {
|
|
5562
6514
|
get: {
|
|
5563
6515
|
req: ImporterConfigControllerGetConfigData;
|
|
@@ -5577,228 +6529,222 @@ type $OpenApiTs = {
|
|
|
5577
6529
|
};
|
|
5578
6530
|
};
|
|
5579
6531
|
put: {
|
|
5580
|
-
req:
|
|
6532
|
+
req: ImporterConfigControllerUpdateConfigData;
|
|
5581
6533
|
res: {
|
|
5582
|
-
|
|
6534
|
+
/**
|
|
6535
|
+
* Configuration updated successfully
|
|
6536
|
+
*/
|
|
6537
|
+
200: ImporterConfigDto;
|
|
6538
|
+
/**
|
|
6539
|
+
* Invalid input - Validation failed
|
|
6540
|
+
*/
|
|
6541
|
+
400: ApiProblemResponseDto;
|
|
6542
|
+
/**
|
|
6543
|
+
* Configuration not found
|
|
6544
|
+
*/
|
|
6545
|
+
404: ApiProblemResponseDto;
|
|
5583
6546
|
};
|
|
5584
6547
|
};
|
|
5585
6548
|
};
|
|
5586
6549
|
'/api/v1/{region}/bean/import/config/{importerId}/reset': {
|
|
5587
6550
|
post: {
|
|
5588
|
-
req:
|
|
6551
|
+
req: ImporterConfigControllerResetConfigData;
|
|
5589
6552
|
res: {
|
|
5590
|
-
|
|
6553
|
+
/**
|
|
6554
|
+
* Configuration reset successfully
|
|
6555
|
+
*/
|
|
6556
|
+
200: ImporterConfigDto;
|
|
6557
|
+
/**
|
|
6558
|
+
* Invalid input - Unsupported importer
|
|
6559
|
+
*/
|
|
6560
|
+
400: ApiProblemResponseDto;
|
|
5591
6561
|
};
|
|
5592
6562
|
};
|
|
5593
6563
|
};
|
|
5594
|
-
'/api/v1/
|
|
5595
|
-
|
|
5596
|
-
req: ProviderSyncControllerSyncData;
|
|
6564
|
+
'/api/v1/bean/platforms': {
|
|
6565
|
+
get: {
|
|
5597
6566
|
res: {
|
|
5598
6567
|
/**
|
|
5599
|
-
*
|
|
5600
|
-
*/
|
|
5601
|
-
200: ProviderSyncResponseDto;
|
|
5602
|
-
/**
|
|
5603
|
-
* Invalid request data
|
|
6568
|
+
* List of platforms with binding and account counts
|
|
5604
6569
|
*/
|
|
5605
|
-
|
|
6570
|
+
200: unknown;
|
|
6571
|
+
};
|
|
6572
|
+
};
|
|
6573
|
+
post: {
|
|
6574
|
+
req: PlatformControllerCreateData;
|
|
6575
|
+
res: {
|
|
5606
6576
|
/**
|
|
5607
|
-
*
|
|
6577
|
+
* Platform created successfully
|
|
5608
6578
|
*/
|
|
5609
|
-
|
|
6579
|
+
201: unknown;
|
|
5610
6580
|
/**
|
|
5611
|
-
*
|
|
6581
|
+
* Platform already exists
|
|
5612
6582
|
*/
|
|
5613
|
-
|
|
6583
|
+
409: unknown;
|
|
5614
6584
|
};
|
|
5615
6585
|
};
|
|
5616
6586
|
};
|
|
5617
|
-
'/api/v1/
|
|
6587
|
+
'/api/v1/bean/platforms/list': {
|
|
5618
6588
|
get: {
|
|
5619
|
-
req: ProviderSyncControllerGetSupportedProvidersData;
|
|
5620
6589
|
res: {
|
|
5621
6590
|
/**
|
|
5622
|
-
* List of
|
|
5623
|
-
*/
|
|
5624
|
-
200: SupportedProvidersResponseDto;
|
|
5625
|
-
/**
|
|
5626
|
-
* Missing or invalid authentication
|
|
6591
|
+
* List of platforms with user binding status
|
|
5627
6592
|
*/
|
|
5628
|
-
|
|
6593
|
+
200: unknown;
|
|
5629
6594
|
};
|
|
5630
6595
|
};
|
|
5631
6596
|
};
|
|
5632
|
-
'/api/v1/
|
|
6597
|
+
'/api/v1/bean/platforms/match': {
|
|
5633
6598
|
get: {
|
|
5634
|
-
req:
|
|
6599
|
+
req: PlatformControllerMatchPlatformsData;
|
|
5635
6600
|
res: {
|
|
5636
6601
|
/**
|
|
5637
|
-
*
|
|
6602
|
+
* List of matching platforms with suggested segment names
|
|
5638
6603
|
*/
|
|
5639
6604
|
200: unknown;
|
|
5640
|
-
/**
|
|
5641
|
-
* Missing or invalid authentication
|
|
5642
|
-
*/
|
|
5643
|
-
401: unknown;
|
|
5644
6605
|
};
|
|
5645
6606
|
};
|
|
5646
6607
|
};
|
|
5647
|
-
'/api/v1/
|
|
5648
|
-
|
|
5649
|
-
req:
|
|
6608
|
+
'/api/v1/bean/platforms/{id}': {
|
|
6609
|
+
put: {
|
|
6610
|
+
req: PlatformControllerUpdateData;
|
|
5650
6611
|
res: {
|
|
5651
6612
|
/**
|
|
5652
|
-
*
|
|
6613
|
+
* Platform updated successfully
|
|
5653
6614
|
*/
|
|
5654
|
-
200:
|
|
6615
|
+
200: unknown;
|
|
5655
6616
|
/**
|
|
5656
|
-
*
|
|
6617
|
+
* Platform not found
|
|
5657
6618
|
*/
|
|
5658
|
-
|
|
6619
|
+
404: unknown;
|
|
6620
|
+
};
|
|
6621
|
+
};
|
|
6622
|
+
delete: {
|
|
6623
|
+
req: PlatformControllerDeleteData;
|
|
6624
|
+
res: {
|
|
5659
6625
|
/**
|
|
5660
|
-
*
|
|
6626
|
+
* Platform deleted successfully
|
|
5661
6627
|
*/
|
|
5662
|
-
|
|
6628
|
+
204: void;
|
|
6629
|
+
/**
|
|
6630
|
+
* Platform not found
|
|
6631
|
+
*/
|
|
6632
|
+
404: unknown;
|
|
5663
6633
|
};
|
|
5664
6634
|
};
|
|
5665
6635
|
};
|
|
5666
|
-
'/api/v1/{region}/bean/
|
|
5667
|
-
|
|
5668
|
-
req:
|
|
6636
|
+
'/api/v1/{region}/bean/import/provider/{providerName}/sync': {
|
|
6637
|
+
post: {
|
|
6638
|
+
req: ProviderSyncControllerSyncData;
|
|
5669
6639
|
res: {
|
|
5670
6640
|
/**
|
|
5671
|
-
*
|
|
6641
|
+
* Sync completed successfully
|
|
5672
6642
|
*/
|
|
5673
|
-
|
|
6643
|
+
200: ProviderSyncResponseDto;
|
|
5674
6644
|
/**
|
|
5675
|
-
*
|
|
6645
|
+
* Invalid request data
|
|
6646
|
+
*/
|
|
6647
|
+
400: unknown;
|
|
6648
|
+
/**
|
|
6649
|
+
* Missing or invalid authentication
|
|
5676
6650
|
*/
|
|
5677
6651
|
401: unknown;
|
|
6652
|
+
/**
|
|
6653
|
+
* Provider not supported
|
|
6654
|
+
*/
|
|
6655
|
+
404: unknown;
|
|
5678
6656
|
};
|
|
5679
6657
|
};
|
|
6658
|
+
};
|
|
6659
|
+
'/api/v1/{region}/bean/import/provider/supported': {
|
|
5680
6660
|
get: {
|
|
5681
|
-
req:
|
|
6661
|
+
req: ProviderSyncControllerGetSupportedProvidersData;
|
|
5682
6662
|
res: {
|
|
5683
6663
|
/**
|
|
5684
|
-
*
|
|
6664
|
+
* List of supported providers
|
|
5685
6665
|
*/
|
|
5686
|
-
200:
|
|
6666
|
+
200: SupportedProvidersResponseDto;
|
|
5687
6667
|
/**
|
|
5688
|
-
*
|
|
6668
|
+
* Missing or invalid authentication
|
|
5689
6669
|
*/
|
|
5690
6670
|
401: unknown;
|
|
5691
6671
|
};
|
|
5692
6672
|
};
|
|
5693
6673
|
};
|
|
5694
|
-
'/api/v1/bean/
|
|
6674
|
+
'/api/v1/{region}/bean/import/provider/{providerName}/supported': {
|
|
5695
6675
|
get: {
|
|
5696
|
-
req:
|
|
6676
|
+
req: ProviderSyncControllerIsProviderSupportedData;
|
|
5697
6677
|
res: {
|
|
5698
6678
|
/**
|
|
5699
|
-
*
|
|
6679
|
+
* Provider support status
|
|
5700
6680
|
*/
|
|
5701
6681
|
200: unknown;
|
|
5702
|
-
};
|
|
5703
|
-
};
|
|
5704
|
-
post: {
|
|
5705
|
-
req: PlatformControllerData;
|
|
5706
|
-
res: {
|
|
5707
|
-
201: unknown;
|
|
5708
|
-
};
|
|
5709
|
-
};
|
|
5710
|
-
};
|
|
5711
|
-
'/api/v1/bean/platforms/list': {
|
|
5712
|
-
get: {
|
|
5713
|
-
req: PlatformControllerGetPlatformListData;
|
|
5714
|
-
res: {
|
|
5715
6682
|
/**
|
|
5716
|
-
*
|
|
6683
|
+
* Missing or invalid authentication
|
|
5717
6684
|
*/
|
|
5718
|
-
|
|
5719
|
-
};
|
|
5720
|
-
};
|
|
5721
|
-
};
|
|
5722
|
-
'/api/v1/bean/platforms/{id}': {
|
|
5723
|
-
put: {
|
|
5724
|
-
req: PlatformController1Data;
|
|
5725
|
-
res: {
|
|
5726
|
-
200: unknown;
|
|
5727
|
-
};
|
|
5728
|
-
};
|
|
5729
|
-
delete: {
|
|
5730
|
-
req: PlatformController2Data;
|
|
5731
|
-
res: {
|
|
5732
|
-
204: void;
|
|
6685
|
+
401: unknown;
|
|
5733
6686
|
};
|
|
5734
6687
|
};
|
|
5735
6688
|
};
|
|
5736
|
-
'/api/v1/
|
|
5737
|
-
|
|
5738
|
-
req:
|
|
6689
|
+
'/api/v1/{region}/bean/import/parser-telemetry': {
|
|
6690
|
+
post: {
|
|
6691
|
+
req: TelemetryControllerReportTelemetryData;
|
|
5739
6692
|
res: {
|
|
5740
6693
|
/**
|
|
5741
|
-
*
|
|
6694
|
+
* Telemetry report received
|
|
5742
6695
|
*/
|
|
5743
6696
|
200: unknown;
|
|
5744
6697
|
/**
|
|
5745
|
-
*
|
|
6698
|
+
* Unauthorized
|
|
5746
6699
|
*/
|
|
5747
|
-
|
|
6700
|
+
401: unknown;
|
|
5748
6701
|
};
|
|
5749
6702
|
};
|
|
5750
6703
|
};
|
|
5751
|
-
'/api/v1/
|
|
5752
|
-
|
|
5753
|
-
req:
|
|
6704
|
+
'/api/v1/{region}/bean/nlp/process': {
|
|
6705
|
+
post: {
|
|
6706
|
+
req: NlpControllerProcessNaturalLanguageData;
|
|
5754
6707
|
res: {
|
|
5755
6708
|
/**
|
|
5756
|
-
*
|
|
6709
|
+
* NLP processing result - either created transaction or asking for more info
|
|
5757
6710
|
*/
|
|
5758
|
-
200:
|
|
6711
|
+
200: NlpResponseDto;
|
|
5759
6712
|
/**
|
|
5760
|
-
* Invalid
|
|
6713
|
+
* Invalid input
|
|
5761
6714
|
*/
|
|
5762
6715
|
400: unknown;
|
|
5763
6716
|
/**
|
|
5764
|
-
*
|
|
6717
|
+
* Unauthorized
|
|
5765
6718
|
*/
|
|
5766
|
-
|
|
6719
|
+
401: unknown;
|
|
5767
6720
|
};
|
|
5768
6721
|
};
|
|
5769
6722
|
};
|
|
5770
|
-
'/api/v1/
|
|
5771
|
-
|
|
5772
|
-
req:
|
|
6723
|
+
'/api/v1/{region}/bean/nlp/session': {
|
|
6724
|
+
delete: {
|
|
6725
|
+
req: NlpControllerClearSessionData;
|
|
5773
6726
|
res: {
|
|
5774
6727
|
/**
|
|
5775
|
-
*
|
|
5776
|
-
*/
|
|
5777
|
-
200: unknown;
|
|
5778
|
-
/**
|
|
5779
|
-
* Invalid date format
|
|
6728
|
+
* Session cleared successfully
|
|
5780
6729
|
*/
|
|
5781
|
-
|
|
6730
|
+
204: void;
|
|
5782
6731
|
/**
|
|
5783
|
-
*
|
|
6732
|
+
* Unauthorized
|
|
5784
6733
|
*/
|
|
5785
|
-
|
|
6734
|
+
401: unknown;
|
|
5786
6735
|
};
|
|
5787
6736
|
};
|
|
5788
|
-
|
|
5789
|
-
|
|
5790
|
-
put: {
|
|
5791
|
-
req: SymbolControllerData;
|
|
6737
|
+
get: {
|
|
6738
|
+
req: NlpControllerGetSessionData;
|
|
5792
6739
|
res: {
|
|
6740
|
+
/**
|
|
6741
|
+
* Current session state (or null if no active session)
|
|
6742
|
+
*/
|
|
5793
6743
|
200: unknown;
|
|
5794
|
-
|
|
5795
|
-
|
|
5796
|
-
|
|
5797
|
-
|
|
5798
|
-
post: {
|
|
5799
|
-
req: CacheControllerFlushCacheData;
|
|
5800
|
-
res: {
|
|
5801
|
-
201: unknown;
|
|
6744
|
+
/**
|
|
6745
|
+
* Unauthorized
|
|
6746
|
+
*/
|
|
6747
|
+
401: unknown;
|
|
5802
6748
|
};
|
|
5803
6749
|
};
|
|
5804
6750
|
};
|
|
@@ -5910,9 +6856,15 @@ type $OpenApiTs = {
|
|
|
5910
6856
|
};
|
|
5911
6857
|
'/api/v1/auth/api-keys': {
|
|
5912
6858
|
post: {
|
|
5913
|
-
req: ApiKeysControllerData;
|
|
5914
6859
|
res: {
|
|
6860
|
+
/**
|
|
6861
|
+
* API key created successfully
|
|
6862
|
+
*/
|
|
5915
6863
|
201: unknown;
|
|
6864
|
+
/**
|
|
6865
|
+
* Insufficient permissions to create API key
|
|
6866
|
+
*/
|
|
6867
|
+
403: unknown;
|
|
5916
6868
|
};
|
|
5917
6869
|
};
|
|
5918
6870
|
};
|
|
@@ -5931,6 +6883,13 @@ type $OpenApiTs = {
|
|
|
5931
6883
|
};
|
|
5932
6884
|
};
|
|
5933
6885
|
};
|
|
6886
|
+
'/api/v1/cache/flush': {
|
|
6887
|
+
post: {
|
|
6888
|
+
res: {
|
|
6889
|
+
201: unknown;
|
|
6890
|
+
};
|
|
6891
|
+
};
|
|
6892
|
+
};
|
|
5934
6893
|
'/api/v1/market/exchange-rates/{symbol}/{dateString}': {
|
|
5935
6894
|
get: {
|
|
5936
6895
|
req: ExchangeRateControllerGetExchangeRateData;
|
|
@@ -5948,7 +6907,6 @@ type $OpenApiTs = {
|
|
|
5948
6907
|
};
|
|
5949
6908
|
'/api/v1/health': {
|
|
5950
6909
|
get: {
|
|
5951
|
-
req: HealthControllerGetHealthData;
|
|
5952
6910
|
res: {
|
|
5953
6911
|
/**
|
|
5954
6912
|
* Service is healthy
|
|
@@ -5963,7 +6921,6 @@ type $OpenApiTs = {
|
|
|
5963
6921
|
};
|
|
5964
6922
|
'/api/v1/health/database': {
|
|
5965
6923
|
get: {
|
|
5966
|
-
req: HealthControllerCheckDatabaseData;
|
|
5967
6924
|
res: {
|
|
5968
6925
|
/**
|
|
5969
6926
|
* Database is healthy
|
|
@@ -5976,9 +6933,22 @@ type $OpenApiTs = {
|
|
|
5976
6933
|
};
|
|
5977
6934
|
};
|
|
5978
6935
|
};
|
|
6936
|
+
'/api/v1/health/openbb': {
|
|
6937
|
+
get: {
|
|
6938
|
+
res: {
|
|
6939
|
+
/**
|
|
6940
|
+
* OpenBB status
|
|
6941
|
+
*/
|
|
6942
|
+
200: unknown;
|
|
6943
|
+
/**
|
|
6944
|
+
* OpenBB unavailable
|
|
6945
|
+
*/
|
|
6946
|
+
503: unknown;
|
|
6947
|
+
};
|
|
6948
|
+
};
|
|
6949
|
+
};
|
|
5979
6950
|
'/api/v1/health/redis': {
|
|
5980
6951
|
get: {
|
|
5981
|
-
req: HealthControllerCheckRedisData;
|
|
5982
6952
|
res: {
|
|
5983
6953
|
/**
|
|
5984
6954
|
* Redis is healthy
|
|
@@ -5993,7 +6963,6 @@ type $OpenApiTs = {
|
|
|
5993
6963
|
};
|
|
5994
6964
|
'/api/v1/health/circuit-breakers': {
|
|
5995
6965
|
get: {
|
|
5996
|
-
req: HealthControllerGetCircuitBreakersHealthData;
|
|
5997
6966
|
res: {
|
|
5998
6967
|
/**
|
|
5999
6968
|
* Circuit breaker status
|
|
@@ -6031,7 +7000,6 @@ type $OpenApiTs = {
|
|
|
6031
7000
|
};
|
|
6032
7001
|
'/api/v1/health/metrics': {
|
|
6033
7002
|
get: {
|
|
6034
|
-
req: HealthControllerGetMetricsData;
|
|
6035
7003
|
res: {
|
|
6036
7004
|
/**
|
|
6037
7005
|
* Health metrics
|
|
@@ -6044,70 +7012,8 @@ type $OpenApiTs = {
|
|
|
6044
7012
|
};
|
|
6045
7013
|
};
|
|
6046
7014
|
};
|
|
6047
|
-
'/api/v1/health/data-enhancer/{name}': {
|
|
6048
|
-
get: {
|
|
6049
|
-
req: HealthControllerGetHealthOfDataEnhancerData;
|
|
6050
|
-
res: {
|
|
6051
|
-
/**
|
|
6052
|
-
* Data enhancer is healthy
|
|
6053
|
-
*/
|
|
6054
|
-
200: unknown;
|
|
6055
|
-
/**
|
|
6056
|
-
* Unauthorized
|
|
6057
|
-
*/
|
|
6058
|
-
401: unknown;
|
|
6059
|
-
/**
|
|
6060
|
-
* Data enhancer unavailable
|
|
6061
|
-
*/
|
|
6062
|
-
503: unknown;
|
|
6063
|
-
};
|
|
6064
|
-
};
|
|
6065
|
-
};
|
|
6066
|
-
'/api/v1/health/data-providers': {
|
|
6067
|
-
get: {
|
|
6068
|
-
req: HealthControllerCheckDataProvidersData;
|
|
6069
|
-
res: {
|
|
6070
|
-
/**
|
|
6071
|
-
* Data providers health status
|
|
6072
|
-
*/
|
|
6073
|
-
200: unknown;
|
|
6074
|
-
/**
|
|
6075
|
-
* Unauthorized
|
|
6076
|
-
*/
|
|
6077
|
-
401: unknown;
|
|
6078
|
-
/**
|
|
6079
|
-
* Data providers check failed
|
|
6080
|
-
*/
|
|
6081
|
-
503: unknown;
|
|
6082
|
-
};
|
|
6083
|
-
};
|
|
6084
|
-
};
|
|
6085
|
-
'/api/v1/health/data-provider/{dataSource}': {
|
|
6086
|
-
get: {
|
|
6087
|
-
req: HealthControllerGetHealthOfDataProviderData;
|
|
6088
|
-
res: {
|
|
6089
|
-
/**
|
|
6090
|
-
* Data provider is healthy
|
|
6091
|
-
*/
|
|
6092
|
-
200: unknown;
|
|
6093
|
-
/**
|
|
6094
|
-
* Invalid data source
|
|
6095
|
-
*/
|
|
6096
|
-
400: unknown;
|
|
6097
|
-
/**
|
|
6098
|
-
* Unauthorized
|
|
6099
|
-
*/
|
|
6100
|
-
401: unknown;
|
|
6101
|
-
/**
|
|
6102
|
-
* Data provider unavailable
|
|
6103
|
-
*/
|
|
6104
|
-
503: unknown;
|
|
6105
|
-
};
|
|
6106
|
-
};
|
|
6107
|
-
};
|
|
6108
7015
|
'/api/v1/system/info': {
|
|
6109
7016
|
get: {
|
|
6110
|
-
req: InfoControllerGetInfoData;
|
|
6111
7017
|
res: {
|
|
6112
7018
|
/**
|
|
6113
7019
|
* System information retrieved successfully
|
|
@@ -6116,73 +7022,6 @@ type $OpenApiTs = {
|
|
|
6116
7022
|
};
|
|
6117
7023
|
};
|
|
6118
7024
|
};
|
|
6119
|
-
'/api/v1/market/logos/{dataSource}/{symbol}': {
|
|
6120
|
-
get: {
|
|
6121
|
-
req: LogoControllerGetLogoByDataSourceAndSymbolData;
|
|
6122
|
-
res: {
|
|
6123
|
-
/**
|
|
6124
|
-
* Logo image stream (favicon)
|
|
6125
|
-
*/
|
|
6126
|
-
200: unknown;
|
|
6127
|
-
/**
|
|
6128
|
-
* Unauthorized
|
|
6129
|
-
*/
|
|
6130
|
-
401: unknown;
|
|
6131
|
-
/**
|
|
6132
|
-
* Logo not found for the specified asset
|
|
6133
|
-
*/
|
|
6134
|
-
404: unknown;
|
|
6135
|
-
/**
|
|
6136
|
-
* Service unavailable
|
|
6137
|
-
*/
|
|
6138
|
-
503: unknown;
|
|
6139
|
-
};
|
|
6140
|
-
};
|
|
6141
|
-
};
|
|
6142
|
-
'/api/v1/market/logos': {
|
|
6143
|
-
get: {
|
|
6144
|
-
req: LogoControllerGetLogoByUrlData;
|
|
6145
|
-
res: {
|
|
6146
|
-
/**
|
|
6147
|
-
* Logo image stream (favicon)
|
|
6148
|
-
*/
|
|
6149
|
-
200: unknown;
|
|
6150
|
-
/**
|
|
6151
|
-
* Unauthorized
|
|
6152
|
-
*/
|
|
6153
|
-
401: unknown;
|
|
6154
|
-
/**
|
|
6155
|
-
* Service unavailable
|
|
6156
|
-
*/
|
|
6157
|
-
503: unknown;
|
|
6158
|
-
};
|
|
6159
|
-
};
|
|
6160
|
-
};
|
|
6161
|
-
'/api/v1/market-data/{dataSource}/{symbol}': {
|
|
6162
|
-
get: {
|
|
6163
|
-
req: MarketDataControllerGetMarketDataBySymbolData;
|
|
6164
|
-
res: {
|
|
6165
|
-
/**
|
|
6166
|
-
* Market data retrieved successfully
|
|
6167
|
-
*/
|
|
6168
|
-
200: unknown;
|
|
6169
|
-
/**
|
|
6170
|
-
* Insufficient permissions to read market data
|
|
6171
|
-
*/
|
|
6172
|
-
403: unknown;
|
|
6173
|
-
/**
|
|
6174
|
-
* Market data not found
|
|
6175
|
-
*/
|
|
6176
|
-
404: unknown;
|
|
6177
|
-
};
|
|
6178
|
-
};
|
|
6179
|
-
post: {
|
|
6180
|
-
req: MarketDataControllerData;
|
|
6181
|
-
res: {
|
|
6182
|
-
201: unknown;
|
|
6183
|
-
};
|
|
6184
|
-
};
|
|
6185
|
-
};
|
|
6186
7025
|
};
|
|
6187
7026
|
|
|
6188
7027
|
declare class BeanAccountsService {
|
|
@@ -6267,8 +7106,9 @@ declare class BeanAccountsService {
|
|
|
6267
7106
|
}
|
|
6268
7107
|
declare class BeanTransactionsService {
|
|
6269
7108
|
/**
|
|
6270
|
-
*
|
|
6271
|
-
*
|
|
7109
|
+
* @deprecated
|
|
7110
|
+
* Create transaction (DEPRECATED)
|
|
7111
|
+
* DEPRECATED: Use POST /:region/bean/import/provider/:name/sync instead. This endpoint skips dedup, rule matching, and review branching.
|
|
6272
7112
|
* @param data The data for the request.
|
|
6273
7113
|
* @param data.region Region code for tenant context
|
|
6274
7114
|
* @param data.requestBody Transaction data with postings
|
|
@@ -6293,12 +7133,16 @@ declare class BeanTransactionsService {
|
|
|
6293
7133
|
*/
|
|
6294
7134
|
static transactionControllerList(data: TransactionControllerListData): CancelablePromise<TransactionControllerListResponse>;
|
|
6295
7135
|
/**
|
|
7136
|
+
* @deprecated
|
|
7137
|
+
* Batch create transactions (DEPRECATED)
|
|
7138
|
+
* DEPRECATED: Use POST /:region/bean/import/provider/:name/sync instead. This endpoint skips dedup, rule matching, and review branching.
|
|
6296
7139
|
* @param data The data for the request.
|
|
6297
7140
|
* @param data.region Region code for tenant context
|
|
6298
|
-
* @
|
|
7141
|
+
* @param data.requestBody
|
|
7142
|
+
* @returns BatchTransactionResponseDto Transactions processed
|
|
6299
7143
|
* @throws ApiError
|
|
6300
7144
|
*/
|
|
6301
|
-
static
|
|
7145
|
+
static transactionControllerCreateBatch(data: TransactionControllerCreateBatchData): CancelablePromise<TransactionControllerCreateBatchResponse>;
|
|
6302
7146
|
/**
|
|
6303
7147
|
* Get transaction detail
|
|
6304
7148
|
* Returns transaction details including all postings
|
|
@@ -6321,12 +7165,15 @@ declare class BeanTransactionsService {
|
|
|
6321
7165
|
*/
|
|
6322
7166
|
static transactionControllerUpdate(data: TransactionControllerUpdateData): CancelablePromise<TransactionControllerUpdateResponse>;
|
|
6323
7167
|
/**
|
|
7168
|
+
* Void transaction
|
|
7169
|
+
* Soft-deletes a transaction by marking it as VOIDED
|
|
6324
7170
|
* @param data The data for the request.
|
|
7171
|
+
* @param data.id Transaction ID
|
|
6325
7172
|
* @param data.region Region code for tenant context
|
|
6326
|
-
* @returns void
|
|
7173
|
+
* @returns void Transaction voided successfully
|
|
6327
7174
|
* @throws ApiError
|
|
6328
7175
|
*/
|
|
6329
|
-
static
|
|
7176
|
+
static transactionControllerDelete(data: TransactionControllerDeleteData): CancelablePromise<TransactionControllerDeleteResponse>;
|
|
6330
7177
|
}
|
|
6331
7178
|
declare class BeanBalancesService {
|
|
6332
7179
|
/**
|
|
@@ -6334,7 +7181,7 @@ declare class BeanBalancesService {
|
|
|
6334
7181
|
* Calculate account balance at a specific date for a single currency
|
|
6335
7182
|
* @param data The data for the request.
|
|
6336
7183
|
* @param data.account Account name (e.g., "Assets:Bank:Checking")
|
|
6337
|
-
* @param data.region Region code
|
|
7184
|
+
* @param data.region Region code for tenant context
|
|
6338
7185
|
* @param data.date Date to calculate balance at (ISO 8601 format)
|
|
6339
7186
|
* @param data.currency Currency to query (e.g., "USD", "CNY")
|
|
6340
7187
|
* @returns BalanceResponseDto Balance calculated successfully
|
|
@@ -6345,7 +7192,7 @@ declare class BeanBalancesService {
|
|
|
6345
7192
|
* Query multi-currency account balance
|
|
6346
7193
|
* Calculate account balances for all currencies at a specific date
|
|
6347
7194
|
* @param data The data for the request.
|
|
6348
|
-
* @param data.region Region code
|
|
7195
|
+
* @param data.region Region code for tenant context
|
|
6349
7196
|
* @returns MultiCurrencyBalanceResponseDto Balances calculated successfully
|
|
6350
7197
|
* @throws ApiError
|
|
6351
7198
|
*/
|
|
@@ -6353,17 +7200,20 @@ declare class BeanBalancesService {
|
|
|
6353
7200
|
}
|
|
6354
7201
|
declare class BeanCommoditiesService {
|
|
6355
7202
|
/**
|
|
7203
|
+
* Create a new commodity
|
|
7204
|
+
* Creates a new commodity definition for the authenticated user
|
|
6356
7205
|
* @param data The data for the request.
|
|
6357
|
-
* @param data.region Region code
|
|
6358
|
-
* @
|
|
7206
|
+
* @param data.region Region code for tenant context
|
|
7207
|
+
* @param data.requestBody
|
|
7208
|
+
* @returns CommodityResponseDto Commodity created successfully
|
|
6359
7209
|
* @throws ApiError
|
|
6360
7210
|
*/
|
|
6361
|
-
static
|
|
7211
|
+
static commodityControllerCreate(data: CommodityControllerCreateData): CancelablePromise<CommodityControllerCreateResponse>;
|
|
6362
7212
|
/**
|
|
6363
7213
|
* List user commodities
|
|
6364
7214
|
* Returns all commodity definitions for the authenticated user with optional filtering
|
|
6365
7215
|
* @param data The data for the request.
|
|
6366
|
-
* @param data.region Region code
|
|
7216
|
+
* @param data.region Region code for tenant context
|
|
6367
7217
|
* @param data.search Search term for symbol or metadata fields (partial match). Searches symbol and metadata.name.
|
|
6368
7218
|
* @param data.symbol Filter by exact symbol match
|
|
6369
7219
|
* @returns CommodityListResponseDto Commodities retrieved successfully
|
|
@@ -6375,39 +7225,51 @@ declare class BeanCommoditiesService {
|
|
|
6375
7225
|
* Returns a specific commodity definition by its symbol
|
|
6376
7226
|
* @param data The data for the request.
|
|
6377
7227
|
* @param data.symbol Commodity symbol
|
|
6378
|
-
* @param data.region Region code
|
|
7228
|
+
* @param data.region Region code for tenant context
|
|
6379
7229
|
* @returns CommodityResponseDto Commodity retrieved successfully
|
|
6380
7230
|
* @throws ApiError
|
|
6381
7231
|
*/
|
|
6382
7232
|
static commodityControllerFindOne(data: CommodityControllerFindOneData): CancelablePromise<CommodityControllerFindOneResponse>;
|
|
6383
7233
|
/**
|
|
7234
|
+
* Update commodity
|
|
7235
|
+
* Updates an existing commodity definition. Symbol cannot be changed.
|
|
6384
7236
|
* @param data The data for the request.
|
|
6385
|
-
* @param data.
|
|
6386
|
-
* @
|
|
7237
|
+
* @param data.symbol Commodity symbol
|
|
7238
|
+
* @param data.region Region code for tenant context
|
|
7239
|
+
* @param data.requestBody
|
|
7240
|
+
* @returns CommodityResponseDto Commodity updated successfully
|
|
6387
7241
|
* @throws ApiError
|
|
6388
7242
|
*/
|
|
6389
|
-
static
|
|
7243
|
+
static commodityControllerUpdate(data: CommodityControllerUpdateData): CancelablePromise<CommodityControllerUpdateResponse>;
|
|
6390
7244
|
/**
|
|
7245
|
+
* Delete commodity
|
|
7246
|
+
* Deletes a commodity definition
|
|
6391
7247
|
* @param data The data for the request.
|
|
6392
|
-
* @param data.
|
|
6393
|
-
* @
|
|
7248
|
+
* @param data.symbol Commodity symbol
|
|
7249
|
+
* @param data.region Region code for tenant context
|
|
7250
|
+
* @returns void Commodity deleted successfully
|
|
6394
7251
|
* @throws ApiError
|
|
6395
7252
|
*/
|
|
6396
|
-
static
|
|
7253
|
+
static commodityControllerDelete(data: CommodityControllerDeleteData): CancelablePromise<CommodityControllerDeleteResponse>;
|
|
6397
7254
|
/**
|
|
7255
|
+
* Ensure commodity exists
|
|
7256
|
+
* Gets existing commodity or creates it with automatic initialization from OpenBB
|
|
6398
7257
|
* @param data The data for the request.
|
|
6399
|
-
* @param data.
|
|
6400
|
-
* @
|
|
7258
|
+
* @param data.symbol Commodity symbol
|
|
7259
|
+
* @param data.region Region code for tenant context
|
|
7260
|
+
* @returns CommodityResponseDto Commodity retrieved or created
|
|
6401
7261
|
* @throws ApiError
|
|
6402
7262
|
*/
|
|
6403
|
-
static
|
|
7263
|
+
static commodityControllerGetOrCreate(data: CommodityControllerGetOrCreateData): CancelablePromise<CommodityControllerGetOrCreateResponse>;
|
|
6404
7264
|
/**
|
|
7265
|
+
* Bulk create commodities
|
|
7266
|
+
* Creates multiple commodities from a list of symbols, useful for initialization
|
|
6405
7267
|
* @param data The data for the request.
|
|
6406
|
-
* @param data.region Region code
|
|
6407
|
-
* @returns
|
|
7268
|
+
* @param data.region Region code for tenant context
|
|
7269
|
+
* @returns CommodityResponseDto Commodities created successfully
|
|
6408
7270
|
* @throws ApiError
|
|
6409
7271
|
*/
|
|
6410
|
-
static
|
|
7272
|
+
static commodityControllerBulkCreate(data: CommodityControllerBulkCreateData): CancelablePromise<CommodityControllerBulkCreateResponse>;
|
|
6411
7273
|
}
|
|
6412
7274
|
declare class ProviderSyncService {
|
|
6413
7275
|
/**
|
|
@@ -6423,6 +7285,7 @@ declare class ProviderSyncService {
|
|
|
6423
7285
|
* - **simplefin**: SimpleFIN (Self-hosted)
|
|
6424
7286
|
* - **yodlee**: Yodlee (Global)
|
|
6425
7287
|
* - **beancount-direct**: Beancount format transactions
|
|
7288
|
+
* - **parsed-bill**: Client-side parsed bill transactions
|
|
6426
7289
|
*
|
|
6427
7290
|
* **Processing Flow:**
|
|
6428
7291
|
* 1. Transform raw data via provider adapter
|
|
@@ -6444,7 +7307,7 @@ declare class ProviderSyncService {
|
|
|
6444
7307
|
* Get supported providers
|
|
6445
7308
|
* Returns a list of all providers supported by the sync endpoint.
|
|
6446
7309
|
* @param data The data for the request.
|
|
6447
|
-
* @param data.region Region code
|
|
7310
|
+
* @param data.region Region code for tenant context
|
|
6448
7311
|
* @returns SupportedProvidersResponseDto List of supported providers
|
|
6449
7312
|
* @throws ApiError
|
|
6450
7313
|
*/
|
|
@@ -6454,7 +7317,7 @@ declare class ProviderSyncService {
|
|
|
6454
7317
|
* Returns whether a specific provider is supported.
|
|
6455
7318
|
* @param data The data for the request.
|
|
6456
7319
|
* @param data.providerName Provider name to check
|
|
6457
|
-
* @param data.region Region code
|
|
7320
|
+
* @param data.region Region code for tenant context
|
|
6458
7321
|
* @returns unknown Provider support status
|
|
6459
7322
|
* @throws ApiError
|
|
6460
7323
|
*/
|
|
@@ -6463,79 +7326,48 @@ declare class ProviderSyncService {
|
|
|
6463
7326
|
declare class HealthService {
|
|
6464
7327
|
/**
|
|
6465
7328
|
* Basic health check for K8s/load balancer probes
|
|
6466
|
-
* @param data The data for the request.
|
|
6467
|
-
* @param data.region Region code (cn, us, de)
|
|
6468
7329
|
* @returns unknown Service is healthy
|
|
6469
7330
|
* @throws ApiError
|
|
6470
7331
|
*/
|
|
6471
|
-
static healthControllerGetHealth(
|
|
7332
|
+
static healthControllerGetHealth(): CancelablePromise<HealthControllerGetHealthResponse>;
|
|
6472
7333
|
/**
|
|
6473
7334
|
* Check database connection health
|
|
6474
|
-
* @param data The data for the request.
|
|
6475
|
-
* @param data.region Region code (cn, us, de)
|
|
6476
7335
|
* @returns unknown Database is healthy
|
|
6477
7336
|
* @throws ApiError
|
|
6478
7337
|
*/
|
|
6479
|
-
static healthControllerCheckDatabase(
|
|
7338
|
+
static healthControllerCheckDatabase(): CancelablePromise<HealthControllerCheckDatabaseResponse>;
|
|
7339
|
+
/**
|
|
7340
|
+
* Check OpenBB schema status
|
|
7341
|
+
* @returns unknown OpenBB status
|
|
7342
|
+
* @throws ApiError
|
|
7343
|
+
*/
|
|
7344
|
+
static healthControllerCheckOpenBb(): CancelablePromise<HealthControllerCheckOpenBbResponse>;
|
|
6480
7345
|
/**
|
|
6481
7346
|
* Check Redis connection health
|
|
6482
|
-
* @param data The data for the request.
|
|
6483
|
-
* @param data.region Region code (cn, us, de)
|
|
6484
7347
|
* @returns unknown Redis is healthy
|
|
6485
7348
|
* @throws ApiError
|
|
6486
7349
|
*/
|
|
6487
|
-
static healthControllerCheckRedis(
|
|
7350
|
+
static healthControllerCheckRedis(): CancelablePromise<HealthControllerCheckRedisResponse>;
|
|
6488
7351
|
/**
|
|
6489
7352
|
* Get status of all circuit breakers
|
|
6490
|
-
* @param data The data for the request.
|
|
6491
|
-
* @param data.region Region code (cn, us, de)
|
|
6492
7353
|
* @returns unknown Circuit breaker status
|
|
6493
7354
|
* @throws ApiError
|
|
6494
7355
|
*/
|
|
6495
|
-
static healthControllerGetCircuitBreakersHealth(
|
|
7356
|
+
static healthControllerGetCircuitBreakersHealth(): CancelablePromise<HealthControllerGetCircuitBreakersHealthResponse>;
|
|
6496
7357
|
/**
|
|
6497
7358
|
* Reset a circuit breaker to CLOSED state
|
|
6498
7359
|
* @param data The data for the request.
|
|
6499
7360
|
* @param data.name Circuit breaker name to reset
|
|
6500
|
-
* @param data.region Region code (cn, us, de)
|
|
6501
7361
|
* @returns unknown Circuit breaker reset successfully
|
|
6502
7362
|
* @throws ApiError
|
|
6503
7363
|
*/
|
|
6504
7364
|
static healthControllerResetCircuitBreaker(data: HealthControllerResetCircuitBreakerData): CancelablePromise<HealthControllerResetCircuitBreakerResponse>;
|
|
6505
7365
|
/**
|
|
6506
7366
|
* Get health check metrics and statistics
|
|
6507
|
-
* @param data The data for the request.
|
|
6508
|
-
* @param data.region Region code (cn, us, de)
|
|
6509
7367
|
* @returns unknown Health metrics
|
|
6510
7368
|
* @throws ApiError
|
|
6511
7369
|
*/
|
|
6512
|
-
static healthControllerGetMetrics(
|
|
6513
|
-
/**
|
|
6514
|
-
* Check health of a specific data enhancer
|
|
6515
|
-
* @param data The data for the request.
|
|
6516
|
-
* @param data.name Data enhancer name
|
|
6517
|
-
* @param data.region Region code (cn, us, de)
|
|
6518
|
-
* @returns unknown Data enhancer is healthy
|
|
6519
|
-
* @throws ApiError
|
|
6520
|
-
*/
|
|
6521
|
-
static healthControllerGetHealthOfDataEnhancer(data: HealthControllerGetHealthOfDataEnhancerData): CancelablePromise<HealthControllerGetHealthOfDataEnhancerResponse>;
|
|
6522
|
-
/**
|
|
6523
|
-
* Check health of all data providers
|
|
6524
|
-
* @param data The data for the request.
|
|
6525
|
-
* @param data.region Region code (cn, us, de)
|
|
6526
|
-
* @returns unknown Data providers health status
|
|
6527
|
-
* @throws ApiError
|
|
6528
|
-
*/
|
|
6529
|
-
static healthControllerCheckDataProviders(data: HealthControllerCheckDataProvidersData): CancelablePromise<HealthControllerCheckDataProvidersResponse>;
|
|
6530
|
-
/**
|
|
6531
|
-
* Check health of a specific data provider
|
|
6532
|
-
* @param data The data for the request.
|
|
6533
|
-
* @param data.dataSource Data source identifier
|
|
6534
|
-
* @param data.region Region code (cn, us, de)
|
|
6535
|
-
* @returns unknown Data provider is healthy
|
|
6536
|
-
* @throws ApiError
|
|
6537
|
-
*/
|
|
6538
|
-
static healthControllerGetHealthOfDataProvider(data: HealthControllerGetHealthOfDataProviderData): CancelablePromise<HealthControllerGetHealthOfDataProviderResponse>;
|
|
7370
|
+
static healthControllerGetMetrics(): CancelablePromise<HealthControllerGetMetricsResponse>;
|
|
6539
7371
|
}
|
|
6540
7372
|
|
|
6541
7373
|
type ApiRequestOptions = {
|
|
@@ -6578,4 +7410,4 @@ type OpenAPIConfig = {
|
|
|
6578
7410
|
};
|
|
6579
7411
|
declare const OpenAPI: OpenAPIConfig;
|
|
6580
7412
|
|
|
6581
|
-
export { type $OpenApiTs, type AccountControllerCloseData, type AccountControllerCloseResponse, type AccountControllerCreateData, type AccountControllerCreateResponse, type AccountControllerDeleteData, type AccountControllerDeleteResponse, type AccountControllerFindAllData, type AccountControllerFindAllResponse, type AccountControllerFindOneData, type AccountControllerFindOneResponse, type AccountControllerReopenData, type AccountControllerReopenResponse, type AccountControllerUpdateData, type AccountControllerUpdateResponse, type AccountExchangeRateWarningDto, type AccountItemDto, type AccountItemWithAssetClassDto, type AccountListResponseDto, type AccountResponseDto, type AccountStandardListResponseDto, type AccountStandardResponseDto, type AccountStandardsControllerGetRegionsData, type AccountStandardsControllerGetRegionsResponse, type AccountStandardsControllerGetTemplatesData, type AccountStandardsControllerGetTemplatesResponse, type AccountsResponseDto, type AccountsSummaryDto, type AnonymousLoginDto, type ApiKeysControllerData, type ApiKeysControllerResponse, type ApiProblemResponseDto, type AssetClassAccountsResponseDto, type AssetClassGroupDto, type AssetClassSummaryDto, type AuthControllerAccessTokenLoginData, type AuthControllerAccessTokenLoginResponse, type BackfillSnapshotsBody, type BackfillSnapshotsResponse, type BalanceByCurrencyDto, type BalanceControllerGetBalanceData, type BalanceControllerGetBalanceResponse, type BalanceControllerGetMultiCurrencyBalanceData, type BalanceControllerGetMultiCurrencyBalanceResponse, type BalanceResponseDto, BeanAccountsService, BeanBalancesService, BeanCommoditiesService, BeanTransactionsService, type CacheControllerFlushCacheData, type CacheControllerFlushCacheResponse, type CashFlowByCurrencyDto, type CashFlowResponseDto, type CloseAccountDto, type CommodityController1Data, type CommodityController1Response, type CommodityController2Data, type CommodityController2Response, type CommodityController3Data, type CommodityController3Response, type CommodityController4Data, type CommodityController4Response, type CommodityControllerData, type CommodityControllerFindAllData, type CommodityControllerFindAllResponse, type CommodityControllerFindOneData, type CommodityControllerFindOneResponse, type CommodityControllerResponse, type CommodityListResponseDto, type CommodityResponseDto, type ConvertedCashFlowDto, type ConvertedNetWorthDto, type CreateAccountDto, type CreatePostingDto, type CreateTransactionDto, type CurrencyBalanceDto, type DashboardControllerGetAccountsData, type DashboardControllerGetAccountsResponse, type DashboardControllerGetCashFlowData, type DashboardControllerGetCashFlowResponse, type DashboardControllerGetNetWorthData, type DashboardControllerGetNetWorthResponse, type DecisionOptionDto, type DeleteOwnUserDto, type ExchangeRateControllerGetExchangeRateData, type ExchangeRateControllerGetExchangeRateResponse, type ExchangeRateWarningDto, type ExpectedTransactionController1Data, type ExpectedTransactionController1Response, type ExpectedTransactionController2Data, type ExpectedTransactionController2Response, type ExpectedTransactionController3Data, type ExpectedTransactionController3Response, type ExpectedTransactionController4Data, type ExpectedTransactionController4Response, type ExpectedTransactionControllerData, type ExpectedTransactionControllerFindAllData, type ExpectedTransactionControllerFindAllResponse, type ExpectedTransactionControllerFindOneData, type ExpectedTransactionControllerFindOneResponse, type ExpectedTransactionControllerFindOverdueData, type ExpectedTransactionControllerFindOverdueResponse, type ExpectedTransactionControllerResponse, type ExpectedTransactionListResponseDto, type ExpectedTransactionResponseDto, type ExpectedTransactionRuleDto, type ExportRulesResponseDto, type FileImportControllerIdentifyFileData, type FileImportControllerIdentifyFileResponse, type FileImportControllerImportFileData, type FileImportControllerImportFileResponse, type FileImportDto, type ForecastControllerGetForecastData, type ForecastControllerGetForecastResponse, type ForecastItemDto, type ForecastResponseDto, type GenerateSnapshotBody, type GenerateSnapshotResponse, type HealthControllerCheckDataProvidersData, type HealthControllerCheckDataProvidersResponse, type HealthControllerCheckDatabaseData, type HealthControllerCheckDatabaseResponse, type HealthControllerCheckRedisData, type HealthControllerCheckRedisResponse, type HealthControllerGetCircuitBreakersHealthData, type HealthControllerGetCircuitBreakersHealthResponse, type HealthControllerGetHealthData, type HealthControllerGetHealthOfDataEnhancerData, type HealthControllerGetHealthOfDataEnhancerResponse, type HealthControllerGetHealthOfDataProviderData, type HealthControllerGetHealthOfDataProviderResponse, type HealthControllerGetHealthResponse, type HealthControllerGetMetricsData, type HealthControllerGetMetricsResponse, type HealthControllerResetCircuitBreakerData, type HealthControllerResetCircuitBreakerResponse, HealthService, type IdentifyResultDto, type ImportErrorDto, type ImportResultDto, type ImporterConfigController1Data, type ImporterConfigController1Response, type ImporterConfigControllerData, type ImporterConfigControllerGetConfigData, type ImporterConfigControllerGetConfigResponse, type ImporterConfigControllerResponse, type ImporterConfigDataDto, type ImporterConfigDto, type InfoControllerGetInfoData, type InfoControllerGetInfoResponse, type LogoControllerGetLogoByDataSourceAndSymbolData, type LogoControllerGetLogoByDataSourceAndSymbolResponse, type LogoControllerGetLogoByUrlData, type LogoControllerGetLogoByUrlResponse, type MapperDefaultsDto, type MarketDataControllerData, type MarketDataControllerGetMarketDataBySymbolData, type MarketDataControllerGetMarketDataBySymbolResponse, type MarketDataControllerResponse, type MonthlyForecastDto, type MultiCurrencyBalanceResponseDto, type MultiCurrencyPointDto, type NetWorthByCurrencyDto, type NetWorthResponseDto, type NlpAccountConfirmationDataDto, type NlpAlternativePayeeDto, type NlpControllerClearSessionData, type NlpControllerClearSessionResponse, type NlpControllerGetSessionData, type NlpControllerGetSessionResponse, type NlpControllerProcessNaturalLanguageData, type NlpControllerProcessNaturalLanguageResponse, type NlpDefaultAccountsDto, type NlpDuplicateConfirmationDataDto, type NlpParsedDataDto, type NlpPayeeConfirmationDataDto, type NlpResponseDto, type NlpRuleConfirmationDataDto, type NlpSimilarityDto, type NlpSourceTransactionDto, type NlpSuggestedAccountDto, type NlpSuggestedAccountsDto, type NlpSuggestedPayeeDto, type NlpTargetTransactionDto, type NlpTransactionInfoDto, OpenAPI, type OpenAPIConfig, type PayeeAutocompleteResponseDto, type PayeeController1Data, type PayeeController1Response, type PayeeController2Data, type PayeeController2Response, type PayeeControllerAutocompleteData, type PayeeControllerAutocompleteResponse, type PayeeControllerData, type PayeeControllerFindAllData, type PayeeControllerFindAllResponse, type PayeeControllerFindOneData, type PayeeControllerFindOneResponse, type PayeeControllerGetTopPayeesData, type PayeeControllerGetTopPayeesResponse, type PayeeControllerResponse, type PayeeListResponseDto, type PayeeProfileAdminController1Data, type PayeeProfileAdminController1Response, type PayeeProfileAdminController2Data, type PayeeProfileAdminController2Response, type PayeeProfileAdminController3Data, type PayeeProfileAdminController3Response, type PayeeProfileAdminController4Data, type PayeeProfileAdminController4Response, type PayeeProfileAdminControllerData, type PayeeProfileAdminControllerFindAllData, type PayeeProfileAdminControllerFindAllResponse, type PayeeProfileAdminControllerFindOneData, type PayeeProfileAdminControllerFindOneResponse, type PayeeProfileAdminControllerResponse, type PayeeProfileListResponseDto, type PayeeProfileResponseDto, type PayeeResponseDto, type PayeeStatsResponseDto, type PlatformController1Data, type PlatformController1Response, type PlatformController2Data, type PlatformController2Response, type PlatformControllerData, type PlatformControllerFindAllData, type PlatformControllerFindAllResponse, type PlatformControllerGetPlatformListData, type PlatformControllerGetPlatformListResponse, type PlatformControllerResponse, type PlatformGroupDto, type PortfolioTrendsResponseDto, type PostingDetailDto, type PostingResponseDto, type ProcessNlpDto, type PropertyController1Data, type PropertyController1Response, type PropertyControllerData, type PropertyControllerGetAllData, type PropertyControllerGetAllResponse, type PropertyControllerGetByKeyData, type PropertyControllerGetByKeyResponse, type PropertyControllerResponse, type ProviderSyncConfigDto, type ProviderSyncControllerGetSupportedProvidersData, type ProviderSyncControllerGetSupportedProvidersResponse, type ProviderSyncControllerIsProviderSupportedData, type ProviderSyncControllerIsProviderSupportedResponse, type ProviderSyncControllerSyncData, type ProviderSyncControllerSyncResponse, type ProviderSyncDto, type ProviderSyncResponseDto, ProviderSyncService, type RecurringMatchInfoDto, type RecurringRuleController1Data, type RecurringRuleController1Response, type RecurringRuleController2Data, type RecurringRuleController2Response, type RecurringRuleController3Data, type RecurringRuleController3Response, type RecurringRuleControllerData, type RecurringRuleControllerFindAllData, type RecurringRuleControllerFindAllResponse, type RecurringRuleControllerFindOneData, type RecurringRuleControllerFindOneResponse, type RecurringRuleControllerGetWithStatsData, type RecurringRuleControllerGetWithStatsResponse, type RecurringRuleControllerResponse, type RecurringRuleResponseDto, type RecurringRuleWithStatsResponseDto, type RecurringSuggestionDto, type RegionConfigDto, type RegionInfoDto, type RegionsMetadataResponseDto, type ReopenAccountDto, type ReportingControllerBackfillSnapshotsData, type ReportingControllerBackfillSnapshotsResponse, type ReportingControllerGenerateSnapshotData, type ReportingControllerGenerateSnapshotResponse, type ReportingControllerGetPortfolioTrendsData, type ReportingControllerGetPortfolioTrendsResponse, type ReviewController1Data, type ReviewController1Response, type ReviewController2Data, type ReviewController2Response, type ReviewControllerData, type ReviewControllerFindAllData, type ReviewControllerFindAllResponse, type ReviewControllerFindOneData, type ReviewControllerFindOneResponse, type ReviewControllerGetStatsData, type ReviewControllerGetStatsResponse, type ReviewControllerResponse, type ReviewDetailDto, type ReviewItemPreviewDto, type ReviewListResponseDto, type ReviewStatsDto, type ReviewSummaryDto, type RuleStatisticsResponseDto, type SignupDto, type SupportedProvidersResponseDto, type SymbolControllerData, type SymbolControllerGatherSymbolForDateData, type SymbolControllerGatherSymbolForDateResponse, type SymbolControllerGetSymbolDataData, type SymbolControllerGetSymbolDataResponse, type SymbolControllerLookupSymbolData, type SymbolControllerLookupSymbolResponse, type SymbolControllerResponse, type TestRuleDto, type TestRuleResponseDto, type TimeSeriesPointDto, type TransactionController1Data, type TransactionController1Response, type TransactionControllerCreateData, type TransactionControllerCreateResponse, type TransactionControllerData, type TransactionControllerGetDetailData, type TransactionControllerGetDetailResponse, type TransactionControllerListData, type TransactionControllerListResponse, type TransactionControllerResponse, type TransactionControllerUpdateData, type TransactionControllerUpdateResponse, type TransactionDetailDto, type TransactionListResponseDto, type TransactionResponseDto, type TransactionRuleController1Data, type TransactionRuleController1Response, type TransactionRuleController2Data, type TransactionRuleController2Response, type TransactionRuleController3Data, type TransactionRuleController3Response, type TransactionRuleControllerData, type TransactionRuleControllerExportData, type TransactionRuleControllerExportResponse, type TransactionRuleControllerGetDetailData, type TransactionRuleControllerGetDetailResponse, type TransactionRuleControllerGetStatisticsData, type TransactionRuleControllerGetStatisticsResponse, type TransactionRuleControllerListData, type TransactionRuleControllerListResponse, type TransactionRuleControllerResponse, type TransactionRuleControllerTestData, type TransactionRuleControllerTestResponse, type TransactionRuleControllerValidateData, type TransactionRuleControllerValidateResponse, type TransactionRuleListResponseDto, type TransactionRuleResponseDto, type TransactionSummaryDto, type TrendSummaryDto, type UpdateAccountDto, type UpdateTransactionDto, type UpdateUserSettingDto, type UserControllerDeleteOwnUserData, type UserControllerDeleteOwnUserResponse, type UserControllerDeleteUserData, type UserControllerDeleteUserResponse, type UserControllerGetAllUserSettingsByPageData, type UserControllerGetAllUserSettingsByPageResponse, type UserControllerGetAssetLiabilitySummaryData, type UserControllerGetAssetLiabilitySummaryResponse, type UserControllerGetUserData, type UserControllerGetUserInfoData, type UserControllerGetUserInfoResponse, type UserControllerGetUserResponse, type UserControllerSignupUserData, type UserControllerSignupUserResponse, type UserControllerUpdateUserSettingData, type UserControllerUpdateUserSettingResponse, type ValidateRuleDto, type ValidateRuleResponseDto, type VersionedConfigDto, type action, type assetClass, type assetSubType, type bookingMethod, type branchType, type category, type colorScheme, type confidenceLevel, type dataSource, type equitySubType, type flag, type flag2, type importerId, type intent, type investmentAction, type learningSource, type liabilitySubType, type matchLogic, type paymentSource, type period, type source, type sourceType, type status, type status2, type status3, type status4, type suggestedFrequency, type type, type type2, type viewMode };
|
|
7413
|
+
export { type $OpenApiTs, type AccountControllerCloseData, type AccountControllerCloseResponse, type AccountControllerCreateData, type AccountControllerCreateResponse, type AccountControllerDeleteData, type AccountControllerDeleteResponse, type AccountControllerFindAllData, type AccountControllerFindAllResponse, type AccountControllerFindOneData, type AccountControllerFindOneResponse, type AccountControllerReopenData, type AccountControllerReopenResponse, type AccountControllerUpdateData, type AccountControllerUpdateResponse, type AccountExchangeRateWarningDto, type AccountItemDto, type AccountItemWithAssetClassDto, type AccountListResponseDto, type AccountResponseDto, type AccountStandardListResponseDto, type AccountStandardResponseDto, type AccountStandardsControllerGetRegionsData, type AccountStandardsControllerGetRegionsResponse, type AccountStandardsControllerGetTemplateMetadataData, type AccountStandardsControllerGetTemplateMetadataResponse, type AccountStandardsControllerGetTemplatesData, type AccountStandardsControllerGetTemplatesResponse, type AccountsResponseDto, type AccountsSummaryDto, type AmountRangeDto, type AnonymousLoginDto, type ApiKeysControllerCreateApiKeyResponse, type ApiProblemResponseDto, type AssetClassAccountsResponseDto, type AssetClassGroupDto, type AssetClassSummaryDto, type AuthControllerAccessTokenLoginData, type AuthControllerAccessTokenLoginResponse, type BackfillSnapshotsBody, type BackfillSnapshotsResponse, type BalanceByCurrencyDto, type BalanceControllerGetBalanceData, type BalanceControllerGetBalanceResponse, type BalanceControllerGetMultiCurrencyBalanceData, type BalanceControllerGetMultiCurrencyBalanceResponse, type BalanceResponseDto, type BatchCreateTransactionDto, type BatchResolveDto, type BatchResolveResultDto, type BatchTransactionErrorDto, type BatchTransactionResponseDto, BeanAccountsService, BeanBalancesService, BeanCommoditiesService, BeanTransactionsService, type BulkCreateRulesDto, type BulkCreateRulesResponseDto, type CacheControllerFlushCacheResponse, type CashFlowByCurrencyDto, type CashFlowResponseDto, type CloseAccountDto, type CommodityControllerBulkCreateData, type CommodityControllerBulkCreateResponse, type CommodityControllerCreateData, type CommodityControllerCreateResponse, type CommodityControllerDeleteData, type CommodityControllerDeleteResponse, type CommodityControllerFindAllData, type CommodityControllerFindAllResponse, type CommodityControllerFindOneData, type CommodityControllerFindOneResponse, type CommodityControllerGetOrCreateData, type CommodityControllerGetOrCreateResponse, type CommodityControllerUpdateData, type CommodityControllerUpdateResponse, type CommodityListResponseDto, type CommodityResponseDto, type ConfirmMatchDto, type ConvertedCashFlowDto, type ConvertedNetWorthDto, type CreateAccountDto, type CreateCommodityDto, type CreatePayeeDto, type CreatePayeeProfileDto, type CreatePlatformDto, type CreatePostingDto, type CreateRecurringRuleDto, type CreateRuleFromTransactionDto, type CreateTransactionDto, type CreateTransactionRuleDto, type CurrencyBalanceDto, type DashboardControllerGetAccountsData, type DashboardControllerGetAccountsResponse, type DashboardControllerGetCashFlowData, type DashboardControllerGetCashFlowResponse, type DashboardControllerGetNetWorthData, type DashboardControllerGetNetWorthResponse, type DecisionOptionDto, type DeleteOwnUserDto, type EnterNowDto, type ExchangeRateControllerGetExchangeRateData, type ExchangeRateControllerGetExchangeRateResponse, type ExchangeRateWarningDto, type ExpectedTransactionControllerConfirmMatchData, type ExpectedTransactionControllerConfirmMatchResponse, type ExpectedTransactionControllerEnterNowData, type ExpectedTransactionControllerEnterNowResponse, type ExpectedTransactionControllerFindAllData, type ExpectedTransactionControllerFindAllResponse, type ExpectedTransactionControllerFindOneData, type ExpectedTransactionControllerFindOneResponse, type ExpectedTransactionControllerFindOverdueData, type ExpectedTransactionControllerFindOverdueResponse, type ExpectedTransactionControllerSkipData, type ExpectedTransactionControllerSkipResponse, type ExpectedTransactionControllerUndoSkipData, type ExpectedTransactionControllerUndoSkipResponse, type ExpectedTransactionControllerUnmatchData, type ExpectedTransactionControllerUnmatchResponse, type ExpectedTransactionListResponseDto, type ExpectedTransactionResponseDto, type ExpectedTransactionRuleDto, type ExportControllerExportBeancountResponse, type ExportRulesResponseDto, type FileImportControllerIdentifyFileData, type FileImportControllerIdentifyFileResponse, type FileImportControllerImportBeancountData, type FileImportControllerImportBeancountResponse, type FileImportControllerImportFileData, type FileImportControllerImportFileResponse, type FileImportDto, type ForecastControllerGetForecastData, type ForecastControllerGetForecastResponse, type ForecastItemDto, type ForecastResponseDto, type GenerateSnapshotBody, type GenerateSnapshotResponse, type HealthControllerCheckDatabaseResponse, type HealthControllerCheckOpenBbResponse, type HealthControllerCheckRedisResponse, type HealthControllerGetCircuitBreakersHealthResponse, type HealthControllerGetHealthResponse, type HealthControllerGetMetricsResponse, type HealthControllerResetCircuitBreakerData, type HealthControllerResetCircuitBreakerResponse, HealthService, type IdentifyResultDto, type ImportErrorDto, type ImportResultDto, type ImporterConfigControllerGetConfigData, type ImporterConfigControllerGetConfigResponse, type ImporterConfigControllerResetConfigData, type ImporterConfigControllerResetConfigResponse, type ImporterConfigControllerUpdateConfigData, type ImporterConfigControllerUpdateConfigResponse, type ImporterConfigDataDto, type ImporterConfigDto, type InfoControllerGetInfoResponse, type MapperDefaultsDto, type MonthlyForecastDto, type MultiCurrencyBalanceResponseDto, type MultiCurrencyPointDto, type NetWorthByCurrencyDto, type NetWorthResponseDto, type NlpAccountConfirmationDataDto, type NlpAlternativePayeeDto, type NlpControllerClearSessionData, type NlpControllerClearSessionResponse, type NlpControllerGetSessionData, type NlpControllerGetSessionResponse, type NlpControllerProcessNaturalLanguageData, type NlpControllerProcessNaturalLanguageResponse, type NlpDefaultAccountsDto, type NlpDuplicateConfirmationDataDto, type NlpParsedDataDto, type NlpPayeeConfirmationDataDto, type NlpResponseDto, type NlpRuleConfirmationDataDto, type NlpSimilarityDto, type NlpSourceTransactionDto, type NlpSuggestedAccountDto, type NlpSuggestedAccountsDto, type NlpSuggestedPayeeDto, type NlpTargetTransactionDto, type NlpTransactionInfoDto, OpenAPI, type OpenAPIConfig, type ParserTelemetryReportDto, type PayeeAutocompleteResponseDto, type PayeeControllerAutocompleteData, type PayeeControllerAutocompleteResponse, type PayeeControllerCreateData, type PayeeControllerCreateResponse, type PayeeControllerDeleteData, type PayeeControllerDeleteResponse, type PayeeControllerFindAllData, type PayeeControllerFindAllResponse, type PayeeControllerFindOneData, type PayeeControllerFindOneResponse, type PayeeControllerGetTopPayeesData, type PayeeControllerGetTopPayeesResponse, type PayeeControllerUpdateData, type PayeeControllerUpdateResponse, type PayeeListResponseDto, type PayeeProfileAdminControllerCreateData, type PayeeProfileAdminControllerCreateResponse, type PayeeProfileAdminControllerDeleteData, type PayeeProfileAdminControllerDeleteResponse, type PayeeProfileAdminControllerFindAllData, type PayeeProfileAdminControllerFindAllResponse, type PayeeProfileAdminControllerFindOneData, type PayeeProfileAdminControllerFindOneResponse, type PayeeProfileAdminControllerUnverifyData, type PayeeProfileAdminControllerUnverifyResponse, type PayeeProfileAdminControllerUpdateData, type PayeeProfileAdminControllerUpdateResponse, type PayeeProfileAdminControllerVerifyData, type PayeeProfileAdminControllerVerifyResponse, type PayeeProfileListResponseDto, type PayeeProfileResponseDto, type PayeeResponseDto, type PayeeStatsResponseDto, type PlatformControllerCreateData, type PlatformControllerCreateResponse, type PlatformControllerDeleteData, type PlatformControllerDeleteResponse, type PlatformControllerFindAllResponse, type PlatformControllerGetPlatformListResponse, type PlatformControllerMatchPlatformsData, type PlatformControllerMatchPlatformsResponse, type PlatformControllerUpdateData, type PlatformControllerUpdateResponse, type PlatformGroupDto, type PortfolioTrendsResponseDto, type PostingDetailDto, type PostingResponseDto, type ProcessNlpDto, type PropertyControllerDeleteData, type PropertyControllerDeleteResponse, type PropertyControllerGetAllResponse, type PropertyControllerGetByKeyData, type PropertyControllerGetByKeyResponse, type PropertyControllerUpdateData, type PropertyControllerUpdateResponse, type ProviderSyncConfigDto, type ProviderSyncControllerGetSupportedProvidersData, type ProviderSyncControllerGetSupportedProvidersResponse, type ProviderSyncControllerIsProviderSupportedData, type ProviderSyncControllerIsProviderSupportedResponse, type ProviderSyncControllerSyncData, type ProviderSyncControllerSyncResponse, type ProviderSyncDto, type ProviderSyncResponseDto, ProviderSyncService, type RecurringMatchInfoDto, type RecurringRuleControllerCreateData, type RecurringRuleControllerCreateFromTransactionData, type RecurringRuleControllerCreateFromTransactionResponse, type RecurringRuleControllerCreateResponse, type RecurringRuleControllerDeleteData, type RecurringRuleControllerDeleteResponse, type RecurringRuleControllerFindAllData, type RecurringRuleControllerFindAllResponse, type RecurringRuleControllerFindOneData, type RecurringRuleControllerFindOneResponse, type RecurringRuleControllerGetWithStatsData, type RecurringRuleControllerGetWithStatsResponse, type RecurringRuleControllerUpdateData, type RecurringRuleControllerUpdateResponse, type RecurringRuleResponseDto, type RecurringRuleWithStatsResponseDto, type RecurringSuggestionDto, type RegionConfigDto, type RegionInfoDto, type RegionsMetadataResponseDto, type ReopenAccountDto, type ReportingControllerBackfillSnapshotsData, type ReportingControllerBackfillSnapshotsResponse, type ReportingControllerGenerateSnapshotData, type ReportingControllerGenerateSnapshotResponse, type ReportingControllerGetPortfolioTrendsData, type ReportingControllerGetPortfolioTrendsResponse, type ResolveResultDto, type ResolveReviewDto, type ReviewControllerBatchResolveData, type ReviewControllerBatchResolveResponse, type ReviewControllerFindAllData, type ReviewControllerFindAllResponse, type ReviewControllerFindOneData, type ReviewControllerFindOneResponse, type ReviewControllerGetStatsData, type ReviewControllerGetStatsResponse, type ReviewControllerResolveData, type ReviewControllerResolveResponse, type ReviewControllerUndoData, type ReviewControllerUndoResponse, type ReviewDetailDto, type ReviewItemPreviewDto, type ReviewListResponseDto, type ReviewStatsDto, type ReviewSummaryDto, type RuleStatisticsResponseDto, type SignupDto, type SupportedProvidersResponseDto, type TelemetryControllerReportTelemetryData, type TelemetryControllerReportTelemetryResponse, type TemplateMetadataDto, type TemplateMetadataResponseDto, type TestRuleDto, type TestRuleResponseDto, type TimeSeriesPointDto, type TransactionControllerCreateBatchData, type TransactionControllerCreateBatchResponse, type TransactionControllerCreateData, type TransactionControllerCreateResponse, type TransactionControllerDeleteData, type TransactionControllerDeleteResponse, type TransactionControllerGetDetailData, type TransactionControllerGetDetailResponse, type TransactionControllerListData, type TransactionControllerListResponse, type TransactionControllerUpdateData, type TransactionControllerUpdateResponse, type TransactionDetailDto, type TransactionListResponseDto, type TransactionResponseDto, type TransactionRuleControllerBulkCreateData, type TransactionRuleControllerBulkCreateResponse, type TransactionRuleControllerCreateData, type TransactionRuleControllerCreateResponse, type TransactionRuleControllerDeleteData, type TransactionRuleControllerDeleteResponse, type TransactionRuleControllerExportData, type TransactionRuleControllerExportResponse, type TransactionRuleControllerGetDetailData, type TransactionRuleControllerGetDetailResponse, type TransactionRuleControllerGetStatisticsData, type TransactionRuleControllerGetStatisticsResponse, type TransactionRuleControllerListData, type TransactionRuleControllerListResponse, type TransactionRuleControllerTestData, type TransactionRuleControllerTestResponse, type TransactionRuleControllerUpdateData, type TransactionRuleControllerUpdateResponse, type TransactionRuleControllerValidateData, type TransactionRuleControllerValidateResponse, type TransactionRuleListResponseDto, type TransactionRuleResponseDto, type TransactionSummaryDto, type TrendSummaryDto, type UndoResultDto, type UpdateAccountDto, type UpdateCommodityDto, type UpdateConfigDataDto, type UpdateImporterConfigDto, type UpdateMapperDefaultsDto, type UpdatePayeeDto, type UpdatePayeeProfileDto, type UpdatePlatformDto, type UpdatePropertyDto, type UpdateRecurringRuleDto, type UpdateTransactionDto, type UpdateTransactionRuleDto, type UpdateUserSettingDto, type UserControllerDeleteOwnUserData, type UserControllerDeleteOwnUserResponse, type UserControllerDeleteUserData, type UserControllerDeleteUserResponse, type UserControllerGetAllUserSettingsByPageData, type UserControllerGetAllUserSettingsByPageResponse, type UserControllerGetAssetLiabilitySummaryResponse, type UserControllerGetUserData, type UserControllerGetUserInfoData, type UserControllerGetUserInfoResponse, type UserControllerGetUserResponse, type UserControllerSignupUserData, type UserControllerSignupUserResponse, type UserControllerUpdateUserSettingData, type UserControllerUpdateUserSettingResponse, type ValidateRuleDto, type ValidateRuleResponseDto, type VersionedConfigDto, type action, type assetClass, type assetSubType, type bookingMethod, type branchType, type category, type colorScheme, type confidenceLevel, type conflictStrategy, type dataSource, type equitySubType, type flag, type flag2, type frequency, type importerId, type intent, type investmentAction, type learningSource, type liabilitySubType, type matchLogic, type paymentSource, type period, type source, type sourceType, type status, type status2, type status3, type status4, type suggestedFrequency, type type, type type2, type type3, type viewMode };
|