@firela/api-types 0.0.0-canary.688167dd → 0.0.0-canary.693e8bdf
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 +327 -138
- package/dist/index.d.ts +327 -138
- package/dist/index.js +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
- package/src/generated/schemas.gen.ts +291 -21
- package/src/generated/services.gen.ts +44 -6
- package/src/generated/types.gen.ts +3053 -148
package/dist/index.d.mts
CHANGED
|
@@ -81,7 +81,7 @@ type AccountResponseDto = {
|
|
|
81
81
|
/**
|
|
82
82
|
* Account-level asset sub-class (product type, e.g. STOCK/DEPOSIT/CREDIT_CARD/PERSONAL_LOAN). Computed from the account path via the asset-classifier (ADR-0077). Null for non-asset accounts (Income/Expenses/Equity) or unmatched paths.
|
|
83
83
|
*/
|
|
84
|
-
assetSubClass?: 'DEPOSIT' | 'CASH' | 'MONEY_MARKET_FUND' | 'STOCK' | 'ETF' | 'MUTUAL_FUND' | 'EQUITY_COMPENSATION' | 'GOVERNMENT_BOND' | 'CORPORATE_BOND' | 'BOND_FUND' | 'PRIMARY_RESIDENCE' | 'INVESTMENT_PROPERTY' | 'REIT' | 'GOLD' | 'SILVER' | 'PRECIOUS_METAL' | 'PRECIOUS_METAL_FUND' | 'COMMODITY' | 'COMMODITY_FUND' | 'CRYPTOCURRENCY' | 'RETIREMENT_ACCOUNT' | 'HEALTH_ACCOUNT' | 'EDUCATION_ACCOUNT' | 'INSURANCE' | 'PRIVATE_EQUITY' | 'HEDGE_FUND' | 'COLLECTIBLES' | 'MORTGAGE' | 'STUDENT_LOAN' | 'CREDIT_CARD' | 'PERSONAL_LOAN' | 'OTHER' | null;
|
|
84
|
+
assetSubClass?: 'DEPOSIT' | 'CASH' | 'MONEY_MARKET_FUND' | 'STOCK' | 'ETF' | 'MUTUAL_FUND' | 'EQUITY_COMPENSATION' | 'GOVERNMENT_BOND' | 'CORPORATE_BOND' | 'BOND_FUND' | 'PRIMARY_RESIDENCE' | 'INVESTMENT_PROPERTY' | 'REIT' | 'GOLD' | 'SILVER' | 'PRECIOUS_METAL' | 'PRECIOUS_METAL_FUND' | 'COMMODITY' | 'COMMODITY_FUND' | 'CRYPTOCURRENCY' | 'RETIREMENT_ACCOUNT' | 'HEALTH_ACCOUNT' | 'EDUCATION_ACCOUNT' | 'INSURANCE' | 'PRIVATE_EQUITY' | 'HEDGE_FUND' | 'COLLECTIBLES' | 'MORTGAGE' | 'STUDENT_LOAN' | 'CREDIT_CARD' | 'PERSONAL_LOAN' | 'ACCOUNTS_PAYABLE' | 'TAX_PAYABLE' | 'OTHER' | null;
|
|
85
85
|
/**
|
|
86
86
|
* Account status
|
|
87
87
|
*/
|
|
@@ -152,7 +152,7 @@ type type = 'Assets' | 'Liabilities' | 'Income' | 'Expenses' | 'Equity';
|
|
|
152
152
|
/**
|
|
153
153
|
* Account-level asset sub-class (product type, e.g. STOCK/DEPOSIT/CREDIT_CARD/PERSONAL_LOAN). Computed from the account path via the asset-classifier (ADR-0077). Null for non-asset accounts (Income/Expenses/Equity) or unmatched paths.
|
|
154
154
|
*/
|
|
155
|
-
type assetSubClass = 'DEPOSIT' | 'CASH' | 'MONEY_MARKET_FUND' | 'STOCK' | 'ETF' | 'MUTUAL_FUND' | 'EQUITY_COMPENSATION' | 'GOVERNMENT_BOND' | 'CORPORATE_BOND' | 'BOND_FUND' | 'PRIMARY_RESIDENCE' | 'INVESTMENT_PROPERTY' | 'REIT' | 'GOLD' | 'SILVER' | 'PRECIOUS_METAL' | 'PRECIOUS_METAL_FUND' | 'COMMODITY' | 'COMMODITY_FUND' | 'CRYPTOCURRENCY' | 'RETIREMENT_ACCOUNT' | 'HEALTH_ACCOUNT' | 'EDUCATION_ACCOUNT' | 'INSURANCE' | 'PRIVATE_EQUITY' | 'HEDGE_FUND' | 'COLLECTIBLES' | 'MORTGAGE' | 'STUDENT_LOAN' | 'CREDIT_CARD' | 'PERSONAL_LOAN' | 'OTHER';
|
|
155
|
+
type assetSubClass = 'DEPOSIT' | 'CASH' | 'MONEY_MARKET_FUND' | 'STOCK' | 'ETF' | 'MUTUAL_FUND' | 'EQUITY_COMPENSATION' | 'GOVERNMENT_BOND' | 'CORPORATE_BOND' | 'BOND_FUND' | 'PRIMARY_RESIDENCE' | 'INVESTMENT_PROPERTY' | 'REIT' | 'GOLD' | 'SILVER' | 'PRECIOUS_METAL' | 'PRECIOUS_METAL_FUND' | 'COMMODITY' | 'COMMODITY_FUND' | 'CRYPTOCURRENCY' | 'RETIREMENT_ACCOUNT' | 'HEALTH_ACCOUNT' | 'EDUCATION_ACCOUNT' | 'INSURANCE' | 'PRIVATE_EQUITY' | 'HEDGE_FUND' | 'COLLECTIBLES' | 'MORTGAGE' | 'STUDENT_LOAN' | 'CREDIT_CARD' | 'PERSONAL_LOAN' | 'ACCOUNTS_PAYABLE' | 'TAX_PAYABLE' | 'OTHER';
|
|
156
156
|
/**
|
|
157
157
|
* Account status
|
|
158
158
|
*/
|
|
@@ -254,7 +254,27 @@ type AccountStandardResponseDto = {
|
|
|
254
254
|
* Icon identifier for UI display
|
|
255
255
|
*/
|
|
256
256
|
icon: string;
|
|
257
|
+
/**
|
|
258
|
+
* Onboarding product category (coarse grouping derived from assetSubClass)
|
|
259
|
+
*/
|
|
260
|
+
productCategory: 'cash' | 'investment' | 'credit_card' | 'loan' | 'payable_tax' | 'other';
|
|
261
|
+
/**
|
|
262
|
+
* Asset class (LIQUIDITY/EQUITY/.../LIABILITY), derived at read time from classification rules
|
|
263
|
+
*/
|
|
264
|
+
assetClass?: 'LIQUIDITY' | 'EQUITY' | 'FIXED_INCOME' | 'PRECIOUS_METALS' | 'COMMODITY' | 'INSURANCE' | 'ALTERNATIVE_INVESTMENT' | 'PERSONAL_ASSETS' | 'LIABILITY' | 'REAL_ESTATE' | 'INDEX';
|
|
265
|
+
/**
|
|
266
|
+
* Asset sub-class (product type, derived at read time from classification rules)
|
|
267
|
+
*/
|
|
268
|
+
assetSubClass?: string;
|
|
257
269
|
};
|
|
270
|
+
/**
|
|
271
|
+
* Onboarding product category (coarse grouping derived from assetSubClass)
|
|
272
|
+
*/
|
|
273
|
+
type productCategory = 'cash' | 'investment' | 'credit_card' | 'loan' | 'payable_tax' | 'other';
|
|
274
|
+
/**
|
|
275
|
+
* Asset class (LIQUIDITY/EQUITY/.../LIABILITY), derived at read time from classification rules
|
|
276
|
+
*/
|
|
277
|
+
type assetClass = 'LIQUIDITY' | 'EQUITY' | 'FIXED_INCOME' | 'PRECIOUS_METALS' | 'COMMODITY' | 'INSURANCE' | 'ALTERNATIVE_INVESTMENT' | 'PERSONAL_ASSETS' | 'LIABILITY' | 'REAL_ESTATE' | 'INDEX';
|
|
258
278
|
type AccountStandardListResponseDto = {
|
|
259
279
|
/**
|
|
260
280
|
* Array of account templates
|
|
@@ -2551,6 +2571,30 @@ type DeleteOwnUserDto = {
|
|
|
2551
2571
|
*/
|
|
2552
2572
|
accessToken: string;
|
|
2553
2573
|
};
|
|
2574
|
+
type UserSettingsResponseDto = {
|
|
2575
|
+
/**
|
|
2576
|
+
* Base currency (ISO 4217) for net-worth/report aggregation. Independent of region (ADR-0006).
|
|
2577
|
+
*/
|
|
2578
|
+
baseCurrency: string | null;
|
|
2579
|
+
};
|
|
2580
|
+
type UserResponseDto = {
|
|
2581
|
+
/**
|
|
2582
|
+
* User ID
|
|
2583
|
+
*/
|
|
2584
|
+
id: string;
|
|
2585
|
+
/**
|
|
2586
|
+
* Assigned user role
|
|
2587
|
+
*/
|
|
2588
|
+
role: string;
|
|
2589
|
+
/**
|
|
2590
|
+
* Permission strings
|
|
2591
|
+
*/
|
|
2592
|
+
permissions: Array<string>;
|
|
2593
|
+
/**
|
|
2594
|
+
* User settings
|
|
2595
|
+
*/
|
|
2596
|
+
settings: UserSettingsResponseDto;
|
|
2597
|
+
};
|
|
2554
2598
|
type SignupDto = {
|
|
2555
2599
|
/**
|
|
2556
2600
|
* Cloudflare Turnstile verification token (optional when Turnstile disabled)
|
|
@@ -3013,6 +3057,42 @@ type TestRuleResponseDto = {
|
|
|
3013
3057
|
[key: string]: unknown;
|
|
3014
3058
|
};
|
|
3015
3059
|
};
|
|
3060
|
+
type CategoryCatalogEntryDto = {
|
|
3061
|
+
/**
|
|
3062
|
+
* Category slug (single source-of-truth)
|
|
3063
|
+
*/
|
|
3064
|
+
slug: string;
|
|
3065
|
+
/**
|
|
3066
|
+
* Display scenario group (maps to frontend picker _scenario)
|
|
3067
|
+
*/
|
|
3068
|
+
scenario: 'expense' | 'income' | 'investment' | 'banking' | 'transfer' | 'payment';
|
|
3069
|
+
/**
|
|
3070
|
+
* Lucide icon name
|
|
3071
|
+
*/
|
|
3072
|
+
icon: string;
|
|
3073
|
+
/**
|
|
3074
|
+
* Applicable regions ('*' = all, 'cn' = CN-only)
|
|
3075
|
+
*/
|
|
3076
|
+
regions: Array<string>;
|
|
3077
|
+
};
|
|
3078
|
+
/**
|
|
3079
|
+
* Display scenario group (maps to frontend picker _scenario)
|
|
3080
|
+
*/
|
|
3081
|
+
type scenario = 'expense' | 'income' | 'investment' | 'banking' | 'transfer' | 'payment';
|
|
3082
|
+
type CategoryCatalogListResponseDto = {
|
|
3083
|
+
/**
|
|
3084
|
+
* Category entries (region-scoped, query-filtered)
|
|
3085
|
+
*/
|
|
3086
|
+
items: Array<CategoryCatalogEntryDto>;
|
|
3087
|
+
/**
|
|
3088
|
+
* Total category entries for the region (before query filtering)
|
|
3089
|
+
*/
|
|
3090
|
+
total: number;
|
|
3091
|
+
/**
|
|
3092
|
+
* Region code
|
|
3093
|
+
*/
|
|
3094
|
+
region: string;
|
|
3095
|
+
};
|
|
3016
3096
|
type CreateBeanEventDto = {
|
|
3017
3097
|
/**
|
|
3018
3098
|
* Life event date (ISO 8601)
|
|
@@ -3497,13 +3577,13 @@ type ProviderSyncConfigDto = {
|
|
|
3497
3577
|
*/
|
|
3498
3578
|
defaultCurrency: string;
|
|
3499
3579
|
/**
|
|
3500
|
-
* Default expense account for the second posting
|
|
3580
|
+
* Default expense account for the second posting. Omit when no real default exists; the pipeline routes to Review via the Uncategorized sentinel (#618).
|
|
3501
3581
|
*/
|
|
3502
|
-
defaultExpenseAccount
|
|
3582
|
+
defaultExpenseAccount?: string;
|
|
3503
3583
|
/**
|
|
3504
|
-
* Default income account for the second posting
|
|
3584
|
+
* Default income account for the second posting. Omit when no real default exists; the pipeline routes to Review via the Uncategorized sentinel (#618).
|
|
3505
3585
|
*/
|
|
3506
|
-
defaultIncomeAccount
|
|
3586
|
+
defaultIncomeAccount?: string;
|
|
3507
3587
|
/**
|
|
3508
3588
|
* Filter pending transactions
|
|
3509
3589
|
*/
|
|
@@ -3600,11 +3680,85 @@ type ExternalAccountLinkListResponseDto = {
|
|
|
3600
3680
|
};
|
|
3601
3681
|
type ParserTelemetryReportDto = unknown;
|
|
3602
3682
|
type UncoveredFormatMissDto = unknown;
|
|
3683
|
+
type ClientParsedDataDto = {
|
|
3684
|
+
/**
|
|
3685
|
+
* Transaction amount
|
|
3686
|
+
*/
|
|
3687
|
+
amount?: number;
|
|
3688
|
+
/**
|
|
3689
|
+
* Currency code
|
|
3690
|
+
*/
|
|
3691
|
+
currency?: string;
|
|
3692
|
+
/**
|
|
3693
|
+
* Transaction date (ISO 8601)
|
|
3694
|
+
*/
|
|
3695
|
+
date?: string;
|
|
3696
|
+
/**
|
|
3697
|
+
* Payee/merchant name
|
|
3698
|
+
*/
|
|
3699
|
+
payee?: string;
|
|
3700
|
+
/**
|
|
3701
|
+
* Transaction narration
|
|
3702
|
+
*/
|
|
3703
|
+
narration?: string;
|
|
3704
|
+
/**
|
|
3705
|
+
* Category slug
|
|
3706
|
+
*/
|
|
3707
|
+
category?: string;
|
|
3708
|
+
/**
|
|
3709
|
+
* Income type
|
|
3710
|
+
*/
|
|
3711
|
+
incomeType?: string;
|
|
3712
|
+
/**
|
|
3713
|
+
* Income source
|
|
3714
|
+
*/
|
|
3715
|
+
incomeSource?: string;
|
|
3716
|
+
/**
|
|
3717
|
+
* Security symbol code (e.g., 600519, AAPL)
|
|
3718
|
+
*/
|
|
3719
|
+
symbol?: string;
|
|
3720
|
+
/**
|
|
3721
|
+
* Quantity of shares/units
|
|
3722
|
+
*/
|
|
3723
|
+
quantity?: number;
|
|
3724
|
+
/**
|
|
3725
|
+
* Unit price per share/unit
|
|
3726
|
+
*/
|
|
3727
|
+
price?: number;
|
|
3728
|
+
/**
|
|
3729
|
+
* Investment action
|
|
3730
|
+
*/
|
|
3731
|
+
investmentAction?: 'buy' | 'sell';
|
|
3732
|
+
/**
|
|
3733
|
+
* Payment source: asset (default) or liability (credit card)
|
|
3734
|
+
*/
|
|
3735
|
+
paymentSource?: 'asset' | 'liability';
|
|
3736
|
+
/**
|
|
3737
|
+
* Liability account hint (CreditCard/Huabei/Baitiao)
|
|
3738
|
+
*/
|
|
3739
|
+
liabilityHint?: string;
|
|
3740
|
+
/**
|
|
3741
|
+
* Display-only warning from the prior response; accepted but ignored.
|
|
3742
|
+
*/
|
|
3743
|
+
warning?: string;
|
|
3744
|
+
};
|
|
3745
|
+
/**
|
|
3746
|
+
* Investment action
|
|
3747
|
+
*/
|
|
3748
|
+
type investmentAction = 'buy' | 'sell';
|
|
3749
|
+
/**
|
|
3750
|
+
* Payment source: asset (default) or liability (credit card)
|
|
3751
|
+
*/
|
|
3752
|
+
type paymentSource = 'asset' | 'liability';
|
|
3603
3753
|
type ProcessNlpDto = {
|
|
3604
3754
|
/**
|
|
3605
|
-
* Natural language text describing a transaction (
|
|
3755
|
+
* Natural language text describing a transaction. Optional when `confirm` is true (structured confirm); otherwise required.
|
|
3606
3756
|
*/
|
|
3607
|
-
message
|
|
3757
|
+
message?: string;
|
|
3758
|
+
/**
|
|
3759
|
+
* Structured confirm signal — bypasses NL confirm-word matching when true. Send parsedData field edits alongside. The NL word-list path is the fallback.
|
|
3760
|
+
*/
|
|
3761
|
+
confirm?: boolean;
|
|
3608
3762
|
/**
|
|
3609
3763
|
* Session ID for multi-turn conversation (auto-generated if not provided)
|
|
3610
3764
|
*/
|
|
@@ -3612,9 +3766,7 @@ type ProcessNlpDto = {
|
|
|
3612
3766
|
/**
|
|
3613
3767
|
* Parsed data from previous NLP response for session recovery. Send back the parsedData received in confirm_payee/confirm responses.
|
|
3614
3768
|
*/
|
|
3615
|
-
parsedData?:
|
|
3616
|
-
[key: string]: unknown;
|
|
3617
|
-
};
|
|
3769
|
+
parsedData?: ClientParsedDataDto;
|
|
3618
3770
|
/**
|
|
3619
3771
|
* confirm_rule echo-back: rule id selected from the prior confirm_rule response (matchedRule.id or alternatives[i].ruleId). Applied directly when the session is confirming_rule — no NL re-parse.
|
|
3620
3772
|
*/
|
|
@@ -3716,14 +3868,6 @@ type NlpParsedDataDto = {
|
|
|
3716
3868
|
*/
|
|
3717
3869
|
warning?: string;
|
|
3718
3870
|
};
|
|
3719
|
-
/**
|
|
3720
|
-
* Investment action
|
|
3721
|
-
*/
|
|
3722
|
-
type investmentAction = 'buy' | 'sell';
|
|
3723
|
-
/**
|
|
3724
|
-
* Payment source: asset (default) or liability (credit card)
|
|
3725
|
-
*/
|
|
3726
|
-
type paymentSource = 'asset' | 'liability';
|
|
3727
3871
|
type NlpSourceTransactionDto = {
|
|
3728
3872
|
/**
|
|
3729
3873
|
* Transaction date (ISO format)
|
|
@@ -4028,7 +4172,7 @@ type NlpResponseDto = {
|
|
|
4028
4172
|
/**
|
|
4029
4173
|
* Asset sub-type (only present when intent is "asset"). Determines which asset-related form to render.
|
|
4030
4174
|
*/
|
|
4031
|
-
assetSubType?: 'transfer' | 'banking' | 'investment';
|
|
4175
|
+
assetSubType?: 'transfer' | 'banking' | 'investment' | 'lend' | 'lend_collect';
|
|
4032
4176
|
/**
|
|
4033
4177
|
* Liability sub-type (only present when intent is "liability"). borrow: borrowing money (Liabilities → Assets), repay: repaying debt (Assets → Liabilities).
|
|
4034
4178
|
*/
|
|
@@ -4132,7 +4276,7 @@ type intent = 'expense' | 'asset' | 'income' | 'liability' | 'equity';
|
|
|
4132
4276
|
/**
|
|
4133
4277
|
* Asset sub-type (only present when intent is "asset"). Determines which asset-related form to render.
|
|
4134
4278
|
*/
|
|
4135
|
-
type assetSubType = 'transfer' | 'banking' | 'investment';
|
|
4279
|
+
type assetSubType = 'transfer' | 'banking' | 'investment' | 'lend' | 'lend_collect';
|
|
4136
4280
|
/**
|
|
4137
4281
|
* Liability sub-type (only present when intent is "liability"). borrow: borrowing money (Liabilities → Assets), repay: repaying debt (Assets → Liabilities).
|
|
4138
4282
|
*/
|
|
@@ -4163,13 +4307,21 @@ type PlatformListItemDto = {
|
|
|
4163
4307
|
*/
|
|
4164
4308
|
canonical: string;
|
|
4165
4309
|
/**
|
|
4166
|
-
* Suggested path segment — canonical
|
|
4310
|
+
* Suggested path segment — canonical PascalCased per hyphen-part, hyphens preserved (e.g. "Apple-Pay")
|
|
4167
4311
|
*/
|
|
4168
4312
|
suggestedSegment: string;
|
|
4169
4313
|
/**
|
|
4170
4314
|
* Logo URL
|
|
4171
4315
|
*/
|
|
4172
4316
|
logoUrl: string | null;
|
|
4317
|
+
/**
|
|
4318
|
+
* ISO 3166-1 alpha-2 (UPPERCASE); null = global platform
|
|
4319
|
+
*/
|
|
4320
|
+
countryCode: string | null;
|
|
4321
|
+
/**
|
|
4322
|
+
* Region-aware category (institution vocab, e.g. DigitalWallet/Bank). null = no region-aware suggestion; fall back to type.
|
|
4323
|
+
*/
|
|
4324
|
+
category: string | null;
|
|
4173
4325
|
/**
|
|
4174
4326
|
* Whether user has accounts using this platform
|
|
4175
4327
|
*/
|
|
@@ -4197,13 +4349,21 @@ type PlatformMatchResultDto = {
|
|
|
4197
4349
|
*/
|
|
4198
4350
|
type: 'BANK' | 'BROKERAGE' | 'CRYPTO_EXCHANGE' | 'PAYMENT' | 'INVESTMENT' | 'INSURANCE' | 'OTHER';
|
|
4199
4351
|
/**
|
|
4200
|
-
* Suggested path segment — canonical,
|
|
4352
|
+
* Suggested path segment — canonical PascalCased per hyphen-part, hyphens preserved (e.g. "Apple-Pay")
|
|
4201
4353
|
*/
|
|
4202
4354
|
suggestedSegment: string;
|
|
4203
4355
|
/**
|
|
4204
4356
|
* Logo URL
|
|
4205
4357
|
*/
|
|
4206
4358
|
logoUrl: string | null;
|
|
4359
|
+
/**
|
|
4360
|
+
* ISO 3166-1 alpha-2 (UPPERCASE); null = global platform
|
|
4361
|
+
*/
|
|
4362
|
+
countryCode: string | null;
|
|
4363
|
+
/**
|
|
4364
|
+
* Region-aware category (institution vocab, e.g. DigitalWallet/Bank). null = no region-aware suggestion; fall back to type.
|
|
4365
|
+
*/
|
|
4366
|
+
category: string | null;
|
|
4207
4367
|
/**
|
|
4208
4368
|
* How this row matched: 'exact' > 'prefix' > 'substring'
|
|
4209
4369
|
*/
|
|
@@ -4549,10 +4709,6 @@ type AssetClassGroupDto = {
|
|
|
4549
4709
|
*/
|
|
4550
4710
|
convertedBalance?: string;
|
|
4551
4711
|
};
|
|
4552
|
-
/**
|
|
4553
|
-
* Asset class name
|
|
4554
|
-
*/
|
|
4555
|
-
type assetClass = 'LIQUIDITY' | 'EQUITY' | 'FIXED_INCOME' | 'PRECIOUS_METALS' | 'COMMODITY' | 'INSURANCE' | 'ALTERNATIVE_INVESTMENT' | 'PERSONAL_ASSETS' | 'LIABILITY' | 'REAL_ESTATE' | 'INDEX';
|
|
4556
4712
|
type AssetClassSummaryDto = {
|
|
4557
4713
|
/**
|
|
4558
4714
|
* Total number of accounts
|
|
@@ -5078,7 +5234,7 @@ type AccountControllerCreateData = {
|
|
|
5078
5234
|
/**
|
|
5079
5235
|
* Region code for tenant context
|
|
5080
5236
|
*/
|
|
5081
|
-
region: '
|
|
5237
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5082
5238
|
requestBody: CreateAccountDto;
|
|
5083
5239
|
};
|
|
5084
5240
|
type AccountControllerCreateResponse = AccountResponseDto;
|
|
@@ -5098,7 +5254,7 @@ type AccountControllerFindAllData = {
|
|
|
5098
5254
|
/**
|
|
5099
5255
|
* Region code for tenant context
|
|
5100
5256
|
*/
|
|
5101
|
-
region: '
|
|
5257
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5102
5258
|
/**
|
|
5103
5259
|
* Search term for account path
|
|
5104
5260
|
*/
|
|
@@ -5121,7 +5277,7 @@ type AccountControllerFindOneData = {
|
|
|
5121
5277
|
/**
|
|
5122
5278
|
* Region code for tenant context
|
|
5123
5279
|
*/
|
|
5124
|
-
region: '
|
|
5280
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5125
5281
|
};
|
|
5126
5282
|
type AccountControllerFindOneResponse = AccountResponseDto;
|
|
5127
5283
|
type AccountControllerUpdateData = {
|
|
@@ -5132,7 +5288,7 @@ type AccountControllerUpdateData = {
|
|
|
5132
5288
|
/**
|
|
5133
5289
|
* Region code for tenant context
|
|
5134
5290
|
*/
|
|
5135
|
-
region: '
|
|
5291
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5136
5292
|
requestBody: UpdateAccountDto;
|
|
5137
5293
|
};
|
|
5138
5294
|
type AccountControllerUpdateResponse = AccountResponseDto;
|
|
@@ -5144,7 +5300,7 @@ type AccountControllerDeleteData = {
|
|
|
5144
5300
|
/**
|
|
5145
5301
|
* Region code for tenant context
|
|
5146
5302
|
*/
|
|
5147
|
-
region: '
|
|
5303
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5148
5304
|
};
|
|
5149
5305
|
type AccountControllerDeleteResponse = void;
|
|
5150
5306
|
type AccountControllerCloseData = {
|
|
@@ -5155,7 +5311,7 @@ type AccountControllerCloseData = {
|
|
|
5155
5311
|
/**
|
|
5156
5312
|
* Region code for tenant context
|
|
5157
5313
|
*/
|
|
5158
|
-
region: '
|
|
5314
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5159
5315
|
requestBody: CloseAccountDto;
|
|
5160
5316
|
};
|
|
5161
5317
|
type AccountControllerCloseResponse = AccountResponseDto;
|
|
@@ -5167,7 +5323,7 @@ type AccountControllerReopenData = {
|
|
|
5167
5323
|
/**
|
|
5168
5324
|
* Region code for tenant context
|
|
5169
5325
|
*/
|
|
5170
|
-
region: '
|
|
5326
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5171
5327
|
requestBody: ReopenAccountDto;
|
|
5172
5328
|
};
|
|
5173
5329
|
type AccountControllerReopenResponse = AccountResponseDto;
|
|
@@ -5179,7 +5335,7 @@ type AccountControllerAddOpeningBalanceData = {
|
|
|
5179
5335
|
/**
|
|
5180
5336
|
* Region code for tenant context
|
|
5181
5337
|
*/
|
|
5182
|
-
region: '
|
|
5338
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5183
5339
|
requestBody: CreateOpeningBalanceDto;
|
|
5184
5340
|
};
|
|
5185
5341
|
type AccountControllerAddOpeningBalanceResponse = OpeningBalanceResultDto;
|
|
@@ -5187,7 +5343,7 @@ type AccountStandardsControllerGetTemplatesData = {
|
|
|
5187
5343
|
/**
|
|
5188
5344
|
* Region code (cn, us, de)
|
|
5189
5345
|
*/
|
|
5190
|
-
region: '
|
|
5346
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5191
5347
|
/**
|
|
5192
5348
|
* Search term for path or description
|
|
5193
5349
|
*/
|
|
@@ -5206,21 +5362,21 @@ type AccountStandardsControllerGetTemplateMetadataData = {
|
|
|
5206
5362
|
/**
|
|
5207
5363
|
* Region code for tenant context
|
|
5208
5364
|
*/
|
|
5209
|
-
region: '
|
|
5365
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5210
5366
|
};
|
|
5211
5367
|
type AccountStandardsControllerGetTemplateMetadataResponse = TemplateMetadataResponseDto;
|
|
5212
5368
|
type AccountStandardsControllerGetRegionsData = {
|
|
5213
5369
|
/**
|
|
5214
5370
|
* Region code for tenant context
|
|
5215
5371
|
*/
|
|
5216
|
-
region: '
|
|
5372
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5217
5373
|
};
|
|
5218
5374
|
type AccountStandardsControllerGetRegionsResponse = RegionsMetadataResponseDto;
|
|
5219
5375
|
type TransactionControllerCreateData = {
|
|
5220
5376
|
/**
|
|
5221
5377
|
* Region code for tenant context
|
|
5222
5378
|
*/
|
|
5223
|
-
region: '
|
|
5379
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5224
5380
|
/**
|
|
5225
5381
|
* Transaction data with postings
|
|
5226
5382
|
*/
|
|
@@ -5255,7 +5411,7 @@ type TransactionControllerListData = {
|
|
|
5255
5411
|
/**
|
|
5256
5412
|
* Region code for tenant context
|
|
5257
5413
|
*/
|
|
5258
|
-
region: '
|
|
5414
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5259
5415
|
/**
|
|
5260
5416
|
* Search in narration and payee fields (max 200 chars)
|
|
5261
5417
|
*/
|
|
@@ -5270,7 +5426,7 @@ type TransactionControllerCreateBatchData = {
|
|
|
5270
5426
|
/**
|
|
5271
5427
|
* Region code for tenant context
|
|
5272
5428
|
*/
|
|
5273
|
-
region: '
|
|
5429
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5274
5430
|
requestBody: BatchCreateTransactionDto;
|
|
5275
5431
|
};
|
|
5276
5432
|
type TransactionControllerCreateBatchResponse = BatchTransactionResponseDto;
|
|
@@ -5282,7 +5438,7 @@ type TransactionControllerCorrectData = {
|
|
|
5282
5438
|
/**
|
|
5283
5439
|
* Region code for tenant context
|
|
5284
5440
|
*/
|
|
5285
|
-
region: '
|
|
5441
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5286
5442
|
requestBody: CorrectTransactionDto;
|
|
5287
5443
|
};
|
|
5288
5444
|
type TransactionControllerCorrectResponse = TransactionDetailDto;
|
|
@@ -5298,7 +5454,7 @@ type TransactionControllerSuggestTagsData = {
|
|
|
5298
5454
|
/**
|
|
5299
5455
|
* Region code for tenant context
|
|
5300
5456
|
*/
|
|
5301
|
-
region: '
|
|
5457
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5302
5458
|
/**
|
|
5303
5459
|
* usage (default) or name
|
|
5304
5460
|
*/
|
|
@@ -5313,7 +5469,7 @@ type TransactionControllerGetDetailData = {
|
|
|
5313
5469
|
/**
|
|
5314
5470
|
* Region code for tenant context
|
|
5315
5471
|
*/
|
|
5316
|
-
region: '
|
|
5472
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5317
5473
|
};
|
|
5318
5474
|
type TransactionControllerGetDetailResponse = TransactionDetailDto;
|
|
5319
5475
|
type TransactionControllerUpdateData = {
|
|
@@ -5324,7 +5480,7 @@ type TransactionControllerUpdateData = {
|
|
|
5324
5480
|
/**
|
|
5325
5481
|
* Region code for tenant context
|
|
5326
5482
|
*/
|
|
5327
|
-
region: '
|
|
5483
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5328
5484
|
/**
|
|
5329
5485
|
* Fields to update (all optional)
|
|
5330
5486
|
*/
|
|
@@ -5339,7 +5495,7 @@ type TransactionControllerDeleteData = {
|
|
|
5339
5495
|
/**
|
|
5340
5496
|
* Region code for tenant context
|
|
5341
5497
|
*/
|
|
5342
|
-
region: '
|
|
5498
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5343
5499
|
};
|
|
5344
5500
|
type TransactionControllerDeleteResponse = void;
|
|
5345
5501
|
type BalanceControllerGetBalanceData = {
|
|
@@ -5358,14 +5514,14 @@ type BalanceControllerGetBalanceData = {
|
|
|
5358
5514
|
/**
|
|
5359
5515
|
* Region code for tenant context
|
|
5360
5516
|
*/
|
|
5361
|
-
region: '
|
|
5517
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5362
5518
|
};
|
|
5363
5519
|
type BalanceControllerGetBalanceResponse = BalanceResponseDto;
|
|
5364
5520
|
type BalanceControllerGetMultiCurrencyBalanceData = {
|
|
5365
5521
|
/**
|
|
5366
5522
|
* Region code for tenant context
|
|
5367
5523
|
*/
|
|
5368
|
-
region: '
|
|
5524
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5369
5525
|
};
|
|
5370
5526
|
type BalanceControllerGetMultiCurrencyBalanceResponse = MultiCurrencyBalanceResponseDto;
|
|
5371
5527
|
type ReviewControllerFindAllData = {
|
|
@@ -5384,7 +5540,7 @@ type ReviewControllerFindAllData = {
|
|
|
5384
5540
|
/**
|
|
5385
5541
|
* Region code for tenant context
|
|
5386
5542
|
*/
|
|
5387
|
-
region: '
|
|
5543
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5388
5544
|
/**
|
|
5389
5545
|
* Sort order
|
|
5390
5546
|
*/
|
|
@@ -5399,7 +5555,7 @@ type ReviewControllerGetStatsData = {
|
|
|
5399
5555
|
/**
|
|
5400
5556
|
* Region code for tenant context
|
|
5401
5557
|
*/
|
|
5402
|
-
region: '
|
|
5558
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5403
5559
|
};
|
|
5404
5560
|
type ReviewControllerGetStatsResponse = ReviewStatsDto;
|
|
5405
5561
|
type ReviewControllerFindOneData = {
|
|
@@ -5410,7 +5566,7 @@ type ReviewControllerFindOneData = {
|
|
|
5410
5566
|
/**
|
|
5411
5567
|
* Region code for tenant context
|
|
5412
5568
|
*/
|
|
5413
|
-
region: '
|
|
5569
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5414
5570
|
};
|
|
5415
5571
|
type ReviewControllerFindOneResponse = ReviewDetailDto;
|
|
5416
5572
|
type ReviewControllerResolveData = {
|
|
@@ -5421,7 +5577,7 @@ type ReviewControllerResolveData = {
|
|
|
5421
5577
|
/**
|
|
5422
5578
|
* Region code for tenant context
|
|
5423
5579
|
*/
|
|
5424
|
-
region: '
|
|
5580
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5425
5581
|
requestBody: ResolveReviewDto;
|
|
5426
5582
|
};
|
|
5427
5583
|
type ReviewControllerResolveResponse = ResolveResultDto;
|
|
@@ -5433,14 +5589,14 @@ type ReviewControllerUndoData = {
|
|
|
5433
5589
|
/**
|
|
5434
5590
|
* Region code for tenant context
|
|
5435
5591
|
*/
|
|
5436
|
-
region: '
|
|
5592
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5437
5593
|
};
|
|
5438
5594
|
type ReviewControllerUndoResponse = UndoResultDto;
|
|
5439
5595
|
type ReviewControllerBatchResolveData = {
|
|
5440
5596
|
/**
|
|
5441
5597
|
* Region code for tenant context
|
|
5442
5598
|
*/
|
|
5443
|
-
region: '
|
|
5599
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5444
5600
|
/**
|
|
5445
5601
|
* Batch resolution request containing review IDs and action
|
|
5446
5602
|
*/
|
|
@@ -5585,7 +5741,7 @@ type CommodityControllerCreateData = {
|
|
|
5585
5741
|
/**
|
|
5586
5742
|
* Region code for tenant context
|
|
5587
5743
|
*/
|
|
5588
|
-
region: '
|
|
5744
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5589
5745
|
requestBody: CreateCommodityDto;
|
|
5590
5746
|
};
|
|
5591
5747
|
type CommodityControllerCreateResponse = CommodityResponseDto;
|
|
@@ -5593,7 +5749,7 @@ type CommodityControllerFindAllData = {
|
|
|
5593
5749
|
/**
|
|
5594
5750
|
* Region code for tenant context
|
|
5595
5751
|
*/
|
|
5596
|
-
region: '
|
|
5752
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5597
5753
|
/**
|
|
5598
5754
|
* Search term for symbol or metadata fields (partial match). Searches symbol and metadata.name.
|
|
5599
5755
|
*/
|
|
@@ -5608,7 +5764,7 @@ type CommodityControllerFindOneData = {
|
|
|
5608
5764
|
/**
|
|
5609
5765
|
* Region code for tenant context
|
|
5610
5766
|
*/
|
|
5611
|
-
region: '
|
|
5767
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5612
5768
|
/**
|
|
5613
5769
|
* Commodity symbol
|
|
5614
5770
|
*/
|
|
@@ -5619,7 +5775,7 @@ type CommodityControllerUpdateData = {
|
|
|
5619
5775
|
/**
|
|
5620
5776
|
* Region code for tenant context
|
|
5621
5777
|
*/
|
|
5622
|
-
region: '
|
|
5778
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5623
5779
|
requestBody: UpdateCommodityDto;
|
|
5624
5780
|
/**
|
|
5625
5781
|
* Commodity symbol
|
|
@@ -5631,7 +5787,7 @@ type CommodityControllerDeleteData = {
|
|
|
5631
5787
|
/**
|
|
5632
5788
|
* Region code for tenant context
|
|
5633
5789
|
*/
|
|
5634
|
-
region: '
|
|
5790
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5635
5791
|
/**
|
|
5636
5792
|
* Commodity symbol
|
|
5637
5793
|
*/
|
|
@@ -5642,7 +5798,7 @@ type CommodityControllerGetOrCreateData = {
|
|
|
5642
5798
|
/**
|
|
5643
5799
|
* Region code for tenant context
|
|
5644
5800
|
*/
|
|
5645
|
-
region: '
|
|
5801
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5646
5802
|
/**
|
|
5647
5803
|
* Commodity symbol
|
|
5648
5804
|
*/
|
|
@@ -5653,14 +5809,14 @@ type CommodityControllerBulkCreateData = {
|
|
|
5653
5809
|
/**
|
|
5654
5810
|
* Region code for tenant context
|
|
5655
5811
|
*/
|
|
5656
|
-
region: '
|
|
5812
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5657
5813
|
};
|
|
5658
5814
|
type CommodityControllerBulkCreateResponse = Array<CommodityResponseDto>;
|
|
5659
5815
|
type PriceControllerCreateData = {
|
|
5660
5816
|
/**
|
|
5661
5817
|
* Region code for tenant context
|
|
5662
5818
|
*/
|
|
5663
|
-
region: '
|
|
5819
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5664
5820
|
requestBody: CreateBeanPriceDto;
|
|
5665
5821
|
};
|
|
5666
5822
|
type PriceControllerCreateResponse = PriceResponseDto;
|
|
@@ -5692,7 +5848,7 @@ type PriceControllerFindAllData = {
|
|
|
5692
5848
|
/**
|
|
5693
5849
|
* Region code for tenant context
|
|
5694
5850
|
*/
|
|
5695
|
-
region: '
|
|
5851
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5696
5852
|
/**
|
|
5697
5853
|
* Search term for currency or quoteCurrency (case-insensitive partial match)
|
|
5698
5854
|
*/
|
|
@@ -5707,7 +5863,7 @@ type PriceControllerFindOneData = {
|
|
|
5707
5863
|
/**
|
|
5708
5864
|
* Region code for tenant context
|
|
5709
5865
|
*/
|
|
5710
|
-
region: '
|
|
5866
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5711
5867
|
};
|
|
5712
5868
|
type PriceControllerFindOneResponse = PriceResponseDto;
|
|
5713
5869
|
type PriceControllerUpdateData = {
|
|
@@ -5718,7 +5874,7 @@ type PriceControllerUpdateData = {
|
|
|
5718
5874
|
/**
|
|
5719
5875
|
* Region code for tenant context
|
|
5720
5876
|
*/
|
|
5721
|
-
region: '
|
|
5877
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5722
5878
|
requestBody: UpdateBeanPriceDto;
|
|
5723
5879
|
};
|
|
5724
5880
|
type PriceControllerUpdateResponse = PriceResponseDto;
|
|
@@ -5730,14 +5886,14 @@ type PriceControllerDeleteData = {
|
|
|
5730
5886
|
/**
|
|
5731
5887
|
* Region code for tenant context
|
|
5732
5888
|
*/
|
|
5733
|
-
region: '
|
|
5889
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5734
5890
|
};
|
|
5735
5891
|
type PriceControllerDeleteResponse = void;
|
|
5736
5892
|
type PriceControllerBulkCreateData = {
|
|
5737
5893
|
/**
|
|
5738
5894
|
* Region code for tenant context
|
|
5739
5895
|
*/
|
|
5740
|
-
region: '
|
|
5896
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5741
5897
|
requestBody: Array<string>;
|
|
5742
5898
|
};
|
|
5743
5899
|
type PriceControllerBulkCreateResponse = Array<PriceResponseDto>;
|
|
@@ -5745,7 +5901,7 @@ type RecurringRuleControllerCreateData = {
|
|
|
5745
5901
|
/**
|
|
5746
5902
|
* Region code for tenant context
|
|
5747
5903
|
*/
|
|
5748
|
-
region: '
|
|
5904
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5749
5905
|
requestBody: CreateRecurringRuleDto;
|
|
5750
5906
|
};
|
|
5751
5907
|
type RecurringRuleControllerCreateResponse = RecurringRuleResponseDto;
|
|
@@ -5765,14 +5921,14 @@ type RecurringRuleControllerFindAllData = {
|
|
|
5765
5921
|
/**
|
|
5766
5922
|
* Region code for tenant context
|
|
5767
5923
|
*/
|
|
5768
|
-
region: '
|
|
5924
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5769
5925
|
};
|
|
5770
5926
|
type RecurringRuleControllerFindAllResponse = Array<RecurringRuleResponseDto>;
|
|
5771
5927
|
type RecurringRuleControllerCreateFromTransactionData = {
|
|
5772
5928
|
/**
|
|
5773
5929
|
* Region code for tenant context
|
|
5774
5930
|
*/
|
|
5775
|
-
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';
|
|
5776
5932
|
requestBody: CreateRuleFromTransactionDto;
|
|
5777
5933
|
/**
|
|
5778
5934
|
* Source transaction ID
|
|
@@ -5788,7 +5944,7 @@ type RecurringRuleControllerFindOneData = {
|
|
|
5788
5944
|
/**
|
|
5789
5945
|
* Region code for tenant context
|
|
5790
5946
|
*/
|
|
5791
|
-
region: '
|
|
5947
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5792
5948
|
};
|
|
5793
5949
|
type RecurringRuleControllerFindOneResponse = RecurringRuleResponseDto;
|
|
5794
5950
|
type RecurringRuleControllerUpdateData = {
|
|
@@ -5799,7 +5955,7 @@ type RecurringRuleControllerUpdateData = {
|
|
|
5799
5955
|
/**
|
|
5800
5956
|
* Region code for tenant context
|
|
5801
5957
|
*/
|
|
5802
|
-
region: '
|
|
5958
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5803
5959
|
requestBody: UpdateRecurringRuleDto;
|
|
5804
5960
|
};
|
|
5805
5961
|
type RecurringRuleControllerUpdateResponse = RecurringRuleResponseDto;
|
|
@@ -5811,7 +5967,7 @@ type RecurringRuleControllerDeleteData = {
|
|
|
5811
5967
|
/**
|
|
5812
5968
|
* Region code for tenant context
|
|
5813
5969
|
*/
|
|
5814
|
-
region: '
|
|
5970
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5815
5971
|
};
|
|
5816
5972
|
type RecurringRuleControllerDeleteResponse = void;
|
|
5817
5973
|
type RecurringRuleControllerGetWithStatsData = {
|
|
@@ -5822,7 +5978,7 @@ type RecurringRuleControllerGetWithStatsData = {
|
|
|
5822
5978
|
/**
|
|
5823
5979
|
* Region code for tenant context
|
|
5824
5980
|
*/
|
|
5825
|
-
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';
|
|
5826
5982
|
};
|
|
5827
5983
|
type RecurringRuleControllerGetWithStatsResponse = RecurringRuleWithStatsResponseDto;
|
|
5828
5984
|
type ExpectedTransactionControllerFindAllData = {
|
|
@@ -5833,7 +5989,7 @@ type ExpectedTransactionControllerFindAllData = {
|
|
|
5833
5989
|
/**
|
|
5834
5990
|
* Region code for tenant context
|
|
5835
5991
|
*/
|
|
5836
|
-
region: '
|
|
5992
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5837
5993
|
/**
|
|
5838
5994
|
* Filter by recurring rule ID
|
|
5839
5995
|
*/
|
|
@@ -5852,7 +6008,7 @@ type ExpectedTransactionControllerFindOverdueData = {
|
|
|
5852
6008
|
/**
|
|
5853
6009
|
* Region code for tenant context
|
|
5854
6010
|
*/
|
|
5855
|
-
region: '
|
|
6011
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5856
6012
|
};
|
|
5857
6013
|
type ExpectedTransactionControllerFindOverdueResponse = ExpectedTransactionListResponseDto;
|
|
5858
6014
|
type ExpectedTransactionControllerFindOneData = {
|
|
@@ -5863,7 +6019,7 @@ type ExpectedTransactionControllerFindOneData = {
|
|
|
5863
6019
|
/**
|
|
5864
6020
|
* Region code for tenant context
|
|
5865
6021
|
*/
|
|
5866
|
-
region: '
|
|
6022
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5867
6023
|
};
|
|
5868
6024
|
type ExpectedTransactionControllerFindOneResponse = ExpectedTransactionResponseDto;
|
|
5869
6025
|
type ExpectedTransactionControllerSkipData = {
|
|
@@ -5874,7 +6030,7 @@ type ExpectedTransactionControllerSkipData = {
|
|
|
5874
6030
|
/**
|
|
5875
6031
|
* Region code for tenant context
|
|
5876
6032
|
*/
|
|
5877
|
-
region: '
|
|
6033
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5878
6034
|
};
|
|
5879
6035
|
type ExpectedTransactionControllerSkipResponse = ExpectedTransactionResponseDto;
|
|
5880
6036
|
type ExpectedTransactionControllerUndoSkipData = {
|
|
@@ -5885,7 +6041,7 @@ type ExpectedTransactionControllerUndoSkipData = {
|
|
|
5885
6041
|
/**
|
|
5886
6042
|
* Region code for tenant context
|
|
5887
6043
|
*/
|
|
5888
|
-
region: '
|
|
6044
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5889
6045
|
};
|
|
5890
6046
|
type ExpectedTransactionControllerUndoSkipResponse = ExpectedTransactionResponseDto;
|
|
5891
6047
|
type ExpectedTransactionControllerConfirmMatchData = {
|
|
@@ -5896,7 +6052,7 @@ type ExpectedTransactionControllerConfirmMatchData = {
|
|
|
5896
6052
|
/**
|
|
5897
6053
|
* Region code for tenant context
|
|
5898
6054
|
*/
|
|
5899
|
-
region: '
|
|
6055
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5900
6056
|
requestBody: ConfirmMatchDto;
|
|
5901
6057
|
};
|
|
5902
6058
|
type ExpectedTransactionControllerConfirmMatchResponse = unknown;
|
|
@@ -5908,7 +6064,7 @@ type ExpectedTransactionControllerUnmatchData = {
|
|
|
5908
6064
|
/**
|
|
5909
6065
|
* Region code for tenant context
|
|
5910
6066
|
*/
|
|
5911
|
-
region: '
|
|
6067
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5912
6068
|
};
|
|
5913
6069
|
type ExpectedTransactionControllerUnmatchResponse = unknown;
|
|
5914
6070
|
type ExpectedTransactionControllerEnterNowData = {
|
|
@@ -5919,7 +6075,7 @@ type ExpectedTransactionControllerEnterNowData = {
|
|
|
5919
6075
|
/**
|
|
5920
6076
|
* Region code for tenant context
|
|
5921
6077
|
*/
|
|
5922
|
-
region: '
|
|
6078
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5923
6079
|
requestBody: EnterNowDto;
|
|
5924
6080
|
};
|
|
5925
6081
|
type ExpectedTransactionControllerEnterNowResponse = unknown;
|
|
@@ -5931,7 +6087,7 @@ type ForecastControllerGetForecastData = {
|
|
|
5931
6087
|
/**
|
|
5932
6088
|
* Region code for tenant context
|
|
5933
6089
|
*/
|
|
5934
|
-
region: '
|
|
6090
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5935
6091
|
};
|
|
5936
6092
|
type ForecastControllerGetForecastResponse = ForecastResponseDto;
|
|
5937
6093
|
type ReportingControllerGetPortfolioTrendsData = {
|
|
@@ -5946,7 +6102,7 @@ type ReportingControllerGetPortfolioTrendsData = {
|
|
|
5946
6102
|
/**
|
|
5947
6103
|
* Region code for tenant context
|
|
5948
6104
|
*/
|
|
5949
|
-
region: '
|
|
6105
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5950
6106
|
};
|
|
5951
6107
|
type ReportingControllerGetPortfolioTrendsResponse = PortfolioTrendsResponseDto;
|
|
5952
6108
|
type ReportingControllerGetCashFlowTrendsData = {
|
|
@@ -5961,14 +6117,14 @@ type ReportingControllerGetCashFlowTrendsData = {
|
|
|
5961
6117
|
/**
|
|
5962
6118
|
* Region code for tenant context
|
|
5963
6119
|
*/
|
|
5964
|
-
region: '
|
|
6120
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5965
6121
|
};
|
|
5966
6122
|
type ReportingControllerGetCashFlowTrendsResponse = CashFlowTrendsResponseDto;
|
|
5967
6123
|
type ReportingControllerGenerateSnapshotData = {
|
|
5968
6124
|
/**
|
|
5969
6125
|
* Region code for tenant context
|
|
5970
6126
|
*/
|
|
5971
|
-
region: '
|
|
6127
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5972
6128
|
/**
|
|
5973
6129
|
* Optional date (defaults to today)
|
|
5974
6130
|
*/
|
|
@@ -5979,7 +6135,7 @@ type ReportingControllerBackfillSnapshotsData = {
|
|
|
5979
6135
|
/**
|
|
5980
6136
|
* Region code for tenant context
|
|
5981
6137
|
*/
|
|
5982
|
-
region: '
|
|
6138
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
5983
6139
|
requestBody: BackfillSnapshotsBody;
|
|
5984
6140
|
};
|
|
5985
6141
|
type ReportingControllerBackfillSnapshotsResponse = BackfillSnapshotsResponse;
|
|
@@ -5990,7 +6146,7 @@ type UserControllerDeleteOwnUserResponse = void;
|
|
|
5990
6146
|
type UserControllerGetUserData = {
|
|
5991
6147
|
acceptLanguage: string;
|
|
5992
6148
|
};
|
|
5993
|
-
type UserControllerGetUserResponse =
|
|
6149
|
+
type UserControllerGetUserResponse = UserResponseDto;
|
|
5994
6150
|
type UserControllerSignupUserData = {
|
|
5995
6151
|
requestBody: SignupDto;
|
|
5996
6152
|
};
|
|
@@ -6052,7 +6208,7 @@ type TransactionRuleControllerCreateData = {
|
|
|
6052
6208
|
/**
|
|
6053
6209
|
* Region code for tenant context
|
|
6054
6210
|
*/
|
|
6055
|
-
region: '
|
|
6211
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6056
6212
|
requestBody: CreateTransactionRuleDto;
|
|
6057
6213
|
};
|
|
6058
6214
|
type TransactionRuleControllerCreateResponse = TransactionRuleResponseDto;
|
|
@@ -6080,14 +6236,14 @@ type TransactionRuleControllerListData = {
|
|
|
6080
6236
|
/**
|
|
6081
6237
|
* Region code for tenant context
|
|
6082
6238
|
*/
|
|
6083
|
-
region: '
|
|
6239
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6084
6240
|
};
|
|
6085
6241
|
type TransactionRuleControllerListResponse = TransactionRuleListResponseDto;
|
|
6086
6242
|
type TransactionRuleControllerValidateData = {
|
|
6087
6243
|
/**
|
|
6088
6244
|
* Region code for tenant context
|
|
6089
6245
|
*/
|
|
6090
|
-
region: '
|
|
6246
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6091
6247
|
requestBody: ValidateRuleDto;
|
|
6092
6248
|
};
|
|
6093
6249
|
type TransactionRuleControllerValidateResponse = ValidateRuleResponseDto;
|
|
@@ -6095,7 +6251,7 @@ type TransactionRuleControllerBulkCreateData = {
|
|
|
6095
6251
|
/**
|
|
6096
6252
|
* Region code for tenant context
|
|
6097
6253
|
*/
|
|
6098
|
-
region: '
|
|
6254
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6099
6255
|
requestBody: BulkCreateRulesDto;
|
|
6100
6256
|
};
|
|
6101
6257
|
type TransactionRuleControllerBulkCreateResponse = BulkCreateRulesResponseDto;
|
|
@@ -6107,7 +6263,7 @@ type TransactionRuleControllerExportData = {
|
|
|
6107
6263
|
/**
|
|
6108
6264
|
* Region code for tenant context
|
|
6109
6265
|
*/
|
|
6110
|
-
region: '
|
|
6266
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6111
6267
|
};
|
|
6112
6268
|
type TransactionRuleControllerExportResponse = ExportRulesResponseDto;
|
|
6113
6269
|
type TransactionRuleControllerGetStatisticsData = {
|
|
@@ -6118,14 +6274,14 @@ type TransactionRuleControllerGetStatisticsData = {
|
|
|
6118
6274
|
/**
|
|
6119
6275
|
* Region code for tenant context
|
|
6120
6276
|
*/
|
|
6121
|
-
region: '
|
|
6277
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6122
6278
|
};
|
|
6123
6279
|
type TransactionRuleControllerGetStatisticsResponse = RuleStatisticsResponseDto;
|
|
6124
6280
|
type TransactionRuleControllerGetDetailData = {
|
|
6125
6281
|
/**
|
|
6126
6282
|
* Region code for tenant context
|
|
6127
6283
|
*/
|
|
6128
|
-
region: '
|
|
6284
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6129
6285
|
/**
|
|
6130
6286
|
* Rule ID
|
|
6131
6287
|
*/
|
|
@@ -6136,7 +6292,7 @@ type TransactionRuleControllerUpdateData = {
|
|
|
6136
6292
|
/**
|
|
6137
6293
|
* Region code for tenant context
|
|
6138
6294
|
*/
|
|
6139
|
-
region: '
|
|
6295
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6140
6296
|
requestBody: UpdateTransactionRuleDto;
|
|
6141
6297
|
/**
|
|
6142
6298
|
* Rule ID to update
|
|
@@ -6148,7 +6304,7 @@ type TransactionRuleControllerDeleteData = {
|
|
|
6148
6304
|
/**
|
|
6149
6305
|
* Region code for tenant context
|
|
6150
6306
|
*/
|
|
6151
|
-
region: '
|
|
6307
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6152
6308
|
/**
|
|
6153
6309
|
* Rule ID to delete
|
|
6154
6310
|
*/
|
|
@@ -6159,7 +6315,7 @@ type TransactionRuleControllerTestData = {
|
|
|
6159
6315
|
/**
|
|
6160
6316
|
* Region code for tenant context
|
|
6161
6317
|
*/
|
|
6162
|
-
region: '
|
|
6318
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6163
6319
|
requestBody: TestRuleDto;
|
|
6164
6320
|
/**
|
|
6165
6321
|
* Rule ID to test
|
|
@@ -6167,11 +6323,26 @@ type TransactionRuleControllerTestData = {
|
|
|
6167
6323
|
ruleId: string;
|
|
6168
6324
|
};
|
|
6169
6325
|
type TransactionRuleControllerTestResponse = TestRuleResponseDto;
|
|
6326
|
+
type CategoryCatalogControllerListData = {
|
|
6327
|
+
/**
|
|
6328
|
+
* Region code for tenant context
|
|
6329
|
+
*/
|
|
6330
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6331
|
+
/**
|
|
6332
|
+
* Filter by routeBearing (entity-router route() consumes it)
|
|
6333
|
+
*/
|
|
6334
|
+
routeBearing?: boolean;
|
|
6335
|
+
/**
|
|
6336
|
+
* Filter by scenario
|
|
6337
|
+
*/
|
|
6338
|
+
scenario?: 'expense' | 'income' | 'investment' | 'banking' | 'transfer' | 'payment';
|
|
6339
|
+
};
|
|
6340
|
+
type CategoryCatalogControllerListResponse = CategoryCatalogListResponseDto;
|
|
6170
6341
|
type EventControllerCreateData = {
|
|
6171
6342
|
/**
|
|
6172
6343
|
* Region code for tenant context (decorative for life events)
|
|
6173
6344
|
*/
|
|
6174
|
-
region: '
|
|
6345
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6175
6346
|
requestBody: CreateBeanEventDto;
|
|
6176
6347
|
};
|
|
6177
6348
|
type EventControllerCreateResponse = EventResponseDto;
|
|
@@ -6195,7 +6366,7 @@ type EventControllerFindAllData = {
|
|
|
6195
6366
|
/**
|
|
6196
6367
|
* Region code for tenant context (decorative for life events)
|
|
6197
6368
|
*/
|
|
6198
|
-
region: '
|
|
6369
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6199
6370
|
/**
|
|
6200
6371
|
* Filter life events to this date (ISO 8601 format)
|
|
6201
6372
|
*/
|
|
@@ -6214,7 +6385,7 @@ type EventControllerFindOneData = {
|
|
|
6214
6385
|
/**
|
|
6215
6386
|
* Region code for tenant context (decorative for life events)
|
|
6216
6387
|
*/
|
|
6217
|
-
region: '
|
|
6388
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6218
6389
|
};
|
|
6219
6390
|
type EventControllerFindOneResponse = EventResponseDto;
|
|
6220
6391
|
type EventControllerUpdateData = {
|
|
@@ -6225,7 +6396,7 @@ type EventControllerUpdateData = {
|
|
|
6225
6396
|
/**
|
|
6226
6397
|
* Region code for tenant context (decorative for life events)
|
|
6227
6398
|
*/
|
|
6228
|
-
region: '
|
|
6399
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6229
6400
|
requestBody: UpdateBeanEventDto;
|
|
6230
6401
|
};
|
|
6231
6402
|
type EventControllerUpdateResponse = EventResponseDto;
|
|
@@ -6237,7 +6408,7 @@ type EventControllerDeleteData = {
|
|
|
6237
6408
|
/**
|
|
6238
6409
|
* Region code for tenant context (decorative for life events)
|
|
6239
6410
|
*/
|
|
6240
|
-
region: '
|
|
6411
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6241
6412
|
};
|
|
6242
6413
|
type EventControllerDeleteResponse = void;
|
|
6243
6414
|
type EventControllerGetSliceData = {
|
|
@@ -6250,14 +6421,14 @@ type EventControllerGetSliceData = {
|
|
|
6250
6421
|
/**
|
|
6251
6422
|
* Region code for tenant context (decorative for life events)
|
|
6252
6423
|
*/
|
|
6253
|
-
region: '
|
|
6424
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6254
6425
|
};
|
|
6255
6426
|
type EventControllerGetSliceResponse = unknown;
|
|
6256
6427
|
type OnboardingControllerBootstrapData = {
|
|
6257
6428
|
/**
|
|
6258
6429
|
* Region code for tenant context
|
|
6259
6430
|
*/
|
|
6260
|
-
region: '
|
|
6431
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6261
6432
|
requestBody: OnboardingDto;
|
|
6262
6433
|
};
|
|
6263
6434
|
type OnboardingControllerBootstrapResponse = unknown;
|
|
@@ -6265,7 +6436,7 @@ type ReconciliationControllerComputeData = {
|
|
|
6265
6436
|
/**
|
|
6266
6437
|
* Region code for tenant context (decorative for reconciliation)
|
|
6267
6438
|
*/
|
|
6268
|
-
region: '
|
|
6439
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6269
6440
|
requestBody: ComputeReconciliationDto;
|
|
6270
6441
|
};
|
|
6271
6442
|
type ReconciliationControllerComputeResponse = ReconciliationComputeResultDto;
|
|
@@ -6273,7 +6444,7 @@ type ReconciliationControllerAssertData = {
|
|
|
6273
6444
|
/**
|
|
6274
6445
|
* Region code for tenant context (decorative for reconciliation)
|
|
6275
6446
|
*/
|
|
6276
|
-
region: '
|
|
6447
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6277
6448
|
requestBody: AssertReconciliationDto;
|
|
6278
6449
|
};
|
|
6279
6450
|
type ReconciliationControllerAssertResponse = ReconciliationRecordDto;
|
|
@@ -6281,7 +6452,7 @@ type ReconciliationControllerPadData = {
|
|
|
6281
6452
|
/**
|
|
6282
6453
|
* Region code for tenant context (decorative for reconciliation)
|
|
6283
6454
|
*/
|
|
6284
|
-
region: '
|
|
6455
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6285
6456
|
requestBody: PadReconciliationDto;
|
|
6286
6457
|
};
|
|
6287
6458
|
type ReconciliationControllerPadResponse = PadResultDto;
|
|
@@ -6293,7 +6464,7 @@ type ReconciliationControllerHistoryData = {
|
|
|
6293
6464
|
/**
|
|
6294
6465
|
* Region code for tenant context (decorative for reconciliation)
|
|
6295
6466
|
*/
|
|
6296
|
-
region: '
|
|
6467
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6297
6468
|
};
|
|
6298
6469
|
type ReconciliationControllerHistoryResponse = Array<ReconciliationRecordDto>;
|
|
6299
6470
|
type ExportControllerExportBeancountResponse = unknown;
|
|
@@ -6305,7 +6476,7 @@ type FileImportControllerImportFileData = {
|
|
|
6305
6476
|
/**
|
|
6306
6477
|
* Region code for tenant context
|
|
6307
6478
|
*/
|
|
6308
|
-
region: '
|
|
6479
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6309
6480
|
};
|
|
6310
6481
|
type FileImportControllerImportFileResponse = ImportResultDto;
|
|
6311
6482
|
type FileImportControllerIdentifyFileData = {
|
|
@@ -6316,7 +6487,7 @@ type FileImportControllerIdentifyFileData = {
|
|
|
6316
6487
|
/**
|
|
6317
6488
|
* Region code for tenant context
|
|
6318
6489
|
*/
|
|
6319
|
-
region: '
|
|
6490
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6320
6491
|
};
|
|
6321
6492
|
type FileImportControllerIdentifyFileResponse = IdentifyResultDto;
|
|
6322
6493
|
type FileImportControllerImportBeancountData = {
|
|
@@ -6327,7 +6498,7 @@ type FileImportControllerImportBeancountData = {
|
|
|
6327
6498
|
/**
|
|
6328
6499
|
* Region code for tenant context
|
|
6329
6500
|
*/
|
|
6330
|
-
region: '
|
|
6501
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6331
6502
|
};
|
|
6332
6503
|
type FileImportControllerImportBeancountResponse = {
|
|
6333
6504
|
imported?: number;
|
|
@@ -6346,7 +6517,7 @@ type ImporterConfigControllerGetConfigData = {
|
|
|
6346
6517
|
/**
|
|
6347
6518
|
* Region code for tenant context
|
|
6348
6519
|
*/
|
|
6349
|
-
region: '
|
|
6520
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6350
6521
|
};
|
|
6351
6522
|
type ImporterConfigControllerGetConfigResponse = ImporterConfigDto;
|
|
6352
6523
|
type ImporterConfigControllerUpdateConfigData = {
|
|
@@ -6357,7 +6528,7 @@ type ImporterConfigControllerUpdateConfigData = {
|
|
|
6357
6528
|
/**
|
|
6358
6529
|
* Region code for tenant context
|
|
6359
6530
|
*/
|
|
6360
|
-
region: '
|
|
6531
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6361
6532
|
/**
|
|
6362
6533
|
* Partial configuration update. Only provided fields will be updated.
|
|
6363
6534
|
*/
|
|
@@ -6372,7 +6543,7 @@ type ImporterConfigControllerResetConfigData = {
|
|
|
6372
6543
|
/**
|
|
6373
6544
|
* Region code for tenant context
|
|
6374
6545
|
*/
|
|
6375
|
-
region: '
|
|
6546
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6376
6547
|
};
|
|
6377
6548
|
type ImporterConfigControllerResetConfigResponse = ImporterConfigDto;
|
|
6378
6549
|
type ProviderSyncControllerSyncData = {
|
|
@@ -6383,7 +6554,7 @@ type ProviderSyncControllerSyncData = {
|
|
|
6383
6554
|
/**
|
|
6384
6555
|
* Region code for tenant context
|
|
6385
6556
|
*/
|
|
6386
|
-
region: '
|
|
6557
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6387
6558
|
requestBody: ProviderSyncDto;
|
|
6388
6559
|
};
|
|
6389
6560
|
type ProviderSyncControllerSyncResponse = ProviderSyncResponseDto;
|
|
@@ -6391,7 +6562,7 @@ type ProviderSyncControllerGetSupportedProvidersData = {
|
|
|
6391
6562
|
/**
|
|
6392
6563
|
* Region code for tenant context
|
|
6393
6564
|
*/
|
|
6394
|
-
region: '
|
|
6565
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6395
6566
|
};
|
|
6396
6567
|
type ProviderSyncControllerGetSupportedProvidersResponse = SupportedProvidersResponseDto;
|
|
6397
6568
|
type ProviderSyncControllerIsProviderSupportedData = {
|
|
@@ -6402,14 +6573,14 @@ type ProviderSyncControllerIsProviderSupportedData = {
|
|
|
6402
6573
|
/**
|
|
6403
6574
|
* Region code for tenant context
|
|
6404
6575
|
*/
|
|
6405
|
-
region: '
|
|
6576
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6406
6577
|
};
|
|
6407
6578
|
type ProviderSyncControllerIsProviderSupportedResponse = unknown;
|
|
6408
6579
|
type ExternalAccountLinkControllerCreateData = {
|
|
6409
6580
|
/**
|
|
6410
6581
|
* Region code for tenant context
|
|
6411
6582
|
*/
|
|
6412
|
-
region: '
|
|
6583
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6413
6584
|
requestBody: CreateExternalAccountLinkDto;
|
|
6414
6585
|
};
|
|
6415
6586
|
type ExternalAccountLinkControllerCreateResponse = ExternalAccountLinkResponseDto;
|
|
@@ -6418,7 +6589,7 @@ type ExternalAccountLinkControllerFindAllData = {
|
|
|
6418
6589
|
/**
|
|
6419
6590
|
* Region code for tenant context
|
|
6420
6591
|
*/
|
|
6421
|
-
region: '
|
|
6592
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6422
6593
|
};
|
|
6423
6594
|
type ExternalAccountLinkControllerFindAllResponse = ExternalAccountLinkListResponseDto;
|
|
6424
6595
|
type ExternalAccountLinkControllerFindOneData = {
|
|
@@ -6426,7 +6597,7 @@ type ExternalAccountLinkControllerFindOneData = {
|
|
|
6426
6597
|
/**
|
|
6427
6598
|
* Region code for tenant context
|
|
6428
6599
|
*/
|
|
6429
|
-
region: '
|
|
6600
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6430
6601
|
};
|
|
6431
6602
|
type ExternalAccountLinkControllerFindOneResponse = ExternalAccountLinkResponseDto;
|
|
6432
6603
|
type ExternalAccountLinkControllerRemoveData = {
|
|
@@ -6434,14 +6605,14 @@ type ExternalAccountLinkControllerRemoveData = {
|
|
|
6434
6605
|
/**
|
|
6435
6606
|
* Region code for tenant context
|
|
6436
6607
|
*/
|
|
6437
|
-
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';
|
|
6438
6609
|
};
|
|
6439
6610
|
type ExternalAccountLinkControllerRemoveResponse = void;
|
|
6440
6611
|
type TelemetryControllerReportTelemetryData = {
|
|
6441
6612
|
/**
|
|
6442
6613
|
* Region code for tenant context
|
|
6443
6614
|
*/
|
|
6444
|
-
region: '
|
|
6615
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6445
6616
|
requestBody: ParserTelemetryReportDto;
|
|
6446
6617
|
};
|
|
6447
6618
|
type TelemetryControllerReportTelemetryResponse = unknown;
|
|
@@ -6449,7 +6620,7 @@ type TelemetryControllerReportCoverageMissData = {
|
|
|
6449
6620
|
/**
|
|
6450
6621
|
* Region code for tenant context
|
|
6451
6622
|
*/
|
|
6452
|
-
region: '
|
|
6623
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6453
6624
|
requestBody: UncoveredFormatMissDto;
|
|
6454
6625
|
};
|
|
6455
6626
|
type TelemetryControllerReportCoverageMissResponse = unknown;
|
|
@@ -6457,7 +6628,7 @@ type TelemetryControllerGetCoverageMetricsData = {
|
|
|
6457
6628
|
/**
|
|
6458
6629
|
* Region code for tenant context
|
|
6459
6630
|
*/
|
|
6460
|
-
region: '
|
|
6631
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6461
6632
|
/**
|
|
6462
6633
|
* Top-N uncovered formats (default 10)
|
|
6463
6634
|
*/
|
|
@@ -6468,7 +6639,7 @@ type NlpControllerProcessNaturalLanguageData = {
|
|
|
6468
6639
|
/**
|
|
6469
6640
|
* Region code for tenant context
|
|
6470
6641
|
*/
|
|
6471
|
-
region: '
|
|
6642
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6472
6643
|
/**
|
|
6473
6644
|
* Natural language transaction input with optional session ID
|
|
6474
6645
|
*/
|
|
@@ -6479,7 +6650,7 @@ type NlpControllerClearSessionData = {
|
|
|
6479
6650
|
/**
|
|
6480
6651
|
* Region code for tenant context
|
|
6481
6652
|
*/
|
|
6482
|
-
region: '
|
|
6653
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6483
6654
|
/**
|
|
6484
6655
|
* Specific session ID to clear (defaults to user session)
|
|
6485
6656
|
*/
|
|
@@ -6490,7 +6661,7 @@ type NlpControllerGetSessionData = {
|
|
|
6490
6661
|
/**
|
|
6491
6662
|
* Region code for tenant context
|
|
6492
6663
|
*/
|
|
6493
|
-
region: '
|
|
6664
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6494
6665
|
/**
|
|
6495
6666
|
* Specific session ID to get (defaults to user session)
|
|
6496
6667
|
*/
|
|
@@ -6502,6 +6673,12 @@ type PlatformControllerCreateData = {
|
|
|
6502
6673
|
requestBody: CreatePlatformDto;
|
|
6503
6674
|
};
|
|
6504
6675
|
type PlatformControllerCreateResponse = unknown;
|
|
6676
|
+
type PlatformControllerGetPlatformListData = {
|
|
6677
|
+
/**
|
|
6678
|
+
* Region code (ISO 3166-1 alpha-2) that biases within-type-bucket ordering (local-region platforms first). Case-insensitive — stored/compared UPPERCASE ("cn" == "CN").
|
|
6679
|
+
*/
|
|
6680
|
+
region?: string;
|
|
6681
|
+
};
|
|
6505
6682
|
type PlatformControllerGetPlatformListResponse = Array<PlatformListItemDto>;
|
|
6506
6683
|
type PlatformControllerMatchPlatformsData = {
|
|
6507
6684
|
/**
|
|
@@ -6509,7 +6686,7 @@ type PlatformControllerMatchPlatformsData = {
|
|
|
6509
6686
|
*/
|
|
6510
6687
|
q: string;
|
|
6511
6688
|
/**
|
|
6512
|
-
* Region code
|
|
6689
|
+
* Region code (ISO 3166-1 alpha-2) that biases within-tier ordering (local-region platforms first); also the intended categoryOverrides key. Case-insensitive — stored/compared UPPERCASE ("cn" == "CN").
|
|
6513
6690
|
*/
|
|
6514
6691
|
region?: string;
|
|
6515
6692
|
};
|
|
@@ -6537,7 +6714,7 @@ type DashboardControllerGetNetWorthData = {
|
|
|
6537
6714
|
/**
|
|
6538
6715
|
* Region code for tenant context
|
|
6539
6716
|
*/
|
|
6540
|
-
region: '
|
|
6717
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6541
6718
|
};
|
|
6542
6719
|
type DashboardControllerGetNetWorthResponse = NetWorthResponseDto;
|
|
6543
6720
|
type DashboardControllerGetAccountsData = {
|
|
@@ -6556,7 +6733,7 @@ type DashboardControllerGetAccountsData = {
|
|
|
6556
6733
|
/**
|
|
6557
6734
|
* Region code for tenant context
|
|
6558
6735
|
*/
|
|
6559
|
-
region: '
|
|
6736
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6560
6737
|
};
|
|
6561
6738
|
type DashboardControllerGetAccountsResponse = AccountsResponseDto | AssetClassAccountsResponseDto | HoldingAssetClassCrossAccountResponseDto;
|
|
6562
6739
|
type DashboardControllerGetCashFlowData = {
|
|
@@ -6567,7 +6744,7 @@ type DashboardControllerGetCashFlowData = {
|
|
|
6567
6744
|
/**
|
|
6568
6745
|
* Region code for tenant context
|
|
6569
6746
|
*/
|
|
6570
|
-
region: '
|
|
6747
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6571
6748
|
};
|
|
6572
6749
|
type DashboardControllerGetCashFlowResponse = CashFlowResponseDto;
|
|
6573
6750
|
type DashboardControllerGetExpensesData = {
|
|
@@ -6586,7 +6763,7 @@ type DashboardControllerGetExpensesData = {
|
|
|
6586
6763
|
/**
|
|
6587
6764
|
* Region code for tenant context
|
|
6588
6765
|
*/
|
|
6589
|
-
region: '
|
|
6766
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6590
6767
|
};
|
|
6591
6768
|
type DashboardControllerGetExpensesResponse = ExpensesByCategoryResponseDto;
|
|
6592
6769
|
type HoldingPnlControllerGetHoldingPnlData = {
|
|
@@ -6605,7 +6782,7 @@ type HoldingPnlControllerGetHoldingPnlData = {
|
|
|
6605
6782
|
/**
|
|
6606
6783
|
* Region code for tenant context
|
|
6607
6784
|
*/
|
|
6608
|
-
region: '
|
|
6785
|
+
region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
|
|
6609
6786
|
};
|
|
6610
6787
|
type HoldingPnlControllerGetHoldingPnlResponse = HoldingPnlResponseDto;
|
|
6611
6788
|
type ApiKeysControllerCreateApiKeyResponse = unknown;
|
|
@@ -6726,7 +6903,7 @@ type $OpenApiTs = {
|
|
|
6726
6903
|
*/
|
|
6727
6904
|
404: unknown;
|
|
6728
6905
|
/**
|
|
6729
|
-
* Account has transactions and cannot be deleted
|
|
6906
|
+
* Account has active transactions and cannot be deleted
|
|
6730
6907
|
*/
|
|
6731
6908
|
409: unknown;
|
|
6732
6909
|
};
|
|
@@ -7823,7 +8000,7 @@ type $OpenApiTs = {
|
|
|
7823
8000
|
/**
|
|
7824
8001
|
* User retrieved successfully
|
|
7825
8002
|
*/
|
|
7826
|
-
200:
|
|
8003
|
+
200: UserResponseDto;
|
|
7827
8004
|
};
|
|
7828
8005
|
};
|
|
7829
8006
|
post: {
|
|
@@ -8197,6 +8374,17 @@ type $OpenApiTs = {
|
|
|
8197
8374
|
};
|
|
8198
8375
|
};
|
|
8199
8376
|
};
|
|
8377
|
+
'/api/v1/{region}/bean/categories': {
|
|
8378
|
+
get: {
|
|
8379
|
+
req: CategoryCatalogControllerListData;
|
|
8380
|
+
res: {
|
|
8381
|
+
/**
|
|
8382
|
+
* Category catalog retrieved successfully
|
|
8383
|
+
*/
|
|
8384
|
+
200: CategoryCatalogListResponseDto;
|
|
8385
|
+
};
|
|
8386
|
+
};
|
|
8387
|
+
};
|
|
8200
8388
|
'/api/v1/{region}/bean/events': {
|
|
8201
8389
|
post: {
|
|
8202
8390
|
req: EventControllerCreateData;
|
|
@@ -8736,6 +8924,7 @@ type $OpenApiTs = {
|
|
|
8736
8924
|
};
|
|
8737
8925
|
'/api/v1/bean/platforms/list': {
|
|
8738
8926
|
get: {
|
|
8927
|
+
req: PlatformControllerGetPlatformListData;
|
|
8739
8928
|
res: {
|
|
8740
8929
|
/**
|
|
8741
8930
|
* List of platforms with user binding status
|
|
@@ -9115,7 +9304,7 @@ declare class BeanAccountsService {
|
|
|
9115
9304
|
static accountControllerUpdate(data: AccountControllerUpdateData): CancelablePromise<AccountControllerUpdateResponse>;
|
|
9116
9305
|
/**
|
|
9117
9306
|
* Delete account
|
|
9118
|
-
* Deletes an account (only if no transactions)
|
|
9307
|
+
* Deletes an account (only if no active transactions; voided/superseded residual postings are cleaned up)
|
|
9119
9308
|
* @param data The data for the request.
|
|
9120
9309
|
* @param data.id Account UUID
|
|
9121
9310
|
* @param data.region Region code for tenant context
|
|
@@ -9487,4 +9676,4 @@ type OpenAPIConfig = {
|
|
|
9487
9676
|
};
|
|
9488
9677
|
declare const OpenAPI: OpenAPIConfig;
|
|
9489
9678
|
|
|
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 };
|
|
9679
|
+
export { type $OpenApiTs, type AccountControllerAddOpeningBalanceData, type AccountControllerAddOpeningBalanceResponse, type AccountControllerCloseData, type AccountControllerCloseResponse, type AccountControllerCreateData, type AccountControllerCreateResponse, type AccountControllerDeleteData, type AccountControllerDeleteResponse, type AccountControllerFindAllData, type AccountControllerFindAllResponse, type AccountControllerFindOneData, type AccountControllerFindOneResponse, type AccountControllerReopenData, type AccountControllerReopenResponse, type AccountControllerUpdateData, type AccountControllerUpdateResponse, type AccountExchangeRateWarningDto, type AccountItemDto, type AccountItemWithAssetClassDto, type AccountListResponseDto, type AccountResponseDto, type AccountStandardListResponseDto, type AccountStandardResponseDto, type AccountStandardsControllerGetRegionsData, type AccountStandardsControllerGetRegionsResponse, type AccountStandardsControllerGetTemplateMetadataData, type AccountStandardsControllerGetTemplateMetadataResponse, type AccountStandardsControllerGetTemplatesData, type AccountStandardsControllerGetTemplatesResponse, type AccountsResponseDto, type AccountsSummaryDto, type ActualBalanceDto, type AmountDto, type AmountRangeDto, type AnonymousLoginDto, type AnonymousLoginResponseDto, type ApiKeysControllerCreateApiKeyResponse, type ApiProblemResponseDto, type AssertReconciliationDto, type AssetClassAccountsResponseDto, type AssetClassGroupDto, type AssetClassSummaryDto, type AuthControllerAccessTokenLoginData, type AuthControllerAccessTokenLoginResponse, type BackfillSnapshotsBody, type BackfillSnapshotsResponse, type BalanceByCurrencyDto, type BalanceControllerGetBalanceData, type BalanceControllerGetBalanceResponse, type BalanceControllerGetMultiCurrencyBalanceData, type BalanceControllerGetMultiCurrencyBalanceResponse, type BalanceResponseDto, type BatchCreateTransactionDto, type BatchResolveDto, type BatchResolveResultDto, type BatchTransactionErrorDto, type BatchTransactionResponseDto, BeanAccountsService, BeanBalancesService, BeanCommoditiesService, BeanTransactionsService, type BulkCreateRulesDto, type BulkCreateRulesResponseDto, type CacheControllerFlushCacheResponse, type CashFlowByCurrencyDto, type CashFlowPointDto, type CashFlowResponseDto, type CashFlowTrendSummaryDto, type CashFlowTrendsResponseDto, type CategoryCatalogControllerListData, type CategoryCatalogControllerListResponse, type CategoryCatalogEntryDto, type CategoryCatalogListResponseDto, type CategoryGroupDto, type ClientParsedDataDto, type CloseAccountDto, type CommodityControllerBulkCreateData, type CommodityControllerBulkCreateResponse, type CommodityControllerCreateData, type CommodityControllerCreateResponse, type CommodityControllerDeleteData, type CommodityControllerDeleteResponse, type CommodityControllerFindAllData, type CommodityControllerFindAllResponse, type CommodityControllerFindOneData, type CommodityControllerFindOneResponse, type CommodityControllerGetOrCreateData, type CommodityControllerGetOrCreateResponse, type CommodityControllerUpdateData, type CommodityControllerUpdateResponse, type CommodityListResponseDto, type CommodityResponseDto, type ComputeReconciliationDto, type ConfirmMatchDto, type ConvertedCashFlowDto, type ConvertedNetWorthDto, type CorrectTransactionDto, type CostDetailDto, type CostSpecDto, type CreateAccountDto, type CreateBeanEventDto, type CreateBeanPriceDto, type CreateCommodityDto, type CreateExternalAccountLinkDto, type CreateOpeningBalanceDto, type CreatePayeeDto, type CreatePayeeProfileDto, type CreatePlatformDto, type CreatePostingDto, type CreateRecurringRuleDto, type CreateRuleFromTransactionDto, type CreateTransactionDto, type CreateTransactionRuleDto, type CurrencyBalanceDto, type CurrentPriceDto, type DashboardControllerGetAccountsData, type DashboardControllerGetAccountsResponse, type DashboardControllerGetCashFlowData, type DashboardControllerGetCashFlowResponse, type DashboardControllerGetExpensesData, type DashboardControllerGetExpensesResponse, type DashboardControllerGetNetWorthData, type DashboardControllerGetNetWorthResponse, type DecisionOptionDto, type DeleteOwnUserDto, type EnterNowDto, type EventControllerCreateData, type EventControllerCreateResponse, type EventControllerDeleteData, type EventControllerDeleteResponse, type EventControllerFindAllData, type EventControllerFindAllResponse, type EventControllerFindOneData, type EventControllerFindOneResponse, type EventControllerGetSliceData, type EventControllerGetSliceResponse, type EventControllerUpdateData, type EventControllerUpdateResponse, type EventListResponseDto, type EventResponseDto, type ExchangeRateControllerGetExchangeRateData, type ExchangeRateControllerGetExchangeRateResponse, type ExchangeRateWarningDto, type ExpectedTransactionControllerConfirmMatchData, type ExpectedTransactionControllerConfirmMatchResponse, type ExpectedTransactionControllerEnterNowData, type ExpectedTransactionControllerEnterNowResponse, type ExpectedTransactionControllerFindAllData, type ExpectedTransactionControllerFindAllResponse, type ExpectedTransactionControllerFindOneData, type ExpectedTransactionControllerFindOneResponse, type ExpectedTransactionControllerFindOverdueData, type ExpectedTransactionControllerFindOverdueResponse, type ExpectedTransactionControllerSkipData, type ExpectedTransactionControllerSkipResponse, type ExpectedTransactionControllerUndoSkipData, type ExpectedTransactionControllerUndoSkipResponse, type ExpectedTransactionControllerUnmatchData, type ExpectedTransactionControllerUnmatchResponse, type ExpectedTransactionListResponseDto, type ExpectedTransactionResponseDto, type ExpectedTransactionRuleDto, type ExpensesByCategoryResponseDto, type ExpensesByCategorySummaryDto, type ExportControllerExportBeancountResponse, type ExportRulesResponseDto, type ExternalAccountLinkControllerCreateData, type ExternalAccountLinkControllerCreateResponse, type ExternalAccountLinkControllerFindAllData, type ExternalAccountLinkControllerFindAllResponse, type ExternalAccountLinkControllerFindOneData, type ExternalAccountLinkControllerFindOneResponse, type ExternalAccountLinkControllerRemoveData, type ExternalAccountLinkControllerRemoveResponse, type ExternalAccountLinkListResponseDto, type ExternalAccountLinkResponseDto, type FileImportControllerIdentifyFileData, type FileImportControllerIdentifyFileResponse, type FileImportControllerImportBeancountData, type FileImportControllerImportBeancountResponse, type FileImportControllerImportFileData, type FileImportControllerImportFileResponse, type FileImportDto, type ForecastControllerGetForecastData, type ForecastControllerGetForecastResponse, type ForecastItemDto, type ForecastResponseDto, type FxRateDto, type GenerateSnapshotBody, type GenerateSnapshotResponse, type HealthControllerCheckDatabaseResponse, type HealthControllerCheckOpenBbResponse, type HealthControllerCheckRedisResponse, type HealthControllerGetCircuitBreakersHealthResponse, type HealthControllerGetHealthResponse, type HealthControllerGetMetricsResponse, type HealthControllerResetCircuitBreakerData, type HealthControllerResetCircuitBreakerResponse, HealthService, type HoldingAssetClassAccountSliceDto, type HoldingAssetClassCrossAccountResponseDto, type HoldingPnlControllerGetHoldingPnlData, type HoldingPnlControllerGetHoldingPnlResponse, type HoldingPnlResponseDto, type HoldingPnlRowDto, type HoldingPnlWarningDto, type IdentifyResultDto, type ImportErrorDto, type ImportResultDto, type ImporterConfigControllerGetConfigData, type ImporterConfigControllerGetConfigResponse, type ImporterConfigControllerResetConfigData, type ImporterConfigControllerResetConfigResponse, type ImporterConfigControllerUpdateConfigData, type ImporterConfigControllerUpdateConfigResponse, type ImporterConfigDataDto, type ImporterConfigDto, type InfoControllerGetInfoResponse, type MapperDefaultsDto, type MonetaryDto, type MonthlyForecastDto, type MultiCurrencyBalanceResponseDto, type MultiCurrencyPointDto, type NetWorthByCurrencyDto, type NetWorthResponseDto, type NlpAccountConfirmationDataDto, type NlpAlternativePayeeDto, type NlpControllerClearSessionData, type NlpControllerClearSessionResponse, type NlpControllerGetSessionData, type NlpControllerGetSessionResponse, type NlpControllerProcessNaturalLanguageData, type NlpControllerProcessNaturalLanguageResponse, type NlpDefaultAccountsDto, type NlpDuplicateConfirmationDataDto, type NlpParsedDataDto, type NlpPayeeConfirmationDataDto, type NlpResponseDto, type NlpRuleConfirmationDataDto, type NlpSimilarityDto, type NlpSourceTransactionDto, type NlpSuggestedAccountDto, type NlpSuggestedAccountsDto, type NlpSuggestedPayeeDto, type NlpTargetTransactionDto, type NlpTransactionInfoDto, type OnboardingAccountDto, type OnboardingControllerBootstrapData, type OnboardingControllerBootstrapResponse, type OnboardingDto, OpenAPI, type OpenAPIConfig, type OpeningBalanceResultDto, type PadReconciliationDto, type PadResultDto, type ParserTelemetryReportDto, type PayeeAutocompleteResponseDto, type PayeeControllerAutocompleteData, type PayeeControllerAutocompleteResponse, type PayeeControllerCreateData, type PayeeControllerCreateResponse, type PayeeControllerDeleteData, type PayeeControllerDeleteResponse, type PayeeControllerFindAllData, type PayeeControllerFindAllResponse, type PayeeControllerFindOneData, type PayeeControllerFindOneResponse, type PayeeControllerGetTopPayeesData, type PayeeControllerGetTopPayeesResponse, type PayeeControllerUpdateData, type PayeeControllerUpdateResponse, type PayeeListResponseDto, type PayeeProfileAdminControllerCreateData, type PayeeProfileAdminControllerCreateResponse, type PayeeProfileAdminControllerDeleteData, type PayeeProfileAdminControllerDeleteResponse, type PayeeProfileAdminControllerFindAllData, type PayeeProfileAdminControllerFindAllResponse, type PayeeProfileAdminControllerFindOneData, type PayeeProfileAdminControllerFindOneResponse, type PayeeProfileAdminControllerUnverifyData, type PayeeProfileAdminControllerUnverifyResponse, type PayeeProfileAdminControllerUpdateData, type PayeeProfileAdminControllerUpdateResponse, type PayeeProfileAdminControllerVerifyData, type PayeeProfileAdminControllerVerifyResponse, type PayeeProfileListResponseDto, type PayeeProfileResponseDto, type PayeeResponseDto, type PayeeStatsResponseDto, type PlatformControllerCreateData, type PlatformControllerCreateResponse, type PlatformControllerDeleteData, type PlatformControllerDeleteResponse, type PlatformControllerFindAllResponse, type PlatformControllerGetPlatformListData, type PlatformControllerGetPlatformListResponse, type PlatformControllerMatchPlatformsData, type PlatformControllerMatchPlatformsResponse, type PlatformControllerUpdateData, type PlatformControllerUpdateResponse, type PlatformGroupDto, type PlatformListItemDto, type PlatformMatchResponseDto, type PlatformMatchResultDto, type PortfolioTrendsResponseDto, type PostingDetailDto, type PostingResponseDto, type PriceControllerBulkCreateData, type PriceControllerBulkCreateResponse, type PriceControllerCreateData, type PriceControllerCreateResponse, type PriceControllerDeleteData, type PriceControllerDeleteResponse, type PriceControllerFindAllData, type PriceControllerFindAllResponse, type PriceControllerFindOneData, type PriceControllerFindOneResponse, type PriceControllerUpdateData, type PriceControllerUpdateResponse, type PriceListResponseDto, type PriceResponseDto, type ProcessNlpDto, type PropertyControllerDeleteData, type PropertyControllerDeleteResponse, type PropertyControllerGetAllResponse, type PropertyControllerGetByKeyData, type PropertyControllerGetByKeyResponse, type PropertyControllerUpdateData, type PropertyControllerUpdateResponse, type ProviderSyncConfigDto, type ProviderSyncControllerGetSupportedProvidersData, type ProviderSyncControllerGetSupportedProvidersResponse, type ProviderSyncControllerIsProviderSupportedData, type ProviderSyncControllerIsProviderSupportedResponse, type ProviderSyncControllerSyncData, type ProviderSyncControllerSyncResponse, type ProviderSyncDto, type ProviderSyncResponseDto, ProviderSyncService, type ReconciliationComputeResultDto, type ReconciliationControllerAssertData, type ReconciliationControllerAssertResponse, type ReconciliationControllerComputeData, type ReconciliationControllerComputeResponse, type ReconciliationControllerHistoryData, type ReconciliationControllerHistoryResponse, type ReconciliationControllerPadData, type ReconciliationControllerPadResponse, type ReconciliationRecordDto, type RecurringMatchInfoDto, type RecurringRuleControllerCreateData, type RecurringRuleControllerCreateFromTransactionData, type RecurringRuleControllerCreateFromTransactionResponse, type RecurringRuleControllerCreateResponse, type RecurringRuleControllerDeleteData, type RecurringRuleControllerDeleteResponse, type RecurringRuleControllerFindAllData, type RecurringRuleControllerFindAllResponse, type RecurringRuleControllerFindOneData, type RecurringRuleControllerFindOneResponse, type RecurringRuleControllerGetWithStatsData, type RecurringRuleControllerGetWithStatsResponse, type RecurringRuleControllerUpdateData, type RecurringRuleControllerUpdateResponse, type RecurringRuleResponseDto, type RecurringRuleWithStatsResponseDto, type RecurringSuggestionDto, type RegionConfigDto, type RegionInfoDto, type RegionsMetadataResponseDto, type ReopenAccountDto, type ReportingControllerBackfillSnapshotsData, type ReportingControllerBackfillSnapshotsResponse, type ReportingControllerGenerateSnapshotData, type ReportingControllerGenerateSnapshotResponse, type ReportingControllerGetCashFlowTrendsData, type ReportingControllerGetCashFlowTrendsResponse, type ReportingControllerGetPortfolioTrendsData, type ReportingControllerGetPortfolioTrendsResponse, type ResolveResultDto, type ResolveReviewDto, type ReviewControllerBatchResolveData, type ReviewControllerBatchResolveResponse, type ReviewControllerFindAllData, type ReviewControllerFindAllResponse, type ReviewControllerFindOneData, type ReviewControllerFindOneResponse, type ReviewControllerGetStatsData, type ReviewControllerGetStatsResponse, type ReviewControllerResolveData, type ReviewControllerResolveResponse, type ReviewControllerUndoData, type ReviewControllerUndoResponse, type ReviewDetailDto, type ReviewItemPreviewDto, type ReviewListResponseDto, type ReviewStatsDto, type ReviewSummaryDto, type RuleStatisticsResponseDto, type SignupDto, type SignupResponseDto, type SupportedProvidersResponseDto, type SymbolControllerGetQuoteData, type SymbolControllerGetQuoteResponse, type SymbolControllerSearchData, type SymbolControllerSearchResponse, type SymbolQuoteDto, type SymbolSearchResultDto, type TagSuggestionDto, type TagSuggestionsResponseDto, type TelemetryControllerGetCoverageMetricsData, type TelemetryControllerGetCoverageMetricsResponse, type TelemetryControllerReportCoverageMissData, type TelemetryControllerReportCoverageMissResponse, type TelemetryControllerReportTelemetryData, type TelemetryControllerReportTelemetryResponse, type TemplateMetadataDto, type TemplateMetadataResponseDto, type TestRuleDto, type TestRuleResponseDto, type TimeSeriesPointDto, type TransactionControllerCorrectData, type TransactionControllerCorrectResponse, type TransactionControllerCreateBatchData, type TransactionControllerCreateBatchResponse, type TransactionControllerCreateData, type TransactionControllerCreateResponse, type TransactionControllerDeleteData, type TransactionControllerDeleteResponse, type TransactionControllerGetDetailData, type TransactionControllerGetDetailResponse, type TransactionControllerListData, type TransactionControllerListResponse, type TransactionControllerSuggestTagsData, type TransactionControllerSuggestTagsResponse, type TransactionControllerUpdateData, type TransactionControllerUpdateResponse, type TransactionDetailDto, type TransactionListResponseDto, type TransactionListSummaryDto, type TransactionResponseDto, type TransactionRuleControllerBulkCreateData, type TransactionRuleControllerBulkCreateResponse, type TransactionRuleControllerCreateData, type TransactionRuleControllerCreateResponse, type TransactionRuleControllerDeleteData, type TransactionRuleControllerDeleteResponse, type TransactionRuleControllerExportData, type TransactionRuleControllerExportResponse, type TransactionRuleControllerGetDetailData, type TransactionRuleControllerGetDetailResponse, type TransactionRuleControllerGetStatisticsData, type TransactionRuleControllerGetStatisticsResponse, type TransactionRuleControllerListData, type TransactionRuleControllerListResponse, type TransactionRuleControllerTestData, type TransactionRuleControllerTestResponse, type TransactionRuleControllerUpdateData, type TransactionRuleControllerUpdateResponse, type TransactionRuleControllerValidateData, type TransactionRuleControllerValidateResponse, type TransactionRuleListResponseDto, type TransactionRuleResponseDto, type TransactionSummaryDto, type TrendSummaryDto, type UncoveredFormatMissDto, type UndoResultDto, type UpdateAccountDto, type UpdateBeanEventDto, type UpdateBeanPriceDto, type UpdateCommodityDto, type UpdateConfigDataDto, type UpdateImporterConfigDto, type UpdateMapperDefaultsDto, type UpdatePayeeDto, type UpdatePayeeProfileDto, type UpdatePlatformDto, type UpdatePropertyDto, type UpdateRecurringRuleDto, type UpdateTransactionDto, type UpdateTransactionRuleDto, type UpdateUserSettingDto, type UserControllerDeleteOwnUserData, type UserControllerDeleteOwnUserResponse, type UserControllerDeleteUserData, type UserControllerDeleteUserResponse, type UserControllerGetAllUserSettingsByPageData, type UserControllerGetAllUserSettingsByPageResponse, type UserControllerGetAssetLiabilitySummaryResponse, type UserControllerGetUserData, type UserControllerGetUserInfoData, type UserControllerGetUserInfoResponse, type UserControllerGetUserResponse, type UserControllerSignupUserData, type UserControllerSignupUserResponse, type UserControllerUpdateUserSettingData, type UserControllerUpdateUserSettingResponse, type UserResponseDto, type UserSettingsResponseDto, type ValidateRuleDto, type ValidateRuleResponseDto, type VersionedConfigDto, type action, type action2, type assetClass, type assetSubClass, type assetSubType, type bookingMethod, type branchType, type category, type chartToken, type colorScheme, type confidenceLevel, type conflictStrategy, type dataSource, type equitySubType, type flag, type flag2, type frequency, type importerId, type intent, type investmentAction, type learningSource, type liabilitySubType, type matchLogic, type matchType, type matchType2, type method, type mode, type paymentSource, type period, type productCategory, type provider, type role, type scenario, type source, type source2, type source3, type status, type status2, type status3, type status4, type suggestedAction, type suggestedFrequency, type type, type type2, type type3, type type4, type value, type viewMode };
|