@firela/api-types 0.0.0-canary.e7524e0a → 0.0.0-canary.e7fcdb9d
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 +158 -119
- package/dist/index.d.ts +158 -119
- package/package.json +1 -1
- package/src/generated/schemas.gen.ts +78 -11
- package/src/generated/services.gen.ts +11 -3
- package/src/generated/types.gen.ts +2821 -128
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
|
*/
|
|
@@ -4163,13 +4183,21 @@ type PlatformListItemDto = {
|
|
|
4163
4183
|
*/
|
|
4164
4184
|
canonical: string;
|
|
4165
4185
|
/**
|
|
4166
|
-
* Suggested path segment —
|
|
4186
|
+
* Suggested path segment — PascalCase of canonical, hyphens removed (e.g. "ApplePay")
|
|
4167
4187
|
*/
|
|
4168
4188
|
suggestedSegment: string;
|
|
4169
4189
|
/**
|
|
4170
4190
|
* Logo URL
|
|
4171
4191
|
*/
|
|
4172
4192
|
logoUrl: string | null;
|
|
4193
|
+
/**
|
|
4194
|
+
* ISO 3166-1 alpha-2 (UPPERCASE); null = global platform
|
|
4195
|
+
*/
|
|
4196
|
+
countryCode: string | null;
|
|
4197
|
+
/**
|
|
4198
|
+
* Region-aware category (institution vocab, e.g. DigitalWallet/Bank). null = no region-aware suggestion; fall back to type.
|
|
4199
|
+
*/
|
|
4200
|
+
category: string | null;
|
|
4173
4201
|
/**
|
|
4174
4202
|
* Whether user has accounts using this platform
|
|
4175
4203
|
*/
|
|
@@ -4197,13 +4225,21 @@ type PlatformMatchResultDto = {
|
|
|
4197
4225
|
*/
|
|
4198
4226
|
type: 'BANK' | 'BROKERAGE' | 'CRYPTO_EXCHANGE' | 'PAYMENT' | 'INVESTMENT' | 'INSURANCE' | 'OTHER';
|
|
4199
4227
|
/**
|
|
4200
|
-
* Suggested path segment — canonical,
|
|
4228
|
+
* Suggested path segment — PascalCase of canonical, hyphens removed (e.g. "ApplePay")
|
|
4201
4229
|
*/
|
|
4202
4230
|
suggestedSegment: string;
|
|
4203
4231
|
/**
|
|
4204
4232
|
* Logo URL
|
|
4205
4233
|
*/
|
|
4206
4234
|
logoUrl: string | null;
|
|
4235
|
+
/**
|
|
4236
|
+
* ISO 3166-1 alpha-2 (UPPERCASE); null = global platform
|
|
4237
|
+
*/
|
|
4238
|
+
countryCode: string | null;
|
|
4239
|
+
/**
|
|
4240
|
+
* Region-aware category (institution vocab, e.g. DigitalWallet/Bank). null = no region-aware suggestion; fall back to type.
|
|
4241
|
+
*/
|
|
4242
|
+
category: string | null;
|
|
4207
4243
|
/**
|
|
4208
4244
|
* How this row matched: 'exact' > 'prefix' > 'substring'
|
|
4209
4245
|
*/
|
|
@@ -4549,10 +4585,6 @@ type AssetClassGroupDto = {
|
|
|
4549
4585
|
*/
|
|
4550
4586
|
convertedBalance?: string;
|
|
4551
4587
|
};
|
|
4552
|
-
/**
|
|
4553
|
-
* Asset class name
|
|
4554
|
-
*/
|
|
4555
|
-
type assetClass = 'LIQUIDITY' | 'EQUITY' | 'FIXED_INCOME' | 'PRECIOUS_METALS' | 'COMMODITY' | 'INSURANCE' | 'ALTERNATIVE_INVESTMENT' | 'PERSONAL_ASSETS' | 'LIABILITY' | 'REAL_ESTATE' | 'INDEX';
|
|
4556
4588
|
type AssetClassSummaryDto = {
|
|
4557
4589
|
/**
|
|
4558
4590
|
* Total number of accounts
|
|
@@ -5078,7 +5110,7 @@ type AccountControllerCreateData = {
|
|
|
5078
5110
|
/**
|
|
5079
5111
|
* Region code for tenant context
|
|
5080
5112
|
*/
|
|
5081
|
-
region: '
|
|
5113
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5082
5114
|
requestBody: CreateAccountDto;
|
|
5083
5115
|
};
|
|
5084
5116
|
type AccountControllerCreateResponse = AccountResponseDto;
|
|
@@ -5098,7 +5130,7 @@ type AccountControllerFindAllData = {
|
|
|
5098
5130
|
/**
|
|
5099
5131
|
* Region code for tenant context
|
|
5100
5132
|
*/
|
|
5101
|
-
region: '
|
|
5133
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5102
5134
|
/**
|
|
5103
5135
|
* Search term for account path
|
|
5104
5136
|
*/
|
|
@@ -5121,7 +5153,7 @@ type AccountControllerFindOneData = {
|
|
|
5121
5153
|
/**
|
|
5122
5154
|
* Region code for tenant context
|
|
5123
5155
|
*/
|
|
5124
|
-
region: '
|
|
5156
|
+
region: 'ad' | '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
5157
|
};
|
|
5126
5158
|
type AccountControllerFindOneResponse = AccountResponseDto;
|
|
5127
5159
|
type AccountControllerUpdateData = {
|
|
@@ -5132,7 +5164,7 @@ type AccountControllerUpdateData = {
|
|
|
5132
5164
|
/**
|
|
5133
5165
|
* Region code for tenant context
|
|
5134
5166
|
*/
|
|
5135
|
-
region: '
|
|
5167
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5136
5168
|
requestBody: UpdateAccountDto;
|
|
5137
5169
|
};
|
|
5138
5170
|
type AccountControllerUpdateResponse = AccountResponseDto;
|
|
@@ -5144,7 +5176,7 @@ type AccountControllerDeleteData = {
|
|
|
5144
5176
|
/**
|
|
5145
5177
|
* Region code for tenant context
|
|
5146
5178
|
*/
|
|
5147
|
-
region: '
|
|
5179
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5148
5180
|
};
|
|
5149
5181
|
type AccountControllerDeleteResponse = void;
|
|
5150
5182
|
type AccountControllerCloseData = {
|
|
@@ -5155,7 +5187,7 @@ type AccountControllerCloseData = {
|
|
|
5155
5187
|
/**
|
|
5156
5188
|
* Region code for tenant context
|
|
5157
5189
|
*/
|
|
5158
|
-
region: '
|
|
5190
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5159
5191
|
requestBody: CloseAccountDto;
|
|
5160
5192
|
};
|
|
5161
5193
|
type AccountControllerCloseResponse = AccountResponseDto;
|
|
@@ -5167,7 +5199,7 @@ type AccountControllerReopenData = {
|
|
|
5167
5199
|
/**
|
|
5168
5200
|
* Region code for tenant context
|
|
5169
5201
|
*/
|
|
5170
|
-
region: '
|
|
5202
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5171
5203
|
requestBody: ReopenAccountDto;
|
|
5172
5204
|
};
|
|
5173
5205
|
type AccountControllerReopenResponse = AccountResponseDto;
|
|
@@ -5179,7 +5211,7 @@ type AccountControllerAddOpeningBalanceData = {
|
|
|
5179
5211
|
/**
|
|
5180
5212
|
* Region code for tenant context
|
|
5181
5213
|
*/
|
|
5182
|
-
region: '
|
|
5214
|
+
region: 'ad' | '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
5215
|
requestBody: CreateOpeningBalanceDto;
|
|
5184
5216
|
};
|
|
5185
5217
|
type AccountControllerAddOpeningBalanceResponse = OpeningBalanceResultDto;
|
|
@@ -5187,7 +5219,7 @@ type AccountStandardsControllerGetTemplatesData = {
|
|
|
5187
5219
|
/**
|
|
5188
5220
|
* Region code (cn, us, de)
|
|
5189
5221
|
*/
|
|
5190
|
-
region: '
|
|
5222
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5191
5223
|
/**
|
|
5192
5224
|
* Search term for path or description
|
|
5193
5225
|
*/
|
|
@@ -5206,21 +5238,21 @@ type AccountStandardsControllerGetTemplateMetadataData = {
|
|
|
5206
5238
|
/**
|
|
5207
5239
|
* Region code for tenant context
|
|
5208
5240
|
*/
|
|
5209
|
-
region: '
|
|
5241
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5210
5242
|
};
|
|
5211
5243
|
type AccountStandardsControllerGetTemplateMetadataResponse = TemplateMetadataResponseDto;
|
|
5212
5244
|
type AccountStandardsControllerGetRegionsData = {
|
|
5213
5245
|
/**
|
|
5214
5246
|
* Region code for tenant context
|
|
5215
5247
|
*/
|
|
5216
|
-
region: '
|
|
5248
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5217
5249
|
};
|
|
5218
5250
|
type AccountStandardsControllerGetRegionsResponse = RegionsMetadataResponseDto;
|
|
5219
5251
|
type TransactionControllerCreateData = {
|
|
5220
5252
|
/**
|
|
5221
5253
|
* Region code for tenant context
|
|
5222
5254
|
*/
|
|
5223
|
-
region: '
|
|
5255
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5224
5256
|
/**
|
|
5225
5257
|
* Transaction data with postings
|
|
5226
5258
|
*/
|
|
@@ -5255,7 +5287,7 @@ type TransactionControllerListData = {
|
|
|
5255
5287
|
/**
|
|
5256
5288
|
* Region code for tenant context
|
|
5257
5289
|
*/
|
|
5258
|
-
region: '
|
|
5290
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5259
5291
|
/**
|
|
5260
5292
|
* Search in narration and payee fields (max 200 chars)
|
|
5261
5293
|
*/
|
|
@@ -5270,7 +5302,7 @@ type TransactionControllerCreateBatchData = {
|
|
|
5270
5302
|
/**
|
|
5271
5303
|
* Region code for tenant context
|
|
5272
5304
|
*/
|
|
5273
|
-
region: '
|
|
5305
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5274
5306
|
requestBody: BatchCreateTransactionDto;
|
|
5275
5307
|
};
|
|
5276
5308
|
type TransactionControllerCreateBatchResponse = BatchTransactionResponseDto;
|
|
@@ -5282,7 +5314,7 @@ type TransactionControllerCorrectData = {
|
|
|
5282
5314
|
/**
|
|
5283
5315
|
* Region code for tenant context
|
|
5284
5316
|
*/
|
|
5285
|
-
region: '
|
|
5317
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5286
5318
|
requestBody: CorrectTransactionDto;
|
|
5287
5319
|
};
|
|
5288
5320
|
type TransactionControllerCorrectResponse = TransactionDetailDto;
|
|
@@ -5298,7 +5330,7 @@ type TransactionControllerSuggestTagsData = {
|
|
|
5298
5330
|
/**
|
|
5299
5331
|
* Region code for tenant context
|
|
5300
5332
|
*/
|
|
5301
|
-
region: '
|
|
5333
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5302
5334
|
/**
|
|
5303
5335
|
* usage (default) or name
|
|
5304
5336
|
*/
|
|
@@ -5313,7 +5345,7 @@ type TransactionControllerGetDetailData = {
|
|
|
5313
5345
|
/**
|
|
5314
5346
|
* Region code for tenant context
|
|
5315
5347
|
*/
|
|
5316
|
-
region: '
|
|
5348
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5317
5349
|
};
|
|
5318
5350
|
type TransactionControllerGetDetailResponse = TransactionDetailDto;
|
|
5319
5351
|
type TransactionControllerUpdateData = {
|
|
@@ -5324,7 +5356,7 @@ type TransactionControllerUpdateData = {
|
|
|
5324
5356
|
/**
|
|
5325
5357
|
* Region code for tenant context
|
|
5326
5358
|
*/
|
|
5327
|
-
region: '
|
|
5359
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5328
5360
|
/**
|
|
5329
5361
|
* Fields to update (all optional)
|
|
5330
5362
|
*/
|
|
@@ -5339,7 +5371,7 @@ type TransactionControllerDeleteData = {
|
|
|
5339
5371
|
/**
|
|
5340
5372
|
* Region code for tenant context
|
|
5341
5373
|
*/
|
|
5342
|
-
region: '
|
|
5374
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5343
5375
|
};
|
|
5344
5376
|
type TransactionControllerDeleteResponse = void;
|
|
5345
5377
|
type BalanceControllerGetBalanceData = {
|
|
@@ -5358,14 +5390,14 @@ type BalanceControllerGetBalanceData = {
|
|
|
5358
5390
|
/**
|
|
5359
5391
|
* Region code for tenant context
|
|
5360
5392
|
*/
|
|
5361
|
-
region: '
|
|
5393
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5362
5394
|
};
|
|
5363
5395
|
type BalanceControllerGetBalanceResponse = BalanceResponseDto;
|
|
5364
5396
|
type BalanceControllerGetMultiCurrencyBalanceData = {
|
|
5365
5397
|
/**
|
|
5366
5398
|
* Region code for tenant context
|
|
5367
5399
|
*/
|
|
5368
|
-
region: '
|
|
5400
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5369
5401
|
};
|
|
5370
5402
|
type BalanceControllerGetMultiCurrencyBalanceResponse = MultiCurrencyBalanceResponseDto;
|
|
5371
5403
|
type ReviewControllerFindAllData = {
|
|
@@ -5384,7 +5416,7 @@ type ReviewControllerFindAllData = {
|
|
|
5384
5416
|
/**
|
|
5385
5417
|
* Region code for tenant context
|
|
5386
5418
|
*/
|
|
5387
|
-
region: '
|
|
5419
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5388
5420
|
/**
|
|
5389
5421
|
* Sort order
|
|
5390
5422
|
*/
|
|
@@ -5399,7 +5431,7 @@ type ReviewControllerGetStatsData = {
|
|
|
5399
5431
|
/**
|
|
5400
5432
|
* Region code for tenant context
|
|
5401
5433
|
*/
|
|
5402
|
-
region: '
|
|
5434
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5403
5435
|
};
|
|
5404
5436
|
type ReviewControllerGetStatsResponse = ReviewStatsDto;
|
|
5405
5437
|
type ReviewControllerFindOneData = {
|
|
@@ -5410,7 +5442,7 @@ type ReviewControllerFindOneData = {
|
|
|
5410
5442
|
/**
|
|
5411
5443
|
* Region code for tenant context
|
|
5412
5444
|
*/
|
|
5413
|
-
region: '
|
|
5445
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5414
5446
|
};
|
|
5415
5447
|
type ReviewControllerFindOneResponse = ReviewDetailDto;
|
|
5416
5448
|
type ReviewControllerResolveData = {
|
|
@@ -5421,7 +5453,7 @@ type ReviewControllerResolveData = {
|
|
|
5421
5453
|
/**
|
|
5422
5454
|
* Region code for tenant context
|
|
5423
5455
|
*/
|
|
5424
|
-
region: '
|
|
5456
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5425
5457
|
requestBody: ResolveReviewDto;
|
|
5426
5458
|
};
|
|
5427
5459
|
type ReviewControllerResolveResponse = ResolveResultDto;
|
|
@@ -5433,14 +5465,14 @@ type ReviewControllerUndoData = {
|
|
|
5433
5465
|
/**
|
|
5434
5466
|
* Region code for tenant context
|
|
5435
5467
|
*/
|
|
5436
|
-
region: '
|
|
5468
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5437
5469
|
};
|
|
5438
5470
|
type ReviewControllerUndoResponse = UndoResultDto;
|
|
5439
5471
|
type ReviewControllerBatchResolveData = {
|
|
5440
5472
|
/**
|
|
5441
5473
|
* Region code for tenant context
|
|
5442
5474
|
*/
|
|
5443
|
-
region: '
|
|
5475
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5444
5476
|
/**
|
|
5445
5477
|
* Batch resolution request containing review IDs and action
|
|
5446
5478
|
*/
|
|
@@ -5585,7 +5617,7 @@ type CommodityControllerCreateData = {
|
|
|
5585
5617
|
/**
|
|
5586
5618
|
* Region code for tenant context
|
|
5587
5619
|
*/
|
|
5588
|
-
region: '
|
|
5620
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5589
5621
|
requestBody: CreateCommodityDto;
|
|
5590
5622
|
};
|
|
5591
5623
|
type CommodityControllerCreateResponse = CommodityResponseDto;
|
|
@@ -5593,7 +5625,7 @@ type CommodityControllerFindAllData = {
|
|
|
5593
5625
|
/**
|
|
5594
5626
|
* Region code for tenant context
|
|
5595
5627
|
*/
|
|
5596
|
-
region: '
|
|
5628
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5597
5629
|
/**
|
|
5598
5630
|
* Search term for symbol or metadata fields (partial match). Searches symbol and metadata.name.
|
|
5599
5631
|
*/
|
|
@@ -5608,7 +5640,7 @@ type CommodityControllerFindOneData = {
|
|
|
5608
5640
|
/**
|
|
5609
5641
|
* Region code for tenant context
|
|
5610
5642
|
*/
|
|
5611
|
-
region: '
|
|
5643
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5612
5644
|
/**
|
|
5613
5645
|
* Commodity symbol
|
|
5614
5646
|
*/
|
|
@@ -5619,7 +5651,7 @@ type CommodityControllerUpdateData = {
|
|
|
5619
5651
|
/**
|
|
5620
5652
|
* Region code for tenant context
|
|
5621
5653
|
*/
|
|
5622
|
-
region: '
|
|
5654
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5623
5655
|
requestBody: UpdateCommodityDto;
|
|
5624
5656
|
/**
|
|
5625
5657
|
* Commodity symbol
|
|
@@ -5631,7 +5663,7 @@ type CommodityControllerDeleteData = {
|
|
|
5631
5663
|
/**
|
|
5632
5664
|
* Region code for tenant context
|
|
5633
5665
|
*/
|
|
5634
|
-
region: '
|
|
5666
|
+
region: 'ad' | '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
5667
|
/**
|
|
5636
5668
|
* Commodity symbol
|
|
5637
5669
|
*/
|
|
@@ -5642,7 +5674,7 @@ type CommodityControllerGetOrCreateData = {
|
|
|
5642
5674
|
/**
|
|
5643
5675
|
* Region code for tenant context
|
|
5644
5676
|
*/
|
|
5645
|
-
region: '
|
|
5677
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5646
5678
|
/**
|
|
5647
5679
|
* Commodity symbol
|
|
5648
5680
|
*/
|
|
@@ -5653,14 +5685,14 @@ type CommodityControllerBulkCreateData = {
|
|
|
5653
5685
|
/**
|
|
5654
5686
|
* Region code for tenant context
|
|
5655
5687
|
*/
|
|
5656
|
-
region: '
|
|
5688
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5657
5689
|
};
|
|
5658
5690
|
type CommodityControllerBulkCreateResponse = Array<CommodityResponseDto>;
|
|
5659
5691
|
type PriceControllerCreateData = {
|
|
5660
5692
|
/**
|
|
5661
5693
|
* Region code for tenant context
|
|
5662
5694
|
*/
|
|
5663
|
-
region: '
|
|
5695
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5664
5696
|
requestBody: CreateBeanPriceDto;
|
|
5665
5697
|
};
|
|
5666
5698
|
type PriceControllerCreateResponse = PriceResponseDto;
|
|
@@ -5692,7 +5724,7 @@ type PriceControllerFindAllData = {
|
|
|
5692
5724
|
/**
|
|
5693
5725
|
* Region code for tenant context
|
|
5694
5726
|
*/
|
|
5695
|
-
region: '
|
|
5727
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5696
5728
|
/**
|
|
5697
5729
|
* Search term for currency or quoteCurrency (case-insensitive partial match)
|
|
5698
5730
|
*/
|
|
@@ -5707,7 +5739,7 @@ type PriceControllerFindOneData = {
|
|
|
5707
5739
|
/**
|
|
5708
5740
|
* Region code for tenant context
|
|
5709
5741
|
*/
|
|
5710
|
-
region: '
|
|
5742
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5711
5743
|
};
|
|
5712
5744
|
type PriceControllerFindOneResponse = PriceResponseDto;
|
|
5713
5745
|
type PriceControllerUpdateData = {
|
|
@@ -5718,7 +5750,7 @@ type PriceControllerUpdateData = {
|
|
|
5718
5750
|
/**
|
|
5719
5751
|
* Region code for tenant context
|
|
5720
5752
|
*/
|
|
5721
|
-
region: '
|
|
5753
|
+
region: 'ad' | '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
5754
|
requestBody: UpdateBeanPriceDto;
|
|
5723
5755
|
};
|
|
5724
5756
|
type PriceControllerUpdateResponse = PriceResponseDto;
|
|
@@ -5730,14 +5762,14 @@ type PriceControllerDeleteData = {
|
|
|
5730
5762
|
/**
|
|
5731
5763
|
* Region code for tenant context
|
|
5732
5764
|
*/
|
|
5733
|
-
region: '
|
|
5765
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5734
5766
|
};
|
|
5735
5767
|
type PriceControllerDeleteResponse = void;
|
|
5736
5768
|
type PriceControllerBulkCreateData = {
|
|
5737
5769
|
/**
|
|
5738
5770
|
* Region code for tenant context
|
|
5739
5771
|
*/
|
|
5740
|
-
region: '
|
|
5772
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5741
5773
|
requestBody: Array<string>;
|
|
5742
5774
|
};
|
|
5743
5775
|
type PriceControllerBulkCreateResponse = Array<PriceResponseDto>;
|
|
@@ -5745,7 +5777,7 @@ type RecurringRuleControllerCreateData = {
|
|
|
5745
5777
|
/**
|
|
5746
5778
|
* Region code for tenant context
|
|
5747
5779
|
*/
|
|
5748
|
-
region: '
|
|
5780
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5749
5781
|
requestBody: CreateRecurringRuleDto;
|
|
5750
5782
|
};
|
|
5751
5783
|
type RecurringRuleControllerCreateResponse = RecurringRuleResponseDto;
|
|
@@ -5765,14 +5797,14 @@ type RecurringRuleControllerFindAllData = {
|
|
|
5765
5797
|
/**
|
|
5766
5798
|
* Region code for tenant context
|
|
5767
5799
|
*/
|
|
5768
|
-
region: '
|
|
5800
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5769
5801
|
};
|
|
5770
5802
|
type RecurringRuleControllerFindAllResponse = Array<RecurringRuleResponseDto>;
|
|
5771
5803
|
type RecurringRuleControllerCreateFromTransactionData = {
|
|
5772
5804
|
/**
|
|
5773
5805
|
* Region code for tenant context
|
|
5774
5806
|
*/
|
|
5775
|
-
region: '
|
|
5807
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5776
5808
|
requestBody: CreateRuleFromTransactionDto;
|
|
5777
5809
|
/**
|
|
5778
5810
|
* Source transaction ID
|
|
@@ -5788,7 +5820,7 @@ type RecurringRuleControllerFindOneData = {
|
|
|
5788
5820
|
/**
|
|
5789
5821
|
* Region code for tenant context
|
|
5790
5822
|
*/
|
|
5791
|
-
region: '
|
|
5823
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5792
5824
|
};
|
|
5793
5825
|
type RecurringRuleControllerFindOneResponse = RecurringRuleResponseDto;
|
|
5794
5826
|
type RecurringRuleControllerUpdateData = {
|
|
@@ -5799,7 +5831,7 @@ type RecurringRuleControllerUpdateData = {
|
|
|
5799
5831
|
/**
|
|
5800
5832
|
* Region code for tenant context
|
|
5801
5833
|
*/
|
|
5802
|
-
region: '
|
|
5834
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5803
5835
|
requestBody: UpdateRecurringRuleDto;
|
|
5804
5836
|
};
|
|
5805
5837
|
type RecurringRuleControllerUpdateResponse = RecurringRuleResponseDto;
|
|
@@ -5811,7 +5843,7 @@ type RecurringRuleControllerDeleteData = {
|
|
|
5811
5843
|
/**
|
|
5812
5844
|
* Region code for tenant context
|
|
5813
5845
|
*/
|
|
5814
|
-
region: '
|
|
5846
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5815
5847
|
};
|
|
5816
5848
|
type RecurringRuleControllerDeleteResponse = void;
|
|
5817
5849
|
type RecurringRuleControllerGetWithStatsData = {
|
|
@@ -5822,7 +5854,7 @@ type RecurringRuleControllerGetWithStatsData = {
|
|
|
5822
5854
|
/**
|
|
5823
5855
|
* Region code for tenant context
|
|
5824
5856
|
*/
|
|
5825
|
-
region: '
|
|
5857
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5826
5858
|
};
|
|
5827
5859
|
type RecurringRuleControllerGetWithStatsResponse = RecurringRuleWithStatsResponseDto;
|
|
5828
5860
|
type ExpectedTransactionControllerFindAllData = {
|
|
@@ -5833,7 +5865,7 @@ type ExpectedTransactionControllerFindAllData = {
|
|
|
5833
5865
|
/**
|
|
5834
5866
|
* Region code for tenant context
|
|
5835
5867
|
*/
|
|
5836
|
-
region: '
|
|
5868
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5837
5869
|
/**
|
|
5838
5870
|
* Filter by recurring rule ID
|
|
5839
5871
|
*/
|
|
@@ -5852,7 +5884,7 @@ type ExpectedTransactionControllerFindOverdueData = {
|
|
|
5852
5884
|
/**
|
|
5853
5885
|
* Region code for tenant context
|
|
5854
5886
|
*/
|
|
5855
|
-
region: '
|
|
5887
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5856
5888
|
};
|
|
5857
5889
|
type ExpectedTransactionControllerFindOverdueResponse = ExpectedTransactionListResponseDto;
|
|
5858
5890
|
type ExpectedTransactionControllerFindOneData = {
|
|
@@ -5863,7 +5895,7 @@ type ExpectedTransactionControllerFindOneData = {
|
|
|
5863
5895
|
/**
|
|
5864
5896
|
* Region code for tenant context
|
|
5865
5897
|
*/
|
|
5866
|
-
region: '
|
|
5898
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5867
5899
|
};
|
|
5868
5900
|
type ExpectedTransactionControllerFindOneResponse = ExpectedTransactionResponseDto;
|
|
5869
5901
|
type ExpectedTransactionControllerSkipData = {
|
|
@@ -5874,7 +5906,7 @@ type ExpectedTransactionControllerSkipData = {
|
|
|
5874
5906
|
/**
|
|
5875
5907
|
* Region code for tenant context
|
|
5876
5908
|
*/
|
|
5877
|
-
region: '
|
|
5909
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5878
5910
|
};
|
|
5879
5911
|
type ExpectedTransactionControllerSkipResponse = ExpectedTransactionResponseDto;
|
|
5880
5912
|
type ExpectedTransactionControllerUndoSkipData = {
|
|
@@ -5885,7 +5917,7 @@ type ExpectedTransactionControllerUndoSkipData = {
|
|
|
5885
5917
|
/**
|
|
5886
5918
|
* Region code for tenant context
|
|
5887
5919
|
*/
|
|
5888
|
-
region: '
|
|
5920
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5889
5921
|
};
|
|
5890
5922
|
type ExpectedTransactionControllerUndoSkipResponse = ExpectedTransactionResponseDto;
|
|
5891
5923
|
type ExpectedTransactionControllerConfirmMatchData = {
|
|
@@ -5896,7 +5928,7 @@ type ExpectedTransactionControllerConfirmMatchData = {
|
|
|
5896
5928
|
/**
|
|
5897
5929
|
* Region code for tenant context
|
|
5898
5930
|
*/
|
|
5899
|
-
region: '
|
|
5931
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5900
5932
|
requestBody: ConfirmMatchDto;
|
|
5901
5933
|
};
|
|
5902
5934
|
type ExpectedTransactionControllerConfirmMatchResponse = unknown;
|
|
@@ -5908,7 +5940,7 @@ type ExpectedTransactionControllerUnmatchData = {
|
|
|
5908
5940
|
/**
|
|
5909
5941
|
* Region code for tenant context
|
|
5910
5942
|
*/
|
|
5911
|
-
region: '
|
|
5943
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5912
5944
|
};
|
|
5913
5945
|
type ExpectedTransactionControllerUnmatchResponse = unknown;
|
|
5914
5946
|
type ExpectedTransactionControllerEnterNowData = {
|
|
@@ -5919,7 +5951,7 @@ type ExpectedTransactionControllerEnterNowData = {
|
|
|
5919
5951
|
/**
|
|
5920
5952
|
* Region code for tenant context
|
|
5921
5953
|
*/
|
|
5922
|
-
region: '
|
|
5954
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5923
5955
|
requestBody: EnterNowDto;
|
|
5924
5956
|
};
|
|
5925
5957
|
type ExpectedTransactionControllerEnterNowResponse = unknown;
|
|
@@ -5931,7 +5963,7 @@ type ForecastControllerGetForecastData = {
|
|
|
5931
5963
|
/**
|
|
5932
5964
|
* Region code for tenant context
|
|
5933
5965
|
*/
|
|
5934
|
-
region: '
|
|
5966
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5935
5967
|
};
|
|
5936
5968
|
type ForecastControllerGetForecastResponse = ForecastResponseDto;
|
|
5937
5969
|
type ReportingControllerGetPortfolioTrendsData = {
|
|
@@ -5946,7 +5978,7 @@ type ReportingControllerGetPortfolioTrendsData = {
|
|
|
5946
5978
|
/**
|
|
5947
5979
|
* Region code for tenant context
|
|
5948
5980
|
*/
|
|
5949
|
-
region: '
|
|
5981
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5950
5982
|
};
|
|
5951
5983
|
type ReportingControllerGetPortfolioTrendsResponse = PortfolioTrendsResponseDto;
|
|
5952
5984
|
type ReportingControllerGetCashFlowTrendsData = {
|
|
@@ -5961,14 +5993,14 @@ type ReportingControllerGetCashFlowTrendsData = {
|
|
|
5961
5993
|
/**
|
|
5962
5994
|
* Region code for tenant context
|
|
5963
5995
|
*/
|
|
5964
|
-
region: '
|
|
5996
|
+
region: 'ad' | '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
5997
|
};
|
|
5966
5998
|
type ReportingControllerGetCashFlowTrendsResponse = CashFlowTrendsResponseDto;
|
|
5967
5999
|
type ReportingControllerGenerateSnapshotData = {
|
|
5968
6000
|
/**
|
|
5969
6001
|
* Region code for tenant context
|
|
5970
6002
|
*/
|
|
5971
|
-
region: '
|
|
6003
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5972
6004
|
/**
|
|
5973
6005
|
* Optional date (defaults to today)
|
|
5974
6006
|
*/
|
|
@@ -5979,7 +6011,7 @@ type ReportingControllerBackfillSnapshotsData = {
|
|
|
5979
6011
|
/**
|
|
5980
6012
|
* Region code for tenant context
|
|
5981
6013
|
*/
|
|
5982
|
-
region: '
|
|
6014
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5983
6015
|
requestBody: BackfillSnapshotsBody;
|
|
5984
6016
|
};
|
|
5985
6017
|
type ReportingControllerBackfillSnapshotsResponse = BackfillSnapshotsResponse;
|
|
@@ -6052,7 +6084,7 @@ type TransactionRuleControllerCreateData = {
|
|
|
6052
6084
|
/**
|
|
6053
6085
|
* Region code for tenant context
|
|
6054
6086
|
*/
|
|
6055
|
-
region: '
|
|
6087
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6056
6088
|
requestBody: CreateTransactionRuleDto;
|
|
6057
6089
|
};
|
|
6058
6090
|
type TransactionRuleControllerCreateResponse = TransactionRuleResponseDto;
|
|
@@ -6080,14 +6112,14 @@ type TransactionRuleControllerListData = {
|
|
|
6080
6112
|
/**
|
|
6081
6113
|
* Region code for tenant context
|
|
6082
6114
|
*/
|
|
6083
|
-
region: '
|
|
6115
|
+
region: 'ad' | '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
6116
|
};
|
|
6085
6117
|
type TransactionRuleControllerListResponse = TransactionRuleListResponseDto;
|
|
6086
6118
|
type TransactionRuleControllerValidateData = {
|
|
6087
6119
|
/**
|
|
6088
6120
|
* Region code for tenant context
|
|
6089
6121
|
*/
|
|
6090
|
-
region: '
|
|
6122
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6091
6123
|
requestBody: ValidateRuleDto;
|
|
6092
6124
|
};
|
|
6093
6125
|
type TransactionRuleControllerValidateResponse = ValidateRuleResponseDto;
|
|
@@ -6095,7 +6127,7 @@ type TransactionRuleControllerBulkCreateData = {
|
|
|
6095
6127
|
/**
|
|
6096
6128
|
* Region code for tenant context
|
|
6097
6129
|
*/
|
|
6098
|
-
region: '
|
|
6130
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6099
6131
|
requestBody: BulkCreateRulesDto;
|
|
6100
6132
|
};
|
|
6101
6133
|
type TransactionRuleControllerBulkCreateResponse = BulkCreateRulesResponseDto;
|
|
@@ -6107,7 +6139,7 @@ type TransactionRuleControllerExportData = {
|
|
|
6107
6139
|
/**
|
|
6108
6140
|
* Region code for tenant context
|
|
6109
6141
|
*/
|
|
6110
|
-
region: '
|
|
6142
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6111
6143
|
};
|
|
6112
6144
|
type TransactionRuleControllerExportResponse = ExportRulesResponseDto;
|
|
6113
6145
|
type TransactionRuleControllerGetStatisticsData = {
|
|
@@ -6118,14 +6150,14 @@ type TransactionRuleControllerGetStatisticsData = {
|
|
|
6118
6150
|
/**
|
|
6119
6151
|
* Region code for tenant context
|
|
6120
6152
|
*/
|
|
6121
|
-
region: '
|
|
6153
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6122
6154
|
};
|
|
6123
6155
|
type TransactionRuleControllerGetStatisticsResponse = RuleStatisticsResponseDto;
|
|
6124
6156
|
type TransactionRuleControllerGetDetailData = {
|
|
6125
6157
|
/**
|
|
6126
6158
|
* Region code for tenant context
|
|
6127
6159
|
*/
|
|
6128
|
-
region: '
|
|
6160
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6129
6161
|
/**
|
|
6130
6162
|
* Rule ID
|
|
6131
6163
|
*/
|
|
@@ -6136,7 +6168,7 @@ type TransactionRuleControllerUpdateData = {
|
|
|
6136
6168
|
/**
|
|
6137
6169
|
* Region code for tenant context
|
|
6138
6170
|
*/
|
|
6139
|
-
region: '
|
|
6171
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6140
6172
|
requestBody: UpdateTransactionRuleDto;
|
|
6141
6173
|
/**
|
|
6142
6174
|
* Rule ID to update
|
|
@@ -6148,7 +6180,7 @@ type TransactionRuleControllerDeleteData = {
|
|
|
6148
6180
|
/**
|
|
6149
6181
|
* Region code for tenant context
|
|
6150
6182
|
*/
|
|
6151
|
-
region: '
|
|
6183
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6152
6184
|
/**
|
|
6153
6185
|
* Rule ID to delete
|
|
6154
6186
|
*/
|
|
@@ -6159,7 +6191,7 @@ type TransactionRuleControllerTestData = {
|
|
|
6159
6191
|
/**
|
|
6160
6192
|
* Region code for tenant context
|
|
6161
6193
|
*/
|
|
6162
|
-
region: '
|
|
6194
|
+
region: 'ad' | '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
6195
|
requestBody: TestRuleDto;
|
|
6164
6196
|
/**
|
|
6165
6197
|
* Rule ID to test
|
|
@@ -6171,7 +6203,7 @@ type EventControllerCreateData = {
|
|
|
6171
6203
|
/**
|
|
6172
6204
|
* Region code for tenant context (decorative for life events)
|
|
6173
6205
|
*/
|
|
6174
|
-
region: '
|
|
6206
|
+
region: 'ad' | '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
6207
|
requestBody: CreateBeanEventDto;
|
|
6176
6208
|
};
|
|
6177
6209
|
type EventControllerCreateResponse = EventResponseDto;
|
|
@@ -6195,7 +6227,7 @@ type EventControllerFindAllData = {
|
|
|
6195
6227
|
/**
|
|
6196
6228
|
* Region code for tenant context (decorative for life events)
|
|
6197
6229
|
*/
|
|
6198
|
-
region: '
|
|
6230
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6199
6231
|
/**
|
|
6200
6232
|
* Filter life events to this date (ISO 8601 format)
|
|
6201
6233
|
*/
|
|
@@ -6214,7 +6246,7 @@ type EventControllerFindOneData = {
|
|
|
6214
6246
|
/**
|
|
6215
6247
|
* Region code for tenant context (decorative for life events)
|
|
6216
6248
|
*/
|
|
6217
|
-
region: '
|
|
6249
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6218
6250
|
};
|
|
6219
6251
|
type EventControllerFindOneResponse = EventResponseDto;
|
|
6220
6252
|
type EventControllerUpdateData = {
|
|
@@ -6225,7 +6257,7 @@ type EventControllerUpdateData = {
|
|
|
6225
6257
|
/**
|
|
6226
6258
|
* Region code for tenant context (decorative for life events)
|
|
6227
6259
|
*/
|
|
6228
|
-
region: '
|
|
6260
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6229
6261
|
requestBody: UpdateBeanEventDto;
|
|
6230
6262
|
};
|
|
6231
6263
|
type EventControllerUpdateResponse = EventResponseDto;
|
|
@@ -6237,7 +6269,7 @@ type EventControllerDeleteData = {
|
|
|
6237
6269
|
/**
|
|
6238
6270
|
* Region code for tenant context (decorative for life events)
|
|
6239
6271
|
*/
|
|
6240
|
-
region: '
|
|
6272
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6241
6273
|
};
|
|
6242
6274
|
type EventControllerDeleteResponse = void;
|
|
6243
6275
|
type EventControllerGetSliceData = {
|
|
@@ -6250,14 +6282,14 @@ type EventControllerGetSliceData = {
|
|
|
6250
6282
|
/**
|
|
6251
6283
|
* Region code for tenant context (decorative for life events)
|
|
6252
6284
|
*/
|
|
6253
|
-
region: '
|
|
6285
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6254
6286
|
};
|
|
6255
6287
|
type EventControllerGetSliceResponse = unknown;
|
|
6256
6288
|
type OnboardingControllerBootstrapData = {
|
|
6257
6289
|
/**
|
|
6258
6290
|
* Region code for tenant context
|
|
6259
6291
|
*/
|
|
6260
|
-
region: '
|
|
6292
|
+
region: 'ad' | '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
6293
|
requestBody: OnboardingDto;
|
|
6262
6294
|
};
|
|
6263
6295
|
type OnboardingControllerBootstrapResponse = unknown;
|
|
@@ -6265,7 +6297,7 @@ type ReconciliationControllerComputeData = {
|
|
|
6265
6297
|
/**
|
|
6266
6298
|
* Region code for tenant context (decorative for reconciliation)
|
|
6267
6299
|
*/
|
|
6268
|
-
region: '
|
|
6300
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6269
6301
|
requestBody: ComputeReconciliationDto;
|
|
6270
6302
|
};
|
|
6271
6303
|
type ReconciliationControllerComputeResponse = ReconciliationComputeResultDto;
|
|
@@ -6273,7 +6305,7 @@ type ReconciliationControllerAssertData = {
|
|
|
6273
6305
|
/**
|
|
6274
6306
|
* Region code for tenant context (decorative for reconciliation)
|
|
6275
6307
|
*/
|
|
6276
|
-
region: '
|
|
6308
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6277
6309
|
requestBody: AssertReconciliationDto;
|
|
6278
6310
|
};
|
|
6279
6311
|
type ReconciliationControllerAssertResponse = ReconciliationRecordDto;
|
|
@@ -6281,7 +6313,7 @@ type ReconciliationControllerPadData = {
|
|
|
6281
6313
|
/**
|
|
6282
6314
|
* Region code for tenant context (decorative for reconciliation)
|
|
6283
6315
|
*/
|
|
6284
|
-
region: '
|
|
6316
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6285
6317
|
requestBody: PadReconciliationDto;
|
|
6286
6318
|
};
|
|
6287
6319
|
type ReconciliationControllerPadResponse = PadResultDto;
|
|
@@ -6293,7 +6325,7 @@ type ReconciliationControllerHistoryData = {
|
|
|
6293
6325
|
/**
|
|
6294
6326
|
* Region code for tenant context (decorative for reconciliation)
|
|
6295
6327
|
*/
|
|
6296
|
-
region: '
|
|
6328
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6297
6329
|
};
|
|
6298
6330
|
type ReconciliationControllerHistoryResponse = Array<ReconciliationRecordDto>;
|
|
6299
6331
|
type ExportControllerExportBeancountResponse = unknown;
|
|
@@ -6305,7 +6337,7 @@ type FileImportControllerImportFileData = {
|
|
|
6305
6337
|
/**
|
|
6306
6338
|
* Region code for tenant context
|
|
6307
6339
|
*/
|
|
6308
|
-
region: '
|
|
6340
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6309
6341
|
};
|
|
6310
6342
|
type FileImportControllerImportFileResponse = ImportResultDto;
|
|
6311
6343
|
type FileImportControllerIdentifyFileData = {
|
|
@@ -6316,7 +6348,7 @@ type FileImportControllerIdentifyFileData = {
|
|
|
6316
6348
|
/**
|
|
6317
6349
|
* Region code for tenant context
|
|
6318
6350
|
*/
|
|
6319
|
-
region: '
|
|
6351
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6320
6352
|
};
|
|
6321
6353
|
type FileImportControllerIdentifyFileResponse = IdentifyResultDto;
|
|
6322
6354
|
type FileImportControllerImportBeancountData = {
|
|
@@ -6327,7 +6359,7 @@ type FileImportControllerImportBeancountData = {
|
|
|
6327
6359
|
/**
|
|
6328
6360
|
* Region code for tenant context
|
|
6329
6361
|
*/
|
|
6330
|
-
region: '
|
|
6362
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6331
6363
|
};
|
|
6332
6364
|
type FileImportControllerImportBeancountResponse = {
|
|
6333
6365
|
imported?: number;
|
|
@@ -6346,7 +6378,7 @@ type ImporterConfigControllerGetConfigData = {
|
|
|
6346
6378
|
/**
|
|
6347
6379
|
* Region code for tenant context
|
|
6348
6380
|
*/
|
|
6349
|
-
region: '
|
|
6381
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6350
6382
|
};
|
|
6351
6383
|
type ImporterConfigControllerGetConfigResponse = ImporterConfigDto;
|
|
6352
6384
|
type ImporterConfigControllerUpdateConfigData = {
|
|
@@ -6357,7 +6389,7 @@ type ImporterConfigControllerUpdateConfigData = {
|
|
|
6357
6389
|
/**
|
|
6358
6390
|
* Region code for tenant context
|
|
6359
6391
|
*/
|
|
6360
|
-
region: '
|
|
6392
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6361
6393
|
/**
|
|
6362
6394
|
* Partial configuration update. Only provided fields will be updated.
|
|
6363
6395
|
*/
|
|
@@ -6372,7 +6404,7 @@ type ImporterConfigControllerResetConfigData = {
|
|
|
6372
6404
|
/**
|
|
6373
6405
|
* Region code for tenant context
|
|
6374
6406
|
*/
|
|
6375
|
-
region: '
|
|
6407
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6376
6408
|
};
|
|
6377
6409
|
type ImporterConfigControllerResetConfigResponse = ImporterConfigDto;
|
|
6378
6410
|
type ProviderSyncControllerSyncData = {
|
|
@@ -6383,7 +6415,7 @@ type ProviderSyncControllerSyncData = {
|
|
|
6383
6415
|
/**
|
|
6384
6416
|
* Region code for tenant context
|
|
6385
6417
|
*/
|
|
6386
|
-
region: '
|
|
6418
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6387
6419
|
requestBody: ProviderSyncDto;
|
|
6388
6420
|
};
|
|
6389
6421
|
type ProviderSyncControllerSyncResponse = ProviderSyncResponseDto;
|
|
@@ -6391,7 +6423,7 @@ type ProviderSyncControllerGetSupportedProvidersData = {
|
|
|
6391
6423
|
/**
|
|
6392
6424
|
* Region code for tenant context
|
|
6393
6425
|
*/
|
|
6394
|
-
region: '
|
|
6426
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6395
6427
|
};
|
|
6396
6428
|
type ProviderSyncControllerGetSupportedProvidersResponse = SupportedProvidersResponseDto;
|
|
6397
6429
|
type ProviderSyncControllerIsProviderSupportedData = {
|
|
@@ -6402,14 +6434,14 @@ type ProviderSyncControllerIsProviderSupportedData = {
|
|
|
6402
6434
|
/**
|
|
6403
6435
|
* Region code for tenant context
|
|
6404
6436
|
*/
|
|
6405
|
-
region: '
|
|
6437
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6406
6438
|
};
|
|
6407
6439
|
type ProviderSyncControllerIsProviderSupportedResponse = unknown;
|
|
6408
6440
|
type ExternalAccountLinkControllerCreateData = {
|
|
6409
6441
|
/**
|
|
6410
6442
|
* Region code for tenant context
|
|
6411
6443
|
*/
|
|
6412
|
-
region: '
|
|
6444
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6413
6445
|
requestBody: CreateExternalAccountLinkDto;
|
|
6414
6446
|
};
|
|
6415
6447
|
type ExternalAccountLinkControllerCreateResponse = ExternalAccountLinkResponseDto;
|
|
@@ -6418,7 +6450,7 @@ type ExternalAccountLinkControllerFindAllData = {
|
|
|
6418
6450
|
/**
|
|
6419
6451
|
* Region code for tenant context
|
|
6420
6452
|
*/
|
|
6421
|
-
region: '
|
|
6453
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6422
6454
|
};
|
|
6423
6455
|
type ExternalAccountLinkControllerFindAllResponse = ExternalAccountLinkListResponseDto;
|
|
6424
6456
|
type ExternalAccountLinkControllerFindOneData = {
|
|
@@ -6426,7 +6458,7 @@ type ExternalAccountLinkControllerFindOneData = {
|
|
|
6426
6458
|
/**
|
|
6427
6459
|
* Region code for tenant context
|
|
6428
6460
|
*/
|
|
6429
|
-
region: '
|
|
6461
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6430
6462
|
};
|
|
6431
6463
|
type ExternalAccountLinkControllerFindOneResponse = ExternalAccountLinkResponseDto;
|
|
6432
6464
|
type ExternalAccountLinkControllerRemoveData = {
|
|
@@ -6434,14 +6466,14 @@ type ExternalAccountLinkControllerRemoveData = {
|
|
|
6434
6466
|
/**
|
|
6435
6467
|
* Region code for tenant context
|
|
6436
6468
|
*/
|
|
6437
|
-
region: '
|
|
6469
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6438
6470
|
};
|
|
6439
6471
|
type ExternalAccountLinkControllerRemoveResponse = void;
|
|
6440
6472
|
type TelemetryControllerReportTelemetryData = {
|
|
6441
6473
|
/**
|
|
6442
6474
|
* Region code for tenant context
|
|
6443
6475
|
*/
|
|
6444
|
-
region: '
|
|
6476
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6445
6477
|
requestBody: ParserTelemetryReportDto;
|
|
6446
6478
|
};
|
|
6447
6479
|
type TelemetryControllerReportTelemetryResponse = unknown;
|
|
@@ -6449,7 +6481,7 @@ type TelemetryControllerReportCoverageMissData = {
|
|
|
6449
6481
|
/**
|
|
6450
6482
|
* Region code for tenant context
|
|
6451
6483
|
*/
|
|
6452
|
-
region: '
|
|
6484
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6453
6485
|
requestBody: UncoveredFormatMissDto;
|
|
6454
6486
|
};
|
|
6455
6487
|
type TelemetryControllerReportCoverageMissResponse = unknown;
|
|
@@ -6457,7 +6489,7 @@ type TelemetryControllerGetCoverageMetricsData = {
|
|
|
6457
6489
|
/**
|
|
6458
6490
|
* Region code for tenant context
|
|
6459
6491
|
*/
|
|
6460
|
-
region: '
|
|
6492
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6461
6493
|
/**
|
|
6462
6494
|
* Top-N uncovered formats (default 10)
|
|
6463
6495
|
*/
|
|
@@ -6468,7 +6500,7 @@ type NlpControllerProcessNaturalLanguageData = {
|
|
|
6468
6500
|
/**
|
|
6469
6501
|
* Region code for tenant context
|
|
6470
6502
|
*/
|
|
6471
|
-
region: '
|
|
6503
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6472
6504
|
/**
|
|
6473
6505
|
* Natural language transaction input with optional session ID
|
|
6474
6506
|
*/
|
|
@@ -6479,7 +6511,7 @@ type NlpControllerClearSessionData = {
|
|
|
6479
6511
|
/**
|
|
6480
6512
|
* Region code for tenant context
|
|
6481
6513
|
*/
|
|
6482
|
-
region: '
|
|
6514
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6483
6515
|
/**
|
|
6484
6516
|
* Specific session ID to clear (defaults to user session)
|
|
6485
6517
|
*/
|
|
@@ -6490,7 +6522,7 @@ type NlpControllerGetSessionData = {
|
|
|
6490
6522
|
/**
|
|
6491
6523
|
* Region code for tenant context
|
|
6492
6524
|
*/
|
|
6493
|
-
region: '
|
|
6525
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6494
6526
|
/**
|
|
6495
6527
|
* Specific session ID to get (defaults to user session)
|
|
6496
6528
|
*/
|
|
@@ -6502,6 +6534,12 @@ type PlatformControllerCreateData = {
|
|
|
6502
6534
|
requestBody: CreatePlatformDto;
|
|
6503
6535
|
};
|
|
6504
6536
|
type PlatformControllerCreateResponse = unknown;
|
|
6537
|
+
type PlatformControllerGetPlatformListData = {
|
|
6538
|
+
/**
|
|
6539
|
+
* Region code (ISO 3166-1 alpha-2) that biases within-type-bucket ordering (local-region platforms first). Case-insensitive — stored/compared UPPERCASE ("cn" == "CN").
|
|
6540
|
+
*/
|
|
6541
|
+
region?: string;
|
|
6542
|
+
};
|
|
6505
6543
|
type PlatformControllerGetPlatformListResponse = Array<PlatformListItemDto>;
|
|
6506
6544
|
type PlatformControllerMatchPlatformsData = {
|
|
6507
6545
|
/**
|
|
@@ -6509,7 +6547,7 @@ type PlatformControllerMatchPlatformsData = {
|
|
|
6509
6547
|
*/
|
|
6510
6548
|
q: string;
|
|
6511
6549
|
/**
|
|
6512
|
-
* Region code
|
|
6550
|
+
* Region code (ISO 3166-1 alpha-2) that biases within-tier ordering (local-region platforms first); also the intended categoryOverrides key. Case-insensitive — stored/compared UPPERCASE ("cn" == "CN").
|
|
6513
6551
|
*/
|
|
6514
6552
|
region?: string;
|
|
6515
6553
|
};
|
|
@@ -6537,7 +6575,7 @@ type DashboardControllerGetNetWorthData = {
|
|
|
6537
6575
|
/**
|
|
6538
6576
|
* Region code for tenant context
|
|
6539
6577
|
*/
|
|
6540
|
-
region: '
|
|
6578
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6541
6579
|
};
|
|
6542
6580
|
type DashboardControllerGetNetWorthResponse = NetWorthResponseDto;
|
|
6543
6581
|
type DashboardControllerGetAccountsData = {
|
|
@@ -6556,7 +6594,7 @@ type DashboardControllerGetAccountsData = {
|
|
|
6556
6594
|
/**
|
|
6557
6595
|
* Region code for tenant context
|
|
6558
6596
|
*/
|
|
6559
|
-
region: '
|
|
6597
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6560
6598
|
};
|
|
6561
6599
|
type DashboardControllerGetAccountsResponse = AccountsResponseDto | AssetClassAccountsResponseDto | HoldingAssetClassCrossAccountResponseDto;
|
|
6562
6600
|
type DashboardControllerGetCashFlowData = {
|
|
@@ -6567,7 +6605,7 @@ type DashboardControllerGetCashFlowData = {
|
|
|
6567
6605
|
/**
|
|
6568
6606
|
* Region code for tenant context
|
|
6569
6607
|
*/
|
|
6570
|
-
region: '
|
|
6608
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6571
6609
|
};
|
|
6572
6610
|
type DashboardControllerGetCashFlowResponse = CashFlowResponseDto;
|
|
6573
6611
|
type DashboardControllerGetExpensesData = {
|
|
@@ -6586,7 +6624,7 @@ type DashboardControllerGetExpensesData = {
|
|
|
6586
6624
|
/**
|
|
6587
6625
|
* Region code for tenant context
|
|
6588
6626
|
*/
|
|
6589
|
-
region: '
|
|
6627
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6590
6628
|
};
|
|
6591
6629
|
type DashboardControllerGetExpensesResponse = ExpensesByCategoryResponseDto;
|
|
6592
6630
|
type HoldingPnlControllerGetHoldingPnlData = {
|
|
@@ -6605,7 +6643,7 @@ type HoldingPnlControllerGetHoldingPnlData = {
|
|
|
6605
6643
|
/**
|
|
6606
6644
|
* Region code for tenant context
|
|
6607
6645
|
*/
|
|
6608
|
-
region: '
|
|
6646
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6609
6647
|
};
|
|
6610
6648
|
type HoldingPnlControllerGetHoldingPnlResponse = HoldingPnlResponseDto;
|
|
6611
6649
|
type ApiKeysControllerCreateApiKeyResponse = unknown;
|
|
@@ -8736,6 +8774,7 @@ type $OpenApiTs = {
|
|
|
8736
8774
|
};
|
|
8737
8775
|
'/api/v1/bean/platforms/list': {
|
|
8738
8776
|
get: {
|
|
8777
|
+
req: PlatformControllerGetPlatformListData;
|
|
8739
8778
|
res: {
|
|
8740
8779
|
/**
|
|
8741
8780
|
* List of platforms with user binding status
|
|
@@ -9487,4 +9526,4 @@ type OpenAPIConfig = {
|
|
|
9487
9526
|
};
|
|
9488
9527
|
declare const OpenAPI: OpenAPIConfig;
|
|
9489
9528
|
|
|
9490
|
-
export { type $OpenApiTs, type AccountControllerAddOpeningBalanceData, type AccountControllerAddOpeningBalanceResponse, type AccountControllerCloseData, type AccountControllerCloseResponse, type AccountControllerCreateData, type AccountControllerCreateResponse, type AccountControllerDeleteData, type AccountControllerDeleteResponse, type AccountControllerFindAllData, type AccountControllerFindAllResponse, type AccountControllerFindOneData, type AccountControllerFindOneResponse, type AccountControllerReopenData, type AccountControllerReopenResponse, type AccountControllerUpdateData, type AccountControllerUpdateResponse, type AccountExchangeRateWarningDto, type AccountItemDto, type AccountItemWithAssetClassDto, type AccountListResponseDto, type AccountResponseDto, type AccountStandardListResponseDto, type AccountStandardResponseDto, type AccountStandardsControllerGetRegionsData, type AccountStandardsControllerGetRegionsResponse, type AccountStandardsControllerGetTemplateMetadataData, type AccountStandardsControllerGetTemplateMetadataResponse, type AccountStandardsControllerGetTemplatesData, type AccountStandardsControllerGetTemplatesResponse, type AccountsResponseDto, type AccountsSummaryDto, type ActualBalanceDto, type AmountDto, type AmountRangeDto, type AnonymousLoginDto, type AnonymousLoginResponseDto, type ApiKeysControllerCreateApiKeyResponse, type ApiProblemResponseDto, type AssertReconciliationDto, type AssetClassAccountsResponseDto, type AssetClassGroupDto, type AssetClassSummaryDto, type AuthControllerAccessTokenLoginData, type AuthControllerAccessTokenLoginResponse, type BackfillSnapshotsBody, type BackfillSnapshotsResponse, type BalanceByCurrencyDto, type BalanceControllerGetBalanceData, type BalanceControllerGetBalanceResponse, type BalanceControllerGetMultiCurrencyBalanceData, type BalanceControllerGetMultiCurrencyBalanceResponse, type BalanceResponseDto, type BatchCreateTransactionDto, type BatchResolveDto, type BatchResolveResultDto, type BatchTransactionErrorDto, type BatchTransactionResponseDto, BeanAccountsService, BeanBalancesService, BeanCommoditiesService, BeanTransactionsService, type BulkCreateRulesDto, type BulkCreateRulesResponseDto, type CacheControllerFlushCacheResponse, type CashFlowByCurrencyDto, type CashFlowPointDto, type CashFlowResponseDto, type CashFlowTrendSummaryDto, type CashFlowTrendsResponseDto, type CategoryGroupDto, type CloseAccountDto, type CommodityControllerBulkCreateData, type CommodityControllerBulkCreateResponse, type CommodityControllerCreateData, type CommodityControllerCreateResponse, type CommodityControllerDeleteData, type CommodityControllerDeleteResponse, type CommodityControllerFindAllData, type CommodityControllerFindAllResponse, type CommodityControllerFindOneData, type CommodityControllerFindOneResponse, type CommodityControllerGetOrCreateData, type CommodityControllerGetOrCreateResponse, type CommodityControllerUpdateData, type CommodityControllerUpdateResponse, type CommodityListResponseDto, type CommodityResponseDto, type ComputeReconciliationDto, type ConfirmMatchDto, type ConvertedCashFlowDto, type ConvertedNetWorthDto, type CorrectTransactionDto, type CostDetailDto, type CostSpecDto, type CreateAccountDto, type CreateBeanEventDto, type CreateBeanPriceDto, type CreateCommodityDto, type CreateExternalAccountLinkDto, type CreateOpeningBalanceDto, type CreatePayeeDto, type CreatePayeeProfileDto, type CreatePlatformDto, type CreatePostingDto, type CreateRecurringRuleDto, type CreateRuleFromTransactionDto, type CreateTransactionDto, type CreateTransactionRuleDto, type CurrencyBalanceDto, type CurrentPriceDto, type DashboardControllerGetAccountsData, type DashboardControllerGetAccountsResponse, type DashboardControllerGetCashFlowData, type DashboardControllerGetCashFlowResponse, type DashboardControllerGetExpensesData, type DashboardControllerGetExpensesResponse, type DashboardControllerGetNetWorthData, type DashboardControllerGetNetWorthResponse, type DecisionOptionDto, type DeleteOwnUserDto, type EnterNowDto, type EventControllerCreateData, type EventControllerCreateResponse, type EventControllerDeleteData, type EventControllerDeleteResponse, type EventControllerFindAllData, type EventControllerFindAllResponse, type EventControllerFindOneData, type EventControllerFindOneResponse, type EventControllerGetSliceData, type EventControllerGetSliceResponse, type EventControllerUpdateData, type EventControllerUpdateResponse, type EventListResponseDto, type EventResponseDto, type ExchangeRateControllerGetExchangeRateData, type ExchangeRateControllerGetExchangeRateResponse, type ExchangeRateWarningDto, type ExpectedTransactionControllerConfirmMatchData, type ExpectedTransactionControllerConfirmMatchResponse, type ExpectedTransactionControllerEnterNowData, type ExpectedTransactionControllerEnterNowResponse, type ExpectedTransactionControllerFindAllData, type ExpectedTransactionControllerFindAllResponse, type ExpectedTransactionControllerFindOneData, type ExpectedTransactionControllerFindOneResponse, type ExpectedTransactionControllerFindOverdueData, type ExpectedTransactionControllerFindOverdueResponse, type ExpectedTransactionControllerSkipData, type ExpectedTransactionControllerSkipResponse, type ExpectedTransactionControllerUndoSkipData, type ExpectedTransactionControllerUndoSkipResponse, type ExpectedTransactionControllerUnmatchData, type ExpectedTransactionControllerUnmatchResponse, type ExpectedTransactionListResponseDto, type ExpectedTransactionResponseDto, type ExpectedTransactionRuleDto, type ExpensesByCategoryResponseDto, type ExpensesByCategorySummaryDto, type ExportControllerExportBeancountResponse, type ExportRulesResponseDto, type ExternalAccountLinkControllerCreateData, type ExternalAccountLinkControllerCreateResponse, type ExternalAccountLinkControllerFindAllData, type ExternalAccountLinkControllerFindAllResponse, type ExternalAccountLinkControllerFindOneData, type ExternalAccountLinkControllerFindOneResponse, type ExternalAccountLinkControllerRemoveData, type ExternalAccountLinkControllerRemoveResponse, type ExternalAccountLinkListResponseDto, type ExternalAccountLinkResponseDto, type FileImportControllerIdentifyFileData, type FileImportControllerIdentifyFileResponse, type FileImportControllerImportBeancountData, type FileImportControllerImportBeancountResponse, type FileImportControllerImportFileData, type FileImportControllerImportFileResponse, type FileImportDto, type ForecastControllerGetForecastData, type ForecastControllerGetForecastResponse, type ForecastItemDto, type ForecastResponseDto, type FxRateDto, type GenerateSnapshotBody, type GenerateSnapshotResponse, type HealthControllerCheckDatabaseResponse, type HealthControllerCheckOpenBbResponse, type HealthControllerCheckRedisResponse, type HealthControllerGetCircuitBreakersHealthResponse, type HealthControllerGetHealthResponse, type HealthControllerGetMetricsResponse, type HealthControllerResetCircuitBreakerData, type HealthControllerResetCircuitBreakerResponse, HealthService, type HoldingAssetClassAccountSliceDto, type HoldingAssetClassCrossAccountResponseDto, type HoldingPnlControllerGetHoldingPnlData, type HoldingPnlControllerGetHoldingPnlResponse, type HoldingPnlResponseDto, type HoldingPnlRowDto, type HoldingPnlWarningDto, type IdentifyResultDto, type ImportErrorDto, type ImportResultDto, type ImporterConfigControllerGetConfigData, type ImporterConfigControllerGetConfigResponse, type ImporterConfigControllerResetConfigData, type ImporterConfigControllerResetConfigResponse, type ImporterConfigControllerUpdateConfigData, type ImporterConfigControllerUpdateConfigResponse, type ImporterConfigDataDto, type ImporterConfigDto, type InfoControllerGetInfoResponse, type MapperDefaultsDto, type MonetaryDto, type MonthlyForecastDto, type MultiCurrencyBalanceResponseDto, type MultiCurrencyPointDto, type NetWorthByCurrencyDto, type NetWorthResponseDto, type NlpAccountConfirmationDataDto, type NlpAlternativePayeeDto, type NlpControllerClearSessionData, type NlpControllerClearSessionResponse, type NlpControllerGetSessionData, type NlpControllerGetSessionResponse, type NlpControllerProcessNaturalLanguageData, type NlpControllerProcessNaturalLanguageResponse, type NlpDefaultAccountsDto, type NlpDuplicateConfirmationDataDto, type NlpParsedDataDto, type NlpPayeeConfirmationDataDto, type NlpResponseDto, type NlpRuleConfirmationDataDto, type NlpSimilarityDto, type NlpSourceTransactionDto, type NlpSuggestedAccountDto, type NlpSuggestedAccountsDto, type NlpSuggestedPayeeDto, type NlpTargetTransactionDto, type NlpTransactionInfoDto, type OnboardingAccountDto, type OnboardingControllerBootstrapData, type OnboardingControllerBootstrapResponse, type OnboardingDto, OpenAPI, type OpenAPIConfig, type OpeningBalanceResultDto, type PadReconciliationDto, type PadResultDto, type ParserTelemetryReportDto, type PayeeAutocompleteResponseDto, type PayeeControllerAutocompleteData, type PayeeControllerAutocompleteResponse, type PayeeControllerCreateData, type PayeeControllerCreateResponse, type PayeeControllerDeleteData, type PayeeControllerDeleteResponse, type PayeeControllerFindAllData, type PayeeControllerFindAllResponse, type PayeeControllerFindOneData, type PayeeControllerFindOneResponse, type PayeeControllerGetTopPayeesData, type PayeeControllerGetTopPayeesResponse, type PayeeControllerUpdateData, type PayeeControllerUpdateResponse, type PayeeListResponseDto, type PayeeProfileAdminControllerCreateData, type PayeeProfileAdminControllerCreateResponse, type PayeeProfileAdminControllerDeleteData, type PayeeProfileAdminControllerDeleteResponse, type PayeeProfileAdminControllerFindAllData, type PayeeProfileAdminControllerFindAllResponse, type PayeeProfileAdminControllerFindOneData, type PayeeProfileAdminControllerFindOneResponse, type PayeeProfileAdminControllerUnverifyData, type PayeeProfileAdminControllerUnverifyResponse, type PayeeProfileAdminControllerUpdateData, type PayeeProfileAdminControllerUpdateResponse, type PayeeProfileAdminControllerVerifyData, type PayeeProfileAdminControllerVerifyResponse, type PayeeProfileListResponseDto, type PayeeProfileResponseDto, type PayeeResponseDto, type PayeeStatsResponseDto, type PlatformControllerCreateData, type PlatformControllerCreateResponse, type PlatformControllerDeleteData, type PlatformControllerDeleteResponse, type PlatformControllerFindAllResponse, type PlatformControllerGetPlatformListResponse, type PlatformControllerMatchPlatformsData, type PlatformControllerMatchPlatformsResponse, type PlatformControllerUpdateData, type PlatformControllerUpdateResponse, type PlatformGroupDto, type PlatformListItemDto, type PlatformMatchResponseDto, type PlatformMatchResultDto, type PortfolioTrendsResponseDto, type PostingDetailDto, type PostingResponseDto, type PriceControllerBulkCreateData, type PriceControllerBulkCreateResponse, type PriceControllerCreateData, type PriceControllerCreateResponse, type PriceControllerDeleteData, type PriceControllerDeleteResponse, type PriceControllerFindAllData, type PriceControllerFindAllResponse, type PriceControllerFindOneData, type PriceControllerFindOneResponse, type PriceControllerUpdateData, type PriceControllerUpdateResponse, type PriceListResponseDto, type PriceResponseDto, type ProcessNlpDto, type PropertyControllerDeleteData, type PropertyControllerDeleteResponse, type PropertyControllerGetAllResponse, type PropertyControllerGetByKeyData, type PropertyControllerGetByKeyResponse, type PropertyControllerUpdateData, type PropertyControllerUpdateResponse, type ProviderSyncConfigDto, type ProviderSyncControllerGetSupportedProvidersData, type ProviderSyncControllerGetSupportedProvidersResponse, type ProviderSyncControllerIsProviderSupportedData, type ProviderSyncControllerIsProviderSupportedResponse, type ProviderSyncControllerSyncData, type ProviderSyncControllerSyncResponse, type ProviderSyncDto, type ProviderSyncResponseDto, ProviderSyncService, type ReconciliationComputeResultDto, type ReconciliationControllerAssertData, type ReconciliationControllerAssertResponse, type ReconciliationControllerComputeData, type ReconciliationControllerComputeResponse, type ReconciliationControllerHistoryData, type ReconciliationControllerHistoryResponse, type ReconciliationControllerPadData, type ReconciliationControllerPadResponse, type ReconciliationRecordDto, type RecurringMatchInfoDto, type RecurringRuleControllerCreateData, type RecurringRuleControllerCreateFromTransactionData, type RecurringRuleControllerCreateFromTransactionResponse, type RecurringRuleControllerCreateResponse, type RecurringRuleControllerDeleteData, type RecurringRuleControllerDeleteResponse, type RecurringRuleControllerFindAllData, type RecurringRuleControllerFindAllResponse, type RecurringRuleControllerFindOneData, type RecurringRuleControllerFindOneResponse, type RecurringRuleControllerGetWithStatsData, type RecurringRuleControllerGetWithStatsResponse, type RecurringRuleControllerUpdateData, type RecurringRuleControllerUpdateResponse, type RecurringRuleResponseDto, type RecurringRuleWithStatsResponseDto, type RecurringSuggestionDto, type RegionConfigDto, type RegionInfoDto, type RegionsMetadataResponseDto, type ReopenAccountDto, type ReportingControllerBackfillSnapshotsData, type ReportingControllerBackfillSnapshotsResponse, type ReportingControllerGenerateSnapshotData, type ReportingControllerGenerateSnapshotResponse, type ReportingControllerGetCashFlowTrendsData, type ReportingControllerGetCashFlowTrendsResponse, type ReportingControllerGetPortfolioTrendsData, type ReportingControllerGetPortfolioTrendsResponse, type ResolveResultDto, type ResolveReviewDto, type ReviewControllerBatchResolveData, type ReviewControllerBatchResolveResponse, type ReviewControllerFindAllData, type ReviewControllerFindAllResponse, type ReviewControllerFindOneData, type ReviewControllerFindOneResponse, type ReviewControllerGetStatsData, type ReviewControllerGetStatsResponse, type ReviewControllerResolveData, type ReviewControllerResolveResponse, type ReviewControllerUndoData, type ReviewControllerUndoResponse, type ReviewDetailDto, type ReviewItemPreviewDto, type ReviewListResponseDto, type ReviewStatsDto, type ReviewSummaryDto, type RuleStatisticsResponseDto, type SignupDto, type SignupResponseDto, type SupportedProvidersResponseDto, type SymbolControllerGetQuoteData, type SymbolControllerGetQuoteResponse, type SymbolControllerSearchData, type SymbolControllerSearchResponse, type SymbolQuoteDto, type SymbolSearchResultDto, type TagSuggestionDto, type TagSuggestionsResponseDto, type TelemetryControllerGetCoverageMetricsData, type TelemetryControllerGetCoverageMetricsResponse, type TelemetryControllerReportCoverageMissData, type TelemetryControllerReportCoverageMissResponse, type TelemetryControllerReportTelemetryData, type TelemetryControllerReportTelemetryResponse, type TemplateMetadataDto, type TemplateMetadataResponseDto, type TestRuleDto, type TestRuleResponseDto, type TimeSeriesPointDto, type TransactionControllerCorrectData, type TransactionControllerCorrectResponse, type TransactionControllerCreateBatchData, type TransactionControllerCreateBatchResponse, type TransactionControllerCreateData, type TransactionControllerCreateResponse, type TransactionControllerDeleteData, type TransactionControllerDeleteResponse, type TransactionControllerGetDetailData, type TransactionControllerGetDetailResponse, type TransactionControllerListData, type TransactionControllerListResponse, type TransactionControllerSuggestTagsData, type TransactionControllerSuggestTagsResponse, type TransactionControllerUpdateData, type TransactionControllerUpdateResponse, type TransactionDetailDto, type TransactionListResponseDto, type TransactionListSummaryDto, type TransactionResponseDto, type TransactionRuleControllerBulkCreateData, type TransactionRuleControllerBulkCreateResponse, type TransactionRuleControllerCreateData, type TransactionRuleControllerCreateResponse, type TransactionRuleControllerDeleteData, type TransactionRuleControllerDeleteResponse, type TransactionRuleControllerExportData, type TransactionRuleControllerExportResponse, type TransactionRuleControllerGetDetailData, type TransactionRuleControllerGetDetailResponse, type TransactionRuleControllerGetStatisticsData, type TransactionRuleControllerGetStatisticsResponse, type TransactionRuleControllerListData, type TransactionRuleControllerListResponse, type TransactionRuleControllerTestData, type TransactionRuleControllerTestResponse, type TransactionRuleControllerUpdateData, type TransactionRuleControllerUpdateResponse, type TransactionRuleControllerValidateData, type TransactionRuleControllerValidateResponse, type TransactionRuleListResponseDto, type TransactionRuleResponseDto, type TransactionSummaryDto, type TrendSummaryDto, type UncoveredFormatMissDto, type UndoResultDto, type UpdateAccountDto, type UpdateBeanEventDto, type UpdateBeanPriceDto, type UpdateCommodityDto, type UpdateConfigDataDto, type UpdateImporterConfigDto, type UpdateMapperDefaultsDto, type UpdatePayeeDto, type UpdatePayeeProfileDto, type UpdatePlatformDto, type UpdatePropertyDto, type UpdateRecurringRuleDto, type UpdateTransactionDto, type UpdateTransactionRuleDto, type UpdateUserSettingDto, type UserControllerDeleteOwnUserData, type UserControllerDeleteOwnUserResponse, type UserControllerDeleteUserData, type UserControllerDeleteUserResponse, type UserControllerGetAllUserSettingsByPageData, type UserControllerGetAllUserSettingsByPageResponse, type UserControllerGetAssetLiabilitySummaryResponse, type UserControllerGetUserData, type UserControllerGetUserInfoData, type UserControllerGetUserInfoResponse, type UserControllerGetUserResponse, type UserControllerSignupUserData, type UserControllerSignupUserResponse, type UserControllerUpdateUserSettingData, type UserControllerUpdateUserSettingResponse, type ValidateRuleDto, type ValidateRuleResponseDto, type VersionedConfigDto, type action, type action2, type assetClass, type assetSubClass, type assetSubType, type bookingMethod, type branchType, type category, type chartToken, type colorScheme, type confidenceLevel, type conflictStrategy, type dataSource, type equitySubType, type flag, type flag2, type frequency, type importerId, type intent, type investmentAction, type learningSource, type liabilitySubType, type matchLogic, type matchType, type matchType2, type method, type mode, type paymentSource, type period, type provider, type role, type source, type source2, type source3, type status, type status2, type status3, type status4, type suggestedAction, type suggestedFrequency, type type, type type2, type type3, type type4, type value, type viewMode };
|
|
9529
|
+
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 };
|