@firela/api-types 0.0.0-canary.84b23d91 → 0.0.0-canary.888f4d12
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 +511 -147
- package/dist/index.d.ts +511 -147
- package/dist/index.js +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
- package/src/generated/schemas.gen.ts +453 -31
- package/src/generated/services.gen.ts +99 -7
- package/src/generated/types.gen.ts +3233 -157
package/dist/index.d.mts
CHANGED
|
@@ -81,7 +81,7 @@ type AccountResponseDto = {
|
|
|
81
81
|
/**
|
|
82
82
|
* Account-level asset sub-class (product type, e.g. STOCK/DEPOSIT/CREDIT_CARD/PERSONAL_LOAN). Computed from the account path via the asset-classifier (ADR-0077). Null for non-asset accounts (Income/Expenses/Equity) or unmatched paths.
|
|
83
83
|
*/
|
|
84
|
-
assetSubClass?: 'DEPOSIT' | 'CASH' | 'MONEY_MARKET_FUND' | 'STOCK' | 'ETF' | 'MUTUAL_FUND' | 'EQUITY_COMPENSATION' | 'GOVERNMENT_BOND' | 'CORPORATE_BOND' | 'BOND_FUND' | 'PRIMARY_RESIDENCE' | 'INVESTMENT_PROPERTY' | 'REIT' | 'GOLD' | 'SILVER' | 'PRECIOUS_METAL' | 'PRECIOUS_METAL_FUND' | 'COMMODITY' | 'COMMODITY_FUND' | 'CRYPTOCURRENCY' | 'RETIREMENT_ACCOUNT' | 'HEALTH_ACCOUNT' | 'EDUCATION_ACCOUNT' | 'INSURANCE' | 'PRIVATE_EQUITY' | 'HEDGE_FUND' | 'COLLECTIBLES' | 'MORTGAGE' | 'STUDENT_LOAN' | 'CREDIT_CARD' | 'PERSONAL_LOAN' | 'OTHER' | null;
|
|
84
|
+
assetSubClass?: 'DEPOSIT' | 'CASH' | 'MONEY_MARKET_FUND' | 'STOCK' | 'ETF' | 'MUTUAL_FUND' | 'EQUITY_COMPENSATION' | 'GOVERNMENT_BOND' | 'CORPORATE_BOND' | 'BOND_FUND' | 'PRIMARY_RESIDENCE' | 'INVESTMENT_PROPERTY' | 'REIT' | 'GOLD' | 'SILVER' | 'PRECIOUS_METAL' | 'PRECIOUS_METAL_FUND' | 'COMMODITY' | 'COMMODITY_FUND' | 'CRYPTOCURRENCY' | 'RETIREMENT_ACCOUNT' | 'HEALTH_ACCOUNT' | 'EDUCATION_ACCOUNT' | 'INSURANCE' | 'PRIVATE_EQUITY' | 'HEDGE_FUND' | 'COLLECTIBLES' | 'MORTGAGE' | 'STUDENT_LOAN' | 'CREDIT_CARD' | 'PERSONAL_LOAN' | 'ACCOUNTS_PAYABLE' | 'TAX_PAYABLE' | 'OTHER' | null;
|
|
85
85
|
/**
|
|
86
86
|
* Account status
|
|
87
87
|
*/
|
|
@@ -152,7 +152,7 @@ type type = 'Assets' | 'Liabilities' | 'Income' | 'Expenses' | 'Equity';
|
|
|
152
152
|
/**
|
|
153
153
|
* Account-level asset sub-class (product type, e.g. STOCK/DEPOSIT/CREDIT_CARD/PERSONAL_LOAN). Computed from the account path via the asset-classifier (ADR-0077). Null for non-asset accounts (Income/Expenses/Equity) or unmatched paths.
|
|
154
154
|
*/
|
|
155
|
-
type assetSubClass = 'DEPOSIT' | 'CASH' | 'MONEY_MARKET_FUND' | 'STOCK' | 'ETF' | 'MUTUAL_FUND' | 'EQUITY_COMPENSATION' | 'GOVERNMENT_BOND' | 'CORPORATE_BOND' | 'BOND_FUND' | 'PRIMARY_RESIDENCE' | 'INVESTMENT_PROPERTY' | 'REIT' | 'GOLD' | 'SILVER' | 'PRECIOUS_METAL' | 'PRECIOUS_METAL_FUND' | 'COMMODITY' | 'COMMODITY_FUND' | 'CRYPTOCURRENCY' | 'RETIREMENT_ACCOUNT' | 'HEALTH_ACCOUNT' | 'EDUCATION_ACCOUNT' | 'INSURANCE' | 'PRIVATE_EQUITY' | 'HEDGE_FUND' | 'COLLECTIBLES' | 'MORTGAGE' | 'STUDENT_LOAN' | 'CREDIT_CARD' | 'PERSONAL_LOAN' | 'OTHER';
|
|
155
|
+
type assetSubClass = 'DEPOSIT' | 'CASH' | 'MONEY_MARKET_FUND' | 'STOCK' | 'ETF' | 'MUTUAL_FUND' | 'EQUITY_COMPENSATION' | 'GOVERNMENT_BOND' | 'CORPORATE_BOND' | 'BOND_FUND' | 'PRIMARY_RESIDENCE' | 'INVESTMENT_PROPERTY' | 'REIT' | 'GOLD' | 'SILVER' | 'PRECIOUS_METAL' | 'PRECIOUS_METAL_FUND' | 'COMMODITY' | 'COMMODITY_FUND' | 'CRYPTOCURRENCY' | 'RETIREMENT_ACCOUNT' | 'HEALTH_ACCOUNT' | 'EDUCATION_ACCOUNT' | 'INSURANCE' | 'PRIVATE_EQUITY' | 'HEDGE_FUND' | 'COLLECTIBLES' | 'MORTGAGE' | 'STUDENT_LOAN' | 'CREDIT_CARD' | 'PERSONAL_LOAN' | 'ACCOUNTS_PAYABLE' | 'TAX_PAYABLE' | 'OTHER';
|
|
156
156
|
/**
|
|
157
157
|
* Account status
|
|
158
158
|
*/
|
|
@@ -254,7 +254,27 @@ type AccountStandardResponseDto = {
|
|
|
254
254
|
* Icon identifier for UI display
|
|
255
255
|
*/
|
|
256
256
|
icon: string;
|
|
257
|
+
/**
|
|
258
|
+
* Onboarding product category (coarse grouping derived from assetSubClass)
|
|
259
|
+
*/
|
|
260
|
+
productCategory: 'cash' | 'investment' | 'credit_card' | 'loan' | 'payable_tax' | 'other';
|
|
261
|
+
/**
|
|
262
|
+
* Asset class (LIQUIDITY/EQUITY/.../LIABILITY), derived at read time from classification rules
|
|
263
|
+
*/
|
|
264
|
+
assetClass?: 'LIQUIDITY' | 'EQUITY' | 'FIXED_INCOME' | 'PRECIOUS_METALS' | 'COMMODITY' | 'INSURANCE' | 'ALTERNATIVE_INVESTMENT' | 'PERSONAL_ASSETS' | 'LIABILITY' | 'REAL_ESTATE' | 'INDEX';
|
|
265
|
+
/**
|
|
266
|
+
* Asset sub-class (product type, derived at read time from classification rules)
|
|
267
|
+
*/
|
|
268
|
+
assetSubClass?: string;
|
|
257
269
|
};
|
|
270
|
+
/**
|
|
271
|
+
* Onboarding product category (coarse grouping derived from assetSubClass)
|
|
272
|
+
*/
|
|
273
|
+
type productCategory = 'cash' | 'investment' | 'credit_card' | 'loan' | 'payable_tax' | 'other';
|
|
274
|
+
/**
|
|
275
|
+
* Asset class (LIQUIDITY/EQUITY/.../LIABILITY), derived at read time from classification rules
|
|
276
|
+
*/
|
|
277
|
+
type assetClass = 'LIQUIDITY' | 'EQUITY' | 'FIXED_INCOME' | 'PRECIOUS_METALS' | 'COMMODITY' | 'INSURANCE' | 'ALTERNATIVE_INVESTMENT' | 'PERSONAL_ASSETS' | 'LIABILITY' | 'REAL_ESTATE' | 'INDEX';
|
|
258
278
|
type AccountStandardListResponseDto = {
|
|
259
279
|
/**
|
|
260
280
|
* Array of account templates
|
|
@@ -2551,6 +2571,30 @@ type DeleteOwnUserDto = {
|
|
|
2551
2571
|
*/
|
|
2552
2572
|
accessToken: string;
|
|
2553
2573
|
};
|
|
2574
|
+
type UserSettingsResponseDto = {
|
|
2575
|
+
/**
|
|
2576
|
+
* Base currency (ISO 4217) for net-worth/report aggregation. Independent of region (ADR-0006).
|
|
2577
|
+
*/
|
|
2578
|
+
baseCurrency: string | null;
|
|
2579
|
+
};
|
|
2580
|
+
type UserResponseDto = {
|
|
2581
|
+
/**
|
|
2582
|
+
* User ID
|
|
2583
|
+
*/
|
|
2584
|
+
id: string;
|
|
2585
|
+
/**
|
|
2586
|
+
* Assigned user role
|
|
2587
|
+
*/
|
|
2588
|
+
role: string;
|
|
2589
|
+
/**
|
|
2590
|
+
* Permission strings
|
|
2591
|
+
*/
|
|
2592
|
+
permissions: Array<string>;
|
|
2593
|
+
/**
|
|
2594
|
+
* User settings
|
|
2595
|
+
*/
|
|
2596
|
+
settings: UserSettingsResponseDto;
|
|
2597
|
+
};
|
|
2554
2598
|
type SignupDto = {
|
|
2555
2599
|
/**
|
|
2556
2600
|
* Cloudflare Turnstile verification token (optional when Turnstile disabled)
|
|
@@ -3013,6 +3057,42 @@ type TestRuleResponseDto = {
|
|
|
3013
3057
|
[key: string]: unknown;
|
|
3014
3058
|
};
|
|
3015
3059
|
};
|
|
3060
|
+
type CategoryCatalogEntryDto = {
|
|
3061
|
+
/**
|
|
3062
|
+
* Category slug (single source-of-truth)
|
|
3063
|
+
*/
|
|
3064
|
+
slug: string;
|
|
3065
|
+
/**
|
|
3066
|
+
* Display scenario group (maps to frontend picker _scenario)
|
|
3067
|
+
*/
|
|
3068
|
+
scenario: 'expense' | 'income' | 'investment' | 'banking' | 'transfer' | 'payment';
|
|
3069
|
+
/**
|
|
3070
|
+
* Lucide icon name
|
|
3071
|
+
*/
|
|
3072
|
+
icon: string;
|
|
3073
|
+
/**
|
|
3074
|
+
* Applicable regions ('*' = all, 'cn' = CN-only)
|
|
3075
|
+
*/
|
|
3076
|
+
regions: Array<string>;
|
|
3077
|
+
};
|
|
3078
|
+
/**
|
|
3079
|
+
* Display scenario group (maps to frontend picker _scenario)
|
|
3080
|
+
*/
|
|
3081
|
+
type scenario = 'expense' | 'income' | 'investment' | 'banking' | 'transfer' | 'payment';
|
|
3082
|
+
type CategoryCatalogListResponseDto = {
|
|
3083
|
+
/**
|
|
3084
|
+
* Category entries (region-scoped, query-filtered)
|
|
3085
|
+
*/
|
|
3086
|
+
items: Array<CategoryCatalogEntryDto>;
|
|
3087
|
+
/**
|
|
3088
|
+
* Total category entries for the region (before query filtering)
|
|
3089
|
+
*/
|
|
3090
|
+
total: number;
|
|
3091
|
+
/**
|
|
3092
|
+
* Region code
|
|
3093
|
+
*/
|
|
3094
|
+
region: string;
|
|
3095
|
+
};
|
|
3016
3096
|
type CreateBeanEventDto = {
|
|
3017
3097
|
/**
|
|
3018
3098
|
* Life event date (ISO 8601)
|
|
@@ -3497,13 +3577,13 @@ type ProviderSyncConfigDto = {
|
|
|
3497
3577
|
*/
|
|
3498
3578
|
defaultCurrency: string;
|
|
3499
3579
|
/**
|
|
3500
|
-
* Default expense account for the second posting
|
|
3580
|
+
* Default expense account for the second posting. Omit when no real default exists; the pipeline routes to Review via the Uncategorized sentinel (#618).
|
|
3501
3581
|
*/
|
|
3502
|
-
defaultExpenseAccount
|
|
3582
|
+
defaultExpenseAccount?: string;
|
|
3503
3583
|
/**
|
|
3504
|
-
* Default income account for the second posting
|
|
3584
|
+
* Default income account for the second posting. Omit when no real default exists; the pipeline routes to Review via the Uncategorized sentinel (#618).
|
|
3505
3585
|
*/
|
|
3506
|
-
defaultIncomeAccount
|
|
3586
|
+
defaultIncomeAccount?: string;
|
|
3507
3587
|
/**
|
|
3508
3588
|
* Filter pending transactions
|
|
3509
3589
|
*/
|
|
@@ -3600,11 +3680,85 @@ type ExternalAccountLinkListResponseDto = {
|
|
|
3600
3680
|
};
|
|
3601
3681
|
type ParserTelemetryReportDto = unknown;
|
|
3602
3682
|
type UncoveredFormatMissDto = unknown;
|
|
3683
|
+
type ClientParsedDataDto = {
|
|
3684
|
+
/**
|
|
3685
|
+
* Transaction amount
|
|
3686
|
+
*/
|
|
3687
|
+
amount?: number;
|
|
3688
|
+
/**
|
|
3689
|
+
* Currency code
|
|
3690
|
+
*/
|
|
3691
|
+
currency?: string;
|
|
3692
|
+
/**
|
|
3693
|
+
* Transaction date (ISO 8601)
|
|
3694
|
+
*/
|
|
3695
|
+
date?: string;
|
|
3696
|
+
/**
|
|
3697
|
+
* Payee/merchant name
|
|
3698
|
+
*/
|
|
3699
|
+
payee?: string;
|
|
3700
|
+
/**
|
|
3701
|
+
* Transaction narration
|
|
3702
|
+
*/
|
|
3703
|
+
narration?: string;
|
|
3704
|
+
/**
|
|
3705
|
+
* Category slug
|
|
3706
|
+
*/
|
|
3707
|
+
category?: string;
|
|
3708
|
+
/**
|
|
3709
|
+
* Income type
|
|
3710
|
+
*/
|
|
3711
|
+
incomeType?: string;
|
|
3712
|
+
/**
|
|
3713
|
+
* Income source
|
|
3714
|
+
*/
|
|
3715
|
+
incomeSource?: string;
|
|
3716
|
+
/**
|
|
3717
|
+
* Security symbol code (e.g., 600519, AAPL)
|
|
3718
|
+
*/
|
|
3719
|
+
symbol?: string;
|
|
3720
|
+
/**
|
|
3721
|
+
* Quantity of shares/units
|
|
3722
|
+
*/
|
|
3723
|
+
quantity?: number;
|
|
3724
|
+
/**
|
|
3725
|
+
* Unit price per share/unit
|
|
3726
|
+
*/
|
|
3727
|
+
price?: number;
|
|
3728
|
+
/**
|
|
3729
|
+
* Investment action
|
|
3730
|
+
*/
|
|
3731
|
+
investmentAction?: 'buy' | 'sell';
|
|
3732
|
+
/**
|
|
3733
|
+
* Payment source: asset (default) or liability (credit card)
|
|
3734
|
+
*/
|
|
3735
|
+
paymentSource?: 'asset' | 'liability';
|
|
3736
|
+
/**
|
|
3737
|
+
* Liability account hint (CreditCard/Huabei/Baitiao)
|
|
3738
|
+
*/
|
|
3739
|
+
liabilityHint?: string;
|
|
3740
|
+
/**
|
|
3741
|
+
* Display-only warning from the prior response; accepted but ignored.
|
|
3742
|
+
*/
|
|
3743
|
+
warning?: string;
|
|
3744
|
+
};
|
|
3745
|
+
/**
|
|
3746
|
+
* Investment action
|
|
3747
|
+
*/
|
|
3748
|
+
type investmentAction = 'buy' | 'sell';
|
|
3749
|
+
/**
|
|
3750
|
+
* Payment source: asset (default) or liability (credit card)
|
|
3751
|
+
*/
|
|
3752
|
+
type paymentSource = 'asset' | 'liability';
|
|
3603
3753
|
type ProcessNlpDto = {
|
|
3604
3754
|
/**
|
|
3605
|
-
* Natural language text describing a transaction (
|
|
3755
|
+
* Natural language text describing a transaction. Optional when `confirm` is true (structured confirm); otherwise required.
|
|
3756
|
+
*/
|
|
3757
|
+
message?: string;
|
|
3758
|
+
/**
|
|
3759
|
+
* Structured confirm signal — bypasses NL confirm-word matching when true. Send parsedData field edits alongside. The NL word-list path is the fallback.
|
|
3606
3760
|
*/
|
|
3607
|
-
|
|
3761
|
+
confirm?: boolean;
|
|
3608
3762
|
/**
|
|
3609
3763
|
* Session ID for multi-turn conversation (auto-generated if not provided)
|
|
3610
3764
|
*/
|
|
@@ -3612,9 +3766,7 @@ type ProcessNlpDto = {
|
|
|
3612
3766
|
/**
|
|
3613
3767
|
* Parsed data from previous NLP response for session recovery. Send back the parsedData received in confirm_payee/confirm responses.
|
|
3614
3768
|
*/
|
|
3615
|
-
parsedData?:
|
|
3616
|
-
[key: string]: unknown;
|
|
3617
|
-
};
|
|
3769
|
+
parsedData?: ClientParsedDataDto;
|
|
3618
3770
|
/**
|
|
3619
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.
|
|
3620
3772
|
*/
|
|
@@ -3716,14 +3868,6 @@ type NlpParsedDataDto = {
|
|
|
3716
3868
|
*/
|
|
3717
3869
|
warning?: string;
|
|
3718
3870
|
};
|
|
3719
|
-
/**
|
|
3720
|
-
* Investment action
|
|
3721
|
-
*/
|
|
3722
|
-
type investmentAction = 'buy' | 'sell';
|
|
3723
|
-
/**
|
|
3724
|
-
* Payment source: asset (default) or liability (credit card)
|
|
3725
|
-
*/
|
|
3726
|
-
type paymentSource = 'asset' | 'liability';
|
|
3727
3871
|
type NlpSourceTransactionDto = {
|
|
3728
3872
|
/**
|
|
3729
3873
|
* Transaction date (ISO format)
|
|
@@ -3980,7 +4124,7 @@ type NlpSuggestedAccountDto = {
|
|
|
3980
4124
|
*/
|
|
3981
4125
|
account: string;
|
|
3982
4126
|
/**
|
|
3983
|
-
* 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)
|
|
3984
4128
|
*/
|
|
3985
4129
|
confidence?: number;
|
|
3986
4130
|
};
|
|
@@ -3996,21 +4140,21 @@ type NlpSuggestedAccountsDto = {
|
|
|
3996
4140
|
};
|
|
3997
4141
|
type NlpDefaultAccountsDto = {
|
|
3998
4142
|
/**
|
|
3999
|
-
* Default asset account
|
|
4143
|
+
* Default OPEN asset account (MRU when multiple), or null when none/ambiguous
|
|
4000
4144
|
*/
|
|
4001
|
-
asset: string;
|
|
4145
|
+
asset: string | null;
|
|
4002
4146
|
/**
|
|
4003
|
-
* Default expense account
|
|
4147
|
+
* Default OPEN expense account (MRU when multiple), or null when none/ambiguous
|
|
4004
4148
|
*/
|
|
4005
|
-
expense: string;
|
|
4149
|
+
expense: string | null;
|
|
4006
4150
|
/**
|
|
4007
|
-
* Default income account
|
|
4151
|
+
* Default OPEN income account (MRU when multiple), or null when none/ambiguous
|
|
4008
4152
|
*/
|
|
4009
|
-
income: string;
|
|
4153
|
+
income: string | null;
|
|
4010
4154
|
/**
|
|
4011
|
-
* Default liability account
|
|
4155
|
+
* Default OPEN liability account (MRU when multiple), or null when none/ambiguous
|
|
4012
4156
|
*/
|
|
4013
|
-
liability: string;
|
|
4157
|
+
liability: string | null;
|
|
4014
4158
|
};
|
|
4015
4159
|
type NlpResponseDto = {
|
|
4016
4160
|
/**
|
|
@@ -4109,11 +4253,11 @@ type NlpResponseDto = {
|
|
|
4109
4253
|
*/
|
|
4110
4254
|
recurringSuggestion?: RecurringSuggestionDto;
|
|
4111
4255
|
/**
|
|
4112
|
-
* 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.
|
|
4113
4257
|
*/
|
|
4114
4258
|
suggestedAccounts?: NlpSuggestedAccountsDto;
|
|
4115
4259
|
/**
|
|
4116
|
-
* Default accounts for the user/region.
|
|
4260
|
+
* Default fallback accounts for the user/region (#586). v1 returns universal constants; per-user personalization is planned.
|
|
4117
4261
|
*/
|
|
4118
4262
|
defaultAccounts?: NlpDefaultAccountsDto;
|
|
4119
4263
|
};
|
|
@@ -4163,13 +4307,21 @@ type PlatformListItemDto = {
|
|
|
4163
4307
|
*/
|
|
4164
4308
|
canonical: string;
|
|
4165
4309
|
/**
|
|
4166
|
-
* Suggested path segment — canonical
|
|
4310
|
+
* Suggested path segment — canonical PascalCased per hyphen-part, hyphens preserved (e.g. "Apple-Pay")
|
|
4167
4311
|
*/
|
|
4168
4312
|
suggestedSegment: string;
|
|
4169
4313
|
/**
|
|
4170
4314
|
* Logo URL
|
|
4171
4315
|
*/
|
|
4172
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;
|
|
4173
4325
|
/**
|
|
4174
4326
|
* Whether user has accounts using this platform
|
|
4175
4327
|
*/
|
|
@@ -4197,13 +4349,21 @@ type PlatformMatchResultDto = {
|
|
|
4197
4349
|
*/
|
|
4198
4350
|
type: 'BANK' | 'BROKERAGE' | 'CRYPTO_EXCHANGE' | 'PAYMENT' | 'INVESTMENT' | 'INSURANCE' | 'OTHER';
|
|
4199
4351
|
/**
|
|
4200
|
-
* Suggested path segment — canonical,
|
|
4352
|
+
* Suggested path segment — canonical PascalCased per hyphen-part, hyphens preserved (e.g. "Apple-Pay")
|
|
4201
4353
|
*/
|
|
4202
4354
|
suggestedSegment: string;
|
|
4203
4355
|
/**
|
|
4204
4356
|
* Logo URL
|
|
4205
4357
|
*/
|
|
4206
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;
|
|
4207
4367
|
/**
|
|
4208
4368
|
* How this row matched: 'exact' > 'prefix' > 'substring'
|
|
4209
4369
|
*/
|
|
@@ -4549,10 +4709,6 @@ type AssetClassGroupDto = {
|
|
|
4549
4709
|
*/
|
|
4550
4710
|
convertedBalance?: string;
|
|
4551
4711
|
};
|
|
4552
|
-
/**
|
|
4553
|
-
* Asset class name
|
|
4554
|
-
*/
|
|
4555
|
-
type assetClass = 'LIQUIDITY' | 'EQUITY' | 'FIXED_INCOME' | 'PRECIOUS_METALS' | 'COMMODITY' | 'INSURANCE' | 'ALTERNATIVE_INVESTMENT' | 'PERSONAL_ASSETS' | 'LIABILITY' | 'REAL_ESTATE' | 'INDEX';
|
|
4556
4712
|
type AssetClassSummaryDto = {
|
|
4557
4713
|
/**
|
|
4558
4714
|
* Total number of accounts
|
|
@@ -4948,11 +5104,137 @@ type AnonymousLoginResponseDto = {
|
|
|
4948
5104
|
*/
|
|
4949
5105
|
authToken: string;
|
|
4950
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
|
+
};
|
|
4951
5233
|
type AccountControllerCreateData = {
|
|
4952
5234
|
/**
|
|
4953
5235
|
* Region code for tenant context
|
|
4954
5236
|
*/
|
|
4955
|
-
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';
|
|
4956
5238
|
requestBody: CreateAccountDto;
|
|
4957
5239
|
};
|
|
4958
5240
|
type AccountControllerCreateResponse = AccountResponseDto;
|
|
@@ -4972,7 +5254,7 @@ type AccountControllerFindAllData = {
|
|
|
4972
5254
|
/**
|
|
4973
5255
|
* Region code for tenant context
|
|
4974
5256
|
*/
|
|
4975
|
-
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';
|
|
4976
5258
|
/**
|
|
4977
5259
|
* Search term for account path
|
|
4978
5260
|
*/
|
|
@@ -4995,7 +5277,7 @@ type AccountControllerFindOneData = {
|
|
|
4995
5277
|
/**
|
|
4996
5278
|
* Region code for tenant context
|
|
4997
5279
|
*/
|
|
4998
|
-
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';
|
|
4999
5281
|
};
|
|
5000
5282
|
type AccountControllerFindOneResponse = AccountResponseDto;
|
|
5001
5283
|
type AccountControllerUpdateData = {
|
|
@@ -5006,7 +5288,7 @@ type AccountControllerUpdateData = {
|
|
|
5006
5288
|
/**
|
|
5007
5289
|
* Region code for tenant context
|
|
5008
5290
|
*/
|
|
5009
|
-
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';
|
|
5010
5292
|
requestBody: UpdateAccountDto;
|
|
5011
5293
|
};
|
|
5012
5294
|
type AccountControllerUpdateResponse = AccountResponseDto;
|
|
@@ -5018,7 +5300,7 @@ type AccountControllerDeleteData = {
|
|
|
5018
5300
|
/**
|
|
5019
5301
|
* Region code for tenant context
|
|
5020
5302
|
*/
|
|
5021
|
-
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';
|
|
5022
5304
|
};
|
|
5023
5305
|
type AccountControllerDeleteResponse = void;
|
|
5024
5306
|
type AccountControllerCloseData = {
|
|
@@ -5029,7 +5311,7 @@ type AccountControllerCloseData = {
|
|
|
5029
5311
|
/**
|
|
5030
5312
|
* Region code for tenant context
|
|
5031
5313
|
*/
|
|
5032
|
-
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';
|
|
5033
5315
|
requestBody: CloseAccountDto;
|
|
5034
5316
|
};
|
|
5035
5317
|
type AccountControllerCloseResponse = AccountResponseDto;
|
|
@@ -5041,7 +5323,7 @@ type AccountControllerReopenData = {
|
|
|
5041
5323
|
/**
|
|
5042
5324
|
* Region code for tenant context
|
|
5043
5325
|
*/
|
|
5044
|
-
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';
|
|
5045
5327
|
requestBody: ReopenAccountDto;
|
|
5046
5328
|
};
|
|
5047
5329
|
type AccountControllerReopenResponse = AccountResponseDto;
|
|
@@ -5053,7 +5335,7 @@ type AccountControllerAddOpeningBalanceData = {
|
|
|
5053
5335
|
/**
|
|
5054
5336
|
* Region code for tenant context
|
|
5055
5337
|
*/
|
|
5056
|
-
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';
|
|
5057
5339
|
requestBody: CreateOpeningBalanceDto;
|
|
5058
5340
|
};
|
|
5059
5341
|
type AccountControllerAddOpeningBalanceResponse = OpeningBalanceResultDto;
|
|
@@ -5061,7 +5343,7 @@ type AccountStandardsControllerGetTemplatesData = {
|
|
|
5061
5343
|
/**
|
|
5062
5344
|
* Region code (cn, us, de)
|
|
5063
5345
|
*/
|
|
5064
|
-
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';
|
|
5065
5347
|
/**
|
|
5066
5348
|
* Search term for path or description
|
|
5067
5349
|
*/
|
|
@@ -5080,21 +5362,21 @@ type AccountStandardsControllerGetTemplateMetadataData = {
|
|
|
5080
5362
|
/**
|
|
5081
5363
|
* Region code for tenant context
|
|
5082
5364
|
*/
|
|
5083
|
-
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';
|
|
5084
5366
|
};
|
|
5085
5367
|
type AccountStandardsControllerGetTemplateMetadataResponse = TemplateMetadataResponseDto;
|
|
5086
5368
|
type AccountStandardsControllerGetRegionsData = {
|
|
5087
5369
|
/**
|
|
5088
5370
|
* Region code for tenant context
|
|
5089
5371
|
*/
|
|
5090
|
-
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';
|
|
5091
5373
|
};
|
|
5092
5374
|
type AccountStandardsControllerGetRegionsResponse = RegionsMetadataResponseDto;
|
|
5093
5375
|
type TransactionControllerCreateData = {
|
|
5094
5376
|
/**
|
|
5095
5377
|
* Region code for tenant context
|
|
5096
5378
|
*/
|
|
5097
|
-
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';
|
|
5098
5380
|
/**
|
|
5099
5381
|
* Transaction data with postings
|
|
5100
5382
|
*/
|
|
@@ -5129,7 +5411,7 @@ type TransactionControllerListData = {
|
|
|
5129
5411
|
/**
|
|
5130
5412
|
* Region code for tenant context
|
|
5131
5413
|
*/
|
|
5132
|
-
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';
|
|
5133
5415
|
/**
|
|
5134
5416
|
* Search in narration and payee fields (max 200 chars)
|
|
5135
5417
|
*/
|
|
@@ -5144,7 +5426,7 @@ type TransactionControllerCreateBatchData = {
|
|
|
5144
5426
|
/**
|
|
5145
5427
|
* Region code for tenant context
|
|
5146
5428
|
*/
|
|
5147
|
-
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';
|
|
5148
5430
|
requestBody: BatchCreateTransactionDto;
|
|
5149
5431
|
};
|
|
5150
5432
|
type TransactionControllerCreateBatchResponse = BatchTransactionResponseDto;
|
|
@@ -5156,7 +5438,7 @@ type TransactionControllerCorrectData = {
|
|
|
5156
5438
|
/**
|
|
5157
5439
|
* Region code for tenant context
|
|
5158
5440
|
*/
|
|
5159
|
-
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';
|
|
5160
5442
|
requestBody: CorrectTransactionDto;
|
|
5161
5443
|
};
|
|
5162
5444
|
type TransactionControllerCorrectResponse = TransactionDetailDto;
|
|
@@ -5172,7 +5454,7 @@ type TransactionControllerSuggestTagsData = {
|
|
|
5172
5454
|
/**
|
|
5173
5455
|
* Region code for tenant context
|
|
5174
5456
|
*/
|
|
5175
|
-
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';
|
|
5176
5458
|
/**
|
|
5177
5459
|
* usage (default) or name
|
|
5178
5460
|
*/
|
|
@@ -5187,7 +5469,7 @@ type TransactionControllerGetDetailData = {
|
|
|
5187
5469
|
/**
|
|
5188
5470
|
* Region code for tenant context
|
|
5189
5471
|
*/
|
|
5190
|
-
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';
|
|
5191
5473
|
};
|
|
5192
5474
|
type TransactionControllerGetDetailResponse = TransactionDetailDto;
|
|
5193
5475
|
type TransactionControllerUpdateData = {
|
|
@@ -5198,7 +5480,7 @@ type TransactionControllerUpdateData = {
|
|
|
5198
5480
|
/**
|
|
5199
5481
|
* Region code for tenant context
|
|
5200
5482
|
*/
|
|
5201
|
-
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';
|
|
5202
5484
|
/**
|
|
5203
5485
|
* Fields to update (all optional)
|
|
5204
5486
|
*/
|
|
@@ -5213,7 +5495,7 @@ type TransactionControllerDeleteData = {
|
|
|
5213
5495
|
/**
|
|
5214
5496
|
* Region code for tenant context
|
|
5215
5497
|
*/
|
|
5216
|
-
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';
|
|
5217
5499
|
};
|
|
5218
5500
|
type TransactionControllerDeleteResponse = void;
|
|
5219
5501
|
type BalanceControllerGetBalanceData = {
|
|
@@ -5232,14 +5514,14 @@ type BalanceControllerGetBalanceData = {
|
|
|
5232
5514
|
/**
|
|
5233
5515
|
* Region code for tenant context
|
|
5234
5516
|
*/
|
|
5235
|
-
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';
|
|
5236
5518
|
};
|
|
5237
5519
|
type BalanceControllerGetBalanceResponse = BalanceResponseDto;
|
|
5238
5520
|
type BalanceControllerGetMultiCurrencyBalanceData = {
|
|
5239
5521
|
/**
|
|
5240
5522
|
* Region code for tenant context
|
|
5241
5523
|
*/
|
|
5242
|
-
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';
|
|
5243
5525
|
};
|
|
5244
5526
|
type BalanceControllerGetMultiCurrencyBalanceResponse = MultiCurrencyBalanceResponseDto;
|
|
5245
5527
|
type ReviewControllerFindAllData = {
|
|
@@ -5258,7 +5540,7 @@ type ReviewControllerFindAllData = {
|
|
|
5258
5540
|
/**
|
|
5259
5541
|
* Region code for tenant context
|
|
5260
5542
|
*/
|
|
5261
|
-
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';
|
|
5262
5544
|
/**
|
|
5263
5545
|
* Sort order
|
|
5264
5546
|
*/
|
|
@@ -5273,7 +5555,7 @@ type ReviewControllerGetStatsData = {
|
|
|
5273
5555
|
/**
|
|
5274
5556
|
* Region code for tenant context
|
|
5275
5557
|
*/
|
|
5276
|
-
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';
|
|
5277
5559
|
};
|
|
5278
5560
|
type ReviewControllerGetStatsResponse = ReviewStatsDto;
|
|
5279
5561
|
type ReviewControllerFindOneData = {
|
|
@@ -5284,7 +5566,7 @@ type ReviewControllerFindOneData = {
|
|
|
5284
5566
|
/**
|
|
5285
5567
|
* Region code for tenant context
|
|
5286
5568
|
*/
|
|
5287
|
-
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';
|
|
5288
5570
|
};
|
|
5289
5571
|
type ReviewControllerFindOneResponse = ReviewDetailDto;
|
|
5290
5572
|
type ReviewControllerResolveData = {
|
|
@@ -5295,7 +5577,7 @@ type ReviewControllerResolveData = {
|
|
|
5295
5577
|
/**
|
|
5296
5578
|
* Region code for tenant context
|
|
5297
5579
|
*/
|
|
5298
|
-
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';
|
|
5299
5581
|
requestBody: ResolveReviewDto;
|
|
5300
5582
|
};
|
|
5301
5583
|
type ReviewControllerResolveResponse = ResolveResultDto;
|
|
@@ -5307,14 +5589,14 @@ type ReviewControllerUndoData = {
|
|
|
5307
5589
|
/**
|
|
5308
5590
|
* Region code for tenant context
|
|
5309
5591
|
*/
|
|
5310
|
-
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';
|
|
5311
5593
|
};
|
|
5312
5594
|
type ReviewControllerUndoResponse = UndoResultDto;
|
|
5313
5595
|
type ReviewControllerBatchResolveData = {
|
|
5314
5596
|
/**
|
|
5315
5597
|
* Region code for tenant context
|
|
5316
5598
|
*/
|
|
5317
|
-
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';
|
|
5318
5600
|
/**
|
|
5319
5601
|
* Batch resolution request containing review IDs and action
|
|
5320
5602
|
*/
|
|
@@ -5459,7 +5741,7 @@ type CommodityControllerCreateData = {
|
|
|
5459
5741
|
/**
|
|
5460
5742
|
* Region code for tenant context
|
|
5461
5743
|
*/
|
|
5462
|
-
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';
|
|
5463
5745
|
requestBody: CreateCommodityDto;
|
|
5464
5746
|
};
|
|
5465
5747
|
type CommodityControllerCreateResponse = CommodityResponseDto;
|
|
@@ -5467,7 +5749,7 @@ type CommodityControllerFindAllData = {
|
|
|
5467
5749
|
/**
|
|
5468
5750
|
* Region code for tenant context
|
|
5469
5751
|
*/
|
|
5470
|
-
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';
|
|
5471
5753
|
/**
|
|
5472
5754
|
* Search term for symbol or metadata fields (partial match). Searches symbol and metadata.name.
|
|
5473
5755
|
*/
|
|
@@ -5482,7 +5764,7 @@ type CommodityControllerFindOneData = {
|
|
|
5482
5764
|
/**
|
|
5483
5765
|
* Region code for tenant context
|
|
5484
5766
|
*/
|
|
5485
|
-
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';
|
|
5486
5768
|
/**
|
|
5487
5769
|
* Commodity symbol
|
|
5488
5770
|
*/
|
|
@@ -5493,7 +5775,7 @@ type CommodityControllerUpdateData = {
|
|
|
5493
5775
|
/**
|
|
5494
5776
|
* Region code for tenant context
|
|
5495
5777
|
*/
|
|
5496
|
-
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';
|
|
5497
5779
|
requestBody: UpdateCommodityDto;
|
|
5498
5780
|
/**
|
|
5499
5781
|
* Commodity symbol
|
|
@@ -5505,7 +5787,7 @@ type CommodityControllerDeleteData = {
|
|
|
5505
5787
|
/**
|
|
5506
5788
|
* Region code for tenant context
|
|
5507
5789
|
*/
|
|
5508
|
-
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';
|
|
5509
5791
|
/**
|
|
5510
5792
|
* Commodity symbol
|
|
5511
5793
|
*/
|
|
@@ -5516,7 +5798,7 @@ type CommodityControllerGetOrCreateData = {
|
|
|
5516
5798
|
/**
|
|
5517
5799
|
* Region code for tenant context
|
|
5518
5800
|
*/
|
|
5519
|
-
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';
|
|
5520
5802
|
/**
|
|
5521
5803
|
* Commodity symbol
|
|
5522
5804
|
*/
|
|
@@ -5527,14 +5809,14 @@ type CommodityControllerBulkCreateData = {
|
|
|
5527
5809
|
/**
|
|
5528
5810
|
* Region code for tenant context
|
|
5529
5811
|
*/
|
|
5530
|
-
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';
|
|
5531
5813
|
};
|
|
5532
5814
|
type CommodityControllerBulkCreateResponse = Array<CommodityResponseDto>;
|
|
5533
5815
|
type PriceControllerCreateData = {
|
|
5534
5816
|
/**
|
|
5535
5817
|
* Region code for tenant context
|
|
5536
5818
|
*/
|
|
5537
|
-
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';
|
|
5538
5820
|
requestBody: CreateBeanPriceDto;
|
|
5539
5821
|
};
|
|
5540
5822
|
type PriceControllerCreateResponse = PriceResponseDto;
|
|
@@ -5566,7 +5848,7 @@ type PriceControllerFindAllData = {
|
|
|
5566
5848
|
/**
|
|
5567
5849
|
* Region code for tenant context
|
|
5568
5850
|
*/
|
|
5569
|
-
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';
|
|
5570
5852
|
/**
|
|
5571
5853
|
* Search term for currency or quoteCurrency (case-insensitive partial match)
|
|
5572
5854
|
*/
|
|
@@ -5581,7 +5863,7 @@ type PriceControllerFindOneData = {
|
|
|
5581
5863
|
/**
|
|
5582
5864
|
* Region code for tenant context
|
|
5583
5865
|
*/
|
|
5584
|
-
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';
|
|
5585
5867
|
};
|
|
5586
5868
|
type PriceControllerFindOneResponse = PriceResponseDto;
|
|
5587
5869
|
type PriceControllerUpdateData = {
|
|
@@ -5592,7 +5874,7 @@ type PriceControllerUpdateData = {
|
|
|
5592
5874
|
/**
|
|
5593
5875
|
* Region code for tenant context
|
|
5594
5876
|
*/
|
|
5595
|
-
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';
|
|
5596
5878
|
requestBody: UpdateBeanPriceDto;
|
|
5597
5879
|
};
|
|
5598
5880
|
type PriceControllerUpdateResponse = PriceResponseDto;
|
|
@@ -5604,14 +5886,14 @@ type PriceControllerDeleteData = {
|
|
|
5604
5886
|
/**
|
|
5605
5887
|
* Region code for tenant context
|
|
5606
5888
|
*/
|
|
5607
|
-
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';
|
|
5608
5890
|
};
|
|
5609
5891
|
type PriceControllerDeleteResponse = void;
|
|
5610
5892
|
type PriceControllerBulkCreateData = {
|
|
5611
5893
|
/**
|
|
5612
5894
|
* Region code for tenant context
|
|
5613
5895
|
*/
|
|
5614
|
-
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';
|
|
5615
5897
|
requestBody: Array<string>;
|
|
5616
5898
|
};
|
|
5617
5899
|
type PriceControllerBulkCreateResponse = Array<PriceResponseDto>;
|
|
@@ -5619,7 +5901,7 @@ type RecurringRuleControllerCreateData = {
|
|
|
5619
5901
|
/**
|
|
5620
5902
|
* Region code for tenant context
|
|
5621
5903
|
*/
|
|
5622
|
-
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';
|
|
5623
5905
|
requestBody: CreateRecurringRuleDto;
|
|
5624
5906
|
};
|
|
5625
5907
|
type RecurringRuleControllerCreateResponse = RecurringRuleResponseDto;
|
|
@@ -5639,14 +5921,14 @@ type RecurringRuleControllerFindAllData = {
|
|
|
5639
5921
|
/**
|
|
5640
5922
|
* Region code for tenant context
|
|
5641
5923
|
*/
|
|
5642
|
-
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';
|
|
5643
5925
|
};
|
|
5644
5926
|
type RecurringRuleControllerFindAllResponse = Array<RecurringRuleResponseDto>;
|
|
5645
5927
|
type RecurringRuleControllerCreateFromTransactionData = {
|
|
5646
5928
|
/**
|
|
5647
5929
|
* Region code for tenant context
|
|
5648
5930
|
*/
|
|
5649
|
-
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';
|
|
5650
5932
|
requestBody: CreateRuleFromTransactionDto;
|
|
5651
5933
|
/**
|
|
5652
5934
|
* Source transaction ID
|
|
@@ -5662,7 +5944,7 @@ type RecurringRuleControllerFindOneData = {
|
|
|
5662
5944
|
/**
|
|
5663
5945
|
* Region code for tenant context
|
|
5664
5946
|
*/
|
|
5665
|
-
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';
|
|
5666
5948
|
};
|
|
5667
5949
|
type RecurringRuleControllerFindOneResponse = RecurringRuleResponseDto;
|
|
5668
5950
|
type RecurringRuleControllerUpdateData = {
|
|
@@ -5673,7 +5955,7 @@ type RecurringRuleControllerUpdateData = {
|
|
|
5673
5955
|
/**
|
|
5674
5956
|
* Region code for tenant context
|
|
5675
5957
|
*/
|
|
5676
|
-
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';
|
|
5677
5959
|
requestBody: UpdateRecurringRuleDto;
|
|
5678
5960
|
};
|
|
5679
5961
|
type RecurringRuleControllerUpdateResponse = RecurringRuleResponseDto;
|
|
@@ -5685,7 +5967,7 @@ type RecurringRuleControllerDeleteData = {
|
|
|
5685
5967
|
/**
|
|
5686
5968
|
* Region code for tenant context
|
|
5687
5969
|
*/
|
|
5688
|
-
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';
|
|
5689
5971
|
};
|
|
5690
5972
|
type RecurringRuleControllerDeleteResponse = void;
|
|
5691
5973
|
type RecurringRuleControllerGetWithStatsData = {
|
|
@@ -5696,7 +5978,7 @@ type RecurringRuleControllerGetWithStatsData = {
|
|
|
5696
5978
|
/**
|
|
5697
5979
|
* Region code for tenant context
|
|
5698
5980
|
*/
|
|
5699
|
-
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';
|
|
5700
5982
|
};
|
|
5701
5983
|
type RecurringRuleControllerGetWithStatsResponse = RecurringRuleWithStatsResponseDto;
|
|
5702
5984
|
type ExpectedTransactionControllerFindAllData = {
|
|
@@ -5707,7 +5989,7 @@ type ExpectedTransactionControllerFindAllData = {
|
|
|
5707
5989
|
/**
|
|
5708
5990
|
* Region code for tenant context
|
|
5709
5991
|
*/
|
|
5710
|
-
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';
|
|
5711
5993
|
/**
|
|
5712
5994
|
* Filter by recurring rule ID
|
|
5713
5995
|
*/
|
|
@@ -5726,7 +6008,7 @@ type ExpectedTransactionControllerFindOverdueData = {
|
|
|
5726
6008
|
/**
|
|
5727
6009
|
* Region code for tenant context
|
|
5728
6010
|
*/
|
|
5729
|
-
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';
|
|
5730
6012
|
};
|
|
5731
6013
|
type ExpectedTransactionControllerFindOverdueResponse = ExpectedTransactionListResponseDto;
|
|
5732
6014
|
type ExpectedTransactionControllerFindOneData = {
|
|
@@ -5737,7 +6019,7 @@ type ExpectedTransactionControllerFindOneData = {
|
|
|
5737
6019
|
/**
|
|
5738
6020
|
* Region code for tenant context
|
|
5739
6021
|
*/
|
|
5740
|
-
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';
|
|
5741
6023
|
};
|
|
5742
6024
|
type ExpectedTransactionControllerFindOneResponse = ExpectedTransactionResponseDto;
|
|
5743
6025
|
type ExpectedTransactionControllerSkipData = {
|
|
@@ -5748,7 +6030,7 @@ type ExpectedTransactionControllerSkipData = {
|
|
|
5748
6030
|
/**
|
|
5749
6031
|
* Region code for tenant context
|
|
5750
6032
|
*/
|
|
5751
|
-
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';
|
|
5752
6034
|
};
|
|
5753
6035
|
type ExpectedTransactionControllerSkipResponse = ExpectedTransactionResponseDto;
|
|
5754
6036
|
type ExpectedTransactionControllerUndoSkipData = {
|
|
@@ -5759,7 +6041,7 @@ type ExpectedTransactionControllerUndoSkipData = {
|
|
|
5759
6041
|
/**
|
|
5760
6042
|
* Region code for tenant context
|
|
5761
6043
|
*/
|
|
5762
|
-
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';
|
|
5763
6045
|
};
|
|
5764
6046
|
type ExpectedTransactionControllerUndoSkipResponse = ExpectedTransactionResponseDto;
|
|
5765
6047
|
type ExpectedTransactionControllerConfirmMatchData = {
|
|
@@ -5770,7 +6052,7 @@ type ExpectedTransactionControllerConfirmMatchData = {
|
|
|
5770
6052
|
/**
|
|
5771
6053
|
* Region code for tenant context
|
|
5772
6054
|
*/
|
|
5773
|
-
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';
|
|
5774
6056
|
requestBody: ConfirmMatchDto;
|
|
5775
6057
|
};
|
|
5776
6058
|
type ExpectedTransactionControllerConfirmMatchResponse = unknown;
|
|
@@ -5782,7 +6064,7 @@ type ExpectedTransactionControllerUnmatchData = {
|
|
|
5782
6064
|
/**
|
|
5783
6065
|
* Region code for tenant context
|
|
5784
6066
|
*/
|
|
5785
|
-
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';
|
|
5786
6068
|
};
|
|
5787
6069
|
type ExpectedTransactionControllerUnmatchResponse = unknown;
|
|
5788
6070
|
type ExpectedTransactionControllerEnterNowData = {
|
|
@@ -5793,7 +6075,7 @@ type ExpectedTransactionControllerEnterNowData = {
|
|
|
5793
6075
|
/**
|
|
5794
6076
|
* Region code for tenant context
|
|
5795
6077
|
*/
|
|
5796
|
-
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';
|
|
5797
6079
|
requestBody: EnterNowDto;
|
|
5798
6080
|
};
|
|
5799
6081
|
type ExpectedTransactionControllerEnterNowResponse = unknown;
|
|
@@ -5805,7 +6087,7 @@ type ForecastControllerGetForecastData = {
|
|
|
5805
6087
|
/**
|
|
5806
6088
|
* Region code for tenant context
|
|
5807
6089
|
*/
|
|
5808
|
-
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';
|
|
5809
6091
|
};
|
|
5810
6092
|
type ForecastControllerGetForecastResponse = ForecastResponseDto;
|
|
5811
6093
|
type ReportingControllerGetPortfolioTrendsData = {
|
|
@@ -5820,7 +6102,7 @@ type ReportingControllerGetPortfolioTrendsData = {
|
|
|
5820
6102
|
/**
|
|
5821
6103
|
* Region code for tenant context
|
|
5822
6104
|
*/
|
|
5823
|
-
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';
|
|
5824
6106
|
};
|
|
5825
6107
|
type ReportingControllerGetPortfolioTrendsResponse = PortfolioTrendsResponseDto;
|
|
5826
6108
|
type ReportingControllerGetCashFlowTrendsData = {
|
|
@@ -5835,14 +6117,14 @@ type ReportingControllerGetCashFlowTrendsData = {
|
|
|
5835
6117
|
/**
|
|
5836
6118
|
* Region code for tenant context
|
|
5837
6119
|
*/
|
|
5838
|
-
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';
|
|
5839
6121
|
};
|
|
5840
6122
|
type ReportingControllerGetCashFlowTrendsResponse = CashFlowTrendsResponseDto;
|
|
5841
6123
|
type ReportingControllerGenerateSnapshotData = {
|
|
5842
6124
|
/**
|
|
5843
6125
|
* Region code for tenant context
|
|
5844
6126
|
*/
|
|
5845
|
-
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';
|
|
5846
6128
|
/**
|
|
5847
6129
|
* Optional date (defaults to today)
|
|
5848
6130
|
*/
|
|
@@ -5853,7 +6135,7 @@ type ReportingControllerBackfillSnapshotsData = {
|
|
|
5853
6135
|
/**
|
|
5854
6136
|
* Region code for tenant context
|
|
5855
6137
|
*/
|
|
5856
|
-
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';
|
|
5857
6139
|
requestBody: BackfillSnapshotsBody;
|
|
5858
6140
|
};
|
|
5859
6141
|
type ReportingControllerBackfillSnapshotsResponse = BackfillSnapshotsResponse;
|
|
@@ -5864,7 +6146,7 @@ type UserControllerDeleteOwnUserResponse = void;
|
|
|
5864
6146
|
type UserControllerGetUserData = {
|
|
5865
6147
|
acceptLanguage: string;
|
|
5866
6148
|
};
|
|
5867
|
-
type UserControllerGetUserResponse =
|
|
6149
|
+
type UserControllerGetUserResponse = UserResponseDto;
|
|
5868
6150
|
type UserControllerSignupUserData = {
|
|
5869
6151
|
requestBody: SignupDto;
|
|
5870
6152
|
};
|
|
@@ -5926,7 +6208,7 @@ type TransactionRuleControllerCreateData = {
|
|
|
5926
6208
|
/**
|
|
5927
6209
|
* Region code for tenant context
|
|
5928
6210
|
*/
|
|
5929
|
-
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';
|
|
5930
6212
|
requestBody: CreateTransactionRuleDto;
|
|
5931
6213
|
};
|
|
5932
6214
|
type TransactionRuleControllerCreateResponse = TransactionRuleResponseDto;
|
|
@@ -5954,14 +6236,14 @@ type TransactionRuleControllerListData = {
|
|
|
5954
6236
|
/**
|
|
5955
6237
|
* Region code for tenant context
|
|
5956
6238
|
*/
|
|
5957
|
-
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';
|
|
5958
6240
|
};
|
|
5959
6241
|
type TransactionRuleControllerListResponse = TransactionRuleListResponseDto;
|
|
5960
6242
|
type TransactionRuleControllerValidateData = {
|
|
5961
6243
|
/**
|
|
5962
6244
|
* Region code for tenant context
|
|
5963
6245
|
*/
|
|
5964
|
-
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';
|
|
5965
6247
|
requestBody: ValidateRuleDto;
|
|
5966
6248
|
};
|
|
5967
6249
|
type TransactionRuleControllerValidateResponse = ValidateRuleResponseDto;
|
|
@@ -5969,7 +6251,7 @@ type TransactionRuleControllerBulkCreateData = {
|
|
|
5969
6251
|
/**
|
|
5970
6252
|
* Region code for tenant context
|
|
5971
6253
|
*/
|
|
5972
|
-
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';
|
|
5973
6255
|
requestBody: BulkCreateRulesDto;
|
|
5974
6256
|
};
|
|
5975
6257
|
type TransactionRuleControllerBulkCreateResponse = BulkCreateRulesResponseDto;
|
|
@@ -5981,7 +6263,7 @@ type TransactionRuleControllerExportData = {
|
|
|
5981
6263
|
/**
|
|
5982
6264
|
* Region code for tenant context
|
|
5983
6265
|
*/
|
|
5984
|
-
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';
|
|
5985
6267
|
};
|
|
5986
6268
|
type TransactionRuleControllerExportResponse = ExportRulesResponseDto;
|
|
5987
6269
|
type TransactionRuleControllerGetStatisticsData = {
|
|
@@ -5992,14 +6274,14 @@ type TransactionRuleControllerGetStatisticsData = {
|
|
|
5992
6274
|
/**
|
|
5993
6275
|
* Region code for tenant context
|
|
5994
6276
|
*/
|
|
5995
|
-
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';
|
|
5996
6278
|
};
|
|
5997
6279
|
type TransactionRuleControllerGetStatisticsResponse = RuleStatisticsResponseDto;
|
|
5998
6280
|
type TransactionRuleControllerGetDetailData = {
|
|
5999
6281
|
/**
|
|
6000
6282
|
* Region code for tenant context
|
|
6001
6283
|
*/
|
|
6002
|
-
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';
|
|
6003
6285
|
/**
|
|
6004
6286
|
* Rule ID
|
|
6005
6287
|
*/
|
|
@@ -6010,7 +6292,7 @@ type TransactionRuleControllerUpdateData = {
|
|
|
6010
6292
|
/**
|
|
6011
6293
|
* Region code for tenant context
|
|
6012
6294
|
*/
|
|
6013
|
-
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';
|
|
6014
6296
|
requestBody: UpdateTransactionRuleDto;
|
|
6015
6297
|
/**
|
|
6016
6298
|
* Rule ID to update
|
|
@@ -6022,7 +6304,7 @@ type TransactionRuleControllerDeleteData = {
|
|
|
6022
6304
|
/**
|
|
6023
6305
|
* Region code for tenant context
|
|
6024
6306
|
*/
|
|
6025
|
-
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';
|
|
6026
6308
|
/**
|
|
6027
6309
|
* Rule ID to delete
|
|
6028
6310
|
*/
|
|
@@ -6033,7 +6315,7 @@ type TransactionRuleControllerTestData = {
|
|
|
6033
6315
|
/**
|
|
6034
6316
|
* Region code for tenant context
|
|
6035
6317
|
*/
|
|
6036
|
-
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';
|
|
6037
6319
|
requestBody: TestRuleDto;
|
|
6038
6320
|
/**
|
|
6039
6321
|
* Rule ID to test
|
|
@@ -6041,11 +6323,26 @@ type TransactionRuleControllerTestData = {
|
|
|
6041
6323
|
ruleId: string;
|
|
6042
6324
|
};
|
|
6043
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;
|
|
6044
6341
|
type EventControllerCreateData = {
|
|
6045
6342
|
/**
|
|
6046
6343
|
* Region code for tenant context (decorative for life events)
|
|
6047
6344
|
*/
|
|
6048
|
-
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';
|
|
6049
6346
|
requestBody: CreateBeanEventDto;
|
|
6050
6347
|
};
|
|
6051
6348
|
type EventControllerCreateResponse = EventResponseDto;
|
|
@@ -6069,7 +6366,7 @@ type EventControllerFindAllData = {
|
|
|
6069
6366
|
/**
|
|
6070
6367
|
* Region code for tenant context (decorative for life events)
|
|
6071
6368
|
*/
|
|
6072
|
-
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';
|
|
6073
6370
|
/**
|
|
6074
6371
|
* Filter life events to this date (ISO 8601 format)
|
|
6075
6372
|
*/
|
|
@@ -6088,7 +6385,7 @@ type EventControllerFindOneData = {
|
|
|
6088
6385
|
/**
|
|
6089
6386
|
* Region code for tenant context (decorative for life events)
|
|
6090
6387
|
*/
|
|
6091
|
-
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';
|
|
6092
6389
|
};
|
|
6093
6390
|
type EventControllerFindOneResponse = EventResponseDto;
|
|
6094
6391
|
type EventControllerUpdateData = {
|
|
@@ -6099,7 +6396,7 @@ type EventControllerUpdateData = {
|
|
|
6099
6396
|
/**
|
|
6100
6397
|
* Region code for tenant context (decorative for life events)
|
|
6101
6398
|
*/
|
|
6102
|
-
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';
|
|
6103
6400
|
requestBody: UpdateBeanEventDto;
|
|
6104
6401
|
};
|
|
6105
6402
|
type EventControllerUpdateResponse = EventResponseDto;
|
|
@@ -6111,7 +6408,7 @@ type EventControllerDeleteData = {
|
|
|
6111
6408
|
/**
|
|
6112
6409
|
* Region code for tenant context (decorative for life events)
|
|
6113
6410
|
*/
|
|
6114
|
-
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';
|
|
6115
6412
|
};
|
|
6116
6413
|
type EventControllerDeleteResponse = void;
|
|
6117
6414
|
type EventControllerGetSliceData = {
|
|
@@ -6124,14 +6421,14 @@ type EventControllerGetSliceData = {
|
|
|
6124
6421
|
/**
|
|
6125
6422
|
* Region code for tenant context (decorative for life events)
|
|
6126
6423
|
*/
|
|
6127
|
-
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';
|
|
6128
6425
|
};
|
|
6129
6426
|
type EventControllerGetSliceResponse = unknown;
|
|
6130
6427
|
type OnboardingControllerBootstrapData = {
|
|
6131
6428
|
/**
|
|
6132
6429
|
* Region code for tenant context
|
|
6133
6430
|
*/
|
|
6134
|
-
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';
|
|
6135
6432
|
requestBody: OnboardingDto;
|
|
6136
6433
|
};
|
|
6137
6434
|
type OnboardingControllerBootstrapResponse = unknown;
|
|
@@ -6139,7 +6436,7 @@ type ReconciliationControllerComputeData = {
|
|
|
6139
6436
|
/**
|
|
6140
6437
|
* Region code for tenant context (decorative for reconciliation)
|
|
6141
6438
|
*/
|
|
6142
|
-
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';
|
|
6143
6440
|
requestBody: ComputeReconciliationDto;
|
|
6144
6441
|
};
|
|
6145
6442
|
type ReconciliationControllerComputeResponse = ReconciliationComputeResultDto;
|
|
@@ -6147,7 +6444,7 @@ type ReconciliationControllerAssertData = {
|
|
|
6147
6444
|
/**
|
|
6148
6445
|
* Region code for tenant context (decorative for reconciliation)
|
|
6149
6446
|
*/
|
|
6150
|
-
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';
|
|
6151
6448
|
requestBody: AssertReconciliationDto;
|
|
6152
6449
|
};
|
|
6153
6450
|
type ReconciliationControllerAssertResponse = ReconciliationRecordDto;
|
|
@@ -6155,7 +6452,7 @@ type ReconciliationControllerPadData = {
|
|
|
6155
6452
|
/**
|
|
6156
6453
|
* Region code for tenant context (decorative for reconciliation)
|
|
6157
6454
|
*/
|
|
6158
|
-
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';
|
|
6159
6456
|
requestBody: PadReconciliationDto;
|
|
6160
6457
|
};
|
|
6161
6458
|
type ReconciliationControllerPadResponse = PadResultDto;
|
|
@@ -6167,7 +6464,7 @@ type ReconciliationControllerHistoryData = {
|
|
|
6167
6464
|
/**
|
|
6168
6465
|
* Region code for tenant context (decorative for reconciliation)
|
|
6169
6466
|
*/
|
|
6170
|
-
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';
|
|
6171
6468
|
};
|
|
6172
6469
|
type ReconciliationControllerHistoryResponse = Array<ReconciliationRecordDto>;
|
|
6173
6470
|
type ExportControllerExportBeancountResponse = unknown;
|
|
@@ -6179,7 +6476,7 @@ type FileImportControllerImportFileData = {
|
|
|
6179
6476
|
/**
|
|
6180
6477
|
* Region code for tenant context
|
|
6181
6478
|
*/
|
|
6182
|
-
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';
|
|
6183
6480
|
};
|
|
6184
6481
|
type FileImportControllerImportFileResponse = ImportResultDto;
|
|
6185
6482
|
type FileImportControllerIdentifyFileData = {
|
|
@@ -6190,7 +6487,7 @@ type FileImportControllerIdentifyFileData = {
|
|
|
6190
6487
|
/**
|
|
6191
6488
|
* Region code for tenant context
|
|
6192
6489
|
*/
|
|
6193
|
-
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';
|
|
6194
6491
|
};
|
|
6195
6492
|
type FileImportControllerIdentifyFileResponse = IdentifyResultDto;
|
|
6196
6493
|
type FileImportControllerImportBeancountData = {
|
|
@@ -6201,7 +6498,7 @@ type FileImportControllerImportBeancountData = {
|
|
|
6201
6498
|
/**
|
|
6202
6499
|
* Region code for tenant context
|
|
6203
6500
|
*/
|
|
6204
|
-
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';
|
|
6205
6502
|
};
|
|
6206
6503
|
type FileImportControllerImportBeancountResponse = {
|
|
6207
6504
|
imported?: number;
|
|
@@ -6220,7 +6517,7 @@ type ImporterConfigControllerGetConfigData = {
|
|
|
6220
6517
|
/**
|
|
6221
6518
|
* Region code for tenant context
|
|
6222
6519
|
*/
|
|
6223
|
-
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';
|
|
6224
6521
|
};
|
|
6225
6522
|
type ImporterConfigControllerGetConfigResponse = ImporterConfigDto;
|
|
6226
6523
|
type ImporterConfigControllerUpdateConfigData = {
|
|
@@ -6231,7 +6528,7 @@ type ImporterConfigControllerUpdateConfigData = {
|
|
|
6231
6528
|
/**
|
|
6232
6529
|
* Region code for tenant context
|
|
6233
6530
|
*/
|
|
6234
|
-
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';
|
|
6235
6532
|
/**
|
|
6236
6533
|
* Partial configuration update. Only provided fields will be updated.
|
|
6237
6534
|
*/
|
|
@@ -6246,7 +6543,7 @@ type ImporterConfigControllerResetConfigData = {
|
|
|
6246
6543
|
/**
|
|
6247
6544
|
* Region code for tenant context
|
|
6248
6545
|
*/
|
|
6249
|
-
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';
|
|
6250
6547
|
};
|
|
6251
6548
|
type ImporterConfigControllerResetConfigResponse = ImporterConfigDto;
|
|
6252
6549
|
type ProviderSyncControllerSyncData = {
|
|
@@ -6257,7 +6554,7 @@ type ProviderSyncControllerSyncData = {
|
|
|
6257
6554
|
/**
|
|
6258
6555
|
* Region code for tenant context
|
|
6259
6556
|
*/
|
|
6260
|
-
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';
|
|
6261
6558
|
requestBody: ProviderSyncDto;
|
|
6262
6559
|
};
|
|
6263
6560
|
type ProviderSyncControllerSyncResponse = ProviderSyncResponseDto;
|
|
@@ -6265,7 +6562,7 @@ type ProviderSyncControllerGetSupportedProvidersData = {
|
|
|
6265
6562
|
/**
|
|
6266
6563
|
* Region code for tenant context
|
|
6267
6564
|
*/
|
|
6268
|
-
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';
|
|
6269
6566
|
};
|
|
6270
6567
|
type ProviderSyncControllerGetSupportedProvidersResponse = SupportedProvidersResponseDto;
|
|
6271
6568
|
type ProviderSyncControllerIsProviderSupportedData = {
|
|
@@ -6276,14 +6573,14 @@ type ProviderSyncControllerIsProviderSupportedData = {
|
|
|
6276
6573
|
/**
|
|
6277
6574
|
* Region code for tenant context
|
|
6278
6575
|
*/
|
|
6279
|
-
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';
|
|
6280
6577
|
};
|
|
6281
6578
|
type ProviderSyncControllerIsProviderSupportedResponse = unknown;
|
|
6282
6579
|
type ExternalAccountLinkControllerCreateData = {
|
|
6283
6580
|
/**
|
|
6284
6581
|
* Region code for tenant context
|
|
6285
6582
|
*/
|
|
6286
|
-
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';
|
|
6287
6584
|
requestBody: CreateExternalAccountLinkDto;
|
|
6288
6585
|
};
|
|
6289
6586
|
type ExternalAccountLinkControllerCreateResponse = ExternalAccountLinkResponseDto;
|
|
@@ -6292,7 +6589,7 @@ type ExternalAccountLinkControllerFindAllData = {
|
|
|
6292
6589
|
/**
|
|
6293
6590
|
* Region code for tenant context
|
|
6294
6591
|
*/
|
|
6295
|
-
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';
|
|
6296
6593
|
};
|
|
6297
6594
|
type ExternalAccountLinkControllerFindAllResponse = ExternalAccountLinkListResponseDto;
|
|
6298
6595
|
type ExternalAccountLinkControllerFindOneData = {
|
|
@@ -6300,7 +6597,7 @@ type ExternalAccountLinkControllerFindOneData = {
|
|
|
6300
6597
|
/**
|
|
6301
6598
|
* Region code for tenant context
|
|
6302
6599
|
*/
|
|
6303
|
-
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';
|
|
6304
6601
|
};
|
|
6305
6602
|
type ExternalAccountLinkControllerFindOneResponse = ExternalAccountLinkResponseDto;
|
|
6306
6603
|
type ExternalAccountLinkControllerRemoveData = {
|
|
@@ -6308,14 +6605,14 @@ type ExternalAccountLinkControllerRemoveData = {
|
|
|
6308
6605
|
/**
|
|
6309
6606
|
* Region code for tenant context
|
|
6310
6607
|
*/
|
|
6311
|
-
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';
|
|
6312
6609
|
};
|
|
6313
6610
|
type ExternalAccountLinkControllerRemoveResponse = void;
|
|
6314
6611
|
type TelemetryControllerReportTelemetryData = {
|
|
6315
6612
|
/**
|
|
6316
6613
|
* Region code for tenant context
|
|
6317
6614
|
*/
|
|
6318
|
-
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';
|
|
6319
6616
|
requestBody: ParserTelemetryReportDto;
|
|
6320
6617
|
};
|
|
6321
6618
|
type TelemetryControllerReportTelemetryResponse = unknown;
|
|
@@ -6323,7 +6620,7 @@ type TelemetryControllerReportCoverageMissData = {
|
|
|
6323
6620
|
/**
|
|
6324
6621
|
* Region code for tenant context
|
|
6325
6622
|
*/
|
|
6326
|
-
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';
|
|
6327
6624
|
requestBody: UncoveredFormatMissDto;
|
|
6328
6625
|
};
|
|
6329
6626
|
type TelemetryControllerReportCoverageMissResponse = unknown;
|
|
@@ -6331,7 +6628,7 @@ type TelemetryControllerGetCoverageMetricsData = {
|
|
|
6331
6628
|
/**
|
|
6332
6629
|
* Region code for tenant context
|
|
6333
6630
|
*/
|
|
6334
|
-
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';
|
|
6335
6632
|
/**
|
|
6336
6633
|
* Top-N uncovered formats (default 10)
|
|
6337
6634
|
*/
|
|
@@ -6342,7 +6639,7 @@ type NlpControllerProcessNaturalLanguageData = {
|
|
|
6342
6639
|
/**
|
|
6343
6640
|
* Region code for tenant context
|
|
6344
6641
|
*/
|
|
6345
|
-
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';
|
|
6346
6643
|
/**
|
|
6347
6644
|
* Natural language transaction input with optional session ID
|
|
6348
6645
|
*/
|
|
@@ -6353,7 +6650,7 @@ type NlpControllerClearSessionData = {
|
|
|
6353
6650
|
/**
|
|
6354
6651
|
* Region code for tenant context
|
|
6355
6652
|
*/
|
|
6356
|
-
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';
|
|
6357
6654
|
/**
|
|
6358
6655
|
* Specific session ID to clear (defaults to user session)
|
|
6359
6656
|
*/
|
|
@@ -6364,7 +6661,7 @@ type NlpControllerGetSessionData = {
|
|
|
6364
6661
|
/**
|
|
6365
6662
|
* Region code for tenant context
|
|
6366
6663
|
*/
|
|
6367
|
-
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';
|
|
6368
6665
|
/**
|
|
6369
6666
|
* Specific session ID to get (defaults to user session)
|
|
6370
6667
|
*/
|
|
@@ -6376,6 +6673,12 @@ type PlatformControllerCreateData = {
|
|
|
6376
6673
|
requestBody: CreatePlatformDto;
|
|
6377
6674
|
};
|
|
6378
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
|
+
};
|
|
6379
6682
|
type PlatformControllerGetPlatformListResponse = Array<PlatformListItemDto>;
|
|
6380
6683
|
type PlatformControllerMatchPlatformsData = {
|
|
6381
6684
|
/**
|
|
@@ -6383,7 +6686,7 @@ type PlatformControllerMatchPlatformsData = {
|
|
|
6383
6686
|
*/
|
|
6384
6687
|
q: string;
|
|
6385
6688
|
/**
|
|
6386
|
-
* 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").
|
|
6387
6690
|
*/
|
|
6388
6691
|
region?: string;
|
|
6389
6692
|
};
|
|
@@ -6411,7 +6714,7 @@ type DashboardControllerGetNetWorthData = {
|
|
|
6411
6714
|
/**
|
|
6412
6715
|
* Region code for tenant context
|
|
6413
6716
|
*/
|
|
6414
|
-
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';
|
|
6415
6718
|
};
|
|
6416
6719
|
type DashboardControllerGetNetWorthResponse = NetWorthResponseDto;
|
|
6417
6720
|
type DashboardControllerGetAccountsData = {
|
|
@@ -6430,7 +6733,7 @@ type DashboardControllerGetAccountsData = {
|
|
|
6430
6733
|
/**
|
|
6431
6734
|
* Region code for tenant context
|
|
6432
6735
|
*/
|
|
6433
|
-
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';
|
|
6434
6737
|
};
|
|
6435
6738
|
type DashboardControllerGetAccountsResponse = AccountsResponseDto | AssetClassAccountsResponseDto | HoldingAssetClassCrossAccountResponseDto;
|
|
6436
6739
|
type DashboardControllerGetCashFlowData = {
|
|
@@ -6441,7 +6744,7 @@ type DashboardControllerGetCashFlowData = {
|
|
|
6441
6744
|
/**
|
|
6442
6745
|
* Region code for tenant context
|
|
6443
6746
|
*/
|
|
6444
|
-
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';
|
|
6445
6748
|
};
|
|
6446
6749
|
type DashboardControllerGetCashFlowResponse = CashFlowResponseDto;
|
|
6447
6750
|
type DashboardControllerGetExpensesData = {
|
|
@@ -6460,7 +6763,7 @@ type DashboardControllerGetExpensesData = {
|
|
|
6460
6763
|
/**
|
|
6461
6764
|
* Region code for tenant context
|
|
6462
6765
|
*/
|
|
6463
|
-
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';
|
|
6464
6767
|
};
|
|
6465
6768
|
type DashboardControllerGetExpensesResponse = ExpensesByCategoryResponseDto;
|
|
6466
6769
|
type HoldingPnlControllerGetHoldingPnlData = {
|
|
@@ -6479,7 +6782,7 @@ type HoldingPnlControllerGetHoldingPnlData = {
|
|
|
6479
6782
|
/**
|
|
6480
6783
|
* Region code for tenant context
|
|
6481
6784
|
*/
|
|
6482
|
-
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';
|
|
6483
6786
|
};
|
|
6484
6787
|
type HoldingPnlControllerGetHoldingPnlResponse = HoldingPnlResponseDto;
|
|
6485
6788
|
type ApiKeysControllerCreateApiKeyResponse = unknown;
|
|
@@ -6513,6 +6816,29 @@ type HealthControllerResetCircuitBreakerData = {
|
|
|
6513
6816
|
type HealthControllerResetCircuitBreakerResponse = unknown;
|
|
6514
6817
|
type HealthControllerGetMetricsResponse = unknown;
|
|
6515
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;
|
|
6516
6842
|
type $OpenApiTs = {
|
|
6517
6843
|
'/api/v1/{region}/bean/accounts': {
|
|
6518
6844
|
post: {
|
|
@@ -6577,7 +6903,7 @@ type $OpenApiTs = {
|
|
|
6577
6903
|
*/
|
|
6578
6904
|
404: unknown;
|
|
6579
6905
|
/**
|
|
6580
|
-
* Account has transactions and cannot be deleted
|
|
6906
|
+
* Account has active transactions and cannot be deleted
|
|
6581
6907
|
*/
|
|
6582
6908
|
409: unknown;
|
|
6583
6909
|
};
|
|
@@ -7674,7 +8000,7 @@ type $OpenApiTs = {
|
|
|
7674
8000
|
/**
|
|
7675
8001
|
* User retrieved successfully
|
|
7676
8002
|
*/
|
|
7677
|
-
200:
|
|
8003
|
+
200: UserResponseDto;
|
|
7678
8004
|
};
|
|
7679
8005
|
};
|
|
7680
8006
|
post: {
|
|
@@ -8048,6 +8374,17 @@ type $OpenApiTs = {
|
|
|
8048
8374
|
};
|
|
8049
8375
|
};
|
|
8050
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
|
+
};
|
|
8051
8388
|
'/api/v1/{region}/bean/events': {
|
|
8052
8389
|
post: {
|
|
8053
8390
|
req: EventControllerCreateData;
|
|
@@ -8587,6 +8924,7 @@ type $OpenApiTs = {
|
|
|
8587
8924
|
};
|
|
8588
8925
|
'/api/v1/bean/platforms/list': {
|
|
8589
8926
|
get: {
|
|
8927
|
+
req: PlatformControllerGetPlatformListData;
|
|
8590
8928
|
res: {
|
|
8591
8929
|
/**
|
|
8592
8930
|
* List of platforms with user binding status
|
|
@@ -8889,6 +9227,32 @@ type $OpenApiTs = {
|
|
|
8889
9227
|
};
|
|
8890
9228
|
};
|
|
8891
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
|
+
};
|
|
8892
9256
|
};
|
|
8893
9257
|
|
|
8894
9258
|
declare class BeanAccountsService {
|
|
@@ -8940,7 +9304,7 @@ declare class BeanAccountsService {
|
|
|
8940
9304
|
static accountControllerUpdate(data: AccountControllerUpdateData): CancelablePromise<AccountControllerUpdateResponse>;
|
|
8941
9305
|
/**
|
|
8942
9306
|
* Delete account
|
|
8943
|
-
* Deletes an account (only if no transactions)
|
|
9307
|
+
* Deletes an account (only if no active transactions; voided/superseded residual postings are cleaned up)
|
|
8944
9308
|
* @param data The data for the request.
|
|
8945
9309
|
* @param data.id Account UUID
|
|
8946
9310
|
* @param data.region Region code for tenant context
|
|
@@ -9312,4 +9676,4 @@ type OpenAPIConfig = {
|
|
|
9312
9676
|
};
|
|
9313
9677
|
declare const OpenAPI: OpenAPIConfig;
|
|
9314
9678
|
|
|
9315
|
-
export { type $OpenApiTs, type AccountControllerAddOpeningBalanceData, type AccountControllerAddOpeningBalanceResponse, type AccountControllerCloseData, type AccountControllerCloseResponse, type AccountControllerCreateData, type AccountControllerCreateResponse, type AccountControllerDeleteData, type AccountControllerDeleteResponse, type AccountControllerFindAllData, type AccountControllerFindAllResponse, type AccountControllerFindOneData, type AccountControllerFindOneResponse, type AccountControllerReopenData, type AccountControllerReopenResponse, type AccountControllerUpdateData, type AccountControllerUpdateResponse, type AccountExchangeRateWarningDto, type AccountItemDto, type AccountItemWithAssetClassDto, type AccountListResponseDto, type AccountResponseDto, type AccountStandardListResponseDto, type AccountStandardResponseDto, type AccountStandardsControllerGetRegionsData, type AccountStandardsControllerGetRegionsResponse, type AccountStandardsControllerGetTemplateMetadataData, type AccountStandardsControllerGetTemplateMetadataResponse, type AccountStandardsControllerGetTemplatesData, type AccountStandardsControllerGetTemplatesResponse, type AccountsResponseDto, type AccountsSummaryDto, type ActualBalanceDto, type AmountDto, type AmountRangeDto, type AnonymousLoginDto, type AnonymousLoginResponseDto, type ApiKeysControllerCreateApiKeyResponse, type ApiProblemResponseDto, type AssertReconciliationDto, type AssetClassAccountsResponseDto, type AssetClassGroupDto, type AssetClassSummaryDto, type AuthControllerAccessTokenLoginData, type AuthControllerAccessTokenLoginResponse, type BackfillSnapshotsBody, type BackfillSnapshotsResponse, type BalanceByCurrencyDto, type BalanceControllerGetBalanceData, type BalanceControllerGetBalanceResponse, type BalanceControllerGetMultiCurrencyBalanceData, type BalanceControllerGetMultiCurrencyBalanceResponse, type BalanceResponseDto, type BatchCreateTransactionDto, type BatchResolveDto, type BatchResolveResultDto, type BatchTransactionErrorDto, type BatchTransactionResponseDto, BeanAccountsService, BeanBalancesService, BeanCommoditiesService, BeanTransactionsService, type BulkCreateRulesDto, type BulkCreateRulesResponseDto, type CacheControllerFlushCacheResponse, type CashFlowByCurrencyDto, type CashFlowPointDto, type CashFlowResponseDto, type CashFlowTrendSummaryDto, type CashFlowTrendsResponseDto, type CategoryGroupDto, type CloseAccountDto, type CommodityControllerBulkCreateData, type CommodityControllerBulkCreateResponse, type CommodityControllerCreateData, type CommodityControllerCreateResponse, type CommodityControllerDeleteData, type CommodityControllerDeleteResponse, type CommodityControllerFindAllData, type CommodityControllerFindAllResponse, type CommodityControllerFindOneData, type CommodityControllerFindOneResponse, type CommodityControllerGetOrCreateData, type CommodityControllerGetOrCreateResponse, type CommodityControllerUpdateData, type CommodityControllerUpdateResponse, type CommodityListResponseDto, type CommodityResponseDto, type ComputeReconciliationDto, type ConfirmMatchDto, type ConvertedCashFlowDto, type ConvertedNetWorthDto, type CorrectTransactionDto, type CostDetailDto, type CostSpecDto, type CreateAccountDto, type CreateBeanEventDto, type CreateBeanPriceDto, type CreateCommodityDto, type CreateExternalAccountLinkDto, type CreateOpeningBalanceDto, type CreatePayeeDto, type CreatePayeeProfileDto, type CreatePlatformDto, type CreatePostingDto, type CreateRecurringRuleDto, type CreateRuleFromTransactionDto, type CreateTransactionDto, type CreateTransactionRuleDto, type CurrencyBalanceDto, type CurrentPriceDto, type DashboardControllerGetAccountsData, type DashboardControllerGetAccountsResponse, type DashboardControllerGetCashFlowData, type DashboardControllerGetCashFlowResponse, type DashboardControllerGetExpensesData, type DashboardControllerGetExpensesResponse, type DashboardControllerGetNetWorthData, type DashboardControllerGetNetWorthResponse, type DecisionOptionDto, type DeleteOwnUserDto, type EnterNowDto, type EventControllerCreateData, type EventControllerCreateResponse, type EventControllerDeleteData, type EventControllerDeleteResponse, type EventControllerFindAllData, type EventControllerFindAllResponse, type EventControllerFindOneData, type EventControllerFindOneResponse, type EventControllerGetSliceData, type EventControllerGetSliceResponse, type EventControllerUpdateData, type EventControllerUpdateResponse, type EventListResponseDto, type EventResponseDto, type ExchangeRateControllerGetExchangeRateData, type ExchangeRateControllerGetExchangeRateResponse, type ExchangeRateWarningDto, type ExpectedTransactionControllerConfirmMatchData, type ExpectedTransactionControllerConfirmMatchResponse, type ExpectedTransactionControllerEnterNowData, type ExpectedTransactionControllerEnterNowResponse, type ExpectedTransactionControllerFindAllData, type ExpectedTransactionControllerFindAllResponse, type ExpectedTransactionControllerFindOneData, type ExpectedTransactionControllerFindOneResponse, type ExpectedTransactionControllerFindOverdueData, type ExpectedTransactionControllerFindOverdueResponse, type ExpectedTransactionControllerSkipData, type ExpectedTransactionControllerSkipResponse, type ExpectedTransactionControllerUndoSkipData, type ExpectedTransactionControllerUndoSkipResponse, type ExpectedTransactionControllerUnmatchData, type ExpectedTransactionControllerUnmatchResponse, type ExpectedTransactionListResponseDto, type ExpectedTransactionResponseDto, type ExpectedTransactionRuleDto, type ExpensesByCategoryResponseDto, type ExpensesByCategorySummaryDto, type ExportControllerExportBeancountResponse, type ExportRulesResponseDto, type ExternalAccountLinkControllerCreateData, type ExternalAccountLinkControllerCreateResponse, type ExternalAccountLinkControllerFindAllData, type ExternalAccountLinkControllerFindAllResponse, type ExternalAccountLinkControllerFindOneData, type ExternalAccountLinkControllerFindOneResponse, type ExternalAccountLinkControllerRemoveData, type ExternalAccountLinkControllerRemoveResponse, type ExternalAccountLinkListResponseDto, type ExternalAccountLinkResponseDto, type FileImportControllerIdentifyFileData, type FileImportControllerIdentifyFileResponse, type FileImportControllerImportBeancountData, type FileImportControllerImportBeancountResponse, type FileImportControllerImportFileData, type FileImportControllerImportFileResponse, type FileImportDto, type ForecastControllerGetForecastData, type ForecastControllerGetForecastResponse, type ForecastItemDto, type ForecastResponseDto, type FxRateDto, type GenerateSnapshotBody, type GenerateSnapshotResponse, type HealthControllerCheckDatabaseResponse, type HealthControllerCheckOpenBbResponse, type HealthControllerCheckRedisResponse, type HealthControllerGetCircuitBreakersHealthResponse, type HealthControllerGetHealthResponse, type HealthControllerGetMetricsResponse, type HealthControllerResetCircuitBreakerData, type HealthControllerResetCircuitBreakerResponse, HealthService, type HoldingAssetClassAccountSliceDto, type HoldingAssetClassCrossAccountResponseDto, type HoldingPnlControllerGetHoldingPnlData, type HoldingPnlControllerGetHoldingPnlResponse, type HoldingPnlResponseDto, type HoldingPnlRowDto, type HoldingPnlWarningDto, type IdentifyResultDto, type ImportErrorDto, type ImportResultDto, type ImporterConfigControllerGetConfigData, type ImporterConfigControllerGetConfigResponse, type ImporterConfigControllerResetConfigData, type ImporterConfigControllerResetConfigResponse, type ImporterConfigControllerUpdateConfigData, type ImporterConfigControllerUpdateConfigResponse, type ImporterConfigDataDto, type ImporterConfigDto, type InfoControllerGetInfoResponse, type MapperDefaultsDto, type MonetaryDto, type MonthlyForecastDto, type MultiCurrencyBalanceResponseDto, type MultiCurrencyPointDto, type NetWorthByCurrencyDto, type NetWorthResponseDto, type NlpAccountConfirmationDataDto, type NlpAlternativePayeeDto, type NlpControllerClearSessionData, type NlpControllerClearSessionResponse, type NlpControllerGetSessionData, type NlpControllerGetSessionResponse, type NlpControllerProcessNaturalLanguageData, type NlpControllerProcessNaturalLanguageResponse, type NlpDefaultAccountsDto, type NlpDuplicateConfirmationDataDto, type NlpParsedDataDto, type NlpPayeeConfirmationDataDto, type NlpResponseDto, type NlpRuleConfirmationDataDto, type NlpSimilarityDto, type NlpSourceTransactionDto, type NlpSuggestedAccountDto, type NlpSuggestedAccountsDto, type NlpSuggestedPayeeDto, type NlpTargetTransactionDto, type NlpTransactionInfoDto, type OnboardingAccountDto, type OnboardingControllerBootstrapData, type OnboardingControllerBootstrapResponse, type OnboardingDto, OpenAPI, type OpenAPIConfig, type OpeningBalanceResultDto, type PadReconciliationDto, type PadResultDto, type ParserTelemetryReportDto, type PayeeAutocompleteResponseDto, type PayeeControllerAutocompleteData, type PayeeControllerAutocompleteResponse, type PayeeControllerCreateData, type PayeeControllerCreateResponse, type PayeeControllerDeleteData, type PayeeControllerDeleteResponse, type PayeeControllerFindAllData, type PayeeControllerFindAllResponse, type PayeeControllerFindOneData, type PayeeControllerFindOneResponse, type PayeeControllerGetTopPayeesData, type PayeeControllerGetTopPayeesResponse, type PayeeControllerUpdateData, type PayeeControllerUpdateResponse, type PayeeListResponseDto, type PayeeProfileAdminControllerCreateData, type PayeeProfileAdminControllerCreateResponse, type PayeeProfileAdminControllerDeleteData, type PayeeProfileAdminControllerDeleteResponse, type PayeeProfileAdminControllerFindAllData, type PayeeProfileAdminControllerFindAllResponse, type PayeeProfileAdminControllerFindOneData, type PayeeProfileAdminControllerFindOneResponse, type PayeeProfileAdminControllerUnverifyData, type PayeeProfileAdminControllerUnverifyResponse, type PayeeProfileAdminControllerUpdateData, type PayeeProfileAdminControllerUpdateResponse, type PayeeProfileAdminControllerVerifyData, type PayeeProfileAdminControllerVerifyResponse, type PayeeProfileListResponseDto, type PayeeProfileResponseDto, type PayeeResponseDto, type PayeeStatsResponseDto, type PlatformControllerCreateData, type PlatformControllerCreateResponse, type PlatformControllerDeleteData, type PlatformControllerDeleteResponse, type PlatformControllerFindAllResponse, type PlatformControllerGetPlatformListResponse, type PlatformControllerMatchPlatformsData, type PlatformControllerMatchPlatformsResponse, type PlatformControllerUpdateData, type PlatformControllerUpdateResponse, type PlatformGroupDto, type PlatformListItemDto, type PlatformMatchResponseDto, type PlatformMatchResultDto, type PortfolioTrendsResponseDto, type PostingDetailDto, type PostingResponseDto, type PriceControllerBulkCreateData, type PriceControllerBulkCreateResponse, type PriceControllerCreateData, type PriceControllerCreateResponse, type PriceControllerDeleteData, type PriceControllerDeleteResponse, type PriceControllerFindAllData, type PriceControllerFindAllResponse, type PriceControllerFindOneData, type PriceControllerFindOneResponse, type PriceControllerUpdateData, type PriceControllerUpdateResponse, type PriceListResponseDto, type PriceResponseDto, type ProcessNlpDto, type PropertyControllerDeleteData, type PropertyControllerDeleteResponse, type PropertyControllerGetAllResponse, type PropertyControllerGetByKeyData, type PropertyControllerGetByKeyResponse, type PropertyControllerUpdateData, type PropertyControllerUpdateResponse, type ProviderSyncConfigDto, type ProviderSyncControllerGetSupportedProvidersData, type ProviderSyncControllerGetSupportedProvidersResponse, type ProviderSyncControllerIsProviderSupportedData, type ProviderSyncControllerIsProviderSupportedResponse, type ProviderSyncControllerSyncData, type ProviderSyncControllerSyncResponse, type ProviderSyncDto, type ProviderSyncResponseDto, ProviderSyncService, type ReconciliationComputeResultDto, type ReconciliationControllerAssertData, type ReconciliationControllerAssertResponse, type ReconciliationControllerComputeData, type ReconciliationControllerComputeResponse, type ReconciliationControllerHistoryData, type ReconciliationControllerHistoryResponse, type ReconciliationControllerPadData, type ReconciliationControllerPadResponse, type ReconciliationRecordDto, type RecurringMatchInfoDto, type RecurringRuleControllerCreateData, type RecurringRuleControllerCreateFromTransactionData, type RecurringRuleControllerCreateFromTransactionResponse, type RecurringRuleControllerCreateResponse, type RecurringRuleControllerDeleteData, type RecurringRuleControllerDeleteResponse, type RecurringRuleControllerFindAllData, type RecurringRuleControllerFindAllResponse, type RecurringRuleControllerFindOneData, type RecurringRuleControllerFindOneResponse, type RecurringRuleControllerGetWithStatsData, type RecurringRuleControllerGetWithStatsResponse, type RecurringRuleControllerUpdateData, type RecurringRuleControllerUpdateResponse, type RecurringRuleResponseDto, type RecurringRuleWithStatsResponseDto, type RecurringSuggestionDto, type RegionConfigDto, type RegionInfoDto, type RegionsMetadataResponseDto, type ReopenAccountDto, type ReportingControllerBackfillSnapshotsData, type ReportingControllerBackfillSnapshotsResponse, type ReportingControllerGenerateSnapshotData, type ReportingControllerGenerateSnapshotResponse, type ReportingControllerGetCashFlowTrendsData, type ReportingControllerGetCashFlowTrendsResponse, type ReportingControllerGetPortfolioTrendsData, type ReportingControllerGetPortfolioTrendsResponse, type ResolveResultDto, type ResolveReviewDto, type ReviewControllerBatchResolveData, type ReviewControllerBatchResolveResponse, type ReviewControllerFindAllData, type ReviewControllerFindAllResponse, type ReviewControllerFindOneData, type ReviewControllerFindOneResponse, type ReviewControllerGetStatsData, type ReviewControllerGetStatsResponse, type ReviewControllerResolveData, type ReviewControllerResolveResponse, type ReviewControllerUndoData, type ReviewControllerUndoResponse, type ReviewDetailDto, type ReviewItemPreviewDto, type ReviewListResponseDto, type ReviewStatsDto, type ReviewSummaryDto, type RuleStatisticsResponseDto, type SignupDto, type SignupResponseDto, type SupportedProvidersResponseDto, type TagSuggestionDto, type TagSuggestionsResponseDto, type TelemetryControllerGetCoverageMetricsData, type TelemetryControllerGetCoverageMetricsResponse, type TelemetryControllerReportCoverageMissData, type TelemetryControllerReportCoverageMissResponse, type TelemetryControllerReportTelemetryData, type TelemetryControllerReportTelemetryResponse, type TemplateMetadataDto, type TemplateMetadataResponseDto, type TestRuleDto, type TestRuleResponseDto, type TimeSeriesPointDto, type TransactionControllerCorrectData, type TransactionControllerCorrectResponse, type TransactionControllerCreateBatchData, type TransactionControllerCreateBatchResponse, type TransactionControllerCreateData, type TransactionControllerCreateResponse, type TransactionControllerDeleteData, type TransactionControllerDeleteResponse, type TransactionControllerGetDetailData, type TransactionControllerGetDetailResponse, type TransactionControllerListData, type TransactionControllerListResponse, type TransactionControllerSuggestTagsData, type TransactionControllerSuggestTagsResponse, type TransactionControllerUpdateData, type TransactionControllerUpdateResponse, type TransactionDetailDto, type TransactionListResponseDto, type TransactionListSummaryDto, type TransactionResponseDto, type TransactionRuleControllerBulkCreateData, type TransactionRuleControllerBulkCreateResponse, type TransactionRuleControllerCreateData, type TransactionRuleControllerCreateResponse, type TransactionRuleControllerDeleteData, type TransactionRuleControllerDeleteResponse, type TransactionRuleControllerExportData, type TransactionRuleControllerExportResponse, type TransactionRuleControllerGetDetailData, type TransactionRuleControllerGetDetailResponse, type TransactionRuleControllerGetStatisticsData, type TransactionRuleControllerGetStatisticsResponse, type TransactionRuleControllerListData, type TransactionRuleControllerListResponse, type TransactionRuleControllerTestData, type TransactionRuleControllerTestResponse, type TransactionRuleControllerUpdateData, type TransactionRuleControllerUpdateResponse, type TransactionRuleControllerValidateData, type TransactionRuleControllerValidateResponse, type TransactionRuleListResponseDto, type TransactionRuleResponseDto, type TransactionSummaryDto, type TrendSummaryDto, type UncoveredFormatMissDto, type UndoResultDto, type UpdateAccountDto, type UpdateBeanEventDto, type UpdateBeanPriceDto, type UpdateCommodityDto, type UpdateConfigDataDto, type UpdateImporterConfigDto, type UpdateMapperDefaultsDto, type UpdatePayeeDto, type UpdatePayeeProfileDto, type UpdatePlatformDto, type UpdatePropertyDto, type UpdateRecurringRuleDto, type UpdateTransactionDto, type UpdateTransactionRuleDto, type UpdateUserSettingDto, type UserControllerDeleteOwnUserData, type UserControllerDeleteOwnUserResponse, type UserControllerDeleteUserData, type UserControllerDeleteUserResponse, type UserControllerGetAllUserSettingsByPageData, type UserControllerGetAllUserSettingsByPageResponse, type UserControllerGetAssetLiabilitySummaryResponse, type UserControllerGetUserData, type UserControllerGetUserInfoData, type UserControllerGetUserInfoResponse, type UserControllerGetUserResponse, type UserControllerSignupUserData, type UserControllerSignupUserResponse, type UserControllerUpdateUserSettingData, type UserControllerUpdateUserSettingResponse, type ValidateRuleDto, type ValidateRuleResponseDto, type VersionedConfigDto, type action, type action2, type assetClass, type assetSubClass, type assetSubType, type bookingMethod, type branchType, type category, type chartToken, type colorScheme, type confidenceLevel, type conflictStrategy, type dataSource, type equitySubType, type flag, type flag2, type frequency, type importerId, type intent, type investmentAction, type learningSource, type liabilitySubType, type matchLogic, type matchType, type matchType2, type method, type mode, type paymentSource, type period, type provider, type role, type source, type source2, type source3, type status, type status2, type status3, type status4, type suggestedAction, type suggestedFrequency, type type, type type2, type type3, type type4, type value, type viewMode };
|
|
9679
|
+
export { type $OpenApiTs, type AccountControllerAddOpeningBalanceData, type AccountControllerAddOpeningBalanceResponse, type AccountControllerCloseData, type AccountControllerCloseResponse, type AccountControllerCreateData, type AccountControllerCreateResponse, type AccountControllerDeleteData, type AccountControllerDeleteResponse, type AccountControllerFindAllData, type AccountControllerFindAllResponse, type AccountControllerFindOneData, type AccountControllerFindOneResponse, type AccountControllerReopenData, type AccountControllerReopenResponse, type AccountControllerUpdateData, type AccountControllerUpdateResponse, type AccountExchangeRateWarningDto, type AccountItemDto, type AccountItemWithAssetClassDto, type AccountListResponseDto, type AccountResponseDto, type AccountStandardListResponseDto, type AccountStandardResponseDto, type AccountStandardsControllerGetRegionsData, type AccountStandardsControllerGetRegionsResponse, type AccountStandardsControllerGetTemplateMetadataData, type AccountStandardsControllerGetTemplateMetadataResponse, type AccountStandardsControllerGetTemplatesData, type AccountStandardsControllerGetTemplatesResponse, type AccountsResponseDto, type AccountsSummaryDto, type ActualBalanceDto, type AmountDto, type AmountRangeDto, type AnonymousLoginDto, type AnonymousLoginResponseDto, type ApiKeysControllerCreateApiKeyResponse, type ApiProblemResponseDto, type AssertReconciliationDto, type AssetClassAccountsResponseDto, type AssetClassGroupDto, type AssetClassSummaryDto, type AuthControllerAccessTokenLoginData, type AuthControllerAccessTokenLoginResponse, type BackfillSnapshotsBody, type BackfillSnapshotsResponse, type BalanceByCurrencyDto, type BalanceControllerGetBalanceData, type BalanceControllerGetBalanceResponse, type BalanceControllerGetMultiCurrencyBalanceData, type BalanceControllerGetMultiCurrencyBalanceResponse, type BalanceResponseDto, type BatchCreateTransactionDto, type BatchResolveDto, type BatchResolveResultDto, type BatchTransactionErrorDto, type BatchTransactionResponseDto, BeanAccountsService, BeanBalancesService, BeanCommoditiesService, BeanTransactionsService, type BulkCreateRulesDto, type BulkCreateRulesResponseDto, type CacheControllerFlushCacheResponse, type CashFlowByCurrencyDto, type CashFlowPointDto, type CashFlowResponseDto, type CashFlowTrendSummaryDto, type CashFlowTrendsResponseDto, type CategoryCatalogControllerListData, type CategoryCatalogControllerListResponse, type CategoryCatalogEntryDto, type CategoryCatalogListResponseDto, type CategoryGroupDto, type ClientParsedDataDto, type CloseAccountDto, type CommodityControllerBulkCreateData, type CommodityControllerBulkCreateResponse, type CommodityControllerCreateData, type CommodityControllerCreateResponse, type CommodityControllerDeleteData, type CommodityControllerDeleteResponse, type CommodityControllerFindAllData, type CommodityControllerFindAllResponse, type CommodityControllerFindOneData, type CommodityControllerFindOneResponse, type CommodityControllerGetOrCreateData, type CommodityControllerGetOrCreateResponse, type CommodityControllerUpdateData, type CommodityControllerUpdateResponse, type CommodityListResponseDto, type CommodityResponseDto, type ComputeReconciliationDto, type ConfirmMatchDto, type ConvertedCashFlowDto, type ConvertedNetWorthDto, type CorrectTransactionDto, type CostDetailDto, type CostSpecDto, type CreateAccountDto, type CreateBeanEventDto, type CreateBeanPriceDto, type CreateCommodityDto, type CreateExternalAccountLinkDto, type CreateOpeningBalanceDto, type CreatePayeeDto, type CreatePayeeProfileDto, type CreatePlatformDto, type CreatePostingDto, type CreateRecurringRuleDto, type CreateRuleFromTransactionDto, type CreateTransactionDto, type CreateTransactionRuleDto, type CurrencyBalanceDto, type CurrentPriceDto, type DashboardControllerGetAccountsData, type DashboardControllerGetAccountsResponse, type DashboardControllerGetCashFlowData, type DashboardControllerGetCashFlowResponse, type DashboardControllerGetExpensesData, type DashboardControllerGetExpensesResponse, type DashboardControllerGetNetWorthData, type DashboardControllerGetNetWorthResponse, type DecisionOptionDto, type DeleteOwnUserDto, type EnterNowDto, type EventControllerCreateData, type EventControllerCreateResponse, type EventControllerDeleteData, type EventControllerDeleteResponse, type EventControllerFindAllData, type EventControllerFindAllResponse, type EventControllerFindOneData, type EventControllerFindOneResponse, type EventControllerGetSliceData, type EventControllerGetSliceResponse, type EventControllerUpdateData, type EventControllerUpdateResponse, type EventListResponseDto, type EventResponseDto, type ExchangeRateControllerGetExchangeRateData, type ExchangeRateControllerGetExchangeRateResponse, type ExchangeRateWarningDto, type ExpectedTransactionControllerConfirmMatchData, type ExpectedTransactionControllerConfirmMatchResponse, type ExpectedTransactionControllerEnterNowData, type ExpectedTransactionControllerEnterNowResponse, type ExpectedTransactionControllerFindAllData, type ExpectedTransactionControllerFindAllResponse, type ExpectedTransactionControllerFindOneData, type ExpectedTransactionControllerFindOneResponse, type ExpectedTransactionControllerFindOverdueData, type ExpectedTransactionControllerFindOverdueResponse, type ExpectedTransactionControllerSkipData, type ExpectedTransactionControllerSkipResponse, type ExpectedTransactionControllerUndoSkipData, type ExpectedTransactionControllerUndoSkipResponse, type ExpectedTransactionControllerUnmatchData, type ExpectedTransactionControllerUnmatchResponse, type ExpectedTransactionListResponseDto, type ExpectedTransactionResponseDto, type ExpectedTransactionRuleDto, type ExpensesByCategoryResponseDto, type ExpensesByCategorySummaryDto, type ExportControllerExportBeancountResponse, type ExportRulesResponseDto, type ExternalAccountLinkControllerCreateData, type ExternalAccountLinkControllerCreateResponse, type ExternalAccountLinkControllerFindAllData, type ExternalAccountLinkControllerFindAllResponse, type ExternalAccountLinkControllerFindOneData, type ExternalAccountLinkControllerFindOneResponse, type ExternalAccountLinkControllerRemoveData, type ExternalAccountLinkControllerRemoveResponse, type ExternalAccountLinkListResponseDto, type ExternalAccountLinkResponseDto, type FileImportControllerIdentifyFileData, type FileImportControllerIdentifyFileResponse, type FileImportControllerImportBeancountData, type FileImportControllerImportBeancountResponse, type FileImportControllerImportFileData, type FileImportControllerImportFileResponse, type FileImportDto, type ForecastControllerGetForecastData, type ForecastControllerGetForecastResponse, type ForecastItemDto, type ForecastResponseDto, type FxRateDto, type GenerateSnapshotBody, type GenerateSnapshotResponse, type HealthControllerCheckDatabaseResponse, type HealthControllerCheckOpenBbResponse, type HealthControllerCheckRedisResponse, type HealthControllerGetCircuitBreakersHealthResponse, type HealthControllerGetHealthResponse, type HealthControllerGetMetricsResponse, type HealthControllerResetCircuitBreakerData, type HealthControllerResetCircuitBreakerResponse, HealthService, type HoldingAssetClassAccountSliceDto, type HoldingAssetClassCrossAccountResponseDto, type HoldingPnlControllerGetHoldingPnlData, type HoldingPnlControllerGetHoldingPnlResponse, type HoldingPnlResponseDto, type HoldingPnlRowDto, type HoldingPnlWarningDto, type IdentifyResultDto, type ImportErrorDto, type ImportResultDto, type ImporterConfigControllerGetConfigData, type ImporterConfigControllerGetConfigResponse, type ImporterConfigControllerResetConfigData, type ImporterConfigControllerResetConfigResponse, type ImporterConfigControllerUpdateConfigData, type ImporterConfigControllerUpdateConfigResponse, type ImporterConfigDataDto, type ImporterConfigDto, type InfoControllerGetInfoResponse, type MapperDefaultsDto, type MonetaryDto, type MonthlyForecastDto, type MultiCurrencyBalanceResponseDto, type MultiCurrencyPointDto, type NetWorthByCurrencyDto, type NetWorthResponseDto, type NlpAccountConfirmationDataDto, type NlpAlternativePayeeDto, type NlpControllerClearSessionData, type NlpControllerClearSessionResponse, type NlpControllerGetSessionData, type NlpControllerGetSessionResponse, type NlpControllerProcessNaturalLanguageData, type NlpControllerProcessNaturalLanguageResponse, type NlpDefaultAccountsDto, type NlpDuplicateConfirmationDataDto, type NlpParsedDataDto, type NlpPayeeConfirmationDataDto, type NlpResponseDto, type NlpRuleConfirmationDataDto, type NlpSimilarityDto, type NlpSourceTransactionDto, type NlpSuggestedAccountDto, type NlpSuggestedAccountsDto, type NlpSuggestedPayeeDto, type NlpTargetTransactionDto, type NlpTransactionInfoDto, type OnboardingAccountDto, type OnboardingControllerBootstrapData, type OnboardingControllerBootstrapResponse, type OnboardingDto, OpenAPI, type OpenAPIConfig, type OpeningBalanceResultDto, type PadReconciliationDto, type PadResultDto, type ParserTelemetryReportDto, type PayeeAutocompleteResponseDto, type PayeeControllerAutocompleteData, type PayeeControllerAutocompleteResponse, type PayeeControllerCreateData, type PayeeControllerCreateResponse, type PayeeControllerDeleteData, type PayeeControllerDeleteResponse, type PayeeControllerFindAllData, type PayeeControllerFindAllResponse, type PayeeControllerFindOneData, type PayeeControllerFindOneResponse, type PayeeControllerGetTopPayeesData, type PayeeControllerGetTopPayeesResponse, type PayeeControllerUpdateData, type PayeeControllerUpdateResponse, type PayeeListResponseDto, type PayeeProfileAdminControllerCreateData, type PayeeProfileAdminControllerCreateResponse, type PayeeProfileAdminControllerDeleteData, type PayeeProfileAdminControllerDeleteResponse, type PayeeProfileAdminControllerFindAllData, type PayeeProfileAdminControllerFindAllResponse, type PayeeProfileAdminControllerFindOneData, type PayeeProfileAdminControllerFindOneResponse, type PayeeProfileAdminControllerUnverifyData, type PayeeProfileAdminControllerUnverifyResponse, type PayeeProfileAdminControllerUpdateData, type PayeeProfileAdminControllerUpdateResponse, type PayeeProfileAdminControllerVerifyData, type PayeeProfileAdminControllerVerifyResponse, type PayeeProfileListResponseDto, type PayeeProfileResponseDto, type PayeeResponseDto, type PayeeStatsResponseDto, type PlatformControllerCreateData, type PlatformControllerCreateResponse, type PlatformControllerDeleteData, type PlatformControllerDeleteResponse, type PlatformControllerFindAllResponse, type PlatformControllerGetPlatformListData, type PlatformControllerGetPlatformListResponse, type PlatformControllerMatchPlatformsData, type PlatformControllerMatchPlatformsResponse, type PlatformControllerUpdateData, type PlatformControllerUpdateResponse, type PlatformGroupDto, type PlatformListItemDto, type PlatformMatchResponseDto, type PlatformMatchResultDto, type PortfolioTrendsResponseDto, type PostingDetailDto, type PostingResponseDto, type PriceControllerBulkCreateData, type PriceControllerBulkCreateResponse, type PriceControllerCreateData, type PriceControllerCreateResponse, type PriceControllerDeleteData, type PriceControllerDeleteResponse, type PriceControllerFindAllData, type PriceControllerFindAllResponse, type PriceControllerFindOneData, type PriceControllerFindOneResponse, type PriceControllerUpdateData, type PriceControllerUpdateResponse, type PriceListResponseDto, type PriceResponseDto, type ProcessNlpDto, type PropertyControllerDeleteData, type PropertyControllerDeleteResponse, type PropertyControllerGetAllResponse, type PropertyControllerGetByKeyData, type PropertyControllerGetByKeyResponse, type PropertyControllerUpdateData, type PropertyControllerUpdateResponse, type ProviderSyncConfigDto, type ProviderSyncControllerGetSupportedProvidersData, type ProviderSyncControllerGetSupportedProvidersResponse, type ProviderSyncControllerIsProviderSupportedData, type ProviderSyncControllerIsProviderSupportedResponse, type ProviderSyncControllerSyncData, type ProviderSyncControllerSyncResponse, type ProviderSyncDto, type ProviderSyncResponseDto, ProviderSyncService, type ReconciliationComputeResultDto, type ReconciliationControllerAssertData, type ReconciliationControllerAssertResponse, type ReconciliationControllerComputeData, type ReconciliationControllerComputeResponse, type ReconciliationControllerHistoryData, type ReconciliationControllerHistoryResponse, type ReconciliationControllerPadData, type ReconciliationControllerPadResponse, type ReconciliationRecordDto, type RecurringMatchInfoDto, type RecurringRuleControllerCreateData, type RecurringRuleControllerCreateFromTransactionData, type RecurringRuleControllerCreateFromTransactionResponse, type RecurringRuleControllerCreateResponse, type RecurringRuleControllerDeleteData, type RecurringRuleControllerDeleteResponse, type RecurringRuleControllerFindAllData, type RecurringRuleControllerFindAllResponse, type RecurringRuleControllerFindOneData, type RecurringRuleControllerFindOneResponse, type RecurringRuleControllerGetWithStatsData, type RecurringRuleControllerGetWithStatsResponse, type RecurringRuleControllerUpdateData, type RecurringRuleControllerUpdateResponse, type RecurringRuleResponseDto, type RecurringRuleWithStatsResponseDto, type RecurringSuggestionDto, type RegionConfigDto, type RegionInfoDto, type RegionsMetadataResponseDto, type ReopenAccountDto, type ReportingControllerBackfillSnapshotsData, type ReportingControllerBackfillSnapshotsResponse, type ReportingControllerGenerateSnapshotData, type ReportingControllerGenerateSnapshotResponse, type ReportingControllerGetCashFlowTrendsData, type ReportingControllerGetCashFlowTrendsResponse, type ReportingControllerGetPortfolioTrendsData, type ReportingControllerGetPortfolioTrendsResponse, type ResolveResultDto, type ResolveReviewDto, type ReviewControllerBatchResolveData, type ReviewControllerBatchResolveResponse, type ReviewControllerFindAllData, type ReviewControllerFindAllResponse, type ReviewControllerFindOneData, type ReviewControllerFindOneResponse, type ReviewControllerGetStatsData, type ReviewControllerGetStatsResponse, type ReviewControllerResolveData, type ReviewControllerResolveResponse, type ReviewControllerUndoData, type ReviewControllerUndoResponse, type ReviewDetailDto, type ReviewItemPreviewDto, type ReviewListResponseDto, type ReviewStatsDto, type ReviewSummaryDto, type RuleStatisticsResponseDto, type SignupDto, type SignupResponseDto, type SupportedProvidersResponseDto, type SymbolControllerGetQuoteData, type SymbolControllerGetQuoteResponse, type SymbolControllerSearchData, type SymbolControllerSearchResponse, type SymbolQuoteDto, type SymbolSearchResultDto, type TagSuggestionDto, type TagSuggestionsResponseDto, type TelemetryControllerGetCoverageMetricsData, type TelemetryControllerGetCoverageMetricsResponse, type TelemetryControllerReportCoverageMissData, type TelemetryControllerReportCoverageMissResponse, type TelemetryControllerReportTelemetryData, type TelemetryControllerReportTelemetryResponse, type TemplateMetadataDto, type TemplateMetadataResponseDto, type TestRuleDto, type TestRuleResponseDto, type TimeSeriesPointDto, type TransactionControllerCorrectData, type TransactionControllerCorrectResponse, type TransactionControllerCreateBatchData, type TransactionControllerCreateBatchResponse, type TransactionControllerCreateData, type TransactionControllerCreateResponse, type TransactionControllerDeleteData, type TransactionControllerDeleteResponse, type TransactionControllerGetDetailData, type TransactionControllerGetDetailResponse, type TransactionControllerListData, type TransactionControllerListResponse, type TransactionControllerSuggestTagsData, type TransactionControllerSuggestTagsResponse, type TransactionControllerUpdateData, type TransactionControllerUpdateResponse, type TransactionDetailDto, type TransactionListResponseDto, type TransactionListSummaryDto, type TransactionResponseDto, type TransactionRuleControllerBulkCreateData, type TransactionRuleControllerBulkCreateResponse, type TransactionRuleControllerCreateData, type TransactionRuleControllerCreateResponse, type TransactionRuleControllerDeleteData, type TransactionRuleControllerDeleteResponse, type TransactionRuleControllerExportData, type TransactionRuleControllerExportResponse, type TransactionRuleControllerGetDetailData, type TransactionRuleControllerGetDetailResponse, type TransactionRuleControllerGetStatisticsData, type TransactionRuleControllerGetStatisticsResponse, type TransactionRuleControllerListData, type TransactionRuleControllerListResponse, type TransactionRuleControllerTestData, type TransactionRuleControllerTestResponse, type TransactionRuleControllerUpdateData, type TransactionRuleControllerUpdateResponse, type TransactionRuleControllerValidateData, type TransactionRuleControllerValidateResponse, type TransactionRuleListResponseDto, type TransactionRuleResponseDto, type TransactionSummaryDto, type TrendSummaryDto, type UncoveredFormatMissDto, type UndoResultDto, type UpdateAccountDto, type UpdateBeanEventDto, type UpdateBeanPriceDto, type UpdateCommodityDto, type UpdateConfigDataDto, type UpdateImporterConfigDto, type UpdateMapperDefaultsDto, type UpdatePayeeDto, type UpdatePayeeProfileDto, type UpdatePlatformDto, type UpdatePropertyDto, type UpdateRecurringRuleDto, type UpdateTransactionDto, type UpdateTransactionRuleDto, type UpdateUserSettingDto, type UserControllerDeleteOwnUserData, type UserControllerDeleteOwnUserResponse, type UserControllerDeleteUserData, type UserControllerDeleteUserResponse, type UserControllerGetAllUserSettingsByPageData, type UserControllerGetAllUserSettingsByPageResponse, type UserControllerGetAssetLiabilitySummaryResponse, type UserControllerGetUserData, type UserControllerGetUserInfoData, type UserControllerGetUserInfoResponse, type UserControllerGetUserResponse, type UserControllerSignupUserData, type UserControllerSignupUserResponse, type UserControllerUpdateUserSettingData, type UserControllerUpdateUserSettingResponse, type UserResponseDto, type UserSettingsResponseDto, type ValidateRuleDto, type ValidateRuleResponseDto, type VersionedConfigDto, type action, type action2, type assetClass, type assetSubClass, type assetSubType, type bookingMethod, type branchType, type category, type chartToken, type colorScheme, type confidenceLevel, type conflictStrategy, type dataSource, type equitySubType, type flag, type flag2, type frequency, type importerId, type intent, type investmentAction, type learningSource, type liabilitySubType, type matchLogic, type matchType, type matchType2, type method, type mode, type paymentSource, type period, type productCategory, type provider, type role, type scenario, type source, type source2, type source3, type status, type status2, type status3, type status4, type suggestedAction, type suggestedFrequency, type type, type type2, type type3, type type4, type value, type viewMode };
|