@firela/api-types 0.0.0-canary.8bf286b3 → 0.0.0-canary.8c76fd39

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
@@ -127,9 +127,7 @@ type AccountResponseDto = {
127
127
  /**
128
128
  * Platform ID (null if unbound)
129
129
  */
130
- platformId?: {
131
- [key: string]: unknown;
132
- };
130
+ platformId?: string;
133
131
  /**
134
132
  * Platform details (populated if platformId is set)
135
133
  */
@@ -239,15 +237,27 @@ type AccountStandardResponseDto = {
239
237
  */
240
238
  type: 'Assets' | 'Liabilities' | 'Income' | 'Expenses' | 'Equity';
241
239
  /**
242
- * Short localized display name
240
+ * Short display name. Universal rows project to the request locale (Accept-Language); regional rows keep the authored native name — mixed-language by design (ADR-0131 class P vs class A).
243
241
  */
244
242
  name?: string;
245
243
  /**
246
- * Account description (stable semantics only)
244
+ * Authored market-language alternative names delivered verbatim (not localized copy, not xlf-managed, not locale-projected). Flat string[] per ADR-0129 D1; ADR-0131 class A.
245
+ */
246
+ aliases?: Array<string>;
247
+ /**
248
+ * Locale-projected search synonyms (e.g. the zh bank-card / debit-card everyday terms for the checking account). Pure-locale projection — absent when the locale has no seeded synonyms; English fallback rides the authored aliases field. Search-only vocabulary, not the NLP routing corpus (#698, ADR-0131 fourth-class adjudication).
249
+ */
250
+ searchTerms?: Array<string>;
251
+ /**
252
+ * Product denomination as a 3-letter ISO 4217 code, authored market data delivered verbatim (not localized, not xlf-managed). ADR-0131 class A. Absent = single-currency not asserted — consumers fall back to their own region currency (#714).
253
+ */
254
+ currency?: string;
255
+ /**
256
+ * Account description (stable semantics only). Mixed-language contract: universal rows project to the request locale via the accountDesc xlf axis with an en fallback (ADR-0131 class P, ADR-0132; unseeded locales falling back to English are expected); regional rows deliver the authored market language (ADR-0131 class A, verbatim, never xlf-managed).
247
257
  */
248
258
  description: string;
249
259
  /**
250
- * Account tags for categorization
260
+ * Account tags for categorization — structured metadata delivered verbatim (not localized, not xlf-managed). ADR-0131 class A.
251
261
  */
252
262
  tags: Array<string>;
253
263
  /**
@@ -301,6 +311,9 @@ type TemplateMetadataResponseDto = {
301
311
  type RegionConfigDto = {
302
312
  currency: string;
303
313
  dateFormat: string;
314
+ /**
315
+ * Region-qualified BCP-47 tag whose region subtag equals the region's own ISO 3166-1 code (e.g., ja-JP, zh-CN, en-HK)
316
+ */
304
317
  locale: string;
305
318
  };
306
319
  type RegionInfoDto = {
@@ -879,11 +892,11 @@ type TransactionListItemDto = {
879
892
  */
880
893
  originalTxn?: string;
881
894
  /**
882
- * Per-leg sign-normalized row amount for the category viewpoint (ADR-0126): each posting on the category account set contributes its unitsNumber with Income-root legs negated and Expenses-root legs identity. Positive under normal booking but NOT clamped (explicit negative expense legs and net-flip refund months stay negative). Omitted outside the category viewpoint.
895
+ * Row amount under the request viewpoint (ADR-0126). Category viewpoint (category + flow): per-leg sign-normalized sum over the category account set (Income-root legs negated, Expenses-root identity) positive under normal booking but NOT clamped (explicit negative expense legs and net-flip refund months stay negative). No viewpoint (plain list / search, no accountId): wallet money-flow net = raw-sign sum over cost-less Assets/Liabilities legs (income positive, expenses negative, transfers net ~0); color cue is the wallet sign (net < 0 = wealth-decreasing). Status-orthogonal: audit views match too (ADR-0128 amount-as-matching-key). Omitted under the account viewpoint (incl. dual) and for rows with no wallet leg.
883
896
  */
884
897
  viewpointAmount?: string;
885
898
  /**
886
- * Currency of viewpointAmount. A row spanning multiple currencies takes the largest-magnitude currency group (known simplification, ADR-0126). Omitted outside the category viewpoint.
899
+ * Currency of viewpointAmount. A row spanning multiple currencies takes the largest-magnitude currency group (known simplification, ADR-0126).
887
900
  */
888
901
  viewpointCurrency?: string;
889
902
  };
@@ -1528,7 +1541,7 @@ type UpdatePayeeDto = {
1528
1541
  */
1529
1542
  customTags?: Array<string>;
1530
1543
  /**
1531
- * Metadata for extended information (location, notes, contact info, etc.). Will merge with existing metadata.
1544
+ * Metadata for extended information (location, notes, contact info, etc.)
1532
1545
  */
1533
1546
  meta?: {
1534
1547
  [key: string]: unknown;
@@ -1818,6 +1831,166 @@ type UpdateCommodityDto = {
1818
1831
  [key: string]: unknown;
1819
1832
  };
1820
1833
  };
1834
+ type CurrencyBalanceDto = {
1835
+ /**
1836
+ * ISO 4217 currency code
1837
+ */
1838
+ currency: string;
1839
+ /**
1840
+ * Balance amount
1841
+ */
1842
+ balance: string;
1843
+ };
1844
+ type TimeSeriesPointDto = {
1845
+ /**
1846
+ * Date in YYYY-MM-DD format
1847
+ */
1848
+ date: string;
1849
+ /**
1850
+ * Value at this date (in base currency)
1851
+ */
1852
+ value: string;
1853
+ /**
1854
+ * Change from previous point
1855
+ */
1856
+ change?: string;
1857
+ /**
1858
+ * Total assets at this date (in base currency)
1859
+ */
1860
+ assets?: string;
1861
+ /**
1862
+ * Total liabilities at this date (in base currency)
1863
+ */
1864
+ liabilities?: string;
1865
+ /**
1866
+ * Multi-currency breakdown for this point
1867
+ */
1868
+ byCurrency?: Array<CurrencyBalanceDto>;
1869
+ };
1870
+ type TrendSummaryDto = {
1871
+ /**
1872
+ * Value at start of period
1873
+ */
1874
+ startValue: string;
1875
+ /**
1876
+ * Value at end of period
1877
+ */
1878
+ endValue: string;
1879
+ /**
1880
+ * Total change over period
1881
+ */
1882
+ totalChange: string;
1883
+ /**
1884
+ * Total change percentage
1885
+ */
1886
+ totalChangePercentage: string;
1887
+ };
1888
+ type MultiCurrencyPointDto = {
1889
+ /**
1890
+ * Date in YYYY-MM-DD format
1891
+ */
1892
+ date: string;
1893
+ /**
1894
+ * Balances by currency
1895
+ */
1896
+ byCurrency: Array<CurrencyBalanceDto>;
1897
+ };
1898
+ type PortfolioTrendsResponseDto = {
1899
+ /**
1900
+ * Time series data points
1901
+ */
1902
+ series: Array<TimeSeriesPointDto>;
1903
+ /**
1904
+ * Period summary
1905
+ */
1906
+ summary: TrendSummaryDto;
1907
+ /**
1908
+ * Period requested
1909
+ */
1910
+ period: string;
1911
+ /**
1912
+ * Data granularity
1913
+ */
1914
+ granularity: string;
1915
+ /**
1916
+ * Base currency for converted values
1917
+ */
1918
+ currency: string;
1919
+ /**
1920
+ * Multi-currency time series (each point has currency breakdown)
1921
+ */
1922
+ byCurrency?: Array<MultiCurrencyPointDto>;
1923
+ /**
1924
+ * Exchange rate warnings
1925
+ */
1926
+ warnings?: Array<ExchangeRateWarningDto>;
1927
+ };
1928
+ type CashFlowPointDto = {
1929
+ /**
1930
+ * Month key (YYYY-MM)
1931
+ */
1932
+ month: string;
1933
+ /**
1934
+ * Income in base currency (absolute, converted)
1935
+ */
1936
+ income: string;
1937
+ /**
1938
+ * Expense in base currency (absolute, converted)
1939
+ */
1940
+ expense: string;
1941
+ /**
1942
+ * netSavings = income − expense (savings positive)
1943
+ */
1944
+ netSavings: string;
1945
+ };
1946
+ type CashFlowTrendSummaryDto = {
1947
+ /**
1948
+ * Total income across the period
1949
+ */
1950
+ totalIncome: string;
1951
+ /**
1952
+ * Total expense across the period
1953
+ */
1954
+ totalExpense: string;
1955
+ /**
1956
+ * income − expense across the period
1957
+ */
1958
+ totalNetSavings: string;
1959
+ /**
1960
+ * totalNetSavings divided by the window length (N months, incl. zero-filled)
1961
+ */
1962
+ averageMonthlyNetSavings: string;
1963
+ };
1964
+ type CashFlowTrendsResponseDto = {
1965
+ /**
1966
+ * Monthly cash-flow series (fixed N-month window, zero-filled)
1967
+ */
1968
+ series: Array<CashFlowPointDto>;
1969
+ /**
1970
+ * Period totals
1971
+ */
1972
+ summary: CashFlowTrendSummaryDto;
1973
+ /**
1974
+ * Period requested
1975
+ */
1976
+ period: string;
1977
+ /**
1978
+ * Data granularity (v1 returns month buckets)
1979
+ */
1980
+ granularity: string;
1981
+ /**
1982
+ * Base currency for converted values
1983
+ */
1984
+ currency: string;
1985
+ /**
1986
+ * Exchange rate warnings (e.g. missing rate for a currency)
1987
+ */
1988
+ warnings?: Array<ExchangeRateWarningDto>;
1989
+ };
1990
+ type GenerateSnapshotBody = unknown;
1991
+ type GenerateSnapshotResponse = unknown;
1992
+ type BackfillSnapshotsBody = unknown;
1993
+ type BackfillSnapshotsResponse = unknown;
1821
1994
  type CreateBeanPriceDto = {
1822
1995
  /**
1823
1996
  * Currency being priced (e.g., USD, AAPL, BTC)
@@ -1916,75 +2089,229 @@ type UpdateBeanPriceDto = {
1916
2089
  [key: string]: unknown;
1917
2090
  };
1918
2091
  };
1919
- type CreateRecurringRuleDto = {
2092
+ type DeleteOwnUserDto = {
1920
2093
  /**
1921
- * Rule name (unique per user)
2094
+ * Access token for user verification
1922
2095
  */
1923
- name: string;
2096
+ accessToken: string;
2097
+ };
2098
+ type UserSettingsResponseDto = {
1924
2099
  /**
1925
- * Icon emoji
2100
+ * Stored base currency choice (ISO 4217) for net-worth/report aggregation. null = user never chose; aggregates fall back to the region default at display time (#713).
1926
2101
  */
1927
- icon?: string;
2102
+ baseCurrency: string | null;
2103
+ };
2104
+ type UserResponseDto = {
1928
2105
  /**
1929
- * Recurring frequency
2106
+ * User ID
1930
2107
  */
1931
- frequency: 'WEEKLY' | 'BIWEEKLY' | 'MONTHLY' | 'BIMONTHLY' | 'QUARTERLY' | 'YEARLY' | 'CUSTOM';
2108
+ id: string;
1932
2109
  /**
1933
- * Expected amount (positive number)
2110
+ * Assigned user role
1934
2111
  */
1935
- expectedAmount: number;
2112
+ role: string;
1936
2113
  /**
1937
- * Expected day of month (1-31)
2114
+ * Permission strings
1938
2115
  */
1939
- expectedDay?: number;
2116
+ permissions: Array<string>;
1940
2117
  /**
1941
- * Custom interval in days (required for CUSTOM frequency)
2118
+ * User settings
1942
2119
  */
1943
- customIntervalDays?: number;
2120
+ settings: UserSettingsResponseDto;
2121
+ };
2122
+ type SignupDto = {
1944
2123
  /**
1945
- * Currency code
2124
+ * Cloudflare Turnstile verification token (optional when Turnstile disabled)
1946
2125
  */
1947
- currency: string;
2126
+ turnstileToken?: string;
2127
+ };
2128
+ type SignupResponseDto = {
1948
2129
  /**
1949
- * Payee matching pattern (supports wildcards)
2130
+ * JWT auth token
1950
2131
  */
1951
- matchPayeePattern?: string;
2132
+ authToken: string;
1952
2133
  /**
1953
- * Amount tolerance percentage (0-1)
2134
+ * Auto-generated access token
1954
2135
  */
1955
- matchAmountTolerance: number;
2136
+ accessToken: string;
1956
2137
  /**
1957
- * Default expense account for auto-create
2138
+ * Assigned user role
1958
2139
  */
1959
- defaultExpenseAccount?: string;
2140
+ role: 'USER' | 'ADMIN' | 'DEMO' | 'INACTIVE' | 'PAID' | 'OPS';
2141
+ };
2142
+ /**
2143
+ * Assigned user role
2144
+ */
2145
+ type role = 'USER' | 'ADMIN' | 'DEMO' | 'INACTIVE' | 'PAID' | 'OPS';
2146
+ type UpdateUserSettingDto = {
1960
2147
  /**
1961
- * Default payment account for auto-create
2148
+ * Security ID
1962
2149
  */
1963
- defaultPaymentAccount?: string;
2150
+ secId?: number;
1964
2151
  /**
1965
- * Default payee for auto-create
2152
+ * Annual interest rate
1966
2153
  */
1967
- defaultPayee?: string;
2154
+ annualInterestRate?: number;
1968
2155
  /**
1969
- * Auto-create transaction when expected date arrives
2156
+ * Currency code
1970
2157
  */
1971
- autoCreate: boolean;
2158
+ currency?: string;
1972
2159
  /**
1973
- * Rule start date (ISO format)
2160
+ * Base currency code
1974
2161
  */
1975
- startDate?: string;
2162
+ baseCurrency?: string;
1976
2163
  /**
1977
- * Rule end date (ISO format)
2164
+ * Benchmark symbol
1978
2165
  */
1979
- endDate?: string;
1980
- };
1981
- /**
1982
- * Recurring frequency
1983
- */
1984
- type frequency = 'WEEKLY' | 'BIWEEKLY' | 'MONTHLY' | 'BIMONTHLY' | 'QUARTERLY' | 'YEARLY' | 'CUSTOM';
1985
- type RecurringRuleResponseDto = {
2166
+ benchmark?: string;
1986
2167
  /**
1987
- * Rule ID
2168
+ * Color scheme
2169
+ */
2170
+ colorScheme?: 'DARK' | 'LIGHT';
2171
+ /**
2172
+ * Date range filter
2173
+ */
2174
+ dateRange?: string;
2175
+ /**
2176
+ * Emergency fund amount
2177
+ */
2178
+ emergencyFund?: number;
2179
+ /**
2180
+ * Account filter IDs
2181
+ */
2182
+ 'filters.accounts'?: Array<string>;
2183
+ /**
2184
+ * Asset class filters
2185
+ */
2186
+ 'filters.assetClasses'?: Array<string>;
2187
+ /**
2188
+ * Data source filter
2189
+ */
2190
+ 'filters.dataSource'?: string;
2191
+ /**
2192
+ * Symbol filter
2193
+ */
2194
+ 'filters.symbol'?: string;
2195
+ /**
2196
+ * Tag filters
2197
+ */
2198
+ 'filters.tags'?: Array<string>;
2199
+ /**
2200
+ * Enable experimental features
2201
+ */
2202
+ isExperimentalFeatures?: boolean;
2203
+ /**
2204
+ * Enable restricted view mode
2205
+ */
2206
+ isRestrictedView?: boolean;
2207
+ /**
2208
+ * Language code
2209
+ */
2210
+ language?: string;
2211
+ /**
2212
+ * Locale code
2213
+ */
2214
+ locale?: string;
2215
+ /**
2216
+ * Projected total amount
2217
+ */
2218
+ projectedTotalAmount?: number;
2219
+ /**
2220
+ * Retirement date in ISO 8601 format
2221
+ */
2222
+ retirementDate?: string;
2223
+ /**
2224
+ * Savings rate percentage
2225
+ */
2226
+ savingsRate?: number;
2227
+ /**
2228
+ * View mode
2229
+ */
2230
+ viewMode?: 'DEFAULT' | 'ZEN';
2231
+ };
2232
+ /**
2233
+ * Color scheme
2234
+ */
2235
+ type colorScheme = 'DARK' | 'LIGHT';
2236
+ /**
2237
+ * View mode
2238
+ */
2239
+ type viewMode = 'DEFAULT' | 'ZEN';
2240
+ type UpdatePropertyDto = {
2241
+ /**
2242
+ * Property value
2243
+ */
2244
+ value: string;
2245
+ };
2246
+ type CreateRecurringRuleDto = {
2247
+ /**
2248
+ * Rule name (unique per user)
2249
+ */
2250
+ name: string;
2251
+ /**
2252
+ * Icon emoji
2253
+ */
2254
+ icon?: string;
2255
+ /**
2256
+ * Recurring frequency
2257
+ */
2258
+ frequency: 'WEEKLY' | 'BIWEEKLY' | 'MONTHLY' | 'BIMONTHLY' | 'QUARTERLY' | 'YEARLY' | 'CUSTOM';
2259
+ /**
2260
+ * Expected amount (positive number)
2261
+ */
2262
+ expectedAmount: number;
2263
+ /**
2264
+ * Expected day of month (1-31)
2265
+ */
2266
+ expectedDay?: number;
2267
+ /**
2268
+ * Custom interval in days (required for CUSTOM frequency)
2269
+ */
2270
+ customIntervalDays?: number;
2271
+ /**
2272
+ * Currency code
2273
+ */
2274
+ currency?: string;
2275
+ /**
2276
+ * Payee matching pattern (supports wildcards)
2277
+ */
2278
+ matchPayeePattern?: string;
2279
+ /**
2280
+ * Amount tolerance percentage (0-1)
2281
+ */
2282
+ matchAmountTolerance: number;
2283
+ /**
2284
+ * Default expense account for auto-create
2285
+ */
2286
+ defaultExpenseAccount?: string;
2287
+ /**
2288
+ * Default payment account for auto-create
2289
+ */
2290
+ defaultPaymentAccount?: string;
2291
+ /**
2292
+ * Default payee for auto-create
2293
+ */
2294
+ defaultPayee?: string;
2295
+ /**
2296
+ * Auto-create transaction when expected date arrives
2297
+ */
2298
+ autoCreate: boolean;
2299
+ /**
2300
+ * Rule start date (ISO format)
2301
+ */
2302
+ startDate?: string;
2303
+ /**
2304
+ * Rule end date (ISO format)
2305
+ */
2306
+ endDate?: string;
2307
+ };
2308
+ /**
2309
+ * Recurring frequency
2310
+ */
2311
+ type frequency = 'WEEKLY' | 'BIWEEKLY' | 'MONTHLY' | 'BIMONTHLY' | 'QUARTERLY' | 'YEARLY' | 'CUSTOM';
2312
+ type RecurringRuleResponseDto = {
2313
+ /**
2314
+ * Rule ID
1988
2315
  */
1989
2316
  id: string;
1990
2317
  /**
@@ -1998,9 +2325,7 @@ type RecurringRuleResponseDto = {
1998
2325
  /**
1999
2326
  * Icon emoji
2000
2327
  */
2001
- icon?: {
2002
- [key: string]: unknown;
2003
- };
2328
+ icon?: string;
2004
2329
  /**
2005
2330
  * Recurring frequency
2006
2331
  */
@@ -2012,15 +2337,11 @@ type RecurringRuleResponseDto = {
2012
2337
  /**
2013
2338
  * Expected day of month
2014
2339
  */
2015
- expectedDay?: {
2016
- [key: string]: unknown;
2017
- };
2340
+ expectedDay?: number;
2018
2341
  /**
2019
2342
  * Custom interval in days
2020
2343
  */
2021
- customIntervalDays?: {
2022
- [key: string]: unknown;
2023
- };
2344
+ customIntervalDays?: number;
2024
2345
  /**
2025
2346
  * Currency code
2026
2347
  */
@@ -2028,9 +2349,7 @@ type RecurringRuleResponseDto = {
2028
2349
  /**
2029
2350
  * Payee matching pattern
2030
2351
  */
2031
- matchPayeePattern?: {
2032
- [key: string]: unknown;
2033
- };
2352
+ matchPayeePattern?: string;
2034
2353
  /**
2035
2354
  * Amount tolerance percentage
2036
2355
  */
@@ -2038,21 +2357,15 @@ type RecurringRuleResponseDto = {
2038
2357
  /**
2039
2358
  * Default expense account
2040
2359
  */
2041
- defaultExpenseAccount?: {
2042
- [key: string]: unknown;
2043
- };
2360
+ defaultExpenseAccount?: string;
2044
2361
  /**
2045
2362
  * Default payment account
2046
2363
  */
2047
- defaultPaymentAccount?: {
2048
- [key: string]: unknown;
2049
- };
2364
+ defaultPaymentAccount?: string;
2050
2365
  /**
2051
2366
  * Default payee
2052
2367
  */
2053
- defaultPayee?: {
2054
- [key: string]: unknown;
2055
- };
2368
+ defaultPayee?: string;
2056
2369
  /**
2057
2370
  * Whether rule is active
2058
2371
  */
@@ -2064,9 +2377,7 @@ type RecurringRuleResponseDto = {
2064
2377
  /**
2065
2378
  * Rule end date (YYYY-MM-DD)
2066
2379
  */
2067
- endDate?: {
2068
- [key: string]: unknown;
2069
- };
2380
+ endDate?: string;
2070
2381
  /**
2071
2382
  * Auto-create transaction on expected date
2072
2383
  */
@@ -2074,9 +2385,7 @@ type RecurringRuleResponseDto = {
2074
2385
  /**
2075
2386
  * Last matched occurrence date (YYYY-MM-DD)
2076
2387
  */
2077
- lastOccurrence?: {
2078
- [key: string]: unknown;
2079
- };
2388
+ lastOccurrence?: string;
2080
2389
  /**
2081
2390
  * Total matched transactions count
2082
2391
  */
@@ -2120,9 +2429,7 @@ type RecurringRuleWithStatsResponseDto = {
2120
2429
  /**
2121
2430
  * Icon emoji
2122
2431
  */
2123
- icon?: {
2124
- [key: string]: unknown;
2125
- };
2432
+ icon?: string;
2126
2433
  /**
2127
2434
  * Recurring frequency
2128
2435
  */
@@ -2134,15 +2441,11 @@ type RecurringRuleWithStatsResponseDto = {
2134
2441
  /**
2135
2442
  * Expected day of month
2136
2443
  */
2137
- expectedDay?: {
2138
- [key: string]: unknown;
2139
- };
2444
+ expectedDay?: number;
2140
2445
  /**
2141
2446
  * Custom interval in days
2142
2447
  */
2143
- customIntervalDays?: {
2144
- [key: string]: unknown;
2145
- };
2448
+ customIntervalDays?: number;
2146
2449
  /**
2147
2450
  * Currency code
2148
2451
  */
@@ -2150,9 +2453,7 @@ type RecurringRuleWithStatsResponseDto = {
2150
2453
  /**
2151
2454
  * Payee matching pattern
2152
2455
  */
2153
- matchPayeePattern?: {
2154
- [key: string]: unknown;
2155
- };
2456
+ matchPayeePattern?: string;
2156
2457
  /**
2157
2458
  * Amount tolerance percentage
2158
2459
  */
@@ -2160,21 +2461,15 @@ type RecurringRuleWithStatsResponseDto = {
2160
2461
  /**
2161
2462
  * Default expense account
2162
2463
  */
2163
- defaultExpenseAccount?: {
2164
- [key: string]: unknown;
2165
- };
2464
+ defaultExpenseAccount?: string;
2166
2465
  /**
2167
2466
  * Default payment account
2168
2467
  */
2169
- defaultPaymentAccount?: {
2170
- [key: string]: unknown;
2171
- };
2468
+ defaultPaymentAccount?: string;
2172
2469
  /**
2173
2470
  * Default payee
2174
2471
  */
2175
- defaultPayee?: {
2176
- [key: string]: unknown;
2177
- };
2472
+ defaultPayee?: string;
2178
2473
  /**
2179
2474
  * Whether rule is active
2180
2475
  */
@@ -2186,9 +2481,7 @@ type RecurringRuleWithStatsResponseDto = {
2186
2481
  /**
2187
2482
  * Rule end date (YYYY-MM-DD)
2188
2483
  */
2189
- endDate?: {
2190
- [key: string]: unknown;
2191
- };
2484
+ endDate?: string;
2192
2485
  /**
2193
2486
  * Auto-create transaction on expected date
2194
2487
  */
@@ -2196,9 +2489,7 @@ type RecurringRuleWithStatsResponseDto = {
2196
2489
  /**
2197
2490
  * Last matched occurrence date (YYYY-MM-DD)
2198
2491
  */
2199
- lastOccurrence?: {
2200
- [key: string]: unknown;
2201
- };
2492
+ lastOccurrence?: string;
2202
2493
  /**
2203
2494
  * Total matched transactions count
2204
2495
  */
@@ -2222,9 +2513,7 @@ type RecurringRuleWithStatsResponseDto = {
2222
2513
  /**
2223
2514
  * Next expected date (YYYY-MM-DD)
2224
2515
  */
2225
- nextExpectedDate?: {
2226
- [key: string]: unknown;
2227
- };
2516
+ nextExpectedDate?: string;
2228
2517
  /**
2229
2518
  * Total amount of all matched transactions
2230
2519
  */
@@ -2240,15 +2529,11 @@ type RecurringRuleWithStatsResponseDto = {
2240
2529
  /**
2241
2530
  * First matched transaction date (YYYY-MM-DD)
2242
2531
  */
2243
- firstDate?: {
2244
- [key: string]: unknown;
2245
- };
2532
+ firstDate?: string;
2246
2533
  /**
2247
2534
  * Last matched transaction date (YYYY-MM-DD)
2248
2535
  */
2249
- lastDate?: {
2250
- [key: string]: unknown;
2251
- };
2536
+ lastDate?: string;
2252
2537
  /**
2253
2538
  * Amount variance (standard deviation squared)
2254
2539
  */
@@ -2260,7 +2545,7 @@ type RecurringRuleWithStatsResponseDto = {
2260
2545
  };
2261
2546
  type UpdateRecurringRuleDto = {
2262
2547
  /**
2263
- * Rule name
2548
+ * Rule name (unique per user)
2264
2549
  */
2265
2550
  name?: string;
2266
2551
  /**
@@ -2272,23 +2557,19 @@ type UpdateRecurringRuleDto = {
2272
2557
  */
2273
2558
  frequency?: 'WEEKLY' | 'BIWEEKLY' | 'MONTHLY' | 'BIMONTHLY' | 'QUARTERLY' | 'YEARLY' | 'CUSTOM';
2274
2559
  /**
2275
- * Expected amount
2560
+ * Expected amount (positive number)
2276
2561
  */
2277
2562
  expectedAmount?: number;
2278
2563
  /**
2279
2564
  * Expected day of month (1-31)
2280
2565
  */
2281
2566
  expectedDay?: number;
2282
- /**
2283
- * Custom interval in days
2284
- */
2285
- customIntervalDays?: number;
2286
2567
  /**
2287
2568
  * Currency code
2288
2569
  */
2289
2570
  currency?: string;
2290
2571
  /**
2291
- * Payee matching pattern
2572
+ * Payee matching pattern (supports wildcards)
2292
2573
  */
2293
2574
  matchPayeePattern?: string;
2294
2575
  /**
@@ -2296,29 +2577,33 @@ type UpdateRecurringRuleDto = {
2296
2577
  */
2297
2578
  matchAmountTolerance?: number;
2298
2579
  /**
2299
- * Default expense account
2580
+ * Default expense account for auto-create
2300
2581
  */
2301
2582
  defaultExpenseAccount?: string;
2302
2583
  /**
2303
- * Default payment account
2584
+ * Default payment account for auto-create
2304
2585
  */
2305
2586
  defaultPaymentAccount?: string;
2306
2587
  /**
2307
- * Default payee
2588
+ * Default payee for auto-create
2308
2589
  */
2309
2590
  defaultPayee?: string;
2310
2591
  /**
2311
- * Auto-create transaction
2592
+ * Auto-create transaction when expected date arrives
2312
2593
  */
2313
2594
  autoCreate?: boolean;
2314
- /**
2315
- * Rule active status
2316
- */
2317
- isActive?: boolean;
2318
2595
  /**
2319
2596
  * Rule end date (ISO format)
2320
2597
  */
2321
2598
  endDate?: string;
2599
+ /**
2600
+ * Custom interval in days
2601
+ */
2602
+ customIntervalDays?: number;
2603
+ /**
2604
+ * Rule active status
2605
+ */
2606
+ isActive?: boolean;
2322
2607
  };
2323
2608
  type ExpectedTransactionRuleDto = {
2324
2609
  /**
@@ -2328,9 +2613,7 @@ type ExpectedTransactionRuleDto = {
2328
2613
  /**
2329
2614
  * Rule icon
2330
2615
  */
2331
- icon?: {
2332
- [key: string]: unknown;
2333
- };
2616
+ icon?: string;
2334
2617
  /**
2335
2618
  * Rule frequency
2336
2619
  */
@@ -2368,21 +2651,15 @@ type ExpectedTransactionResponseDto = {
2368
2651
  /**
2369
2652
  * Matched transaction ID
2370
2653
  */
2371
- matchedTransactionId?: {
2372
- [key: string]: unknown;
2373
- };
2654
+ matchedTransactionId?: string;
2374
2655
  /**
2375
2656
  * Match timestamp (ISO 8601)
2376
2657
  */
2377
- matchedAt?: {
2378
- [key: string]: unknown;
2379
- };
2658
+ matchedAt?: string;
2380
2659
  /**
2381
2660
  * Match confidence score (0-1)
2382
2661
  */
2383
- matchConfidence?: {
2384
- [key: string]: unknown;
2385
- };
2662
+ matchConfidence?: number;
2386
2663
  /**
2387
2664
  * Whether this expected transaction is overdue
2388
2665
  */
@@ -2513,334 +2790,18 @@ type ForecastResponseDto = {
2513
2790
  */
2514
2791
  periodEnd: string;
2515
2792
  };
2516
- type CurrencyBalanceDto = {
2793
+ type CreateTransactionRuleDto = {
2794
+ name: string;
2795
+ description?: string;
2796
+ narrationKeywords?: Array<unknown[]>;
2797
+ payeeKeywords?: Array<unknown[]>;
2798
+ categoryKeywords?: Array<unknown[]>;
2517
2799
  /**
2518
- * ISO 4217 currency code
2800
+ * Payment method keywords (e.g., HuaBei, YuEBao)
2519
2801
  */
2520
- currency: string;
2802
+ methodKeywords?: Array<unknown[]>;
2521
2803
  /**
2522
- * Balance amount
2523
- */
2524
- balance: string;
2525
- };
2526
- type TimeSeriesPointDto = {
2527
- /**
2528
- * Date in YYYY-MM-DD format
2529
- */
2530
- date: string;
2531
- /**
2532
- * Value at this date (in base currency)
2533
- */
2534
- value: string;
2535
- /**
2536
- * Change from previous point
2537
- */
2538
- change?: {
2539
- [key: string]: unknown;
2540
- };
2541
- /**
2542
- * Total assets at this date (in base currency)
2543
- */
2544
- assets?: string;
2545
- /**
2546
- * Total liabilities at this date (in base currency)
2547
- */
2548
- liabilities?: string;
2549
- /**
2550
- * Multi-currency breakdown for this point
2551
- */
2552
- byCurrency?: Array<CurrencyBalanceDto>;
2553
- };
2554
- type TrendSummaryDto = {
2555
- /**
2556
- * Value at start of period
2557
- */
2558
- startValue: string;
2559
- /**
2560
- * Value at end of period
2561
- */
2562
- endValue: string;
2563
- /**
2564
- * Total change over period
2565
- */
2566
- totalChange: string;
2567
- /**
2568
- * Total change percentage
2569
- */
2570
- totalChangePercentage: string;
2571
- };
2572
- type MultiCurrencyPointDto = {
2573
- /**
2574
- * Date in YYYY-MM-DD format
2575
- */
2576
- date: string;
2577
- /**
2578
- * Balances by currency
2579
- */
2580
- byCurrency: Array<CurrencyBalanceDto>;
2581
- };
2582
- type PortfolioTrendsResponseDto = {
2583
- /**
2584
- * Time series data points
2585
- */
2586
- series: Array<TimeSeriesPointDto>;
2587
- /**
2588
- * Period summary
2589
- */
2590
- summary: TrendSummaryDto;
2591
- /**
2592
- * Period requested
2593
- */
2594
- period: string;
2595
- /**
2596
- * Data granularity
2597
- */
2598
- granularity: string;
2599
- /**
2600
- * Base currency for converted values
2601
- */
2602
- currency: string;
2603
- /**
2604
- * Multi-currency time series (each point has currency breakdown)
2605
- */
2606
- byCurrency?: Array<MultiCurrencyPointDto>;
2607
- /**
2608
- * Exchange rate warnings
2609
- */
2610
- warnings?: Array<ExchangeRateWarningDto>;
2611
- };
2612
- type CashFlowPointDto = {
2613
- /**
2614
- * Month key (YYYY-MM)
2615
- */
2616
- month: string;
2617
- /**
2618
- * Income in base currency (absolute, converted)
2619
- */
2620
- income: string;
2621
- /**
2622
- * Expense in base currency (absolute, converted)
2623
- */
2624
- expense: string;
2625
- /**
2626
- * netSavings = income − expense (savings positive)
2627
- */
2628
- netSavings: string;
2629
- };
2630
- type CashFlowTrendSummaryDto = {
2631
- /**
2632
- * Total income across the period
2633
- */
2634
- totalIncome: string;
2635
- /**
2636
- * Total expense across the period
2637
- */
2638
- totalExpense: string;
2639
- /**
2640
- * income − expense across the period
2641
- */
2642
- totalNetSavings: string;
2643
- /**
2644
- * totalNetSavings divided by the window length (N months, incl. zero-filled)
2645
- */
2646
- averageMonthlyNetSavings: string;
2647
- };
2648
- type CashFlowTrendsResponseDto = {
2649
- /**
2650
- * Monthly cash-flow series (fixed N-month window, zero-filled)
2651
- */
2652
- series: Array<CashFlowPointDto>;
2653
- /**
2654
- * Period totals
2655
- */
2656
- summary: CashFlowTrendSummaryDto;
2657
- /**
2658
- * Period requested
2659
- */
2660
- period: string;
2661
- /**
2662
- * Data granularity (v1 returns month buckets)
2663
- */
2664
- granularity: string;
2665
- /**
2666
- * Base currency for converted values
2667
- */
2668
- currency: string;
2669
- /**
2670
- * Exchange rate warnings (e.g. missing rate for a currency)
2671
- */
2672
- warnings?: Array<ExchangeRateWarningDto>;
2673
- };
2674
- type GenerateSnapshotBody = unknown;
2675
- type GenerateSnapshotResponse = unknown;
2676
- type BackfillSnapshotsBody = unknown;
2677
- type BackfillSnapshotsResponse = unknown;
2678
- type DeleteOwnUserDto = {
2679
- /**
2680
- * Access token for user verification
2681
- */
2682
- accessToken: string;
2683
- };
2684
- type UserSettingsResponseDto = {
2685
- /**
2686
- * Base currency (ISO 4217) for net-worth/report aggregation. Independent of region (ADR-0006).
2687
- */
2688
- baseCurrency: string | null;
2689
- };
2690
- type UserResponseDto = {
2691
- /**
2692
- * User ID
2693
- */
2694
- id: string;
2695
- /**
2696
- * Assigned user role
2697
- */
2698
- role: string;
2699
- /**
2700
- * Permission strings
2701
- */
2702
- permissions: Array<string>;
2703
- /**
2704
- * User settings
2705
- */
2706
- settings: UserSettingsResponseDto;
2707
- };
2708
- type SignupDto = {
2709
- /**
2710
- * Cloudflare Turnstile verification token (optional when Turnstile disabled)
2711
- */
2712
- turnstileToken?: string;
2713
- };
2714
- type SignupResponseDto = {
2715
- /**
2716
- * JWT auth token
2717
- */
2718
- authToken: string;
2719
- /**
2720
- * Auto-generated access token
2721
- */
2722
- accessToken: string;
2723
- /**
2724
- * Assigned user role
2725
- */
2726
- role: 'USER' | 'ADMIN' | 'DEMO' | 'INACTIVE' | 'PAID' | 'OPS';
2727
- };
2728
- /**
2729
- * Assigned user role
2730
- */
2731
- type role = 'USER' | 'ADMIN' | 'DEMO' | 'INACTIVE' | 'PAID' | 'OPS';
2732
- type UpdateUserSettingDto = {
2733
- /**
2734
- * Security ID
2735
- */
2736
- secId?: number;
2737
- /**
2738
- * Annual interest rate
2739
- */
2740
- annualInterestRate?: number;
2741
- /**
2742
- * Currency code
2743
- */
2744
- currency?: string;
2745
- /**
2746
- * Base currency code
2747
- */
2748
- baseCurrency?: string;
2749
- /**
2750
- * Benchmark symbol
2751
- */
2752
- benchmark?: string;
2753
- /**
2754
- * Color scheme
2755
- */
2756
- colorScheme?: 'DARK' | 'LIGHT';
2757
- /**
2758
- * Date range filter
2759
- */
2760
- dateRange?: string;
2761
- /**
2762
- * Emergency fund amount
2763
- */
2764
- emergencyFund?: number;
2765
- /**
2766
- * Account filter IDs
2767
- */
2768
- 'filters.accounts'?: Array<string>;
2769
- /**
2770
- * Asset class filters
2771
- */
2772
- 'filters.assetClasses'?: Array<string>;
2773
- /**
2774
- * Data source filter
2775
- */
2776
- 'filters.dataSource'?: string;
2777
- /**
2778
- * Symbol filter
2779
- */
2780
- 'filters.symbol'?: string;
2781
- /**
2782
- * Tag filters
2783
- */
2784
- 'filters.tags'?: Array<string>;
2785
- /**
2786
- * Enable experimental features
2787
- */
2788
- isExperimentalFeatures?: boolean;
2789
- /**
2790
- * Enable restricted view mode
2791
- */
2792
- isRestrictedView?: boolean;
2793
- /**
2794
- * Language code
2795
- */
2796
- language?: string;
2797
- /**
2798
- * Locale code
2799
- */
2800
- locale?: string;
2801
- /**
2802
- * Projected total amount
2803
- */
2804
- projectedTotalAmount?: number;
2805
- /**
2806
- * Retirement date in ISO 8601 format
2807
- */
2808
- retirementDate?: string;
2809
- /**
2810
- * Savings rate percentage
2811
- */
2812
- savingsRate?: number;
2813
- /**
2814
- * View mode
2815
- */
2816
- viewMode?: 'DEFAULT' | 'ZEN';
2817
- };
2818
- /**
2819
- * Color scheme
2820
- */
2821
- type colorScheme = 'DARK' | 'LIGHT';
2822
- /**
2823
- * View mode
2824
- */
2825
- type viewMode = 'DEFAULT' | 'ZEN';
2826
- type UpdatePropertyDto = {
2827
- /**
2828
- * Property value
2829
- */
2830
- value: string;
2831
- };
2832
- type CreateTransactionRuleDto = {
2833
- name: string;
2834
- description?: string;
2835
- narrationKeywords?: Array<unknown[]>;
2836
- payeeKeywords?: Array<unknown[]>;
2837
- categoryKeywords?: Array<unknown[]>;
2838
- /**
2839
- * Payment method keywords (e.g., HuaBei, YuEBao)
2840
- */
2841
- methodKeywords?: Array<unknown[]>;
2842
- /**
2843
- * Destination account for expenses/income (e.g., Expenses:Food:Coffee)
2804
+ * Destination account for expenses/income (e.g., Expenses:Food:Coffee)
2844
2805
  */
2845
2806
  categoryAccount?: string;
2846
2807
  matchLogic: 'OR' | 'AND';
@@ -3131,14 +3092,14 @@ type UpdateTransactionRuleDto = {
3131
3092
  */
3132
3093
  amountMax?: number;
3133
3094
  priority?: number;
3134
- /**
3135
- * Enable or disable the rule
3136
- */
3137
- enabled?: boolean;
3138
3095
  additionalTags?: Array<unknown[]>;
3139
3096
  additionalMetadata?: {
3140
3097
  [key: string]: unknown;
3141
3098
  };
3099
+ /**
3100
+ * Enable or disable the rule
3101
+ */
3102
+ enabled?: boolean;
3142
3103
  };
3143
3104
  type TestRuleDto = {
3144
3105
  narration: string;
@@ -3882,10 +3843,26 @@ type ProcessNlpDto = {
3882
3843
  */
3883
3844
  selectedRuleId?: string;
3884
3845
  /**
3885
- * confirm_account echo-back: account path selected from the prior confirm_account response (suggestedAccount, similarAccounts[i], or a typed path). Applied directly when the session is confirming_account — no NL re-parse.
3846
+ * confirm_account echo-back: account path selected from the prior confirm_account response (suggestedAccount, similarAccounts[i].path, or a typed path). Applied directly when the session is confirming_account — no NL re-parse.
3886
3847
  */
3887
3848
  selectedAccount?: string;
3849
+ /**
3850
+ * Viewpoint account hint: the beancount path the user drilled into (e.g. from an account drill-down). Tie-break only — never overrides accounts resolved from the text. Must be an owned, OPEN Assets:/Liabilities: account; unresolvable hints are silently ignored.
3851
+ */
3852
+ viewpointAccount?: string;
3853
+ /**
3854
+ * Viewpoint category hint: the ADR-0075 Group segment the user drilled into (e.g. 'Food'). Resolved to a concrete OPEN account in that group; tie-break only — never overrides a category resolved from the text.
3855
+ */
3856
+ viewpointCategory?: string;
3857
+ /**
3858
+ * Companion flow root for viewpointCategory ('income' | 'expense'), mirroring the ADR-0126 list-endpoint invariant. Derived from the session's routed intent (multi-turn) when absent; a first-turn flow-less category hint is dropped — send the flow explicitly.
3859
+ */
3860
+ viewpointFlow?: 'income' | 'expense';
3888
3861
  };
3862
+ /**
3863
+ * Companion flow root for viewpointCategory ('income' | 'expense'), mirroring the ADR-0126 list-endpoint invariant. Derived from the session's routed intent (multi-turn) when absent; a first-turn flow-less category hint is dropped — send the flow explicitly.
3864
+ */
3865
+ type viewpointFlow = 'income' | 'expense';
3889
3866
  type NlpTransactionInfoDto = {
3890
3867
  /**
3891
3868
  * Transaction ID
@@ -4104,6 +4081,16 @@ type NlpRuleConfirmationDataDto = {
4104
4081
  */
4105
4082
  reasons: Array<string>;
4106
4083
  };
4084
+ type NlpAccountCandidateDto = {
4085
+ /**
4086
+ * Canonical beancount account path (echo back on selection)
4087
+ */
4088
+ path: string;
4089
+ /**
4090
+ * Localized display name (ADR-0114 read-time projection, user locale)
4091
+ */
4092
+ name: string;
4093
+ };
4107
4094
  type NlpAccountConfirmationDataDto = {
4108
4095
  /**
4109
4096
  * The invalid account name
@@ -4114,9 +4101,9 @@ type NlpAccountConfirmationDataDto = {
4114
4101
  */
4115
4102
  suggestedAccount?: string;
4116
4103
  /**
4117
- * Similar accounts for user selection
4104
+ * Similar accounts for user selection (path + localized name, #680)
4118
4105
  */
4119
- similarAccounts: Array<string>;
4106
+ similarAccounts: Array<NlpAccountCandidateDto>;
4120
4107
  /**
4121
4108
  * Error message explaining the issue
4122
4109
  */
@@ -4505,6 +4492,46 @@ type PlatformMatchResponseDto = {
4505
4492
  * Overall match quality — top row's tier, or 'none' when no hits
4506
4493
  */
4507
4494
  type matchType2 = 'none' | 'exact' | 'prefix' | 'substring';
4495
+ type PlatformStandardsPlatformDto = {
4496
+ /**
4497
+ * Global platform ID
4498
+ */
4499
+ id: string;
4500
+ /**
4501
+ * Platform name (e.g., "ICBC")
4502
+ */
4503
+ name: string;
4504
+ /**
4505
+ * Canonical identifier in ACCOUNT_RE format (e.g., "icbc")
4506
+ */
4507
+ canonical: string;
4508
+ /**
4509
+ * Suggested path segment — canonical PascalCased per hyphen-part, hyphens preserved (e.g. "Apple-Pay")
4510
+ */
4511
+ suggestedSegment: string;
4512
+ /**
4513
+ * Platform type
4514
+ */
4515
+ type: 'BANK' | 'BROKERAGE' | 'CRYPTO_EXCHANGE' | 'PAYMENT' | 'INVESTMENT' | 'INSURANCE' | 'OTHER';
4516
+ /**
4517
+ * Region-aware category (institution vocab, e.g. DigitalWallet/Bank) resolved against the final region. null = no region-aware suggestion; fall back to type.
4518
+ */
4519
+ category: string | null;
4520
+ };
4521
+ type PlatformStandardsResponseDto = {
4522
+ /**
4523
+ * The selected platform (institution lock source)
4524
+ */
4525
+ platform: PlatformStandardsPlatformDto;
4526
+ /**
4527
+ * Resolved template region (ISO 3166-1 alpha-2, UPPERCASE): the platform's own countryCode when set, else the region query param. For regions without a regional template file the template list falls back to the universal-only catalog while region still echoes the code.
4528
+ */
4529
+ region: string;
4530
+ /**
4531
+ * Candidate account-standard templates of the resolved region (groupable by productCategory client-side)
4532
+ */
4533
+ templates: Array<AccountStandardResponseDto>;
4534
+ };
4508
4535
  type CreatePlatformDto = {
4509
4536
  /**
4510
4537
  * Platform name
@@ -4681,11 +4708,11 @@ type PlatformGroupDto = {
4681
4708
  */
4682
4709
  platformName: string;
4683
4710
  /**
4684
- * Accounts within this platform
4711
+ * Accounts within this platform (Assets and Liabilities rows, #696)
4685
4712
  */
4686
4713
  accounts: Array<AccountItemDto>;
4687
4714
  /**
4688
- * FX-converted total balance in base currency
4715
+ * FX-converted total balance in base currency (nets Assets + Liabilities rows; can be negative)
4689
4716
  */
4690
4717
  totalBalance: string;
4691
4718
  /**
@@ -4697,7 +4724,7 @@ type PlatformGroupDto = {
4697
4724
  */
4698
4725
  convertedBalance?: string;
4699
4726
  /**
4700
- * Share of the grand converted total (0-100); 0 when grand total is 0
4727
+ * Share of the converted asset-side grand total (0-100); liability balances are excluded from the basis; 0 when grand total is 0 (#696)
4701
4728
  */
4702
4729
  sharePct: number;
4703
4730
  };
@@ -4721,7 +4748,7 @@ type AccountExchangeRateWarningDto = {
4721
4748
  };
4722
4749
  type AccountsSummaryDto = {
4723
4750
  /**
4724
- * Total number of accounts
4751
+ * Total number of accounts (balance sheet: Assets + Liabilities, #696)
4725
4752
  */
4726
4753
  totalAccounts: number;
4727
4754
  /**
@@ -5043,9 +5070,7 @@ type MonetaryDto = {
5043
5070
  /**
5044
5071
  * Converted to user base currency (Decimal string)
5045
5072
  */
5046
- baseCcyEquivalent?: {
5047
- [key: string]: unknown;
5048
- } | null;
5073
+ baseCcyEquivalent?: string | null;
5049
5074
  };
5050
5075
  type CurrentPriceDto = {
5051
5076
  /**
@@ -5093,15 +5118,11 @@ type HoldingPnlRowDto = {
5093
5118
  /**
5094
5119
  * Account settlement currency (ISO 4217), from cost currency
5095
5120
  */
5096
- accountCcy?: {
5097
- [key: string]: unknown;
5098
- } | null;
5121
+ accountCcy?: string | null;
5099
5122
  /**
5100
5123
  * Broker type derived from Platform.type
5101
5124
  */
5102
- brokerType?: {
5103
- [key: string]: unknown;
5104
- } | null;
5125
+ brokerType?: string | null;
5105
5126
  /**
5106
5127
  * Commodity symbol
5107
5128
  */
@@ -5111,9 +5132,7 @@ type HoldingPnlRowDto = {
5111
5132
  */
5112
5133
  chartToken: 'equity' | 'fund' | 'bond' | 'cash' | 'other';
5113
5134
  assetClass: string;
5114
- assetSubClass?: {
5115
- [key: string]: unknown;
5116
- } | null;
5135
+ assetSubClass?: string | null;
5117
5136
  /**
5118
5137
  * Net held units (Decimal string)
5119
5138
  */
@@ -5137,15 +5156,11 @@ type HoldingPnlRowDto = {
5137
5156
  /**
5138
5157
  * Unrealized P&L in base currency (Decimal string); null when any FX/price missing
5139
5158
  */
5140
- unrealizedPnlBase?: {
5141
- [key: string]: unknown;
5142
- } | null;
5159
+ unrealizedPnlBase?: string | null;
5143
5160
  /**
5144
5161
  * Unrealized P&L % (Decimal string)
5145
5162
  */
5146
- unrealizedPnlPct?: {
5147
- [key: string]: unknown;
5148
- } | null;
5163
+ unrealizedPnlPct?: string | null;
5149
5164
  /**
5150
5165
  * Historical FX rate applied to cost basis
5151
5166
  */
@@ -5157,9 +5172,7 @@ type HoldingPnlRowDto = {
5157
5172
  /**
5158
5173
  * Share of invested assets % (Decimal string); only for invested chartTokens
5159
5174
  */
5160
- pctOfInvestedAssets?: {
5161
- [key: string]: unknown;
5162
- } | null;
5175
+ pctOfInvestedAssets?: string | null;
5163
5176
  /**
5164
5177
  * Cumulative realized P&L on sold lots (asOf-date cutoff); null when the method has no applicable sells, a sell lacks a price, or any required FX rate is missing (never-mix). When a sell spans multiple currencies (cross-currency sale), amount and currency reflect the base currency; baseCcyEquivalent is always the authoritative dual-FX figure
5165
5178
  */
@@ -5174,15 +5187,9 @@ type HoldingPnlWarningDto = {
5174
5187
  * Warning type
5175
5188
  */
5176
5189
  type: 'MISSING_COST_FX_RATE' | 'MISSING_MARKET_FX_RATE' | 'MISSING_SALE_PRICE' | 'MISSING_REALIZED_FX_RATE' | 'OVERSOLD_LOTS' | 'NO_PRICE' | 'MIXED_COST_CURRENCY';
5177
- symbol?: {
5178
- [key: string]: unknown;
5179
- } | null;
5180
- accountId?: {
5181
- [key: string]: unknown;
5182
- } | null;
5183
- currency?: {
5184
- [key: string]: unknown;
5185
- } | null;
5190
+ symbol?: string | null;
5191
+ accountId?: string | null;
5192
+ currency?: string | null;
5186
5193
  };
5187
5194
  /**
5188
5195
  * Warning type
@@ -5241,7 +5248,9 @@ type ParserContributionSamplesDto = {
5241
5248
  /**
5242
5249
  * Client-sanitized sample rows (key = column name, value = cell)
5243
5250
  */
5244
- rows: Array<string>;
5251
+ rows: Array<{
5252
+ [key: string]: unknown;
5253
+ }>;
5245
5254
  rawHeaders?: Array<string>;
5246
5255
  };
5247
5256
  type FieldHintDto = {
@@ -5289,129 +5298,85 @@ type ParserContributionRelayResponseDto = {
5289
5298
  };
5290
5299
  type SymbolSearchResultDto = {
5291
5300
  symbol: string;
5292
- name?: {
5293
- [key: string]: unknown;
5294
- } | null;
5295
- exchange?: {
5296
- [key: string]: unknown;
5297
- } | null;
5301
+ name?: string | null;
5302
+ exchange?: string | null;
5298
5303
  /**
5299
5304
  * OpenBB asset_type (e.g. stock, etf)
5300
5305
  */
5301
- assetType?: {
5302
- [key: string]: unknown;
5303
- } | null;
5306
+ assetType?: string | null;
5304
5307
  /**
5305
5308
  * IGN asset class (region.types.ts ASSET_CLASSES)
5306
5309
  */
5307
- assetClass?: {
5308
- [key: string]: unknown;
5309
- } | null;
5310
+ assetClass?: string | null;
5310
5311
  /**
5311
5312
  * IGN asset sub-class (region.types.ts ASSET_SUB_CLASSES)
5312
5313
  */
5313
- assetSubClass?: {
5314
- [key: string]: unknown;
5315
- } | null;
5314
+ assetSubClass?: string | null;
5316
5315
  /**
5317
5316
  * Trading currency (extra_data or inferred from exchange)
5318
5317
  */
5319
- currency?: {
5320
- [key: string]: unknown;
5321
- } | null;
5318
+ currency?: string | null;
5322
5319
  };
5323
5320
  type SymbolQuoteDto = {
5324
5321
  symbol?: string;
5325
- name?: {
5326
- [key: string]: unknown;
5327
- } | null;
5328
- exchange?: {
5329
- [key: string]: unknown;
5330
- } | null;
5322
+ name?: string | null;
5323
+ exchange?: string | null;
5331
5324
  /**
5332
5325
  * OpenBB asset_type
5333
5326
  */
5334
- assetType?: {
5335
- [key: string]: unknown;
5336
- } | null;
5327
+ assetType?: string | null;
5337
5328
  /**
5338
5329
  * IGN asset class
5339
5330
  */
5340
- assetClass?: {
5341
- [key: string]: unknown;
5342
- } | null;
5331
+ assetClass?: string | null;
5343
5332
  /**
5344
5333
  * IGN asset sub-class
5345
5334
  */
5346
- assetSubClass?: {
5347
- [key: string]: unknown;
5348
- } | null;
5335
+ assetSubClass?: string | null;
5349
5336
  /**
5350
5337
  * Trading currency (extra_data or inferred from exchange)
5351
5338
  */
5352
- currency?: {
5353
- [key: string]: unknown;
5354
- } | null;
5339
+ currency?: string | null;
5355
5340
  /**
5356
5341
  * Latest price (Decimal string)
5357
5342
  */
5358
- price?: {
5359
- [key: string]: unknown;
5360
- } | null;
5343
+ price?: string | null;
5361
5344
  /**
5362
5345
  * Date the price was observed (ISO yyyy-MM-dd)
5363
5346
  */
5364
- priceDate?: {
5365
- [key: string]: unknown;
5366
- } | null;
5347
+ priceDate?: string | null;
5367
5348
  /**
5368
5349
  * Change vs previous close, in percentage points (1.7 == 1.7%). openbb stores change_percent as a normalized decimal; this exposes percentage points for frontend convenience.
5369
5350
  */
5370
- changePercent?: {
5371
- [key: string]: unknown;
5372
- } | null;
5351
+ changePercent?: number | null;
5373
5352
  /**
5374
5353
  * Previous close (Decimal string)
5375
5354
  */
5376
- prevClose?: {
5377
- [key: string]: unknown;
5378
- } | null;
5355
+ prevClose?: string | null;
5379
5356
  /**
5380
5357
  * Day open (Decimal string)
5381
5358
  */
5382
- open?: {
5383
- [key: string]: unknown;
5384
- } | null;
5359
+ open?: string | null;
5385
5360
  /**
5386
5361
  * Day high (Decimal string)
5387
5362
  */
5388
- high?: {
5389
- [key: string]: unknown;
5390
- } | null;
5363
+ high?: string | null;
5391
5364
  /**
5392
5365
  * Day low (Decimal string)
5393
5366
  */
5394
- low?: {
5395
- [key: string]: unknown;
5396
- } | null;
5367
+ low?: string | null;
5397
5368
  /**
5398
5369
  * Day volume (Decimal string)
5399
5370
  */
5400
- volume?: {
5401
- [key: string]: unknown;
5402
- } | null;
5371
+ volume?: string | null;
5403
5372
  /**
5404
5373
  * 52-week high (Decimal string)
5405
5374
  */
5406
- yearHigh?: {
5407
- [key: string]: unknown;
5408
- } | null;
5375
+ yearHigh?: string | null;
5409
5376
  /**
5410
5377
  * 52-week low (Decimal string)
5411
5378
  */
5412
- yearLow?: {
5413
- [key: string]: unknown;
5414
- } | null;
5379
+ yearLow?: string | null;
5415
5380
  };
5416
5381
  type AccountControllerCreateData = {
5417
5382
  /**
@@ -5528,7 +5493,7 @@ type AccountStandardsControllerGetTemplatesData = {
5528
5493
  */
5529
5494
  region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5530
5495
  /**
5531
- * Search term for path or description
5496
+ * Search term for path, description, aliases, or localized display name
5532
5497
  */
5533
5498
  search?: string;
5534
5499
  /**
@@ -5604,9 +5569,9 @@ type TransactionControllerListData = {
5604
5569
  */
5605
5570
  search?: string;
5606
5571
  /**
5607
- * Filter by transaction status
5572
+ * Filter by transaction status: single value, comma-separated multi-value (e.g. VOIDED,SUPERSEDED), or ALL to include audit rows. Defaults to ACTIVE-only (ADR-0128; previously unfiltered — breaking change).
5608
5573
  */
5609
- status?: 'ACTIVE' | 'VOIDED' | 'SUPERSEDED';
5574
+ status?: 'ACTIVE' | 'VOIDED' | 'SUPERSEDED' | 'ALL';
5610
5575
  };
5611
5576
  type TransactionControllerListResponse = TransactionListResponseDto;
5612
5577
  type TransactionControllerCreateBatchData = {
@@ -5923,7 +5888,7 @@ type PayeeProfileAdminControllerUnverifyData = {
5923
5888
  */
5924
5889
  id: string;
5925
5890
  };
5926
- type PayeeProfileAdminControllerUnverifyResponse = PayeeProfileResponseDto;
5891
+ type PayeeProfileAdminControllerUnverifyResponse = void;
5927
5892
  type CommodityControllerCreateData = {
5928
5893
  /**
5929
5894
  * Region code for tenant context
@@ -5999,6 +5964,55 @@ type CommodityControllerBulkCreateData = {
5999
5964
  region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6000
5965
  };
6001
5966
  type CommodityControllerBulkCreateResponse = Array<CommodityResponseDto>;
5967
+ type ReportingControllerGetPortfolioTrendsData = {
5968
+ /**
5969
+ * Data granularity
5970
+ */
5971
+ granularity?: 'day' | 'week' | 'month';
5972
+ /**
5973
+ * Time period
5974
+ */
5975
+ period?: '1m' | '3m' | '6m' | '1y';
5976
+ /**
5977
+ * Region code for tenant context
5978
+ */
5979
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5980
+ };
5981
+ type ReportingControllerGetPortfolioTrendsResponse = PortfolioTrendsResponseDto;
5982
+ type ReportingControllerGetCashFlowTrendsData = {
5983
+ /**
5984
+ * Data granularity (accepted for API symmetry; v1 returns month buckets)
5985
+ */
5986
+ granularity?: 'day' | 'week' | 'month';
5987
+ /**
5988
+ * Time period
5989
+ */
5990
+ period?: '1m' | '3m' | '6m' | '1y';
5991
+ /**
5992
+ * Region code for tenant context
5993
+ */
5994
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5995
+ };
5996
+ type ReportingControllerGetCashFlowTrendsResponse = CashFlowTrendsResponseDto;
5997
+ type ReportingControllerGenerateSnapshotData = {
5998
+ /**
5999
+ * Region code for tenant context
6000
+ */
6001
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6002
+ /**
6003
+ * Optional date (defaults to today)
6004
+ */
6005
+ requestBody: GenerateSnapshotBody;
6006
+ };
6007
+ type ReportingControllerGenerateSnapshotResponse = GenerateSnapshotResponse;
6008
+ type ReportingControllerBackfillSnapshotsData = {
6009
+ /**
6010
+ * Region code for tenant context
6011
+ */
6012
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6013
+ requestBody: BackfillSnapshotsBody;
6014
+ };
6015
+ type ReportingControllerBackfillSnapshotsResponse = BackfillSnapshotsResponse;
6002
6016
  type PriceControllerCreateData = {
6003
6017
  /**
6004
6018
  * Region code for tenant context
@@ -6044,46 +6058,111 @@ type PriceControllerFindAllData = {
6044
6058
  type PriceControllerFindAllResponse = PriceListResponseDto;
6045
6059
  type PriceControllerFindOneData = {
6046
6060
  /**
6047
- * Price ID
6061
+ * Price ID
6062
+ */
6063
+ id: string;
6064
+ /**
6065
+ * Region code for tenant context
6066
+ */
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';
6068
+ };
6069
+ type PriceControllerFindOneResponse = PriceResponseDto;
6070
+ type PriceControllerUpdateData = {
6071
+ /**
6072
+ * Price ID
6073
+ */
6074
+ id: string;
6075
+ /**
6076
+ * Region code for tenant context
6077
+ */
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';
6079
+ requestBody: UpdateBeanPriceDto;
6080
+ };
6081
+ type PriceControllerUpdateResponse = PriceResponseDto;
6082
+ type PriceControllerDeleteData = {
6083
+ /**
6084
+ * Price ID
6085
+ */
6086
+ id: string;
6087
+ /**
6088
+ * Region code for tenant context
6089
+ */
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';
6091
+ };
6092
+ type PriceControllerDeleteResponse = void;
6093
+ type PriceControllerBulkCreateData = {
6094
+ /**
6095
+ * Region code for tenant context
6096
+ */
6097
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6098
+ requestBody: Array<string>;
6099
+ };
6100
+ type PriceControllerBulkCreateResponse = Array<PriceResponseDto>;
6101
+ type UserControllerDeleteOwnUserData = {
6102
+ requestBody: DeleteOwnUserDto;
6103
+ };
6104
+ type UserControllerDeleteOwnUserResponse = void;
6105
+ type UserControllerGetUserData = {
6106
+ acceptLanguage: string;
6107
+ };
6108
+ type UserControllerGetUserResponse = UserResponseDto;
6109
+ type UserControllerSignupUserData = {
6110
+ requestBody: SignupDto;
6111
+ };
6112
+ type UserControllerSignupUserResponse = SignupResponseDto;
6113
+ type UserControllerDeleteUserData = {
6114
+ /**
6115
+ * User ID to delete
6048
6116
  */
6049
6117
  id: string;
6118
+ };
6119
+ type UserControllerDeleteUserResponse = void;
6120
+ type UserControllerGetUserInfoData = {
6050
6121
  /**
6051
- * Region code for tenant context
6122
+ * User ID
6052
6123
  */
6053
- region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6124
+ id: string;
6054
6125
  };
6055
- type PriceControllerFindOneResponse = PriceResponseDto;
6056
- type PriceControllerUpdateData = {
6126
+ type UserControllerGetUserInfoResponse = unknown;
6127
+ type UserControllerUpdateUserSettingData = {
6128
+ requestBody: UpdateUserSettingDto;
6129
+ };
6130
+ type UserControllerUpdateUserSettingResponse = unknown;
6131
+ type UserControllerGetAllUserSettingsByPageData = {
6057
6132
  /**
6058
- * Price ID
6133
+ * Page number
6059
6134
  */
6060
- id: string;
6135
+ pageNo: number;
6061
6136
  /**
6062
- * Region code for tenant context
6137
+ * Page size
6063
6138
  */
6064
- region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6065
- requestBody: UpdateBeanPriceDto;
6139
+ pageSize: number;
6066
6140
  };
6067
- type PriceControllerUpdateResponse = PriceResponseDto;
6068
- type PriceControllerDeleteData = {
6141
+ type UserControllerGetAllUserSettingsByPageResponse = unknown;
6142
+ type UserControllerGetAssetLiabilitySummaryResponse = unknown;
6143
+ type PropertyControllerGetAllResponse = unknown;
6144
+ type PropertyControllerGetByKeyData = {
6069
6145
  /**
6070
- * Price ID
6146
+ * Property key
6071
6147
  */
6072
- id: string;
6148
+ key: string;
6149
+ };
6150
+ type PropertyControllerGetByKeyResponse = unknown;
6151
+ type PropertyControllerUpdateData = {
6073
6152
  /**
6074
- * Region code for tenant context
6153
+ * Property key
6075
6154
  */
6076
- region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6155
+ key: string;
6156
+ requestBody: UpdatePropertyDto;
6077
6157
  };
6078
- type PriceControllerDeleteResponse = void;
6079
- type PriceControllerBulkCreateData = {
6158
+ type PropertyControllerUpdateResponse = unknown;
6159
+ type PropertyControllerDeleteData = {
6080
6160
  /**
6081
- * Region code for tenant context
6161
+ * Property key
6082
6162
  */
6083
- region: 'ad' | '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
- requestBody: Array<string>;
6163
+ key: string;
6085
6164
  };
6086
- type PriceControllerBulkCreateResponse = Array<PriceResponseDto>;
6165
+ type PropertyControllerDeleteResponse = void;
6087
6166
  type RecurringRuleControllerCreateData = {
6088
6167
  /**
6089
6168
  * Region code for tenant context
@@ -6230,7 +6309,7 @@ type ExpectedTransactionControllerUndoSkipData = {
6230
6309
  */
6231
6310
  region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6232
6311
  };
6233
- type ExpectedTransactionControllerUndoSkipResponse = ExpectedTransactionResponseDto;
6312
+ type ExpectedTransactionControllerUndoSkipResponse = void;
6234
6313
  type ExpectedTransactionControllerConfirmMatchData = {
6235
6314
  /**
6236
6315
  * Expected transaction ID
@@ -6253,7 +6332,7 @@ type ExpectedTransactionControllerUnmatchData = {
6253
6332
  */
6254
6333
  region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6255
6334
  };
6256
- type ExpectedTransactionControllerUnmatchResponse = unknown;
6335
+ type ExpectedTransactionControllerUnmatchResponse = void;
6257
6336
  type ExpectedTransactionControllerEnterNowData = {
6258
6337
  /**
6259
6338
  * Expected transaction ID
@@ -6277,120 +6356,6 @@ type ForecastControllerGetForecastData = {
6277
6356
  region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6278
6357
  };
6279
6358
  type ForecastControllerGetForecastResponse = ForecastResponseDto;
6280
- type ReportingControllerGetPortfolioTrendsData = {
6281
- /**
6282
- * Data granularity
6283
- */
6284
- granularity?: 'day' | 'week' | 'month';
6285
- /**
6286
- * Time period
6287
- */
6288
- period?: '1m' | '3m' | '6m' | '1y';
6289
- /**
6290
- * Region code for tenant context
6291
- */
6292
- region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6293
- };
6294
- type ReportingControllerGetPortfolioTrendsResponse = PortfolioTrendsResponseDto;
6295
- type ReportingControllerGetCashFlowTrendsData = {
6296
- /**
6297
- * Data granularity (accepted for API symmetry; v1 returns month buckets)
6298
- */
6299
- granularity?: 'day' | 'week' | 'month';
6300
- /**
6301
- * Time period
6302
- */
6303
- period?: '1m' | '3m' | '6m' | '1y';
6304
- /**
6305
- * Region code for tenant context
6306
- */
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';
6308
- };
6309
- type ReportingControllerGetCashFlowTrendsResponse = CashFlowTrendsResponseDto;
6310
- type ReportingControllerGenerateSnapshotData = {
6311
- /**
6312
- * Region code for tenant context
6313
- */
6314
- region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6315
- /**
6316
- * Optional date (defaults to today)
6317
- */
6318
- requestBody: GenerateSnapshotBody;
6319
- };
6320
- type ReportingControllerGenerateSnapshotResponse = GenerateSnapshotResponse;
6321
- type ReportingControllerBackfillSnapshotsData = {
6322
- /**
6323
- * Region code for tenant context
6324
- */
6325
- region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6326
- requestBody: BackfillSnapshotsBody;
6327
- };
6328
- type ReportingControllerBackfillSnapshotsResponse = BackfillSnapshotsResponse;
6329
- type UserControllerDeleteOwnUserData = {
6330
- requestBody: DeleteOwnUserDto;
6331
- };
6332
- type UserControllerDeleteOwnUserResponse = void;
6333
- type UserControllerGetUserData = {
6334
- acceptLanguage: string;
6335
- };
6336
- type UserControllerGetUserResponse = UserResponseDto;
6337
- type UserControllerSignupUserData = {
6338
- requestBody: SignupDto;
6339
- };
6340
- type UserControllerSignupUserResponse = SignupResponseDto;
6341
- type UserControllerDeleteUserData = {
6342
- /**
6343
- * User ID to delete
6344
- */
6345
- id: string;
6346
- };
6347
- type UserControllerDeleteUserResponse = void;
6348
- type UserControllerGetUserInfoData = {
6349
- /**
6350
- * User ID
6351
- */
6352
- id: string;
6353
- };
6354
- type UserControllerGetUserInfoResponse = unknown;
6355
- type UserControllerUpdateUserSettingData = {
6356
- requestBody: UpdateUserSettingDto;
6357
- };
6358
- type UserControllerUpdateUserSettingResponse = unknown;
6359
- type UserControllerGetAllUserSettingsByPageData = {
6360
- /**
6361
- * Page number
6362
- */
6363
- pageNo: number;
6364
- /**
6365
- * Page size
6366
- */
6367
- pageSize: number;
6368
- };
6369
- type UserControllerGetAllUserSettingsByPageResponse = unknown;
6370
- type UserControllerGetAssetLiabilitySummaryResponse = unknown;
6371
- type PropertyControllerGetAllResponse = unknown;
6372
- type PropertyControllerGetByKeyData = {
6373
- /**
6374
- * Property key
6375
- */
6376
- key: string;
6377
- };
6378
- type PropertyControllerGetByKeyResponse = unknown;
6379
- type PropertyControllerUpdateData = {
6380
- /**
6381
- * Property key
6382
- */
6383
- key: string;
6384
- requestBody: UpdatePropertyDto;
6385
- };
6386
- type PropertyControllerUpdateResponse = unknown;
6387
- type PropertyControllerDeleteData = {
6388
- /**
6389
- * Property key
6390
- */
6391
- key: string;
6392
- };
6393
- type PropertyControllerDeleteResponse = void;
6394
6359
  type TransactionRuleControllerCreateData = {
6395
6360
  /**
6396
6361
  * Region code for tenant context
@@ -6654,7 +6619,7 @@ type ReconciliationControllerHistoryData = {
6654
6619
  region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6655
6620
  };
6656
6621
  type ReconciliationControllerHistoryResponse = Array<ReconciliationRecordDto>;
6657
- type ExportControllerExportBeancountResponse = unknown;
6622
+ type ExportControllerExportBeancountResponse = Blob | File;
6658
6623
  type FileImportControllerImportFileData = {
6659
6624
  /**
6660
6625
  * Bill file to import
@@ -6878,6 +6843,21 @@ type PlatformControllerMatchPlatformsData = {
6878
6843
  region?: string;
6879
6844
  };
6880
6845
  type PlatformControllerMatchPlatformsResponse = PlatformMatchResponseDto;
6846
+ type PlatformControllerGetPlatformStandardsData = {
6847
+ /**
6848
+ * Platform ID (from a match result)
6849
+ */
6850
+ id: string;
6851
+ /**
6852
+ * Region code (ISO 3166-1 alpha-2, case-insensitive). Required for global platforms (countryCode null) — resolved as their template region; ignored when the platform has its own countryCode.
6853
+ */
6854
+ region?: string;
6855
+ /**
6856
+ * Filter templates by account type (path first segment)
6857
+ */
6858
+ type?: 'Assets' | 'Liabilities' | 'Income' | 'Expenses' | 'Equity';
6859
+ };
6860
+ type PlatformControllerGetPlatformStandardsResponse = PlatformStandardsResponseDto;
6881
6861
  type PlatformControllerUpdateData = {
6882
6862
  /**
6883
6863
  * Platform ID
@@ -7662,7 +7642,7 @@ type $OpenApiTs = {
7662
7642
  /**
7663
7643
  * Payee profile unverified successfully
7664
7644
  */
7665
- 200: PayeeProfileResponseDto;
7645
+ 204: void;
7666
7646
  /**
7667
7647
  * Admin access required
7668
7648
  */
@@ -7765,7 +7745,79 @@ type $OpenApiTs = {
7765
7745
  /**
7766
7746
  * Commodities created successfully
7767
7747
  */
7768
- 201: Array<CommodityResponseDto>;
7748
+ 201: Array<CommodityResponseDto>;
7749
+ };
7750
+ };
7751
+ };
7752
+ '/api/v1/{region}/reporting/portfolio/trends': {
7753
+ get: {
7754
+ req: ReportingControllerGetPortfolioTrendsData;
7755
+ res: {
7756
+ /**
7757
+ * Trends retrieved successfully
7758
+ */
7759
+ 200: PortfolioTrendsResponseDto;
7760
+ /**
7761
+ * User not authenticated
7762
+ */
7763
+ 401: unknown;
7764
+ };
7765
+ };
7766
+ };
7767
+ '/api/v1/{region}/reporting/cash-flow/trends': {
7768
+ get: {
7769
+ req: ReportingControllerGetCashFlowTrendsData;
7770
+ res: {
7771
+ /**
7772
+ * Cash-flow trends retrieved successfully
7773
+ */
7774
+ 200: CashFlowTrendsResponseDto;
7775
+ /**
7776
+ * User not authenticated
7777
+ */
7778
+ 401: unknown;
7779
+ };
7780
+ };
7781
+ };
7782
+ '/api/v1/{region}/reporting/snapshots/generate': {
7783
+ post: {
7784
+ req: ReportingControllerGenerateSnapshotData;
7785
+ res: {
7786
+ /**
7787
+ * Snapshot generated successfully
7788
+ */
7789
+ 200: GenerateSnapshotResponse;
7790
+ /**
7791
+ * Invalid date format
7792
+ */
7793
+ 400: unknown;
7794
+ /**
7795
+ * User not authenticated
7796
+ */
7797
+ 401: unknown;
7798
+ };
7799
+ };
7800
+ };
7801
+ '/api/v1/{region}/reporting/snapshots/backfill': {
7802
+ post: {
7803
+ req: ReportingControllerBackfillSnapshotsData;
7804
+ res: {
7805
+ /**
7806
+ * Backfill completed successfully
7807
+ */
7808
+ 200: BackfillSnapshotsResponse;
7809
+ /**
7810
+ * Invalid date format or range
7811
+ */
7812
+ 400: unknown;
7813
+ /**
7814
+ * User not authenticated
7815
+ */
7816
+ 401: unknown;
7817
+ /**
7818
+ * Backfill already in progress for this user
7819
+ */
7820
+ 409: unknown;
7769
7821
  };
7770
7822
  };
7771
7823
  };
@@ -7853,514 +7905,442 @@ type $OpenApiTs = {
7853
7905
  };
7854
7906
  };
7855
7907
  };
7856
- '/api/v1/{region}/bean/recurring-rules': {
7857
- post: {
7858
- req: RecurringRuleControllerCreateData;
7908
+ '/api/v1/users': {
7909
+ delete: {
7910
+ req: UserControllerDeleteOwnUserData;
7859
7911
  res: {
7860
7912
  /**
7861
- * Rule created successfully
7862
- */
7863
- 201: RecurringRuleResponseDto;
7864
- /**
7865
- * Invalid input data (e.g., autoCreate without accounts)
7913
+ * User deleted successfully
7866
7914
  */
7867
- 400: unknown;
7915
+ 204: void;
7868
7916
  /**
7869
- * Rule with same name already exists
7917
+ * Invalid access token
7870
7918
  */
7871
- 409: unknown;
7919
+ 403: unknown;
7872
7920
  };
7873
7921
  };
7874
7922
  get: {
7875
- req: RecurringRuleControllerFindAllData;
7923
+ req: UserControllerGetUserData;
7876
7924
  res: {
7877
7925
  /**
7878
- * Rules retrieved successfully
7926
+ * User retrieved successfully
7879
7927
  */
7880
- 200: Array<RecurringRuleResponseDto>;
7928
+ 200: UserResponseDto;
7881
7929
  };
7882
7930
  };
7883
- };
7884
- '/api/v1/{region}/bean/recurring-rules/from-transaction/{transactionId}': {
7885
7931
  post: {
7886
- req: RecurringRuleControllerCreateFromTransactionData;
7887
- res: {
7888
- /**
7889
- * Rule created successfully
7890
- */
7891
- 201: RecurringRuleResponseDto;
7892
- /**
7893
- * Transaction not found
7894
- */
7895
- 404: ApiProblemResponseDto;
7896
- /**
7897
- * Rule with same name already exists or transaction already linked
7898
- */
7899
- 409: ApiProblemResponseDto;
7900
- };
7901
- };
7902
- };
7903
- '/api/v1/{region}/bean/recurring-rules/{id}': {
7904
- get: {
7905
- req: RecurringRuleControllerFindOneData;
7906
- res: {
7907
- /**
7908
- * Rule retrieved successfully
7909
- */
7910
- 200: RecurringRuleResponseDto;
7911
- /**
7912
- * Rule not found
7913
- */
7914
- 404: unknown;
7915
- };
7916
- };
7917
- patch: {
7918
- req: RecurringRuleControllerUpdateData;
7932
+ req: UserControllerSignupUserData;
7919
7933
  res: {
7920
7934
  /**
7921
- * Rule updated successfully
7935
+ * User created successfully
7922
7936
  */
7923
- 200: RecurringRuleResponseDto;
7937
+ 201: SignupResponseDto;
7924
7938
  /**
7925
- * Invalid input data
7939
+ * Invalid Turnstile token (when Turnstile is enabled)
7926
7940
  */
7927
7941
  400: unknown;
7928
7942
  /**
7929
- * Rule not found
7943
+ * User signup is disabled
7930
7944
  */
7931
- 404: unknown;
7945
+ 403: unknown;
7932
7946
  };
7933
7947
  };
7948
+ };
7949
+ '/api/v1/users/{id}': {
7934
7950
  delete: {
7935
- req: RecurringRuleControllerDeleteData;
7951
+ req: UserControllerDeleteUserData;
7936
7952
  res: {
7937
7953
  /**
7938
- * Rule deleted successfully
7954
+ * User deleted successfully
7939
7955
  */
7940
7956
  204: void;
7941
7957
  /**
7942
- * Rule not found
7958
+ * Cannot delete own account or insufficient permissions
7943
7959
  */
7944
- 404: unknown;
7960
+ 403: unknown;
7945
7961
  };
7946
7962
  };
7947
7963
  };
7948
- '/api/v1/{region}/bean/recurring-rules/{id}/stats': {
7964
+ '/api/v1/users/{id}/info': {
7949
7965
  get: {
7950
- req: RecurringRuleControllerGetWithStatsData;
7966
+ req: UserControllerGetUserInfoData;
7951
7967
  res: {
7952
7968
  /**
7953
- * Rule with stats retrieved successfully
7969
+ * User info retrieved successfully
7954
7970
  */
7955
- 200: RecurringRuleWithStatsResponseDto;
7971
+ 200: unknown;
7956
7972
  /**
7957
- * Rule not found
7973
+ * Cannot access other user info without admin permission
7958
7974
  */
7959
- 404: unknown;
7975
+ 403: unknown;
7960
7976
  };
7961
7977
  };
7962
7978
  };
7963
- '/api/v1/{region}/bean/expected-transactions': {
7964
- get: {
7965
- req: ExpectedTransactionControllerFindAllData;
7979
+ '/api/v1/users/setting': {
7980
+ put: {
7981
+ req: UserControllerUpdateUserSettingData;
7966
7982
  res: {
7967
7983
  /**
7968
- * Expected transactions retrieved successfully
7984
+ * Settings updated successfully
7969
7985
  */
7970
- 200: ExpectedTransactionListResponseDto;
7971
- };
7972
- };
7973
- };
7974
- '/api/v1/{region}/bean/expected-transactions/overdue': {
7975
- get: {
7976
- req: ExpectedTransactionControllerFindOverdueData;
7977
- res: {
7986
+ 200: unknown;
7978
7987
  /**
7979
- * Overdue transactions retrieved successfully
7988
+ * Insufficient permissions
7980
7989
  */
7981
- 200: ExpectedTransactionListResponseDto;
7990
+ 403: unknown;
7982
7991
  };
7983
7992
  };
7984
7993
  };
7985
- '/api/v1/{region}/bean/expected-transactions/{id}': {
7994
+ '/api/v1/users/settings-by-page': {
7986
7995
  get: {
7987
- req: ExpectedTransactionControllerFindOneData;
7996
+ req: UserControllerGetAllUserSettingsByPageData;
7988
7997
  res: {
7989
7998
  /**
7990
- * Expected transaction retrieved successfully
7991
- */
7992
- 200: ExpectedTransactionResponseDto;
7993
- /**
7994
- * Expected transaction not found
7999
+ * Settings list retrieved successfully
7995
8000
  */
7996
- 404: unknown;
8001
+ 200: unknown;
7997
8002
  };
7998
8003
  };
7999
8004
  };
8000
- '/api/v1/{region}/bean/expected-transactions/{id}/skip': {
8001
- post: {
8002
- req: ExpectedTransactionControllerSkipData;
8003
- res: {
8004
- /**
8005
- * Expected transaction skipped successfully
8006
- */
8007
- 200: ExpectedTransactionResponseDto;
8008
- /**
8009
- * Cannot skip - not in PENDING status
8010
- */
8011
- 400: unknown;
8012
- /**
8013
- * Expected transaction not found
8014
- */
8015
- 404: unknown;
8016
- };
8017
- };
8018
- delete: {
8019
- req: ExpectedTransactionControllerUndoSkipData;
8005
+ '/api/v1/users/asset-liability-summary': {
8006
+ get: {
8020
8007
  res: {
8021
8008
  /**
8022
- * Skip undone successfully
8023
- */
8024
- 200: ExpectedTransactionResponseDto;
8025
- /**
8026
- * Cannot undo - not in SKIPPED status
8027
- */
8028
- 400: unknown;
8029
- /**
8030
- * Expected transaction not found
8009
+ * Summary retrieved successfully
8031
8010
  */
8032
- 404: unknown;
8011
+ 200: unknown;
8033
8012
  };
8034
8013
  };
8035
8014
  };
8036
- '/api/v1/{region}/bean/expected-transactions/{id}/match': {
8037
- post: {
8038
- req: ExpectedTransactionControllerConfirmMatchData;
8015
+ '/api/v1/admin/properties': {
8016
+ get: {
8039
8017
  res: {
8040
8018
  /**
8041
- * Match confirmed successfully
8019
+ * Properties retrieved successfully
8042
8020
  */
8043
8021
  200: unknown;
8044
8022
  /**
8045
- * Cannot match - not in PENDING status
8046
- */
8047
- 400: unknown;
8048
- /**
8049
- * Expected or actual transaction not found
8023
+ * Unauthorized
8050
8024
  */
8051
- 404: unknown;
8025
+ 401: unknown;
8052
8026
  /**
8053
- * Actual transaction already matched to another rule
8027
+ * Forbidden - insufficient permissions
8054
8028
  */
8055
- 409: unknown;
8029
+ 403: unknown;
8056
8030
  };
8057
8031
  };
8058
- delete: {
8059
- req: ExpectedTransactionControllerUnmatchData;
8032
+ };
8033
+ '/api/v1/admin/properties/{key}': {
8034
+ get: {
8035
+ req: PropertyControllerGetByKeyData;
8060
8036
  res: {
8061
8037
  /**
8062
- * Match removed successfully
8038
+ * Property retrieved successfully
8063
8039
  */
8064
8040
  200: unknown;
8065
8041
  /**
8066
- * Cannot unmatch - not in COMPLETED status
8067
- */
8068
- 400: unknown;
8069
- /**
8070
- * Expected transaction not found
8071
- */
8072
- 404: unknown;
8073
- };
8074
- };
8075
- };
8076
- '/api/v1/{region}/bean/expected-transactions/{id}/enter': {
8077
- post: {
8078
- req: ExpectedTransactionControllerEnterNowData;
8079
- res: {
8080
- /**
8081
- * Transaction created successfully
8042
+ * Unauthorized
8082
8043
  */
8083
- 201: unknown;
8044
+ 401: unknown;
8084
8045
  /**
8085
- * Cannot enter - not in PENDING status or missing accounts
8046
+ * Forbidden - insufficient permissions
8086
8047
  */
8087
- 400: unknown;
8048
+ 403: unknown;
8088
8049
  /**
8089
- * Expected transaction or accounts not found
8050
+ * Property not found
8090
8051
  */
8091
8052
  404: unknown;
8092
8053
  };
8093
8054
  };
8094
- };
8095
- '/api/v1/{region}/bean/recurring/forecast': {
8096
- get: {
8097
- req: ForecastControllerGetForecastData;
8098
- res: {
8099
- /**
8100
- * Forecast retrieved successfully
8101
- */
8102
- 200: ForecastResponseDto;
8103
- };
8104
- };
8105
- };
8106
- '/api/v1/{region}/reporting/portfolio/trends': {
8107
- get: {
8108
- req: ReportingControllerGetPortfolioTrendsData;
8055
+ put: {
8056
+ req: PropertyControllerUpdateData;
8109
8057
  res: {
8110
8058
  /**
8111
- * Trends retrieved successfully
8059
+ * Property updated successfully
8112
8060
  */
8113
- 200: PortfolioTrendsResponseDto;
8061
+ 200: unknown;
8114
8062
  /**
8115
- * User not authenticated
8063
+ * Unauthorized
8116
8064
  */
8117
8065
  401: unknown;
8118
- };
8119
- };
8120
- };
8121
- '/api/v1/{region}/reporting/cash-flow/trends': {
8122
- get: {
8123
- req: ReportingControllerGetCashFlowTrendsData;
8124
- res: {
8125
- /**
8126
- * Cash-flow trends retrieved successfully
8127
- */
8128
- 200: CashFlowTrendsResponseDto;
8129
8066
  /**
8130
- * User not authenticated
8067
+ * Forbidden - insufficient permissions
8131
8068
  */
8132
- 401: unknown;
8069
+ 403: unknown;
8133
8070
  };
8134
- };
8135
- };
8136
- '/api/v1/{region}/reporting/snapshots/generate': {
8137
- post: {
8138
- req: ReportingControllerGenerateSnapshotData;
8071
+ };
8072
+ delete: {
8073
+ req: PropertyControllerDeleteData;
8139
8074
  res: {
8140
8075
  /**
8141
- * Snapshot generated successfully
8076
+ * Property deleted successfully
8142
8077
  */
8143
- 200: GenerateSnapshotResponse;
8078
+ 204: void;
8144
8079
  /**
8145
- * Invalid date format
8080
+ * Unauthorized
8146
8081
  */
8147
- 400: unknown;
8082
+ 401: unknown;
8148
8083
  /**
8149
- * User not authenticated
8084
+ * Forbidden - insufficient permissions
8150
8085
  */
8151
- 401: unknown;
8086
+ 403: unknown;
8087
+ /**
8088
+ * Property not found
8089
+ */
8090
+ 404: unknown;
8152
8091
  };
8153
8092
  };
8154
8093
  };
8155
- '/api/v1/{region}/reporting/snapshots/backfill': {
8094
+ '/api/v1/{region}/bean/recurring-rules': {
8156
8095
  post: {
8157
- req: ReportingControllerBackfillSnapshotsData;
8096
+ req: RecurringRuleControllerCreateData;
8158
8097
  res: {
8159
8098
  /**
8160
- * Backfill completed successfully
8099
+ * Rule created successfully
8161
8100
  */
8162
- 200: BackfillSnapshotsResponse;
8101
+ 201: RecurringRuleResponseDto;
8163
8102
  /**
8164
- * Invalid date format or range
8103
+ * Invalid input data (e.g., autoCreate without accounts)
8165
8104
  */
8166
8105
  400: unknown;
8167
8106
  /**
8168
- * User not authenticated
8107
+ * Rule with same name already exists
8169
8108
  */
8170
- 401: unknown;
8109
+ 409: unknown;
8110
+ };
8111
+ };
8112
+ get: {
8113
+ req: RecurringRuleControllerFindAllData;
8114
+ res: {
8171
8115
  /**
8172
- * Backfill already in progress for this user
8116
+ * Rules retrieved successfully
8173
8117
  */
8174
- 409: unknown;
8118
+ 200: Array<RecurringRuleResponseDto>;
8175
8119
  };
8176
8120
  };
8177
8121
  };
8178
- '/api/v1/users': {
8179
- delete: {
8180
- req: UserControllerDeleteOwnUserData;
8122
+ '/api/v1/{region}/bean/recurring-rules/from-transaction/{transactionId}': {
8123
+ post: {
8124
+ req: RecurringRuleControllerCreateFromTransactionData;
8181
8125
  res: {
8182
8126
  /**
8183
- * User deleted successfully
8127
+ * Rule created successfully
8184
8128
  */
8185
- 204: void;
8129
+ 201: RecurringRuleResponseDto;
8186
8130
  /**
8187
- * Invalid access token
8131
+ * Transaction not found
8188
8132
  */
8189
- 403: unknown;
8133
+ 404: ApiProblemResponseDto;
8134
+ /**
8135
+ * Rule with same name already exists or transaction already linked
8136
+ */
8137
+ 409: ApiProblemResponseDto;
8190
8138
  };
8191
8139
  };
8140
+ };
8141
+ '/api/v1/{region}/bean/recurring-rules/{id}': {
8192
8142
  get: {
8193
- req: UserControllerGetUserData;
8143
+ req: RecurringRuleControllerFindOneData;
8194
8144
  res: {
8195
8145
  /**
8196
- * User retrieved successfully
8146
+ * Rule retrieved successfully
8197
8147
  */
8198
- 200: UserResponseDto;
8148
+ 200: RecurringRuleResponseDto;
8149
+ /**
8150
+ * Rule not found
8151
+ */
8152
+ 404: unknown;
8199
8153
  };
8200
8154
  };
8201
- post: {
8202
- req: UserControllerSignupUserData;
8155
+ patch: {
8156
+ req: RecurringRuleControllerUpdateData;
8203
8157
  res: {
8204
8158
  /**
8205
- * User created successfully
8159
+ * Rule updated successfully
8206
8160
  */
8207
- 201: SignupResponseDto;
8161
+ 200: RecurringRuleResponseDto;
8208
8162
  /**
8209
- * Invalid Turnstile token (when Turnstile is enabled)
8163
+ * Invalid input data
8210
8164
  */
8211
8165
  400: unknown;
8212
8166
  /**
8213
- * User signup is disabled
8167
+ * Rule not found
8214
8168
  */
8215
- 403: unknown;
8169
+ 404: unknown;
8216
8170
  };
8217
8171
  };
8218
- };
8219
- '/api/v1/users/{id}': {
8220
8172
  delete: {
8221
- req: UserControllerDeleteUserData;
8173
+ req: RecurringRuleControllerDeleteData;
8222
8174
  res: {
8223
8175
  /**
8224
- * User deleted successfully
8176
+ * Rule deleted successfully
8225
8177
  */
8226
8178
  204: void;
8227
8179
  /**
8228
- * Cannot delete own account or insufficient permissions
8180
+ * Rule not found
8229
8181
  */
8230
- 403: unknown;
8182
+ 404: unknown;
8231
8183
  };
8232
8184
  };
8233
8185
  };
8234
- '/api/v1/users/{id}/info': {
8186
+ '/api/v1/{region}/bean/recurring-rules/{id}/stats': {
8235
8187
  get: {
8236
- req: UserControllerGetUserInfoData;
8188
+ req: RecurringRuleControllerGetWithStatsData;
8237
8189
  res: {
8238
8190
  /**
8239
- * User info retrieved successfully
8191
+ * Rule with stats retrieved successfully
8240
8192
  */
8241
- 200: unknown;
8193
+ 200: RecurringRuleWithStatsResponseDto;
8242
8194
  /**
8243
- * Cannot access other user info without admin permission
8195
+ * Rule not found
8244
8196
  */
8245
- 403: unknown;
8197
+ 404: unknown;
8246
8198
  };
8247
8199
  };
8248
8200
  };
8249
- '/api/v1/users/setting': {
8250
- put: {
8251
- req: UserControllerUpdateUserSettingData;
8201
+ '/api/v1/{region}/bean/expected-transactions': {
8202
+ get: {
8203
+ req: ExpectedTransactionControllerFindAllData;
8252
8204
  res: {
8253
8205
  /**
8254
- * Settings updated successfully
8255
- */
8256
- 200: unknown;
8257
- /**
8258
- * Insufficient permissions
8206
+ * Expected transactions retrieved successfully
8259
8207
  */
8260
- 403: unknown;
8208
+ 200: ExpectedTransactionListResponseDto;
8261
8209
  };
8262
8210
  };
8263
8211
  };
8264
- '/api/v1/users/settings-by-page': {
8212
+ '/api/v1/{region}/bean/expected-transactions/overdue': {
8265
8213
  get: {
8266
- req: UserControllerGetAllUserSettingsByPageData;
8214
+ req: ExpectedTransactionControllerFindOverdueData;
8267
8215
  res: {
8268
8216
  /**
8269
- * Settings list retrieved successfully
8217
+ * Overdue transactions retrieved successfully
8270
8218
  */
8271
- 200: unknown;
8219
+ 200: ExpectedTransactionListResponseDto;
8272
8220
  };
8273
8221
  };
8274
8222
  };
8275
- '/api/v1/users/asset-liability-summary': {
8223
+ '/api/v1/{region}/bean/expected-transactions/{id}': {
8276
8224
  get: {
8225
+ req: ExpectedTransactionControllerFindOneData;
8277
8226
  res: {
8278
8227
  /**
8279
- * Summary retrieved successfully
8228
+ * Expected transaction retrieved successfully
8280
8229
  */
8281
- 200: unknown;
8230
+ 200: ExpectedTransactionResponseDto;
8231
+ /**
8232
+ * Expected transaction not found
8233
+ */
8234
+ 404: unknown;
8282
8235
  };
8283
8236
  };
8284
8237
  };
8285
- '/api/v1/admin/properties': {
8286
- get: {
8238
+ '/api/v1/{region}/bean/expected-transactions/{id}/skip': {
8239
+ post: {
8240
+ req: ExpectedTransactionControllerSkipData;
8287
8241
  res: {
8288
8242
  /**
8289
- * Properties retrieved successfully
8243
+ * Expected transaction skipped successfully
8290
8244
  */
8291
- 200: unknown;
8245
+ 200: ExpectedTransactionResponseDto;
8292
8246
  /**
8293
- * Unauthorized
8247
+ * Cannot skip - not in PENDING status
8294
8248
  */
8295
- 401: unknown;
8249
+ 400: unknown;
8296
8250
  /**
8297
- * Forbidden - insufficient permissions
8251
+ * Expected transaction not found
8298
8252
  */
8299
- 403: unknown;
8253
+ 404: unknown;
8300
8254
  };
8301
8255
  };
8302
- };
8303
- '/api/v1/admin/properties/{key}': {
8304
- get: {
8305
- req: PropertyControllerGetByKeyData;
8256
+ delete: {
8257
+ req: ExpectedTransactionControllerUndoSkipData;
8306
8258
  res: {
8307
8259
  /**
8308
- * Property retrieved successfully
8309
- */
8310
- 200: unknown;
8311
- /**
8312
- * Unauthorized
8260
+ * Skip undone successfully
8313
8261
  */
8314
- 401: unknown;
8262
+ 204: void;
8315
8263
  /**
8316
- * Forbidden - insufficient permissions
8264
+ * Cannot undo - not in SKIPPED status
8317
8265
  */
8318
- 403: unknown;
8266
+ 400: unknown;
8319
8267
  /**
8320
- * Property not found
8268
+ * Expected transaction not found
8321
8269
  */
8322
8270
  404: unknown;
8323
8271
  };
8324
8272
  };
8325
- put: {
8326
- req: PropertyControllerUpdateData;
8273
+ };
8274
+ '/api/v1/{region}/bean/expected-transactions/{id}/match': {
8275
+ post: {
8276
+ req: ExpectedTransactionControllerConfirmMatchData;
8327
8277
  res: {
8328
8278
  /**
8329
- * Property updated successfully
8279
+ * Match confirmed successfully
8330
8280
  */
8331
8281
  200: unknown;
8332
8282
  /**
8333
- * Unauthorized
8283
+ * Cannot match - not in PENDING status
8334
8284
  */
8335
- 401: unknown;
8285
+ 400: unknown;
8336
8286
  /**
8337
- * Forbidden - insufficient permissions
8287
+ * Expected or actual transaction not found
8338
8288
  */
8339
- 403: unknown;
8289
+ 404: unknown;
8290
+ /**
8291
+ * Actual transaction already matched to another rule
8292
+ */
8293
+ 409: unknown;
8340
8294
  };
8341
8295
  };
8342
8296
  delete: {
8343
- req: PropertyControllerDeleteData;
8297
+ req: ExpectedTransactionControllerUnmatchData;
8344
8298
  res: {
8345
8299
  /**
8346
- * Property deleted successfully
8300
+ * Match removed successfully
8347
8301
  */
8348
8302
  204: void;
8349
8303
  /**
8350
- * Unauthorized
8304
+ * Cannot unmatch - not in COMPLETED status
8351
8305
  */
8352
- 401: unknown;
8306
+ 400: unknown;
8353
8307
  /**
8354
- * Forbidden - insufficient permissions
8308
+ * Expected transaction not found
8355
8309
  */
8356
- 403: unknown;
8310
+ 404: unknown;
8311
+ };
8312
+ };
8313
+ };
8314
+ '/api/v1/{region}/bean/expected-transactions/{id}/enter': {
8315
+ post: {
8316
+ req: ExpectedTransactionControllerEnterNowData;
8317
+ res: {
8357
8318
  /**
8358
- * Property not found
8319
+ * Transaction created successfully
8320
+ */
8321
+ 201: unknown;
8322
+ /**
8323
+ * Cannot enter - not in PENDING status or missing accounts
8324
+ */
8325
+ 400: unknown;
8326
+ /**
8327
+ * Expected transaction or accounts not found
8359
8328
  */
8360
8329
  404: unknown;
8361
8330
  };
8362
8331
  };
8363
8332
  };
8333
+ '/api/v1/{region}/bean/recurring/forecast': {
8334
+ get: {
8335
+ req: ForecastControllerGetForecastData;
8336
+ res: {
8337
+ /**
8338
+ * Forecast retrieved successfully
8339
+ */
8340
+ 200: ForecastResponseDto;
8341
+ };
8342
+ };
8343
+ };
8364
8344
  '/api/v1/{region}/bean/transaction-rules': {
8365
8345
  post: {
8366
8346
  req: TransactionRuleControllerCreateData;
@@ -8758,7 +8738,10 @@ type $OpenApiTs = {
8758
8738
  '/api/v1/{region}/bean/export/beancount': {
8759
8739
  get: {
8760
8740
  res: {
8761
- 200: unknown;
8741
+ /**
8742
+ * ZIP archive (application/zip) streamed as an attachment
8743
+ */
8744
+ 200: Blob | File;
8762
8745
  };
8763
8746
  };
8764
8747
  };
@@ -9139,6 +9122,17 @@ type $OpenApiTs = {
9139
9122
  };
9140
9123
  };
9141
9124
  };
9125
+ '/api/v1/bean/platforms/{id}/standards': {
9126
+ get: {
9127
+ req: PlatformControllerGetPlatformStandardsData;
9128
+ res: {
9129
+ /**
9130
+ * Resolved region plus the merged account-standard catalog of that region (groupable by productCategory client-side)
9131
+ */
9132
+ 200: PlatformStandardsResponseDto;
9133
+ };
9134
+ };
9135
+ };
9142
9136
  '/api/v1/bean/platforms/{id}': {
9143
9137
  put: {
9144
9138
  req: PlatformControllerUpdateData;
@@ -9317,7 +9311,14 @@ type $OpenApiTs = {
9317
9311
  '/api/v1/cache/flush': {
9318
9312
  post: {
9319
9313
  res: {
9320
- 201: unknown;
9314
+ /**
9315
+ * Cache flushed successfully
9316
+ */
9317
+ 200: unknown;
9318
+ /**
9319
+ * Admin access required
9320
+ */
9321
+ 403: ApiProblemResponseDto;
9321
9322
  };
9322
9323
  };
9323
9324
  };
@@ -9593,7 +9594,7 @@ declare class BeanTransactionsService {
9593
9594
  * @param data.offset Number of items to skip (default: 0)
9594
9595
  * @param data.dateFrom Filter by start date (inclusive), format: YYYY-MM-DD
9595
9596
  * @param data.dateTo Filter by end date (inclusive), format: YYYY-MM-DD
9596
- * @param data.status Filter by transaction status
9597
+ * @param data.status Filter by transaction status: single value, comma-separated multi-value (e.g. VOIDED,SUPERSEDED), or ALL to include audit rows. Defaults to ACTIVE-only (ADR-0128; previously unfiltered — breaking change).
9597
9598
  * @param data.search Search in narration and payee fields (max 200 chars)
9598
9599
  * @param data.accountId Filter by account ID (transactions with postings to this account)
9599
9600
  * @param data.category Filter by ADR-0075 functional category (Group segment); matches any posting to an account whose derived Group segment equals this value. Must be accompanied by flow (ADR-0126).
@@ -9903,4 +9904,4 @@ type OpenAPIConfig = {
9903
9904
  };
9904
9905
  declare const OpenAPI: OpenAPIConfig;
9905
9906
 
9906
- 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 ExpectedTransactionDto, 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 FieldHintDto, 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 ParserContributionControllerCreateData, type ParserContributionControllerCreateResponse, type ParserContributionExamplesDto, type ParserContributionFieldHintsDto, type ParserContributionMetaDto, type ParserContributionRelayResponseDto, type ParserContributionRequestDto, type ParserContributionSamplesDto, 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 TransactionListItemDto, type TransactionListResponseDto, type TransactionListSummaryDto, type TransactionListViewpointDto, 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 accountType, 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 flow, type format, 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 region, type role, type scenario, type signConvention, 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 type5, type value, type viewMode };
9907
+ 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 ExpectedTransactionDto, 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 FieldHintDto, 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 NlpAccountCandidateDto, 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 ParserContributionControllerCreateData, type ParserContributionControllerCreateResponse, type ParserContributionExamplesDto, type ParserContributionFieldHintsDto, type ParserContributionMetaDto, type ParserContributionRelayResponseDto, type ParserContributionRequestDto, type ParserContributionSamplesDto, 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 PlatformControllerGetPlatformStandardsData, type PlatformControllerGetPlatformStandardsResponse, type PlatformControllerMatchPlatformsData, type PlatformControllerMatchPlatformsResponse, type PlatformControllerUpdateData, type PlatformControllerUpdateResponse, type PlatformGroupDto, type PlatformListItemDto, type PlatformMatchResponseDto, type PlatformMatchResultDto, type PlatformStandardsPlatformDto, type PlatformStandardsResponseDto, 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 TransactionListItemDto, type TransactionListResponseDto, type TransactionListSummaryDto, type TransactionListViewpointDto, 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 accountType, 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 flow, type format, 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 region, type role, type scenario, type signConvention, 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 type5, type value, type viewMode, type viewpointFlow };