@firela/api-types 0.0.0-canary.3ed455fd → 0.0.0-canary.45a6cc23

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
@@ -1172,17 +1172,17 @@ type ResolveResultDto = {
1172
1172
  [key: string]: string;
1173
1173
  };
1174
1174
  /**
1175
- * Resolution ID for undo
1175
+ * Resolution ID for undo. Absent when the resolver rejected the decision (review stayed PENDING).
1176
1176
  */
1177
- resolutionId: string;
1177
+ resolutionId?: string;
1178
1178
  /**
1179
1179
  * Whether this decision can be undone
1180
1180
  */
1181
- canUndo: boolean;
1181
+ canUndo?: boolean;
1182
1182
  /**
1183
1183
  * Deadline for undo (24h from resolution)
1184
1184
  */
1185
- undoDeadline: string;
1185
+ undoDeadline?: string;
1186
1186
  /**
1187
1187
  * Rule ID if learning was triggered (ACCEPT_AND_LEARN actions). Use this to deep-link to the rule management page.
1188
1188
  */
@@ -2689,6 +2689,92 @@ type UpdatePropertyDto = {
2689
2689
  */
2690
2690
  value: string;
2691
2691
  };
2692
+ type CreateBeanEventDto = {
2693
+ /**
2694
+ * Life event date (ISO 8601)
2695
+ */
2696
+ date: string;
2697
+ /**
2698
+ * Life event type (e.g., "employer", "location", "marital-status") — user-defined, no enum constraint at engine layer
2699
+ */
2700
+ type: string;
2701
+ /**
2702
+ * Life event description. Empty string is a VALID value (distinct from absence).
2703
+ */
2704
+ description: string;
2705
+ /**
2706
+ * Product-side metadata (lives in BeanEvent.meta JSON, never in engine Event fields)
2707
+ */
2708
+ meta?: {
2709
+ [key: string]: unknown;
2710
+ };
2711
+ };
2712
+ type EventResponseDto = {
2713
+ /**
2714
+ * Unique identifier
2715
+ */
2716
+ id: string;
2717
+ /**
2718
+ * User ID (owner of the life event)
2719
+ */
2720
+ userId: string;
2721
+ /**
2722
+ * Life event date (ISO 8601 format)
2723
+ */
2724
+ date: string;
2725
+ /**
2726
+ * Life event type (user-defined, e.g., "employer", "location")
2727
+ */
2728
+ type: string;
2729
+ /**
2730
+ * Life event description. May be an empty string (a valid value distinct from absence).
2731
+ */
2732
+ description: string;
2733
+ /**
2734
+ * Product-side metadata (free-form JSON)
2735
+ */
2736
+ meta: {
2737
+ [key: string]: unknown;
2738
+ };
2739
+ /**
2740
+ * Creation timestamp
2741
+ */
2742
+ createdAt: string;
2743
+ /**
2744
+ * Last update timestamp. Also emitted as the ETag response header for If-Match optimistic concurrency.
2745
+ */
2746
+ updatedAt: string;
2747
+ };
2748
+ type EventListResponseDto = {
2749
+ /**
2750
+ * List of life events
2751
+ */
2752
+ items: Array<EventResponseDto>;
2753
+ /**
2754
+ * Total number of life events matching the query
2755
+ */
2756
+ total: number;
2757
+ };
2758
+ type UpdateBeanEventDto = {
2759
+ /**
2760
+ * Life event date (ISO 8601)
2761
+ */
2762
+ date?: string;
2763
+ /**
2764
+ * Life event type (user-defined)
2765
+ */
2766
+ type?: string;
2767
+ /**
2768
+ * Life event description. Empty string is a VALID value (distinct from absence).
2769
+ */
2770
+ description?: string;
2771
+ /**
2772
+ * Product-side metadata (free-form JSON)
2773
+ */
2774
+ meta?: {
2775
+ [key: string]: unknown;
2776
+ };
2777
+ };
2692
2778
  type FileImportDto = {
2693
2779
  /**
2694
2780
  * Bill file to import (CSV, PDF, OFX, etc.)
@@ -4016,6 +4102,60 @@ type CashFlowResponseDto = {
4016
4102
  */
4017
4103
  warnings?: Array<ExchangeRateWarningDto>;
4018
4104
  };
4105
+ type CategoryGroupDto = {
4106
+ /**
4107
+ * Functional category (account-path Group segment); regional and universal account paths merge under it
4108
+ */
4109
+ category: string;
4110
+ /**
4111
+ * Converted total expense in base currency
4112
+ */
4113
+ totalExpense: string;
4114
+ /**
4115
+ * Share of grand total (0-100); 0 when grand total is 0
4116
+ */
4117
+ sharePct: number;
4118
+ /**
4119
+ * Raw (unconverted) expense per currency
4120
+ */
4121
+ balanceByCurrency: Array<BalanceByCurrencyDto>;
4122
+ /**
4123
+ * Converted total in base currency (omitted when FX missing for all currencies in this category)
4124
+ */
4125
+ convertedBalance?: string;
4126
+ };
4127
+ type ExpensesByCategorySummaryDto = {
4128
+ /**
4129
+ * Total expense across all categories (converted; convertible categories only)
4130
+ */
4131
+ totalExpense: string;
4132
+ /**
4133
+ * Number of categories
4134
+ */
4135
+ categoryCount: number;
4136
+ };
4137
+ type ExpensesByCategoryResponseDto = {
4138
+ /**
4139
+ * Period requested
4140
+ */
4141
+ period: string;
4142
+ /**
4143
+ * Base currency for converted values
4144
+ */
4145
+ baseCurrency: string;
4146
+ /**
4147
+ * Expense groups by functional category, sorted by converted total desc
4148
+ */
4149
+ groups: Array<CategoryGroupDto>;
4150
+ /**
4151
+ * Summary statistics
4152
+ */
4153
+ summary: ExpensesByCategorySummaryDto;
4154
+ /**
4155
+ * Exchange rate warnings (e.g. missing rate for a currency)
4156
+ */
4157
+ warnings?: Array<ExchangeRateWarningDto>;
4158
+ };
4019
4159
  type MonetaryDto = {
4020
4160
  /**
4021
4161
  * Amount (Decimal string)
@@ -4310,6 +4450,14 @@ type TimeSeriesPointDto = {
4310
4450
  change?: {
4311
4451
  [key: string]: unknown;
4312
4452
  };
4453
+ /**
4454
+ * Total assets at this date (in base currency)
4455
+ */
4456
+ assets?: string;
4457
+ /**
4458
+ * Total liabilities at this date (in base currency)
4459
+ */
4460
+ liabilities?: string;
4313
4461
  /**
4314
4462
  * Multi-currency breakdown for this point
4315
4463
  */
@@ -4373,6 +4521,68 @@ type PortfolioTrendsResponseDto = {
4373
4521
  */
4374
4522
  warnings?: Array<ExchangeRateWarningDto>;
4375
4523
  };
4524
+ type CashFlowPointDto = {
4525
+ /**
4526
+ * Month key (YYYY-MM)
4527
+ */
4528
+ month: string;
4529
+ /**
4530
+ * Income in base currency (absolute, converted)
4531
+ */
4532
+ income: string;
4533
+ /**
4534
+ * Expense in base currency (absolute, converted)
4535
+ */
4536
+ expense: string;
4537
+ /**
4538
+ * netSavings = income − expense (savings positive)
4539
+ */
4540
+ netSavings: string;
4541
+ };
4542
+ type CashFlowTrendSummaryDto = {
4543
+ /**
4544
+ * Total income across the period
4545
+ */
4546
+ totalIncome: string;
4547
+ /**
4548
+ * Total expense across the period
4549
+ */
4550
+ totalExpense: string;
4551
+ /**
4552
+ * income − expense across the period
4553
+ */
4554
+ totalNetSavings: string;
4555
+ /**
4556
+ * totalNetSavings divided by the window length (N months, incl. zero-filled)
4557
+ */
4558
+ averageMonthlyNetSavings: string;
4559
+ };
4560
+ type CashFlowTrendsResponseDto = {
4561
+ /**
4562
+ * Monthly cash-flow series (fixed N-month window, zero-filled)
4563
+ */
4564
+ series: Array<CashFlowPointDto>;
4565
+ /**
4566
+ * Period totals
4567
+ */
4568
+ summary: CashFlowTrendSummaryDto;
4569
+ /**
4570
+ * Period requested
4571
+ */
4572
+ period: string;
4573
+ /**
4574
+ * Data granularity (v1 returns month buckets)
4575
+ */
4576
+ granularity: string;
4577
+ /**
4578
+ * Base currency for converted values
4579
+ */
4580
+ currency: string;
4581
+ /**
4582
+ * Exchange rate warnings (e.g. missing rate for a currency)
4583
+ */
4584
+ warnings?: Array<ExchangeRateWarningDto>;
4585
+ };
4376
4586
  type GenerateSnapshotBody = unknown;
4377
4587
  type GenerateSnapshotResponse = unknown;
4378
4588
  type BackfillSnapshotsBody = unknown;
@@ -4529,6 +4739,10 @@ type TransactionControllerListData = {
4529
4739
  * Filter by account ID (transactions with postings to this account)
4530
4740
  */
4531
4741
  accountId?: string;
4742
+ /**
4743
+ * Filter by ADR-0075 functional category (Group segment); matches any posting to an Expenses/Income account whose derived Group segment equals this value
4744
+ */
4745
+ category?: string;
4532
4746
  /**
4533
4747
  * Filter by start date (inclusive), format: YYYY-MM-DD
4534
4748
  */
@@ -5326,6 +5540,92 @@ type PropertyControllerDeleteData = {
5326
5540
  key: string;
5327
5541
  };
5328
5542
  type PropertyControllerDeleteResponse = void;
5543
+ type EventControllerCreateData = {
5544
+ /**
5545
+ * Region code for tenant context (decorative for life events)
5546
+ */
5547
+ region: 'cn' | 'us' | 'de' | 'gb';
5548
+ requestBody: CreateBeanEventDto;
5549
+ };
5550
+ type EventControllerCreateResponse = EventResponseDto;
5551
+ type EventControllerFindAllData = {
5552
+ /**
5553
+ * Filter life events from this date (ISO 8601 format)
5554
+ */
5555
+ from?: string;
5556
+ /**
5557
+ * Number of items per page (default: 20, max: 100)
5558
+ */
5559
+ limit?: number;
5560
+ /**
5561
+ * Page number for pagination (default: 1)
5562
+ */
5563
+ page?: number;
5564
+ /**
5565
+ * Search term for description (case-insensitive partial match)
5566
+ */
5567
+ q?: string;
5568
+ /**
5569
+ * Region code for tenant context (decorative for life events)
5570
+ */
5571
+ region: 'cn' | 'us' | 'de' | 'gb';
5572
+ /**
5573
+ * Filter life events to this date (ISO 8601 format)
5574
+ */
5575
+ to?: string;
5576
+ /**
5577
+ * Filter by life event type (exact match)
5578
+ */
5579
+ type?: string;
5580
+ };
5581
+ type EventControllerFindAllResponse = EventListResponseDto;
5582
+ type EventControllerFindOneData = {
5583
+ /**
5584
+ * Life event ID
5585
+ */
5586
+ id: string;
5587
+ /**
5588
+ * Region code for tenant context (decorative for life events)
5589
+ */
5590
+ region: 'cn' | 'us' | 'de' | 'gb';
5591
+ };
5592
+ type EventControllerFindOneResponse = EventResponseDto;
5593
+ type EventControllerUpdateData = {
5594
+ /**
5595
+ * Life event ID
5596
+ */
5597
+ id: string;
5598
+ /**
5599
+ * Region code for tenant context (decorative for life events)
5600
+ */
5601
+ region: 'cn' | 'us' | 'de' | 'gb';
5602
+ requestBody: UpdateBeanEventDto;
5603
+ };
5604
+ type EventControllerUpdateResponse = EventResponseDto;
5605
+ type EventControllerDeleteData = {
5606
+ /**
5607
+ * Life event ID
5608
+ */
5609
+ id: string;
5610
+ /**
5611
+ * Region code for tenant context (decorative for life events)
5612
+ */
5613
+ region: 'cn' | 'us' | 'de' | 'gb';
5614
+ };
5615
+ type EventControllerDeleteResponse = void;
5616
+ type EventControllerGetSliceData = {
5617
+ accountPattern: string;
5618
+ granularity: string;
5619
+ /**
5620
+ * Life event ID
5621
+ */
5622
+ id: string;
5623
+ /**
5624
+ * Region code for tenant context (decorative for life events)
5625
+ */
5626
+ region: 'cn' | 'us' | 'de' | 'gb';
5627
+ };
5628
+ type EventControllerGetSliceResponse = unknown;
5329
5629
  type ExportControllerExportBeancountResponse = unknown;
5330
5630
  type FileImportControllerImportFileData = {
5331
5631
  /**
@@ -5568,6 +5868,21 @@ type DashboardControllerGetCashFlowData = {
5568
5868
  region: 'cn' | 'us' | 'de' | 'gb';
5569
5869
  };
5570
5870
  type DashboardControllerGetCashFlowResponse = CashFlowResponseDto;
5871
+ type DashboardControllerGetExpensesData = {
5872
+ /**
5873
+ * Grouping strategy
5874
+ */
5875
+ groupBy?: 'category';
5876
+ /**
5877
+ * Time window (1m = current calendar month)
5878
+ */
5879
+ period?: '1m' | '3m' | '6m' | '1y';
5880
+ /**
5881
+ * Region code for tenant context
5882
+ */
5883
+ region: 'cn' | 'us' | 'de' | 'gb';
5884
+ };
5885
+ type DashboardControllerGetExpensesResponse = ExpensesByCategoryResponseDto;
5571
5886
  type HoldingPnlControllerGetHoldingPnlData = {
5572
5887
  /**
5573
5888
  * Scope to a single account
@@ -5687,6 +6002,21 @@ type ReportingControllerGetPortfolioTrendsData = {
5687
6002
  region: 'cn' | 'us' | 'de' | 'gb';
5688
6003
  };
5689
6004
  type ReportingControllerGetPortfolioTrendsResponse = PortfolioTrendsResponseDto;
6005
+ type ReportingControllerGetCashFlowTrendsData = {
6006
+ /**
6007
+ * Data granularity (accepted for API symmetry; v1 returns month buckets)
6008
+ */
6009
+ granularity?: 'day' | 'week' | 'month';
6010
+ /**
6011
+ * Time period
6012
+ */
6013
+ period?: '1m' | '3m' | '6m' | '1y';
6014
+ /**
6015
+ * Region code for tenant context
6016
+ */
6017
+ region: 'cn' | 'us' | 'de' | 'gb';
6018
+ };
6019
+ type ReportingControllerGetCashFlowTrendsResponse = CashFlowTrendsResponseDto;
5690
6020
  type ReportingControllerGenerateSnapshotData = {
5691
6021
  /**
5692
6022
  * Region code for tenant context
@@ -7097,6 +7427,102 @@ type $OpenApiTs = {
7097
7427
  };
7098
7428
  };
7099
7429
  };
7430
+ '/api/v1/{region}/bean/events': {
7431
+ post: {
7432
+ req: EventControllerCreateData;
7433
+ res: {
7434
+ /**
7435
+ * Life event created successfully
7436
+ */
7437
+ 201: EventResponseDto;
7438
+ /**
7439
+ * Life event already exists for this (userId, type, date) combination
7440
+ */
7441
+ 409: unknown;
7442
+ };
7443
+ };
7444
+ get: {
7445
+ req: EventControllerFindAllData;
7446
+ res: {
7447
+ /**
7448
+ * Life events retrieved successfully
7449
+ */
7450
+ 200: EventListResponseDto;
7451
+ };
7452
+ };
7453
+ };
7454
+ '/api/v1/{region}/bean/events/{id}': {
7455
+ get: {
7456
+ req: EventControllerFindOneData;
7457
+ res: {
7458
+ /**
7459
+ * Life event retrieved successfully
7460
+ */
7461
+ 200: EventResponseDto;
7462
+ /**
7463
+ * Life event not found
7464
+ */
7465
+ 404: unknown;
7466
+ };
7467
+ };
7468
+ put: {
7469
+ req: EventControllerUpdateData;
7470
+ res: {
7471
+ /**
7472
+ * Life event updated successfully
7473
+ */
7474
+ 200: EventResponseDto;
7475
+ /**
7476
+ * If-Match header is not a valid ISO 8601 date
7477
+ */
7478
+ 400: unknown;
7479
+ /**
7480
+ * Life event not found
7481
+ */
7482
+ 404: unknown;
7483
+ /**
7484
+ * Updated event conflicts with an existing (userId, type, date) combination
7485
+ */
7486
+ 409: unknown;
7487
+ /**
7488
+ * If-Match precondition failed (updatedAt mismatch)
7489
+ */
7490
+ 412: unknown;
7491
+ };
7492
+ };
7493
+ delete: {
7494
+ req: EventControllerDeleteData;
7495
+ res: {
7496
+ /**
7497
+ * Life event deleted successfully
7498
+ */
7499
+ 204: void;
7500
+ /**
7501
+ * Life event not found
7502
+ */
7503
+ 404: unknown;
7504
+ };
7505
+ };
7506
+ };
7507
+ '/api/v1/{region}/bean/events/{id}/slice': {
7508
+ get: {
7509
+ req: EventControllerGetSliceData;
7510
+ res: {
7511
+ /**
7512
+ * Time-series sliced by the life event range
7513
+ */
7514
+ 200: unknown;
7515
+ /**
7516
+ * accountPattern query param is empty
7517
+ */
7518
+ 400: unknown;
7519
+ /**
7520
+ * Life event not found
7521
+ */
7522
+ 404: unknown;
7523
+ };
7524
+ };
7525
+ };
7100
7526
  '/api/v1/{region}/bean/export/beancount': {
7101
7527
  get: {
7102
7528
  res: {
@@ -7509,6 +7935,25 @@ type $OpenApiTs = {
7509
7935
  };
7510
7936
  };
7511
7937
  };
7938
+ '/api/v1/{region}/dashboard/expenses': {
7939
+ get: {
7940
+ req: DashboardControllerGetExpensesData;
7941
+ res: {
7942
+ /**
7943
+ * Expenses retrieved successfully
7944
+ */
7945
+ 200: ExpensesByCategoryResponseDto;
7946
+ /**
7947
+ * Invalid groupBy or period
7948
+ */
7949
+ 400: unknown;
7950
+ /**
7951
+ * User not authenticated
7952
+ */
7953
+ 401: unknown;
7954
+ };
7955
+ };
7956
+ };
7512
7957
  '/api/v1/{region}/investment/holdings/pnl': {
7513
7958
  get: {
7514
7959
  req: HoldingPnlControllerGetHoldingPnlData;
@@ -7627,6 +8072,21 @@ type $OpenApiTs = {
7627
8072
  };
7628
8073
  };
7629
8074
  };
8075
+ '/api/v1/{region}/reporting/cash-flow/trends': {
8076
+ get: {
8077
+ req: ReportingControllerGetCashFlowTrendsData;
8078
+ res: {
8079
+ /**
8080
+ * Cash-flow trends retrieved successfully
8081
+ */
8082
+ 200: CashFlowTrendsResponseDto;
8083
+ /**
8084
+ * User not authenticated
8085
+ */
8086
+ 401: unknown;
8087
+ };
8088
+ };
8089
+ };
7630
8090
  '/api/v1/{region}/reporting/snapshots/generate': {
7631
8091
  post: {
7632
8092
  req: ReportingControllerGenerateSnapshotData;
@@ -7943,6 +8403,7 @@ declare class BeanTransactionsService {
7943
8403
  * @param data.status Filter by transaction status
7944
8404
  * @param data.search Search in narration and payee fields (max 200 chars)
7945
8405
  * @param data.accountId Filter by account ID (transactions with postings to this account)
8406
+ * @param data.category Filter by ADR-0075 functional category (Group segment); matches any posting to an Expenses/Income account whose derived Group segment equals this value
7946
8407
  * @returns TransactionListResponseDto Transaction list
7947
8408
  * @throws ApiError
7948
8409
  */
@@ -8248,4 +8709,4 @@ type OpenAPIConfig = {
8248
8709
  };
8249
8710
  declare const OpenAPI: OpenAPIConfig;
8250
8711
 
8251
- export { type $OpenApiTs, type AccountControllerCloseData, type AccountControllerCloseResponse, type AccountControllerCreateData, type AccountControllerCreateResponse, type AccountControllerDeleteData, type AccountControllerDeleteResponse, type AccountControllerFindAllData, type AccountControllerFindAllResponse, type AccountControllerFindOneData, type AccountControllerFindOneResponse, type AccountControllerReopenData, type AccountControllerReopenResponse, type AccountControllerUpdateData, type AccountControllerUpdateResponse, type AccountExchangeRateWarningDto, type AccountItemDto, type AccountItemWithAssetClassDto, type AccountListResponseDto, type AccountResponseDto, type AccountStandardListResponseDto, type AccountStandardResponseDto, type AccountStandardsControllerGetRegionsData, type AccountStandardsControllerGetRegionsResponse, type AccountStandardsControllerGetTemplateMetadataData, type AccountStandardsControllerGetTemplateMetadataResponse, type AccountStandardsControllerGetTemplatesData, type AccountStandardsControllerGetTemplatesResponse, type AccountsResponseDto, type AccountsSummaryDto, type AmountDto, type AmountRangeDto, type AnonymousLoginDto, type ApiKeysControllerCreateApiKeyResponse, type ApiProblemResponseDto, type AssetClassAccountsResponseDto, type AssetClassGroupDto, type AssetClassSummaryDto, type AuthControllerAccessTokenLoginData, type AuthControllerAccessTokenLoginResponse, type BackfillSnapshotsBody, type BackfillSnapshotsResponse, type BalanceByCurrencyDto, type BalanceControllerGetBalanceData, type BalanceControllerGetBalanceResponse, type BalanceControllerGetMultiCurrencyBalanceData, type BalanceControllerGetMultiCurrencyBalanceResponse, type BalanceResponseDto, type BatchCreateTransactionDto, type BatchResolveDto, type BatchResolveResultDto, type BatchTransactionErrorDto, type BatchTransactionResponseDto, BeanAccountsService, BeanBalancesService, BeanCommoditiesService, BeanTransactionsService, type BulkCreateRulesDto, type BulkCreateRulesResponseDto, type CacheControllerFlushCacheResponse, type CashFlowByCurrencyDto, type CashFlowResponseDto, type CloseAccountDto, type CommodityControllerBulkCreateData, type CommodityControllerBulkCreateResponse, type CommodityControllerCreateData, type CommodityControllerCreateResponse, type CommodityControllerDeleteData, type CommodityControllerDeleteResponse, type CommodityControllerFindAllData, type CommodityControllerFindAllResponse, type CommodityControllerFindOneData, type CommodityControllerFindOneResponse, type CommodityControllerGetOrCreateData, type CommodityControllerGetOrCreateResponse, type CommodityControllerUpdateData, type CommodityControllerUpdateResponse, type CommodityListResponseDto, type CommodityResponseDto, type ConfirmMatchDto, type ConvertedCashFlowDto, type ConvertedNetWorthDto, type CorrectTransactionDto, type CostDetailDto, type CostSpecDto, type CreateAccountDto, type CreateBeanPriceDto, type CreateCommodityDto, type CreatePayeeDto, type CreatePayeeProfileDto, type CreatePlatformDto, type CreatePostingDto, type CreateRecurringRuleDto, type CreateRuleFromTransactionDto, type CreateTransactionDto, type CreateTransactionRuleDto, type CurrencyBalanceDto, type CurrentPriceDto, type DashboardControllerGetAccountsData, type DashboardControllerGetAccountsResponse, type DashboardControllerGetCashFlowData, type DashboardControllerGetCashFlowResponse, type DashboardControllerGetNetWorthData, type DashboardControllerGetNetWorthResponse, type DecisionOptionDto, type DeleteOwnUserDto, type EnterNowDto, type ExchangeRateControllerGetExchangeRateData, type ExchangeRateControllerGetExchangeRateResponse, type ExchangeRateWarningDto, type ExpectedTransactionControllerConfirmMatchData, type ExpectedTransactionControllerConfirmMatchResponse, type ExpectedTransactionControllerEnterNowData, type ExpectedTransactionControllerEnterNowResponse, type ExpectedTransactionControllerFindAllData, type ExpectedTransactionControllerFindAllResponse, type ExpectedTransactionControllerFindOneData, type ExpectedTransactionControllerFindOneResponse, type ExpectedTransactionControllerFindOverdueData, type ExpectedTransactionControllerFindOverdueResponse, type ExpectedTransactionControllerSkipData, type ExpectedTransactionControllerSkipResponse, type ExpectedTransactionControllerUndoSkipData, type ExpectedTransactionControllerUndoSkipResponse, type ExpectedTransactionControllerUnmatchData, type ExpectedTransactionControllerUnmatchResponse, type ExpectedTransactionListResponseDto, type ExpectedTransactionResponseDto, type ExpectedTransactionRuleDto, type ExportControllerExportBeancountResponse, type ExportRulesResponseDto, type FileImportControllerIdentifyFileData, type FileImportControllerIdentifyFileResponse, type FileImportControllerImportBeancountData, type FileImportControllerImportBeancountResponse, type FileImportControllerImportFileData, type FileImportControllerImportFileResponse, type FileImportDto, type ForecastControllerGetForecastData, type ForecastControllerGetForecastResponse, type ForecastItemDto, type ForecastResponseDto, type FxRateDto, type GenerateSnapshotBody, type GenerateSnapshotResponse, type HealthControllerCheckDatabaseResponse, type HealthControllerCheckOpenBbResponse, type HealthControllerCheckRedisResponse, type HealthControllerGetCircuitBreakersHealthResponse, type HealthControllerGetHealthResponse, type HealthControllerGetMetricsResponse, type HealthControllerResetCircuitBreakerData, type HealthControllerResetCircuitBreakerResponse, HealthService, type HoldingAssetClassAccountSliceDto, type HoldingAssetClassCrossAccountResponseDto, type HoldingPnlControllerGetHoldingPnlData, type HoldingPnlControllerGetHoldingPnlResponse, type HoldingPnlResponseDto, type HoldingPnlRowDto, type HoldingPnlWarningDto, type IdentifyResultDto, type ImportErrorDto, type ImportResultDto, type ImporterConfigControllerGetConfigData, type ImporterConfigControllerGetConfigResponse, type ImporterConfigControllerResetConfigData, type ImporterConfigControllerResetConfigResponse, type ImporterConfigControllerUpdateConfigData, type ImporterConfigControllerUpdateConfigResponse, type ImporterConfigDataDto, type ImporterConfigDto, type InfoControllerGetInfoResponse, type MapperDefaultsDto, type MonetaryDto, type MonthlyForecastDto, type MultiCurrencyBalanceResponseDto, type MultiCurrencyPointDto, type NetWorthByCurrencyDto, type NetWorthResponseDto, type NlpAccountConfirmationDataDto, type NlpAlternativePayeeDto, type NlpControllerClearSessionData, type NlpControllerClearSessionResponse, type NlpControllerGetSessionData, type NlpControllerGetSessionResponse, type NlpControllerProcessNaturalLanguageData, type NlpControllerProcessNaturalLanguageResponse, type NlpDefaultAccountsDto, type NlpDuplicateConfirmationDataDto, type NlpParsedDataDto, type NlpPayeeConfirmationDataDto, type NlpResponseDto, type NlpRuleConfirmationDataDto, type NlpSimilarityDto, type NlpSourceTransactionDto, type NlpSuggestedAccountDto, type NlpSuggestedAccountsDto, type NlpSuggestedPayeeDto, type NlpTargetTransactionDto, type NlpTransactionInfoDto, OpenAPI, type OpenAPIConfig, type ParserTelemetryReportDto, type PayeeAutocompleteResponseDto, type PayeeControllerAutocompleteData, type PayeeControllerAutocompleteResponse, type PayeeControllerCreateData, type PayeeControllerCreateResponse, type PayeeControllerDeleteData, type PayeeControllerDeleteResponse, type PayeeControllerFindAllData, type PayeeControllerFindAllResponse, type PayeeControllerFindOneData, type PayeeControllerFindOneResponse, type PayeeControllerGetTopPayeesData, type PayeeControllerGetTopPayeesResponse, type PayeeControllerUpdateData, type PayeeControllerUpdateResponse, type PayeeListResponseDto, type PayeeProfileAdminControllerCreateData, type PayeeProfileAdminControllerCreateResponse, type PayeeProfileAdminControllerDeleteData, type PayeeProfileAdminControllerDeleteResponse, type PayeeProfileAdminControllerFindAllData, type PayeeProfileAdminControllerFindAllResponse, type PayeeProfileAdminControllerFindOneData, type PayeeProfileAdminControllerFindOneResponse, type PayeeProfileAdminControllerUnverifyData, type PayeeProfileAdminControllerUnverifyResponse, type PayeeProfileAdminControllerUpdateData, type PayeeProfileAdminControllerUpdateResponse, type PayeeProfileAdminControllerVerifyData, type PayeeProfileAdminControllerVerifyResponse, type PayeeProfileListResponseDto, type PayeeProfileResponseDto, type PayeeResponseDto, type PayeeStatsResponseDto, type PlatformControllerCreateData, type PlatformControllerCreateResponse, type PlatformControllerDeleteData, type PlatformControllerDeleteResponse, type PlatformControllerFindAllResponse, type PlatformControllerGetPlatformListResponse, type PlatformControllerMatchPlatformsData, type PlatformControllerMatchPlatformsResponse, type PlatformControllerUpdateData, type PlatformControllerUpdateResponse, type PlatformGroupDto, type PortfolioTrendsResponseDto, type PostingDetailDto, type PostingResponseDto, type PriceControllerBulkCreateData, type PriceControllerBulkCreateResponse, type PriceControllerCreateData, type PriceControllerCreateResponse, type PriceControllerDeleteData, type PriceControllerDeleteResponse, type PriceControllerFindAllData, type PriceControllerFindAllResponse, type PriceControllerFindOneData, type PriceControllerFindOneResponse, type PriceControllerUpdateData, type PriceControllerUpdateResponse, type PriceListResponseDto, type PriceResponseDto, type ProcessNlpDto, type PropertyControllerDeleteData, type PropertyControllerDeleteResponse, type PropertyControllerGetAllResponse, type PropertyControllerGetByKeyData, type PropertyControllerGetByKeyResponse, type PropertyControllerUpdateData, type PropertyControllerUpdateResponse, type ProviderSyncConfigDto, type ProviderSyncControllerGetSupportedProvidersData, type ProviderSyncControllerGetSupportedProvidersResponse, type ProviderSyncControllerIsProviderSupportedData, type ProviderSyncControllerIsProviderSupportedResponse, type ProviderSyncControllerSyncData, type ProviderSyncControllerSyncResponse, type ProviderSyncDto, type ProviderSyncResponseDto, ProviderSyncService, type RecurringMatchInfoDto, type RecurringRuleControllerCreateData, type RecurringRuleControllerCreateFromTransactionData, type RecurringRuleControllerCreateFromTransactionResponse, type RecurringRuleControllerCreateResponse, type RecurringRuleControllerDeleteData, type RecurringRuleControllerDeleteResponse, type RecurringRuleControllerFindAllData, type RecurringRuleControllerFindAllResponse, type RecurringRuleControllerFindOneData, type RecurringRuleControllerFindOneResponse, type RecurringRuleControllerGetWithStatsData, type RecurringRuleControllerGetWithStatsResponse, type RecurringRuleControllerUpdateData, type RecurringRuleControllerUpdateResponse, type RecurringRuleResponseDto, type RecurringRuleWithStatsResponseDto, type RecurringSuggestionDto, type RegionConfigDto, type RegionInfoDto, type RegionsMetadataResponseDto, type ReopenAccountDto, type ReportingControllerBackfillSnapshotsData, type ReportingControllerBackfillSnapshotsResponse, type ReportingControllerGenerateSnapshotData, type ReportingControllerGenerateSnapshotResponse, type ReportingControllerGetPortfolioTrendsData, type ReportingControllerGetPortfolioTrendsResponse, type ResolveResultDto, type ResolveReviewDto, type ReviewControllerBatchResolveData, type ReviewControllerBatchResolveResponse, type ReviewControllerFindAllData, type ReviewControllerFindAllResponse, type ReviewControllerFindOneData, type ReviewControllerFindOneResponse, type ReviewControllerGetStatsData, type ReviewControllerGetStatsResponse, type ReviewControllerResolveData, type ReviewControllerResolveResponse, type ReviewControllerUndoData, type ReviewControllerUndoResponse, type ReviewDetailDto, type ReviewItemPreviewDto, type ReviewListResponseDto, type ReviewStatsDto, type ReviewSummaryDto, type RuleStatisticsResponseDto, type SignupDto, type SupportedProvidersResponseDto, type TagSuggestionDto, type TagSuggestionsResponseDto, type TelemetryControllerGetCoverageMetricsData, type TelemetryControllerGetCoverageMetricsResponse, type TelemetryControllerReportCoverageMissData, type TelemetryControllerReportCoverageMissResponse, type TelemetryControllerReportTelemetryData, type TelemetryControllerReportTelemetryResponse, type TemplateMetadataDto, type TemplateMetadataResponseDto, type TestRuleDto, type TestRuleResponseDto, type TimeSeriesPointDto, type TransactionControllerCorrectData, type TransactionControllerCorrectResponse, type TransactionControllerCreateBatchData, type TransactionControllerCreateBatchResponse, type TransactionControllerCreateData, type TransactionControllerCreateResponse, type TransactionControllerDeleteData, type TransactionControllerDeleteResponse, type TransactionControllerGetDetailData, type TransactionControllerGetDetailResponse, type TransactionControllerListData, type TransactionControllerListResponse, type TransactionControllerSuggestTagsData, type TransactionControllerSuggestTagsResponse, type TransactionControllerUpdateData, type TransactionControllerUpdateResponse, type TransactionDetailDto, type TransactionListResponseDto, type 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 UpdateBeanPriceDto, type UpdateCommodityDto, type UpdateConfigDataDto, type UpdateImporterConfigDto, type UpdateMapperDefaultsDto, type UpdatePayeeDto, type UpdatePayeeProfileDto, type UpdatePlatformDto, type UpdatePropertyDto, type UpdateRecurringRuleDto, type UpdateTransactionDto, type UpdateTransactionRuleDto, type UpdateUserSettingDto, type UserControllerDeleteOwnUserData, type UserControllerDeleteOwnUserResponse, type UserControllerDeleteUserData, type UserControllerDeleteUserResponse, type UserControllerGetAllUserSettingsByPageData, type UserControllerGetAllUserSettingsByPageResponse, type UserControllerGetAssetLiabilitySummaryResponse, type UserControllerGetUserData, type UserControllerGetUserInfoData, type UserControllerGetUserInfoResponse, type UserControllerGetUserResponse, type UserControllerSignupUserData, type UserControllerSignupUserResponse, type UserControllerUpdateUserSettingData, type UserControllerUpdateUserSettingResponse, type ValidateRuleDto, type ValidateRuleResponseDto, type VersionedConfigDto, type action, type action2, type assetClass, type assetSubType, type bookingMethod, type branchType, type category, type chartToken, type colorScheme, type confidenceLevel, type conflictStrategy, type dataSource, type equitySubType, type flag, type flag2, type frequency, type importerId, type intent, type investmentAction, type learningSource, type liabilitySubType, type matchLogic, type method, type mode, type paymentSource, type period, type source, type source2, type source3, type status, type status2, type status3, type status4, type suggestedFrequency, type type, type type2, type type3, type type4, type value, type viewMode };
8712
+ export { type $OpenApiTs, type AccountControllerCloseData, type AccountControllerCloseResponse, type AccountControllerCreateData, type AccountControllerCreateResponse, type AccountControllerDeleteData, type AccountControllerDeleteResponse, type AccountControllerFindAllData, type AccountControllerFindAllResponse, type AccountControllerFindOneData, type AccountControllerFindOneResponse, type AccountControllerReopenData, type AccountControllerReopenResponse, type AccountControllerUpdateData, type AccountControllerUpdateResponse, type AccountExchangeRateWarningDto, type AccountItemDto, type AccountItemWithAssetClassDto, type AccountListResponseDto, type AccountResponseDto, type AccountStandardListResponseDto, type AccountStandardResponseDto, type AccountStandardsControllerGetRegionsData, type AccountStandardsControllerGetRegionsResponse, type AccountStandardsControllerGetTemplateMetadataData, type AccountStandardsControllerGetTemplateMetadataResponse, type AccountStandardsControllerGetTemplatesData, type AccountStandardsControllerGetTemplatesResponse, type AccountsResponseDto, type AccountsSummaryDto, type AmountDto, type AmountRangeDto, type AnonymousLoginDto, type ApiKeysControllerCreateApiKeyResponse, type ApiProblemResponseDto, type AssetClassAccountsResponseDto, type AssetClassGroupDto, type AssetClassSummaryDto, type AuthControllerAccessTokenLoginData, type AuthControllerAccessTokenLoginResponse, type BackfillSnapshotsBody, type BackfillSnapshotsResponse, type BalanceByCurrencyDto, type BalanceControllerGetBalanceData, type BalanceControllerGetBalanceResponse, type BalanceControllerGetMultiCurrencyBalanceData, type BalanceControllerGetMultiCurrencyBalanceResponse, type BalanceResponseDto, type BatchCreateTransactionDto, type BatchResolveDto, type BatchResolveResultDto, type BatchTransactionErrorDto, type BatchTransactionResponseDto, BeanAccountsService, BeanBalancesService, BeanCommoditiesService, BeanTransactionsService, type BulkCreateRulesDto, type BulkCreateRulesResponseDto, type CacheControllerFlushCacheResponse, type CashFlowByCurrencyDto, type CashFlowPointDto, type CashFlowResponseDto, type CashFlowTrendSummaryDto, type CashFlowTrendsResponseDto, type CategoryGroupDto, type CloseAccountDto, type CommodityControllerBulkCreateData, type CommodityControllerBulkCreateResponse, type CommodityControllerCreateData, type CommodityControllerCreateResponse, type CommodityControllerDeleteData, type CommodityControllerDeleteResponse, type CommodityControllerFindAllData, type CommodityControllerFindAllResponse, type CommodityControllerFindOneData, type CommodityControllerFindOneResponse, type CommodityControllerGetOrCreateData, type CommodityControllerGetOrCreateResponse, type CommodityControllerUpdateData, type CommodityControllerUpdateResponse, type CommodityListResponseDto, type CommodityResponseDto, type ConfirmMatchDto, type ConvertedCashFlowDto, type ConvertedNetWorthDto, type CorrectTransactionDto, type CostDetailDto, type CostSpecDto, type CreateAccountDto, type CreateBeanEventDto, type CreateBeanPriceDto, type CreateCommodityDto, type CreatePayeeDto, type CreatePayeeProfileDto, type CreatePlatformDto, type CreatePostingDto, type CreateRecurringRuleDto, type CreateRuleFromTransactionDto, type CreateTransactionDto, type CreateTransactionRuleDto, type CurrencyBalanceDto, type CurrentPriceDto, type DashboardControllerGetAccountsData, type DashboardControllerGetAccountsResponse, type DashboardControllerGetCashFlowData, type DashboardControllerGetCashFlowResponse, type DashboardControllerGetExpensesData, type DashboardControllerGetExpensesResponse, type DashboardControllerGetNetWorthData, type DashboardControllerGetNetWorthResponse, type DecisionOptionDto, type DeleteOwnUserDto, type EnterNowDto, type EventControllerCreateData, type EventControllerCreateResponse, type EventControllerDeleteData, type EventControllerDeleteResponse, type EventControllerFindAllData, type EventControllerFindAllResponse, type EventControllerFindOneData, type EventControllerFindOneResponse, type EventControllerGetSliceData, type EventControllerGetSliceResponse, type EventControllerUpdateData, type EventControllerUpdateResponse, type EventListResponseDto, type EventResponseDto, type ExchangeRateControllerGetExchangeRateData, type ExchangeRateControllerGetExchangeRateResponse, type ExchangeRateWarningDto, type ExpectedTransactionControllerConfirmMatchData, type ExpectedTransactionControllerConfirmMatchResponse, type ExpectedTransactionControllerEnterNowData, type ExpectedTransactionControllerEnterNowResponse, type ExpectedTransactionControllerFindAllData, type ExpectedTransactionControllerFindAllResponse, type ExpectedTransactionControllerFindOneData, type ExpectedTransactionControllerFindOneResponse, type ExpectedTransactionControllerFindOverdueData, type ExpectedTransactionControllerFindOverdueResponse, type ExpectedTransactionControllerSkipData, type ExpectedTransactionControllerSkipResponse, type ExpectedTransactionControllerUndoSkipData, type ExpectedTransactionControllerUndoSkipResponse, type ExpectedTransactionControllerUnmatchData, type ExpectedTransactionControllerUnmatchResponse, type ExpectedTransactionListResponseDto, type ExpectedTransactionResponseDto, type ExpectedTransactionRuleDto, type ExpensesByCategoryResponseDto, type ExpensesByCategorySummaryDto, type ExportControllerExportBeancountResponse, type ExportRulesResponseDto, type FileImportControllerIdentifyFileData, type FileImportControllerIdentifyFileResponse, type FileImportControllerImportBeancountData, type FileImportControllerImportBeancountResponse, type FileImportControllerImportFileData, type FileImportControllerImportFileResponse, type FileImportDto, type ForecastControllerGetForecastData, type ForecastControllerGetForecastResponse, type ForecastItemDto, type ForecastResponseDto, type FxRateDto, type GenerateSnapshotBody, type GenerateSnapshotResponse, type HealthControllerCheckDatabaseResponse, type HealthControllerCheckOpenBbResponse, type HealthControllerCheckRedisResponse, type HealthControllerGetCircuitBreakersHealthResponse, type HealthControllerGetHealthResponse, type HealthControllerGetMetricsResponse, type HealthControllerResetCircuitBreakerData, type HealthControllerResetCircuitBreakerResponse, HealthService, type HoldingAssetClassAccountSliceDto, type HoldingAssetClassCrossAccountResponseDto, type HoldingPnlControllerGetHoldingPnlData, type HoldingPnlControllerGetHoldingPnlResponse, type HoldingPnlResponseDto, type HoldingPnlRowDto, type HoldingPnlWarningDto, type IdentifyResultDto, type ImportErrorDto, type ImportResultDto, type ImporterConfigControllerGetConfigData, type ImporterConfigControllerGetConfigResponse, type ImporterConfigControllerResetConfigData, type ImporterConfigControllerResetConfigResponse, type ImporterConfigControllerUpdateConfigData, type ImporterConfigControllerUpdateConfigResponse, type ImporterConfigDataDto, type ImporterConfigDto, type InfoControllerGetInfoResponse, type MapperDefaultsDto, type MonetaryDto, type MonthlyForecastDto, type MultiCurrencyBalanceResponseDto, type MultiCurrencyPointDto, type NetWorthByCurrencyDto, type NetWorthResponseDto, type NlpAccountConfirmationDataDto, type NlpAlternativePayeeDto, type NlpControllerClearSessionData, type NlpControllerClearSessionResponse, type NlpControllerGetSessionData, type NlpControllerGetSessionResponse, type NlpControllerProcessNaturalLanguageData, type NlpControllerProcessNaturalLanguageResponse, type NlpDefaultAccountsDto, type NlpDuplicateConfirmationDataDto, type NlpParsedDataDto, type NlpPayeeConfirmationDataDto, type NlpResponseDto, type NlpRuleConfirmationDataDto, type NlpSimilarityDto, type NlpSourceTransactionDto, type NlpSuggestedAccountDto, type NlpSuggestedAccountsDto, type NlpSuggestedPayeeDto, type NlpTargetTransactionDto, type NlpTransactionInfoDto, OpenAPI, type OpenAPIConfig, type ParserTelemetryReportDto, type PayeeAutocompleteResponseDto, type PayeeControllerAutocompleteData, type PayeeControllerAutocompleteResponse, type PayeeControllerCreateData, type PayeeControllerCreateResponse, type PayeeControllerDeleteData, type PayeeControllerDeleteResponse, type PayeeControllerFindAllData, type PayeeControllerFindAllResponse, type PayeeControllerFindOneData, type PayeeControllerFindOneResponse, type PayeeControllerGetTopPayeesData, type PayeeControllerGetTopPayeesResponse, type PayeeControllerUpdateData, type PayeeControllerUpdateResponse, type PayeeListResponseDto, type PayeeProfileAdminControllerCreateData, type PayeeProfileAdminControllerCreateResponse, type PayeeProfileAdminControllerDeleteData, type PayeeProfileAdminControllerDeleteResponse, type PayeeProfileAdminControllerFindAllData, type PayeeProfileAdminControllerFindAllResponse, type PayeeProfileAdminControllerFindOneData, type PayeeProfileAdminControllerFindOneResponse, type PayeeProfileAdminControllerUnverifyData, type PayeeProfileAdminControllerUnverifyResponse, type PayeeProfileAdminControllerUpdateData, type PayeeProfileAdminControllerUpdateResponse, type PayeeProfileAdminControllerVerifyData, type PayeeProfileAdminControllerVerifyResponse, type PayeeProfileListResponseDto, type PayeeProfileResponseDto, type PayeeResponseDto, type PayeeStatsResponseDto, type PlatformControllerCreateData, type PlatformControllerCreateResponse, type PlatformControllerDeleteData, type PlatformControllerDeleteResponse, type PlatformControllerFindAllResponse, type PlatformControllerGetPlatformListResponse, type PlatformControllerMatchPlatformsData, type PlatformControllerMatchPlatformsResponse, type PlatformControllerUpdateData, type PlatformControllerUpdateResponse, type PlatformGroupDto, type PortfolioTrendsResponseDto, type PostingDetailDto, type PostingResponseDto, type PriceControllerBulkCreateData, type PriceControllerBulkCreateResponse, type PriceControllerCreateData, type PriceControllerCreateResponse, type PriceControllerDeleteData, type PriceControllerDeleteResponse, type PriceControllerFindAllData, type PriceControllerFindAllResponse, type PriceControllerFindOneData, type PriceControllerFindOneResponse, type PriceControllerUpdateData, type PriceControllerUpdateResponse, type PriceListResponseDto, type PriceResponseDto, type ProcessNlpDto, type PropertyControllerDeleteData, type PropertyControllerDeleteResponse, type PropertyControllerGetAllResponse, type PropertyControllerGetByKeyData, type PropertyControllerGetByKeyResponse, type PropertyControllerUpdateData, type PropertyControllerUpdateResponse, type ProviderSyncConfigDto, type ProviderSyncControllerGetSupportedProvidersData, type ProviderSyncControllerGetSupportedProvidersResponse, type ProviderSyncControllerIsProviderSupportedData, type ProviderSyncControllerIsProviderSupportedResponse, type ProviderSyncControllerSyncData, type ProviderSyncControllerSyncResponse, type ProviderSyncDto, type ProviderSyncResponseDto, ProviderSyncService, type RecurringMatchInfoDto, type RecurringRuleControllerCreateData, type RecurringRuleControllerCreateFromTransactionData, type RecurringRuleControllerCreateFromTransactionResponse, type RecurringRuleControllerCreateResponse, type RecurringRuleControllerDeleteData, type RecurringRuleControllerDeleteResponse, type RecurringRuleControllerFindAllData, type RecurringRuleControllerFindAllResponse, type RecurringRuleControllerFindOneData, type RecurringRuleControllerFindOneResponse, type RecurringRuleControllerGetWithStatsData, type RecurringRuleControllerGetWithStatsResponse, type RecurringRuleControllerUpdateData, type RecurringRuleControllerUpdateResponse, type RecurringRuleResponseDto, type RecurringRuleWithStatsResponseDto, type RecurringSuggestionDto, type RegionConfigDto, type RegionInfoDto, type RegionsMetadataResponseDto, type ReopenAccountDto, type ReportingControllerBackfillSnapshotsData, type ReportingControllerBackfillSnapshotsResponse, type ReportingControllerGenerateSnapshotData, type ReportingControllerGenerateSnapshotResponse, type ReportingControllerGetCashFlowTrendsData, type ReportingControllerGetCashFlowTrendsResponse, type ReportingControllerGetPortfolioTrendsData, type ReportingControllerGetPortfolioTrendsResponse, type ResolveResultDto, type ResolveReviewDto, type ReviewControllerBatchResolveData, type ReviewControllerBatchResolveResponse, type ReviewControllerFindAllData, type ReviewControllerFindAllResponse, type ReviewControllerFindOneData, type ReviewControllerFindOneResponse, type ReviewControllerGetStatsData, type ReviewControllerGetStatsResponse, type ReviewControllerResolveData, type ReviewControllerResolveResponse, type ReviewControllerUndoData, type ReviewControllerUndoResponse, type ReviewDetailDto, type ReviewItemPreviewDto, type ReviewListResponseDto, type ReviewStatsDto, type ReviewSummaryDto, type RuleStatisticsResponseDto, type SignupDto, type SupportedProvidersResponseDto, type TagSuggestionDto, type TagSuggestionsResponseDto, type TelemetryControllerGetCoverageMetricsData, type TelemetryControllerGetCoverageMetricsResponse, type TelemetryControllerReportCoverageMissData, type TelemetryControllerReportCoverageMissResponse, type TelemetryControllerReportTelemetryData, type TelemetryControllerReportTelemetryResponse, type TemplateMetadataDto, type TemplateMetadataResponseDto, type TestRuleDto, type TestRuleResponseDto, type TimeSeriesPointDto, type TransactionControllerCorrectData, type TransactionControllerCorrectResponse, type TransactionControllerCreateBatchData, type TransactionControllerCreateBatchResponse, type TransactionControllerCreateData, type TransactionControllerCreateResponse, type TransactionControllerDeleteData, type TransactionControllerDeleteResponse, type TransactionControllerGetDetailData, type TransactionControllerGetDetailResponse, type TransactionControllerListData, type TransactionControllerListResponse, type TransactionControllerSuggestTagsData, type TransactionControllerSuggestTagsResponse, type TransactionControllerUpdateData, type TransactionControllerUpdateResponse, type TransactionDetailDto, type TransactionListResponseDto, type TransactionResponseDto, type TransactionRuleControllerBulkCreateData, type TransactionRuleControllerBulkCreateResponse, type TransactionRuleControllerCreateData, type TransactionRuleControllerCreateResponse, type TransactionRuleControllerDeleteData, type TransactionRuleControllerDeleteResponse, type TransactionRuleControllerExportData, type TransactionRuleControllerExportResponse, type TransactionRuleControllerGetDetailData, type TransactionRuleControllerGetDetailResponse, type TransactionRuleControllerGetStatisticsData, type TransactionRuleControllerGetStatisticsResponse, type TransactionRuleControllerListData, type TransactionRuleControllerListResponse, type TransactionRuleControllerTestData, type TransactionRuleControllerTestResponse, type TransactionRuleControllerUpdateData, type TransactionRuleControllerUpdateResponse, type TransactionRuleControllerValidateData, type TransactionRuleControllerValidateResponse, type TransactionRuleListResponseDto, type TransactionRuleResponseDto, type TransactionSummaryDto, type TrendSummaryDto, type UncoveredFormatMissDto, type UndoResultDto, type UpdateAccountDto, type UpdateBeanEventDto, type UpdateBeanPriceDto, type UpdateCommodityDto, type UpdateConfigDataDto, type UpdateImporterConfigDto, type UpdateMapperDefaultsDto, type UpdatePayeeDto, type UpdatePayeeProfileDto, type UpdatePlatformDto, type UpdatePropertyDto, type UpdateRecurringRuleDto, type UpdateTransactionDto, type UpdateTransactionRuleDto, type UpdateUserSettingDto, type UserControllerDeleteOwnUserData, type UserControllerDeleteOwnUserResponse, type UserControllerDeleteUserData, type UserControllerDeleteUserResponse, type UserControllerGetAllUserSettingsByPageData, type UserControllerGetAllUserSettingsByPageResponse, type UserControllerGetAssetLiabilitySummaryResponse, type UserControllerGetUserData, type UserControllerGetUserInfoData, type UserControllerGetUserInfoResponse, type UserControllerGetUserResponse, type UserControllerSignupUserData, type UserControllerSignupUserResponse, type UserControllerUpdateUserSettingData, type UserControllerUpdateUserSettingResponse, type ValidateRuleDto, type ValidateRuleResponseDto, type VersionedConfigDto, type action, type action2, type assetClass, type assetSubType, type bookingMethod, type branchType, type category, type chartToken, type colorScheme, type confidenceLevel, type conflictStrategy, type dataSource, type equitySubType, type flag, type flag2, type frequency, type importerId, type intent, type investmentAction, type learningSource, type liabilitySubType, type matchLogic, type method, type mode, type paymentSource, type period, type source, type source2, type source3, type status, type status2, type status3, type status4, type suggestedFrequency, type type, type type2, type type3, type type4, type value, type viewMode };