@firela/api-types 0.0.0-canary.feeae929 → 0.0.0-canary.ffdf0021
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 +432 -30
- package/dist/index.d.ts +432 -30
- package/dist/index.js +4 -2
- package/dist/index.mjs +4 -2
- package/package.json +1 -1
- package/src/generated/schemas.gen.ts +629 -16
- package/src/generated/services.gen.ts +80 -6
- package/src/generated/types.gen.ts +574 -30
package/dist/index.d.mts
CHANGED
|
@@ -457,7 +457,7 @@ type PostingResponseDto = {
|
|
|
457
457
|
*/
|
|
458
458
|
account: string;
|
|
459
459
|
/**
|
|
460
|
-
* Amount as decimal string. Typed optional but always present in responses: interpolation fills any MISSING posting before it is persisted or returned.
|
|
460
|
+
* Amount as decimal string. Typed optional but always present in responses: interpolation fills any MISSING posting before it is persisted or returned. Carries the raw Beancount sign (credit-normal accounts such as Income post negative — the accounting truth, ADR-0126); renderers must not infer economic semantics from this sign.
|
|
461
461
|
*/
|
|
462
462
|
units?: string;
|
|
463
463
|
/**
|
|
@@ -669,7 +669,7 @@ type PostingDetailDto = {
|
|
|
669
669
|
*/
|
|
670
670
|
account: string;
|
|
671
671
|
/**
|
|
672
|
-
* Amount as decimal string. Typed optional but always present in responses: interpolation fills any MISSING posting before it is persisted or returned.
|
|
672
|
+
* Amount as decimal string. Typed optional but always present in responses: interpolation fills any MISSING posting before it is persisted or returned. Carries the raw Beancount sign (credit-normal accounts such as Income post negative — the accounting truth, ADR-0126); renderers must not infer economic semantics from this sign.
|
|
673
673
|
*/
|
|
674
674
|
units?: string;
|
|
675
675
|
/**
|
|
@@ -799,6 +799,94 @@ type flag2 = 'CLEARED' | 'PENDING' | 'PADDING' | 'SUMMARIZE' | 'TRANSFER' | 'CON
|
|
|
799
799
|
* Transaction status
|
|
800
800
|
*/
|
|
801
801
|
type status2 = 'ACTIVE' | 'VOIDED' | 'SUPERSEDED';
|
|
802
|
+
type TransactionListItemDto = {
|
|
803
|
+
/**
|
|
804
|
+
* Transaction ID
|
|
805
|
+
*/
|
|
806
|
+
id: string;
|
|
807
|
+
/**
|
|
808
|
+
* Transaction date
|
|
809
|
+
*/
|
|
810
|
+
date: string;
|
|
811
|
+
/**
|
|
812
|
+
* Transaction flag
|
|
813
|
+
*/
|
|
814
|
+
flag?: 'CLEARED' | 'PENDING' | 'PADDING' | 'SUMMARIZE' | 'TRANSFER' | 'CONVERSIONS';
|
|
815
|
+
/**
|
|
816
|
+
* Custom flag (if not using standard flags)
|
|
817
|
+
*/
|
|
818
|
+
customFlag?: string;
|
|
819
|
+
/**
|
|
820
|
+
* Payee name
|
|
821
|
+
*/
|
|
822
|
+
payee?: string;
|
|
823
|
+
/**
|
|
824
|
+
* Transaction narration
|
|
825
|
+
*/
|
|
826
|
+
narration: string;
|
|
827
|
+
/**
|
|
828
|
+
* Transaction tags
|
|
829
|
+
*/
|
|
830
|
+
tags: Array<string>;
|
|
831
|
+
/**
|
|
832
|
+
* Transaction links
|
|
833
|
+
*/
|
|
834
|
+
links: Array<string>;
|
|
835
|
+
/**
|
|
836
|
+
* Transaction metadata
|
|
837
|
+
*/
|
|
838
|
+
meta?: {
|
|
839
|
+
[key: string]: unknown;
|
|
840
|
+
};
|
|
841
|
+
/**
|
|
842
|
+
* Transaction status
|
|
843
|
+
*/
|
|
844
|
+
status: 'ACTIVE' | 'VOIDED' | 'SUPERSEDED';
|
|
845
|
+
/**
|
|
846
|
+
* Source type (free-form string from transaction metadata, e.g. import, api)
|
|
847
|
+
*/
|
|
848
|
+
sourceType?: string;
|
|
849
|
+
/**
|
|
850
|
+
* Source platform (e.g., alipay, wechat)
|
|
851
|
+
*/
|
|
852
|
+
sourcePlatform?: string;
|
|
853
|
+
/**
|
|
854
|
+
* Transaction postings
|
|
855
|
+
*/
|
|
856
|
+
postings: Array<PostingDetailDto>;
|
|
857
|
+
/**
|
|
858
|
+
* Created at timestamp
|
|
859
|
+
*/
|
|
860
|
+
createdAt: string;
|
|
861
|
+
/**
|
|
862
|
+
* Voided at timestamp (if voided)
|
|
863
|
+
*/
|
|
864
|
+
voidedAt?: string;
|
|
865
|
+
/**
|
|
866
|
+
* User ID who voided this transaction
|
|
867
|
+
*/
|
|
868
|
+
voidedBy?: string;
|
|
869
|
+
/**
|
|
870
|
+
* Correction reason (if voided or superseded)
|
|
871
|
+
*/
|
|
872
|
+
correctionReason?: string;
|
|
873
|
+
/**
|
|
874
|
+
* ID of the transaction that supersedes this one (set when status=SUPERSEDED)
|
|
875
|
+
*/
|
|
876
|
+
supersededBy?: string;
|
|
877
|
+
/**
|
|
878
|
+
* ID of the transaction this one corrected/replaced (back-link on the replacement)
|
|
879
|
+
*/
|
|
880
|
+
originalTxn?: string;
|
|
881
|
+
/**
|
|
882
|
+
* Per-leg sign-normalized row amount for the category viewpoint (ADR-0126): each posting on the category account set contributes its unitsNumber with Income-root legs negated and Expenses-root legs identity. Positive under normal booking but NOT clamped (explicit negative expense legs and net-flip refund months stay negative). Omitted outside the category viewpoint.
|
|
883
|
+
*/
|
|
884
|
+
viewpointAmount?: string;
|
|
885
|
+
/**
|
|
886
|
+
* Currency of viewpointAmount. A row spanning multiple currencies takes the largest-magnitude currency group (known simplification, ADR-0126). Omitted outside the category viewpoint.
|
|
887
|
+
*/
|
|
888
|
+
viewpointCurrency?: string;
|
|
889
|
+
};
|
|
802
890
|
type BalanceByCurrencyDto = {
|
|
803
891
|
/**
|
|
804
892
|
* ISO 4217 currency code
|
|
@@ -825,7 +913,7 @@ type ExchangeRateWarningDto = {
|
|
|
825
913
|
};
|
|
826
914
|
type TransactionListSummaryDto = {
|
|
827
915
|
/**
|
|
828
|
-
* Partial converted total in base currency (rated currencies only
|
|
916
|
+
* Partial converted total in base currency (rated currencies only). Sign by viewpoint (ADR-0126): account viewpoint keeps the raw Beancount sign (income negative); category viewpoint is per-leg sign-normalized (Income legs negated, Expenses legs identity — positive under normal booking, not clamped). When warnings is non-empty this excludes currencies missing an FX rate; may be "0.00" if ALL non-base currencies lack a rate. Converted at the dateTo (or current) available rate.
|
|
829
917
|
*/
|
|
830
918
|
totalAmount: string;
|
|
831
919
|
/**
|
|
@@ -841,11 +929,29 @@ type TransactionListSummaryDto = {
|
|
|
841
929
|
*/
|
|
842
930
|
warnings?: Array<ExchangeRateWarningDto>;
|
|
843
931
|
};
|
|
932
|
+
type TransactionListViewpointDto = {
|
|
933
|
+
/**
|
|
934
|
+
* Viewpoint type (only category drill-down carries a viewpoint today)
|
|
935
|
+
*/
|
|
936
|
+
type: 'category';
|
|
937
|
+
/**
|
|
938
|
+
* Flow root the category account set is restricted to
|
|
939
|
+
*/
|
|
940
|
+
flow: 'income' | 'expense';
|
|
941
|
+
};
|
|
942
|
+
/**
|
|
943
|
+
* Viewpoint type (only category drill-down carries a viewpoint today)
|
|
944
|
+
*/
|
|
945
|
+
type type2 = 'category';
|
|
946
|
+
/**
|
|
947
|
+
* Flow root the category account set is restricted to
|
|
948
|
+
*/
|
|
949
|
+
type flow = 'income' | 'expense';
|
|
844
950
|
type TransactionListResponseDto = {
|
|
845
951
|
/**
|
|
846
952
|
* List of transactions
|
|
847
953
|
*/
|
|
848
|
-
data: Array<
|
|
954
|
+
data: Array<TransactionListItemDto>;
|
|
849
955
|
/**
|
|
850
956
|
* Total count of matching transactions
|
|
851
957
|
*/
|
|
@@ -862,6 +968,10 @@ type TransactionListResponseDto = {
|
|
|
862
968
|
* Amount summary for the full filtered set (#514). Present only when the request has a single account OR category viewpoint; omitted for search-only / plain-list / dual-perspective requests.
|
|
863
969
|
*/
|
|
864
970
|
summary?: TransactionListSummaryDto;
|
|
971
|
+
/**
|
|
972
|
+
* Viewpoint metadata (ADR-0126). Present only for a single category filter (category + flow, no accountId); dual-perspective requests are viewpoint-less (raw signs, no viewpointAmount).
|
|
973
|
+
*/
|
|
974
|
+
viewpoint?: TransactionListViewpointDto;
|
|
865
975
|
};
|
|
866
976
|
type TagSuggestionDto = {
|
|
867
977
|
/**
|
|
@@ -1054,7 +1164,7 @@ type ReviewSummaryDto = {
|
|
|
1054
1164
|
/**
|
|
1055
1165
|
* Review type
|
|
1056
1166
|
*/
|
|
1057
|
-
type
|
|
1167
|
+
type type3 = 'DUPLICATE' | 'RULE_MATCH' | 'PAYEE_MATCH' | 'ACCOUNT_VALIDATION' | 'PIPELINE_ERROR';
|
|
1058
1168
|
/**
|
|
1059
1169
|
* Review status
|
|
1060
1170
|
*/
|
|
@@ -2571,6 +2681,30 @@ type DeleteOwnUserDto = {
|
|
|
2571
2681
|
*/
|
|
2572
2682
|
accessToken: string;
|
|
2573
2683
|
};
|
|
2684
|
+
type UserSettingsResponseDto = {
|
|
2685
|
+
/**
|
|
2686
|
+
* Base currency (ISO 4217) for net-worth/report aggregation. Independent of region (ADR-0006).
|
|
2687
|
+
*/
|
|
2688
|
+
baseCurrency: string | null;
|
|
2689
|
+
};
|
|
2690
|
+
type UserResponseDto = {
|
|
2691
|
+
/**
|
|
2692
|
+
* User ID
|
|
2693
|
+
*/
|
|
2694
|
+
id: string;
|
|
2695
|
+
/**
|
|
2696
|
+
* Assigned user role
|
|
2697
|
+
*/
|
|
2698
|
+
role: string;
|
|
2699
|
+
/**
|
|
2700
|
+
* Permission strings
|
|
2701
|
+
*/
|
|
2702
|
+
permissions: Array<string>;
|
|
2703
|
+
/**
|
|
2704
|
+
* User settings
|
|
2705
|
+
*/
|
|
2706
|
+
settings: UserSettingsResponseDto;
|
|
2707
|
+
};
|
|
2574
2708
|
type SignupDto = {
|
|
2575
2709
|
/**
|
|
2576
2710
|
* Cloudflare Turnstile verification token (optional when Turnstile disabled)
|
|
@@ -3033,6 +3167,42 @@ type TestRuleResponseDto = {
|
|
|
3033
3167
|
[key: string]: unknown;
|
|
3034
3168
|
};
|
|
3035
3169
|
};
|
|
3170
|
+
type CategoryCatalogEntryDto = {
|
|
3171
|
+
/**
|
|
3172
|
+
* Category slug (single source-of-truth)
|
|
3173
|
+
*/
|
|
3174
|
+
slug: string;
|
|
3175
|
+
/**
|
|
3176
|
+
* Display scenario group (maps to frontend picker _scenario)
|
|
3177
|
+
*/
|
|
3178
|
+
scenario: 'expense' | 'income' | 'investment' | 'banking' | 'transfer' | 'payment';
|
|
3179
|
+
/**
|
|
3180
|
+
* Lucide icon name
|
|
3181
|
+
*/
|
|
3182
|
+
icon: string;
|
|
3183
|
+
/**
|
|
3184
|
+
* Applicable regions ('*' = all, 'cn' = CN-only)
|
|
3185
|
+
*/
|
|
3186
|
+
regions: Array<string>;
|
|
3187
|
+
};
|
|
3188
|
+
/**
|
|
3189
|
+
* Display scenario group (maps to frontend picker _scenario)
|
|
3190
|
+
*/
|
|
3191
|
+
type scenario = 'expense' | 'income' | 'investment' | 'banking' | 'transfer' | 'payment';
|
|
3192
|
+
type CategoryCatalogListResponseDto = {
|
|
3193
|
+
/**
|
|
3194
|
+
* Category entries (region-scoped, query-filtered)
|
|
3195
|
+
*/
|
|
3196
|
+
items: Array<CategoryCatalogEntryDto>;
|
|
3197
|
+
/**
|
|
3198
|
+
* Total category entries for the region (before query filtering)
|
|
3199
|
+
*/
|
|
3200
|
+
total: number;
|
|
3201
|
+
/**
|
|
3202
|
+
* Region code
|
|
3203
|
+
*/
|
|
3204
|
+
region: string;
|
|
3205
|
+
};
|
|
3036
3206
|
type CreateBeanEventDto = {
|
|
3037
3207
|
/**
|
|
3038
3208
|
* Life event date (ISO 8601)
|
|
@@ -3620,11 +3790,85 @@ type ExternalAccountLinkListResponseDto = {
|
|
|
3620
3790
|
};
|
|
3621
3791
|
type ParserTelemetryReportDto = unknown;
|
|
3622
3792
|
type UncoveredFormatMissDto = unknown;
|
|
3793
|
+
type ClientParsedDataDto = {
|
|
3794
|
+
/**
|
|
3795
|
+
* Transaction amount
|
|
3796
|
+
*/
|
|
3797
|
+
amount?: number;
|
|
3798
|
+
/**
|
|
3799
|
+
* Currency code
|
|
3800
|
+
*/
|
|
3801
|
+
currency?: string;
|
|
3802
|
+
/**
|
|
3803
|
+
* Transaction date (ISO 8601)
|
|
3804
|
+
*/
|
|
3805
|
+
date?: string;
|
|
3806
|
+
/**
|
|
3807
|
+
* Payee/merchant name
|
|
3808
|
+
*/
|
|
3809
|
+
payee?: string;
|
|
3810
|
+
/**
|
|
3811
|
+
* Transaction narration
|
|
3812
|
+
*/
|
|
3813
|
+
narration?: string;
|
|
3814
|
+
/**
|
|
3815
|
+
* Category slug
|
|
3816
|
+
*/
|
|
3817
|
+
category?: string;
|
|
3818
|
+
/**
|
|
3819
|
+
* Income type
|
|
3820
|
+
*/
|
|
3821
|
+
incomeType?: string;
|
|
3822
|
+
/**
|
|
3823
|
+
* Income source
|
|
3824
|
+
*/
|
|
3825
|
+
incomeSource?: string;
|
|
3826
|
+
/**
|
|
3827
|
+
* Security symbol code (e.g., 600519, AAPL)
|
|
3828
|
+
*/
|
|
3829
|
+
symbol?: string;
|
|
3830
|
+
/**
|
|
3831
|
+
* Quantity of shares/units
|
|
3832
|
+
*/
|
|
3833
|
+
quantity?: number;
|
|
3834
|
+
/**
|
|
3835
|
+
* Unit price per share/unit
|
|
3836
|
+
*/
|
|
3837
|
+
price?: number;
|
|
3838
|
+
/**
|
|
3839
|
+
* Investment action
|
|
3840
|
+
*/
|
|
3841
|
+
investmentAction?: 'buy' | 'sell';
|
|
3842
|
+
/**
|
|
3843
|
+
* Payment source: asset (default) or liability (credit card)
|
|
3844
|
+
*/
|
|
3845
|
+
paymentSource?: 'asset' | 'liability';
|
|
3846
|
+
/**
|
|
3847
|
+
* Liability account hint (CreditCard/Huabei/Baitiao)
|
|
3848
|
+
*/
|
|
3849
|
+
liabilityHint?: string;
|
|
3850
|
+
/**
|
|
3851
|
+
* Display-only warning from the prior response; accepted but ignored.
|
|
3852
|
+
*/
|
|
3853
|
+
warning?: string;
|
|
3854
|
+
};
|
|
3855
|
+
/**
|
|
3856
|
+
* Investment action
|
|
3857
|
+
*/
|
|
3858
|
+
type investmentAction = 'buy' | 'sell';
|
|
3859
|
+
/**
|
|
3860
|
+
* Payment source: asset (default) or liability (credit card)
|
|
3861
|
+
*/
|
|
3862
|
+
type paymentSource = 'asset' | 'liability';
|
|
3623
3863
|
type ProcessNlpDto = {
|
|
3624
3864
|
/**
|
|
3625
|
-
* Natural language text describing a transaction (
|
|
3865
|
+
* Natural language text describing a transaction. Optional when `confirm` is true (structured confirm); otherwise required.
|
|
3626
3866
|
*/
|
|
3627
|
-
message
|
|
3867
|
+
message?: string;
|
|
3868
|
+
/**
|
|
3869
|
+
* Structured confirm signal — bypasses NL confirm-word matching when true. Send parsedData field edits alongside. The NL word-list path is the fallback.
|
|
3870
|
+
*/
|
|
3871
|
+
confirm?: boolean;
|
|
3628
3872
|
/**
|
|
3629
3873
|
* Session ID for multi-turn conversation (auto-generated if not provided)
|
|
3630
3874
|
*/
|
|
@@ -3632,9 +3876,7 @@ type ProcessNlpDto = {
|
|
|
3632
3876
|
/**
|
|
3633
3877
|
* Parsed data from previous NLP response for session recovery. Send back the parsedData received in confirm_payee/confirm responses.
|
|
3634
3878
|
*/
|
|
3635
|
-
parsedData?:
|
|
3636
|
-
[key: string]: unknown;
|
|
3637
|
-
};
|
|
3879
|
+
parsedData?: ClientParsedDataDto;
|
|
3638
3880
|
/**
|
|
3639
3881
|
* confirm_rule echo-back: rule id selected from the prior confirm_rule response (matchedRule.id or alternatives[i].ruleId). Applied directly when the session is confirming_rule — no NL re-parse.
|
|
3640
3882
|
*/
|
|
@@ -3736,14 +3978,6 @@ type NlpParsedDataDto = {
|
|
|
3736
3978
|
*/
|
|
3737
3979
|
warning?: string;
|
|
3738
3980
|
};
|
|
3739
|
-
/**
|
|
3740
|
-
* Investment action
|
|
3741
|
-
*/
|
|
3742
|
-
type investmentAction = 'buy' | 'sell';
|
|
3743
|
-
/**
|
|
3744
|
-
* Payment source: asset (default) or liability (credit card)
|
|
3745
|
-
*/
|
|
3746
|
-
type paymentSource = 'asset' | 'liability';
|
|
3747
3981
|
type NlpSourceTransactionDto = {
|
|
3748
3982
|
/**
|
|
3749
3983
|
* Transaction date (ISO format)
|
|
@@ -4048,7 +4282,7 @@ type NlpResponseDto = {
|
|
|
4048
4282
|
/**
|
|
4049
4283
|
* Asset sub-type (only present when intent is "asset"). Determines which asset-related form to render.
|
|
4050
4284
|
*/
|
|
4051
|
-
assetSubType?: 'transfer' | 'banking' | 'investment';
|
|
4285
|
+
assetSubType?: 'transfer' | 'banking' | 'investment' | 'lend' | 'lend_collect';
|
|
4052
4286
|
/**
|
|
4053
4287
|
* Liability sub-type (only present when intent is "liability"). borrow: borrowing money (Liabilities → Assets), repay: repaying debt (Assets → Liabilities).
|
|
4054
4288
|
*/
|
|
@@ -4152,7 +4386,7 @@ type intent = 'expense' | 'asset' | 'income' | 'liability' | 'equity';
|
|
|
4152
4386
|
/**
|
|
4153
4387
|
* Asset sub-type (only present when intent is "asset"). Determines which asset-related form to render.
|
|
4154
4388
|
*/
|
|
4155
|
-
type assetSubType = 'transfer' | 'banking' | 'investment';
|
|
4389
|
+
type assetSubType = 'transfer' | 'banking' | 'investment' | 'lend' | 'lend_collect';
|
|
4156
4390
|
/**
|
|
4157
4391
|
* Liability sub-type (only present when intent is "liability"). borrow: borrowing money (Liabilities → Assets), repay: repaying debt (Assets → Liabilities).
|
|
4158
4392
|
*/
|
|
@@ -4183,13 +4417,21 @@ type PlatformListItemDto = {
|
|
|
4183
4417
|
*/
|
|
4184
4418
|
canonical: string;
|
|
4185
4419
|
/**
|
|
4186
|
-
* Suggested path segment — canonical
|
|
4420
|
+
* Suggested path segment — canonical PascalCased per hyphen-part, hyphens preserved (e.g. "Apple-Pay")
|
|
4187
4421
|
*/
|
|
4188
4422
|
suggestedSegment: string;
|
|
4189
4423
|
/**
|
|
4190
4424
|
* Logo URL
|
|
4191
4425
|
*/
|
|
4192
4426
|
logoUrl: string | null;
|
|
4427
|
+
/**
|
|
4428
|
+
* ISO 3166-1 alpha-2 (UPPERCASE); null = global platform
|
|
4429
|
+
*/
|
|
4430
|
+
countryCode: string | null;
|
|
4431
|
+
/**
|
|
4432
|
+
* Region-aware category (institution vocab, e.g. DigitalWallet/Bank). null = no region-aware suggestion; fall back to type.
|
|
4433
|
+
*/
|
|
4434
|
+
category: string | null;
|
|
4193
4435
|
/**
|
|
4194
4436
|
* Whether user has accounts using this platform
|
|
4195
4437
|
*/
|
|
@@ -4198,7 +4440,7 @@ type PlatformListItemDto = {
|
|
|
4198
4440
|
/**
|
|
4199
4441
|
* Platform type
|
|
4200
4442
|
*/
|
|
4201
|
-
type
|
|
4443
|
+
type type4 = 'BANK' | 'BROKERAGE' | 'CRYPTO_EXCHANGE' | 'PAYMENT' | 'INVESTMENT' | 'INSURANCE' | 'OTHER';
|
|
4202
4444
|
type PlatformMatchResultDto = {
|
|
4203
4445
|
/**
|
|
4204
4446
|
* Global platform ID
|
|
@@ -4217,13 +4459,21 @@ type PlatformMatchResultDto = {
|
|
|
4217
4459
|
*/
|
|
4218
4460
|
type: 'BANK' | 'BROKERAGE' | 'CRYPTO_EXCHANGE' | 'PAYMENT' | 'INVESTMENT' | 'INSURANCE' | 'OTHER';
|
|
4219
4461
|
/**
|
|
4220
|
-
* Suggested path segment — canonical,
|
|
4462
|
+
* Suggested path segment — canonical PascalCased per hyphen-part, hyphens preserved (e.g. "Apple-Pay")
|
|
4221
4463
|
*/
|
|
4222
4464
|
suggestedSegment: string;
|
|
4223
4465
|
/**
|
|
4224
4466
|
* Logo URL
|
|
4225
4467
|
*/
|
|
4226
4468
|
logoUrl: string | null;
|
|
4469
|
+
/**
|
|
4470
|
+
* ISO 3166-1 alpha-2 (UPPERCASE); null = global platform
|
|
4471
|
+
*/
|
|
4472
|
+
countryCode: string | null;
|
|
4473
|
+
/**
|
|
4474
|
+
* Region-aware category (institution vocab, e.g. DigitalWallet/Bank). null = no region-aware suggestion; fall back to type.
|
|
4475
|
+
*/
|
|
4476
|
+
category: string | null;
|
|
4227
4477
|
/**
|
|
4228
4478
|
* How this row matched: 'exact' > 'prefix' > 'substring'
|
|
4229
4479
|
*/
|
|
@@ -4937,7 +5187,7 @@ type HoldingPnlWarningDto = {
|
|
|
4937
5187
|
/**
|
|
4938
5188
|
* Warning type
|
|
4939
5189
|
*/
|
|
4940
|
-
type
|
|
5190
|
+
type type5 = 'MISSING_COST_FX_RATE' | 'MISSING_MARKET_FX_RATE' | 'MISSING_SALE_PRICE' | 'MISSING_REALIZED_FX_RATE' | 'OVERSOLD_LOTS' | 'NO_PRICE' | 'MIXED_COST_CURRENCY';
|
|
4941
5191
|
type HoldingPnlResponseDto = {
|
|
4942
5192
|
asOfDate: string;
|
|
4943
5193
|
baseCurrency: string;
|
|
@@ -4964,6 +5214,81 @@ type AnonymousLoginResponseDto = {
|
|
|
4964
5214
|
*/
|
|
4965
5215
|
authToken: string;
|
|
4966
5216
|
};
|
|
5217
|
+
type ParserContributionMetaDto = {
|
|
5218
|
+
/**
|
|
5219
|
+
* Institution slug (lowercase kebab-case)
|
|
5220
|
+
*/
|
|
5221
|
+
institution: string;
|
|
5222
|
+
region: 'cn' | 'us' | 'de' | 'fr' | 'gb' | 'hk' | 'jp' | 'sg' | 'au' | 'ca' | 'other';
|
|
5223
|
+
accountType: 'checking' | 'savings' | 'credit' | 'debit' | 'investment';
|
|
5224
|
+
format: 'csv' | 'xlsx' | 'pdf' | 'ofx' | 'qif';
|
|
5225
|
+
institutionDisplayName?: string;
|
|
5226
|
+
encoding?: string;
|
|
5227
|
+
/**
|
|
5228
|
+
* CSV delimiter character: ",", ";", "\t" or "|"
|
|
5229
|
+
*/
|
|
5230
|
+
delimiter?: string;
|
|
5231
|
+
/**
|
|
5232
|
+
* Header row count; the client omits the field when it is 1
|
|
5233
|
+
*/
|
|
5234
|
+
headerRows?: number;
|
|
5235
|
+
notes?: string;
|
|
5236
|
+
};
|
|
5237
|
+
type region = 'cn' | 'us' | 'de' | 'fr' | 'gb' | 'hk' | 'jp' | 'sg' | 'au' | 'ca' | 'other';
|
|
5238
|
+
type accountType = 'checking' | 'savings' | 'credit' | 'debit' | 'investment';
|
|
5239
|
+
type format = 'csv' | 'xlsx' | 'pdf' | 'ofx' | 'qif';
|
|
5240
|
+
type ParserContributionSamplesDto = {
|
|
5241
|
+
/**
|
|
5242
|
+
* Client-sanitized sample rows (key = column name, value = cell)
|
|
5243
|
+
*/
|
|
5244
|
+
rows: Array<{
|
|
5245
|
+
[key: string]: unknown;
|
|
5246
|
+
}>;
|
|
5247
|
+
rawHeaders?: Array<string>;
|
|
5248
|
+
};
|
|
5249
|
+
type FieldHintDto = {
|
|
5250
|
+
columnName: string;
|
|
5251
|
+
/**
|
|
5252
|
+
* Date format, e.g. yyyy-MM-dd HH:mm
|
|
5253
|
+
*/
|
|
5254
|
+
format?: string;
|
|
5255
|
+
signConvention?: 'negative-expense' | 'positive-expense' | 'separate-columns';
|
|
5256
|
+
creditColumn?: string;
|
|
5257
|
+
debitColumn?: string;
|
|
5258
|
+
};
|
|
5259
|
+
type signConvention = 'negative-expense' | 'positive-expense' | 'separate-columns';
|
|
5260
|
+
type ParserContributionFieldHintsDto = {
|
|
5261
|
+
date: FieldHintDto;
|
|
5262
|
+
amount: FieldHintDto;
|
|
5263
|
+
description?: FieldHintDto;
|
|
5264
|
+
balance?: FieldHintDto;
|
|
5265
|
+
payee?: FieldHintDto;
|
|
5266
|
+
reference?: FieldHintDto;
|
|
5267
|
+
category?: FieldHintDto;
|
|
5268
|
+
};
|
|
5269
|
+
type ExpectedTransactionDto = {
|
|
5270
|
+
date: string;
|
|
5271
|
+
amount: number;
|
|
5272
|
+
description: string;
|
|
5273
|
+
payee?: string;
|
|
5274
|
+
category?: string;
|
|
5275
|
+
};
|
|
5276
|
+
type ParserContributionExamplesDto = {
|
|
5277
|
+
expectedTransactions: Array<ExpectedTransactionDto>;
|
|
5278
|
+
};
|
|
5279
|
+
type ParserContributionRequestDto = {
|
|
5280
|
+
meta: ParserContributionMetaDto;
|
|
5281
|
+
samples: ParserContributionSamplesDto;
|
|
5282
|
+
fieldHints: ParserContributionFieldHintsDto;
|
|
5283
|
+
/**
|
|
5284
|
+
* Omitted entirely by the client when empty
|
|
5285
|
+
*/
|
|
5286
|
+
examples?: ParserContributionExamplesDto;
|
|
5287
|
+
};
|
|
5288
|
+
type ParserContributionRelayResponseDto = {
|
|
5289
|
+
issueUrl: string;
|
|
5290
|
+
issueNumber: number;
|
|
5291
|
+
};
|
|
4967
5292
|
type SymbolSearchResultDto = {
|
|
4968
5293
|
symbol: string;
|
|
4969
5294
|
name?: {
|
|
@@ -5249,7 +5574,7 @@ type TransactionControllerListData = {
|
|
|
5249
5574
|
*/
|
|
5250
5575
|
accountId?: string;
|
|
5251
5576
|
/**
|
|
5252
|
-
* Filter by ADR-0075 functional category (Group segment); matches any posting to an
|
|
5577
|
+
* Filter by ADR-0075 functional category (Group segment); matches any posting to an account whose derived Group segment equals this value. Must be accompanied by flow (ADR-0126).
|
|
5253
5578
|
*/
|
|
5254
5579
|
category?: string;
|
|
5255
5580
|
/**
|
|
@@ -5260,6 +5585,10 @@ type TransactionControllerListData = {
|
|
|
5260
5585
|
* Filter by end date (inclusive), format: YYYY-MM-DD
|
|
5261
5586
|
*/
|
|
5262
5587
|
dateTo?: string;
|
|
5588
|
+
/**
|
|
5589
|
+
* Required when category is present (400 otherwise) and vice versa (ADR-0126). Restricts the category account set to the flow root (income → Income:, expense → Expenses:) and drives the per-leg sign normalization of row viewpointAmount and the summary. OpenAPI cannot express conditional requiredness — the pairing is enforced at runtime.
|
|
5590
|
+
*/
|
|
5591
|
+
flow?: 'income' | 'expense';
|
|
5263
5592
|
/**
|
|
5264
5593
|
* Number of items per page (1-100, default: 20)
|
|
5265
5594
|
*/
|
|
@@ -6006,7 +6335,7 @@ type UserControllerDeleteOwnUserResponse = void;
|
|
|
6006
6335
|
type UserControllerGetUserData = {
|
|
6007
6336
|
acceptLanguage: string;
|
|
6008
6337
|
};
|
|
6009
|
-
type UserControllerGetUserResponse =
|
|
6338
|
+
type UserControllerGetUserResponse = UserResponseDto;
|
|
6010
6339
|
type UserControllerSignupUserData = {
|
|
6011
6340
|
requestBody: SignupDto;
|
|
6012
6341
|
};
|
|
@@ -6183,6 +6512,21 @@ type TransactionRuleControllerTestData = {
|
|
|
6183
6512
|
ruleId: string;
|
|
6184
6513
|
};
|
|
6185
6514
|
type TransactionRuleControllerTestResponse = TestRuleResponseDto;
|
|
6515
|
+
type CategoryCatalogControllerListData = {
|
|
6516
|
+
/**
|
|
6517
|
+
* Region code for tenant context
|
|
6518
|
+
*/
|
|
6519
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6520
|
+
/**
|
|
6521
|
+
* Filter by routeBearing (entity-router route() consumes it)
|
|
6522
|
+
*/
|
|
6523
|
+
routeBearing?: boolean;
|
|
6524
|
+
/**
|
|
6525
|
+
* Filter by scenario
|
|
6526
|
+
*/
|
|
6527
|
+
scenario?: 'expense' | 'income' | 'investment' | 'banking' | 'transfer' | 'payment';
|
|
6528
|
+
};
|
|
6529
|
+
type CategoryCatalogControllerListResponse = CategoryCatalogListResponseDto;
|
|
6186
6530
|
type EventControllerCreateData = {
|
|
6187
6531
|
/**
|
|
6188
6532
|
* Region code for tenant context (decorative for life events)
|
|
@@ -6518,6 +6862,12 @@ type PlatformControllerCreateData = {
|
|
|
6518
6862
|
requestBody: CreatePlatformDto;
|
|
6519
6863
|
};
|
|
6520
6864
|
type PlatformControllerCreateResponse = unknown;
|
|
6865
|
+
type PlatformControllerGetPlatformListData = {
|
|
6866
|
+
/**
|
|
6867
|
+
* Region code (ISO 3166-1 alpha-2) that biases within-type-bucket ordering (local-region platforms first). Case-insensitive — stored/compared UPPERCASE ("cn" == "CN").
|
|
6868
|
+
*/
|
|
6869
|
+
region?: string;
|
|
6870
|
+
};
|
|
6521
6871
|
type PlatformControllerGetPlatformListResponse = Array<PlatformListItemDto>;
|
|
6522
6872
|
type PlatformControllerMatchPlatformsData = {
|
|
6523
6873
|
/**
|
|
@@ -6525,7 +6875,7 @@ type PlatformControllerMatchPlatformsData = {
|
|
|
6525
6875
|
*/
|
|
6526
6876
|
q: string;
|
|
6527
6877
|
/**
|
|
6528
|
-
* Region code
|
|
6878
|
+
* Region code (ISO 3166-1 alpha-2) that biases within-tier ordering (local-region platforms first); also the intended categoryOverrides key. Case-insensitive — stored/compared UPPERCASE ("cn" == "CN").
|
|
6529
6879
|
*/
|
|
6530
6880
|
region?: string;
|
|
6531
6881
|
};
|
|
@@ -6629,6 +6979,14 @@ type AuthControllerAccessTokenLoginData = {
|
|
|
6629
6979
|
requestBody: AnonymousLoginDto;
|
|
6630
6980
|
};
|
|
6631
6981
|
type AuthControllerAccessTokenLoginResponse = AnonymousLoginResponseDto;
|
|
6982
|
+
type ParserContributionControllerCreateData = {
|
|
6983
|
+
/**
|
|
6984
|
+
* Region code for tenant context (routing only; the institution region rides in the payload meta)
|
|
6985
|
+
*/
|
|
6986
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6987
|
+
requestBody: ParserContributionRequestDto;
|
|
6988
|
+
};
|
|
6989
|
+
type ParserContributionControllerCreateResponse = ParserContributionRelayResponseDto;
|
|
6632
6990
|
type CacheControllerFlushCacheResponse = unknown;
|
|
6633
6991
|
type ExchangeRateControllerGetExchangeRateData = {
|
|
6634
6992
|
/**
|
|
@@ -7839,7 +8197,7 @@ type $OpenApiTs = {
|
|
|
7839
8197
|
/**
|
|
7840
8198
|
* User retrieved successfully
|
|
7841
8199
|
*/
|
|
7842
|
-
200:
|
|
8200
|
+
200: UserResponseDto;
|
|
7843
8201
|
};
|
|
7844
8202
|
};
|
|
7845
8203
|
post: {
|
|
@@ -8213,6 +8571,17 @@ type $OpenApiTs = {
|
|
|
8213
8571
|
};
|
|
8214
8572
|
};
|
|
8215
8573
|
};
|
|
8574
|
+
'/api/v1/{region}/bean/categories': {
|
|
8575
|
+
get: {
|
|
8576
|
+
req: CategoryCatalogControllerListData;
|
|
8577
|
+
res: {
|
|
8578
|
+
/**
|
|
8579
|
+
* Category catalog retrieved successfully
|
|
8580
|
+
*/
|
|
8581
|
+
200: CategoryCatalogListResponseDto;
|
|
8582
|
+
};
|
|
8583
|
+
};
|
|
8584
|
+
};
|
|
8216
8585
|
'/api/v1/{region}/bean/events': {
|
|
8217
8586
|
post: {
|
|
8218
8587
|
req: EventControllerCreateData;
|
|
@@ -8752,6 +9121,7 @@ type $OpenApiTs = {
|
|
|
8752
9121
|
};
|
|
8753
9122
|
'/api/v1/bean/platforms/list': {
|
|
8754
9123
|
get: {
|
|
9124
|
+
req: PlatformControllerGetPlatformListData;
|
|
8755
9125
|
res: {
|
|
8756
9126
|
/**
|
|
8757
9127
|
* List of platforms with user binding status
|
|
@@ -8915,6 +9285,37 @@ type $OpenApiTs = {
|
|
|
8915
9285
|
};
|
|
8916
9286
|
};
|
|
8917
9287
|
};
|
|
9288
|
+
'/api/v1/{region}/community/parser-contributions': {
|
|
9289
|
+
post: {
|
|
9290
|
+
req: ParserContributionControllerCreateData;
|
|
9291
|
+
res: {
|
|
9292
|
+
/**
|
|
9293
|
+
* Issue created by the bot
|
|
9294
|
+
*/
|
|
9295
|
+
201: ParserContributionRelayResponseDto;
|
|
9296
|
+
/**
|
|
9297
|
+
* Unauthorized
|
|
9298
|
+
*/
|
|
9299
|
+
401: ApiProblemResponseDto;
|
|
9300
|
+
/**
|
|
9301
|
+
* Validation failed (institution slug, empty samples, row/cell size limits)
|
|
9302
|
+
*/
|
|
9303
|
+
422: ApiProblemResponseDto;
|
|
9304
|
+
/**
|
|
9305
|
+
* Rate limited (5 submissions per user per hour)
|
|
9306
|
+
*/
|
|
9307
|
+
429: ApiProblemResponseDto;
|
|
9308
|
+
/**
|
|
9309
|
+
* Relay not configured on this deployment — clients fall back to the clipboard flow
|
|
9310
|
+
*/
|
|
9311
|
+
501: ApiProblemResponseDto;
|
|
9312
|
+
/**
|
|
9313
|
+
* GitHub bot failure (upstream), safe to retry
|
|
9314
|
+
*/
|
|
9315
|
+
502: ApiProblemResponseDto;
|
|
9316
|
+
};
|
|
9317
|
+
};
|
|
9318
|
+
};
|
|
8918
9319
|
'/api/v1/cache/flush': {
|
|
8919
9320
|
post: {
|
|
8920
9321
|
res: {
|
|
@@ -9197,7 +9598,8 @@ declare class BeanTransactionsService {
|
|
|
9197
9598
|
* @param data.status Filter by transaction status
|
|
9198
9599
|
* @param data.search Search in narration and payee fields (max 200 chars)
|
|
9199
9600
|
* @param data.accountId Filter by account ID (transactions with postings to this account)
|
|
9200
|
-
* @param data.category Filter by ADR-0075 functional category (Group segment); matches any posting to an
|
|
9601
|
+
* @param data.category Filter by ADR-0075 functional category (Group segment); matches any posting to an account whose derived Group segment equals this value. Must be accompanied by flow (ADR-0126).
|
|
9602
|
+
* @param data.flow Required when category is present (400 otherwise) and vice versa (ADR-0126). Restricts the category account set to the flow root (income → Income:, expense → Expenses:) and drives the per-leg sign normalization of row viewpointAmount and the summary. OpenAPI cannot express conditional requiredness — the pairing is enforced at runtime.
|
|
9201
9603
|
* @returns TransactionListResponseDto Transaction list
|
|
9202
9604
|
* @throws ApiError
|
|
9203
9605
|
*/
|
|
@@ -9503,4 +9905,4 @@ type OpenAPIConfig = {
|
|
|
9503
9905
|
};
|
|
9504
9906
|
declare const OpenAPI: OpenAPIConfig;
|
|
9505
9907
|
|
|
9506
|
-
export { type $OpenApiTs, type AccountControllerAddOpeningBalanceData, type AccountControllerAddOpeningBalanceResponse, 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 ActualBalanceDto, type AmountDto, type AmountRangeDto, type AnonymousLoginDto, type AnonymousLoginResponseDto, type ApiKeysControllerCreateApiKeyResponse, type ApiProblemResponseDto, type AssertReconciliationDto, 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 ComputeReconciliationDto, type ConfirmMatchDto, type ConvertedCashFlowDto, type ConvertedNetWorthDto, type CorrectTransactionDto, type CostDetailDto, type CostSpecDto, type CreateAccountDto, type CreateBeanEventDto, type CreateBeanPriceDto, type CreateCommodityDto, type CreateExternalAccountLinkDto, type CreateOpeningBalanceDto, 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 ExternalAccountLinkControllerCreateData, type ExternalAccountLinkControllerCreateResponse, type ExternalAccountLinkControllerFindAllData, type ExternalAccountLinkControllerFindAllResponse, type ExternalAccountLinkControllerFindOneData, type ExternalAccountLinkControllerFindOneResponse, type ExternalAccountLinkControllerRemoveData, type ExternalAccountLinkControllerRemoveResponse, type ExternalAccountLinkListResponseDto, type ExternalAccountLinkResponseDto, 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, type OnboardingAccountDto, type OnboardingControllerBootstrapData, type OnboardingControllerBootstrapResponse, type OnboardingDto, OpenAPI, type OpenAPIConfig, type OpeningBalanceResultDto, type PadReconciliationDto, type PadResultDto, 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 PlatformListItemDto, type PlatformMatchResponseDto, type PlatformMatchResultDto, 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 ReconciliationComputeResultDto, type ReconciliationControllerAssertData, type ReconciliationControllerAssertResponse, type ReconciliationControllerComputeData, type ReconciliationControllerComputeResponse, type ReconciliationControllerHistoryData, type ReconciliationControllerHistoryResponse, type ReconciliationControllerPadData, type ReconciliationControllerPadResponse, type ReconciliationRecordDto, 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 SignupResponseDto, type SupportedProvidersResponseDto, type SymbolControllerGetQuoteData, type SymbolControllerGetQuoteResponse, type SymbolControllerSearchData, type SymbolControllerSearchResponse, type SymbolQuoteDto, type SymbolSearchResultDto, 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 TransactionListSummaryDto, 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 assetSubClass, 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 matchType, type matchType2, type method, type mode, type paymentSource, type period, type productCategory, type provider, type role, type source, type source2, type source3, type status, type status2, type status3, type status4, type suggestedAction, type suggestedFrequency, type type, type type2, type type3, type type4, type value, type viewMode };
|
|
9908
|
+
export { type $OpenApiTs, type AccountControllerAddOpeningBalanceData, type AccountControllerAddOpeningBalanceResponse, 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 ActualBalanceDto, type AmountDto, type AmountRangeDto, type AnonymousLoginDto, type AnonymousLoginResponseDto, type ApiKeysControllerCreateApiKeyResponse, type ApiProblemResponseDto, type AssertReconciliationDto, 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 CategoryCatalogControllerListData, type CategoryCatalogControllerListResponse, type CategoryCatalogEntryDto, type CategoryCatalogListResponseDto, type CategoryGroupDto, type ClientParsedDataDto, 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 ComputeReconciliationDto, type ConfirmMatchDto, type ConvertedCashFlowDto, type ConvertedNetWorthDto, type CorrectTransactionDto, type CostDetailDto, type CostSpecDto, type CreateAccountDto, type CreateBeanEventDto, type CreateBeanPriceDto, type CreateCommodityDto, type CreateExternalAccountLinkDto, type CreateOpeningBalanceDto, 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 ExpectedTransactionDto, type ExpectedTransactionListResponseDto, type ExpectedTransactionResponseDto, type ExpectedTransactionRuleDto, type ExpensesByCategoryResponseDto, type ExpensesByCategorySummaryDto, type ExportControllerExportBeancountResponse, type ExportRulesResponseDto, type ExternalAccountLinkControllerCreateData, type ExternalAccountLinkControllerCreateResponse, type ExternalAccountLinkControllerFindAllData, type ExternalAccountLinkControllerFindAllResponse, type ExternalAccountLinkControllerFindOneData, type ExternalAccountLinkControllerFindOneResponse, type ExternalAccountLinkControllerRemoveData, type ExternalAccountLinkControllerRemoveResponse, type ExternalAccountLinkListResponseDto, type ExternalAccountLinkResponseDto, type FieldHintDto, 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, type OnboardingAccountDto, type OnboardingControllerBootstrapData, type OnboardingControllerBootstrapResponse, type OnboardingDto, OpenAPI, type OpenAPIConfig, type OpeningBalanceResultDto, type PadReconciliationDto, type PadResultDto, type ParserContributionControllerCreateData, type ParserContributionControllerCreateResponse, type ParserContributionExamplesDto, type ParserContributionFieldHintsDto, type ParserContributionMetaDto, type ParserContributionRelayResponseDto, type ParserContributionRequestDto, type ParserContributionSamplesDto, 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 PlatformControllerGetPlatformListData, type PlatformControllerGetPlatformListResponse, type PlatformControllerMatchPlatformsData, type PlatformControllerMatchPlatformsResponse, type PlatformControllerUpdateData, type PlatformControllerUpdateResponse, type PlatformGroupDto, type PlatformListItemDto, type PlatformMatchResponseDto, type PlatformMatchResultDto, 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 ReconciliationComputeResultDto, type ReconciliationControllerAssertData, type ReconciliationControllerAssertResponse, type ReconciliationControllerComputeData, type ReconciliationControllerComputeResponse, type ReconciliationControllerHistoryData, type ReconciliationControllerHistoryResponse, type ReconciliationControllerPadData, type ReconciliationControllerPadResponse, type ReconciliationRecordDto, 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 SignupResponseDto, type SupportedProvidersResponseDto, type SymbolControllerGetQuoteData, type SymbolControllerGetQuoteResponse, type SymbolControllerSearchData, type SymbolControllerSearchResponse, type SymbolQuoteDto, type SymbolSearchResultDto, 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 TransactionListItemDto, type TransactionListResponseDto, type TransactionListSummaryDto, type TransactionListViewpointDto, 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 UserResponseDto, type UserSettingsResponseDto, type ValidateRuleDto, type ValidateRuleResponseDto, type VersionedConfigDto, type accountType, type action, type action2, type assetClass, type assetSubClass, 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 flow, type format, type frequency, type importerId, type intent, type investmentAction, type learningSource, type liabilitySubType, type matchLogic, type matchType, type matchType2, type method, type mode, type paymentSource, type period, type productCategory, type provider, type region, type role, type scenario, type signConvention, type source, type source2, type source3, type status, type status2, type status3, type status4, type suggestedAction, type suggestedFrequency, type type, type type2, type type3, type type4, type type5, type value, type viewMode };
|