@firela/api-types 0.0.0-canary.2fbeefe9 → 0.0.0-canary.3d558482

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -27,9 +27,9 @@ type CreateAccountDto = {
27
27
  */
28
28
  path: string;
29
29
  /**
30
- * Account open date
30
+ * Account open date (server defaults to today)
31
31
  */
32
- openDate: string;
32
+ openDate?: string;
33
33
  /**
34
34
  * Allowed currencies (null = no restriction)
35
35
  */
@@ -51,9 +51,9 @@ type CreateAccountDto = {
51
51
  */
52
52
  icon?: string;
53
53
  /**
54
- * Additional metadata
54
+ * Open directive metadata (NOT an opening-balance amount — use the opening-balance endpoint)
55
55
  */
56
- openMeta?: {
56
+ openDirectiveMeta?: {
57
57
  [key: string]: unknown;
58
58
  };
59
59
  /**
@@ -115,9 +115,9 @@ type AccountResponseDto = {
115
115
  */
116
116
  icon?: string;
117
117
  /**
118
- * Account metadata
118
+ * Open directive metadata (ADR-0115 Decision 9)
119
119
  */
120
- openMeta?: {
120
+ openDirectiveMeta?: {
121
121
  [key: string]: unknown;
122
122
  };
123
123
  /**
@@ -173,9 +173,9 @@ type UpdateAccountDto = {
173
173
  */
174
174
  icon?: string;
175
175
  /**
176
- * Additional metadata (merged with existing)
176
+ * Open directive metadata (merged with existing; NOT an opening-balance amount)
177
177
  */
178
- openMeta?: {
178
+ openDirectiveMeta?: {
179
179
  [key: string]: unknown;
180
180
  };
181
181
  /**
@@ -201,6 +201,26 @@ type ReopenAccountDto = {
201
201
  */
202
202
  reopenDate?: string;
203
203
  };
204
+ type CreateOpeningBalanceDto = {
205
+ /**
206
+ * Opening balance amount (non-negative)
207
+ */
208
+ amount: number;
209
+ /**
210
+ * Currency code
211
+ */
212
+ currency: string;
213
+ /**
214
+ * Opening-balance date (defaults to now)
215
+ */
216
+ date?: string;
217
+ };
218
+ type OpeningBalanceResultDto = {
219
+ /**
220
+ * Created opening-balance transaction id.
221
+ */
222
+ transactionId: string;
223
+ };
204
224
  type AccountStandardResponseDto = {
205
225
  /**
206
226
  * Account path (hierarchical, colon-separated)
@@ -2705,6 +2725,24 @@ type SignupDto = {
2705
2725
  */
2706
2726
  turnstileToken?: string;
2707
2727
  };
2728
+ type SignupResponseDto = {
2729
+ /**
2730
+ * JWT auth token
2731
+ */
2732
+ authToken: string;
2733
+ /**
2734
+ * Auto-generated access token
2735
+ */
2736
+ accessToken: string;
2737
+ /**
2738
+ * Assigned user role
2739
+ */
2740
+ role: 'USER' | 'ADMIN' | 'DEMO' | 'INACTIVE' | 'PAID' | 'OPS';
2741
+ };
2742
+ /**
2743
+ * Assigned user role
2744
+ */
2745
+ type role = 'USER' | 'ADMIN' | 'DEMO' | 'INACTIVE' | 'PAID' | 'OPS';
2708
2746
  type UpdateUserSettingDto = {
2709
2747
  /**
2710
2748
  * Security ID
@@ -2805,6 +2843,168 @@ type UpdatePropertyDto = {
2805
2843
  */
2806
2844
  value: string;
2807
2845
  };
2846
+ type CurrencyBalanceDto = {
2847
+ /**
2848
+ * ISO 4217 currency code
2849
+ */
2850
+ currency: string;
2851
+ /**
2852
+ * Balance amount
2853
+ */
2854
+ balance: string;
2855
+ };
2856
+ type TimeSeriesPointDto = {
2857
+ /**
2858
+ * Date in YYYY-MM-DD format
2859
+ */
2860
+ date: string;
2861
+ /**
2862
+ * Value at this date (in base currency)
2863
+ */
2864
+ value: string;
2865
+ /**
2866
+ * Change from previous point
2867
+ */
2868
+ change?: {
2869
+ [key: string]: unknown;
2870
+ };
2871
+ /**
2872
+ * Total assets at this date (in base currency)
2873
+ */
2874
+ assets?: string;
2875
+ /**
2876
+ * Total liabilities at this date (in base currency)
2877
+ */
2878
+ liabilities?: string;
2879
+ /**
2880
+ * Multi-currency breakdown for this point
2881
+ */
2882
+ byCurrency?: Array<CurrencyBalanceDto>;
2883
+ };
2884
+ type TrendSummaryDto = {
2885
+ /**
2886
+ * Value at start of period
2887
+ */
2888
+ startValue: string;
2889
+ /**
2890
+ * Value at end of period
2891
+ */
2892
+ endValue: string;
2893
+ /**
2894
+ * Total change over period
2895
+ */
2896
+ totalChange: string;
2897
+ /**
2898
+ * Total change percentage
2899
+ */
2900
+ totalChangePercentage: string;
2901
+ };
2902
+ type MultiCurrencyPointDto = {
2903
+ /**
2904
+ * Date in YYYY-MM-DD format
2905
+ */
2906
+ date: string;
2907
+ /**
2908
+ * Balances by currency
2909
+ */
2910
+ byCurrency: Array<CurrencyBalanceDto>;
2911
+ };
2912
+ type PortfolioTrendsResponseDto = {
2913
+ /**
2914
+ * Time series data points
2915
+ */
2916
+ series: Array<TimeSeriesPointDto>;
2917
+ /**
2918
+ * Period summary
2919
+ */
2920
+ summary: TrendSummaryDto;
2921
+ /**
2922
+ * Period requested
2923
+ */
2924
+ period: string;
2925
+ /**
2926
+ * Data granularity
2927
+ */
2928
+ granularity: string;
2929
+ /**
2930
+ * Base currency for converted values
2931
+ */
2932
+ currency: string;
2933
+ /**
2934
+ * Multi-currency time series (each point has currency breakdown)
2935
+ */
2936
+ byCurrency?: Array<MultiCurrencyPointDto>;
2937
+ /**
2938
+ * Exchange rate warnings
2939
+ */
2940
+ warnings?: Array<ExchangeRateWarningDto>;
2941
+ };
2942
+ type CashFlowPointDto = {
2943
+ /**
2944
+ * Month key (YYYY-MM)
2945
+ */
2946
+ month: string;
2947
+ /**
2948
+ * Income in base currency (absolute, converted)
2949
+ */
2950
+ income: string;
2951
+ /**
2952
+ * Expense in base currency (absolute, converted)
2953
+ */
2954
+ expense: string;
2955
+ /**
2956
+ * netSavings = income − expense (savings positive)
2957
+ */
2958
+ netSavings: string;
2959
+ };
2960
+ type CashFlowTrendSummaryDto = {
2961
+ /**
2962
+ * Total income across the period
2963
+ */
2964
+ totalIncome: string;
2965
+ /**
2966
+ * Total expense across the period
2967
+ */
2968
+ totalExpense: string;
2969
+ /**
2970
+ * income − expense across the period
2971
+ */
2972
+ totalNetSavings: string;
2973
+ /**
2974
+ * totalNetSavings divided by the window length (N months, incl. zero-filled)
2975
+ */
2976
+ averageMonthlyNetSavings: string;
2977
+ };
2978
+ type CashFlowTrendsResponseDto = {
2979
+ /**
2980
+ * Monthly cash-flow series (fixed N-month window, zero-filled)
2981
+ */
2982
+ series: Array<CashFlowPointDto>;
2983
+ /**
2984
+ * Period totals
2985
+ */
2986
+ summary: CashFlowTrendSummaryDto;
2987
+ /**
2988
+ * Period requested
2989
+ */
2990
+ period: string;
2991
+ /**
2992
+ * Data granularity (v1 returns month buckets)
2993
+ */
2994
+ granularity: string;
2995
+ /**
2996
+ * Base currency for converted values
2997
+ */
2998
+ currency: string;
2999
+ /**
3000
+ * Exchange rate warnings (e.g. missing rate for a currency)
3001
+ */
3002
+ warnings?: Array<ExchangeRateWarningDto>;
3003
+ };
3004
+ type GenerateSnapshotBody = unknown;
3005
+ type GenerateSnapshotResponse = unknown;
3006
+ type BackfillSnapshotsBody = unknown;
3007
+ type BackfillSnapshotsResponse = unknown;
2808
3008
  type CreateBeanEventDto = {
2809
3009
  /**
2810
3010
  * Life event date (ISO 8601)
@@ -3925,19 +4125,15 @@ type liabilitySubType = 'borrow' | 'repay';
3925
4125
  * Equity sub-type (only present when intent is "equity"). opening: account opening balance (Equity → Assets), adjustment: balance correction.
3926
4126
  */
3927
4127
  type equitySubType = 'opening' | 'adjustment';
3928
- type CreatePlatformDto = {
3929
- /**
3930
- * Platform name
3931
- */
3932
- name: string;
4128
+ type PlatformListItemDto = {
3933
4129
  /**
3934
- * Platform canonical identifier (lowercase, kebab-case)
4130
+ * Global platform ID
3935
4131
  */
3936
- canonical: string;
4132
+ id: string;
3937
4133
  /**
3938
- * Platform aliases (multi-language names for lookup)
4134
+ * Platform name
3939
4135
  */
3940
- aliases: Array<string>;
4136
+ name: string;
3941
4137
  /**
3942
4138
  * Platform URL
3943
4139
  */
@@ -3947,71 +4143,165 @@ type CreatePlatformDto = {
3947
4143
  */
3948
4144
  type: 'BANK' | 'BROKERAGE' | 'CRYPTO_EXCHANGE' | 'PAYMENT' | 'INVESTMENT' | 'INSURANCE' | 'OTHER';
3949
4145
  /**
3950
- * Platform logo URL
4146
+ * Canonical identifier in ACCOUNT_RE format (e.g., "icbc")
3951
4147
  */
3952
- logoUrl?: string;
4148
+ canonical: string;
3953
4149
  /**
3954
- * Whether the platform is active
4150
+ * Suggested path segment canonical with first char uppercased (ACC_COMP_NAME_RE)
3955
4151
  */
3956
- isActive?: boolean;
4152
+ suggestedSegment: string;
4153
+ /**
4154
+ * Logo URL
4155
+ */
4156
+ logoUrl: string | null;
4157
+ /**
4158
+ * Whether user has accounts using this platform
4159
+ */
4160
+ isBound: boolean;
3957
4161
  };
3958
4162
  /**
3959
4163
  * Platform type
3960
4164
  */
3961
4165
  type type3 = 'BANK' | 'BROKERAGE' | 'CRYPTO_EXCHANGE' | 'PAYMENT' | 'INVESTMENT' | 'INSURANCE' | 'OTHER';
3962
- type UpdatePlatformDto = {
4166
+ type PlatformMatchResultDto = {
3963
4167
  /**
3964
- * Platform name
4168
+ * Global platform ID
3965
4169
  */
3966
- name?: string;
4170
+ id: string;
3967
4171
  /**
3968
- * Platform canonical identifier (lowercase, kebab-case)
4172
+ * Platform name (e.g., "ICBC")
3969
4173
  */
3970
- canonical?: string;
4174
+ name: string;
3971
4175
  /**
3972
- * Platform aliases (multi-language names for lookup)
4176
+ * Canonical identifier in ACCOUNT_RE format (e.g., "icbc")
3973
4177
  */
3974
- aliases?: Array<string>;
4178
+ canonical: string;
3975
4179
  /**
3976
- * Platform URL
4180
+ * Platform type
3977
4181
  */
3978
- url?: string;
4182
+ type: 'BANK' | 'BROKERAGE' | 'CRYPTO_EXCHANGE' | 'PAYMENT' | 'INVESTMENT' | 'INSURANCE' | 'OTHER';
3979
4183
  /**
3980
- * Platform type
4184
+ * Suggested path segment — canonical, already in ACCOUNT_RE format
3981
4185
  */
3982
- type?: 'BANK' | 'BROKERAGE' | 'CRYPTO_EXCHANGE' | 'PAYMENT' | 'INVESTMENT' | 'INSURANCE' | 'OTHER';
4186
+ suggestedSegment: string;
3983
4187
  /**
3984
- * Platform logo URL
4188
+ * Logo URL
3985
4189
  */
3986
- logoUrl?: string;
4190
+ logoUrl: string | null;
3987
4191
  /**
3988
- * Whether the platform is active
4192
+ * How this row matched: 'exact' > 'prefix' > 'substring'
3989
4193
  */
3990
- isActive?: boolean;
4194
+ matchType: 'exact' | 'prefix' | 'substring';
3991
4195
  };
3992
- type NetWorthByCurrencyDto = {
4196
+ /**
4197
+ * How this row matched: 'exact' > 'prefix' > 'substring'
4198
+ */
4199
+ type matchType = 'exact' | 'prefix' | 'substring';
4200
+ type PlatformMatchResponseDto = {
3993
4201
  /**
3994
- * Net worth by currency
4202
+ * Ranked matches, best tier first (at most 10 rows)
3995
4203
  */
3996
- netWorth: Array<BalanceByCurrencyDto>;
4204
+ platforms: Array<PlatformMatchResultDto>;
3997
4205
  /**
3998
- * Assets by currency
4206
+ * Overall match quality — top row's tier, or 'none' when no hits
3999
4207
  */
4000
- assets: Array<BalanceByCurrencyDto>;
4208
+ matchType: 'none' | 'exact' | 'prefix' | 'substring';
4001
4209
  /**
4002
- * Liabilities by currency
4210
+ * Total matches before LIMIT (truncation transparency)
4003
4211
  */
4004
- liabilities: Array<BalanceByCurrencyDto>;
4005
- };
4006
- type ConvertedNetWorthDto = {
4212
+ total: number;
4007
4213
  /**
4008
- * Base currency for conversion
4214
+ * true when total > platforms.length (more matches exist)
4009
4215
  */
4010
- baseCurrency: string;
4216
+ hasMore: boolean;
4217
+ };
4218
+ /**
4219
+ * Overall match quality — top row's tier, or 'none' when no hits
4220
+ */
4221
+ type matchType2 = 'none' | 'exact' | 'prefix' | 'substring';
4222
+ type CreatePlatformDto = {
4011
4223
  /**
4012
- * Converted net worth
4224
+ * Platform name
4013
4225
  */
4014
- netWorth: string;
4226
+ name: string;
4227
+ /**
4228
+ * Platform canonical identifier (lowercase, kebab-case)
4229
+ */
4230
+ canonical: string;
4231
+ /**
4232
+ * Platform aliases (multi-language names for lookup)
4233
+ */
4234
+ aliases: Array<string>;
4235
+ /**
4236
+ * Platform URL
4237
+ */
4238
+ url: string;
4239
+ /**
4240
+ * Platform type
4241
+ */
4242
+ type: 'BANK' | 'BROKERAGE' | 'CRYPTO_EXCHANGE' | 'PAYMENT' | 'INVESTMENT' | 'INSURANCE' | 'OTHER';
4243
+ /**
4244
+ * Platform logo URL
4245
+ */
4246
+ logoUrl?: string;
4247
+ /**
4248
+ * Whether the platform is active
4249
+ */
4250
+ isActive?: boolean;
4251
+ };
4252
+ type UpdatePlatformDto = {
4253
+ /**
4254
+ * Platform name
4255
+ */
4256
+ name?: string;
4257
+ /**
4258
+ * Platform canonical identifier (lowercase, kebab-case)
4259
+ */
4260
+ canonical?: string;
4261
+ /**
4262
+ * Platform aliases (multi-language names for lookup)
4263
+ */
4264
+ aliases?: Array<string>;
4265
+ /**
4266
+ * Platform URL
4267
+ */
4268
+ url?: string;
4269
+ /**
4270
+ * Platform type
4271
+ */
4272
+ type?: 'BANK' | 'BROKERAGE' | 'CRYPTO_EXCHANGE' | 'PAYMENT' | 'INVESTMENT' | 'INSURANCE' | 'OTHER';
4273
+ /**
4274
+ * Platform logo URL
4275
+ */
4276
+ logoUrl?: string;
4277
+ /**
4278
+ * Whether the platform is active
4279
+ */
4280
+ isActive?: boolean;
4281
+ };
4282
+ type NetWorthByCurrencyDto = {
4283
+ /**
4284
+ * Net worth by currency
4285
+ */
4286
+ netWorth: Array<BalanceByCurrencyDto>;
4287
+ /**
4288
+ * Assets by currency
4289
+ */
4290
+ assets: Array<BalanceByCurrencyDto>;
4291
+ /**
4292
+ * Liabilities by currency
4293
+ */
4294
+ liabilities: Array<BalanceByCurrencyDto>;
4295
+ };
4296
+ type ConvertedNetWorthDto = {
4297
+ /**
4298
+ * Base currency for conversion
4299
+ */
4300
+ baseCurrency: string;
4301
+ /**
4302
+ * Converted net worth
4303
+ */
4304
+ netWorth: string;
4015
4305
  /**
4016
4306
  * Converted assets
4017
4307
  */
@@ -4630,174 +4920,18 @@ type HoldingPnlResponseDto = {
4630
4920
  * Realized-P&L lot-matching method (FIFO or average). Unrealized cost basis remains average regardless of this value (#473).
4631
4921
  */
4632
4922
  type method = 'average' | 'FIFO';
4633
- type CurrencyBalanceDto = {
4634
- /**
4635
- * ISO 4217 currency code
4636
- */
4637
- currency: string;
4638
- /**
4639
- * Balance amount
4640
- */
4641
- balance: string;
4642
- };
4643
- type TimeSeriesPointDto = {
4644
- /**
4645
- * Date in YYYY-MM-DD format
4646
- */
4647
- date: string;
4648
- /**
4649
- * Value at this date (in base currency)
4650
- */
4651
- value: string;
4652
- /**
4653
- * Change from previous point
4654
- */
4655
- change?: {
4656
- [key: string]: unknown;
4657
- };
4658
- /**
4659
- * Total assets at this date (in base currency)
4660
- */
4661
- assets?: string;
4662
- /**
4663
- * Total liabilities at this date (in base currency)
4664
- */
4665
- liabilities?: string;
4666
- /**
4667
- * Multi-currency breakdown for this point
4668
- */
4669
- byCurrency?: Array<CurrencyBalanceDto>;
4670
- };
4671
- type TrendSummaryDto = {
4672
- /**
4673
- * Value at start of period
4674
- */
4675
- startValue: string;
4676
- /**
4677
- * Value at end of period
4678
- */
4679
- endValue: string;
4680
- /**
4681
- * Total change over period
4682
- */
4683
- totalChange: string;
4684
- /**
4685
- * Total change percentage
4686
- */
4687
- totalChangePercentage: string;
4688
- };
4689
- type MultiCurrencyPointDto = {
4690
- /**
4691
- * Date in YYYY-MM-DD format
4692
- */
4693
- date: string;
4694
- /**
4695
- * Balances by currency
4696
- */
4697
- byCurrency: Array<CurrencyBalanceDto>;
4698
- };
4699
- type PortfolioTrendsResponseDto = {
4700
- /**
4701
- * Time series data points
4702
- */
4703
- series: Array<TimeSeriesPointDto>;
4704
- /**
4705
- * Period summary
4706
- */
4707
- summary: TrendSummaryDto;
4708
- /**
4709
- * Period requested
4710
- */
4711
- period: string;
4712
- /**
4713
- * Data granularity
4714
- */
4715
- granularity: string;
4716
- /**
4717
- * Base currency for converted values
4718
- */
4719
- currency: string;
4720
- /**
4721
- * Multi-currency time series (each point has currency breakdown)
4722
- */
4723
- byCurrency?: Array<MultiCurrencyPointDto>;
4724
- /**
4725
- * Exchange rate warnings
4726
- */
4727
- warnings?: Array<ExchangeRateWarningDto>;
4728
- };
4729
- type CashFlowPointDto = {
4730
- /**
4731
- * Month key (YYYY-MM)
4732
- */
4733
- month: string;
4734
- /**
4735
- * Income in base currency (absolute, converted)
4736
- */
4737
- income: string;
4738
- /**
4739
- * Expense in base currency (absolute, converted)
4740
- */
4741
- expense: string;
4742
- /**
4743
- * netSavings = income − expense (savings positive)
4744
- */
4745
- netSavings: string;
4746
- };
4747
- type CashFlowTrendSummaryDto = {
4748
- /**
4749
- * Total income across the period
4750
- */
4751
- totalIncome: string;
4752
- /**
4753
- * Total expense across the period
4754
- */
4755
- totalExpense: string;
4756
- /**
4757
- * income − expense across the period
4758
- */
4759
- totalNetSavings: string;
4760
- /**
4761
- * totalNetSavings divided by the window length (N months, incl. zero-filled)
4762
- */
4763
- averageMonthlyNetSavings: string;
4764
- };
4765
- type CashFlowTrendsResponseDto = {
4766
- /**
4767
- * Monthly cash-flow series (fixed N-month window, zero-filled)
4768
- */
4769
- series: Array<CashFlowPointDto>;
4770
- /**
4771
- * Period totals
4772
- */
4773
- summary: CashFlowTrendSummaryDto;
4774
- /**
4775
- * Period requested
4776
- */
4777
- period: string;
4778
- /**
4779
- * Data granularity (v1 returns month buckets)
4780
- */
4781
- granularity: string;
4782
- /**
4783
- * Base currency for converted values
4784
- */
4785
- currency: string;
4786
- /**
4787
- * Exchange rate warnings (e.g. missing rate for a currency)
4788
- */
4789
- warnings?: Array<ExchangeRateWarningDto>;
4790
- };
4791
- type GenerateSnapshotBody = unknown;
4792
- type GenerateSnapshotResponse = unknown;
4793
- type BackfillSnapshotsBody = unknown;
4794
- type BackfillSnapshotsResponse = unknown;
4795
4923
  type AnonymousLoginDto = {
4796
4924
  /**
4797
4925
  * Access token for anonymous login
4798
4926
  */
4799
4927
  accessToken: string;
4800
4928
  };
4929
+ type AnonymousLoginResponseDto = {
4930
+ /**
4931
+ * JWT auth token
4932
+ */
4933
+ authToken: string;
4934
+ };
4801
4935
  type AccountControllerCreateData = {
4802
4936
  /**
4803
4937
  * Region code for tenant context
@@ -4895,6 +5029,18 @@ type AccountControllerReopenData = {
4895
5029
  requestBody: ReopenAccountDto;
4896
5030
  };
4897
5031
  type AccountControllerReopenResponse = AccountResponseDto;
5032
+ type AccountControllerAddOpeningBalanceData = {
5033
+ /**
5034
+ * Account UUID
5035
+ */
5036
+ id: string;
5037
+ /**
5038
+ * Region code for tenant context
5039
+ */
5040
+ region: 'cn' | 'us' | 'de' | 'gb';
5041
+ requestBody: CreateOpeningBalanceDto;
5042
+ };
5043
+ type AccountControllerAddOpeningBalanceResponse = OpeningBalanceResultDto;
4898
5044
  type AccountStandardsControllerGetTemplatesData = {
4899
5045
  /**
4900
5046
  * Region code (cn, us, de)
@@ -5776,7 +5922,7 @@ type UserControllerGetUserResponse = unknown;
5776
5922
  type UserControllerSignupUserData = {
5777
5923
  requestBody: SignupDto;
5778
5924
  };
5779
- type UserControllerSignupUserResponse = unknown;
5925
+ type UserControllerSignupUserResponse = SignupResponseDto;
5780
5926
  type UserControllerDeleteUserData = {
5781
5927
  /**
5782
5928
  * User ID to delete
@@ -5797,39 +5943,88 @@ type UserControllerUpdateUserSettingData = {
5797
5943
  type UserControllerUpdateUserSettingResponse = unknown;
5798
5944
  type UserControllerGetAllUserSettingsByPageData = {
5799
5945
  /**
5800
- * Page number
5946
+ * Page number
5947
+ */
5948
+ pageNo: number;
5949
+ /**
5950
+ * Page size
5951
+ */
5952
+ pageSize: number;
5953
+ };
5954
+ type UserControllerGetAllUserSettingsByPageResponse = unknown;
5955
+ type UserControllerGetAssetLiabilitySummaryResponse = unknown;
5956
+ type PropertyControllerGetAllResponse = unknown;
5957
+ type PropertyControllerGetByKeyData = {
5958
+ /**
5959
+ * Property key
5960
+ */
5961
+ key: string;
5962
+ };
5963
+ type PropertyControllerGetByKeyResponse = unknown;
5964
+ type PropertyControllerUpdateData = {
5965
+ /**
5966
+ * Property key
5967
+ */
5968
+ key: string;
5969
+ requestBody: UpdatePropertyDto;
5970
+ };
5971
+ type PropertyControllerUpdateResponse = unknown;
5972
+ type PropertyControllerDeleteData = {
5973
+ /**
5974
+ * Property key
5975
+ */
5976
+ key: string;
5977
+ };
5978
+ type PropertyControllerDeleteResponse = void;
5979
+ type ReportingControllerGetPortfolioTrendsData = {
5980
+ /**
5981
+ * Data granularity
5982
+ */
5983
+ granularity?: 'day' | 'week' | 'month';
5984
+ /**
5985
+ * Time period
5986
+ */
5987
+ period?: '1m' | '3m' | '6m' | '1y';
5988
+ /**
5989
+ * Region code for tenant context
5990
+ */
5991
+ region: 'cn' | 'us' | 'de' | 'gb';
5992
+ };
5993
+ type ReportingControllerGetPortfolioTrendsResponse = PortfolioTrendsResponseDto;
5994
+ type ReportingControllerGetCashFlowTrendsData = {
5995
+ /**
5996
+ * Data granularity (accepted for API symmetry; v1 returns month buckets)
5997
+ */
5998
+ granularity?: 'day' | 'week' | 'month';
5999
+ /**
6000
+ * Time period
5801
6001
  */
5802
- pageNo: number;
6002
+ period?: '1m' | '3m' | '6m' | '1y';
5803
6003
  /**
5804
- * Page size
6004
+ * Region code for tenant context
5805
6005
  */
5806
- pageSize: number;
6006
+ region: 'cn' | 'us' | 'de' | 'gb';
5807
6007
  };
5808
- type UserControllerGetAllUserSettingsByPageResponse = unknown;
5809
- type UserControllerGetAssetLiabilitySummaryResponse = unknown;
5810
- type PropertyControllerGetAllResponse = unknown;
5811
- type PropertyControllerGetByKeyData = {
6008
+ type ReportingControllerGetCashFlowTrendsResponse = CashFlowTrendsResponseDto;
6009
+ type ReportingControllerGenerateSnapshotData = {
5812
6010
  /**
5813
- * Property key
6011
+ * Region code for tenant context
5814
6012
  */
5815
- key: string;
5816
- };
5817
- type PropertyControllerGetByKeyResponse = unknown;
5818
- type PropertyControllerUpdateData = {
6013
+ region: 'cn' | 'us' | 'de' | 'gb';
5819
6014
  /**
5820
- * Property key
6015
+ * Optional date (defaults to today)
5821
6016
  */
5822
- key: string;
5823
- requestBody: UpdatePropertyDto;
6017
+ requestBody: GenerateSnapshotBody;
5824
6018
  };
5825
- type PropertyControllerUpdateResponse = unknown;
5826
- type PropertyControllerDeleteData = {
6019
+ type ReportingControllerGenerateSnapshotResponse = GenerateSnapshotResponse;
6020
+ type ReportingControllerBackfillSnapshotsData = {
5827
6021
  /**
5828
- * Property key
6022
+ * Region code for tenant context
5829
6023
  */
5830
- key: string;
6024
+ region: 'cn' | 'us' | 'de' | 'gb';
6025
+ requestBody: BackfillSnapshotsBody;
5831
6026
  };
5832
- type PropertyControllerDeleteResponse = void;
6027
+ type ReportingControllerBackfillSnapshotsResponse = BackfillSnapshotsResponse;
5833
6028
  type EventControllerCreateData = {
5834
6029
  /**
5835
6030
  * Region code for tenant context (decorative for life events)
@@ -6165,7 +6360,7 @@ type PlatformControllerCreateData = {
6165
6360
  requestBody: CreatePlatformDto;
6166
6361
  };
6167
6362
  type PlatformControllerCreateResponse = unknown;
6168
- type PlatformControllerGetPlatformListResponse = unknown;
6363
+ type PlatformControllerGetPlatformListResponse = Array<PlatformListItemDto>;
6169
6364
  type PlatformControllerMatchPlatformsData = {
6170
6365
  /**
6171
6366
  * Search query — Chinese name, English name, or abbreviation
@@ -6176,7 +6371,7 @@ type PlatformControllerMatchPlatformsData = {
6176
6371
  */
6177
6372
  region?: string;
6178
6373
  };
6179
- type PlatformControllerMatchPlatformsResponse = unknown;
6374
+ type PlatformControllerMatchPlatformsResponse = PlatformMatchResponseDto;
6180
6375
  type PlatformControllerUpdateData = {
6181
6376
  /**
6182
6377
  * Platform ID
@@ -6271,60 +6466,11 @@ type HoldingPnlControllerGetHoldingPnlData = {
6271
6466
  region: 'cn' | 'us' | 'de' | 'gb';
6272
6467
  };
6273
6468
  type HoldingPnlControllerGetHoldingPnlResponse = HoldingPnlResponseDto;
6274
- type ReportingControllerGetPortfolioTrendsData = {
6275
- /**
6276
- * Data granularity
6277
- */
6278
- granularity?: 'day' | 'week' | 'month';
6279
- /**
6280
- * Time period
6281
- */
6282
- period?: '1m' | '3m' | '6m' | '1y';
6283
- /**
6284
- * Region code for tenant context
6285
- */
6286
- region: 'cn' | 'us' | 'de' | 'gb';
6287
- };
6288
- type ReportingControllerGetPortfolioTrendsResponse = PortfolioTrendsResponseDto;
6289
- type ReportingControllerGetCashFlowTrendsData = {
6290
- /**
6291
- * Data granularity (accepted for API symmetry; v1 returns month buckets)
6292
- */
6293
- granularity?: 'day' | 'week' | 'month';
6294
- /**
6295
- * Time period
6296
- */
6297
- period?: '1m' | '3m' | '6m' | '1y';
6298
- /**
6299
- * Region code for tenant context
6300
- */
6301
- region: 'cn' | 'us' | 'de' | 'gb';
6302
- };
6303
- type ReportingControllerGetCashFlowTrendsResponse = CashFlowTrendsResponseDto;
6304
- type ReportingControllerGenerateSnapshotData = {
6305
- /**
6306
- * Region code for tenant context
6307
- */
6308
- region: 'cn' | 'us' | 'de' | 'gb';
6309
- /**
6310
- * Optional date (defaults to today)
6311
- */
6312
- requestBody: GenerateSnapshotBody;
6313
- };
6314
- type ReportingControllerGenerateSnapshotResponse = GenerateSnapshotResponse;
6315
- type ReportingControllerBackfillSnapshotsData = {
6316
- /**
6317
- * Region code for tenant context
6318
- */
6319
- region: 'cn' | 'us' | 'de' | 'gb';
6320
- requestBody: BackfillSnapshotsBody;
6321
- };
6322
- type ReportingControllerBackfillSnapshotsResponse = BackfillSnapshotsResponse;
6323
6469
  type ApiKeysControllerCreateApiKeyResponse = unknown;
6324
6470
  type AuthControllerAccessTokenLoginData = {
6325
6471
  requestBody: AnonymousLoginDto;
6326
6472
  };
6327
- type AuthControllerAccessTokenLoginResponse = unknown;
6473
+ type AuthControllerAccessTokenLoginResponse = AnonymousLoginResponseDto;
6328
6474
  type CacheControllerFlushCacheResponse = unknown;
6329
6475
  type ExchangeRateControllerGetExchangeRateData = {
6330
6476
  /**
@@ -6459,6 +6605,25 @@ type $OpenApiTs = {
6459
6605
  };
6460
6606
  };
6461
6607
  };
6608
+ '/api/v1/{region}/bean/accounts/{id}/opening-balance': {
6609
+ post: {
6610
+ req: AccountControllerAddOpeningBalanceData;
6611
+ res: {
6612
+ /**
6613
+ * Opening-balance transaction created
6614
+ */
6615
+ 201: OpeningBalanceResultDto;
6616
+ /**
6617
+ * Account not found
6618
+ */
6619
+ 404: unknown;
6620
+ /**
6621
+ * An opening balance already exists for this account
6622
+ */
6623
+ 409: unknown;
6624
+ };
6625
+ };
6626
+ };
6462
6627
  '/api/v1/{region}/bean/account-standards': {
6463
6628
  get: {
6464
6629
  req: AccountStandardsControllerGetTemplatesData;
@@ -7638,7 +7803,7 @@ type $OpenApiTs = {
7638
7803
  /**
7639
7804
  * User created successfully
7640
7805
  */
7641
- 201: unknown;
7806
+ 201: SignupResponseDto;
7642
7807
  /**
7643
7808
  * Invalid Turnstile token (when Turnstile is enabled)
7644
7809
  */
@@ -7795,6 +7960,78 @@ type $OpenApiTs = {
7795
7960
  };
7796
7961
  };
7797
7962
  };
7963
+ '/api/v1/{region}/reporting/portfolio/trends': {
7964
+ get: {
7965
+ req: ReportingControllerGetPortfolioTrendsData;
7966
+ res: {
7967
+ /**
7968
+ * Trends retrieved successfully
7969
+ */
7970
+ 200: PortfolioTrendsResponseDto;
7971
+ /**
7972
+ * User not authenticated
7973
+ */
7974
+ 401: unknown;
7975
+ };
7976
+ };
7977
+ };
7978
+ '/api/v1/{region}/reporting/cash-flow/trends': {
7979
+ get: {
7980
+ req: ReportingControllerGetCashFlowTrendsData;
7981
+ res: {
7982
+ /**
7983
+ * Cash-flow trends retrieved successfully
7984
+ */
7985
+ 200: CashFlowTrendsResponseDto;
7986
+ /**
7987
+ * User not authenticated
7988
+ */
7989
+ 401: unknown;
7990
+ };
7991
+ };
7992
+ };
7993
+ '/api/v1/{region}/reporting/snapshots/generate': {
7994
+ post: {
7995
+ req: ReportingControllerGenerateSnapshotData;
7996
+ res: {
7997
+ /**
7998
+ * Snapshot generated successfully
7999
+ */
8000
+ 200: GenerateSnapshotResponse;
8001
+ /**
8002
+ * Invalid date format
8003
+ */
8004
+ 400: unknown;
8005
+ /**
8006
+ * User not authenticated
8007
+ */
8008
+ 401: unknown;
8009
+ };
8010
+ };
8011
+ };
8012
+ '/api/v1/{region}/reporting/snapshots/backfill': {
8013
+ post: {
8014
+ req: ReportingControllerBackfillSnapshotsData;
8015
+ res: {
8016
+ /**
8017
+ * Backfill completed successfully
8018
+ */
8019
+ 200: BackfillSnapshotsResponse;
8020
+ /**
8021
+ * Invalid date format or range
8022
+ */
8023
+ 400: unknown;
8024
+ /**
8025
+ * User not authenticated
8026
+ */
8027
+ 401: unknown;
8028
+ /**
8029
+ * Backfill already in progress for this user
8030
+ */
8031
+ 409: unknown;
8032
+ };
8033
+ };
8034
+ };
7798
8035
  '/api/v1/{region}/bean/events': {
7799
8036
  post: {
7800
8037
  req: EventControllerCreateData;
@@ -8338,7 +8575,7 @@ type $OpenApiTs = {
8338
8575
  /**
8339
8576
  * List of platforms with user binding status
8340
8577
  */
8341
- 200: unknown;
8578
+ 200: Array<PlatformListItemDto>;
8342
8579
  };
8343
8580
  };
8344
8581
  };
@@ -8347,9 +8584,9 @@ type $OpenApiTs = {
8347
8584
  req: PlatformControllerMatchPlatformsData;
8348
8585
  res: {
8349
8586
  /**
8350
- * List of matching platforms with suggested segment names
8587
+ * Matching platforms with overall match type and truncation flag
8351
8588
  */
8352
- 200: unknown;
8589
+ 200: PlatformMatchResponseDto;
8353
8590
  };
8354
8591
  };
8355
8592
  };
@@ -8468,78 +8705,6 @@ type $OpenApiTs = {
8468
8705
  };
8469
8706
  };
8470
8707
  };
8471
- '/api/v1/{region}/reporting/portfolio/trends': {
8472
- get: {
8473
- req: ReportingControllerGetPortfolioTrendsData;
8474
- res: {
8475
- /**
8476
- * Trends retrieved successfully
8477
- */
8478
- 200: PortfolioTrendsResponseDto;
8479
- /**
8480
- * User not authenticated
8481
- */
8482
- 401: unknown;
8483
- };
8484
- };
8485
- };
8486
- '/api/v1/{region}/reporting/cash-flow/trends': {
8487
- get: {
8488
- req: ReportingControllerGetCashFlowTrendsData;
8489
- res: {
8490
- /**
8491
- * Cash-flow trends retrieved successfully
8492
- */
8493
- 200: CashFlowTrendsResponseDto;
8494
- /**
8495
- * User not authenticated
8496
- */
8497
- 401: unknown;
8498
- };
8499
- };
8500
- };
8501
- '/api/v1/{region}/reporting/snapshots/generate': {
8502
- post: {
8503
- req: ReportingControllerGenerateSnapshotData;
8504
- res: {
8505
- /**
8506
- * Snapshot generated successfully
8507
- */
8508
- 200: GenerateSnapshotResponse;
8509
- /**
8510
- * Invalid date format
8511
- */
8512
- 400: unknown;
8513
- /**
8514
- * User not authenticated
8515
- */
8516
- 401: unknown;
8517
- };
8518
- };
8519
- };
8520
- '/api/v1/{region}/reporting/snapshots/backfill': {
8521
- post: {
8522
- req: ReportingControllerBackfillSnapshotsData;
8523
- res: {
8524
- /**
8525
- * Backfill completed successfully
8526
- */
8527
- 200: BackfillSnapshotsResponse;
8528
- /**
8529
- * Invalid date format or range
8530
- */
8531
- 400: unknown;
8532
- /**
8533
- * User not authenticated
8534
- */
8535
- 401: unknown;
8536
- /**
8537
- * Backfill already in progress for this user
8538
- */
8539
- 409: unknown;
8540
- };
8541
- };
8542
- };
8543
8708
  '/api/v1/auth/api-keys': {
8544
8709
  post: {
8545
8710
  res: {
@@ -8561,7 +8726,7 @@ type $OpenApiTs = {
8561
8726
  /**
8562
8727
  * Login successful
8563
8728
  */
8564
- 200: unknown;
8729
+ 200: AnonymousLoginResponseDto;
8565
8730
  /**
8566
8731
  * Invalid access token
8567
8732
  */
@@ -8789,6 +8954,17 @@ declare class BeanAccountsService {
8789
8954
  * @throws ApiError
8790
8955
  */
8791
8956
  static accountControllerReopen(data: AccountControllerReopenData): CancelablePromise<AccountControllerReopenResponse>;
8957
+ /**
8958
+ * Post an opening-balance transaction
8959
+ * Posts a double-entry opening-balance transaction against Equity:Opening-Balances for an existing Assets/Liabilities account. At most one active opening balance per account.
8960
+ * @param data The data for the request.
8961
+ * @param data.id Account UUID
8962
+ * @param data.region Region code for tenant context
8963
+ * @param data.requestBody
8964
+ * @returns OpeningBalanceResultDto Opening-balance transaction created
8965
+ * @throws ApiError
8966
+ */
8967
+ static accountControllerAddOpeningBalance(data: AccountControllerAddOpeningBalanceData): CancelablePromise<AccountControllerAddOpeningBalanceResponse>;
8792
8968
  }
8793
8969
  declare class BeanTransactionsService {
8794
8970
  /**
@@ -9120,4 +9296,4 @@ type OpenAPIConfig = {
9120
9296
  };
9121
9297
  declare const OpenAPI: OpenAPIConfig;
9122
9298
 
9123
- 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 CreateExternalAccountLinkDto, type CreatePayeeDto, type CreatePayeeProfileDto, type CreatePlatformDto, type CreatePostingDto, type CreateRecurringRuleDto, type CreateRuleFromTransactionDto, type CreateTransactionDto, type CreateTransactionRuleDto, type CurrencyBalanceDto, type CurrentPriceDto, type DashboardControllerGetAccountsData, type DashboardControllerGetAccountsResponse, type DashboardControllerGetCashFlowData, type DashboardControllerGetCashFlowResponse, type DashboardControllerGetExpensesData, type DashboardControllerGetExpensesResponse, type DashboardControllerGetNetWorthData, type DashboardControllerGetNetWorthResponse, type DecisionOptionDto, type DeleteOwnUserDto, type EnterNowDto, type EventControllerCreateData, type EventControllerCreateResponse, type EventControllerDeleteData, type EventControllerDeleteResponse, type EventControllerFindAllData, type EventControllerFindAllResponse, type EventControllerFindOneData, type EventControllerFindOneResponse, type EventControllerGetSliceData, type EventControllerGetSliceResponse, type EventControllerUpdateData, type EventControllerUpdateResponse, type EventListResponseDto, type EventResponseDto, type ExchangeRateControllerGetExchangeRateData, type ExchangeRateControllerGetExchangeRateResponse, type ExchangeRateWarningDto, type ExpectedTransactionControllerConfirmMatchData, type ExpectedTransactionControllerConfirmMatchResponse, type ExpectedTransactionControllerEnterNowData, type ExpectedTransactionControllerEnterNowResponse, type ExpectedTransactionControllerFindAllData, type ExpectedTransactionControllerFindAllResponse, type ExpectedTransactionControllerFindOneData, type ExpectedTransactionControllerFindOneResponse, type ExpectedTransactionControllerFindOverdueData, type ExpectedTransactionControllerFindOverdueResponse, type ExpectedTransactionControllerSkipData, type ExpectedTransactionControllerSkipResponse, type ExpectedTransactionControllerUndoSkipData, type ExpectedTransactionControllerUndoSkipResponse, type ExpectedTransactionControllerUnmatchData, type ExpectedTransactionControllerUnmatchResponse, type ExpectedTransactionListResponseDto, type ExpectedTransactionResponseDto, type ExpectedTransactionRuleDto, type ExpensesByCategoryResponseDto, type ExpensesByCategorySummaryDto, type ExportControllerExportBeancountResponse, type ExportRulesResponseDto, type ExternalAccountLinkControllerCreateData, type ExternalAccountLinkControllerCreateResponse, type ExternalAccountLinkControllerFindAllData, type ExternalAccountLinkControllerFindAllResponse, type ExternalAccountLinkControllerFindOneData, type ExternalAccountLinkControllerFindOneResponse, type ExternalAccountLinkControllerRemoveData, type ExternalAccountLinkControllerRemoveResponse, type ExternalAccountLinkListResponseDto, type ExternalAccountLinkResponseDto, type FileImportControllerIdentifyFileData, type FileImportControllerIdentifyFileResponse, type FileImportControllerImportBeancountData, type FileImportControllerImportBeancountResponse, type FileImportControllerImportFileData, type FileImportControllerImportFileResponse, type FileImportDto, type ForecastControllerGetForecastData, type ForecastControllerGetForecastResponse, type ForecastItemDto, type ForecastResponseDto, type FxRateDto, type GenerateSnapshotBody, type GenerateSnapshotResponse, type HealthControllerCheckDatabaseResponse, type HealthControllerCheckOpenBbResponse, type HealthControllerCheckRedisResponse, type HealthControllerGetCircuitBreakersHealthResponse, type HealthControllerGetHealthResponse, type HealthControllerGetMetricsResponse, type HealthControllerResetCircuitBreakerData, type HealthControllerResetCircuitBreakerResponse, HealthService, type HoldingAssetClassAccountSliceDto, type HoldingAssetClassCrossAccountResponseDto, type HoldingPnlControllerGetHoldingPnlData, type HoldingPnlControllerGetHoldingPnlResponse, type HoldingPnlResponseDto, type HoldingPnlRowDto, type HoldingPnlWarningDto, type IdentifyResultDto, type ImportErrorDto, type ImportResultDto, type ImporterConfigControllerGetConfigData, type ImporterConfigControllerGetConfigResponse, type ImporterConfigControllerResetConfigData, type ImporterConfigControllerResetConfigResponse, type ImporterConfigControllerUpdateConfigData, type ImporterConfigControllerUpdateConfigResponse, type ImporterConfigDataDto, type ImporterConfigDto, type InfoControllerGetInfoResponse, type MapperDefaultsDto, type MonetaryDto, type MonthlyForecastDto, type MultiCurrencyBalanceResponseDto, type MultiCurrencyPointDto, type NetWorthByCurrencyDto, type NetWorthResponseDto, type NlpAccountConfirmationDataDto, type NlpAlternativePayeeDto, type NlpControllerClearSessionData, type NlpControllerClearSessionResponse, type NlpControllerGetSessionData, type NlpControllerGetSessionResponse, type NlpControllerProcessNaturalLanguageData, type NlpControllerProcessNaturalLanguageResponse, type NlpDefaultAccountsDto, type NlpDuplicateConfirmationDataDto, type NlpParsedDataDto, type NlpPayeeConfirmationDataDto, type NlpResponseDto, type NlpRuleConfirmationDataDto, type NlpSimilarityDto, type NlpSourceTransactionDto, type NlpSuggestedAccountDto, type NlpSuggestedAccountsDto, type NlpSuggestedPayeeDto, type NlpTargetTransactionDto, type NlpTransactionInfoDto, type OnboardingAccountDto, type OnboardingControllerBootstrapData, type OnboardingControllerBootstrapResponse, type OnboardingDto, OpenAPI, type OpenAPIConfig, type PadReconciliationDto, type PadResultDto, type ParserTelemetryReportDto, type PayeeAutocompleteResponseDto, type PayeeControllerAutocompleteData, type PayeeControllerAutocompleteResponse, type PayeeControllerCreateData, type PayeeControllerCreateResponse, type PayeeControllerDeleteData, type PayeeControllerDeleteResponse, type PayeeControllerFindAllData, type PayeeControllerFindAllResponse, type PayeeControllerFindOneData, type PayeeControllerFindOneResponse, type PayeeControllerGetTopPayeesData, type PayeeControllerGetTopPayeesResponse, type PayeeControllerUpdateData, type PayeeControllerUpdateResponse, type PayeeListResponseDto, type PayeeProfileAdminControllerCreateData, type PayeeProfileAdminControllerCreateResponse, type PayeeProfileAdminControllerDeleteData, type PayeeProfileAdminControllerDeleteResponse, type PayeeProfileAdminControllerFindAllData, type PayeeProfileAdminControllerFindAllResponse, type PayeeProfileAdminControllerFindOneData, type PayeeProfileAdminControllerFindOneResponse, type PayeeProfileAdminControllerUnverifyData, type PayeeProfileAdminControllerUnverifyResponse, type PayeeProfileAdminControllerUpdateData, type PayeeProfileAdminControllerUpdateResponse, type PayeeProfileAdminControllerVerifyData, type PayeeProfileAdminControllerVerifyResponse, type PayeeProfileListResponseDto, type PayeeProfileResponseDto, type PayeeResponseDto, type PayeeStatsResponseDto, type PlatformControllerCreateData, type PlatformControllerCreateResponse, type PlatformControllerDeleteData, type PlatformControllerDeleteResponse, type PlatformControllerFindAllResponse, type PlatformControllerGetPlatformListResponse, type PlatformControllerMatchPlatformsData, type PlatformControllerMatchPlatformsResponse, type PlatformControllerUpdateData, type PlatformControllerUpdateResponse, type PlatformGroupDto, type PortfolioTrendsResponseDto, type PostingDetailDto, type PostingResponseDto, type PriceControllerBulkCreateData, type PriceControllerBulkCreateResponse, type PriceControllerCreateData, type PriceControllerCreateResponse, type PriceControllerDeleteData, type PriceControllerDeleteResponse, type PriceControllerFindAllData, type PriceControllerFindAllResponse, type PriceControllerFindOneData, type PriceControllerFindOneResponse, type PriceControllerUpdateData, type PriceControllerUpdateResponse, type PriceListResponseDto, type PriceResponseDto, type ProcessNlpDto, type PropertyControllerDeleteData, type PropertyControllerDeleteResponse, type PropertyControllerGetAllResponse, type PropertyControllerGetByKeyData, type PropertyControllerGetByKeyResponse, type PropertyControllerUpdateData, type PropertyControllerUpdateResponse, type ProviderSyncConfigDto, type ProviderSyncControllerGetSupportedProvidersData, type ProviderSyncControllerGetSupportedProvidersResponse, type ProviderSyncControllerIsProviderSupportedData, type ProviderSyncControllerIsProviderSupportedResponse, type ProviderSyncControllerSyncData, type ProviderSyncControllerSyncResponse, type ProviderSyncDto, type ProviderSyncResponseDto, ProviderSyncService, type ReconciliationComputeResultDto, type ReconciliationControllerAssertData, type ReconciliationControllerAssertResponse, type ReconciliationControllerComputeData, type ReconciliationControllerComputeResponse, type ReconciliationControllerHistoryData, type ReconciliationControllerHistoryResponse, type ReconciliationControllerPadData, type ReconciliationControllerPadResponse, type ReconciliationRecordDto, type RecurringMatchInfoDto, type RecurringRuleControllerCreateData, type RecurringRuleControllerCreateFromTransactionData, type RecurringRuleControllerCreateFromTransactionResponse, type RecurringRuleControllerCreateResponse, type RecurringRuleControllerDeleteData, type RecurringRuleControllerDeleteResponse, type RecurringRuleControllerFindAllData, type RecurringRuleControllerFindAllResponse, type RecurringRuleControllerFindOneData, type RecurringRuleControllerFindOneResponse, type RecurringRuleControllerGetWithStatsData, type RecurringRuleControllerGetWithStatsResponse, type RecurringRuleControllerUpdateData, type RecurringRuleControllerUpdateResponse, type RecurringRuleResponseDto, type RecurringRuleWithStatsResponseDto, type RecurringSuggestionDto, type RegionConfigDto, type RegionInfoDto, type RegionsMetadataResponseDto, type ReopenAccountDto, type ReportingControllerBackfillSnapshotsData, type ReportingControllerBackfillSnapshotsResponse, type ReportingControllerGenerateSnapshotData, type ReportingControllerGenerateSnapshotResponse, type ReportingControllerGetCashFlowTrendsData, type ReportingControllerGetCashFlowTrendsResponse, type ReportingControllerGetPortfolioTrendsData, type ReportingControllerGetPortfolioTrendsResponse, type ResolveResultDto, type ResolveReviewDto, type ReviewControllerBatchResolveData, type ReviewControllerBatchResolveResponse, type ReviewControllerFindAllData, type ReviewControllerFindAllResponse, type ReviewControllerFindOneData, type ReviewControllerFindOneResponse, type ReviewControllerGetStatsData, type ReviewControllerGetStatsResponse, type ReviewControllerResolveData, type ReviewControllerResolveResponse, type ReviewControllerUndoData, type ReviewControllerUndoResponse, type ReviewDetailDto, type ReviewItemPreviewDto, type ReviewListResponseDto, type ReviewStatsDto, type ReviewSummaryDto, type RuleStatisticsResponseDto, type SignupDto, type SupportedProvidersResponseDto, type TagSuggestionDto, type TagSuggestionsResponseDto, type TelemetryControllerGetCoverageMetricsData, type TelemetryControllerGetCoverageMetricsResponse, type TelemetryControllerReportCoverageMissData, type TelemetryControllerReportCoverageMissResponse, type TelemetryControllerReportTelemetryData, type TelemetryControllerReportTelemetryResponse, type TemplateMetadataDto, type TemplateMetadataResponseDto, type TestRuleDto, type TestRuleResponseDto, type TimeSeriesPointDto, type TransactionControllerCorrectData, type TransactionControllerCorrectResponse, type TransactionControllerCreateBatchData, type TransactionControllerCreateBatchResponse, type TransactionControllerCreateData, type TransactionControllerCreateResponse, type TransactionControllerDeleteData, type TransactionControllerDeleteResponse, type TransactionControllerGetDetailData, type TransactionControllerGetDetailResponse, type TransactionControllerListData, type TransactionControllerListResponse, type TransactionControllerSuggestTagsData, type TransactionControllerSuggestTagsResponse, type TransactionControllerUpdateData, type TransactionControllerUpdateResponse, type TransactionDetailDto, type TransactionListResponseDto, type TransactionListSummaryDto, type TransactionResponseDto, type TransactionRuleControllerBulkCreateData, type TransactionRuleControllerBulkCreateResponse, type TransactionRuleControllerCreateData, type TransactionRuleControllerCreateResponse, type TransactionRuleControllerDeleteData, type TransactionRuleControllerDeleteResponse, type TransactionRuleControllerExportData, type TransactionRuleControllerExportResponse, type TransactionRuleControllerGetDetailData, type TransactionRuleControllerGetDetailResponse, type TransactionRuleControllerGetStatisticsData, type TransactionRuleControllerGetStatisticsResponse, type TransactionRuleControllerListData, type TransactionRuleControllerListResponse, type TransactionRuleControllerTestData, type TransactionRuleControllerTestResponse, type TransactionRuleControllerUpdateData, type TransactionRuleControllerUpdateResponse, type TransactionRuleControllerValidateData, type TransactionRuleControllerValidateResponse, type TransactionRuleListResponseDto, type TransactionRuleResponseDto, type TransactionSummaryDto, type TrendSummaryDto, type UncoveredFormatMissDto, type UndoResultDto, type UpdateAccountDto, type UpdateBeanEventDto, type UpdateBeanPriceDto, type UpdateCommodityDto, type UpdateConfigDataDto, type UpdateImporterConfigDto, type UpdateMapperDefaultsDto, type UpdatePayeeDto, type UpdatePayeeProfileDto, type UpdatePlatformDto, type UpdatePropertyDto, type UpdateRecurringRuleDto, type UpdateTransactionDto, type UpdateTransactionRuleDto, type UpdateUserSettingDto, type UserControllerDeleteOwnUserData, type UserControllerDeleteOwnUserResponse, type UserControllerDeleteUserData, type UserControllerDeleteUserResponse, type UserControllerGetAllUserSettingsByPageData, type UserControllerGetAllUserSettingsByPageResponse, type UserControllerGetAssetLiabilitySummaryResponse, type UserControllerGetUserData, type UserControllerGetUserInfoData, type UserControllerGetUserInfoResponse, type UserControllerGetUserResponse, type UserControllerSignupUserData, type UserControllerSignupUserResponse, type UserControllerUpdateUserSettingData, type UserControllerUpdateUserSettingResponse, type ValidateRuleDto, type ValidateRuleResponseDto, type VersionedConfigDto, type action, type action2, type assetClass, type assetSubType, type bookingMethod, type branchType, type category, type chartToken, type colorScheme, type confidenceLevel, type conflictStrategy, type dataSource, type equitySubType, type flag, type flag2, type frequency, type importerId, type intent, type investmentAction, type learningSource, type liabilitySubType, type matchLogic, type method, type mode, type paymentSource, type period, type provider, type source, type source2, type source3, type status, type status2, type status3, type status4, type suggestedAction, type suggestedFrequency, type type, type type2, type type3, type type4, type value, type viewMode };
9299
+ export { type $OpenApiTs, type AccountControllerAddOpeningBalanceData, type AccountControllerAddOpeningBalanceResponse, type AccountControllerCloseData, type AccountControllerCloseResponse, type AccountControllerCreateData, type AccountControllerCreateResponse, type AccountControllerDeleteData, type AccountControllerDeleteResponse, type AccountControllerFindAllData, type AccountControllerFindAllResponse, type AccountControllerFindOneData, type AccountControllerFindOneResponse, type AccountControllerReopenData, type AccountControllerReopenResponse, type AccountControllerUpdateData, type AccountControllerUpdateResponse, type AccountExchangeRateWarningDto, type AccountItemDto, type AccountItemWithAssetClassDto, type AccountListResponseDto, type AccountResponseDto, type AccountStandardListResponseDto, type AccountStandardResponseDto, type AccountStandardsControllerGetRegionsData, type AccountStandardsControllerGetRegionsResponse, type AccountStandardsControllerGetTemplateMetadataData, type AccountStandardsControllerGetTemplateMetadataResponse, type AccountStandardsControllerGetTemplatesData, type AccountStandardsControllerGetTemplatesResponse, type AccountsResponseDto, type AccountsSummaryDto, type ActualBalanceDto, type AmountDto, type AmountRangeDto, type AnonymousLoginDto, type AnonymousLoginResponseDto, type ApiKeysControllerCreateApiKeyResponse, type ApiProblemResponseDto, type AssertReconciliationDto, type AssetClassAccountsResponseDto, type AssetClassGroupDto, type AssetClassSummaryDto, type AuthControllerAccessTokenLoginData, type AuthControllerAccessTokenLoginResponse, type BackfillSnapshotsBody, type BackfillSnapshotsResponse, type BalanceByCurrencyDto, type BalanceControllerGetBalanceData, type BalanceControllerGetBalanceResponse, type BalanceControllerGetMultiCurrencyBalanceData, type BalanceControllerGetMultiCurrencyBalanceResponse, type BalanceResponseDto, type BatchCreateTransactionDto, type BatchResolveDto, type BatchResolveResultDto, type BatchTransactionErrorDto, type BatchTransactionResponseDto, BeanAccountsService, BeanBalancesService, BeanCommoditiesService, BeanTransactionsService, type BulkCreateRulesDto, type BulkCreateRulesResponseDto, type CacheControllerFlushCacheResponse, type CashFlowByCurrencyDto, type CashFlowPointDto, type CashFlowResponseDto, type CashFlowTrendSummaryDto, type CashFlowTrendsResponseDto, type CategoryGroupDto, type CloseAccountDto, type CommodityControllerBulkCreateData, type CommodityControllerBulkCreateResponse, type CommodityControllerCreateData, type CommodityControllerCreateResponse, type CommodityControllerDeleteData, type CommodityControllerDeleteResponse, type CommodityControllerFindAllData, type CommodityControllerFindAllResponse, type CommodityControllerFindOneData, type CommodityControllerFindOneResponse, type CommodityControllerGetOrCreateData, type CommodityControllerGetOrCreateResponse, type CommodityControllerUpdateData, type CommodityControllerUpdateResponse, type CommodityListResponseDto, type CommodityResponseDto, type ComputeReconciliationDto, type ConfirmMatchDto, type ConvertedCashFlowDto, type ConvertedNetWorthDto, type CorrectTransactionDto, type CostDetailDto, type CostSpecDto, type CreateAccountDto, type CreateBeanEventDto, type CreateBeanPriceDto, type CreateCommodityDto, type CreateExternalAccountLinkDto, type CreateOpeningBalanceDto, type CreatePayeeDto, type CreatePayeeProfileDto, type CreatePlatformDto, type CreatePostingDto, type CreateRecurringRuleDto, type CreateRuleFromTransactionDto, type CreateTransactionDto, type CreateTransactionRuleDto, type CurrencyBalanceDto, type CurrentPriceDto, type DashboardControllerGetAccountsData, type DashboardControllerGetAccountsResponse, type DashboardControllerGetCashFlowData, type DashboardControllerGetCashFlowResponse, type DashboardControllerGetExpensesData, type DashboardControllerGetExpensesResponse, type DashboardControllerGetNetWorthData, type DashboardControllerGetNetWorthResponse, type DecisionOptionDto, type DeleteOwnUserDto, type EnterNowDto, type EventControllerCreateData, type EventControllerCreateResponse, type EventControllerDeleteData, type EventControllerDeleteResponse, type EventControllerFindAllData, type EventControllerFindAllResponse, type EventControllerFindOneData, type EventControllerFindOneResponse, type EventControllerGetSliceData, type EventControllerGetSliceResponse, type EventControllerUpdateData, type EventControllerUpdateResponse, type EventListResponseDto, type EventResponseDto, type ExchangeRateControllerGetExchangeRateData, type ExchangeRateControllerGetExchangeRateResponse, type ExchangeRateWarningDto, type ExpectedTransactionControllerConfirmMatchData, type ExpectedTransactionControllerConfirmMatchResponse, type ExpectedTransactionControllerEnterNowData, type ExpectedTransactionControllerEnterNowResponse, type ExpectedTransactionControllerFindAllData, type ExpectedTransactionControllerFindAllResponse, type ExpectedTransactionControllerFindOneData, type ExpectedTransactionControllerFindOneResponse, type ExpectedTransactionControllerFindOverdueData, type ExpectedTransactionControllerFindOverdueResponse, type ExpectedTransactionControllerSkipData, type ExpectedTransactionControllerSkipResponse, type ExpectedTransactionControllerUndoSkipData, type ExpectedTransactionControllerUndoSkipResponse, type ExpectedTransactionControllerUnmatchData, type ExpectedTransactionControllerUnmatchResponse, type ExpectedTransactionListResponseDto, type ExpectedTransactionResponseDto, type ExpectedTransactionRuleDto, type ExpensesByCategoryResponseDto, type ExpensesByCategorySummaryDto, type ExportControllerExportBeancountResponse, type ExportRulesResponseDto, type ExternalAccountLinkControllerCreateData, type ExternalAccountLinkControllerCreateResponse, type ExternalAccountLinkControllerFindAllData, type ExternalAccountLinkControllerFindAllResponse, type ExternalAccountLinkControllerFindOneData, type ExternalAccountLinkControllerFindOneResponse, type ExternalAccountLinkControllerRemoveData, type ExternalAccountLinkControllerRemoveResponse, type ExternalAccountLinkListResponseDto, type ExternalAccountLinkResponseDto, type FileImportControllerIdentifyFileData, type FileImportControllerIdentifyFileResponse, type FileImportControllerImportBeancountData, type FileImportControllerImportBeancountResponse, type FileImportControllerImportFileData, type FileImportControllerImportFileResponse, type FileImportDto, type ForecastControllerGetForecastData, type ForecastControllerGetForecastResponse, type ForecastItemDto, type ForecastResponseDto, type FxRateDto, type GenerateSnapshotBody, type GenerateSnapshotResponse, type HealthControllerCheckDatabaseResponse, type HealthControllerCheckOpenBbResponse, type HealthControllerCheckRedisResponse, type HealthControllerGetCircuitBreakersHealthResponse, type HealthControllerGetHealthResponse, type HealthControllerGetMetricsResponse, type HealthControllerResetCircuitBreakerData, type HealthControllerResetCircuitBreakerResponse, HealthService, type HoldingAssetClassAccountSliceDto, type HoldingAssetClassCrossAccountResponseDto, type HoldingPnlControllerGetHoldingPnlData, type HoldingPnlControllerGetHoldingPnlResponse, type HoldingPnlResponseDto, type HoldingPnlRowDto, type HoldingPnlWarningDto, type IdentifyResultDto, type ImportErrorDto, type ImportResultDto, type ImporterConfigControllerGetConfigData, type ImporterConfigControllerGetConfigResponse, type ImporterConfigControllerResetConfigData, type ImporterConfigControllerResetConfigResponse, type ImporterConfigControllerUpdateConfigData, type ImporterConfigControllerUpdateConfigResponse, type ImporterConfigDataDto, type ImporterConfigDto, type InfoControllerGetInfoResponse, type MapperDefaultsDto, type MonetaryDto, type MonthlyForecastDto, type MultiCurrencyBalanceResponseDto, type MultiCurrencyPointDto, type NetWorthByCurrencyDto, type NetWorthResponseDto, type NlpAccountConfirmationDataDto, type NlpAlternativePayeeDto, type NlpControllerClearSessionData, type NlpControllerClearSessionResponse, type NlpControllerGetSessionData, type NlpControllerGetSessionResponse, type NlpControllerProcessNaturalLanguageData, type NlpControllerProcessNaturalLanguageResponse, type NlpDefaultAccountsDto, type NlpDuplicateConfirmationDataDto, type NlpParsedDataDto, type NlpPayeeConfirmationDataDto, type NlpResponseDto, type NlpRuleConfirmationDataDto, type NlpSimilarityDto, type NlpSourceTransactionDto, type NlpSuggestedAccountDto, type NlpSuggestedAccountsDto, type NlpSuggestedPayeeDto, type NlpTargetTransactionDto, type NlpTransactionInfoDto, type OnboardingAccountDto, type OnboardingControllerBootstrapData, type OnboardingControllerBootstrapResponse, type OnboardingDto, OpenAPI, type OpenAPIConfig, type OpeningBalanceResultDto, type PadReconciliationDto, type PadResultDto, type ParserTelemetryReportDto, type PayeeAutocompleteResponseDto, type PayeeControllerAutocompleteData, type PayeeControllerAutocompleteResponse, type PayeeControllerCreateData, type PayeeControllerCreateResponse, type PayeeControllerDeleteData, type PayeeControllerDeleteResponse, type PayeeControllerFindAllData, type PayeeControllerFindAllResponse, type PayeeControllerFindOneData, type PayeeControllerFindOneResponse, type PayeeControllerGetTopPayeesData, type PayeeControllerGetTopPayeesResponse, type PayeeControllerUpdateData, type PayeeControllerUpdateResponse, type PayeeListResponseDto, type PayeeProfileAdminControllerCreateData, type PayeeProfileAdminControllerCreateResponse, type PayeeProfileAdminControllerDeleteData, type PayeeProfileAdminControllerDeleteResponse, type PayeeProfileAdminControllerFindAllData, type PayeeProfileAdminControllerFindAllResponse, type PayeeProfileAdminControllerFindOneData, type PayeeProfileAdminControllerFindOneResponse, type PayeeProfileAdminControllerUnverifyData, type PayeeProfileAdminControllerUnverifyResponse, type PayeeProfileAdminControllerUpdateData, type PayeeProfileAdminControllerUpdateResponse, type PayeeProfileAdminControllerVerifyData, type PayeeProfileAdminControllerVerifyResponse, type PayeeProfileListResponseDto, type PayeeProfileResponseDto, type PayeeResponseDto, type PayeeStatsResponseDto, type PlatformControllerCreateData, type PlatformControllerCreateResponse, type PlatformControllerDeleteData, type PlatformControllerDeleteResponse, type PlatformControllerFindAllResponse, type PlatformControllerGetPlatformListResponse, type PlatformControllerMatchPlatformsData, type PlatformControllerMatchPlatformsResponse, type PlatformControllerUpdateData, type PlatformControllerUpdateResponse, type PlatformGroupDto, type PlatformListItemDto, type PlatformMatchResponseDto, type PlatformMatchResultDto, type PortfolioTrendsResponseDto, type PostingDetailDto, type PostingResponseDto, type PriceControllerBulkCreateData, type PriceControllerBulkCreateResponse, type PriceControllerCreateData, type PriceControllerCreateResponse, type PriceControllerDeleteData, type PriceControllerDeleteResponse, type PriceControllerFindAllData, type PriceControllerFindAllResponse, type PriceControllerFindOneData, type PriceControllerFindOneResponse, type PriceControllerUpdateData, type PriceControllerUpdateResponse, type PriceListResponseDto, type PriceResponseDto, type ProcessNlpDto, type PropertyControllerDeleteData, type PropertyControllerDeleteResponse, type PropertyControllerGetAllResponse, type PropertyControllerGetByKeyData, type PropertyControllerGetByKeyResponse, type PropertyControllerUpdateData, type PropertyControllerUpdateResponse, type ProviderSyncConfigDto, type ProviderSyncControllerGetSupportedProvidersData, type ProviderSyncControllerGetSupportedProvidersResponse, type ProviderSyncControllerIsProviderSupportedData, type ProviderSyncControllerIsProviderSupportedResponse, type ProviderSyncControllerSyncData, type ProviderSyncControllerSyncResponse, type ProviderSyncDto, type ProviderSyncResponseDto, ProviderSyncService, type ReconciliationComputeResultDto, type ReconciliationControllerAssertData, type ReconciliationControllerAssertResponse, type ReconciliationControllerComputeData, type ReconciliationControllerComputeResponse, type ReconciliationControllerHistoryData, type ReconciliationControllerHistoryResponse, type ReconciliationControllerPadData, type ReconciliationControllerPadResponse, type ReconciliationRecordDto, type RecurringMatchInfoDto, type RecurringRuleControllerCreateData, type RecurringRuleControllerCreateFromTransactionData, type RecurringRuleControllerCreateFromTransactionResponse, type RecurringRuleControllerCreateResponse, type RecurringRuleControllerDeleteData, type RecurringRuleControllerDeleteResponse, type RecurringRuleControllerFindAllData, type RecurringRuleControllerFindAllResponse, type RecurringRuleControllerFindOneData, type RecurringRuleControllerFindOneResponse, type RecurringRuleControllerGetWithStatsData, type RecurringRuleControllerGetWithStatsResponse, type RecurringRuleControllerUpdateData, type RecurringRuleControllerUpdateResponse, type RecurringRuleResponseDto, type RecurringRuleWithStatsResponseDto, type RecurringSuggestionDto, type RegionConfigDto, type RegionInfoDto, type RegionsMetadataResponseDto, type ReopenAccountDto, type ReportingControllerBackfillSnapshotsData, type ReportingControllerBackfillSnapshotsResponse, type ReportingControllerGenerateSnapshotData, type ReportingControllerGenerateSnapshotResponse, type ReportingControllerGetCashFlowTrendsData, type ReportingControllerGetCashFlowTrendsResponse, type ReportingControllerGetPortfolioTrendsData, type ReportingControllerGetPortfolioTrendsResponse, type ResolveResultDto, type ResolveReviewDto, type ReviewControllerBatchResolveData, type ReviewControllerBatchResolveResponse, type ReviewControllerFindAllData, type ReviewControllerFindAllResponse, type ReviewControllerFindOneData, type ReviewControllerFindOneResponse, type ReviewControllerGetStatsData, type ReviewControllerGetStatsResponse, type ReviewControllerResolveData, type ReviewControllerResolveResponse, type ReviewControllerUndoData, type ReviewControllerUndoResponse, type ReviewDetailDto, type ReviewItemPreviewDto, type ReviewListResponseDto, type ReviewStatsDto, type ReviewSummaryDto, type RuleStatisticsResponseDto, type SignupDto, type SignupResponseDto, type SupportedProvidersResponseDto, type 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 matchType, type matchType2, type method, type mode, type paymentSource, type period, type provider, type role, 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 };