@firela/api-types 0.0.0-canary.792fa5f1 → 0.0.0-canary.7a8f5374

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
@@ -413,6 +413,24 @@ type CreateTransactionDto = {
413
413
  * Transaction flag: * (cleared), ! (pending)
414
414
  */
415
415
  type flag = '*' | '!';
416
+ type CostDetailDto = {
417
+ /**
418
+ * Per-unit cost basis (mirrors engine Cost.number)
419
+ */
420
+ number?: string;
421
+ /**
422
+ * Cost currency
423
+ */
424
+ currency?: string;
425
+ /**
426
+ * Lot acquisition date (ISO yyyy-mm-dd)
427
+ */
428
+ date?: string;
429
+ /**
430
+ * Lot label
431
+ */
432
+ label?: string;
433
+ };
416
434
  type PostingResponseDto = {
417
435
  /**
418
436
  * Account name
@@ -426,6 +444,10 @@ type PostingResponseDto = {
426
444
  * Currency
427
445
  */
428
446
  currency?: string;
447
+ /**
448
+ * Booking-resolved cost (mirrors engine Cost). Undefined when the posting has no cost basis.
449
+ */
450
+ cost?: CostDetailDto;
429
451
  };
430
452
  type RecurringSuggestionDto = {
431
453
  /**
@@ -646,6 +668,10 @@ type PostingDetailDto = {
646
668
  * Cost date
647
669
  */
648
670
  costDate?: string;
671
+ /**
672
+ * Booking-resolved cost (mirrors engine Cost). Undefined when the posting has no cost basis.
673
+ */
674
+ cost?: CostDetailDto;
649
675
  /**
650
676
  * Price amount
651
677
  */
@@ -1146,17 +1172,17 @@ type ResolveResultDto = {
1146
1172
  [key: string]: string;
1147
1173
  };
1148
1174
  /**
1149
- * Resolution ID for undo
1175
+ * Resolution ID for undo. Absent when the resolver rejected the decision (review stayed PENDING).
1150
1176
  */
1151
- resolutionId: string;
1177
+ resolutionId?: string;
1152
1178
  /**
1153
1179
  * Whether this decision can be undone
1154
1180
  */
1155
- canUndo: boolean;
1181
+ canUndo?: boolean;
1156
1182
  /**
1157
1183
  * Deadline for undo (24h from resolution)
1158
1184
  */
1159
- undoDeadline: string;
1185
+ undoDeadline?: string;
1160
1186
  /**
1161
1187
  * Rule ID if learning was triggered (ACCEPT_AND_LEARN actions). Use this to deep-link to the rule management page.
1162
1188
  */
@@ -2663,6 +2689,92 @@ type UpdatePropertyDto = {
2663
2689
  */
2664
2690
  value: string;
2665
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
+ };
2666
2778
  type FileImportDto = {
2667
2779
  /**
2668
2780
  * Bill file to import (CSV, PDF, OFX, etc.)
@@ -3990,6 +4102,60 @@ type CashFlowResponseDto = {
3990
4102
  */
3991
4103
  warnings?: Array<ExchangeRateWarningDto>;
3992
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 for this category in base currency (expense amount when flow=expense, income amount when flow=income)
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 across all categories, converted (convertible categories only); expense totals when flow=expense, income totals when flow=income
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
+ };
3993
4159
  type MonetaryDto = {
3994
4160
  /**
3995
4161
  * Amount (Decimal string)
@@ -4284,6 +4450,14 @@ type TimeSeriesPointDto = {
4284
4450
  change?: {
4285
4451
  [key: string]: unknown;
4286
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;
4287
4461
  /**
4288
4462
  * Multi-currency breakdown for this point
4289
4463
  */
@@ -4347,6 +4521,68 @@ type PortfolioTrendsResponseDto = {
4347
4521
  */
4348
4522
  warnings?: Array<ExchangeRateWarningDto>;
4349
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
+ };
4350
4586
  type GenerateSnapshotBody = unknown;
4351
4587
  type GenerateSnapshotResponse = unknown;
4352
4588
  type BackfillSnapshotsBody = unknown;
@@ -4503,6 +4739,10 @@ type TransactionControllerListData = {
4503
4739
  * Filter by account ID (transactions with postings to this account)
4504
4740
  */
4505
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;
4506
4746
  /**
4507
4747
  * Filter by start date (inclusive), format: YYYY-MM-DD
4508
4748
  */
@@ -5300,6 +5540,92 @@ type PropertyControllerDeleteData = {
5300
5540
  key: string;
5301
5541
  };
5302
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;
5303
5629
  type ExportControllerExportBeancountResponse = unknown;
5304
5630
  type FileImportControllerImportFileData = {
5305
5631
  /**
@@ -5542,6 +5868,25 @@ type DashboardControllerGetCashFlowData = {
5542
5868
  region: 'cn' | 'us' | 'de' | 'gb';
5543
5869
  };
5544
5870
  type DashboardControllerGetCashFlowResponse = CashFlowResponseDto;
5871
+ type DashboardControllerGetExpensesData = {
5872
+ /**
5873
+ * Account root to aggregate (expense → ^Expenses:, income → ^Income:)
5874
+ */
5875
+ flow?: 'expense' | 'income';
5876
+ /**
5877
+ * Grouping strategy
5878
+ */
5879
+ groupBy?: 'category';
5880
+ /**
5881
+ * Time window (1m = current calendar month)
5882
+ */
5883
+ period?: '1m' | '3m' | '6m' | '1y';
5884
+ /**
5885
+ * Region code for tenant context
5886
+ */
5887
+ region: 'cn' | 'us' | 'de' | 'gb';
5888
+ };
5889
+ type DashboardControllerGetExpensesResponse = ExpensesByCategoryResponseDto;
5545
5890
  type HoldingPnlControllerGetHoldingPnlData = {
5546
5891
  /**
5547
5892
  * Scope to a single account
@@ -5661,6 +6006,21 @@ type ReportingControllerGetPortfolioTrendsData = {
5661
6006
  region: 'cn' | 'us' | 'de' | 'gb';
5662
6007
  };
5663
6008
  type ReportingControllerGetPortfolioTrendsResponse = PortfolioTrendsResponseDto;
6009
+ type ReportingControllerGetCashFlowTrendsData = {
6010
+ /**
6011
+ * Data granularity (accepted for API symmetry; v1 returns month buckets)
6012
+ */
6013
+ granularity?: 'day' | 'week' | 'month';
6014
+ /**
6015
+ * Time period
6016
+ */
6017
+ period?: '1m' | '3m' | '6m' | '1y';
6018
+ /**
6019
+ * Region code for tenant context
6020
+ */
6021
+ region: 'cn' | 'us' | 'de' | 'gb';
6022
+ };
6023
+ type ReportingControllerGetCashFlowTrendsResponse = CashFlowTrendsResponseDto;
5664
6024
  type ReportingControllerGenerateSnapshotData = {
5665
6025
  /**
5666
6026
  * Region code for tenant context
@@ -7071,6 +7431,102 @@ type $OpenApiTs = {
7071
7431
  };
7072
7432
  };
7073
7433
  };
7434
+ '/api/v1/{region}/bean/events': {
7435
+ post: {
7436
+ req: EventControllerCreateData;
7437
+ res: {
7438
+ /**
7439
+ * Life event created successfully
7440
+ */
7441
+ 201: EventResponseDto;
7442
+ /**
7443
+ * Life event already exists for this (userId, type, date) combination
7444
+ */
7445
+ 409: unknown;
7446
+ };
7447
+ };
7448
+ get: {
7449
+ req: EventControllerFindAllData;
7450
+ res: {
7451
+ /**
7452
+ * Life events retrieved successfully
7453
+ */
7454
+ 200: EventListResponseDto;
7455
+ };
7456
+ };
7457
+ };
7458
+ '/api/v1/{region}/bean/events/{id}': {
7459
+ get: {
7460
+ req: EventControllerFindOneData;
7461
+ res: {
7462
+ /**
7463
+ * Life event retrieved successfully
7464
+ */
7465
+ 200: EventResponseDto;
7466
+ /**
7467
+ * Life event not found
7468
+ */
7469
+ 404: unknown;
7470
+ };
7471
+ };
7472
+ put: {
7473
+ req: EventControllerUpdateData;
7474
+ res: {
7475
+ /**
7476
+ * Life event updated successfully
7477
+ */
7478
+ 200: EventResponseDto;
7479
+ /**
7480
+ * If-Match header is not a valid ISO 8601 date
7481
+ */
7482
+ 400: unknown;
7483
+ /**
7484
+ * Life event not found
7485
+ */
7486
+ 404: unknown;
7487
+ /**
7488
+ * Updated event conflicts with an existing (userId, type, date) combination
7489
+ */
7490
+ 409: unknown;
7491
+ /**
7492
+ * If-Match precondition failed (updatedAt mismatch)
7493
+ */
7494
+ 412: unknown;
7495
+ };
7496
+ };
7497
+ delete: {
7498
+ req: EventControllerDeleteData;
7499
+ res: {
7500
+ /**
7501
+ * Life event deleted successfully
7502
+ */
7503
+ 204: void;
7504
+ /**
7505
+ * Life event not found
7506
+ */
7507
+ 404: unknown;
7508
+ };
7509
+ };
7510
+ };
7511
+ '/api/v1/{region}/bean/events/{id}/slice': {
7512
+ get: {
7513
+ req: EventControllerGetSliceData;
7514
+ res: {
7515
+ /**
7516
+ * Time-series sliced by the life event range
7517
+ */
7518
+ 200: unknown;
7519
+ /**
7520
+ * accountPattern query param is empty
7521
+ */
7522
+ 400: unknown;
7523
+ /**
7524
+ * Life event not found
7525
+ */
7526
+ 404: unknown;
7527
+ };
7528
+ };
7529
+ };
7074
7530
  '/api/v1/{region}/bean/export/beancount': {
7075
7531
  get: {
7076
7532
  res: {
@@ -7483,6 +7939,25 @@ type $OpenApiTs = {
7483
7939
  };
7484
7940
  };
7485
7941
  };
7942
+ '/api/v1/{region}/dashboard/expenses': {
7943
+ get: {
7944
+ req: DashboardControllerGetExpensesData;
7945
+ res: {
7946
+ /**
7947
+ * Expenses retrieved successfully
7948
+ */
7949
+ 200: ExpensesByCategoryResponseDto;
7950
+ /**
7951
+ * Invalid groupBy or period
7952
+ */
7953
+ 400: unknown;
7954
+ /**
7955
+ * User not authenticated
7956
+ */
7957
+ 401: unknown;
7958
+ };
7959
+ };
7960
+ };
7486
7961
  '/api/v1/{region}/investment/holdings/pnl': {
7487
7962
  get: {
7488
7963
  req: HoldingPnlControllerGetHoldingPnlData;
@@ -7601,6 +8076,21 @@ type $OpenApiTs = {
7601
8076
  };
7602
8077
  };
7603
8078
  };
8079
+ '/api/v1/{region}/reporting/cash-flow/trends': {
8080
+ get: {
8081
+ req: ReportingControllerGetCashFlowTrendsData;
8082
+ res: {
8083
+ /**
8084
+ * Cash-flow trends retrieved successfully
8085
+ */
8086
+ 200: CashFlowTrendsResponseDto;
8087
+ /**
8088
+ * User not authenticated
8089
+ */
8090
+ 401: unknown;
8091
+ };
8092
+ };
8093
+ };
7604
8094
  '/api/v1/{region}/reporting/snapshots/generate': {
7605
8095
  post: {
7606
8096
  req: ReportingControllerGenerateSnapshotData;
@@ -7917,6 +8407,7 @@ declare class BeanTransactionsService {
7917
8407
  * @param data.status Filter by transaction status
7918
8408
  * @param data.search Search in narration and payee fields (max 200 chars)
7919
8409
  * @param data.accountId Filter by account ID (transactions with postings to this account)
8410
+ * @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
7920
8411
  * @returns TransactionListResponseDto Transaction list
7921
8412
  * @throws ApiError
7922
8413
  */
@@ -8222,4 +8713,4 @@ type OpenAPIConfig = {
8222
8713
  };
8223
8714
  declare const OpenAPI: OpenAPIConfig;
8224
8715
 
8225
- 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 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 };
8716
+ 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 };