@firela/api-types 0.0.0-canary.7f2ecc16 → 0.0.0-canary.7fcf7940

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
@@ -2571,6 +2571,30 @@ type DeleteOwnUserDto = {
2571
2571
  */
2572
2572
  accessToken: string;
2573
2573
  };
2574
+ type UserSettingsResponseDto = {
2575
+ /**
2576
+ * Base currency (ISO 4217) for net-worth/report aggregation. Independent of region (ADR-0006).
2577
+ */
2578
+ baseCurrency: string | null;
2579
+ };
2580
+ type UserResponseDto = {
2581
+ /**
2582
+ * User ID
2583
+ */
2584
+ id: string;
2585
+ /**
2586
+ * Assigned user role
2587
+ */
2588
+ role: string;
2589
+ /**
2590
+ * Permission strings
2591
+ */
2592
+ permissions: Array<string>;
2593
+ /**
2594
+ * User settings
2595
+ */
2596
+ settings: UserSettingsResponseDto;
2597
+ };
2574
2598
  type SignupDto = {
2575
2599
  /**
2576
2600
  * Cloudflare Turnstile verification token (optional when Turnstile disabled)
@@ -3033,6 +3057,42 @@ type TestRuleResponseDto = {
3033
3057
  [key: string]: unknown;
3034
3058
  };
3035
3059
  };
3060
+ type CategoryCatalogEntryDto = {
3061
+ /**
3062
+ * Category slug (single source-of-truth)
3063
+ */
3064
+ slug: string;
3065
+ /**
3066
+ * Display scenario group (maps to frontend picker _scenario)
3067
+ */
3068
+ scenario: 'expense' | 'income' | 'investment' | 'banking' | 'transfer' | 'payment';
3069
+ /**
3070
+ * Lucide icon name
3071
+ */
3072
+ icon: string;
3073
+ /**
3074
+ * Applicable regions ('*' = all, 'cn' = CN-only)
3075
+ */
3076
+ regions: Array<string>;
3077
+ };
3078
+ /**
3079
+ * Display scenario group (maps to frontend picker _scenario)
3080
+ */
3081
+ type scenario = 'expense' | 'income' | 'investment' | 'banking' | 'transfer' | 'payment';
3082
+ type CategoryCatalogListResponseDto = {
3083
+ /**
3084
+ * Category entries (region-scoped, query-filtered)
3085
+ */
3086
+ items: Array<CategoryCatalogEntryDto>;
3087
+ /**
3088
+ * Total category entries for the region (before query filtering)
3089
+ */
3090
+ total: number;
3091
+ /**
3092
+ * Region code
3093
+ */
3094
+ region: string;
3095
+ };
3036
3096
  type CreateBeanEventDto = {
3037
3097
  /**
3038
3098
  * Life event date (ISO 8601)
@@ -3517,13 +3577,13 @@ type ProviderSyncConfigDto = {
3517
3577
  */
3518
3578
  defaultCurrency: string;
3519
3579
  /**
3520
- * Default expense account for the second posting
3580
+ * Default expense account for the second posting. Omit when no real default exists; the pipeline routes to Review via the Uncategorized sentinel (#618).
3521
3581
  */
3522
- defaultExpenseAccount: string;
3582
+ defaultExpenseAccount?: string;
3523
3583
  /**
3524
- * Default income account for the second posting
3584
+ * Default income account for the second posting. Omit when no real default exists; the pipeline routes to Review via the Uncategorized sentinel (#618).
3525
3585
  */
3526
- defaultIncomeAccount: string;
3586
+ defaultIncomeAccount?: string;
3527
3587
  /**
3528
3588
  * Filter pending transactions
3529
3589
  */
@@ -3620,11 +3680,85 @@ type ExternalAccountLinkListResponseDto = {
3620
3680
  };
3621
3681
  type ParserTelemetryReportDto = unknown;
3622
3682
  type UncoveredFormatMissDto = unknown;
3683
+ type ClientParsedDataDto = {
3684
+ /**
3685
+ * Transaction amount
3686
+ */
3687
+ amount?: number;
3688
+ /**
3689
+ * Currency code
3690
+ */
3691
+ currency?: string;
3692
+ /**
3693
+ * Transaction date (ISO 8601)
3694
+ */
3695
+ date?: string;
3696
+ /**
3697
+ * Payee/merchant name
3698
+ */
3699
+ payee?: string;
3700
+ /**
3701
+ * Transaction narration
3702
+ */
3703
+ narration?: string;
3704
+ /**
3705
+ * Category slug
3706
+ */
3707
+ category?: string;
3708
+ /**
3709
+ * Income type
3710
+ */
3711
+ incomeType?: string;
3712
+ /**
3713
+ * Income source
3714
+ */
3715
+ incomeSource?: string;
3716
+ /**
3717
+ * Security symbol code (e.g., 600519, AAPL)
3718
+ */
3719
+ symbol?: string;
3720
+ /**
3721
+ * Quantity of shares/units
3722
+ */
3723
+ quantity?: number;
3724
+ /**
3725
+ * Unit price per share/unit
3726
+ */
3727
+ price?: number;
3728
+ /**
3729
+ * Investment action
3730
+ */
3731
+ investmentAction?: 'buy' | 'sell';
3732
+ /**
3733
+ * Payment source: asset (default) or liability (credit card)
3734
+ */
3735
+ paymentSource?: 'asset' | 'liability';
3736
+ /**
3737
+ * Liability account hint (CreditCard/Huabei/Baitiao)
3738
+ */
3739
+ liabilityHint?: string;
3740
+ /**
3741
+ * Display-only warning from the prior response; accepted but ignored.
3742
+ */
3743
+ warning?: string;
3744
+ };
3745
+ /**
3746
+ * Investment action
3747
+ */
3748
+ type investmentAction = 'buy' | 'sell';
3749
+ /**
3750
+ * Payment source: asset (default) or liability (credit card)
3751
+ */
3752
+ type paymentSource = 'asset' | 'liability';
3623
3753
  type ProcessNlpDto = {
3624
3754
  /**
3625
- * Natural language text describing a transaction (Chinese)
3755
+ * Natural language text describing a transaction. Optional when `confirm` is true (structured confirm); otherwise required.
3626
3756
  */
3627
- message: string;
3757
+ message?: string;
3758
+ /**
3759
+ * Structured confirm signal — bypasses NL confirm-word matching when true. Send parsedData field edits alongside. The NL word-list path is the fallback.
3760
+ */
3761
+ confirm?: boolean;
3628
3762
  /**
3629
3763
  * Session ID for multi-turn conversation (auto-generated if not provided)
3630
3764
  */
@@ -3632,9 +3766,7 @@ type ProcessNlpDto = {
3632
3766
  /**
3633
3767
  * Parsed data from previous NLP response for session recovery. Send back the parsedData received in confirm_payee/confirm responses.
3634
3768
  */
3635
- parsedData?: {
3636
- [key: string]: unknown;
3637
- };
3769
+ parsedData?: ClientParsedDataDto;
3638
3770
  /**
3639
3771
  * confirm_rule echo-back: rule id selected from the prior confirm_rule response (matchedRule.id or alternatives[i].ruleId). Applied directly when the session is confirming_rule — no NL re-parse.
3640
3772
  */
@@ -3736,14 +3868,6 @@ type NlpParsedDataDto = {
3736
3868
  */
3737
3869
  warning?: string;
3738
3870
  };
3739
- /**
3740
- * Investment action
3741
- */
3742
- type investmentAction = 'buy' | 'sell';
3743
- /**
3744
- * Payment source: asset (default) or liability (credit card)
3745
- */
3746
- type paymentSource = 'asset' | 'liability';
3747
3871
  type NlpSourceTransactionDto = {
3748
3872
  /**
3749
3873
  * Transaction date (ISO format)
@@ -4183,13 +4307,21 @@ type PlatformListItemDto = {
4183
4307
  */
4184
4308
  canonical: string;
4185
4309
  /**
4186
- * Suggested path segment — canonical with first char uppercased (ACC_COMP_NAME_RE)
4310
+ * Suggested path segment — canonical PascalCased per hyphen-part, hyphens preserved (e.g. "Apple-Pay")
4187
4311
  */
4188
4312
  suggestedSegment: string;
4189
4313
  /**
4190
4314
  * Logo URL
4191
4315
  */
4192
4316
  logoUrl: string | null;
4317
+ /**
4318
+ * ISO 3166-1 alpha-2 (UPPERCASE); null = global platform
4319
+ */
4320
+ countryCode: string | null;
4321
+ /**
4322
+ * Region-aware category (institution vocab, e.g. DigitalWallet/Bank). null = no region-aware suggestion; fall back to type.
4323
+ */
4324
+ category: string | null;
4193
4325
  /**
4194
4326
  * Whether user has accounts using this platform
4195
4327
  */
@@ -4217,13 +4349,21 @@ type PlatformMatchResultDto = {
4217
4349
  */
4218
4350
  type: 'BANK' | 'BROKERAGE' | 'CRYPTO_EXCHANGE' | 'PAYMENT' | 'INVESTMENT' | 'INSURANCE' | 'OTHER';
4219
4351
  /**
4220
- * Suggested path segment — canonical, already in ACCOUNT_RE format
4352
+ * Suggested path segment — canonical PascalCased per hyphen-part, hyphens preserved (e.g. "Apple-Pay")
4221
4353
  */
4222
4354
  suggestedSegment: string;
4223
4355
  /**
4224
4356
  * Logo URL
4225
4357
  */
4226
4358
  logoUrl: string | null;
4359
+ /**
4360
+ * ISO 3166-1 alpha-2 (UPPERCASE); null = global platform
4361
+ */
4362
+ countryCode: string | null;
4363
+ /**
4364
+ * Region-aware category (institution vocab, e.g. DigitalWallet/Bank). null = no region-aware suggestion; fall back to type.
4365
+ */
4366
+ category: string | null;
4227
4367
  /**
4228
4368
  * How this row matched: 'exact' > 'prefix' > 'substring'
4229
4369
  */
@@ -5094,7 +5234,7 @@ type AccountControllerCreateData = {
5094
5234
  /**
5095
5235
  * Region code for tenant context
5096
5236
  */
5097
- region: 'cn' | 'us' | 'de' | 'gb';
5237
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5098
5238
  requestBody: CreateAccountDto;
5099
5239
  };
5100
5240
  type AccountControllerCreateResponse = AccountResponseDto;
@@ -5114,7 +5254,7 @@ type AccountControllerFindAllData = {
5114
5254
  /**
5115
5255
  * Region code for tenant context
5116
5256
  */
5117
- region: 'cn' | 'us' | 'de' | 'gb';
5257
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5118
5258
  /**
5119
5259
  * Search term for account path
5120
5260
  */
@@ -5137,7 +5277,7 @@ type AccountControllerFindOneData = {
5137
5277
  /**
5138
5278
  * Region code for tenant context
5139
5279
  */
5140
- region: 'cn' | 'us' | 'de' | 'gb';
5280
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5141
5281
  };
5142
5282
  type AccountControllerFindOneResponse = AccountResponseDto;
5143
5283
  type AccountControllerUpdateData = {
@@ -5148,7 +5288,7 @@ type AccountControllerUpdateData = {
5148
5288
  /**
5149
5289
  * Region code for tenant context
5150
5290
  */
5151
- region: 'cn' | 'us' | 'de' | 'gb';
5291
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5152
5292
  requestBody: UpdateAccountDto;
5153
5293
  };
5154
5294
  type AccountControllerUpdateResponse = AccountResponseDto;
@@ -5160,7 +5300,7 @@ type AccountControllerDeleteData = {
5160
5300
  /**
5161
5301
  * Region code for tenant context
5162
5302
  */
5163
- region: 'cn' | 'us' | 'de' | 'gb';
5303
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5164
5304
  };
5165
5305
  type AccountControllerDeleteResponse = void;
5166
5306
  type AccountControllerCloseData = {
@@ -5171,7 +5311,7 @@ type AccountControllerCloseData = {
5171
5311
  /**
5172
5312
  * Region code for tenant context
5173
5313
  */
5174
- region: 'cn' | 'us' | 'de' | 'gb';
5314
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5175
5315
  requestBody: CloseAccountDto;
5176
5316
  };
5177
5317
  type AccountControllerCloseResponse = AccountResponseDto;
@@ -5183,7 +5323,7 @@ type AccountControllerReopenData = {
5183
5323
  /**
5184
5324
  * Region code for tenant context
5185
5325
  */
5186
- region: 'cn' | 'us' | 'de' | 'gb';
5326
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5187
5327
  requestBody: ReopenAccountDto;
5188
5328
  };
5189
5329
  type AccountControllerReopenResponse = AccountResponseDto;
@@ -5195,7 +5335,7 @@ type AccountControllerAddOpeningBalanceData = {
5195
5335
  /**
5196
5336
  * Region code for tenant context
5197
5337
  */
5198
- region: 'cn' | 'us' | 'de' | 'gb';
5338
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5199
5339
  requestBody: CreateOpeningBalanceDto;
5200
5340
  };
5201
5341
  type AccountControllerAddOpeningBalanceResponse = OpeningBalanceResultDto;
@@ -5203,7 +5343,7 @@ type AccountStandardsControllerGetTemplatesData = {
5203
5343
  /**
5204
5344
  * Region code (cn, us, de)
5205
5345
  */
5206
- region: 'cn' | 'us' | 'de' | 'gb';
5346
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5207
5347
  /**
5208
5348
  * Search term for path or description
5209
5349
  */
@@ -5222,21 +5362,21 @@ type AccountStandardsControllerGetTemplateMetadataData = {
5222
5362
  /**
5223
5363
  * Region code for tenant context
5224
5364
  */
5225
- region: 'cn' | 'us' | 'de' | 'gb';
5365
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5226
5366
  };
5227
5367
  type AccountStandardsControllerGetTemplateMetadataResponse = TemplateMetadataResponseDto;
5228
5368
  type AccountStandardsControllerGetRegionsData = {
5229
5369
  /**
5230
5370
  * Region code for tenant context
5231
5371
  */
5232
- region: 'cn' | 'us' | 'de' | 'gb';
5372
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5233
5373
  };
5234
5374
  type AccountStandardsControllerGetRegionsResponse = RegionsMetadataResponseDto;
5235
5375
  type TransactionControllerCreateData = {
5236
5376
  /**
5237
5377
  * Region code for tenant context
5238
5378
  */
5239
- region: 'cn' | 'us' | 'de' | 'gb';
5379
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5240
5380
  /**
5241
5381
  * Transaction data with postings
5242
5382
  */
@@ -5271,7 +5411,7 @@ type TransactionControllerListData = {
5271
5411
  /**
5272
5412
  * Region code for tenant context
5273
5413
  */
5274
- region: 'cn' | 'us' | 'de' | 'gb';
5414
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5275
5415
  /**
5276
5416
  * Search in narration and payee fields (max 200 chars)
5277
5417
  */
@@ -5286,7 +5426,7 @@ type TransactionControllerCreateBatchData = {
5286
5426
  /**
5287
5427
  * Region code for tenant context
5288
5428
  */
5289
- region: 'cn' | 'us' | 'de' | 'gb';
5429
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5290
5430
  requestBody: BatchCreateTransactionDto;
5291
5431
  };
5292
5432
  type TransactionControllerCreateBatchResponse = BatchTransactionResponseDto;
@@ -5298,7 +5438,7 @@ type TransactionControllerCorrectData = {
5298
5438
  /**
5299
5439
  * Region code for tenant context
5300
5440
  */
5301
- region: 'cn' | 'us' | 'de' | 'gb';
5441
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5302
5442
  requestBody: CorrectTransactionDto;
5303
5443
  };
5304
5444
  type TransactionControllerCorrectResponse = TransactionDetailDto;
@@ -5314,7 +5454,7 @@ type TransactionControllerSuggestTagsData = {
5314
5454
  /**
5315
5455
  * Region code for tenant context
5316
5456
  */
5317
- region: 'cn' | 'us' | 'de' | 'gb';
5457
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5318
5458
  /**
5319
5459
  * usage (default) or name
5320
5460
  */
@@ -5329,7 +5469,7 @@ type TransactionControllerGetDetailData = {
5329
5469
  /**
5330
5470
  * Region code for tenant context
5331
5471
  */
5332
- region: 'cn' | 'us' | 'de' | 'gb';
5472
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5333
5473
  };
5334
5474
  type TransactionControllerGetDetailResponse = TransactionDetailDto;
5335
5475
  type TransactionControllerUpdateData = {
@@ -5340,7 +5480,7 @@ type TransactionControllerUpdateData = {
5340
5480
  /**
5341
5481
  * Region code for tenant context
5342
5482
  */
5343
- region: 'cn' | 'us' | 'de' | 'gb';
5483
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5344
5484
  /**
5345
5485
  * Fields to update (all optional)
5346
5486
  */
@@ -5355,7 +5495,7 @@ type TransactionControllerDeleteData = {
5355
5495
  /**
5356
5496
  * Region code for tenant context
5357
5497
  */
5358
- region: 'cn' | 'us' | 'de' | 'gb';
5498
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5359
5499
  };
5360
5500
  type TransactionControllerDeleteResponse = void;
5361
5501
  type BalanceControllerGetBalanceData = {
@@ -5374,14 +5514,14 @@ type BalanceControllerGetBalanceData = {
5374
5514
  /**
5375
5515
  * Region code for tenant context
5376
5516
  */
5377
- region: 'cn' | 'us' | 'de' | 'gb';
5517
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5378
5518
  };
5379
5519
  type BalanceControllerGetBalanceResponse = BalanceResponseDto;
5380
5520
  type BalanceControllerGetMultiCurrencyBalanceData = {
5381
5521
  /**
5382
5522
  * Region code for tenant context
5383
5523
  */
5384
- region: 'cn' | 'us' | 'de' | 'gb';
5524
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5385
5525
  };
5386
5526
  type BalanceControllerGetMultiCurrencyBalanceResponse = MultiCurrencyBalanceResponseDto;
5387
5527
  type ReviewControllerFindAllData = {
@@ -5400,7 +5540,7 @@ type ReviewControllerFindAllData = {
5400
5540
  /**
5401
5541
  * Region code for tenant context
5402
5542
  */
5403
- region: 'cn' | 'us' | 'de' | 'gb';
5543
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5404
5544
  /**
5405
5545
  * Sort order
5406
5546
  */
@@ -5415,7 +5555,7 @@ type ReviewControllerGetStatsData = {
5415
5555
  /**
5416
5556
  * Region code for tenant context
5417
5557
  */
5418
- region: 'cn' | 'us' | 'de' | 'gb';
5558
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5419
5559
  };
5420
5560
  type ReviewControllerGetStatsResponse = ReviewStatsDto;
5421
5561
  type ReviewControllerFindOneData = {
@@ -5426,7 +5566,7 @@ type ReviewControllerFindOneData = {
5426
5566
  /**
5427
5567
  * Region code for tenant context
5428
5568
  */
5429
- region: 'cn' | 'us' | 'de' | 'gb';
5569
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5430
5570
  };
5431
5571
  type ReviewControllerFindOneResponse = ReviewDetailDto;
5432
5572
  type ReviewControllerResolveData = {
@@ -5437,7 +5577,7 @@ type ReviewControllerResolveData = {
5437
5577
  /**
5438
5578
  * Region code for tenant context
5439
5579
  */
5440
- region: 'cn' | 'us' | 'de' | 'gb';
5580
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5441
5581
  requestBody: ResolveReviewDto;
5442
5582
  };
5443
5583
  type ReviewControllerResolveResponse = ResolveResultDto;
@@ -5449,14 +5589,14 @@ type ReviewControllerUndoData = {
5449
5589
  /**
5450
5590
  * Region code for tenant context
5451
5591
  */
5452
- region: 'cn' | 'us' | 'de' | 'gb';
5592
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5453
5593
  };
5454
5594
  type ReviewControllerUndoResponse = UndoResultDto;
5455
5595
  type ReviewControllerBatchResolveData = {
5456
5596
  /**
5457
5597
  * Region code for tenant context
5458
5598
  */
5459
- region: 'cn' | 'us' | 'de' | 'gb';
5599
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5460
5600
  /**
5461
5601
  * Batch resolution request containing review IDs and action
5462
5602
  */
@@ -5601,7 +5741,7 @@ type CommodityControllerCreateData = {
5601
5741
  /**
5602
5742
  * Region code for tenant context
5603
5743
  */
5604
- region: 'cn' | 'us' | 'de' | 'gb';
5744
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5605
5745
  requestBody: CreateCommodityDto;
5606
5746
  };
5607
5747
  type CommodityControllerCreateResponse = CommodityResponseDto;
@@ -5609,7 +5749,7 @@ type CommodityControllerFindAllData = {
5609
5749
  /**
5610
5750
  * Region code for tenant context
5611
5751
  */
5612
- region: 'cn' | 'us' | 'de' | 'gb';
5752
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5613
5753
  /**
5614
5754
  * Search term for symbol or metadata fields (partial match). Searches symbol and metadata.name.
5615
5755
  */
@@ -5624,7 +5764,7 @@ type CommodityControllerFindOneData = {
5624
5764
  /**
5625
5765
  * Region code for tenant context
5626
5766
  */
5627
- region: 'cn' | 'us' | 'de' | 'gb';
5767
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5628
5768
  /**
5629
5769
  * Commodity symbol
5630
5770
  */
@@ -5635,7 +5775,7 @@ type CommodityControllerUpdateData = {
5635
5775
  /**
5636
5776
  * Region code for tenant context
5637
5777
  */
5638
- region: 'cn' | 'us' | 'de' | 'gb';
5778
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5639
5779
  requestBody: UpdateCommodityDto;
5640
5780
  /**
5641
5781
  * Commodity symbol
@@ -5647,7 +5787,7 @@ type CommodityControllerDeleteData = {
5647
5787
  /**
5648
5788
  * Region code for tenant context
5649
5789
  */
5650
- region: 'cn' | 'us' | 'de' | 'gb';
5790
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5651
5791
  /**
5652
5792
  * Commodity symbol
5653
5793
  */
@@ -5658,7 +5798,7 @@ type CommodityControllerGetOrCreateData = {
5658
5798
  /**
5659
5799
  * Region code for tenant context
5660
5800
  */
5661
- region: 'cn' | 'us' | 'de' | 'gb';
5801
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5662
5802
  /**
5663
5803
  * Commodity symbol
5664
5804
  */
@@ -5669,14 +5809,14 @@ type CommodityControllerBulkCreateData = {
5669
5809
  /**
5670
5810
  * Region code for tenant context
5671
5811
  */
5672
- region: 'cn' | 'us' | 'de' | 'gb';
5812
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5673
5813
  };
5674
5814
  type CommodityControllerBulkCreateResponse = Array<CommodityResponseDto>;
5675
5815
  type PriceControllerCreateData = {
5676
5816
  /**
5677
5817
  * Region code for tenant context
5678
5818
  */
5679
- region: 'cn' | 'us' | 'de' | 'gb';
5819
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5680
5820
  requestBody: CreateBeanPriceDto;
5681
5821
  };
5682
5822
  type PriceControllerCreateResponse = PriceResponseDto;
@@ -5708,7 +5848,7 @@ type PriceControllerFindAllData = {
5708
5848
  /**
5709
5849
  * Region code for tenant context
5710
5850
  */
5711
- region: 'cn' | 'us' | 'de' | 'gb';
5851
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5712
5852
  /**
5713
5853
  * Search term for currency or quoteCurrency (case-insensitive partial match)
5714
5854
  */
@@ -5723,7 +5863,7 @@ type PriceControllerFindOneData = {
5723
5863
  /**
5724
5864
  * Region code for tenant context
5725
5865
  */
5726
- region: 'cn' | 'us' | 'de' | 'gb';
5866
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5727
5867
  };
5728
5868
  type PriceControllerFindOneResponse = PriceResponseDto;
5729
5869
  type PriceControllerUpdateData = {
@@ -5734,7 +5874,7 @@ type PriceControllerUpdateData = {
5734
5874
  /**
5735
5875
  * Region code for tenant context
5736
5876
  */
5737
- region: 'cn' | 'us' | 'de' | 'gb';
5877
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5738
5878
  requestBody: UpdateBeanPriceDto;
5739
5879
  };
5740
5880
  type PriceControllerUpdateResponse = PriceResponseDto;
@@ -5746,14 +5886,14 @@ type PriceControllerDeleteData = {
5746
5886
  /**
5747
5887
  * Region code for tenant context
5748
5888
  */
5749
- region: 'cn' | 'us' | 'de' | 'gb';
5889
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5750
5890
  };
5751
5891
  type PriceControllerDeleteResponse = void;
5752
5892
  type PriceControllerBulkCreateData = {
5753
5893
  /**
5754
5894
  * Region code for tenant context
5755
5895
  */
5756
- region: 'cn' | 'us' | 'de' | 'gb';
5896
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5757
5897
  requestBody: Array<string>;
5758
5898
  };
5759
5899
  type PriceControllerBulkCreateResponse = Array<PriceResponseDto>;
@@ -5761,7 +5901,7 @@ type RecurringRuleControllerCreateData = {
5761
5901
  /**
5762
5902
  * Region code for tenant context
5763
5903
  */
5764
- region: 'cn' | 'us' | 'de' | 'gb';
5904
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5765
5905
  requestBody: CreateRecurringRuleDto;
5766
5906
  };
5767
5907
  type RecurringRuleControllerCreateResponse = RecurringRuleResponseDto;
@@ -5781,14 +5921,14 @@ type RecurringRuleControllerFindAllData = {
5781
5921
  /**
5782
5922
  * Region code for tenant context
5783
5923
  */
5784
- region: 'cn' | 'us' | 'de' | 'gb';
5924
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5785
5925
  };
5786
5926
  type RecurringRuleControllerFindAllResponse = Array<RecurringRuleResponseDto>;
5787
5927
  type RecurringRuleControllerCreateFromTransactionData = {
5788
5928
  /**
5789
5929
  * Region code for tenant context
5790
5930
  */
5791
- region: 'cn' | 'us' | 'de' | 'gb';
5931
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5792
5932
  requestBody: CreateRuleFromTransactionDto;
5793
5933
  /**
5794
5934
  * Source transaction ID
@@ -5804,7 +5944,7 @@ type RecurringRuleControllerFindOneData = {
5804
5944
  /**
5805
5945
  * Region code for tenant context
5806
5946
  */
5807
- region: 'cn' | 'us' | 'de' | 'gb';
5947
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5808
5948
  };
5809
5949
  type RecurringRuleControllerFindOneResponse = RecurringRuleResponseDto;
5810
5950
  type RecurringRuleControllerUpdateData = {
@@ -5815,7 +5955,7 @@ type RecurringRuleControllerUpdateData = {
5815
5955
  /**
5816
5956
  * Region code for tenant context
5817
5957
  */
5818
- region: 'cn' | 'us' | 'de' | 'gb';
5958
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5819
5959
  requestBody: UpdateRecurringRuleDto;
5820
5960
  };
5821
5961
  type RecurringRuleControllerUpdateResponse = RecurringRuleResponseDto;
@@ -5827,7 +5967,7 @@ type RecurringRuleControllerDeleteData = {
5827
5967
  /**
5828
5968
  * Region code for tenant context
5829
5969
  */
5830
- region: 'cn' | 'us' | 'de' | 'gb';
5970
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5831
5971
  };
5832
5972
  type RecurringRuleControllerDeleteResponse = void;
5833
5973
  type RecurringRuleControllerGetWithStatsData = {
@@ -5838,7 +5978,7 @@ type RecurringRuleControllerGetWithStatsData = {
5838
5978
  /**
5839
5979
  * Region code for tenant context
5840
5980
  */
5841
- region: 'cn' | 'us' | 'de' | 'gb';
5981
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5842
5982
  };
5843
5983
  type RecurringRuleControllerGetWithStatsResponse = RecurringRuleWithStatsResponseDto;
5844
5984
  type ExpectedTransactionControllerFindAllData = {
@@ -5849,7 +5989,7 @@ type ExpectedTransactionControllerFindAllData = {
5849
5989
  /**
5850
5990
  * Region code for tenant context
5851
5991
  */
5852
- region: 'cn' | 'us' | 'de' | 'gb';
5992
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5853
5993
  /**
5854
5994
  * Filter by recurring rule ID
5855
5995
  */
@@ -5868,7 +6008,7 @@ type ExpectedTransactionControllerFindOverdueData = {
5868
6008
  /**
5869
6009
  * Region code for tenant context
5870
6010
  */
5871
- region: 'cn' | 'us' | 'de' | 'gb';
6011
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5872
6012
  };
5873
6013
  type ExpectedTransactionControllerFindOverdueResponse = ExpectedTransactionListResponseDto;
5874
6014
  type ExpectedTransactionControllerFindOneData = {
@@ -5879,7 +6019,7 @@ type ExpectedTransactionControllerFindOneData = {
5879
6019
  /**
5880
6020
  * Region code for tenant context
5881
6021
  */
5882
- region: 'cn' | 'us' | 'de' | 'gb';
6022
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5883
6023
  };
5884
6024
  type ExpectedTransactionControllerFindOneResponse = ExpectedTransactionResponseDto;
5885
6025
  type ExpectedTransactionControllerSkipData = {
@@ -5890,7 +6030,7 @@ type ExpectedTransactionControllerSkipData = {
5890
6030
  /**
5891
6031
  * Region code for tenant context
5892
6032
  */
5893
- region: 'cn' | 'us' | 'de' | 'gb';
6033
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5894
6034
  };
5895
6035
  type ExpectedTransactionControllerSkipResponse = ExpectedTransactionResponseDto;
5896
6036
  type ExpectedTransactionControllerUndoSkipData = {
@@ -5901,7 +6041,7 @@ type ExpectedTransactionControllerUndoSkipData = {
5901
6041
  /**
5902
6042
  * Region code for tenant context
5903
6043
  */
5904
- region: 'cn' | 'us' | 'de' | 'gb';
6044
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5905
6045
  };
5906
6046
  type ExpectedTransactionControllerUndoSkipResponse = ExpectedTransactionResponseDto;
5907
6047
  type ExpectedTransactionControllerConfirmMatchData = {
@@ -5912,7 +6052,7 @@ type ExpectedTransactionControllerConfirmMatchData = {
5912
6052
  /**
5913
6053
  * Region code for tenant context
5914
6054
  */
5915
- region: 'cn' | 'us' | 'de' | 'gb';
6055
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5916
6056
  requestBody: ConfirmMatchDto;
5917
6057
  };
5918
6058
  type ExpectedTransactionControllerConfirmMatchResponse = unknown;
@@ -5924,7 +6064,7 @@ type ExpectedTransactionControllerUnmatchData = {
5924
6064
  /**
5925
6065
  * Region code for tenant context
5926
6066
  */
5927
- region: 'cn' | 'us' | 'de' | 'gb';
6067
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5928
6068
  };
5929
6069
  type ExpectedTransactionControllerUnmatchResponse = unknown;
5930
6070
  type ExpectedTransactionControllerEnterNowData = {
@@ -5935,7 +6075,7 @@ type ExpectedTransactionControllerEnterNowData = {
5935
6075
  /**
5936
6076
  * Region code for tenant context
5937
6077
  */
5938
- region: 'cn' | 'us' | 'de' | 'gb';
6078
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5939
6079
  requestBody: EnterNowDto;
5940
6080
  };
5941
6081
  type ExpectedTransactionControllerEnterNowResponse = unknown;
@@ -5947,7 +6087,7 @@ type ForecastControllerGetForecastData = {
5947
6087
  /**
5948
6088
  * Region code for tenant context
5949
6089
  */
5950
- region: 'cn' | 'us' | 'de' | 'gb';
6090
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5951
6091
  };
5952
6092
  type ForecastControllerGetForecastResponse = ForecastResponseDto;
5953
6093
  type ReportingControllerGetPortfolioTrendsData = {
@@ -5962,7 +6102,7 @@ type ReportingControllerGetPortfolioTrendsData = {
5962
6102
  /**
5963
6103
  * Region code for tenant context
5964
6104
  */
5965
- region: 'cn' | 'us' | 'de' | 'gb';
6105
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5966
6106
  };
5967
6107
  type ReportingControllerGetPortfolioTrendsResponse = PortfolioTrendsResponseDto;
5968
6108
  type ReportingControllerGetCashFlowTrendsData = {
@@ -5977,14 +6117,14 @@ type ReportingControllerGetCashFlowTrendsData = {
5977
6117
  /**
5978
6118
  * Region code for tenant context
5979
6119
  */
5980
- region: 'cn' | 'us' | 'de' | 'gb';
6120
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5981
6121
  };
5982
6122
  type ReportingControllerGetCashFlowTrendsResponse = CashFlowTrendsResponseDto;
5983
6123
  type ReportingControllerGenerateSnapshotData = {
5984
6124
  /**
5985
6125
  * Region code for tenant context
5986
6126
  */
5987
- region: 'cn' | 'us' | 'de' | 'gb';
6127
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5988
6128
  /**
5989
6129
  * Optional date (defaults to today)
5990
6130
  */
@@ -5995,7 +6135,7 @@ type ReportingControllerBackfillSnapshotsData = {
5995
6135
  /**
5996
6136
  * Region code for tenant context
5997
6137
  */
5998
- region: 'cn' | 'us' | 'de' | 'gb';
6138
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5999
6139
  requestBody: BackfillSnapshotsBody;
6000
6140
  };
6001
6141
  type ReportingControllerBackfillSnapshotsResponse = BackfillSnapshotsResponse;
@@ -6006,7 +6146,7 @@ type UserControllerDeleteOwnUserResponse = void;
6006
6146
  type UserControllerGetUserData = {
6007
6147
  acceptLanguage: string;
6008
6148
  };
6009
- type UserControllerGetUserResponse = unknown;
6149
+ type UserControllerGetUserResponse = UserResponseDto;
6010
6150
  type UserControllerSignupUserData = {
6011
6151
  requestBody: SignupDto;
6012
6152
  };
@@ -6068,7 +6208,7 @@ type TransactionRuleControllerCreateData = {
6068
6208
  /**
6069
6209
  * Region code for tenant context
6070
6210
  */
6071
- region: 'cn' | 'us' | 'de' | 'gb';
6211
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6072
6212
  requestBody: CreateTransactionRuleDto;
6073
6213
  };
6074
6214
  type TransactionRuleControllerCreateResponse = TransactionRuleResponseDto;
@@ -6096,14 +6236,14 @@ type TransactionRuleControllerListData = {
6096
6236
  /**
6097
6237
  * Region code for tenant context
6098
6238
  */
6099
- region: 'cn' | 'us' | 'de' | 'gb';
6239
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6100
6240
  };
6101
6241
  type TransactionRuleControllerListResponse = TransactionRuleListResponseDto;
6102
6242
  type TransactionRuleControllerValidateData = {
6103
6243
  /**
6104
6244
  * Region code for tenant context
6105
6245
  */
6106
- region: 'cn' | 'us' | 'de' | 'gb';
6246
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6107
6247
  requestBody: ValidateRuleDto;
6108
6248
  };
6109
6249
  type TransactionRuleControllerValidateResponse = ValidateRuleResponseDto;
@@ -6111,7 +6251,7 @@ type TransactionRuleControllerBulkCreateData = {
6111
6251
  /**
6112
6252
  * Region code for tenant context
6113
6253
  */
6114
- region: 'cn' | 'us' | 'de' | 'gb';
6254
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6115
6255
  requestBody: BulkCreateRulesDto;
6116
6256
  };
6117
6257
  type TransactionRuleControllerBulkCreateResponse = BulkCreateRulesResponseDto;
@@ -6123,7 +6263,7 @@ type TransactionRuleControllerExportData = {
6123
6263
  /**
6124
6264
  * Region code for tenant context
6125
6265
  */
6126
- region: 'cn' | 'us' | 'de' | 'gb';
6266
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6127
6267
  };
6128
6268
  type TransactionRuleControllerExportResponse = ExportRulesResponseDto;
6129
6269
  type TransactionRuleControllerGetStatisticsData = {
@@ -6134,14 +6274,14 @@ type TransactionRuleControllerGetStatisticsData = {
6134
6274
  /**
6135
6275
  * Region code for tenant context
6136
6276
  */
6137
- region: 'cn' | 'us' | 'de' | 'gb';
6277
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6138
6278
  };
6139
6279
  type TransactionRuleControllerGetStatisticsResponse = RuleStatisticsResponseDto;
6140
6280
  type TransactionRuleControllerGetDetailData = {
6141
6281
  /**
6142
6282
  * Region code for tenant context
6143
6283
  */
6144
- region: 'cn' | 'us' | 'de' | 'gb';
6284
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6145
6285
  /**
6146
6286
  * Rule ID
6147
6287
  */
@@ -6152,7 +6292,7 @@ type TransactionRuleControllerUpdateData = {
6152
6292
  /**
6153
6293
  * Region code for tenant context
6154
6294
  */
6155
- region: 'cn' | 'us' | 'de' | 'gb';
6295
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6156
6296
  requestBody: UpdateTransactionRuleDto;
6157
6297
  /**
6158
6298
  * Rule ID to update
@@ -6164,7 +6304,7 @@ type TransactionRuleControllerDeleteData = {
6164
6304
  /**
6165
6305
  * Region code for tenant context
6166
6306
  */
6167
- region: 'cn' | 'us' | 'de' | 'gb';
6307
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6168
6308
  /**
6169
6309
  * Rule ID to delete
6170
6310
  */
@@ -6175,7 +6315,7 @@ type TransactionRuleControllerTestData = {
6175
6315
  /**
6176
6316
  * Region code for tenant context
6177
6317
  */
6178
- region: 'cn' | 'us' | 'de' | 'gb';
6318
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6179
6319
  requestBody: TestRuleDto;
6180
6320
  /**
6181
6321
  * Rule ID to test
@@ -6183,11 +6323,26 @@ type TransactionRuleControllerTestData = {
6183
6323
  ruleId: string;
6184
6324
  };
6185
6325
  type TransactionRuleControllerTestResponse = TestRuleResponseDto;
6326
+ type CategoryCatalogControllerListData = {
6327
+ /**
6328
+ * Region code for tenant context
6329
+ */
6330
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6331
+ /**
6332
+ * Filter by routeBearing (entity-router route() consumes it)
6333
+ */
6334
+ routeBearing?: boolean;
6335
+ /**
6336
+ * Filter by scenario
6337
+ */
6338
+ scenario?: 'expense' | 'income' | 'investment' | 'banking' | 'transfer' | 'payment';
6339
+ };
6340
+ type CategoryCatalogControllerListResponse = CategoryCatalogListResponseDto;
6186
6341
  type EventControllerCreateData = {
6187
6342
  /**
6188
6343
  * Region code for tenant context (decorative for life events)
6189
6344
  */
6190
- region: 'cn' | 'us' | 'de' | 'gb';
6345
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6191
6346
  requestBody: CreateBeanEventDto;
6192
6347
  };
6193
6348
  type EventControllerCreateResponse = EventResponseDto;
@@ -6211,7 +6366,7 @@ type EventControllerFindAllData = {
6211
6366
  /**
6212
6367
  * Region code for tenant context (decorative for life events)
6213
6368
  */
6214
- region: 'cn' | 'us' | 'de' | 'gb';
6369
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6215
6370
  /**
6216
6371
  * Filter life events to this date (ISO 8601 format)
6217
6372
  */
@@ -6230,7 +6385,7 @@ type EventControllerFindOneData = {
6230
6385
  /**
6231
6386
  * Region code for tenant context (decorative for life events)
6232
6387
  */
6233
- region: 'cn' | 'us' | 'de' | 'gb';
6388
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6234
6389
  };
6235
6390
  type EventControllerFindOneResponse = EventResponseDto;
6236
6391
  type EventControllerUpdateData = {
@@ -6241,7 +6396,7 @@ type EventControllerUpdateData = {
6241
6396
  /**
6242
6397
  * Region code for tenant context (decorative for life events)
6243
6398
  */
6244
- region: 'cn' | 'us' | 'de' | 'gb';
6399
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6245
6400
  requestBody: UpdateBeanEventDto;
6246
6401
  };
6247
6402
  type EventControllerUpdateResponse = EventResponseDto;
@@ -6253,7 +6408,7 @@ type EventControllerDeleteData = {
6253
6408
  /**
6254
6409
  * Region code for tenant context (decorative for life events)
6255
6410
  */
6256
- region: 'cn' | 'us' | 'de' | 'gb';
6411
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6257
6412
  };
6258
6413
  type EventControllerDeleteResponse = void;
6259
6414
  type EventControllerGetSliceData = {
@@ -6266,14 +6421,14 @@ type EventControllerGetSliceData = {
6266
6421
  /**
6267
6422
  * Region code for tenant context (decorative for life events)
6268
6423
  */
6269
- region: 'cn' | 'us' | 'de' | 'gb';
6424
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6270
6425
  };
6271
6426
  type EventControllerGetSliceResponse = unknown;
6272
6427
  type OnboardingControllerBootstrapData = {
6273
6428
  /**
6274
6429
  * Region code for tenant context
6275
6430
  */
6276
- region: 'cn' | 'us' | 'de' | 'gb';
6431
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6277
6432
  requestBody: OnboardingDto;
6278
6433
  };
6279
6434
  type OnboardingControllerBootstrapResponse = unknown;
@@ -6281,7 +6436,7 @@ type ReconciliationControllerComputeData = {
6281
6436
  /**
6282
6437
  * Region code for tenant context (decorative for reconciliation)
6283
6438
  */
6284
- region: 'cn' | 'us' | 'de' | 'gb';
6439
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6285
6440
  requestBody: ComputeReconciliationDto;
6286
6441
  };
6287
6442
  type ReconciliationControllerComputeResponse = ReconciliationComputeResultDto;
@@ -6289,7 +6444,7 @@ type ReconciliationControllerAssertData = {
6289
6444
  /**
6290
6445
  * Region code for tenant context (decorative for reconciliation)
6291
6446
  */
6292
- region: 'cn' | 'us' | 'de' | 'gb';
6447
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6293
6448
  requestBody: AssertReconciliationDto;
6294
6449
  };
6295
6450
  type ReconciliationControllerAssertResponse = ReconciliationRecordDto;
@@ -6297,7 +6452,7 @@ type ReconciliationControllerPadData = {
6297
6452
  /**
6298
6453
  * Region code for tenant context (decorative for reconciliation)
6299
6454
  */
6300
- region: 'cn' | 'us' | 'de' | 'gb';
6455
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6301
6456
  requestBody: PadReconciliationDto;
6302
6457
  };
6303
6458
  type ReconciliationControllerPadResponse = PadResultDto;
@@ -6309,7 +6464,7 @@ type ReconciliationControllerHistoryData = {
6309
6464
  /**
6310
6465
  * Region code for tenant context (decorative for reconciliation)
6311
6466
  */
6312
- region: 'cn' | 'us' | 'de' | 'gb';
6467
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6313
6468
  };
6314
6469
  type ReconciliationControllerHistoryResponse = Array<ReconciliationRecordDto>;
6315
6470
  type ExportControllerExportBeancountResponse = unknown;
@@ -6321,7 +6476,7 @@ type FileImportControllerImportFileData = {
6321
6476
  /**
6322
6477
  * Region code for tenant context
6323
6478
  */
6324
- region: 'cn' | 'us' | 'de' | 'gb';
6479
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6325
6480
  };
6326
6481
  type FileImportControllerImportFileResponse = ImportResultDto;
6327
6482
  type FileImportControllerIdentifyFileData = {
@@ -6332,7 +6487,7 @@ type FileImportControllerIdentifyFileData = {
6332
6487
  /**
6333
6488
  * Region code for tenant context
6334
6489
  */
6335
- region: 'cn' | 'us' | 'de' | 'gb';
6490
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6336
6491
  };
6337
6492
  type FileImportControllerIdentifyFileResponse = IdentifyResultDto;
6338
6493
  type FileImportControllerImportBeancountData = {
@@ -6343,7 +6498,7 @@ type FileImportControllerImportBeancountData = {
6343
6498
  /**
6344
6499
  * Region code for tenant context
6345
6500
  */
6346
- region: 'cn' | 'us' | 'de' | 'gb';
6501
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6347
6502
  };
6348
6503
  type FileImportControllerImportBeancountResponse = {
6349
6504
  imported?: number;
@@ -6362,7 +6517,7 @@ type ImporterConfigControllerGetConfigData = {
6362
6517
  /**
6363
6518
  * Region code for tenant context
6364
6519
  */
6365
- region: 'cn' | 'us' | 'de' | 'gb';
6520
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6366
6521
  };
6367
6522
  type ImporterConfigControllerGetConfigResponse = ImporterConfigDto;
6368
6523
  type ImporterConfigControllerUpdateConfigData = {
@@ -6373,7 +6528,7 @@ type ImporterConfigControllerUpdateConfigData = {
6373
6528
  /**
6374
6529
  * Region code for tenant context
6375
6530
  */
6376
- region: 'cn' | 'us' | 'de' | 'gb';
6531
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6377
6532
  /**
6378
6533
  * Partial configuration update. Only provided fields will be updated.
6379
6534
  */
@@ -6388,7 +6543,7 @@ type ImporterConfigControllerResetConfigData = {
6388
6543
  /**
6389
6544
  * Region code for tenant context
6390
6545
  */
6391
- region: 'cn' | 'us' | 'de' | 'gb';
6546
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6392
6547
  };
6393
6548
  type ImporterConfigControllerResetConfigResponse = ImporterConfigDto;
6394
6549
  type ProviderSyncControllerSyncData = {
@@ -6399,7 +6554,7 @@ type ProviderSyncControllerSyncData = {
6399
6554
  /**
6400
6555
  * Region code for tenant context
6401
6556
  */
6402
- region: 'cn' | 'us' | 'de' | 'gb';
6557
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6403
6558
  requestBody: ProviderSyncDto;
6404
6559
  };
6405
6560
  type ProviderSyncControllerSyncResponse = ProviderSyncResponseDto;
@@ -6407,7 +6562,7 @@ type ProviderSyncControllerGetSupportedProvidersData = {
6407
6562
  /**
6408
6563
  * Region code for tenant context
6409
6564
  */
6410
- region: 'cn' | 'us' | 'de' | 'gb';
6565
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6411
6566
  };
6412
6567
  type ProviderSyncControllerGetSupportedProvidersResponse = SupportedProvidersResponseDto;
6413
6568
  type ProviderSyncControllerIsProviderSupportedData = {
@@ -6418,14 +6573,14 @@ type ProviderSyncControllerIsProviderSupportedData = {
6418
6573
  /**
6419
6574
  * Region code for tenant context
6420
6575
  */
6421
- region: 'cn' | 'us' | 'de' | 'gb';
6576
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6422
6577
  };
6423
6578
  type ProviderSyncControllerIsProviderSupportedResponse = unknown;
6424
6579
  type ExternalAccountLinkControllerCreateData = {
6425
6580
  /**
6426
6581
  * Region code for tenant context
6427
6582
  */
6428
- region: 'cn' | 'us' | 'de' | 'gb';
6583
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6429
6584
  requestBody: CreateExternalAccountLinkDto;
6430
6585
  };
6431
6586
  type ExternalAccountLinkControllerCreateResponse = ExternalAccountLinkResponseDto;
@@ -6434,7 +6589,7 @@ type ExternalAccountLinkControllerFindAllData = {
6434
6589
  /**
6435
6590
  * Region code for tenant context
6436
6591
  */
6437
- region: 'cn' | 'us' | 'de' | 'gb';
6592
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6438
6593
  };
6439
6594
  type ExternalAccountLinkControllerFindAllResponse = ExternalAccountLinkListResponseDto;
6440
6595
  type ExternalAccountLinkControllerFindOneData = {
@@ -6442,7 +6597,7 @@ type ExternalAccountLinkControllerFindOneData = {
6442
6597
  /**
6443
6598
  * Region code for tenant context
6444
6599
  */
6445
- region: 'cn' | 'us' | 'de' | 'gb';
6600
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6446
6601
  };
6447
6602
  type ExternalAccountLinkControllerFindOneResponse = ExternalAccountLinkResponseDto;
6448
6603
  type ExternalAccountLinkControllerRemoveData = {
@@ -6450,14 +6605,14 @@ type ExternalAccountLinkControllerRemoveData = {
6450
6605
  /**
6451
6606
  * Region code for tenant context
6452
6607
  */
6453
- region: 'cn' | 'us' | 'de' | 'gb';
6608
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6454
6609
  };
6455
6610
  type ExternalAccountLinkControllerRemoveResponse = void;
6456
6611
  type TelemetryControllerReportTelemetryData = {
6457
6612
  /**
6458
6613
  * Region code for tenant context
6459
6614
  */
6460
- region: 'cn' | 'us' | 'de' | 'gb';
6615
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6461
6616
  requestBody: ParserTelemetryReportDto;
6462
6617
  };
6463
6618
  type TelemetryControllerReportTelemetryResponse = unknown;
@@ -6465,7 +6620,7 @@ type TelemetryControllerReportCoverageMissData = {
6465
6620
  /**
6466
6621
  * Region code for tenant context
6467
6622
  */
6468
- region: 'cn' | 'us' | 'de' | 'gb';
6623
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6469
6624
  requestBody: UncoveredFormatMissDto;
6470
6625
  };
6471
6626
  type TelemetryControllerReportCoverageMissResponse = unknown;
@@ -6473,7 +6628,7 @@ type TelemetryControllerGetCoverageMetricsData = {
6473
6628
  /**
6474
6629
  * Region code for tenant context
6475
6630
  */
6476
- region: 'cn' | 'us' | 'de' | 'gb';
6631
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6477
6632
  /**
6478
6633
  * Top-N uncovered formats (default 10)
6479
6634
  */
@@ -6484,7 +6639,7 @@ type NlpControllerProcessNaturalLanguageData = {
6484
6639
  /**
6485
6640
  * Region code for tenant context
6486
6641
  */
6487
- region: 'cn' | 'us' | 'de' | 'gb';
6642
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6488
6643
  /**
6489
6644
  * Natural language transaction input with optional session ID
6490
6645
  */
@@ -6495,7 +6650,7 @@ type NlpControllerClearSessionData = {
6495
6650
  /**
6496
6651
  * Region code for tenant context
6497
6652
  */
6498
- region: 'cn' | 'us' | 'de' | 'gb';
6653
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6499
6654
  /**
6500
6655
  * Specific session ID to clear (defaults to user session)
6501
6656
  */
@@ -6506,7 +6661,7 @@ type NlpControllerGetSessionData = {
6506
6661
  /**
6507
6662
  * Region code for tenant context
6508
6663
  */
6509
- region: 'cn' | 'us' | 'de' | 'gb';
6664
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6510
6665
  /**
6511
6666
  * Specific session ID to get (defaults to user session)
6512
6667
  */
@@ -6518,6 +6673,12 @@ type PlatformControllerCreateData = {
6518
6673
  requestBody: CreatePlatformDto;
6519
6674
  };
6520
6675
  type PlatformControllerCreateResponse = unknown;
6676
+ type PlatformControllerGetPlatformListData = {
6677
+ /**
6678
+ * Region code (ISO 3166-1 alpha-2) that biases within-type-bucket ordering (local-region platforms first). Case-insensitive — stored/compared UPPERCASE ("cn" == "CN").
6679
+ */
6680
+ region?: string;
6681
+ };
6521
6682
  type PlatformControllerGetPlatformListResponse = Array<PlatformListItemDto>;
6522
6683
  type PlatformControllerMatchPlatformsData = {
6523
6684
  /**
@@ -6525,7 +6686,7 @@ type PlatformControllerMatchPlatformsData = {
6525
6686
  */
6526
6687
  q: string;
6527
6688
  /**
6528
- * Region code for category override lookup
6689
+ * Region code (ISO 3166-1 alpha-2) that biases within-tier ordering (local-region platforms first); also the intended categoryOverrides key. Case-insensitive — stored/compared UPPERCASE ("cn" == "CN").
6529
6690
  */
6530
6691
  region?: string;
6531
6692
  };
@@ -6553,7 +6714,7 @@ type DashboardControllerGetNetWorthData = {
6553
6714
  /**
6554
6715
  * Region code for tenant context
6555
6716
  */
6556
- region: 'cn' | 'us' | 'de' | 'gb';
6717
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6557
6718
  };
6558
6719
  type DashboardControllerGetNetWorthResponse = NetWorthResponseDto;
6559
6720
  type DashboardControllerGetAccountsData = {
@@ -6572,7 +6733,7 @@ type DashboardControllerGetAccountsData = {
6572
6733
  /**
6573
6734
  * Region code for tenant context
6574
6735
  */
6575
- region: 'cn' | 'us' | 'de' | 'gb';
6736
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6576
6737
  };
6577
6738
  type DashboardControllerGetAccountsResponse = AccountsResponseDto | AssetClassAccountsResponseDto | HoldingAssetClassCrossAccountResponseDto;
6578
6739
  type DashboardControllerGetCashFlowData = {
@@ -6583,7 +6744,7 @@ type DashboardControllerGetCashFlowData = {
6583
6744
  /**
6584
6745
  * Region code for tenant context
6585
6746
  */
6586
- region: 'cn' | 'us' | 'de' | 'gb';
6747
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6587
6748
  };
6588
6749
  type DashboardControllerGetCashFlowResponse = CashFlowResponseDto;
6589
6750
  type DashboardControllerGetExpensesData = {
@@ -6602,7 +6763,7 @@ type DashboardControllerGetExpensesData = {
6602
6763
  /**
6603
6764
  * Region code for tenant context
6604
6765
  */
6605
- region: 'cn' | 'us' | 'de' | 'gb';
6766
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6606
6767
  };
6607
6768
  type DashboardControllerGetExpensesResponse = ExpensesByCategoryResponseDto;
6608
6769
  type HoldingPnlControllerGetHoldingPnlData = {
@@ -6621,7 +6782,7 @@ type HoldingPnlControllerGetHoldingPnlData = {
6621
6782
  /**
6622
6783
  * Region code for tenant context
6623
6784
  */
6624
- region: 'cn' | 'us' | 'de' | 'gb';
6785
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6625
6786
  };
6626
6787
  type HoldingPnlControllerGetHoldingPnlResponse = HoldingPnlResponseDto;
6627
6788
  type ApiKeysControllerCreateApiKeyResponse = unknown;
@@ -7839,7 +8000,7 @@ type $OpenApiTs = {
7839
8000
  /**
7840
8001
  * User retrieved successfully
7841
8002
  */
7842
- 200: unknown;
8003
+ 200: UserResponseDto;
7843
8004
  };
7844
8005
  };
7845
8006
  post: {
@@ -8213,6 +8374,17 @@ type $OpenApiTs = {
8213
8374
  };
8214
8375
  };
8215
8376
  };
8377
+ '/api/v1/{region}/bean/categories': {
8378
+ get: {
8379
+ req: CategoryCatalogControllerListData;
8380
+ res: {
8381
+ /**
8382
+ * Category catalog retrieved successfully
8383
+ */
8384
+ 200: CategoryCatalogListResponseDto;
8385
+ };
8386
+ };
8387
+ };
8216
8388
  '/api/v1/{region}/bean/events': {
8217
8389
  post: {
8218
8390
  req: EventControllerCreateData;
@@ -8752,6 +8924,7 @@ type $OpenApiTs = {
8752
8924
  };
8753
8925
  '/api/v1/bean/platforms/list': {
8754
8926
  get: {
8927
+ req: PlatformControllerGetPlatformListData;
8755
8928
  res: {
8756
8929
  /**
8757
8930
  * List of platforms with user binding status
@@ -9503,4 +9676,4 @@ type OpenAPIConfig = {
9503
9676
  };
9504
9677
  declare const OpenAPI: OpenAPIConfig;
9505
9678
 
9506
- export { type $OpenApiTs, type AccountControllerAddOpeningBalanceData, type AccountControllerAddOpeningBalanceResponse, type AccountControllerCloseData, type AccountControllerCloseResponse, type AccountControllerCreateData, type AccountControllerCreateResponse, type AccountControllerDeleteData, type AccountControllerDeleteResponse, type AccountControllerFindAllData, type AccountControllerFindAllResponse, type AccountControllerFindOneData, type AccountControllerFindOneResponse, type AccountControllerReopenData, type AccountControllerReopenResponse, type AccountControllerUpdateData, type AccountControllerUpdateResponse, type AccountExchangeRateWarningDto, type AccountItemDto, type AccountItemWithAssetClassDto, type AccountListResponseDto, type AccountResponseDto, type AccountStandardListResponseDto, type AccountStandardResponseDto, type AccountStandardsControllerGetRegionsData, type AccountStandardsControllerGetRegionsResponse, type AccountStandardsControllerGetTemplateMetadataData, type AccountStandardsControllerGetTemplateMetadataResponse, type AccountStandardsControllerGetTemplatesData, type AccountStandardsControllerGetTemplatesResponse, type AccountsResponseDto, type AccountsSummaryDto, type ActualBalanceDto, type AmountDto, type AmountRangeDto, type AnonymousLoginDto, type AnonymousLoginResponseDto, type ApiKeysControllerCreateApiKeyResponse, type ApiProblemResponseDto, type AssertReconciliationDto, type AssetClassAccountsResponseDto, type AssetClassGroupDto, type AssetClassSummaryDto, type AuthControllerAccessTokenLoginData, type AuthControllerAccessTokenLoginResponse, type BackfillSnapshotsBody, type BackfillSnapshotsResponse, type BalanceByCurrencyDto, type BalanceControllerGetBalanceData, type BalanceControllerGetBalanceResponse, type BalanceControllerGetMultiCurrencyBalanceData, type BalanceControllerGetMultiCurrencyBalanceResponse, type BalanceResponseDto, type BatchCreateTransactionDto, type BatchResolveDto, type BatchResolveResultDto, type BatchTransactionErrorDto, type BatchTransactionResponseDto, BeanAccountsService, BeanBalancesService, BeanCommoditiesService, BeanTransactionsService, type BulkCreateRulesDto, type BulkCreateRulesResponseDto, type CacheControllerFlushCacheResponse, type CashFlowByCurrencyDto, type CashFlowPointDto, type CashFlowResponseDto, type CashFlowTrendSummaryDto, type CashFlowTrendsResponseDto, type CategoryGroupDto, type CloseAccountDto, type CommodityControllerBulkCreateData, type CommodityControllerBulkCreateResponse, type CommodityControllerCreateData, type CommodityControllerCreateResponse, type CommodityControllerDeleteData, type CommodityControllerDeleteResponse, type CommodityControllerFindAllData, type CommodityControllerFindAllResponse, type CommodityControllerFindOneData, type CommodityControllerFindOneResponse, type CommodityControllerGetOrCreateData, type CommodityControllerGetOrCreateResponse, type CommodityControllerUpdateData, type CommodityControllerUpdateResponse, type CommodityListResponseDto, type CommodityResponseDto, type ComputeReconciliationDto, type ConfirmMatchDto, type ConvertedCashFlowDto, type ConvertedNetWorthDto, type CorrectTransactionDto, type CostDetailDto, type CostSpecDto, type CreateAccountDto, type CreateBeanEventDto, type CreateBeanPriceDto, type CreateCommodityDto, type CreateExternalAccountLinkDto, type CreateOpeningBalanceDto, type CreatePayeeDto, type CreatePayeeProfileDto, type CreatePlatformDto, type CreatePostingDto, type CreateRecurringRuleDto, type CreateRuleFromTransactionDto, type CreateTransactionDto, type CreateTransactionRuleDto, type CurrencyBalanceDto, type CurrentPriceDto, type DashboardControllerGetAccountsData, type DashboardControllerGetAccountsResponse, type DashboardControllerGetCashFlowData, type DashboardControllerGetCashFlowResponse, type DashboardControllerGetExpensesData, type DashboardControllerGetExpensesResponse, type DashboardControllerGetNetWorthData, type DashboardControllerGetNetWorthResponse, type DecisionOptionDto, type DeleteOwnUserDto, type EnterNowDto, type EventControllerCreateData, type EventControllerCreateResponse, type EventControllerDeleteData, type EventControllerDeleteResponse, type EventControllerFindAllData, type EventControllerFindAllResponse, type EventControllerFindOneData, type EventControllerFindOneResponse, type EventControllerGetSliceData, type EventControllerGetSliceResponse, type EventControllerUpdateData, type EventControllerUpdateResponse, type EventListResponseDto, type EventResponseDto, type ExchangeRateControllerGetExchangeRateData, type ExchangeRateControllerGetExchangeRateResponse, type ExchangeRateWarningDto, type ExpectedTransactionControllerConfirmMatchData, type ExpectedTransactionControllerConfirmMatchResponse, type ExpectedTransactionControllerEnterNowData, type ExpectedTransactionControllerEnterNowResponse, type ExpectedTransactionControllerFindAllData, type ExpectedTransactionControllerFindAllResponse, type ExpectedTransactionControllerFindOneData, type ExpectedTransactionControllerFindOneResponse, type ExpectedTransactionControllerFindOverdueData, type ExpectedTransactionControllerFindOverdueResponse, type ExpectedTransactionControllerSkipData, type ExpectedTransactionControllerSkipResponse, type ExpectedTransactionControllerUndoSkipData, type ExpectedTransactionControllerUndoSkipResponse, type ExpectedTransactionControllerUnmatchData, type ExpectedTransactionControllerUnmatchResponse, type ExpectedTransactionListResponseDto, type ExpectedTransactionResponseDto, type ExpectedTransactionRuleDto, type ExpensesByCategoryResponseDto, type ExpensesByCategorySummaryDto, type ExportControllerExportBeancountResponse, type ExportRulesResponseDto, type ExternalAccountLinkControllerCreateData, type ExternalAccountLinkControllerCreateResponse, type ExternalAccountLinkControllerFindAllData, type ExternalAccountLinkControllerFindAllResponse, type ExternalAccountLinkControllerFindOneData, type ExternalAccountLinkControllerFindOneResponse, type ExternalAccountLinkControllerRemoveData, type ExternalAccountLinkControllerRemoveResponse, type ExternalAccountLinkListResponseDto, type ExternalAccountLinkResponseDto, type FileImportControllerIdentifyFileData, type FileImportControllerIdentifyFileResponse, type FileImportControllerImportBeancountData, type FileImportControllerImportBeancountResponse, type FileImportControllerImportFileData, type FileImportControllerImportFileResponse, type FileImportDto, type ForecastControllerGetForecastData, type ForecastControllerGetForecastResponse, type ForecastItemDto, type ForecastResponseDto, type FxRateDto, type GenerateSnapshotBody, type GenerateSnapshotResponse, type HealthControllerCheckDatabaseResponse, type HealthControllerCheckOpenBbResponse, type HealthControllerCheckRedisResponse, type HealthControllerGetCircuitBreakersHealthResponse, type HealthControllerGetHealthResponse, type HealthControllerGetMetricsResponse, type HealthControllerResetCircuitBreakerData, type HealthControllerResetCircuitBreakerResponse, HealthService, type HoldingAssetClassAccountSliceDto, type HoldingAssetClassCrossAccountResponseDto, type HoldingPnlControllerGetHoldingPnlData, type HoldingPnlControllerGetHoldingPnlResponse, type HoldingPnlResponseDto, type HoldingPnlRowDto, type HoldingPnlWarningDto, type IdentifyResultDto, type ImportErrorDto, type ImportResultDto, type ImporterConfigControllerGetConfigData, type ImporterConfigControllerGetConfigResponse, type ImporterConfigControllerResetConfigData, type ImporterConfigControllerResetConfigResponse, type ImporterConfigControllerUpdateConfigData, type ImporterConfigControllerUpdateConfigResponse, type ImporterConfigDataDto, type ImporterConfigDto, type InfoControllerGetInfoResponse, type MapperDefaultsDto, type MonetaryDto, type MonthlyForecastDto, type MultiCurrencyBalanceResponseDto, type MultiCurrencyPointDto, type NetWorthByCurrencyDto, type NetWorthResponseDto, type NlpAccountConfirmationDataDto, type NlpAlternativePayeeDto, type NlpControllerClearSessionData, type NlpControllerClearSessionResponse, type NlpControllerGetSessionData, type NlpControllerGetSessionResponse, type NlpControllerProcessNaturalLanguageData, type NlpControllerProcessNaturalLanguageResponse, type NlpDefaultAccountsDto, type NlpDuplicateConfirmationDataDto, type NlpParsedDataDto, type NlpPayeeConfirmationDataDto, type NlpResponseDto, type NlpRuleConfirmationDataDto, type NlpSimilarityDto, type NlpSourceTransactionDto, type NlpSuggestedAccountDto, type NlpSuggestedAccountsDto, type NlpSuggestedPayeeDto, type NlpTargetTransactionDto, type NlpTransactionInfoDto, type OnboardingAccountDto, type OnboardingControllerBootstrapData, type OnboardingControllerBootstrapResponse, type OnboardingDto, OpenAPI, type OpenAPIConfig, type OpeningBalanceResultDto, type PadReconciliationDto, type PadResultDto, type ParserTelemetryReportDto, type PayeeAutocompleteResponseDto, type PayeeControllerAutocompleteData, type PayeeControllerAutocompleteResponse, type PayeeControllerCreateData, type PayeeControllerCreateResponse, type PayeeControllerDeleteData, type PayeeControllerDeleteResponse, type PayeeControllerFindAllData, type PayeeControllerFindAllResponse, type PayeeControllerFindOneData, type PayeeControllerFindOneResponse, type PayeeControllerGetTopPayeesData, type PayeeControllerGetTopPayeesResponse, type PayeeControllerUpdateData, type PayeeControllerUpdateResponse, type PayeeListResponseDto, type PayeeProfileAdminControllerCreateData, type PayeeProfileAdminControllerCreateResponse, type PayeeProfileAdminControllerDeleteData, type PayeeProfileAdminControllerDeleteResponse, type PayeeProfileAdminControllerFindAllData, type PayeeProfileAdminControllerFindAllResponse, type PayeeProfileAdminControllerFindOneData, type PayeeProfileAdminControllerFindOneResponse, type PayeeProfileAdminControllerUnverifyData, type PayeeProfileAdminControllerUnverifyResponse, type PayeeProfileAdminControllerUpdateData, type PayeeProfileAdminControllerUpdateResponse, type PayeeProfileAdminControllerVerifyData, type PayeeProfileAdminControllerVerifyResponse, type PayeeProfileListResponseDto, type PayeeProfileResponseDto, type PayeeResponseDto, type PayeeStatsResponseDto, type PlatformControllerCreateData, type PlatformControllerCreateResponse, type PlatformControllerDeleteData, type PlatformControllerDeleteResponse, type PlatformControllerFindAllResponse, type PlatformControllerGetPlatformListResponse, type PlatformControllerMatchPlatformsData, type PlatformControllerMatchPlatformsResponse, type PlatformControllerUpdateData, type PlatformControllerUpdateResponse, type PlatformGroupDto, type PlatformListItemDto, type PlatformMatchResponseDto, type PlatformMatchResultDto, type PortfolioTrendsResponseDto, type PostingDetailDto, type PostingResponseDto, type PriceControllerBulkCreateData, type PriceControllerBulkCreateResponse, type PriceControllerCreateData, type PriceControllerCreateResponse, type PriceControllerDeleteData, type PriceControllerDeleteResponse, type PriceControllerFindAllData, type PriceControllerFindAllResponse, type PriceControllerFindOneData, type PriceControllerFindOneResponse, type PriceControllerUpdateData, type PriceControllerUpdateResponse, type PriceListResponseDto, type PriceResponseDto, type ProcessNlpDto, type PropertyControllerDeleteData, type PropertyControllerDeleteResponse, type PropertyControllerGetAllResponse, type PropertyControllerGetByKeyData, type PropertyControllerGetByKeyResponse, type PropertyControllerUpdateData, type PropertyControllerUpdateResponse, type ProviderSyncConfigDto, type ProviderSyncControllerGetSupportedProvidersData, type ProviderSyncControllerGetSupportedProvidersResponse, type ProviderSyncControllerIsProviderSupportedData, type ProviderSyncControllerIsProviderSupportedResponse, type ProviderSyncControllerSyncData, type ProviderSyncControllerSyncResponse, type ProviderSyncDto, type ProviderSyncResponseDto, ProviderSyncService, type ReconciliationComputeResultDto, type ReconciliationControllerAssertData, type ReconciliationControllerAssertResponse, type ReconciliationControllerComputeData, type ReconciliationControllerComputeResponse, type ReconciliationControllerHistoryData, type ReconciliationControllerHistoryResponse, type ReconciliationControllerPadData, type ReconciliationControllerPadResponse, type ReconciliationRecordDto, type RecurringMatchInfoDto, type RecurringRuleControllerCreateData, type RecurringRuleControllerCreateFromTransactionData, type RecurringRuleControllerCreateFromTransactionResponse, type RecurringRuleControllerCreateResponse, type RecurringRuleControllerDeleteData, type RecurringRuleControllerDeleteResponse, type RecurringRuleControllerFindAllData, type RecurringRuleControllerFindAllResponse, type RecurringRuleControllerFindOneData, type RecurringRuleControllerFindOneResponse, type RecurringRuleControllerGetWithStatsData, type RecurringRuleControllerGetWithStatsResponse, type RecurringRuleControllerUpdateData, type RecurringRuleControllerUpdateResponse, type RecurringRuleResponseDto, type RecurringRuleWithStatsResponseDto, type RecurringSuggestionDto, type RegionConfigDto, type RegionInfoDto, type RegionsMetadataResponseDto, type ReopenAccountDto, type ReportingControllerBackfillSnapshotsData, type ReportingControllerBackfillSnapshotsResponse, type ReportingControllerGenerateSnapshotData, type ReportingControllerGenerateSnapshotResponse, type ReportingControllerGetCashFlowTrendsData, type ReportingControllerGetCashFlowTrendsResponse, type ReportingControllerGetPortfolioTrendsData, type ReportingControllerGetPortfolioTrendsResponse, type ResolveResultDto, type ResolveReviewDto, type ReviewControllerBatchResolveData, type ReviewControllerBatchResolveResponse, type ReviewControllerFindAllData, type ReviewControllerFindAllResponse, type ReviewControllerFindOneData, type ReviewControllerFindOneResponse, type ReviewControllerGetStatsData, type ReviewControllerGetStatsResponse, type ReviewControllerResolveData, type ReviewControllerResolveResponse, type ReviewControllerUndoData, type ReviewControllerUndoResponse, type ReviewDetailDto, type ReviewItemPreviewDto, type ReviewListResponseDto, type ReviewStatsDto, type ReviewSummaryDto, type RuleStatisticsResponseDto, type SignupDto, type SignupResponseDto, type SupportedProvidersResponseDto, type SymbolControllerGetQuoteData, type SymbolControllerGetQuoteResponse, type SymbolControllerSearchData, type SymbolControllerSearchResponse, type SymbolQuoteDto, type SymbolSearchResultDto, type TagSuggestionDto, type TagSuggestionsResponseDto, type TelemetryControllerGetCoverageMetricsData, type TelemetryControllerGetCoverageMetricsResponse, type TelemetryControllerReportCoverageMissData, type TelemetryControllerReportCoverageMissResponse, type TelemetryControllerReportTelemetryData, type TelemetryControllerReportTelemetryResponse, type TemplateMetadataDto, type TemplateMetadataResponseDto, type TestRuleDto, type TestRuleResponseDto, type TimeSeriesPointDto, type TransactionControllerCorrectData, type TransactionControllerCorrectResponse, type TransactionControllerCreateBatchData, type TransactionControllerCreateBatchResponse, type TransactionControllerCreateData, type TransactionControllerCreateResponse, type TransactionControllerDeleteData, type TransactionControllerDeleteResponse, type TransactionControllerGetDetailData, type TransactionControllerGetDetailResponse, type TransactionControllerListData, type TransactionControllerListResponse, type TransactionControllerSuggestTagsData, type TransactionControllerSuggestTagsResponse, type TransactionControllerUpdateData, type TransactionControllerUpdateResponse, type TransactionDetailDto, type TransactionListResponseDto, type TransactionListSummaryDto, type TransactionResponseDto, type TransactionRuleControllerBulkCreateData, type TransactionRuleControllerBulkCreateResponse, type TransactionRuleControllerCreateData, type TransactionRuleControllerCreateResponse, type TransactionRuleControllerDeleteData, type TransactionRuleControllerDeleteResponse, type TransactionRuleControllerExportData, type TransactionRuleControllerExportResponse, type TransactionRuleControllerGetDetailData, type TransactionRuleControllerGetDetailResponse, type TransactionRuleControllerGetStatisticsData, type TransactionRuleControllerGetStatisticsResponse, type TransactionRuleControllerListData, type TransactionRuleControllerListResponse, type TransactionRuleControllerTestData, type TransactionRuleControllerTestResponse, type TransactionRuleControllerUpdateData, type TransactionRuleControllerUpdateResponse, type TransactionRuleControllerValidateData, type TransactionRuleControllerValidateResponse, type TransactionRuleListResponseDto, type TransactionRuleResponseDto, type TransactionSummaryDto, type TrendSummaryDto, type UncoveredFormatMissDto, type UndoResultDto, type UpdateAccountDto, type UpdateBeanEventDto, type UpdateBeanPriceDto, type UpdateCommodityDto, type UpdateConfigDataDto, type UpdateImporterConfigDto, type UpdateMapperDefaultsDto, type UpdatePayeeDto, type UpdatePayeeProfileDto, type UpdatePlatformDto, type UpdatePropertyDto, type UpdateRecurringRuleDto, type UpdateTransactionDto, type UpdateTransactionRuleDto, type UpdateUserSettingDto, type UserControllerDeleteOwnUserData, type UserControllerDeleteOwnUserResponse, type UserControllerDeleteUserData, type UserControllerDeleteUserResponse, type UserControllerGetAllUserSettingsByPageData, type UserControllerGetAllUserSettingsByPageResponse, type UserControllerGetAssetLiabilitySummaryResponse, type UserControllerGetUserData, type UserControllerGetUserInfoData, type UserControllerGetUserInfoResponse, type UserControllerGetUserResponse, type UserControllerSignupUserData, type UserControllerSignupUserResponse, type UserControllerUpdateUserSettingData, type UserControllerUpdateUserSettingResponse, type ValidateRuleDto, type ValidateRuleResponseDto, type VersionedConfigDto, type action, type action2, type assetClass, type assetSubClass, type assetSubType, type bookingMethod, type branchType, type category, type chartToken, type colorScheme, type confidenceLevel, type conflictStrategy, type dataSource, type equitySubType, type flag, type flag2, type frequency, type importerId, type intent, type investmentAction, type learningSource, type liabilitySubType, type matchLogic, type matchType, type matchType2, type method, type mode, type paymentSource, type period, type productCategory, type provider, type role, type source, type source2, type source3, type status, type status2, type status3, type status4, type suggestedAction, type suggestedFrequency, type type, type type2, type type3, type type4, type value, type viewMode };
9679
+ export { type $OpenApiTs, type AccountControllerAddOpeningBalanceData, type AccountControllerAddOpeningBalanceResponse, type AccountControllerCloseData, type AccountControllerCloseResponse, type AccountControllerCreateData, type AccountControllerCreateResponse, type AccountControllerDeleteData, type AccountControllerDeleteResponse, type AccountControllerFindAllData, type AccountControllerFindAllResponse, type AccountControllerFindOneData, type AccountControllerFindOneResponse, type AccountControllerReopenData, type AccountControllerReopenResponse, type AccountControllerUpdateData, type AccountControllerUpdateResponse, type AccountExchangeRateWarningDto, type AccountItemDto, type AccountItemWithAssetClassDto, type AccountListResponseDto, type AccountResponseDto, type AccountStandardListResponseDto, type AccountStandardResponseDto, type AccountStandardsControllerGetRegionsData, type AccountStandardsControllerGetRegionsResponse, type AccountStandardsControllerGetTemplateMetadataData, type AccountStandardsControllerGetTemplateMetadataResponse, type AccountStandardsControllerGetTemplatesData, type AccountStandardsControllerGetTemplatesResponse, type AccountsResponseDto, type AccountsSummaryDto, type ActualBalanceDto, type AmountDto, type AmountRangeDto, type AnonymousLoginDto, type AnonymousLoginResponseDto, type ApiKeysControllerCreateApiKeyResponse, type ApiProblemResponseDto, type AssertReconciliationDto, type AssetClassAccountsResponseDto, type AssetClassGroupDto, type AssetClassSummaryDto, type AuthControllerAccessTokenLoginData, type AuthControllerAccessTokenLoginResponse, type BackfillSnapshotsBody, type BackfillSnapshotsResponse, type BalanceByCurrencyDto, type BalanceControllerGetBalanceData, type BalanceControllerGetBalanceResponse, type BalanceControllerGetMultiCurrencyBalanceData, type BalanceControllerGetMultiCurrencyBalanceResponse, type BalanceResponseDto, type BatchCreateTransactionDto, type BatchResolveDto, type BatchResolveResultDto, type BatchTransactionErrorDto, type BatchTransactionResponseDto, BeanAccountsService, BeanBalancesService, BeanCommoditiesService, BeanTransactionsService, type BulkCreateRulesDto, type BulkCreateRulesResponseDto, type CacheControllerFlushCacheResponse, type CashFlowByCurrencyDto, type CashFlowPointDto, type CashFlowResponseDto, type CashFlowTrendSummaryDto, type CashFlowTrendsResponseDto, type CategoryCatalogControllerListData, type CategoryCatalogControllerListResponse, type CategoryCatalogEntryDto, type CategoryCatalogListResponseDto, type CategoryGroupDto, type ClientParsedDataDto, type CloseAccountDto, type CommodityControllerBulkCreateData, type CommodityControllerBulkCreateResponse, type CommodityControllerCreateData, type CommodityControllerCreateResponse, type CommodityControllerDeleteData, type CommodityControllerDeleteResponse, type CommodityControllerFindAllData, type CommodityControllerFindAllResponse, type CommodityControllerFindOneData, type CommodityControllerFindOneResponse, type CommodityControllerGetOrCreateData, type CommodityControllerGetOrCreateResponse, type CommodityControllerUpdateData, type CommodityControllerUpdateResponse, type CommodityListResponseDto, type CommodityResponseDto, type ComputeReconciliationDto, type ConfirmMatchDto, type ConvertedCashFlowDto, type ConvertedNetWorthDto, type CorrectTransactionDto, type CostDetailDto, type CostSpecDto, type CreateAccountDto, type CreateBeanEventDto, type CreateBeanPriceDto, type CreateCommodityDto, type CreateExternalAccountLinkDto, type CreateOpeningBalanceDto, type CreatePayeeDto, type CreatePayeeProfileDto, type CreatePlatformDto, type CreatePostingDto, type CreateRecurringRuleDto, type CreateRuleFromTransactionDto, type CreateTransactionDto, type CreateTransactionRuleDto, type CurrencyBalanceDto, type CurrentPriceDto, type DashboardControllerGetAccountsData, type DashboardControllerGetAccountsResponse, type DashboardControllerGetCashFlowData, type DashboardControllerGetCashFlowResponse, type DashboardControllerGetExpensesData, type DashboardControllerGetExpensesResponse, type DashboardControllerGetNetWorthData, type DashboardControllerGetNetWorthResponse, type DecisionOptionDto, type DeleteOwnUserDto, type EnterNowDto, type EventControllerCreateData, type EventControllerCreateResponse, type EventControllerDeleteData, type EventControllerDeleteResponse, type EventControllerFindAllData, type EventControllerFindAllResponse, type EventControllerFindOneData, type EventControllerFindOneResponse, type EventControllerGetSliceData, type EventControllerGetSliceResponse, type EventControllerUpdateData, type EventControllerUpdateResponse, type EventListResponseDto, type EventResponseDto, type ExchangeRateControllerGetExchangeRateData, type ExchangeRateControllerGetExchangeRateResponse, type ExchangeRateWarningDto, type ExpectedTransactionControllerConfirmMatchData, type ExpectedTransactionControllerConfirmMatchResponse, type ExpectedTransactionControllerEnterNowData, type ExpectedTransactionControllerEnterNowResponse, type ExpectedTransactionControllerFindAllData, type ExpectedTransactionControllerFindAllResponse, type ExpectedTransactionControllerFindOneData, type ExpectedTransactionControllerFindOneResponse, type ExpectedTransactionControllerFindOverdueData, type ExpectedTransactionControllerFindOverdueResponse, type ExpectedTransactionControllerSkipData, type ExpectedTransactionControllerSkipResponse, type ExpectedTransactionControllerUndoSkipData, type ExpectedTransactionControllerUndoSkipResponse, type ExpectedTransactionControllerUnmatchData, type ExpectedTransactionControllerUnmatchResponse, type ExpectedTransactionListResponseDto, type ExpectedTransactionResponseDto, type ExpectedTransactionRuleDto, type ExpensesByCategoryResponseDto, type ExpensesByCategorySummaryDto, type ExportControllerExportBeancountResponse, type ExportRulesResponseDto, type ExternalAccountLinkControllerCreateData, type ExternalAccountLinkControllerCreateResponse, type ExternalAccountLinkControllerFindAllData, type ExternalAccountLinkControllerFindAllResponse, type ExternalAccountLinkControllerFindOneData, type ExternalAccountLinkControllerFindOneResponse, type ExternalAccountLinkControllerRemoveData, type ExternalAccountLinkControllerRemoveResponse, type ExternalAccountLinkListResponseDto, type ExternalAccountLinkResponseDto, type FileImportControllerIdentifyFileData, type FileImportControllerIdentifyFileResponse, type FileImportControllerImportBeancountData, type FileImportControllerImportBeancountResponse, type FileImportControllerImportFileData, type FileImportControllerImportFileResponse, type FileImportDto, type ForecastControllerGetForecastData, type ForecastControllerGetForecastResponse, type ForecastItemDto, type ForecastResponseDto, type FxRateDto, type GenerateSnapshotBody, type GenerateSnapshotResponse, type HealthControllerCheckDatabaseResponse, type HealthControllerCheckOpenBbResponse, type HealthControllerCheckRedisResponse, type HealthControllerGetCircuitBreakersHealthResponse, type HealthControllerGetHealthResponse, type HealthControllerGetMetricsResponse, type HealthControllerResetCircuitBreakerData, type HealthControllerResetCircuitBreakerResponse, HealthService, type HoldingAssetClassAccountSliceDto, type HoldingAssetClassCrossAccountResponseDto, type HoldingPnlControllerGetHoldingPnlData, type HoldingPnlControllerGetHoldingPnlResponse, type HoldingPnlResponseDto, type HoldingPnlRowDto, type HoldingPnlWarningDto, type IdentifyResultDto, type ImportErrorDto, type ImportResultDto, type ImporterConfigControllerGetConfigData, type ImporterConfigControllerGetConfigResponse, type ImporterConfigControllerResetConfigData, type ImporterConfigControllerResetConfigResponse, type ImporterConfigControllerUpdateConfigData, type ImporterConfigControllerUpdateConfigResponse, type ImporterConfigDataDto, type ImporterConfigDto, type InfoControllerGetInfoResponse, type MapperDefaultsDto, type MonetaryDto, type MonthlyForecastDto, type MultiCurrencyBalanceResponseDto, type MultiCurrencyPointDto, type NetWorthByCurrencyDto, type NetWorthResponseDto, type NlpAccountConfirmationDataDto, type NlpAlternativePayeeDto, type NlpControllerClearSessionData, type NlpControllerClearSessionResponse, type NlpControllerGetSessionData, type NlpControllerGetSessionResponse, type NlpControllerProcessNaturalLanguageData, type NlpControllerProcessNaturalLanguageResponse, type NlpDefaultAccountsDto, type NlpDuplicateConfirmationDataDto, type NlpParsedDataDto, type NlpPayeeConfirmationDataDto, type NlpResponseDto, type NlpRuleConfirmationDataDto, type NlpSimilarityDto, type NlpSourceTransactionDto, type NlpSuggestedAccountDto, type NlpSuggestedAccountsDto, type NlpSuggestedPayeeDto, type NlpTargetTransactionDto, type NlpTransactionInfoDto, type OnboardingAccountDto, type OnboardingControllerBootstrapData, type OnboardingControllerBootstrapResponse, type OnboardingDto, OpenAPI, type OpenAPIConfig, type OpeningBalanceResultDto, type PadReconciliationDto, type PadResultDto, type ParserTelemetryReportDto, type PayeeAutocompleteResponseDto, type PayeeControllerAutocompleteData, type PayeeControllerAutocompleteResponse, type PayeeControllerCreateData, type PayeeControllerCreateResponse, type PayeeControllerDeleteData, type PayeeControllerDeleteResponse, type PayeeControllerFindAllData, type PayeeControllerFindAllResponse, type PayeeControllerFindOneData, type PayeeControllerFindOneResponse, type PayeeControllerGetTopPayeesData, type PayeeControllerGetTopPayeesResponse, type PayeeControllerUpdateData, type PayeeControllerUpdateResponse, type PayeeListResponseDto, type PayeeProfileAdminControllerCreateData, type PayeeProfileAdminControllerCreateResponse, type PayeeProfileAdminControllerDeleteData, type PayeeProfileAdminControllerDeleteResponse, type PayeeProfileAdminControllerFindAllData, type PayeeProfileAdminControllerFindAllResponse, type PayeeProfileAdminControllerFindOneData, type PayeeProfileAdminControllerFindOneResponse, type PayeeProfileAdminControllerUnverifyData, type PayeeProfileAdminControllerUnverifyResponse, type PayeeProfileAdminControllerUpdateData, type PayeeProfileAdminControllerUpdateResponse, type PayeeProfileAdminControllerVerifyData, type PayeeProfileAdminControllerVerifyResponse, type PayeeProfileListResponseDto, type PayeeProfileResponseDto, type PayeeResponseDto, type PayeeStatsResponseDto, type PlatformControllerCreateData, type PlatformControllerCreateResponse, type PlatformControllerDeleteData, type PlatformControllerDeleteResponse, type PlatformControllerFindAllResponse, type PlatformControllerGetPlatformListData, type PlatformControllerGetPlatformListResponse, type PlatformControllerMatchPlatformsData, type PlatformControllerMatchPlatformsResponse, type PlatformControllerUpdateData, type PlatformControllerUpdateResponse, type PlatformGroupDto, type PlatformListItemDto, type PlatformMatchResponseDto, type PlatformMatchResultDto, type PortfolioTrendsResponseDto, type PostingDetailDto, type PostingResponseDto, type PriceControllerBulkCreateData, type PriceControllerBulkCreateResponse, type PriceControllerCreateData, type PriceControllerCreateResponse, type PriceControllerDeleteData, type PriceControllerDeleteResponse, type PriceControllerFindAllData, type PriceControllerFindAllResponse, type PriceControllerFindOneData, type PriceControllerFindOneResponse, type PriceControllerUpdateData, type PriceControllerUpdateResponse, type PriceListResponseDto, type PriceResponseDto, type ProcessNlpDto, type PropertyControllerDeleteData, type PropertyControllerDeleteResponse, type PropertyControllerGetAllResponse, type PropertyControllerGetByKeyData, type PropertyControllerGetByKeyResponse, type PropertyControllerUpdateData, type PropertyControllerUpdateResponse, type ProviderSyncConfigDto, type ProviderSyncControllerGetSupportedProvidersData, type ProviderSyncControllerGetSupportedProvidersResponse, type ProviderSyncControllerIsProviderSupportedData, type ProviderSyncControllerIsProviderSupportedResponse, type ProviderSyncControllerSyncData, type ProviderSyncControllerSyncResponse, type ProviderSyncDto, type ProviderSyncResponseDto, ProviderSyncService, type ReconciliationComputeResultDto, type ReconciliationControllerAssertData, type ReconciliationControllerAssertResponse, type ReconciliationControllerComputeData, type ReconciliationControllerComputeResponse, type ReconciliationControllerHistoryData, type ReconciliationControllerHistoryResponse, type ReconciliationControllerPadData, type ReconciliationControllerPadResponse, type ReconciliationRecordDto, type RecurringMatchInfoDto, type RecurringRuleControllerCreateData, type RecurringRuleControllerCreateFromTransactionData, type RecurringRuleControllerCreateFromTransactionResponse, type RecurringRuleControllerCreateResponse, type RecurringRuleControllerDeleteData, type RecurringRuleControllerDeleteResponse, type RecurringRuleControllerFindAllData, type RecurringRuleControllerFindAllResponse, type RecurringRuleControllerFindOneData, type RecurringRuleControllerFindOneResponse, type RecurringRuleControllerGetWithStatsData, type RecurringRuleControllerGetWithStatsResponse, type RecurringRuleControllerUpdateData, type RecurringRuleControllerUpdateResponse, type RecurringRuleResponseDto, type RecurringRuleWithStatsResponseDto, type RecurringSuggestionDto, type RegionConfigDto, type RegionInfoDto, type RegionsMetadataResponseDto, type ReopenAccountDto, type ReportingControllerBackfillSnapshotsData, type ReportingControllerBackfillSnapshotsResponse, type ReportingControllerGenerateSnapshotData, type ReportingControllerGenerateSnapshotResponse, type ReportingControllerGetCashFlowTrendsData, type ReportingControllerGetCashFlowTrendsResponse, type ReportingControllerGetPortfolioTrendsData, type ReportingControllerGetPortfolioTrendsResponse, type ResolveResultDto, type ResolveReviewDto, type ReviewControllerBatchResolveData, type ReviewControllerBatchResolveResponse, type ReviewControllerFindAllData, type ReviewControllerFindAllResponse, type ReviewControllerFindOneData, type ReviewControllerFindOneResponse, type ReviewControllerGetStatsData, type ReviewControllerGetStatsResponse, type ReviewControllerResolveData, type ReviewControllerResolveResponse, type ReviewControllerUndoData, type ReviewControllerUndoResponse, type ReviewDetailDto, type ReviewItemPreviewDto, type ReviewListResponseDto, type ReviewStatsDto, type ReviewSummaryDto, type RuleStatisticsResponseDto, type SignupDto, type SignupResponseDto, type SupportedProvidersResponseDto, type SymbolControllerGetQuoteData, type SymbolControllerGetQuoteResponse, type SymbolControllerSearchData, type SymbolControllerSearchResponse, type SymbolQuoteDto, type SymbolSearchResultDto, type TagSuggestionDto, type TagSuggestionsResponseDto, type TelemetryControllerGetCoverageMetricsData, type TelemetryControllerGetCoverageMetricsResponse, type TelemetryControllerReportCoverageMissData, type TelemetryControllerReportCoverageMissResponse, type TelemetryControllerReportTelemetryData, type TelemetryControllerReportTelemetryResponse, type TemplateMetadataDto, type TemplateMetadataResponseDto, type TestRuleDto, type TestRuleResponseDto, type TimeSeriesPointDto, type TransactionControllerCorrectData, type TransactionControllerCorrectResponse, type TransactionControllerCreateBatchData, type TransactionControllerCreateBatchResponse, type TransactionControllerCreateData, type TransactionControllerCreateResponse, type TransactionControllerDeleteData, type TransactionControllerDeleteResponse, type TransactionControllerGetDetailData, type TransactionControllerGetDetailResponse, type TransactionControllerListData, type TransactionControllerListResponse, type TransactionControllerSuggestTagsData, type TransactionControllerSuggestTagsResponse, type TransactionControllerUpdateData, type TransactionControllerUpdateResponse, type TransactionDetailDto, type TransactionListResponseDto, type TransactionListSummaryDto, type TransactionResponseDto, type TransactionRuleControllerBulkCreateData, type TransactionRuleControllerBulkCreateResponse, type TransactionRuleControllerCreateData, type TransactionRuleControllerCreateResponse, type TransactionRuleControllerDeleteData, type TransactionRuleControllerDeleteResponse, type TransactionRuleControllerExportData, type TransactionRuleControllerExportResponse, type TransactionRuleControllerGetDetailData, type TransactionRuleControllerGetDetailResponse, type TransactionRuleControllerGetStatisticsData, type TransactionRuleControllerGetStatisticsResponse, type TransactionRuleControllerListData, type TransactionRuleControllerListResponse, type TransactionRuleControllerTestData, type TransactionRuleControllerTestResponse, type TransactionRuleControllerUpdateData, type TransactionRuleControllerUpdateResponse, type TransactionRuleControllerValidateData, type TransactionRuleControllerValidateResponse, type TransactionRuleListResponseDto, type TransactionRuleResponseDto, type TransactionSummaryDto, type TrendSummaryDto, type UncoveredFormatMissDto, type UndoResultDto, type UpdateAccountDto, type UpdateBeanEventDto, type UpdateBeanPriceDto, type UpdateCommodityDto, type UpdateConfigDataDto, type UpdateImporterConfigDto, type UpdateMapperDefaultsDto, type UpdatePayeeDto, type UpdatePayeeProfileDto, type UpdatePlatformDto, type UpdatePropertyDto, type UpdateRecurringRuleDto, type UpdateTransactionDto, type UpdateTransactionRuleDto, type UpdateUserSettingDto, type UserControllerDeleteOwnUserData, type UserControllerDeleteOwnUserResponse, type UserControllerDeleteUserData, type UserControllerDeleteUserResponse, type UserControllerGetAllUserSettingsByPageData, type UserControllerGetAllUserSettingsByPageResponse, type UserControllerGetAssetLiabilitySummaryResponse, type UserControllerGetUserData, type UserControllerGetUserInfoData, type UserControllerGetUserInfoResponse, type UserControllerGetUserResponse, type UserControllerSignupUserData, type UserControllerSignupUserResponse, type UserControllerUpdateUserSettingData, type UserControllerUpdateUserSettingResponse, type UserResponseDto, type UserSettingsResponseDto, type ValidateRuleDto, type ValidateRuleResponseDto, type VersionedConfigDto, type action, type action2, type assetClass, type assetSubClass, type assetSubType, type bookingMethod, type branchType, type category, type chartToken, type colorScheme, type confidenceLevel, type conflictStrategy, type dataSource, type equitySubType, type flag, type flag2, type frequency, type importerId, type intent, type investmentAction, type learningSource, type liabilitySubType, type matchLogic, type matchType, type matchType2, type method, type mode, type paymentSource, type period, type productCategory, type provider, type role, type scenario, type source, type source2, type source3, type status, type status2, type status3, type status4, type suggestedAction, type suggestedFrequency, type type, type type2, type type3, type type4, type value, type viewMode };