@firela/api-types 0.0.0-canary.ba0a88d9 → 0.0.0-canary.da5984a1

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
@@ -233,19 +233,23 @@ type AccountStandardResponseDto = {
233
233
  /**
234
234
  * i18n key for localized display name
235
235
  */
236
- i18nKey?: string;
236
+ i18nKey: string;
237
237
  /**
238
- * Account description
238
+ * Short localized display name
239
239
  */
240
- description?: string;
240
+ name?: string;
241
+ /**
242
+ * Account description (stable semantics only)
243
+ */
244
+ description: string;
241
245
  /**
242
246
  * Account tags for categorization
243
247
  */
244
- tags?: Array<string>;
248
+ tags: Array<string>;
245
249
  /**
246
250
  * Icon identifier for UI display
247
251
  */
248
- icon?: string;
252
+ icon: string;
249
253
  };
250
254
  type AccountStandardListResponseDto = {
251
255
  /**
@@ -363,7 +367,7 @@ type PostingResponseDto = {
363
367
  */
364
368
  account: string;
365
369
  /**
366
- * Amount (may be null if interpolated)
370
+ * Amount as decimal string. Typed optional but always present in responses: interpolation fills any MISSING posting before it is persisted or returned.
367
371
  */
368
372
  units?: string;
369
373
  /**
@@ -494,6 +498,10 @@ type BatchTransactionErrorDto = {
494
498
  * Error message describing the failure
495
499
  */
496
500
  error: string;
501
+ /**
502
+ * Structured error code for programmatic handling
503
+ */
504
+ errorCode?: string;
497
505
  };
498
506
  type BatchTransactionResponseDto = {
499
507
  /**
@@ -519,7 +527,7 @@ type PostingDetailDto = {
519
527
  */
520
528
  accountName: string;
521
529
  /**
522
- * Amount (may be null if interpolated)
530
+ * Amount as decimal string. Typed optional but always present in responses: interpolation fills any MISSING posting before it is persisted or returned.
523
531
  */
524
532
  units?: string;
525
533
  /**
@@ -659,6 +667,22 @@ type TransactionListResponseDto = {
659
667
  */
660
668
  offset: number;
661
669
  };
670
+ type TagSuggestionDto = {
671
+ /**
672
+ * Tag name
673
+ */
674
+ tag: string;
675
+ /**
676
+ * Usage count across ACTIVE transactions
677
+ */
678
+ count: number;
679
+ };
680
+ type TagSuggestionsResponseDto = {
681
+ /**
682
+ * Tag suggestions sorted as requested
683
+ */
684
+ data: Array<TagSuggestionDto>;
685
+ };
662
686
  type UpdateTransactionDto = {
663
687
  /**
664
688
  * Transaction flag (CLEARED, PENDING, etc.)
@@ -777,9 +801,9 @@ type ReviewSummaryDto = {
777
801
  */
778
802
  confidence: number;
779
803
  /**
780
- * Confidence level derived from score
804
+ * Confidence level derived from score. Null for error-type reviews (ACCOUNT_VALIDATION/PIPELINE_ERROR) which carry no confidence.
781
805
  */
782
- confidenceLevel: 'HIGH' | 'MEDIUM' | 'LOW';
806
+ confidenceLevel: 'HIGH' | 'MEDIUM' | 'LOW' | null;
783
807
  /**
784
808
  * i18n message key for summary (e.g., review.summary.duplicate). Translate on frontend with summaryParams.
785
809
  */
@@ -840,7 +864,7 @@ type type2 = 'DUPLICATE' | 'RULE_MATCH' | 'PAYEE_MATCH' | 'ACCOUNT_VALIDATION' |
840
864
  */
841
865
  type status3 = 'PENDING' | 'RESOLVED' | 'EXPIRED' | 'CANCELLED';
842
866
  /**
843
- * Confidence level derived from score
867
+ * Confidence level derived from score. Null for error-type reviews (ACCOUNT_VALIDATION/PIPELINE_ERROR) which carry no confidence.
844
868
  */
845
869
  type confidenceLevel = 'HIGH' | 'MEDIUM' | 'LOW';
846
870
  type ReviewListResponseDto = {
@@ -914,9 +938,9 @@ type ReviewDetailDto = {
914
938
  */
915
939
  confidence: number;
916
940
  /**
917
- * Confidence level derived from score
941
+ * Confidence level derived from score. Null for error-type reviews (ACCOUNT_VALIDATION/PIPELINE_ERROR) which carry no confidence.
918
942
  */
919
- confidenceLevel: 'HIGH' | 'MEDIUM' | 'LOW';
943
+ confidenceLevel: 'HIGH' | 'MEDIUM' | 'LOW' | null;
920
944
  /**
921
945
  * i18n message key for summary (e.g., review.summary.duplicate). Translate on frontend with summaryParams.
922
946
  */
@@ -2917,6 +2941,12 @@ type ProcessNlpDto = {
2917
2941
  * Session ID for multi-turn conversation (auto-generated if not provided)
2918
2942
  */
2919
2943
  sessionId?: string;
2944
+ /**
2945
+ * Parsed data from previous NLP response for session recovery. Send back the parsedData received in confirm_payee/confirm responses.
2946
+ */
2947
+ parsedData?: {
2948
+ [key: string]: unknown;
2949
+ };
2920
2950
  };
2921
2951
  type NlpTransactionInfoDto = {
2922
2952
  /**
@@ -3887,7 +3917,7 @@ type AccountControllerCreateData = {
3887
3917
  /**
3888
3918
  * Region code for tenant context
3889
3919
  */
3890
- region: 'cn' | 'us' | 'de';
3920
+ region: 'cn' | 'us' | 'de' | 'gb';
3891
3921
  requestBody: CreateAccountDto;
3892
3922
  };
3893
3923
  type AccountControllerCreateResponse = AccountResponseDto;
@@ -3907,7 +3937,7 @@ type AccountControllerFindAllData = {
3907
3937
  /**
3908
3938
  * Region code for tenant context
3909
3939
  */
3910
- region: 'cn' | 'us' | 'de';
3940
+ region: 'cn' | 'us' | 'de' | 'gb';
3911
3941
  /**
3912
3942
  * Search term for path or i18nKey
3913
3943
  */
@@ -3930,7 +3960,7 @@ type AccountControllerFindOneData = {
3930
3960
  /**
3931
3961
  * Region code for tenant context
3932
3962
  */
3933
- region: 'cn' | 'us' | 'de';
3963
+ region: 'cn' | 'us' | 'de' | 'gb';
3934
3964
  };
3935
3965
  type AccountControllerFindOneResponse = AccountResponseDto;
3936
3966
  type AccountControllerUpdateData = {
@@ -3941,7 +3971,7 @@ type AccountControllerUpdateData = {
3941
3971
  /**
3942
3972
  * Region code for tenant context
3943
3973
  */
3944
- region: 'cn' | 'us' | 'de';
3974
+ region: 'cn' | 'us' | 'de' | 'gb';
3945
3975
  requestBody: UpdateAccountDto;
3946
3976
  };
3947
3977
  type AccountControllerUpdateResponse = AccountResponseDto;
@@ -3953,7 +3983,7 @@ type AccountControllerDeleteData = {
3953
3983
  /**
3954
3984
  * Region code for tenant context
3955
3985
  */
3956
- region: 'cn' | 'us' | 'de';
3986
+ region: 'cn' | 'us' | 'de' | 'gb';
3957
3987
  };
3958
3988
  type AccountControllerDeleteResponse = void;
3959
3989
  type AccountControllerCloseData = {
@@ -3964,7 +3994,7 @@ type AccountControllerCloseData = {
3964
3994
  /**
3965
3995
  * Region code for tenant context
3966
3996
  */
3967
- region: 'cn' | 'us' | 'de';
3997
+ region: 'cn' | 'us' | 'de' | 'gb';
3968
3998
  requestBody: CloseAccountDto;
3969
3999
  };
3970
4000
  type AccountControllerCloseResponse = AccountResponseDto;
@@ -3976,7 +4006,7 @@ type AccountControllerReopenData = {
3976
4006
  /**
3977
4007
  * Region code for tenant context
3978
4008
  */
3979
- region: 'cn' | 'us' | 'de';
4009
+ region: 'cn' | 'us' | 'de' | 'gb';
3980
4010
  requestBody: ReopenAccountDto;
3981
4011
  };
3982
4012
  type AccountControllerReopenResponse = AccountResponseDto;
@@ -3984,7 +4014,7 @@ type AccountStandardsControllerGetTemplatesData = {
3984
4014
  /**
3985
4015
  * Region code (cn, us, de)
3986
4016
  */
3987
- region: 'cn' | 'us' | 'de';
4017
+ region: 'cn' | 'us' | 'de' | 'gb';
3988
4018
  /**
3989
4019
  * Search term for path or description
3990
4020
  */
@@ -4003,21 +4033,21 @@ type AccountStandardsControllerGetTemplateMetadataData = {
4003
4033
  /**
4004
4034
  * Region code for tenant context
4005
4035
  */
4006
- region: 'cn' | 'us' | 'de';
4036
+ region: 'cn' | 'us' | 'de' | 'gb';
4007
4037
  };
4008
4038
  type AccountStandardsControllerGetTemplateMetadataResponse = TemplateMetadataResponseDto;
4009
4039
  type AccountStandardsControllerGetRegionsData = {
4010
4040
  /**
4011
4041
  * Region code for tenant context
4012
4042
  */
4013
- region: 'cn' | 'us' | 'de';
4043
+ region: 'cn' | 'us' | 'de' | 'gb';
4014
4044
  };
4015
4045
  type AccountStandardsControllerGetRegionsResponse = RegionsMetadataResponseDto;
4016
4046
  type TransactionControllerCreateData = {
4017
4047
  /**
4018
4048
  * Region code for tenant context
4019
4049
  */
4020
- region: 'cn' | 'us' | 'de';
4050
+ region: 'cn' | 'us' | 'de' | 'gb';
4021
4051
  /**
4022
4052
  * Transaction data with postings
4023
4053
  */
@@ -4048,7 +4078,7 @@ type TransactionControllerListData = {
4048
4078
  /**
4049
4079
  * Region code for tenant context
4050
4080
  */
4051
- region: 'cn' | 'us' | 'de';
4081
+ region: 'cn' | 'us' | 'de' | 'gb';
4052
4082
  /**
4053
4083
  * Search in narration and payee fields (max 200 chars)
4054
4084
  */
@@ -4063,10 +4093,29 @@ type TransactionControllerCreateBatchData = {
4063
4093
  /**
4064
4094
  * Region code for tenant context
4065
4095
  */
4066
- region: 'cn' | 'us' | 'de';
4096
+ region: 'cn' | 'us' | 'de' | 'gb';
4067
4097
  requestBody: BatchCreateTransactionDto;
4068
4098
  };
4069
4099
  type TransactionControllerCreateBatchResponse = BatchTransactionResponseDto;
4100
+ type TransactionControllerSuggestTagsData = {
4101
+ /**
4102
+ * Max suggestions (1-100, default 10)
4103
+ */
4104
+ limit?: number;
4105
+ /**
4106
+ * Prefix match, case-insensitive (max 50 chars)
4107
+ */
4108
+ q?: string;
4109
+ /**
4110
+ * Region code for tenant context
4111
+ */
4112
+ region: 'cn' | 'us' | 'de' | 'gb';
4113
+ /**
4114
+ * usage (default) or name
4115
+ */
4116
+ sort?: 'usage' | 'name';
4117
+ };
4118
+ type TransactionControllerSuggestTagsResponse = TagSuggestionsResponseDto;
4070
4119
  type TransactionControllerGetDetailData = {
4071
4120
  /**
4072
4121
  * Transaction ID
@@ -4075,7 +4124,7 @@ type TransactionControllerGetDetailData = {
4075
4124
  /**
4076
4125
  * Region code for tenant context
4077
4126
  */
4078
- region: 'cn' | 'us' | 'de';
4127
+ region: 'cn' | 'us' | 'de' | 'gb';
4079
4128
  };
4080
4129
  type TransactionControllerGetDetailResponse = TransactionDetailDto;
4081
4130
  type TransactionControllerUpdateData = {
@@ -4086,7 +4135,7 @@ type TransactionControllerUpdateData = {
4086
4135
  /**
4087
4136
  * Region code for tenant context
4088
4137
  */
4089
- region: 'cn' | 'us' | 'de';
4138
+ region: 'cn' | 'us' | 'de' | 'gb';
4090
4139
  /**
4091
4140
  * Fields to update (all optional)
4092
4141
  */
@@ -4101,7 +4150,7 @@ type TransactionControllerDeleteData = {
4101
4150
  /**
4102
4151
  * Region code for tenant context
4103
4152
  */
4104
- region: 'cn' | 'us' | 'de';
4153
+ region: 'cn' | 'us' | 'de' | 'gb';
4105
4154
  };
4106
4155
  type TransactionControllerDeleteResponse = void;
4107
4156
  type BalanceControllerGetBalanceData = {
@@ -4120,14 +4169,14 @@ type BalanceControllerGetBalanceData = {
4120
4169
  /**
4121
4170
  * Region code for tenant context
4122
4171
  */
4123
- region: 'cn' | 'us' | 'de';
4172
+ region: 'cn' | 'us' | 'de' | 'gb';
4124
4173
  };
4125
4174
  type BalanceControllerGetBalanceResponse = BalanceResponseDto;
4126
4175
  type BalanceControllerGetMultiCurrencyBalanceData = {
4127
4176
  /**
4128
4177
  * Region code for tenant context
4129
4178
  */
4130
- region: 'cn' | 'us' | 'de';
4179
+ region: 'cn' | 'us' | 'de' | 'gb';
4131
4180
  };
4132
4181
  type BalanceControllerGetMultiCurrencyBalanceResponse = MultiCurrencyBalanceResponseDto;
4133
4182
  type ReviewControllerFindAllData = {
@@ -4146,7 +4195,7 @@ type ReviewControllerFindAllData = {
4146
4195
  /**
4147
4196
  * Region code for tenant context
4148
4197
  */
4149
- region: 'cn' | 'us' | 'de';
4198
+ region: 'cn' | 'us' | 'de' | 'gb';
4150
4199
  /**
4151
4200
  * Sort order
4152
4201
  */
@@ -4161,7 +4210,7 @@ type ReviewControllerGetStatsData = {
4161
4210
  /**
4162
4211
  * Region code for tenant context
4163
4212
  */
4164
- region: 'cn' | 'us' | 'de';
4213
+ region: 'cn' | 'us' | 'de' | 'gb';
4165
4214
  };
4166
4215
  type ReviewControllerGetStatsResponse = ReviewStatsDto;
4167
4216
  type ReviewControllerFindOneData = {
@@ -4172,7 +4221,7 @@ type ReviewControllerFindOneData = {
4172
4221
  /**
4173
4222
  * Region code for tenant context
4174
4223
  */
4175
- region: 'cn' | 'us' | 'de';
4224
+ region: 'cn' | 'us' | 'de' | 'gb';
4176
4225
  };
4177
4226
  type ReviewControllerFindOneResponse = ReviewDetailDto;
4178
4227
  type ReviewControllerResolveData = {
@@ -4183,7 +4232,7 @@ type ReviewControllerResolveData = {
4183
4232
  /**
4184
4233
  * Region code for tenant context
4185
4234
  */
4186
- region: 'cn' | 'us' | 'de';
4235
+ region: 'cn' | 'us' | 'de' | 'gb';
4187
4236
  requestBody: ResolveReviewDto;
4188
4237
  };
4189
4238
  type ReviewControllerResolveResponse = ResolveResultDto;
@@ -4195,14 +4244,14 @@ type ReviewControllerUndoData = {
4195
4244
  /**
4196
4245
  * Region code for tenant context
4197
4246
  */
4198
- region: 'cn' | 'us' | 'de';
4247
+ region: 'cn' | 'us' | 'de' | 'gb';
4199
4248
  };
4200
4249
  type ReviewControllerUndoResponse = UndoResultDto;
4201
4250
  type ReviewControllerBatchResolveData = {
4202
4251
  /**
4203
4252
  * Region code for tenant context
4204
4253
  */
4205
- region: 'cn' | 'us' | 'de';
4254
+ region: 'cn' | 'us' | 'de' | 'gb';
4206
4255
  /**
4207
4256
  * Batch resolution request containing review IDs and action
4208
4257
  */
@@ -4347,7 +4396,7 @@ type CommodityControllerCreateData = {
4347
4396
  /**
4348
4397
  * Region code for tenant context
4349
4398
  */
4350
- region: 'cn' | 'us' | 'de';
4399
+ region: 'cn' | 'us' | 'de' | 'gb';
4351
4400
  requestBody: CreateCommodityDto;
4352
4401
  };
4353
4402
  type CommodityControllerCreateResponse = CommodityResponseDto;
@@ -4355,7 +4404,7 @@ type CommodityControllerFindAllData = {
4355
4404
  /**
4356
4405
  * Region code for tenant context
4357
4406
  */
4358
- region: 'cn' | 'us' | 'de';
4407
+ region: 'cn' | 'us' | 'de' | 'gb';
4359
4408
  /**
4360
4409
  * Search term for symbol or metadata fields (partial match). Searches symbol and metadata.name.
4361
4410
  */
@@ -4370,7 +4419,7 @@ type CommodityControllerFindOneData = {
4370
4419
  /**
4371
4420
  * Region code for tenant context
4372
4421
  */
4373
- region: 'cn' | 'us' | 'de';
4422
+ region: 'cn' | 'us' | 'de' | 'gb';
4374
4423
  /**
4375
4424
  * Commodity symbol
4376
4425
  */
@@ -4381,7 +4430,7 @@ type CommodityControllerUpdateData = {
4381
4430
  /**
4382
4431
  * Region code for tenant context
4383
4432
  */
4384
- region: 'cn' | 'us' | 'de';
4433
+ region: 'cn' | 'us' | 'de' | 'gb';
4385
4434
  requestBody: UpdateCommodityDto;
4386
4435
  /**
4387
4436
  * Commodity symbol
@@ -4393,7 +4442,7 @@ type CommodityControllerDeleteData = {
4393
4442
  /**
4394
4443
  * Region code for tenant context
4395
4444
  */
4396
- region: 'cn' | 'us' | 'de';
4445
+ region: 'cn' | 'us' | 'de' | 'gb';
4397
4446
  /**
4398
4447
  * Commodity symbol
4399
4448
  */
@@ -4404,7 +4453,7 @@ type CommodityControllerGetOrCreateData = {
4404
4453
  /**
4405
4454
  * Region code for tenant context
4406
4455
  */
4407
- region: 'cn' | 'us' | 'de';
4456
+ region: 'cn' | 'us' | 'de' | 'gb';
4408
4457
  /**
4409
4458
  * Commodity symbol
4410
4459
  */
@@ -4415,14 +4464,14 @@ type CommodityControllerBulkCreateData = {
4415
4464
  /**
4416
4465
  * Region code for tenant context
4417
4466
  */
4418
- region: 'cn' | 'us' | 'de';
4467
+ region: 'cn' | 'us' | 'de' | 'gb';
4419
4468
  };
4420
4469
  type CommodityControllerBulkCreateResponse = Array<CommodityResponseDto>;
4421
4470
  type RecurringRuleControllerCreateData = {
4422
4471
  /**
4423
4472
  * Region code for tenant context
4424
4473
  */
4425
- region: 'cn' | 'us' | 'de';
4474
+ region: 'cn' | 'us' | 'de' | 'gb';
4426
4475
  requestBody: CreateRecurringRuleDto;
4427
4476
  };
4428
4477
  type RecurringRuleControllerCreateResponse = RecurringRuleResponseDto;
@@ -4442,14 +4491,14 @@ type RecurringRuleControllerFindAllData = {
4442
4491
  /**
4443
4492
  * Region code for tenant context
4444
4493
  */
4445
- region: 'cn' | 'us' | 'de';
4494
+ region: 'cn' | 'us' | 'de' | 'gb';
4446
4495
  };
4447
4496
  type RecurringRuleControllerFindAllResponse = Array<RecurringRuleResponseDto>;
4448
4497
  type RecurringRuleControllerCreateFromTransactionData = {
4449
4498
  /**
4450
4499
  * Region code for tenant context
4451
4500
  */
4452
- region: 'cn' | 'us' | 'de';
4501
+ region: 'cn' | 'us' | 'de' | 'gb';
4453
4502
  requestBody: CreateRuleFromTransactionDto;
4454
4503
  /**
4455
4504
  * Source transaction ID
@@ -4465,7 +4514,7 @@ type RecurringRuleControllerFindOneData = {
4465
4514
  /**
4466
4515
  * Region code for tenant context
4467
4516
  */
4468
- region: 'cn' | 'us' | 'de';
4517
+ region: 'cn' | 'us' | 'de' | 'gb';
4469
4518
  };
4470
4519
  type RecurringRuleControllerFindOneResponse = RecurringRuleResponseDto;
4471
4520
  type RecurringRuleControllerUpdateData = {
@@ -4476,7 +4525,7 @@ type RecurringRuleControllerUpdateData = {
4476
4525
  /**
4477
4526
  * Region code for tenant context
4478
4527
  */
4479
- region: 'cn' | 'us' | 'de';
4528
+ region: 'cn' | 'us' | 'de' | 'gb';
4480
4529
  requestBody: UpdateRecurringRuleDto;
4481
4530
  };
4482
4531
  type RecurringRuleControllerUpdateResponse = RecurringRuleResponseDto;
@@ -4488,7 +4537,7 @@ type RecurringRuleControllerDeleteData = {
4488
4537
  /**
4489
4538
  * Region code for tenant context
4490
4539
  */
4491
- region: 'cn' | 'us' | 'de';
4540
+ region: 'cn' | 'us' | 'de' | 'gb';
4492
4541
  };
4493
4542
  type RecurringRuleControllerDeleteResponse = void;
4494
4543
  type RecurringRuleControllerGetWithStatsData = {
@@ -4499,7 +4548,7 @@ type RecurringRuleControllerGetWithStatsData = {
4499
4548
  /**
4500
4549
  * Region code for tenant context
4501
4550
  */
4502
- region: 'cn' | 'us' | 'de';
4551
+ region: 'cn' | 'us' | 'de' | 'gb';
4503
4552
  };
4504
4553
  type RecurringRuleControllerGetWithStatsResponse = RecurringRuleWithStatsResponseDto;
4505
4554
  type ExpectedTransactionControllerFindAllData = {
@@ -4510,7 +4559,7 @@ type ExpectedTransactionControllerFindAllData = {
4510
4559
  /**
4511
4560
  * Region code for tenant context
4512
4561
  */
4513
- region: 'cn' | 'us' | 'de';
4562
+ region: 'cn' | 'us' | 'de' | 'gb';
4514
4563
  /**
4515
4564
  * Filter by recurring rule ID
4516
4565
  */
@@ -4529,7 +4578,7 @@ type ExpectedTransactionControllerFindOverdueData = {
4529
4578
  /**
4530
4579
  * Region code for tenant context
4531
4580
  */
4532
- region: 'cn' | 'us' | 'de';
4581
+ region: 'cn' | 'us' | 'de' | 'gb';
4533
4582
  };
4534
4583
  type ExpectedTransactionControllerFindOverdueResponse = ExpectedTransactionListResponseDto;
4535
4584
  type ExpectedTransactionControllerFindOneData = {
@@ -4540,7 +4589,7 @@ type ExpectedTransactionControllerFindOneData = {
4540
4589
  /**
4541
4590
  * Region code for tenant context
4542
4591
  */
4543
- region: 'cn' | 'us' | 'de';
4592
+ region: 'cn' | 'us' | 'de' | 'gb';
4544
4593
  };
4545
4594
  type ExpectedTransactionControllerFindOneResponse = ExpectedTransactionResponseDto;
4546
4595
  type ExpectedTransactionControllerSkipData = {
@@ -4551,7 +4600,7 @@ type ExpectedTransactionControllerSkipData = {
4551
4600
  /**
4552
4601
  * Region code for tenant context
4553
4602
  */
4554
- region: 'cn' | 'us' | 'de';
4603
+ region: 'cn' | 'us' | 'de' | 'gb';
4555
4604
  };
4556
4605
  type ExpectedTransactionControllerSkipResponse = ExpectedTransactionResponseDto;
4557
4606
  type ExpectedTransactionControllerUndoSkipData = {
@@ -4562,7 +4611,7 @@ type ExpectedTransactionControllerUndoSkipData = {
4562
4611
  /**
4563
4612
  * Region code for tenant context
4564
4613
  */
4565
- region: 'cn' | 'us' | 'de';
4614
+ region: 'cn' | 'us' | 'de' | 'gb';
4566
4615
  };
4567
4616
  type ExpectedTransactionControllerUndoSkipResponse = ExpectedTransactionResponseDto;
4568
4617
  type ExpectedTransactionControllerConfirmMatchData = {
@@ -4573,7 +4622,7 @@ type ExpectedTransactionControllerConfirmMatchData = {
4573
4622
  /**
4574
4623
  * Region code for tenant context
4575
4624
  */
4576
- region: 'cn' | 'us' | 'de';
4625
+ region: 'cn' | 'us' | 'de' | 'gb';
4577
4626
  requestBody: ConfirmMatchDto;
4578
4627
  };
4579
4628
  type ExpectedTransactionControllerConfirmMatchResponse = unknown;
@@ -4585,7 +4634,7 @@ type ExpectedTransactionControllerUnmatchData = {
4585
4634
  /**
4586
4635
  * Region code for tenant context
4587
4636
  */
4588
- region: 'cn' | 'us' | 'de';
4637
+ region: 'cn' | 'us' | 'de' | 'gb';
4589
4638
  };
4590
4639
  type ExpectedTransactionControllerUnmatchResponse = unknown;
4591
4640
  type ExpectedTransactionControllerEnterNowData = {
@@ -4596,7 +4645,7 @@ type ExpectedTransactionControllerEnterNowData = {
4596
4645
  /**
4597
4646
  * Region code for tenant context
4598
4647
  */
4599
- region: 'cn' | 'us' | 'de';
4648
+ region: 'cn' | 'us' | 'de' | 'gb';
4600
4649
  requestBody: EnterNowDto;
4601
4650
  };
4602
4651
  type ExpectedTransactionControllerEnterNowResponse = unknown;
@@ -4608,14 +4657,14 @@ type ForecastControllerGetForecastData = {
4608
4657
  /**
4609
4658
  * Region code for tenant context
4610
4659
  */
4611
- region: 'cn' | 'us' | 'de';
4660
+ region: 'cn' | 'us' | 'de' | 'gb';
4612
4661
  };
4613
4662
  type ForecastControllerGetForecastResponse = ForecastResponseDto;
4614
4663
  type TransactionRuleControllerCreateData = {
4615
4664
  /**
4616
4665
  * Region code for tenant context
4617
4666
  */
4618
- region: 'cn' | 'us' | 'de';
4667
+ region: 'cn' | 'us' | 'de' | 'gb';
4619
4668
  requestBody: CreateTransactionRuleDto;
4620
4669
  };
4621
4670
  type TransactionRuleControllerCreateResponse = TransactionRuleResponseDto;
@@ -4643,14 +4692,14 @@ type TransactionRuleControllerListData = {
4643
4692
  /**
4644
4693
  * Region code for tenant context
4645
4694
  */
4646
- region: 'cn' | 'us' | 'de';
4695
+ region: 'cn' | 'us' | 'de' | 'gb';
4647
4696
  };
4648
4697
  type TransactionRuleControllerListResponse = TransactionRuleListResponseDto;
4649
4698
  type TransactionRuleControllerValidateData = {
4650
4699
  /**
4651
4700
  * Region code for tenant context
4652
4701
  */
4653
- region: 'cn' | 'us' | 'de';
4702
+ region: 'cn' | 'us' | 'de' | 'gb';
4654
4703
  requestBody: ValidateRuleDto;
4655
4704
  };
4656
4705
  type TransactionRuleControllerValidateResponse = ValidateRuleResponseDto;
@@ -4658,7 +4707,7 @@ type TransactionRuleControllerBulkCreateData = {
4658
4707
  /**
4659
4708
  * Region code for tenant context
4660
4709
  */
4661
- region: 'cn' | 'us' | 'de';
4710
+ region: 'cn' | 'us' | 'de' | 'gb';
4662
4711
  requestBody: BulkCreateRulesDto;
4663
4712
  };
4664
4713
  type TransactionRuleControllerBulkCreateResponse = BulkCreateRulesResponseDto;
@@ -4670,7 +4719,7 @@ type TransactionRuleControllerExportData = {
4670
4719
  /**
4671
4720
  * Region code for tenant context
4672
4721
  */
4673
- region: 'cn' | 'us' | 'de';
4722
+ region: 'cn' | 'us' | 'de' | 'gb';
4674
4723
  };
4675
4724
  type TransactionRuleControllerExportResponse = ExportRulesResponseDto;
4676
4725
  type TransactionRuleControllerGetStatisticsData = {
@@ -4681,14 +4730,14 @@ type TransactionRuleControllerGetStatisticsData = {
4681
4730
  /**
4682
4731
  * Region code for tenant context
4683
4732
  */
4684
- region: 'cn' | 'us' | 'de';
4733
+ region: 'cn' | 'us' | 'de' | 'gb';
4685
4734
  };
4686
4735
  type TransactionRuleControllerGetStatisticsResponse = RuleStatisticsResponseDto;
4687
4736
  type TransactionRuleControllerGetDetailData = {
4688
4737
  /**
4689
4738
  * Region code for tenant context
4690
4739
  */
4691
- region: 'cn' | 'us' | 'de';
4740
+ region: 'cn' | 'us' | 'de' | 'gb';
4692
4741
  /**
4693
4742
  * Rule ID
4694
4743
  */
@@ -4699,7 +4748,7 @@ type TransactionRuleControllerUpdateData = {
4699
4748
  /**
4700
4749
  * Region code for tenant context
4701
4750
  */
4702
- region: 'cn' | 'us' | 'de';
4751
+ region: 'cn' | 'us' | 'de' | 'gb';
4703
4752
  requestBody: UpdateTransactionRuleDto;
4704
4753
  /**
4705
4754
  * Rule ID to update
@@ -4711,7 +4760,7 @@ type TransactionRuleControllerDeleteData = {
4711
4760
  /**
4712
4761
  * Region code for tenant context
4713
4762
  */
4714
- region: 'cn' | 'us' | 'de';
4763
+ region: 'cn' | 'us' | 'de' | 'gb';
4715
4764
  /**
4716
4765
  * Rule ID to delete
4717
4766
  */
@@ -4722,7 +4771,7 @@ type TransactionRuleControllerTestData = {
4722
4771
  /**
4723
4772
  * Region code for tenant context
4724
4773
  */
4725
- region: 'cn' | 'us' | 'de';
4774
+ region: 'cn' | 'us' | 'de' | 'gb';
4726
4775
  requestBody: TestRuleDto;
4727
4776
  /**
4728
4777
  * Rule ID to test
@@ -4804,7 +4853,7 @@ type FileImportControllerImportFileData = {
4804
4853
  /**
4805
4854
  * Region code for tenant context
4806
4855
  */
4807
- region: 'cn' | 'us' | 'de';
4856
+ region: 'cn' | 'us' | 'de' | 'gb';
4808
4857
  };
4809
4858
  type FileImportControllerImportFileResponse = ImportResultDto;
4810
4859
  type FileImportControllerIdentifyFileData = {
@@ -4815,7 +4864,7 @@ type FileImportControllerIdentifyFileData = {
4815
4864
  /**
4816
4865
  * Region code for tenant context
4817
4866
  */
4818
- region: 'cn' | 'us' | 'de';
4867
+ region: 'cn' | 'us' | 'de' | 'gb';
4819
4868
  };
4820
4869
  type FileImportControllerIdentifyFileResponse = IdentifyResultDto;
4821
4870
  type FileImportControllerImportBeancountData = {
@@ -4826,7 +4875,7 @@ type FileImportControllerImportBeancountData = {
4826
4875
  /**
4827
4876
  * Region code for tenant context
4828
4877
  */
4829
- region: 'cn' | 'us' | 'de';
4878
+ region: 'cn' | 'us' | 'de' | 'gb';
4830
4879
  };
4831
4880
  type FileImportControllerImportBeancountResponse = {
4832
4881
  imported?: number;
@@ -4845,7 +4894,7 @@ type ImporterConfigControllerGetConfigData = {
4845
4894
  /**
4846
4895
  * Region code for tenant context
4847
4896
  */
4848
- region: 'cn' | 'us' | 'de';
4897
+ region: 'cn' | 'us' | 'de' | 'gb';
4849
4898
  };
4850
4899
  type ImporterConfigControllerGetConfigResponse = ImporterConfigDto;
4851
4900
  type ImporterConfigControllerUpdateConfigData = {
@@ -4856,7 +4905,7 @@ type ImporterConfigControllerUpdateConfigData = {
4856
4905
  /**
4857
4906
  * Region code for tenant context
4858
4907
  */
4859
- region: 'cn' | 'us' | 'de';
4908
+ region: 'cn' | 'us' | 'de' | 'gb';
4860
4909
  /**
4861
4910
  * Partial configuration update. Only provided fields will be updated.
4862
4911
  */
@@ -4871,7 +4920,7 @@ type ImporterConfigControllerResetConfigData = {
4871
4920
  /**
4872
4921
  * Region code for tenant context
4873
4922
  */
4874
- region: 'cn' | 'us' | 'de';
4923
+ region: 'cn' | 'us' | 'de' | 'gb';
4875
4924
  };
4876
4925
  type ImporterConfigControllerResetConfigResponse = ImporterConfigDto;
4877
4926
  type PlatformControllerFindAllResponse = unknown;
@@ -4922,7 +4971,7 @@ type ProviderSyncControllerGetSupportedProvidersData = {
4922
4971
  /**
4923
4972
  * Region code for tenant context
4924
4973
  */
4925
- region: 'cn' | 'us' | 'de';
4974
+ region: 'cn' | 'us' | 'de' | 'gb';
4926
4975
  };
4927
4976
  type ProviderSyncControllerGetSupportedProvidersResponse = SupportedProvidersResponseDto;
4928
4977
  type ProviderSyncControllerIsProviderSupportedData = {
@@ -4933,14 +4982,14 @@ type ProviderSyncControllerIsProviderSupportedData = {
4933
4982
  /**
4934
4983
  * Region code for tenant context
4935
4984
  */
4936
- region: 'cn' | 'us' | 'de';
4985
+ region: 'cn' | 'us' | 'de' | 'gb';
4937
4986
  };
4938
4987
  type ProviderSyncControllerIsProviderSupportedResponse = unknown;
4939
4988
  type TelemetryControllerReportTelemetryData = {
4940
4989
  /**
4941
4990
  * Region code for tenant context
4942
4991
  */
4943
- region: 'cn' | 'us' | 'de';
4992
+ region: 'cn' | 'us' | 'de' | 'gb';
4944
4993
  requestBody: ParserTelemetryReportDto;
4945
4994
  };
4946
4995
  type TelemetryControllerReportTelemetryResponse = unknown;
@@ -4948,7 +4997,7 @@ type NlpControllerProcessNaturalLanguageData = {
4948
4997
  /**
4949
4998
  * Region code for tenant context
4950
4999
  */
4951
- region: 'cn' | 'us' | 'de';
5000
+ region: 'cn' | 'us' | 'de' | 'gb';
4952
5001
  /**
4953
5002
  * Natural language transaction input with optional session ID
4954
5003
  */
@@ -4959,7 +5008,7 @@ type NlpControllerClearSessionData = {
4959
5008
  /**
4960
5009
  * Region code for tenant context
4961
5010
  */
4962
- region: 'cn' | 'us' | 'de';
5011
+ region: 'cn' | 'us' | 'de' | 'gb';
4963
5012
  /**
4964
5013
  * Specific session ID to clear (defaults to user session)
4965
5014
  */
@@ -4970,7 +5019,7 @@ type NlpControllerGetSessionData = {
4970
5019
  /**
4971
5020
  * Region code for tenant context
4972
5021
  */
4973
- region: 'cn' | 'us' | 'de';
5022
+ region: 'cn' | 'us' | 'de' | 'gb';
4974
5023
  /**
4975
5024
  * Specific session ID to get (defaults to user session)
4976
5025
  */
@@ -4985,7 +5034,7 @@ type DashboardControllerGetNetWorthData = {
4985
5034
  /**
4986
5035
  * Region code for tenant context
4987
5036
  */
4988
- region: 'cn' | 'us' | 'de';
5037
+ region: 'cn' | 'us' | 'de' | 'gb';
4989
5038
  };
4990
5039
  type DashboardControllerGetNetWorthResponse = NetWorthResponseDto;
4991
5040
  type DashboardControllerGetAccountsData = {
@@ -5000,7 +5049,7 @@ type DashboardControllerGetAccountsData = {
5000
5049
  /**
5001
5050
  * Region code for tenant context
5002
5051
  */
5003
- region: 'cn' | 'us' | 'de';
5052
+ region: 'cn' | 'us' | 'de' | 'gb';
5004
5053
  };
5005
5054
  type DashboardControllerGetAccountsResponse = AccountsResponseDto | AssetClassAccountsResponseDto;
5006
5055
  type DashboardControllerGetCashFlowData = {
@@ -5011,7 +5060,7 @@ type DashboardControllerGetCashFlowData = {
5011
5060
  /**
5012
5061
  * Region code for tenant context
5013
5062
  */
5014
- region: 'cn' | 'us' | 'de';
5063
+ region: 'cn' | 'us' | 'de' | 'gb';
5015
5064
  };
5016
5065
  type DashboardControllerGetCashFlowResponse = CashFlowResponseDto;
5017
5066
  type ReportingControllerGetPortfolioTrendsData = {
@@ -5026,14 +5075,14 @@ type ReportingControllerGetPortfolioTrendsData = {
5026
5075
  /**
5027
5076
  * Region code for tenant context
5028
5077
  */
5029
- region: 'cn' | 'us' | 'de';
5078
+ region: 'cn' | 'us' | 'de' | 'gb';
5030
5079
  };
5031
5080
  type ReportingControllerGetPortfolioTrendsResponse = PortfolioTrendsResponseDto;
5032
5081
  type ReportingControllerGenerateSnapshotData = {
5033
5082
  /**
5034
5083
  * Region code for tenant context
5035
5084
  */
5036
- region: 'cn' | 'us' | 'de';
5085
+ region: 'cn' | 'us' | 'de' | 'gb';
5037
5086
  /**
5038
5087
  * Optional date (defaults to today)
5039
5088
  */
@@ -5044,7 +5093,7 @@ type ReportingControllerBackfillSnapshotsData = {
5044
5093
  /**
5045
5094
  * Region code for tenant context
5046
5095
  */
5047
- region: 'cn' | 'us' | 'de';
5096
+ region: 'cn' | 'us' | 'de' | 'gb';
5048
5097
  requestBody: BackfillSnapshotsBody;
5049
5098
  };
5050
5099
  type ReportingControllerBackfillSnapshotsResponse = BackfillSnapshotsResponse;
@@ -5283,6 +5332,25 @@ type $OpenApiTs = {
5283
5332
  };
5284
5333
  };
5285
5334
  };
5335
+ '/api/v1/{region}/bean/transactions/tags': {
5336
+ get: {
5337
+ req: TransactionControllerSuggestTagsData;
5338
+ res: {
5339
+ /**
5340
+ * Tag suggestions
5341
+ */
5342
+ 200: TagSuggestionsResponseDto;
5343
+ /**
5344
+ * Validation failed
5345
+ */
5346
+ 400: ApiProblemResponseDto;
5347
+ /**
5348
+ * Authentication required
5349
+ */
5350
+ 401: ApiProblemResponseDto;
5351
+ };
5352
+ };
5353
+ };
5286
5354
  '/api/v1/{region}/bean/transactions/{id}': {
5287
5355
  get: {
5288
5356
  req: TransactionControllerGetDetailData;
@@ -7129,6 +7197,18 @@ declare class BeanTransactionsService {
7129
7197
  * @throws ApiError
7130
7198
  */
7131
7199
  static transactionControllerCreateBatch(data: TransactionControllerCreateBatchData): CancelablePromise<TransactionControllerCreateBatchResponse>;
7200
+ /**
7201
+ * Suggest transaction tags
7202
+ * Returns distinct tags from the user ACTIVE transactions, sorted by usage, for autocomplete. Optional q performs a case-insensitive prefix match.
7203
+ * @param data The data for the request.
7204
+ * @param data.region Region code for tenant context
7205
+ * @param data.q Prefix match, case-insensitive (max 50 chars)
7206
+ * @param data.sort usage (default) or name
7207
+ * @param data.limit Max suggestions (1-100, default 10)
7208
+ * @returns TagSuggestionsResponseDto Tag suggestions
7209
+ * @throws ApiError
7210
+ */
7211
+ static transactionControllerSuggestTags(data: TransactionControllerSuggestTagsData): CancelablePromise<TransactionControllerSuggestTagsResponse>;
7132
7212
  /**
7133
7213
  * Get transaction detail
7134
7214
  * Returns transaction details including all postings
@@ -7396,4 +7476,4 @@ type OpenAPIConfig = {
7396
7476
  };
7397
7477
  declare const OpenAPI: OpenAPIConfig;
7398
7478
 
7399
- 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 AmountRangeDto, type AnonymousLoginDto, type ApiKeysControllerCreateApiKeyResponse, type ApiProblemResponseDto, type AssetClassAccountsResponseDto, type AssetClassGroupDto, type AssetClassSummaryDto, type AuthControllerAccessTokenLoginData, type AuthControllerAccessTokenLoginResponse, type BackfillSnapshotsBody, type BackfillSnapshotsResponse, type BalanceByCurrencyDto, type BalanceControllerGetBalanceData, type BalanceControllerGetBalanceResponse, type BalanceControllerGetMultiCurrencyBalanceData, type BalanceControllerGetMultiCurrencyBalanceResponse, type BalanceResponseDto, type BatchCreateTransactionDto, type BatchResolveDto, type BatchResolveResultDto, type BatchTransactionErrorDto, type BatchTransactionResponseDto, BeanAccountsService, BeanBalancesService, BeanCommoditiesService, BeanTransactionsService, type BulkCreateRulesDto, type BulkCreateRulesResponseDto, type CacheControllerFlushCacheResponse, type CashFlowByCurrencyDto, type CashFlowResponseDto, type CloseAccountDto, type CommodityControllerBulkCreateData, type CommodityControllerBulkCreateResponse, type CommodityControllerCreateData, type CommodityControllerCreateResponse, type CommodityControllerDeleteData, type CommodityControllerDeleteResponse, type CommodityControllerFindAllData, type CommodityControllerFindAllResponse, type CommodityControllerFindOneData, type CommodityControllerFindOneResponse, type CommodityControllerGetOrCreateData, type CommodityControllerGetOrCreateResponse, type CommodityControllerUpdateData, type CommodityControllerUpdateResponse, type CommodityListResponseDto, type CommodityResponseDto, type ConfirmMatchDto, type ConvertedCashFlowDto, type ConvertedNetWorthDto, type CreateAccountDto, type CreateCommodityDto, type CreatePayeeDto, type CreatePayeeProfileDto, type CreatePlatformDto, type CreatePostingDto, type CreateRecurringRuleDto, type CreateRuleFromTransactionDto, type CreateTransactionDto, type CreateTransactionRuleDto, type CurrencyBalanceDto, type DashboardControllerGetAccountsData, type DashboardControllerGetAccountsResponse, type DashboardControllerGetCashFlowData, type DashboardControllerGetCashFlowResponse, type DashboardControllerGetNetWorthData, type DashboardControllerGetNetWorthResponse, type DecisionOptionDto, type DeleteOwnUserDto, type EnterNowDto, type ExchangeRateControllerGetExchangeRateData, type ExchangeRateControllerGetExchangeRateResponse, type ExchangeRateWarningDto, type ExpectedTransactionControllerConfirmMatchData, type ExpectedTransactionControllerConfirmMatchResponse, type ExpectedTransactionControllerEnterNowData, type ExpectedTransactionControllerEnterNowResponse, type ExpectedTransactionControllerFindAllData, type ExpectedTransactionControllerFindAllResponse, type ExpectedTransactionControllerFindOneData, type ExpectedTransactionControllerFindOneResponse, type ExpectedTransactionControllerFindOverdueData, type ExpectedTransactionControllerFindOverdueResponse, type ExpectedTransactionControllerSkipData, type ExpectedTransactionControllerSkipResponse, type ExpectedTransactionControllerUndoSkipData, type ExpectedTransactionControllerUndoSkipResponse, type ExpectedTransactionControllerUnmatchData, type ExpectedTransactionControllerUnmatchResponse, type ExpectedTransactionListResponseDto, type ExpectedTransactionResponseDto, type ExpectedTransactionRuleDto, type ExportControllerExportBeancountResponse, type ExportRulesResponseDto, type FileImportControllerIdentifyFileData, type FileImportControllerIdentifyFileResponse, type FileImportControllerImportBeancountData, type FileImportControllerImportBeancountResponse, type FileImportControllerImportFileData, type FileImportControllerImportFileResponse, type FileImportDto, type ForecastControllerGetForecastData, type ForecastControllerGetForecastResponse, type ForecastItemDto, type ForecastResponseDto, type GenerateSnapshotBody, type GenerateSnapshotResponse, type HealthControllerCheckDatabaseResponse, type HealthControllerCheckOpenBbResponse, type HealthControllerCheckRedisResponse, type HealthControllerGetCircuitBreakersHealthResponse, type HealthControllerGetHealthResponse, type HealthControllerGetMetricsResponse, type HealthControllerResetCircuitBreakerData, type HealthControllerResetCircuitBreakerResponse, HealthService, 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 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 ProcessNlpDto, type PropertyControllerDeleteData, type PropertyControllerDeleteResponse, type PropertyControllerGetAllResponse, type PropertyControllerGetByKeyData, type PropertyControllerGetByKeyResponse, type PropertyControllerUpdateData, type PropertyControllerUpdateResponse, type ProviderSyncConfigDto, type ProviderSyncControllerGetSupportedProvidersData, type ProviderSyncControllerGetSupportedProvidersResponse, type ProviderSyncControllerIsProviderSupportedData, type ProviderSyncControllerIsProviderSupportedResponse, type ProviderSyncControllerSyncData, type ProviderSyncControllerSyncResponse, type ProviderSyncDto, type ProviderSyncResponseDto, ProviderSyncService, type RecurringMatchInfoDto, type RecurringRuleControllerCreateData, type RecurringRuleControllerCreateFromTransactionData, type RecurringRuleControllerCreateFromTransactionResponse, type RecurringRuleControllerCreateResponse, type RecurringRuleControllerDeleteData, type RecurringRuleControllerDeleteResponse, type RecurringRuleControllerFindAllData, type RecurringRuleControllerFindAllResponse, type RecurringRuleControllerFindOneData, type RecurringRuleControllerFindOneResponse, type RecurringRuleControllerGetWithStatsData, type RecurringRuleControllerGetWithStatsResponse, type RecurringRuleControllerUpdateData, type RecurringRuleControllerUpdateResponse, type RecurringRuleResponseDto, type RecurringRuleWithStatsResponseDto, type RecurringSuggestionDto, type RegionConfigDto, type RegionInfoDto, type RegionsMetadataResponseDto, type ReopenAccountDto, type ReportingControllerBackfillSnapshotsData, type ReportingControllerBackfillSnapshotsResponse, type ReportingControllerGenerateSnapshotData, type ReportingControllerGenerateSnapshotResponse, type ReportingControllerGetPortfolioTrendsData, type ReportingControllerGetPortfolioTrendsResponse, type ResolveResultDto, type ResolveReviewDto, type ReviewControllerBatchResolveData, type ReviewControllerBatchResolveResponse, type ReviewControllerFindAllData, type ReviewControllerFindAllResponse, type ReviewControllerFindOneData, type ReviewControllerFindOneResponse, type ReviewControllerGetStatsData, type ReviewControllerGetStatsResponse, type ReviewControllerResolveData, type ReviewControllerResolveResponse, type ReviewControllerUndoData, type ReviewControllerUndoResponse, type ReviewDetailDto, type ReviewItemPreviewDto, type ReviewListResponseDto, type ReviewStatsDto, type ReviewSummaryDto, type RuleStatisticsResponseDto, type SignupDto, type SupportedProvidersResponseDto, type TelemetryControllerReportTelemetryData, type TelemetryControllerReportTelemetryResponse, type TemplateMetadataDto, type TemplateMetadataResponseDto, type TestRuleDto, type TestRuleResponseDto, type TimeSeriesPointDto, type TransactionControllerCreateBatchData, type TransactionControllerCreateBatchResponse, type TransactionControllerCreateData, type TransactionControllerCreateResponse, type TransactionControllerDeleteData, type TransactionControllerDeleteResponse, type TransactionControllerGetDetailData, type TransactionControllerGetDetailResponse, type TransactionControllerListData, type TransactionControllerListResponse, type TransactionControllerUpdateData, type TransactionControllerUpdateResponse, type TransactionDetailDto, type TransactionListResponseDto, type TransactionResponseDto, type TransactionRuleControllerBulkCreateData, type TransactionRuleControllerBulkCreateResponse, type TransactionRuleControllerCreateData, type TransactionRuleControllerCreateResponse, type TransactionRuleControllerDeleteData, type TransactionRuleControllerDeleteResponse, type TransactionRuleControllerExportData, type TransactionRuleControllerExportResponse, type TransactionRuleControllerGetDetailData, type TransactionRuleControllerGetDetailResponse, type TransactionRuleControllerGetStatisticsData, type TransactionRuleControllerGetStatisticsResponse, type TransactionRuleControllerListData, type TransactionRuleControllerListResponse, type TransactionRuleControllerTestData, type TransactionRuleControllerTestResponse, type TransactionRuleControllerUpdateData, type TransactionRuleControllerUpdateResponse, type TransactionRuleControllerValidateData, type TransactionRuleControllerValidateResponse, type TransactionRuleListResponseDto, type TransactionRuleResponseDto, type TransactionSummaryDto, type TrendSummaryDto, type UndoResultDto, type UpdateAccountDto, 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 assetClass, type assetSubType, type bookingMethod, type branchType, type category, 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 paymentSource, type period, type source, type sourceType, type status, type status2, type status3, type status4, type suggestedFrequency, type type, type type2, type type3, type viewMode };
7479
+ 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 AmountRangeDto, type AnonymousLoginDto, type ApiKeysControllerCreateApiKeyResponse, type ApiProblemResponseDto, type AssetClassAccountsResponseDto, type AssetClassGroupDto, type AssetClassSummaryDto, type AuthControllerAccessTokenLoginData, type AuthControllerAccessTokenLoginResponse, type BackfillSnapshotsBody, type BackfillSnapshotsResponse, type BalanceByCurrencyDto, type BalanceControllerGetBalanceData, type BalanceControllerGetBalanceResponse, type BalanceControllerGetMultiCurrencyBalanceData, type BalanceControllerGetMultiCurrencyBalanceResponse, type BalanceResponseDto, type BatchCreateTransactionDto, type BatchResolveDto, type BatchResolveResultDto, type BatchTransactionErrorDto, type BatchTransactionResponseDto, BeanAccountsService, BeanBalancesService, BeanCommoditiesService, BeanTransactionsService, type BulkCreateRulesDto, type BulkCreateRulesResponseDto, type CacheControllerFlushCacheResponse, type CashFlowByCurrencyDto, type CashFlowResponseDto, type CloseAccountDto, type CommodityControllerBulkCreateData, type CommodityControllerBulkCreateResponse, type CommodityControllerCreateData, type CommodityControllerCreateResponse, type CommodityControllerDeleteData, type CommodityControllerDeleteResponse, type CommodityControllerFindAllData, type CommodityControllerFindAllResponse, type CommodityControllerFindOneData, type CommodityControllerFindOneResponse, type CommodityControllerGetOrCreateData, type CommodityControllerGetOrCreateResponse, type CommodityControllerUpdateData, type CommodityControllerUpdateResponse, type CommodityListResponseDto, type CommodityResponseDto, type ConfirmMatchDto, type ConvertedCashFlowDto, type ConvertedNetWorthDto, type CreateAccountDto, type CreateCommodityDto, type CreatePayeeDto, type CreatePayeeProfileDto, type CreatePlatformDto, type CreatePostingDto, type CreateRecurringRuleDto, type CreateRuleFromTransactionDto, type CreateTransactionDto, type CreateTransactionRuleDto, type CurrencyBalanceDto, type DashboardControllerGetAccountsData, type DashboardControllerGetAccountsResponse, type DashboardControllerGetCashFlowData, type DashboardControllerGetCashFlowResponse, type DashboardControllerGetNetWorthData, type DashboardControllerGetNetWorthResponse, type DecisionOptionDto, type DeleteOwnUserDto, type EnterNowDto, type ExchangeRateControllerGetExchangeRateData, type ExchangeRateControllerGetExchangeRateResponse, type ExchangeRateWarningDto, type ExpectedTransactionControllerConfirmMatchData, type ExpectedTransactionControllerConfirmMatchResponse, type ExpectedTransactionControllerEnterNowData, type ExpectedTransactionControllerEnterNowResponse, type ExpectedTransactionControllerFindAllData, type ExpectedTransactionControllerFindAllResponse, type ExpectedTransactionControllerFindOneData, type ExpectedTransactionControllerFindOneResponse, type ExpectedTransactionControllerFindOverdueData, type ExpectedTransactionControllerFindOverdueResponse, type ExpectedTransactionControllerSkipData, type ExpectedTransactionControllerSkipResponse, type ExpectedTransactionControllerUndoSkipData, type ExpectedTransactionControllerUndoSkipResponse, type ExpectedTransactionControllerUnmatchData, type ExpectedTransactionControllerUnmatchResponse, type ExpectedTransactionListResponseDto, type ExpectedTransactionResponseDto, type ExpectedTransactionRuleDto, type ExportControllerExportBeancountResponse, type ExportRulesResponseDto, type FileImportControllerIdentifyFileData, type FileImportControllerIdentifyFileResponse, type FileImportControllerImportBeancountData, type FileImportControllerImportBeancountResponse, type FileImportControllerImportFileData, type FileImportControllerImportFileResponse, type FileImportDto, type ForecastControllerGetForecastData, type ForecastControllerGetForecastResponse, type ForecastItemDto, type ForecastResponseDto, type GenerateSnapshotBody, type GenerateSnapshotResponse, type HealthControllerCheckDatabaseResponse, type HealthControllerCheckOpenBbResponse, type HealthControllerCheckRedisResponse, type HealthControllerGetCircuitBreakersHealthResponse, type HealthControllerGetHealthResponse, type HealthControllerGetMetricsResponse, type HealthControllerResetCircuitBreakerData, type HealthControllerResetCircuitBreakerResponse, HealthService, 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 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 ProcessNlpDto, type PropertyControllerDeleteData, type PropertyControllerDeleteResponse, type PropertyControllerGetAllResponse, type PropertyControllerGetByKeyData, type PropertyControllerGetByKeyResponse, type PropertyControllerUpdateData, type PropertyControllerUpdateResponse, type ProviderSyncConfigDto, type ProviderSyncControllerGetSupportedProvidersData, type ProviderSyncControllerGetSupportedProvidersResponse, type ProviderSyncControllerIsProviderSupportedData, type ProviderSyncControllerIsProviderSupportedResponse, type ProviderSyncControllerSyncData, type ProviderSyncControllerSyncResponse, type ProviderSyncDto, type ProviderSyncResponseDto, ProviderSyncService, type RecurringMatchInfoDto, type RecurringRuleControllerCreateData, type RecurringRuleControllerCreateFromTransactionData, type RecurringRuleControllerCreateFromTransactionResponse, type RecurringRuleControllerCreateResponse, type RecurringRuleControllerDeleteData, type RecurringRuleControllerDeleteResponse, type RecurringRuleControllerFindAllData, type RecurringRuleControllerFindAllResponse, type RecurringRuleControllerFindOneData, type RecurringRuleControllerFindOneResponse, type RecurringRuleControllerGetWithStatsData, type RecurringRuleControllerGetWithStatsResponse, type RecurringRuleControllerUpdateData, type RecurringRuleControllerUpdateResponse, type RecurringRuleResponseDto, type RecurringRuleWithStatsResponseDto, type RecurringSuggestionDto, type RegionConfigDto, type RegionInfoDto, type RegionsMetadataResponseDto, type ReopenAccountDto, type ReportingControllerBackfillSnapshotsData, type ReportingControllerBackfillSnapshotsResponse, type ReportingControllerGenerateSnapshotData, type ReportingControllerGenerateSnapshotResponse, type ReportingControllerGetPortfolioTrendsData, type ReportingControllerGetPortfolioTrendsResponse, type ResolveResultDto, type ResolveReviewDto, type ReviewControllerBatchResolveData, type ReviewControllerBatchResolveResponse, type ReviewControllerFindAllData, type ReviewControllerFindAllResponse, type ReviewControllerFindOneData, type ReviewControllerFindOneResponse, type ReviewControllerGetStatsData, type ReviewControllerGetStatsResponse, type ReviewControllerResolveData, type ReviewControllerResolveResponse, type ReviewControllerUndoData, type ReviewControllerUndoResponse, type ReviewDetailDto, type ReviewItemPreviewDto, type ReviewListResponseDto, type ReviewStatsDto, type ReviewSummaryDto, type RuleStatisticsResponseDto, type SignupDto, type SupportedProvidersResponseDto, type TagSuggestionDto, type TagSuggestionsResponseDto, type TelemetryControllerReportTelemetryData, type TelemetryControllerReportTelemetryResponse, type TemplateMetadataDto, type TemplateMetadataResponseDto, type TestRuleDto, type TestRuleResponseDto, type TimeSeriesPointDto, type TransactionControllerCreateBatchData, type TransactionControllerCreateBatchResponse, type TransactionControllerCreateData, type TransactionControllerCreateResponse, type TransactionControllerDeleteData, type TransactionControllerDeleteResponse, type TransactionControllerGetDetailData, type TransactionControllerGetDetailResponse, type TransactionControllerListData, type TransactionControllerListResponse, type TransactionControllerSuggestTagsData, type TransactionControllerSuggestTagsResponse, type TransactionControllerUpdateData, type TransactionControllerUpdateResponse, type TransactionDetailDto, type TransactionListResponseDto, type TransactionResponseDto, type TransactionRuleControllerBulkCreateData, type TransactionRuleControllerBulkCreateResponse, type TransactionRuleControllerCreateData, type TransactionRuleControllerCreateResponse, type TransactionRuleControllerDeleteData, type TransactionRuleControllerDeleteResponse, type TransactionRuleControllerExportData, type TransactionRuleControllerExportResponse, type TransactionRuleControllerGetDetailData, type TransactionRuleControllerGetDetailResponse, type TransactionRuleControllerGetStatisticsData, type TransactionRuleControllerGetStatisticsResponse, type TransactionRuleControllerListData, type TransactionRuleControllerListResponse, type TransactionRuleControllerTestData, type TransactionRuleControllerTestResponse, type TransactionRuleControllerUpdateData, type TransactionRuleControllerUpdateResponse, type TransactionRuleControllerValidateData, type TransactionRuleControllerValidateResponse, type TransactionRuleListResponseDto, type TransactionRuleResponseDto, type TransactionSummaryDto, type TrendSummaryDto, type UndoResultDto, type UpdateAccountDto, 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 assetClass, type assetSubType, type bookingMethod, type branchType, type category, 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 paymentSource, type period, type source, type sourceType, type status, type status2, type status3, type status4, type suggestedFrequency, type type, type type2, type type3, type viewMode };