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

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
  /**
@@ -505,6 +513,54 @@ type BatchTransactionResponseDto = {
505
513
  */
506
514
  failed: Array<BatchTransactionErrorDto>;
507
515
  };
516
+ type CorrectTransactionDto = {
517
+ /**
518
+ * Transaction date (ISO 8601 format)
519
+ */
520
+ date: string;
521
+ /**
522
+ * Transaction flag: * (cleared), ! (pending)
523
+ */
524
+ flag?: '*' | '!';
525
+ /**
526
+ * Payee name
527
+ */
528
+ payee?: string;
529
+ /**
530
+ * Transaction narration/description
531
+ */
532
+ narration: string;
533
+ /**
534
+ * Transaction tags (without # prefix)
535
+ */
536
+ tags?: Array<string>;
537
+ /**
538
+ * Transaction links (without ^ prefix)
539
+ */
540
+ links?: Array<string>;
541
+ /**
542
+ * Transaction postings (minimum 1, typically 2 for double-entry)
543
+ */
544
+ postings: Array<CreatePostingDto>;
545
+ /**
546
+ * Transaction-level metadata
547
+ */
548
+ meta?: {
549
+ [key: string]: unknown;
550
+ };
551
+ /**
552
+ * Unique key for idempotent transaction creation. If provided, duplicate requests with the same key will return the existing transaction.
553
+ */
554
+ idempotencyKey?: string;
555
+ /**
556
+ * Auto-create accounts if not found. When true, missing accounts will be automatically created. When false (default for API), missing accounts will cause a validation error. Set to true for quick entry scenarios where you want to create accounts on-the-fly.
557
+ */
558
+ autoCreateAccounts?: boolean;
559
+ /**
560
+ * Reason for correcting/superseding the original transaction
561
+ */
562
+ correctionReason?: string;
563
+ };
508
564
  type PostingDetailDto = {
509
565
  /**
510
566
  * Posting ID
@@ -519,7 +575,7 @@ type PostingDetailDto = {
519
575
  */
520
576
  accountName: string;
521
577
  /**
522
- * Amount (may be null if interpolated)
578
+ * Amount as decimal string. Typed optional but always present in responses: interpolation fills any MISSING posting before it is persisted or returned.
523
579
  */
524
580
  units?: string;
525
581
  /**
@@ -601,9 +657,9 @@ type TransactionDetailDto = {
601
657
  */
602
658
  status: 'ACTIVE' | 'VOIDED' | 'SUPERSEDED';
603
659
  /**
604
- * Source type (how the transaction was created)
660
+ * Source type (free-form string from transaction metadata, e.g. import, api)
605
661
  */
606
- sourceType?: 'NLP' | 'CSV' | 'OCR' | 'API';
662
+ sourceType?: string;
607
663
  /**
608
664
  * Source platform (e.g., alipay, wechat)
609
665
  */
@@ -628,6 +684,14 @@ type TransactionDetailDto = {
628
684
  * Correction reason (if voided or superseded)
629
685
  */
630
686
  correctionReason?: string;
687
+ /**
688
+ * ID of the transaction that supersedes this one (set when status=SUPERSEDED)
689
+ */
690
+ supersededBy?: string;
691
+ /**
692
+ * ID of the transaction this one corrected/replaced (back-link on the replacement)
693
+ */
694
+ originalTxn?: string;
631
695
  };
632
696
  /**
633
697
  * Transaction flag
@@ -637,10 +701,6 @@ type flag2 = 'CLEARED' | 'PENDING' | 'PADDING' | 'SUMMARIZE' | 'TRANSFER' | 'CON
637
701
  * Transaction status
638
702
  */
639
703
  type status2 = 'ACTIVE' | 'VOIDED' | 'SUPERSEDED';
640
- /**
641
- * Source type (how the transaction was created)
642
- */
643
- type sourceType = 'NLP' | 'CSV' | 'OCR' | 'API';
644
704
  type TransactionListResponseDto = {
645
705
  /**
646
706
  * List of transactions
@@ -659,6 +719,22 @@ type TransactionListResponseDto = {
659
719
  */
660
720
  offset: number;
661
721
  };
722
+ type TagSuggestionDto = {
723
+ /**
724
+ * Tag name
725
+ */
726
+ tag: string;
727
+ /**
728
+ * Usage count across ACTIVE transactions
729
+ */
730
+ count: number;
731
+ };
732
+ type TagSuggestionsResponseDto = {
733
+ /**
734
+ * Tag suggestions sorted as requested
735
+ */
736
+ data: Array<TagSuggestionDto>;
737
+ };
662
738
  type UpdateTransactionDto = {
663
739
  /**
664
740
  * Transaction flag (CLEARED, PENDING, etc.)
@@ -751,9 +827,9 @@ type TransactionSummaryDto = {
751
827
  */
752
828
  accountName?: string;
753
829
  /**
754
- * Source type (NLP, CSV, OCR, API)
830
+ * Source type (free-form string from transaction metadata, e.g. import, api)
755
831
  */
756
- sourceType?: 'NLP' | 'CSV' | 'OCR' | 'API';
832
+ sourceType?: string;
757
833
  /**
758
834
  * Source platform (e.g., alipay, wechat)
759
835
  */
@@ -777,9 +853,9 @@ type ReviewSummaryDto = {
777
853
  */
778
854
  confidence: number;
779
855
  /**
780
- * Confidence level derived from score
856
+ * Confidence level derived from score. Null for error-type reviews (ACCOUNT_VALIDATION/PIPELINE_ERROR) which carry no confidence.
781
857
  */
782
- confidenceLevel: 'HIGH' | 'MEDIUM' | 'LOW';
858
+ confidenceLevel: 'HIGH' | 'MEDIUM' | 'LOW' | null;
783
859
  /**
784
860
  * i18n message key for summary (e.g., review.summary.duplicate). Translate on frontend with summaryParams.
785
861
  */
@@ -795,7 +871,7 @@ type ReviewSummaryDto = {
795
871
  */
796
872
  matchReasons: Array<string>;
797
873
  /**
798
- * Source type (NLP, CSV, OCR, API)
874
+ * Source type (free-form string from transaction metadata, e.g. import, api)
799
875
  */
800
876
  sourceType: string;
801
877
  /**
@@ -840,7 +916,7 @@ type type2 = 'DUPLICATE' | 'RULE_MATCH' | 'PAYEE_MATCH' | 'ACCOUNT_VALIDATION' |
840
916
  */
841
917
  type status3 = 'PENDING' | 'RESOLVED' | 'EXPIRED' | 'CANCELLED';
842
918
  /**
843
- * Confidence level derived from score
919
+ * Confidence level derived from score. Null for error-type reviews (ACCOUNT_VALIDATION/PIPELINE_ERROR) which carry no confidence.
844
920
  */
845
921
  type confidenceLevel = 'HIGH' | 'MEDIUM' | 'LOW';
846
922
  type ReviewListResponseDto = {
@@ -882,7 +958,7 @@ type DecisionOptionDto = {
882
958
  /**
883
959
  * The action value to submit (e.g., UPGRADE_REPLACE, ACCEPT)
884
960
  */
885
- value: string;
961
+ value: 'UPGRADE_REPLACE' | 'LINK_KEEP_BOTH' | 'IGNORE_NEW' | 'CONFIRM_DIFFERENT' | 'ACCEPT' | 'REJECT' | 'ACCEPT_AND_LEARN' | 'CHOOSE_OTHER' | 'CANCEL' | 'FIX' | 'IGNORE';
886
962
  /**
887
963
  * i18n message key for display label (e.g., review.payee.accept.label)
888
964
  */
@@ -896,6 +972,10 @@ type DecisionOptionDto = {
896
972
  */
897
973
  recommended?: boolean;
898
974
  };
975
+ /**
976
+ * The action value to submit (e.g., UPGRADE_REPLACE, ACCEPT)
977
+ */
978
+ type value = 'UPGRADE_REPLACE' | 'LINK_KEEP_BOTH' | 'IGNORE_NEW' | 'CONFIRM_DIFFERENT' | 'ACCEPT' | 'REJECT' | 'ACCEPT_AND_LEARN' | 'CHOOSE_OTHER' | 'CANCEL' | 'FIX' | 'IGNORE';
899
979
  type ReviewDetailDto = {
900
980
  /**
901
981
  * Review item ID
@@ -914,9 +994,9 @@ type ReviewDetailDto = {
914
994
  */
915
995
  confidence: number;
916
996
  /**
917
- * Confidence level derived from score
997
+ * Confidence level derived from score. Null for error-type reviews (ACCOUNT_VALIDATION/PIPELINE_ERROR) which carry no confidence.
918
998
  */
919
- confidenceLevel: 'HIGH' | 'MEDIUM' | 'LOW';
999
+ confidenceLevel: 'HIGH' | 'MEDIUM' | 'LOW' | null;
920
1000
  /**
921
1001
  * i18n message key for summary (e.g., review.summary.duplicate). Translate on frontend with summaryParams.
922
1002
  */
@@ -932,7 +1012,7 @@ type ReviewDetailDto = {
932
1012
  */
933
1013
  matchReasons: Array<string>;
934
1014
  /**
935
- * Source type (NLP, CSV, OCR, API)
1015
+ * Source type (free-form string from transaction metadata, e.g. import, api)
936
1016
  */
937
1017
  sourceType: string;
938
1018
  /**
@@ -984,9 +1064,9 @@ type ReviewDetailDto = {
984
1064
  };
985
1065
  type ResolveReviewDto = {
986
1066
  /**
987
- * Decision action. Available actions vary by review type: DUPLICATE: UPGRADE_REPLACE, KEEP_EXISTING, KEEP_BOTH | PAYEE_MATCH: ACCEPT, REJECT, ACCEPT_AND_LEARN | ACCOUNT_VALIDATION: FIX, REJECT | RULE_MATCH: ACCEPT, REJECT, ACCEPT_AND_LEARN
1067
+ * Decision action. Valid actions vary by review type see DecisionOptionDto.value returned by the review detail endpoint.
988
1068
  */
989
- action: string;
1069
+ action: 'UPGRADE_REPLACE' | 'LINK_KEEP_BOTH' | 'IGNORE_NEW' | 'CONFIRM_DIFFERENT' | 'ACCEPT' | 'REJECT' | 'ACCEPT_AND_LEARN' | 'CHOOSE_OTHER' | 'CANCEL' | 'FIX' | 'IGNORE';
990
1070
  /**
991
1071
  * Additional data for the decision (e.g., selected account ID)
992
1072
  */
@@ -994,6 +1074,10 @@ type ResolveReviewDto = {
994
1074
  [key: string]: unknown;
995
1075
  };
996
1076
  };
1077
+ /**
1078
+ * Decision action. Valid actions vary by review type — see DecisionOptionDto.value returned by the review detail endpoint.
1079
+ */
1080
+ type action = 'UPGRADE_REPLACE' | 'LINK_KEEP_BOTH' | 'IGNORE_NEW' | 'CONFIRM_DIFFERENT' | 'ACCEPT' | 'REJECT' | 'ACCEPT_AND_LEARN' | 'CHOOSE_OTHER' | 'CANCEL' | 'FIX' | 'IGNORE';
997
1081
  type ResolveResultDto = {
998
1082
  /**
999
1083
  * Whether resolution was successful
@@ -1048,7 +1132,7 @@ type BatchResolveDto = {
1048
1132
  /**
1049
1133
  * Decision action to apply to all items
1050
1134
  */
1051
- action: string;
1135
+ action: 'UPGRADE_REPLACE' | 'LINK_KEEP_BOTH' | 'IGNORE_NEW' | 'CONFIRM_DIFFERENT' | 'ACCEPT' | 'REJECT' | 'ACCEPT_AND_LEARN' | 'CHOOSE_OTHER' | 'CANCEL' | 'FIX' | 'IGNORE';
1052
1136
  /**
1053
1137
  * Additional data for the decision
1054
1138
  */
@@ -2917,6 +3001,12 @@ type ProcessNlpDto = {
2917
3001
  * Session ID for multi-turn conversation (auto-generated if not provided)
2918
3002
  */
2919
3003
  sessionId?: string;
3004
+ /**
3005
+ * Parsed data from previous NLP response for session recovery. Send back the parsedData received in confirm_payee/confirm responses.
3006
+ */
3007
+ parsedData?: {
3008
+ [key: string]: unknown;
3009
+ };
2920
3010
  };
2921
3011
  type NlpTransactionInfoDto = {
2922
3012
  /**
@@ -3418,7 +3508,7 @@ type status4 = 'success' | 'pending' | 'error';
3418
3508
  /**
3419
3509
  * Action taken or requested
3420
3510
  */
3421
- type action = 'created' | 'ask' | 'confirm' | 'confirm_duplicate' | 'confirm_rule' | 'confirm_account' | 'confirm_payee' | 'cancel';
3511
+ type action2 = 'created' | 'ask' | 'confirm' | 'confirm_duplicate' | 'confirm_rule' | 'confirm_account' | 'confirm_payee' | 'cancel';
3422
3512
  /**
3423
3513
  * Transaction intent detected by EntityRouter (v6.0: 5 core intents). Frontend uses this to render scenario-specific form fields.
3424
3514
  */
@@ -3887,7 +3977,7 @@ type AccountControllerCreateData = {
3887
3977
  /**
3888
3978
  * Region code for tenant context
3889
3979
  */
3890
- region: 'cn' | 'us' | 'de';
3980
+ region: 'cn' | 'us' | 'de' | 'gb';
3891
3981
  requestBody: CreateAccountDto;
3892
3982
  };
3893
3983
  type AccountControllerCreateResponse = AccountResponseDto;
@@ -3907,7 +3997,7 @@ type AccountControllerFindAllData = {
3907
3997
  /**
3908
3998
  * Region code for tenant context
3909
3999
  */
3910
- region: 'cn' | 'us' | 'de';
4000
+ region: 'cn' | 'us' | 'de' | 'gb';
3911
4001
  /**
3912
4002
  * Search term for path or i18nKey
3913
4003
  */
@@ -3930,7 +4020,7 @@ type AccountControllerFindOneData = {
3930
4020
  /**
3931
4021
  * Region code for tenant context
3932
4022
  */
3933
- region: 'cn' | 'us' | 'de';
4023
+ region: 'cn' | 'us' | 'de' | 'gb';
3934
4024
  };
3935
4025
  type AccountControllerFindOneResponse = AccountResponseDto;
3936
4026
  type AccountControllerUpdateData = {
@@ -3941,7 +4031,7 @@ type AccountControllerUpdateData = {
3941
4031
  /**
3942
4032
  * Region code for tenant context
3943
4033
  */
3944
- region: 'cn' | 'us' | 'de';
4034
+ region: 'cn' | 'us' | 'de' | 'gb';
3945
4035
  requestBody: UpdateAccountDto;
3946
4036
  };
3947
4037
  type AccountControllerUpdateResponse = AccountResponseDto;
@@ -3953,7 +4043,7 @@ type AccountControllerDeleteData = {
3953
4043
  /**
3954
4044
  * Region code for tenant context
3955
4045
  */
3956
- region: 'cn' | 'us' | 'de';
4046
+ region: 'cn' | 'us' | 'de' | 'gb';
3957
4047
  };
3958
4048
  type AccountControllerDeleteResponse = void;
3959
4049
  type AccountControllerCloseData = {
@@ -3964,7 +4054,7 @@ type AccountControllerCloseData = {
3964
4054
  /**
3965
4055
  * Region code for tenant context
3966
4056
  */
3967
- region: 'cn' | 'us' | 'de';
4057
+ region: 'cn' | 'us' | 'de' | 'gb';
3968
4058
  requestBody: CloseAccountDto;
3969
4059
  };
3970
4060
  type AccountControllerCloseResponse = AccountResponseDto;
@@ -3976,7 +4066,7 @@ type AccountControllerReopenData = {
3976
4066
  /**
3977
4067
  * Region code for tenant context
3978
4068
  */
3979
- region: 'cn' | 'us' | 'de';
4069
+ region: 'cn' | 'us' | 'de' | 'gb';
3980
4070
  requestBody: ReopenAccountDto;
3981
4071
  };
3982
4072
  type AccountControllerReopenResponse = AccountResponseDto;
@@ -3984,7 +4074,7 @@ type AccountStandardsControllerGetTemplatesData = {
3984
4074
  /**
3985
4075
  * Region code (cn, us, de)
3986
4076
  */
3987
- region: 'cn' | 'us' | 'de';
4077
+ region: 'cn' | 'us' | 'de' | 'gb';
3988
4078
  /**
3989
4079
  * Search term for path or description
3990
4080
  */
@@ -4003,21 +4093,21 @@ type AccountStandardsControllerGetTemplateMetadataData = {
4003
4093
  /**
4004
4094
  * Region code for tenant context
4005
4095
  */
4006
- region: 'cn' | 'us' | 'de';
4096
+ region: 'cn' | 'us' | 'de' | 'gb';
4007
4097
  };
4008
4098
  type AccountStandardsControllerGetTemplateMetadataResponse = TemplateMetadataResponseDto;
4009
4099
  type AccountStandardsControllerGetRegionsData = {
4010
4100
  /**
4011
4101
  * Region code for tenant context
4012
4102
  */
4013
- region: 'cn' | 'us' | 'de';
4103
+ region: 'cn' | 'us' | 'de' | 'gb';
4014
4104
  };
4015
4105
  type AccountStandardsControllerGetRegionsResponse = RegionsMetadataResponseDto;
4016
4106
  type TransactionControllerCreateData = {
4017
4107
  /**
4018
4108
  * Region code for tenant context
4019
4109
  */
4020
- region: 'cn' | 'us' | 'de';
4110
+ region: 'cn' | 'us' | 'de' | 'gb';
4021
4111
  /**
4022
4112
  * Transaction data with postings
4023
4113
  */
@@ -4048,7 +4138,7 @@ type TransactionControllerListData = {
4048
4138
  /**
4049
4139
  * Region code for tenant context
4050
4140
  */
4051
- region: 'cn' | 'us' | 'de';
4141
+ region: 'cn' | 'us' | 'de' | 'gb';
4052
4142
  /**
4053
4143
  * Search in narration and payee fields (max 200 chars)
4054
4144
  */
@@ -4063,10 +4153,41 @@ type TransactionControllerCreateBatchData = {
4063
4153
  /**
4064
4154
  * Region code for tenant context
4065
4155
  */
4066
- region: 'cn' | 'us' | 'de';
4156
+ region: 'cn' | 'us' | 'de' | 'gb';
4067
4157
  requestBody: BatchCreateTransactionDto;
4068
4158
  };
4069
4159
  type TransactionControllerCreateBatchResponse = BatchTransactionResponseDto;
4160
+ type TransactionControllerCorrectData = {
4161
+ /**
4162
+ * Original transaction ID to correct
4163
+ */
4164
+ id: string;
4165
+ /**
4166
+ * Region code for tenant context
4167
+ */
4168
+ region: 'cn' | 'us' | 'de' | 'gb';
4169
+ requestBody: CorrectTransactionDto;
4170
+ };
4171
+ type TransactionControllerCorrectResponse = TransactionDetailDto;
4172
+ type TransactionControllerSuggestTagsData = {
4173
+ /**
4174
+ * Max suggestions (1-100, default 10)
4175
+ */
4176
+ limit?: number;
4177
+ /**
4178
+ * Prefix match, case-insensitive (max 50 chars)
4179
+ */
4180
+ q?: string;
4181
+ /**
4182
+ * Region code for tenant context
4183
+ */
4184
+ region: 'cn' | 'us' | 'de' | 'gb';
4185
+ /**
4186
+ * usage (default) or name
4187
+ */
4188
+ sort?: 'usage' | 'name';
4189
+ };
4190
+ type TransactionControllerSuggestTagsResponse = TagSuggestionsResponseDto;
4070
4191
  type TransactionControllerGetDetailData = {
4071
4192
  /**
4072
4193
  * Transaction ID
@@ -4075,7 +4196,7 @@ type TransactionControllerGetDetailData = {
4075
4196
  /**
4076
4197
  * Region code for tenant context
4077
4198
  */
4078
- region: 'cn' | 'us' | 'de';
4199
+ region: 'cn' | 'us' | 'de' | 'gb';
4079
4200
  };
4080
4201
  type TransactionControllerGetDetailResponse = TransactionDetailDto;
4081
4202
  type TransactionControllerUpdateData = {
@@ -4086,7 +4207,7 @@ type TransactionControllerUpdateData = {
4086
4207
  /**
4087
4208
  * Region code for tenant context
4088
4209
  */
4089
- region: 'cn' | 'us' | 'de';
4210
+ region: 'cn' | 'us' | 'de' | 'gb';
4090
4211
  /**
4091
4212
  * Fields to update (all optional)
4092
4213
  */
@@ -4101,7 +4222,7 @@ type TransactionControllerDeleteData = {
4101
4222
  /**
4102
4223
  * Region code for tenant context
4103
4224
  */
4104
- region: 'cn' | 'us' | 'de';
4225
+ region: 'cn' | 'us' | 'de' | 'gb';
4105
4226
  };
4106
4227
  type TransactionControllerDeleteResponse = void;
4107
4228
  type BalanceControllerGetBalanceData = {
@@ -4120,14 +4241,14 @@ type BalanceControllerGetBalanceData = {
4120
4241
  /**
4121
4242
  * Region code for tenant context
4122
4243
  */
4123
- region: 'cn' | 'us' | 'de';
4244
+ region: 'cn' | 'us' | 'de' | 'gb';
4124
4245
  };
4125
4246
  type BalanceControllerGetBalanceResponse = BalanceResponseDto;
4126
4247
  type BalanceControllerGetMultiCurrencyBalanceData = {
4127
4248
  /**
4128
4249
  * Region code for tenant context
4129
4250
  */
4130
- region: 'cn' | 'us' | 'de';
4251
+ region: 'cn' | 'us' | 'de' | 'gb';
4131
4252
  };
4132
4253
  type BalanceControllerGetMultiCurrencyBalanceResponse = MultiCurrencyBalanceResponseDto;
4133
4254
  type ReviewControllerFindAllData = {
@@ -4146,7 +4267,7 @@ type ReviewControllerFindAllData = {
4146
4267
  /**
4147
4268
  * Region code for tenant context
4148
4269
  */
4149
- region: 'cn' | 'us' | 'de';
4270
+ region: 'cn' | 'us' | 'de' | 'gb';
4150
4271
  /**
4151
4272
  * Sort order
4152
4273
  */
@@ -4161,7 +4282,7 @@ type ReviewControllerGetStatsData = {
4161
4282
  /**
4162
4283
  * Region code for tenant context
4163
4284
  */
4164
- region: 'cn' | 'us' | 'de';
4285
+ region: 'cn' | 'us' | 'de' | 'gb';
4165
4286
  };
4166
4287
  type ReviewControllerGetStatsResponse = ReviewStatsDto;
4167
4288
  type ReviewControllerFindOneData = {
@@ -4172,7 +4293,7 @@ type ReviewControllerFindOneData = {
4172
4293
  /**
4173
4294
  * Region code for tenant context
4174
4295
  */
4175
- region: 'cn' | 'us' | 'de';
4296
+ region: 'cn' | 'us' | 'de' | 'gb';
4176
4297
  };
4177
4298
  type ReviewControllerFindOneResponse = ReviewDetailDto;
4178
4299
  type ReviewControllerResolveData = {
@@ -4183,7 +4304,7 @@ type ReviewControllerResolveData = {
4183
4304
  /**
4184
4305
  * Region code for tenant context
4185
4306
  */
4186
- region: 'cn' | 'us' | 'de';
4307
+ region: 'cn' | 'us' | 'de' | 'gb';
4187
4308
  requestBody: ResolveReviewDto;
4188
4309
  };
4189
4310
  type ReviewControllerResolveResponse = ResolveResultDto;
@@ -4195,14 +4316,14 @@ type ReviewControllerUndoData = {
4195
4316
  /**
4196
4317
  * Region code for tenant context
4197
4318
  */
4198
- region: 'cn' | 'us' | 'de';
4319
+ region: 'cn' | 'us' | 'de' | 'gb';
4199
4320
  };
4200
4321
  type ReviewControllerUndoResponse = UndoResultDto;
4201
4322
  type ReviewControllerBatchResolveData = {
4202
4323
  /**
4203
4324
  * Region code for tenant context
4204
4325
  */
4205
- region: 'cn' | 'us' | 'de';
4326
+ region: 'cn' | 'us' | 'de' | 'gb';
4206
4327
  /**
4207
4328
  * Batch resolution request containing review IDs and action
4208
4329
  */
@@ -4347,7 +4468,7 @@ type CommodityControllerCreateData = {
4347
4468
  /**
4348
4469
  * Region code for tenant context
4349
4470
  */
4350
- region: 'cn' | 'us' | 'de';
4471
+ region: 'cn' | 'us' | 'de' | 'gb';
4351
4472
  requestBody: CreateCommodityDto;
4352
4473
  };
4353
4474
  type CommodityControllerCreateResponse = CommodityResponseDto;
@@ -4355,7 +4476,7 @@ type CommodityControllerFindAllData = {
4355
4476
  /**
4356
4477
  * Region code for tenant context
4357
4478
  */
4358
- region: 'cn' | 'us' | 'de';
4479
+ region: 'cn' | 'us' | 'de' | 'gb';
4359
4480
  /**
4360
4481
  * Search term for symbol or metadata fields (partial match). Searches symbol and metadata.name.
4361
4482
  */
@@ -4370,7 +4491,7 @@ type CommodityControllerFindOneData = {
4370
4491
  /**
4371
4492
  * Region code for tenant context
4372
4493
  */
4373
- region: 'cn' | 'us' | 'de';
4494
+ region: 'cn' | 'us' | 'de' | 'gb';
4374
4495
  /**
4375
4496
  * Commodity symbol
4376
4497
  */
@@ -4381,7 +4502,7 @@ type CommodityControllerUpdateData = {
4381
4502
  /**
4382
4503
  * Region code for tenant context
4383
4504
  */
4384
- region: 'cn' | 'us' | 'de';
4505
+ region: 'cn' | 'us' | 'de' | 'gb';
4385
4506
  requestBody: UpdateCommodityDto;
4386
4507
  /**
4387
4508
  * Commodity symbol
@@ -4393,7 +4514,7 @@ type CommodityControllerDeleteData = {
4393
4514
  /**
4394
4515
  * Region code for tenant context
4395
4516
  */
4396
- region: 'cn' | 'us' | 'de';
4517
+ region: 'cn' | 'us' | 'de' | 'gb';
4397
4518
  /**
4398
4519
  * Commodity symbol
4399
4520
  */
@@ -4404,7 +4525,7 @@ type CommodityControllerGetOrCreateData = {
4404
4525
  /**
4405
4526
  * Region code for tenant context
4406
4527
  */
4407
- region: 'cn' | 'us' | 'de';
4528
+ region: 'cn' | 'us' | 'de' | 'gb';
4408
4529
  /**
4409
4530
  * Commodity symbol
4410
4531
  */
@@ -4415,14 +4536,14 @@ type CommodityControllerBulkCreateData = {
4415
4536
  /**
4416
4537
  * Region code for tenant context
4417
4538
  */
4418
- region: 'cn' | 'us' | 'de';
4539
+ region: 'cn' | 'us' | 'de' | 'gb';
4419
4540
  };
4420
4541
  type CommodityControllerBulkCreateResponse = Array<CommodityResponseDto>;
4421
4542
  type RecurringRuleControllerCreateData = {
4422
4543
  /**
4423
4544
  * Region code for tenant context
4424
4545
  */
4425
- region: 'cn' | 'us' | 'de';
4546
+ region: 'cn' | 'us' | 'de' | 'gb';
4426
4547
  requestBody: CreateRecurringRuleDto;
4427
4548
  };
4428
4549
  type RecurringRuleControllerCreateResponse = RecurringRuleResponseDto;
@@ -4442,14 +4563,14 @@ type RecurringRuleControllerFindAllData = {
4442
4563
  /**
4443
4564
  * Region code for tenant context
4444
4565
  */
4445
- region: 'cn' | 'us' | 'de';
4566
+ region: 'cn' | 'us' | 'de' | 'gb';
4446
4567
  };
4447
4568
  type RecurringRuleControllerFindAllResponse = Array<RecurringRuleResponseDto>;
4448
4569
  type RecurringRuleControllerCreateFromTransactionData = {
4449
4570
  /**
4450
4571
  * Region code for tenant context
4451
4572
  */
4452
- region: 'cn' | 'us' | 'de';
4573
+ region: 'cn' | 'us' | 'de' | 'gb';
4453
4574
  requestBody: CreateRuleFromTransactionDto;
4454
4575
  /**
4455
4576
  * Source transaction ID
@@ -4465,7 +4586,7 @@ type RecurringRuleControllerFindOneData = {
4465
4586
  /**
4466
4587
  * Region code for tenant context
4467
4588
  */
4468
- region: 'cn' | 'us' | 'de';
4589
+ region: 'cn' | 'us' | 'de' | 'gb';
4469
4590
  };
4470
4591
  type RecurringRuleControllerFindOneResponse = RecurringRuleResponseDto;
4471
4592
  type RecurringRuleControllerUpdateData = {
@@ -4476,7 +4597,7 @@ type RecurringRuleControllerUpdateData = {
4476
4597
  /**
4477
4598
  * Region code for tenant context
4478
4599
  */
4479
- region: 'cn' | 'us' | 'de';
4600
+ region: 'cn' | 'us' | 'de' | 'gb';
4480
4601
  requestBody: UpdateRecurringRuleDto;
4481
4602
  };
4482
4603
  type RecurringRuleControllerUpdateResponse = RecurringRuleResponseDto;
@@ -4488,7 +4609,7 @@ type RecurringRuleControllerDeleteData = {
4488
4609
  /**
4489
4610
  * Region code for tenant context
4490
4611
  */
4491
- region: 'cn' | 'us' | 'de';
4612
+ region: 'cn' | 'us' | 'de' | 'gb';
4492
4613
  };
4493
4614
  type RecurringRuleControllerDeleteResponse = void;
4494
4615
  type RecurringRuleControllerGetWithStatsData = {
@@ -4499,7 +4620,7 @@ type RecurringRuleControllerGetWithStatsData = {
4499
4620
  /**
4500
4621
  * Region code for tenant context
4501
4622
  */
4502
- region: 'cn' | 'us' | 'de';
4623
+ region: 'cn' | 'us' | 'de' | 'gb';
4503
4624
  };
4504
4625
  type RecurringRuleControllerGetWithStatsResponse = RecurringRuleWithStatsResponseDto;
4505
4626
  type ExpectedTransactionControllerFindAllData = {
@@ -4510,7 +4631,7 @@ type ExpectedTransactionControllerFindAllData = {
4510
4631
  /**
4511
4632
  * Region code for tenant context
4512
4633
  */
4513
- region: 'cn' | 'us' | 'de';
4634
+ region: 'cn' | 'us' | 'de' | 'gb';
4514
4635
  /**
4515
4636
  * Filter by recurring rule ID
4516
4637
  */
@@ -4529,7 +4650,7 @@ type ExpectedTransactionControllerFindOverdueData = {
4529
4650
  /**
4530
4651
  * Region code for tenant context
4531
4652
  */
4532
- region: 'cn' | 'us' | 'de';
4653
+ region: 'cn' | 'us' | 'de' | 'gb';
4533
4654
  };
4534
4655
  type ExpectedTransactionControllerFindOverdueResponse = ExpectedTransactionListResponseDto;
4535
4656
  type ExpectedTransactionControllerFindOneData = {
@@ -4540,7 +4661,7 @@ type ExpectedTransactionControllerFindOneData = {
4540
4661
  /**
4541
4662
  * Region code for tenant context
4542
4663
  */
4543
- region: 'cn' | 'us' | 'de';
4664
+ region: 'cn' | 'us' | 'de' | 'gb';
4544
4665
  };
4545
4666
  type ExpectedTransactionControllerFindOneResponse = ExpectedTransactionResponseDto;
4546
4667
  type ExpectedTransactionControllerSkipData = {
@@ -4551,7 +4672,7 @@ type ExpectedTransactionControllerSkipData = {
4551
4672
  /**
4552
4673
  * Region code for tenant context
4553
4674
  */
4554
- region: 'cn' | 'us' | 'de';
4675
+ region: 'cn' | 'us' | 'de' | 'gb';
4555
4676
  };
4556
4677
  type ExpectedTransactionControllerSkipResponse = ExpectedTransactionResponseDto;
4557
4678
  type ExpectedTransactionControllerUndoSkipData = {
@@ -4562,7 +4683,7 @@ type ExpectedTransactionControllerUndoSkipData = {
4562
4683
  /**
4563
4684
  * Region code for tenant context
4564
4685
  */
4565
- region: 'cn' | 'us' | 'de';
4686
+ region: 'cn' | 'us' | 'de' | 'gb';
4566
4687
  };
4567
4688
  type ExpectedTransactionControllerUndoSkipResponse = ExpectedTransactionResponseDto;
4568
4689
  type ExpectedTransactionControllerConfirmMatchData = {
@@ -4573,7 +4694,7 @@ type ExpectedTransactionControllerConfirmMatchData = {
4573
4694
  /**
4574
4695
  * Region code for tenant context
4575
4696
  */
4576
- region: 'cn' | 'us' | 'de';
4697
+ region: 'cn' | 'us' | 'de' | 'gb';
4577
4698
  requestBody: ConfirmMatchDto;
4578
4699
  };
4579
4700
  type ExpectedTransactionControllerConfirmMatchResponse = unknown;
@@ -4585,7 +4706,7 @@ type ExpectedTransactionControllerUnmatchData = {
4585
4706
  /**
4586
4707
  * Region code for tenant context
4587
4708
  */
4588
- region: 'cn' | 'us' | 'de';
4709
+ region: 'cn' | 'us' | 'de' | 'gb';
4589
4710
  };
4590
4711
  type ExpectedTransactionControllerUnmatchResponse = unknown;
4591
4712
  type ExpectedTransactionControllerEnterNowData = {
@@ -4596,7 +4717,7 @@ type ExpectedTransactionControllerEnterNowData = {
4596
4717
  /**
4597
4718
  * Region code for tenant context
4598
4719
  */
4599
- region: 'cn' | 'us' | 'de';
4720
+ region: 'cn' | 'us' | 'de' | 'gb';
4600
4721
  requestBody: EnterNowDto;
4601
4722
  };
4602
4723
  type ExpectedTransactionControllerEnterNowResponse = unknown;
@@ -4608,14 +4729,14 @@ type ForecastControllerGetForecastData = {
4608
4729
  /**
4609
4730
  * Region code for tenant context
4610
4731
  */
4611
- region: 'cn' | 'us' | 'de';
4732
+ region: 'cn' | 'us' | 'de' | 'gb';
4612
4733
  };
4613
4734
  type ForecastControllerGetForecastResponse = ForecastResponseDto;
4614
4735
  type TransactionRuleControllerCreateData = {
4615
4736
  /**
4616
4737
  * Region code for tenant context
4617
4738
  */
4618
- region: 'cn' | 'us' | 'de';
4739
+ region: 'cn' | 'us' | 'de' | 'gb';
4619
4740
  requestBody: CreateTransactionRuleDto;
4620
4741
  };
4621
4742
  type TransactionRuleControllerCreateResponse = TransactionRuleResponseDto;
@@ -4643,14 +4764,14 @@ type TransactionRuleControllerListData = {
4643
4764
  /**
4644
4765
  * Region code for tenant context
4645
4766
  */
4646
- region: 'cn' | 'us' | 'de';
4767
+ region: 'cn' | 'us' | 'de' | 'gb';
4647
4768
  };
4648
4769
  type TransactionRuleControllerListResponse = TransactionRuleListResponseDto;
4649
4770
  type TransactionRuleControllerValidateData = {
4650
4771
  /**
4651
4772
  * Region code for tenant context
4652
4773
  */
4653
- region: 'cn' | 'us' | 'de';
4774
+ region: 'cn' | 'us' | 'de' | 'gb';
4654
4775
  requestBody: ValidateRuleDto;
4655
4776
  };
4656
4777
  type TransactionRuleControllerValidateResponse = ValidateRuleResponseDto;
@@ -4658,7 +4779,7 @@ type TransactionRuleControllerBulkCreateData = {
4658
4779
  /**
4659
4780
  * Region code for tenant context
4660
4781
  */
4661
- region: 'cn' | 'us' | 'de';
4782
+ region: 'cn' | 'us' | 'de' | 'gb';
4662
4783
  requestBody: BulkCreateRulesDto;
4663
4784
  };
4664
4785
  type TransactionRuleControllerBulkCreateResponse = BulkCreateRulesResponseDto;
@@ -4670,7 +4791,7 @@ type TransactionRuleControllerExportData = {
4670
4791
  /**
4671
4792
  * Region code for tenant context
4672
4793
  */
4673
- region: 'cn' | 'us' | 'de';
4794
+ region: 'cn' | 'us' | 'de' | 'gb';
4674
4795
  };
4675
4796
  type TransactionRuleControllerExportResponse = ExportRulesResponseDto;
4676
4797
  type TransactionRuleControllerGetStatisticsData = {
@@ -4681,14 +4802,14 @@ type TransactionRuleControllerGetStatisticsData = {
4681
4802
  /**
4682
4803
  * Region code for tenant context
4683
4804
  */
4684
- region: 'cn' | 'us' | 'de';
4805
+ region: 'cn' | 'us' | 'de' | 'gb';
4685
4806
  };
4686
4807
  type TransactionRuleControllerGetStatisticsResponse = RuleStatisticsResponseDto;
4687
4808
  type TransactionRuleControllerGetDetailData = {
4688
4809
  /**
4689
4810
  * Region code for tenant context
4690
4811
  */
4691
- region: 'cn' | 'us' | 'de';
4812
+ region: 'cn' | 'us' | 'de' | 'gb';
4692
4813
  /**
4693
4814
  * Rule ID
4694
4815
  */
@@ -4699,7 +4820,7 @@ type TransactionRuleControllerUpdateData = {
4699
4820
  /**
4700
4821
  * Region code for tenant context
4701
4822
  */
4702
- region: 'cn' | 'us' | 'de';
4823
+ region: 'cn' | 'us' | 'de' | 'gb';
4703
4824
  requestBody: UpdateTransactionRuleDto;
4704
4825
  /**
4705
4826
  * Rule ID to update
@@ -4711,7 +4832,7 @@ type TransactionRuleControllerDeleteData = {
4711
4832
  /**
4712
4833
  * Region code for tenant context
4713
4834
  */
4714
- region: 'cn' | 'us' | 'de';
4835
+ region: 'cn' | 'us' | 'de' | 'gb';
4715
4836
  /**
4716
4837
  * Rule ID to delete
4717
4838
  */
@@ -4722,7 +4843,7 @@ type TransactionRuleControllerTestData = {
4722
4843
  /**
4723
4844
  * Region code for tenant context
4724
4845
  */
4725
- region: 'cn' | 'us' | 'de';
4846
+ region: 'cn' | 'us' | 'de' | 'gb';
4726
4847
  requestBody: TestRuleDto;
4727
4848
  /**
4728
4849
  * Rule ID to test
@@ -4804,7 +4925,7 @@ type FileImportControllerImportFileData = {
4804
4925
  /**
4805
4926
  * Region code for tenant context
4806
4927
  */
4807
- region: 'cn' | 'us' | 'de';
4928
+ region: 'cn' | 'us' | 'de' | 'gb';
4808
4929
  };
4809
4930
  type FileImportControllerImportFileResponse = ImportResultDto;
4810
4931
  type FileImportControllerIdentifyFileData = {
@@ -4815,7 +4936,7 @@ type FileImportControllerIdentifyFileData = {
4815
4936
  /**
4816
4937
  * Region code for tenant context
4817
4938
  */
4818
- region: 'cn' | 'us' | 'de';
4939
+ region: 'cn' | 'us' | 'de' | 'gb';
4819
4940
  };
4820
4941
  type FileImportControllerIdentifyFileResponse = IdentifyResultDto;
4821
4942
  type FileImportControllerImportBeancountData = {
@@ -4826,7 +4947,7 @@ type FileImportControllerImportBeancountData = {
4826
4947
  /**
4827
4948
  * Region code for tenant context
4828
4949
  */
4829
- region: 'cn' | 'us' | 'de';
4950
+ region: 'cn' | 'us' | 'de' | 'gb';
4830
4951
  };
4831
4952
  type FileImportControllerImportBeancountResponse = {
4832
4953
  imported?: number;
@@ -4845,7 +4966,7 @@ type ImporterConfigControllerGetConfigData = {
4845
4966
  /**
4846
4967
  * Region code for tenant context
4847
4968
  */
4848
- region: 'cn' | 'us' | 'de';
4969
+ region: 'cn' | 'us' | 'de' | 'gb';
4849
4970
  };
4850
4971
  type ImporterConfigControllerGetConfigResponse = ImporterConfigDto;
4851
4972
  type ImporterConfigControllerUpdateConfigData = {
@@ -4856,7 +4977,7 @@ type ImporterConfigControllerUpdateConfigData = {
4856
4977
  /**
4857
4978
  * Region code for tenant context
4858
4979
  */
4859
- region: 'cn' | 'us' | 'de';
4980
+ region: 'cn' | 'us' | 'de' | 'gb';
4860
4981
  /**
4861
4982
  * Partial configuration update. Only provided fields will be updated.
4862
4983
  */
@@ -4871,7 +4992,7 @@ type ImporterConfigControllerResetConfigData = {
4871
4992
  /**
4872
4993
  * Region code for tenant context
4873
4994
  */
4874
- region: 'cn' | 'us' | 'de';
4995
+ region: 'cn' | 'us' | 'de' | 'gb';
4875
4996
  };
4876
4997
  type ImporterConfigControllerResetConfigResponse = ImporterConfigDto;
4877
4998
  type PlatformControllerFindAllResponse = unknown;
@@ -4922,7 +5043,7 @@ type ProviderSyncControllerGetSupportedProvidersData = {
4922
5043
  /**
4923
5044
  * Region code for tenant context
4924
5045
  */
4925
- region: 'cn' | 'us' | 'de';
5046
+ region: 'cn' | 'us' | 'de' | 'gb';
4926
5047
  };
4927
5048
  type ProviderSyncControllerGetSupportedProvidersResponse = SupportedProvidersResponseDto;
4928
5049
  type ProviderSyncControllerIsProviderSupportedData = {
@@ -4933,14 +5054,14 @@ type ProviderSyncControllerIsProviderSupportedData = {
4933
5054
  /**
4934
5055
  * Region code for tenant context
4935
5056
  */
4936
- region: 'cn' | 'us' | 'de';
5057
+ region: 'cn' | 'us' | 'de' | 'gb';
4937
5058
  };
4938
5059
  type ProviderSyncControllerIsProviderSupportedResponse = unknown;
4939
5060
  type TelemetryControllerReportTelemetryData = {
4940
5061
  /**
4941
5062
  * Region code for tenant context
4942
5063
  */
4943
- region: 'cn' | 'us' | 'de';
5064
+ region: 'cn' | 'us' | 'de' | 'gb';
4944
5065
  requestBody: ParserTelemetryReportDto;
4945
5066
  };
4946
5067
  type TelemetryControllerReportTelemetryResponse = unknown;
@@ -4948,7 +5069,7 @@ type NlpControllerProcessNaturalLanguageData = {
4948
5069
  /**
4949
5070
  * Region code for tenant context
4950
5071
  */
4951
- region: 'cn' | 'us' | 'de';
5072
+ region: 'cn' | 'us' | 'de' | 'gb';
4952
5073
  /**
4953
5074
  * Natural language transaction input with optional session ID
4954
5075
  */
@@ -4959,7 +5080,7 @@ type NlpControllerClearSessionData = {
4959
5080
  /**
4960
5081
  * Region code for tenant context
4961
5082
  */
4962
- region: 'cn' | 'us' | 'de';
5083
+ region: 'cn' | 'us' | 'de' | 'gb';
4963
5084
  /**
4964
5085
  * Specific session ID to clear (defaults to user session)
4965
5086
  */
@@ -4970,7 +5091,7 @@ type NlpControllerGetSessionData = {
4970
5091
  /**
4971
5092
  * Region code for tenant context
4972
5093
  */
4973
- region: 'cn' | 'us' | 'de';
5094
+ region: 'cn' | 'us' | 'de' | 'gb';
4974
5095
  /**
4975
5096
  * Specific session ID to get (defaults to user session)
4976
5097
  */
@@ -4985,7 +5106,7 @@ type DashboardControllerGetNetWorthData = {
4985
5106
  /**
4986
5107
  * Region code for tenant context
4987
5108
  */
4988
- region: 'cn' | 'us' | 'de';
5109
+ region: 'cn' | 'us' | 'de' | 'gb';
4989
5110
  };
4990
5111
  type DashboardControllerGetNetWorthResponse = NetWorthResponseDto;
4991
5112
  type DashboardControllerGetAccountsData = {
@@ -5000,7 +5121,7 @@ type DashboardControllerGetAccountsData = {
5000
5121
  /**
5001
5122
  * Region code for tenant context
5002
5123
  */
5003
- region: 'cn' | 'us' | 'de';
5124
+ region: 'cn' | 'us' | 'de' | 'gb';
5004
5125
  };
5005
5126
  type DashboardControllerGetAccountsResponse = AccountsResponseDto | AssetClassAccountsResponseDto;
5006
5127
  type DashboardControllerGetCashFlowData = {
@@ -5011,7 +5132,7 @@ type DashboardControllerGetCashFlowData = {
5011
5132
  /**
5012
5133
  * Region code for tenant context
5013
5134
  */
5014
- region: 'cn' | 'us' | 'de';
5135
+ region: 'cn' | 'us' | 'de' | 'gb';
5015
5136
  };
5016
5137
  type DashboardControllerGetCashFlowResponse = CashFlowResponseDto;
5017
5138
  type ReportingControllerGetPortfolioTrendsData = {
@@ -5026,14 +5147,14 @@ type ReportingControllerGetPortfolioTrendsData = {
5026
5147
  /**
5027
5148
  * Region code for tenant context
5028
5149
  */
5029
- region: 'cn' | 'us' | 'de';
5150
+ region: 'cn' | 'us' | 'de' | 'gb';
5030
5151
  };
5031
5152
  type ReportingControllerGetPortfolioTrendsResponse = PortfolioTrendsResponseDto;
5032
5153
  type ReportingControllerGenerateSnapshotData = {
5033
5154
  /**
5034
5155
  * Region code for tenant context
5035
5156
  */
5036
- region: 'cn' | 'us' | 'de';
5157
+ region: 'cn' | 'us' | 'de' | 'gb';
5037
5158
  /**
5038
5159
  * Optional date (defaults to today)
5039
5160
  */
@@ -5044,7 +5165,7 @@ type ReportingControllerBackfillSnapshotsData = {
5044
5165
  /**
5045
5166
  * Region code for tenant context
5046
5167
  */
5047
- region: 'cn' | 'us' | 'de';
5168
+ region: 'cn' | 'us' | 'de' | 'gb';
5048
5169
  requestBody: BackfillSnapshotsBody;
5049
5170
  };
5050
5171
  type ReportingControllerBackfillSnapshotsResponse = BackfillSnapshotsResponse;
@@ -5283,6 +5404,48 @@ type $OpenApiTs = {
5283
5404
  };
5284
5405
  };
5285
5406
  };
5407
+ '/api/v1/{region}/bean/transactions/{id}/correct': {
5408
+ post: {
5409
+ req: TransactionControllerCorrectData;
5410
+ res: {
5411
+ /**
5412
+ * Corrected transaction created
5413
+ */
5414
+ 201: TransactionDetailDto;
5415
+ /**
5416
+ * Original transaction not found
5417
+ */
5418
+ 404: ApiProblemResponseDto;
5419
+ /**
5420
+ * Original no longer ACTIVE (concurrent modification)
5421
+ */
5422
+ 409: ApiProblemResponseDto;
5423
+ /**
5424
+ * Pipeline validation failed (does not balance, invalid accounts)
5425
+ */
5426
+ 422: ApiProblemResponseDto;
5427
+ };
5428
+ };
5429
+ };
5430
+ '/api/v1/{region}/bean/transactions/tags': {
5431
+ get: {
5432
+ req: TransactionControllerSuggestTagsData;
5433
+ res: {
5434
+ /**
5435
+ * Tag suggestions
5436
+ */
5437
+ 200: TagSuggestionsResponseDto;
5438
+ /**
5439
+ * Validation failed
5440
+ */
5441
+ 400: ApiProblemResponseDto;
5442
+ /**
5443
+ * Authentication required
5444
+ */
5445
+ 401: ApiProblemResponseDto;
5446
+ };
5447
+ };
5448
+ };
5286
5449
  '/api/v1/{region}/bean/transactions/{id}': {
5287
5450
  get: {
5288
5451
  req: TransactionControllerGetDetailData;
@@ -7129,6 +7292,29 @@ declare class BeanTransactionsService {
7129
7292
  * @throws ApiError
7130
7293
  */
7131
7294
  static transactionControllerCreateBatch(data: TransactionControllerCreateBatchData): CancelablePromise<TransactionControllerCreateBatchResponse>;
7295
+ /**
7296
+ * Correct (supersede) a transaction
7297
+ * Atomically voids the original (SUPERSEDED) and creates a replacement through the full validation pipeline.
7298
+ * @param data The data for the request.
7299
+ * @param data.id Original transaction ID to correct
7300
+ * @param data.region Region code for tenant context
7301
+ * @param data.requestBody
7302
+ * @returns TransactionDetailDto Corrected transaction created
7303
+ * @throws ApiError
7304
+ */
7305
+ static transactionControllerCorrect(data: TransactionControllerCorrectData): CancelablePromise<TransactionControllerCorrectResponse>;
7306
+ /**
7307
+ * Suggest transaction tags
7308
+ * Returns distinct tags from the user ACTIVE transactions, sorted by usage, for autocomplete. Optional q performs a case-insensitive prefix match.
7309
+ * @param data The data for the request.
7310
+ * @param data.region Region code for tenant context
7311
+ * @param data.q Prefix match, case-insensitive (max 50 chars)
7312
+ * @param data.sort usage (default) or name
7313
+ * @param data.limit Max suggestions (1-100, default 10)
7314
+ * @returns TagSuggestionsResponseDto Tag suggestions
7315
+ * @throws ApiError
7316
+ */
7317
+ static transactionControllerSuggestTags(data: TransactionControllerSuggestTagsData): CancelablePromise<TransactionControllerSuggestTagsResponse>;
7132
7318
  /**
7133
7319
  * Get transaction detail
7134
7320
  * Returns transaction details including all postings
@@ -7396,4 +7582,4 @@ type OpenAPIConfig = {
7396
7582
  };
7397
7583
  declare const OpenAPI: OpenAPIConfig;
7398
7584
 
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 };
7585
+ 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 CorrectTransactionDto, 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 TransactionControllerCorrectData, type TransactionControllerCorrectResponse, type TransactionControllerCreateBatchData, type TransactionControllerCreateBatchResponse, type TransactionControllerCreateData, type TransactionControllerCreateResponse, type TransactionControllerDeleteData, type TransactionControllerDeleteResponse, type TransactionControllerGetDetailData, type TransactionControllerGetDetailResponse, type TransactionControllerListData, type TransactionControllerListResponse, type TransactionControllerSuggestTagsData, type TransactionControllerSuggestTagsResponse, type TransactionControllerUpdateData, type TransactionControllerUpdateResponse, type TransactionDetailDto, type TransactionListResponseDto, type TransactionResponseDto, type TransactionRuleControllerBulkCreateData, type TransactionRuleControllerBulkCreateResponse, type TransactionRuleControllerCreateData, type TransactionRuleControllerCreateResponse, type TransactionRuleControllerDeleteData, type TransactionRuleControllerDeleteResponse, type TransactionRuleControllerExportData, type TransactionRuleControllerExportResponse, type TransactionRuleControllerGetDetailData, type TransactionRuleControllerGetDetailResponse, type TransactionRuleControllerGetStatisticsData, type TransactionRuleControllerGetStatisticsResponse, type TransactionRuleControllerListData, type TransactionRuleControllerListResponse, type TransactionRuleControllerTestData, type TransactionRuleControllerTestResponse, type TransactionRuleControllerUpdateData, type TransactionRuleControllerUpdateResponse, type TransactionRuleControllerValidateData, type TransactionRuleControllerValidateResponse, type TransactionRuleListResponseDto, type TransactionRuleResponseDto, type TransactionSummaryDto, type TrendSummaryDto, type 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 action2, 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 status, type status2, type status3, type status4, type suggestedFrequency, type type, type type2, type type3, type value, type viewMode };