@firela/api-types 0.0.0-canary.209966 → 0.0.0-canary.a3c2cb48

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
@@ -623,6 +623,21 @@ type AccountStandardListResponseDto = {
623
623
  */
624
624
  region: string;
625
625
  };
626
+ type RegionConfigDto = {
627
+ currency: string;
628
+ dateFormat: string;
629
+ locale: string;
630
+ };
631
+ type RegionInfoDto = {
632
+ code: string;
633
+ displayName: string;
634
+ parent?: string;
635
+ chain: Array<string>;
636
+ config: RegionConfigDto;
637
+ };
638
+ type RegionsMetadataResponseDto = {
639
+ regions: Array<RegionInfoDto>;
640
+ };
626
641
  type BalanceResponseDto = {
627
642
  /**
628
643
  * Account name
@@ -717,9 +732,15 @@ type ReviewSummaryDto = {
717
732
  */
718
733
  confidenceLevel: 'HIGH' | 'MEDIUM' | 'LOW';
719
734
  /**
720
- * Human-readable summary of the review item
735
+ * i18n message key for summary (e.g., review.summary.duplicate). Translate on frontend with summaryParams.
736
+ */
737
+ summaryKey: string;
738
+ /**
739
+ * Parameters for summary message interpolation (e.g., { date: "2024-01-15", amount: "50" })
721
740
  */
722
- summary: string;
741
+ summaryParams?: {
742
+ [key: string]: string;
743
+ };
723
744
  /**
724
745
  * Human-readable reasons for branching
725
746
  */
@@ -848,9 +869,15 @@ type ReviewDetailDto = {
848
869
  */
849
870
  confidenceLevel: 'HIGH' | 'MEDIUM' | 'LOW';
850
871
  /**
851
- * Human-readable summary of the review item
872
+ * i18n message key for summary (e.g., review.summary.duplicate). Translate on frontend with summaryParams.
852
873
  */
853
- summary: string;
874
+ summaryKey: string;
875
+ /**
876
+ * Parameters for summary message interpolation (e.g., { date: "2024-01-15", amount: "50" })
877
+ */
878
+ summaryParams?: {
879
+ [key: string]: string;
880
+ };
854
881
  /**
855
882
  * Human-readable reasons for branching
856
883
  */
@@ -2099,7 +2126,7 @@ type ImporterConfigDto = {
2099
2126
  /**
2100
2127
  * Importer identifier
2101
2128
  */
2102
- importerId: 'alipay' | 'alipay-web' | 'alipay-yuebao' | 'wechat' | 'wechat-xlsx' | 'boc' | 'boc-credit' | 'ccb' | 'cmb' | 'cmbc' | 'cmbc-credit' | 'icbc' | 'icbc-credit' | 'hsbc-hk';
2129
+ importerId: 'alipay' | 'alipay-web' | 'alipay-yuebao' | 'wechat' | 'wechat-xlsx' | 'boc' | 'boc-credit' | 'ccb' | 'cmb' | 'cmbc' | 'cmbc-credit' | 'icbc' | 'icbc-credit' | 'hsbc-hk-credit' | 'hsbc-hk-debit';
2103
2130
  /**
2104
2131
  * Configuration version (semver)
2105
2132
  */
@@ -2124,7 +2151,7 @@ type ImporterConfigDto = {
2124
2151
  /**
2125
2152
  * Importer identifier
2126
2153
  */
2127
- type importerId = 'alipay' | 'alipay-web' | 'alipay-yuebao' | 'wechat' | 'wechat-xlsx' | 'boc' | 'boc-credit' | 'ccb' | 'cmb' | 'cmbc' | 'cmbc-credit' | 'icbc' | 'icbc-credit' | 'hsbc-hk';
2154
+ type importerId = 'alipay' | 'alipay-web' | 'alipay-yuebao' | 'wechat' | 'wechat-xlsx' | 'boc' | 'boc-credit' | 'ccb' | 'cmb' | 'cmbc' | 'cmbc-credit' | 'icbc' | 'icbc-credit' | 'hsbc-hk-credit' | 'hsbc-hk-debit';
2128
2155
  type ProviderSyncConfigDto = {
2129
2156
  /**
2130
2157
  * Source account for the first posting
@@ -2197,6 +2224,7 @@ type SupportedProvidersResponseDto = {
2197
2224
  */
2198
2225
  providers: Array<string>;
2199
2226
  };
2227
+ type ParserTelemetryReportDto = unknown;
2200
2228
  type ProcessNlpDto = {
2201
2229
  /**
2202
2230
  * Natural language text describing a transaction (Chinese)
@@ -3176,7 +3204,7 @@ type AccountControllerCreateData = {
3176
3204
  /**
3177
3205
  * Region code for tenant context
3178
3206
  */
3179
- region: 'cn' | 'us' | 'eu-core' | 'de';
3207
+ region: 'cn' | 'us' | 'de';
3180
3208
  requestBody: CreateAccountDto;
3181
3209
  };
3182
3210
  type AccountControllerCreateResponse = AccountResponseDto;
@@ -3196,7 +3224,7 @@ type AccountControllerFindAllData = {
3196
3224
  /**
3197
3225
  * Region code for tenant context
3198
3226
  */
3199
- region: 'cn' | 'us' | 'eu-core' | 'de';
3227
+ region: 'cn' | 'us' | 'de';
3200
3228
  /**
3201
3229
  * Search term for path or i18nKey
3202
3230
  */
@@ -3219,7 +3247,7 @@ type AccountControllerFindOneData = {
3219
3247
  /**
3220
3248
  * Region code for tenant context
3221
3249
  */
3222
- region: 'cn' | 'us' | 'eu-core' | 'de';
3250
+ region: 'cn' | 'us' | 'de';
3223
3251
  };
3224
3252
  type AccountControllerFindOneResponse = AccountResponseDto;
3225
3253
  type AccountControllerUpdateData = {
@@ -3230,7 +3258,7 @@ type AccountControllerUpdateData = {
3230
3258
  /**
3231
3259
  * Region code for tenant context
3232
3260
  */
3233
- region: 'cn' | 'us' | 'eu-core' | 'de';
3261
+ region: 'cn' | 'us' | 'de';
3234
3262
  requestBody: UpdateAccountDto;
3235
3263
  };
3236
3264
  type AccountControllerUpdateResponse = AccountResponseDto;
@@ -3242,7 +3270,7 @@ type AccountControllerDeleteData = {
3242
3270
  /**
3243
3271
  * Region code for tenant context
3244
3272
  */
3245
- region: 'cn' | 'us' | 'eu-core' | 'de';
3273
+ region: 'cn' | 'us' | 'de';
3246
3274
  };
3247
3275
  type AccountControllerDeleteResponse = void;
3248
3276
  type AccountControllerCloseData = {
@@ -3253,7 +3281,7 @@ type AccountControllerCloseData = {
3253
3281
  /**
3254
3282
  * Region code for tenant context
3255
3283
  */
3256
- region: 'cn' | 'us' | 'eu-core' | 'de';
3284
+ region: 'cn' | 'us' | 'de';
3257
3285
  requestBody: CloseAccountDto;
3258
3286
  };
3259
3287
  type AccountControllerCloseResponse = AccountResponseDto;
@@ -3265,7 +3293,7 @@ type AccountControllerReopenData = {
3265
3293
  /**
3266
3294
  * Region code for tenant context
3267
3295
  */
3268
- region: 'cn' | 'us' | 'eu-core' | 'de';
3296
+ region: 'cn' | 'us' | 'de';
3269
3297
  requestBody: ReopenAccountDto;
3270
3298
  };
3271
3299
  type AccountControllerReopenResponse = AccountResponseDto;
@@ -3273,7 +3301,7 @@ type TransactionControllerCreateData = {
3273
3301
  /**
3274
3302
  * Region code for tenant context
3275
3303
  */
3276
- region: 'cn' | 'us' | 'eu-core' | 'de';
3304
+ region: 'cn' | 'us' | 'de';
3277
3305
  /**
3278
3306
  * Transaction data with postings
3279
3307
  */
@@ -3304,7 +3332,7 @@ type TransactionControllerListData = {
3304
3332
  /**
3305
3333
  * Region code for tenant context
3306
3334
  */
3307
- region: 'cn' | 'us' | 'eu-core' | 'de';
3335
+ region: 'cn' | 'us' | 'de';
3308
3336
  /**
3309
3337
  * Search in narration and payee fields (max 200 chars)
3310
3338
  */
@@ -3319,7 +3347,7 @@ type TransactionControllerData = {
3319
3347
  /**
3320
3348
  * Region code for tenant context
3321
3349
  */
3322
- region: 'cn' | 'us' | 'eu-core' | 'de';
3350
+ region: 'cn' | 'us' | 'de';
3323
3351
  };
3324
3352
  type TransactionControllerResponse = unknown;
3325
3353
  type TransactionControllerGetDetailData = {
@@ -3330,7 +3358,7 @@ type TransactionControllerGetDetailData = {
3330
3358
  /**
3331
3359
  * Region code for tenant context
3332
3360
  */
3333
- region: 'cn' | 'us' | 'eu-core' | 'de';
3361
+ region: 'cn' | 'us' | 'de';
3334
3362
  };
3335
3363
  type TransactionControllerGetDetailResponse = TransactionDetailDto;
3336
3364
  type TransactionControllerUpdateData = {
@@ -3341,7 +3369,7 @@ type TransactionControllerUpdateData = {
3341
3369
  /**
3342
3370
  * Region code for tenant context
3343
3371
  */
3344
- region: 'cn' | 'us' | 'eu-core' | 'de';
3372
+ region: 'cn' | 'us' | 'de';
3345
3373
  /**
3346
3374
  * Fields to update (all optional)
3347
3375
  */
@@ -3352,14 +3380,14 @@ type TransactionController1Data = {
3352
3380
  /**
3353
3381
  * Region code for tenant context
3354
3382
  */
3355
- region: 'cn' | 'us' | 'eu-core' | 'de';
3383
+ region: 'cn' | 'us' | 'de';
3356
3384
  };
3357
3385
  type TransactionController1Response = void;
3358
3386
  type AccountStandardsControllerGetTemplatesData = {
3359
3387
  /**
3360
- * Region code (cn, us, eu-core, de)
3388
+ * Region code (cn, us, de)
3361
3389
  */
3362
- region: 'cn' | 'us' | 'eu-core' | 'de';
3390
+ region: 'cn' | 'us' | 'de';
3363
3391
  /**
3364
3392
  * Search term for path or description
3365
3393
  */
@@ -3370,15 +3398,7 @@ type AccountStandardsControllerGetTemplatesData = {
3370
3398
  type?: 'Assets' | 'Liabilities' | 'Income' | 'Expenses' | 'Equity';
3371
3399
  };
3372
3400
  type AccountStandardsControllerGetTemplatesResponse = AccountStandardListResponseDto;
3373
- type AccountStandardsControllerGetRegionsData = {
3374
- /**
3375
- * Region code (cn, us, eu-core, de)
3376
- */
3377
- region: 'cn' | 'us' | 'eu-core' | 'de';
3378
- };
3379
- type AccountStandardsControllerGetRegionsResponse = {
3380
- regions?: Array<string>;
3381
- };
3401
+ type AccountStandardsControllerGetRegionsResponse = RegionsMetadataResponseDto;
3382
3402
  type BalanceControllerGetBalanceData = {
3383
3403
  /**
3384
3404
  * Account name (e.g., "Assets:Bank:Checking")
@@ -3392,18 +3412,8 @@ type BalanceControllerGetBalanceData = {
3392
3412
  * Date to calculate balance at (ISO 8601 format)
3393
3413
  */
3394
3414
  date?: string;
3395
- /**
3396
- * Region code (cn, us, eu-core, de)
3397
- */
3398
- region: 'cn' | 'us' | 'eu-core' | 'de';
3399
3415
  };
3400
3416
  type BalanceControllerGetBalanceResponse = BalanceResponseDto;
3401
- type BalanceControllerGetMultiCurrencyBalanceData = {
3402
- /**
3403
- * Region code (cn, us, eu-core, de)
3404
- */
3405
- region: 'cn' | 'us' | 'eu-core' | 'de';
3406
- };
3407
3417
  type BalanceControllerGetMultiCurrencyBalanceResponse = MultiCurrencyBalanceResponseDto;
3408
3418
  type ReviewControllerFindAllData = {
3409
3419
  /**
@@ -3419,9 +3429,9 @@ type ReviewControllerFindAllData = {
3419
3429
  */
3420
3430
  page?: number;
3421
3431
  /**
3422
- * Region code (cn, us, eu-core, de)
3432
+ * Region code for tenant context
3423
3433
  */
3424
- region: 'cn' | 'us' | 'eu-core' | 'de';
3434
+ region: 'cn' | 'us' | 'de';
3425
3435
  /**
3426
3436
  * Sort order
3427
3437
  */
@@ -3434,9 +3444,9 @@ type ReviewControllerFindAllData = {
3434
3444
  type ReviewControllerFindAllResponse = ReviewListResponseDto;
3435
3445
  type ReviewControllerGetStatsData = {
3436
3446
  /**
3437
- * Region code (cn, us, eu-core, de)
3447
+ * Region code for tenant context
3438
3448
  */
3439
- region: 'cn' | 'us' | 'eu-core' | 'de';
3449
+ region: 'cn' | 'us' | 'de';
3440
3450
  };
3441
3451
  type ReviewControllerGetStatsResponse = ReviewStatsDto;
3442
3452
  type ReviewControllerFindOneData = {
@@ -3445,38 +3455,32 @@ type ReviewControllerFindOneData = {
3445
3455
  */
3446
3456
  id: string;
3447
3457
  /**
3448
- * Region code (cn, us, eu-core, de)
3458
+ * Region code for tenant context
3449
3459
  */
3450
- region: 'cn' | 'us' | 'eu-core' | 'de';
3460
+ region: 'cn' | 'us' | 'de';
3451
3461
  };
3452
3462
  type ReviewControllerFindOneResponse = ReviewDetailDto;
3453
3463
  type ReviewControllerData = {
3454
3464
  /**
3455
- * Region code (cn, us, eu-core, de)
3465
+ * Region code for tenant context
3456
3466
  */
3457
- region: 'cn' | 'us' | 'eu-core' | 'de';
3467
+ region: 'cn' | 'us' | 'de';
3458
3468
  };
3459
3469
  type ReviewControllerResponse = unknown;
3460
3470
  type ReviewController1Data = {
3461
3471
  /**
3462
- * Region code (cn, us, eu-core, de)
3472
+ * Region code for tenant context
3463
3473
  */
3464
- region: 'cn' | 'us' | 'eu-core' | 'de';
3474
+ region: 'cn' | 'us' | 'de';
3465
3475
  };
3466
3476
  type ReviewController1Response = unknown;
3467
3477
  type ReviewController2Data = {
3468
3478
  /**
3469
- * Region code (cn, us, eu-core, de)
3479
+ * Region code for tenant context
3470
3480
  */
3471
- region: 'cn' | 'us' | 'eu-core' | 'de';
3481
+ region: 'cn' | 'us' | 'de';
3472
3482
  };
3473
3483
  type ReviewController2Response = unknown;
3474
- type PayeeControllerData = {
3475
- /**
3476
- * Region code (cn, us, eu-core, de)
3477
- */
3478
- region: 'cn' | 'us' | 'eu-core' | 'de';
3479
- };
3480
3484
  type PayeeControllerResponse = unknown;
3481
3485
  type PayeeControllerFindAllData = {
3482
3486
  /**
@@ -3491,10 +3495,6 @@ type PayeeControllerFindAllData = {
3491
3495
  * Filter by exact payee name match
3492
3496
  */
3493
3497
  payee?: string;
3494
- /**
3495
- * Region code (cn, us, eu-core, de)
3496
- */
3497
- region: 'cn' | 'us' | 'eu-core' | 'de';
3498
3498
  /**
3499
3499
  * Search term for payee name (partial match, case-insensitive). Useful for autocomplete.
3500
3500
  */
@@ -3514,10 +3514,6 @@ type PayeeControllerAutocompleteData = {
3514
3514
  * Search query for payee name (partial match, case-insensitive)
3515
3515
  */
3516
3516
  q: string;
3517
- /**
3518
- * Region code (cn, us, eu-core, de)
3519
- */
3520
- region: 'cn' | 'us' | 'eu-core' | 'de';
3521
3517
  };
3522
3518
  type PayeeControllerAutocompleteResponse = PayeeAutocompleteResponseDto;
3523
3519
  type PayeeControllerGetTopPayeesData = {
@@ -3525,10 +3521,6 @@ type PayeeControllerGetTopPayeesData = {
3525
3521
  * Maximum number of results
3526
3522
  */
3527
3523
  limit?: number;
3528
- /**
3529
- * Region code (cn, us, eu-core, de)
3530
- */
3531
- region: 'cn' | 'us' | 'eu-core' | 'de';
3532
3524
  };
3533
3525
  type PayeeControllerGetTopPayeesResponse = Array<PayeeStatsResponseDto>;
3534
3526
  type PayeeControllerFindOneData = {
@@ -3536,32 +3528,10 @@ type PayeeControllerFindOneData = {
3536
3528
  * Payee UUID
3537
3529
  */
3538
3530
  id: string;
3539
- /**
3540
- * Region code (cn, us, eu-core, de)
3541
- */
3542
- region: 'cn' | 'us' | 'eu-core' | 'de';
3543
3531
  };
3544
3532
  type PayeeControllerFindOneResponse = PayeeResponseDto;
3545
- type PayeeController1Data = {
3546
- /**
3547
- * Region code (cn, us, eu-core, de)
3548
- */
3549
- region: 'cn' | 'us' | 'eu-core' | 'de';
3550
- };
3551
3533
  type PayeeController1Response = unknown;
3552
- type PayeeController2Data = {
3553
- /**
3554
- * Region code (cn, us, eu-core, de)
3555
- */
3556
- region: 'cn' | 'us' | 'eu-core' | 'de';
3557
- };
3558
3534
  type PayeeController2Response = void;
3559
- type PayeeProfileAdminControllerData = {
3560
- /**
3561
- * Region code (cn, us, eu-core, de)
3562
- */
3563
- region: 'cn' | 'us' | 'eu-core' | 'de';
3564
- };
3565
3535
  type PayeeProfileAdminControllerResponse = unknown;
3566
3536
  type PayeeProfileAdminControllerFindAllData = {
3567
3537
  /**
@@ -3580,10 +3550,6 @@ type PayeeProfileAdminControllerFindAllData = {
3580
3550
  * Filter by active status (default: true - show only active)
3581
3551
  */
3582
3552
  isActive?: boolean;
3583
- /**
3584
- * Region code (cn, us, eu-core, de)
3585
- */
3586
- region: 'cn' | 'us' | 'eu-core' | 'de';
3587
3553
  /**
3588
3554
  * Search term for canonical name and aliases (case-insensitive)
3589
3555
  */
@@ -3599,52 +3565,24 @@ type PayeeProfileAdminControllerFindOneData = {
3599
3565
  * Payee profile ID (UUID)
3600
3566
  */
3601
3567
  id: string;
3602
- /**
3603
- * Region code (cn, us, eu-core, de)
3604
- */
3605
- region: 'cn' | 'us' | 'eu-core' | 'de';
3606
3568
  };
3607
3569
  type PayeeProfileAdminControllerFindOneResponse = PayeeProfileResponseDto;
3608
- type PayeeProfileAdminController1Data = {
3609
- /**
3610
- * Region code (cn, us, eu-core, de)
3611
- */
3612
- region: 'cn' | 'us' | 'eu-core' | 'de';
3613
- };
3614
3570
  type PayeeProfileAdminController1Response = unknown;
3615
- type PayeeProfileAdminController2Data = {
3616
- /**
3617
- * Region code (cn, us, eu-core, de)
3618
- */
3619
- region: 'cn' | 'us' | 'eu-core' | 'de';
3620
- };
3621
3571
  type PayeeProfileAdminController2Response = void;
3622
- type PayeeProfileAdminController3Data = {
3623
- /**
3624
- * Region code (cn, us, eu-core, de)
3625
- */
3626
- region: 'cn' | 'us' | 'eu-core' | 'de';
3627
- };
3628
3572
  type PayeeProfileAdminController3Response = unknown;
3629
- type PayeeProfileAdminController4Data = {
3630
- /**
3631
- * Region code (cn, us, eu-core, de)
3632
- */
3633
- region: 'cn' | 'us' | 'eu-core' | 'de';
3634
- };
3635
3573
  type PayeeProfileAdminController4Response = unknown;
3636
3574
  type CommodityControllerData = {
3637
3575
  /**
3638
- * Region code (cn, us, eu-core, de)
3576
+ * Region code for tenant context
3639
3577
  */
3640
- region: 'cn' | 'us' | 'eu-core' | 'de';
3578
+ region: 'cn' | 'us' | 'de';
3641
3579
  };
3642
3580
  type CommodityControllerResponse = unknown;
3643
3581
  type CommodityControllerFindAllData = {
3644
3582
  /**
3645
- * Region code (cn, us, eu-core, de)
3583
+ * Region code for tenant context
3646
3584
  */
3647
- region: 'cn' | 'us' | 'eu-core' | 'de';
3585
+ region: 'cn' | 'us' | 'de';
3648
3586
  /**
3649
3587
  * Search term for symbol or metadata fields (partial match). Searches symbol and metadata.name.
3650
3588
  */
@@ -3657,9 +3595,9 @@ type CommodityControllerFindAllData = {
3657
3595
  type CommodityControllerFindAllResponse = CommodityListResponseDto;
3658
3596
  type CommodityControllerFindOneData = {
3659
3597
  /**
3660
- * Region code (cn, us, eu-core, de)
3598
+ * Region code for tenant context
3661
3599
  */
3662
- region: 'cn' | 'us' | 'eu-core' | 'de';
3600
+ region: 'cn' | 'us' | 'de';
3663
3601
  /**
3664
3602
  * Commodity symbol
3665
3603
  */
@@ -3668,37 +3606,37 @@ type CommodityControllerFindOneData = {
3668
3606
  type CommodityControllerFindOneResponse = CommodityResponseDto;
3669
3607
  type CommodityController1Data = {
3670
3608
  /**
3671
- * Region code (cn, us, eu-core, de)
3609
+ * Region code for tenant context
3672
3610
  */
3673
- region: 'cn' | 'us' | 'eu-core' | 'de';
3611
+ region: 'cn' | 'us' | 'de';
3674
3612
  };
3675
3613
  type CommodityController1Response = unknown;
3676
3614
  type CommodityController2Data = {
3677
3615
  /**
3678
- * Region code (cn, us, eu-core, de)
3616
+ * Region code for tenant context
3679
3617
  */
3680
- region: 'cn' | 'us' | 'eu-core' | 'de';
3618
+ region: 'cn' | 'us' | 'de';
3681
3619
  };
3682
3620
  type CommodityController2Response = void;
3683
3621
  type CommodityController3Data = {
3684
3622
  /**
3685
- * Region code (cn, us, eu-core, de)
3623
+ * Region code for tenant context
3686
3624
  */
3687
- region: 'cn' | 'us' | 'eu-core' | 'de';
3625
+ region: 'cn' | 'us' | 'de';
3688
3626
  };
3689
3627
  type CommodityController3Response = unknown;
3690
3628
  type CommodityController4Data = {
3691
3629
  /**
3692
- * Region code (cn, us, eu-core, de)
3630
+ * Region code for tenant context
3693
3631
  */
3694
- region: 'cn' | 'us' | 'eu-core' | 'de';
3632
+ region: 'cn' | 'us' | 'de';
3695
3633
  };
3696
3634
  type CommodityController4Response = unknown;
3697
3635
  type RecurringRuleControllerData = {
3698
3636
  /**
3699
- * Region code (cn, us, eu-core, de)
3637
+ * Region code for tenant context
3700
3638
  */
3701
- region: 'cn' | 'us' | 'eu-core' | 'de';
3639
+ region: 'cn' | 'us' | 'de';
3702
3640
  };
3703
3641
  type RecurringRuleControllerResponse = unknown;
3704
3642
  type RecurringRuleControllerFindAllData = {
@@ -3715,16 +3653,16 @@ type RecurringRuleControllerFindAllData = {
3715
3653
  */
3716
3654
  isActive?: boolean;
3717
3655
  /**
3718
- * Region code (cn, us, eu-core, de)
3656
+ * Region code for tenant context
3719
3657
  */
3720
- region: 'cn' | 'us' | 'eu-core' | 'de';
3658
+ region: 'cn' | 'us' | 'de';
3721
3659
  };
3722
3660
  type RecurringRuleControllerFindAllResponse = Array<RecurringRuleResponseDto>;
3723
3661
  type RecurringRuleController1Data = {
3724
3662
  /**
3725
- * Region code (cn, us, eu-core, de)
3663
+ * Region code for tenant context
3726
3664
  */
3727
- region: 'cn' | 'us' | 'eu-core' | 'de';
3665
+ region: 'cn' | 'us' | 'de';
3728
3666
  };
3729
3667
  type RecurringRuleController1Response = unknown;
3730
3668
  type RecurringRuleControllerFindOneData = {
@@ -3733,23 +3671,23 @@ type RecurringRuleControllerFindOneData = {
3733
3671
  */
3734
3672
  id: string;
3735
3673
  /**
3736
- * Region code (cn, us, eu-core, de)
3674
+ * Region code for tenant context
3737
3675
  */
3738
- region: 'cn' | 'us' | 'eu-core' | 'de';
3676
+ region: 'cn' | 'us' | 'de';
3739
3677
  };
3740
3678
  type RecurringRuleControllerFindOneResponse = RecurringRuleResponseDto;
3741
3679
  type RecurringRuleController2Data = {
3742
3680
  /**
3743
- * Region code (cn, us, eu-core, de)
3681
+ * Region code for tenant context
3744
3682
  */
3745
- region: 'cn' | 'us' | 'eu-core' | 'de';
3683
+ region: 'cn' | 'us' | 'de';
3746
3684
  };
3747
3685
  type RecurringRuleController2Response = unknown;
3748
3686
  type RecurringRuleController3Data = {
3749
3687
  /**
3750
- * Region code (cn, us, eu-core, de)
3688
+ * Region code for tenant context
3751
3689
  */
3752
- region: 'cn' | 'us' | 'eu-core' | 'de';
3690
+ region: 'cn' | 'us' | 'de';
3753
3691
  };
3754
3692
  type RecurringRuleController3Response = void;
3755
3693
  type RecurringRuleControllerGetWithStatsData = {
@@ -3758,9 +3696,9 @@ type RecurringRuleControllerGetWithStatsData = {
3758
3696
  */
3759
3697
  id: string;
3760
3698
  /**
3761
- * Region code (cn, us, eu-core, de)
3699
+ * Region code for tenant context
3762
3700
  */
3763
- region: 'cn' | 'us' | 'eu-core' | 'de';
3701
+ region: 'cn' | 'us' | 'de';
3764
3702
  };
3765
3703
  type RecurringRuleControllerGetWithStatsResponse = RecurringRuleWithStatsResponseDto;
3766
3704
  type ExpectedTransactionControllerFindAllData = {
@@ -3769,9 +3707,9 @@ type ExpectedTransactionControllerFindAllData = {
3769
3707
  */
3770
3708
  fromDate?: string;
3771
3709
  /**
3772
- * Region code (cn, us, eu-core, de)
3710
+ * Region code for tenant context
3773
3711
  */
3774
- region: 'cn' | 'us' | 'eu-core' | 'de';
3712
+ region: 'cn' | 'us' | 'de';
3775
3713
  /**
3776
3714
  * Filter by recurring rule ID
3777
3715
  */
@@ -3788,9 +3726,9 @@ type ExpectedTransactionControllerFindAllData = {
3788
3726
  type ExpectedTransactionControllerFindAllResponse = ExpectedTransactionListResponseDto;
3789
3727
  type ExpectedTransactionControllerFindOverdueData = {
3790
3728
  /**
3791
- * Region code (cn, us, eu-core, de)
3729
+ * Region code for tenant context
3792
3730
  */
3793
- region: 'cn' | 'us' | 'eu-core' | 'de';
3731
+ region: 'cn' | 'us' | 'de';
3794
3732
  };
3795
3733
  type ExpectedTransactionControllerFindOverdueResponse = ExpectedTransactionListResponseDto;
3796
3734
  type ExpectedTransactionControllerFindOneData = {
@@ -3799,44 +3737,44 @@ type ExpectedTransactionControllerFindOneData = {
3799
3737
  */
3800
3738
  id: string;
3801
3739
  /**
3802
- * Region code (cn, us, eu-core, de)
3740
+ * Region code for tenant context
3803
3741
  */
3804
- region: 'cn' | 'us' | 'eu-core' | 'de';
3742
+ region: 'cn' | 'us' | 'de';
3805
3743
  };
3806
3744
  type ExpectedTransactionControllerFindOneResponse = ExpectedTransactionResponseDto;
3807
3745
  type ExpectedTransactionControllerData = {
3808
3746
  /**
3809
- * Region code (cn, us, eu-core, de)
3747
+ * Region code for tenant context
3810
3748
  */
3811
- region: 'cn' | 'us' | 'eu-core' | 'de';
3749
+ region: 'cn' | 'us' | 'de';
3812
3750
  };
3813
3751
  type ExpectedTransactionControllerResponse = unknown;
3814
3752
  type ExpectedTransactionController1Data = {
3815
3753
  /**
3816
- * Region code (cn, us, eu-core, de)
3754
+ * Region code for tenant context
3817
3755
  */
3818
- region: 'cn' | 'us' | 'eu-core' | 'de';
3756
+ region: 'cn' | 'us' | 'de';
3819
3757
  };
3820
3758
  type ExpectedTransactionController1Response = unknown;
3821
3759
  type ExpectedTransactionController2Data = {
3822
3760
  /**
3823
- * Region code (cn, us, eu-core, de)
3761
+ * Region code for tenant context
3824
3762
  */
3825
- region: 'cn' | 'us' | 'eu-core' | 'de';
3763
+ region: 'cn' | 'us' | 'de';
3826
3764
  };
3827
3765
  type ExpectedTransactionController2Response = unknown;
3828
3766
  type ExpectedTransactionController3Data = {
3829
3767
  /**
3830
- * Region code (cn, us, eu-core, de)
3768
+ * Region code for tenant context
3831
3769
  */
3832
- region: 'cn' | 'us' | 'eu-core' | 'de';
3770
+ region: 'cn' | 'us' | 'de';
3833
3771
  };
3834
3772
  type ExpectedTransactionController3Response = unknown;
3835
3773
  type ExpectedTransactionController4Data = {
3836
3774
  /**
3837
- * Region code (cn, us, eu-core, de)
3775
+ * Region code for tenant context
3838
3776
  */
3839
- region: 'cn' | 'us' | 'eu-core' | 'de';
3777
+ region: 'cn' | 'us' | 'de';
3840
3778
  };
3841
3779
  type ExpectedTransactionController4Response = unknown;
3842
3780
  type ForecastControllerGetForecastData = {
@@ -3844,17 +3782,13 @@ type ForecastControllerGetForecastData = {
3844
3782
  * Number of months to forecast (1-12, default 3)
3845
3783
  */
3846
3784
  months?: number;
3847
- /**
3848
- * Region code (cn, us, eu-core, de)
3849
- */
3850
- region: 'cn' | 'us' | 'eu-core' | 'de';
3851
3785
  };
3852
3786
  type ForecastControllerGetForecastResponse = ForecastResponseDto;
3853
3787
  type TransactionRuleControllerData = {
3854
3788
  /**
3855
- * Region code (cn, us, eu-core, de)
3789
+ * Region code for tenant context
3856
3790
  */
3857
- region: 'cn' | 'us' | 'eu-core' | 'de';
3791
+ region: 'cn' | 'us' | 'de';
3858
3792
  };
3859
3793
  type TransactionRuleControllerResponse = unknown;
3860
3794
  type TransactionRuleControllerListData = {
@@ -3879,24 +3813,24 @@ type TransactionRuleControllerListData = {
3879
3813
  */
3880
3814
  offset?: number;
3881
3815
  /**
3882
- * Region code (cn, us, eu-core, de)
3816
+ * Region code for tenant context
3883
3817
  */
3884
- region: 'cn' | 'us' | 'eu-core' | 'de';
3818
+ region: 'cn' | 'us' | 'de';
3885
3819
  };
3886
3820
  type TransactionRuleControllerListResponse = TransactionRuleListResponseDto;
3887
3821
  type TransactionRuleControllerValidateData = {
3888
3822
  /**
3889
- * Region code (cn, us, eu-core, de)
3823
+ * Region code for tenant context
3890
3824
  */
3891
- region: 'cn' | 'us' | 'eu-core' | 'de';
3825
+ region: 'cn' | 'us' | 'de';
3892
3826
  requestBody: ValidateRuleDto;
3893
3827
  };
3894
3828
  type TransactionRuleControllerValidateResponse = ValidateRuleResponseDto;
3895
3829
  type TransactionRuleController1Data = {
3896
3830
  /**
3897
- * Region code (cn, us, eu-core, de)
3831
+ * Region code for tenant context
3898
3832
  */
3899
- region: 'cn' | 'us' | 'eu-core' | 'de';
3833
+ region: 'cn' | 'us' | 'de';
3900
3834
  };
3901
3835
  type TransactionRuleController1Response = unknown;
3902
3836
  type TransactionRuleControllerExportData = {
@@ -3905,9 +3839,9 @@ type TransactionRuleControllerExportData = {
3905
3839
  */
3906
3840
  format: 'json';
3907
3841
  /**
3908
- * Region code (cn, us, eu-core, de)
3842
+ * Region code for tenant context
3909
3843
  */
3910
- region: 'cn' | 'us' | 'eu-core' | 'de';
3844
+ region: 'cn' | 'us' | 'de';
3911
3845
  };
3912
3846
  type TransactionRuleControllerExportResponse = ExportRulesResponseDto;
3913
3847
  type TransactionRuleControllerGetStatisticsData = {
@@ -3916,16 +3850,16 @@ type TransactionRuleControllerGetStatisticsData = {
3916
3850
  */
3917
3851
  period: '7d' | '30d' | '90d';
3918
3852
  /**
3919
- * Region code (cn, us, eu-core, de)
3853
+ * Region code for tenant context
3920
3854
  */
3921
- region: 'cn' | 'us' | 'eu-core' | 'de';
3855
+ region: 'cn' | 'us' | 'de';
3922
3856
  };
3923
3857
  type TransactionRuleControllerGetStatisticsResponse = RuleStatisticsResponseDto;
3924
3858
  type TransactionRuleControllerGetDetailData = {
3925
3859
  /**
3926
- * Region code (cn, us, eu-core, de)
3860
+ * Region code for tenant context
3927
3861
  */
3928
- region: 'cn' | 'us' | 'eu-core' | 'de';
3862
+ region: 'cn' | 'us' | 'de';
3929
3863
  /**
3930
3864
  * Rule ID
3931
3865
  */
@@ -3934,23 +3868,23 @@ type TransactionRuleControllerGetDetailData = {
3934
3868
  type TransactionRuleControllerGetDetailResponse = TransactionRuleResponseDto;
3935
3869
  type TransactionRuleController2Data = {
3936
3870
  /**
3937
- * Region code (cn, us, eu-core, de)
3871
+ * Region code for tenant context
3938
3872
  */
3939
- region: 'cn' | 'us' | 'eu-core' | 'de';
3873
+ region: 'cn' | 'us' | 'de';
3940
3874
  };
3941
3875
  type TransactionRuleController2Response = unknown;
3942
3876
  type TransactionRuleController3Data = {
3943
3877
  /**
3944
- * Region code (cn, us, eu-core, de)
3878
+ * Region code for tenant context
3945
3879
  */
3946
- region: 'cn' | 'us' | 'eu-core' | 'de';
3880
+ region: 'cn' | 'us' | 'de';
3947
3881
  };
3948
3882
  type TransactionRuleController3Response = void;
3949
3883
  type TransactionRuleControllerTestData = {
3950
3884
  /**
3951
- * Region code (cn, us, eu-core, de)
3885
+ * Region code for tenant context
3952
3886
  */
3953
- region: 'cn' | 'us' | 'eu-core' | 'de';
3887
+ region: 'cn' | 'us' | 'de';
3954
3888
  requestBody: TestRuleDto;
3955
3889
  /**
3956
3890
  * Rule ID to test
@@ -3959,26 +3893,14 @@ type TransactionRuleControllerTestData = {
3959
3893
  };
3960
3894
  type TransactionRuleControllerTestResponse = TestRuleResponseDto;
3961
3895
  type UserControllerDeleteOwnUserData = {
3962
- /**
3963
- * Region code (cn, us, eu-core, de)
3964
- */
3965
- region: 'cn' | 'us' | 'eu-core' | 'de';
3966
3896
  requestBody: DeleteOwnUserDto;
3967
3897
  };
3968
3898
  type UserControllerDeleteOwnUserResponse = void;
3969
3899
  type UserControllerGetUserData = {
3970
3900
  acceptLanguage: string;
3971
- /**
3972
- * Region code (cn, us, eu-core, de)
3973
- */
3974
- region: 'cn' | 'us' | 'eu-core' | 'de';
3975
3901
  };
3976
3902
  type UserControllerGetUserResponse = unknown;
3977
3903
  type UserControllerSignupUserData = {
3978
- /**
3979
- * Region code (cn, us, eu-core, de)
3980
- */
3981
- region: 'cn' | 'us' | 'eu-core' | 'de';
3982
3904
  requestBody: SignupDto;
3983
3905
  };
3984
3906
  type UserControllerSignupUserResponse = unknown;
@@ -3987,10 +3909,6 @@ type UserControllerDeleteUserData = {
3987
3909
  * User ID to delete
3988
3910
  */
3989
3911
  id: string;
3990
- /**
3991
- * Region code (cn, us, eu-core, de)
3992
- */
3993
- region: 'cn' | 'us' | 'eu-core' | 'de';
3994
3912
  };
3995
3913
  type UserControllerDeleteUserResponse = void;
3996
3914
  type UserControllerGetUserInfoData = {
@@ -3998,17 +3916,9 @@ type UserControllerGetUserInfoData = {
3998
3916
  * User ID
3999
3917
  */
4000
3918
  id: string;
4001
- /**
4002
- * Region code (cn, us, eu-core, de)
4003
- */
4004
- region: 'cn' | 'us' | 'eu-core' | 'de';
4005
3919
  };
4006
3920
  type UserControllerGetUserInfoResponse = unknown;
4007
3921
  type UserControllerUpdateUserSettingData = {
4008
- /**
4009
- * Region code (cn, us, eu-core, de)
4010
- */
4011
- region: 'cn' | 'us' | 'eu-core' | 'de';
4012
3922
  requestBody: UpdateUserSettingDto;
4013
3923
  };
4014
3924
  type UserControllerUpdateUserSettingResponse = unknown;
@@ -4021,60 +3931,24 @@ type UserControllerGetAllUserSettingsByPageData = {
4021
3931
  * Page size
4022
3932
  */
4023
3933
  pageSize: number;
4024
- /**
4025
- * Region code (cn, us, eu-core, de)
4026
- */
4027
- region: 'cn' | 'us' | 'eu-core' | 'de';
4028
3934
  };
4029
3935
  type UserControllerGetAllUserSettingsByPageResponse = unknown;
4030
- type UserControllerGetAssetLiabilitySummaryData = {
4031
- /**
4032
- * Region code (cn, us, eu-core, de)
4033
- */
4034
- region: 'cn' | 'us' | 'eu-core' | 'de';
4035
- };
4036
3936
  type UserControllerGetAssetLiabilitySummaryResponse = unknown;
4037
- type PropertyControllerGetAllData = {
4038
- /**
4039
- * Region code (cn, us, eu-core, de)
4040
- */
4041
- region: 'cn' | 'us' | 'eu-core' | 'de';
4042
- };
4043
3937
  type PropertyControllerGetAllResponse = unknown;
4044
3938
  type PropertyControllerGetByKeyData = {
4045
3939
  /**
4046
3940
  * Property key
4047
3941
  */
4048
3942
  key: string;
4049
- /**
4050
- * Region code (cn, us, eu-core, de)
4051
- */
4052
- region: 'cn' | 'us' | 'eu-core' | 'de';
4053
3943
  };
4054
3944
  type PropertyControllerGetByKeyResponse = unknown;
4055
- type PropertyControllerData = {
4056
- /**
4057
- * Region code (cn, us, eu-core, de)
4058
- */
4059
- region: 'cn' | 'us' | 'eu-core' | 'de';
4060
- };
4061
3945
  type PropertyControllerResponse = unknown;
4062
- type PropertyController1Data = {
4063
- /**
4064
- * Region code (cn, us, eu-core, de)
4065
- */
4066
- region: 'cn' | 'us' | 'eu-core' | 'de';
4067
- };
4068
3946
  type PropertyController1Response = void;
4069
3947
  type FileImportControllerImportFileData = {
4070
3948
  /**
4071
3949
  * Bill file to import
4072
3950
  */
4073
3951
  formData: FileImportDto;
4074
- /**
4075
- * Region code (cn, us, eu-core, de)
4076
- */
4077
- region: 'cn' | 'us' | 'eu-core' | 'de';
4078
3952
  };
4079
3953
  type FileImportControllerImportFileResponse = ImportResultDto;
4080
3954
  type FileImportControllerIdentifyFileData = {
@@ -4082,42 +3956,38 @@ type FileImportControllerIdentifyFileData = {
4082
3956
  * File to identify
4083
3957
  */
4084
3958
  formData: FileImportDto;
4085
- /**
4086
- * Region code (cn, us, eu-core, de)
4087
- */
4088
- region: 'cn' | 'us' | 'eu-core' | 'de';
4089
3959
  };
4090
3960
  type FileImportControllerIdentifyFileResponse = IdentifyResultDto;
4091
3961
  type ImporterConfigControllerGetConfigData = {
4092
3962
  /**
4093
- * Importer identifier. Supported importers: alipay, alipay-web, wechat, boc, boc-credit, ccb, cmb, cmbc, cmbc-credit, icbc, icbc-credit, hsbc-hk
3963
+ * Importer identifier. Supported importers: alipay, alipay-web, wechat, boc, boc-credit, ccb, cmb, cmbc, cmbc-credit, icbc, icbc-credit, hsbc-hk-credit, hsbc-hk-debit
4094
3964
  */
4095
3965
  importerId: string;
4096
3966
  /**
4097
- * Region code (cn, us, eu-core, de)
3967
+ * Region code for tenant context
4098
3968
  */
4099
- region: 'cn' | 'us' | 'eu-core' | 'de';
3969
+ region: 'cn' | 'us' | 'de';
4100
3970
  };
4101
3971
  type ImporterConfigControllerGetConfigResponse = ImporterConfigDto;
4102
3972
  type ImporterConfigControllerData = {
4103
3973
  /**
4104
- * Region code (cn, us, eu-core, de)
3974
+ * Region code for tenant context
4105
3975
  */
4106
- region: 'cn' | 'us' | 'eu-core' | 'de';
3976
+ region: 'cn' | 'us' | 'de';
4107
3977
  };
4108
3978
  type ImporterConfigControllerResponse = unknown;
4109
3979
  type ImporterConfigController1Data = {
4110
3980
  /**
4111
- * Region code (cn, us, eu-core, de)
3981
+ * Region code for tenant context
4112
3982
  */
4113
- region: 'cn' | 'us' | 'eu-core' | 'de';
3983
+ region: 'cn' | 'us' | 'de';
4114
3984
  };
4115
3985
  type ImporterConfigController1Response = unknown;
4116
3986
  type ProviderSyncControllerSyncData = {
4117
3987
  /**
4118
3988
  * Provider name
4119
3989
  */
4120
- providerName: 'plaid' | 'teller' | 'truelayer' | 'gocardless' | 'simplefin' | 'yodlee' | 'beancount-direct';
3990
+ providerName: 'plaid' | 'teller' | 'truelayer' | 'gocardless' | 'simplefin' | 'yodlee' | 'beancount-direct' | 'parsed-bill';
4121
3991
  /**
4122
3992
  * Region code
4123
3993
  */
@@ -4125,29 +3995,19 @@ type ProviderSyncControllerSyncData = {
4125
3995
  requestBody: ProviderSyncDto;
4126
3996
  };
4127
3997
  type ProviderSyncControllerSyncResponse = ProviderSyncResponseDto;
4128
- type ProviderSyncControllerGetSupportedProvidersData = {
4129
- /**
4130
- * Region code (cn, us, eu-core, de)
4131
- */
4132
- region: 'cn' | 'us' | 'eu-core' | 'de';
4133
- };
4134
3998
  type ProviderSyncControllerGetSupportedProvidersResponse = SupportedProvidersResponseDto;
4135
3999
  type ProviderSyncControllerIsProviderSupportedData = {
4136
4000
  /**
4137
4001
  * Provider name to check
4138
4002
  */
4139
4003
  providerName: string;
4140
- /**
4141
- * Region code (cn, us, eu-core, de)
4142
- */
4143
- region: 'cn' | 'us' | 'eu-core' | 'de';
4144
4004
  };
4145
4005
  type ProviderSyncControllerIsProviderSupportedResponse = unknown;
4006
+ type TelemetryControllerReportTelemetryData = {
4007
+ requestBody: ParserTelemetryReportDto;
4008
+ };
4009
+ type TelemetryControllerReportTelemetryResponse = unknown;
4146
4010
  type NlpControllerProcessNaturalLanguageData = {
4147
- /**
4148
- * Region code (cn, us, eu-core, de)
4149
- */
4150
- region: 'cn' | 'us' | 'eu-core' | 'de';
4151
4011
  /**
4152
4012
  * Natural language transaction input with optional session ID
4153
4013
  */
@@ -4155,10 +4015,6 @@ type NlpControllerProcessNaturalLanguageData = {
4155
4015
  };
4156
4016
  type NlpControllerProcessNaturalLanguageResponse = NlpResponseDto;
4157
4017
  type NlpControllerClearSessionData = {
4158
- /**
4159
- * Region code (cn, us, eu-core, de)
4160
- */
4161
- region: 'cn' | 'us' | 'eu-core' | 'de';
4162
4018
  /**
4163
4019
  * Specific session ID to clear (defaults to user session)
4164
4020
  */
@@ -4166,50 +4022,16 @@ type NlpControllerClearSessionData = {
4166
4022
  };
4167
4023
  type NlpControllerClearSessionResponse = void;
4168
4024
  type NlpControllerGetSessionData = {
4169
- /**
4170
- * Region code (cn, us, eu-core, de)
4171
- */
4172
- region: 'cn' | 'us' | 'eu-core' | 'de';
4173
4025
  /**
4174
4026
  * Specific session ID to get (defaults to user session)
4175
4027
  */
4176
4028
  sessionId?: string;
4177
4029
  };
4178
4030
  type NlpControllerGetSessionResponse = unknown;
4179
- type PlatformControllerFindAllData = {
4180
- /**
4181
- * Region code (cn, us, eu-core, de)
4182
- */
4183
- region: 'cn' | 'us' | 'eu-core' | 'de';
4184
- };
4185
4031
  type PlatformControllerFindAllResponse = unknown;
4186
- type PlatformControllerData = {
4187
- /**
4188
- * Region code (cn, us, eu-core, de)
4189
- */
4190
- region: 'cn' | 'us' | 'eu-core' | 'de';
4191
- };
4192
4032
  type PlatformControllerResponse = unknown;
4193
- type PlatformControllerGetPlatformListData = {
4194
- /**
4195
- * Region code (cn, us, eu-core, de)
4196
- */
4197
- region: 'cn' | 'us' | 'eu-core' | 'de';
4198
- };
4199
4033
  type PlatformControllerGetPlatformListResponse = unknown;
4200
- type PlatformController1Data = {
4201
- /**
4202
- * Region code (cn, us, eu-core, de)
4203
- */
4204
- region: 'cn' | 'us' | 'eu-core' | 'de';
4205
- };
4206
4034
  type PlatformController1Response = unknown;
4207
- type PlatformController2Data = {
4208
- /**
4209
- * Region code (cn, us, eu-core, de)
4210
- */
4211
- region: 'cn' | 'us' | 'eu-core' | 'de';
4212
- };
4213
4035
  type PlatformController2Response = void;
4214
4036
  type SymbolControllerLookupSymbolData = {
4215
4037
  /**
@@ -4232,10 +4054,6 @@ type SymbolControllerLookupSymbolData = {
4232
4054
  * Search query string
4233
4055
  */
4234
4056
  query?: unknown;
4235
- /**
4236
- * Region code (cn, us, eu-core, de)
4237
- */
4238
- region: 'cn' | 'us' | 'eu-core' | 'de';
4239
4057
  };
4240
4058
  type SymbolControllerLookupSymbolResponse = unknown;
4241
4059
  type SymbolControllerGetSymbolDataData = {
@@ -4247,10 +4065,6 @@ type SymbolControllerGetSymbolDataData = {
4247
4065
  * Include historical price data (0 or 1)
4248
4066
  */
4249
4067
  includeHistoricalData?: unknown;
4250
- /**
4251
- * Region code (cn, us, eu-core, de)
4252
- */
4253
- region: 'cn' | 'us' | 'eu-core' | 'de';
4254
4068
  /**
4255
4069
  * Symbol identifier (e.g., ticker code)
4256
4070
  */
@@ -4266,39 +4080,19 @@ type SymbolControllerGatherSymbolForDateData = {
4266
4080
  * Date in ISO 8601 format (YYYY-MM-DD)
4267
4081
  */
4268
4082
  dateString: string;
4269
- /**
4270
- * Region code (cn, us, eu-core, de)
4271
- */
4272
- region: 'cn' | 'us' | 'eu-core' | 'de';
4273
4083
  /**
4274
4084
  * Symbol identifier (e.g., ticker code)
4275
4085
  */
4276
4086
  symbol: string;
4277
4087
  };
4278
4088
  type SymbolControllerGatherSymbolForDateResponse = unknown;
4279
- type SymbolControllerData = {
4280
- /**
4281
- * Region code (cn, us, eu-core, de)
4282
- */
4283
- region: 'cn' | 'us' | 'eu-core' | 'de';
4284
- };
4285
4089
  type SymbolControllerResponse = unknown;
4286
- type CacheControllerFlushCacheData = {
4287
- /**
4288
- * Region code (cn, us, eu-core, de)
4289
- */
4290
- region: 'cn' | 'us' | 'eu-core' | 'de';
4291
- };
4292
4090
  type CacheControllerFlushCacheResponse = unknown;
4293
4091
  type DashboardControllerGetNetWorthData = {
4294
4092
  /**
4295
4093
  * Date for balance calculation (ISO 8601 format)
4296
4094
  */
4297
4095
  date?: string;
4298
- /**
4299
- * Region code (cn, us, eu-core, de)
4300
- */
4301
- region: 'cn' | 'us' | 'eu-core' | 'de';
4302
4096
  };
4303
4097
  type DashboardControllerGetNetWorthResponse = NetWorthResponseDto;
4304
4098
  type DashboardControllerGetAccountsData = {
@@ -4310,10 +4104,6 @@ type DashboardControllerGetAccountsData = {
4310
4104
  * Grouping strategy
4311
4105
  */
4312
4106
  groupBy?: 'platform' | 'assetClass';
4313
- /**
4314
- * Region code (cn, us, eu-core, de)
4315
- */
4316
- region: 'cn' | 'us' | 'eu-core' | 'de';
4317
4107
  };
4318
4108
  type DashboardControllerGetAccountsResponse = AccountsResponseDto | AssetClassAccountsResponseDto;
4319
4109
  type DashboardControllerGetCashFlowData = {
@@ -4321,10 +4111,6 @@ type DashboardControllerGetCashFlowData = {
4321
4111
  * Period in YYYY-MM format
4322
4112
  */
4323
4113
  period: string;
4324
- /**
4325
- * Region code (cn, us, eu-core, de)
4326
- */
4327
- region: 'cn' | 'us' | 'eu-core' | 'de';
4328
4114
  };
4329
4115
  type DashboardControllerGetCashFlowResponse = CashFlowResponseDto;
4330
4116
  type ReportingControllerGetPortfolioTrendsData = {
@@ -4336,17 +4122,9 @@ type ReportingControllerGetPortfolioTrendsData = {
4336
4122
  * Time period
4337
4123
  */
4338
4124
  period?: '1m' | '3m' | '6m' | '1y';
4339
- /**
4340
- * Region code (cn, us, eu-core, de)
4341
- */
4342
- region: 'cn' | 'us' | 'eu-core' | 'de';
4343
4125
  };
4344
4126
  type ReportingControllerGetPortfolioTrendsResponse = PortfolioTrendsResponseDto;
4345
4127
  type ReportingControllerGenerateSnapshotData = {
4346
- /**
4347
- * Region code (cn, us, eu-core, de)
4348
- */
4349
- region: 'cn' | 'us' | 'eu-core' | 'de';
4350
4128
  /**
4351
4129
  * Optional date (defaults to today)
4352
4130
  */
@@ -4354,25 +4132,11 @@ type ReportingControllerGenerateSnapshotData = {
4354
4132
  };
4355
4133
  type ReportingControllerGenerateSnapshotResponse = GenerateSnapshotResponse;
4356
4134
  type ReportingControllerBackfillSnapshotsData = {
4357
- /**
4358
- * Region code (cn, us, eu-core, de)
4359
- */
4360
- region: 'cn' | 'us' | 'eu-core' | 'de';
4361
4135
  requestBody: BackfillSnapshotsBody;
4362
4136
  };
4363
4137
  type ReportingControllerBackfillSnapshotsResponse = BackfillSnapshotsResponse;
4364
- type ApiKeysControllerData = {
4365
- /**
4366
- * Region code (cn, us, eu-core, de)
4367
- */
4368
- region: 'cn' | 'us' | 'eu-core' | 'de';
4369
- };
4370
4138
  type ApiKeysControllerResponse = unknown;
4371
4139
  type AuthControllerAccessTokenLoginData = {
4372
- /**
4373
- * Region code (cn, us, eu-core, de)
4374
- */
4375
- region: 'cn' | 'us' | 'eu-core' | 'de';
4376
4140
  requestBody: AnonymousLoginDto;
4377
4141
  };
4378
4142
  type AuthControllerAccessTokenLoginResponse = unknown;
@@ -4381,107 +4145,45 @@ type ExchangeRateControllerGetExchangeRateData = {
4381
4145
  * Date in ISO format (YYYY-MM-DD)
4382
4146
  */
4383
4147
  dateString: string;
4384
- /**
4385
- * Region code (cn, us, eu-core, de)
4386
- */
4387
- region: 'cn' | 'us' | 'eu-core' | 'de';
4388
4148
  /**
4389
4149
  * Currency pair symbol (e.g., USDCNY, EURUSD)
4390
4150
  */
4391
4151
  symbol: string;
4392
4152
  };
4393
4153
  type ExchangeRateControllerGetExchangeRateResponse = unknown;
4394
- type HealthControllerGetHealthData = {
4395
- /**
4396
- * Region code (cn, us, eu-core, de)
4397
- */
4398
- region: 'cn' | 'us' | 'eu-core' | 'de';
4399
- };
4400
4154
  type HealthControllerGetHealthResponse = unknown;
4401
- type HealthControllerCheckDatabaseData = {
4402
- /**
4403
- * Region code (cn, us, eu-core, de)
4404
- */
4405
- region: 'cn' | 'us' | 'eu-core' | 'de';
4406
- };
4407
4155
  type HealthControllerCheckDatabaseResponse = unknown;
4408
- type HealthControllerCheckRedisData = {
4409
- /**
4410
- * Region code (cn, us, eu-core, de)
4411
- */
4412
- region: 'cn' | 'us' | 'eu-core' | 'de';
4413
- };
4414
4156
  type HealthControllerCheckRedisResponse = unknown;
4415
- type HealthControllerGetCircuitBreakersHealthData = {
4416
- /**
4417
- * Region code (cn, us, eu-core, de)
4418
- */
4419
- region: 'cn' | 'us' | 'eu-core' | 'de';
4420
- };
4421
4157
  type HealthControllerGetCircuitBreakersHealthResponse = unknown;
4422
4158
  type HealthControllerResetCircuitBreakerData = {
4423
4159
  /**
4424
4160
  * Circuit breaker name to reset
4425
4161
  */
4426
4162
  name: string;
4427
- /**
4428
- * Region code (cn, us, eu-core, de)
4429
- */
4430
- region: 'cn' | 'us' | 'eu-core' | 'de';
4431
4163
  };
4432
4164
  type HealthControllerResetCircuitBreakerResponse = unknown;
4433
- type HealthControllerGetMetricsData = {
4434
- /**
4435
- * Region code (cn, us, eu-core, de)
4436
- */
4437
- region: 'cn' | 'us' | 'eu-core' | 'de';
4438
- };
4439
4165
  type HealthControllerGetMetricsResponse = unknown;
4440
4166
  type HealthControllerGetHealthOfDataEnhancerData = {
4441
4167
  /**
4442
4168
  * Data enhancer name
4443
4169
  */
4444
4170
  name: string;
4445
- /**
4446
- * Region code (cn, us, eu-core, de)
4447
- */
4448
- region: 'cn' | 'us' | 'eu-core' | 'de';
4449
4171
  };
4450
4172
  type HealthControllerGetHealthOfDataEnhancerResponse = unknown;
4451
- type HealthControllerCheckDataProvidersData = {
4452
- /**
4453
- * Region code (cn, us, eu-core, de)
4454
- */
4455
- region: 'cn' | 'us' | 'eu-core' | 'de';
4456
- };
4457
4173
  type HealthControllerCheckDataProvidersResponse = unknown;
4458
4174
  type HealthControllerGetHealthOfDataProviderData = {
4459
4175
  /**
4460
4176
  * Data source identifier
4461
4177
  */
4462
4178
  dataSource: string;
4463
- /**
4464
- * Region code (cn, us, eu-core, de)
4465
- */
4466
- region: 'cn' | 'us' | 'eu-core' | 'de';
4467
4179
  };
4468
4180
  type HealthControllerGetHealthOfDataProviderResponse = unknown;
4469
- type InfoControllerGetInfoData = {
4470
- /**
4471
- * Region code (cn, us, eu-core, de)
4472
- */
4473
- region: 'cn' | 'us' | 'eu-core' | 'de';
4474
- };
4475
4181
  type InfoControllerGetInfoResponse = unknown;
4476
4182
  type LogoControllerGetLogoByDataSourceAndSymbolData = {
4477
4183
  /**
4478
4184
  * Data source identifier (e.g., YAHOO, COINGECKO)
4479
4185
  */
4480
4186
  dataSource: string;
4481
- /**
4482
- * Region code (cn, us, eu-core, de)
4483
- */
4484
- region: 'cn' | 'us' | 'eu-core' | 'de';
4485
4187
  /**
4486
4188
  * Asset symbol (e.g., AAPL, BTC)
4487
4189
  */
@@ -4489,10 +4191,6 @@ type LogoControllerGetLogoByDataSourceAndSymbolData = {
4489
4191
  };
4490
4192
  type LogoControllerGetLogoByDataSourceAndSymbolResponse = unknown;
4491
4193
  type LogoControllerGetLogoByUrlData = {
4492
- /**
4493
- * Region code (cn, us, eu-core, de)
4494
- */
4495
- region: 'cn' | 'us' | 'eu-core' | 'de';
4496
4194
  /**
4497
4195
  * Website URL to fetch favicon from
4498
4196
  */
@@ -4504,22 +4202,12 @@ type MarketDataControllerGetMarketDataBySymbolData = {
4504
4202
  * Data source provider
4505
4203
  */
4506
4204
  dataSource: 'ALPHA_VANTAGE' | 'EOD_HISTORICAL_DATA' | 'FINANCIAL_MODELING_PREP' | 'MANUAL' | 'RAPID_API' | 'YAHOO' | 'COINGECKO' | 'TUSHARE' | 'BLOOMBERG' | 'CSI' | 'STOOQ' | 'TRADING_VIEW';
4507
- /**
4508
- * Region code (cn, us, eu-core, de)
4509
- */
4510
- region: 'cn' | 'us' | 'eu-core' | 'de';
4511
4205
  /**
4512
4206
  * Symbol code
4513
4207
  */
4514
4208
  symbol: string;
4515
4209
  };
4516
4210
  type MarketDataControllerGetMarketDataBySymbolResponse = unknown;
4517
- type MarketDataControllerData = {
4518
- /**
4519
- * Region code (cn, us, eu-core, de)
4520
- */
4521
- region: 'cn' | 'us' | 'eu-core' | 'de';
4522
- };
4523
4211
  type MarketDataControllerResponse = unknown;
4524
4212
  type $OpenApiTs = {
4525
4213
  '/api/v1/{region}/bean/accounts': {
@@ -4736,14 +4424,11 @@ type $OpenApiTs = {
4736
4424
  };
4737
4425
  '/api/v1/{region}/bean/account-standards/regions': {
4738
4426
  get: {
4739
- req: AccountStandardsControllerGetRegionsData;
4740
4427
  res: {
4741
4428
  /**
4742
- * Regions retrieved successfully
4429
+ * Regions metadata retrieved successfully
4743
4430
  */
4744
- 200: {
4745
- regions?: Array<string>;
4746
- };
4431
+ 200: RegionsMetadataResponseDto;
4747
4432
  };
4748
4433
  };
4749
4434
  };
@@ -4768,7 +4453,6 @@ type $OpenApiTs = {
4768
4453
  };
4769
4454
  '/api/v1/{region}/bean/balances/multi-currency': {
4770
4455
  get: {
4771
- req: BalanceControllerGetMultiCurrencyBalanceData;
4772
4456
  res: {
4773
4457
  /**
4774
4458
  * Balances calculated successfully
@@ -4835,7 +4519,6 @@ type $OpenApiTs = {
4835
4519
  };
4836
4520
  '/api/v1/bean/payees': {
4837
4521
  post: {
4838
- req: PayeeControllerData;
4839
4522
  res: {
4840
4523
  201: unknown;
4841
4524
  };
@@ -4891,13 +4574,11 @@ type $OpenApiTs = {
4891
4574
  };
4892
4575
  };
4893
4576
  put: {
4894
- req: PayeeController1Data;
4895
4577
  res: {
4896
4578
  200: unknown;
4897
4579
  };
4898
4580
  };
4899
4581
  delete: {
4900
- req: PayeeController2Data;
4901
4582
  res: {
4902
4583
  204: void;
4903
4584
  };
@@ -4905,7 +4586,6 @@ type $OpenApiTs = {
4905
4586
  };
4906
4587
  '/api/v1/admin/payee-profiles': {
4907
4588
  post: {
4908
- req: PayeeProfileAdminControllerData;
4909
4589
  res: {
4910
4590
  201: unknown;
4911
4591
  };
@@ -4943,13 +4623,11 @@ type $OpenApiTs = {
4943
4623
  };
4944
4624
  };
4945
4625
  put: {
4946
- req: PayeeProfileAdminController1Data;
4947
4626
  res: {
4948
4627
  200: unknown;
4949
4628
  };
4950
4629
  };
4951
4630
  delete: {
4952
- req: PayeeProfileAdminController2Data;
4953
4631
  res: {
4954
4632
  204: void;
4955
4633
  };
@@ -4957,13 +4635,11 @@ type $OpenApiTs = {
4957
4635
  };
4958
4636
  '/api/v1/admin/payee-profiles/{id}/verify': {
4959
4637
  post: {
4960
- req: PayeeProfileAdminController3Data;
4961
4638
  res: {
4962
4639
  201: unknown;
4963
4640
  };
4964
4641
  };
4965
4642
  delete: {
4966
- req: PayeeProfileAdminController4Data;
4967
4643
  res: {
4968
4644
  200: unknown;
4969
4645
  };
@@ -5415,7 +5091,6 @@ type $OpenApiTs = {
5415
5091
  };
5416
5092
  '/api/v1/users/asset-liability-summary': {
5417
5093
  get: {
5418
- req: UserControllerGetAssetLiabilitySummaryData;
5419
5094
  res: {
5420
5095
  /**
5421
5096
  * Summary retrieved successfully
@@ -5426,7 +5101,6 @@ type $OpenApiTs = {
5426
5101
  };
5427
5102
  '/api/v1/admin/properties': {
5428
5103
  get: {
5429
- req: PropertyControllerGetAllData;
5430
5104
  res: {
5431
5105
  /**
5432
5106
  * Properties retrieved successfully
@@ -5466,13 +5140,11 @@ type $OpenApiTs = {
5466
5140
  };
5467
5141
  };
5468
5142
  put: {
5469
- req: PropertyControllerData;
5470
5143
  res: {
5471
5144
  200: unknown;
5472
5145
  };
5473
5146
  };
5474
5147
  delete: {
5475
- req: PropertyController1Data;
5476
5148
  res: {
5477
5149
  204: void;
5478
5150
  };
@@ -5605,7 +5277,6 @@ type $OpenApiTs = {
5605
5277
  };
5606
5278
  '/api/v1/{region}/bean/import/provider/supported': {
5607
5279
  get: {
5608
- req: ProviderSyncControllerGetSupportedProvidersData;
5609
5280
  res: {
5610
5281
  /**
5611
5282
  * List of supported providers
@@ -5633,6 +5304,21 @@ type $OpenApiTs = {
5633
5304
  };
5634
5305
  };
5635
5306
  };
5307
+ '/api/v1/{region}/bean/import/parser-telemetry': {
5308
+ post: {
5309
+ req: TelemetryControllerReportTelemetryData;
5310
+ res: {
5311
+ /**
5312
+ * Telemetry report received
5313
+ */
5314
+ 200: unknown;
5315
+ /**
5316
+ * Unauthorized
5317
+ */
5318
+ 401: unknown;
5319
+ };
5320
+ };
5321
+ };
5636
5322
  '/api/v1/{region}/bean/nlp/process': {
5637
5323
  post: {
5638
5324
  req: NlpControllerProcessNaturalLanguageData;
@@ -5682,7 +5368,6 @@ type $OpenApiTs = {
5682
5368
  };
5683
5369
  '/api/v1/bean/platforms': {
5684
5370
  get: {
5685
- req: PlatformControllerFindAllData;
5686
5371
  res: {
5687
5372
  /**
5688
5373
  * List of platforms with binding and account counts
@@ -5691,7 +5376,6 @@ type $OpenApiTs = {
5691
5376
  };
5692
5377
  };
5693
5378
  post: {
5694
- req: PlatformControllerData;
5695
5379
  res: {
5696
5380
  201: unknown;
5697
5381
  };
@@ -5699,7 +5383,6 @@ type $OpenApiTs = {
5699
5383
  };
5700
5384
  '/api/v1/bean/platforms/list': {
5701
5385
  get: {
5702
- req: PlatformControllerGetPlatformListData;
5703
5386
  res: {
5704
5387
  /**
5705
5388
  * List of platforms with user binding status
@@ -5710,13 +5393,11 @@ type $OpenApiTs = {
5710
5393
  };
5711
5394
  '/api/v1/bean/platforms/{id}': {
5712
5395
  put: {
5713
- req: PlatformController1Data;
5714
5396
  res: {
5715
5397
  200: unknown;
5716
5398
  };
5717
5399
  };
5718
5400
  delete: {
5719
- req: PlatformController2Data;
5720
5401
  res: {
5721
5402
  204: void;
5722
5403
  };
@@ -5777,7 +5458,6 @@ type $OpenApiTs = {
5777
5458
  };
5778
5459
  '/api/v1/market/symbols/yahoo/batch-update': {
5779
5460
  put: {
5780
- req: SymbolControllerData;
5781
5461
  res: {
5782
5462
  200: unknown;
5783
5463
  };
@@ -5785,7 +5465,6 @@ type $OpenApiTs = {
5785
5465
  };
5786
5466
  '/api/v1/cache/flush': {
5787
5467
  post: {
5788
- req: CacheControllerFlushCacheData;
5789
5468
  res: {
5790
5469
  201: unknown;
5791
5470
  };
@@ -5899,7 +5578,6 @@ type $OpenApiTs = {
5899
5578
  };
5900
5579
  '/api/v1/auth/api-keys': {
5901
5580
  post: {
5902
- req: ApiKeysControllerData;
5903
5581
  res: {
5904
5582
  201: unknown;
5905
5583
  };
@@ -5937,7 +5615,6 @@ type $OpenApiTs = {
5937
5615
  };
5938
5616
  '/api/v1/health': {
5939
5617
  get: {
5940
- req: HealthControllerGetHealthData;
5941
5618
  res: {
5942
5619
  /**
5943
5620
  * Service is healthy
@@ -5952,7 +5629,6 @@ type $OpenApiTs = {
5952
5629
  };
5953
5630
  '/api/v1/health/database': {
5954
5631
  get: {
5955
- req: HealthControllerCheckDatabaseData;
5956
5632
  res: {
5957
5633
  /**
5958
5634
  * Database is healthy
@@ -5967,7 +5643,6 @@ type $OpenApiTs = {
5967
5643
  };
5968
5644
  '/api/v1/health/redis': {
5969
5645
  get: {
5970
- req: HealthControllerCheckRedisData;
5971
5646
  res: {
5972
5647
  /**
5973
5648
  * Redis is healthy
@@ -5982,7 +5657,6 @@ type $OpenApiTs = {
5982
5657
  };
5983
5658
  '/api/v1/health/circuit-breakers': {
5984
5659
  get: {
5985
- req: HealthControllerGetCircuitBreakersHealthData;
5986
5660
  res: {
5987
5661
  /**
5988
5662
  * Circuit breaker status
@@ -6020,7 +5694,6 @@ type $OpenApiTs = {
6020
5694
  };
6021
5695
  '/api/v1/health/metrics': {
6022
5696
  get: {
6023
- req: HealthControllerGetMetricsData;
6024
5697
  res: {
6025
5698
  /**
6026
5699
  * Health metrics
@@ -6054,7 +5727,6 @@ type $OpenApiTs = {
6054
5727
  };
6055
5728
  '/api/v1/health/data-providers': {
6056
5729
  get: {
6057
- req: HealthControllerCheckDataProvidersData;
6058
5730
  res: {
6059
5731
  /**
6060
5732
  * Data providers health status
@@ -6096,7 +5768,6 @@ type $OpenApiTs = {
6096
5768
  };
6097
5769
  '/api/v1/system/info': {
6098
5770
  get: {
6099
- req: InfoControllerGetInfoData;
6100
5771
  res: {
6101
5772
  /**
6102
5773
  * System information retrieved successfully
@@ -6166,7 +5837,6 @@ type $OpenApiTs = {
6166
5837
  };
6167
5838
  };
6168
5839
  post: {
6169
- req: MarketDataControllerData;
6170
5840
  res: {
6171
5841
  201: unknown;
6172
5842
  };
@@ -6256,8 +5926,9 @@ declare class BeanAccountsService {
6256
5926
  }
6257
5927
  declare class BeanTransactionsService {
6258
5928
  /**
6259
- * Create transaction
6260
- * Creates a new double-entry transaction. Missing accounts are auto-created by default.
5929
+ * @deprecated
5930
+ * Create transaction (DEPRECATED)
5931
+ * DEPRECATED: Use POST /:region/bean/import/provider/:name/sync instead. This endpoint skips dedup, rule matching, and review branching.
6261
5932
  * @param data The data for the request.
6262
5933
  * @param data.region Region code for tenant context
6263
5934
  * @param data.requestBody Transaction data with postings
@@ -6323,7 +5994,6 @@ declare class BeanBalancesService {
6323
5994
  * Calculate account balance at a specific date for a single currency
6324
5995
  * @param data The data for the request.
6325
5996
  * @param data.account Account name (e.g., "Assets:Bank:Checking")
6326
- * @param data.region Region code (cn, us, eu-core, de)
6327
5997
  * @param data.date Date to calculate balance at (ISO 8601 format)
6328
5998
  * @param data.currency Currency to query (e.g., "USD", "CNY")
6329
5999
  * @returns BalanceResponseDto Balance calculated successfully
@@ -6333,17 +6003,15 @@ declare class BeanBalancesService {
6333
6003
  /**
6334
6004
  * Query multi-currency account balance
6335
6005
  * Calculate account balances for all currencies at a specific date
6336
- * @param data The data for the request.
6337
- * @param data.region Region code (cn, us, eu-core, de)
6338
6006
  * @returns MultiCurrencyBalanceResponseDto Balances calculated successfully
6339
6007
  * @throws ApiError
6340
6008
  */
6341
- static balanceControllerGetMultiCurrencyBalance(data: BalanceControllerGetMultiCurrencyBalanceData): CancelablePromise<BalanceControllerGetMultiCurrencyBalanceResponse>;
6009
+ static balanceControllerGetMultiCurrencyBalance(): CancelablePromise<BalanceControllerGetMultiCurrencyBalanceResponse>;
6342
6010
  }
6343
6011
  declare class BeanCommoditiesService {
6344
6012
  /**
6345
6013
  * @param data The data for the request.
6346
- * @param data.region Region code (cn, us, eu-core, de)
6014
+ * @param data.region Region code for tenant context
6347
6015
  * @returns unknown
6348
6016
  * @throws ApiError
6349
6017
  */
@@ -6352,7 +6020,7 @@ declare class BeanCommoditiesService {
6352
6020
  * List user commodities
6353
6021
  * Returns all commodity definitions for the authenticated user with optional filtering
6354
6022
  * @param data The data for the request.
6355
- * @param data.region Region code (cn, us, eu-core, de)
6023
+ * @param data.region Region code for tenant context
6356
6024
  * @param data.search Search term for symbol or metadata fields (partial match). Searches symbol and metadata.name.
6357
6025
  * @param data.symbol Filter by exact symbol match
6358
6026
  * @returns CommodityListResponseDto Commodities retrieved successfully
@@ -6364,35 +6032,35 @@ declare class BeanCommoditiesService {
6364
6032
  * Returns a specific commodity definition by its symbol
6365
6033
  * @param data The data for the request.
6366
6034
  * @param data.symbol Commodity symbol
6367
- * @param data.region Region code (cn, us, eu-core, de)
6035
+ * @param data.region Region code for tenant context
6368
6036
  * @returns CommodityResponseDto Commodity retrieved successfully
6369
6037
  * @throws ApiError
6370
6038
  */
6371
6039
  static commodityControllerFindOne(data: CommodityControllerFindOneData): CancelablePromise<CommodityControllerFindOneResponse>;
6372
6040
  /**
6373
6041
  * @param data The data for the request.
6374
- * @param data.region Region code (cn, us, eu-core, de)
6042
+ * @param data.region Region code for tenant context
6375
6043
  * @returns unknown
6376
6044
  * @throws ApiError
6377
6045
  */
6378
6046
  static commodityController1(data: CommodityController1Data): CancelablePromise<CommodityController1Response>;
6379
6047
  /**
6380
6048
  * @param data The data for the request.
6381
- * @param data.region Region code (cn, us, eu-core, de)
6049
+ * @param data.region Region code for tenant context
6382
6050
  * @returns void
6383
6051
  * @throws ApiError
6384
6052
  */
6385
6053
  static commodityController2(data: CommodityController2Data): CancelablePromise<CommodityController2Response>;
6386
6054
  /**
6387
6055
  * @param data The data for the request.
6388
- * @param data.region Region code (cn, us, eu-core, de)
6056
+ * @param data.region Region code for tenant context
6389
6057
  * @returns unknown
6390
6058
  * @throws ApiError
6391
6059
  */
6392
6060
  static commodityController3(data: CommodityController3Data): CancelablePromise<CommodityController3Response>;
6393
6061
  /**
6394
6062
  * @param data The data for the request.
6395
- * @param data.region Region code (cn, us, eu-core, de)
6063
+ * @param data.region Region code for tenant context
6396
6064
  * @returns unknown
6397
6065
  * @throws ApiError
6398
6066
  */
@@ -6412,6 +6080,7 @@ declare class ProviderSyncService {
6412
6080
  * - **simplefin**: SimpleFIN (Self-hosted)
6413
6081
  * - **yodlee**: Yodlee (Global)
6414
6082
  * - **beancount-direct**: Beancount format transactions
6083
+ * - **parsed-bill**: Client-side parsed bill transactions
6415
6084
  *
6416
6085
  * **Processing Flow:**
6417
6086
  * 1. Transform raw data via provider adapter
@@ -6432,18 +6101,15 @@ declare class ProviderSyncService {
6432
6101
  /**
6433
6102
  * Get supported providers
6434
6103
  * Returns a list of all providers supported by the sync endpoint.
6435
- * @param data The data for the request.
6436
- * @param data.region Region code (cn, us, eu-core, de)
6437
6104
  * @returns SupportedProvidersResponseDto List of supported providers
6438
6105
  * @throws ApiError
6439
6106
  */
6440
- static providerSyncControllerGetSupportedProviders(data: ProviderSyncControllerGetSupportedProvidersData): CancelablePromise<ProviderSyncControllerGetSupportedProvidersResponse>;
6107
+ static providerSyncControllerGetSupportedProviders(): CancelablePromise<ProviderSyncControllerGetSupportedProvidersResponse>;
6441
6108
  /**
6442
6109
  * Check if provider is supported
6443
6110
  * Returns whether a specific provider is supported.
6444
6111
  * @param data The data for the request.
6445
6112
  * @param data.providerName Provider name to check
6446
- * @param data.region Region code (cn, us, eu-core, de)
6447
6113
  * @returns unknown Provider support status
6448
6114
  * @throws ApiError
6449
6115
  */
@@ -6452,75 +6118,60 @@ declare class ProviderSyncService {
6452
6118
  declare class HealthService {
6453
6119
  /**
6454
6120
  * Basic health check for K8s/load balancer probes
6455
- * @param data The data for the request.
6456
- * @param data.region Region code (cn, us, eu-core, de)
6457
6121
  * @returns unknown Service is healthy
6458
6122
  * @throws ApiError
6459
6123
  */
6460
- static healthControllerGetHealth(data: HealthControllerGetHealthData): CancelablePromise<HealthControllerGetHealthResponse>;
6124
+ static healthControllerGetHealth(): CancelablePromise<HealthControllerGetHealthResponse>;
6461
6125
  /**
6462
6126
  * Check database connection health
6463
- * @param data The data for the request.
6464
- * @param data.region Region code (cn, us, eu-core, de)
6465
6127
  * @returns unknown Database is healthy
6466
6128
  * @throws ApiError
6467
6129
  */
6468
- static healthControllerCheckDatabase(data: HealthControllerCheckDatabaseData): CancelablePromise<HealthControllerCheckDatabaseResponse>;
6130
+ static healthControllerCheckDatabase(): CancelablePromise<HealthControllerCheckDatabaseResponse>;
6469
6131
  /**
6470
6132
  * Check Redis connection health
6471
- * @param data The data for the request.
6472
- * @param data.region Region code (cn, us, eu-core, de)
6473
6133
  * @returns unknown Redis is healthy
6474
6134
  * @throws ApiError
6475
6135
  */
6476
- static healthControllerCheckRedis(data: HealthControllerCheckRedisData): CancelablePromise<HealthControllerCheckRedisResponse>;
6136
+ static healthControllerCheckRedis(): CancelablePromise<HealthControllerCheckRedisResponse>;
6477
6137
  /**
6478
6138
  * Get status of all circuit breakers
6479
- * @param data The data for the request.
6480
- * @param data.region Region code (cn, us, eu-core, de)
6481
6139
  * @returns unknown Circuit breaker status
6482
6140
  * @throws ApiError
6483
6141
  */
6484
- static healthControllerGetCircuitBreakersHealth(data: HealthControllerGetCircuitBreakersHealthData): CancelablePromise<HealthControllerGetCircuitBreakersHealthResponse>;
6142
+ static healthControllerGetCircuitBreakersHealth(): CancelablePromise<HealthControllerGetCircuitBreakersHealthResponse>;
6485
6143
  /**
6486
6144
  * Reset a circuit breaker to CLOSED state
6487
6145
  * @param data The data for the request.
6488
6146
  * @param data.name Circuit breaker name to reset
6489
- * @param data.region Region code (cn, us, eu-core, de)
6490
6147
  * @returns unknown Circuit breaker reset successfully
6491
6148
  * @throws ApiError
6492
6149
  */
6493
6150
  static healthControllerResetCircuitBreaker(data: HealthControllerResetCircuitBreakerData): CancelablePromise<HealthControllerResetCircuitBreakerResponse>;
6494
6151
  /**
6495
6152
  * Get health check metrics and statistics
6496
- * @param data The data for the request.
6497
- * @param data.region Region code (cn, us, eu-core, de)
6498
6153
  * @returns unknown Health metrics
6499
6154
  * @throws ApiError
6500
6155
  */
6501
- static healthControllerGetMetrics(data: HealthControllerGetMetricsData): CancelablePromise<HealthControllerGetMetricsResponse>;
6156
+ static healthControllerGetMetrics(): CancelablePromise<HealthControllerGetMetricsResponse>;
6502
6157
  /**
6503
6158
  * Check health of a specific data enhancer
6504
6159
  * @param data The data for the request.
6505
6160
  * @param data.name Data enhancer name
6506
- * @param data.region Region code (cn, us, eu-core, de)
6507
6161
  * @returns unknown Data enhancer is healthy
6508
6162
  * @throws ApiError
6509
6163
  */
6510
6164
  static healthControllerGetHealthOfDataEnhancer(data: HealthControllerGetHealthOfDataEnhancerData): CancelablePromise<HealthControllerGetHealthOfDataEnhancerResponse>;
6511
6165
  /**
6512
6166
  * Check health of all data providers
6513
- * @param data The data for the request.
6514
- * @param data.region Region code (cn, us, eu-core, de)
6515
6167
  * @returns unknown Data providers health status
6516
6168
  * @throws ApiError
6517
6169
  */
6518
- static healthControllerCheckDataProviders(data: HealthControllerCheckDataProvidersData): CancelablePromise<HealthControllerCheckDataProvidersResponse>;
6170
+ static healthControllerCheckDataProviders(): CancelablePromise<HealthControllerCheckDataProvidersResponse>;
6519
6171
  /**
6520
6172
  * Check health of a specific data provider
6521
6173
  * @param data The data for the request.
6522
6174
  * @param data.dataSource Data source identifier
6523
- * @param data.region Region code (cn, us, eu-core, de)
6524
6175
  * @returns unknown Data provider is healthy
6525
6176
  * @throws ApiError
6526
6177
  */
@@ -6567,4 +6218,4 @@ type OpenAPIConfig = {
6567
6218
  };
6568
6219
  declare const OpenAPI: OpenAPIConfig;
6569
6220
 
6570
- export { type $OpenApiTs, type AccountControllerCloseData, type AccountControllerCloseResponse, type AccountControllerCreateData, type AccountControllerCreateResponse, type AccountControllerDeleteData, type AccountControllerDeleteResponse, type AccountControllerFindAllData, type AccountControllerFindAllResponse, type AccountControllerFindOneData, type AccountControllerFindOneResponse, type AccountControllerReopenData, type AccountControllerReopenResponse, type AccountControllerUpdateData, type AccountControllerUpdateResponse, type AccountExchangeRateWarningDto, type AccountItemDto, type AccountItemWithAssetClassDto, type AccountListResponseDto, type AccountResponseDto, type AccountStandardListResponseDto, type AccountStandardResponseDto, type AccountStandardsControllerGetRegionsData, type AccountStandardsControllerGetRegionsResponse, type AccountStandardsControllerGetTemplatesData, type AccountStandardsControllerGetTemplatesResponse, type AccountsResponseDto, type AccountsSummaryDto, type AnonymousLoginDto, type ApiKeysControllerData, type ApiKeysControllerResponse, type ApiProblemResponseDto, type AssetClassAccountsResponseDto, type AssetClassGroupDto, type AssetClassSummaryDto, type AuthControllerAccessTokenLoginData, type AuthControllerAccessTokenLoginResponse, type BackfillSnapshotsBody, type BackfillSnapshotsResponse, type BalanceByCurrencyDto, type BalanceControllerGetBalanceData, type BalanceControllerGetBalanceResponse, type BalanceControllerGetMultiCurrencyBalanceData, type BalanceControllerGetMultiCurrencyBalanceResponse, type BalanceResponseDto, BeanAccountsService, BeanBalancesService, BeanCommoditiesService, BeanTransactionsService, type CacheControllerFlushCacheData, type CacheControllerFlushCacheResponse, type CashFlowByCurrencyDto, type CashFlowResponseDto, type CloseAccountDto, type CommodityController1Data, type CommodityController1Response, type CommodityController2Data, type CommodityController2Response, type CommodityController3Data, type CommodityController3Response, type CommodityController4Data, type CommodityController4Response, type CommodityControllerData, type CommodityControllerFindAllData, type CommodityControllerFindAllResponse, type CommodityControllerFindOneData, type CommodityControllerFindOneResponse, type CommodityControllerResponse, type CommodityListResponseDto, type CommodityResponseDto, type ConvertedCashFlowDto, type ConvertedNetWorthDto, type CreateAccountDto, type CreatePostingDto, type CreateTransactionDto, type CurrencyBalanceDto, type DashboardControllerGetAccountsData, type DashboardControllerGetAccountsResponse, type DashboardControllerGetCashFlowData, type DashboardControllerGetCashFlowResponse, type DashboardControllerGetNetWorthData, type DashboardControllerGetNetWorthResponse, type DecisionOptionDto, type DeleteOwnUserDto, type ExchangeRateControllerGetExchangeRateData, type ExchangeRateControllerGetExchangeRateResponse, type ExchangeRateWarningDto, type ExpectedTransactionController1Data, type ExpectedTransactionController1Response, type ExpectedTransactionController2Data, type ExpectedTransactionController2Response, type ExpectedTransactionController3Data, type ExpectedTransactionController3Response, type ExpectedTransactionController4Data, type ExpectedTransactionController4Response, type ExpectedTransactionControllerData, type ExpectedTransactionControllerFindAllData, type ExpectedTransactionControllerFindAllResponse, type ExpectedTransactionControllerFindOneData, type ExpectedTransactionControllerFindOneResponse, type ExpectedTransactionControllerFindOverdueData, type ExpectedTransactionControllerFindOverdueResponse, type ExpectedTransactionControllerResponse, type ExpectedTransactionListResponseDto, type ExpectedTransactionResponseDto, type ExpectedTransactionRuleDto, type ExportRulesResponseDto, type FileImportControllerIdentifyFileData, type FileImportControllerIdentifyFileResponse, type FileImportControllerImportFileData, type FileImportControllerImportFileResponse, type FileImportDto, type ForecastControllerGetForecastData, type ForecastControllerGetForecastResponse, type ForecastItemDto, type ForecastResponseDto, type GenerateSnapshotBody, type GenerateSnapshotResponse, type HealthControllerCheckDataProvidersData, type HealthControllerCheckDataProvidersResponse, type HealthControllerCheckDatabaseData, type HealthControllerCheckDatabaseResponse, type HealthControllerCheckRedisData, type HealthControllerCheckRedisResponse, type HealthControllerGetCircuitBreakersHealthData, type HealthControllerGetCircuitBreakersHealthResponse, type HealthControllerGetHealthData, type HealthControllerGetHealthOfDataEnhancerData, type HealthControllerGetHealthOfDataEnhancerResponse, type HealthControllerGetHealthOfDataProviderData, type HealthControllerGetHealthOfDataProviderResponse, type HealthControllerGetHealthResponse, type HealthControllerGetMetricsData, type HealthControllerGetMetricsResponse, type HealthControllerResetCircuitBreakerData, type HealthControllerResetCircuitBreakerResponse, HealthService, type IdentifyResultDto, type ImportErrorDto, type ImportResultDto, type ImporterConfigController1Data, type ImporterConfigController1Response, type ImporterConfigControllerData, type ImporterConfigControllerGetConfigData, type ImporterConfigControllerGetConfigResponse, type ImporterConfigControllerResponse, type ImporterConfigDataDto, type ImporterConfigDto, type InfoControllerGetInfoData, type InfoControllerGetInfoResponse, type LogoControllerGetLogoByDataSourceAndSymbolData, type LogoControllerGetLogoByDataSourceAndSymbolResponse, type LogoControllerGetLogoByUrlData, type LogoControllerGetLogoByUrlResponse, type MapperDefaultsDto, type MarketDataControllerData, type MarketDataControllerGetMarketDataBySymbolData, type MarketDataControllerGetMarketDataBySymbolResponse, type MarketDataControllerResponse, type MonthlyForecastDto, type MultiCurrencyBalanceResponseDto, type MultiCurrencyPointDto, type NetWorthByCurrencyDto, type NetWorthResponseDto, type NlpAccountConfirmationDataDto, type NlpAlternativePayeeDto, type NlpControllerClearSessionData, type NlpControllerClearSessionResponse, type NlpControllerGetSessionData, type NlpControllerGetSessionResponse, type NlpControllerProcessNaturalLanguageData, type NlpControllerProcessNaturalLanguageResponse, type NlpDefaultAccountsDto, type NlpDuplicateConfirmationDataDto, type NlpParsedDataDto, type NlpPayeeConfirmationDataDto, type NlpResponseDto, type NlpRuleConfirmationDataDto, type NlpSimilarityDto, type NlpSourceTransactionDto, type NlpSuggestedAccountDto, type NlpSuggestedAccountsDto, type NlpSuggestedPayeeDto, type NlpTargetTransactionDto, type NlpTransactionInfoDto, OpenAPI, type OpenAPIConfig, type PayeeAutocompleteResponseDto, type PayeeController1Data, type PayeeController1Response, type PayeeController2Data, type PayeeController2Response, type PayeeControllerAutocompleteData, type PayeeControllerAutocompleteResponse, type PayeeControllerData, type PayeeControllerFindAllData, type PayeeControllerFindAllResponse, type PayeeControllerFindOneData, type PayeeControllerFindOneResponse, type PayeeControllerGetTopPayeesData, type PayeeControllerGetTopPayeesResponse, type PayeeControllerResponse, type PayeeListResponseDto, type PayeeProfileAdminController1Data, type PayeeProfileAdminController1Response, type PayeeProfileAdminController2Data, type PayeeProfileAdminController2Response, type PayeeProfileAdminController3Data, type PayeeProfileAdminController3Response, type PayeeProfileAdminController4Data, type PayeeProfileAdminController4Response, type PayeeProfileAdminControllerData, type PayeeProfileAdminControllerFindAllData, type PayeeProfileAdminControllerFindAllResponse, type PayeeProfileAdminControllerFindOneData, type PayeeProfileAdminControllerFindOneResponse, type PayeeProfileAdminControllerResponse, type PayeeProfileListResponseDto, type PayeeProfileResponseDto, type PayeeResponseDto, type PayeeStatsResponseDto, type PlatformController1Data, type PlatformController1Response, type PlatformController2Data, type PlatformController2Response, type PlatformControllerData, type PlatformControllerFindAllData, type PlatformControllerFindAllResponse, type PlatformControllerGetPlatformListData, type PlatformControllerGetPlatformListResponse, type PlatformControllerResponse, type PlatformGroupDto, type PortfolioTrendsResponseDto, type PostingDetailDto, type PostingResponseDto, type ProcessNlpDto, type PropertyController1Data, type PropertyController1Response, type PropertyControllerData, type PropertyControllerGetAllData, type PropertyControllerGetAllResponse, type PropertyControllerGetByKeyData, type PropertyControllerGetByKeyResponse, type PropertyControllerResponse, type ProviderSyncConfigDto, type ProviderSyncControllerGetSupportedProvidersData, type ProviderSyncControllerGetSupportedProvidersResponse, type ProviderSyncControllerIsProviderSupportedData, type ProviderSyncControllerIsProviderSupportedResponse, type ProviderSyncControllerSyncData, type ProviderSyncControllerSyncResponse, type ProviderSyncDto, type ProviderSyncResponseDto, ProviderSyncService, type RecurringMatchInfoDto, type RecurringRuleController1Data, type RecurringRuleController1Response, type RecurringRuleController2Data, type RecurringRuleController2Response, type RecurringRuleController3Data, type RecurringRuleController3Response, type RecurringRuleControllerData, type RecurringRuleControllerFindAllData, type RecurringRuleControllerFindAllResponse, type RecurringRuleControllerFindOneData, type RecurringRuleControllerFindOneResponse, type RecurringRuleControllerGetWithStatsData, type RecurringRuleControllerGetWithStatsResponse, type RecurringRuleControllerResponse, type RecurringRuleResponseDto, type RecurringRuleWithStatsResponseDto, type RecurringSuggestionDto, type ReopenAccountDto, type ReportingControllerBackfillSnapshotsData, type ReportingControllerBackfillSnapshotsResponse, type ReportingControllerGenerateSnapshotData, type ReportingControllerGenerateSnapshotResponse, type ReportingControllerGetPortfolioTrendsData, type ReportingControllerGetPortfolioTrendsResponse, type ReviewController1Data, type ReviewController1Response, type ReviewController2Data, type ReviewController2Response, type ReviewControllerData, type ReviewControllerFindAllData, type ReviewControllerFindAllResponse, type ReviewControllerFindOneData, type ReviewControllerFindOneResponse, type ReviewControllerGetStatsData, type ReviewControllerGetStatsResponse, type ReviewControllerResponse, type ReviewDetailDto, type ReviewItemPreviewDto, type ReviewListResponseDto, type ReviewStatsDto, type ReviewSummaryDto, type RuleStatisticsResponseDto, type SignupDto, type SupportedProvidersResponseDto, type SymbolControllerData, type SymbolControllerGatherSymbolForDateData, type SymbolControllerGatherSymbolForDateResponse, type SymbolControllerGetSymbolDataData, type SymbolControllerGetSymbolDataResponse, type SymbolControllerLookupSymbolData, type SymbolControllerLookupSymbolResponse, type SymbolControllerResponse, type TestRuleDto, type TestRuleResponseDto, type TimeSeriesPointDto, type TransactionController1Data, type TransactionController1Response, type TransactionControllerCreateData, type TransactionControllerCreateResponse, type TransactionControllerData, type TransactionControllerGetDetailData, type TransactionControllerGetDetailResponse, type TransactionControllerListData, type TransactionControllerListResponse, type TransactionControllerResponse, type TransactionControllerUpdateData, type TransactionControllerUpdateResponse, type TransactionDetailDto, type TransactionListResponseDto, type TransactionResponseDto, type TransactionRuleController1Data, type TransactionRuleController1Response, type TransactionRuleController2Data, type TransactionRuleController2Response, type TransactionRuleController3Data, type TransactionRuleController3Response, type TransactionRuleControllerData, type TransactionRuleControllerExportData, type TransactionRuleControllerExportResponse, type TransactionRuleControllerGetDetailData, type TransactionRuleControllerGetDetailResponse, type TransactionRuleControllerGetStatisticsData, type TransactionRuleControllerGetStatisticsResponse, type TransactionRuleControllerListData, type TransactionRuleControllerListResponse, type TransactionRuleControllerResponse, type TransactionRuleControllerTestData, type TransactionRuleControllerTestResponse, type TransactionRuleControllerValidateData, type TransactionRuleControllerValidateResponse, type TransactionRuleListResponseDto, type TransactionRuleResponseDto, type TransactionSummaryDto, type TrendSummaryDto, type UpdateAccountDto, type UpdateTransactionDto, type UpdateUserSettingDto, type UserControllerDeleteOwnUserData, type UserControllerDeleteOwnUserResponse, type UserControllerDeleteUserData, type UserControllerDeleteUserResponse, type UserControllerGetAllUserSettingsByPageData, type UserControllerGetAllUserSettingsByPageResponse, type UserControllerGetAssetLiabilitySummaryData, type UserControllerGetAssetLiabilitySummaryResponse, type UserControllerGetUserData, type UserControllerGetUserInfoData, type UserControllerGetUserInfoResponse, type UserControllerGetUserResponse, type UserControllerSignupUserData, type UserControllerSignupUserResponse, type UserControllerUpdateUserSettingData, type UserControllerUpdateUserSettingResponse, type ValidateRuleDto, type ValidateRuleResponseDto, type VersionedConfigDto, type action, type assetClass, type assetSubType, type bookingMethod, type branchType, type category, type colorScheme, type confidenceLevel, type dataSource, type equitySubType, type flag, type flag2, type importerId, type intent, type investmentAction, type learningSource, type liabilitySubType, type matchLogic, type paymentSource, type period, type source, type sourceType, type status, type status2, type status3, type status4, type suggestedFrequency, type type, type type2, type viewMode };
6221
+ export { type $OpenApiTs, type AccountControllerCloseData, type AccountControllerCloseResponse, type AccountControllerCreateData, type AccountControllerCreateResponse, type AccountControllerDeleteData, type AccountControllerDeleteResponse, type AccountControllerFindAllData, type AccountControllerFindAllResponse, type AccountControllerFindOneData, type AccountControllerFindOneResponse, type AccountControllerReopenData, type AccountControllerReopenResponse, type AccountControllerUpdateData, type AccountControllerUpdateResponse, type AccountExchangeRateWarningDto, type AccountItemDto, type AccountItemWithAssetClassDto, type AccountListResponseDto, type AccountResponseDto, type AccountStandardListResponseDto, type AccountStandardResponseDto, type AccountStandardsControllerGetRegionsResponse, type AccountStandardsControllerGetTemplatesData, type AccountStandardsControllerGetTemplatesResponse, type AccountsResponseDto, type AccountsSummaryDto, type AnonymousLoginDto, type ApiKeysControllerResponse, type ApiProblemResponseDto, type AssetClassAccountsResponseDto, type AssetClassGroupDto, type AssetClassSummaryDto, type AuthControllerAccessTokenLoginData, type AuthControllerAccessTokenLoginResponse, type BackfillSnapshotsBody, type BackfillSnapshotsResponse, type BalanceByCurrencyDto, type BalanceControllerGetBalanceData, type BalanceControllerGetBalanceResponse, type BalanceControllerGetMultiCurrencyBalanceResponse, type BalanceResponseDto, BeanAccountsService, BeanBalancesService, BeanCommoditiesService, BeanTransactionsService, type CacheControllerFlushCacheResponse, type CashFlowByCurrencyDto, type CashFlowResponseDto, type CloseAccountDto, type CommodityController1Data, type CommodityController1Response, type CommodityController2Data, type CommodityController2Response, type CommodityController3Data, type CommodityController3Response, type CommodityController4Data, type CommodityController4Response, type CommodityControllerData, type CommodityControllerFindAllData, type CommodityControllerFindAllResponse, type CommodityControllerFindOneData, type CommodityControllerFindOneResponse, type CommodityControllerResponse, type CommodityListResponseDto, type CommodityResponseDto, type ConvertedCashFlowDto, type ConvertedNetWorthDto, type CreateAccountDto, type CreatePostingDto, type CreateTransactionDto, type CurrencyBalanceDto, type DashboardControllerGetAccountsData, type DashboardControllerGetAccountsResponse, type DashboardControllerGetCashFlowData, type DashboardControllerGetCashFlowResponse, type DashboardControllerGetNetWorthData, type DashboardControllerGetNetWorthResponse, type DecisionOptionDto, type DeleteOwnUserDto, type ExchangeRateControllerGetExchangeRateData, type ExchangeRateControllerGetExchangeRateResponse, type ExchangeRateWarningDto, type ExpectedTransactionController1Data, type ExpectedTransactionController1Response, type ExpectedTransactionController2Data, type ExpectedTransactionController2Response, type ExpectedTransactionController3Data, type ExpectedTransactionController3Response, type ExpectedTransactionController4Data, type ExpectedTransactionController4Response, type ExpectedTransactionControllerData, type ExpectedTransactionControllerFindAllData, type ExpectedTransactionControllerFindAllResponse, type ExpectedTransactionControllerFindOneData, type ExpectedTransactionControllerFindOneResponse, type ExpectedTransactionControllerFindOverdueData, type ExpectedTransactionControllerFindOverdueResponse, type ExpectedTransactionControllerResponse, type ExpectedTransactionListResponseDto, type ExpectedTransactionResponseDto, type ExpectedTransactionRuleDto, type ExportRulesResponseDto, type FileImportControllerIdentifyFileData, type FileImportControllerIdentifyFileResponse, type FileImportControllerImportFileData, type FileImportControllerImportFileResponse, type FileImportDto, type ForecastControllerGetForecastData, type ForecastControllerGetForecastResponse, type ForecastItemDto, type ForecastResponseDto, type GenerateSnapshotBody, type GenerateSnapshotResponse, type HealthControllerCheckDataProvidersResponse, type HealthControllerCheckDatabaseResponse, type HealthControllerCheckRedisResponse, type HealthControllerGetCircuitBreakersHealthResponse, type HealthControllerGetHealthOfDataEnhancerData, type HealthControllerGetHealthOfDataEnhancerResponse, type HealthControllerGetHealthOfDataProviderData, type HealthControllerGetHealthOfDataProviderResponse, type HealthControllerGetHealthResponse, type HealthControllerGetMetricsResponse, type HealthControllerResetCircuitBreakerData, type HealthControllerResetCircuitBreakerResponse, HealthService, type IdentifyResultDto, type ImportErrorDto, type ImportResultDto, type ImporterConfigController1Data, type ImporterConfigController1Response, type ImporterConfigControllerData, type ImporterConfigControllerGetConfigData, type ImporterConfigControllerGetConfigResponse, type ImporterConfigControllerResponse, type ImporterConfigDataDto, type ImporterConfigDto, type InfoControllerGetInfoResponse, type LogoControllerGetLogoByDataSourceAndSymbolData, type LogoControllerGetLogoByDataSourceAndSymbolResponse, type LogoControllerGetLogoByUrlData, type LogoControllerGetLogoByUrlResponse, type MapperDefaultsDto, type MarketDataControllerGetMarketDataBySymbolData, type MarketDataControllerGetMarketDataBySymbolResponse, type MarketDataControllerResponse, type MonthlyForecastDto, type MultiCurrencyBalanceResponseDto, type MultiCurrencyPointDto, type NetWorthByCurrencyDto, type NetWorthResponseDto, type NlpAccountConfirmationDataDto, type NlpAlternativePayeeDto, type NlpControllerClearSessionData, type NlpControllerClearSessionResponse, type NlpControllerGetSessionData, type NlpControllerGetSessionResponse, type NlpControllerProcessNaturalLanguageData, type NlpControllerProcessNaturalLanguageResponse, type NlpDefaultAccountsDto, type NlpDuplicateConfirmationDataDto, type NlpParsedDataDto, type NlpPayeeConfirmationDataDto, type NlpResponseDto, type NlpRuleConfirmationDataDto, type NlpSimilarityDto, type NlpSourceTransactionDto, type NlpSuggestedAccountDto, type NlpSuggestedAccountsDto, type NlpSuggestedPayeeDto, type NlpTargetTransactionDto, type NlpTransactionInfoDto, OpenAPI, type OpenAPIConfig, type ParserTelemetryReportDto, type PayeeAutocompleteResponseDto, type PayeeController1Response, type PayeeController2Response, type PayeeControllerAutocompleteData, type PayeeControllerAutocompleteResponse, type PayeeControllerFindAllData, type PayeeControllerFindAllResponse, type PayeeControllerFindOneData, type PayeeControllerFindOneResponse, type PayeeControllerGetTopPayeesData, type PayeeControllerGetTopPayeesResponse, type PayeeControllerResponse, type PayeeListResponseDto, type PayeeProfileAdminController1Response, type PayeeProfileAdminController2Response, type PayeeProfileAdminController3Response, type PayeeProfileAdminController4Response, type PayeeProfileAdminControllerFindAllData, type PayeeProfileAdminControllerFindAllResponse, type PayeeProfileAdminControllerFindOneData, type PayeeProfileAdminControllerFindOneResponse, type PayeeProfileAdminControllerResponse, type PayeeProfileListResponseDto, type PayeeProfileResponseDto, type PayeeResponseDto, type PayeeStatsResponseDto, type PlatformController1Response, type PlatformController2Response, type PlatformControllerFindAllResponse, type PlatformControllerGetPlatformListResponse, type PlatformControllerResponse, type PlatformGroupDto, type PortfolioTrendsResponseDto, type PostingDetailDto, type PostingResponseDto, type ProcessNlpDto, type PropertyController1Response, type PropertyControllerGetAllResponse, type PropertyControllerGetByKeyData, type PropertyControllerGetByKeyResponse, type PropertyControllerResponse, type ProviderSyncConfigDto, type ProviderSyncControllerGetSupportedProvidersResponse, type ProviderSyncControllerIsProviderSupportedData, type ProviderSyncControllerIsProviderSupportedResponse, type ProviderSyncControllerSyncData, type ProviderSyncControllerSyncResponse, type ProviderSyncDto, type ProviderSyncResponseDto, ProviderSyncService, type RecurringMatchInfoDto, type RecurringRuleController1Data, type RecurringRuleController1Response, type RecurringRuleController2Data, type RecurringRuleController2Response, type RecurringRuleController3Data, type RecurringRuleController3Response, type RecurringRuleControllerData, type RecurringRuleControllerFindAllData, type RecurringRuleControllerFindAllResponse, type RecurringRuleControllerFindOneData, type RecurringRuleControllerFindOneResponse, type RecurringRuleControllerGetWithStatsData, type RecurringRuleControllerGetWithStatsResponse, type RecurringRuleControllerResponse, type RecurringRuleResponseDto, type RecurringRuleWithStatsResponseDto, type RecurringSuggestionDto, type RegionConfigDto, type RegionInfoDto, type RegionsMetadataResponseDto, type ReopenAccountDto, type ReportingControllerBackfillSnapshotsData, type ReportingControllerBackfillSnapshotsResponse, type ReportingControllerGenerateSnapshotData, type ReportingControllerGenerateSnapshotResponse, type ReportingControllerGetPortfolioTrendsData, type ReportingControllerGetPortfolioTrendsResponse, type ReviewController1Data, type ReviewController1Response, type ReviewController2Data, type ReviewController2Response, type ReviewControllerData, type ReviewControllerFindAllData, type ReviewControllerFindAllResponse, type ReviewControllerFindOneData, type ReviewControllerFindOneResponse, type ReviewControllerGetStatsData, type ReviewControllerGetStatsResponse, type ReviewControllerResponse, type ReviewDetailDto, type ReviewItemPreviewDto, type ReviewListResponseDto, type ReviewStatsDto, type ReviewSummaryDto, type RuleStatisticsResponseDto, type SignupDto, type SupportedProvidersResponseDto, type SymbolControllerGatherSymbolForDateData, type SymbolControllerGatherSymbolForDateResponse, type SymbolControllerGetSymbolDataData, type SymbolControllerGetSymbolDataResponse, type SymbolControllerLookupSymbolData, type SymbolControllerLookupSymbolResponse, type SymbolControllerResponse, type TelemetryControllerReportTelemetryData, type TelemetryControllerReportTelemetryResponse, type TestRuleDto, type TestRuleResponseDto, type TimeSeriesPointDto, type TransactionController1Data, type TransactionController1Response, type TransactionControllerCreateData, type TransactionControllerCreateResponse, type TransactionControllerData, type TransactionControllerGetDetailData, type TransactionControllerGetDetailResponse, type TransactionControllerListData, type TransactionControllerListResponse, type TransactionControllerResponse, type TransactionControllerUpdateData, type TransactionControllerUpdateResponse, type TransactionDetailDto, type TransactionListResponseDto, type TransactionResponseDto, type TransactionRuleController1Data, type TransactionRuleController1Response, type TransactionRuleController2Data, type TransactionRuleController2Response, type TransactionRuleController3Data, type TransactionRuleController3Response, type TransactionRuleControllerData, type TransactionRuleControllerExportData, type TransactionRuleControllerExportResponse, type TransactionRuleControllerGetDetailData, type TransactionRuleControllerGetDetailResponse, type TransactionRuleControllerGetStatisticsData, type TransactionRuleControllerGetStatisticsResponse, type TransactionRuleControllerListData, type TransactionRuleControllerListResponse, type TransactionRuleControllerResponse, type TransactionRuleControllerTestData, type TransactionRuleControllerTestResponse, type TransactionRuleControllerValidateData, type TransactionRuleControllerValidateResponse, type TransactionRuleListResponseDto, type TransactionRuleResponseDto, type TransactionSummaryDto, type TrendSummaryDto, type UpdateAccountDto, type UpdateTransactionDto, type UpdateUserSettingDto, type UserControllerDeleteOwnUserData, type UserControllerDeleteOwnUserResponse, type UserControllerDeleteUserData, type UserControllerDeleteUserResponse, type UserControllerGetAllUserSettingsByPageData, type UserControllerGetAllUserSettingsByPageResponse, type UserControllerGetAssetLiabilitySummaryResponse, type UserControllerGetUserData, type UserControllerGetUserInfoData, type UserControllerGetUserInfoResponse, type UserControllerGetUserResponse, type UserControllerSignupUserData, type UserControllerSignupUserResponse, type UserControllerUpdateUserSettingData, type UserControllerUpdateUserSettingResponse, type ValidateRuleDto, type ValidateRuleResponseDto, type VersionedConfigDto, type action, type assetClass, type assetSubType, type bookingMethod, type branchType, type category, type colorScheme, type confidenceLevel, type dataSource, type equitySubType, type flag, type flag2, type importerId, type intent, type investmentAction, type learningSource, type liabilitySubType, type matchLogic, type paymentSource, type period, type source, type sourceType, type status, type status2, type status3, type status4, type suggestedFrequency, type type, type type2, type viewMode };