@firela/api-types 0.0.0-canary.1917579c → 0.0.0-canary.19fa1e7e
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 +1385 -86
- package/dist/index.d.ts +1385 -86
- package/dist/index.js +60 -2
- package/dist/index.mjs +60 -2
- package/package.json +2 -3
- package/src/generated/schemas.gen.ts +1310 -104
- package/src/generated/services.gen.ts +597 -3
- package/src/generated/types.gen.ts +1511 -78
package/dist/index.d.mts
CHANGED
|
@@ -233,7 +233,7 @@ type AccountStandardResponseDto = {
|
|
|
233
233
|
/**
|
|
234
234
|
* i18n key for localized display name
|
|
235
235
|
*/
|
|
236
|
-
i18nKey
|
|
236
|
+
i18nKey: string;
|
|
237
237
|
/**
|
|
238
238
|
* Short localized display name
|
|
239
239
|
*/
|
|
@@ -245,11 +245,11 @@ type AccountStandardResponseDto = {
|
|
|
245
245
|
/**
|
|
246
246
|
* Account tags for categorization
|
|
247
247
|
*/
|
|
248
|
-
tags
|
|
248
|
+
tags: Array<string>;
|
|
249
249
|
/**
|
|
250
250
|
* Icon identifier for UI display
|
|
251
251
|
*/
|
|
252
|
-
icon
|
|
252
|
+
icon: string;
|
|
253
253
|
};
|
|
254
254
|
type AccountStandardListResponseDto = {
|
|
255
255
|
/**
|
|
@@ -293,6 +293,50 @@ type RegionInfoDto = {
|
|
|
293
293
|
type RegionsMetadataResponseDto = {
|
|
294
294
|
regions: Array<RegionInfoDto>;
|
|
295
295
|
};
|
|
296
|
+
type CostSpecDto = {
|
|
297
|
+
/**
|
|
298
|
+
* Cost specification mode (mirrors engine CostSpec)
|
|
299
|
+
*/
|
|
300
|
+
mode: 'per-unit' | 'total' | 'date' | 'label' | 'auto';
|
|
301
|
+
/**
|
|
302
|
+
* Per-unit cost (required when mode is "per-unit")
|
|
303
|
+
*/
|
|
304
|
+
numberPerUnit?: string;
|
|
305
|
+
/**
|
|
306
|
+
* Total cost for all units (required when mode is "total")
|
|
307
|
+
*/
|
|
308
|
+
totalNumber?: string;
|
|
309
|
+
/**
|
|
310
|
+
* Cost currency (required in all modes)
|
|
311
|
+
*/
|
|
312
|
+
currency: string;
|
|
313
|
+
/**
|
|
314
|
+
* Lot acquisition date, ISO 8601 (required when mode is "date")
|
|
315
|
+
*/
|
|
316
|
+
date?: string;
|
|
317
|
+
/**
|
|
318
|
+
* Lot label (required when mode is "label"; optional tag in buy modes)
|
|
319
|
+
*/
|
|
320
|
+
label?: string;
|
|
321
|
+
/**
|
|
322
|
+
* Merge lots for AVERAGE booking (mode: auto)
|
|
323
|
+
*/
|
|
324
|
+
merge?: boolean;
|
|
325
|
+
};
|
|
326
|
+
/**
|
|
327
|
+
* Cost specification mode (mirrors engine CostSpec)
|
|
328
|
+
*/
|
|
329
|
+
type mode = 'per-unit' | 'total' | 'date' | 'label' | 'auto';
|
|
330
|
+
type AmountDto = {
|
|
331
|
+
/**
|
|
332
|
+
* Amount as decimal string (max 15 integer + 15 decimal digits)
|
|
333
|
+
*/
|
|
334
|
+
number: string;
|
|
335
|
+
/**
|
|
336
|
+
* Currency/commodity code
|
|
337
|
+
*/
|
|
338
|
+
currency: string;
|
|
339
|
+
};
|
|
296
340
|
type CreatePostingDto = {
|
|
297
341
|
/**
|
|
298
342
|
* Account name in Beancount format (must start with uppercase, colon-separated)
|
|
@@ -312,6 +356,14 @@ type CreatePostingDto = {
|
|
|
312
356
|
meta?: {
|
|
313
357
|
[key: string]: unknown;
|
|
314
358
|
};
|
|
359
|
+
/**
|
|
360
|
+
* Cost basis (Beancount `{...}`). Maps to engine costSpec. Required for commodity holdings so they carry a monetary weight that can balance.
|
|
361
|
+
*/
|
|
362
|
+
cost?: CostSpecDto;
|
|
363
|
+
/**
|
|
364
|
+
* Price annotation (Beancount `@...`). Maps to engine price. Used for valuation; cost takes priority for balance weight.
|
|
365
|
+
*/
|
|
366
|
+
price?: AmountDto;
|
|
315
367
|
};
|
|
316
368
|
type CreateTransactionDto = {
|
|
317
369
|
/**
|
|
@@ -361,19 +413,41 @@ type CreateTransactionDto = {
|
|
|
361
413
|
* Transaction flag: * (cleared), ! (pending)
|
|
362
414
|
*/
|
|
363
415
|
type flag = '*' | '!';
|
|
416
|
+
type CostDetailDto = {
|
|
417
|
+
/**
|
|
418
|
+
* Per-unit cost basis (mirrors engine Cost.number)
|
|
419
|
+
*/
|
|
420
|
+
number?: string;
|
|
421
|
+
/**
|
|
422
|
+
* Cost currency
|
|
423
|
+
*/
|
|
424
|
+
currency?: string;
|
|
425
|
+
/**
|
|
426
|
+
* Lot acquisition date (ISO yyyy-mm-dd)
|
|
427
|
+
*/
|
|
428
|
+
date?: string;
|
|
429
|
+
/**
|
|
430
|
+
* Lot label
|
|
431
|
+
*/
|
|
432
|
+
label?: string;
|
|
433
|
+
};
|
|
364
434
|
type PostingResponseDto = {
|
|
365
435
|
/**
|
|
366
436
|
* Account name
|
|
367
437
|
*/
|
|
368
438
|
account: string;
|
|
369
439
|
/**
|
|
370
|
-
* Amount
|
|
440
|
+
* Amount as decimal string. Typed optional but always present in responses: interpolation fills any MISSING posting before it is persisted or returned.
|
|
371
441
|
*/
|
|
372
442
|
units?: string;
|
|
373
443
|
/**
|
|
374
444
|
* Currency
|
|
375
445
|
*/
|
|
376
446
|
currency?: string;
|
|
447
|
+
/**
|
|
448
|
+
* Booking-resolved cost (mirrors engine Cost). Undefined when the posting has no cost basis.
|
|
449
|
+
*/
|
|
450
|
+
cost?: CostDetailDto;
|
|
377
451
|
};
|
|
378
452
|
type RecurringSuggestionDto = {
|
|
379
453
|
/**
|
|
@@ -513,6 +587,54 @@ type BatchTransactionResponseDto = {
|
|
|
513
587
|
*/
|
|
514
588
|
failed: Array<BatchTransactionErrorDto>;
|
|
515
589
|
};
|
|
590
|
+
type CorrectTransactionDto = {
|
|
591
|
+
/**
|
|
592
|
+
* Transaction date (ISO 8601 format)
|
|
593
|
+
*/
|
|
594
|
+
date: string;
|
|
595
|
+
/**
|
|
596
|
+
* Transaction flag: * (cleared), ! (pending)
|
|
597
|
+
*/
|
|
598
|
+
flag?: '*' | '!';
|
|
599
|
+
/**
|
|
600
|
+
* Payee name
|
|
601
|
+
*/
|
|
602
|
+
payee?: string;
|
|
603
|
+
/**
|
|
604
|
+
* Transaction narration/description
|
|
605
|
+
*/
|
|
606
|
+
narration: string;
|
|
607
|
+
/**
|
|
608
|
+
* Transaction tags (without # prefix)
|
|
609
|
+
*/
|
|
610
|
+
tags?: Array<string>;
|
|
611
|
+
/**
|
|
612
|
+
* Transaction links (without ^ prefix)
|
|
613
|
+
*/
|
|
614
|
+
links?: Array<string>;
|
|
615
|
+
/**
|
|
616
|
+
* Transaction postings (minimum 1, typically 2 for double-entry)
|
|
617
|
+
*/
|
|
618
|
+
postings: Array<CreatePostingDto>;
|
|
619
|
+
/**
|
|
620
|
+
* Transaction-level metadata
|
|
621
|
+
*/
|
|
622
|
+
meta?: {
|
|
623
|
+
[key: string]: unknown;
|
|
624
|
+
};
|
|
625
|
+
/**
|
|
626
|
+
* Unique key for idempotent transaction creation. If provided, duplicate requests with the same key will return the existing transaction.
|
|
627
|
+
*/
|
|
628
|
+
idempotencyKey?: string;
|
|
629
|
+
/**
|
|
630
|
+
* Auto-create accounts if not found. When true, missing accounts will be automatically created. When false (default for API), missing accounts will cause a validation error. Set to true for quick entry scenarios where you want to create accounts on-the-fly.
|
|
631
|
+
*/
|
|
632
|
+
autoCreateAccounts?: boolean;
|
|
633
|
+
/**
|
|
634
|
+
* Reason for correcting/superseding the original transaction
|
|
635
|
+
*/
|
|
636
|
+
correctionReason?: string;
|
|
637
|
+
};
|
|
516
638
|
type PostingDetailDto = {
|
|
517
639
|
/**
|
|
518
640
|
* Posting ID
|
|
@@ -523,11 +645,11 @@ type PostingDetailDto = {
|
|
|
523
645
|
*/
|
|
524
646
|
accountId: string;
|
|
525
647
|
/**
|
|
526
|
-
*
|
|
648
|
+
* Fully-qualified Beancount account path
|
|
527
649
|
*/
|
|
528
|
-
|
|
650
|
+
account: string;
|
|
529
651
|
/**
|
|
530
|
-
* Amount
|
|
652
|
+
* Amount as decimal string. Typed optional but always present in responses: interpolation fills any MISSING posting before it is persisted or returned.
|
|
531
653
|
*/
|
|
532
654
|
units?: string;
|
|
533
655
|
/**
|
|
@@ -546,6 +668,10 @@ type PostingDetailDto = {
|
|
|
546
668
|
* Cost date
|
|
547
669
|
*/
|
|
548
670
|
costDate?: string;
|
|
671
|
+
/**
|
|
672
|
+
* Booking-resolved cost (mirrors engine Cost). Undefined when the posting has no cost basis.
|
|
673
|
+
*/
|
|
674
|
+
cost?: CostDetailDto;
|
|
549
675
|
/**
|
|
550
676
|
* Price amount
|
|
551
677
|
*/
|
|
@@ -609,9 +735,9 @@ type TransactionDetailDto = {
|
|
|
609
735
|
*/
|
|
610
736
|
status: 'ACTIVE' | 'VOIDED' | 'SUPERSEDED';
|
|
611
737
|
/**
|
|
612
|
-
* Source type (
|
|
738
|
+
* Source type (free-form string from transaction metadata, e.g. import, api)
|
|
613
739
|
*/
|
|
614
|
-
sourceType?:
|
|
740
|
+
sourceType?: string;
|
|
615
741
|
/**
|
|
616
742
|
* Source platform (e.g., alipay, wechat)
|
|
617
743
|
*/
|
|
@@ -636,6 +762,14 @@ type TransactionDetailDto = {
|
|
|
636
762
|
* Correction reason (if voided or superseded)
|
|
637
763
|
*/
|
|
638
764
|
correctionReason?: string;
|
|
765
|
+
/**
|
|
766
|
+
* ID of the transaction that supersedes this one (set when status=SUPERSEDED)
|
|
767
|
+
*/
|
|
768
|
+
supersededBy?: string;
|
|
769
|
+
/**
|
|
770
|
+
* ID of the transaction this one corrected/replaced (back-link on the replacement)
|
|
771
|
+
*/
|
|
772
|
+
originalTxn?: string;
|
|
639
773
|
};
|
|
640
774
|
/**
|
|
641
775
|
* Transaction flag
|
|
@@ -645,10 +779,6 @@ type flag2 = 'CLEARED' | 'PENDING' | 'PADDING' | 'SUMMARIZE' | 'TRANSFER' | 'CON
|
|
|
645
779
|
* Transaction status
|
|
646
780
|
*/
|
|
647
781
|
type status2 = 'ACTIVE' | 'VOIDED' | 'SUPERSEDED';
|
|
648
|
-
/**
|
|
649
|
-
* Source type (how the transaction was created)
|
|
650
|
-
*/
|
|
651
|
-
type sourceType = 'NLP' | 'CSV' | 'OCR' | 'API';
|
|
652
782
|
type TransactionListResponseDto = {
|
|
653
783
|
/**
|
|
654
784
|
* List of transactions
|
|
@@ -667,6 +797,22 @@ type TransactionListResponseDto = {
|
|
|
667
797
|
*/
|
|
668
798
|
offset: number;
|
|
669
799
|
};
|
|
800
|
+
type TagSuggestionDto = {
|
|
801
|
+
/**
|
|
802
|
+
* Tag name
|
|
803
|
+
*/
|
|
804
|
+
tag: string;
|
|
805
|
+
/**
|
|
806
|
+
* Usage count across ACTIVE transactions
|
|
807
|
+
*/
|
|
808
|
+
count: number;
|
|
809
|
+
};
|
|
810
|
+
type TagSuggestionsResponseDto = {
|
|
811
|
+
/**
|
|
812
|
+
* Tag suggestions sorted as requested
|
|
813
|
+
*/
|
|
814
|
+
data: Array<TagSuggestionDto>;
|
|
815
|
+
};
|
|
670
816
|
type UpdateTransactionDto = {
|
|
671
817
|
/**
|
|
672
818
|
* Transaction flag (CLEARED, PENDING, etc.)
|
|
@@ -759,9 +905,9 @@ type TransactionSummaryDto = {
|
|
|
759
905
|
*/
|
|
760
906
|
accountName?: string;
|
|
761
907
|
/**
|
|
762
|
-
* Source type (
|
|
908
|
+
* Source type (free-form string from transaction metadata, e.g. import, api)
|
|
763
909
|
*/
|
|
764
|
-
sourceType?:
|
|
910
|
+
sourceType?: string;
|
|
765
911
|
/**
|
|
766
912
|
* Source platform (e.g., alipay, wechat)
|
|
767
913
|
*/
|
|
@@ -785,9 +931,9 @@ type ReviewSummaryDto = {
|
|
|
785
931
|
*/
|
|
786
932
|
confidence: number;
|
|
787
933
|
/**
|
|
788
|
-
* Confidence level derived from score
|
|
934
|
+
* Confidence level derived from score. Null for error-type reviews (ACCOUNT_VALIDATION/PIPELINE_ERROR) which carry no confidence.
|
|
789
935
|
*/
|
|
790
|
-
confidenceLevel: 'HIGH' | 'MEDIUM' | 'LOW';
|
|
936
|
+
confidenceLevel: 'HIGH' | 'MEDIUM' | 'LOW' | null;
|
|
791
937
|
/**
|
|
792
938
|
* i18n message key for summary (e.g., review.summary.duplicate). Translate on frontend with summaryParams.
|
|
793
939
|
*/
|
|
@@ -803,7 +949,7 @@ type ReviewSummaryDto = {
|
|
|
803
949
|
*/
|
|
804
950
|
matchReasons: Array<string>;
|
|
805
951
|
/**
|
|
806
|
-
* Source type (
|
|
952
|
+
* Source type (free-form string from transaction metadata, e.g. import, api)
|
|
807
953
|
*/
|
|
808
954
|
sourceType: string;
|
|
809
955
|
/**
|
|
@@ -848,7 +994,7 @@ type type2 = 'DUPLICATE' | 'RULE_MATCH' | 'PAYEE_MATCH' | 'ACCOUNT_VALIDATION' |
|
|
|
848
994
|
*/
|
|
849
995
|
type status3 = 'PENDING' | 'RESOLVED' | 'EXPIRED' | 'CANCELLED';
|
|
850
996
|
/**
|
|
851
|
-
* Confidence level derived from score
|
|
997
|
+
* Confidence level derived from score. Null for error-type reviews (ACCOUNT_VALIDATION/PIPELINE_ERROR) which carry no confidence.
|
|
852
998
|
*/
|
|
853
999
|
type confidenceLevel = 'HIGH' | 'MEDIUM' | 'LOW';
|
|
854
1000
|
type ReviewListResponseDto = {
|
|
@@ -890,7 +1036,7 @@ type DecisionOptionDto = {
|
|
|
890
1036
|
/**
|
|
891
1037
|
* The action value to submit (e.g., UPGRADE_REPLACE, ACCEPT)
|
|
892
1038
|
*/
|
|
893
|
-
value:
|
|
1039
|
+
value: 'UPGRADE_REPLACE' | 'LINK_KEEP_BOTH' | 'IGNORE_NEW' | 'CONFIRM_DIFFERENT' | 'ACCEPT' | 'REJECT' | 'ACCEPT_AND_LEARN' | 'CHOOSE_OTHER' | 'CANCEL' | 'FIX' | 'IGNORE';
|
|
894
1040
|
/**
|
|
895
1041
|
* i18n message key for display label (e.g., review.payee.accept.label)
|
|
896
1042
|
*/
|
|
@@ -904,6 +1050,10 @@ type DecisionOptionDto = {
|
|
|
904
1050
|
*/
|
|
905
1051
|
recommended?: boolean;
|
|
906
1052
|
};
|
|
1053
|
+
/**
|
|
1054
|
+
* The action value to submit (e.g., UPGRADE_REPLACE, ACCEPT)
|
|
1055
|
+
*/
|
|
1056
|
+
type value = 'UPGRADE_REPLACE' | 'LINK_KEEP_BOTH' | 'IGNORE_NEW' | 'CONFIRM_DIFFERENT' | 'ACCEPT' | 'REJECT' | 'ACCEPT_AND_LEARN' | 'CHOOSE_OTHER' | 'CANCEL' | 'FIX' | 'IGNORE';
|
|
907
1057
|
type ReviewDetailDto = {
|
|
908
1058
|
/**
|
|
909
1059
|
* Review item ID
|
|
@@ -922,9 +1072,9 @@ type ReviewDetailDto = {
|
|
|
922
1072
|
*/
|
|
923
1073
|
confidence: number;
|
|
924
1074
|
/**
|
|
925
|
-
* Confidence level derived from score
|
|
1075
|
+
* Confidence level derived from score. Null for error-type reviews (ACCOUNT_VALIDATION/PIPELINE_ERROR) which carry no confidence.
|
|
926
1076
|
*/
|
|
927
|
-
confidenceLevel: 'HIGH' | 'MEDIUM' | 'LOW';
|
|
1077
|
+
confidenceLevel: 'HIGH' | 'MEDIUM' | 'LOW' | null;
|
|
928
1078
|
/**
|
|
929
1079
|
* i18n message key for summary (e.g., review.summary.duplicate). Translate on frontend with summaryParams.
|
|
930
1080
|
*/
|
|
@@ -940,7 +1090,7 @@ type ReviewDetailDto = {
|
|
|
940
1090
|
*/
|
|
941
1091
|
matchReasons: Array<string>;
|
|
942
1092
|
/**
|
|
943
|
-
* Source type (
|
|
1093
|
+
* Source type (free-form string from transaction metadata, e.g. import, api)
|
|
944
1094
|
*/
|
|
945
1095
|
sourceType: string;
|
|
946
1096
|
/**
|
|
@@ -992,9 +1142,9 @@ type ReviewDetailDto = {
|
|
|
992
1142
|
};
|
|
993
1143
|
type ResolveReviewDto = {
|
|
994
1144
|
/**
|
|
995
|
-
* Decision action.
|
|
1145
|
+
* Decision action. Valid actions vary by review type — see DecisionOptionDto.value returned by the review detail endpoint.
|
|
996
1146
|
*/
|
|
997
|
-
action:
|
|
1147
|
+
action: 'UPGRADE_REPLACE' | 'LINK_KEEP_BOTH' | 'IGNORE_NEW' | 'CONFIRM_DIFFERENT' | 'ACCEPT' | 'REJECT' | 'ACCEPT_AND_LEARN' | 'CHOOSE_OTHER' | 'CANCEL' | 'FIX' | 'IGNORE';
|
|
998
1148
|
/**
|
|
999
1149
|
* Additional data for the decision (e.g., selected account ID)
|
|
1000
1150
|
*/
|
|
@@ -1002,6 +1152,10 @@ type ResolveReviewDto = {
|
|
|
1002
1152
|
[key: string]: unknown;
|
|
1003
1153
|
};
|
|
1004
1154
|
};
|
|
1155
|
+
/**
|
|
1156
|
+
* Decision action. Valid actions vary by review type — see DecisionOptionDto.value returned by the review detail endpoint.
|
|
1157
|
+
*/
|
|
1158
|
+
type action = 'UPGRADE_REPLACE' | 'LINK_KEEP_BOTH' | 'IGNORE_NEW' | 'CONFIRM_DIFFERENT' | 'ACCEPT' | 'REJECT' | 'ACCEPT_AND_LEARN' | 'CHOOSE_OTHER' | 'CANCEL' | 'FIX' | 'IGNORE';
|
|
1005
1159
|
type ResolveResultDto = {
|
|
1006
1160
|
/**
|
|
1007
1161
|
* Whether resolution was successful
|
|
@@ -1018,17 +1172,17 @@ type ResolveResultDto = {
|
|
|
1018
1172
|
[key: string]: string;
|
|
1019
1173
|
};
|
|
1020
1174
|
/**
|
|
1021
|
-
* Resolution ID for undo
|
|
1175
|
+
* Resolution ID for undo. Absent when the resolver rejected the decision (review stayed PENDING).
|
|
1022
1176
|
*/
|
|
1023
|
-
resolutionId
|
|
1177
|
+
resolutionId?: string;
|
|
1024
1178
|
/**
|
|
1025
1179
|
* Whether this decision can be undone
|
|
1026
1180
|
*/
|
|
1027
|
-
canUndo
|
|
1181
|
+
canUndo?: boolean;
|
|
1028
1182
|
/**
|
|
1029
1183
|
* Deadline for undo (24h from resolution)
|
|
1030
1184
|
*/
|
|
1031
|
-
undoDeadline
|
|
1185
|
+
undoDeadline?: string;
|
|
1032
1186
|
/**
|
|
1033
1187
|
* Rule ID if learning was triggered (ACCEPT_AND_LEARN actions). Use this to deep-link to the rule management page.
|
|
1034
1188
|
*/
|
|
@@ -1056,7 +1210,7 @@ type BatchResolveDto = {
|
|
|
1056
1210
|
/**
|
|
1057
1211
|
* Decision action to apply to all items
|
|
1058
1212
|
*/
|
|
1059
|
-
action:
|
|
1213
|
+
action: 'UPGRADE_REPLACE' | 'LINK_KEEP_BOTH' | 'IGNORE_NEW' | 'CONFIRM_DIFFERENT' | 'ACCEPT' | 'REJECT' | 'ACCEPT_AND_LEARN' | 'CHOOSE_OTHER' | 'CANCEL' | 'FIX' | 'IGNORE';
|
|
1060
1214
|
/**
|
|
1061
1215
|
* Additional data for the decision
|
|
1062
1216
|
*/
|
|
@@ -2535,6 +2689,92 @@ type UpdatePropertyDto = {
|
|
|
2535
2689
|
*/
|
|
2536
2690
|
value: string;
|
|
2537
2691
|
};
|
|
2692
|
+
type CreateBeanEventDto = {
|
|
2693
|
+
/**
|
|
2694
|
+
* Life event date (ISO 8601)
|
|
2695
|
+
*/
|
|
2696
|
+
date: string;
|
|
2697
|
+
/**
|
|
2698
|
+
* Life event type (e.g., "employer", "location", "marital-status") — user-defined, no enum constraint at engine layer
|
|
2699
|
+
*/
|
|
2700
|
+
type: string;
|
|
2701
|
+
/**
|
|
2702
|
+
* Life event description. Empty string is a VALID value (distinct from absence).
|
|
2703
|
+
*/
|
|
2704
|
+
description: string;
|
|
2705
|
+
/**
|
|
2706
|
+
* Product-side metadata (lives in BeanEvent.meta JSON, never in engine Event fields)
|
|
2707
|
+
*/
|
|
2708
|
+
meta?: {
|
|
2709
|
+
[key: string]: unknown;
|
|
2710
|
+
};
|
|
2711
|
+
};
|
|
2712
|
+
type EventResponseDto = {
|
|
2713
|
+
/**
|
|
2714
|
+
* Unique identifier
|
|
2715
|
+
*/
|
|
2716
|
+
id: string;
|
|
2717
|
+
/**
|
|
2718
|
+
* User ID (owner of the life event)
|
|
2719
|
+
*/
|
|
2720
|
+
userId: string;
|
|
2721
|
+
/**
|
|
2722
|
+
* Life event date (ISO 8601 format)
|
|
2723
|
+
*/
|
|
2724
|
+
date: string;
|
|
2725
|
+
/**
|
|
2726
|
+
* Life event type (user-defined, e.g., "employer", "location")
|
|
2727
|
+
*/
|
|
2728
|
+
type: string;
|
|
2729
|
+
/**
|
|
2730
|
+
* Life event description. May be an empty string (a valid value distinct from absence).
|
|
2731
|
+
*/
|
|
2732
|
+
description: string;
|
|
2733
|
+
/**
|
|
2734
|
+
* Product-side metadata (free-form JSON)
|
|
2735
|
+
*/
|
|
2736
|
+
meta: {
|
|
2737
|
+
[key: string]: unknown;
|
|
2738
|
+
};
|
|
2739
|
+
/**
|
|
2740
|
+
* Creation timestamp
|
|
2741
|
+
*/
|
|
2742
|
+
createdAt: string;
|
|
2743
|
+
/**
|
|
2744
|
+
* Last update timestamp. Also emitted as the ETag response header for If-Match optimistic concurrency.
|
|
2745
|
+
*/
|
|
2746
|
+
updatedAt: string;
|
|
2747
|
+
};
|
|
2748
|
+
type EventListResponseDto = {
|
|
2749
|
+
/**
|
|
2750
|
+
* List of life events
|
|
2751
|
+
*/
|
|
2752
|
+
items: Array<EventResponseDto>;
|
|
2753
|
+
/**
|
|
2754
|
+
* Total number of life events matching the query
|
|
2755
|
+
*/
|
|
2756
|
+
total: number;
|
|
2757
|
+
};
|
|
2758
|
+
type UpdateBeanEventDto = {
|
|
2759
|
+
/**
|
|
2760
|
+
* Life event date (ISO 8601)
|
|
2761
|
+
*/
|
|
2762
|
+
date?: string;
|
|
2763
|
+
/**
|
|
2764
|
+
* Life event type (user-defined)
|
|
2765
|
+
*/
|
|
2766
|
+
type?: string;
|
|
2767
|
+
/**
|
|
2768
|
+
* Life event description. Empty string is a VALID value (distinct from absence).
|
|
2769
|
+
*/
|
|
2770
|
+
description?: string;
|
|
2771
|
+
/**
|
|
2772
|
+
* Product-side metadata (free-form JSON)
|
|
2773
|
+
*/
|
|
2774
|
+
meta?: {
|
|
2775
|
+
[key: string]: unknown;
|
|
2776
|
+
};
|
|
2777
|
+
};
|
|
2538
2778
|
type FileImportDto = {
|
|
2539
2779
|
/**
|
|
2540
2780
|
* Bill file to import (CSV, PDF, OFX, etc.)
|
|
@@ -2916,6 +3156,7 @@ type SupportedProvidersResponseDto = {
|
|
|
2916
3156
|
providers: Array<string>;
|
|
2917
3157
|
};
|
|
2918
3158
|
type ParserTelemetryReportDto = unknown;
|
|
3159
|
+
type UncoveredFormatMissDto = unknown;
|
|
2919
3160
|
type ProcessNlpDto = {
|
|
2920
3161
|
/**
|
|
2921
3162
|
* Natural language text describing a transaction (Chinese)
|
|
@@ -3432,7 +3673,7 @@ type status4 = 'success' | 'pending' | 'error';
|
|
|
3432
3673
|
/**
|
|
3433
3674
|
* Action taken or requested
|
|
3434
3675
|
*/
|
|
3435
|
-
type
|
|
3676
|
+
type action2 = 'created' | 'ask' | 'confirm' | 'confirm_duplicate' | 'confirm_rule' | 'confirm_account' | 'confirm_payee' | 'cancel';
|
|
3436
3677
|
/**
|
|
3437
3678
|
* Transaction intent detected by EntityRouter (v6.0: 5 core intents). Frontend uses this to render scenario-specific form fields.
|
|
3438
3679
|
*/
|
|
@@ -3650,7 +3891,15 @@ type AccountItemWithAssetClassDto = {
|
|
|
3650
3891
|
* Risk level
|
|
3651
3892
|
*/
|
|
3652
3893
|
riskLevel?: string;
|
|
3894
|
+
/**
|
|
3895
|
+
* ADR-0105 classification provenance (holding level always; account level only on FALLBACK)
|
|
3896
|
+
*/
|
|
3897
|
+
source?: 'USER_META' | 'FIAT_CURRENCY' | 'OPENBB_MAPPING' | 'FALLBACK';
|
|
3653
3898
|
};
|
|
3899
|
+
/**
|
|
3900
|
+
* ADR-0105 classification provenance (holding level always; account level only on FALLBACK)
|
|
3901
|
+
*/
|
|
3902
|
+
type source2 = 'USER_META' | 'FIAT_CURRENCY' | 'OPENBB_MAPPING' | 'FALLBACK';
|
|
3654
3903
|
type AssetClassGroupDto = {
|
|
3655
3904
|
/**
|
|
3656
3905
|
* Asset class name
|
|
@@ -3712,6 +3961,12 @@ type AssetClassSummaryDto = {
|
|
|
3712
3961
|
* Exchange rate warnings
|
|
3713
3962
|
*/
|
|
3714
3963
|
warnings?: Array<AccountExchangeRateWarningDto>;
|
|
3964
|
+
/**
|
|
3965
|
+
* ADR-0105 §4 fallback provenance stats (holding level only). valueRatio is the grey-area share of total converted value; count is the number of source=FALLBACK holdings.
|
|
3966
|
+
*/
|
|
3967
|
+
fallback?: {
|
|
3968
|
+
[key: string]: unknown;
|
|
3969
|
+
};
|
|
3715
3970
|
};
|
|
3716
3971
|
type AssetClassAccountsResponseDto = {
|
|
3717
3972
|
/**
|
|
@@ -3722,6 +3977,54 @@ type AssetClassAccountsResponseDto = {
|
|
|
3722
3977
|
* Summary statistics
|
|
3723
3978
|
*/
|
|
3724
3979
|
summary: AssetClassSummaryDto;
|
|
3980
|
+
/**
|
|
3981
|
+
* ADR-0105 §6 holding-level grey-area bucket (source=FALLBACK holdings peeled out of groups). Present only for groupBy=holdingAssetClass when FALLBACK holdings exist.
|
|
3982
|
+
*/
|
|
3983
|
+
uncategorized?: AssetClassGroupDto;
|
|
3984
|
+
};
|
|
3985
|
+
type HoldingAssetClassAccountSliceDto = {
|
|
3986
|
+
/**
|
|
3987
|
+
* Account ID
|
|
3988
|
+
*/
|
|
3989
|
+
accountId: string;
|
|
3990
|
+
/**
|
|
3991
|
+
* Full account path
|
|
3992
|
+
*/
|
|
3993
|
+
accountPath: string;
|
|
3994
|
+
/**
|
|
3995
|
+
* Currency of the holding with the largest converted base value; undefined when no holding is convertible
|
|
3996
|
+
*/
|
|
3997
|
+
accountCurrency?: string;
|
|
3998
|
+
/**
|
|
3999
|
+
* Account's market value in base currency (Σ converted holdings; grey bucket included)
|
|
4000
|
+
*/
|
|
4001
|
+
marketValueBase: string;
|
|
4002
|
+
/**
|
|
4003
|
+
* Share of the global total (0-100). 0 when globalTotal is zero (no NaN/Infinity).
|
|
4004
|
+
*/
|
|
4005
|
+
shareOfTotalPct: number;
|
|
4006
|
+
/**
|
|
4007
|
+
* Per-account asset-class breakdown
|
|
4008
|
+
*/
|
|
4009
|
+
groups: Array<AssetClassGroupDto>;
|
|
4010
|
+
/**
|
|
4011
|
+
* Per-account grey bucket (source=FALLBACK holdings, incl. broker cash)
|
|
4012
|
+
*/
|
|
4013
|
+
uncategorized?: AssetClassGroupDto;
|
|
4014
|
+
/**
|
|
4015
|
+
* Every holding row for this account (account ID in each row’s `id` field)
|
|
4016
|
+
*/
|
|
4017
|
+
holdings: Array<AccountItemWithAssetClassDto>;
|
|
4018
|
+
};
|
|
4019
|
+
type HoldingAssetClassCrossAccountResponseDto = {
|
|
4020
|
+
/**
|
|
4021
|
+
* Merged cross-account holding aggregation
|
|
4022
|
+
*/
|
|
4023
|
+
global: AssetClassAccountsResponseDto;
|
|
4024
|
+
/**
|
|
4025
|
+
* Per-account slices
|
|
4026
|
+
*/
|
|
4027
|
+
byAccount: Array<HoldingAssetClassAccountSliceDto>;
|
|
3725
4028
|
};
|
|
3726
4029
|
type CashFlowByCurrencyDto = {
|
|
3727
4030
|
/**
|
|
@@ -3799,61 +4102,392 @@ type CashFlowResponseDto = {
|
|
|
3799
4102
|
*/
|
|
3800
4103
|
warnings?: Array<ExchangeRateWarningDto>;
|
|
3801
4104
|
};
|
|
3802
|
-
type
|
|
4105
|
+
type CategoryGroupDto = {
|
|
3803
4106
|
/**
|
|
3804
|
-
*
|
|
4107
|
+
* Functional category (account-path Group segment); regional and universal account paths merge under it
|
|
3805
4108
|
*/
|
|
3806
|
-
|
|
4109
|
+
category: string;
|
|
3807
4110
|
/**
|
|
3808
|
-
*
|
|
4111
|
+
* Converted total expense in base currency
|
|
3809
4112
|
*/
|
|
3810
|
-
|
|
3811
|
-
};
|
|
3812
|
-
type TimeSeriesPointDto = {
|
|
4113
|
+
totalExpense: string;
|
|
3813
4114
|
/**
|
|
3814
|
-
*
|
|
4115
|
+
* Share of grand total (0-100); 0 when grand total is 0
|
|
3815
4116
|
*/
|
|
3816
|
-
|
|
4117
|
+
sharePct: number;
|
|
3817
4118
|
/**
|
|
3818
|
-
*
|
|
4119
|
+
* Raw (unconverted) expense per currency
|
|
3819
4120
|
*/
|
|
3820
|
-
|
|
4121
|
+
balanceByCurrency: Array<BalanceByCurrencyDto>;
|
|
3821
4122
|
/**
|
|
3822
|
-
*
|
|
4123
|
+
* Converted total in base currency (omitted when FX missing for all currencies in this category)
|
|
3823
4124
|
*/
|
|
3824
|
-
|
|
3825
|
-
|
|
3826
|
-
|
|
4125
|
+
convertedBalance?: string;
|
|
4126
|
+
};
|
|
4127
|
+
type ExpensesByCategorySummaryDto = {
|
|
3827
4128
|
/**
|
|
3828
|
-
*
|
|
4129
|
+
* Total expense across all categories (converted; convertible categories only)
|
|
3829
4130
|
*/
|
|
3830
|
-
|
|
3831
|
-
};
|
|
3832
|
-
type TrendSummaryDto = {
|
|
4131
|
+
totalExpense: string;
|
|
3833
4132
|
/**
|
|
3834
|
-
*
|
|
4133
|
+
* Number of categories
|
|
3835
4134
|
*/
|
|
3836
|
-
|
|
4135
|
+
categoryCount: number;
|
|
4136
|
+
};
|
|
4137
|
+
type ExpensesByCategoryResponseDto = {
|
|
3837
4138
|
/**
|
|
3838
|
-
*
|
|
4139
|
+
* Period requested
|
|
3839
4140
|
*/
|
|
3840
|
-
|
|
4141
|
+
period: string;
|
|
3841
4142
|
/**
|
|
3842
|
-
*
|
|
4143
|
+
* Base currency for converted values
|
|
3843
4144
|
*/
|
|
3844
|
-
|
|
4145
|
+
baseCurrency: string;
|
|
3845
4146
|
/**
|
|
3846
|
-
*
|
|
4147
|
+
* Expense groups by functional category, sorted by converted total desc
|
|
3847
4148
|
*/
|
|
3848
|
-
|
|
3849
|
-
};
|
|
3850
|
-
type MultiCurrencyPointDto = {
|
|
4149
|
+
groups: Array<CategoryGroupDto>;
|
|
3851
4150
|
/**
|
|
3852
|
-
*
|
|
4151
|
+
* Summary statistics
|
|
3853
4152
|
*/
|
|
3854
|
-
|
|
4153
|
+
summary: ExpensesByCategorySummaryDto;
|
|
3855
4154
|
/**
|
|
3856
|
-
*
|
|
4155
|
+
* Exchange rate warnings (e.g. missing rate for a currency)
|
|
4156
|
+
*/
|
|
4157
|
+
warnings?: Array<ExchangeRateWarningDto>;
|
|
4158
|
+
};
|
|
4159
|
+
type MonetaryDto = {
|
|
4160
|
+
/**
|
|
4161
|
+
* Amount (Decimal string)
|
|
4162
|
+
*/
|
|
4163
|
+
amount: string;
|
|
4164
|
+
/**
|
|
4165
|
+
* ISO 4217 currency
|
|
4166
|
+
*/
|
|
4167
|
+
currency: string;
|
|
4168
|
+
/**
|
|
4169
|
+
* Converted to user base currency (Decimal string)
|
|
4170
|
+
*/
|
|
4171
|
+
baseCcyEquivalent?: {
|
|
4172
|
+
[key: string]: unknown;
|
|
4173
|
+
} | null;
|
|
4174
|
+
};
|
|
4175
|
+
type CurrentPriceDto = {
|
|
4176
|
+
/**
|
|
4177
|
+
* Price amount (Decimal string)
|
|
4178
|
+
*/
|
|
4179
|
+
amount: string;
|
|
4180
|
+
/**
|
|
4181
|
+
* Price currency (ISO 4217)
|
|
4182
|
+
*/
|
|
4183
|
+
currency: string;
|
|
4184
|
+
/**
|
|
4185
|
+
* Price date (ISO 8601)
|
|
4186
|
+
*/
|
|
4187
|
+
date: string;
|
|
4188
|
+
/**
|
|
4189
|
+
* Price source
|
|
4190
|
+
*/
|
|
4191
|
+
source: 'USER_OVERRIDE' | 'OPENBB_EQUITY' | 'OPENBB_CURRENCY';
|
|
4192
|
+
};
|
|
4193
|
+
/**
|
|
4194
|
+
* Price source
|
|
4195
|
+
*/
|
|
4196
|
+
type source3 = 'USER_OVERRIDE' | 'OPENBB_EQUITY' | 'OPENBB_CURRENCY';
|
|
4197
|
+
type FxRateDto = {
|
|
4198
|
+
from: string;
|
|
4199
|
+
to: string;
|
|
4200
|
+
/**
|
|
4201
|
+
* FX rate (Decimal string)
|
|
4202
|
+
*/
|
|
4203
|
+
rate: string;
|
|
4204
|
+
/**
|
|
4205
|
+
* Rate date (ISO 8601)
|
|
4206
|
+
*/
|
|
4207
|
+
date: string;
|
|
4208
|
+
};
|
|
4209
|
+
type HoldingPnlRowDto = {
|
|
4210
|
+
/**
|
|
4211
|
+
* Account UUID
|
|
4212
|
+
*/
|
|
4213
|
+
accountId: string;
|
|
4214
|
+
/**
|
|
4215
|
+
* Full account path
|
|
4216
|
+
*/
|
|
4217
|
+
accountPath: string;
|
|
4218
|
+
/**
|
|
4219
|
+
* Account settlement currency (ISO 4217), from cost currency
|
|
4220
|
+
*/
|
|
4221
|
+
accountCcy?: {
|
|
4222
|
+
[key: string]: unknown;
|
|
4223
|
+
} | null;
|
|
4224
|
+
/**
|
|
4225
|
+
* Broker type derived from Platform.type
|
|
4226
|
+
*/
|
|
4227
|
+
brokerType?: {
|
|
4228
|
+
[key: string]: unknown;
|
|
4229
|
+
} | null;
|
|
4230
|
+
/**
|
|
4231
|
+
* Commodity symbol
|
|
4232
|
+
*/
|
|
4233
|
+
symbol: string;
|
|
4234
|
+
/**
|
|
4235
|
+
* Chart segment token (libs/common resolver)
|
|
4236
|
+
*/
|
|
4237
|
+
chartToken: 'equity' | 'fund' | 'bond' | 'cash' | 'other';
|
|
4238
|
+
assetClass: string;
|
|
4239
|
+
assetSubClass?: {
|
|
4240
|
+
[key: string]: unknown;
|
|
4241
|
+
} | null;
|
|
4242
|
+
/**
|
|
4243
|
+
* Net held units (Decimal string)
|
|
4244
|
+
*/
|
|
4245
|
+
units: string;
|
|
4246
|
+
/**
|
|
4247
|
+
* Average cost per unit; null when cost currency conflicts or no cost
|
|
4248
|
+
*/
|
|
4249
|
+
averageCostPerUnit?: MonetaryDto | null;
|
|
4250
|
+
/**
|
|
4251
|
+
* Cost basis of held units
|
|
4252
|
+
*/
|
|
4253
|
+
costBasis?: MonetaryDto | null;
|
|
4254
|
+
/**
|
|
4255
|
+
* Market value at asOf price
|
|
4256
|
+
*/
|
|
4257
|
+
marketValue?: MonetaryDto | null;
|
|
4258
|
+
/**
|
|
4259
|
+
* Price used for market value
|
|
4260
|
+
*/
|
|
4261
|
+
currentPrice?: CurrentPriceDto | null;
|
|
4262
|
+
/**
|
|
4263
|
+
* Unrealized P&L in base currency (Decimal string); null when any FX/price missing
|
|
4264
|
+
*/
|
|
4265
|
+
unrealizedPnlBase?: {
|
|
4266
|
+
[key: string]: unknown;
|
|
4267
|
+
} | null;
|
|
4268
|
+
/**
|
|
4269
|
+
* Unrealized P&L % (Decimal string)
|
|
4270
|
+
*/
|
|
4271
|
+
unrealizedPnlPct?: {
|
|
4272
|
+
[key: string]: unknown;
|
|
4273
|
+
} | null;
|
|
4274
|
+
/**
|
|
4275
|
+
* Historical FX rate applied to cost basis
|
|
4276
|
+
*/
|
|
4277
|
+
costFxRate?: FxRateDto | null;
|
|
4278
|
+
/**
|
|
4279
|
+
* FX rate applied to market value
|
|
4280
|
+
*/
|
|
4281
|
+
marketFxRate?: FxRateDto | null;
|
|
4282
|
+
/**
|
|
4283
|
+
* Share of invested assets % (Decimal string); only for invested chartTokens
|
|
4284
|
+
*/
|
|
4285
|
+
pctOfInvestedAssets?: {
|
|
4286
|
+
[key: string]: unknown;
|
|
4287
|
+
} | null;
|
|
4288
|
+
/**
|
|
4289
|
+
* Cumulative realized P&L on sold lots (asOf-date cutoff); null when the method has no applicable sells, a sell lacks a price, or any required FX rate is missing (never-mix). When a sell spans multiple currencies (cross-currency sale), amount and currency reflect the base currency; baseCcyEquivalent is always the authoritative dual-FX figure
|
|
4290
|
+
*/
|
|
4291
|
+
realizedPnl?: MonetaryDto | null;
|
|
4292
|
+
};
|
|
4293
|
+
/**
|
|
4294
|
+
* Chart segment token (libs/common resolver)
|
|
4295
|
+
*/
|
|
4296
|
+
type chartToken = 'equity' | 'fund' | 'bond' | 'cash' | 'other';
|
|
4297
|
+
type HoldingPnlWarningDto = {
|
|
4298
|
+
/**
|
|
4299
|
+
* Warning type
|
|
4300
|
+
*/
|
|
4301
|
+
type: 'MISSING_COST_FX_RATE' | 'MISSING_MARKET_FX_RATE' | 'MISSING_SALE_PRICE' | 'MISSING_REALIZED_FX_RATE' | 'OVERSOLD_LOTS' | 'NO_PRICE' | 'MIXED_COST_CURRENCY';
|
|
4302
|
+
symbol?: {
|
|
4303
|
+
[key: string]: unknown;
|
|
4304
|
+
} | null;
|
|
4305
|
+
accountId?: {
|
|
4306
|
+
[key: string]: unknown;
|
|
4307
|
+
} | null;
|
|
4308
|
+
currency?: {
|
|
4309
|
+
[key: string]: unknown;
|
|
4310
|
+
} | null;
|
|
4311
|
+
};
|
|
4312
|
+
/**
|
|
4313
|
+
* Warning type
|
|
4314
|
+
*/
|
|
4315
|
+
type type4 = 'MISSING_COST_FX_RATE' | 'MISSING_MARKET_FX_RATE' | 'MISSING_SALE_PRICE' | 'MISSING_REALIZED_FX_RATE' | 'OVERSOLD_LOTS' | 'NO_PRICE' | 'MIXED_COST_CURRENCY';
|
|
4316
|
+
type HoldingPnlResponseDto = {
|
|
4317
|
+
asOfDate: string;
|
|
4318
|
+
baseCurrency: string;
|
|
4319
|
+
/**
|
|
4320
|
+
* Realized-P&L lot-matching method (FIFO or average). Unrealized cost basis remains average regardless of this value (#473).
|
|
4321
|
+
*/
|
|
4322
|
+
method: 'average' | 'FIFO';
|
|
4323
|
+
rows: Array<HoldingPnlRowDto>;
|
|
4324
|
+
warnings: Array<HoldingPnlWarningDto>;
|
|
4325
|
+
};
|
|
4326
|
+
/**
|
|
4327
|
+
* Realized-P&L lot-matching method (FIFO or average). Unrealized cost basis remains average regardless of this value (#473).
|
|
4328
|
+
*/
|
|
4329
|
+
type method = 'average' | 'FIFO';
|
|
4330
|
+
type CreateBeanPriceDto = {
|
|
4331
|
+
/**
|
|
4332
|
+
* Currency being priced (e.g., USD, AAPL, BTC)
|
|
4333
|
+
*/
|
|
4334
|
+
currency: string;
|
|
4335
|
+
/**
|
|
4336
|
+
* Quote currency (pricing currency, e.g., CNY, EUR)
|
|
4337
|
+
*/
|
|
4338
|
+
quoteCurrency: string;
|
|
4339
|
+
/**
|
|
4340
|
+
* Price amount (MUST be >= 0 per Beancount spec, supports up to 15 decimal places). Zero allowed for conversion entries, negative strictly prohibited.
|
|
4341
|
+
*/
|
|
4342
|
+
amount: number;
|
|
4343
|
+
/**
|
|
4344
|
+
* Price date (ISO 8601 format)
|
|
4345
|
+
*/
|
|
4346
|
+
date: string;
|
|
4347
|
+
/**
|
|
4348
|
+
* Metadata (validated by Zod schema, max field lengths enforced)
|
|
4349
|
+
*/
|
|
4350
|
+
metadata?: {
|
|
4351
|
+
[key: string]: unknown;
|
|
4352
|
+
};
|
|
4353
|
+
};
|
|
4354
|
+
type PriceResponseDto = {
|
|
4355
|
+
/**
|
|
4356
|
+
* Unique identifier
|
|
4357
|
+
*/
|
|
4358
|
+
id: string;
|
|
4359
|
+
/**
|
|
4360
|
+
* User ID (owner of the price)
|
|
4361
|
+
*/
|
|
4362
|
+
userId: string;
|
|
4363
|
+
/**
|
|
4364
|
+
* Currency being priced (e.g., USD, AAPL, BTC)
|
|
4365
|
+
*/
|
|
4366
|
+
currency: string;
|
|
4367
|
+
/**
|
|
4368
|
+
* Quote currency (pricing currency, e.g., USD, CNY)
|
|
4369
|
+
*/
|
|
4370
|
+
quoteCurrency: string;
|
|
4371
|
+
/**
|
|
4372
|
+
* Price amount (corresponds to Beancount Amount.number). Supports up to 15 decimal places.
|
|
4373
|
+
*/
|
|
4374
|
+
amount: number;
|
|
4375
|
+
/**
|
|
4376
|
+
* Price date (ISO 8601 format). Represents the date this price was valid.
|
|
4377
|
+
*/
|
|
4378
|
+
date: string;
|
|
4379
|
+
/**
|
|
4380
|
+
* Metadata (corresponds to Beancount meta field). Contains source, confidence, note, etc.
|
|
4381
|
+
*/
|
|
4382
|
+
meta: {
|
|
4383
|
+
[key: string]: unknown;
|
|
4384
|
+
};
|
|
4385
|
+
/**
|
|
4386
|
+
* Creation timestamp
|
|
4387
|
+
*/
|
|
4388
|
+
createdAt: string;
|
|
4389
|
+
/**
|
|
4390
|
+
* Last update timestamp
|
|
4391
|
+
*/
|
|
4392
|
+
updatedAt: string;
|
|
4393
|
+
};
|
|
4394
|
+
type PriceListResponseDto = {
|
|
4395
|
+
/**
|
|
4396
|
+
* List of prices
|
|
4397
|
+
*/
|
|
4398
|
+
items: Array<PriceResponseDto>;
|
|
4399
|
+
/**
|
|
4400
|
+
* Total number of prices
|
|
4401
|
+
*/
|
|
4402
|
+
total: number;
|
|
4403
|
+
};
|
|
4404
|
+
type UpdateBeanPriceDto = {
|
|
4405
|
+
/**
|
|
4406
|
+
* Currency being priced
|
|
4407
|
+
*/
|
|
4408
|
+
currency?: string;
|
|
4409
|
+
/**
|
|
4410
|
+
* Quote currency (pricing currency)
|
|
4411
|
+
*/
|
|
4412
|
+
quoteCurrency?: string;
|
|
4413
|
+
/**
|
|
4414
|
+
* Price amount (MUST be >= 0 per Beancount spec)
|
|
4415
|
+
*/
|
|
4416
|
+
amount?: number;
|
|
4417
|
+
/**
|
|
4418
|
+
* Price date (ISO 8601 format)
|
|
4419
|
+
*/
|
|
4420
|
+
date?: string;
|
|
4421
|
+
/**
|
|
4422
|
+
* Metadata
|
|
4423
|
+
*/
|
|
4424
|
+
metadata?: {
|
|
4425
|
+
[key: string]: unknown;
|
|
4426
|
+
};
|
|
4427
|
+
};
|
|
4428
|
+
type CurrencyBalanceDto = {
|
|
4429
|
+
/**
|
|
4430
|
+
* ISO 4217 currency code
|
|
4431
|
+
*/
|
|
4432
|
+
currency: string;
|
|
4433
|
+
/**
|
|
4434
|
+
* Balance amount
|
|
4435
|
+
*/
|
|
4436
|
+
balance: string;
|
|
4437
|
+
};
|
|
4438
|
+
type TimeSeriesPointDto = {
|
|
4439
|
+
/**
|
|
4440
|
+
* Date in YYYY-MM-DD format
|
|
4441
|
+
*/
|
|
4442
|
+
date: string;
|
|
4443
|
+
/**
|
|
4444
|
+
* Value at this date (in base currency)
|
|
4445
|
+
*/
|
|
4446
|
+
value: string;
|
|
4447
|
+
/**
|
|
4448
|
+
* Change from previous point
|
|
4449
|
+
*/
|
|
4450
|
+
change?: {
|
|
4451
|
+
[key: string]: unknown;
|
|
4452
|
+
};
|
|
4453
|
+
/**
|
|
4454
|
+
* Total assets at this date (in base currency)
|
|
4455
|
+
*/
|
|
4456
|
+
assets?: string;
|
|
4457
|
+
/**
|
|
4458
|
+
* Total liabilities at this date (in base currency)
|
|
4459
|
+
*/
|
|
4460
|
+
liabilities?: string;
|
|
4461
|
+
/**
|
|
4462
|
+
* Multi-currency breakdown for this point
|
|
4463
|
+
*/
|
|
4464
|
+
byCurrency?: Array<CurrencyBalanceDto>;
|
|
4465
|
+
};
|
|
4466
|
+
type TrendSummaryDto = {
|
|
4467
|
+
/**
|
|
4468
|
+
* Value at start of period
|
|
4469
|
+
*/
|
|
4470
|
+
startValue: string;
|
|
4471
|
+
/**
|
|
4472
|
+
* Value at end of period
|
|
4473
|
+
*/
|
|
4474
|
+
endValue: string;
|
|
4475
|
+
/**
|
|
4476
|
+
* Total change over period
|
|
4477
|
+
*/
|
|
4478
|
+
totalChange: string;
|
|
4479
|
+
/**
|
|
4480
|
+
* Total change percentage
|
|
4481
|
+
*/
|
|
4482
|
+
totalChangePercentage: string;
|
|
4483
|
+
};
|
|
4484
|
+
type MultiCurrencyPointDto = {
|
|
4485
|
+
/**
|
|
4486
|
+
* Date in YYYY-MM-DD format
|
|
4487
|
+
*/
|
|
4488
|
+
date: string;
|
|
4489
|
+
/**
|
|
4490
|
+
* Balances by currency
|
|
3857
4491
|
*/
|
|
3858
4492
|
byCurrency: Array<CurrencyBalanceDto>;
|
|
3859
4493
|
};
|
|
@@ -3887,6 +4521,68 @@ type PortfolioTrendsResponseDto = {
|
|
|
3887
4521
|
*/
|
|
3888
4522
|
warnings?: Array<ExchangeRateWarningDto>;
|
|
3889
4523
|
};
|
|
4524
|
+
type CashFlowPointDto = {
|
|
4525
|
+
/**
|
|
4526
|
+
* Month key (YYYY-MM)
|
|
4527
|
+
*/
|
|
4528
|
+
month: string;
|
|
4529
|
+
/**
|
|
4530
|
+
* Income in base currency (absolute, converted)
|
|
4531
|
+
*/
|
|
4532
|
+
income: string;
|
|
4533
|
+
/**
|
|
4534
|
+
* Expense in base currency (absolute, converted)
|
|
4535
|
+
*/
|
|
4536
|
+
expense: string;
|
|
4537
|
+
/**
|
|
4538
|
+
* netSavings = income − expense (savings positive)
|
|
4539
|
+
*/
|
|
4540
|
+
netSavings: string;
|
|
4541
|
+
};
|
|
4542
|
+
type CashFlowTrendSummaryDto = {
|
|
4543
|
+
/**
|
|
4544
|
+
* Total income across the period
|
|
4545
|
+
*/
|
|
4546
|
+
totalIncome: string;
|
|
4547
|
+
/**
|
|
4548
|
+
* Total expense across the period
|
|
4549
|
+
*/
|
|
4550
|
+
totalExpense: string;
|
|
4551
|
+
/**
|
|
4552
|
+
* income − expense across the period
|
|
4553
|
+
*/
|
|
4554
|
+
totalNetSavings: string;
|
|
4555
|
+
/**
|
|
4556
|
+
* totalNetSavings divided by the window length (N months, incl. zero-filled)
|
|
4557
|
+
*/
|
|
4558
|
+
averageMonthlyNetSavings: string;
|
|
4559
|
+
};
|
|
4560
|
+
type CashFlowTrendsResponseDto = {
|
|
4561
|
+
/**
|
|
4562
|
+
* Monthly cash-flow series (fixed N-month window, zero-filled)
|
|
4563
|
+
*/
|
|
4564
|
+
series: Array<CashFlowPointDto>;
|
|
4565
|
+
/**
|
|
4566
|
+
* Period totals
|
|
4567
|
+
*/
|
|
4568
|
+
summary: CashFlowTrendSummaryDto;
|
|
4569
|
+
/**
|
|
4570
|
+
* Period requested
|
|
4571
|
+
*/
|
|
4572
|
+
period: string;
|
|
4573
|
+
/**
|
|
4574
|
+
* Data granularity (v1 returns month buckets)
|
|
4575
|
+
*/
|
|
4576
|
+
granularity: string;
|
|
4577
|
+
/**
|
|
4578
|
+
* Base currency for converted values
|
|
4579
|
+
*/
|
|
4580
|
+
currency: string;
|
|
4581
|
+
/**
|
|
4582
|
+
* Exchange rate warnings (e.g. missing rate for a currency)
|
|
4583
|
+
*/
|
|
4584
|
+
warnings?: Array<ExchangeRateWarningDto>;
|
|
4585
|
+
};
|
|
3890
4586
|
type GenerateSnapshotBody = unknown;
|
|
3891
4587
|
type GenerateSnapshotResponse = unknown;
|
|
3892
4588
|
type BackfillSnapshotsBody = unknown;
|
|
@@ -4043,6 +4739,10 @@ type TransactionControllerListData = {
|
|
|
4043
4739
|
* Filter by account ID (transactions with postings to this account)
|
|
4044
4740
|
*/
|
|
4045
4741
|
accountId?: string;
|
|
4742
|
+
/**
|
|
4743
|
+
* Filter by ADR-0075 functional category (Group segment); matches any posting to an Expenses/Income account whose derived Group segment equals this value
|
|
4744
|
+
*/
|
|
4745
|
+
category?: string;
|
|
4046
4746
|
/**
|
|
4047
4747
|
* Filter by start date (inclusive), format: YYYY-MM-DD
|
|
4048
4748
|
*/
|
|
@@ -4081,6 +4781,37 @@ type TransactionControllerCreateBatchData = {
|
|
|
4081
4781
|
requestBody: BatchCreateTransactionDto;
|
|
4082
4782
|
};
|
|
4083
4783
|
type TransactionControllerCreateBatchResponse = BatchTransactionResponseDto;
|
|
4784
|
+
type TransactionControllerCorrectData = {
|
|
4785
|
+
/**
|
|
4786
|
+
* Original transaction ID to correct
|
|
4787
|
+
*/
|
|
4788
|
+
id: string;
|
|
4789
|
+
/**
|
|
4790
|
+
* Region code for tenant context
|
|
4791
|
+
*/
|
|
4792
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
4793
|
+
requestBody: CorrectTransactionDto;
|
|
4794
|
+
};
|
|
4795
|
+
type TransactionControllerCorrectResponse = TransactionDetailDto;
|
|
4796
|
+
type TransactionControllerSuggestTagsData = {
|
|
4797
|
+
/**
|
|
4798
|
+
* Max suggestions (1-100, default 10)
|
|
4799
|
+
*/
|
|
4800
|
+
limit?: number;
|
|
4801
|
+
/**
|
|
4802
|
+
* Prefix match, case-insensitive (max 50 chars)
|
|
4803
|
+
*/
|
|
4804
|
+
q?: string;
|
|
4805
|
+
/**
|
|
4806
|
+
* Region code for tenant context
|
|
4807
|
+
*/
|
|
4808
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
4809
|
+
/**
|
|
4810
|
+
* usage (default) or name
|
|
4811
|
+
*/
|
|
4812
|
+
sort?: 'usage' | 'name';
|
|
4813
|
+
};
|
|
4814
|
+
type TransactionControllerSuggestTagsResponse = TagSuggestionsResponseDto;
|
|
4084
4815
|
type TransactionControllerGetDetailData = {
|
|
4085
4816
|
/**
|
|
4086
4817
|
* Transaction ID
|
|
@@ -4809,6 +5540,92 @@ type PropertyControllerDeleteData = {
|
|
|
4809
5540
|
key: string;
|
|
4810
5541
|
};
|
|
4811
5542
|
type PropertyControllerDeleteResponse = void;
|
|
5543
|
+
type EventControllerCreateData = {
|
|
5544
|
+
/**
|
|
5545
|
+
* Region code for tenant context (decorative for life events)
|
|
5546
|
+
*/
|
|
5547
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
5548
|
+
requestBody: CreateBeanEventDto;
|
|
5549
|
+
};
|
|
5550
|
+
type EventControllerCreateResponse = EventResponseDto;
|
|
5551
|
+
type EventControllerFindAllData = {
|
|
5552
|
+
/**
|
|
5553
|
+
* Filter life events from this date (ISO 8601 format)
|
|
5554
|
+
*/
|
|
5555
|
+
from?: string;
|
|
5556
|
+
/**
|
|
5557
|
+
* Number of items per page (default: 20, max: 100)
|
|
5558
|
+
*/
|
|
5559
|
+
limit?: number;
|
|
5560
|
+
/**
|
|
5561
|
+
* Page number for pagination (default: 1)
|
|
5562
|
+
*/
|
|
5563
|
+
page?: number;
|
|
5564
|
+
/**
|
|
5565
|
+
* Search term for description (case-insensitive partial match)
|
|
5566
|
+
*/
|
|
5567
|
+
q?: string;
|
|
5568
|
+
/**
|
|
5569
|
+
* Region code for tenant context (decorative for life events)
|
|
5570
|
+
*/
|
|
5571
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
5572
|
+
/**
|
|
5573
|
+
* Filter life events to this date (ISO 8601 format)
|
|
5574
|
+
*/
|
|
5575
|
+
to?: string;
|
|
5576
|
+
/**
|
|
5577
|
+
* Filter by life event type (exact match)
|
|
5578
|
+
*/
|
|
5579
|
+
type?: string;
|
|
5580
|
+
};
|
|
5581
|
+
type EventControllerFindAllResponse = EventListResponseDto;
|
|
5582
|
+
type EventControllerFindOneData = {
|
|
5583
|
+
/**
|
|
5584
|
+
* Life event ID
|
|
5585
|
+
*/
|
|
5586
|
+
id: string;
|
|
5587
|
+
/**
|
|
5588
|
+
* Region code for tenant context (decorative for life events)
|
|
5589
|
+
*/
|
|
5590
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
5591
|
+
};
|
|
5592
|
+
type EventControllerFindOneResponse = EventResponseDto;
|
|
5593
|
+
type EventControllerUpdateData = {
|
|
5594
|
+
/**
|
|
5595
|
+
* Life event ID
|
|
5596
|
+
*/
|
|
5597
|
+
id: string;
|
|
5598
|
+
/**
|
|
5599
|
+
* Region code for tenant context (decorative for life events)
|
|
5600
|
+
*/
|
|
5601
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
5602
|
+
requestBody: UpdateBeanEventDto;
|
|
5603
|
+
};
|
|
5604
|
+
type EventControllerUpdateResponse = EventResponseDto;
|
|
5605
|
+
type EventControllerDeleteData = {
|
|
5606
|
+
/**
|
|
5607
|
+
* Life event ID
|
|
5608
|
+
*/
|
|
5609
|
+
id: string;
|
|
5610
|
+
/**
|
|
5611
|
+
* Region code for tenant context (decorative for life events)
|
|
5612
|
+
*/
|
|
5613
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
5614
|
+
};
|
|
5615
|
+
type EventControllerDeleteResponse = void;
|
|
5616
|
+
type EventControllerGetSliceData = {
|
|
5617
|
+
accountPattern: string;
|
|
5618
|
+
granularity: string;
|
|
5619
|
+
/**
|
|
5620
|
+
* Life event ID
|
|
5621
|
+
*/
|
|
5622
|
+
id: string;
|
|
5623
|
+
/**
|
|
5624
|
+
* Region code for tenant context (decorative for life events)
|
|
5625
|
+
*/
|
|
5626
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
5627
|
+
};
|
|
5628
|
+
type EventControllerGetSliceResponse = unknown;
|
|
4812
5629
|
type ExportControllerExportBeancountResponse = unknown;
|
|
4813
5630
|
type FileImportControllerImportFileData = {
|
|
4814
5631
|
/**
|
|
@@ -4926,9 +5743,9 @@ type ProviderSyncControllerSyncData = {
|
|
|
4926
5743
|
*/
|
|
4927
5744
|
providerName: 'plaid' | 'teller' | 'truelayer' | 'gocardless' | 'simplefin' | 'yodlee' | 'beancount-direct' | 'parsed-bill';
|
|
4928
5745
|
/**
|
|
4929
|
-
* Region code
|
|
5746
|
+
* Region code for tenant context
|
|
4930
5747
|
*/
|
|
4931
|
-
region:
|
|
5748
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
4932
5749
|
requestBody: ProviderSyncDto;
|
|
4933
5750
|
};
|
|
4934
5751
|
type ProviderSyncControllerSyncResponse = ProviderSyncResponseDto;
|
|
@@ -4958,6 +5775,25 @@ type TelemetryControllerReportTelemetryData = {
|
|
|
4958
5775
|
requestBody: ParserTelemetryReportDto;
|
|
4959
5776
|
};
|
|
4960
5777
|
type TelemetryControllerReportTelemetryResponse = unknown;
|
|
5778
|
+
type TelemetryControllerReportCoverageMissData = {
|
|
5779
|
+
/**
|
|
5780
|
+
* Region code for tenant context
|
|
5781
|
+
*/
|
|
5782
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
5783
|
+
requestBody: UncoveredFormatMissDto;
|
|
5784
|
+
};
|
|
5785
|
+
type TelemetryControllerReportCoverageMissResponse = unknown;
|
|
5786
|
+
type TelemetryControllerGetCoverageMetricsData = {
|
|
5787
|
+
/**
|
|
5788
|
+
* Region code for tenant context
|
|
5789
|
+
*/
|
|
5790
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
5791
|
+
/**
|
|
5792
|
+
* Top-N uncovered formats (default 10)
|
|
5793
|
+
*/
|
|
5794
|
+
topN?: unknown;
|
|
5795
|
+
};
|
|
5796
|
+
type TelemetryControllerGetCoverageMetricsResponse = unknown;
|
|
4961
5797
|
type NlpControllerProcessNaturalLanguageData = {
|
|
4962
5798
|
/**
|
|
4963
5799
|
* Region code for tenant context
|
|
@@ -4990,47 +5826,185 @@ type NlpControllerGetSessionData = {
|
|
|
4990
5826
|
*/
|
|
4991
5827
|
sessionId?: string;
|
|
4992
5828
|
};
|
|
4993
|
-
type NlpControllerGetSessionResponse = unknown;
|
|
4994
|
-
type DashboardControllerGetNetWorthData = {
|
|
5829
|
+
type NlpControllerGetSessionResponse = unknown;
|
|
5830
|
+
type DashboardControllerGetNetWorthData = {
|
|
5831
|
+
/**
|
|
5832
|
+
* Date for balance calculation (ISO 8601 format)
|
|
5833
|
+
*/
|
|
5834
|
+
date?: string;
|
|
5835
|
+
/**
|
|
5836
|
+
* Region code for tenant context
|
|
5837
|
+
*/
|
|
5838
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
5839
|
+
};
|
|
5840
|
+
type DashboardControllerGetNetWorthResponse = NetWorthResponseDto;
|
|
5841
|
+
type DashboardControllerGetAccountsData = {
|
|
5842
|
+
/**
|
|
5843
|
+
* Scope to a single account (only valid with groupBy=holdingAssetClass, ADR-0105 §6)
|
|
5844
|
+
*/
|
|
5845
|
+
accountId?: string;
|
|
5846
|
+
/**
|
|
5847
|
+
* Date for balance calculation (ISO 8601 format)
|
|
5848
|
+
*/
|
|
5849
|
+
date?: string;
|
|
5850
|
+
/**
|
|
5851
|
+
* Grouping strategy
|
|
5852
|
+
*/
|
|
5853
|
+
groupBy?: 'platform' | 'assetClass' | 'holdingAssetClass' | 'holdingAssetClassByAccount';
|
|
5854
|
+
/**
|
|
5855
|
+
* Region code for tenant context
|
|
5856
|
+
*/
|
|
5857
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
5858
|
+
};
|
|
5859
|
+
type DashboardControllerGetAccountsResponse = AccountsResponseDto | AssetClassAccountsResponseDto | HoldingAssetClassCrossAccountResponseDto;
|
|
5860
|
+
type DashboardControllerGetCashFlowData = {
|
|
5861
|
+
/**
|
|
5862
|
+
* Period in YYYY-MM format
|
|
5863
|
+
*/
|
|
5864
|
+
period: string;
|
|
5865
|
+
/**
|
|
5866
|
+
* Region code for tenant context
|
|
5867
|
+
*/
|
|
5868
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
5869
|
+
};
|
|
5870
|
+
type DashboardControllerGetCashFlowResponse = CashFlowResponseDto;
|
|
5871
|
+
type DashboardControllerGetExpensesData = {
|
|
5872
|
+
/**
|
|
5873
|
+
* Grouping strategy
|
|
5874
|
+
*/
|
|
5875
|
+
groupBy?: 'category';
|
|
5876
|
+
/**
|
|
5877
|
+
* Time window (1m = current calendar month)
|
|
5878
|
+
*/
|
|
5879
|
+
period?: '1m' | '3m' | '6m' | '1y';
|
|
5880
|
+
/**
|
|
5881
|
+
* Region code for tenant context
|
|
5882
|
+
*/
|
|
5883
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
5884
|
+
};
|
|
5885
|
+
type DashboardControllerGetExpensesResponse = ExpensesByCategoryResponseDto;
|
|
5886
|
+
type HoldingPnlControllerGetHoldingPnlData = {
|
|
5887
|
+
/**
|
|
5888
|
+
* Scope to a single account
|
|
5889
|
+
*/
|
|
5890
|
+
accountId?: string;
|
|
5891
|
+
/**
|
|
5892
|
+
* As-of date (ISO 8601), defaults to today
|
|
5893
|
+
*/
|
|
5894
|
+
asOf?: string;
|
|
5895
|
+
/**
|
|
5896
|
+
* Realized-P&L lot-matching method (default average). Does not affect the average-cost unrealized basis.
|
|
5897
|
+
*/
|
|
5898
|
+
method?: 'FIFO' | 'average';
|
|
5899
|
+
/**
|
|
5900
|
+
* Region code for tenant context
|
|
5901
|
+
*/
|
|
5902
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
5903
|
+
};
|
|
5904
|
+
type HoldingPnlControllerGetHoldingPnlResponse = HoldingPnlResponseDto;
|
|
5905
|
+
type PriceControllerCreateData = {
|
|
5906
|
+
/**
|
|
5907
|
+
* Region code for tenant context
|
|
5908
|
+
*/
|
|
5909
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
5910
|
+
requestBody: CreateBeanPriceDto;
|
|
5911
|
+
};
|
|
5912
|
+
type PriceControllerCreateResponse = PriceResponseDto;
|
|
5913
|
+
type PriceControllerFindAllData = {
|
|
5914
|
+
/**
|
|
5915
|
+
* Filter by currency (e.g., BTC, AAPL, USD)
|
|
5916
|
+
*/
|
|
5917
|
+
currency?: string;
|
|
5918
|
+
/**
|
|
5919
|
+
* Filter prices from this date (ISO 8601 format)
|
|
5920
|
+
*/
|
|
5921
|
+
dateFrom?: string;
|
|
5922
|
+
/**
|
|
5923
|
+
* Filter prices to this date (ISO 8601 format)
|
|
5924
|
+
*/
|
|
5925
|
+
dateTo?: string;
|
|
5926
|
+
/**
|
|
5927
|
+
* Number of items per page (default: 20, max: 100)
|
|
5928
|
+
*/
|
|
5929
|
+
limit?: number;
|
|
5930
|
+
/**
|
|
5931
|
+
* Page number for pagination (default: 1)
|
|
5932
|
+
*/
|
|
5933
|
+
page?: number;
|
|
5934
|
+
/**
|
|
5935
|
+
* Filter by quote currency (pricing currency, e.g., USD, CNY)
|
|
5936
|
+
*/
|
|
5937
|
+
quoteCurrency?: string;
|
|
5938
|
+
/**
|
|
5939
|
+
* Region code for tenant context
|
|
5940
|
+
*/
|
|
5941
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
5942
|
+
/**
|
|
5943
|
+
* Search term for currency or quoteCurrency (case-insensitive partial match)
|
|
5944
|
+
*/
|
|
5945
|
+
search?: string;
|
|
5946
|
+
};
|
|
5947
|
+
type PriceControllerFindAllResponse = PriceListResponseDto;
|
|
5948
|
+
type PriceControllerFindOneData = {
|
|
5949
|
+
/**
|
|
5950
|
+
* Price ID
|
|
5951
|
+
*/
|
|
5952
|
+
id: string;
|
|
5953
|
+
/**
|
|
5954
|
+
* Region code for tenant context
|
|
5955
|
+
*/
|
|
5956
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
5957
|
+
};
|
|
5958
|
+
type PriceControllerFindOneResponse = PriceResponseDto;
|
|
5959
|
+
type PriceControllerUpdateData = {
|
|
4995
5960
|
/**
|
|
4996
|
-
*
|
|
5961
|
+
* Price ID
|
|
4997
5962
|
*/
|
|
4998
|
-
|
|
5963
|
+
id: string;
|
|
4999
5964
|
/**
|
|
5000
5965
|
* Region code for tenant context
|
|
5001
5966
|
*/
|
|
5002
5967
|
region: 'cn' | 'us' | 'de' | 'gb';
|
|
5968
|
+
requestBody: UpdateBeanPriceDto;
|
|
5003
5969
|
};
|
|
5004
|
-
type
|
|
5005
|
-
type
|
|
5970
|
+
type PriceControllerUpdateResponse = PriceResponseDto;
|
|
5971
|
+
type PriceControllerDeleteData = {
|
|
5006
5972
|
/**
|
|
5007
|
-
*
|
|
5973
|
+
* Price ID
|
|
5008
5974
|
*/
|
|
5009
|
-
|
|
5975
|
+
id: string;
|
|
5010
5976
|
/**
|
|
5011
|
-
*
|
|
5977
|
+
* Region code for tenant context
|
|
5012
5978
|
*/
|
|
5013
|
-
|
|
5979
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
5980
|
+
};
|
|
5981
|
+
type PriceControllerDeleteResponse = void;
|
|
5982
|
+
type PriceControllerBulkCreateData = {
|
|
5014
5983
|
/**
|
|
5015
5984
|
* Region code for tenant context
|
|
5016
5985
|
*/
|
|
5017
5986
|
region: 'cn' | 'us' | 'de' | 'gb';
|
|
5987
|
+
requestBody: Array<string>;
|
|
5018
5988
|
};
|
|
5019
|
-
type
|
|
5020
|
-
type
|
|
5989
|
+
type PriceControllerBulkCreateResponse = Array<PriceResponseDto>;
|
|
5990
|
+
type ReportingControllerGetPortfolioTrendsData = {
|
|
5021
5991
|
/**
|
|
5022
|
-
*
|
|
5992
|
+
* Data granularity
|
|
5023
5993
|
*/
|
|
5024
|
-
|
|
5994
|
+
granularity?: 'day' | 'week' | 'month';
|
|
5995
|
+
/**
|
|
5996
|
+
* Time period
|
|
5997
|
+
*/
|
|
5998
|
+
period?: '1m' | '3m' | '6m' | '1y';
|
|
5025
5999
|
/**
|
|
5026
6000
|
* Region code for tenant context
|
|
5027
6001
|
*/
|
|
5028
6002
|
region: 'cn' | 'us' | 'de' | 'gb';
|
|
5029
6003
|
};
|
|
5030
|
-
type
|
|
5031
|
-
type
|
|
6004
|
+
type ReportingControllerGetPortfolioTrendsResponse = PortfolioTrendsResponseDto;
|
|
6005
|
+
type ReportingControllerGetCashFlowTrendsData = {
|
|
5032
6006
|
/**
|
|
5033
|
-
* Data granularity
|
|
6007
|
+
* Data granularity (accepted for API symmetry; v1 returns month buckets)
|
|
5034
6008
|
*/
|
|
5035
6009
|
granularity?: 'day' | 'week' | 'month';
|
|
5036
6010
|
/**
|
|
@@ -5042,7 +6016,7 @@ type ReportingControllerGetPortfolioTrendsData = {
|
|
|
5042
6016
|
*/
|
|
5043
6017
|
region: 'cn' | 'us' | 'de' | 'gb';
|
|
5044
6018
|
};
|
|
5045
|
-
type
|
|
6019
|
+
type ReportingControllerGetCashFlowTrendsResponse = CashFlowTrendsResponseDto;
|
|
5046
6020
|
type ReportingControllerGenerateSnapshotData = {
|
|
5047
6021
|
/**
|
|
5048
6022
|
* Region code for tenant context
|
|
@@ -5297,6 +6271,48 @@ type $OpenApiTs = {
|
|
|
5297
6271
|
};
|
|
5298
6272
|
};
|
|
5299
6273
|
};
|
|
6274
|
+
'/api/v1/{region}/bean/transactions/{id}/correct': {
|
|
6275
|
+
post: {
|
|
6276
|
+
req: TransactionControllerCorrectData;
|
|
6277
|
+
res: {
|
|
6278
|
+
/**
|
|
6279
|
+
* Corrected transaction created
|
|
6280
|
+
*/
|
|
6281
|
+
201: TransactionDetailDto;
|
|
6282
|
+
/**
|
|
6283
|
+
* Original transaction not found
|
|
6284
|
+
*/
|
|
6285
|
+
404: ApiProblemResponseDto;
|
|
6286
|
+
/**
|
|
6287
|
+
* Original no longer ACTIVE (concurrent modification)
|
|
6288
|
+
*/
|
|
6289
|
+
409: ApiProblemResponseDto;
|
|
6290
|
+
/**
|
|
6291
|
+
* Pipeline validation failed (does not balance, invalid accounts)
|
|
6292
|
+
*/
|
|
6293
|
+
422: ApiProblemResponseDto;
|
|
6294
|
+
};
|
|
6295
|
+
};
|
|
6296
|
+
};
|
|
6297
|
+
'/api/v1/{region}/bean/transactions/tags': {
|
|
6298
|
+
get: {
|
|
6299
|
+
req: TransactionControllerSuggestTagsData;
|
|
6300
|
+
res: {
|
|
6301
|
+
/**
|
|
6302
|
+
* Tag suggestions
|
|
6303
|
+
*/
|
|
6304
|
+
200: TagSuggestionsResponseDto;
|
|
6305
|
+
/**
|
|
6306
|
+
* Validation failed
|
|
6307
|
+
*/
|
|
6308
|
+
400: ApiProblemResponseDto;
|
|
6309
|
+
/**
|
|
6310
|
+
* Authentication required
|
|
6311
|
+
*/
|
|
6312
|
+
401: ApiProblemResponseDto;
|
|
6313
|
+
};
|
|
6314
|
+
};
|
|
6315
|
+
};
|
|
5300
6316
|
'/api/v1/{region}/bean/transactions/{id}': {
|
|
5301
6317
|
get: {
|
|
5302
6318
|
req: TransactionControllerGetDetailData;
|
|
@@ -6411,6 +7427,102 @@ type $OpenApiTs = {
|
|
|
6411
7427
|
};
|
|
6412
7428
|
};
|
|
6413
7429
|
};
|
|
7430
|
+
'/api/v1/{region}/bean/events': {
|
|
7431
|
+
post: {
|
|
7432
|
+
req: EventControllerCreateData;
|
|
7433
|
+
res: {
|
|
7434
|
+
/**
|
|
7435
|
+
* Life event created successfully
|
|
7436
|
+
*/
|
|
7437
|
+
201: EventResponseDto;
|
|
7438
|
+
/**
|
|
7439
|
+
* Life event already exists for this (userId, type, date) combination
|
|
7440
|
+
*/
|
|
7441
|
+
409: unknown;
|
|
7442
|
+
};
|
|
7443
|
+
};
|
|
7444
|
+
get: {
|
|
7445
|
+
req: EventControllerFindAllData;
|
|
7446
|
+
res: {
|
|
7447
|
+
/**
|
|
7448
|
+
* Life events retrieved successfully
|
|
7449
|
+
*/
|
|
7450
|
+
200: EventListResponseDto;
|
|
7451
|
+
};
|
|
7452
|
+
};
|
|
7453
|
+
};
|
|
7454
|
+
'/api/v1/{region}/bean/events/{id}': {
|
|
7455
|
+
get: {
|
|
7456
|
+
req: EventControllerFindOneData;
|
|
7457
|
+
res: {
|
|
7458
|
+
/**
|
|
7459
|
+
* Life event retrieved successfully
|
|
7460
|
+
*/
|
|
7461
|
+
200: EventResponseDto;
|
|
7462
|
+
/**
|
|
7463
|
+
* Life event not found
|
|
7464
|
+
*/
|
|
7465
|
+
404: unknown;
|
|
7466
|
+
};
|
|
7467
|
+
};
|
|
7468
|
+
put: {
|
|
7469
|
+
req: EventControllerUpdateData;
|
|
7470
|
+
res: {
|
|
7471
|
+
/**
|
|
7472
|
+
* Life event updated successfully
|
|
7473
|
+
*/
|
|
7474
|
+
200: EventResponseDto;
|
|
7475
|
+
/**
|
|
7476
|
+
* If-Match header is not a valid ISO 8601 date
|
|
7477
|
+
*/
|
|
7478
|
+
400: unknown;
|
|
7479
|
+
/**
|
|
7480
|
+
* Life event not found
|
|
7481
|
+
*/
|
|
7482
|
+
404: unknown;
|
|
7483
|
+
/**
|
|
7484
|
+
* Updated event conflicts with an existing (userId, type, date) combination
|
|
7485
|
+
*/
|
|
7486
|
+
409: unknown;
|
|
7487
|
+
/**
|
|
7488
|
+
* If-Match precondition failed (updatedAt mismatch)
|
|
7489
|
+
*/
|
|
7490
|
+
412: unknown;
|
|
7491
|
+
};
|
|
7492
|
+
};
|
|
7493
|
+
delete: {
|
|
7494
|
+
req: EventControllerDeleteData;
|
|
7495
|
+
res: {
|
|
7496
|
+
/**
|
|
7497
|
+
* Life event deleted successfully
|
|
7498
|
+
*/
|
|
7499
|
+
204: void;
|
|
7500
|
+
/**
|
|
7501
|
+
* Life event not found
|
|
7502
|
+
*/
|
|
7503
|
+
404: unknown;
|
|
7504
|
+
};
|
|
7505
|
+
};
|
|
7506
|
+
};
|
|
7507
|
+
'/api/v1/{region}/bean/events/{id}/slice': {
|
|
7508
|
+
get: {
|
|
7509
|
+
req: EventControllerGetSliceData;
|
|
7510
|
+
res: {
|
|
7511
|
+
/**
|
|
7512
|
+
* Time-series sliced by the life event range
|
|
7513
|
+
*/
|
|
7514
|
+
200: unknown;
|
|
7515
|
+
/**
|
|
7516
|
+
* accountPattern query param is empty
|
|
7517
|
+
*/
|
|
7518
|
+
400: unknown;
|
|
7519
|
+
/**
|
|
7520
|
+
* Life event not found
|
|
7521
|
+
*/
|
|
7522
|
+
404: unknown;
|
|
7523
|
+
};
|
|
7524
|
+
};
|
|
7525
|
+
};
|
|
6414
7526
|
'/api/v1/{region}/bean/export/beancount': {
|
|
6415
7527
|
get: {
|
|
6416
7528
|
res: {
|
|
@@ -6701,6 +7813,32 @@ type $OpenApiTs = {
|
|
|
6701
7813
|
};
|
|
6702
7814
|
};
|
|
6703
7815
|
};
|
|
7816
|
+
'/api/v1/{region}/bean/import/parser-coverage-miss': {
|
|
7817
|
+
post: {
|
|
7818
|
+
req: TelemetryControllerReportCoverageMissData;
|
|
7819
|
+
res: {
|
|
7820
|
+
/**
|
|
7821
|
+
* Coverage miss report received
|
|
7822
|
+
*/
|
|
7823
|
+
200: unknown;
|
|
7824
|
+
/**
|
|
7825
|
+
* Unauthorized
|
|
7826
|
+
*/
|
|
7827
|
+
401: unknown;
|
|
7828
|
+
};
|
|
7829
|
+
};
|
|
7830
|
+
};
|
|
7831
|
+
'/api/v1/{region}/bean/import/parser-coverage-metrics': {
|
|
7832
|
+
get: {
|
|
7833
|
+
req: TelemetryControllerGetCoverageMetricsData;
|
|
7834
|
+
res: {
|
|
7835
|
+
/**
|
|
7836
|
+
* Coverage metrics
|
|
7837
|
+
*/
|
|
7838
|
+
200: unknown;
|
|
7839
|
+
};
|
|
7840
|
+
};
|
|
7841
|
+
};
|
|
6704
7842
|
'/api/v1/{region}/bean/nlp/process': {
|
|
6705
7843
|
post: {
|
|
6706
7844
|
req: NlpControllerProcessNaturalLanguageData;
|
|
@@ -6770,7 +7908,7 @@ type $OpenApiTs = {
|
|
|
6770
7908
|
/**
|
|
6771
7909
|
* Accounts retrieved successfully. Response type depends on groupBy parameter.
|
|
6772
7910
|
*/
|
|
6773
|
-
200: AccountsResponseDto | AssetClassAccountsResponseDto;
|
|
7911
|
+
200: AccountsResponseDto | AssetClassAccountsResponseDto | HoldingAssetClassCrossAccountResponseDto;
|
|
6774
7912
|
/**
|
|
6775
7913
|
* User not authenticated
|
|
6776
7914
|
*/
|
|
@@ -6797,6 +7935,128 @@ type $OpenApiTs = {
|
|
|
6797
7935
|
};
|
|
6798
7936
|
};
|
|
6799
7937
|
};
|
|
7938
|
+
'/api/v1/{region}/dashboard/expenses': {
|
|
7939
|
+
get: {
|
|
7940
|
+
req: DashboardControllerGetExpensesData;
|
|
7941
|
+
res: {
|
|
7942
|
+
/**
|
|
7943
|
+
* Expenses retrieved successfully
|
|
7944
|
+
*/
|
|
7945
|
+
200: ExpensesByCategoryResponseDto;
|
|
7946
|
+
/**
|
|
7947
|
+
* Invalid groupBy or period
|
|
7948
|
+
*/
|
|
7949
|
+
400: unknown;
|
|
7950
|
+
/**
|
|
7951
|
+
* User not authenticated
|
|
7952
|
+
*/
|
|
7953
|
+
401: unknown;
|
|
7954
|
+
};
|
|
7955
|
+
};
|
|
7956
|
+
};
|
|
7957
|
+
'/api/v1/{region}/investment/holdings/pnl': {
|
|
7958
|
+
get: {
|
|
7959
|
+
req: HoldingPnlControllerGetHoldingPnlData;
|
|
7960
|
+
res: {
|
|
7961
|
+
/**
|
|
7962
|
+
* Holding P&L retrieved successfully
|
|
7963
|
+
*/
|
|
7964
|
+
200: HoldingPnlResponseDto;
|
|
7965
|
+
/**
|
|
7966
|
+
* Invalid asOf format/value/future date, invalid accountId format, or unsupported method
|
|
7967
|
+
*/
|
|
7968
|
+
400: unknown;
|
|
7969
|
+
/**
|
|
7970
|
+
* User not authenticated
|
|
7971
|
+
*/
|
|
7972
|
+
401: unknown;
|
|
7973
|
+
};
|
|
7974
|
+
};
|
|
7975
|
+
};
|
|
7976
|
+
'/api/v1/{region}/bean/prices': {
|
|
7977
|
+
post: {
|
|
7978
|
+
req: PriceControllerCreateData;
|
|
7979
|
+
res: {
|
|
7980
|
+
/**
|
|
7981
|
+
* Price created successfully
|
|
7982
|
+
*/
|
|
7983
|
+
201: PriceResponseDto;
|
|
7984
|
+
/**
|
|
7985
|
+
* Currency or quoteCurrency commodity not found
|
|
7986
|
+
*/
|
|
7987
|
+
404: unknown;
|
|
7988
|
+
/**
|
|
7989
|
+
* Price already exists for this currency pair and date
|
|
7990
|
+
*/
|
|
7991
|
+
409: unknown;
|
|
7992
|
+
};
|
|
7993
|
+
};
|
|
7994
|
+
get: {
|
|
7995
|
+
req: PriceControllerFindAllData;
|
|
7996
|
+
res: {
|
|
7997
|
+
/**
|
|
7998
|
+
* Prices retrieved successfully
|
|
7999
|
+
*/
|
|
8000
|
+
200: PriceListResponseDto;
|
|
8001
|
+
};
|
|
8002
|
+
};
|
|
8003
|
+
};
|
|
8004
|
+
'/api/v1/{region}/bean/prices/{id}': {
|
|
8005
|
+
get: {
|
|
8006
|
+
req: PriceControllerFindOneData;
|
|
8007
|
+
res: {
|
|
8008
|
+
/**
|
|
8009
|
+
* Price retrieved successfully
|
|
8010
|
+
*/
|
|
8011
|
+
200: PriceResponseDto;
|
|
8012
|
+
/**
|
|
8013
|
+
* Price not found
|
|
8014
|
+
*/
|
|
8015
|
+
404: unknown;
|
|
8016
|
+
};
|
|
8017
|
+
};
|
|
8018
|
+
put: {
|
|
8019
|
+
req: PriceControllerUpdateData;
|
|
8020
|
+
res: {
|
|
8021
|
+
/**
|
|
8022
|
+
* Price updated successfully
|
|
8023
|
+
*/
|
|
8024
|
+
200: PriceResponseDto;
|
|
8025
|
+
/**
|
|
8026
|
+
* Price not found
|
|
8027
|
+
*/
|
|
8028
|
+
404: unknown;
|
|
8029
|
+
/**
|
|
8030
|
+
* Updated price conflicts with existing price
|
|
8031
|
+
*/
|
|
8032
|
+
409: unknown;
|
|
8033
|
+
};
|
|
8034
|
+
};
|
|
8035
|
+
delete: {
|
|
8036
|
+
req: PriceControllerDeleteData;
|
|
8037
|
+
res: {
|
|
8038
|
+
/**
|
|
8039
|
+
* Price deleted successfully
|
|
8040
|
+
*/
|
|
8041
|
+
204: void;
|
|
8042
|
+
/**
|
|
8043
|
+
* Price not found
|
|
8044
|
+
*/
|
|
8045
|
+
404: unknown;
|
|
8046
|
+
};
|
|
8047
|
+
};
|
|
8048
|
+
};
|
|
8049
|
+
'/api/v1/{region}/bean/prices/bulk': {
|
|
8050
|
+
post: {
|
|
8051
|
+
req: PriceControllerBulkCreateData;
|
|
8052
|
+
res: {
|
|
8053
|
+
/**
|
|
8054
|
+
* Prices created successfully
|
|
8055
|
+
*/
|
|
8056
|
+
201: Array<PriceResponseDto>;
|
|
8057
|
+
};
|
|
8058
|
+
};
|
|
8059
|
+
};
|
|
6800
8060
|
'/api/v1/{region}/reporting/portfolio/trends': {
|
|
6801
8061
|
get: {
|
|
6802
8062
|
req: ReportingControllerGetPortfolioTrendsData;
|
|
@@ -6812,6 +8072,21 @@ type $OpenApiTs = {
|
|
|
6812
8072
|
};
|
|
6813
8073
|
};
|
|
6814
8074
|
};
|
|
8075
|
+
'/api/v1/{region}/reporting/cash-flow/trends': {
|
|
8076
|
+
get: {
|
|
8077
|
+
req: ReportingControllerGetCashFlowTrendsData;
|
|
8078
|
+
res: {
|
|
8079
|
+
/**
|
|
8080
|
+
* Cash-flow trends retrieved successfully
|
|
8081
|
+
*/
|
|
8082
|
+
200: CashFlowTrendsResponseDto;
|
|
8083
|
+
/**
|
|
8084
|
+
* User not authenticated
|
|
8085
|
+
*/
|
|
8086
|
+
401: unknown;
|
|
8087
|
+
};
|
|
8088
|
+
};
|
|
8089
|
+
};
|
|
6815
8090
|
'/api/v1/{region}/reporting/snapshots/generate': {
|
|
6816
8091
|
post: {
|
|
6817
8092
|
req: ReportingControllerGenerateSnapshotData;
|
|
@@ -7128,6 +8403,7 @@ declare class BeanTransactionsService {
|
|
|
7128
8403
|
* @param data.status Filter by transaction status
|
|
7129
8404
|
* @param data.search Search in narration and payee fields (max 200 chars)
|
|
7130
8405
|
* @param data.accountId Filter by account ID (transactions with postings to this account)
|
|
8406
|
+
* @param data.category Filter by ADR-0075 functional category (Group segment); matches any posting to an Expenses/Income account whose derived Group segment equals this value
|
|
7131
8407
|
* @returns TransactionListResponseDto Transaction list
|
|
7132
8408
|
* @throws ApiError
|
|
7133
8409
|
*/
|
|
@@ -7143,6 +8419,29 @@ declare class BeanTransactionsService {
|
|
|
7143
8419
|
* @throws ApiError
|
|
7144
8420
|
*/
|
|
7145
8421
|
static transactionControllerCreateBatch(data: TransactionControllerCreateBatchData): CancelablePromise<TransactionControllerCreateBatchResponse>;
|
|
8422
|
+
/**
|
|
8423
|
+
* Correct (supersede) a transaction
|
|
8424
|
+
* Atomically voids the original (SUPERSEDED) and creates a replacement through the full validation pipeline.
|
|
8425
|
+
* @param data The data for the request.
|
|
8426
|
+
* @param data.id Original transaction ID to correct
|
|
8427
|
+
* @param data.region Region code for tenant context
|
|
8428
|
+
* @param data.requestBody
|
|
8429
|
+
* @returns TransactionDetailDto Corrected transaction created
|
|
8430
|
+
* @throws ApiError
|
|
8431
|
+
*/
|
|
8432
|
+
static transactionControllerCorrect(data: TransactionControllerCorrectData): CancelablePromise<TransactionControllerCorrectResponse>;
|
|
8433
|
+
/**
|
|
8434
|
+
* Suggest transaction tags
|
|
8435
|
+
* Returns distinct tags from the user ACTIVE transactions, sorted by usage, for autocomplete. Optional q performs a case-insensitive prefix match.
|
|
8436
|
+
* @param data The data for the request.
|
|
8437
|
+
* @param data.region Region code for tenant context
|
|
8438
|
+
* @param data.q Prefix match, case-insensitive (max 50 chars)
|
|
8439
|
+
* @param data.sort usage (default) or name
|
|
8440
|
+
* @param data.limit Max suggestions (1-100, default 10)
|
|
8441
|
+
* @returns TagSuggestionsResponseDto Tag suggestions
|
|
8442
|
+
* @throws ApiError
|
|
8443
|
+
*/
|
|
8444
|
+
static transactionControllerSuggestTags(data: TransactionControllerSuggestTagsData): CancelablePromise<TransactionControllerSuggestTagsResponse>;
|
|
7146
8445
|
/**
|
|
7147
8446
|
* Get transaction detail
|
|
7148
8447
|
* Returns transaction details including all postings
|
|
@@ -7297,7 +8596,7 @@ declare class ProviderSyncService {
|
|
|
7297
8596
|
*
|
|
7298
8597
|
* @param data The data for the request.
|
|
7299
8598
|
* @param data.providerName Provider name
|
|
7300
|
-
* @param data.region Region code
|
|
8599
|
+
* @param data.region Region code for tenant context
|
|
7301
8600
|
* @param data.requestBody
|
|
7302
8601
|
* @returns ProviderSyncResponseDto Sync completed successfully
|
|
7303
8602
|
* @throws ApiError
|
|
@@ -7410,4 +8709,4 @@ type OpenAPIConfig = {
|
|
|
7410
8709
|
};
|
|
7411
8710
|
declare const OpenAPI: OpenAPIConfig;
|
|
7412
8711
|
|
|
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 };
|
|
8712
|
+
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 AmountDto, 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 CashFlowPointDto, type CashFlowResponseDto, type CashFlowTrendSummaryDto, type CashFlowTrendsResponseDto, type CategoryGroupDto, 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 CorrectTransactionDto, type CostDetailDto, type CostSpecDto, type CreateAccountDto, type CreateBeanEventDto, type CreateBeanPriceDto, type CreateCommodityDto, type CreatePayeeDto, type CreatePayeeProfileDto, type CreatePlatformDto, type CreatePostingDto, type CreateRecurringRuleDto, type CreateRuleFromTransactionDto, type CreateTransactionDto, type CreateTransactionRuleDto, type CurrencyBalanceDto, type CurrentPriceDto, type DashboardControllerGetAccountsData, type DashboardControllerGetAccountsResponse, type DashboardControllerGetCashFlowData, type DashboardControllerGetCashFlowResponse, type DashboardControllerGetExpensesData, type DashboardControllerGetExpensesResponse, type DashboardControllerGetNetWorthData, type DashboardControllerGetNetWorthResponse, type DecisionOptionDto, type DeleteOwnUserDto, type EnterNowDto, type EventControllerCreateData, type EventControllerCreateResponse, type EventControllerDeleteData, type EventControllerDeleteResponse, type EventControllerFindAllData, type EventControllerFindAllResponse, type EventControllerFindOneData, type EventControllerFindOneResponse, type EventControllerGetSliceData, type EventControllerGetSliceResponse, type EventControllerUpdateData, type EventControllerUpdateResponse, type EventListResponseDto, type EventResponseDto, 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 ExpensesByCategoryResponseDto, type ExpensesByCategorySummaryDto, 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 FxRateDto, type GenerateSnapshotBody, type GenerateSnapshotResponse, type HealthControllerCheckDatabaseResponse, type HealthControllerCheckOpenBbResponse, type HealthControllerCheckRedisResponse, type HealthControllerGetCircuitBreakersHealthResponse, type HealthControllerGetHealthResponse, type HealthControllerGetMetricsResponse, type HealthControllerResetCircuitBreakerData, type HealthControllerResetCircuitBreakerResponse, HealthService, type HoldingAssetClassAccountSliceDto, type HoldingAssetClassCrossAccountResponseDto, type HoldingPnlControllerGetHoldingPnlData, type HoldingPnlControllerGetHoldingPnlResponse, type HoldingPnlResponseDto, type HoldingPnlRowDto, type HoldingPnlWarningDto, 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 MonetaryDto, 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 PriceControllerBulkCreateData, type PriceControllerBulkCreateResponse, type PriceControllerCreateData, type PriceControllerCreateResponse, type PriceControllerDeleteData, type PriceControllerDeleteResponse, type PriceControllerFindAllData, type PriceControllerFindAllResponse, type PriceControllerFindOneData, type PriceControllerFindOneResponse, type PriceControllerUpdateData, type PriceControllerUpdateResponse, type PriceListResponseDto, type PriceResponseDto, 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 ReportingControllerGetCashFlowTrendsData, type ReportingControllerGetCashFlowTrendsResponse, 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 TagSuggestionDto, type TagSuggestionsResponseDto, type TelemetryControllerGetCoverageMetricsData, type TelemetryControllerGetCoverageMetricsResponse, type TelemetryControllerReportCoverageMissData, type TelemetryControllerReportCoverageMissResponse, type TelemetryControllerReportTelemetryData, type TelemetryControllerReportTelemetryResponse, type TemplateMetadataDto, type TemplateMetadataResponseDto, type TestRuleDto, type TestRuleResponseDto, type TimeSeriesPointDto, type TransactionControllerCorrectData, type TransactionControllerCorrectResponse, type TransactionControllerCreateBatchData, type TransactionControllerCreateBatchResponse, type TransactionControllerCreateData, type TransactionControllerCreateResponse, type TransactionControllerDeleteData, type TransactionControllerDeleteResponse, type TransactionControllerGetDetailData, type TransactionControllerGetDetailResponse, type TransactionControllerListData, type TransactionControllerListResponse, type TransactionControllerSuggestTagsData, type TransactionControllerSuggestTagsResponse, 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 UncoveredFormatMissDto, type UndoResultDto, type UpdateAccountDto, type UpdateBeanEventDto, type UpdateBeanPriceDto, 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 action2, type assetClass, type assetSubType, type bookingMethod, type branchType, type category, type chartToken, 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 method, type mode, type paymentSource, type period, type source, type source2, type source3, type status, type status2, type status3, type status4, type suggestedFrequency, type type, type type2, type type3, type type4, type value, type viewMode };
|