@firela/api-types 0.0.0-canary.ce7c9749 → 0.0.0-canary.d190ee29
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 +523 -151
- package/dist/index.d.ts +523 -151
- package/dist/index.js +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
- package/src/generated/schemas.gen.ts +468 -34
- package/src/generated/services.gen.ts +99 -7
- package/src/generated/types.gen.ts +3255 -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
|
|
@@ -2551,6 +2571,30 @@ type DeleteOwnUserDto = {
|
|
|
2551
2571
|
*/
|
|
2552
2572
|
accessToken: string;
|
|
2553
2573
|
};
|
|
2574
|
+
type UserSettingsResponseDto = {
|
|
2575
|
+
/**
|
|
2576
|
+
* Base currency (ISO 4217) for net-worth/report aggregation. Independent of region (ADR-0006).
|
|
2577
|
+
*/
|
|
2578
|
+
baseCurrency: string | null;
|
|
2579
|
+
};
|
|
2580
|
+
type UserResponseDto = {
|
|
2581
|
+
/**
|
|
2582
|
+
* User ID
|
|
2583
|
+
*/
|
|
2584
|
+
id: string;
|
|
2585
|
+
/**
|
|
2586
|
+
* Assigned user role
|
|
2587
|
+
*/
|
|
2588
|
+
role: string;
|
|
2589
|
+
/**
|
|
2590
|
+
* Permission strings
|
|
2591
|
+
*/
|
|
2592
|
+
permissions: Array<string>;
|
|
2593
|
+
/**
|
|
2594
|
+
* User settings
|
|
2595
|
+
*/
|
|
2596
|
+
settings: UserSettingsResponseDto;
|
|
2597
|
+
};
|
|
2554
2598
|
type SignupDto = {
|
|
2555
2599
|
/**
|
|
2556
2600
|
* Cloudflare Turnstile verification token (optional when Turnstile disabled)
|
|
@@ -3013,6 +3057,42 @@ type TestRuleResponseDto = {
|
|
|
3013
3057
|
[key: string]: unknown;
|
|
3014
3058
|
};
|
|
3015
3059
|
};
|
|
3060
|
+
type CategoryCatalogEntryDto = {
|
|
3061
|
+
/**
|
|
3062
|
+
* Category slug (single source-of-truth)
|
|
3063
|
+
*/
|
|
3064
|
+
slug: string;
|
|
3065
|
+
/**
|
|
3066
|
+
* Display scenario group (maps to frontend picker _scenario)
|
|
3067
|
+
*/
|
|
3068
|
+
scenario: 'expense' | 'income' | 'investment' | 'banking' | 'transfer' | 'payment';
|
|
3069
|
+
/**
|
|
3070
|
+
* Lucide icon name
|
|
3071
|
+
*/
|
|
3072
|
+
icon: string;
|
|
3073
|
+
/**
|
|
3074
|
+
* Applicable regions ('*' = all, 'cn' = CN-only)
|
|
3075
|
+
*/
|
|
3076
|
+
regions: Array<string>;
|
|
3077
|
+
};
|
|
3078
|
+
/**
|
|
3079
|
+
* Display scenario group (maps to frontend picker _scenario)
|
|
3080
|
+
*/
|
|
3081
|
+
type scenario = 'expense' | 'income' | 'investment' | 'banking' | 'transfer' | 'payment';
|
|
3082
|
+
type CategoryCatalogListResponseDto = {
|
|
3083
|
+
/**
|
|
3084
|
+
* Category entries (region-scoped, query-filtered)
|
|
3085
|
+
*/
|
|
3086
|
+
items: Array<CategoryCatalogEntryDto>;
|
|
3087
|
+
/**
|
|
3088
|
+
* Total category entries for the region (before query filtering)
|
|
3089
|
+
*/
|
|
3090
|
+
total: number;
|
|
3091
|
+
/**
|
|
3092
|
+
* Region code
|
|
3093
|
+
*/
|
|
3094
|
+
region: string;
|
|
3095
|
+
};
|
|
3016
3096
|
type CreateBeanEventDto = {
|
|
3017
3097
|
/**
|
|
3018
3098
|
* Life event date (ISO 8601)
|
|
@@ -3497,13 +3577,13 @@ type ProviderSyncConfigDto = {
|
|
|
3497
3577
|
*/
|
|
3498
3578
|
defaultCurrency: string;
|
|
3499
3579
|
/**
|
|
3500
|
-
* Default expense account for the second posting
|
|
3580
|
+
* Default expense account for the second posting. Omit when no real default exists; the pipeline routes to Review via the Uncategorized sentinel (#618).
|
|
3501
3581
|
*/
|
|
3502
|
-
defaultExpenseAccount
|
|
3582
|
+
defaultExpenseAccount?: string;
|
|
3503
3583
|
/**
|
|
3504
|
-
* Default income account for the second posting
|
|
3584
|
+
* Default income account for the second posting. Omit when no real default exists; the pipeline routes to Review via the Uncategorized sentinel (#618).
|
|
3505
3585
|
*/
|
|
3506
|
-
defaultIncomeAccount
|
|
3586
|
+
defaultIncomeAccount?: string;
|
|
3507
3587
|
/**
|
|
3508
3588
|
* Filter pending transactions
|
|
3509
3589
|
*/
|
|
@@ -3600,11 +3680,85 @@ type ExternalAccountLinkListResponseDto = {
|
|
|
3600
3680
|
};
|
|
3601
3681
|
type ParserTelemetryReportDto = unknown;
|
|
3602
3682
|
type UncoveredFormatMissDto = unknown;
|
|
3683
|
+
type ClientParsedDataDto = {
|
|
3684
|
+
/**
|
|
3685
|
+
* Transaction amount
|
|
3686
|
+
*/
|
|
3687
|
+
amount?: number;
|
|
3688
|
+
/**
|
|
3689
|
+
* Currency code
|
|
3690
|
+
*/
|
|
3691
|
+
currency?: string;
|
|
3692
|
+
/**
|
|
3693
|
+
* Transaction date (ISO 8601)
|
|
3694
|
+
*/
|
|
3695
|
+
date?: string;
|
|
3696
|
+
/**
|
|
3697
|
+
* Payee/merchant name
|
|
3698
|
+
*/
|
|
3699
|
+
payee?: string;
|
|
3700
|
+
/**
|
|
3701
|
+
* Transaction narration
|
|
3702
|
+
*/
|
|
3703
|
+
narration?: string;
|
|
3704
|
+
/**
|
|
3705
|
+
* Category slug
|
|
3706
|
+
*/
|
|
3707
|
+
category?: string;
|
|
3708
|
+
/**
|
|
3709
|
+
* Income type
|
|
3710
|
+
*/
|
|
3711
|
+
incomeType?: string;
|
|
3712
|
+
/**
|
|
3713
|
+
* Income source
|
|
3714
|
+
*/
|
|
3715
|
+
incomeSource?: string;
|
|
3716
|
+
/**
|
|
3717
|
+
* Security symbol code (e.g., 600519, AAPL)
|
|
3718
|
+
*/
|
|
3719
|
+
symbol?: string;
|
|
3720
|
+
/**
|
|
3721
|
+
* Quantity of shares/units
|
|
3722
|
+
*/
|
|
3723
|
+
quantity?: number;
|
|
3724
|
+
/**
|
|
3725
|
+
* Unit price per share/unit
|
|
3726
|
+
*/
|
|
3727
|
+
price?: number;
|
|
3728
|
+
/**
|
|
3729
|
+
* Investment action
|
|
3730
|
+
*/
|
|
3731
|
+
investmentAction?: 'buy' | 'sell';
|
|
3732
|
+
/**
|
|
3733
|
+
* Payment source: asset (default) or liability (credit card)
|
|
3734
|
+
*/
|
|
3735
|
+
paymentSource?: 'asset' | 'liability';
|
|
3736
|
+
/**
|
|
3737
|
+
* Liability account hint (CreditCard/Huabei/Baitiao)
|
|
3738
|
+
*/
|
|
3739
|
+
liabilityHint?: string;
|
|
3740
|
+
/**
|
|
3741
|
+
* Display-only warning from the prior response; accepted but ignored.
|
|
3742
|
+
*/
|
|
3743
|
+
warning?: string;
|
|
3744
|
+
};
|
|
3745
|
+
/**
|
|
3746
|
+
* Investment action
|
|
3747
|
+
*/
|
|
3748
|
+
type investmentAction = 'buy' | 'sell';
|
|
3749
|
+
/**
|
|
3750
|
+
* Payment source: asset (default) or liability (credit card)
|
|
3751
|
+
*/
|
|
3752
|
+
type paymentSource = 'asset' | 'liability';
|
|
3603
3753
|
type ProcessNlpDto = {
|
|
3604
3754
|
/**
|
|
3605
|
-
* Natural language text describing a transaction (
|
|
3755
|
+
* Natural language text describing a transaction. Optional when `confirm` is true (structured confirm); otherwise required.
|
|
3756
|
+
*/
|
|
3757
|
+
message?: string;
|
|
3758
|
+
/**
|
|
3759
|
+
* Structured confirm signal — bypasses NL confirm-word matching when true. Send parsedData field edits alongside. The NL word-list path is the fallback.
|
|
3606
3760
|
*/
|
|
3607
|
-
|
|
3761
|
+
confirm?: boolean;
|
|
3608
3762
|
/**
|
|
3609
3763
|
* Session ID for multi-turn conversation (auto-generated if not provided)
|
|
3610
3764
|
*/
|
|
@@ -3612,9 +3766,15 @@ type ProcessNlpDto = {
|
|
|
3612
3766
|
/**
|
|
3613
3767
|
* Parsed data from previous NLP response for session recovery. Send back the parsedData received in confirm_payee/confirm responses.
|
|
3614
3768
|
*/
|
|
3615
|
-
parsedData?:
|
|
3616
|
-
|
|
3617
|
-
|
|
3769
|
+
parsedData?: ClientParsedDataDto;
|
|
3770
|
+
/**
|
|
3771
|
+
* 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.
|
|
3772
|
+
*/
|
|
3773
|
+
selectedRuleId?: string;
|
|
3774
|
+
/**
|
|
3775
|
+
* 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.
|
|
3776
|
+
*/
|
|
3777
|
+
selectedAccount?: string;
|
|
3618
3778
|
};
|
|
3619
3779
|
type NlpTransactionInfoDto = {
|
|
3620
3780
|
/**
|
|
@@ -3708,14 +3868,6 @@ type NlpParsedDataDto = {
|
|
|
3708
3868
|
*/
|
|
3709
3869
|
warning?: string;
|
|
3710
3870
|
};
|
|
3711
|
-
/**
|
|
3712
|
-
* Investment action
|
|
3713
|
-
*/
|
|
3714
|
-
type investmentAction = 'buy' | 'sell';
|
|
3715
|
-
/**
|
|
3716
|
-
* Payment source: asset (default) or liability (credit card)
|
|
3717
|
-
*/
|
|
3718
|
-
type paymentSource = 'asset' | 'liability';
|
|
3719
3871
|
type NlpSourceTransactionDto = {
|
|
3720
3872
|
/**
|
|
3721
3873
|
* Transaction date (ISO format)
|
|
@@ -3848,9 +4000,9 @@ type NlpAccountConfirmationDataDto = {
|
|
|
3848
4000
|
*/
|
|
3849
4001
|
invalidAccount: string;
|
|
3850
4002
|
/**
|
|
3851
|
-
* Suggested replacement account
|
|
4003
|
+
* Suggested replacement account (omitted when no clear candidate)
|
|
3852
4004
|
*/
|
|
3853
|
-
suggestedAccount
|
|
4005
|
+
suggestedAccount?: string;
|
|
3854
4006
|
/**
|
|
3855
4007
|
* Similar accounts for user selection
|
|
3856
4008
|
*/
|
|
@@ -3972,7 +4124,7 @@ type NlpSuggestedAccountDto = {
|
|
|
3972
4124
|
*/
|
|
3973
4125
|
account: string;
|
|
3974
4126
|
/**
|
|
3975
|
-
* Confidence score for this suggestion (0-1)
|
|
4127
|
+
* Confidence score for this suggestion (0-1). Present = predicted (confirm/confirm_rule/confirm_account); omitted = actual persisted account (created). (#586)
|
|
3976
4128
|
*/
|
|
3977
4129
|
confidence?: number;
|
|
3978
4130
|
};
|
|
@@ -3988,21 +4140,21 @@ type NlpSuggestedAccountsDto = {
|
|
|
3988
4140
|
};
|
|
3989
4141
|
type NlpDefaultAccountsDto = {
|
|
3990
4142
|
/**
|
|
3991
|
-
* Default asset account
|
|
4143
|
+
* Default OPEN asset account (MRU when multiple), or null when none/ambiguous
|
|
3992
4144
|
*/
|
|
3993
|
-
asset: string;
|
|
4145
|
+
asset: string | null;
|
|
3994
4146
|
/**
|
|
3995
|
-
* Default expense account
|
|
4147
|
+
* Default OPEN expense account (MRU when multiple), or null when none/ambiguous
|
|
3996
4148
|
*/
|
|
3997
|
-
expense: string;
|
|
4149
|
+
expense: string | null;
|
|
3998
4150
|
/**
|
|
3999
|
-
* Default income account
|
|
4151
|
+
* Default OPEN income account (MRU when multiple), or null when none/ambiguous
|
|
4000
4152
|
*/
|
|
4001
|
-
income: string;
|
|
4153
|
+
income: string | null;
|
|
4002
4154
|
/**
|
|
4003
|
-
* Default liability account
|
|
4155
|
+
* Default OPEN liability account (MRU when multiple), or null when none/ambiguous
|
|
4004
4156
|
*/
|
|
4005
|
-
liability: string;
|
|
4157
|
+
liability: string | null;
|
|
4006
4158
|
};
|
|
4007
4159
|
type NlpResponseDto = {
|
|
4008
4160
|
/**
|
|
@@ -4020,7 +4172,7 @@ type NlpResponseDto = {
|
|
|
4020
4172
|
/**
|
|
4021
4173
|
* Asset sub-type (only present when intent is "asset"). Determines which asset-related form to render.
|
|
4022
4174
|
*/
|
|
4023
|
-
assetSubType?: 'transfer' | 'banking' | 'investment';
|
|
4175
|
+
assetSubType?: 'transfer' | 'banking' | 'investment' | 'lend' | 'lend_collect';
|
|
4024
4176
|
/**
|
|
4025
4177
|
* Liability sub-type (only present when intent is "liability"). borrow: borrowing money (Liabilities → Assets), repay: repaying debt (Assets → Liabilities).
|
|
4026
4178
|
*/
|
|
@@ -4101,11 +4253,11 @@ type NlpResponseDto = {
|
|
|
4101
4253
|
*/
|
|
4102
4254
|
recurringSuggestion?: RecurringSuggestionDto;
|
|
4103
4255
|
/**
|
|
4104
|
-
* Suggested accounts for this transaction.
|
|
4256
|
+
* Suggested accounts for this transaction (#586). confirm/confirm_rule/confirm_account: predicted (source/destination carry confidence); created: actual persisted accounts (confidence omitted). confirm_account destination is the suggested replacement, never the invalid account.
|
|
4105
4257
|
*/
|
|
4106
4258
|
suggestedAccounts?: NlpSuggestedAccountsDto;
|
|
4107
4259
|
/**
|
|
4108
|
-
* Default accounts for the user/region.
|
|
4260
|
+
* Default fallback accounts for the user/region (#586). v1 returns universal constants; per-user personalization is planned.
|
|
4109
4261
|
*/
|
|
4110
4262
|
defaultAccounts?: NlpDefaultAccountsDto;
|
|
4111
4263
|
};
|
|
@@ -4124,7 +4276,7 @@ type intent = 'expense' | 'asset' | 'income' | 'liability' | 'equity';
|
|
|
4124
4276
|
/**
|
|
4125
4277
|
* Asset sub-type (only present when intent is "asset"). Determines which asset-related form to render.
|
|
4126
4278
|
*/
|
|
4127
|
-
type assetSubType = 'transfer' | 'banking' | 'investment';
|
|
4279
|
+
type assetSubType = 'transfer' | 'banking' | 'investment' | 'lend' | 'lend_collect';
|
|
4128
4280
|
/**
|
|
4129
4281
|
* Liability sub-type (only present when intent is "liability"). borrow: borrowing money (Liabilities → Assets), repay: repaying debt (Assets → Liabilities).
|
|
4130
4282
|
*/
|
|
@@ -4155,13 +4307,21 @@ type PlatformListItemDto = {
|
|
|
4155
4307
|
*/
|
|
4156
4308
|
canonical: string;
|
|
4157
4309
|
/**
|
|
4158
|
-
* Suggested path segment — canonical
|
|
4310
|
+
* Suggested path segment — canonical PascalCased per hyphen-part, hyphens preserved (e.g. "Apple-Pay")
|
|
4159
4311
|
*/
|
|
4160
4312
|
suggestedSegment: string;
|
|
4161
4313
|
/**
|
|
4162
4314
|
* Logo URL
|
|
4163
4315
|
*/
|
|
4164
4316
|
logoUrl: string | null;
|
|
4317
|
+
/**
|
|
4318
|
+
* ISO 3166-1 alpha-2 (UPPERCASE); null = global platform
|
|
4319
|
+
*/
|
|
4320
|
+
countryCode: string | null;
|
|
4321
|
+
/**
|
|
4322
|
+
* Region-aware category (institution vocab, e.g. DigitalWallet/Bank). null = no region-aware suggestion; fall back to type.
|
|
4323
|
+
*/
|
|
4324
|
+
category: string | null;
|
|
4165
4325
|
/**
|
|
4166
4326
|
* Whether user has accounts using this platform
|
|
4167
4327
|
*/
|
|
@@ -4189,13 +4349,21 @@ type PlatformMatchResultDto = {
|
|
|
4189
4349
|
*/
|
|
4190
4350
|
type: 'BANK' | 'BROKERAGE' | 'CRYPTO_EXCHANGE' | 'PAYMENT' | 'INVESTMENT' | 'INSURANCE' | 'OTHER';
|
|
4191
4351
|
/**
|
|
4192
|
-
* Suggested path segment — canonical,
|
|
4352
|
+
* Suggested path segment — canonical PascalCased per hyphen-part, hyphens preserved (e.g. "Apple-Pay")
|
|
4193
4353
|
*/
|
|
4194
4354
|
suggestedSegment: string;
|
|
4195
4355
|
/**
|
|
4196
4356
|
* Logo URL
|
|
4197
4357
|
*/
|
|
4198
4358
|
logoUrl: string | null;
|
|
4359
|
+
/**
|
|
4360
|
+
* ISO 3166-1 alpha-2 (UPPERCASE); null = global platform
|
|
4361
|
+
*/
|
|
4362
|
+
countryCode: string | null;
|
|
4363
|
+
/**
|
|
4364
|
+
* Region-aware category (institution vocab, e.g. DigitalWallet/Bank). null = no region-aware suggestion; fall back to type.
|
|
4365
|
+
*/
|
|
4366
|
+
category: string | null;
|
|
4199
4367
|
/**
|
|
4200
4368
|
* How this row matched: 'exact' > 'prefix' > 'substring'
|
|
4201
4369
|
*/
|
|
@@ -4541,10 +4709,6 @@ type AssetClassGroupDto = {
|
|
|
4541
4709
|
*/
|
|
4542
4710
|
convertedBalance?: string;
|
|
4543
4711
|
};
|
|
4544
|
-
/**
|
|
4545
|
-
* Asset class name
|
|
4546
|
-
*/
|
|
4547
|
-
type assetClass = 'LIQUIDITY' | 'EQUITY' | 'FIXED_INCOME' | 'PRECIOUS_METALS' | 'COMMODITY' | 'INSURANCE' | 'ALTERNATIVE_INVESTMENT' | 'PERSONAL_ASSETS' | 'LIABILITY' | 'REAL_ESTATE' | 'INDEX';
|
|
4548
4712
|
type AssetClassSummaryDto = {
|
|
4549
4713
|
/**
|
|
4550
4714
|
* Total number of accounts
|
|
@@ -4940,11 +5104,137 @@ type AnonymousLoginResponseDto = {
|
|
|
4940
5104
|
*/
|
|
4941
5105
|
authToken: string;
|
|
4942
5106
|
};
|
|
5107
|
+
type SymbolSearchResultDto = {
|
|
5108
|
+
symbol: string;
|
|
5109
|
+
name?: {
|
|
5110
|
+
[key: string]: unknown;
|
|
5111
|
+
} | null;
|
|
5112
|
+
exchange?: {
|
|
5113
|
+
[key: string]: unknown;
|
|
5114
|
+
} | null;
|
|
5115
|
+
/**
|
|
5116
|
+
* OpenBB asset_type (e.g. stock, etf)
|
|
5117
|
+
*/
|
|
5118
|
+
assetType?: {
|
|
5119
|
+
[key: string]: unknown;
|
|
5120
|
+
} | null;
|
|
5121
|
+
/**
|
|
5122
|
+
* IGN asset class (region.types.ts ASSET_CLASSES)
|
|
5123
|
+
*/
|
|
5124
|
+
assetClass?: {
|
|
5125
|
+
[key: string]: unknown;
|
|
5126
|
+
} | null;
|
|
5127
|
+
/**
|
|
5128
|
+
* IGN asset sub-class (region.types.ts ASSET_SUB_CLASSES)
|
|
5129
|
+
*/
|
|
5130
|
+
assetSubClass?: {
|
|
5131
|
+
[key: string]: unknown;
|
|
5132
|
+
} | null;
|
|
5133
|
+
/**
|
|
5134
|
+
* Trading currency (extra_data or inferred from exchange)
|
|
5135
|
+
*/
|
|
5136
|
+
currency?: {
|
|
5137
|
+
[key: string]: unknown;
|
|
5138
|
+
} | null;
|
|
5139
|
+
};
|
|
5140
|
+
type SymbolQuoteDto = {
|
|
5141
|
+
symbol?: string;
|
|
5142
|
+
name?: {
|
|
5143
|
+
[key: string]: unknown;
|
|
5144
|
+
} | null;
|
|
5145
|
+
exchange?: {
|
|
5146
|
+
[key: string]: unknown;
|
|
5147
|
+
} | null;
|
|
5148
|
+
/**
|
|
5149
|
+
* OpenBB asset_type
|
|
5150
|
+
*/
|
|
5151
|
+
assetType?: {
|
|
5152
|
+
[key: string]: unknown;
|
|
5153
|
+
} | null;
|
|
5154
|
+
/**
|
|
5155
|
+
* IGN asset class
|
|
5156
|
+
*/
|
|
5157
|
+
assetClass?: {
|
|
5158
|
+
[key: string]: unknown;
|
|
5159
|
+
} | null;
|
|
5160
|
+
/**
|
|
5161
|
+
* IGN asset sub-class
|
|
5162
|
+
*/
|
|
5163
|
+
assetSubClass?: {
|
|
5164
|
+
[key: string]: unknown;
|
|
5165
|
+
} | null;
|
|
5166
|
+
/**
|
|
5167
|
+
* Trading currency (extra_data or inferred from exchange)
|
|
5168
|
+
*/
|
|
5169
|
+
currency?: {
|
|
5170
|
+
[key: string]: unknown;
|
|
5171
|
+
} | null;
|
|
5172
|
+
/**
|
|
5173
|
+
* Latest price (Decimal string)
|
|
5174
|
+
*/
|
|
5175
|
+
price?: {
|
|
5176
|
+
[key: string]: unknown;
|
|
5177
|
+
} | null;
|
|
5178
|
+
/**
|
|
5179
|
+
* Date the price was observed (ISO yyyy-MM-dd)
|
|
5180
|
+
*/
|
|
5181
|
+
priceDate?: {
|
|
5182
|
+
[key: string]: unknown;
|
|
5183
|
+
} | null;
|
|
5184
|
+
/**
|
|
5185
|
+
* Change vs previous close, in percentage points (1.7 == 1.7%). openbb stores change_percent as a normalized decimal; this exposes percentage points for frontend convenience.
|
|
5186
|
+
*/
|
|
5187
|
+
changePercent?: {
|
|
5188
|
+
[key: string]: unknown;
|
|
5189
|
+
} | null;
|
|
5190
|
+
/**
|
|
5191
|
+
* Previous close (Decimal string)
|
|
5192
|
+
*/
|
|
5193
|
+
prevClose?: {
|
|
5194
|
+
[key: string]: unknown;
|
|
5195
|
+
} | null;
|
|
5196
|
+
/**
|
|
5197
|
+
* Day open (Decimal string)
|
|
5198
|
+
*/
|
|
5199
|
+
open?: {
|
|
5200
|
+
[key: string]: unknown;
|
|
5201
|
+
} | null;
|
|
5202
|
+
/**
|
|
5203
|
+
* Day high (Decimal string)
|
|
5204
|
+
*/
|
|
5205
|
+
high?: {
|
|
5206
|
+
[key: string]: unknown;
|
|
5207
|
+
} | null;
|
|
5208
|
+
/**
|
|
5209
|
+
* Day low (Decimal string)
|
|
5210
|
+
*/
|
|
5211
|
+
low?: {
|
|
5212
|
+
[key: string]: unknown;
|
|
5213
|
+
} | null;
|
|
5214
|
+
/**
|
|
5215
|
+
* Day volume (Decimal string)
|
|
5216
|
+
*/
|
|
5217
|
+
volume?: {
|
|
5218
|
+
[key: string]: unknown;
|
|
5219
|
+
} | null;
|
|
5220
|
+
/**
|
|
5221
|
+
* 52-week high (Decimal string)
|
|
5222
|
+
*/
|
|
5223
|
+
yearHigh?: {
|
|
5224
|
+
[key: string]: unknown;
|
|
5225
|
+
} | null;
|
|
5226
|
+
/**
|
|
5227
|
+
* 52-week low (Decimal string)
|
|
5228
|
+
*/
|
|
5229
|
+
yearLow?: {
|
|
5230
|
+
[key: string]: unknown;
|
|
5231
|
+
} | null;
|
|
5232
|
+
};
|
|
4943
5233
|
type AccountControllerCreateData = {
|
|
4944
5234
|
/**
|
|
4945
5235
|
* Region code for tenant context
|
|
4946
5236
|
*/
|
|
4947
|
-
region: '
|
|
5237
|
+
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';
|
|
4948
5238
|
requestBody: CreateAccountDto;
|
|
4949
5239
|
};
|
|
4950
5240
|
type AccountControllerCreateResponse = AccountResponseDto;
|
|
@@ -4964,7 +5254,7 @@ type AccountControllerFindAllData = {
|
|
|
4964
5254
|
/**
|
|
4965
5255
|
* Region code for tenant context
|
|
4966
5256
|
*/
|
|
4967
|
-
region: '
|
|
5257
|
+
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';
|
|
4968
5258
|
/**
|
|
4969
5259
|
* Search term for account path
|
|
4970
5260
|
*/
|
|
@@ -4987,7 +5277,7 @@ type AccountControllerFindOneData = {
|
|
|
4987
5277
|
/**
|
|
4988
5278
|
* Region code for tenant context
|
|
4989
5279
|
*/
|
|
4990
|
-
region: '
|
|
5280
|
+
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';
|
|
4991
5281
|
};
|
|
4992
5282
|
type AccountControllerFindOneResponse = AccountResponseDto;
|
|
4993
5283
|
type AccountControllerUpdateData = {
|
|
@@ -4998,7 +5288,7 @@ type AccountControllerUpdateData = {
|
|
|
4998
5288
|
/**
|
|
4999
5289
|
* Region code for tenant context
|
|
5000
5290
|
*/
|
|
5001
|
-
region: '
|
|
5291
|
+
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';
|
|
5002
5292
|
requestBody: UpdateAccountDto;
|
|
5003
5293
|
};
|
|
5004
5294
|
type AccountControllerUpdateResponse = AccountResponseDto;
|
|
@@ -5010,7 +5300,7 @@ type AccountControllerDeleteData = {
|
|
|
5010
5300
|
/**
|
|
5011
5301
|
* Region code for tenant context
|
|
5012
5302
|
*/
|
|
5013
|
-
region: '
|
|
5303
|
+
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';
|
|
5014
5304
|
};
|
|
5015
5305
|
type AccountControllerDeleteResponse = void;
|
|
5016
5306
|
type AccountControllerCloseData = {
|
|
@@ -5021,7 +5311,7 @@ type AccountControllerCloseData = {
|
|
|
5021
5311
|
/**
|
|
5022
5312
|
* Region code for tenant context
|
|
5023
5313
|
*/
|
|
5024
|
-
region: '
|
|
5314
|
+
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';
|
|
5025
5315
|
requestBody: CloseAccountDto;
|
|
5026
5316
|
};
|
|
5027
5317
|
type AccountControllerCloseResponse = AccountResponseDto;
|
|
@@ -5033,7 +5323,7 @@ type AccountControllerReopenData = {
|
|
|
5033
5323
|
/**
|
|
5034
5324
|
* Region code for tenant context
|
|
5035
5325
|
*/
|
|
5036
|
-
region: '
|
|
5326
|
+
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';
|
|
5037
5327
|
requestBody: ReopenAccountDto;
|
|
5038
5328
|
};
|
|
5039
5329
|
type AccountControllerReopenResponse = AccountResponseDto;
|
|
@@ -5045,7 +5335,7 @@ type AccountControllerAddOpeningBalanceData = {
|
|
|
5045
5335
|
/**
|
|
5046
5336
|
* Region code for tenant context
|
|
5047
5337
|
*/
|
|
5048
|
-
region: '
|
|
5338
|
+
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';
|
|
5049
5339
|
requestBody: CreateOpeningBalanceDto;
|
|
5050
5340
|
};
|
|
5051
5341
|
type AccountControllerAddOpeningBalanceResponse = OpeningBalanceResultDto;
|
|
@@ -5053,7 +5343,7 @@ type AccountStandardsControllerGetTemplatesData = {
|
|
|
5053
5343
|
/**
|
|
5054
5344
|
* Region code (cn, us, de)
|
|
5055
5345
|
*/
|
|
5056
|
-
region: '
|
|
5346
|
+
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';
|
|
5057
5347
|
/**
|
|
5058
5348
|
* Search term for path or description
|
|
5059
5349
|
*/
|
|
@@ -5072,21 +5362,21 @@ type AccountStandardsControllerGetTemplateMetadataData = {
|
|
|
5072
5362
|
/**
|
|
5073
5363
|
* Region code for tenant context
|
|
5074
5364
|
*/
|
|
5075
|
-
region: '
|
|
5365
|
+
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';
|
|
5076
5366
|
};
|
|
5077
5367
|
type AccountStandardsControllerGetTemplateMetadataResponse = TemplateMetadataResponseDto;
|
|
5078
5368
|
type AccountStandardsControllerGetRegionsData = {
|
|
5079
5369
|
/**
|
|
5080
5370
|
* Region code for tenant context
|
|
5081
5371
|
*/
|
|
5082
|
-
region: '
|
|
5372
|
+
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';
|
|
5083
5373
|
};
|
|
5084
5374
|
type AccountStandardsControllerGetRegionsResponse = RegionsMetadataResponseDto;
|
|
5085
5375
|
type TransactionControllerCreateData = {
|
|
5086
5376
|
/**
|
|
5087
5377
|
* Region code for tenant context
|
|
5088
5378
|
*/
|
|
5089
|
-
region: '
|
|
5379
|
+
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';
|
|
5090
5380
|
/**
|
|
5091
5381
|
* Transaction data with postings
|
|
5092
5382
|
*/
|
|
@@ -5121,7 +5411,7 @@ type TransactionControllerListData = {
|
|
|
5121
5411
|
/**
|
|
5122
5412
|
* Region code for tenant context
|
|
5123
5413
|
*/
|
|
5124
|
-
region: '
|
|
5414
|
+
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
5415
|
/**
|
|
5126
5416
|
* Search in narration and payee fields (max 200 chars)
|
|
5127
5417
|
*/
|
|
@@ -5136,7 +5426,7 @@ type TransactionControllerCreateBatchData = {
|
|
|
5136
5426
|
/**
|
|
5137
5427
|
* Region code for tenant context
|
|
5138
5428
|
*/
|
|
5139
|
-
region: '
|
|
5429
|
+
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';
|
|
5140
5430
|
requestBody: BatchCreateTransactionDto;
|
|
5141
5431
|
};
|
|
5142
5432
|
type TransactionControllerCreateBatchResponse = BatchTransactionResponseDto;
|
|
@@ -5148,7 +5438,7 @@ type TransactionControllerCorrectData = {
|
|
|
5148
5438
|
/**
|
|
5149
5439
|
* Region code for tenant context
|
|
5150
5440
|
*/
|
|
5151
|
-
region: '
|
|
5441
|
+
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';
|
|
5152
5442
|
requestBody: CorrectTransactionDto;
|
|
5153
5443
|
};
|
|
5154
5444
|
type TransactionControllerCorrectResponse = TransactionDetailDto;
|
|
@@ -5164,7 +5454,7 @@ type TransactionControllerSuggestTagsData = {
|
|
|
5164
5454
|
/**
|
|
5165
5455
|
* Region code for tenant context
|
|
5166
5456
|
*/
|
|
5167
|
-
region: '
|
|
5457
|
+
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';
|
|
5168
5458
|
/**
|
|
5169
5459
|
* usage (default) or name
|
|
5170
5460
|
*/
|
|
@@ -5179,7 +5469,7 @@ type TransactionControllerGetDetailData = {
|
|
|
5179
5469
|
/**
|
|
5180
5470
|
* Region code for tenant context
|
|
5181
5471
|
*/
|
|
5182
|
-
region: '
|
|
5472
|
+
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
5473
|
};
|
|
5184
5474
|
type TransactionControllerGetDetailResponse = TransactionDetailDto;
|
|
5185
5475
|
type TransactionControllerUpdateData = {
|
|
@@ -5190,7 +5480,7 @@ type TransactionControllerUpdateData = {
|
|
|
5190
5480
|
/**
|
|
5191
5481
|
* Region code for tenant context
|
|
5192
5482
|
*/
|
|
5193
|
-
region: '
|
|
5483
|
+
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';
|
|
5194
5484
|
/**
|
|
5195
5485
|
* Fields to update (all optional)
|
|
5196
5486
|
*/
|
|
@@ -5205,7 +5495,7 @@ type TransactionControllerDeleteData = {
|
|
|
5205
5495
|
/**
|
|
5206
5496
|
* Region code for tenant context
|
|
5207
5497
|
*/
|
|
5208
|
-
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';
|
|
5209
5499
|
};
|
|
5210
5500
|
type TransactionControllerDeleteResponse = void;
|
|
5211
5501
|
type BalanceControllerGetBalanceData = {
|
|
@@ -5224,14 +5514,14 @@ type BalanceControllerGetBalanceData = {
|
|
|
5224
5514
|
/**
|
|
5225
5515
|
* Region code for tenant context
|
|
5226
5516
|
*/
|
|
5227
|
-
region: '
|
|
5517
|
+
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';
|
|
5228
5518
|
};
|
|
5229
5519
|
type BalanceControllerGetBalanceResponse = BalanceResponseDto;
|
|
5230
5520
|
type BalanceControllerGetMultiCurrencyBalanceData = {
|
|
5231
5521
|
/**
|
|
5232
5522
|
* Region code for tenant context
|
|
5233
5523
|
*/
|
|
5234
|
-
region: '
|
|
5524
|
+
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';
|
|
5235
5525
|
};
|
|
5236
5526
|
type BalanceControllerGetMultiCurrencyBalanceResponse = MultiCurrencyBalanceResponseDto;
|
|
5237
5527
|
type ReviewControllerFindAllData = {
|
|
@@ -5250,7 +5540,7 @@ type ReviewControllerFindAllData = {
|
|
|
5250
5540
|
/**
|
|
5251
5541
|
* Region code for tenant context
|
|
5252
5542
|
*/
|
|
5253
|
-
region: '
|
|
5543
|
+
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';
|
|
5254
5544
|
/**
|
|
5255
5545
|
* Sort order
|
|
5256
5546
|
*/
|
|
@@ -5265,7 +5555,7 @@ type ReviewControllerGetStatsData = {
|
|
|
5265
5555
|
/**
|
|
5266
5556
|
* Region code for tenant context
|
|
5267
5557
|
*/
|
|
5268
|
-
region: '
|
|
5558
|
+
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';
|
|
5269
5559
|
};
|
|
5270
5560
|
type ReviewControllerGetStatsResponse = ReviewStatsDto;
|
|
5271
5561
|
type ReviewControllerFindOneData = {
|
|
@@ -5276,7 +5566,7 @@ type ReviewControllerFindOneData = {
|
|
|
5276
5566
|
/**
|
|
5277
5567
|
* Region code for tenant context
|
|
5278
5568
|
*/
|
|
5279
|
-
region: '
|
|
5569
|
+
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';
|
|
5280
5570
|
};
|
|
5281
5571
|
type ReviewControllerFindOneResponse = ReviewDetailDto;
|
|
5282
5572
|
type ReviewControllerResolveData = {
|
|
@@ -5287,7 +5577,7 @@ type ReviewControllerResolveData = {
|
|
|
5287
5577
|
/**
|
|
5288
5578
|
* Region code for tenant context
|
|
5289
5579
|
*/
|
|
5290
|
-
region: '
|
|
5580
|
+
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';
|
|
5291
5581
|
requestBody: ResolveReviewDto;
|
|
5292
5582
|
};
|
|
5293
5583
|
type ReviewControllerResolveResponse = ResolveResultDto;
|
|
@@ -5299,14 +5589,14 @@ type ReviewControllerUndoData = {
|
|
|
5299
5589
|
/**
|
|
5300
5590
|
* Region code for tenant context
|
|
5301
5591
|
*/
|
|
5302
|
-
region: '
|
|
5592
|
+
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';
|
|
5303
5593
|
};
|
|
5304
5594
|
type ReviewControllerUndoResponse = UndoResultDto;
|
|
5305
5595
|
type ReviewControllerBatchResolveData = {
|
|
5306
5596
|
/**
|
|
5307
5597
|
* Region code for tenant context
|
|
5308
5598
|
*/
|
|
5309
|
-
region: '
|
|
5599
|
+
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';
|
|
5310
5600
|
/**
|
|
5311
5601
|
* Batch resolution request containing review IDs and action
|
|
5312
5602
|
*/
|
|
@@ -5451,7 +5741,7 @@ type CommodityControllerCreateData = {
|
|
|
5451
5741
|
/**
|
|
5452
5742
|
* Region code for tenant context
|
|
5453
5743
|
*/
|
|
5454
|
-
region: '
|
|
5744
|
+
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';
|
|
5455
5745
|
requestBody: CreateCommodityDto;
|
|
5456
5746
|
};
|
|
5457
5747
|
type CommodityControllerCreateResponse = CommodityResponseDto;
|
|
@@ -5459,7 +5749,7 @@ type CommodityControllerFindAllData = {
|
|
|
5459
5749
|
/**
|
|
5460
5750
|
* Region code for tenant context
|
|
5461
5751
|
*/
|
|
5462
|
-
region: '
|
|
5752
|
+
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';
|
|
5463
5753
|
/**
|
|
5464
5754
|
* Search term for symbol or metadata fields (partial match). Searches symbol and metadata.name.
|
|
5465
5755
|
*/
|
|
@@ -5474,7 +5764,7 @@ type CommodityControllerFindOneData = {
|
|
|
5474
5764
|
/**
|
|
5475
5765
|
* Region code for tenant context
|
|
5476
5766
|
*/
|
|
5477
|
-
region: '
|
|
5767
|
+
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';
|
|
5478
5768
|
/**
|
|
5479
5769
|
* Commodity symbol
|
|
5480
5770
|
*/
|
|
@@ -5485,7 +5775,7 @@ type CommodityControllerUpdateData = {
|
|
|
5485
5775
|
/**
|
|
5486
5776
|
* Region code for tenant context
|
|
5487
5777
|
*/
|
|
5488
|
-
region: '
|
|
5778
|
+
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';
|
|
5489
5779
|
requestBody: UpdateCommodityDto;
|
|
5490
5780
|
/**
|
|
5491
5781
|
* Commodity symbol
|
|
@@ -5497,7 +5787,7 @@ type CommodityControllerDeleteData = {
|
|
|
5497
5787
|
/**
|
|
5498
5788
|
* Region code for tenant context
|
|
5499
5789
|
*/
|
|
5500
|
-
region: '
|
|
5790
|
+
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';
|
|
5501
5791
|
/**
|
|
5502
5792
|
* Commodity symbol
|
|
5503
5793
|
*/
|
|
@@ -5508,7 +5798,7 @@ type CommodityControllerGetOrCreateData = {
|
|
|
5508
5798
|
/**
|
|
5509
5799
|
* Region code for tenant context
|
|
5510
5800
|
*/
|
|
5511
|
-
region: '
|
|
5801
|
+
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';
|
|
5512
5802
|
/**
|
|
5513
5803
|
* Commodity symbol
|
|
5514
5804
|
*/
|
|
@@ -5519,14 +5809,14 @@ type CommodityControllerBulkCreateData = {
|
|
|
5519
5809
|
/**
|
|
5520
5810
|
* Region code for tenant context
|
|
5521
5811
|
*/
|
|
5522
|
-
region: '
|
|
5812
|
+
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';
|
|
5523
5813
|
};
|
|
5524
5814
|
type CommodityControllerBulkCreateResponse = Array<CommodityResponseDto>;
|
|
5525
5815
|
type PriceControllerCreateData = {
|
|
5526
5816
|
/**
|
|
5527
5817
|
* Region code for tenant context
|
|
5528
5818
|
*/
|
|
5529
|
-
region: '
|
|
5819
|
+
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';
|
|
5530
5820
|
requestBody: CreateBeanPriceDto;
|
|
5531
5821
|
};
|
|
5532
5822
|
type PriceControllerCreateResponse = PriceResponseDto;
|
|
@@ -5558,7 +5848,7 @@ type PriceControllerFindAllData = {
|
|
|
5558
5848
|
/**
|
|
5559
5849
|
* Region code for tenant context
|
|
5560
5850
|
*/
|
|
5561
|
-
region: '
|
|
5851
|
+
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';
|
|
5562
5852
|
/**
|
|
5563
5853
|
* Search term for currency or quoteCurrency (case-insensitive partial match)
|
|
5564
5854
|
*/
|
|
@@ -5573,7 +5863,7 @@ type PriceControllerFindOneData = {
|
|
|
5573
5863
|
/**
|
|
5574
5864
|
* Region code for tenant context
|
|
5575
5865
|
*/
|
|
5576
|
-
region: '
|
|
5866
|
+
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';
|
|
5577
5867
|
};
|
|
5578
5868
|
type PriceControllerFindOneResponse = PriceResponseDto;
|
|
5579
5869
|
type PriceControllerUpdateData = {
|
|
@@ -5584,7 +5874,7 @@ type PriceControllerUpdateData = {
|
|
|
5584
5874
|
/**
|
|
5585
5875
|
* Region code for tenant context
|
|
5586
5876
|
*/
|
|
5587
|
-
region: '
|
|
5877
|
+
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';
|
|
5588
5878
|
requestBody: UpdateBeanPriceDto;
|
|
5589
5879
|
};
|
|
5590
5880
|
type PriceControllerUpdateResponse = PriceResponseDto;
|
|
@@ -5596,14 +5886,14 @@ type PriceControllerDeleteData = {
|
|
|
5596
5886
|
/**
|
|
5597
5887
|
* Region code for tenant context
|
|
5598
5888
|
*/
|
|
5599
|
-
region: '
|
|
5889
|
+
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';
|
|
5600
5890
|
};
|
|
5601
5891
|
type PriceControllerDeleteResponse = void;
|
|
5602
5892
|
type PriceControllerBulkCreateData = {
|
|
5603
5893
|
/**
|
|
5604
5894
|
* Region code for tenant context
|
|
5605
5895
|
*/
|
|
5606
|
-
region: '
|
|
5896
|
+
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';
|
|
5607
5897
|
requestBody: Array<string>;
|
|
5608
5898
|
};
|
|
5609
5899
|
type PriceControllerBulkCreateResponse = Array<PriceResponseDto>;
|
|
@@ -5611,7 +5901,7 @@ type RecurringRuleControllerCreateData = {
|
|
|
5611
5901
|
/**
|
|
5612
5902
|
* Region code for tenant context
|
|
5613
5903
|
*/
|
|
5614
|
-
region: '
|
|
5904
|
+
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';
|
|
5615
5905
|
requestBody: CreateRecurringRuleDto;
|
|
5616
5906
|
};
|
|
5617
5907
|
type RecurringRuleControllerCreateResponse = RecurringRuleResponseDto;
|
|
@@ -5631,14 +5921,14 @@ type RecurringRuleControllerFindAllData = {
|
|
|
5631
5921
|
/**
|
|
5632
5922
|
* Region code for tenant context
|
|
5633
5923
|
*/
|
|
5634
|
-
region: '
|
|
5924
|
+
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
5925
|
};
|
|
5636
5926
|
type RecurringRuleControllerFindAllResponse = Array<RecurringRuleResponseDto>;
|
|
5637
5927
|
type RecurringRuleControllerCreateFromTransactionData = {
|
|
5638
5928
|
/**
|
|
5639
5929
|
* Region code for tenant context
|
|
5640
5930
|
*/
|
|
5641
|
-
region: '
|
|
5931
|
+
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';
|
|
5642
5932
|
requestBody: CreateRuleFromTransactionDto;
|
|
5643
5933
|
/**
|
|
5644
5934
|
* Source transaction ID
|
|
@@ -5654,7 +5944,7 @@ type RecurringRuleControllerFindOneData = {
|
|
|
5654
5944
|
/**
|
|
5655
5945
|
* Region code for tenant context
|
|
5656
5946
|
*/
|
|
5657
|
-
region: '
|
|
5947
|
+
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';
|
|
5658
5948
|
};
|
|
5659
5949
|
type RecurringRuleControllerFindOneResponse = RecurringRuleResponseDto;
|
|
5660
5950
|
type RecurringRuleControllerUpdateData = {
|
|
@@ -5665,7 +5955,7 @@ type RecurringRuleControllerUpdateData = {
|
|
|
5665
5955
|
/**
|
|
5666
5956
|
* Region code for tenant context
|
|
5667
5957
|
*/
|
|
5668
|
-
region: '
|
|
5958
|
+
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';
|
|
5669
5959
|
requestBody: UpdateRecurringRuleDto;
|
|
5670
5960
|
};
|
|
5671
5961
|
type RecurringRuleControllerUpdateResponse = RecurringRuleResponseDto;
|
|
@@ -5677,7 +5967,7 @@ type RecurringRuleControllerDeleteData = {
|
|
|
5677
5967
|
/**
|
|
5678
5968
|
* Region code for tenant context
|
|
5679
5969
|
*/
|
|
5680
|
-
region: '
|
|
5970
|
+
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';
|
|
5681
5971
|
};
|
|
5682
5972
|
type RecurringRuleControllerDeleteResponse = void;
|
|
5683
5973
|
type RecurringRuleControllerGetWithStatsData = {
|
|
@@ -5688,7 +5978,7 @@ type RecurringRuleControllerGetWithStatsData = {
|
|
|
5688
5978
|
/**
|
|
5689
5979
|
* Region code for tenant context
|
|
5690
5980
|
*/
|
|
5691
|
-
region: '
|
|
5981
|
+
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';
|
|
5692
5982
|
};
|
|
5693
5983
|
type RecurringRuleControllerGetWithStatsResponse = RecurringRuleWithStatsResponseDto;
|
|
5694
5984
|
type ExpectedTransactionControllerFindAllData = {
|
|
@@ -5699,7 +5989,7 @@ type ExpectedTransactionControllerFindAllData = {
|
|
|
5699
5989
|
/**
|
|
5700
5990
|
* Region code for tenant context
|
|
5701
5991
|
*/
|
|
5702
|
-
region: '
|
|
5992
|
+
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';
|
|
5703
5993
|
/**
|
|
5704
5994
|
* Filter by recurring rule ID
|
|
5705
5995
|
*/
|
|
@@ -5718,7 +6008,7 @@ type ExpectedTransactionControllerFindOverdueData = {
|
|
|
5718
6008
|
/**
|
|
5719
6009
|
* Region code for tenant context
|
|
5720
6010
|
*/
|
|
5721
|
-
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';
|
|
5722
6012
|
};
|
|
5723
6013
|
type ExpectedTransactionControllerFindOverdueResponse = ExpectedTransactionListResponseDto;
|
|
5724
6014
|
type ExpectedTransactionControllerFindOneData = {
|
|
@@ -5729,7 +6019,7 @@ type ExpectedTransactionControllerFindOneData = {
|
|
|
5729
6019
|
/**
|
|
5730
6020
|
* Region code for tenant context
|
|
5731
6021
|
*/
|
|
5732
|
-
region: '
|
|
6022
|
+
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';
|
|
5733
6023
|
};
|
|
5734
6024
|
type ExpectedTransactionControllerFindOneResponse = ExpectedTransactionResponseDto;
|
|
5735
6025
|
type ExpectedTransactionControllerSkipData = {
|
|
@@ -5740,7 +6030,7 @@ type ExpectedTransactionControllerSkipData = {
|
|
|
5740
6030
|
/**
|
|
5741
6031
|
* Region code for tenant context
|
|
5742
6032
|
*/
|
|
5743
|
-
region: '
|
|
6033
|
+
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';
|
|
5744
6034
|
};
|
|
5745
6035
|
type ExpectedTransactionControllerSkipResponse = ExpectedTransactionResponseDto;
|
|
5746
6036
|
type ExpectedTransactionControllerUndoSkipData = {
|
|
@@ -5751,7 +6041,7 @@ type ExpectedTransactionControllerUndoSkipData = {
|
|
|
5751
6041
|
/**
|
|
5752
6042
|
* Region code for tenant context
|
|
5753
6043
|
*/
|
|
5754
|
-
region: '
|
|
6044
|
+
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';
|
|
5755
6045
|
};
|
|
5756
6046
|
type ExpectedTransactionControllerUndoSkipResponse = ExpectedTransactionResponseDto;
|
|
5757
6047
|
type ExpectedTransactionControllerConfirmMatchData = {
|
|
@@ -5762,7 +6052,7 @@ type ExpectedTransactionControllerConfirmMatchData = {
|
|
|
5762
6052
|
/**
|
|
5763
6053
|
* Region code for tenant context
|
|
5764
6054
|
*/
|
|
5765
|
-
region: '
|
|
6055
|
+
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';
|
|
5766
6056
|
requestBody: ConfirmMatchDto;
|
|
5767
6057
|
};
|
|
5768
6058
|
type ExpectedTransactionControllerConfirmMatchResponse = unknown;
|
|
@@ -5774,7 +6064,7 @@ type ExpectedTransactionControllerUnmatchData = {
|
|
|
5774
6064
|
/**
|
|
5775
6065
|
* Region code for tenant context
|
|
5776
6066
|
*/
|
|
5777
|
-
region: '
|
|
6067
|
+
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';
|
|
5778
6068
|
};
|
|
5779
6069
|
type ExpectedTransactionControllerUnmatchResponse = unknown;
|
|
5780
6070
|
type ExpectedTransactionControllerEnterNowData = {
|
|
@@ -5785,7 +6075,7 @@ type ExpectedTransactionControllerEnterNowData = {
|
|
|
5785
6075
|
/**
|
|
5786
6076
|
* Region code for tenant context
|
|
5787
6077
|
*/
|
|
5788
|
-
region: '
|
|
6078
|
+
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';
|
|
5789
6079
|
requestBody: EnterNowDto;
|
|
5790
6080
|
};
|
|
5791
6081
|
type ExpectedTransactionControllerEnterNowResponse = unknown;
|
|
@@ -5797,7 +6087,7 @@ type ForecastControllerGetForecastData = {
|
|
|
5797
6087
|
/**
|
|
5798
6088
|
* Region code for tenant context
|
|
5799
6089
|
*/
|
|
5800
|
-
region: '
|
|
6090
|
+
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';
|
|
5801
6091
|
};
|
|
5802
6092
|
type ForecastControllerGetForecastResponse = ForecastResponseDto;
|
|
5803
6093
|
type ReportingControllerGetPortfolioTrendsData = {
|
|
@@ -5812,7 +6102,7 @@ type ReportingControllerGetPortfolioTrendsData = {
|
|
|
5812
6102
|
/**
|
|
5813
6103
|
* Region code for tenant context
|
|
5814
6104
|
*/
|
|
5815
|
-
region: '
|
|
6105
|
+
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';
|
|
5816
6106
|
};
|
|
5817
6107
|
type ReportingControllerGetPortfolioTrendsResponse = PortfolioTrendsResponseDto;
|
|
5818
6108
|
type ReportingControllerGetCashFlowTrendsData = {
|
|
@@ -5827,14 +6117,14 @@ type ReportingControllerGetCashFlowTrendsData = {
|
|
|
5827
6117
|
/**
|
|
5828
6118
|
* Region code for tenant context
|
|
5829
6119
|
*/
|
|
5830
|
-
region: '
|
|
6120
|
+
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';
|
|
5831
6121
|
};
|
|
5832
6122
|
type ReportingControllerGetCashFlowTrendsResponse = CashFlowTrendsResponseDto;
|
|
5833
6123
|
type ReportingControllerGenerateSnapshotData = {
|
|
5834
6124
|
/**
|
|
5835
6125
|
* Region code for tenant context
|
|
5836
6126
|
*/
|
|
5837
|
-
region: '
|
|
6127
|
+
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';
|
|
5838
6128
|
/**
|
|
5839
6129
|
* Optional date (defaults to today)
|
|
5840
6130
|
*/
|
|
@@ -5845,7 +6135,7 @@ type ReportingControllerBackfillSnapshotsData = {
|
|
|
5845
6135
|
/**
|
|
5846
6136
|
* Region code for tenant context
|
|
5847
6137
|
*/
|
|
5848
|
-
region: '
|
|
6138
|
+
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';
|
|
5849
6139
|
requestBody: BackfillSnapshotsBody;
|
|
5850
6140
|
};
|
|
5851
6141
|
type ReportingControllerBackfillSnapshotsResponse = BackfillSnapshotsResponse;
|
|
@@ -5856,7 +6146,7 @@ type UserControllerDeleteOwnUserResponse = void;
|
|
|
5856
6146
|
type UserControllerGetUserData = {
|
|
5857
6147
|
acceptLanguage: string;
|
|
5858
6148
|
};
|
|
5859
|
-
type UserControllerGetUserResponse =
|
|
6149
|
+
type UserControllerGetUserResponse = UserResponseDto;
|
|
5860
6150
|
type UserControllerSignupUserData = {
|
|
5861
6151
|
requestBody: SignupDto;
|
|
5862
6152
|
};
|
|
@@ -5918,7 +6208,7 @@ type TransactionRuleControllerCreateData = {
|
|
|
5918
6208
|
/**
|
|
5919
6209
|
* Region code for tenant context
|
|
5920
6210
|
*/
|
|
5921
|
-
region: '
|
|
6211
|
+
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';
|
|
5922
6212
|
requestBody: CreateTransactionRuleDto;
|
|
5923
6213
|
};
|
|
5924
6214
|
type TransactionRuleControllerCreateResponse = TransactionRuleResponseDto;
|
|
@@ -5946,14 +6236,14 @@ type TransactionRuleControllerListData = {
|
|
|
5946
6236
|
/**
|
|
5947
6237
|
* Region code for tenant context
|
|
5948
6238
|
*/
|
|
5949
|
-
region: '
|
|
6239
|
+
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
6240
|
};
|
|
5951
6241
|
type TransactionRuleControllerListResponse = TransactionRuleListResponseDto;
|
|
5952
6242
|
type TransactionRuleControllerValidateData = {
|
|
5953
6243
|
/**
|
|
5954
6244
|
* Region code for tenant context
|
|
5955
6245
|
*/
|
|
5956
|
-
region: '
|
|
6246
|
+
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';
|
|
5957
6247
|
requestBody: ValidateRuleDto;
|
|
5958
6248
|
};
|
|
5959
6249
|
type TransactionRuleControllerValidateResponse = ValidateRuleResponseDto;
|
|
@@ -5961,7 +6251,7 @@ type TransactionRuleControllerBulkCreateData = {
|
|
|
5961
6251
|
/**
|
|
5962
6252
|
* Region code for tenant context
|
|
5963
6253
|
*/
|
|
5964
|
-
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';
|
|
5965
6255
|
requestBody: BulkCreateRulesDto;
|
|
5966
6256
|
};
|
|
5967
6257
|
type TransactionRuleControllerBulkCreateResponse = BulkCreateRulesResponseDto;
|
|
@@ -5973,7 +6263,7 @@ type TransactionRuleControllerExportData = {
|
|
|
5973
6263
|
/**
|
|
5974
6264
|
* Region code for tenant context
|
|
5975
6265
|
*/
|
|
5976
|
-
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';
|
|
5977
6267
|
};
|
|
5978
6268
|
type TransactionRuleControllerExportResponse = ExportRulesResponseDto;
|
|
5979
6269
|
type TransactionRuleControllerGetStatisticsData = {
|
|
@@ -5984,14 +6274,14 @@ type TransactionRuleControllerGetStatisticsData = {
|
|
|
5984
6274
|
/**
|
|
5985
6275
|
* Region code for tenant context
|
|
5986
6276
|
*/
|
|
5987
|
-
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';
|
|
5988
6278
|
};
|
|
5989
6279
|
type TransactionRuleControllerGetStatisticsResponse = RuleStatisticsResponseDto;
|
|
5990
6280
|
type TransactionRuleControllerGetDetailData = {
|
|
5991
6281
|
/**
|
|
5992
6282
|
* Region code for tenant context
|
|
5993
6283
|
*/
|
|
5994
|
-
region: '
|
|
6284
|
+
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';
|
|
5995
6285
|
/**
|
|
5996
6286
|
* Rule ID
|
|
5997
6287
|
*/
|
|
@@ -6002,7 +6292,7 @@ type TransactionRuleControllerUpdateData = {
|
|
|
6002
6292
|
/**
|
|
6003
6293
|
* Region code for tenant context
|
|
6004
6294
|
*/
|
|
6005
|
-
region: '
|
|
6295
|
+
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';
|
|
6006
6296
|
requestBody: UpdateTransactionRuleDto;
|
|
6007
6297
|
/**
|
|
6008
6298
|
* Rule ID to update
|
|
@@ -6014,7 +6304,7 @@ type TransactionRuleControllerDeleteData = {
|
|
|
6014
6304
|
/**
|
|
6015
6305
|
* Region code for tenant context
|
|
6016
6306
|
*/
|
|
6017
|
-
region: '
|
|
6307
|
+
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';
|
|
6018
6308
|
/**
|
|
6019
6309
|
* Rule ID to delete
|
|
6020
6310
|
*/
|
|
@@ -6025,7 +6315,7 @@ type TransactionRuleControllerTestData = {
|
|
|
6025
6315
|
/**
|
|
6026
6316
|
* Region code for tenant context
|
|
6027
6317
|
*/
|
|
6028
|
-
region: '
|
|
6318
|
+
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';
|
|
6029
6319
|
requestBody: TestRuleDto;
|
|
6030
6320
|
/**
|
|
6031
6321
|
* Rule ID to test
|
|
@@ -6033,11 +6323,26 @@ type TransactionRuleControllerTestData = {
|
|
|
6033
6323
|
ruleId: string;
|
|
6034
6324
|
};
|
|
6035
6325
|
type TransactionRuleControllerTestResponse = TestRuleResponseDto;
|
|
6326
|
+
type CategoryCatalogControllerListData = {
|
|
6327
|
+
/**
|
|
6328
|
+
* Region code for tenant context
|
|
6329
|
+
*/
|
|
6330
|
+
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
|
+
/**
|
|
6332
|
+
* Filter by routeBearing (entity-router route() consumes it)
|
|
6333
|
+
*/
|
|
6334
|
+
routeBearing?: boolean;
|
|
6335
|
+
/**
|
|
6336
|
+
* Filter by scenario
|
|
6337
|
+
*/
|
|
6338
|
+
scenario?: 'expense' | 'income' | 'investment' | 'banking' | 'transfer' | 'payment';
|
|
6339
|
+
};
|
|
6340
|
+
type CategoryCatalogControllerListResponse = CategoryCatalogListResponseDto;
|
|
6036
6341
|
type EventControllerCreateData = {
|
|
6037
6342
|
/**
|
|
6038
6343
|
* Region code for tenant context (decorative for life events)
|
|
6039
6344
|
*/
|
|
6040
|
-
region: '
|
|
6345
|
+
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';
|
|
6041
6346
|
requestBody: CreateBeanEventDto;
|
|
6042
6347
|
};
|
|
6043
6348
|
type EventControllerCreateResponse = EventResponseDto;
|
|
@@ -6061,7 +6366,7 @@ type EventControllerFindAllData = {
|
|
|
6061
6366
|
/**
|
|
6062
6367
|
* Region code for tenant context (decorative for life events)
|
|
6063
6368
|
*/
|
|
6064
|
-
region: '
|
|
6369
|
+
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';
|
|
6065
6370
|
/**
|
|
6066
6371
|
* Filter life events to this date (ISO 8601 format)
|
|
6067
6372
|
*/
|
|
@@ -6080,7 +6385,7 @@ type EventControllerFindOneData = {
|
|
|
6080
6385
|
/**
|
|
6081
6386
|
* Region code for tenant context (decorative for life events)
|
|
6082
6387
|
*/
|
|
6083
|
-
region: '
|
|
6388
|
+
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
6389
|
};
|
|
6085
6390
|
type EventControllerFindOneResponse = EventResponseDto;
|
|
6086
6391
|
type EventControllerUpdateData = {
|
|
@@ -6091,7 +6396,7 @@ type EventControllerUpdateData = {
|
|
|
6091
6396
|
/**
|
|
6092
6397
|
* Region code for tenant context (decorative for life events)
|
|
6093
6398
|
*/
|
|
6094
|
-
region: '
|
|
6399
|
+
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';
|
|
6095
6400
|
requestBody: UpdateBeanEventDto;
|
|
6096
6401
|
};
|
|
6097
6402
|
type EventControllerUpdateResponse = EventResponseDto;
|
|
@@ -6103,7 +6408,7 @@ type EventControllerDeleteData = {
|
|
|
6103
6408
|
/**
|
|
6104
6409
|
* Region code for tenant context (decorative for life events)
|
|
6105
6410
|
*/
|
|
6106
|
-
region: '
|
|
6411
|
+
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';
|
|
6107
6412
|
};
|
|
6108
6413
|
type EventControllerDeleteResponse = void;
|
|
6109
6414
|
type EventControllerGetSliceData = {
|
|
@@ -6116,14 +6421,14 @@ type EventControllerGetSliceData = {
|
|
|
6116
6421
|
/**
|
|
6117
6422
|
* Region code for tenant context (decorative for life events)
|
|
6118
6423
|
*/
|
|
6119
|
-
region: '
|
|
6424
|
+
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';
|
|
6120
6425
|
};
|
|
6121
6426
|
type EventControllerGetSliceResponse = unknown;
|
|
6122
6427
|
type OnboardingControllerBootstrapData = {
|
|
6123
6428
|
/**
|
|
6124
6429
|
* Region code for tenant context
|
|
6125
6430
|
*/
|
|
6126
|
-
region: '
|
|
6431
|
+
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';
|
|
6127
6432
|
requestBody: OnboardingDto;
|
|
6128
6433
|
};
|
|
6129
6434
|
type OnboardingControllerBootstrapResponse = unknown;
|
|
@@ -6131,7 +6436,7 @@ type ReconciliationControllerComputeData = {
|
|
|
6131
6436
|
/**
|
|
6132
6437
|
* Region code for tenant context (decorative for reconciliation)
|
|
6133
6438
|
*/
|
|
6134
|
-
region: '
|
|
6439
|
+
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';
|
|
6135
6440
|
requestBody: ComputeReconciliationDto;
|
|
6136
6441
|
};
|
|
6137
6442
|
type ReconciliationControllerComputeResponse = ReconciliationComputeResultDto;
|
|
@@ -6139,7 +6444,7 @@ type ReconciliationControllerAssertData = {
|
|
|
6139
6444
|
/**
|
|
6140
6445
|
* Region code for tenant context (decorative for reconciliation)
|
|
6141
6446
|
*/
|
|
6142
|
-
region: '
|
|
6447
|
+
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';
|
|
6143
6448
|
requestBody: AssertReconciliationDto;
|
|
6144
6449
|
};
|
|
6145
6450
|
type ReconciliationControllerAssertResponse = ReconciliationRecordDto;
|
|
@@ -6147,7 +6452,7 @@ type ReconciliationControllerPadData = {
|
|
|
6147
6452
|
/**
|
|
6148
6453
|
* Region code for tenant context (decorative for reconciliation)
|
|
6149
6454
|
*/
|
|
6150
|
-
region: '
|
|
6455
|
+
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';
|
|
6151
6456
|
requestBody: PadReconciliationDto;
|
|
6152
6457
|
};
|
|
6153
6458
|
type ReconciliationControllerPadResponse = PadResultDto;
|
|
@@ -6159,7 +6464,7 @@ type ReconciliationControllerHistoryData = {
|
|
|
6159
6464
|
/**
|
|
6160
6465
|
* Region code for tenant context (decorative for reconciliation)
|
|
6161
6466
|
*/
|
|
6162
|
-
region: '
|
|
6467
|
+
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
6468
|
};
|
|
6164
6469
|
type ReconciliationControllerHistoryResponse = Array<ReconciliationRecordDto>;
|
|
6165
6470
|
type ExportControllerExportBeancountResponse = unknown;
|
|
@@ -6171,7 +6476,7 @@ type FileImportControllerImportFileData = {
|
|
|
6171
6476
|
/**
|
|
6172
6477
|
* Region code for tenant context
|
|
6173
6478
|
*/
|
|
6174
|
-
region: '
|
|
6479
|
+
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
6480
|
};
|
|
6176
6481
|
type FileImportControllerImportFileResponse = ImportResultDto;
|
|
6177
6482
|
type FileImportControllerIdentifyFileData = {
|
|
@@ -6182,7 +6487,7 @@ type FileImportControllerIdentifyFileData = {
|
|
|
6182
6487
|
/**
|
|
6183
6488
|
* Region code for tenant context
|
|
6184
6489
|
*/
|
|
6185
|
-
region: '
|
|
6490
|
+
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';
|
|
6186
6491
|
};
|
|
6187
6492
|
type FileImportControllerIdentifyFileResponse = IdentifyResultDto;
|
|
6188
6493
|
type FileImportControllerImportBeancountData = {
|
|
@@ -6193,7 +6498,7 @@ type FileImportControllerImportBeancountData = {
|
|
|
6193
6498
|
/**
|
|
6194
6499
|
* Region code for tenant context
|
|
6195
6500
|
*/
|
|
6196
|
-
region: '
|
|
6501
|
+
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';
|
|
6197
6502
|
};
|
|
6198
6503
|
type FileImportControllerImportBeancountResponse = {
|
|
6199
6504
|
imported?: number;
|
|
@@ -6212,7 +6517,7 @@ type ImporterConfigControllerGetConfigData = {
|
|
|
6212
6517
|
/**
|
|
6213
6518
|
* Region code for tenant context
|
|
6214
6519
|
*/
|
|
6215
|
-
region: '
|
|
6520
|
+
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';
|
|
6216
6521
|
};
|
|
6217
6522
|
type ImporterConfigControllerGetConfigResponse = ImporterConfigDto;
|
|
6218
6523
|
type ImporterConfigControllerUpdateConfigData = {
|
|
@@ -6223,7 +6528,7 @@ type ImporterConfigControllerUpdateConfigData = {
|
|
|
6223
6528
|
/**
|
|
6224
6529
|
* Region code for tenant context
|
|
6225
6530
|
*/
|
|
6226
|
-
region: '
|
|
6531
|
+
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';
|
|
6227
6532
|
/**
|
|
6228
6533
|
* Partial configuration update. Only provided fields will be updated.
|
|
6229
6534
|
*/
|
|
@@ -6238,7 +6543,7 @@ type ImporterConfigControllerResetConfigData = {
|
|
|
6238
6543
|
/**
|
|
6239
6544
|
* Region code for tenant context
|
|
6240
6545
|
*/
|
|
6241
|
-
region: '
|
|
6546
|
+
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';
|
|
6242
6547
|
};
|
|
6243
6548
|
type ImporterConfigControllerResetConfigResponse = ImporterConfigDto;
|
|
6244
6549
|
type ProviderSyncControllerSyncData = {
|
|
@@ -6249,7 +6554,7 @@ type ProviderSyncControllerSyncData = {
|
|
|
6249
6554
|
/**
|
|
6250
6555
|
* Region code for tenant context
|
|
6251
6556
|
*/
|
|
6252
|
-
region: '
|
|
6557
|
+
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';
|
|
6253
6558
|
requestBody: ProviderSyncDto;
|
|
6254
6559
|
};
|
|
6255
6560
|
type ProviderSyncControllerSyncResponse = ProviderSyncResponseDto;
|
|
@@ -6257,7 +6562,7 @@ type ProviderSyncControllerGetSupportedProvidersData = {
|
|
|
6257
6562
|
/**
|
|
6258
6563
|
* Region code for tenant context
|
|
6259
6564
|
*/
|
|
6260
|
-
region: '
|
|
6565
|
+
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
6566
|
};
|
|
6262
6567
|
type ProviderSyncControllerGetSupportedProvidersResponse = SupportedProvidersResponseDto;
|
|
6263
6568
|
type ProviderSyncControllerIsProviderSupportedData = {
|
|
@@ -6268,14 +6573,14 @@ type ProviderSyncControllerIsProviderSupportedData = {
|
|
|
6268
6573
|
/**
|
|
6269
6574
|
* Region code for tenant context
|
|
6270
6575
|
*/
|
|
6271
|
-
region: '
|
|
6576
|
+
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';
|
|
6272
6577
|
};
|
|
6273
6578
|
type ProviderSyncControllerIsProviderSupportedResponse = unknown;
|
|
6274
6579
|
type ExternalAccountLinkControllerCreateData = {
|
|
6275
6580
|
/**
|
|
6276
6581
|
* Region code for tenant context
|
|
6277
6582
|
*/
|
|
6278
|
-
region: '
|
|
6583
|
+
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';
|
|
6279
6584
|
requestBody: CreateExternalAccountLinkDto;
|
|
6280
6585
|
};
|
|
6281
6586
|
type ExternalAccountLinkControllerCreateResponse = ExternalAccountLinkResponseDto;
|
|
@@ -6284,7 +6589,7 @@ type ExternalAccountLinkControllerFindAllData = {
|
|
|
6284
6589
|
/**
|
|
6285
6590
|
* Region code for tenant context
|
|
6286
6591
|
*/
|
|
6287
|
-
region: '
|
|
6592
|
+
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';
|
|
6288
6593
|
};
|
|
6289
6594
|
type ExternalAccountLinkControllerFindAllResponse = ExternalAccountLinkListResponseDto;
|
|
6290
6595
|
type ExternalAccountLinkControllerFindOneData = {
|
|
@@ -6292,7 +6597,7 @@ type ExternalAccountLinkControllerFindOneData = {
|
|
|
6292
6597
|
/**
|
|
6293
6598
|
* Region code for tenant context
|
|
6294
6599
|
*/
|
|
6295
|
-
region: '
|
|
6600
|
+
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';
|
|
6296
6601
|
};
|
|
6297
6602
|
type ExternalAccountLinkControllerFindOneResponse = ExternalAccountLinkResponseDto;
|
|
6298
6603
|
type ExternalAccountLinkControllerRemoveData = {
|
|
@@ -6300,14 +6605,14 @@ type ExternalAccountLinkControllerRemoveData = {
|
|
|
6300
6605
|
/**
|
|
6301
6606
|
* Region code for tenant context
|
|
6302
6607
|
*/
|
|
6303
|
-
region: '
|
|
6608
|
+
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';
|
|
6304
6609
|
};
|
|
6305
6610
|
type ExternalAccountLinkControllerRemoveResponse = void;
|
|
6306
6611
|
type TelemetryControllerReportTelemetryData = {
|
|
6307
6612
|
/**
|
|
6308
6613
|
* Region code for tenant context
|
|
6309
6614
|
*/
|
|
6310
|
-
region: '
|
|
6615
|
+
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';
|
|
6311
6616
|
requestBody: ParserTelemetryReportDto;
|
|
6312
6617
|
};
|
|
6313
6618
|
type TelemetryControllerReportTelemetryResponse = unknown;
|
|
@@ -6315,7 +6620,7 @@ type TelemetryControllerReportCoverageMissData = {
|
|
|
6315
6620
|
/**
|
|
6316
6621
|
* Region code for tenant context
|
|
6317
6622
|
*/
|
|
6318
|
-
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';
|
|
6319
6624
|
requestBody: UncoveredFormatMissDto;
|
|
6320
6625
|
};
|
|
6321
6626
|
type TelemetryControllerReportCoverageMissResponse = unknown;
|
|
@@ -6323,7 +6628,7 @@ type TelemetryControllerGetCoverageMetricsData = {
|
|
|
6323
6628
|
/**
|
|
6324
6629
|
* Region code for tenant context
|
|
6325
6630
|
*/
|
|
6326
|
-
region: '
|
|
6631
|
+
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';
|
|
6327
6632
|
/**
|
|
6328
6633
|
* Top-N uncovered formats (default 10)
|
|
6329
6634
|
*/
|
|
@@ -6334,7 +6639,7 @@ type NlpControllerProcessNaturalLanguageData = {
|
|
|
6334
6639
|
/**
|
|
6335
6640
|
* Region code for tenant context
|
|
6336
6641
|
*/
|
|
6337
|
-
region: '
|
|
6642
|
+
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';
|
|
6338
6643
|
/**
|
|
6339
6644
|
* Natural language transaction input with optional session ID
|
|
6340
6645
|
*/
|
|
@@ -6345,7 +6650,7 @@ type NlpControllerClearSessionData = {
|
|
|
6345
6650
|
/**
|
|
6346
6651
|
* Region code for tenant context
|
|
6347
6652
|
*/
|
|
6348
|
-
region: '
|
|
6653
|
+
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';
|
|
6349
6654
|
/**
|
|
6350
6655
|
* Specific session ID to clear (defaults to user session)
|
|
6351
6656
|
*/
|
|
@@ -6356,7 +6661,7 @@ type NlpControllerGetSessionData = {
|
|
|
6356
6661
|
/**
|
|
6357
6662
|
* Region code for tenant context
|
|
6358
6663
|
*/
|
|
6359
|
-
region: '
|
|
6664
|
+
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';
|
|
6360
6665
|
/**
|
|
6361
6666
|
* Specific session ID to get (defaults to user session)
|
|
6362
6667
|
*/
|
|
@@ -6368,6 +6673,12 @@ type PlatformControllerCreateData = {
|
|
|
6368
6673
|
requestBody: CreatePlatformDto;
|
|
6369
6674
|
};
|
|
6370
6675
|
type PlatformControllerCreateResponse = unknown;
|
|
6676
|
+
type PlatformControllerGetPlatformListData = {
|
|
6677
|
+
/**
|
|
6678
|
+
* Region code (ISO 3166-1 alpha-2) that biases within-type-bucket ordering (local-region platforms first). Case-insensitive — stored/compared UPPERCASE ("cn" == "CN").
|
|
6679
|
+
*/
|
|
6680
|
+
region?: string;
|
|
6681
|
+
};
|
|
6371
6682
|
type PlatformControllerGetPlatformListResponse = Array<PlatformListItemDto>;
|
|
6372
6683
|
type PlatformControllerMatchPlatformsData = {
|
|
6373
6684
|
/**
|
|
@@ -6375,7 +6686,7 @@ type PlatformControllerMatchPlatformsData = {
|
|
|
6375
6686
|
*/
|
|
6376
6687
|
q: string;
|
|
6377
6688
|
/**
|
|
6378
|
-
* Region code
|
|
6689
|
+
* 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").
|
|
6379
6690
|
*/
|
|
6380
6691
|
region?: string;
|
|
6381
6692
|
};
|
|
@@ -6403,7 +6714,7 @@ type DashboardControllerGetNetWorthData = {
|
|
|
6403
6714
|
/**
|
|
6404
6715
|
* Region code for tenant context
|
|
6405
6716
|
*/
|
|
6406
|
-
region: '
|
|
6717
|
+
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';
|
|
6407
6718
|
};
|
|
6408
6719
|
type DashboardControllerGetNetWorthResponse = NetWorthResponseDto;
|
|
6409
6720
|
type DashboardControllerGetAccountsData = {
|
|
@@ -6422,7 +6733,7 @@ type DashboardControllerGetAccountsData = {
|
|
|
6422
6733
|
/**
|
|
6423
6734
|
* Region code for tenant context
|
|
6424
6735
|
*/
|
|
6425
|
-
region: '
|
|
6736
|
+
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';
|
|
6426
6737
|
};
|
|
6427
6738
|
type DashboardControllerGetAccountsResponse = AccountsResponseDto | AssetClassAccountsResponseDto | HoldingAssetClassCrossAccountResponseDto;
|
|
6428
6739
|
type DashboardControllerGetCashFlowData = {
|
|
@@ -6433,7 +6744,7 @@ type DashboardControllerGetCashFlowData = {
|
|
|
6433
6744
|
/**
|
|
6434
6745
|
* Region code for tenant context
|
|
6435
6746
|
*/
|
|
6436
|
-
region: '
|
|
6747
|
+
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';
|
|
6437
6748
|
};
|
|
6438
6749
|
type DashboardControllerGetCashFlowResponse = CashFlowResponseDto;
|
|
6439
6750
|
type DashboardControllerGetExpensesData = {
|
|
@@ -6452,7 +6763,7 @@ type DashboardControllerGetExpensesData = {
|
|
|
6452
6763
|
/**
|
|
6453
6764
|
* Region code for tenant context
|
|
6454
6765
|
*/
|
|
6455
|
-
region: '
|
|
6766
|
+
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';
|
|
6456
6767
|
};
|
|
6457
6768
|
type DashboardControllerGetExpensesResponse = ExpensesByCategoryResponseDto;
|
|
6458
6769
|
type HoldingPnlControllerGetHoldingPnlData = {
|
|
@@ -6471,7 +6782,7 @@ type HoldingPnlControllerGetHoldingPnlData = {
|
|
|
6471
6782
|
/**
|
|
6472
6783
|
* Region code for tenant context
|
|
6473
6784
|
*/
|
|
6474
|
-
region: '
|
|
6785
|
+
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';
|
|
6475
6786
|
};
|
|
6476
6787
|
type HoldingPnlControllerGetHoldingPnlResponse = HoldingPnlResponseDto;
|
|
6477
6788
|
type ApiKeysControllerCreateApiKeyResponse = unknown;
|
|
@@ -6505,6 +6816,29 @@ type HealthControllerResetCircuitBreakerData = {
|
|
|
6505
6816
|
type HealthControllerResetCircuitBreakerResponse = unknown;
|
|
6506
6817
|
type HealthControllerGetMetricsResponse = unknown;
|
|
6507
6818
|
type InfoControllerGetInfoResponse = unknown;
|
|
6819
|
+
type SymbolControllerSearchData = {
|
|
6820
|
+
/**
|
|
6821
|
+
* Filter by OpenBB asset_type (e.g. stock, etf)
|
|
6822
|
+
*/
|
|
6823
|
+
assetType?: string;
|
|
6824
|
+
/**
|
|
6825
|
+
* Filter by exchange code (e.g. US, HK, SS, SZ)
|
|
6826
|
+
*/
|
|
6827
|
+
exchange?: string;
|
|
6828
|
+
/**
|
|
6829
|
+
* Maximum number of results (clamped 1..50)
|
|
6830
|
+
*/
|
|
6831
|
+
limit?: number;
|
|
6832
|
+
/**
|
|
6833
|
+
* Search term — matched against symbol and instrument name. Empty string returns [].
|
|
6834
|
+
*/
|
|
6835
|
+
q: string;
|
|
6836
|
+
};
|
|
6837
|
+
type SymbolControllerSearchResponse = Array<SymbolSearchResultDto>;
|
|
6838
|
+
type SymbolControllerGetQuoteData = {
|
|
6839
|
+
symbol: string;
|
|
6840
|
+
};
|
|
6841
|
+
type SymbolControllerGetQuoteResponse = SymbolQuoteDto;
|
|
6508
6842
|
type $OpenApiTs = {
|
|
6509
6843
|
'/api/v1/{region}/bean/accounts': {
|
|
6510
6844
|
post: {
|
|
@@ -6569,7 +6903,7 @@ type $OpenApiTs = {
|
|
|
6569
6903
|
*/
|
|
6570
6904
|
404: unknown;
|
|
6571
6905
|
/**
|
|
6572
|
-
* Account has transactions and cannot be deleted
|
|
6906
|
+
* Account has active transactions and cannot be deleted
|
|
6573
6907
|
*/
|
|
6574
6908
|
409: unknown;
|
|
6575
6909
|
};
|
|
@@ -7666,7 +8000,7 @@ type $OpenApiTs = {
|
|
|
7666
8000
|
/**
|
|
7667
8001
|
* User retrieved successfully
|
|
7668
8002
|
*/
|
|
7669
|
-
200:
|
|
8003
|
+
200: UserResponseDto;
|
|
7670
8004
|
};
|
|
7671
8005
|
};
|
|
7672
8006
|
post: {
|
|
@@ -8040,6 +8374,17 @@ type $OpenApiTs = {
|
|
|
8040
8374
|
};
|
|
8041
8375
|
};
|
|
8042
8376
|
};
|
|
8377
|
+
'/api/v1/{region}/bean/categories': {
|
|
8378
|
+
get: {
|
|
8379
|
+
req: CategoryCatalogControllerListData;
|
|
8380
|
+
res: {
|
|
8381
|
+
/**
|
|
8382
|
+
* Category catalog retrieved successfully
|
|
8383
|
+
*/
|
|
8384
|
+
200: CategoryCatalogListResponseDto;
|
|
8385
|
+
};
|
|
8386
|
+
};
|
|
8387
|
+
};
|
|
8043
8388
|
'/api/v1/{region}/bean/events': {
|
|
8044
8389
|
post: {
|
|
8045
8390
|
req: EventControllerCreateData;
|
|
@@ -8579,6 +8924,7 @@ type $OpenApiTs = {
|
|
|
8579
8924
|
};
|
|
8580
8925
|
'/api/v1/bean/platforms/list': {
|
|
8581
8926
|
get: {
|
|
8927
|
+
req: PlatformControllerGetPlatformListData;
|
|
8582
8928
|
res: {
|
|
8583
8929
|
/**
|
|
8584
8930
|
* List of platforms with user binding status
|
|
@@ -8881,6 +9227,32 @@ type $OpenApiTs = {
|
|
|
8881
9227
|
};
|
|
8882
9228
|
};
|
|
8883
9229
|
};
|
|
9230
|
+
'/api/v1/market/symbols/search': {
|
|
9231
|
+
get: {
|
|
9232
|
+
req: SymbolControllerSearchData;
|
|
9233
|
+
res: {
|
|
9234
|
+
/**
|
|
9235
|
+
* Ranked search results
|
|
9236
|
+
*/
|
|
9237
|
+
200: Array<SymbolSearchResultDto>;
|
|
9238
|
+
};
|
|
9239
|
+
};
|
|
9240
|
+
};
|
|
9241
|
+
'/api/v1/market/symbols/{symbol}/quote': {
|
|
9242
|
+
get: {
|
|
9243
|
+
req: SymbolControllerGetQuoteData;
|
|
9244
|
+
res: {
|
|
9245
|
+
/**
|
|
9246
|
+
* Symbol quote
|
|
9247
|
+
*/
|
|
9248
|
+
200: SymbolQuoteDto;
|
|
9249
|
+
/**
|
|
9250
|
+
* Symbol not found in the openbb catalog
|
|
9251
|
+
*/
|
|
9252
|
+
404: unknown;
|
|
9253
|
+
};
|
|
9254
|
+
};
|
|
9255
|
+
};
|
|
8884
9256
|
};
|
|
8885
9257
|
|
|
8886
9258
|
declare class BeanAccountsService {
|
|
@@ -8932,7 +9304,7 @@ declare class BeanAccountsService {
|
|
|
8932
9304
|
static accountControllerUpdate(data: AccountControllerUpdateData): CancelablePromise<AccountControllerUpdateResponse>;
|
|
8933
9305
|
/**
|
|
8934
9306
|
* Delete account
|
|
8935
|
-
* Deletes an account (only if no transactions)
|
|
9307
|
+
* Deletes an account (only if no active transactions; voided/superseded residual postings are cleaned up)
|
|
8936
9308
|
* @param data The data for the request.
|
|
8937
9309
|
* @param data.id Account UUID
|
|
8938
9310
|
* @param data.region Region code for tenant context
|
|
@@ -9304,4 +9676,4 @@ type OpenAPIConfig = {
|
|
|
9304
9676
|
};
|
|
9305
9677
|
declare const OpenAPI: OpenAPIConfig;
|
|
9306
9678
|
|
|
9307
|
-
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 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 };
|
|
9679
|
+
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 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 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 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 UserResponseDto, type UserSettingsResponseDto, type ValidateRuleDto, type ValidateRuleResponseDto, type VersionedConfigDto, type action, type action2, type assetClass, type assetSubClass, type assetSubType, type bookingMethod, type branchType, type category, type chartToken, type colorScheme, type confidenceLevel, type conflictStrategy, type dataSource, type equitySubType, type flag, type flag2, type frequency, type importerId, type intent, type investmentAction, type learningSource, type liabilitySubType, type matchLogic, type matchType, type matchType2, type method, type mode, type paymentSource, type period, type productCategory, type provider, type role, type scenario, 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 };
|