@firela/api-types 0.0.0-canary.97006feb → 0.0.0-canary.a0b42138
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 +529 -149
- package/dist/index.d.ts +529 -149
- package/dist/index.js +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
- package/src/generated/schemas.gen.ts +509 -34
- package/src/generated/services.gen.ts +99 -7
- package/src/generated/types.gen.ts +3329 -161
package/dist/index.d.mts
CHANGED
|
@@ -78,6 +78,10 @@ type AccountResponseDto = {
|
|
|
78
78
|
* Account type (root segment)
|
|
79
79
|
*/
|
|
80
80
|
type: 'Assets' | 'Liabilities' | 'Income' | 'Expenses' | 'Equity';
|
|
81
|
+
/**
|
|
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
|
+
*/
|
|
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;
|
|
81
85
|
/**
|
|
82
86
|
* Account status
|
|
83
87
|
*/
|
|
@@ -145,6 +149,10 @@ type AccountResponseDto = {
|
|
|
145
149
|
* Account type (root segment)
|
|
146
150
|
*/
|
|
147
151
|
type type = 'Assets' | 'Liabilities' | 'Income' | 'Expenses' | 'Equity';
|
|
152
|
+
/**
|
|
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
|
+
*/
|
|
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';
|
|
148
156
|
/**
|
|
149
157
|
* Account status
|
|
150
158
|
*/
|
|
@@ -246,7 +254,27 @@ type AccountStandardResponseDto = {
|
|
|
246
254
|
* Icon identifier for UI display
|
|
247
255
|
*/
|
|
248
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;
|
|
249
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';
|
|
250
278
|
type AccountStandardListResponseDto = {
|
|
251
279
|
/**
|
|
252
280
|
* Array of account templates
|
|
@@ -2543,6 +2571,30 @@ type DeleteOwnUserDto = {
|
|
|
2543
2571
|
*/
|
|
2544
2572
|
accessToken: string;
|
|
2545
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
|
+
};
|
|
2546
2598
|
type SignupDto = {
|
|
2547
2599
|
/**
|
|
2548
2600
|
* Cloudflare Turnstile verification token (optional when Turnstile disabled)
|
|
@@ -3005,6 +3057,42 @@ type TestRuleResponseDto = {
|
|
|
3005
3057
|
[key: string]: unknown;
|
|
3006
3058
|
};
|
|
3007
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
|
+
};
|
|
3008
3096
|
type CreateBeanEventDto = {
|
|
3009
3097
|
/**
|
|
3010
3098
|
* Life event date (ISO 8601)
|
|
@@ -3489,13 +3577,13 @@ type ProviderSyncConfigDto = {
|
|
|
3489
3577
|
*/
|
|
3490
3578
|
defaultCurrency: string;
|
|
3491
3579
|
/**
|
|
3492
|
-
* 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).
|
|
3493
3581
|
*/
|
|
3494
|
-
defaultExpenseAccount
|
|
3582
|
+
defaultExpenseAccount?: string;
|
|
3495
3583
|
/**
|
|
3496
|
-
* 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).
|
|
3497
3585
|
*/
|
|
3498
|
-
defaultIncomeAccount
|
|
3586
|
+
defaultIncomeAccount?: string;
|
|
3499
3587
|
/**
|
|
3500
3588
|
* Filter pending transactions
|
|
3501
3589
|
*/
|
|
@@ -3592,11 +3680,85 @@ type ExternalAccountLinkListResponseDto = {
|
|
|
3592
3680
|
};
|
|
3593
3681
|
type ParserTelemetryReportDto = unknown;
|
|
3594
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';
|
|
3595
3753
|
type ProcessNlpDto = {
|
|
3596
3754
|
/**
|
|
3597
|
-
* Natural language text describing a transaction (
|
|
3755
|
+
* Natural language text describing a transaction. Optional when `confirm` is true (structured confirm); otherwise required.
|
|
3598
3756
|
*/
|
|
3599
|
-
message
|
|
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.
|
|
3760
|
+
*/
|
|
3761
|
+
confirm?: boolean;
|
|
3600
3762
|
/**
|
|
3601
3763
|
* Session ID for multi-turn conversation (auto-generated if not provided)
|
|
3602
3764
|
*/
|
|
@@ -3604,9 +3766,15 @@ type ProcessNlpDto = {
|
|
|
3604
3766
|
/**
|
|
3605
3767
|
* Parsed data from previous NLP response for session recovery. Send back the parsedData received in confirm_payee/confirm responses.
|
|
3606
3768
|
*/
|
|
3607
|
-
parsedData?:
|
|
3608
|
-
|
|
3609
|
-
|
|
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;
|
|
3610
3778
|
};
|
|
3611
3779
|
type NlpTransactionInfoDto = {
|
|
3612
3780
|
/**
|
|
@@ -3700,14 +3868,6 @@ type NlpParsedDataDto = {
|
|
|
3700
3868
|
*/
|
|
3701
3869
|
warning?: string;
|
|
3702
3870
|
};
|
|
3703
|
-
/**
|
|
3704
|
-
* Investment action
|
|
3705
|
-
*/
|
|
3706
|
-
type investmentAction = 'buy' | 'sell';
|
|
3707
|
-
/**
|
|
3708
|
-
* Payment source: asset (default) or liability (credit card)
|
|
3709
|
-
*/
|
|
3710
|
-
type paymentSource = 'asset' | 'liability';
|
|
3711
3871
|
type NlpSourceTransactionDto = {
|
|
3712
3872
|
/**
|
|
3713
3873
|
* Transaction date (ISO format)
|
|
@@ -3840,9 +4000,9 @@ type NlpAccountConfirmationDataDto = {
|
|
|
3840
4000
|
*/
|
|
3841
4001
|
invalidAccount: string;
|
|
3842
4002
|
/**
|
|
3843
|
-
* Suggested replacement account
|
|
4003
|
+
* Suggested replacement account (omitted when no clear candidate)
|
|
3844
4004
|
*/
|
|
3845
|
-
suggestedAccount
|
|
4005
|
+
suggestedAccount?: string;
|
|
3846
4006
|
/**
|
|
3847
4007
|
* Similar accounts for user selection
|
|
3848
4008
|
*/
|
|
@@ -3964,7 +4124,7 @@ type NlpSuggestedAccountDto = {
|
|
|
3964
4124
|
*/
|
|
3965
4125
|
account: string;
|
|
3966
4126
|
/**
|
|
3967
|
-
* 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)
|
|
3968
4128
|
*/
|
|
3969
4129
|
confidence?: number;
|
|
3970
4130
|
};
|
|
@@ -3980,21 +4140,21 @@ type NlpSuggestedAccountsDto = {
|
|
|
3980
4140
|
};
|
|
3981
4141
|
type NlpDefaultAccountsDto = {
|
|
3982
4142
|
/**
|
|
3983
|
-
* Default asset account
|
|
4143
|
+
* Default OPEN asset account (MRU when multiple), or null when none/ambiguous
|
|
3984
4144
|
*/
|
|
3985
|
-
asset: string;
|
|
4145
|
+
asset: string | null;
|
|
3986
4146
|
/**
|
|
3987
|
-
* Default expense account
|
|
4147
|
+
* Default OPEN expense account (MRU when multiple), or null when none/ambiguous
|
|
3988
4148
|
*/
|
|
3989
|
-
expense: string;
|
|
4149
|
+
expense: string | null;
|
|
3990
4150
|
/**
|
|
3991
|
-
* Default income account
|
|
4151
|
+
* Default OPEN income account (MRU when multiple), or null when none/ambiguous
|
|
3992
4152
|
*/
|
|
3993
|
-
income: string;
|
|
4153
|
+
income: string | null;
|
|
3994
4154
|
/**
|
|
3995
|
-
* Default liability account
|
|
4155
|
+
* Default OPEN liability account (MRU when multiple), or null when none/ambiguous
|
|
3996
4156
|
*/
|
|
3997
|
-
liability: string;
|
|
4157
|
+
liability: string | null;
|
|
3998
4158
|
};
|
|
3999
4159
|
type NlpResponseDto = {
|
|
4000
4160
|
/**
|
|
@@ -4012,7 +4172,7 @@ type NlpResponseDto = {
|
|
|
4012
4172
|
/**
|
|
4013
4173
|
* Asset sub-type (only present when intent is "asset"). Determines which asset-related form to render.
|
|
4014
4174
|
*/
|
|
4015
|
-
assetSubType?: 'transfer' | 'banking' | 'investment';
|
|
4175
|
+
assetSubType?: 'transfer' | 'banking' | 'investment' | 'lend' | 'lend_collect';
|
|
4016
4176
|
/**
|
|
4017
4177
|
* Liability sub-type (only present when intent is "liability"). borrow: borrowing money (Liabilities → Assets), repay: repaying debt (Assets → Liabilities).
|
|
4018
4178
|
*/
|
|
@@ -4093,11 +4253,11 @@ type NlpResponseDto = {
|
|
|
4093
4253
|
*/
|
|
4094
4254
|
recurringSuggestion?: RecurringSuggestionDto;
|
|
4095
4255
|
/**
|
|
4096
|
-
* 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.
|
|
4097
4257
|
*/
|
|
4098
4258
|
suggestedAccounts?: NlpSuggestedAccountsDto;
|
|
4099
4259
|
/**
|
|
4100
|
-
* Default accounts for the user/region.
|
|
4260
|
+
* Default fallback accounts for the user/region (#586). v1 returns universal constants; per-user personalization is planned.
|
|
4101
4261
|
*/
|
|
4102
4262
|
defaultAccounts?: NlpDefaultAccountsDto;
|
|
4103
4263
|
};
|
|
@@ -4116,7 +4276,7 @@ type intent = 'expense' | 'asset' | 'income' | 'liability' | 'equity';
|
|
|
4116
4276
|
/**
|
|
4117
4277
|
* Asset sub-type (only present when intent is "asset"). Determines which asset-related form to render.
|
|
4118
4278
|
*/
|
|
4119
|
-
type assetSubType = 'transfer' | 'banking' | 'investment';
|
|
4279
|
+
type assetSubType = 'transfer' | 'banking' | 'investment' | 'lend' | 'lend_collect';
|
|
4120
4280
|
/**
|
|
4121
4281
|
* Liability sub-type (only present when intent is "liability"). borrow: borrowing money (Liabilities → Assets), repay: repaying debt (Assets → Liabilities).
|
|
4122
4282
|
*/
|
|
@@ -4147,13 +4307,21 @@ type PlatformListItemDto = {
|
|
|
4147
4307
|
*/
|
|
4148
4308
|
canonical: string;
|
|
4149
4309
|
/**
|
|
4150
|
-
* Suggested path segment — canonical
|
|
4310
|
+
* Suggested path segment — canonical PascalCased per hyphen-part, hyphens preserved (e.g. "Apple-Pay")
|
|
4151
4311
|
*/
|
|
4152
4312
|
suggestedSegment: string;
|
|
4153
4313
|
/**
|
|
4154
4314
|
* Logo URL
|
|
4155
4315
|
*/
|
|
4156
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;
|
|
4157
4325
|
/**
|
|
4158
4326
|
* Whether user has accounts using this platform
|
|
4159
4327
|
*/
|
|
@@ -4181,13 +4349,21 @@ type PlatformMatchResultDto = {
|
|
|
4181
4349
|
*/
|
|
4182
4350
|
type: 'BANK' | 'BROKERAGE' | 'CRYPTO_EXCHANGE' | 'PAYMENT' | 'INVESTMENT' | 'INSURANCE' | 'OTHER';
|
|
4183
4351
|
/**
|
|
4184
|
-
* Suggested path segment — canonical,
|
|
4352
|
+
* Suggested path segment — canonical PascalCased per hyphen-part, hyphens preserved (e.g. "Apple-Pay")
|
|
4185
4353
|
*/
|
|
4186
4354
|
suggestedSegment: string;
|
|
4187
4355
|
/**
|
|
4188
4356
|
* Logo URL
|
|
4189
4357
|
*/
|
|
4190
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;
|
|
4191
4367
|
/**
|
|
4192
4368
|
* How this row matched: 'exact' > 'prefix' > 'substring'
|
|
4193
4369
|
*/
|
|
@@ -4533,10 +4709,6 @@ type AssetClassGroupDto = {
|
|
|
4533
4709
|
*/
|
|
4534
4710
|
convertedBalance?: string;
|
|
4535
4711
|
};
|
|
4536
|
-
/**
|
|
4537
|
-
* Asset class name
|
|
4538
|
-
*/
|
|
4539
|
-
type assetClass = 'LIQUIDITY' | 'EQUITY' | 'FIXED_INCOME' | 'PRECIOUS_METALS' | 'COMMODITY' | 'INSURANCE' | 'ALTERNATIVE_INVESTMENT' | 'PERSONAL_ASSETS' | 'LIABILITY' | 'REAL_ESTATE' | 'INDEX';
|
|
4540
4712
|
type AssetClassSummaryDto = {
|
|
4541
4713
|
/**
|
|
4542
4714
|
* Total number of accounts
|
|
@@ -4932,11 +5104,137 @@ type AnonymousLoginResponseDto = {
|
|
|
4932
5104
|
*/
|
|
4933
5105
|
authToken: string;
|
|
4934
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
|
+
};
|
|
4935
5233
|
type AccountControllerCreateData = {
|
|
4936
5234
|
/**
|
|
4937
5235
|
* Region code for tenant context
|
|
4938
5236
|
*/
|
|
4939
|
-
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';
|
|
4940
5238
|
requestBody: CreateAccountDto;
|
|
4941
5239
|
};
|
|
4942
5240
|
type AccountControllerCreateResponse = AccountResponseDto;
|
|
@@ -4956,7 +5254,7 @@ type AccountControllerFindAllData = {
|
|
|
4956
5254
|
/**
|
|
4957
5255
|
* Region code for tenant context
|
|
4958
5256
|
*/
|
|
4959
|
-
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';
|
|
4960
5258
|
/**
|
|
4961
5259
|
* Search term for account path
|
|
4962
5260
|
*/
|
|
@@ -4979,7 +5277,7 @@ type AccountControllerFindOneData = {
|
|
|
4979
5277
|
/**
|
|
4980
5278
|
* Region code for tenant context
|
|
4981
5279
|
*/
|
|
4982
|
-
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';
|
|
4983
5281
|
};
|
|
4984
5282
|
type AccountControllerFindOneResponse = AccountResponseDto;
|
|
4985
5283
|
type AccountControllerUpdateData = {
|
|
@@ -4990,7 +5288,7 @@ type AccountControllerUpdateData = {
|
|
|
4990
5288
|
/**
|
|
4991
5289
|
* Region code for tenant context
|
|
4992
5290
|
*/
|
|
4993
|
-
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';
|
|
4994
5292
|
requestBody: UpdateAccountDto;
|
|
4995
5293
|
};
|
|
4996
5294
|
type AccountControllerUpdateResponse = AccountResponseDto;
|
|
@@ -5002,7 +5300,7 @@ type AccountControllerDeleteData = {
|
|
|
5002
5300
|
/**
|
|
5003
5301
|
* Region code for tenant context
|
|
5004
5302
|
*/
|
|
5005
|
-
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';
|
|
5006
5304
|
};
|
|
5007
5305
|
type AccountControllerDeleteResponse = void;
|
|
5008
5306
|
type AccountControllerCloseData = {
|
|
@@ -5013,7 +5311,7 @@ type AccountControllerCloseData = {
|
|
|
5013
5311
|
/**
|
|
5014
5312
|
* Region code for tenant context
|
|
5015
5313
|
*/
|
|
5016
|
-
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';
|
|
5017
5315
|
requestBody: CloseAccountDto;
|
|
5018
5316
|
};
|
|
5019
5317
|
type AccountControllerCloseResponse = AccountResponseDto;
|
|
@@ -5025,7 +5323,7 @@ type AccountControllerReopenData = {
|
|
|
5025
5323
|
/**
|
|
5026
5324
|
* Region code for tenant context
|
|
5027
5325
|
*/
|
|
5028
|
-
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';
|
|
5029
5327
|
requestBody: ReopenAccountDto;
|
|
5030
5328
|
};
|
|
5031
5329
|
type AccountControllerReopenResponse = AccountResponseDto;
|
|
@@ -5037,7 +5335,7 @@ type AccountControllerAddOpeningBalanceData = {
|
|
|
5037
5335
|
/**
|
|
5038
5336
|
* Region code for tenant context
|
|
5039
5337
|
*/
|
|
5040
|
-
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';
|
|
5041
5339
|
requestBody: CreateOpeningBalanceDto;
|
|
5042
5340
|
};
|
|
5043
5341
|
type AccountControllerAddOpeningBalanceResponse = OpeningBalanceResultDto;
|
|
@@ -5045,7 +5343,7 @@ type AccountStandardsControllerGetTemplatesData = {
|
|
|
5045
5343
|
/**
|
|
5046
5344
|
* Region code (cn, us, de)
|
|
5047
5345
|
*/
|
|
5048
|
-
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';
|
|
5049
5347
|
/**
|
|
5050
5348
|
* Search term for path or description
|
|
5051
5349
|
*/
|
|
@@ -5064,21 +5362,21 @@ type AccountStandardsControllerGetTemplateMetadataData = {
|
|
|
5064
5362
|
/**
|
|
5065
5363
|
* Region code for tenant context
|
|
5066
5364
|
*/
|
|
5067
|
-
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';
|
|
5068
5366
|
};
|
|
5069
5367
|
type AccountStandardsControllerGetTemplateMetadataResponse = TemplateMetadataResponseDto;
|
|
5070
5368
|
type AccountStandardsControllerGetRegionsData = {
|
|
5071
5369
|
/**
|
|
5072
5370
|
* Region code for tenant context
|
|
5073
5371
|
*/
|
|
5074
|
-
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';
|
|
5075
5373
|
};
|
|
5076
5374
|
type AccountStandardsControllerGetRegionsResponse = RegionsMetadataResponseDto;
|
|
5077
5375
|
type TransactionControllerCreateData = {
|
|
5078
5376
|
/**
|
|
5079
5377
|
* Region code for tenant context
|
|
5080
5378
|
*/
|
|
5081
|
-
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';
|
|
5082
5380
|
/**
|
|
5083
5381
|
* Transaction data with postings
|
|
5084
5382
|
*/
|
|
@@ -5113,7 +5411,7 @@ type TransactionControllerListData = {
|
|
|
5113
5411
|
/**
|
|
5114
5412
|
* Region code for tenant context
|
|
5115
5413
|
*/
|
|
5116
|
-
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';
|
|
5117
5415
|
/**
|
|
5118
5416
|
* Search in narration and payee fields (max 200 chars)
|
|
5119
5417
|
*/
|
|
@@ -5128,7 +5426,7 @@ type TransactionControllerCreateBatchData = {
|
|
|
5128
5426
|
/**
|
|
5129
5427
|
* Region code for tenant context
|
|
5130
5428
|
*/
|
|
5131
|
-
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';
|
|
5132
5430
|
requestBody: BatchCreateTransactionDto;
|
|
5133
5431
|
};
|
|
5134
5432
|
type TransactionControllerCreateBatchResponse = BatchTransactionResponseDto;
|
|
@@ -5140,7 +5438,7 @@ type TransactionControllerCorrectData = {
|
|
|
5140
5438
|
/**
|
|
5141
5439
|
* Region code for tenant context
|
|
5142
5440
|
*/
|
|
5143
|
-
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';
|
|
5144
5442
|
requestBody: CorrectTransactionDto;
|
|
5145
5443
|
};
|
|
5146
5444
|
type TransactionControllerCorrectResponse = TransactionDetailDto;
|
|
@@ -5156,7 +5454,7 @@ type TransactionControllerSuggestTagsData = {
|
|
|
5156
5454
|
/**
|
|
5157
5455
|
* Region code for tenant context
|
|
5158
5456
|
*/
|
|
5159
|
-
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';
|
|
5160
5458
|
/**
|
|
5161
5459
|
* usage (default) or name
|
|
5162
5460
|
*/
|
|
@@ -5171,7 +5469,7 @@ type TransactionControllerGetDetailData = {
|
|
|
5171
5469
|
/**
|
|
5172
5470
|
* Region code for tenant context
|
|
5173
5471
|
*/
|
|
5174
|
-
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';
|
|
5175
5473
|
};
|
|
5176
5474
|
type TransactionControllerGetDetailResponse = TransactionDetailDto;
|
|
5177
5475
|
type TransactionControllerUpdateData = {
|
|
@@ -5182,7 +5480,7 @@ type TransactionControllerUpdateData = {
|
|
|
5182
5480
|
/**
|
|
5183
5481
|
* Region code for tenant context
|
|
5184
5482
|
*/
|
|
5185
|
-
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';
|
|
5186
5484
|
/**
|
|
5187
5485
|
* Fields to update (all optional)
|
|
5188
5486
|
*/
|
|
@@ -5197,7 +5495,7 @@ type TransactionControllerDeleteData = {
|
|
|
5197
5495
|
/**
|
|
5198
5496
|
* Region code for tenant context
|
|
5199
5497
|
*/
|
|
5200
|
-
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';
|
|
5201
5499
|
};
|
|
5202
5500
|
type TransactionControllerDeleteResponse = void;
|
|
5203
5501
|
type BalanceControllerGetBalanceData = {
|
|
@@ -5216,14 +5514,14 @@ type BalanceControllerGetBalanceData = {
|
|
|
5216
5514
|
/**
|
|
5217
5515
|
* Region code for tenant context
|
|
5218
5516
|
*/
|
|
5219
|
-
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';
|
|
5220
5518
|
};
|
|
5221
5519
|
type BalanceControllerGetBalanceResponse = BalanceResponseDto;
|
|
5222
5520
|
type BalanceControllerGetMultiCurrencyBalanceData = {
|
|
5223
5521
|
/**
|
|
5224
5522
|
* Region code for tenant context
|
|
5225
5523
|
*/
|
|
5226
|
-
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';
|
|
5227
5525
|
};
|
|
5228
5526
|
type BalanceControllerGetMultiCurrencyBalanceResponse = MultiCurrencyBalanceResponseDto;
|
|
5229
5527
|
type ReviewControllerFindAllData = {
|
|
@@ -5242,7 +5540,7 @@ type ReviewControllerFindAllData = {
|
|
|
5242
5540
|
/**
|
|
5243
5541
|
* Region code for tenant context
|
|
5244
5542
|
*/
|
|
5245
|
-
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';
|
|
5246
5544
|
/**
|
|
5247
5545
|
* Sort order
|
|
5248
5546
|
*/
|
|
@@ -5257,7 +5555,7 @@ type ReviewControllerGetStatsData = {
|
|
|
5257
5555
|
/**
|
|
5258
5556
|
* Region code for tenant context
|
|
5259
5557
|
*/
|
|
5260
|
-
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';
|
|
5261
5559
|
};
|
|
5262
5560
|
type ReviewControllerGetStatsResponse = ReviewStatsDto;
|
|
5263
5561
|
type ReviewControllerFindOneData = {
|
|
@@ -5268,7 +5566,7 @@ type ReviewControllerFindOneData = {
|
|
|
5268
5566
|
/**
|
|
5269
5567
|
* Region code for tenant context
|
|
5270
5568
|
*/
|
|
5271
|
-
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';
|
|
5272
5570
|
};
|
|
5273
5571
|
type ReviewControllerFindOneResponse = ReviewDetailDto;
|
|
5274
5572
|
type ReviewControllerResolveData = {
|
|
@@ -5279,7 +5577,7 @@ type ReviewControllerResolveData = {
|
|
|
5279
5577
|
/**
|
|
5280
5578
|
* Region code for tenant context
|
|
5281
5579
|
*/
|
|
5282
|
-
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';
|
|
5283
5581
|
requestBody: ResolveReviewDto;
|
|
5284
5582
|
};
|
|
5285
5583
|
type ReviewControllerResolveResponse = ResolveResultDto;
|
|
@@ -5291,14 +5589,14 @@ type ReviewControllerUndoData = {
|
|
|
5291
5589
|
/**
|
|
5292
5590
|
* Region code for tenant context
|
|
5293
5591
|
*/
|
|
5294
|
-
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';
|
|
5295
5593
|
};
|
|
5296
5594
|
type ReviewControllerUndoResponse = UndoResultDto;
|
|
5297
5595
|
type ReviewControllerBatchResolveData = {
|
|
5298
5596
|
/**
|
|
5299
5597
|
* Region code for tenant context
|
|
5300
5598
|
*/
|
|
5301
|
-
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';
|
|
5302
5600
|
/**
|
|
5303
5601
|
* Batch resolution request containing review IDs and action
|
|
5304
5602
|
*/
|
|
@@ -5443,7 +5741,7 @@ type CommodityControllerCreateData = {
|
|
|
5443
5741
|
/**
|
|
5444
5742
|
* Region code for tenant context
|
|
5445
5743
|
*/
|
|
5446
|
-
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';
|
|
5447
5745
|
requestBody: CreateCommodityDto;
|
|
5448
5746
|
};
|
|
5449
5747
|
type CommodityControllerCreateResponse = CommodityResponseDto;
|
|
@@ -5451,7 +5749,7 @@ type CommodityControllerFindAllData = {
|
|
|
5451
5749
|
/**
|
|
5452
5750
|
* Region code for tenant context
|
|
5453
5751
|
*/
|
|
5454
|
-
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';
|
|
5455
5753
|
/**
|
|
5456
5754
|
* Search term for symbol or metadata fields (partial match). Searches symbol and metadata.name.
|
|
5457
5755
|
*/
|
|
@@ -5466,7 +5764,7 @@ type CommodityControllerFindOneData = {
|
|
|
5466
5764
|
/**
|
|
5467
5765
|
* Region code for tenant context
|
|
5468
5766
|
*/
|
|
5469
|
-
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';
|
|
5470
5768
|
/**
|
|
5471
5769
|
* Commodity symbol
|
|
5472
5770
|
*/
|
|
@@ -5477,7 +5775,7 @@ type CommodityControllerUpdateData = {
|
|
|
5477
5775
|
/**
|
|
5478
5776
|
* Region code for tenant context
|
|
5479
5777
|
*/
|
|
5480
|
-
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';
|
|
5481
5779
|
requestBody: UpdateCommodityDto;
|
|
5482
5780
|
/**
|
|
5483
5781
|
* Commodity symbol
|
|
@@ -5489,7 +5787,7 @@ type CommodityControllerDeleteData = {
|
|
|
5489
5787
|
/**
|
|
5490
5788
|
* Region code for tenant context
|
|
5491
5789
|
*/
|
|
5492
|
-
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';
|
|
5493
5791
|
/**
|
|
5494
5792
|
* Commodity symbol
|
|
5495
5793
|
*/
|
|
@@ -5500,7 +5798,7 @@ type CommodityControllerGetOrCreateData = {
|
|
|
5500
5798
|
/**
|
|
5501
5799
|
* Region code for tenant context
|
|
5502
5800
|
*/
|
|
5503
|
-
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';
|
|
5504
5802
|
/**
|
|
5505
5803
|
* Commodity symbol
|
|
5506
5804
|
*/
|
|
@@ -5511,14 +5809,14 @@ type CommodityControllerBulkCreateData = {
|
|
|
5511
5809
|
/**
|
|
5512
5810
|
* Region code for tenant context
|
|
5513
5811
|
*/
|
|
5514
|
-
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';
|
|
5515
5813
|
};
|
|
5516
5814
|
type CommodityControllerBulkCreateResponse = Array<CommodityResponseDto>;
|
|
5517
5815
|
type PriceControllerCreateData = {
|
|
5518
5816
|
/**
|
|
5519
5817
|
* Region code for tenant context
|
|
5520
5818
|
*/
|
|
5521
|
-
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';
|
|
5522
5820
|
requestBody: CreateBeanPriceDto;
|
|
5523
5821
|
};
|
|
5524
5822
|
type PriceControllerCreateResponse = PriceResponseDto;
|
|
@@ -5550,7 +5848,7 @@ type PriceControllerFindAllData = {
|
|
|
5550
5848
|
/**
|
|
5551
5849
|
* Region code for tenant context
|
|
5552
5850
|
*/
|
|
5553
|
-
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';
|
|
5554
5852
|
/**
|
|
5555
5853
|
* Search term for currency or quoteCurrency (case-insensitive partial match)
|
|
5556
5854
|
*/
|
|
@@ -5565,7 +5863,7 @@ type PriceControllerFindOneData = {
|
|
|
5565
5863
|
/**
|
|
5566
5864
|
* Region code for tenant context
|
|
5567
5865
|
*/
|
|
5568
|
-
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';
|
|
5569
5867
|
};
|
|
5570
5868
|
type PriceControllerFindOneResponse = PriceResponseDto;
|
|
5571
5869
|
type PriceControllerUpdateData = {
|
|
@@ -5576,7 +5874,7 @@ type PriceControllerUpdateData = {
|
|
|
5576
5874
|
/**
|
|
5577
5875
|
* Region code for tenant context
|
|
5578
5876
|
*/
|
|
5579
|
-
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';
|
|
5580
5878
|
requestBody: UpdateBeanPriceDto;
|
|
5581
5879
|
};
|
|
5582
5880
|
type PriceControllerUpdateResponse = PriceResponseDto;
|
|
@@ -5588,14 +5886,14 @@ type PriceControllerDeleteData = {
|
|
|
5588
5886
|
/**
|
|
5589
5887
|
* Region code for tenant context
|
|
5590
5888
|
*/
|
|
5591
|
-
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';
|
|
5592
5890
|
};
|
|
5593
5891
|
type PriceControllerDeleteResponse = void;
|
|
5594
5892
|
type PriceControllerBulkCreateData = {
|
|
5595
5893
|
/**
|
|
5596
5894
|
* Region code for tenant context
|
|
5597
5895
|
*/
|
|
5598
|
-
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';
|
|
5599
5897
|
requestBody: Array<string>;
|
|
5600
5898
|
};
|
|
5601
5899
|
type PriceControllerBulkCreateResponse = Array<PriceResponseDto>;
|
|
@@ -5603,7 +5901,7 @@ type RecurringRuleControllerCreateData = {
|
|
|
5603
5901
|
/**
|
|
5604
5902
|
* Region code for tenant context
|
|
5605
5903
|
*/
|
|
5606
|
-
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';
|
|
5607
5905
|
requestBody: CreateRecurringRuleDto;
|
|
5608
5906
|
};
|
|
5609
5907
|
type RecurringRuleControllerCreateResponse = RecurringRuleResponseDto;
|
|
@@ -5623,14 +5921,14 @@ type RecurringRuleControllerFindAllData = {
|
|
|
5623
5921
|
/**
|
|
5624
5922
|
* Region code for tenant context
|
|
5625
5923
|
*/
|
|
5626
|
-
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';
|
|
5627
5925
|
};
|
|
5628
5926
|
type RecurringRuleControllerFindAllResponse = Array<RecurringRuleResponseDto>;
|
|
5629
5927
|
type RecurringRuleControllerCreateFromTransactionData = {
|
|
5630
5928
|
/**
|
|
5631
5929
|
* Region code for tenant context
|
|
5632
5930
|
*/
|
|
5633
|
-
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';
|
|
5634
5932
|
requestBody: CreateRuleFromTransactionDto;
|
|
5635
5933
|
/**
|
|
5636
5934
|
* Source transaction ID
|
|
@@ -5646,7 +5944,7 @@ type RecurringRuleControllerFindOneData = {
|
|
|
5646
5944
|
/**
|
|
5647
5945
|
* Region code for tenant context
|
|
5648
5946
|
*/
|
|
5649
|
-
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';
|
|
5650
5948
|
};
|
|
5651
5949
|
type RecurringRuleControllerFindOneResponse = RecurringRuleResponseDto;
|
|
5652
5950
|
type RecurringRuleControllerUpdateData = {
|
|
@@ -5657,7 +5955,7 @@ type RecurringRuleControllerUpdateData = {
|
|
|
5657
5955
|
/**
|
|
5658
5956
|
* Region code for tenant context
|
|
5659
5957
|
*/
|
|
5660
|
-
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';
|
|
5661
5959
|
requestBody: UpdateRecurringRuleDto;
|
|
5662
5960
|
};
|
|
5663
5961
|
type RecurringRuleControllerUpdateResponse = RecurringRuleResponseDto;
|
|
@@ -5669,7 +5967,7 @@ type RecurringRuleControllerDeleteData = {
|
|
|
5669
5967
|
/**
|
|
5670
5968
|
* Region code for tenant context
|
|
5671
5969
|
*/
|
|
5672
|
-
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';
|
|
5673
5971
|
};
|
|
5674
5972
|
type RecurringRuleControllerDeleteResponse = void;
|
|
5675
5973
|
type RecurringRuleControllerGetWithStatsData = {
|
|
@@ -5680,7 +5978,7 @@ type RecurringRuleControllerGetWithStatsData = {
|
|
|
5680
5978
|
/**
|
|
5681
5979
|
* Region code for tenant context
|
|
5682
5980
|
*/
|
|
5683
|
-
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';
|
|
5684
5982
|
};
|
|
5685
5983
|
type RecurringRuleControllerGetWithStatsResponse = RecurringRuleWithStatsResponseDto;
|
|
5686
5984
|
type ExpectedTransactionControllerFindAllData = {
|
|
@@ -5691,7 +5989,7 @@ type ExpectedTransactionControllerFindAllData = {
|
|
|
5691
5989
|
/**
|
|
5692
5990
|
* Region code for tenant context
|
|
5693
5991
|
*/
|
|
5694
|
-
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';
|
|
5695
5993
|
/**
|
|
5696
5994
|
* Filter by recurring rule ID
|
|
5697
5995
|
*/
|
|
@@ -5710,7 +6008,7 @@ type ExpectedTransactionControllerFindOverdueData = {
|
|
|
5710
6008
|
/**
|
|
5711
6009
|
* Region code for tenant context
|
|
5712
6010
|
*/
|
|
5713
|
-
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';
|
|
5714
6012
|
};
|
|
5715
6013
|
type ExpectedTransactionControllerFindOverdueResponse = ExpectedTransactionListResponseDto;
|
|
5716
6014
|
type ExpectedTransactionControllerFindOneData = {
|
|
@@ -5721,7 +6019,7 @@ type ExpectedTransactionControllerFindOneData = {
|
|
|
5721
6019
|
/**
|
|
5722
6020
|
* Region code for tenant context
|
|
5723
6021
|
*/
|
|
5724
|
-
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';
|
|
5725
6023
|
};
|
|
5726
6024
|
type ExpectedTransactionControllerFindOneResponse = ExpectedTransactionResponseDto;
|
|
5727
6025
|
type ExpectedTransactionControllerSkipData = {
|
|
@@ -5732,7 +6030,7 @@ type ExpectedTransactionControllerSkipData = {
|
|
|
5732
6030
|
/**
|
|
5733
6031
|
* Region code for tenant context
|
|
5734
6032
|
*/
|
|
5735
|
-
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';
|
|
5736
6034
|
};
|
|
5737
6035
|
type ExpectedTransactionControllerSkipResponse = ExpectedTransactionResponseDto;
|
|
5738
6036
|
type ExpectedTransactionControllerUndoSkipData = {
|
|
@@ -5743,7 +6041,7 @@ type ExpectedTransactionControllerUndoSkipData = {
|
|
|
5743
6041
|
/**
|
|
5744
6042
|
* Region code for tenant context
|
|
5745
6043
|
*/
|
|
5746
|
-
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';
|
|
5747
6045
|
};
|
|
5748
6046
|
type ExpectedTransactionControllerUndoSkipResponse = ExpectedTransactionResponseDto;
|
|
5749
6047
|
type ExpectedTransactionControllerConfirmMatchData = {
|
|
@@ -5754,7 +6052,7 @@ type ExpectedTransactionControllerConfirmMatchData = {
|
|
|
5754
6052
|
/**
|
|
5755
6053
|
* Region code for tenant context
|
|
5756
6054
|
*/
|
|
5757
|
-
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';
|
|
5758
6056
|
requestBody: ConfirmMatchDto;
|
|
5759
6057
|
};
|
|
5760
6058
|
type ExpectedTransactionControllerConfirmMatchResponse = unknown;
|
|
@@ -5766,7 +6064,7 @@ type ExpectedTransactionControllerUnmatchData = {
|
|
|
5766
6064
|
/**
|
|
5767
6065
|
* Region code for tenant context
|
|
5768
6066
|
*/
|
|
5769
|
-
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';
|
|
5770
6068
|
};
|
|
5771
6069
|
type ExpectedTransactionControllerUnmatchResponse = unknown;
|
|
5772
6070
|
type ExpectedTransactionControllerEnterNowData = {
|
|
@@ -5777,7 +6075,7 @@ type ExpectedTransactionControllerEnterNowData = {
|
|
|
5777
6075
|
/**
|
|
5778
6076
|
* Region code for tenant context
|
|
5779
6077
|
*/
|
|
5780
|
-
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';
|
|
5781
6079
|
requestBody: EnterNowDto;
|
|
5782
6080
|
};
|
|
5783
6081
|
type ExpectedTransactionControllerEnterNowResponse = unknown;
|
|
@@ -5789,7 +6087,7 @@ type ForecastControllerGetForecastData = {
|
|
|
5789
6087
|
/**
|
|
5790
6088
|
* Region code for tenant context
|
|
5791
6089
|
*/
|
|
5792
|
-
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';
|
|
5793
6091
|
};
|
|
5794
6092
|
type ForecastControllerGetForecastResponse = ForecastResponseDto;
|
|
5795
6093
|
type ReportingControllerGetPortfolioTrendsData = {
|
|
@@ -5804,7 +6102,7 @@ type ReportingControllerGetPortfolioTrendsData = {
|
|
|
5804
6102
|
/**
|
|
5805
6103
|
* Region code for tenant context
|
|
5806
6104
|
*/
|
|
5807
|
-
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';
|
|
5808
6106
|
};
|
|
5809
6107
|
type ReportingControllerGetPortfolioTrendsResponse = PortfolioTrendsResponseDto;
|
|
5810
6108
|
type ReportingControllerGetCashFlowTrendsData = {
|
|
@@ -5819,14 +6117,14 @@ type ReportingControllerGetCashFlowTrendsData = {
|
|
|
5819
6117
|
/**
|
|
5820
6118
|
* Region code for tenant context
|
|
5821
6119
|
*/
|
|
5822
|
-
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';
|
|
5823
6121
|
};
|
|
5824
6122
|
type ReportingControllerGetCashFlowTrendsResponse = CashFlowTrendsResponseDto;
|
|
5825
6123
|
type ReportingControllerGenerateSnapshotData = {
|
|
5826
6124
|
/**
|
|
5827
6125
|
* Region code for tenant context
|
|
5828
6126
|
*/
|
|
5829
|
-
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';
|
|
5830
6128
|
/**
|
|
5831
6129
|
* Optional date (defaults to today)
|
|
5832
6130
|
*/
|
|
@@ -5837,7 +6135,7 @@ type ReportingControllerBackfillSnapshotsData = {
|
|
|
5837
6135
|
/**
|
|
5838
6136
|
* Region code for tenant context
|
|
5839
6137
|
*/
|
|
5840
|
-
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';
|
|
5841
6139
|
requestBody: BackfillSnapshotsBody;
|
|
5842
6140
|
};
|
|
5843
6141
|
type ReportingControllerBackfillSnapshotsResponse = BackfillSnapshotsResponse;
|
|
@@ -5848,7 +6146,7 @@ type UserControllerDeleteOwnUserResponse = void;
|
|
|
5848
6146
|
type UserControllerGetUserData = {
|
|
5849
6147
|
acceptLanguage: string;
|
|
5850
6148
|
};
|
|
5851
|
-
type UserControllerGetUserResponse =
|
|
6149
|
+
type UserControllerGetUserResponse = UserResponseDto;
|
|
5852
6150
|
type UserControllerSignupUserData = {
|
|
5853
6151
|
requestBody: SignupDto;
|
|
5854
6152
|
};
|
|
@@ -5910,7 +6208,7 @@ type TransactionRuleControllerCreateData = {
|
|
|
5910
6208
|
/**
|
|
5911
6209
|
* Region code for tenant context
|
|
5912
6210
|
*/
|
|
5913
|
-
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';
|
|
5914
6212
|
requestBody: CreateTransactionRuleDto;
|
|
5915
6213
|
};
|
|
5916
6214
|
type TransactionRuleControllerCreateResponse = TransactionRuleResponseDto;
|
|
@@ -5938,14 +6236,14 @@ type TransactionRuleControllerListData = {
|
|
|
5938
6236
|
/**
|
|
5939
6237
|
* Region code for tenant context
|
|
5940
6238
|
*/
|
|
5941
|
-
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';
|
|
5942
6240
|
};
|
|
5943
6241
|
type TransactionRuleControllerListResponse = TransactionRuleListResponseDto;
|
|
5944
6242
|
type TransactionRuleControllerValidateData = {
|
|
5945
6243
|
/**
|
|
5946
6244
|
* Region code for tenant context
|
|
5947
6245
|
*/
|
|
5948
|
-
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';
|
|
5949
6247
|
requestBody: ValidateRuleDto;
|
|
5950
6248
|
};
|
|
5951
6249
|
type TransactionRuleControllerValidateResponse = ValidateRuleResponseDto;
|
|
@@ -5953,7 +6251,7 @@ type TransactionRuleControllerBulkCreateData = {
|
|
|
5953
6251
|
/**
|
|
5954
6252
|
* Region code for tenant context
|
|
5955
6253
|
*/
|
|
5956
|
-
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';
|
|
5957
6255
|
requestBody: BulkCreateRulesDto;
|
|
5958
6256
|
};
|
|
5959
6257
|
type TransactionRuleControllerBulkCreateResponse = BulkCreateRulesResponseDto;
|
|
@@ -5965,7 +6263,7 @@ type TransactionRuleControllerExportData = {
|
|
|
5965
6263
|
/**
|
|
5966
6264
|
* Region code for tenant context
|
|
5967
6265
|
*/
|
|
5968
|
-
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';
|
|
5969
6267
|
};
|
|
5970
6268
|
type TransactionRuleControllerExportResponse = ExportRulesResponseDto;
|
|
5971
6269
|
type TransactionRuleControllerGetStatisticsData = {
|
|
@@ -5976,14 +6274,14 @@ type TransactionRuleControllerGetStatisticsData = {
|
|
|
5976
6274
|
/**
|
|
5977
6275
|
* Region code for tenant context
|
|
5978
6276
|
*/
|
|
5979
|
-
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';
|
|
5980
6278
|
};
|
|
5981
6279
|
type TransactionRuleControllerGetStatisticsResponse = RuleStatisticsResponseDto;
|
|
5982
6280
|
type TransactionRuleControllerGetDetailData = {
|
|
5983
6281
|
/**
|
|
5984
6282
|
* Region code for tenant context
|
|
5985
6283
|
*/
|
|
5986
|
-
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';
|
|
5987
6285
|
/**
|
|
5988
6286
|
* Rule ID
|
|
5989
6287
|
*/
|
|
@@ -5994,7 +6292,7 @@ type TransactionRuleControllerUpdateData = {
|
|
|
5994
6292
|
/**
|
|
5995
6293
|
* Region code for tenant context
|
|
5996
6294
|
*/
|
|
5997
|
-
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';
|
|
5998
6296
|
requestBody: UpdateTransactionRuleDto;
|
|
5999
6297
|
/**
|
|
6000
6298
|
* Rule ID to update
|
|
@@ -6006,7 +6304,7 @@ type TransactionRuleControllerDeleteData = {
|
|
|
6006
6304
|
/**
|
|
6007
6305
|
* Region code for tenant context
|
|
6008
6306
|
*/
|
|
6009
|
-
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';
|
|
6010
6308
|
/**
|
|
6011
6309
|
* Rule ID to delete
|
|
6012
6310
|
*/
|
|
@@ -6017,7 +6315,7 @@ type TransactionRuleControllerTestData = {
|
|
|
6017
6315
|
/**
|
|
6018
6316
|
* Region code for tenant context
|
|
6019
6317
|
*/
|
|
6020
|
-
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';
|
|
6021
6319
|
requestBody: TestRuleDto;
|
|
6022
6320
|
/**
|
|
6023
6321
|
* Rule ID to test
|
|
@@ -6025,11 +6323,26 @@ type TransactionRuleControllerTestData = {
|
|
|
6025
6323
|
ruleId: string;
|
|
6026
6324
|
};
|
|
6027
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;
|
|
6028
6341
|
type EventControllerCreateData = {
|
|
6029
6342
|
/**
|
|
6030
6343
|
* Region code for tenant context (decorative for life events)
|
|
6031
6344
|
*/
|
|
6032
|
-
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';
|
|
6033
6346
|
requestBody: CreateBeanEventDto;
|
|
6034
6347
|
};
|
|
6035
6348
|
type EventControllerCreateResponse = EventResponseDto;
|
|
@@ -6053,7 +6366,7 @@ type EventControllerFindAllData = {
|
|
|
6053
6366
|
/**
|
|
6054
6367
|
* Region code for tenant context (decorative for life events)
|
|
6055
6368
|
*/
|
|
6056
|
-
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';
|
|
6057
6370
|
/**
|
|
6058
6371
|
* Filter life events to this date (ISO 8601 format)
|
|
6059
6372
|
*/
|
|
@@ -6072,7 +6385,7 @@ type EventControllerFindOneData = {
|
|
|
6072
6385
|
/**
|
|
6073
6386
|
* Region code for tenant context (decorative for life events)
|
|
6074
6387
|
*/
|
|
6075
|
-
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';
|
|
6076
6389
|
};
|
|
6077
6390
|
type EventControllerFindOneResponse = EventResponseDto;
|
|
6078
6391
|
type EventControllerUpdateData = {
|
|
@@ -6083,7 +6396,7 @@ type EventControllerUpdateData = {
|
|
|
6083
6396
|
/**
|
|
6084
6397
|
* Region code for tenant context (decorative for life events)
|
|
6085
6398
|
*/
|
|
6086
|
-
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';
|
|
6087
6400
|
requestBody: UpdateBeanEventDto;
|
|
6088
6401
|
};
|
|
6089
6402
|
type EventControllerUpdateResponse = EventResponseDto;
|
|
@@ -6095,7 +6408,7 @@ type EventControllerDeleteData = {
|
|
|
6095
6408
|
/**
|
|
6096
6409
|
* Region code for tenant context (decorative for life events)
|
|
6097
6410
|
*/
|
|
6098
|
-
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';
|
|
6099
6412
|
};
|
|
6100
6413
|
type EventControllerDeleteResponse = void;
|
|
6101
6414
|
type EventControllerGetSliceData = {
|
|
@@ -6108,14 +6421,14 @@ type EventControllerGetSliceData = {
|
|
|
6108
6421
|
/**
|
|
6109
6422
|
* Region code for tenant context (decorative for life events)
|
|
6110
6423
|
*/
|
|
6111
|
-
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';
|
|
6112
6425
|
};
|
|
6113
6426
|
type EventControllerGetSliceResponse = unknown;
|
|
6114
6427
|
type OnboardingControllerBootstrapData = {
|
|
6115
6428
|
/**
|
|
6116
6429
|
* Region code for tenant context
|
|
6117
6430
|
*/
|
|
6118
|
-
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';
|
|
6119
6432
|
requestBody: OnboardingDto;
|
|
6120
6433
|
};
|
|
6121
6434
|
type OnboardingControllerBootstrapResponse = unknown;
|
|
@@ -6123,7 +6436,7 @@ type ReconciliationControllerComputeData = {
|
|
|
6123
6436
|
/**
|
|
6124
6437
|
* Region code for tenant context (decorative for reconciliation)
|
|
6125
6438
|
*/
|
|
6126
|
-
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';
|
|
6127
6440
|
requestBody: ComputeReconciliationDto;
|
|
6128
6441
|
};
|
|
6129
6442
|
type ReconciliationControllerComputeResponse = ReconciliationComputeResultDto;
|
|
@@ -6131,7 +6444,7 @@ type ReconciliationControllerAssertData = {
|
|
|
6131
6444
|
/**
|
|
6132
6445
|
* Region code for tenant context (decorative for reconciliation)
|
|
6133
6446
|
*/
|
|
6134
|
-
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';
|
|
6135
6448
|
requestBody: AssertReconciliationDto;
|
|
6136
6449
|
};
|
|
6137
6450
|
type ReconciliationControllerAssertResponse = ReconciliationRecordDto;
|
|
@@ -6139,7 +6452,7 @@ type ReconciliationControllerPadData = {
|
|
|
6139
6452
|
/**
|
|
6140
6453
|
* Region code for tenant context (decorative for reconciliation)
|
|
6141
6454
|
*/
|
|
6142
|
-
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';
|
|
6143
6456
|
requestBody: PadReconciliationDto;
|
|
6144
6457
|
};
|
|
6145
6458
|
type ReconciliationControllerPadResponse = PadResultDto;
|
|
@@ -6151,7 +6464,7 @@ type ReconciliationControllerHistoryData = {
|
|
|
6151
6464
|
/**
|
|
6152
6465
|
* Region code for tenant context (decorative for reconciliation)
|
|
6153
6466
|
*/
|
|
6154
|
-
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';
|
|
6155
6468
|
};
|
|
6156
6469
|
type ReconciliationControllerHistoryResponse = Array<ReconciliationRecordDto>;
|
|
6157
6470
|
type ExportControllerExportBeancountResponse = unknown;
|
|
@@ -6163,7 +6476,7 @@ type FileImportControllerImportFileData = {
|
|
|
6163
6476
|
/**
|
|
6164
6477
|
* Region code for tenant context
|
|
6165
6478
|
*/
|
|
6166
|
-
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';
|
|
6167
6480
|
};
|
|
6168
6481
|
type FileImportControllerImportFileResponse = ImportResultDto;
|
|
6169
6482
|
type FileImportControllerIdentifyFileData = {
|
|
@@ -6174,7 +6487,7 @@ type FileImportControllerIdentifyFileData = {
|
|
|
6174
6487
|
/**
|
|
6175
6488
|
* Region code for tenant context
|
|
6176
6489
|
*/
|
|
6177
|
-
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';
|
|
6178
6491
|
};
|
|
6179
6492
|
type FileImportControllerIdentifyFileResponse = IdentifyResultDto;
|
|
6180
6493
|
type FileImportControllerImportBeancountData = {
|
|
@@ -6185,7 +6498,7 @@ type FileImportControllerImportBeancountData = {
|
|
|
6185
6498
|
/**
|
|
6186
6499
|
* Region code for tenant context
|
|
6187
6500
|
*/
|
|
6188
|
-
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';
|
|
6189
6502
|
};
|
|
6190
6503
|
type FileImportControllerImportBeancountResponse = {
|
|
6191
6504
|
imported?: number;
|
|
@@ -6204,7 +6517,7 @@ type ImporterConfigControllerGetConfigData = {
|
|
|
6204
6517
|
/**
|
|
6205
6518
|
* Region code for tenant context
|
|
6206
6519
|
*/
|
|
6207
|
-
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';
|
|
6208
6521
|
};
|
|
6209
6522
|
type ImporterConfigControllerGetConfigResponse = ImporterConfigDto;
|
|
6210
6523
|
type ImporterConfigControllerUpdateConfigData = {
|
|
@@ -6215,7 +6528,7 @@ type ImporterConfigControllerUpdateConfigData = {
|
|
|
6215
6528
|
/**
|
|
6216
6529
|
* Region code for tenant context
|
|
6217
6530
|
*/
|
|
6218
|
-
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';
|
|
6219
6532
|
/**
|
|
6220
6533
|
* Partial configuration update. Only provided fields will be updated.
|
|
6221
6534
|
*/
|
|
@@ -6230,7 +6543,7 @@ type ImporterConfigControllerResetConfigData = {
|
|
|
6230
6543
|
/**
|
|
6231
6544
|
* Region code for tenant context
|
|
6232
6545
|
*/
|
|
6233
|
-
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';
|
|
6234
6547
|
};
|
|
6235
6548
|
type ImporterConfigControllerResetConfigResponse = ImporterConfigDto;
|
|
6236
6549
|
type ProviderSyncControllerSyncData = {
|
|
@@ -6241,7 +6554,7 @@ type ProviderSyncControllerSyncData = {
|
|
|
6241
6554
|
/**
|
|
6242
6555
|
* Region code for tenant context
|
|
6243
6556
|
*/
|
|
6244
|
-
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';
|
|
6245
6558
|
requestBody: ProviderSyncDto;
|
|
6246
6559
|
};
|
|
6247
6560
|
type ProviderSyncControllerSyncResponse = ProviderSyncResponseDto;
|
|
@@ -6249,7 +6562,7 @@ type ProviderSyncControllerGetSupportedProvidersData = {
|
|
|
6249
6562
|
/**
|
|
6250
6563
|
* Region code for tenant context
|
|
6251
6564
|
*/
|
|
6252
|
-
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';
|
|
6253
6566
|
};
|
|
6254
6567
|
type ProviderSyncControllerGetSupportedProvidersResponse = SupportedProvidersResponseDto;
|
|
6255
6568
|
type ProviderSyncControllerIsProviderSupportedData = {
|
|
@@ -6260,14 +6573,14 @@ type ProviderSyncControllerIsProviderSupportedData = {
|
|
|
6260
6573
|
/**
|
|
6261
6574
|
* Region code for tenant context
|
|
6262
6575
|
*/
|
|
6263
|
-
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';
|
|
6264
6577
|
};
|
|
6265
6578
|
type ProviderSyncControllerIsProviderSupportedResponse = unknown;
|
|
6266
6579
|
type ExternalAccountLinkControllerCreateData = {
|
|
6267
6580
|
/**
|
|
6268
6581
|
* Region code for tenant context
|
|
6269
6582
|
*/
|
|
6270
|
-
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';
|
|
6271
6584
|
requestBody: CreateExternalAccountLinkDto;
|
|
6272
6585
|
};
|
|
6273
6586
|
type ExternalAccountLinkControllerCreateResponse = ExternalAccountLinkResponseDto;
|
|
@@ -6276,7 +6589,7 @@ type ExternalAccountLinkControllerFindAllData = {
|
|
|
6276
6589
|
/**
|
|
6277
6590
|
* Region code for tenant context
|
|
6278
6591
|
*/
|
|
6279
|
-
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';
|
|
6280
6593
|
};
|
|
6281
6594
|
type ExternalAccountLinkControllerFindAllResponse = ExternalAccountLinkListResponseDto;
|
|
6282
6595
|
type ExternalAccountLinkControllerFindOneData = {
|
|
@@ -6284,7 +6597,7 @@ type ExternalAccountLinkControllerFindOneData = {
|
|
|
6284
6597
|
/**
|
|
6285
6598
|
* Region code for tenant context
|
|
6286
6599
|
*/
|
|
6287
|
-
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';
|
|
6288
6601
|
};
|
|
6289
6602
|
type ExternalAccountLinkControllerFindOneResponse = ExternalAccountLinkResponseDto;
|
|
6290
6603
|
type ExternalAccountLinkControllerRemoveData = {
|
|
@@ -6292,14 +6605,14 @@ type ExternalAccountLinkControllerRemoveData = {
|
|
|
6292
6605
|
/**
|
|
6293
6606
|
* Region code for tenant context
|
|
6294
6607
|
*/
|
|
6295
|
-
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';
|
|
6296
6609
|
};
|
|
6297
6610
|
type ExternalAccountLinkControllerRemoveResponse = void;
|
|
6298
6611
|
type TelemetryControllerReportTelemetryData = {
|
|
6299
6612
|
/**
|
|
6300
6613
|
* Region code for tenant context
|
|
6301
6614
|
*/
|
|
6302
|
-
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';
|
|
6303
6616
|
requestBody: ParserTelemetryReportDto;
|
|
6304
6617
|
};
|
|
6305
6618
|
type TelemetryControllerReportTelemetryResponse = unknown;
|
|
@@ -6307,7 +6620,7 @@ type TelemetryControllerReportCoverageMissData = {
|
|
|
6307
6620
|
/**
|
|
6308
6621
|
* Region code for tenant context
|
|
6309
6622
|
*/
|
|
6310
|
-
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';
|
|
6311
6624
|
requestBody: UncoveredFormatMissDto;
|
|
6312
6625
|
};
|
|
6313
6626
|
type TelemetryControllerReportCoverageMissResponse = unknown;
|
|
@@ -6315,7 +6628,7 @@ type TelemetryControllerGetCoverageMetricsData = {
|
|
|
6315
6628
|
/**
|
|
6316
6629
|
* Region code for tenant context
|
|
6317
6630
|
*/
|
|
6318
|
-
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';
|
|
6319
6632
|
/**
|
|
6320
6633
|
* Top-N uncovered formats (default 10)
|
|
6321
6634
|
*/
|
|
@@ -6326,7 +6639,7 @@ type NlpControllerProcessNaturalLanguageData = {
|
|
|
6326
6639
|
/**
|
|
6327
6640
|
* Region code for tenant context
|
|
6328
6641
|
*/
|
|
6329
|
-
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';
|
|
6330
6643
|
/**
|
|
6331
6644
|
* Natural language transaction input with optional session ID
|
|
6332
6645
|
*/
|
|
@@ -6337,7 +6650,7 @@ type NlpControllerClearSessionData = {
|
|
|
6337
6650
|
/**
|
|
6338
6651
|
* Region code for tenant context
|
|
6339
6652
|
*/
|
|
6340
|
-
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';
|
|
6341
6654
|
/**
|
|
6342
6655
|
* Specific session ID to clear (defaults to user session)
|
|
6343
6656
|
*/
|
|
@@ -6348,7 +6661,7 @@ type NlpControllerGetSessionData = {
|
|
|
6348
6661
|
/**
|
|
6349
6662
|
* Region code for tenant context
|
|
6350
6663
|
*/
|
|
6351
|
-
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';
|
|
6352
6665
|
/**
|
|
6353
6666
|
* Specific session ID to get (defaults to user session)
|
|
6354
6667
|
*/
|
|
@@ -6360,6 +6673,12 @@ type PlatformControllerCreateData = {
|
|
|
6360
6673
|
requestBody: CreatePlatformDto;
|
|
6361
6674
|
};
|
|
6362
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
|
+
};
|
|
6363
6682
|
type PlatformControllerGetPlatformListResponse = Array<PlatformListItemDto>;
|
|
6364
6683
|
type PlatformControllerMatchPlatformsData = {
|
|
6365
6684
|
/**
|
|
@@ -6367,7 +6686,7 @@ type PlatformControllerMatchPlatformsData = {
|
|
|
6367
6686
|
*/
|
|
6368
6687
|
q: string;
|
|
6369
6688
|
/**
|
|
6370
|
-
* 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").
|
|
6371
6690
|
*/
|
|
6372
6691
|
region?: string;
|
|
6373
6692
|
};
|
|
@@ -6395,7 +6714,7 @@ type DashboardControllerGetNetWorthData = {
|
|
|
6395
6714
|
/**
|
|
6396
6715
|
* Region code for tenant context
|
|
6397
6716
|
*/
|
|
6398
|
-
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';
|
|
6399
6718
|
};
|
|
6400
6719
|
type DashboardControllerGetNetWorthResponse = NetWorthResponseDto;
|
|
6401
6720
|
type DashboardControllerGetAccountsData = {
|
|
@@ -6414,7 +6733,7 @@ type DashboardControllerGetAccountsData = {
|
|
|
6414
6733
|
/**
|
|
6415
6734
|
* Region code for tenant context
|
|
6416
6735
|
*/
|
|
6417
|
-
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';
|
|
6418
6737
|
};
|
|
6419
6738
|
type DashboardControllerGetAccountsResponse = AccountsResponseDto | AssetClassAccountsResponseDto | HoldingAssetClassCrossAccountResponseDto;
|
|
6420
6739
|
type DashboardControllerGetCashFlowData = {
|
|
@@ -6425,7 +6744,7 @@ type DashboardControllerGetCashFlowData = {
|
|
|
6425
6744
|
/**
|
|
6426
6745
|
* Region code for tenant context
|
|
6427
6746
|
*/
|
|
6428
|
-
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';
|
|
6429
6748
|
};
|
|
6430
6749
|
type DashboardControllerGetCashFlowResponse = CashFlowResponseDto;
|
|
6431
6750
|
type DashboardControllerGetExpensesData = {
|
|
@@ -6444,7 +6763,7 @@ type DashboardControllerGetExpensesData = {
|
|
|
6444
6763
|
/**
|
|
6445
6764
|
* Region code for tenant context
|
|
6446
6765
|
*/
|
|
6447
|
-
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';
|
|
6448
6767
|
};
|
|
6449
6768
|
type DashboardControllerGetExpensesResponse = ExpensesByCategoryResponseDto;
|
|
6450
6769
|
type HoldingPnlControllerGetHoldingPnlData = {
|
|
@@ -6463,7 +6782,7 @@ type HoldingPnlControllerGetHoldingPnlData = {
|
|
|
6463
6782
|
/**
|
|
6464
6783
|
* Region code for tenant context
|
|
6465
6784
|
*/
|
|
6466
|
-
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';
|
|
6467
6786
|
};
|
|
6468
6787
|
type HoldingPnlControllerGetHoldingPnlResponse = HoldingPnlResponseDto;
|
|
6469
6788
|
type ApiKeysControllerCreateApiKeyResponse = unknown;
|
|
@@ -6497,6 +6816,29 @@ type HealthControllerResetCircuitBreakerData = {
|
|
|
6497
6816
|
type HealthControllerResetCircuitBreakerResponse = unknown;
|
|
6498
6817
|
type HealthControllerGetMetricsResponse = unknown;
|
|
6499
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;
|
|
6500
6842
|
type $OpenApiTs = {
|
|
6501
6843
|
'/api/v1/{region}/bean/accounts': {
|
|
6502
6844
|
post: {
|
|
@@ -6561,7 +6903,7 @@ type $OpenApiTs = {
|
|
|
6561
6903
|
*/
|
|
6562
6904
|
404: unknown;
|
|
6563
6905
|
/**
|
|
6564
|
-
* Account has transactions and cannot be deleted
|
|
6906
|
+
* Account has active transactions and cannot be deleted
|
|
6565
6907
|
*/
|
|
6566
6908
|
409: unknown;
|
|
6567
6909
|
};
|
|
@@ -7658,7 +8000,7 @@ type $OpenApiTs = {
|
|
|
7658
8000
|
/**
|
|
7659
8001
|
* User retrieved successfully
|
|
7660
8002
|
*/
|
|
7661
|
-
200:
|
|
8003
|
+
200: UserResponseDto;
|
|
7662
8004
|
};
|
|
7663
8005
|
};
|
|
7664
8006
|
post: {
|
|
@@ -8032,6 +8374,17 @@ type $OpenApiTs = {
|
|
|
8032
8374
|
};
|
|
8033
8375
|
};
|
|
8034
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
|
+
};
|
|
8035
8388
|
'/api/v1/{region}/bean/events': {
|
|
8036
8389
|
post: {
|
|
8037
8390
|
req: EventControllerCreateData;
|
|
@@ -8571,6 +8924,7 @@ type $OpenApiTs = {
|
|
|
8571
8924
|
};
|
|
8572
8925
|
'/api/v1/bean/platforms/list': {
|
|
8573
8926
|
get: {
|
|
8927
|
+
req: PlatformControllerGetPlatformListData;
|
|
8574
8928
|
res: {
|
|
8575
8929
|
/**
|
|
8576
8930
|
* List of platforms with user binding status
|
|
@@ -8873,6 +9227,32 @@ type $OpenApiTs = {
|
|
|
8873
9227
|
};
|
|
8874
9228
|
};
|
|
8875
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
|
+
};
|
|
8876
9256
|
};
|
|
8877
9257
|
|
|
8878
9258
|
declare class BeanAccountsService {
|
|
@@ -8924,7 +9304,7 @@ declare class BeanAccountsService {
|
|
|
8924
9304
|
static accountControllerUpdate(data: AccountControllerUpdateData): CancelablePromise<AccountControllerUpdateResponse>;
|
|
8925
9305
|
/**
|
|
8926
9306
|
* Delete account
|
|
8927
|
-
* Deletes an account (only if no transactions)
|
|
9307
|
+
* Deletes an account (only if no active transactions; voided/superseded residual postings are cleaned up)
|
|
8928
9308
|
* @param data The data for the request.
|
|
8929
9309
|
* @param data.id Account UUID
|
|
8930
9310
|
* @param data.region Region code for tenant context
|
|
@@ -9296,4 +9676,4 @@ type OpenAPIConfig = {
|
|
|
9296
9676
|
};
|
|
9297
9677
|
declare const OpenAPI: OpenAPIConfig;
|
|
9298
9678
|
|
|
9299
|
-
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 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 };
|