@firela/api-types 0.0.0-canary.610daafc → 0.0.0-canary.63a53b7d

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 CHANGED
@@ -27,13 +27,9 @@ type CreateAccountDto = {
27
27
  */
28
28
  path: string;
29
29
  /**
30
- * Display name to distinguish accounts at the same path (default: "")
30
+ * Account open date (server defaults to today)
31
31
  */
32
- displayName?: string;
33
- /**
34
- * Account open date
35
- */
36
- openDate: string;
32
+ openDate?: string;
37
33
  /**
38
34
  * Allowed currencies (null = no restriction)
39
35
  */
@@ -50,18 +46,14 @@ type CreateAccountDto = {
50
46
  * Whether this is a custom (user-created) account
51
47
  */
52
48
  isCustom?: boolean;
53
- /**
54
- * i18n key for display name (overrides template)
55
- */
56
- i18nKey?: string;
57
49
  /**
58
50
  * Icon identifier (overrides template)
59
51
  */
60
52
  icon?: string;
61
53
  /**
62
- * Additional metadata
54
+ * Open directive metadata (NOT an opening-balance amount — use the opening-balance endpoint)
63
55
  */
64
- openMeta?: {
56
+ openDirectiveMeta?: {
65
57
  [key: string]: unknown;
66
58
  };
67
59
  /**
@@ -82,10 +74,6 @@ type AccountResponseDto = {
82
74
  * Account path (hierarchical, colon-separated)
83
75
  */
84
76
  path: string;
85
- /**
86
- * Display name distinguishing multiple accounts at the same path
87
- */
88
- displayName: string;
89
77
  /**
90
78
  * Account type (root segment)
91
79
  */
@@ -119,17 +107,17 @@ type AccountResponseDto = {
119
107
  */
120
108
  isCustom: boolean;
121
109
  /**
122
- * i18n key for display name
110
+ * Localized display name (ADR-0114, read-time projection)
123
111
  */
124
- i18nKey?: string;
112
+ displayName?: string;
125
113
  /**
126
114
  * Icon identifier
127
115
  */
128
116
  icon?: string;
129
117
  /**
130
- * Account metadata
118
+ * Open directive metadata (ADR-0115 Decision 9)
131
119
  */
132
- openMeta?: {
120
+ openDirectiveMeta?: {
133
121
  [key: string]: unknown;
134
122
  };
135
123
  /**
@@ -172,10 +160,6 @@ type AccountListResponseDto = {
172
160
  total: number;
173
161
  };
174
162
  type UpdateAccountDto = {
175
- /**
176
- * Display name to distinguish accounts at the same path
177
- */
178
- displayName?: string;
179
163
  /**
180
164
  * Allowed currencies (null = no restriction)
181
165
  */
@@ -184,18 +168,14 @@ type UpdateAccountDto = {
184
168
  * Booking method for cost basis
185
169
  */
186
170
  bookingMethod?: 'FIFO' | 'LIFO' | 'HIFO' | 'AVERAGE' | 'STRICT' | 'STRICT_WITH_SIZE' | 'NONE';
187
- /**
188
- * i18n key for display name
189
- */
190
- i18nKey?: string;
191
171
  /**
192
172
  * Icon identifier
193
173
  */
194
174
  icon?: string;
195
175
  /**
196
- * Additional metadata (merged with existing)
176
+ * Open directive metadata (merged with existing; NOT an opening-balance amount)
197
177
  */
198
- openMeta?: {
178
+ openDirectiveMeta?: {
199
179
  [key: string]: unknown;
200
180
  };
201
181
  /**
@@ -221,6 +201,26 @@ type ReopenAccountDto = {
221
201
  */
222
202
  reopenDate?: string;
223
203
  };
204
+ type CreateOpeningBalanceDto = {
205
+ /**
206
+ * Opening balance amount (non-negative)
207
+ */
208
+ amount: number;
209
+ /**
210
+ * Currency code
211
+ */
212
+ currency: string;
213
+ /**
214
+ * Opening-balance date (defaults to now)
215
+ */
216
+ date?: string;
217
+ };
218
+ type OpeningBalanceResultDto = {
219
+ /**
220
+ * Created opening-balance transaction id.
221
+ */
222
+ transactionId: string;
223
+ };
224
224
  type AccountStandardResponseDto = {
225
225
  /**
226
226
  * Account path (hierarchical, colon-separated)
@@ -230,10 +230,6 @@ type AccountStandardResponseDto = {
230
230
  * Account type in Beancount hierarchy
231
231
  */
232
232
  type: 'Assets' | 'Liabilities' | 'Income' | 'Expenses' | 'Equity';
233
- /**
234
- * i18n key for localized display name
235
- */
236
- i18nKey: string;
237
233
  /**
238
234
  * Short localized display name
239
235
  */
@@ -266,10 +262,6 @@ type AccountStandardListResponseDto = {
266
262
  region: string;
267
263
  };
268
264
  type TemplateMetadataDto = {
269
- /**
270
- * Whether this path can be extended
271
- */
272
- extendable: boolean;
273
265
  /**
274
266
  * Root account type
275
267
  */
@@ -1688,6 +1680,104 @@ type UpdateCommodityDto = {
1688
1680
  [key: string]: unknown;
1689
1681
  };
1690
1682
  };
1683
+ type CreateBeanPriceDto = {
1684
+ /**
1685
+ * Currency being priced (e.g., USD, AAPL, BTC)
1686
+ */
1687
+ currency: string;
1688
+ /**
1689
+ * Quote currency (pricing currency, e.g., CNY, EUR)
1690
+ */
1691
+ quoteCurrency: string;
1692
+ /**
1693
+ * Price amount (MUST be >= 0 per Beancount spec, supports up to 15 decimal places). Zero allowed for conversion entries, negative strictly prohibited.
1694
+ */
1695
+ amount: number;
1696
+ /**
1697
+ * Price date (ISO 8601 format)
1698
+ */
1699
+ date: string;
1700
+ /**
1701
+ * Metadata (validated by Zod schema, max field lengths enforced)
1702
+ */
1703
+ metadata?: {
1704
+ [key: string]: unknown;
1705
+ };
1706
+ };
1707
+ type PriceResponseDto = {
1708
+ /**
1709
+ * Unique identifier
1710
+ */
1711
+ id: string;
1712
+ /**
1713
+ * User ID (owner of the price)
1714
+ */
1715
+ userId: string;
1716
+ /**
1717
+ * Currency being priced (e.g., USD, AAPL, BTC)
1718
+ */
1719
+ currency: string;
1720
+ /**
1721
+ * Quote currency (pricing currency, e.g., USD, CNY)
1722
+ */
1723
+ quoteCurrency: string;
1724
+ /**
1725
+ * Price amount (corresponds to Beancount Amount.number). Supports up to 15 decimal places.
1726
+ */
1727
+ amount: number;
1728
+ /**
1729
+ * Price date (ISO 8601 format). Represents the date this price was valid.
1730
+ */
1731
+ date: string;
1732
+ /**
1733
+ * Metadata (corresponds to Beancount meta field). Contains source, confidence, note, etc.
1734
+ */
1735
+ meta: {
1736
+ [key: string]: unknown;
1737
+ };
1738
+ /**
1739
+ * Creation timestamp
1740
+ */
1741
+ createdAt: string;
1742
+ /**
1743
+ * Last update timestamp
1744
+ */
1745
+ updatedAt: string;
1746
+ };
1747
+ type PriceListResponseDto = {
1748
+ /**
1749
+ * List of prices
1750
+ */
1751
+ items: Array<PriceResponseDto>;
1752
+ /**
1753
+ * Total number of prices
1754
+ */
1755
+ total: number;
1756
+ };
1757
+ type UpdateBeanPriceDto = {
1758
+ /**
1759
+ * Currency being priced
1760
+ */
1761
+ currency?: string;
1762
+ /**
1763
+ * Quote currency (pricing currency)
1764
+ */
1765
+ quoteCurrency?: string;
1766
+ /**
1767
+ * Price amount (MUST be >= 0 per Beancount spec)
1768
+ */
1769
+ amount?: number;
1770
+ /**
1771
+ * Price date (ISO 8601 format)
1772
+ */
1773
+ date?: string;
1774
+ /**
1775
+ * Metadata
1776
+ */
1777
+ metadata?: {
1778
+ [key: string]: unknown;
1779
+ };
1780
+ };
1691
1781
  type CreateRecurringRuleDto = {
1692
1782
  /**
1693
1783
  * Rule name (unique per user)
@@ -2821,6 +2911,150 @@ type UpdateBeanEventDto = {
2821
2911
  [key: string]: unknown;
2822
2912
  };
2823
2913
  };
2914
+ type OnboardingAccountDto = {
2915
+ /**
2916
+ * Account path (Assets/Liabilities only; format validated by the account service)
2917
+ */
2918
+ path: string;
2919
+ /**
2920
+ * ISO 4217 currency code (3 letters)
2921
+ */
2922
+ currency: string;
2923
+ /**
2924
+ * Opening balance as a non-negative Decimal string (e.g. "1000.00")
2925
+ */
2926
+ openingBalance?: string;
2927
+ /**
2928
+ * Platform ID to bind the account to (references Platform.id); omit for unbound
2929
+ */
2930
+ platformId?: string;
2931
+ };
2932
+ type OnboardingDto = {
2933
+ /**
2934
+ * Asset/Liability accounts to register with opening balances
2935
+ */
2936
+ accounts?: Array<OnboardingAccountDto>;
2937
+ /**
2938
+ * Skip asset registration; only bootstrap the core account set
2939
+ */
2940
+ skipAssetRegistration?: boolean;
2941
+ };
2942
+ type ActualBalanceDto = {
2943
+ /**
2944
+ * Actual balance amount as a decimal string (preserves precision for tolerance inference).
2945
+ */
2946
+ amount: string;
2947
+ /**
2948
+ * Currency code (ISO 4217 or commodity ticker).
2949
+ */
2950
+ ccy: string;
2951
+ };
2952
+ type ComputeReconciliationDto = {
2953
+ /**
2954
+ * BeanAccount id to reconcile.
2955
+ */
2956
+ accountId: string;
2957
+ /**
2958
+ * Assertion date (ISO 8601, e.g. "2026-07-24").
2959
+ */
2960
+ asOfDate: string;
2961
+ /**
2962
+ * Actual balance from the external statement.
2963
+ */
2964
+ actualBalance: ActualBalanceDto;
2965
+ };
2966
+ type ReconciliationComputeResultDto = {
2967
+ accountId: string;
2968
+ asOfDate: string;
2969
+ /**
2970
+ * System-computed book balance (decimal string).
2971
+ */
2972
+ bookBalance: string;
2973
+ /**
2974
+ * User-entered actual balance (decimal string).
2975
+ */
2976
+ actualBalance: string;
2977
+ currency: string;
2978
+ /**
2979
+ * Diff = book − actual (decimal string).
2980
+ */
2981
+ diff: string;
2982
+ /**
2983
+ * Applied tolerance (decimal string).
2984
+ */
2985
+ tolerance: string;
2986
+ /**
2987
+ * true when |diff| ≤ tolerance.
2988
+ */
2989
+ withinTolerance: boolean;
2990
+ /**
2991
+ * Suggested next action: assert when within tolerance, pad otherwise.
2992
+ */
2993
+ suggestedAction: 'assert' | 'pad';
2994
+ };
2995
+ /**
2996
+ * Suggested next action: assert when within tolerance, pad otherwise.
2997
+ */
2998
+ type suggestedAction = 'assert' | 'pad';
2999
+ type AssertReconciliationDto = {
3000
+ /**
3001
+ * BeanAccount id to reconcile.
3002
+ */
3003
+ accountId: string;
3004
+ /**
3005
+ * Assertion date (ISO 8601, e.g. "2026-07-24").
3006
+ */
3007
+ asOfDate: string;
3008
+ /**
3009
+ * Actual balance from the external statement.
3010
+ */
3011
+ actualBalance: ActualBalanceDto;
3012
+ /**
3013
+ * Optional explicit tolerance override. Omit to infer from amount precision (Beancount default).
3014
+ */
3015
+ tolerance?: string;
3016
+ };
3017
+ type ReconciliationRecordDto = {
3018
+ id: string;
3019
+ accountId: string;
3020
+ date: string;
3021
+ /**
3022
+ * Asserted (actual) amount.
3023
+ */
3024
+ amount: string;
3025
+ currency: string;
3026
+ tolerance?: string;
3027
+ /**
3028
+ * book − actual.
3029
+ */
3030
+ diffAmount?: string;
3031
+ diffCurrency?: string;
3032
+ createdAt: string;
3033
+ };
3034
+ type PadReconciliationDto = {
3035
+ /**
3036
+ * BeanAccount id to reconcile.
3037
+ */
3038
+ accountId: string;
3039
+ /**
3040
+ * Assertion date (ISO 8601, e.g. "2026-07-24").
3041
+ */
3042
+ asOfDate: string;
3043
+ /**
3044
+ * Actual balance from the external statement.
3045
+ */
3046
+ actualBalance: ActualBalanceDto;
3047
+ /**
3048
+ * Pad source account. Defaults to Equity:Opening-Balances (official Beancount convention).
3049
+ */
3050
+ sourceAccount?: string;
3051
+ };
3052
+ type PadResultDto = {
3053
+ /**
3054
+ * Created pad adjusting transaction id.
3055
+ */
3056
+ transactionId: string;
3057
+ };
2824
3058
  type FileImportDto = {
2825
3059
  /**
2826
3060
  * Bill file to import (CSV, PDF, OFX, etc.)
@@ -3065,95 +3299,35 @@ type UpdateImporterConfigDto = {
3065
3299
  */
3066
3300
  data?: UpdateConfigDataDto;
3067
3301
  };
3068
- type CreatePlatformDto = {
3302
+ type ProviderSyncConfigDto = {
3069
3303
  /**
3070
- * Platform name
3304
+ * Source account for the first posting
3071
3305
  */
3072
- name: string;
3306
+ sourceAccount: string;
3073
3307
  /**
3074
- * Platform canonical identifier (lowercase, kebab-case)
3308
+ * Default currency for transactions
3075
3309
  */
3076
- canonical: string;
3310
+ defaultCurrency: string;
3077
3311
  /**
3078
- * Platform aliases (multi-language names for lookup)
3312
+ * Default expense account for the second posting
3079
3313
  */
3080
- aliases: Array<string>;
3314
+ defaultExpenseAccount: string;
3081
3315
  /**
3082
- * Platform URL
3316
+ * Default income account for the second posting
3083
3317
  */
3084
- url: string;
3318
+ defaultIncomeAccount: string;
3085
3319
  /**
3086
- * Platform type
3320
+ * Filter pending transactions
3087
3321
  */
3088
- type: 'BANK' | 'BROKERAGE' | 'CRYPTO_EXCHANGE' | 'PAYMENT' | 'INVESTMENT' | 'INSURANCE' | 'OTHER';
3322
+ filterPending?: boolean;
3089
3323
  /**
3090
- * Platform logo URL
3324
+ * External account ID for per-batch providers (e.g. GoCardless). Overrides sourceAccount when an ExternalAccountLink mapping exists.
3091
3325
  */
3092
- logoUrl?: string;
3326
+ externalAccountId?: string;
3327
+ };
3328
+ type ProviderSyncDto = {
3093
3329
  /**
3094
- * Whether the platform is active
3095
- */
3096
- isActive?: boolean;
3097
- };
3098
- /**
3099
- * Platform type
3100
- */
3101
- type type3 = 'BANK' | 'BROKERAGE' | 'CRYPTO_EXCHANGE' | 'PAYMENT' | 'INVESTMENT' | 'INSURANCE' | 'OTHER';
3102
- type UpdatePlatformDto = {
3103
- /**
3104
- * Platform name
3105
- */
3106
- name?: string;
3107
- /**
3108
- * Platform canonical identifier (lowercase, kebab-case)
3109
- */
3110
- canonical?: string;
3111
- /**
3112
- * Platform aliases (multi-language names for lookup)
3113
- */
3114
- aliases?: Array<string>;
3115
- /**
3116
- * Platform URL
3117
- */
3118
- url?: string;
3119
- /**
3120
- * Platform type
3121
- */
3122
- type?: 'BANK' | 'BROKERAGE' | 'CRYPTO_EXCHANGE' | 'PAYMENT' | 'INVESTMENT' | 'INSURANCE' | 'OTHER';
3123
- /**
3124
- * Platform logo URL
3125
- */
3126
- logoUrl?: string;
3127
- /**
3128
- * Whether the platform is active
3129
- */
3130
- isActive?: boolean;
3131
- };
3132
- type ProviderSyncConfigDto = {
3133
- /**
3134
- * Source account for the first posting
3135
- */
3136
- sourceAccount: string;
3137
- /**
3138
- * Default currency for transactions
3139
- */
3140
- defaultCurrency: string;
3141
- /**
3142
- * Default expense account for the second posting
3143
- */
3144
- defaultExpenseAccount: string;
3145
- /**
3146
- * Default income account for the second posting
3147
- */
3148
- defaultIncomeAccount: string;
3149
- /**
3150
- * Filter pending transactions
3151
- */
3152
- filterPending?: boolean;
3153
- };
3154
- type ProviderSyncDto = {
3155
- /**
3156
- * Provider name (already in URL path, optional here for reference)
3330
+ * Provider name (already in URL path, optional here for reference)
3157
3331
  */
3158
3332
  provider?: string;
3159
3333
  /**
@@ -3201,6 +3375,41 @@ type SupportedProvidersResponseDto = {
3201
3375
  */
3202
3376
  providers: Array<string>;
3203
3377
  };
3378
+ type CreateExternalAccountLinkDto = {
3379
+ /**
3380
+ * Open Banking provider (whitelist)
3381
+ */
3382
+ provider: 'plaid' | 'teller' | 'truelayer' | 'gocardless' | 'simplefin' | 'yodlee' | 'beancount-direct' | 'parsed-bill';
3383
+ /**
3384
+ * External account ID from the provider
3385
+ */
3386
+ externalAccountId: string;
3387
+ /**
3388
+ * Target BeanAccount ID (must belong to the JWT user)
3389
+ */
3390
+ beanAccountId: string;
3391
+ };
3392
+ /**
3393
+ * Open Banking provider (whitelist)
3394
+ */
3395
+ type provider = 'plaid' | 'teller' | 'truelayer' | 'gocardless' | 'simplefin' | 'yodlee' | 'beancount-direct' | 'parsed-bill';
3396
+ type ExternalAccountLinkResponseDto = {
3397
+ id: string;
3398
+ provider: string;
3399
+ externalAccountId: string;
3400
+ beanAccountId: string;
3401
+ isActive: boolean;
3402
+ createdAt: string;
3403
+ updatedAt: string;
3404
+ };
3405
+ type ExternalAccountLinkListResponseDto = {
3406
+ items: Array<ExternalAccountLinkResponseDto>;
3407
+ total: number;
3408
+ /**
3409
+ * Filter by provider (query param)
3410
+ */
3411
+ provider?: string;
3412
+ };
3204
3413
  type ParserTelemetryReportDto = unknown;
3205
3414
  type UncoveredFormatMissDto = unknown;
3206
3415
  type ProcessNlpDto = {
@@ -3736,6 +3945,70 @@ type liabilitySubType = 'borrow' | 'repay';
3736
3945
  * Equity sub-type (only present when intent is "equity"). opening: account opening balance (Equity → Assets), adjustment: balance correction.
3737
3946
  */
3738
3947
  type equitySubType = 'opening' | 'adjustment';
3948
+ type CreatePlatformDto = {
3949
+ /**
3950
+ * Platform name
3951
+ */
3952
+ name: string;
3953
+ /**
3954
+ * Platform canonical identifier (lowercase, kebab-case)
3955
+ */
3956
+ canonical: string;
3957
+ /**
3958
+ * Platform aliases (multi-language names for lookup)
3959
+ */
3960
+ aliases: Array<string>;
3961
+ /**
3962
+ * Platform URL
3963
+ */
3964
+ url: string;
3965
+ /**
3966
+ * Platform type
3967
+ */
3968
+ type: 'BANK' | 'BROKERAGE' | 'CRYPTO_EXCHANGE' | 'PAYMENT' | 'INVESTMENT' | 'INSURANCE' | 'OTHER';
3969
+ /**
3970
+ * Platform logo URL
3971
+ */
3972
+ logoUrl?: string;
3973
+ /**
3974
+ * Whether the platform is active
3975
+ */
3976
+ isActive?: boolean;
3977
+ };
3978
+ /**
3979
+ * Platform type
3980
+ */
3981
+ type type3 = 'BANK' | 'BROKERAGE' | 'CRYPTO_EXCHANGE' | 'PAYMENT' | 'INVESTMENT' | 'INSURANCE' | 'OTHER';
3982
+ type UpdatePlatformDto = {
3983
+ /**
3984
+ * Platform name
3985
+ */
3986
+ name?: string;
3987
+ /**
3988
+ * Platform canonical identifier (lowercase, kebab-case)
3989
+ */
3990
+ canonical?: string;
3991
+ /**
3992
+ * Platform aliases (multi-language names for lookup)
3993
+ */
3994
+ aliases?: Array<string>;
3995
+ /**
3996
+ * Platform URL
3997
+ */
3998
+ url?: string;
3999
+ /**
4000
+ * Platform type
4001
+ */
4002
+ type?: 'BANK' | 'BROKERAGE' | 'CRYPTO_EXCHANGE' | 'PAYMENT' | 'INVESTMENT' | 'INSURANCE' | 'OTHER';
4003
+ /**
4004
+ * Platform logo URL
4005
+ */
4006
+ logoUrl?: string;
4007
+ /**
4008
+ * Whether the platform is active
4009
+ */
4010
+ isActive?: boolean;
4011
+ };
3739
4012
  type NetWorthByCurrencyDto = {
3740
4013
  /**
3741
4014
  * Net worth by currency
@@ -4377,104 +4650,6 @@ type HoldingPnlResponseDto = {
4377
4650
  * Realized-P&L lot-matching method (FIFO or average). Unrealized cost basis remains average regardless of this value (#473).
4378
4651
  */
4379
4652
  type method = 'average' | 'FIFO';
4380
- type CreateBeanPriceDto = {
4381
- /**
4382
- * Currency being priced (e.g., USD, AAPL, BTC)
4383
- */
4384
- currency: string;
4385
- /**
4386
- * Quote currency (pricing currency, e.g., CNY, EUR)
4387
- */
4388
- quoteCurrency: string;
4389
- /**
4390
- * Price amount (MUST be >= 0 per Beancount spec, supports up to 15 decimal places). Zero allowed for conversion entries, negative strictly prohibited.
4391
- */
4392
- amount: number;
4393
- /**
4394
- * Price date (ISO 8601 format)
4395
- */
4396
- date: string;
4397
- /**
4398
- * Metadata (validated by Zod schema, max field lengths enforced)
4399
- */
4400
- metadata?: {
4401
- [key: string]: unknown;
4402
- };
4403
- };
4404
- type PriceResponseDto = {
4405
- /**
4406
- * Unique identifier
4407
- */
4408
- id: string;
4409
- /**
4410
- * User ID (owner of the price)
4411
- */
4412
- userId: string;
4413
- /**
4414
- * Currency being priced (e.g., USD, AAPL, BTC)
4415
- */
4416
- currency: string;
4417
- /**
4418
- * Quote currency (pricing currency, e.g., USD, CNY)
4419
- */
4420
- quoteCurrency: string;
4421
- /**
4422
- * Price amount (corresponds to Beancount Amount.number). Supports up to 15 decimal places.
4423
- */
4424
- amount: number;
4425
- /**
4426
- * Price date (ISO 8601 format). Represents the date this price was valid.
4427
- */
4428
- date: string;
4429
- /**
4430
- * Metadata (corresponds to Beancount meta field). Contains source, confidence, note, etc.
4431
- */
4432
- meta: {
4433
- [key: string]: unknown;
4434
- };
4435
- /**
4436
- * Creation timestamp
4437
- */
4438
- createdAt: string;
4439
- /**
4440
- * Last update timestamp
4441
- */
4442
- updatedAt: string;
4443
- };
4444
- type PriceListResponseDto = {
4445
- /**
4446
- * List of prices
4447
- */
4448
- items: Array<PriceResponseDto>;
4449
- /**
4450
- * Total number of prices
4451
- */
4452
- total: number;
4453
- };
4454
- type UpdateBeanPriceDto = {
4455
- /**
4456
- * Currency being priced
4457
- */
4458
- currency?: string;
4459
- /**
4460
- * Quote currency (pricing currency)
4461
- */
4462
- quoteCurrency?: string;
4463
- /**
4464
- * Price amount (MUST be >= 0 per Beancount spec)
4465
- */
4466
- amount?: number;
4467
- /**
4468
- * Price date (ISO 8601 format)
4469
- */
4470
- date?: string;
4471
- /**
4472
- * Metadata
4473
- */
4474
- metadata?: {
4475
- [key: string]: unknown;
4476
- };
4477
- };
4478
4653
  type CurrencyBalanceDto = {
4479
4654
  /**
4480
4655
  * ISO 4217 currency code
@@ -4669,7 +4844,7 @@ type AccountControllerFindAllData = {
4669
4844
  */
4670
4845
  region: 'cn' | 'us' | 'de' | 'gb';
4671
4846
  /**
4672
- * Search term for path or i18nKey
4847
+ * Search term for account path
4673
4848
  */
4674
4849
  search?: string;
4675
4850
  /**
@@ -4740,6 +4915,18 @@ type AccountControllerReopenData = {
4740
4915
  requestBody: ReopenAccountDto;
4741
4916
  };
4742
4917
  type AccountControllerReopenResponse = AccountResponseDto;
4918
+ type AccountControllerAddOpeningBalanceData = {
4919
+ /**
4920
+ * Account UUID
4921
+ */
4922
+ id: string;
4923
+ /**
4924
+ * Region code for tenant context
4925
+ */
4926
+ region: 'cn' | 'us' | 'de' | 'gb';
4927
+ requestBody: CreateOpeningBalanceDto;
4928
+ };
4929
+ type AccountControllerAddOpeningBalanceResponse = OpeningBalanceResultDto;
4743
4930
  type AccountStandardsControllerGetTemplatesData = {
4744
4931
  /**
4745
4932
  * Region code (cn, us, de)
@@ -4901,7 +5088,7 @@ type TransactionControllerDeleteData = {
4901
5088
  type TransactionControllerDeleteResponse = void;
4902
5089
  type BalanceControllerGetBalanceData = {
4903
5090
  /**
4904
- * Account name (e.g., "Assets:Bank:Checking")
5091
+ * Account name (e.g., "Assets:Checking")
4905
5092
  */
4906
5093
  account: string;
4907
5094
  /**
@@ -5213,16 +5400,101 @@ type CommodityControllerBulkCreateData = {
5213
5400
  region: 'cn' | 'us' | 'de' | 'gb';
5214
5401
  };
5215
5402
  type CommodityControllerBulkCreateResponse = Array<CommodityResponseDto>;
5216
- type RecurringRuleControllerCreateData = {
5403
+ type PriceControllerCreateData = {
5217
5404
  /**
5218
5405
  * Region code for tenant context
5219
5406
  */
5220
5407
  region: 'cn' | 'us' | 'de' | 'gb';
5221
- requestBody: CreateRecurringRuleDto;
5408
+ requestBody: CreateBeanPriceDto;
5222
5409
  };
5223
- type RecurringRuleControllerCreateResponse = RecurringRuleResponseDto;
5224
- type RecurringRuleControllerFindAllData = {
5225
- /**
5410
+ type PriceControllerCreateResponse = PriceResponseDto;
5411
+ type PriceControllerFindAllData = {
5412
+ /**
5413
+ * Filter by currency (e.g., BTC, AAPL, USD)
5414
+ */
5415
+ currency?: string;
5416
+ /**
5417
+ * Filter prices from this date (ISO 8601 format)
5418
+ */
5419
+ dateFrom?: string;
5420
+ /**
5421
+ * Filter prices to this date (ISO 8601 format)
5422
+ */
5423
+ dateTo?: string;
5424
+ /**
5425
+ * Number of items per page (default: 20, max: 100)
5426
+ */
5427
+ limit?: number;
5428
+ /**
5429
+ * Page number for pagination (default: 1)
5430
+ */
5431
+ page?: number;
5432
+ /**
5433
+ * Filter by quote currency (pricing currency, e.g., USD, CNY)
5434
+ */
5435
+ quoteCurrency?: string;
5436
+ /**
5437
+ * Region code for tenant context
5438
+ */
5439
+ region: 'cn' | 'us' | 'de' | 'gb';
5440
+ /**
5441
+ * Search term for currency or quoteCurrency (case-insensitive partial match)
5442
+ */
5443
+ search?: string;
5444
+ };
5445
+ type PriceControllerFindAllResponse = PriceListResponseDto;
5446
+ type PriceControllerFindOneData = {
5447
+ /**
5448
+ * Price ID
5449
+ */
5450
+ id: string;
5451
+ /**
5452
+ * Region code for tenant context
5453
+ */
5454
+ region: 'cn' | 'us' | 'de' | 'gb';
5455
+ };
5456
+ type PriceControllerFindOneResponse = PriceResponseDto;
5457
+ type PriceControllerUpdateData = {
5458
+ /**
5459
+ * Price ID
5460
+ */
5461
+ id: string;
5462
+ /**
5463
+ * Region code for tenant context
5464
+ */
5465
+ region: 'cn' | 'us' | 'de' | 'gb';
5466
+ requestBody: UpdateBeanPriceDto;
5467
+ };
5468
+ type PriceControllerUpdateResponse = PriceResponseDto;
5469
+ type PriceControllerDeleteData = {
5470
+ /**
5471
+ * Price ID
5472
+ */
5473
+ id: string;
5474
+ /**
5475
+ * Region code for tenant context
5476
+ */
5477
+ region: 'cn' | 'us' | 'de' | 'gb';
5478
+ };
5479
+ type PriceControllerDeleteResponse = void;
5480
+ type PriceControllerBulkCreateData = {
5481
+ /**
5482
+ * Region code for tenant context
5483
+ */
5484
+ region: 'cn' | 'us' | 'de' | 'gb';
5485
+ requestBody: Array<string>;
5486
+ };
5487
+ type PriceControllerBulkCreateResponse = Array<PriceResponseDto>;
5488
+ type RecurringRuleControllerCreateData = {
5489
+ /**
5490
+ * Region code for tenant context
5491
+ */
5492
+ region: 'cn' | 'us' | 'de' | 'gb';
5493
+ requestBody: CreateRecurringRuleDto;
5494
+ };
5495
+ type RecurringRuleControllerCreateResponse = RecurringRuleResponseDto;
5496
+ type RecurringRuleControllerFindAllData = {
5497
+ /**
5226
5498
  * Filter by frequency (WEEKLY, MONTHLY, etc.)
5227
5499
  */
5228
5500
  frequency?: string;
@@ -5676,6 +5948,49 @@ type EventControllerGetSliceData = {
5676
5948
  region: 'cn' | 'us' | 'de' | 'gb';
5677
5949
  };
5678
5950
  type EventControllerGetSliceResponse = unknown;
5951
+ type OnboardingControllerBootstrapData = {
5952
+ /**
5953
+ * Region code for tenant context
5954
+ */
5955
+ region: 'cn' | 'us' | 'de' | 'gb';
5956
+ requestBody: OnboardingDto;
5957
+ };
5958
+ type OnboardingControllerBootstrapResponse = unknown;
5959
+ type ReconciliationControllerComputeData = {
5960
+ /**
5961
+ * Region code for tenant context (decorative for reconciliation)
5962
+ */
5963
+ region: 'cn' | 'us' | 'de' | 'gb';
5964
+ requestBody: ComputeReconciliationDto;
5965
+ };
5966
+ type ReconciliationControllerComputeResponse = ReconciliationComputeResultDto;
5967
+ type ReconciliationControllerAssertData = {
5968
+ /**
5969
+ * Region code for tenant context (decorative for reconciliation)
5970
+ */
5971
+ region: 'cn' | 'us' | 'de' | 'gb';
5972
+ requestBody: AssertReconciliationDto;
5973
+ };
5974
+ type ReconciliationControllerAssertResponse = ReconciliationRecordDto;
5975
+ type ReconciliationControllerPadData = {
5976
+ /**
5977
+ * Region code for tenant context (decorative for reconciliation)
5978
+ */
5979
+ region: 'cn' | 'us' | 'de' | 'gb';
5980
+ requestBody: PadReconciliationDto;
5981
+ };
5982
+ type ReconciliationControllerPadResponse = PadResultDto;
5983
+ type ReconciliationControllerHistoryData = {
5984
+ /**
5985
+ * BeanAccount id
5986
+ */
5987
+ accountId: string;
5988
+ /**
5989
+ * Region code for tenant context (decorative for reconciliation)
5990
+ */
5991
+ region: 'cn' | 'us' | 'de' | 'gb';
5992
+ };
5993
+ type ReconciliationControllerHistoryResponse = Array<ReconciliationRecordDto>;
5679
5994
  type ExportControllerExportBeancountResponse = unknown;
5680
5995
  type FileImportControllerImportFileData = {
5681
5996
  /**
@@ -5755,38 +6070,6 @@ type ImporterConfigControllerResetConfigData = {
5755
6070
  region: 'cn' | 'us' | 'de' | 'gb';
5756
6071
  };
5757
6072
  type ImporterConfigControllerResetConfigResponse = ImporterConfigDto;
5758
- type PlatformControllerFindAllResponse = unknown;
5759
- type PlatformControllerCreateData = {
5760
- requestBody: CreatePlatformDto;
5761
- };
5762
- type PlatformControllerCreateResponse = unknown;
5763
- type PlatformControllerGetPlatformListResponse = unknown;
5764
- type PlatformControllerMatchPlatformsData = {
5765
- /**
5766
- * Search query — Chinese name, English name, or abbreviation
5767
- */
5768
- q: string;
5769
- /**
5770
- * Region code for category override lookup
5771
- */
5772
- region?: string;
5773
- };
5774
- type PlatformControllerMatchPlatformsResponse = unknown;
5775
- type PlatformControllerUpdateData = {
5776
- /**
5777
- * Platform ID
5778
- */
5779
- id: string;
5780
- requestBody: UpdatePlatformDto;
5781
- };
5782
- type PlatformControllerUpdateResponse = unknown;
5783
- type PlatformControllerDeleteData = {
5784
- /**
5785
- * Platform ID
5786
- */
5787
- id: string;
5788
- };
5789
- type PlatformControllerDeleteResponse = void;
5790
6073
  type ProviderSyncControllerSyncData = {
5791
6074
  /**
5792
6075
  * Provider name
@@ -5817,6 +6100,38 @@ type ProviderSyncControllerIsProviderSupportedData = {
5817
6100
  region: 'cn' | 'us' | 'de' | 'gb';
5818
6101
  };
5819
6102
  type ProviderSyncControllerIsProviderSupportedResponse = unknown;
6103
+ type ExternalAccountLinkControllerCreateData = {
6104
+ /**
6105
+ * Region code for tenant context
6106
+ */
6107
+ region: 'cn' | 'us' | 'de' | 'gb';
6108
+ requestBody: CreateExternalAccountLinkDto;
6109
+ };
6110
+ type ExternalAccountLinkControllerCreateResponse = ExternalAccountLinkResponseDto;
6111
+ type ExternalAccountLinkControllerFindAllData = {
6112
+ provider: string;
6113
+ /**
6114
+ * Region code for tenant context
6115
+ */
6116
+ region: 'cn' | 'us' | 'de' | 'gb';
6117
+ };
6118
+ type ExternalAccountLinkControllerFindAllResponse = ExternalAccountLinkListResponseDto;
6119
+ type ExternalAccountLinkControllerFindOneData = {
6120
+ id: string;
6121
+ /**
6122
+ * Region code for tenant context
6123
+ */
6124
+ region: 'cn' | 'us' | 'de' | 'gb';
6125
+ };
6126
+ type ExternalAccountLinkControllerFindOneResponse = ExternalAccountLinkResponseDto;
6127
+ type ExternalAccountLinkControllerRemoveData = {
6128
+ id: string;
6129
+ /**
6130
+ * Region code for tenant context
6131
+ */
6132
+ region: 'cn' | 'us' | 'de' | 'gb';
6133
+ };
6134
+ type ExternalAccountLinkControllerRemoveResponse = void;
5820
6135
  type TelemetryControllerReportTelemetryData = {
5821
6136
  /**
5822
6137
  * Region code for tenant context
@@ -5877,6 +6192,38 @@ type NlpControllerGetSessionData = {
5877
6192
  sessionId?: string;
5878
6193
  };
5879
6194
  type NlpControllerGetSessionResponse = unknown;
6195
+ type PlatformControllerFindAllResponse = unknown;
6196
+ type PlatformControllerCreateData = {
6197
+ requestBody: CreatePlatformDto;
6198
+ };
6199
+ type PlatformControllerCreateResponse = unknown;
6200
+ type PlatformControllerGetPlatformListResponse = unknown;
6201
+ type PlatformControllerMatchPlatformsData = {
6202
+ /**
6203
+ * Search query — Chinese name, English name, or abbreviation
6204
+ */
6205
+ q: string;
6206
+ /**
6207
+ * Region code for category override lookup
6208
+ */
6209
+ region?: string;
6210
+ };
6211
+ type PlatformControllerMatchPlatformsResponse = unknown;
6212
+ type PlatformControllerUpdateData = {
6213
+ /**
6214
+ * Platform ID
6215
+ */
6216
+ id: string;
6217
+ requestBody: UpdatePlatformDto;
6218
+ };
6219
+ type PlatformControllerUpdateResponse = unknown;
6220
+ type PlatformControllerDeleteData = {
6221
+ /**
6222
+ * Platform ID
6223
+ */
6224
+ id: string;
6225
+ };
6226
+ type PlatformControllerDeleteResponse = void;
5880
6227
  type DashboardControllerGetNetWorthData = {
5881
6228
  /**
5882
6229
  * Date for balance calculation (ISO 8601 format)
@@ -5956,138 +6303,53 @@ type HoldingPnlControllerGetHoldingPnlData = {
5956
6303
  region: 'cn' | 'us' | 'de' | 'gb';
5957
6304
  };
5958
6305
  type HoldingPnlControllerGetHoldingPnlResponse = HoldingPnlResponseDto;
5959
- type PriceControllerCreateData = {
5960
- /**
5961
- * Region code for tenant context
5962
- */
5963
- region: 'cn' | 'us' | 'de' | 'gb';
5964
- requestBody: CreateBeanPriceDto;
5965
- };
5966
- type PriceControllerCreateResponse = PriceResponseDto;
5967
- type PriceControllerFindAllData = {
6306
+ type ReportingControllerGetPortfolioTrendsData = {
5968
6307
  /**
5969
- * Filter by currency (e.g., BTC, AAPL, USD)
6308
+ * Data granularity
5970
6309
  */
5971
- currency?: string;
6310
+ granularity?: 'day' | 'week' | 'month';
5972
6311
  /**
5973
- * Filter prices from this date (ISO 8601 format)
6312
+ * Time period
5974
6313
  */
5975
- dateFrom?: string;
6314
+ period?: '1m' | '3m' | '6m' | '1y';
5976
6315
  /**
5977
- * Filter prices to this date (ISO 8601 format)
6316
+ * Region code for tenant context
5978
6317
  */
5979
- dateTo?: string;
6318
+ region: 'cn' | 'us' | 'de' | 'gb';
6319
+ };
6320
+ type ReportingControllerGetPortfolioTrendsResponse = PortfolioTrendsResponseDto;
6321
+ type ReportingControllerGetCashFlowTrendsData = {
5980
6322
  /**
5981
- * Number of items per page (default: 20, max: 100)
6323
+ * Data granularity (accepted for API symmetry; v1 returns month buckets)
5982
6324
  */
5983
- limit?: number;
6325
+ granularity?: 'day' | 'week' | 'month';
5984
6326
  /**
5985
- * Page number for pagination (default: 1)
6327
+ * Time period
5986
6328
  */
5987
- page?: number;
6329
+ period?: '1m' | '3m' | '6m' | '1y';
5988
6330
  /**
5989
- * Filter by quote currency (pricing currency, e.g., USD, CNY)
6331
+ * Region code for tenant context
5990
6332
  */
5991
- quoteCurrency?: string;
6333
+ region: 'cn' | 'us' | 'de' | 'gb';
6334
+ };
6335
+ type ReportingControllerGetCashFlowTrendsResponse = CashFlowTrendsResponseDto;
6336
+ type ReportingControllerGenerateSnapshotData = {
5992
6337
  /**
5993
6338
  * Region code for tenant context
5994
6339
  */
5995
6340
  region: 'cn' | 'us' | 'de' | 'gb';
5996
6341
  /**
5997
- * Search term for currency or quoteCurrency (case-insensitive partial match)
6342
+ * Optional date (defaults to today)
5998
6343
  */
5999
- search?: string;
6344
+ requestBody: GenerateSnapshotBody;
6000
6345
  };
6001
- type PriceControllerFindAllResponse = PriceListResponseDto;
6002
- type PriceControllerFindOneData = {
6003
- /**
6004
- * Price ID
6005
- */
6006
- id: string;
6346
+ type ReportingControllerGenerateSnapshotResponse = GenerateSnapshotResponse;
6347
+ type ReportingControllerBackfillSnapshotsData = {
6007
6348
  /**
6008
6349
  * Region code for tenant context
6009
6350
  */
6010
6351
  region: 'cn' | 'us' | 'de' | 'gb';
6011
- };
6012
- type PriceControllerFindOneResponse = PriceResponseDto;
6013
- type PriceControllerUpdateData = {
6014
- /**
6015
- * Price ID
6016
- */
6017
- id: string;
6018
- /**
6019
- * Region code for tenant context
6020
- */
6021
- region: 'cn' | 'us' | 'de' | 'gb';
6022
- requestBody: UpdateBeanPriceDto;
6023
- };
6024
- type PriceControllerUpdateResponse = PriceResponseDto;
6025
- type PriceControllerDeleteData = {
6026
- /**
6027
- * Price ID
6028
- */
6029
- id: string;
6030
- /**
6031
- * Region code for tenant context
6032
- */
6033
- region: 'cn' | 'us' | 'de' | 'gb';
6034
- };
6035
- type PriceControllerDeleteResponse = void;
6036
- type PriceControllerBulkCreateData = {
6037
- /**
6038
- * Region code for tenant context
6039
- */
6040
- region: 'cn' | 'us' | 'de' | 'gb';
6041
- requestBody: Array<string>;
6042
- };
6043
- type PriceControllerBulkCreateResponse = Array<PriceResponseDto>;
6044
- type ReportingControllerGetPortfolioTrendsData = {
6045
- /**
6046
- * Data granularity
6047
- */
6048
- granularity?: 'day' | 'week' | 'month';
6049
- /**
6050
- * Time period
6051
- */
6052
- period?: '1m' | '3m' | '6m' | '1y';
6053
- /**
6054
- * Region code for tenant context
6055
- */
6056
- region: 'cn' | 'us' | 'de' | 'gb';
6057
- };
6058
- type ReportingControllerGetPortfolioTrendsResponse = PortfolioTrendsResponseDto;
6059
- type ReportingControllerGetCashFlowTrendsData = {
6060
- /**
6061
- * Data granularity (accepted for API symmetry; v1 returns month buckets)
6062
- */
6063
- granularity?: 'day' | 'week' | 'month';
6064
- /**
6065
- * Time period
6066
- */
6067
- period?: '1m' | '3m' | '6m' | '1y';
6068
- /**
6069
- * Region code for tenant context
6070
- */
6071
- region: 'cn' | 'us' | 'de' | 'gb';
6072
- };
6073
- type ReportingControllerGetCashFlowTrendsResponse = CashFlowTrendsResponseDto;
6074
- type ReportingControllerGenerateSnapshotData = {
6075
- /**
6076
- * Region code for tenant context
6077
- */
6078
- region: 'cn' | 'us' | 'de' | 'gb';
6079
- /**
6080
- * Optional date (defaults to today)
6081
- */
6082
- requestBody: GenerateSnapshotBody;
6083
- };
6084
- type ReportingControllerGenerateSnapshotResponse = GenerateSnapshotResponse;
6085
- type ReportingControllerBackfillSnapshotsData = {
6086
- /**
6087
- * Region code for tenant context
6088
- */
6089
- region: 'cn' | 'us' | 'de' | 'gb';
6090
- requestBody: BackfillSnapshotsBody;
6352
+ requestBody: BackfillSnapshotsBody;
6091
6353
  };
6092
6354
  type ReportingControllerBackfillSnapshotsResponse = BackfillSnapshotsResponse;
6093
6355
  type ApiKeysControllerCreateApiKeyResponse = unknown;
@@ -6229,6 +6491,25 @@ type $OpenApiTs = {
6229
6491
  };
6230
6492
  };
6231
6493
  };
6494
+ '/api/v1/{region}/bean/accounts/{id}/opening-balance': {
6495
+ post: {
6496
+ req: AccountControllerAddOpeningBalanceData;
6497
+ res: {
6498
+ /**
6499
+ * Opening-balance transaction created
6500
+ */
6501
+ 201: OpeningBalanceResultDto;
6502
+ /**
6503
+ * Account not found
6504
+ */
6505
+ 404: unknown;
6506
+ /**
6507
+ * An opening balance already exists for this account
6508
+ */
6509
+ 409: unknown;
6510
+ };
6511
+ };
6512
+ };
6232
6513
  '/api/v1/{region}/bean/account-standards': {
6233
6514
  get: {
6234
6515
  req: AccountStandardsControllerGetTemplatesData;
@@ -6837,6 +7118,90 @@ type $OpenApiTs = {
6837
7118
  };
6838
7119
  };
6839
7120
  };
7121
+ '/api/v1/{region}/bean/prices': {
7122
+ post: {
7123
+ req: PriceControllerCreateData;
7124
+ res: {
7125
+ /**
7126
+ * Price created successfully
7127
+ */
7128
+ 201: PriceResponseDto;
7129
+ /**
7130
+ * Currency or quoteCurrency commodity not found
7131
+ */
7132
+ 404: unknown;
7133
+ /**
7134
+ * Price already exists for this currency pair and date
7135
+ */
7136
+ 409: unknown;
7137
+ };
7138
+ };
7139
+ get: {
7140
+ req: PriceControllerFindAllData;
7141
+ res: {
7142
+ /**
7143
+ * Prices retrieved successfully
7144
+ */
7145
+ 200: PriceListResponseDto;
7146
+ };
7147
+ };
7148
+ };
7149
+ '/api/v1/{region}/bean/prices/{id}': {
7150
+ get: {
7151
+ req: PriceControllerFindOneData;
7152
+ res: {
7153
+ /**
7154
+ * Price retrieved successfully
7155
+ */
7156
+ 200: PriceResponseDto;
7157
+ /**
7158
+ * Price not found
7159
+ */
7160
+ 404: unknown;
7161
+ };
7162
+ };
7163
+ put: {
7164
+ req: PriceControllerUpdateData;
7165
+ res: {
7166
+ /**
7167
+ * Price updated successfully
7168
+ */
7169
+ 200: PriceResponseDto;
7170
+ /**
7171
+ * Price not found
7172
+ */
7173
+ 404: unknown;
7174
+ /**
7175
+ * Updated price conflicts with existing price
7176
+ */
7177
+ 409: unknown;
7178
+ };
7179
+ };
7180
+ delete: {
7181
+ req: PriceControllerDeleteData;
7182
+ res: {
7183
+ /**
7184
+ * Price deleted successfully
7185
+ */
7186
+ 204: void;
7187
+ /**
7188
+ * Price not found
7189
+ */
7190
+ 404: unknown;
7191
+ };
7192
+ };
7193
+ };
7194
+ '/api/v1/{region}/bean/prices/bulk': {
7195
+ post: {
7196
+ req: PriceControllerBulkCreateData;
7197
+ res: {
7198
+ /**
7199
+ * Prices created successfully
7200
+ */
7201
+ 201: Array<PriceResponseDto>;
7202
+ };
7203
+ };
7204
+ };
6840
7205
  '/api/v1/{region}/bean/recurring-rules': {
6841
7206
  post: {
6842
7207
  req: RecurringRuleControllerCreateData;
@@ -7577,6 +7942,85 @@ type $OpenApiTs = {
7577
7942
  };
7578
7943
  };
7579
7944
  };
7945
+ '/api/v1/{region}/bean/onboarding': {
7946
+ post: {
7947
+ req: OnboardingControllerBootstrapData;
7948
+ res: {
7949
+ /**
7950
+ * Onboarding bootstrap result.
7951
+ */
7952
+ 201: unknown;
7953
+ /**
7954
+ * Invalid region/account path/duplicate paths.
7955
+ */
7956
+ 422: unknown;
7957
+ };
7958
+ };
7959
+ };
7960
+ '/api/v1/{region}/bean/reconciliations': {
7961
+ post: {
7962
+ req: ReconciliationControllerComputeData;
7963
+ res: {
7964
+ /**
7965
+ * Reconciliation preview
7966
+ */
7967
+ 200: ReconciliationComputeResultDto;
7968
+ /**
7969
+ * Account not found
7970
+ */
7971
+ 404: unknown;
7972
+ };
7973
+ };
7974
+ };
7975
+ '/api/v1/{region}/bean/reconciliations/assert': {
7976
+ post: {
7977
+ req: ReconciliationControllerAssertData;
7978
+ res: {
7979
+ /**
7980
+ * Balance assertion recorded
7981
+ */
7982
+ 201: ReconciliationRecordDto;
7983
+ /**
7984
+ * Account not found
7985
+ */
7986
+ 404: unknown;
7987
+ };
7988
+ };
7989
+ };
7990
+ '/api/v1/{region}/bean/reconciliations/pad': {
7991
+ post: {
7992
+ req: ReconciliationControllerPadData;
7993
+ res: {
7994
+ /**
7995
+ * Pad adjusting entry generated
7996
+ */
7997
+ 201: PadResultDto;
7998
+ /**
7999
+ * Book already within tolerance — no pad needed
8000
+ */
8001
+ 400: unknown;
8002
+ /**
8003
+ * Account not found
8004
+ */
8005
+ 404: unknown;
8006
+ };
8007
+ };
8008
+ };
8009
+ '/api/v1/{region}/bean/accounts/{accountId}/reconciliations': {
8010
+ get: {
8011
+ req: ReconciliationControllerHistoryData;
8012
+ res: {
8013
+ /**
8014
+ * Reconciliation history
8015
+ */
8016
+ 200: Array<ReconciliationRecordDto>;
8017
+ /**
8018
+ * Account not found
8019
+ */
8020
+ 404: unknown;
8021
+ };
8022
+ };
8023
+ };
7580
8024
  '/api/v1/{region}/bean/export/beancount': {
7581
8025
  get: {
7582
8026
  res: {
@@ -7727,128 +8171,104 @@ type $OpenApiTs = {
7727
8171
  };
7728
8172
  };
7729
8173
  };
7730
- '/api/v1/bean/platforms': {
7731
- get: {
8174
+ '/api/v1/{region}/bean/import/provider/{providerName}/sync': {
8175
+ post: {
8176
+ req: ProviderSyncControllerSyncData;
7732
8177
  res: {
7733
8178
  /**
7734
- * List of platforms with binding and account counts
8179
+ * Sync completed successfully
7735
8180
  */
7736
- 200: unknown;
7737
- };
7738
- };
7739
- post: {
7740
- req: PlatformControllerCreateData;
7741
- res: {
8181
+ 200: ProviderSyncResponseDto;
7742
8182
  /**
7743
- * Platform created successfully
8183
+ * Invalid request data
7744
8184
  */
7745
- 201: unknown;
8185
+ 400: unknown;
7746
8186
  /**
7747
- * Platform already exists
8187
+ * Missing or invalid authentication
7748
8188
  */
7749
- 409: unknown;
7750
- };
7751
- };
7752
- };
7753
- '/api/v1/bean/platforms/list': {
7754
- get: {
7755
- res: {
8189
+ 401: unknown;
7756
8190
  /**
7757
- * List of platforms with user binding status
8191
+ * Provider not supported
7758
8192
  */
7759
- 200: unknown;
8193
+ 404: unknown;
7760
8194
  };
7761
8195
  };
7762
8196
  };
7763
- '/api/v1/bean/platforms/match': {
8197
+ '/api/v1/{region}/bean/import/provider/supported': {
7764
8198
  get: {
7765
- req: PlatformControllerMatchPlatformsData;
8199
+ req: ProviderSyncControllerGetSupportedProvidersData;
7766
8200
  res: {
7767
8201
  /**
7768
- * List of matching platforms with suggested segment names
8202
+ * List of supported providers
7769
8203
  */
7770
- 200: unknown;
8204
+ 200: SupportedProvidersResponseDto;
8205
+ /**
8206
+ * Missing or invalid authentication
8207
+ */
8208
+ 401: unknown;
7771
8209
  };
7772
8210
  };
7773
8211
  };
7774
- '/api/v1/bean/platforms/{id}': {
7775
- put: {
7776
- req: PlatformControllerUpdateData;
8212
+ '/api/v1/{region}/bean/import/provider/{providerName}/supported': {
8213
+ get: {
8214
+ req: ProviderSyncControllerIsProviderSupportedData;
7777
8215
  res: {
7778
8216
  /**
7779
- * Platform updated successfully
8217
+ * Provider support status
7780
8218
  */
7781
8219
  200: unknown;
7782
8220
  /**
7783
- * Platform not found
8221
+ * Missing or invalid authentication
7784
8222
  */
7785
- 404: unknown;
8223
+ 401: unknown;
7786
8224
  };
7787
8225
  };
7788
- delete: {
7789
- req: PlatformControllerDeleteData;
8226
+ };
8227
+ '/api/v1/{region}/bean/external-account-links': {
8228
+ post: {
8229
+ req: ExternalAccountLinkControllerCreateData;
7790
8230
  res: {
7791
8231
  /**
7792
- * Platform deleted successfully
8232
+ * Link created.
7793
8233
  */
7794
- 204: void;
8234
+ 201: ExternalAccountLinkResponseDto;
7795
8235
  /**
7796
- * Platform not found
8236
+ * beanAccountId not owned, or an active link already exists.
7797
8237
  */
7798
- 404: unknown;
8238
+ 422: unknown;
7799
8239
  };
7800
8240
  };
7801
- };
7802
- '/api/v1/{region}/bean/import/provider/{providerName}/sync': {
7803
- post: {
7804
- req: ProviderSyncControllerSyncData;
8241
+ get: {
8242
+ req: ExternalAccountLinkControllerFindAllData;
7805
8243
  res: {
7806
8244
  /**
7807
- * Sync completed successfully
7808
- */
7809
- 200: ProviderSyncResponseDto;
7810
- /**
7811
- * Invalid request data
7812
- */
7813
- 400: unknown;
7814
- /**
7815
- * Missing or invalid authentication
7816
- */
7817
- 401: unknown;
7818
- /**
7819
- * Provider not supported
8245
+ * Links retrieved.
7820
8246
  */
7821
- 404: unknown;
8247
+ 200: ExternalAccountLinkListResponseDto;
7822
8248
  };
7823
8249
  };
7824
8250
  };
7825
- '/api/v1/{region}/bean/import/provider/supported': {
8251
+ '/api/v1/{region}/bean/external-account-links/{id}': {
7826
8252
  get: {
7827
- req: ProviderSyncControllerGetSupportedProvidersData;
8253
+ req: ExternalAccountLinkControllerFindOneData;
7828
8254
  res: {
7829
8255
  /**
7830
- * List of supported providers
8256
+ * Link retrieved.
7831
8257
  */
7832
- 200: SupportedProvidersResponseDto;
8258
+ 200: ExternalAccountLinkResponseDto;
7833
8259
  /**
7834
- * Missing or invalid authentication
8260
+ * Link not found or not owned by the user.
7835
8261
  */
7836
- 401: unknown;
8262
+ 422: unknown;
7837
8263
  };
7838
8264
  };
7839
- };
7840
- '/api/v1/{region}/bean/import/provider/{providerName}/supported': {
7841
- get: {
7842
- req: ProviderSyncControllerIsProviderSupportedData;
8265
+ delete: {
8266
+ req: ExternalAccountLinkControllerRemoveData;
7843
8267
  res: {
7844
8268
  /**
7845
- * Provider support status
8269
+ * Link soft-deleted; historical transactions are unaffected.
7846
8270
  */
7847
- 200: unknown;
7848
- /**
7849
- * Missing or invalid authentication
7850
- */
7851
- 401: unknown;
8271
+ 204: void;
7852
8272
  };
7853
8273
  };
7854
8274
  };
@@ -7940,6 +8360,78 @@ type $OpenApiTs = {
7940
8360
  };
7941
8361
  };
7942
8362
  };
8363
+ '/api/v1/bean/platforms': {
8364
+ get: {
8365
+ res: {
8366
+ /**
8367
+ * List of platforms with binding and account counts
8368
+ */
8369
+ 200: unknown;
8370
+ };
8371
+ };
8372
+ post: {
8373
+ req: PlatformControllerCreateData;
8374
+ res: {
8375
+ /**
8376
+ * Platform created successfully
8377
+ */
8378
+ 201: unknown;
8379
+ /**
8380
+ * Platform already exists
8381
+ */
8382
+ 409: unknown;
8383
+ };
8384
+ };
8385
+ };
8386
+ '/api/v1/bean/platforms/list': {
8387
+ get: {
8388
+ res: {
8389
+ /**
8390
+ * List of platforms with user binding status
8391
+ */
8392
+ 200: unknown;
8393
+ };
8394
+ };
8395
+ };
8396
+ '/api/v1/bean/platforms/match': {
8397
+ get: {
8398
+ req: PlatformControllerMatchPlatformsData;
8399
+ res: {
8400
+ /**
8401
+ * List of matching platforms with suggested segment names
8402
+ */
8403
+ 200: unknown;
8404
+ };
8405
+ };
8406
+ };
8407
+ '/api/v1/bean/platforms/{id}': {
8408
+ put: {
8409
+ req: PlatformControllerUpdateData;
8410
+ res: {
8411
+ /**
8412
+ * Platform updated successfully
8413
+ */
8414
+ 200: unknown;
8415
+ /**
8416
+ * Platform not found
8417
+ */
8418
+ 404: unknown;
8419
+ };
8420
+ };
8421
+ delete: {
8422
+ req: PlatformControllerDeleteData;
8423
+ res: {
8424
+ /**
8425
+ * Platform deleted successfully
8426
+ */
8427
+ 204: void;
8428
+ /**
8429
+ * Platform not found
8430
+ */
8431
+ 404: unknown;
8432
+ };
8433
+ };
8434
+ };
7943
8435
  '/api/v1/{region}/dashboard/net-worth': {
7944
8436
  get: {
7945
8437
  req: DashboardControllerGetNetWorthData;
@@ -8027,90 +8519,6 @@ type $OpenApiTs = {
8027
8519
  };
8028
8520
  };
8029
8521
  };
8030
- '/api/v1/{region}/bean/prices': {
8031
- post: {
8032
- req: PriceControllerCreateData;
8033
- res: {
8034
- /**
8035
- * Price created successfully
8036
- */
8037
- 201: PriceResponseDto;
8038
- /**
8039
- * Currency or quoteCurrency commodity not found
8040
- */
8041
- 404: unknown;
8042
- /**
8043
- * Price already exists for this currency pair and date
8044
- */
8045
- 409: unknown;
8046
- };
8047
- };
8048
- get: {
8049
- req: PriceControllerFindAllData;
8050
- res: {
8051
- /**
8052
- * Prices retrieved successfully
8053
- */
8054
- 200: PriceListResponseDto;
8055
- };
8056
- };
8057
- };
8058
- '/api/v1/{region}/bean/prices/{id}': {
8059
- get: {
8060
- req: PriceControllerFindOneData;
8061
- res: {
8062
- /**
8063
- * Price retrieved successfully
8064
- */
8065
- 200: PriceResponseDto;
8066
- /**
8067
- * Price not found
8068
- */
8069
- 404: unknown;
8070
- };
8071
- };
8072
- put: {
8073
- req: PriceControllerUpdateData;
8074
- res: {
8075
- /**
8076
- * Price updated successfully
8077
- */
8078
- 200: PriceResponseDto;
8079
- /**
8080
- * Price not found
8081
- */
8082
- 404: unknown;
8083
- /**
8084
- * Updated price conflicts with existing price
8085
- */
8086
- 409: unknown;
8087
- };
8088
- };
8089
- delete: {
8090
- req: PriceControllerDeleteData;
8091
- res: {
8092
- /**
8093
- * Price deleted successfully
8094
- */
8095
- 204: void;
8096
- /**
8097
- * Price not found
8098
- */
8099
- 404: unknown;
8100
- };
8101
- };
8102
- };
8103
- '/api/v1/{region}/bean/prices/bulk': {
8104
- post: {
8105
- req: PriceControllerBulkCreateData;
8106
- res: {
8107
- /**
8108
- * Prices created successfully
8109
- */
8110
- 201: Array<PriceResponseDto>;
8111
- };
8112
- };
8113
- };
8114
8522
  '/api/v1/{region}/reporting/portfolio/trends': {
8115
8523
  get: {
8116
8524
  req: ReportingControllerGetPortfolioTrendsData;
@@ -8372,7 +8780,7 @@ declare class BeanAccountsService {
8372
8780
  * @param data.type Filter by account type
8373
8781
  * @param data.status Filter by status
8374
8782
  * @param data.isCustom Filter by custom (user-created) accounts only
8375
- * @param data.search Search term for path or i18nKey
8783
+ * @param data.search Search term for account path
8376
8784
  * @param data.limit Maximum number of results
8377
8785
  * @param data.offset Number of results to skip
8378
8786
  * @returns AccountListResponseDto Accounts retrieved successfully
@@ -8432,6 +8840,17 @@ declare class BeanAccountsService {
8432
8840
  * @throws ApiError
8433
8841
  */
8434
8842
  static accountControllerReopen(data: AccountControllerReopenData): CancelablePromise<AccountControllerReopenResponse>;
8843
+ /**
8844
+ * Post an opening-balance transaction
8845
+ * Posts a double-entry opening-balance transaction against Equity:Opening-Balances for an existing Assets/Liabilities account. At most one active opening balance per account.
8846
+ * @param data The data for the request.
8847
+ * @param data.id Account UUID
8848
+ * @param data.region Region code for tenant context
8849
+ * @param data.requestBody
8850
+ * @returns OpeningBalanceResultDto Opening-balance transaction created
8851
+ * @throws ApiError
8852
+ */
8853
+ static accountControllerAddOpeningBalance(data: AccountControllerAddOpeningBalanceData): CancelablePromise<AccountControllerAddOpeningBalanceResponse>;
8435
8854
  }
8436
8855
  declare class BeanTransactionsService {
8437
8856
  /**
@@ -8533,7 +8952,7 @@ declare class BeanBalancesService {
8533
8952
  * Query account balance
8534
8953
  * Calculate account balance at a specific date for a single currency
8535
8954
  * @param data The data for the request.
8536
- * @param data.account Account name (e.g., "Assets:Bank:Checking")
8955
+ * @param data.account Account name (e.g., "Assets:Checking")
8537
8956
  * @param data.region Region code for tenant context
8538
8957
  * @param data.date Date to calculate balance at (ISO 8601 format)
8539
8958
  * @param data.currency Currency to query (e.g., "USD", "CNY")
@@ -8763,4 +9182,4 @@ type OpenAPIConfig = {
8763
9182
  };
8764
9183
  declare const OpenAPI: OpenAPIConfig;
8765
9184
 
8766
- export { type $OpenApiTs, 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 AmountDto, type AmountRangeDto, type AnonymousLoginDto, type ApiKeysControllerCreateApiKeyResponse, type ApiProblemResponseDto, 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 ConfirmMatchDto, type ConvertedCashFlowDto, type ConvertedNetWorthDto, type CorrectTransactionDto, type CostDetailDto, type CostSpecDto, type CreateAccountDto, type CreateBeanEventDto, type CreateBeanPriceDto, type CreateCommodityDto, 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 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, OpenAPI, type OpenAPIConfig, 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 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 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 SupportedProvidersResponseDto, type TagSuggestionDto, type TagSuggestionsResponseDto, type TelemetryControllerGetCoverageMetricsData, type TelemetryControllerGetCoverageMetricsResponse, type TelemetryControllerReportCoverageMissData, type TelemetryControllerReportCoverageMissResponse, type TelemetryControllerReportTelemetryData, type TelemetryControllerReportTelemetryResponse, type TemplateMetadataDto, type TemplateMetadataResponseDto, type TestRuleDto, type TestRuleResponseDto, type TimeSeriesPointDto, type TransactionControllerCorrectData, type TransactionControllerCorrectResponse, type TransactionControllerCreateBatchData, type TransactionControllerCreateBatchResponse, type TransactionControllerCreateData, type TransactionControllerCreateResponse, type TransactionControllerDeleteData, type TransactionControllerDeleteResponse, type TransactionControllerGetDetailData, type TransactionControllerGetDetailResponse, type TransactionControllerListData, type TransactionControllerListResponse, type TransactionControllerSuggestTagsData, type TransactionControllerSuggestTagsResponse, type TransactionControllerUpdateData, type TransactionControllerUpdateResponse, type TransactionDetailDto, type TransactionListResponseDto, type TransactionListSummaryDto, type TransactionResponseDto, type TransactionRuleControllerBulkCreateData, type TransactionRuleControllerBulkCreateResponse, type TransactionRuleControllerCreateData, type TransactionRuleControllerCreateResponse, type TransactionRuleControllerDeleteData, type TransactionRuleControllerDeleteResponse, type TransactionRuleControllerExportData, type TransactionRuleControllerExportResponse, type TransactionRuleControllerGetDetailData, type TransactionRuleControllerGetDetailResponse, type TransactionRuleControllerGetStatisticsData, type TransactionRuleControllerGetStatisticsResponse, type TransactionRuleControllerListData, type TransactionRuleControllerListResponse, type TransactionRuleControllerTestData, type TransactionRuleControllerTestResponse, type TransactionRuleControllerUpdateData, type TransactionRuleControllerUpdateResponse, type TransactionRuleControllerValidateData, type TransactionRuleControllerValidateResponse, type TransactionRuleListResponseDto, type TransactionRuleResponseDto, type TransactionSummaryDto, type TrendSummaryDto, type UncoveredFormatMissDto, type UndoResultDto, type UpdateAccountDto, type UpdateBeanEventDto, type UpdateBeanPriceDto, type UpdateCommodityDto, type UpdateConfigDataDto, type UpdateImporterConfigDto, type UpdateMapperDefaultsDto, type UpdatePayeeDto, type UpdatePayeeProfileDto, type UpdatePlatformDto, type UpdatePropertyDto, type UpdateRecurringRuleDto, type UpdateTransactionDto, type UpdateTransactionRuleDto, type UpdateUserSettingDto, type UserControllerDeleteOwnUserData, type UserControllerDeleteOwnUserResponse, type UserControllerDeleteUserData, type UserControllerDeleteUserResponse, type UserControllerGetAllUserSettingsByPageData, type UserControllerGetAllUserSettingsByPageResponse, type UserControllerGetAssetLiabilitySummaryResponse, type UserControllerGetUserData, type UserControllerGetUserInfoData, type UserControllerGetUserInfoResponse, type UserControllerGetUserResponse, type UserControllerSignupUserData, type UserControllerSignupUserResponse, type UserControllerUpdateUserSettingData, type UserControllerUpdateUserSettingResponse, type ValidateRuleDto, type ValidateRuleResponseDto, type VersionedConfigDto, type action, type action2, type assetClass, type assetSubType, type bookingMethod, type branchType, type category, type chartToken, type colorScheme, type confidenceLevel, type conflictStrategy, type dataSource, type equitySubType, type flag, type flag2, type frequency, type importerId, type intent, type investmentAction, type learningSource, type liabilitySubType, type matchLogic, type method, type mode, type paymentSource, type period, type source, type source2, type source3, type status, type status2, type status3, type status4, type suggestedFrequency, type type, type type2, type type3, type type4, type value, type viewMode };
9185
+ 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 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 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 SupportedProvidersResponseDto, type TagSuggestionDto, type TagSuggestionsResponseDto, type TelemetryControllerGetCoverageMetricsData, type TelemetryControllerGetCoverageMetricsResponse, type TelemetryControllerReportCoverageMissData, type TelemetryControllerReportCoverageMissResponse, type TelemetryControllerReportTelemetryData, type TelemetryControllerReportTelemetryResponse, type TemplateMetadataDto, type TemplateMetadataResponseDto, type TestRuleDto, type TestRuleResponseDto, type TimeSeriesPointDto, type TransactionControllerCorrectData, type TransactionControllerCorrectResponse, type TransactionControllerCreateBatchData, type TransactionControllerCreateBatchResponse, type TransactionControllerCreateData, type TransactionControllerCreateResponse, type TransactionControllerDeleteData, type TransactionControllerDeleteResponse, type TransactionControllerGetDetailData, type TransactionControllerGetDetailResponse, type TransactionControllerListData, type TransactionControllerListResponse, type TransactionControllerSuggestTagsData, type TransactionControllerSuggestTagsResponse, type TransactionControllerUpdateData, type TransactionControllerUpdateResponse, type TransactionDetailDto, type TransactionListResponseDto, type TransactionListSummaryDto, type TransactionResponseDto, type TransactionRuleControllerBulkCreateData, type TransactionRuleControllerBulkCreateResponse, type TransactionRuleControllerCreateData, type TransactionRuleControllerCreateResponse, type TransactionRuleControllerDeleteData, type TransactionRuleControllerDeleteResponse, type TransactionRuleControllerExportData, type TransactionRuleControllerExportResponse, type TransactionRuleControllerGetDetailData, type TransactionRuleControllerGetDetailResponse, type TransactionRuleControllerGetStatisticsData, type TransactionRuleControllerGetStatisticsResponse, type TransactionRuleControllerListData, type TransactionRuleControllerListResponse, type TransactionRuleControllerTestData, type TransactionRuleControllerTestResponse, type TransactionRuleControllerUpdateData, type TransactionRuleControllerUpdateResponse, type TransactionRuleControllerValidateData, type TransactionRuleControllerValidateResponse, type TransactionRuleListResponseDto, type TransactionRuleResponseDto, type TransactionSummaryDto, type TrendSummaryDto, type UncoveredFormatMissDto, type UndoResultDto, type UpdateAccountDto, type UpdateBeanEventDto, type UpdateBeanPriceDto, type UpdateCommodityDto, type UpdateConfigDataDto, type UpdateImporterConfigDto, type UpdateMapperDefaultsDto, type UpdatePayeeDto, type UpdatePayeeProfileDto, type UpdatePlatformDto, type UpdatePropertyDto, type UpdateRecurringRuleDto, type UpdateTransactionDto, type UpdateTransactionRuleDto, type UpdateUserSettingDto, type UserControllerDeleteOwnUserData, type UserControllerDeleteOwnUserResponse, type UserControllerDeleteUserData, type UserControllerDeleteUserResponse, type UserControllerGetAllUserSettingsByPageData, type UserControllerGetAllUserSettingsByPageResponse, type UserControllerGetAssetLiabilitySummaryResponse, type UserControllerGetUserData, type UserControllerGetUserInfoData, type UserControllerGetUserInfoResponse, type UserControllerGetUserResponse, type UserControllerSignupUserData, type UserControllerSignupUserResponse, type UserControllerUpdateUserSettingData, type UserControllerUpdateUserSettingResponse, type ValidateRuleDto, type ValidateRuleResponseDto, type VersionedConfigDto, type action, type action2, type assetClass, type assetSubType, type bookingMethod, type branchType, type category, type chartToken, type colorScheme, type confidenceLevel, type conflictStrategy, type dataSource, type equitySubType, type flag, type flag2, type frequency, type importerId, type intent, type investmentAction, type learningSource, type liabilitySubType, type matchLogic, type method, type mode, type paymentSource, type period, type provider, 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 };