@firela/api-types 0.0.0-canary.688167dd → 0.0.0-canary.69a6df79
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 +581 -153
- package/dist/index.d.ts +581 -153
- package/dist/index.js +7 -5
- package/dist/index.mjs +7 -5
- package/package.json +1 -1
- package/src/generated/schemas.gen.ts +697 -28
- package/src/generated/services.gen.ts +83 -9
- package/src/generated/types.gen.ts +3385 -161
package/dist/index.d.mts
CHANGED
|
@@ -81,7 +81,7 @@ type AccountResponseDto = {
|
|
|
81
81
|
/**
|
|
82
82
|
* Account-level asset sub-class (product type, e.g. STOCK/DEPOSIT/CREDIT_CARD/PERSONAL_LOAN). Computed from the account path via the asset-classifier (ADR-0077). Null for non-asset accounts (Income/Expenses/Equity) or unmatched paths.
|
|
83
83
|
*/
|
|
84
|
-
assetSubClass?: 'DEPOSIT' | 'CASH' | 'MONEY_MARKET_FUND' | 'STOCK' | 'ETF' | 'MUTUAL_FUND' | 'EQUITY_COMPENSATION' | 'GOVERNMENT_BOND' | 'CORPORATE_BOND' | 'BOND_FUND' | 'PRIMARY_RESIDENCE' | 'INVESTMENT_PROPERTY' | 'REIT' | 'GOLD' | 'SILVER' | 'PRECIOUS_METAL' | 'PRECIOUS_METAL_FUND' | 'COMMODITY' | 'COMMODITY_FUND' | 'CRYPTOCURRENCY' | 'RETIREMENT_ACCOUNT' | 'HEALTH_ACCOUNT' | 'EDUCATION_ACCOUNT' | 'INSURANCE' | 'PRIVATE_EQUITY' | 'HEDGE_FUND' | 'COLLECTIBLES' | 'MORTGAGE' | 'STUDENT_LOAN' | 'CREDIT_CARD' | 'PERSONAL_LOAN' | 'OTHER' | null;
|
|
84
|
+
assetSubClass?: 'DEPOSIT' | 'CASH' | 'MONEY_MARKET_FUND' | 'STOCK' | 'ETF' | 'MUTUAL_FUND' | 'EQUITY_COMPENSATION' | 'GOVERNMENT_BOND' | 'CORPORATE_BOND' | 'BOND_FUND' | 'PRIMARY_RESIDENCE' | 'INVESTMENT_PROPERTY' | 'REIT' | 'GOLD' | 'SILVER' | 'PRECIOUS_METAL' | 'PRECIOUS_METAL_FUND' | 'COMMODITY' | 'COMMODITY_FUND' | 'CRYPTOCURRENCY' | 'RETIREMENT_ACCOUNT' | 'HEALTH_ACCOUNT' | 'EDUCATION_ACCOUNT' | 'INSURANCE' | 'PRIVATE_EQUITY' | 'HEDGE_FUND' | 'COLLECTIBLES' | 'MORTGAGE' | 'STUDENT_LOAN' | 'CREDIT_CARD' | 'PERSONAL_LOAN' | 'ACCOUNTS_PAYABLE' | 'TAX_PAYABLE' | 'OTHER' | null;
|
|
85
85
|
/**
|
|
86
86
|
* Account status
|
|
87
87
|
*/
|
|
@@ -152,7 +152,7 @@ type type = 'Assets' | 'Liabilities' | 'Income' | 'Expenses' | 'Equity';
|
|
|
152
152
|
/**
|
|
153
153
|
* Account-level asset sub-class (product type, e.g. STOCK/DEPOSIT/CREDIT_CARD/PERSONAL_LOAN). Computed from the account path via the asset-classifier (ADR-0077). Null for non-asset accounts (Income/Expenses/Equity) or unmatched paths.
|
|
154
154
|
*/
|
|
155
|
-
type assetSubClass = 'DEPOSIT' | 'CASH' | 'MONEY_MARKET_FUND' | 'STOCK' | 'ETF' | 'MUTUAL_FUND' | 'EQUITY_COMPENSATION' | 'GOVERNMENT_BOND' | 'CORPORATE_BOND' | 'BOND_FUND' | 'PRIMARY_RESIDENCE' | 'INVESTMENT_PROPERTY' | 'REIT' | 'GOLD' | 'SILVER' | 'PRECIOUS_METAL' | 'PRECIOUS_METAL_FUND' | 'COMMODITY' | 'COMMODITY_FUND' | 'CRYPTOCURRENCY' | 'RETIREMENT_ACCOUNT' | 'HEALTH_ACCOUNT' | 'EDUCATION_ACCOUNT' | 'INSURANCE' | 'PRIVATE_EQUITY' | 'HEDGE_FUND' | 'COLLECTIBLES' | 'MORTGAGE' | 'STUDENT_LOAN' | 'CREDIT_CARD' | 'PERSONAL_LOAN' | 'OTHER';
|
|
155
|
+
type assetSubClass = 'DEPOSIT' | 'CASH' | 'MONEY_MARKET_FUND' | 'STOCK' | 'ETF' | 'MUTUAL_FUND' | 'EQUITY_COMPENSATION' | 'GOVERNMENT_BOND' | 'CORPORATE_BOND' | 'BOND_FUND' | 'PRIMARY_RESIDENCE' | 'INVESTMENT_PROPERTY' | 'REIT' | 'GOLD' | 'SILVER' | 'PRECIOUS_METAL' | 'PRECIOUS_METAL_FUND' | 'COMMODITY' | 'COMMODITY_FUND' | 'CRYPTOCURRENCY' | 'RETIREMENT_ACCOUNT' | 'HEALTH_ACCOUNT' | 'EDUCATION_ACCOUNT' | 'INSURANCE' | 'PRIVATE_EQUITY' | 'HEDGE_FUND' | 'COLLECTIBLES' | 'MORTGAGE' | 'STUDENT_LOAN' | 'CREDIT_CARD' | 'PERSONAL_LOAN' | 'ACCOUNTS_PAYABLE' | 'TAX_PAYABLE' | 'OTHER';
|
|
156
156
|
/**
|
|
157
157
|
* Account status
|
|
158
158
|
*/
|
|
@@ -254,7 +254,27 @@ type AccountStandardResponseDto = {
|
|
|
254
254
|
* Icon identifier for UI display
|
|
255
255
|
*/
|
|
256
256
|
icon: string;
|
|
257
|
+
/**
|
|
258
|
+
* Onboarding product category (coarse grouping derived from assetSubClass)
|
|
259
|
+
*/
|
|
260
|
+
productCategory: 'cash' | 'investment' | 'credit_card' | 'loan' | 'payable_tax' | 'other';
|
|
261
|
+
/**
|
|
262
|
+
* Asset class (LIQUIDITY/EQUITY/.../LIABILITY), derived at read time from classification rules
|
|
263
|
+
*/
|
|
264
|
+
assetClass?: 'LIQUIDITY' | 'EQUITY' | 'FIXED_INCOME' | 'PRECIOUS_METALS' | 'COMMODITY' | 'INSURANCE' | 'ALTERNATIVE_INVESTMENT' | 'PERSONAL_ASSETS' | 'LIABILITY' | 'REAL_ESTATE' | 'INDEX';
|
|
265
|
+
/**
|
|
266
|
+
* Asset sub-class (product type, derived at read time from classification rules)
|
|
267
|
+
*/
|
|
268
|
+
assetSubClass?: string;
|
|
257
269
|
};
|
|
270
|
+
/**
|
|
271
|
+
* Onboarding product category (coarse grouping derived from assetSubClass)
|
|
272
|
+
*/
|
|
273
|
+
type productCategory = 'cash' | 'investment' | 'credit_card' | 'loan' | 'payable_tax' | 'other';
|
|
274
|
+
/**
|
|
275
|
+
* Asset class (LIQUIDITY/EQUITY/.../LIABILITY), derived at read time from classification rules
|
|
276
|
+
*/
|
|
277
|
+
type assetClass = 'LIQUIDITY' | 'EQUITY' | 'FIXED_INCOME' | 'PRECIOUS_METALS' | 'COMMODITY' | 'INSURANCE' | 'ALTERNATIVE_INVESTMENT' | 'PERSONAL_ASSETS' | 'LIABILITY' | 'REAL_ESTATE' | 'INDEX';
|
|
258
278
|
type AccountStandardListResponseDto = {
|
|
259
279
|
/**
|
|
260
280
|
* Array of account templates
|
|
@@ -437,7 +457,7 @@ type PostingResponseDto = {
|
|
|
437
457
|
*/
|
|
438
458
|
account: string;
|
|
439
459
|
/**
|
|
440
|
-
* 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.
|
|
441
461
|
*/
|
|
442
462
|
units?: string;
|
|
443
463
|
/**
|
|
@@ -649,7 +669,7 @@ type PostingDetailDto = {
|
|
|
649
669
|
*/
|
|
650
670
|
account: string;
|
|
651
671
|
/**
|
|
652
|
-
* 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.
|
|
653
673
|
*/
|
|
654
674
|
units?: string;
|
|
655
675
|
/**
|
|
@@ -779,6 +799,94 @@ type flag2 = 'CLEARED' | 'PENDING' | 'PADDING' | 'SUMMARIZE' | 'TRANSFER' | 'CON
|
|
|
779
799
|
* Transaction status
|
|
780
800
|
*/
|
|
781
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
|
+
* Row amount under the request viewpoint (ADR-0126). Category viewpoint (category + flow): per-leg sign-normalized sum over the category account set (Income-root legs negated, Expenses-root identity) — positive under normal booking but NOT clamped (explicit negative expense legs and net-flip refund months stay negative). No viewpoint (plain list / search, no accountId): wallet money-flow net = raw-sign sum over cost-less Assets/Liabilities legs (income positive, expenses negative, transfers net ~0); color cue is the wallet sign (net < 0 = wealth-decreasing). Status-orthogonal: audit views match too (ADR-0128 amount-as-matching-key). Omitted under the account viewpoint (incl. dual) and for rows with no wallet leg.
|
|
883
|
+
*/
|
|
884
|
+
viewpointAmount?: string;
|
|
885
|
+
/**
|
|
886
|
+
* Currency of viewpointAmount. A row spanning multiple currencies takes the largest-magnitude currency group (known simplification, ADR-0126).
|
|
887
|
+
*/
|
|
888
|
+
viewpointCurrency?: string;
|
|
889
|
+
};
|
|
782
890
|
type BalanceByCurrencyDto = {
|
|
783
891
|
/**
|
|
784
892
|
* ISO 4217 currency code
|
|
@@ -805,7 +913,7 @@ type ExchangeRateWarningDto = {
|
|
|
805
913
|
};
|
|
806
914
|
type TransactionListSummaryDto = {
|
|
807
915
|
/**
|
|
808
|
-
* 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.
|
|
809
917
|
*/
|
|
810
918
|
totalAmount: string;
|
|
811
919
|
/**
|
|
@@ -821,11 +929,29 @@ type TransactionListSummaryDto = {
|
|
|
821
929
|
*/
|
|
822
930
|
warnings?: Array<ExchangeRateWarningDto>;
|
|
823
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';
|
|
824
950
|
type TransactionListResponseDto = {
|
|
825
951
|
/**
|
|
826
952
|
* List of transactions
|
|
827
953
|
*/
|
|
828
|
-
data: Array<
|
|
954
|
+
data: Array<TransactionListItemDto>;
|
|
829
955
|
/**
|
|
830
956
|
* Total count of matching transactions
|
|
831
957
|
*/
|
|
@@ -842,6 +968,10 @@ type TransactionListResponseDto = {
|
|
|
842
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.
|
|
843
969
|
*/
|
|
844
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;
|
|
845
975
|
};
|
|
846
976
|
type TagSuggestionDto = {
|
|
847
977
|
/**
|
|
@@ -1034,7 +1164,7 @@ type ReviewSummaryDto = {
|
|
|
1034
1164
|
/**
|
|
1035
1165
|
* Review type
|
|
1036
1166
|
*/
|
|
1037
|
-
type
|
|
1167
|
+
type type3 = 'DUPLICATE' | 'RULE_MATCH' | 'PAYEE_MATCH' | 'ACCOUNT_VALIDATION' | 'PIPELINE_ERROR';
|
|
1038
1168
|
/**
|
|
1039
1169
|
* Review status
|
|
1040
1170
|
*/
|
|
@@ -2551,6 +2681,30 @@ type DeleteOwnUserDto = {
|
|
|
2551
2681
|
*/
|
|
2552
2682
|
accessToken: string;
|
|
2553
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
|
+
};
|
|
2554
2708
|
type SignupDto = {
|
|
2555
2709
|
/**
|
|
2556
2710
|
* Cloudflare Turnstile verification token (optional when Turnstile disabled)
|
|
@@ -3013,6 +3167,42 @@ type TestRuleResponseDto = {
|
|
|
3013
3167
|
[key: string]: unknown;
|
|
3014
3168
|
};
|
|
3015
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
|
+
};
|
|
3016
3206
|
type CreateBeanEventDto = {
|
|
3017
3207
|
/**
|
|
3018
3208
|
* Life event date (ISO 8601)
|
|
@@ -3497,13 +3687,13 @@ type ProviderSyncConfigDto = {
|
|
|
3497
3687
|
*/
|
|
3498
3688
|
defaultCurrency: string;
|
|
3499
3689
|
/**
|
|
3500
|
-
* Default expense account for the second posting
|
|
3690
|
+
* Default expense account for the second posting. Omit when no real default exists; the pipeline routes to Review via the Uncategorized sentinel (#618).
|
|
3501
3691
|
*/
|
|
3502
|
-
defaultExpenseAccount
|
|
3692
|
+
defaultExpenseAccount?: string;
|
|
3503
3693
|
/**
|
|
3504
|
-
* Default income account for the second posting
|
|
3694
|
+
* Default income account for the second posting. Omit when no real default exists; the pipeline routes to Review via the Uncategorized sentinel (#618).
|
|
3505
3695
|
*/
|
|
3506
|
-
defaultIncomeAccount
|
|
3696
|
+
defaultIncomeAccount?: string;
|
|
3507
3697
|
/**
|
|
3508
3698
|
* Filter pending transactions
|
|
3509
3699
|
*/
|
|
@@ -3600,11 +3790,85 @@ type ExternalAccountLinkListResponseDto = {
|
|
|
3600
3790
|
};
|
|
3601
3791
|
type ParserTelemetryReportDto = unknown;
|
|
3602
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';
|
|
3603
3863
|
type ProcessNlpDto = {
|
|
3604
3864
|
/**
|
|
3605
|
-
* Natural language text describing a transaction (
|
|
3865
|
+
* Natural language text describing a transaction. Optional when `confirm` is true (structured confirm); otherwise required.
|
|
3866
|
+
*/
|
|
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.
|
|
3606
3870
|
*/
|
|
3607
|
-
|
|
3871
|
+
confirm?: boolean;
|
|
3608
3872
|
/**
|
|
3609
3873
|
* Session ID for multi-turn conversation (auto-generated if not provided)
|
|
3610
3874
|
*/
|
|
@@ -3612,15 +3876,13 @@ type ProcessNlpDto = {
|
|
|
3612
3876
|
/**
|
|
3613
3877
|
* Parsed data from previous NLP response for session recovery. Send back the parsedData received in confirm_payee/confirm responses.
|
|
3614
3878
|
*/
|
|
3615
|
-
parsedData?:
|
|
3616
|
-
[key: string]: unknown;
|
|
3617
|
-
};
|
|
3879
|
+
parsedData?: ClientParsedDataDto;
|
|
3618
3880
|
/**
|
|
3619
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.
|
|
3620
3882
|
*/
|
|
3621
3883
|
selectedRuleId?: string;
|
|
3622
3884
|
/**
|
|
3623
|
-
* confirm_account echo-back: account path selected from the prior confirm_account response (suggestedAccount, similarAccounts[i], or a typed path). Applied directly when the session is confirming_account — no NL re-parse.
|
|
3885
|
+
* confirm_account echo-back: account path selected from the prior confirm_account response (suggestedAccount, similarAccounts[i].path, or a typed path). Applied directly when the session is confirming_account — no NL re-parse.
|
|
3624
3886
|
*/
|
|
3625
3887
|
selectedAccount?: string;
|
|
3626
3888
|
};
|
|
@@ -3716,14 +3978,6 @@ type NlpParsedDataDto = {
|
|
|
3716
3978
|
*/
|
|
3717
3979
|
warning?: string;
|
|
3718
3980
|
};
|
|
3719
|
-
/**
|
|
3720
|
-
* Investment action
|
|
3721
|
-
*/
|
|
3722
|
-
type investmentAction = 'buy' | 'sell';
|
|
3723
|
-
/**
|
|
3724
|
-
* Payment source: asset (default) or liability (credit card)
|
|
3725
|
-
*/
|
|
3726
|
-
type paymentSource = 'asset' | 'liability';
|
|
3727
3981
|
type NlpSourceTransactionDto = {
|
|
3728
3982
|
/**
|
|
3729
3983
|
* Transaction date (ISO format)
|
|
@@ -3850,6 +4104,16 @@ type NlpRuleConfirmationDataDto = {
|
|
|
3850
4104
|
*/
|
|
3851
4105
|
reasons: Array<string>;
|
|
3852
4106
|
};
|
|
4107
|
+
type NlpAccountCandidateDto = {
|
|
4108
|
+
/**
|
|
4109
|
+
* Canonical beancount account path (echo back on selection)
|
|
4110
|
+
*/
|
|
4111
|
+
path: string;
|
|
4112
|
+
/**
|
|
4113
|
+
* Localized display name (ADR-0114 read-time projection, user locale)
|
|
4114
|
+
*/
|
|
4115
|
+
name: string;
|
|
4116
|
+
};
|
|
3853
4117
|
type NlpAccountConfirmationDataDto = {
|
|
3854
4118
|
/**
|
|
3855
4119
|
* The invalid account name
|
|
@@ -3860,9 +4124,9 @@ type NlpAccountConfirmationDataDto = {
|
|
|
3860
4124
|
*/
|
|
3861
4125
|
suggestedAccount?: string;
|
|
3862
4126
|
/**
|
|
3863
|
-
* Similar accounts for user selection
|
|
4127
|
+
* Similar accounts for user selection (path + localized name, #680)
|
|
3864
4128
|
*/
|
|
3865
|
-
similarAccounts: Array<
|
|
4129
|
+
similarAccounts: Array<NlpAccountCandidateDto>;
|
|
3866
4130
|
/**
|
|
3867
4131
|
* Error message explaining the issue
|
|
3868
4132
|
*/
|
|
@@ -4028,7 +4292,7 @@ type NlpResponseDto = {
|
|
|
4028
4292
|
/**
|
|
4029
4293
|
* Asset sub-type (only present when intent is "asset"). Determines which asset-related form to render.
|
|
4030
4294
|
*/
|
|
4031
|
-
assetSubType?: 'transfer' | 'banking' | 'investment';
|
|
4295
|
+
assetSubType?: 'transfer' | 'banking' | 'investment' | 'lend' | 'lend_collect';
|
|
4032
4296
|
/**
|
|
4033
4297
|
* Liability sub-type (only present when intent is "liability"). borrow: borrowing money (Liabilities → Assets), repay: repaying debt (Assets → Liabilities).
|
|
4034
4298
|
*/
|
|
@@ -4132,7 +4396,7 @@ type intent = 'expense' | 'asset' | 'income' | 'liability' | 'equity';
|
|
|
4132
4396
|
/**
|
|
4133
4397
|
* Asset sub-type (only present when intent is "asset"). Determines which asset-related form to render.
|
|
4134
4398
|
*/
|
|
4135
|
-
type assetSubType = 'transfer' | 'banking' | 'investment';
|
|
4399
|
+
type assetSubType = 'transfer' | 'banking' | 'investment' | 'lend' | 'lend_collect';
|
|
4136
4400
|
/**
|
|
4137
4401
|
* Liability sub-type (only present when intent is "liability"). borrow: borrowing money (Liabilities → Assets), repay: repaying debt (Assets → Liabilities).
|
|
4138
4402
|
*/
|
|
@@ -4163,13 +4427,21 @@ type PlatformListItemDto = {
|
|
|
4163
4427
|
*/
|
|
4164
4428
|
canonical: string;
|
|
4165
4429
|
/**
|
|
4166
|
-
* Suggested path segment — canonical
|
|
4430
|
+
* Suggested path segment — canonical PascalCased per hyphen-part, hyphens preserved (e.g. "Apple-Pay")
|
|
4167
4431
|
*/
|
|
4168
4432
|
suggestedSegment: string;
|
|
4169
4433
|
/**
|
|
4170
4434
|
* Logo URL
|
|
4171
4435
|
*/
|
|
4172
4436
|
logoUrl: string | null;
|
|
4437
|
+
/**
|
|
4438
|
+
* ISO 3166-1 alpha-2 (UPPERCASE); null = global platform
|
|
4439
|
+
*/
|
|
4440
|
+
countryCode: string | null;
|
|
4441
|
+
/**
|
|
4442
|
+
* Region-aware category (institution vocab, e.g. DigitalWallet/Bank). null = no region-aware suggestion; fall back to type.
|
|
4443
|
+
*/
|
|
4444
|
+
category: string | null;
|
|
4173
4445
|
/**
|
|
4174
4446
|
* Whether user has accounts using this platform
|
|
4175
4447
|
*/
|
|
@@ -4178,7 +4450,7 @@ type PlatformListItemDto = {
|
|
|
4178
4450
|
/**
|
|
4179
4451
|
* Platform type
|
|
4180
4452
|
*/
|
|
4181
|
-
type
|
|
4453
|
+
type type4 = 'BANK' | 'BROKERAGE' | 'CRYPTO_EXCHANGE' | 'PAYMENT' | 'INVESTMENT' | 'INSURANCE' | 'OTHER';
|
|
4182
4454
|
type PlatformMatchResultDto = {
|
|
4183
4455
|
/**
|
|
4184
4456
|
* Global platform ID
|
|
@@ -4197,13 +4469,21 @@ type PlatformMatchResultDto = {
|
|
|
4197
4469
|
*/
|
|
4198
4470
|
type: 'BANK' | 'BROKERAGE' | 'CRYPTO_EXCHANGE' | 'PAYMENT' | 'INVESTMENT' | 'INSURANCE' | 'OTHER';
|
|
4199
4471
|
/**
|
|
4200
|
-
* Suggested path segment — canonical,
|
|
4472
|
+
* Suggested path segment — canonical PascalCased per hyphen-part, hyphens preserved (e.g. "Apple-Pay")
|
|
4201
4473
|
*/
|
|
4202
4474
|
suggestedSegment: string;
|
|
4203
4475
|
/**
|
|
4204
4476
|
* Logo URL
|
|
4205
4477
|
*/
|
|
4206
4478
|
logoUrl: string | null;
|
|
4479
|
+
/**
|
|
4480
|
+
* ISO 3166-1 alpha-2 (UPPERCASE); null = global platform
|
|
4481
|
+
*/
|
|
4482
|
+
countryCode: string | null;
|
|
4483
|
+
/**
|
|
4484
|
+
* Region-aware category (institution vocab, e.g. DigitalWallet/Bank). null = no region-aware suggestion; fall back to type.
|
|
4485
|
+
*/
|
|
4486
|
+
category: string | null;
|
|
4207
4487
|
/**
|
|
4208
4488
|
* How this row matched: 'exact' > 'prefix' > 'substring'
|
|
4209
4489
|
*/
|
|
@@ -4549,10 +4829,6 @@ type AssetClassGroupDto = {
|
|
|
4549
4829
|
*/
|
|
4550
4830
|
convertedBalance?: string;
|
|
4551
4831
|
};
|
|
4552
|
-
/**
|
|
4553
|
-
* Asset class name
|
|
4554
|
-
*/
|
|
4555
|
-
type assetClass = 'LIQUIDITY' | 'EQUITY' | 'FIXED_INCOME' | 'PRECIOUS_METALS' | 'COMMODITY' | 'INSURANCE' | 'ALTERNATIVE_INVESTMENT' | 'PERSONAL_ASSETS' | 'LIABILITY' | 'REAL_ESTATE' | 'INDEX';
|
|
4556
4832
|
type AssetClassSummaryDto = {
|
|
4557
4833
|
/**
|
|
4558
4834
|
* Total number of accounts
|
|
@@ -4921,7 +5197,7 @@ type HoldingPnlWarningDto = {
|
|
|
4921
5197
|
/**
|
|
4922
5198
|
* Warning type
|
|
4923
5199
|
*/
|
|
4924
|
-
type
|
|
5200
|
+
type type5 = 'MISSING_COST_FX_RATE' | 'MISSING_MARKET_FX_RATE' | 'MISSING_SALE_PRICE' | 'MISSING_REALIZED_FX_RATE' | 'OVERSOLD_LOTS' | 'NO_PRICE' | 'MIXED_COST_CURRENCY';
|
|
4925
5201
|
type HoldingPnlResponseDto = {
|
|
4926
5202
|
asOfDate: string;
|
|
4927
5203
|
baseCurrency: string;
|
|
@@ -4948,6 +5224,81 @@ type AnonymousLoginResponseDto = {
|
|
|
4948
5224
|
*/
|
|
4949
5225
|
authToken: string;
|
|
4950
5226
|
};
|
|
5227
|
+
type ParserContributionMetaDto = {
|
|
5228
|
+
/**
|
|
5229
|
+
* Institution slug (lowercase kebab-case)
|
|
5230
|
+
*/
|
|
5231
|
+
institution: string;
|
|
5232
|
+
region: 'cn' | 'us' | 'de' | 'fr' | 'gb' | 'hk' | 'jp' | 'sg' | 'au' | 'ca' | 'other';
|
|
5233
|
+
accountType: 'checking' | 'savings' | 'credit' | 'debit' | 'investment';
|
|
5234
|
+
format: 'csv' | 'xlsx' | 'pdf' | 'ofx' | 'qif';
|
|
5235
|
+
institutionDisplayName?: string;
|
|
5236
|
+
encoding?: string;
|
|
5237
|
+
/**
|
|
5238
|
+
* CSV delimiter character: ",", ";", "\t" or "|"
|
|
5239
|
+
*/
|
|
5240
|
+
delimiter?: string;
|
|
5241
|
+
/**
|
|
5242
|
+
* Header row count; the client omits the field when it is 1
|
|
5243
|
+
*/
|
|
5244
|
+
headerRows?: number;
|
|
5245
|
+
notes?: string;
|
|
5246
|
+
};
|
|
5247
|
+
type region = 'cn' | 'us' | 'de' | 'fr' | 'gb' | 'hk' | 'jp' | 'sg' | 'au' | 'ca' | 'other';
|
|
5248
|
+
type accountType = 'checking' | 'savings' | 'credit' | 'debit' | 'investment';
|
|
5249
|
+
type format = 'csv' | 'xlsx' | 'pdf' | 'ofx' | 'qif';
|
|
5250
|
+
type ParserContributionSamplesDto = {
|
|
5251
|
+
/**
|
|
5252
|
+
* Client-sanitized sample rows (key = column name, value = cell)
|
|
5253
|
+
*/
|
|
5254
|
+
rows: Array<{
|
|
5255
|
+
[key: string]: unknown;
|
|
5256
|
+
}>;
|
|
5257
|
+
rawHeaders?: Array<string>;
|
|
5258
|
+
};
|
|
5259
|
+
type FieldHintDto = {
|
|
5260
|
+
columnName: string;
|
|
5261
|
+
/**
|
|
5262
|
+
* Date format, e.g. yyyy-MM-dd HH:mm
|
|
5263
|
+
*/
|
|
5264
|
+
format?: string;
|
|
5265
|
+
signConvention?: 'negative-expense' | 'positive-expense' | 'separate-columns';
|
|
5266
|
+
creditColumn?: string;
|
|
5267
|
+
debitColumn?: string;
|
|
5268
|
+
};
|
|
5269
|
+
type signConvention = 'negative-expense' | 'positive-expense' | 'separate-columns';
|
|
5270
|
+
type ParserContributionFieldHintsDto = {
|
|
5271
|
+
date: FieldHintDto;
|
|
5272
|
+
amount: FieldHintDto;
|
|
5273
|
+
description?: FieldHintDto;
|
|
5274
|
+
balance?: FieldHintDto;
|
|
5275
|
+
payee?: FieldHintDto;
|
|
5276
|
+
reference?: FieldHintDto;
|
|
5277
|
+
category?: FieldHintDto;
|
|
5278
|
+
};
|
|
5279
|
+
type ExpectedTransactionDto = {
|
|
5280
|
+
date: string;
|
|
5281
|
+
amount: number;
|
|
5282
|
+
description: string;
|
|
5283
|
+
payee?: string;
|
|
5284
|
+
category?: string;
|
|
5285
|
+
};
|
|
5286
|
+
type ParserContributionExamplesDto = {
|
|
5287
|
+
expectedTransactions: Array<ExpectedTransactionDto>;
|
|
5288
|
+
};
|
|
5289
|
+
type ParserContributionRequestDto = {
|
|
5290
|
+
meta: ParserContributionMetaDto;
|
|
5291
|
+
samples: ParserContributionSamplesDto;
|
|
5292
|
+
fieldHints: ParserContributionFieldHintsDto;
|
|
5293
|
+
/**
|
|
5294
|
+
* Omitted entirely by the client when empty
|
|
5295
|
+
*/
|
|
5296
|
+
examples?: ParserContributionExamplesDto;
|
|
5297
|
+
};
|
|
5298
|
+
type ParserContributionRelayResponseDto = {
|
|
5299
|
+
issueUrl: string;
|
|
5300
|
+
issueNumber: number;
|
|
5301
|
+
};
|
|
4951
5302
|
type SymbolSearchResultDto = {
|
|
4952
5303
|
symbol: string;
|
|
4953
5304
|
name?: {
|
|
@@ -5078,7 +5429,7 @@ type AccountControllerCreateData = {
|
|
|
5078
5429
|
/**
|
|
5079
5430
|
* Region code for tenant context
|
|
5080
5431
|
*/
|
|
5081
|
-
region: '
|
|
5432
|
+
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';
|
|
5082
5433
|
requestBody: CreateAccountDto;
|
|
5083
5434
|
};
|
|
5084
5435
|
type AccountControllerCreateResponse = AccountResponseDto;
|
|
@@ -5098,7 +5449,7 @@ type AccountControllerFindAllData = {
|
|
|
5098
5449
|
/**
|
|
5099
5450
|
* Region code for tenant context
|
|
5100
5451
|
*/
|
|
5101
|
-
region: '
|
|
5452
|
+
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';
|
|
5102
5453
|
/**
|
|
5103
5454
|
* Search term for account path
|
|
5104
5455
|
*/
|
|
@@ -5121,7 +5472,7 @@ type AccountControllerFindOneData = {
|
|
|
5121
5472
|
/**
|
|
5122
5473
|
* Region code for tenant context
|
|
5123
5474
|
*/
|
|
5124
|
-
region: '
|
|
5475
|
+
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';
|
|
5125
5476
|
};
|
|
5126
5477
|
type AccountControllerFindOneResponse = AccountResponseDto;
|
|
5127
5478
|
type AccountControllerUpdateData = {
|
|
@@ -5132,7 +5483,7 @@ type AccountControllerUpdateData = {
|
|
|
5132
5483
|
/**
|
|
5133
5484
|
* Region code for tenant context
|
|
5134
5485
|
*/
|
|
5135
|
-
region: '
|
|
5486
|
+
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';
|
|
5136
5487
|
requestBody: UpdateAccountDto;
|
|
5137
5488
|
};
|
|
5138
5489
|
type AccountControllerUpdateResponse = AccountResponseDto;
|
|
@@ -5144,7 +5495,7 @@ type AccountControllerDeleteData = {
|
|
|
5144
5495
|
/**
|
|
5145
5496
|
* Region code for tenant context
|
|
5146
5497
|
*/
|
|
5147
|
-
region: '
|
|
5498
|
+
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';
|
|
5148
5499
|
};
|
|
5149
5500
|
type AccountControllerDeleteResponse = void;
|
|
5150
5501
|
type AccountControllerCloseData = {
|
|
@@ -5155,7 +5506,7 @@ type AccountControllerCloseData = {
|
|
|
5155
5506
|
/**
|
|
5156
5507
|
* Region code for tenant context
|
|
5157
5508
|
*/
|
|
5158
|
-
region: '
|
|
5509
|
+
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';
|
|
5159
5510
|
requestBody: CloseAccountDto;
|
|
5160
5511
|
};
|
|
5161
5512
|
type AccountControllerCloseResponse = AccountResponseDto;
|
|
@@ -5167,7 +5518,7 @@ type AccountControllerReopenData = {
|
|
|
5167
5518
|
/**
|
|
5168
5519
|
* Region code for tenant context
|
|
5169
5520
|
*/
|
|
5170
|
-
region: '
|
|
5521
|
+
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';
|
|
5171
5522
|
requestBody: ReopenAccountDto;
|
|
5172
5523
|
};
|
|
5173
5524
|
type AccountControllerReopenResponse = AccountResponseDto;
|
|
@@ -5179,7 +5530,7 @@ type AccountControllerAddOpeningBalanceData = {
|
|
|
5179
5530
|
/**
|
|
5180
5531
|
* Region code for tenant context
|
|
5181
5532
|
*/
|
|
5182
|
-
region: '
|
|
5533
|
+
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';
|
|
5183
5534
|
requestBody: CreateOpeningBalanceDto;
|
|
5184
5535
|
};
|
|
5185
5536
|
type AccountControllerAddOpeningBalanceResponse = OpeningBalanceResultDto;
|
|
@@ -5187,7 +5538,7 @@ type AccountStandardsControllerGetTemplatesData = {
|
|
|
5187
5538
|
/**
|
|
5188
5539
|
* Region code (cn, us, de)
|
|
5189
5540
|
*/
|
|
5190
|
-
region: '
|
|
5541
|
+
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';
|
|
5191
5542
|
/**
|
|
5192
5543
|
* Search term for path or description
|
|
5193
5544
|
*/
|
|
@@ -5206,21 +5557,21 @@ type AccountStandardsControllerGetTemplateMetadataData = {
|
|
|
5206
5557
|
/**
|
|
5207
5558
|
* Region code for tenant context
|
|
5208
5559
|
*/
|
|
5209
|
-
region: '
|
|
5560
|
+
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';
|
|
5210
5561
|
};
|
|
5211
5562
|
type AccountStandardsControllerGetTemplateMetadataResponse = TemplateMetadataResponseDto;
|
|
5212
5563
|
type AccountStandardsControllerGetRegionsData = {
|
|
5213
5564
|
/**
|
|
5214
5565
|
* Region code for tenant context
|
|
5215
5566
|
*/
|
|
5216
|
-
region: '
|
|
5567
|
+
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';
|
|
5217
5568
|
};
|
|
5218
5569
|
type AccountStandardsControllerGetRegionsResponse = RegionsMetadataResponseDto;
|
|
5219
5570
|
type TransactionControllerCreateData = {
|
|
5220
5571
|
/**
|
|
5221
5572
|
* Region code for tenant context
|
|
5222
5573
|
*/
|
|
5223
|
-
region: '
|
|
5574
|
+
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';
|
|
5224
5575
|
/**
|
|
5225
5576
|
* Transaction data with postings
|
|
5226
5577
|
*/
|
|
@@ -5233,7 +5584,7 @@ type TransactionControllerListData = {
|
|
|
5233
5584
|
*/
|
|
5234
5585
|
accountId?: string;
|
|
5235
5586
|
/**
|
|
5236
|
-
* Filter by ADR-0075 functional category (Group segment); matches any posting to an
|
|
5587
|
+
* 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).
|
|
5237
5588
|
*/
|
|
5238
5589
|
category?: string;
|
|
5239
5590
|
/**
|
|
@@ -5244,6 +5595,10 @@ type TransactionControllerListData = {
|
|
|
5244
5595
|
* Filter by end date (inclusive), format: YYYY-MM-DD
|
|
5245
5596
|
*/
|
|
5246
5597
|
dateTo?: string;
|
|
5598
|
+
/**
|
|
5599
|
+
* 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.
|
|
5600
|
+
*/
|
|
5601
|
+
flow?: 'income' | 'expense';
|
|
5247
5602
|
/**
|
|
5248
5603
|
* Number of items per page (1-100, default: 20)
|
|
5249
5604
|
*/
|
|
@@ -5255,22 +5610,22 @@ type TransactionControllerListData = {
|
|
|
5255
5610
|
/**
|
|
5256
5611
|
* Region code for tenant context
|
|
5257
5612
|
*/
|
|
5258
|
-
region: '
|
|
5613
|
+
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';
|
|
5259
5614
|
/**
|
|
5260
5615
|
* Search in narration and payee fields (max 200 chars)
|
|
5261
5616
|
*/
|
|
5262
5617
|
search?: string;
|
|
5263
5618
|
/**
|
|
5264
|
-
* Filter by transaction status
|
|
5619
|
+
* Filter by transaction status: single value, comma-separated multi-value (e.g. VOIDED,SUPERSEDED), or ALL to include audit rows. Defaults to ACTIVE-only (ADR-0128; previously unfiltered — breaking change).
|
|
5265
5620
|
*/
|
|
5266
|
-
status?: 'ACTIVE' | 'VOIDED' | 'SUPERSEDED';
|
|
5621
|
+
status?: 'ACTIVE' | 'VOIDED' | 'SUPERSEDED' | 'ALL';
|
|
5267
5622
|
};
|
|
5268
5623
|
type TransactionControllerListResponse = TransactionListResponseDto;
|
|
5269
5624
|
type TransactionControllerCreateBatchData = {
|
|
5270
5625
|
/**
|
|
5271
5626
|
* Region code for tenant context
|
|
5272
5627
|
*/
|
|
5273
|
-
region: '
|
|
5628
|
+
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';
|
|
5274
5629
|
requestBody: BatchCreateTransactionDto;
|
|
5275
5630
|
};
|
|
5276
5631
|
type TransactionControllerCreateBatchResponse = BatchTransactionResponseDto;
|
|
@@ -5282,7 +5637,7 @@ type TransactionControllerCorrectData = {
|
|
|
5282
5637
|
/**
|
|
5283
5638
|
* Region code for tenant context
|
|
5284
5639
|
*/
|
|
5285
|
-
region: '
|
|
5640
|
+
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';
|
|
5286
5641
|
requestBody: CorrectTransactionDto;
|
|
5287
5642
|
};
|
|
5288
5643
|
type TransactionControllerCorrectResponse = TransactionDetailDto;
|
|
@@ -5298,7 +5653,7 @@ type TransactionControllerSuggestTagsData = {
|
|
|
5298
5653
|
/**
|
|
5299
5654
|
* Region code for tenant context
|
|
5300
5655
|
*/
|
|
5301
|
-
region: '
|
|
5656
|
+
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';
|
|
5302
5657
|
/**
|
|
5303
5658
|
* usage (default) or name
|
|
5304
5659
|
*/
|
|
@@ -5313,7 +5668,7 @@ type TransactionControllerGetDetailData = {
|
|
|
5313
5668
|
/**
|
|
5314
5669
|
* Region code for tenant context
|
|
5315
5670
|
*/
|
|
5316
|
-
region: '
|
|
5671
|
+
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';
|
|
5317
5672
|
};
|
|
5318
5673
|
type TransactionControllerGetDetailResponse = TransactionDetailDto;
|
|
5319
5674
|
type TransactionControllerUpdateData = {
|
|
@@ -5324,7 +5679,7 @@ type TransactionControllerUpdateData = {
|
|
|
5324
5679
|
/**
|
|
5325
5680
|
* Region code for tenant context
|
|
5326
5681
|
*/
|
|
5327
|
-
region: '
|
|
5682
|
+
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';
|
|
5328
5683
|
/**
|
|
5329
5684
|
* Fields to update (all optional)
|
|
5330
5685
|
*/
|
|
@@ -5339,7 +5694,7 @@ type TransactionControllerDeleteData = {
|
|
|
5339
5694
|
/**
|
|
5340
5695
|
* Region code for tenant context
|
|
5341
5696
|
*/
|
|
5342
|
-
region: '
|
|
5697
|
+
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';
|
|
5343
5698
|
};
|
|
5344
5699
|
type TransactionControllerDeleteResponse = void;
|
|
5345
5700
|
type BalanceControllerGetBalanceData = {
|
|
@@ -5358,14 +5713,14 @@ type BalanceControllerGetBalanceData = {
|
|
|
5358
5713
|
/**
|
|
5359
5714
|
* Region code for tenant context
|
|
5360
5715
|
*/
|
|
5361
|
-
region: '
|
|
5716
|
+
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';
|
|
5362
5717
|
};
|
|
5363
5718
|
type BalanceControllerGetBalanceResponse = BalanceResponseDto;
|
|
5364
5719
|
type BalanceControllerGetMultiCurrencyBalanceData = {
|
|
5365
5720
|
/**
|
|
5366
5721
|
* Region code for tenant context
|
|
5367
5722
|
*/
|
|
5368
|
-
region: '
|
|
5723
|
+
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';
|
|
5369
5724
|
};
|
|
5370
5725
|
type BalanceControllerGetMultiCurrencyBalanceResponse = MultiCurrencyBalanceResponseDto;
|
|
5371
5726
|
type ReviewControllerFindAllData = {
|
|
@@ -5384,7 +5739,7 @@ type ReviewControllerFindAllData = {
|
|
|
5384
5739
|
/**
|
|
5385
5740
|
* Region code for tenant context
|
|
5386
5741
|
*/
|
|
5387
|
-
region: '
|
|
5742
|
+
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';
|
|
5388
5743
|
/**
|
|
5389
5744
|
* Sort order
|
|
5390
5745
|
*/
|
|
@@ -5399,7 +5754,7 @@ type ReviewControllerGetStatsData = {
|
|
|
5399
5754
|
/**
|
|
5400
5755
|
* Region code for tenant context
|
|
5401
5756
|
*/
|
|
5402
|
-
region: '
|
|
5757
|
+
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';
|
|
5403
5758
|
};
|
|
5404
5759
|
type ReviewControllerGetStatsResponse = ReviewStatsDto;
|
|
5405
5760
|
type ReviewControllerFindOneData = {
|
|
@@ -5410,7 +5765,7 @@ type ReviewControllerFindOneData = {
|
|
|
5410
5765
|
/**
|
|
5411
5766
|
* Region code for tenant context
|
|
5412
5767
|
*/
|
|
5413
|
-
region: '
|
|
5768
|
+
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';
|
|
5414
5769
|
};
|
|
5415
5770
|
type ReviewControllerFindOneResponse = ReviewDetailDto;
|
|
5416
5771
|
type ReviewControllerResolveData = {
|
|
@@ -5421,7 +5776,7 @@ type ReviewControllerResolveData = {
|
|
|
5421
5776
|
/**
|
|
5422
5777
|
* Region code for tenant context
|
|
5423
5778
|
*/
|
|
5424
|
-
region: '
|
|
5779
|
+
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';
|
|
5425
5780
|
requestBody: ResolveReviewDto;
|
|
5426
5781
|
};
|
|
5427
5782
|
type ReviewControllerResolveResponse = ResolveResultDto;
|
|
@@ -5433,14 +5788,14 @@ type ReviewControllerUndoData = {
|
|
|
5433
5788
|
/**
|
|
5434
5789
|
* Region code for tenant context
|
|
5435
5790
|
*/
|
|
5436
|
-
region: '
|
|
5791
|
+
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';
|
|
5437
5792
|
};
|
|
5438
5793
|
type ReviewControllerUndoResponse = UndoResultDto;
|
|
5439
5794
|
type ReviewControllerBatchResolveData = {
|
|
5440
5795
|
/**
|
|
5441
5796
|
* Region code for tenant context
|
|
5442
5797
|
*/
|
|
5443
|
-
region: '
|
|
5798
|
+
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';
|
|
5444
5799
|
/**
|
|
5445
5800
|
* Batch resolution request containing review IDs and action
|
|
5446
5801
|
*/
|
|
@@ -5585,7 +5940,7 @@ type CommodityControllerCreateData = {
|
|
|
5585
5940
|
/**
|
|
5586
5941
|
* Region code for tenant context
|
|
5587
5942
|
*/
|
|
5588
|
-
region: '
|
|
5943
|
+
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';
|
|
5589
5944
|
requestBody: CreateCommodityDto;
|
|
5590
5945
|
};
|
|
5591
5946
|
type CommodityControllerCreateResponse = CommodityResponseDto;
|
|
@@ -5593,7 +5948,7 @@ type CommodityControllerFindAllData = {
|
|
|
5593
5948
|
/**
|
|
5594
5949
|
* Region code for tenant context
|
|
5595
5950
|
*/
|
|
5596
|
-
region: '
|
|
5951
|
+
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';
|
|
5597
5952
|
/**
|
|
5598
5953
|
* Search term for symbol or metadata fields (partial match). Searches symbol and metadata.name.
|
|
5599
5954
|
*/
|
|
@@ -5608,7 +5963,7 @@ type CommodityControllerFindOneData = {
|
|
|
5608
5963
|
/**
|
|
5609
5964
|
* Region code for tenant context
|
|
5610
5965
|
*/
|
|
5611
|
-
region: '
|
|
5966
|
+
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';
|
|
5612
5967
|
/**
|
|
5613
5968
|
* Commodity symbol
|
|
5614
5969
|
*/
|
|
@@ -5619,7 +5974,7 @@ type CommodityControllerUpdateData = {
|
|
|
5619
5974
|
/**
|
|
5620
5975
|
* Region code for tenant context
|
|
5621
5976
|
*/
|
|
5622
|
-
region: '
|
|
5977
|
+
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';
|
|
5623
5978
|
requestBody: UpdateCommodityDto;
|
|
5624
5979
|
/**
|
|
5625
5980
|
* Commodity symbol
|
|
@@ -5631,7 +5986,7 @@ type CommodityControllerDeleteData = {
|
|
|
5631
5986
|
/**
|
|
5632
5987
|
* Region code for tenant context
|
|
5633
5988
|
*/
|
|
5634
|
-
region: '
|
|
5989
|
+
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';
|
|
5635
5990
|
/**
|
|
5636
5991
|
* Commodity symbol
|
|
5637
5992
|
*/
|
|
@@ -5642,7 +5997,7 @@ type CommodityControllerGetOrCreateData = {
|
|
|
5642
5997
|
/**
|
|
5643
5998
|
* Region code for tenant context
|
|
5644
5999
|
*/
|
|
5645
|
-
region: '
|
|
6000
|
+
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';
|
|
5646
6001
|
/**
|
|
5647
6002
|
* Commodity symbol
|
|
5648
6003
|
*/
|
|
@@ -5653,14 +6008,14 @@ type CommodityControllerBulkCreateData = {
|
|
|
5653
6008
|
/**
|
|
5654
6009
|
* Region code for tenant context
|
|
5655
6010
|
*/
|
|
5656
|
-
region: '
|
|
6011
|
+
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';
|
|
5657
6012
|
};
|
|
5658
6013
|
type CommodityControllerBulkCreateResponse = Array<CommodityResponseDto>;
|
|
5659
6014
|
type PriceControllerCreateData = {
|
|
5660
6015
|
/**
|
|
5661
6016
|
* Region code for tenant context
|
|
5662
6017
|
*/
|
|
5663
|
-
region: '
|
|
6018
|
+
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';
|
|
5664
6019
|
requestBody: CreateBeanPriceDto;
|
|
5665
6020
|
};
|
|
5666
6021
|
type PriceControllerCreateResponse = PriceResponseDto;
|
|
@@ -5692,7 +6047,7 @@ type PriceControllerFindAllData = {
|
|
|
5692
6047
|
/**
|
|
5693
6048
|
* Region code for tenant context
|
|
5694
6049
|
*/
|
|
5695
|
-
region: '
|
|
6050
|
+
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';
|
|
5696
6051
|
/**
|
|
5697
6052
|
* Search term for currency or quoteCurrency (case-insensitive partial match)
|
|
5698
6053
|
*/
|
|
@@ -5707,7 +6062,7 @@ type PriceControllerFindOneData = {
|
|
|
5707
6062
|
/**
|
|
5708
6063
|
* Region code for tenant context
|
|
5709
6064
|
*/
|
|
5710
|
-
region: '
|
|
6065
|
+
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';
|
|
5711
6066
|
};
|
|
5712
6067
|
type PriceControllerFindOneResponse = PriceResponseDto;
|
|
5713
6068
|
type PriceControllerUpdateData = {
|
|
@@ -5718,7 +6073,7 @@ type PriceControllerUpdateData = {
|
|
|
5718
6073
|
/**
|
|
5719
6074
|
* Region code for tenant context
|
|
5720
6075
|
*/
|
|
5721
|
-
region: '
|
|
6076
|
+
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';
|
|
5722
6077
|
requestBody: UpdateBeanPriceDto;
|
|
5723
6078
|
};
|
|
5724
6079
|
type PriceControllerUpdateResponse = PriceResponseDto;
|
|
@@ -5730,14 +6085,14 @@ type PriceControllerDeleteData = {
|
|
|
5730
6085
|
/**
|
|
5731
6086
|
* Region code for tenant context
|
|
5732
6087
|
*/
|
|
5733
|
-
region: '
|
|
6088
|
+
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';
|
|
5734
6089
|
};
|
|
5735
6090
|
type PriceControllerDeleteResponse = void;
|
|
5736
6091
|
type PriceControllerBulkCreateData = {
|
|
5737
6092
|
/**
|
|
5738
6093
|
* Region code for tenant context
|
|
5739
6094
|
*/
|
|
5740
|
-
region: '
|
|
6095
|
+
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';
|
|
5741
6096
|
requestBody: Array<string>;
|
|
5742
6097
|
};
|
|
5743
6098
|
type PriceControllerBulkCreateResponse = Array<PriceResponseDto>;
|
|
@@ -5745,7 +6100,7 @@ type RecurringRuleControllerCreateData = {
|
|
|
5745
6100
|
/**
|
|
5746
6101
|
* Region code for tenant context
|
|
5747
6102
|
*/
|
|
5748
|
-
region: '
|
|
6103
|
+
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';
|
|
5749
6104
|
requestBody: CreateRecurringRuleDto;
|
|
5750
6105
|
};
|
|
5751
6106
|
type RecurringRuleControllerCreateResponse = RecurringRuleResponseDto;
|
|
@@ -5765,14 +6120,14 @@ type RecurringRuleControllerFindAllData = {
|
|
|
5765
6120
|
/**
|
|
5766
6121
|
* Region code for tenant context
|
|
5767
6122
|
*/
|
|
5768
|
-
region: '
|
|
6123
|
+
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';
|
|
5769
6124
|
};
|
|
5770
6125
|
type RecurringRuleControllerFindAllResponse = Array<RecurringRuleResponseDto>;
|
|
5771
6126
|
type RecurringRuleControllerCreateFromTransactionData = {
|
|
5772
6127
|
/**
|
|
5773
6128
|
* Region code for tenant context
|
|
5774
6129
|
*/
|
|
5775
|
-
region: '
|
|
6130
|
+
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';
|
|
5776
6131
|
requestBody: CreateRuleFromTransactionDto;
|
|
5777
6132
|
/**
|
|
5778
6133
|
* Source transaction ID
|
|
@@ -5788,7 +6143,7 @@ type RecurringRuleControllerFindOneData = {
|
|
|
5788
6143
|
/**
|
|
5789
6144
|
* Region code for tenant context
|
|
5790
6145
|
*/
|
|
5791
|
-
region: '
|
|
6146
|
+
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';
|
|
5792
6147
|
};
|
|
5793
6148
|
type RecurringRuleControllerFindOneResponse = RecurringRuleResponseDto;
|
|
5794
6149
|
type RecurringRuleControllerUpdateData = {
|
|
@@ -5799,7 +6154,7 @@ type RecurringRuleControllerUpdateData = {
|
|
|
5799
6154
|
/**
|
|
5800
6155
|
* Region code for tenant context
|
|
5801
6156
|
*/
|
|
5802
|
-
region: '
|
|
6157
|
+
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';
|
|
5803
6158
|
requestBody: UpdateRecurringRuleDto;
|
|
5804
6159
|
};
|
|
5805
6160
|
type RecurringRuleControllerUpdateResponse = RecurringRuleResponseDto;
|
|
@@ -5811,7 +6166,7 @@ type RecurringRuleControllerDeleteData = {
|
|
|
5811
6166
|
/**
|
|
5812
6167
|
* Region code for tenant context
|
|
5813
6168
|
*/
|
|
5814
|
-
region: '
|
|
6169
|
+
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';
|
|
5815
6170
|
};
|
|
5816
6171
|
type RecurringRuleControllerDeleteResponse = void;
|
|
5817
6172
|
type RecurringRuleControllerGetWithStatsData = {
|
|
@@ -5822,7 +6177,7 @@ type RecurringRuleControllerGetWithStatsData = {
|
|
|
5822
6177
|
/**
|
|
5823
6178
|
* Region code for tenant context
|
|
5824
6179
|
*/
|
|
5825
|
-
region: '
|
|
6180
|
+
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';
|
|
5826
6181
|
};
|
|
5827
6182
|
type RecurringRuleControllerGetWithStatsResponse = RecurringRuleWithStatsResponseDto;
|
|
5828
6183
|
type ExpectedTransactionControllerFindAllData = {
|
|
@@ -5833,7 +6188,7 @@ type ExpectedTransactionControllerFindAllData = {
|
|
|
5833
6188
|
/**
|
|
5834
6189
|
* Region code for tenant context
|
|
5835
6190
|
*/
|
|
5836
|
-
region: '
|
|
6191
|
+
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';
|
|
5837
6192
|
/**
|
|
5838
6193
|
* Filter by recurring rule ID
|
|
5839
6194
|
*/
|
|
@@ -5852,7 +6207,7 @@ type ExpectedTransactionControllerFindOverdueData = {
|
|
|
5852
6207
|
/**
|
|
5853
6208
|
* Region code for tenant context
|
|
5854
6209
|
*/
|
|
5855
|
-
region: '
|
|
6210
|
+
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';
|
|
5856
6211
|
};
|
|
5857
6212
|
type ExpectedTransactionControllerFindOverdueResponse = ExpectedTransactionListResponseDto;
|
|
5858
6213
|
type ExpectedTransactionControllerFindOneData = {
|
|
@@ -5863,7 +6218,7 @@ type ExpectedTransactionControllerFindOneData = {
|
|
|
5863
6218
|
/**
|
|
5864
6219
|
* Region code for tenant context
|
|
5865
6220
|
*/
|
|
5866
|
-
region: '
|
|
6221
|
+
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';
|
|
5867
6222
|
};
|
|
5868
6223
|
type ExpectedTransactionControllerFindOneResponse = ExpectedTransactionResponseDto;
|
|
5869
6224
|
type ExpectedTransactionControllerSkipData = {
|
|
@@ -5874,7 +6229,7 @@ type ExpectedTransactionControllerSkipData = {
|
|
|
5874
6229
|
/**
|
|
5875
6230
|
* Region code for tenant context
|
|
5876
6231
|
*/
|
|
5877
|
-
region: '
|
|
6232
|
+
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';
|
|
5878
6233
|
};
|
|
5879
6234
|
type ExpectedTransactionControllerSkipResponse = ExpectedTransactionResponseDto;
|
|
5880
6235
|
type ExpectedTransactionControllerUndoSkipData = {
|
|
@@ -5885,7 +6240,7 @@ type ExpectedTransactionControllerUndoSkipData = {
|
|
|
5885
6240
|
/**
|
|
5886
6241
|
* Region code for tenant context
|
|
5887
6242
|
*/
|
|
5888
|
-
region: '
|
|
6243
|
+
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';
|
|
5889
6244
|
};
|
|
5890
6245
|
type ExpectedTransactionControllerUndoSkipResponse = ExpectedTransactionResponseDto;
|
|
5891
6246
|
type ExpectedTransactionControllerConfirmMatchData = {
|
|
@@ -5896,7 +6251,7 @@ type ExpectedTransactionControllerConfirmMatchData = {
|
|
|
5896
6251
|
/**
|
|
5897
6252
|
* Region code for tenant context
|
|
5898
6253
|
*/
|
|
5899
|
-
region: '
|
|
6254
|
+
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';
|
|
5900
6255
|
requestBody: ConfirmMatchDto;
|
|
5901
6256
|
};
|
|
5902
6257
|
type ExpectedTransactionControllerConfirmMatchResponse = unknown;
|
|
@@ -5908,7 +6263,7 @@ type ExpectedTransactionControllerUnmatchData = {
|
|
|
5908
6263
|
/**
|
|
5909
6264
|
* Region code for tenant context
|
|
5910
6265
|
*/
|
|
5911
|
-
region: '
|
|
6266
|
+
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';
|
|
5912
6267
|
};
|
|
5913
6268
|
type ExpectedTransactionControllerUnmatchResponse = unknown;
|
|
5914
6269
|
type ExpectedTransactionControllerEnterNowData = {
|
|
@@ -5919,7 +6274,7 @@ type ExpectedTransactionControllerEnterNowData = {
|
|
|
5919
6274
|
/**
|
|
5920
6275
|
* Region code for tenant context
|
|
5921
6276
|
*/
|
|
5922
|
-
region: '
|
|
6277
|
+
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';
|
|
5923
6278
|
requestBody: EnterNowDto;
|
|
5924
6279
|
};
|
|
5925
6280
|
type ExpectedTransactionControllerEnterNowResponse = unknown;
|
|
@@ -5931,7 +6286,7 @@ type ForecastControllerGetForecastData = {
|
|
|
5931
6286
|
/**
|
|
5932
6287
|
* Region code for tenant context
|
|
5933
6288
|
*/
|
|
5934
|
-
region: '
|
|
6289
|
+
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';
|
|
5935
6290
|
};
|
|
5936
6291
|
type ForecastControllerGetForecastResponse = ForecastResponseDto;
|
|
5937
6292
|
type ReportingControllerGetPortfolioTrendsData = {
|
|
@@ -5946,7 +6301,7 @@ type ReportingControllerGetPortfolioTrendsData = {
|
|
|
5946
6301
|
/**
|
|
5947
6302
|
* Region code for tenant context
|
|
5948
6303
|
*/
|
|
5949
|
-
region: '
|
|
6304
|
+
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';
|
|
5950
6305
|
};
|
|
5951
6306
|
type ReportingControllerGetPortfolioTrendsResponse = PortfolioTrendsResponseDto;
|
|
5952
6307
|
type ReportingControllerGetCashFlowTrendsData = {
|
|
@@ -5961,14 +6316,14 @@ type ReportingControllerGetCashFlowTrendsData = {
|
|
|
5961
6316
|
/**
|
|
5962
6317
|
* Region code for tenant context
|
|
5963
6318
|
*/
|
|
5964
|
-
region: '
|
|
6319
|
+
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';
|
|
5965
6320
|
};
|
|
5966
6321
|
type ReportingControllerGetCashFlowTrendsResponse = CashFlowTrendsResponseDto;
|
|
5967
6322
|
type ReportingControllerGenerateSnapshotData = {
|
|
5968
6323
|
/**
|
|
5969
6324
|
* Region code for tenant context
|
|
5970
6325
|
*/
|
|
5971
|
-
region: '
|
|
6326
|
+
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';
|
|
5972
6327
|
/**
|
|
5973
6328
|
* Optional date (defaults to today)
|
|
5974
6329
|
*/
|
|
@@ -5979,7 +6334,7 @@ type ReportingControllerBackfillSnapshotsData = {
|
|
|
5979
6334
|
/**
|
|
5980
6335
|
* Region code for tenant context
|
|
5981
6336
|
*/
|
|
5982
|
-
region: '
|
|
6337
|
+
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';
|
|
5983
6338
|
requestBody: BackfillSnapshotsBody;
|
|
5984
6339
|
};
|
|
5985
6340
|
type ReportingControllerBackfillSnapshotsResponse = BackfillSnapshotsResponse;
|
|
@@ -5990,7 +6345,7 @@ type UserControllerDeleteOwnUserResponse = void;
|
|
|
5990
6345
|
type UserControllerGetUserData = {
|
|
5991
6346
|
acceptLanguage: string;
|
|
5992
6347
|
};
|
|
5993
|
-
type UserControllerGetUserResponse =
|
|
6348
|
+
type UserControllerGetUserResponse = UserResponseDto;
|
|
5994
6349
|
type UserControllerSignupUserData = {
|
|
5995
6350
|
requestBody: SignupDto;
|
|
5996
6351
|
};
|
|
@@ -6052,7 +6407,7 @@ type TransactionRuleControllerCreateData = {
|
|
|
6052
6407
|
/**
|
|
6053
6408
|
* Region code for tenant context
|
|
6054
6409
|
*/
|
|
6055
|
-
region: '
|
|
6410
|
+
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';
|
|
6056
6411
|
requestBody: CreateTransactionRuleDto;
|
|
6057
6412
|
};
|
|
6058
6413
|
type TransactionRuleControllerCreateResponse = TransactionRuleResponseDto;
|
|
@@ -6080,14 +6435,14 @@ type TransactionRuleControllerListData = {
|
|
|
6080
6435
|
/**
|
|
6081
6436
|
* Region code for tenant context
|
|
6082
6437
|
*/
|
|
6083
|
-
region: '
|
|
6438
|
+
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';
|
|
6084
6439
|
};
|
|
6085
6440
|
type TransactionRuleControllerListResponse = TransactionRuleListResponseDto;
|
|
6086
6441
|
type TransactionRuleControllerValidateData = {
|
|
6087
6442
|
/**
|
|
6088
6443
|
* Region code for tenant context
|
|
6089
6444
|
*/
|
|
6090
|
-
region: '
|
|
6445
|
+
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';
|
|
6091
6446
|
requestBody: ValidateRuleDto;
|
|
6092
6447
|
};
|
|
6093
6448
|
type TransactionRuleControllerValidateResponse = ValidateRuleResponseDto;
|
|
@@ -6095,7 +6450,7 @@ type TransactionRuleControllerBulkCreateData = {
|
|
|
6095
6450
|
/**
|
|
6096
6451
|
* Region code for tenant context
|
|
6097
6452
|
*/
|
|
6098
|
-
region: '
|
|
6453
|
+
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';
|
|
6099
6454
|
requestBody: BulkCreateRulesDto;
|
|
6100
6455
|
};
|
|
6101
6456
|
type TransactionRuleControllerBulkCreateResponse = BulkCreateRulesResponseDto;
|
|
@@ -6107,7 +6462,7 @@ type TransactionRuleControllerExportData = {
|
|
|
6107
6462
|
/**
|
|
6108
6463
|
* Region code for tenant context
|
|
6109
6464
|
*/
|
|
6110
|
-
region: '
|
|
6465
|
+
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';
|
|
6111
6466
|
};
|
|
6112
6467
|
type TransactionRuleControllerExportResponse = ExportRulesResponseDto;
|
|
6113
6468
|
type TransactionRuleControllerGetStatisticsData = {
|
|
@@ -6118,14 +6473,14 @@ type TransactionRuleControllerGetStatisticsData = {
|
|
|
6118
6473
|
/**
|
|
6119
6474
|
* Region code for tenant context
|
|
6120
6475
|
*/
|
|
6121
|
-
region: '
|
|
6476
|
+
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';
|
|
6122
6477
|
};
|
|
6123
6478
|
type TransactionRuleControllerGetStatisticsResponse = RuleStatisticsResponseDto;
|
|
6124
6479
|
type TransactionRuleControllerGetDetailData = {
|
|
6125
6480
|
/**
|
|
6126
6481
|
* Region code for tenant context
|
|
6127
6482
|
*/
|
|
6128
|
-
region: '
|
|
6483
|
+
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';
|
|
6129
6484
|
/**
|
|
6130
6485
|
* Rule ID
|
|
6131
6486
|
*/
|
|
@@ -6136,7 +6491,7 @@ type TransactionRuleControllerUpdateData = {
|
|
|
6136
6491
|
/**
|
|
6137
6492
|
* Region code for tenant context
|
|
6138
6493
|
*/
|
|
6139
|
-
region: '
|
|
6494
|
+
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';
|
|
6140
6495
|
requestBody: UpdateTransactionRuleDto;
|
|
6141
6496
|
/**
|
|
6142
6497
|
* Rule ID to update
|
|
@@ -6148,7 +6503,7 @@ type TransactionRuleControllerDeleteData = {
|
|
|
6148
6503
|
/**
|
|
6149
6504
|
* Region code for tenant context
|
|
6150
6505
|
*/
|
|
6151
|
-
region: '
|
|
6506
|
+
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';
|
|
6152
6507
|
/**
|
|
6153
6508
|
* Rule ID to delete
|
|
6154
6509
|
*/
|
|
@@ -6159,7 +6514,7 @@ type TransactionRuleControllerTestData = {
|
|
|
6159
6514
|
/**
|
|
6160
6515
|
* Region code for tenant context
|
|
6161
6516
|
*/
|
|
6162
|
-
region: '
|
|
6517
|
+
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';
|
|
6163
6518
|
requestBody: TestRuleDto;
|
|
6164
6519
|
/**
|
|
6165
6520
|
* Rule ID to test
|
|
@@ -6167,11 +6522,26 @@ type TransactionRuleControllerTestData = {
|
|
|
6167
6522
|
ruleId: string;
|
|
6168
6523
|
};
|
|
6169
6524
|
type TransactionRuleControllerTestResponse = TestRuleResponseDto;
|
|
6525
|
+
type CategoryCatalogControllerListData = {
|
|
6526
|
+
/**
|
|
6527
|
+
* Region code for tenant context
|
|
6528
|
+
*/
|
|
6529
|
+
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';
|
|
6530
|
+
/**
|
|
6531
|
+
* Filter by routeBearing (entity-router route() consumes it)
|
|
6532
|
+
*/
|
|
6533
|
+
routeBearing?: boolean;
|
|
6534
|
+
/**
|
|
6535
|
+
* Filter by scenario
|
|
6536
|
+
*/
|
|
6537
|
+
scenario?: 'expense' | 'income' | 'investment' | 'banking' | 'transfer' | 'payment';
|
|
6538
|
+
};
|
|
6539
|
+
type CategoryCatalogControllerListResponse = CategoryCatalogListResponseDto;
|
|
6170
6540
|
type EventControllerCreateData = {
|
|
6171
6541
|
/**
|
|
6172
6542
|
* Region code for tenant context (decorative for life events)
|
|
6173
6543
|
*/
|
|
6174
|
-
region: '
|
|
6544
|
+
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';
|
|
6175
6545
|
requestBody: CreateBeanEventDto;
|
|
6176
6546
|
};
|
|
6177
6547
|
type EventControllerCreateResponse = EventResponseDto;
|
|
@@ -6195,7 +6565,7 @@ type EventControllerFindAllData = {
|
|
|
6195
6565
|
/**
|
|
6196
6566
|
* Region code for tenant context (decorative for life events)
|
|
6197
6567
|
*/
|
|
6198
|
-
region: '
|
|
6568
|
+
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';
|
|
6199
6569
|
/**
|
|
6200
6570
|
* Filter life events to this date (ISO 8601 format)
|
|
6201
6571
|
*/
|
|
@@ -6214,7 +6584,7 @@ type EventControllerFindOneData = {
|
|
|
6214
6584
|
/**
|
|
6215
6585
|
* Region code for tenant context (decorative for life events)
|
|
6216
6586
|
*/
|
|
6217
|
-
region: '
|
|
6587
|
+
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';
|
|
6218
6588
|
};
|
|
6219
6589
|
type EventControllerFindOneResponse = EventResponseDto;
|
|
6220
6590
|
type EventControllerUpdateData = {
|
|
@@ -6225,7 +6595,7 @@ type EventControllerUpdateData = {
|
|
|
6225
6595
|
/**
|
|
6226
6596
|
* Region code for tenant context (decorative for life events)
|
|
6227
6597
|
*/
|
|
6228
|
-
region: '
|
|
6598
|
+
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';
|
|
6229
6599
|
requestBody: UpdateBeanEventDto;
|
|
6230
6600
|
};
|
|
6231
6601
|
type EventControllerUpdateResponse = EventResponseDto;
|
|
@@ -6237,7 +6607,7 @@ type EventControllerDeleteData = {
|
|
|
6237
6607
|
/**
|
|
6238
6608
|
* Region code for tenant context (decorative for life events)
|
|
6239
6609
|
*/
|
|
6240
|
-
region: '
|
|
6610
|
+
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';
|
|
6241
6611
|
};
|
|
6242
6612
|
type EventControllerDeleteResponse = void;
|
|
6243
6613
|
type EventControllerGetSliceData = {
|
|
@@ -6250,14 +6620,14 @@ type EventControllerGetSliceData = {
|
|
|
6250
6620
|
/**
|
|
6251
6621
|
* Region code for tenant context (decorative for life events)
|
|
6252
6622
|
*/
|
|
6253
|
-
region: '
|
|
6623
|
+
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';
|
|
6254
6624
|
};
|
|
6255
6625
|
type EventControllerGetSliceResponse = unknown;
|
|
6256
6626
|
type OnboardingControllerBootstrapData = {
|
|
6257
6627
|
/**
|
|
6258
6628
|
* Region code for tenant context
|
|
6259
6629
|
*/
|
|
6260
|
-
region: '
|
|
6630
|
+
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';
|
|
6261
6631
|
requestBody: OnboardingDto;
|
|
6262
6632
|
};
|
|
6263
6633
|
type OnboardingControllerBootstrapResponse = unknown;
|
|
@@ -6265,7 +6635,7 @@ type ReconciliationControllerComputeData = {
|
|
|
6265
6635
|
/**
|
|
6266
6636
|
* Region code for tenant context (decorative for reconciliation)
|
|
6267
6637
|
*/
|
|
6268
|
-
region: '
|
|
6638
|
+
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';
|
|
6269
6639
|
requestBody: ComputeReconciliationDto;
|
|
6270
6640
|
};
|
|
6271
6641
|
type ReconciliationControllerComputeResponse = ReconciliationComputeResultDto;
|
|
@@ -6273,7 +6643,7 @@ type ReconciliationControllerAssertData = {
|
|
|
6273
6643
|
/**
|
|
6274
6644
|
* Region code for tenant context (decorative for reconciliation)
|
|
6275
6645
|
*/
|
|
6276
|
-
region: '
|
|
6646
|
+
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';
|
|
6277
6647
|
requestBody: AssertReconciliationDto;
|
|
6278
6648
|
};
|
|
6279
6649
|
type ReconciliationControllerAssertResponse = ReconciliationRecordDto;
|
|
@@ -6281,7 +6651,7 @@ type ReconciliationControllerPadData = {
|
|
|
6281
6651
|
/**
|
|
6282
6652
|
* Region code for tenant context (decorative for reconciliation)
|
|
6283
6653
|
*/
|
|
6284
|
-
region: '
|
|
6654
|
+
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';
|
|
6285
6655
|
requestBody: PadReconciliationDto;
|
|
6286
6656
|
};
|
|
6287
6657
|
type ReconciliationControllerPadResponse = PadResultDto;
|
|
@@ -6293,7 +6663,7 @@ type ReconciliationControllerHistoryData = {
|
|
|
6293
6663
|
/**
|
|
6294
6664
|
* Region code for tenant context (decorative for reconciliation)
|
|
6295
6665
|
*/
|
|
6296
|
-
region: '
|
|
6666
|
+
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';
|
|
6297
6667
|
};
|
|
6298
6668
|
type ReconciliationControllerHistoryResponse = Array<ReconciliationRecordDto>;
|
|
6299
6669
|
type ExportControllerExportBeancountResponse = unknown;
|
|
@@ -6305,7 +6675,7 @@ type FileImportControllerImportFileData = {
|
|
|
6305
6675
|
/**
|
|
6306
6676
|
* Region code for tenant context
|
|
6307
6677
|
*/
|
|
6308
|
-
region: '
|
|
6678
|
+
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';
|
|
6309
6679
|
};
|
|
6310
6680
|
type FileImportControllerImportFileResponse = ImportResultDto;
|
|
6311
6681
|
type FileImportControllerIdentifyFileData = {
|
|
@@ -6316,7 +6686,7 @@ type FileImportControllerIdentifyFileData = {
|
|
|
6316
6686
|
/**
|
|
6317
6687
|
* Region code for tenant context
|
|
6318
6688
|
*/
|
|
6319
|
-
region: '
|
|
6689
|
+
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';
|
|
6320
6690
|
};
|
|
6321
6691
|
type FileImportControllerIdentifyFileResponse = IdentifyResultDto;
|
|
6322
6692
|
type FileImportControllerImportBeancountData = {
|
|
@@ -6327,7 +6697,7 @@ type FileImportControllerImportBeancountData = {
|
|
|
6327
6697
|
/**
|
|
6328
6698
|
* Region code for tenant context
|
|
6329
6699
|
*/
|
|
6330
|
-
region: '
|
|
6700
|
+
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';
|
|
6331
6701
|
};
|
|
6332
6702
|
type FileImportControllerImportBeancountResponse = {
|
|
6333
6703
|
imported?: number;
|
|
@@ -6346,7 +6716,7 @@ type ImporterConfigControllerGetConfigData = {
|
|
|
6346
6716
|
/**
|
|
6347
6717
|
* Region code for tenant context
|
|
6348
6718
|
*/
|
|
6349
|
-
region: '
|
|
6719
|
+
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';
|
|
6350
6720
|
};
|
|
6351
6721
|
type ImporterConfigControllerGetConfigResponse = ImporterConfigDto;
|
|
6352
6722
|
type ImporterConfigControllerUpdateConfigData = {
|
|
@@ -6357,7 +6727,7 @@ type ImporterConfigControllerUpdateConfigData = {
|
|
|
6357
6727
|
/**
|
|
6358
6728
|
* Region code for tenant context
|
|
6359
6729
|
*/
|
|
6360
|
-
region: '
|
|
6730
|
+
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';
|
|
6361
6731
|
/**
|
|
6362
6732
|
* Partial configuration update. Only provided fields will be updated.
|
|
6363
6733
|
*/
|
|
@@ -6372,7 +6742,7 @@ type ImporterConfigControllerResetConfigData = {
|
|
|
6372
6742
|
/**
|
|
6373
6743
|
* Region code for tenant context
|
|
6374
6744
|
*/
|
|
6375
|
-
region: '
|
|
6745
|
+
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';
|
|
6376
6746
|
};
|
|
6377
6747
|
type ImporterConfigControllerResetConfigResponse = ImporterConfigDto;
|
|
6378
6748
|
type ProviderSyncControllerSyncData = {
|
|
@@ -6383,7 +6753,7 @@ type ProviderSyncControllerSyncData = {
|
|
|
6383
6753
|
/**
|
|
6384
6754
|
* Region code for tenant context
|
|
6385
6755
|
*/
|
|
6386
|
-
region: '
|
|
6756
|
+
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';
|
|
6387
6757
|
requestBody: ProviderSyncDto;
|
|
6388
6758
|
};
|
|
6389
6759
|
type ProviderSyncControllerSyncResponse = ProviderSyncResponseDto;
|
|
@@ -6391,7 +6761,7 @@ type ProviderSyncControllerGetSupportedProvidersData = {
|
|
|
6391
6761
|
/**
|
|
6392
6762
|
* Region code for tenant context
|
|
6393
6763
|
*/
|
|
6394
|
-
region: '
|
|
6764
|
+
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';
|
|
6395
6765
|
};
|
|
6396
6766
|
type ProviderSyncControllerGetSupportedProvidersResponse = SupportedProvidersResponseDto;
|
|
6397
6767
|
type ProviderSyncControllerIsProviderSupportedData = {
|
|
@@ -6402,14 +6772,14 @@ type ProviderSyncControllerIsProviderSupportedData = {
|
|
|
6402
6772
|
/**
|
|
6403
6773
|
* Region code for tenant context
|
|
6404
6774
|
*/
|
|
6405
|
-
region: '
|
|
6775
|
+
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';
|
|
6406
6776
|
};
|
|
6407
6777
|
type ProviderSyncControllerIsProviderSupportedResponse = unknown;
|
|
6408
6778
|
type ExternalAccountLinkControllerCreateData = {
|
|
6409
6779
|
/**
|
|
6410
6780
|
* Region code for tenant context
|
|
6411
6781
|
*/
|
|
6412
|
-
region: '
|
|
6782
|
+
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';
|
|
6413
6783
|
requestBody: CreateExternalAccountLinkDto;
|
|
6414
6784
|
};
|
|
6415
6785
|
type ExternalAccountLinkControllerCreateResponse = ExternalAccountLinkResponseDto;
|
|
@@ -6418,7 +6788,7 @@ type ExternalAccountLinkControllerFindAllData = {
|
|
|
6418
6788
|
/**
|
|
6419
6789
|
* Region code for tenant context
|
|
6420
6790
|
*/
|
|
6421
|
-
region: '
|
|
6791
|
+
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';
|
|
6422
6792
|
};
|
|
6423
6793
|
type ExternalAccountLinkControllerFindAllResponse = ExternalAccountLinkListResponseDto;
|
|
6424
6794
|
type ExternalAccountLinkControllerFindOneData = {
|
|
@@ -6426,7 +6796,7 @@ type ExternalAccountLinkControllerFindOneData = {
|
|
|
6426
6796
|
/**
|
|
6427
6797
|
* Region code for tenant context
|
|
6428
6798
|
*/
|
|
6429
|
-
region: '
|
|
6799
|
+
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';
|
|
6430
6800
|
};
|
|
6431
6801
|
type ExternalAccountLinkControllerFindOneResponse = ExternalAccountLinkResponseDto;
|
|
6432
6802
|
type ExternalAccountLinkControllerRemoveData = {
|
|
@@ -6434,14 +6804,14 @@ type ExternalAccountLinkControllerRemoveData = {
|
|
|
6434
6804
|
/**
|
|
6435
6805
|
* Region code for tenant context
|
|
6436
6806
|
*/
|
|
6437
|
-
region: '
|
|
6807
|
+
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';
|
|
6438
6808
|
};
|
|
6439
6809
|
type ExternalAccountLinkControllerRemoveResponse = void;
|
|
6440
6810
|
type TelemetryControllerReportTelemetryData = {
|
|
6441
6811
|
/**
|
|
6442
6812
|
* Region code for tenant context
|
|
6443
6813
|
*/
|
|
6444
|
-
region: '
|
|
6814
|
+
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';
|
|
6445
6815
|
requestBody: ParserTelemetryReportDto;
|
|
6446
6816
|
};
|
|
6447
6817
|
type TelemetryControllerReportTelemetryResponse = unknown;
|
|
@@ -6449,7 +6819,7 @@ type TelemetryControllerReportCoverageMissData = {
|
|
|
6449
6819
|
/**
|
|
6450
6820
|
* Region code for tenant context
|
|
6451
6821
|
*/
|
|
6452
|
-
region: '
|
|
6822
|
+
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';
|
|
6453
6823
|
requestBody: UncoveredFormatMissDto;
|
|
6454
6824
|
};
|
|
6455
6825
|
type TelemetryControllerReportCoverageMissResponse = unknown;
|
|
@@ -6457,7 +6827,7 @@ type TelemetryControllerGetCoverageMetricsData = {
|
|
|
6457
6827
|
/**
|
|
6458
6828
|
* Region code for tenant context
|
|
6459
6829
|
*/
|
|
6460
|
-
region: '
|
|
6830
|
+
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';
|
|
6461
6831
|
/**
|
|
6462
6832
|
* Top-N uncovered formats (default 10)
|
|
6463
6833
|
*/
|
|
@@ -6468,7 +6838,7 @@ type NlpControllerProcessNaturalLanguageData = {
|
|
|
6468
6838
|
/**
|
|
6469
6839
|
* Region code for tenant context
|
|
6470
6840
|
*/
|
|
6471
|
-
region: '
|
|
6841
|
+
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';
|
|
6472
6842
|
/**
|
|
6473
6843
|
* Natural language transaction input with optional session ID
|
|
6474
6844
|
*/
|
|
@@ -6479,7 +6849,7 @@ type NlpControllerClearSessionData = {
|
|
|
6479
6849
|
/**
|
|
6480
6850
|
* Region code for tenant context
|
|
6481
6851
|
*/
|
|
6482
|
-
region: '
|
|
6852
|
+
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';
|
|
6483
6853
|
/**
|
|
6484
6854
|
* Specific session ID to clear (defaults to user session)
|
|
6485
6855
|
*/
|
|
@@ -6490,7 +6860,7 @@ type NlpControllerGetSessionData = {
|
|
|
6490
6860
|
/**
|
|
6491
6861
|
* Region code for tenant context
|
|
6492
6862
|
*/
|
|
6493
|
-
region: '
|
|
6863
|
+
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';
|
|
6494
6864
|
/**
|
|
6495
6865
|
* Specific session ID to get (defaults to user session)
|
|
6496
6866
|
*/
|
|
@@ -6502,6 +6872,12 @@ type PlatformControllerCreateData = {
|
|
|
6502
6872
|
requestBody: CreatePlatformDto;
|
|
6503
6873
|
};
|
|
6504
6874
|
type PlatformControllerCreateResponse = unknown;
|
|
6875
|
+
type PlatformControllerGetPlatformListData = {
|
|
6876
|
+
/**
|
|
6877
|
+
* Region code (ISO 3166-1 alpha-2) that biases within-type-bucket ordering (local-region platforms first). Case-insensitive — stored/compared UPPERCASE ("cn" == "CN").
|
|
6878
|
+
*/
|
|
6879
|
+
region?: string;
|
|
6880
|
+
};
|
|
6505
6881
|
type PlatformControllerGetPlatformListResponse = Array<PlatformListItemDto>;
|
|
6506
6882
|
type PlatformControllerMatchPlatformsData = {
|
|
6507
6883
|
/**
|
|
@@ -6509,7 +6885,7 @@ type PlatformControllerMatchPlatformsData = {
|
|
|
6509
6885
|
*/
|
|
6510
6886
|
q: string;
|
|
6511
6887
|
/**
|
|
6512
|
-
* Region code
|
|
6888
|
+
* 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").
|
|
6513
6889
|
*/
|
|
6514
6890
|
region?: string;
|
|
6515
6891
|
};
|
|
@@ -6537,7 +6913,7 @@ type DashboardControllerGetNetWorthData = {
|
|
|
6537
6913
|
/**
|
|
6538
6914
|
* Region code for tenant context
|
|
6539
6915
|
*/
|
|
6540
|
-
region: '
|
|
6916
|
+
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';
|
|
6541
6917
|
};
|
|
6542
6918
|
type DashboardControllerGetNetWorthResponse = NetWorthResponseDto;
|
|
6543
6919
|
type DashboardControllerGetAccountsData = {
|
|
@@ -6556,7 +6932,7 @@ type DashboardControllerGetAccountsData = {
|
|
|
6556
6932
|
/**
|
|
6557
6933
|
* Region code for tenant context
|
|
6558
6934
|
*/
|
|
6559
|
-
region: '
|
|
6935
|
+
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';
|
|
6560
6936
|
};
|
|
6561
6937
|
type DashboardControllerGetAccountsResponse = AccountsResponseDto | AssetClassAccountsResponseDto | HoldingAssetClassCrossAccountResponseDto;
|
|
6562
6938
|
type DashboardControllerGetCashFlowData = {
|
|
@@ -6567,7 +6943,7 @@ type DashboardControllerGetCashFlowData = {
|
|
|
6567
6943
|
/**
|
|
6568
6944
|
* Region code for tenant context
|
|
6569
6945
|
*/
|
|
6570
|
-
region: '
|
|
6946
|
+
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';
|
|
6571
6947
|
};
|
|
6572
6948
|
type DashboardControllerGetCashFlowResponse = CashFlowResponseDto;
|
|
6573
6949
|
type DashboardControllerGetExpensesData = {
|
|
@@ -6586,7 +6962,7 @@ type DashboardControllerGetExpensesData = {
|
|
|
6586
6962
|
/**
|
|
6587
6963
|
* Region code for tenant context
|
|
6588
6964
|
*/
|
|
6589
|
-
region: '
|
|
6965
|
+
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';
|
|
6590
6966
|
};
|
|
6591
6967
|
type DashboardControllerGetExpensesResponse = ExpensesByCategoryResponseDto;
|
|
6592
6968
|
type HoldingPnlControllerGetHoldingPnlData = {
|
|
@@ -6605,7 +6981,7 @@ type HoldingPnlControllerGetHoldingPnlData = {
|
|
|
6605
6981
|
/**
|
|
6606
6982
|
* Region code for tenant context
|
|
6607
6983
|
*/
|
|
6608
|
-
region: '
|
|
6984
|
+
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';
|
|
6609
6985
|
};
|
|
6610
6986
|
type HoldingPnlControllerGetHoldingPnlResponse = HoldingPnlResponseDto;
|
|
6611
6987
|
type ApiKeysControllerCreateApiKeyResponse = unknown;
|
|
@@ -6613,6 +6989,14 @@ type AuthControllerAccessTokenLoginData = {
|
|
|
6613
6989
|
requestBody: AnonymousLoginDto;
|
|
6614
6990
|
};
|
|
6615
6991
|
type AuthControllerAccessTokenLoginResponse = AnonymousLoginResponseDto;
|
|
6992
|
+
type ParserContributionControllerCreateData = {
|
|
6993
|
+
/**
|
|
6994
|
+
* Region code for tenant context (routing only; the institution region rides in the payload meta)
|
|
6995
|
+
*/
|
|
6996
|
+
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';
|
|
6997
|
+
requestBody: ParserContributionRequestDto;
|
|
6998
|
+
};
|
|
6999
|
+
type ParserContributionControllerCreateResponse = ParserContributionRelayResponseDto;
|
|
6616
7000
|
type CacheControllerFlushCacheResponse = unknown;
|
|
6617
7001
|
type ExchangeRateControllerGetExchangeRateData = {
|
|
6618
7002
|
/**
|
|
@@ -6726,7 +7110,7 @@ type $OpenApiTs = {
|
|
|
6726
7110
|
*/
|
|
6727
7111
|
404: unknown;
|
|
6728
7112
|
/**
|
|
6729
|
-
* Account has transactions and cannot be deleted
|
|
7113
|
+
* Account has active transactions and cannot be deleted
|
|
6730
7114
|
*/
|
|
6731
7115
|
409: unknown;
|
|
6732
7116
|
};
|
|
@@ -7823,7 +8207,7 @@ type $OpenApiTs = {
|
|
|
7823
8207
|
/**
|
|
7824
8208
|
* User retrieved successfully
|
|
7825
8209
|
*/
|
|
7826
|
-
200:
|
|
8210
|
+
200: UserResponseDto;
|
|
7827
8211
|
};
|
|
7828
8212
|
};
|
|
7829
8213
|
post: {
|
|
@@ -8197,6 +8581,17 @@ type $OpenApiTs = {
|
|
|
8197
8581
|
};
|
|
8198
8582
|
};
|
|
8199
8583
|
};
|
|
8584
|
+
'/api/v1/{region}/bean/categories': {
|
|
8585
|
+
get: {
|
|
8586
|
+
req: CategoryCatalogControllerListData;
|
|
8587
|
+
res: {
|
|
8588
|
+
/**
|
|
8589
|
+
* Category catalog retrieved successfully
|
|
8590
|
+
*/
|
|
8591
|
+
200: CategoryCatalogListResponseDto;
|
|
8592
|
+
};
|
|
8593
|
+
};
|
|
8594
|
+
};
|
|
8200
8595
|
'/api/v1/{region}/bean/events': {
|
|
8201
8596
|
post: {
|
|
8202
8597
|
req: EventControllerCreateData;
|
|
@@ -8736,6 +9131,7 @@ type $OpenApiTs = {
|
|
|
8736
9131
|
};
|
|
8737
9132
|
'/api/v1/bean/platforms/list': {
|
|
8738
9133
|
get: {
|
|
9134
|
+
req: PlatformControllerGetPlatformListData;
|
|
8739
9135
|
res: {
|
|
8740
9136
|
/**
|
|
8741
9137
|
* List of platforms with user binding status
|
|
@@ -8899,6 +9295,37 @@ type $OpenApiTs = {
|
|
|
8899
9295
|
};
|
|
8900
9296
|
};
|
|
8901
9297
|
};
|
|
9298
|
+
'/api/v1/{region}/community/parser-contributions': {
|
|
9299
|
+
post: {
|
|
9300
|
+
req: ParserContributionControllerCreateData;
|
|
9301
|
+
res: {
|
|
9302
|
+
/**
|
|
9303
|
+
* Issue created by the bot
|
|
9304
|
+
*/
|
|
9305
|
+
201: ParserContributionRelayResponseDto;
|
|
9306
|
+
/**
|
|
9307
|
+
* Unauthorized
|
|
9308
|
+
*/
|
|
9309
|
+
401: ApiProblemResponseDto;
|
|
9310
|
+
/**
|
|
9311
|
+
* Validation failed (institution slug, empty samples, row/cell size limits)
|
|
9312
|
+
*/
|
|
9313
|
+
422: ApiProblemResponseDto;
|
|
9314
|
+
/**
|
|
9315
|
+
* Rate limited (5 submissions per user per hour)
|
|
9316
|
+
*/
|
|
9317
|
+
429: ApiProblemResponseDto;
|
|
9318
|
+
/**
|
|
9319
|
+
* Relay not configured on this deployment — clients fall back to the clipboard flow
|
|
9320
|
+
*/
|
|
9321
|
+
501: ApiProblemResponseDto;
|
|
9322
|
+
/**
|
|
9323
|
+
* GitHub bot failure (upstream), safe to retry
|
|
9324
|
+
*/
|
|
9325
|
+
502: ApiProblemResponseDto;
|
|
9326
|
+
};
|
|
9327
|
+
};
|
|
9328
|
+
};
|
|
8902
9329
|
'/api/v1/cache/flush': {
|
|
8903
9330
|
post: {
|
|
8904
9331
|
res: {
|
|
@@ -9115,7 +9542,7 @@ declare class BeanAccountsService {
|
|
|
9115
9542
|
static accountControllerUpdate(data: AccountControllerUpdateData): CancelablePromise<AccountControllerUpdateResponse>;
|
|
9116
9543
|
/**
|
|
9117
9544
|
* Delete account
|
|
9118
|
-
* Deletes an account (only if no transactions)
|
|
9545
|
+
* Deletes an account (only if no active transactions; voided/superseded residual postings are cleaned up)
|
|
9119
9546
|
* @param data The data for the request.
|
|
9120
9547
|
* @param data.id Account UUID
|
|
9121
9548
|
* @param data.region Region code for tenant context
|
|
@@ -9178,10 +9605,11 @@ declare class BeanTransactionsService {
|
|
|
9178
9605
|
* @param data.offset Number of items to skip (default: 0)
|
|
9179
9606
|
* @param data.dateFrom Filter by start date (inclusive), format: YYYY-MM-DD
|
|
9180
9607
|
* @param data.dateTo Filter by end date (inclusive), format: YYYY-MM-DD
|
|
9181
|
-
* @param data.status Filter by transaction status
|
|
9608
|
+
* @param data.status Filter by transaction status: single value, comma-separated multi-value (e.g. VOIDED,SUPERSEDED), or ALL to include audit rows. Defaults to ACTIVE-only (ADR-0128; previously unfiltered — breaking change).
|
|
9182
9609
|
* @param data.search Search in narration and payee fields (max 200 chars)
|
|
9183
9610
|
* @param data.accountId Filter by account ID (transactions with postings to this account)
|
|
9184
|
-
* @param data.category Filter by ADR-0075 functional category (Group segment); matches any posting to an
|
|
9611
|
+
* @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).
|
|
9612
|
+
* @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.
|
|
9185
9613
|
* @returns TransactionListResponseDto Transaction list
|
|
9186
9614
|
* @throws ApiError
|
|
9187
9615
|
*/
|
|
@@ -9487,4 +9915,4 @@ type OpenAPIConfig = {
|
|
|
9487
9915
|
};
|
|
9488
9916
|
declare const OpenAPI: OpenAPIConfig;
|
|
9489
9917
|
|
|
9490
|
-
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 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 };
|
|
9918
|
+
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 NlpAccountCandidateDto, 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 };
|