@firela/api-types 0.0.0-canary.ce7c9749 → 0.0.0-canary.d41ffbd5
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 +362 -136
- package/dist/index.d.ts +362 -136
- package/dist/index.js +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
- package/src/generated/schemas.gen.ts +271 -31
- package/src/generated/services.gen.ts +68 -6
- package/src/generated/types.gen.ts +3030 -144
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
|
|
@@ -3497,13 +3517,13 @@ type ProviderSyncConfigDto = {
|
|
|
3497
3517
|
*/
|
|
3498
3518
|
defaultCurrency: string;
|
|
3499
3519
|
/**
|
|
3500
|
-
* Default expense account for the second posting
|
|
3520
|
+
* Default expense account for the second posting. Omit when no real default exists; the pipeline routes to Review via the Uncategorized sentinel (#618).
|
|
3501
3521
|
*/
|
|
3502
|
-
defaultExpenseAccount
|
|
3522
|
+
defaultExpenseAccount?: string;
|
|
3503
3523
|
/**
|
|
3504
|
-
* Default income account for the second posting
|
|
3524
|
+
* Default income account for the second posting. Omit when no real default exists; the pipeline routes to Review via the Uncategorized sentinel (#618).
|
|
3505
3525
|
*/
|
|
3506
|
-
defaultIncomeAccount
|
|
3526
|
+
defaultIncomeAccount?: string;
|
|
3507
3527
|
/**
|
|
3508
3528
|
* Filter pending transactions
|
|
3509
3529
|
*/
|
|
@@ -3602,9 +3622,13 @@ type ParserTelemetryReportDto = unknown;
|
|
|
3602
3622
|
type UncoveredFormatMissDto = unknown;
|
|
3603
3623
|
type ProcessNlpDto = {
|
|
3604
3624
|
/**
|
|
3605
|
-
* Natural language text describing a transaction (
|
|
3625
|
+
* Natural language text describing a transaction. Optional when `confirm` is true (structured confirm); otherwise required.
|
|
3626
|
+
*/
|
|
3627
|
+
message?: string;
|
|
3628
|
+
/**
|
|
3629
|
+
* Structured confirm signal — bypasses NL confirm-word matching when true. Send parsedData field edits alongside. The NL word-list path is the fallback.
|
|
3606
3630
|
*/
|
|
3607
|
-
|
|
3631
|
+
confirm?: boolean;
|
|
3608
3632
|
/**
|
|
3609
3633
|
* Session ID for multi-turn conversation (auto-generated if not provided)
|
|
3610
3634
|
*/
|
|
@@ -3615,6 +3639,14 @@ type ProcessNlpDto = {
|
|
|
3615
3639
|
parsedData?: {
|
|
3616
3640
|
[key: string]: unknown;
|
|
3617
3641
|
};
|
|
3642
|
+
/**
|
|
3643
|
+
* 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.
|
|
3644
|
+
*/
|
|
3645
|
+
selectedRuleId?: string;
|
|
3646
|
+
/**
|
|
3647
|
+
* confirm_account echo-back: account path selected from the prior confirm_account response (suggestedAccount, similarAccounts[i], or a typed path). Applied directly when the session is confirming_account — no NL re-parse.
|
|
3648
|
+
*/
|
|
3649
|
+
selectedAccount?: string;
|
|
3618
3650
|
};
|
|
3619
3651
|
type NlpTransactionInfoDto = {
|
|
3620
3652
|
/**
|
|
@@ -3848,9 +3880,9 @@ type NlpAccountConfirmationDataDto = {
|
|
|
3848
3880
|
*/
|
|
3849
3881
|
invalidAccount: string;
|
|
3850
3882
|
/**
|
|
3851
|
-
* Suggested replacement account
|
|
3883
|
+
* Suggested replacement account (omitted when no clear candidate)
|
|
3852
3884
|
*/
|
|
3853
|
-
suggestedAccount
|
|
3885
|
+
suggestedAccount?: string;
|
|
3854
3886
|
/**
|
|
3855
3887
|
* Similar accounts for user selection
|
|
3856
3888
|
*/
|
|
@@ -3972,7 +4004,7 @@ type NlpSuggestedAccountDto = {
|
|
|
3972
4004
|
*/
|
|
3973
4005
|
account: string;
|
|
3974
4006
|
/**
|
|
3975
|
-
* Confidence score for this suggestion (0-1)
|
|
4007
|
+
* Confidence score for this suggestion (0-1). Present = predicted (confirm/confirm_rule/confirm_account); omitted = actual persisted account (created). (#586)
|
|
3976
4008
|
*/
|
|
3977
4009
|
confidence?: number;
|
|
3978
4010
|
};
|
|
@@ -3988,21 +4020,21 @@ type NlpSuggestedAccountsDto = {
|
|
|
3988
4020
|
};
|
|
3989
4021
|
type NlpDefaultAccountsDto = {
|
|
3990
4022
|
/**
|
|
3991
|
-
* Default asset account
|
|
4023
|
+
* Default OPEN asset account (MRU when multiple), or null when none/ambiguous
|
|
3992
4024
|
*/
|
|
3993
|
-
asset: string;
|
|
4025
|
+
asset: string | null;
|
|
3994
4026
|
/**
|
|
3995
|
-
* Default expense account
|
|
4027
|
+
* Default OPEN expense account (MRU when multiple), or null when none/ambiguous
|
|
3996
4028
|
*/
|
|
3997
|
-
expense: string;
|
|
4029
|
+
expense: string | null;
|
|
3998
4030
|
/**
|
|
3999
|
-
* Default income account
|
|
4031
|
+
* Default OPEN income account (MRU when multiple), or null when none/ambiguous
|
|
4000
4032
|
*/
|
|
4001
|
-
income: string;
|
|
4033
|
+
income: string | null;
|
|
4002
4034
|
/**
|
|
4003
|
-
* Default liability account
|
|
4035
|
+
* Default OPEN liability account (MRU when multiple), or null when none/ambiguous
|
|
4004
4036
|
*/
|
|
4005
|
-
liability: string;
|
|
4037
|
+
liability: string | null;
|
|
4006
4038
|
};
|
|
4007
4039
|
type NlpResponseDto = {
|
|
4008
4040
|
/**
|
|
@@ -4101,11 +4133,11 @@ type NlpResponseDto = {
|
|
|
4101
4133
|
*/
|
|
4102
4134
|
recurringSuggestion?: RecurringSuggestionDto;
|
|
4103
4135
|
/**
|
|
4104
|
-
* Suggested accounts for this transaction.
|
|
4136
|
+
* Suggested accounts for this transaction (#586). confirm/confirm_rule/confirm_account: predicted (source/destination carry confidence); created: actual persisted accounts (confidence omitted). confirm_account destination is the suggested replacement, never the invalid account.
|
|
4105
4137
|
*/
|
|
4106
4138
|
suggestedAccounts?: NlpSuggestedAccountsDto;
|
|
4107
4139
|
/**
|
|
4108
|
-
* Default accounts for the user/region.
|
|
4140
|
+
* Default fallback accounts for the user/region (#586). v1 returns universal constants; per-user personalization is planned.
|
|
4109
4141
|
*/
|
|
4110
4142
|
defaultAccounts?: NlpDefaultAccountsDto;
|
|
4111
4143
|
};
|
|
@@ -4155,13 +4187,21 @@ type PlatformListItemDto = {
|
|
|
4155
4187
|
*/
|
|
4156
4188
|
canonical: string;
|
|
4157
4189
|
/**
|
|
4158
|
-
* Suggested path segment — canonical
|
|
4190
|
+
* Suggested path segment — canonical PascalCased per hyphen-part, hyphens preserved (e.g. "Apple-Pay")
|
|
4159
4191
|
*/
|
|
4160
4192
|
suggestedSegment: string;
|
|
4161
4193
|
/**
|
|
4162
4194
|
* Logo URL
|
|
4163
4195
|
*/
|
|
4164
4196
|
logoUrl: string | null;
|
|
4197
|
+
/**
|
|
4198
|
+
* ISO 3166-1 alpha-2 (UPPERCASE); null = global platform
|
|
4199
|
+
*/
|
|
4200
|
+
countryCode: string | null;
|
|
4201
|
+
/**
|
|
4202
|
+
* Region-aware category (institution vocab, e.g. DigitalWallet/Bank). null = no region-aware suggestion; fall back to type.
|
|
4203
|
+
*/
|
|
4204
|
+
category: string | null;
|
|
4165
4205
|
/**
|
|
4166
4206
|
* Whether user has accounts using this platform
|
|
4167
4207
|
*/
|
|
@@ -4189,13 +4229,21 @@ type PlatformMatchResultDto = {
|
|
|
4189
4229
|
*/
|
|
4190
4230
|
type: 'BANK' | 'BROKERAGE' | 'CRYPTO_EXCHANGE' | 'PAYMENT' | 'INVESTMENT' | 'INSURANCE' | 'OTHER';
|
|
4191
4231
|
/**
|
|
4192
|
-
* Suggested path segment — canonical,
|
|
4232
|
+
* Suggested path segment — canonical PascalCased per hyphen-part, hyphens preserved (e.g. "Apple-Pay")
|
|
4193
4233
|
*/
|
|
4194
4234
|
suggestedSegment: string;
|
|
4195
4235
|
/**
|
|
4196
4236
|
* Logo URL
|
|
4197
4237
|
*/
|
|
4198
4238
|
logoUrl: string | null;
|
|
4239
|
+
/**
|
|
4240
|
+
* ISO 3166-1 alpha-2 (UPPERCASE); null = global platform
|
|
4241
|
+
*/
|
|
4242
|
+
countryCode: string | null;
|
|
4243
|
+
/**
|
|
4244
|
+
* Region-aware category (institution vocab, e.g. DigitalWallet/Bank). null = no region-aware suggestion; fall back to type.
|
|
4245
|
+
*/
|
|
4246
|
+
category: string | null;
|
|
4199
4247
|
/**
|
|
4200
4248
|
* How this row matched: 'exact' > 'prefix' > 'substring'
|
|
4201
4249
|
*/
|
|
@@ -4541,10 +4589,6 @@ type AssetClassGroupDto = {
|
|
|
4541
4589
|
*/
|
|
4542
4590
|
convertedBalance?: string;
|
|
4543
4591
|
};
|
|
4544
|
-
/**
|
|
4545
|
-
* Asset class name
|
|
4546
|
-
*/
|
|
4547
|
-
type assetClass = 'LIQUIDITY' | 'EQUITY' | 'FIXED_INCOME' | 'PRECIOUS_METALS' | 'COMMODITY' | 'INSURANCE' | 'ALTERNATIVE_INVESTMENT' | 'PERSONAL_ASSETS' | 'LIABILITY' | 'REAL_ESTATE' | 'INDEX';
|
|
4548
4592
|
type AssetClassSummaryDto = {
|
|
4549
4593
|
/**
|
|
4550
4594
|
* Total number of accounts
|
|
@@ -4940,11 +4984,137 @@ type AnonymousLoginResponseDto = {
|
|
|
4940
4984
|
*/
|
|
4941
4985
|
authToken: string;
|
|
4942
4986
|
};
|
|
4987
|
+
type SymbolSearchResultDto = {
|
|
4988
|
+
symbol: string;
|
|
4989
|
+
name?: {
|
|
4990
|
+
[key: string]: unknown;
|
|
4991
|
+
} | null;
|
|
4992
|
+
exchange?: {
|
|
4993
|
+
[key: string]: unknown;
|
|
4994
|
+
} | null;
|
|
4995
|
+
/**
|
|
4996
|
+
* OpenBB asset_type (e.g. stock, etf)
|
|
4997
|
+
*/
|
|
4998
|
+
assetType?: {
|
|
4999
|
+
[key: string]: unknown;
|
|
5000
|
+
} | null;
|
|
5001
|
+
/**
|
|
5002
|
+
* IGN asset class (region.types.ts ASSET_CLASSES)
|
|
5003
|
+
*/
|
|
5004
|
+
assetClass?: {
|
|
5005
|
+
[key: string]: unknown;
|
|
5006
|
+
} | null;
|
|
5007
|
+
/**
|
|
5008
|
+
* IGN asset sub-class (region.types.ts ASSET_SUB_CLASSES)
|
|
5009
|
+
*/
|
|
5010
|
+
assetSubClass?: {
|
|
5011
|
+
[key: string]: unknown;
|
|
5012
|
+
} | null;
|
|
5013
|
+
/**
|
|
5014
|
+
* Trading currency (extra_data or inferred from exchange)
|
|
5015
|
+
*/
|
|
5016
|
+
currency?: {
|
|
5017
|
+
[key: string]: unknown;
|
|
5018
|
+
} | null;
|
|
5019
|
+
};
|
|
5020
|
+
type SymbolQuoteDto = {
|
|
5021
|
+
symbol?: string;
|
|
5022
|
+
name?: {
|
|
5023
|
+
[key: string]: unknown;
|
|
5024
|
+
} | null;
|
|
5025
|
+
exchange?: {
|
|
5026
|
+
[key: string]: unknown;
|
|
5027
|
+
} | null;
|
|
5028
|
+
/**
|
|
5029
|
+
* OpenBB asset_type
|
|
5030
|
+
*/
|
|
5031
|
+
assetType?: {
|
|
5032
|
+
[key: string]: unknown;
|
|
5033
|
+
} | null;
|
|
5034
|
+
/**
|
|
5035
|
+
* IGN asset class
|
|
5036
|
+
*/
|
|
5037
|
+
assetClass?: {
|
|
5038
|
+
[key: string]: unknown;
|
|
5039
|
+
} | null;
|
|
5040
|
+
/**
|
|
5041
|
+
* IGN asset sub-class
|
|
5042
|
+
*/
|
|
5043
|
+
assetSubClass?: {
|
|
5044
|
+
[key: string]: unknown;
|
|
5045
|
+
} | null;
|
|
5046
|
+
/**
|
|
5047
|
+
* Trading currency (extra_data or inferred from exchange)
|
|
5048
|
+
*/
|
|
5049
|
+
currency?: {
|
|
5050
|
+
[key: string]: unknown;
|
|
5051
|
+
} | null;
|
|
5052
|
+
/**
|
|
5053
|
+
* Latest price (Decimal string)
|
|
5054
|
+
*/
|
|
5055
|
+
price?: {
|
|
5056
|
+
[key: string]: unknown;
|
|
5057
|
+
} | null;
|
|
5058
|
+
/**
|
|
5059
|
+
* Date the price was observed (ISO yyyy-MM-dd)
|
|
5060
|
+
*/
|
|
5061
|
+
priceDate?: {
|
|
5062
|
+
[key: string]: unknown;
|
|
5063
|
+
} | null;
|
|
5064
|
+
/**
|
|
5065
|
+
* 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.
|
|
5066
|
+
*/
|
|
5067
|
+
changePercent?: {
|
|
5068
|
+
[key: string]: unknown;
|
|
5069
|
+
} | null;
|
|
5070
|
+
/**
|
|
5071
|
+
* Previous close (Decimal string)
|
|
5072
|
+
*/
|
|
5073
|
+
prevClose?: {
|
|
5074
|
+
[key: string]: unknown;
|
|
5075
|
+
} | null;
|
|
5076
|
+
/**
|
|
5077
|
+
* Day open (Decimal string)
|
|
5078
|
+
*/
|
|
5079
|
+
open?: {
|
|
5080
|
+
[key: string]: unknown;
|
|
5081
|
+
} | null;
|
|
5082
|
+
/**
|
|
5083
|
+
* Day high (Decimal string)
|
|
5084
|
+
*/
|
|
5085
|
+
high?: {
|
|
5086
|
+
[key: string]: unknown;
|
|
5087
|
+
} | null;
|
|
5088
|
+
/**
|
|
5089
|
+
* Day low (Decimal string)
|
|
5090
|
+
*/
|
|
5091
|
+
low?: {
|
|
5092
|
+
[key: string]: unknown;
|
|
5093
|
+
} | null;
|
|
5094
|
+
/**
|
|
5095
|
+
* Day volume (Decimal string)
|
|
5096
|
+
*/
|
|
5097
|
+
volume?: {
|
|
5098
|
+
[key: string]: unknown;
|
|
5099
|
+
} | null;
|
|
5100
|
+
/**
|
|
5101
|
+
* 52-week high (Decimal string)
|
|
5102
|
+
*/
|
|
5103
|
+
yearHigh?: {
|
|
5104
|
+
[key: string]: unknown;
|
|
5105
|
+
} | null;
|
|
5106
|
+
/**
|
|
5107
|
+
* 52-week low (Decimal string)
|
|
5108
|
+
*/
|
|
5109
|
+
yearLow?: {
|
|
5110
|
+
[key: string]: unknown;
|
|
5111
|
+
} | null;
|
|
5112
|
+
};
|
|
4943
5113
|
type AccountControllerCreateData = {
|
|
4944
5114
|
/**
|
|
4945
5115
|
* Region code for tenant context
|
|
4946
5116
|
*/
|
|
4947
|
-
region: '
|
|
5117
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
4948
5118
|
requestBody: CreateAccountDto;
|
|
4949
5119
|
};
|
|
4950
5120
|
type AccountControllerCreateResponse = AccountResponseDto;
|
|
@@ -4964,7 +5134,7 @@ type AccountControllerFindAllData = {
|
|
|
4964
5134
|
/**
|
|
4965
5135
|
* Region code for tenant context
|
|
4966
5136
|
*/
|
|
4967
|
-
region: '
|
|
5137
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
4968
5138
|
/**
|
|
4969
5139
|
* Search term for account path
|
|
4970
5140
|
*/
|
|
@@ -4987,7 +5157,7 @@ type AccountControllerFindOneData = {
|
|
|
4987
5157
|
/**
|
|
4988
5158
|
* Region code for tenant context
|
|
4989
5159
|
*/
|
|
4990
|
-
region: '
|
|
5160
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
4991
5161
|
};
|
|
4992
5162
|
type AccountControllerFindOneResponse = AccountResponseDto;
|
|
4993
5163
|
type AccountControllerUpdateData = {
|
|
@@ -4998,7 +5168,7 @@ type AccountControllerUpdateData = {
|
|
|
4998
5168
|
/**
|
|
4999
5169
|
* Region code for tenant context
|
|
5000
5170
|
*/
|
|
5001
|
-
region: '
|
|
5171
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5002
5172
|
requestBody: UpdateAccountDto;
|
|
5003
5173
|
};
|
|
5004
5174
|
type AccountControllerUpdateResponse = AccountResponseDto;
|
|
@@ -5010,7 +5180,7 @@ type AccountControllerDeleteData = {
|
|
|
5010
5180
|
/**
|
|
5011
5181
|
* Region code for tenant context
|
|
5012
5182
|
*/
|
|
5013
|
-
region: '
|
|
5183
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5014
5184
|
};
|
|
5015
5185
|
type AccountControllerDeleteResponse = void;
|
|
5016
5186
|
type AccountControllerCloseData = {
|
|
@@ -5021,7 +5191,7 @@ type AccountControllerCloseData = {
|
|
|
5021
5191
|
/**
|
|
5022
5192
|
* Region code for tenant context
|
|
5023
5193
|
*/
|
|
5024
|
-
region: '
|
|
5194
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5025
5195
|
requestBody: CloseAccountDto;
|
|
5026
5196
|
};
|
|
5027
5197
|
type AccountControllerCloseResponse = AccountResponseDto;
|
|
@@ -5033,7 +5203,7 @@ type AccountControllerReopenData = {
|
|
|
5033
5203
|
/**
|
|
5034
5204
|
* Region code for tenant context
|
|
5035
5205
|
*/
|
|
5036
|
-
region: '
|
|
5206
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5037
5207
|
requestBody: ReopenAccountDto;
|
|
5038
5208
|
};
|
|
5039
5209
|
type AccountControllerReopenResponse = AccountResponseDto;
|
|
@@ -5045,7 +5215,7 @@ type AccountControllerAddOpeningBalanceData = {
|
|
|
5045
5215
|
/**
|
|
5046
5216
|
* Region code for tenant context
|
|
5047
5217
|
*/
|
|
5048
|
-
region: '
|
|
5218
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5049
5219
|
requestBody: CreateOpeningBalanceDto;
|
|
5050
5220
|
};
|
|
5051
5221
|
type AccountControllerAddOpeningBalanceResponse = OpeningBalanceResultDto;
|
|
@@ -5053,7 +5223,7 @@ type AccountStandardsControllerGetTemplatesData = {
|
|
|
5053
5223
|
/**
|
|
5054
5224
|
* Region code (cn, us, de)
|
|
5055
5225
|
*/
|
|
5056
|
-
region: '
|
|
5226
|
+
region: 'ad' | '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
5227
|
/**
|
|
5058
5228
|
* Search term for path or description
|
|
5059
5229
|
*/
|
|
@@ -5072,21 +5242,21 @@ type AccountStandardsControllerGetTemplateMetadataData = {
|
|
|
5072
5242
|
/**
|
|
5073
5243
|
* Region code for tenant context
|
|
5074
5244
|
*/
|
|
5075
|
-
region: '
|
|
5245
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5076
5246
|
};
|
|
5077
5247
|
type AccountStandardsControllerGetTemplateMetadataResponse = TemplateMetadataResponseDto;
|
|
5078
5248
|
type AccountStandardsControllerGetRegionsData = {
|
|
5079
5249
|
/**
|
|
5080
5250
|
* Region code for tenant context
|
|
5081
5251
|
*/
|
|
5082
|
-
region: '
|
|
5252
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5083
5253
|
};
|
|
5084
5254
|
type AccountStandardsControllerGetRegionsResponse = RegionsMetadataResponseDto;
|
|
5085
5255
|
type TransactionControllerCreateData = {
|
|
5086
5256
|
/**
|
|
5087
5257
|
* Region code for tenant context
|
|
5088
5258
|
*/
|
|
5089
|
-
region: '
|
|
5259
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5090
5260
|
/**
|
|
5091
5261
|
* Transaction data with postings
|
|
5092
5262
|
*/
|
|
@@ -5121,7 +5291,7 @@ type TransactionControllerListData = {
|
|
|
5121
5291
|
/**
|
|
5122
5292
|
* Region code for tenant context
|
|
5123
5293
|
*/
|
|
5124
|
-
region: '
|
|
5294
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5125
5295
|
/**
|
|
5126
5296
|
* Search in narration and payee fields (max 200 chars)
|
|
5127
5297
|
*/
|
|
@@ -5136,7 +5306,7 @@ type TransactionControllerCreateBatchData = {
|
|
|
5136
5306
|
/**
|
|
5137
5307
|
* Region code for tenant context
|
|
5138
5308
|
*/
|
|
5139
|
-
region: '
|
|
5309
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5140
5310
|
requestBody: BatchCreateTransactionDto;
|
|
5141
5311
|
};
|
|
5142
5312
|
type TransactionControllerCreateBatchResponse = BatchTransactionResponseDto;
|
|
@@ -5148,7 +5318,7 @@ type TransactionControllerCorrectData = {
|
|
|
5148
5318
|
/**
|
|
5149
5319
|
* Region code for tenant context
|
|
5150
5320
|
*/
|
|
5151
|
-
region: '
|
|
5321
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5152
5322
|
requestBody: CorrectTransactionDto;
|
|
5153
5323
|
};
|
|
5154
5324
|
type TransactionControllerCorrectResponse = TransactionDetailDto;
|
|
@@ -5164,7 +5334,7 @@ type TransactionControllerSuggestTagsData = {
|
|
|
5164
5334
|
/**
|
|
5165
5335
|
* Region code for tenant context
|
|
5166
5336
|
*/
|
|
5167
|
-
region: '
|
|
5337
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5168
5338
|
/**
|
|
5169
5339
|
* usage (default) or name
|
|
5170
5340
|
*/
|
|
@@ -5179,7 +5349,7 @@ type TransactionControllerGetDetailData = {
|
|
|
5179
5349
|
/**
|
|
5180
5350
|
* Region code for tenant context
|
|
5181
5351
|
*/
|
|
5182
|
-
region: '
|
|
5352
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5183
5353
|
};
|
|
5184
5354
|
type TransactionControllerGetDetailResponse = TransactionDetailDto;
|
|
5185
5355
|
type TransactionControllerUpdateData = {
|
|
@@ -5190,7 +5360,7 @@ type TransactionControllerUpdateData = {
|
|
|
5190
5360
|
/**
|
|
5191
5361
|
* Region code for tenant context
|
|
5192
5362
|
*/
|
|
5193
|
-
region: '
|
|
5363
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5194
5364
|
/**
|
|
5195
5365
|
* Fields to update (all optional)
|
|
5196
5366
|
*/
|
|
@@ -5205,7 +5375,7 @@ type TransactionControllerDeleteData = {
|
|
|
5205
5375
|
/**
|
|
5206
5376
|
* Region code for tenant context
|
|
5207
5377
|
*/
|
|
5208
|
-
region: '
|
|
5378
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5209
5379
|
};
|
|
5210
5380
|
type TransactionControllerDeleteResponse = void;
|
|
5211
5381
|
type BalanceControllerGetBalanceData = {
|
|
@@ -5224,14 +5394,14 @@ type BalanceControllerGetBalanceData = {
|
|
|
5224
5394
|
/**
|
|
5225
5395
|
* Region code for tenant context
|
|
5226
5396
|
*/
|
|
5227
|
-
region: '
|
|
5397
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5228
5398
|
};
|
|
5229
5399
|
type BalanceControllerGetBalanceResponse = BalanceResponseDto;
|
|
5230
5400
|
type BalanceControllerGetMultiCurrencyBalanceData = {
|
|
5231
5401
|
/**
|
|
5232
5402
|
* Region code for tenant context
|
|
5233
5403
|
*/
|
|
5234
|
-
region: '
|
|
5404
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5235
5405
|
};
|
|
5236
5406
|
type BalanceControllerGetMultiCurrencyBalanceResponse = MultiCurrencyBalanceResponseDto;
|
|
5237
5407
|
type ReviewControllerFindAllData = {
|
|
@@ -5250,7 +5420,7 @@ type ReviewControllerFindAllData = {
|
|
|
5250
5420
|
/**
|
|
5251
5421
|
* Region code for tenant context
|
|
5252
5422
|
*/
|
|
5253
|
-
region: '
|
|
5423
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5254
5424
|
/**
|
|
5255
5425
|
* Sort order
|
|
5256
5426
|
*/
|
|
@@ -5265,7 +5435,7 @@ type ReviewControllerGetStatsData = {
|
|
|
5265
5435
|
/**
|
|
5266
5436
|
* Region code for tenant context
|
|
5267
5437
|
*/
|
|
5268
|
-
region: '
|
|
5438
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5269
5439
|
};
|
|
5270
5440
|
type ReviewControllerGetStatsResponse = ReviewStatsDto;
|
|
5271
5441
|
type ReviewControllerFindOneData = {
|
|
@@ -5276,7 +5446,7 @@ type ReviewControllerFindOneData = {
|
|
|
5276
5446
|
/**
|
|
5277
5447
|
* Region code for tenant context
|
|
5278
5448
|
*/
|
|
5279
|
-
region: '
|
|
5449
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5280
5450
|
};
|
|
5281
5451
|
type ReviewControllerFindOneResponse = ReviewDetailDto;
|
|
5282
5452
|
type ReviewControllerResolveData = {
|
|
@@ -5287,7 +5457,7 @@ type ReviewControllerResolveData = {
|
|
|
5287
5457
|
/**
|
|
5288
5458
|
* Region code for tenant context
|
|
5289
5459
|
*/
|
|
5290
|
-
region: '
|
|
5460
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5291
5461
|
requestBody: ResolveReviewDto;
|
|
5292
5462
|
};
|
|
5293
5463
|
type ReviewControllerResolveResponse = ResolveResultDto;
|
|
@@ -5299,14 +5469,14 @@ type ReviewControllerUndoData = {
|
|
|
5299
5469
|
/**
|
|
5300
5470
|
* Region code for tenant context
|
|
5301
5471
|
*/
|
|
5302
|
-
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';
|
|
5303
5473
|
};
|
|
5304
5474
|
type ReviewControllerUndoResponse = UndoResultDto;
|
|
5305
5475
|
type ReviewControllerBatchResolveData = {
|
|
5306
5476
|
/**
|
|
5307
5477
|
* Region code for tenant context
|
|
5308
5478
|
*/
|
|
5309
|
-
region: '
|
|
5479
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5310
5480
|
/**
|
|
5311
5481
|
* Batch resolution request containing review IDs and action
|
|
5312
5482
|
*/
|
|
@@ -5451,7 +5621,7 @@ type CommodityControllerCreateData = {
|
|
|
5451
5621
|
/**
|
|
5452
5622
|
* Region code for tenant context
|
|
5453
5623
|
*/
|
|
5454
|
-
region: '
|
|
5624
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5455
5625
|
requestBody: CreateCommodityDto;
|
|
5456
5626
|
};
|
|
5457
5627
|
type CommodityControllerCreateResponse = CommodityResponseDto;
|
|
@@ -5459,7 +5629,7 @@ type CommodityControllerFindAllData = {
|
|
|
5459
5629
|
/**
|
|
5460
5630
|
* Region code for tenant context
|
|
5461
5631
|
*/
|
|
5462
|
-
region: '
|
|
5632
|
+
region: 'ad' | '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
5633
|
/**
|
|
5464
5634
|
* Search term for symbol or metadata fields (partial match). Searches symbol and metadata.name.
|
|
5465
5635
|
*/
|
|
@@ -5474,7 +5644,7 @@ type CommodityControllerFindOneData = {
|
|
|
5474
5644
|
/**
|
|
5475
5645
|
* Region code for tenant context
|
|
5476
5646
|
*/
|
|
5477
|
-
region: '
|
|
5647
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5478
5648
|
/**
|
|
5479
5649
|
* Commodity symbol
|
|
5480
5650
|
*/
|
|
@@ -5485,7 +5655,7 @@ type CommodityControllerUpdateData = {
|
|
|
5485
5655
|
/**
|
|
5486
5656
|
* Region code for tenant context
|
|
5487
5657
|
*/
|
|
5488
|
-
region: '
|
|
5658
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5489
5659
|
requestBody: UpdateCommodityDto;
|
|
5490
5660
|
/**
|
|
5491
5661
|
* Commodity symbol
|
|
@@ -5497,7 +5667,7 @@ type CommodityControllerDeleteData = {
|
|
|
5497
5667
|
/**
|
|
5498
5668
|
* Region code for tenant context
|
|
5499
5669
|
*/
|
|
5500
|
-
region: '
|
|
5670
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5501
5671
|
/**
|
|
5502
5672
|
* Commodity symbol
|
|
5503
5673
|
*/
|
|
@@ -5508,7 +5678,7 @@ type CommodityControllerGetOrCreateData = {
|
|
|
5508
5678
|
/**
|
|
5509
5679
|
* Region code for tenant context
|
|
5510
5680
|
*/
|
|
5511
|
-
region: '
|
|
5681
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5512
5682
|
/**
|
|
5513
5683
|
* Commodity symbol
|
|
5514
5684
|
*/
|
|
@@ -5519,14 +5689,14 @@ type CommodityControllerBulkCreateData = {
|
|
|
5519
5689
|
/**
|
|
5520
5690
|
* Region code for tenant context
|
|
5521
5691
|
*/
|
|
5522
|
-
region: '
|
|
5692
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5523
5693
|
};
|
|
5524
5694
|
type CommodityControllerBulkCreateResponse = Array<CommodityResponseDto>;
|
|
5525
5695
|
type PriceControllerCreateData = {
|
|
5526
5696
|
/**
|
|
5527
5697
|
* Region code for tenant context
|
|
5528
5698
|
*/
|
|
5529
|
-
region: '
|
|
5699
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5530
5700
|
requestBody: CreateBeanPriceDto;
|
|
5531
5701
|
};
|
|
5532
5702
|
type PriceControllerCreateResponse = PriceResponseDto;
|
|
@@ -5558,7 +5728,7 @@ type PriceControllerFindAllData = {
|
|
|
5558
5728
|
/**
|
|
5559
5729
|
* Region code for tenant context
|
|
5560
5730
|
*/
|
|
5561
|
-
region: '
|
|
5731
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5562
5732
|
/**
|
|
5563
5733
|
* Search term for currency or quoteCurrency (case-insensitive partial match)
|
|
5564
5734
|
*/
|
|
@@ -5573,7 +5743,7 @@ type PriceControllerFindOneData = {
|
|
|
5573
5743
|
/**
|
|
5574
5744
|
* Region code for tenant context
|
|
5575
5745
|
*/
|
|
5576
|
-
region: '
|
|
5746
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5577
5747
|
};
|
|
5578
5748
|
type PriceControllerFindOneResponse = PriceResponseDto;
|
|
5579
5749
|
type PriceControllerUpdateData = {
|
|
@@ -5584,7 +5754,7 @@ type PriceControllerUpdateData = {
|
|
|
5584
5754
|
/**
|
|
5585
5755
|
* Region code for tenant context
|
|
5586
5756
|
*/
|
|
5587
|
-
region: '
|
|
5757
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5588
5758
|
requestBody: UpdateBeanPriceDto;
|
|
5589
5759
|
};
|
|
5590
5760
|
type PriceControllerUpdateResponse = PriceResponseDto;
|
|
@@ -5596,14 +5766,14 @@ type PriceControllerDeleteData = {
|
|
|
5596
5766
|
/**
|
|
5597
5767
|
* Region code for tenant context
|
|
5598
5768
|
*/
|
|
5599
|
-
region: '
|
|
5769
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5600
5770
|
};
|
|
5601
5771
|
type PriceControllerDeleteResponse = void;
|
|
5602
5772
|
type PriceControllerBulkCreateData = {
|
|
5603
5773
|
/**
|
|
5604
5774
|
* Region code for tenant context
|
|
5605
5775
|
*/
|
|
5606
|
-
region: '
|
|
5776
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5607
5777
|
requestBody: Array<string>;
|
|
5608
5778
|
};
|
|
5609
5779
|
type PriceControllerBulkCreateResponse = Array<PriceResponseDto>;
|
|
@@ -5611,7 +5781,7 @@ type RecurringRuleControllerCreateData = {
|
|
|
5611
5781
|
/**
|
|
5612
5782
|
* Region code for tenant context
|
|
5613
5783
|
*/
|
|
5614
|
-
region: '
|
|
5784
|
+
region: 'ad' | '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
5785
|
requestBody: CreateRecurringRuleDto;
|
|
5616
5786
|
};
|
|
5617
5787
|
type RecurringRuleControllerCreateResponse = RecurringRuleResponseDto;
|
|
@@ -5631,14 +5801,14 @@ type RecurringRuleControllerFindAllData = {
|
|
|
5631
5801
|
/**
|
|
5632
5802
|
* Region code for tenant context
|
|
5633
5803
|
*/
|
|
5634
|
-
region: '
|
|
5804
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5635
5805
|
};
|
|
5636
5806
|
type RecurringRuleControllerFindAllResponse = Array<RecurringRuleResponseDto>;
|
|
5637
5807
|
type RecurringRuleControllerCreateFromTransactionData = {
|
|
5638
5808
|
/**
|
|
5639
5809
|
* Region code for tenant context
|
|
5640
5810
|
*/
|
|
5641
|
-
region: '
|
|
5811
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5642
5812
|
requestBody: CreateRuleFromTransactionDto;
|
|
5643
5813
|
/**
|
|
5644
5814
|
* Source transaction ID
|
|
@@ -5654,7 +5824,7 @@ type RecurringRuleControllerFindOneData = {
|
|
|
5654
5824
|
/**
|
|
5655
5825
|
* Region code for tenant context
|
|
5656
5826
|
*/
|
|
5657
|
-
region: '
|
|
5827
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5658
5828
|
};
|
|
5659
5829
|
type RecurringRuleControllerFindOneResponse = RecurringRuleResponseDto;
|
|
5660
5830
|
type RecurringRuleControllerUpdateData = {
|
|
@@ -5665,7 +5835,7 @@ type RecurringRuleControllerUpdateData = {
|
|
|
5665
5835
|
/**
|
|
5666
5836
|
* Region code for tenant context
|
|
5667
5837
|
*/
|
|
5668
|
-
region: '
|
|
5838
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5669
5839
|
requestBody: UpdateRecurringRuleDto;
|
|
5670
5840
|
};
|
|
5671
5841
|
type RecurringRuleControllerUpdateResponse = RecurringRuleResponseDto;
|
|
@@ -5677,7 +5847,7 @@ type RecurringRuleControllerDeleteData = {
|
|
|
5677
5847
|
/**
|
|
5678
5848
|
* Region code for tenant context
|
|
5679
5849
|
*/
|
|
5680
|
-
region: '
|
|
5850
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5681
5851
|
};
|
|
5682
5852
|
type RecurringRuleControllerDeleteResponse = void;
|
|
5683
5853
|
type RecurringRuleControllerGetWithStatsData = {
|
|
@@ -5688,7 +5858,7 @@ type RecurringRuleControllerGetWithStatsData = {
|
|
|
5688
5858
|
/**
|
|
5689
5859
|
* Region code for tenant context
|
|
5690
5860
|
*/
|
|
5691
|
-
region: '
|
|
5861
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5692
5862
|
};
|
|
5693
5863
|
type RecurringRuleControllerGetWithStatsResponse = RecurringRuleWithStatsResponseDto;
|
|
5694
5864
|
type ExpectedTransactionControllerFindAllData = {
|
|
@@ -5699,7 +5869,7 @@ type ExpectedTransactionControllerFindAllData = {
|
|
|
5699
5869
|
/**
|
|
5700
5870
|
* Region code for tenant context
|
|
5701
5871
|
*/
|
|
5702
|
-
region: '
|
|
5872
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5703
5873
|
/**
|
|
5704
5874
|
* Filter by recurring rule ID
|
|
5705
5875
|
*/
|
|
@@ -5718,7 +5888,7 @@ type ExpectedTransactionControllerFindOverdueData = {
|
|
|
5718
5888
|
/**
|
|
5719
5889
|
* Region code for tenant context
|
|
5720
5890
|
*/
|
|
5721
|
-
region: '
|
|
5891
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5722
5892
|
};
|
|
5723
5893
|
type ExpectedTransactionControllerFindOverdueResponse = ExpectedTransactionListResponseDto;
|
|
5724
5894
|
type ExpectedTransactionControllerFindOneData = {
|
|
@@ -5729,7 +5899,7 @@ type ExpectedTransactionControllerFindOneData = {
|
|
|
5729
5899
|
/**
|
|
5730
5900
|
* Region code for tenant context
|
|
5731
5901
|
*/
|
|
5732
|
-
region: '
|
|
5902
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5733
5903
|
};
|
|
5734
5904
|
type ExpectedTransactionControllerFindOneResponse = ExpectedTransactionResponseDto;
|
|
5735
5905
|
type ExpectedTransactionControllerSkipData = {
|
|
@@ -5740,7 +5910,7 @@ type ExpectedTransactionControllerSkipData = {
|
|
|
5740
5910
|
/**
|
|
5741
5911
|
* Region code for tenant context
|
|
5742
5912
|
*/
|
|
5743
|
-
region: '
|
|
5913
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5744
5914
|
};
|
|
5745
5915
|
type ExpectedTransactionControllerSkipResponse = ExpectedTransactionResponseDto;
|
|
5746
5916
|
type ExpectedTransactionControllerUndoSkipData = {
|
|
@@ -5751,7 +5921,7 @@ type ExpectedTransactionControllerUndoSkipData = {
|
|
|
5751
5921
|
/**
|
|
5752
5922
|
* Region code for tenant context
|
|
5753
5923
|
*/
|
|
5754
|
-
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';
|
|
5755
5925
|
};
|
|
5756
5926
|
type ExpectedTransactionControllerUndoSkipResponse = ExpectedTransactionResponseDto;
|
|
5757
5927
|
type ExpectedTransactionControllerConfirmMatchData = {
|
|
@@ -5762,7 +5932,7 @@ type ExpectedTransactionControllerConfirmMatchData = {
|
|
|
5762
5932
|
/**
|
|
5763
5933
|
* Region code for tenant context
|
|
5764
5934
|
*/
|
|
5765
|
-
region: '
|
|
5935
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5766
5936
|
requestBody: ConfirmMatchDto;
|
|
5767
5937
|
};
|
|
5768
5938
|
type ExpectedTransactionControllerConfirmMatchResponse = unknown;
|
|
@@ -5774,7 +5944,7 @@ type ExpectedTransactionControllerUnmatchData = {
|
|
|
5774
5944
|
/**
|
|
5775
5945
|
* Region code for tenant context
|
|
5776
5946
|
*/
|
|
5777
|
-
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';
|
|
5778
5948
|
};
|
|
5779
5949
|
type ExpectedTransactionControllerUnmatchResponse = unknown;
|
|
5780
5950
|
type ExpectedTransactionControllerEnterNowData = {
|
|
@@ -5785,7 +5955,7 @@ type ExpectedTransactionControllerEnterNowData = {
|
|
|
5785
5955
|
/**
|
|
5786
5956
|
* Region code for tenant context
|
|
5787
5957
|
*/
|
|
5788
|
-
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';
|
|
5789
5959
|
requestBody: EnterNowDto;
|
|
5790
5960
|
};
|
|
5791
5961
|
type ExpectedTransactionControllerEnterNowResponse = unknown;
|
|
@@ -5797,7 +5967,7 @@ type ForecastControllerGetForecastData = {
|
|
|
5797
5967
|
/**
|
|
5798
5968
|
* Region code for tenant context
|
|
5799
5969
|
*/
|
|
5800
|
-
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';
|
|
5801
5971
|
};
|
|
5802
5972
|
type ForecastControllerGetForecastResponse = ForecastResponseDto;
|
|
5803
5973
|
type ReportingControllerGetPortfolioTrendsData = {
|
|
@@ -5812,7 +5982,7 @@ type ReportingControllerGetPortfolioTrendsData = {
|
|
|
5812
5982
|
/**
|
|
5813
5983
|
* Region code for tenant context
|
|
5814
5984
|
*/
|
|
5815
|
-
region: '
|
|
5985
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5816
5986
|
};
|
|
5817
5987
|
type ReportingControllerGetPortfolioTrendsResponse = PortfolioTrendsResponseDto;
|
|
5818
5988
|
type ReportingControllerGetCashFlowTrendsData = {
|
|
@@ -5827,14 +5997,14 @@ type ReportingControllerGetCashFlowTrendsData = {
|
|
|
5827
5997
|
/**
|
|
5828
5998
|
* Region code for tenant context
|
|
5829
5999
|
*/
|
|
5830
|
-
region: '
|
|
6000
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5831
6001
|
};
|
|
5832
6002
|
type ReportingControllerGetCashFlowTrendsResponse = CashFlowTrendsResponseDto;
|
|
5833
6003
|
type ReportingControllerGenerateSnapshotData = {
|
|
5834
6004
|
/**
|
|
5835
6005
|
* Region code for tenant context
|
|
5836
6006
|
*/
|
|
5837
|
-
region: '
|
|
6007
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5838
6008
|
/**
|
|
5839
6009
|
* Optional date (defaults to today)
|
|
5840
6010
|
*/
|
|
@@ -5845,7 +6015,7 @@ type ReportingControllerBackfillSnapshotsData = {
|
|
|
5845
6015
|
/**
|
|
5846
6016
|
* Region code for tenant context
|
|
5847
6017
|
*/
|
|
5848
|
-
region: '
|
|
6018
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5849
6019
|
requestBody: BackfillSnapshotsBody;
|
|
5850
6020
|
};
|
|
5851
6021
|
type ReportingControllerBackfillSnapshotsResponse = BackfillSnapshotsResponse;
|
|
@@ -5918,7 +6088,7 @@ type TransactionRuleControllerCreateData = {
|
|
|
5918
6088
|
/**
|
|
5919
6089
|
* Region code for tenant context
|
|
5920
6090
|
*/
|
|
5921
|
-
region: '
|
|
6091
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5922
6092
|
requestBody: CreateTransactionRuleDto;
|
|
5923
6093
|
};
|
|
5924
6094
|
type TransactionRuleControllerCreateResponse = TransactionRuleResponseDto;
|
|
@@ -5946,14 +6116,14 @@ type TransactionRuleControllerListData = {
|
|
|
5946
6116
|
/**
|
|
5947
6117
|
* Region code for tenant context
|
|
5948
6118
|
*/
|
|
5949
|
-
region: '
|
|
6119
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5950
6120
|
};
|
|
5951
6121
|
type TransactionRuleControllerListResponse = TransactionRuleListResponseDto;
|
|
5952
6122
|
type TransactionRuleControllerValidateData = {
|
|
5953
6123
|
/**
|
|
5954
6124
|
* Region code for tenant context
|
|
5955
6125
|
*/
|
|
5956
|
-
region: '
|
|
6126
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5957
6127
|
requestBody: ValidateRuleDto;
|
|
5958
6128
|
};
|
|
5959
6129
|
type TransactionRuleControllerValidateResponse = ValidateRuleResponseDto;
|
|
@@ -5961,7 +6131,7 @@ type TransactionRuleControllerBulkCreateData = {
|
|
|
5961
6131
|
/**
|
|
5962
6132
|
* Region code for tenant context
|
|
5963
6133
|
*/
|
|
5964
|
-
region: '
|
|
6134
|
+
region: 'ad' | '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
6135
|
requestBody: BulkCreateRulesDto;
|
|
5966
6136
|
};
|
|
5967
6137
|
type TransactionRuleControllerBulkCreateResponse = BulkCreateRulesResponseDto;
|
|
@@ -5973,7 +6143,7 @@ type TransactionRuleControllerExportData = {
|
|
|
5973
6143
|
/**
|
|
5974
6144
|
* Region code for tenant context
|
|
5975
6145
|
*/
|
|
5976
|
-
region: '
|
|
6146
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5977
6147
|
};
|
|
5978
6148
|
type TransactionRuleControllerExportResponse = ExportRulesResponseDto;
|
|
5979
6149
|
type TransactionRuleControllerGetStatisticsData = {
|
|
@@ -5984,14 +6154,14 @@ type TransactionRuleControllerGetStatisticsData = {
|
|
|
5984
6154
|
/**
|
|
5985
6155
|
* Region code for tenant context
|
|
5986
6156
|
*/
|
|
5987
|
-
region: '
|
|
6157
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5988
6158
|
};
|
|
5989
6159
|
type TransactionRuleControllerGetStatisticsResponse = RuleStatisticsResponseDto;
|
|
5990
6160
|
type TransactionRuleControllerGetDetailData = {
|
|
5991
6161
|
/**
|
|
5992
6162
|
* Region code for tenant context
|
|
5993
6163
|
*/
|
|
5994
|
-
region: '
|
|
6164
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5995
6165
|
/**
|
|
5996
6166
|
* Rule ID
|
|
5997
6167
|
*/
|
|
@@ -6002,7 +6172,7 @@ type TransactionRuleControllerUpdateData = {
|
|
|
6002
6172
|
/**
|
|
6003
6173
|
* Region code for tenant context
|
|
6004
6174
|
*/
|
|
6005
|
-
region: '
|
|
6175
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6006
6176
|
requestBody: UpdateTransactionRuleDto;
|
|
6007
6177
|
/**
|
|
6008
6178
|
* Rule ID to update
|
|
@@ -6014,7 +6184,7 @@ type TransactionRuleControllerDeleteData = {
|
|
|
6014
6184
|
/**
|
|
6015
6185
|
* Region code for tenant context
|
|
6016
6186
|
*/
|
|
6017
|
-
region: '
|
|
6187
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6018
6188
|
/**
|
|
6019
6189
|
* Rule ID to delete
|
|
6020
6190
|
*/
|
|
@@ -6025,7 +6195,7 @@ type TransactionRuleControllerTestData = {
|
|
|
6025
6195
|
/**
|
|
6026
6196
|
* Region code for tenant context
|
|
6027
6197
|
*/
|
|
6028
|
-
region: '
|
|
6198
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6029
6199
|
requestBody: TestRuleDto;
|
|
6030
6200
|
/**
|
|
6031
6201
|
* Rule ID to test
|
|
@@ -6037,7 +6207,7 @@ type EventControllerCreateData = {
|
|
|
6037
6207
|
/**
|
|
6038
6208
|
* Region code for tenant context (decorative for life events)
|
|
6039
6209
|
*/
|
|
6040
|
-
region: '
|
|
6210
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6041
6211
|
requestBody: CreateBeanEventDto;
|
|
6042
6212
|
};
|
|
6043
6213
|
type EventControllerCreateResponse = EventResponseDto;
|
|
@@ -6061,7 +6231,7 @@ type EventControllerFindAllData = {
|
|
|
6061
6231
|
/**
|
|
6062
6232
|
* Region code for tenant context (decorative for life events)
|
|
6063
6233
|
*/
|
|
6064
|
-
region: '
|
|
6234
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6065
6235
|
/**
|
|
6066
6236
|
* Filter life events to this date (ISO 8601 format)
|
|
6067
6237
|
*/
|
|
@@ -6080,7 +6250,7 @@ type EventControllerFindOneData = {
|
|
|
6080
6250
|
/**
|
|
6081
6251
|
* Region code for tenant context (decorative for life events)
|
|
6082
6252
|
*/
|
|
6083
|
-
region: '
|
|
6253
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6084
6254
|
};
|
|
6085
6255
|
type EventControllerFindOneResponse = EventResponseDto;
|
|
6086
6256
|
type EventControllerUpdateData = {
|
|
@@ -6091,7 +6261,7 @@ type EventControllerUpdateData = {
|
|
|
6091
6261
|
/**
|
|
6092
6262
|
* Region code for tenant context (decorative for life events)
|
|
6093
6263
|
*/
|
|
6094
|
-
region: '
|
|
6264
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6095
6265
|
requestBody: UpdateBeanEventDto;
|
|
6096
6266
|
};
|
|
6097
6267
|
type EventControllerUpdateResponse = EventResponseDto;
|
|
@@ -6103,7 +6273,7 @@ type EventControllerDeleteData = {
|
|
|
6103
6273
|
/**
|
|
6104
6274
|
* Region code for tenant context (decorative for life events)
|
|
6105
6275
|
*/
|
|
6106
|
-
region: '
|
|
6276
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6107
6277
|
};
|
|
6108
6278
|
type EventControllerDeleteResponse = void;
|
|
6109
6279
|
type EventControllerGetSliceData = {
|
|
@@ -6116,14 +6286,14 @@ type EventControllerGetSliceData = {
|
|
|
6116
6286
|
/**
|
|
6117
6287
|
* Region code for tenant context (decorative for life events)
|
|
6118
6288
|
*/
|
|
6119
|
-
region: '
|
|
6289
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6120
6290
|
};
|
|
6121
6291
|
type EventControllerGetSliceResponse = unknown;
|
|
6122
6292
|
type OnboardingControllerBootstrapData = {
|
|
6123
6293
|
/**
|
|
6124
6294
|
* Region code for tenant context
|
|
6125
6295
|
*/
|
|
6126
|
-
region: '
|
|
6296
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6127
6297
|
requestBody: OnboardingDto;
|
|
6128
6298
|
};
|
|
6129
6299
|
type OnboardingControllerBootstrapResponse = unknown;
|
|
@@ -6131,7 +6301,7 @@ type ReconciliationControllerComputeData = {
|
|
|
6131
6301
|
/**
|
|
6132
6302
|
* Region code for tenant context (decorative for reconciliation)
|
|
6133
6303
|
*/
|
|
6134
|
-
region: '
|
|
6304
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6135
6305
|
requestBody: ComputeReconciliationDto;
|
|
6136
6306
|
};
|
|
6137
6307
|
type ReconciliationControllerComputeResponse = ReconciliationComputeResultDto;
|
|
@@ -6139,7 +6309,7 @@ type ReconciliationControllerAssertData = {
|
|
|
6139
6309
|
/**
|
|
6140
6310
|
* Region code for tenant context (decorative for reconciliation)
|
|
6141
6311
|
*/
|
|
6142
|
-
region: '
|
|
6312
|
+
region: 'ad' | '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
6313
|
requestBody: AssertReconciliationDto;
|
|
6144
6314
|
};
|
|
6145
6315
|
type ReconciliationControllerAssertResponse = ReconciliationRecordDto;
|
|
@@ -6147,7 +6317,7 @@ type ReconciliationControllerPadData = {
|
|
|
6147
6317
|
/**
|
|
6148
6318
|
* Region code for tenant context (decorative for reconciliation)
|
|
6149
6319
|
*/
|
|
6150
|
-
region: '
|
|
6320
|
+
region: 'ad' | '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
6321
|
requestBody: PadReconciliationDto;
|
|
6152
6322
|
};
|
|
6153
6323
|
type ReconciliationControllerPadResponse = PadResultDto;
|
|
@@ -6159,7 +6329,7 @@ type ReconciliationControllerHistoryData = {
|
|
|
6159
6329
|
/**
|
|
6160
6330
|
* Region code for tenant context (decorative for reconciliation)
|
|
6161
6331
|
*/
|
|
6162
|
-
region: '
|
|
6332
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6163
6333
|
};
|
|
6164
6334
|
type ReconciliationControllerHistoryResponse = Array<ReconciliationRecordDto>;
|
|
6165
6335
|
type ExportControllerExportBeancountResponse = unknown;
|
|
@@ -6171,7 +6341,7 @@ type FileImportControllerImportFileData = {
|
|
|
6171
6341
|
/**
|
|
6172
6342
|
* Region code for tenant context
|
|
6173
6343
|
*/
|
|
6174
|
-
region: '
|
|
6344
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6175
6345
|
};
|
|
6176
6346
|
type FileImportControllerImportFileResponse = ImportResultDto;
|
|
6177
6347
|
type FileImportControllerIdentifyFileData = {
|
|
@@ -6182,7 +6352,7 @@ type FileImportControllerIdentifyFileData = {
|
|
|
6182
6352
|
/**
|
|
6183
6353
|
* Region code for tenant context
|
|
6184
6354
|
*/
|
|
6185
|
-
region: '
|
|
6355
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6186
6356
|
};
|
|
6187
6357
|
type FileImportControllerIdentifyFileResponse = IdentifyResultDto;
|
|
6188
6358
|
type FileImportControllerImportBeancountData = {
|
|
@@ -6193,7 +6363,7 @@ type FileImportControllerImportBeancountData = {
|
|
|
6193
6363
|
/**
|
|
6194
6364
|
* Region code for tenant context
|
|
6195
6365
|
*/
|
|
6196
|
-
region: '
|
|
6366
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6197
6367
|
};
|
|
6198
6368
|
type FileImportControllerImportBeancountResponse = {
|
|
6199
6369
|
imported?: number;
|
|
@@ -6212,7 +6382,7 @@ type ImporterConfigControllerGetConfigData = {
|
|
|
6212
6382
|
/**
|
|
6213
6383
|
* Region code for tenant context
|
|
6214
6384
|
*/
|
|
6215
|
-
region: '
|
|
6385
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6216
6386
|
};
|
|
6217
6387
|
type ImporterConfigControllerGetConfigResponse = ImporterConfigDto;
|
|
6218
6388
|
type ImporterConfigControllerUpdateConfigData = {
|
|
@@ -6223,7 +6393,7 @@ type ImporterConfigControllerUpdateConfigData = {
|
|
|
6223
6393
|
/**
|
|
6224
6394
|
* Region code for tenant context
|
|
6225
6395
|
*/
|
|
6226
|
-
region: '
|
|
6396
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6227
6397
|
/**
|
|
6228
6398
|
* Partial configuration update. Only provided fields will be updated.
|
|
6229
6399
|
*/
|
|
@@ -6238,7 +6408,7 @@ type ImporterConfigControllerResetConfigData = {
|
|
|
6238
6408
|
/**
|
|
6239
6409
|
* Region code for tenant context
|
|
6240
6410
|
*/
|
|
6241
|
-
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';
|
|
6242
6412
|
};
|
|
6243
6413
|
type ImporterConfigControllerResetConfigResponse = ImporterConfigDto;
|
|
6244
6414
|
type ProviderSyncControllerSyncData = {
|
|
@@ -6249,7 +6419,7 @@ type ProviderSyncControllerSyncData = {
|
|
|
6249
6419
|
/**
|
|
6250
6420
|
* Region code for tenant context
|
|
6251
6421
|
*/
|
|
6252
|
-
region: '
|
|
6422
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6253
6423
|
requestBody: ProviderSyncDto;
|
|
6254
6424
|
};
|
|
6255
6425
|
type ProviderSyncControllerSyncResponse = ProviderSyncResponseDto;
|
|
@@ -6257,7 +6427,7 @@ type ProviderSyncControllerGetSupportedProvidersData = {
|
|
|
6257
6427
|
/**
|
|
6258
6428
|
* Region code for tenant context
|
|
6259
6429
|
*/
|
|
6260
|
-
region: '
|
|
6430
|
+
region: 'ad' | '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
6431
|
};
|
|
6262
6432
|
type ProviderSyncControllerGetSupportedProvidersResponse = SupportedProvidersResponseDto;
|
|
6263
6433
|
type ProviderSyncControllerIsProviderSupportedData = {
|
|
@@ -6268,14 +6438,14 @@ type ProviderSyncControllerIsProviderSupportedData = {
|
|
|
6268
6438
|
/**
|
|
6269
6439
|
* Region code for tenant context
|
|
6270
6440
|
*/
|
|
6271
|
-
region: '
|
|
6441
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6272
6442
|
};
|
|
6273
6443
|
type ProviderSyncControllerIsProviderSupportedResponse = unknown;
|
|
6274
6444
|
type ExternalAccountLinkControllerCreateData = {
|
|
6275
6445
|
/**
|
|
6276
6446
|
* Region code for tenant context
|
|
6277
6447
|
*/
|
|
6278
|
-
region: '
|
|
6448
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6279
6449
|
requestBody: CreateExternalAccountLinkDto;
|
|
6280
6450
|
};
|
|
6281
6451
|
type ExternalAccountLinkControllerCreateResponse = ExternalAccountLinkResponseDto;
|
|
@@ -6284,7 +6454,7 @@ type ExternalAccountLinkControllerFindAllData = {
|
|
|
6284
6454
|
/**
|
|
6285
6455
|
* Region code for tenant context
|
|
6286
6456
|
*/
|
|
6287
|
-
region: '
|
|
6457
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6288
6458
|
};
|
|
6289
6459
|
type ExternalAccountLinkControllerFindAllResponse = ExternalAccountLinkListResponseDto;
|
|
6290
6460
|
type ExternalAccountLinkControllerFindOneData = {
|
|
@@ -6292,7 +6462,7 @@ type ExternalAccountLinkControllerFindOneData = {
|
|
|
6292
6462
|
/**
|
|
6293
6463
|
* Region code for tenant context
|
|
6294
6464
|
*/
|
|
6295
|
-
region: '
|
|
6465
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6296
6466
|
};
|
|
6297
6467
|
type ExternalAccountLinkControllerFindOneResponse = ExternalAccountLinkResponseDto;
|
|
6298
6468
|
type ExternalAccountLinkControllerRemoveData = {
|
|
@@ -6300,14 +6470,14 @@ type ExternalAccountLinkControllerRemoveData = {
|
|
|
6300
6470
|
/**
|
|
6301
6471
|
* Region code for tenant context
|
|
6302
6472
|
*/
|
|
6303
|
-
region: '
|
|
6473
|
+
region: 'ad' | '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
6474
|
};
|
|
6305
6475
|
type ExternalAccountLinkControllerRemoveResponse = void;
|
|
6306
6476
|
type TelemetryControllerReportTelemetryData = {
|
|
6307
6477
|
/**
|
|
6308
6478
|
* Region code for tenant context
|
|
6309
6479
|
*/
|
|
6310
|
-
region: '
|
|
6480
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6311
6481
|
requestBody: ParserTelemetryReportDto;
|
|
6312
6482
|
};
|
|
6313
6483
|
type TelemetryControllerReportTelemetryResponse = unknown;
|
|
@@ -6315,7 +6485,7 @@ type TelemetryControllerReportCoverageMissData = {
|
|
|
6315
6485
|
/**
|
|
6316
6486
|
* Region code for tenant context
|
|
6317
6487
|
*/
|
|
6318
|
-
region: '
|
|
6488
|
+
region: 'ad' | '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
6489
|
requestBody: UncoveredFormatMissDto;
|
|
6320
6490
|
};
|
|
6321
6491
|
type TelemetryControllerReportCoverageMissResponse = unknown;
|
|
@@ -6323,7 +6493,7 @@ type TelemetryControllerGetCoverageMetricsData = {
|
|
|
6323
6493
|
/**
|
|
6324
6494
|
* Region code for tenant context
|
|
6325
6495
|
*/
|
|
6326
|
-
region: '
|
|
6496
|
+
region: 'ad' | '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
6497
|
/**
|
|
6328
6498
|
* Top-N uncovered formats (default 10)
|
|
6329
6499
|
*/
|
|
@@ -6334,7 +6504,7 @@ type NlpControllerProcessNaturalLanguageData = {
|
|
|
6334
6504
|
/**
|
|
6335
6505
|
* Region code for tenant context
|
|
6336
6506
|
*/
|
|
6337
|
-
region: '
|
|
6507
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6338
6508
|
/**
|
|
6339
6509
|
* Natural language transaction input with optional session ID
|
|
6340
6510
|
*/
|
|
@@ -6345,7 +6515,7 @@ type NlpControllerClearSessionData = {
|
|
|
6345
6515
|
/**
|
|
6346
6516
|
* Region code for tenant context
|
|
6347
6517
|
*/
|
|
6348
|
-
region: '
|
|
6518
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6349
6519
|
/**
|
|
6350
6520
|
* Specific session ID to clear (defaults to user session)
|
|
6351
6521
|
*/
|
|
@@ -6356,7 +6526,7 @@ type NlpControllerGetSessionData = {
|
|
|
6356
6526
|
/**
|
|
6357
6527
|
* Region code for tenant context
|
|
6358
6528
|
*/
|
|
6359
|
-
region: '
|
|
6529
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6360
6530
|
/**
|
|
6361
6531
|
* Specific session ID to get (defaults to user session)
|
|
6362
6532
|
*/
|
|
@@ -6368,6 +6538,12 @@ type PlatformControllerCreateData = {
|
|
|
6368
6538
|
requestBody: CreatePlatformDto;
|
|
6369
6539
|
};
|
|
6370
6540
|
type PlatformControllerCreateResponse = unknown;
|
|
6541
|
+
type PlatformControllerGetPlatformListData = {
|
|
6542
|
+
/**
|
|
6543
|
+
* Region code (ISO 3166-1 alpha-2) that biases within-type-bucket ordering (local-region platforms first). Case-insensitive — stored/compared UPPERCASE ("cn" == "CN").
|
|
6544
|
+
*/
|
|
6545
|
+
region?: string;
|
|
6546
|
+
};
|
|
6371
6547
|
type PlatformControllerGetPlatformListResponse = Array<PlatformListItemDto>;
|
|
6372
6548
|
type PlatformControllerMatchPlatformsData = {
|
|
6373
6549
|
/**
|
|
@@ -6375,7 +6551,7 @@ type PlatformControllerMatchPlatformsData = {
|
|
|
6375
6551
|
*/
|
|
6376
6552
|
q: string;
|
|
6377
6553
|
/**
|
|
6378
|
-
* Region code
|
|
6554
|
+
* Region code (ISO 3166-1 alpha-2) that biases within-tier ordering (local-region platforms first); also the intended categoryOverrides key. Case-insensitive — stored/compared UPPERCASE ("cn" == "CN").
|
|
6379
6555
|
*/
|
|
6380
6556
|
region?: string;
|
|
6381
6557
|
};
|
|
@@ -6403,7 +6579,7 @@ type DashboardControllerGetNetWorthData = {
|
|
|
6403
6579
|
/**
|
|
6404
6580
|
* Region code for tenant context
|
|
6405
6581
|
*/
|
|
6406
|
-
region: '
|
|
6582
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6407
6583
|
};
|
|
6408
6584
|
type DashboardControllerGetNetWorthResponse = NetWorthResponseDto;
|
|
6409
6585
|
type DashboardControllerGetAccountsData = {
|
|
@@ -6422,7 +6598,7 @@ type DashboardControllerGetAccountsData = {
|
|
|
6422
6598
|
/**
|
|
6423
6599
|
* Region code for tenant context
|
|
6424
6600
|
*/
|
|
6425
|
-
region: '
|
|
6601
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6426
6602
|
};
|
|
6427
6603
|
type DashboardControllerGetAccountsResponse = AccountsResponseDto | AssetClassAccountsResponseDto | HoldingAssetClassCrossAccountResponseDto;
|
|
6428
6604
|
type DashboardControllerGetCashFlowData = {
|
|
@@ -6433,7 +6609,7 @@ type DashboardControllerGetCashFlowData = {
|
|
|
6433
6609
|
/**
|
|
6434
6610
|
* Region code for tenant context
|
|
6435
6611
|
*/
|
|
6436
|
-
region: '
|
|
6612
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6437
6613
|
};
|
|
6438
6614
|
type DashboardControllerGetCashFlowResponse = CashFlowResponseDto;
|
|
6439
6615
|
type DashboardControllerGetExpensesData = {
|
|
@@ -6452,7 +6628,7 @@ type DashboardControllerGetExpensesData = {
|
|
|
6452
6628
|
/**
|
|
6453
6629
|
* Region code for tenant context
|
|
6454
6630
|
*/
|
|
6455
|
-
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';
|
|
6456
6632
|
};
|
|
6457
6633
|
type DashboardControllerGetExpensesResponse = ExpensesByCategoryResponseDto;
|
|
6458
6634
|
type HoldingPnlControllerGetHoldingPnlData = {
|
|
@@ -6471,7 +6647,7 @@ type HoldingPnlControllerGetHoldingPnlData = {
|
|
|
6471
6647
|
/**
|
|
6472
6648
|
* Region code for tenant context
|
|
6473
6649
|
*/
|
|
6474
|
-
region: '
|
|
6650
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6475
6651
|
};
|
|
6476
6652
|
type HoldingPnlControllerGetHoldingPnlResponse = HoldingPnlResponseDto;
|
|
6477
6653
|
type ApiKeysControllerCreateApiKeyResponse = unknown;
|
|
@@ -6505,6 +6681,29 @@ type HealthControllerResetCircuitBreakerData = {
|
|
|
6505
6681
|
type HealthControllerResetCircuitBreakerResponse = unknown;
|
|
6506
6682
|
type HealthControllerGetMetricsResponse = unknown;
|
|
6507
6683
|
type InfoControllerGetInfoResponse = unknown;
|
|
6684
|
+
type SymbolControllerSearchData = {
|
|
6685
|
+
/**
|
|
6686
|
+
* Filter by OpenBB asset_type (e.g. stock, etf)
|
|
6687
|
+
*/
|
|
6688
|
+
assetType?: string;
|
|
6689
|
+
/**
|
|
6690
|
+
* Filter by exchange code (e.g. US, HK, SS, SZ)
|
|
6691
|
+
*/
|
|
6692
|
+
exchange?: string;
|
|
6693
|
+
/**
|
|
6694
|
+
* Maximum number of results (clamped 1..50)
|
|
6695
|
+
*/
|
|
6696
|
+
limit?: number;
|
|
6697
|
+
/**
|
|
6698
|
+
* Search term — matched against symbol and instrument name. Empty string returns [].
|
|
6699
|
+
*/
|
|
6700
|
+
q: string;
|
|
6701
|
+
};
|
|
6702
|
+
type SymbolControllerSearchResponse = Array<SymbolSearchResultDto>;
|
|
6703
|
+
type SymbolControllerGetQuoteData = {
|
|
6704
|
+
symbol: string;
|
|
6705
|
+
};
|
|
6706
|
+
type SymbolControllerGetQuoteResponse = SymbolQuoteDto;
|
|
6508
6707
|
type $OpenApiTs = {
|
|
6509
6708
|
'/api/v1/{region}/bean/accounts': {
|
|
6510
6709
|
post: {
|
|
@@ -6569,7 +6768,7 @@ type $OpenApiTs = {
|
|
|
6569
6768
|
*/
|
|
6570
6769
|
404: unknown;
|
|
6571
6770
|
/**
|
|
6572
|
-
* Account has transactions and cannot be deleted
|
|
6771
|
+
* Account has active transactions and cannot be deleted
|
|
6573
6772
|
*/
|
|
6574
6773
|
409: unknown;
|
|
6575
6774
|
};
|
|
@@ -8579,6 +8778,7 @@ type $OpenApiTs = {
|
|
|
8579
8778
|
};
|
|
8580
8779
|
'/api/v1/bean/platforms/list': {
|
|
8581
8780
|
get: {
|
|
8781
|
+
req: PlatformControllerGetPlatformListData;
|
|
8582
8782
|
res: {
|
|
8583
8783
|
/**
|
|
8584
8784
|
* List of platforms with user binding status
|
|
@@ -8881,6 +9081,32 @@ type $OpenApiTs = {
|
|
|
8881
9081
|
};
|
|
8882
9082
|
};
|
|
8883
9083
|
};
|
|
9084
|
+
'/api/v1/market/symbols/search': {
|
|
9085
|
+
get: {
|
|
9086
|
+
req: SymbolControllerSearchData;
|
|
9087
|
+
res: {
|
|
9088
|
+
/**
|
|
9089
|
+
* Ranked search results
|
|
9090
|
+
*/
|
|
9091
|
+
200: Array<SymbolSearchResultDto>;
|
|
9092
|
+
};
|
|
9093
|
+
};
|
|
9094
|
+
};
|
|
9095
|
+
'/api/v1/market/symbols/{symbol}/quote': {
|
|
9096
|
+
get: {
|
|
9097
|
+
req: SymbolControllerGetQuoteData;
|
|
9098
|
+
res: {
|
|
9099
|
+
/**
|
|
9100
|
+
* Symbol quote
|
|
9101
|
+
*/
|
|
9102
|
+
200: SymbolQuoteDto;
|
|
9103
|
+
/**
|
|
9104
|
+
* Symbol not found in the openbb catalog
|
|
9105
|
+
*/
|
|
9106
|
+
404: unknown;
|
|
9107
|
+
};
|
|
9108
|
+
};
|
|
9109
|
+
};
|
|
8884
9110
|
};
|
|
8885
9111
|
|
|
8886
9112
|
declare class BeanAccountsService {
|
|
@@ -8932,7 +9158,7 @@ declare class BeanAccountsService {
|
|
|
8932
9158
|
static accountControllerUpdate(data: AccountControllerUpdateData): CancelablePromise<AccountControllerUpdateResponse>;
|
|
8933
9159
|
/**
|
|
8934
9160
|
* Delete account
|
|
8935
|
-
* Deletes an account (only if no transactions)
|
|
9161
|
+
* Deletes an account (only if no active transactions; voided/superseded residual postings are cleaned up)
|
|
8936
9162
|
* @param data The data for the request.
|
|
8937
9163
|
* @param data.id Account UUID
|
|
8938
9164
|
* @param data.region Region code for tenant context
|
|
@@ -9304,4 +9530,4 @@ type OpenAPIConfig = {
|
|
|
9304
9530
|
};
|
|
9305
9531
|
declare const OpenAPI: OpenAPIConfig;
|
|
9306
9532
|
|
|
9307
|
-
export { type $OpenApiTs, type AccountControllerAddOpeningBalanceData, type AccountControllerAddOpeningBalanceResponse, type AccountControllerCloseData, type AccountControllerCloseResponse, type AccountControllerCreateData, type AccountControllerCreateResponse, type AccountControllerDeleteData, type AccountControllerDeleteResponse, type AccountControllerFindAllData, type AccountControllerFindAllResponse, type AccountControllerFindOneData, type AccountControllerFindOneResponse, type AccountControllerReopenData, type AccountControllerReopenResponse, type AccountControllerUpdateData, type AccountControllerUpdateResponse, type AccountExchangeRateWarningDto, type AccountItemDto, type AccountItemWithAssetClassDto, type AccountListResponseDto, type AccountResponseDto, type AccountStandardListResponseDto, type AccountStandardResponseDto, type AccountStandardsControllerGetRegionsData, type AccountStandardsControllerGetRegionsResponse, type AccountStandardsControllerGetTemplateMetadataData, type AccountStandardsControllerGetTemplateMetadataResponse, type AccountStandardsControllerGetTemplatesData, type AccountStandardsControllerGetTemplatesResponse, type AccountsResponseDto, type AccountsSummaryDto, type ActualBalanceDto, type AmountDto, type AmountRangeDto, type AnonymousLoginDto, type AnonymousLoginResponseDto, type ApiKeysControllerCreateApiKeyResponse, type ApiProblemResponseDto, type AssertReconciliationDto, type AssetClassAccountsResponseDto, type AssetClassGroupDto, type AssetClassSummaryDto, type AuthControllerAccessTokenLoginData, type AuthControllerAccessTokenLoginResponse, type BackfillSnapshotsBody, type BackfillSnapshotsResponse, type BalanceByCurrencyDto, type BalanceControllerGetBalanceData, type BalanceControllerGetBalanceResponse, type BalanceControllerGetMultiCurrencyBalanceData, type BalanceControllerGetMultiCurrencyBalanceResponse, type BalanceResponseDto, type BatchCreateTransactionDto, type BatchResolveDto, type BatchResolveResultDto, type BatchTransactionErrorDto, type BatchTransactionResponseDto, BeanAccountsService, BeanBalancesService, BeanCommoditiesService, BeanTransactionsService, type BulkCreateRulesDto, type BulkCreateRulesResponseDto, type CacheControllerFlushCacheResponse, type CashFlowByCurrencyDto, type CashFlowPointDto, type CashFlowResponseDto, type CashFlowTrendSummaryDto, type CashFlowTrendsResponseDto, type CategoryGroupDto, type CloseAccountDto, type CommodityControllerBulkCreateData, type CommodityControllerBulkCreateResponse, type CommodityControllerCreateData, type CommodityControllerCreateResponse, type CommodityControllerDeleteData, type CommodityControllerDeleteResponse, type CommodityControllerFindAllData, type CommodityControllerFindAllResponse, type CommodityControllerFindOneData, type CommodityControllerFindOneResponse, type CommodityControllerGetOrCreateData, type CommodityControllerGetOrCreateResponse, type CommodityControllerUpdateData, type CommodityControllerUpdateResponse, type CommodityListResponseDto, type CommodityResponseDto, type ComputeReconciliationDto, type ConfirmMatchDto, type ConvertedCashFlowDto, type ConvertedNetWorthDto, type CorrectTransactionDto, type CostDetailDto, type CostSpecDto, type CreateAccountDto, type CreateBeanEventDto, type CreateBeanPriceDto, type CreateCommodityDto, type CreateExternalAccountLinkDto, type CreateOpeningBalanceDto, type CreatePayeeDto, type CreatePayeeProfileDto, type CreatePlatformDto, type CreatePostingDto, type CreateRecurringRuleDto, type CreateRuleFromTransactionDto, type CreateTransactionDto, type CreateTransactionRuleDto, type CurrencyBalanceDto, type CurrentPriceDto, type DashboardControllerGetAccountsData, type DashboardControllerGetAccountsResponse, type DashboardControllerGetCashFlowData, type DashboardControllerGetCashFlowResponse, type DashboardControllerGetExpensesData, type DashboardControllerGetExpensesResponse, type DashboardControllerGetNetWorthData, type DashboardControllerGetNetWorthResponse, type DecisionOptionDto, type DeleteOwnUserDto, type EnterNowDto, type EventControllerCreateData, type EventControllerCreateResponse, type EventControllerDeleteData, type EventControllerDeleteResponse, type EventControllerFindAllData, type EventControllerFindAllResponse, type EventControllerFindOneData, type EventControllerFindOneResponse, type EventControllerGetSliceData, type EventControllerGetSliceResponse, type EventControllerUpdateData, type EventControllerUpdateResponse, type EventListResponseDto, type EventResponseDto, type ExchangeRateControllerGetExchangeRateData, type ExchangeRateControllerGetExchangeRateResponse, type ExchangeRateWarningDto, type ExpectedTransactionControllerConfirmMatchData, type ExpectedTransactionControllerConfirmMatchResponse, type ExpectedTransactionControllerEnterNowData, type ExpectedTransactionControllerEnterNowResponse, type ExpectedTransactionControllerFindAllData, type ExpectedTransactionControllerFindAllResponse, type ExpectedTransactionControllerFindOneData, type ExpectedTransactionControllerFindOneResponse, type ExpectedTransactionControllerFindOverdueData, type ExpectedTransactionControllerFindOverdueResponse, type ExpectedTransactionControllerSkipData, type ExpectedTransactionControllerSkipResponse, type ExpectedTransactionControllerUndoSkipData, type ExpectedTransactionControllerUndoSkipResponse, type ExpectedTransactionControllerUnmatchData, type ExpectedTransactionControllerUnmatchResponse, type ExpectedTransactionListResponseDto, type ExpectedTransactionResponseDto, type ExpectedTransactionRuleDto, type ExpensesByCategoryResponseDto, type ExpensesByCategorySummaryDto, type ExportControllerExportBeancountResponse, type ExportRulesResponseDto, type ExternalAccountLinkControllerCreateData, type ExternalAccountLinkControllerCreateResponse, type ExternalAccountLinkControllerFindAllData, type ExternalAccountLinkControllerFindAllResponse, type ExternalAccountLinkControllerFindOneData, type ExternalAccountLinkControllerFindOneResponse, type ExternalAccountLinkControllerRemoveData, type ExternalAccountLinkControllerRemoveResponse, type ExternalAccountLinkListResponseDto, type ExternalAccountLinkResponseDto, type FileImportControllerIdentifyFileData, type FileImportControllerIdentifyFileResponse, type FileImportControllerImportBeancountData, type FileImportControllerImportBeancountResponse, type FileImportControllerImportFileData, type FileImportControllerImportFileResponse, type FileImportDto, type ForecastControllerGetForecastData, type ForecastControllerGetForecastResponse, type ForecastItemDto, type ForecastResponseDto, type FxRateDto, type GenerateSnapshotBody, type GenerateSnapshotResponse, type HealthControllerCheckDatabaseResponse, type HealthControllerCheckOpenBbResponse, type HealthControllerCheckRedisResponse, type HealthControllerGetCircuitBreakersHealthResponse, type HealthControllerGetHealthResponse, type HealthControllerGetMetricsResponse, type HealthControllerResetCircuitBreakerData, type HealthControllerResetCircuitBreakerResponse, HealthService, type HoldingAssetClassAccountSliceDto, type HoldingAssetClassCrossAccountResponseDto, type HoldingPnlControllerGetHoldingPnlData, type HoldingPnlControllerGetHoldingPnlResponse, type HoldingPnlResponseDto, type HoldingPnlRowDto, type HoldingPnlWarningDto, type IdentifyResultDto, type ImportErrorDto, type ImportResultDto, type ImporterConfigControllerGetConfigData, type ImporterConfigControllerGetConfigResponse, type ImporterConfigControllerResetConfigData, type ImporterConfigControllerResetConfigResponse, type ImporterConfigControllerUpdateConfigData, type ImporterConfigControllerUpdateConfigResponse, type ImporterConfigDataDto, type ImporterConfigDto, type InfoControllerGetInfoResponse, type MapperDefaultsDto, type MonetaryDto, type MonthlyForecastDto, type MultiCurrencyBalanceResponseDto, type MultiCurrencyPointDto, type NetWorthByCurrencyDto, type NetWorthResponseDto, type NlpAccountConfirmationDataDto, type NlpAlternativePayeeDto, type NlpControllerClearSessionData, type NlpControllerClearSessionResponse, type NlpControllerGetSessionData, type NlpControllerGetSessionResponse, type NlpControllerProcessNaturalLanguageData, type NlpControllerProcessNaturalLanguageResponse, type NlpDefaultAccountsDto, type NlpDuplicateConfirmationDataDto, type NlpParsedDataDto, type NlpPayeeConfirmationDataDto, type NlpResponseDto, type NlpRuleConfirmationDataDto, type NlpSimilarityDto, type NlpSourceTransactionDto, type NlpSuggestedAccountDto, type NlpSuggestedAccountsDto, type NlpSuggestedPayeeDto, type NlpTargetTransactionDto, type NlpTransactionInfoDto, type OnboardingAccountDto, type OnboardingControllerBootstrapData, type OnboardingControllerBootstrapResponse, type OnboardingDto, OpenAPI, type OpenAPIConfig, type OpeningBalanceResultDto, type PadReconciliationDto, type PadResultDto, type ParserTelemetryReportDto, type PayeeAutocompleteResponseDto, type PayeeControllerAutocompleteData, type PayeeControllerAutocompleteResponse, type PayeeControllerCreateData, type PayeeControllerCreateResponse, type PayeeControllerDeleteData, type PayeeControllerDeleteResponse, type PayeeControllerFindAllData, type PayeeControllerFindAllResponse, type PayeeControllerFindOneData, type PayeeControllerFindOneResponse, type PayeeControllerGetTopPayeesData, type PayeeControllerGetTopPayeesResponse, type PayeeControllerUpdateData, type PayeeControllerUpdateResponse, type PayeeListResponseDto, type PayeeProfileAdminControllerCreateData, type PayeeProfileAdminControllerCreateResponse, type PayeeProfileAdminControllerDeleteData, type PayeeProfileAdminControllerDeleteResponse, type PayeeProfileAdminControllerFindAllData, type PayeeProfileAdminControllerFindAllResponse, type PayeeProfileAdminControllerFindOneData, type PayeeProfileAdminControllerFindOneResponse, type PayeeProfileAdminControllerUnverifyData, type PayeeProfileAdminControllerUnverifyResponse, type PayeeProfileAdminControllerUpdateData, type PayeeProfileAdminControllerUpdateResponse, type PayeeProfileAdminControllerVerifyData, type PayeeProfileAdminControllerVerifyResponse, type PayeeProfileListResponseDto, type PayeeProfileResponseDto, type PayeeResponseDto, type PayeeStatsResponseDto, type PlatformControllerCreateData, type PlatformControllerCreateResponse, type PlatformControllerDeleteData, type PlatformControllerDeleteResponse, type PlatformControllerFindAllResponse, type PlatformControllerGetPlatformListResponse, type PlatformControllerMatchPlatformsData, type PlatformControllerMatchPlatformsResponse, type PlatformControllerUpdateData, type PlatformControllerUpdateResponse, type PlatformGroupDto, type PlatformListItemDto, type PlatformMatchResponseDto, type PlatformMatchResultDto, type PortfolioTrendsResponseDto, type PostingDetailDto, type PostingResponseDto, type PriceControllerBulkCreateData, type PriceControllerBulkCreateResponse, type PriceControllerCreateData, type PriceControllerCreateResponse, type PriceControllerDeleteData, type PriceControllerDeleteResponse, type PriceControllerFindAllData, type PriceControllerFindAllResponse, type PriceControllerFindOneData, type PriceControllerFindOneResponse, type PriceControllerUpdateData, type PriceControllerUpdateResponse, type PriceListResponseDto, type PriceResponseDto, type ProcessNlpDto, type PropertyControllerDeleteData, type PropertyControllerDeleteResponse, type PropertyControllerGetAllResponse, type PropertyControllerGetByKeyData, type PropertyControllerGetByKeyResponse, type PropertyControllerUpdateData, type PropertyControllerUpdateResponse, type ProviderSyncConfigDto, type ProviderSyncControllerGetSupportedProvidersData, type ProviderSyncControllerGetSupportedProvidersResponse, type ProviderSyncControllerIsProviderSupportedData, type ProviderSyncControllerIsProviderSupportedResponse, type ProviderSyncControllerSyncData, type ProviderSyncControllerSyncResponse, type ProviderSyncDto, type ProviderSyncResponseDto, ProviderSyncService, type ReconciliationComputeResultDto, type ReconciliationControllerAssertData, type ReconciliationControllerAssertResponse, type ReconciliationControllerComputeData, type ReconciliationControllerComputeResponse, type ReconciliationControllerHistoryData, type ReconciliationControllerHistoryResponse, type ReconciliationControllerPadData, type ReconciliationControllerPadResponse, type ReconciliationRecordDto, type RecurringMatchInfoDto, type RecurringRuleControllerCreateData, type RecurringRuleControllerCreateFromTransactionData, type RecurringRuleControllerCreateFromTransactionResponse, type RecurringRuleControllerCreateResponse, type RecurringRuleControllerDeleteData, type RecurringRuleControllerDeleteResponse, type RecurringRuleControllerFindAllData, type RecurringRuleControllerFindAllResponse, type RecurringRuleControllerFindOneData, type RecurringRuleControllerFindOneResponse, type RecurringRuleControllerGetWithStatsData, type RecurringRuleControllerGetWithStatsResponse, type RecurringRuleControllerUpdateData, type RecurringRuleControllerUpdateResponse, type RecurringRuleResponseDto, type RecurringRuleWithStatsResponseDto, type RecurringSuggestionDto, type RegionConfigDto, type RegionInfoDto, type RegionsMetadataResponseDto, type ReopenAccountDto, type ReportingControllerBackfillSnapshotsData, type ReportingControllerBackfillSnapshotsResponse, type ReportingControllerGenerateSnapshotData, type ReportingControllerGenerateSnapshotResponse, type ReportingControllerGetCashFlowTrendsData, type ReportingControllerGetCashFlowTrendsResponse, type ReportingControllerGetPortfolioTrendsData, type ReportingControllerGetPortfolioTrendsResponse, type ResolveResultDto, type ResolveReviewDto, type ReviewControllerBatchResolveData, type ReviewControllerBatchResolveResponse, type ReviewControllerFindAllData, type ReviewControllerFindAllResponse, type ReviewControllerFindOneData, type ReviewControllerFindOneResponse, type ReviewControllerGetStatsData, type ReviewControllerGetStatsResponse, type ReviewControllerResolveData, type ReviewControllerResolveResponse, type ReviewControllerUndoData, type ReviewControllerUndoResponse, type ReviewDetailDto, type ReviewItemPreviewDto, type ReviewListResponseDto, type ReviewStatsDto, type ReviewSummaryDto, type RuleStatisticsResponseDto, type SignupDto, type SignupResponseDto, type SupportedProvidersResponseDto, type TagSuggestionDto, type TagSuggestionsResponseDto, type TelemetryControllerGetCoverageMetricsData, type TelemetryControllerGetCoverageMetricsResponse, type TelemetryControllerReportCoverageMissData, type TelemetryControllerReportCoverageMissResponse, type TelemetryControllerReportTelemetryData, type TelemetryControllerReportTelemetryResponse, type TemplateMetadataDto, type TemplateMetadataResponseDto, type TestRuleDto, type TestRuleResponseDto, type TimeSeriesPointDto, type TransactionControllerCorrectData, type TransactionControllerCorrectResponse, type TransactionControllerCreateBatchData, type TransactionControllerCreateBatchResponse, type TransactionControllerCreateData, type TransactionControllerCreateResponse, type TransactionControllerDeleteData, type TransactionControllerDeleteResponse, type TransactionControllerGetDetailData, type TransactionControllerGetDetailResponse, type TransactionControllerListData, type TransactionControllerListResponse, type TransactionControllerSuggestTagsData, type TransactionControllerSuggestTagsResponse, type TransactionControllerUpdateData, type TransactionControllerUpdateResponse, type TransactionDetailDto, type TransactionListResponseDto, type TransactionListSummaryDto, type TransactionResponseDto, type TransactionRuleControllerBulkCreateData, type TransactionRuleControllerBulkCreateResponse, type TransactionRuleControllerCreateData, type TransactionRuleControllerCreateResponse, type TransactionRuleControllerDeleteData, type TransactionRuleControllerDeleteResponse, type TransactionRuleControllerExportData, type TransactionRuleControllerExportResponse, type TransactionRuleControllerGetDetailData, type TransactionRuleControllerGetDetailResponse, type TransactionRuleControllerGetStatisticsData, type TransactionRuleControllerGetStatisticsResponse, type TransactionRuleControllerListData, type TransactionRuleControllerListResponse, type TransactionRuleControllerTestData, type TransactionRuleControllerTestResponse, type TransactionRuleControllerUpdateData, type TransactionRuleControllerUpdateResponse, type TransactionRuleControllerValidateData, type TransactionRuleControllerValidateResponse, type TransactionRuleListResponseDto, type TransactionRuleResponseDto, type TransactionSummaryDto, type TrendSummaryDto, type UncoveredFormatMissDto, type UndoResultDto, type UpdateAccountDto, type UpdateBeanEventDto, type UpdateBeanPriceDto, type UpdateCommodityDto, type UpdateConfigDataDto, type UpdateImporterConfigDto, type UpdateMapperDefaultsDto, type UpdatePayeeDto, type UpdatePayeeProfileDto, type UpdatePlatformDto, type UpdatePropertyDto, type UpdateRecurringRuleDto, type UpdateTransactionDto, type UpdateTransactionRuleDto, type UpdateUserSettingDto, type UserControllerDeleteOwnUserData, type UserControllerDeleteOwnUserResponse, type UserControllerDeleteUserData, type UserControllerDeleteUserResponse, type UserControllerGetAllUserSettingsByPageData, type UserControllerGetAllUserSettingsByPageResponse, type UserControllerGetAssetLiabilitySummaryResponse, type UserControllerGetUserData, type UserControllerGetUserInfoData, type UserControllerGetUserInfoResponse, type UserControllerGetUserResponse, type UserControllerSignupUserData, type UserControllerSignupUserResponse, type UserControllerUpdateUserSettingData, type UserControllerUpdateUserSettingResponse, type ValidateRuleDto, type ValidateRuleResponseDto, type VersionedConfigDto, type action, type action2, type assetClass, type assetSubClass, type assetSubType, type bookingMethod, type branchType, type category, type chartToken, type colorScheme, type confidenceLevel, type conflictStrategy, type dataSource, type equitySubType, type flag, type flag2, type frequency, type importerId, type intent, type investmentAction, type learningSource, type liabilitySubType, type matchLogic, type matchType, type matchType2, type method, type mode, type paymentSource, type period, type provider, type role, type source, type source2, type source3, type status, type status2, type status3, type status4, type suggestedAction, type suggestedFrequency, type type, type type2, type type3, type type4, type value, type viewMode };
|
|
9533
|
+
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 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 ValidateRuleDto, type ValidateRuleResponseDto, type VersionedConfigDto, type action, type action2, type assetClass, type assetSubClass, type assetSubType, type bookingMethod, type branchType, type category, type chartToken, type colorScheme, type confidenceLevel, type conflictStrategy, type dataSource, type equitySubType, type flag, type flag2, type frequency, type importerId, type intent, type investmentAction, type learningSource, type liabilitySubType, type matchLogic, type matchType, type matchType2, type method, type mode, type paymentSource, type period, type productCategory, type provider, type role, type source, type source2, type source3, type status, type status2, type status3, type status4, type suggestedAction, type suggestedFrequency, type type, type type2, type type3, type type4, type value, type viewMode };
|