@firela/api-types 0.0.0-canary.610daafc → 0.0.0-canary.6a42fd0e

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
@@ -1688,6 +1688,104 @@ type UpdateCommodityDto = {
1688
1688
  [key: string]: unknown;
1689
1689
  };
1690
1690
  };
1691
+ type CreateBeanPriceDto = {
1692
+ /**
1693
+ * Currency being priced (e.g., USD, AAPL, BTC)
1694
+ */
1695
+ currency: string;
1696
+ /**
1697
+ * Quote currency (pricing currency, e.g., CNY, EUR)
1698
+ */
1699
+ quoteCurrency: string;
1700
+ /**
1701
+ * Price amount (MUST be >= 0 per Beancount spec, supports up to 15 decimal places). Zero allowed for conversion entries, negative strictly prohibited.
1702
+ */
1703
+ amount: number;
1704
+ /**
1705
+ * Price date (ISO 8601 format)
1706
+ */
1707
+ date: string;
1708
+ /**
1709
+ * Metadata (validated by Zod schema, max field lengths enforced)
1710
+ */
1711
+ metadata?: {
1712
+ [key: string]: unknown;
1713
+ };
1714
+ };
1715
+ type PriceResponseDto = {
1716
+ /**
1717
+ * Unique identifier
1718
+ */
1719
+ id: string;
1720
+ /**
1721
+ * User ID (owner of the price)
1722
+ */
1723
+ userId: string;
1724
+ /**
1725
+ * Currency being priced (e.g., USD, AAPL, BTC)
1726
+ */
1727
+ currency: string;
1728
+ /**
1729
+ * Quote currency (pricing currency, e.g., USD, CNY)
1730
+ */
1731
+ quoteCurrency: string;
1732
+ /**
1733
+ * Price amount (corresponds to Beancount Amount.number). Supports up to 15 decimal places.
1734
+ */
1735
+ amount: number;
1736
+ /**
1737
+ * Price date (ISO 8601 format). Represents the date this price was valid.
1738
+ */
1739
+ date: string;
1740
+ /**
1741
+ * Metadata (corresponds to Beancount meta field). Contains source, confidence, note, etc.
1742
+ */
1743
+ meta: {
1744
+ [key: string]: unknown;
1745
+ };
1746
+ /**
1747
+ * Creation timestamp
1748
+ */
1749
+ createdAt: string;
1750
+ /**
1751
+ * Last update timestamp
1752
+ */
1753
+ updatedAt: string;
1754
+ };
1755
+ type PriceListResponseDto = {
1756
+ /**
1757
+ * List of prices
1758
+ */
1759
+ items: Array<PriceResponseDto>;
1760
+ /**
1761
+ * Total number of prices
1762
+ */
1763
+ total: number;
1764
+ };
1765
+ type UpdateBeanPriceDto = {
1766
+ /**
1767
+ * Currency being priced
1768
+ */
1769
+ currency?: string;
1770
+ /**
1771
+ * Quote currency (pricing currency)
1772
+ */
1773
+ quoteCurrency?: string;
1774
+ /**
1775
+ * Price amount (MUST be >= 0 per Beancount spec)
1776
+ */
1777
+ amount?: number;
1778
+ /**
1779
+ * Price date (ISO 8601 format)
1780
+ */
1781
+ date?: string;
1782
+ /**
1783
+ * Metadata
1784
+ */
1785
+ metadata?: {
1786
+ [key: string]: unknown;
1787
+ };
1788
+ };
1691
1789
  type CreateRecurringRuleDto = {
1692
1790
  /**
1693
1791
  * Rule name (unique per user)
@@ -2821,6 +2919,122 @@ type UpdateBeanEventDto = {
2821
2919
  [key: string]: unknown;
2822
2920
  };
2823
2921
  };
2922
+ type ActualBalanceDto = {
2923
+ /**
2924
+ * Actual balance amount as a decimal string (preserves precision for tolerance inference).
2925
+ */
2926
+ amount: string;
2927
+ /**
2928
+ * Currency code (ISO 4217 or commodity ticker).
2929
+ */
2930
+ ccy: string;
2931
+ };
2932
+ type ComputeReconciliationDto = {
2933
+ /**
2934
+ * BeanAccount id to reconcile.
2935
+ */
2936
+ accountId: string;
2937
+ /**
2938
+ * Assertion date (ISO 8601, e.g. "2026-07-24").
2939
+ */
2940
+ asOfDate: string;
2941
+ /**
2942
+ * Actual balance from the external statement.
2943
+ */
2944
+ actualBalance: ActualBalanceDto;
2945
+ };
2946
+ type ReconciliationComputeResultDto = {
2947
+ accountId: string;
2948
+ asOfDate: string;
2949
+ /**
2950
+ * System-computed book balance (decimal string).
2951
+ */
2952
+ bookBalance: string;
2953
+ /**
2954
+ * User-entered actual balance (decimal string).
2955
+ */
2956
+ actualBalance: string;
2957
+ currency: string;
2958
+ /**
2959
+ * Diff = book − actual (decimal string).
2960
+ */
2961
+ diff: string;
2962
+ /**
2963
+ * Applied tolerance (decimal string).
2964
+ */
2965
+ tolerance: string;
2966
+ /**
2967
+ * true when |diff| ≤ tolerance.
2968
+ */
2969
+ withinTolerance: boolean;
2970
+ /**
2971
+ * Suggested next action: assert when within tolerance, pad otherwise.
2972
+ */
2973
+ suggestedAction: 'assert' | 'pad';
2974
+ };
2975
+ /**
2976
+ * Suggested next action: assert when within tolerance, pad otherwise.
2977
+ */
2978
+ type suggestedAction = 'assert' | 'pad';
2979
+ type AssertReconciliationDto = {
2980
+ /**
2981
+ * BeanAccount id to reconcile.
2982
+ */
2983
+ accountId: string;
2984
+ /**
2985
+ * Assertion date (ISO 8601, e.g. "2026-07-24").
2986
+ */
2987
+ asOfDate: string;
2988
+ /**
2989
+ * Actual balance from the external statement.
2990
+ */
2991
+ actualBalance: ActualBalanceDto;
2992
+ /**
2993
+ * Optional explicit tolerance override. Omit to infer from amount precision (Beancount default).
2994
+ */
2995
+ tolerance?: string;
2996
+ };
2997
+ type ReconciliationRecordDto = {
2998
+ id: string;
2999
+ accountId: string;
3000
+ date: string;
3001
+ /**
3002
+ * Asserted (actual) amount.
3003
+ */
3004
+ amount: string;
3005
+ currency: string;
3006
+ tolerance?: string;
3007
+ /**
3008
+ * book − actual.
3009
+ */
3010
+ diffAmount?: string;
3011
+ diffCurrency?: string;
3012
+ createdAt: string;
3013
+ };
3014
+ type PadReconciliationDto = {
3015
+ /**
3016
+ * BeanAccount id to reconcile.
3017
+ */
3018
+ accountId: string;
3019
+ /**
3020
+ * Assertion date (ISO 8601, e.g. "2026-07-24").
3021
+ */
3022
+ asOfDate: string;
3023
+ /**
3024
+ * Actual balance from the external statement.
3025
+ */
3026
+ actualBalance: ActualBalanceDto;
3027
+ /**
3028
+ * Pad source account. Defaults to Equity:Opening-Balances (official Beancount convention).
3029
+ */
3030
+ sourceAccount?: string;
3031
+ };
3032
+ type PadResultDto = {
3033
+ /**
3034
+ * Created pad adjusting transaction id.
3035
+ */
3036
+ transactionId: string;
3037
+ };
2824
3038
  type FileImportDto = {
2825
3039
  /**
2826
3040
  * Bill file to import (CSV, PDF, OFX, etc.)
@@ -4377,187 +4591,89 @@ type HoldingPnlResponseDto = {
4377
4591
  * Realized-P&L lot-matching method (FIFO or average). Unrealized cost basis remains average regardless of this value (#473).
4378
4592
  */
4379
4593
  type method = 'average' | 'FIFO';
4380
- type CreateBeanPriceDto = {
4594
+ type CurrencyBalanceDto = {
4381
4595
  /**
4382
- * Currency being priced (e.g., USD, AAPL, BTC)
4596
+ * ISO 4217 currency code
4383
4597
  */
4384
4598
  currency: string;
4385
4599
  /**
4386
- * Quote currency (pricing currency, e.g., CNY, EUR)
4600
+ * Balance amount
4387
4601
  */
4388
- quoteCurrency: string;
4602
+ balance: string;
4603
+ };
4604
+ type TimeSeriesPointDto = {
4389
4605
  /**
4390
- * Price amount (MUST be >= 0 per Beancount spec, supports up to 15 decimal places). Zero allowed for conversion entries, negative strictly prohibited.
4606
+ * Date in YYYY-MM-DD format
4391
4607
  */
4392
- amount: number;
4608
+ date: string;
4393
4609
  /**
4394
- * Price date (ISO 8601 format)
4610
+ * Value at this date (in base currency)
4395
4611
  */
4396
- date: string;
4612
+ value: string;
4397
4613
  /**
4398
- * Metadata (validated by Zod schema, max field lengths enforced)
4614
+ * Change from previous point
4399
4615
  */
4400
- metadata?: {
4616
+ change?: {
4401
4617
  [key: string]: unknown;
4402
4618
  };
4403
- };
4404
- type PriceResponseDto = {
4405
4619
  /**
4406
- * Unique identifier
4620
+ * Total assets at this date (in base currency)
4407
4621
  */
4408
- id: string;
4622
+ assets?: string;
4409
4623
  /**
4410
- * User ID (owner of the price)
4624
+ * Total liabilities at this date (in base currency)
4411
4625
  */
4412
- userId: string;
4626
+ liabilities?: string;
4413
4627
  /**
4414
- * Currency being priced (e.g., USD, AAPL, BTC)
4628
+ * Multi-currency breakdown for this point
4415
4629
  */
4416
- currency: string;
4630
+ byCurrency?: Array<CurrencyBalanceDto>;
4631
+ };
4632
+ type TrendSummaryDto = {
4417
4633
  /**
4418
- * Quote currency (pricing currency, e.g., USD, CNY)
4634
+ * Value at start of period
4419
4635
  */
4420
- quoteCurrency: string;
4636
+ startValue: string;
4421
4637
  /**
4422
- * Price amount (corresponds to Beancount Amount.number). Supports up to 15 decimal places.
4638
+ * Value at end of period
4423
4639
  */
4424
- amount: number;
4640
+ endValue: string;
4425
4641
  /**
4426
- * Price date (ISO 8601 format). Represents the date this price was valid.
4642
+ * Total change over period
4427
4643
  */
4428
- date: string;
4644
+ totalChange: string;
4429
4645
  /**
4430
- * Metadata (corresponds to Beancount meta field). Contains source, confidence, note, etc.
4646
+ * Total change percentage
4431
4647
  */
4432
- meta: {
4433
- [key: string]: unknown;
4434
- };
4648
+ totalChangePercentage: string;
4649
+ };
4650
+ type MultiCurrencyPointDto = {
4435
4651
  /**
4436
- * Creation timestamp
4652
+ * Date in YYYY-MM-DD format
4437
4653
  */
4438
- createdAt: string;
4654
+ date: string;
4439
4655
  /**
4440
- * Last update timestamp
4656
+ * Balances by currency
4441
4657
  */
4442
- updatedAt: string;
4658
+ byCurrency: Array<CurrencyBalanceDto>;
4443
4659
  };
4444
- type PriceListResponseDto = {
4660
+ type PortfolioTrendsResponseDto = {
4445
4661
  /**
4446
- * List of prices
4662
+ * Time series data points
4447
4663
  */
4448
- items: Array<PriceResponseDto>;
4664
+ series: Array<TimeSeriesPointDto>;
4449
4665
  /**
4450
- * Total number of prices
4666
+ * Period summary
4451
4667
  */
4452
- total: number;
4453
- };
4454
- type UpdateBeanPriceDto = {
4668
+ summary: TrendSummaryDto;
4455
4669
  /**
4456
- * Currency being priced
4670
+ * Period requested
4457
4671
  */
4458
- currency?: string;
4672
+ period: string;
4459
4673
  /**
4460
- * Quote currency (pricing currency)
4674
+ * Data granularity
4461
4675
  */
4462
- quoteCurrency?: string;
4463
- /**
4464
- * Price amount (MUST be >= 0 per Beancount spec)
4465
- */
4466
- amount?: number;
4467
- /**
4468
- * Price date (ISO 8601 format)
4469
- */
4470
- date?: string;
4471
- /**
4472
- * Metadata
4473
- */
4474
- metadata?: {
4475
- [key: string]: unknown;
4476
- };
4477
- };
4478
- type CurrencyBalanceDto = {
4479
- /**
4480
- * ISO 4217 currency code
4481
- */
4482
- currency: string;
4483
- /**
4484
- * Balance amount
4485
- */
4486
- balance: string;
4487
- };
4488
- type TimeSeriesPointDto = {
4489
- /**
4490
- * Date in YYYY-MM-DD format
4491
- */
4492
- date: string;
4493
- /**
4494
- * Value at this date (in base currency)
4495
- */
4496
- value: string;
4497
- /**
4498
- * Change from previous point
4499
- */
4500
- change?: {
4501
- [key: string]: unknown;
4502
- };
4503
- /**
4504
- * Total assets at this date (in base currency)
4505
- */
4506
- assets?: string;
4507
- /**
4508
- * Total liabilities at this date (in base currency)
4509
- */
4510
- liabilities?: string;
4511
- /**
4512
- * Multi-currency breakdown for this point
4513
- */
4514
- byCurrency?: Array<CurrencyBalanceDto>;
4515
- };
4516
- type TrendSummaryDto = {
4517
- /**
4518
- * Value at start of period
4519
- */
4520
- startValue: string;
4521
- /**
4522
- * Value at end of period
4523
- */
4524
- endValue: string;
4525
- /**
4526
- * Total change over period
4527
- */
4528
- totalChange: string;
4529
- /**
4530
- * Total change percentage
4531
- */
4532
- totalChangePercentage: string;
4533
- };
4534
- type MultiCurrencyPointDto = {
4535
- /**
4536
- * Date in YYYY-MM-DD format
4537
- */
4538
- date: string;
4539
- /**
4540
- * Balances by currency
4541
- */
4542
- byCurrency: Array<CurrencyBalanceDto>;
4543
- };
4544
- type PortfolioTrendsResponseDto = {
4545
- /**
4546
- * Time series data points
4547
- */
4548
- series: Array<TimeSeriesPointDto>;
4549
- /**
4550
- * Period summary
4551
- */
4552
- summary: TrendSummaryDto;
4553
- /**
4554
- * Period requested
4555
- */
4556
- period: string;
4557
- /**
4558
- * Data granularity
4559
- */
4560
- granularity: string;
4676
+ granularity: string;
4561
4677
  /**
4562
4678
  * Base currency for converted values
4563
4679
  */
@@ -5213,6 +5329,91 @@ type CommodityControllerBulkCreateData = {
5213
5329
  region: 'cn' | 'us' | 'de' | 'gb';
5214
5330
  };
5215
5331
  type CommodityControllerBulkCreateResponse = Array<CommodityResponseDto>;
5332
+ type PriceControllerCreateData = {
5333
+ /**
5334
+ * Region code for tenant context
5335
+ */
5336
+ region: 'cn' | 'us' | 'de' | 'gb';
5337
+ requestBody: CreateBeanPriceDto;
5338
+ };
5339
+ type PriceControllerCreateResponse = PriceResponseDto;
5340
+ type PriceControllerFindAllData = {
5341
+ /**
5342
+ * Filter by currency (e.g., BTC, AAPL, USD)
5343
+ */
5344
+ currency?: string;
5345
+ /**
5346
+ * Filter prices from this date (ISO 8601 format)
5347
+ */
5348
+ dateFrom?: string;
5349
+ /**
5350
+ * Filter prices to this date (ISO 8601 format)
5351
+ */
5352
+ dateTo?: string;
5353
+ /**
5354
+ * Number of items per page (default: 20, max: 100)
5355
+ */
5356
+ limit?: number;
5357
+ /**
5358
+ * Page number for pagination (default: 1)
5359
+ */
5360
+ page?: number;
5361
+ /**
5362
+ * Filter by quote currency (pricing currency, e.g., USD, CNY)
5363
+ */
5364
+ quoteCurrency?: string;
5365
+ /**
5366
+ * Region code for tenant context
5367
+ */
5368
+ region: 'cn' | 'us' | 'de' | 'gb';
5369
+ /**
5370
+ * Search term for currency or quoteCurrency (case-insensitive partial match)
5371
+ */
5372
+ search?: string;
5373
+ };
5374
+ type PriceControllerFindAllResponse = PriceListResponseDto;
5375
+ type PriceControllerFindOneData = {
5376
+ /**
5377
+ * Price ID
5378
+ */
5379
+ id: string;
5380
+ /**
5381
+ * Region code for tenant context
5382
+ */
5383
+ region: 'cn' | 'us' | 'de' | 'gb';
5384
+ };
5385
+ type PriceControllerFindOneResponse = PriceResponseDto;
5386
+ type PriceControllerUpdateData = {
5387
+ /**
5388
+ * Price ID
5389
+ */
5390
+ id: string;
5391
+ /**
5392
+ * Region code for tenant context
5393
+ */
5394
+ region: 'cn' | 'us' | 'de' | 'gb';
5395
+ requestBody: UpdateBeanPriceDto;
5396
+ };
5397
+ type PriceControllerUpdateResponse = PriceResponseDto;
5398
+ type PriceControllerDeleteData = {
5399
+ /**
5400
+ * Price ID
5401
+ */
5402
+ id: string;
5403
+ /**
5404
+ * Region code for tenant context
5405
+ */
5406
+ region: 'cn' | 'us' | 'de' | 'gb';
5407
+ };
5408
+ type PriceControllerDeleteResponse = void;
5409
+ type PriceControllerBulkCreateData = {
5410
+ /**
5411
+ * Region code for tenant context
5412
+ */
5413
+ region: 'cn' | 'us' | 'de' | 'gb';
5414
+ requestBody: Array<string>;
5415
+ };
5416
+ type PriceControllerBulkCreateResponse = Array<PriceResponseDto>;
5216
5417
  type RecurringRuleControllerCreateData = {
5217
5418
  /**
5218
5419
  * Region code for tenant context
@@ -5676,6 +5877,41 @@ type EventControllerGetSliceData = {
5676
5877
  region: 'cn' | 'us' | 'de' | 'gb';
5677
5878
  };
5678
5879
  type EventControllerGetSliceResponse = unknown;
5880
+ type ReconciliationControllerComputeData = {
5881
+ /**
5882
+ * Region code for tenant context (decorative for reconciliation)
5883
+ */
5884
+ region: 'cn' | 'us' | 'de' | 'gb';
5885
+ requestBody: ComputeReconciliationDto;
5886
+ };
5887
+ type ReconciliationControllerComputeResponse = ReconciliationComputeResultDto;
5888
+ type ReconciliationControllerAssertData = {
5889
+ /**
5890
+ * Region code for tenant context (decorative for reconciliation)
5891
+ */
5892
+ region: 'cn' | 'us' | 'de' | 'gb';
5893
+ requestBody: AssertReconciliationDto;
5894
+ };
5895
+ type ReconciliationControllerAssertResponse = ReconciliationRecordDto;
5896
+ type ReconciliationControllerPadData = {
5897
+ /**
5898
+ * Region code for tenant context (decorative for reconciliation)
5899
+ */
5900
+ region: 'cn' | 'us' | 'de' | 'gb';
5901
+ requestBody: PadReconciliationDto;
5902
+ };
5903
+ type ReconciliationControllerPadResponse = PadResultDto;
5904
+ type ReconciliationControllerHistoryData = {
5905
+ /**
5906
+ * BeanAccount id
5907
+ */
5908
+ accountId: string;
5909
+ /**
5910
+ * Region code for tenant context (decorative for reconciliation)
5911
+ */
5912
+ region: 'cn' | 'us' | 'de' | 'gb';
5913
+ };
5914
+ type ReconciliationControllerHistoryResponse = Array<ReconciliationRecordDto>;
5679
5915
  type ExportControllerExportBeancountResponse = unknown;
5680
5916
  type FileImportControllerImportFileData = {
5681
5917
  /**
@@ -5956,91 +6192,6 @@ type HoldingPnlControllerGetHoldingPnlData = {
5956
6192
  region: 'cn' | 'us' | 'de' | 'gb';
5957
6193
  };
5958
6194
  type HoldingPnlControllerGetHoldingPnlResponse = HoldingPnlResponseDto;
5959
- type PriceControllerCreateData = {
5960
- /**
5961
- * Region code for tenant context
5962
- */
5963
- region: 'cn' | 'us' | 'de' | 'gb';
5964
- requestBody: CreateBeanPriceDto;
5965
- };
5966
- type PriceControllerCreateResponse = PriceResponseDto;
5967
- type PriceControllerFindAllData = {
5968
- /**
5969
- * Filter by currency (e.g., BTC, AAPL, USD)
5970
- */
5971
- currency?: string;
5972
- /**
5973
- * Filter prices from this date (ISO 8601 format)
5974
- */
5975
- dateFrom?: string;
5976
- /**
5977
- * Filter prices to this date (ISO 8601 format)
5978
- */
5979
- dateTo?: string;
5980
- /**
5981
- * Number of items per page (default: 20, max: 100)
5982
- */
5983
- limit?: number;
5984
- /**
5985
- * Page number for pagination (default: 1)
5986
- */
5987
- page?: number;
5988
- /**
5989
- * Filter by quote currency (pricing currency, e.g., USD, CNY)
5990
- */
5991
- quoteCurrency?: string;
5992
- /**
5993
- * Region code for tenant context
5994
- */
5995
- region: 'cn' | 'us' | 'de' | 'gb';
5996
- /**
5997
- * Search term for currency or quoteCurrency (case-insensitive partial match)
5998
- */
5999
- search?: string;
6000
- };
6001
- type PriceControllerFindAllResponse = PriceListResponseDto;
6002
- type PriceControllerFindOneData = {
6003
- /**
6004
- * Price ID
6005
- */
6006
- id: string;
6007
- /**
6008
- * Region code for tenant context
6009
- */
6010
- region: 'cn' | 'us' | 'de' | 'gb';
6011
- };
6012
- type PriceControllerFindOneResponse = PriceResponseDto;
6013
- type PriceControllerUpdateData = {
6014
- /**
6015
- * Price ID
6016
- */
6017
- id: string;
6018
- /**
6019
- * Region code for tenant context
6020
- */
6021
- region: 'cn' | 'us' | 'de' | 'gb';
6022
- requestBody: UpdateBeanPriceDto;
6023
- };
6024
- type PriceControllerUpdateResponse = PriceResponseDto;
6025
- type PriceControllerDeleteData = {
6026
- /**
6027
- * Price ID
6028
- */
6029
- id: string;
6030
- /**
6031
- * Region code for tenant context
6032
- */
6033
- region: 'cn' | 'us' | 'de' | 'gb';
6034
- };
6035
- type PriceControllerDeleteResponse = void;
6036
- type PriceControllerBulkCreateData = {
6037
- /**
6038
- * Region code for tenant context
6039
- */
6040
- region: 'cn' | 'us' | 'de' | 'gb';
6041
- requestBody: Array<string>;
6042
- };
6043
- type PriceControllerBulkCreateResponse = Array<PriceResponseDto>;
6044
6195
  type ReportingControllerGetPortfolioTrendsData = {
6045
6196
  /**
6046
6197
  * Data granularity
@@ -6837,6 +6988,90 @@ type $OpenApiTs = {
6837
6988
  };
6838
6989
  };
6839
6990
  };
6991
+ '/api/v1/{region}/bean/prices': {
6992
+ post: {
6993
+ req: PriceControllerCreateData;
6994
+ res: {
6995
+ /**
6996
+ * Price created successfully
6997
+ */
6998
+ 201: PriceResponseDto;
6999
+ /**
7000
+ * Currency or quoteCurrency commodity not found
7001
+ */
7002
+ 404: unknown;
7003
+ /**
7004
+ * Price already exists for this currency pair and date
7005
+ */
7006
+ 409: unknown;
7007
+ };
7008
+ };
7009
+ get: {
7010
+ req: PriceControllerFindAllData;
7011
+ res: {
7012
+ /**
7013
+ * Prices retrieved successfully
7014
+ */
7015
+ 200: PriceListResponseDto;
7016
+ };
7017
+ };
7018
+ };
7019
+ '/api/v1/{region}/bean/prices/{id}': {
7020
+ get: {
7021
+ req: PriceControllerFindOneData;
7022
+ res: {
7023
+ /**
7024
+ * Price retrieved successfully
7025
+ */
7026
+ 200: PriceResponseDto;
7027
+ /**
7028
+ * Price not found
7029
+ */
7030
+ 404: unknown;
7031
+ };
7032
+ };
7033
+ put: {
7034
+ req: PriceControllerUpdateData;
7035
+ res: {
7036
+ /**
7037
+ * Price updated successfully
7038
+ */
7039
+ 200: PriceResponseDto;
7040
+ /**
7041
+ * Price not found
7042
+ */
7043
+ 404: unknown;
7044
+ /**
7045
+ * Updated price conflicts with existing price
7046
+ */
7047
+ 409: unknown;
7048
+ };
7049
+ };
7050
+ delete: {
7051
+ req: PriceControllerDeleteData;
7052
+ res: {
7053
+ /**
7054
+ * Price deleted successfully
7055
+ */
7056
+ 204: void;
7057
+ /**
7058
+ * Price not found
7059
+ */
7060
+ 404: unknown;
7061
+ };
7062
+ };
7063
+ };
7064
+ '/api/v1/{region}/bean/prices/bulk': {
7065
+ post: {
7066
+ req: PriceControllerBulkCreateData;
7067
+ res: {
7068
+ /**
7069
+ * Prices created successfully
7070
+ */
7071
+ 201: Array<PriceResponseDto>;
7072
+ };
7073
+ };
7074
+ };
6840
7075
  '/api/v1/{region}/bean/recurring-rules': {
6841
7076
  post: {
6842
7077
  req: RecurringRuleControllerCreateData;
@@ -7577,6 +7812,70 @@ type $OpenApiTs = {
7577
7812
  };
7578
7813
  };
7579
7814
  };
7815
+ '/api/v1/{region}/bean/reconciliations': {
7816
+ post: {
7817
+ req: ReconciliationControllerComputeData;
7818
+ res: {
7819
+ /**
7820
+ * Reconciliation preview
7821
+ */
7822
+ 200: ReconciliationComputeResultDto;
7823
+ /**
7824
+ * Account not found
7825
+ */
7826
+ 404: unknown;
7827
+ };
7828
+ };
7829
+ };
7830
+ '/api/v1/{region}/bean/reconciliations/assert': {
7831
+ post: {
7832
+ req: ReconciliationControllerAssertData;
7833
+ res: {
7834
+ /**
7835
+ * Balance assertion recorded
7836
+ */
7837
+ 201: ReconciliationRecordDto;
7838
+ /**
7839
+ * Account not found
7840
+ */
7841
+ 404: unknown;
7842
+ };
7843
+ };
7844
+ };
7845
+ '/api/v1/{region}/bean/reconciliations/pad': {
7846
+ post: {
7847
+ req: ReconciliationControllerPadData;
7848
+ res: {
7849
+ /**
7850
+ * Pad adjusting entry generated
7851
+ */
7852
+ 201: PadResultDto;
7853
+ /**
7854
+ * Book already within tolerance — no pad needed
7855
+ */
7856
+ 400: unknown;
7857
+ /**
7858
+ * Account not found
7859
+ */
7860
+ 404: unknown;
7861
+ };
7862
+ };
7863
+ };
7864
+ '/api/v1/{region}/bean/accounts/{accountId}/reconciliations': {
7865
+ get: {
7866
+ req: ReconciliationControllerHistoryData;
7867
+ res: {
7868
+ /**
7869
+ * Reconciliation history
7870
+ */
7871
+ 200: Array<ReconciliationRecordDto>;
7872
+ /**
7873
+ * Account not found
7874
+ */
7875
+ 404: unknown;
7876
+ };
7877
+ };
7878
+ };
7580
7879
  '/api/v1/{region}/bean/export/beancount': {
7581
7880
  get: {
7582
7881
  res: {
@@ -8027,90 +8326,6 @@ type $OpenApiTs = {
8027
8326
  };
8028
8327
  };
8029
8328
  };
8030
- '/api/v1/{region}/bean/prices': {
8031
- post: {
8032
- req: PriceControllerCreateData;
8033
- res: {
8034
- /**
8035
- * Price created successfully
8036
- */
8037
- 201: PriceResponseDto;
8038
- /**
8039
- * Currency or quoteCurrency commodity not found
8040
- */
8041
- 404: unknown;
8042
- /**
8043
- * Price already exists for this currency pair and date
8044
- */
8045
- 409: unknown;
8046
- };
8047
- };
8048
- get: {
8049
- req: PriceControllerFindAllData;
8050
- res: {
8051
- /**
8052
- * Prices retrieved successfully
8053
- */
8054
- 200: PriceListResponseDto;
8055
- };
8056
- };
8057
- };
8058
- '/api/v1/{region}/bean/prices/{id}': {
8059
- get: {
8060
- req: PriceControllerFindOneData;
8061
- res: {
8062
- /**
8063
- * Price retrieved successfully
8064
- */
8065
- 200: PriceResponseDto;
8066
- /**
8067
- * Price not found
8068
- */
8069
- 404: unknown;
8070
- };
8071
- };
8072
- put: {
8073
- req: PriceControllerUpdateData;
8074
- res: {
8075
- /**
8076
- * Price updated successfully
8077
- */
8078
- 200: PriceResponseDto;
8079
- /**
8080
- * Price not found
8081
- */
8082
- 404: unknown;
8083
- /**
8084
- * Updated price conflicts with existing price
8085
- */
8086
- 409: unknown;
8087
- };
8088
- };
8089
- delete: {
8090
- req: PriceControllerDeleteData;
8091
- res: {
8092
- /**
8093
- * Price deleted successfully
8094
- */
8095
- 204: void;
8096
- /**
8097
- * Price not found
8098
- */
8099
- 404: unknown;
8100
- };
8101
- };
8102
- };
8103
- '/api/v1/{region}/bean/prices/bulk': {
8104
- post: {
8105
- req: PriceControllerBulkCreateData;
8106
- res: {
8107
- /**
8108
- * Prices created successfully
8109
- */
8110
- 201: Array<PriceResponseDto>;
8111
- };
8112
- };
8113
- };
8114
8329
  '/api/v1/{region}/reporting/portfolio/trends': {
8115
8330
  get: {
8116
8331
  req: ReportingControllerGetPortfolioTrendsData;
@@ -8763,4 +8978,4 @@ type OpenAPIConfig = {
8763
8978
  };
8764
8979
  declare const OpenAPI: OpenAPIConfig;
8765
8980
 
8766
- export { type $OpenApiTs, type AccountControllerCloseData, type AccountControllerCloseResponse, type AccountControllerCreateData, type AccountControllerCreateResponse, type AccountControllerDeleteData, type AccountControllerDeleteResponse, type AccountControllerFindAllData, type AccountControllerFindAllResponse, type AccountControllerFindOneData, type AccountControllerFindOneResponse, type AccountControllerReopenData, type AccountControllerReopenResponse, type AccountControllerUpdateData, type AccountControllerUpdateResponse, type AccountExchangeRateWarningDto, type AccountItemDto, type AccountItemWithAssetClassDto, type AccountListResponseDto, type AccountResponseDto, type AccountStandardListResponseDto, type AccountStandardResponseDto, type AccountStandardsControllerGetRegionsData, type AccountStandardsControllerGetRegionsResponse, type AccountStandardsControllerGetTemplateMetadataData, type AccountStandardsControllerGetTemplateMetadataResponse, type AccountStandardsControllerGetTemplatesData, type AccountStandardsControllerGetTemplatesResponse, type AccountsResponseDto, type AccountsSummaryDto, type AmountDto, type AmountRangeDto, type AnonymousLoginDto, type ApiKeysControllerCreateApiKeyResponse, type ApiProblemResponseDto, type AssetClassAccountsResponseDto, type AssetClassGroupDto, type AssetClassSummaryDto, type AuthControllerAccessTokenLoginData, type AuthControllerAccessTokenLoginResponse, type BackfillSnapshotsBody, type BackfillSnapshotsResponse, type BalanceByCurrencyDto, type BalanceControllerGetBalanceData, type BalanceControllerGetBalanceResponse, type BalanceControllerGetMultiCurrencyBalanceData, type BalanceControllerGetMultiCurrencyBalanceResponse, type BalanceResponseDto, type BatchCreateTransactionDto, type BatchResolveDto, type BatchResolveResultDto, type BatchTransactionErrorDto, type BatchTransactionResponseDto, BeanAccountsService, BeanBalancesService, BeanCommoditiesService, BeanTransactionsService, type BulkCreateRulesDto, type BulkCreateRulesResponseDto, type CacheControllerFlushCacheResponse, type CashFlowByCurrencyDto, type CashFlowPointDto, type CashFlowResponseDto, type CashFlowTrendSummaryDto, type CashFlowTrendsResponseDto, type CategoryGroupDto, type CloseAccountDto, type CommodityControllerBulkCreateData, type CommodityControllerBulkCreateResponse, type CommodityControllerCreateData, type CommodityControllerCreateResponse, type CommodityControllerDeleteData, type CommodityControllerDeleteResponse, type CommodityControllerFindAllData, type CommodityControllerFindAllResponse, type CommodityControllerFindOneData, type CommodityControllerFindOneResponse, type CommodityControllerGetOrCreateData, type CommodityControllerGetOrCreateResponse, type CommodityControllerUpdateData, type CommodityControllerUpdateResponse, type CommodityListResponseDto, type CommodityResponseDto, type ConfirmMatchDto, type ConvertedCashFlowDto, type ConvertedNetWorthDto, type CorrectTransactionDto, type CostDetailDto, type CostSpecDto, type CreateAccountDto, type CreateBeanEventDto, type CreateBeanPriceDto, type CreateCommodityDto, type CreatePayeeDto, type CreatePayeeProfileDto, type CreatePlatformDto, type CreatePostingDto, type CreateRecurringRuleDto, type CreateRuleFromTransactionDto, type CreateTransactionDto, type CreateTransactionRuleDto, type CurrencyBalanceDto, type CurrentPriceDto, type DashboardControllerGetAccountsData, type DashboardControllerGetAccountsResponse, type DashboardControllerGetCashFlowData, type DashboardControllerGetCashFlowResponse, type DashboardControllerGetExpensesData, type DashboardControllerGetExpensesResponse, type DashboardControllerGetNetWorthData, type DashboardControllerGetNetWorthResponse, type DecisionOptionDto, type DeleteOwnUserDto, type EnterNowDto, type EventControllerCreateData, type EventControllerCreateResponse, type EventControllerDeleteData, type EventControllerDeleteResponse, type EventControllerFindAllData, type EventControllerFindAllResponse, type EventControllerFindOneData, type EventControllerFindOneResponse, type EventControllerGetSliceData, type EventControllerGetSliceResponse, type EventControllerUpdateData, type EventControllerUpdateResponse, type EventListResponseDto, type EventResponseDto, type ExchangeRateControllerGetExchangeRateData, type ExchangeRateControllerGetExchangeRateResponse, type ExchangeRateWarningDto, type ExpectedTransactionControllerConfirmMatchData, type ExpectedTransactionControllerConfirmMatchResponse, type ExpectedTransactionControllerEnterNowData, type ExpectedTransactionControllerEnterNowResponse, type ExpectedTransactionControllerFindAllData, type ExpectedTransactionControllerFindAllResponse, type ExpectedTransactionControllerFindOneData, type ExpectedTransactionControllerFindOneResponse, type ExpectedTransactionControllerFindOverdueData, type ExpectedTransactionControllerFindOverdueResponse, type ExpectedTransactionControllerSkipData, type ExpectedTransactionControllerSkipResponse, type ExpectedTransactionControllerUndoSkipData, type ExpectedTransactionControllerUndoSkipResponse, type ExpectedTransactionControllerUnmatchData, type ExpectedTransactionControllerUnmatchResponse, type ExpectedTransactionListResponseDto, type ExpectedTransactionResponseDto, type ExpectedTransactionRuleDto, type ExpensesByCategoryResponseDto, type ExpensesByCategorySummaryDto, type ExportControllerExportBeancountResponse, type ExportRulesResponseDto, type FileImportControllerIdentifyFileData, type FileImportControllerIdentifyFileResponse, type FileImportControllerImportBeancountData, type FileImportControllerImportBeancountResponse, type FileImportControllerImportFileData, type FileImportControllerImportFileResponse, type FileImportDto, type ForecastControllerGetForecastData, type ForecastControllerGetForecastResponse, type ForecastItemDto, type ForecastResponseDto, type FxRateDto, type GenerateSnapshotBody, type GenerateSnapshotResponse, type HealthControllerCheckDatabaseResponse, type HealthControllerCheckOpenBbResponse, type HealthControllerCheckRedisResponse, type HealthControllerGetCircuitBreakersHealthResponse, type HealthControllerGetHealthResponse, type HealthControllerGetMetricsResponse, type HealthControllerResetCircuitBreakerData, type HealthControllerResetCircuitBreakerResponse, HealthService, type HoldingAssetClassAccountSliceDto, type HoldingAssetClassCrossAccountResponseDto, type HoldingPnlControllerGetHoldingPnlData, type HoldingPnlControllerGetHoldingPnlResponse, type HoldingPnlResponseDto, type HoldingPnlRowDto, type HoldingPnlWarningDto, type IdentifyResultDto, type ImportErrorDto, type ImportResultDto, type ImporterConfigControllerGetConfigData, type ImporterConfigControllerGetConfigResponse, type ImporterConfigControllerResetConfigData, type ImporterConfigControllerResetConfigResponse, type ImporterConfigControllerUpdateConfigData, type ImporterConfigControllerUpdateConfigResponse, type ImporterConfigDataDto, type ImporterConfigDto, type InfoControllerGetInfoResponse, type MapperDefaultsDto, type MonetaryDto, type MonthlyForecastDto, type MultiCurrencyBalanceResponseDto, type MultiCurrencyPointDto, type NetWorthByCurrencyDto, type NetWorthResponseDto, type NlpAccountConfirmationDataDto, type NlpAlternativePayeeDto, type NlpControllerClearSessionData, type NlpControllerClearSessionResponse, type NlpControllerGetSessionData, type NlpControllerGetSessionResponse, type NlpControllerProcessNaturalLanguageData, type NlpControllerProcessNaturalLanguageResponse, type NlpDefaultAccountsDto, type NlpDuplicateConfirmationDataDto, type NlpParsedDataDto, type NlpPayeeConfirmationDataDto, type NlpResponseDto, type NlpRuleConfirmationDataDto, type NlpSimilarityDto, type NlpSourceTransactionDto, type NlpSuggestedAccountDto, type NlpSuggestedAccountsDto, type NlpSuggestedPayeeDto, type NlpTargetTransactionDto, type NlpTransactionInfoDto, OpenAPI, type OpenAPIConfig, type ParserTelemetryReportDto, type PayeeAutocompleteResponseDto, type PayeeControllerAutocompleteData, type PayeeControllerAutocompleteResponse, type PayeeControllerCreateData, type PayeeControllerCreateResponse, type PayeeControllerDeleteData, type PayeeControllerDeleteResponse, type PayeeControllerFindAllData, type PayeeControllerFindAllResponse, type PayeeControllerFindOneData, type PayeeControllerFindOneResponse, type PayeeControllerGetTopPayeesData, type PayeeControllerGetTopPayeesResponse, type PayeeControllerUpdateData, type PayeeControllerUpdateResponse, type PayeeListResponseDto, type PayeeProfileAdminControllerCreateData, type PayeeProfileAdminControllerCreateResponse, type PayeeProfileAdminControllerDeleteData, type PayeeProfileAdminControllerDeleteResponse, type PayeeProfileAdminControllerFindAllData, type PayeeProfileAdminControllerFindAllResponse, type PayeeProfileAdminControllerFindOneData, type PayeeProfileAdminControllerFindOneResponse, type PayeeProfileAdminControllerUnverifyData, type PayeeProfileAdminControllerUnverifyResponse, type PayeeProfileAdminControllerUpdateData, type PayeeProfileAdminControllerUpdateResponse, type PayeeProfileAdminControllerVerifyData, type PayeeProfileAdminControllerVerifyResponse, type PayeeProfileListResponseDto, type PayeeProfileResponseDto, type PayeeResponseDto, type PayeeStatsResponseDto, type PlatformControllerCreateData, type PlatformControllerCreateResponse, type PlatformControllerDeleteData, type PlatformControllerDeleteResponse, type PlatformControllerFindAllResponse, type PlatformControllerGetPlatformListResponse, type PlatformControllerMatchPlatformsData, type PlatformControllerMatchPlatformsResponse, type PlatformControllerUpdateData, type PlatformControllerUpdateResponse, type PlatformGroupDto, type PortfolioTrendsResponseDto, type PostingDetailDto, type PostingResponseDto, type PriceControllerBulkCreateData, type PriceControllerBulkCreateResponse, type PriceControllerCreateData, type PriceControllerCreateResponse, type PriceControllerDeleteData, type PriceControllerDeleteResponse, type PriceControllerFindAllData, type PriceControllerFindAllResponse, type PriceControllerFindOneData, type PriceControllerFindOneResponse, type PriceControllerUpdateData, type PriceControllerUpdateResponse, type PriceListResponseDto, type PriceResponseDto, type ProcessNlpDto, type PropertyControllerDeleteData, type PropertyControllerDeleteResponse, type PropertyControllerGetAllResponse, type PropertyControllerGetByKeyData, type PropertyControllerGetByKeyResponse, type PropertyControllerUpdateData, type PropertyControllerUpdateResponse, type ProviderSyncConfigDto, type ProviderSyncControllerGetSupportedProvidersData, type ProviderSyncControllerGetSupportedProvidersResponse, type ProviderSyncControllerIsProviderSupportedData, type ProviderSyncControllerIsProviderSupportedResponse, type ProviderSyncControllerSyncData, type ProviderSyncControllerSyncResponse, type ProviderSyncDto, type ProviderSyncResponseDto, ProviderSyncService, type RecurringMatchInfoDto, type RecurringRuleControllerCreateData, type RecurringRuleControllerCreateFromTransactionData, type RecurringRuleControllerCreateFromTransactionResponse, type RecurringRuleControllerCreateResponse, type RecurringRuleControllerDeleteData, type RecurringRuleControllerDeleteResponse, type RecurringRuleControllerFindAllData, type RecurringRuleControllerFindAllResponse, type RecurringRuleControllerFindOneData, type RecurringRuleControllerFindOneResponse, type RecurringRuleControllerGetWithStatsData, type RecurringRuleControllerGetWithStatsResponse, type RecurringRuleControllerUpdateData, type RecurringRuleControllerUpdateResponse, type RecurringRuleResponseDto, type RecurringRuleWithStatsResponseDto, type RecurringSuggestionDto, type RegionConfigDto, type RegionInfoDto, type RegionsMetadataResponseDto, type ReopenAccountDto, type ReportingControllerBackfillSnapshotsData, type ReportingControllerBackfillSnapshotsResponse, type ReportingControllerGenerateSnapshotData, type ReportingControllerGenerateSnapshotResponse, type ReportingControllerGetCashFlowTrendsData, type ReportingControllerGetCashFlowTrendsResponse, type ReportingControllerGetPortfolioTrendsData, type ReportingControllerGetPortfolioTrendsResponse, type ResolveResultDto, type ResolveReviewDto, type ReviewControllerBatchResolveData, type ReviewControllerBatchResolveResponse, type ReviewControllerFindAllData, type ReviewControllerFindAllResponse, type ReviewControllerFindOneData, type ReviewControllerFindOneResponse, type ReviewControllerGetStatsData, type ReviewControllerGetStatsResponse, type ReviewControllerResolveData, type ReviewControllerResolveResponse, type ReviewControllerUndoData, type ReviewControllerUndoResponse, type ReviewDetailDto, type ReviewItemPreviewDto, type ReviewListResponseDto, type ReviewStatsDto, type ReviewSummaryDto, type RuleStatisticsResponseDto, type SignupDto, type SupportedProvidersResponseDto, type TagSuggestionDto, type TagSuggestionsResponseDto, type TelemetryControllerGetCoverageMetricsData, type TelemetryControllerGetCoverageMetricsResponse, type TelemetryControllerReportCoverageMissData, type TelemetryControllerReportCoverageMissResponse, type TelemetryControllerReportTelemetryData, type TelemetryControllerReportTelemetryResponse, type TemplateMetadataDto, type TemplateMetadataResponseDto, type TestRuleDto, type TestRuleResponseDto, type TimeSeriesPointDto, type TransactionControllerCorrectData, type TransactionControllerCorrectResponse, type TransactionControllerCreateBatchData, type TransactionControllerCreateBatchResponse, type TransactionControllerCreateData, type TransactionControllerCreateResponse, type TransactionControllerDeleteData, type TransactionControllerDeleteResponse, type TransactionControllerGetDetailData, type TransactionControllerGetDetailResponse, type TransactionControllerListData, type TransactionControllerListResponse, type TransactionControllerSuggestTagsData, type TransactionControllerSuggestTagsResponse, type TransactionControllerUpdateData, type TransactionControllerUpdateResponse, type TransactionDetailDto, type TransactionListResponseDto, type TransactionListSummaryDto, type TransactionResponseDto, type TransactionRuleControllerBulkCreateData, type TransactionRuleControllerBulkCreateResponse, type TransactionRuleControllerCreateData, type TransactionRuleControllerCreateResponse, type TransactionRuleControllerDeleteData, type TransactionRuleControllerDeleteResponse, type TransactionRuleControllerExportData, type TransactionRuleControllerExportResponse, type TransactionRuleControllerGetDetailData, type TransactionRuleControllerGetDetailResponse, type TransactionRuleControllerGetStatisticsData, type TransactionRuleControllerGetStatisticsResponse, type TransactionRuleControllerListData, type TransactionRuleControllerListResponse, type TransactionRuleControllerTestData, type TransactionRuleControllerTestResponse, type TransactionRuleControllerUpdateData, type TransactionRuleControllerUpdateResponse, type TransactionRuleControllerValidateData, type TransactionRuleControllerValidateResponse, type TransactionRuleListResponseDto, type TransactionRuleResponseDto, type TransactionSummaryDto, type TrendSummaryDto, type UncoveredFormatMissDto, type UndoResultDto, type UpdateAccountDto, type UpdateBeanEventDto, type UpdateBeanPriceDto, type UpdateCommodityDto, type UpdateConfigDataDto, type UpdateImporterConfigDto, type UpdateMapperDefaultsDto, type UpdatePayeeDto, type UpdatePayeeProfileDto, type UpdatePlatformDto, type UpdatePropertyDto, type UpdateRecurringRuleDto, type UpdateTransactionDto, type UpdateTransactionRuleDto, type UpdateUserSettingDto, type UserControllerDeleteOwnUserData, type UserControllerDeleteOwnUserResponse, type UserControllerDeleteUserData, type UserControllerDeleteUserResponse, type UserControllerGetAllUserSettingsByPageData, type UserControllerGetAllUserSettingsByPageResponse, type UserControllerGetAssetLiabilitySummaryResponse, type UserControllerGetUserData, type UserControllerGetUserInfoData, type UserControllerGetUserInfoResponse, type UserControllerGetUserResponse, type UserControllerSignupUserData, type UserControllerSignupUserResponse, type UserControllerUpdateUserSettingData, type UserControllerUpdateUserSettingResponse, type ValidateRuleDto, type ValidateRuleResponseDto, type VersionedConfigDto, type action, type action2, type assetClass, type assetSubType, type bookingMethod, type branchType, type category, type chartToken, type colorScheme, type confidenceLevel, type conflictStrategy, type dataSource, type equitySubType, type flag, type flag2, type frequency, type importerId, type intent, type investmentAction, type learningSource, type liabilitySubType, type matchLogic, type method, type mode, type paymentSource, type period, type source, type source2, type source3, type status, type status2, type status3, type status4, type suggestedFrequency, type type, type type2, type type3, type type4, type value, type viewMode };
8981
+ 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 ActualBalanceDto, type AmountDto, type AmountRangeDto, type AnonymousLoginDto, type ApiKeysControllerCreateApiKeyResponse, type ApiProblemResponseDto, type AssertReconciliationDto, type AssetClassAccountsResponseDto, type AssetClassGroupDto, type AssetClassSummaryDto, type AuthControllerAccessTokenLoginData, type AuthControllerAccessTokenLoginResponse, type BackfillSnapshotsBody, type BackfillSnapshotsResponse, type BalanceByCurrencyDto, type BalanceControllerGetBalanceData, type BalanceControllerGetBalanceResponse, type BalanceControllerGetMultiCurrencyBalanceData, type BalanceControllerGetMultiCurrencyBalanceResponse, type BalanceResponseDto, type BatchCreateTransactionDto, type BatchResolveDto, type BatchResolveResultDto, type BatchTransactionErrorDto, type BatchTransactionResponseDto, BeanAccountsService, BeanBalancesService, BeanCommoditiesService, BeanTransactionsService, type BulkCreateRulesDto, type BulkCreateRulesResponseDto, type CacheControllerFlushCacheResponse, type CashFlowByCurrencyDto, type CashFlowPointDto, type CashFlowResponseDto, type CashFlowTrendSummaryDto, type CashFlowTrendsResponseDto, type CategoryGroupDto, type CloseAccountDto, type CommodityControllerBulkCreateData, type CommodityControllerBulkCreateResponse, type CommodityControllerCreateData, type CommodityControllerCreateResponse, type CommodityControllerDeleteData, type CommodityControllerDeleteResponse, type CommodityControllerFindAllData, type CommodityControllerFindAllResponse, type CommodityControllerFindOneData, type CommodityControllerFindOneResponse, type CommodityControllerGetOrCreateData, type CommodityControllerGetOrCreateResponse, type CommodityControllerUpdateData, type CommodityControllerUpdateResponse, type CommodityListResponseDto, type CommodityResponseDto, type ComputeReconciliationDto, type ConfirmMatchDto, type ConvertedCashFlowDto, type ConvertedNetWorthDto, type CorrectTransactionDto, type CostDetailDto, type CostSpecDto, type CreateAccountDto, type CreateBeanEventDto, type CreateBeanPriceDto, type CreateCommodityDto, type 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 PadReconciliationDto, type PadResultDto, type ParserTelemetryReportDto, type PayeeAutocompleteResponseDto, type PayeeControllerAutocompleteData, type PayeeControllerAutocompleteResponse, type PayeeControllerCreateData, type PayeeControllerCreateResponse, type PayeeControllerDeleteData, type PayeeControllerDeleteResponse, type PayeeControllerFindAllData, type PayeeControllerFindAllResponse, type PayeeControllerFindOneData, type PayeeControllerFindOneResponse, type PayeeControllerGetTopPayeesData, type PayeeControllerGetTopPayeesResponse, type PayeeControllerUpdateData, type PayeeControllerUpdateResponse, type PayeeListResponseDto, type PayeeProfileAdminControllerCreateData, type PayeeProfileAdminControllerCreateResponse, type PayeeProfileAdminControllerDeleteData, type PayeeProfileAdminControllerDeleteResponse, type PayeeProfileAdminControllerFindAllData, type PayeeProfileAdminControllerFindAllResponse, type PayeeProfileAdminControllerFindOneData, type PayeeProfileAdminControllerFindOneResponse, type PayeeProfileAdminControllerUnverifyData, type PayeeProfileAdminControllerUnverifyResponse, type PayeeProfileAdminControllerUpdateData, type PayeeProfileAdminControllerUpdateResponse, type PayeeProfileAdminControllerVerifyData, type PayeeProfileAdminControllerVerifyResponse, type PayeeProfileListResponseDto, type PayeeProfileResponseDto, type PayeeResponseDto, type PayeeStatsResponseDto, type PlatformControllerCreateData, type PlatformControllerCreateResponse, type PlatformControllerDeleteData, type PlatformControllerDeleteResponse, type PlatformControllerFindAllResponse, type PlatformControllerGetPlatformListResponse, type PlatformControllerMatchPlatformsData, type PlatformControllerMatchPlatformsResponse, type PlatformControllerUpdateData, type PlatformControllerUpdateResponse, type PlatformGroupDto, type PortfolioTrendsResponseDto, type PostingDetailDto, type PostingResponseDto, type PriceControllerBulkCreateData, type PriceControllerBulkCreateResponse, type PriceControllerCreateData, type PriceControllerCreateResponse, type PriceControllerDeleteData, type PriceControllerDeleteResponse, type PriceControllerFindAllData, type PriceControllerFindAllResponse, type PriceControllerFindOneData, type PriceControllerFindOneResponse, type PriceControllerUpdateData, type PriceControllerUpdateResponse, type PriceListResponseDto, type PriceResponseDto, type ProcessNlpDto, type PropertyControllerDeleteData, type PropertyControllerDeleteResponse, type PropertyControllerGetAllResponse, type PropertyControllerGetByKeyData, type PropertyControllerGetByKeyResponse, type PropertyControllerUpdateData, type PropertyControllerUpdateResponse, type ProviderSyncConfigDto, type ProviderSyncControllerGetSupportedProvidersData, type ProviderSyncControllerGetSupportedProvidersResponse, type ProviderSyncControllerIsProviderSupportedData, type ProviderSyncControllerIsProviderSupportedResponse, type ProviderSyncControllerSyncData, type ProviderSyncControllerSyncResponse, type ProviderSyncDto, type ProviderSyncResponseDto, ProviderSyncService, type ReconciliationComputeResultDto, type ReconciliationControllerAssertData, type ReconciliationControllerAssertResponse, type ReconciliationControllerComputeData, type ReconciliationControllerComputeResponse, type ReconciliationControllerHistoryData, type ReconciliationControllerHistoryResponse, type ReconciliationControllerPadData, type ReconciliationControllerPadResponse, type ReconciliationRecordDto, type RecurringMatchInfoDto, type RecurringRuleControllerCreateData, type RecurringRuleControllerCreateFromTransactionData, type RecurringRuleControllerCreateFromTransactionResponse, type RecurringRuleControllerCreateResponse, type RecurringRuleControllerDeleteData, type RecurringRuleControllerDeleteResponse, type RecurringRuleControllerFindAllData, type RecurringRuleControllerFindAllResponse, type RecurringRuleControllerFindOneData, type RecurringRuleControllerFindOneResponse, type RecurringRuleControllerGetWithStatsData, type RecurringRuleControllerGetWithStatsResponse, type RecurringRuleControllerUpdateData, type RecurringRuleControllerUpdateResponse, type RecurringRuleResponseDto, type RecurringRuleWithStatsResponseDto, type RecurringSuggestionDto, type RegionConfigDto, type RegionInfoDto, type RegionsMetadataResponseDto, type ReopenAccountDto, type ReportingControllerBackfillSnapshotsData, type ReportingControllerBackfillSnapshotsResponse, type ReportingControllerGenerateSnapshotData, type ReportingControllerGenerateSnapshotResponse, type ReportingControllerGetCashFlowTrendsData, type ReportingControllerGetCashFlowTrendsResponse, type ReportingControllerGetPortfolioTrendsData, type ReportingControllerGetPortfolioTrendsResponse, type ResolveResultDto, type ResolveReviewDto, type ReviewControllerBatchResolveData, type ReviewControllerBatchResolveResponse, type ReviewControllerFindAllData, type ReviewControllerFindAllResponse, type ReviewControllerFindOneData, type ReviewControllerFindOneResponse, type ReviewControllerGetStatsData, type ReviewControllerGetStatsResponse, type ReviewControllerResolveData, type ReviewControllerResolveResponse, type ReviewControllerUndoData, type ReviewControllerUndoResponse, type ReviewDetailDto, type ReviewItemPreviewDto, type ReviewListResponseDto, type ReviewStatsDto, type ReviewSummaryDto, type RuleStatisticsResponseDto, type SignupDto, type SupportedProvidersResponseDto, type TagSuggestionDto, type TagSuggestionsResponseDto, type TelemetryControllerGetCoverageMetricsData, type TelemetryControllerGetCoverageMetricsResponse, type TelemetryControllerReportCoverageMissData, type TelemetryControllerReportCoverageMissResponse, type TelemetryControllerReportTelemetryData, type TelemetryControllerReportTelemetryResponse, type TemplateMetadataDto, type TemplateMetadataResponseDto, type TestRuleDto, type TestRuleResponseDto, type TimeSeriesPointDto, type TransactionControllerCorrectData, type TransactionControllerCorrectResponse, type TransactionControllerCreateBatchData, type TransactionControllerCreateBatchResponse, type TransactionControllerCreateData, type TransactionControllerCreateResponse, type TransactionControllerDeleteData, type TransactionControllerDeleteResponse, type TransactionControllerGetDetailData, type TransactionControllerGetDetailResponse, type TransactionControllerListData, type TransactionControllerListResponse, type TransactionControllerSuggestTagsData, type TransactionControllerSuggestTagsResponse, type TransactionControllerUpdateData, type TransactionControllerUpdateResponse, type TransactionDetailDto, type TransactionListResponseDto, type TransactionListSummaryDto, type TransactionResponseDto, type TransactionRuleControllerBulkCreateData, type TransactionRuleControllerBulkCreateResponse, type TransactionRuleControllerCreateData, type TransactionRuleControllerCreateResponse, type TransactionRuleControllerDeleteData, type TransactionRuleControllerDeleteResponse, type TransactionRuleControllerExportData, type TransactionRuleControllerExportResponse, type TransactionRuleControllerGetDetailData, type TransactionRuleControllerGetDetailResponse, type TransactionRuleControllerGetStatisticsData, type TransactionRuleControllerGetStatisticsResponse, type TransactionRuleControllerListData, type TransactionRuleControllerListResponse, type TransactionRuleControllerTestData, type TransactionRuleControllerTestResponse, type TransactionRuleControllerUpdateData, type TransactionRuleControllerUpdateResponse, type TransactionRuleControllerValidateData, type TransactionRuleControllerValidateResponse, type TransactionRuleListResponseDto, type TransactionRuleResponseDto, type TransactionSummaryDto, type TrendSummaryDto, type UncoveredFormatMissDto, type UndoResultDto, type UpdateAccountDto, type UpdateBeanEventDto, type UpdateBeanPriceDto, type UpdateCommodityDto, type UpdateConfigDataDto, type UpdateImporterConfigDto, type UpdateMapperDefaultsDto, type UpdatePayeeDto, type UpdatePayeeProfileDto, type UpdatePlatformDto, type UpdatePropertyDto, type UpdateRecurringRuleDto, type UpdateTransactionDto, type UpdateTransactionRuleDto, type UpdateUserSettingDto, type UserControllerDeleteOwnUserData, type UserControllerDeleteOwnUserResponse, type UserControllerDeleteUserData, type UserControllerDeleteUserResponse, type UserControllerGetAllUserSettingsByPageData, type UserControllerGetAllUserSettingsByPageResponse, type UserControllerGetAssetLiabilitySummaryResponse, type UserControllerGetUserData, type UserControllerGetUserInfoData, type UserControllerGetUserInfoResponse, type UserControllerGetUserResponse, type UserControllerSignupUserData, type UserControllerSignupUserResponse, type UserControllerUpdateUserSettingData, type UserControllerUpdateUserSettingResponse, type ValidateRuleDto, type ValidateRuleResponseDto, type VersionedConfigDto, type action, type action2, type assetClass, type assetSubType, type bookingMethod, type branchType, type category, type chartToken, type colorScheme, type confidenceLevel, type conflictStrategy, type dataSource, type equitySubType, type flag, type flag2, type frequency, type importerId, type intent, type investmentAction, type learningSource, type liabilitySubType, type matchLogic, type method, type mode, type paymentSource, type period, type source, type source2, type source3, type status, type status2, type status3, type status4, type suggestedAction, type suggestedFrequency, type type, type type2, type type3, type type4, type value, type viewMode };