@firela/api-types 0.0.0-canary.209967 → 0.0.0-canary.5639ea2d
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 +101 -461
- package/dist/index.d.ts +101 -461
- package/dist/index.js +23 -73
- package/dist/index.mjs +23 -73
- package/package.json +1 -6
- package/src/generated/schemas.gen.ts +33 -8
- package/src/generated/services.gen.ts +148 -497
- package/src/generated/types.gen.ts +87 -453
package/dist/index.d.mts
CHANGED
|
@@ -732,9 +732,15 @@ type ReviewSummaryDto = {
|
|
|
732
732
|
*/
|
|
733
733
|
confidenceLevel: 'HIGH' | 'MEDIUM' | 'LOW';
|
|
734
734
|
/**
|
|
735
|
-
*
|
|
735
|
+
* i18n message key for summary (e.g., review.summary.duplicate). Translate on frontend with summaryParams.
|
|
736
736
|
*/
|
|
737
|
-
|
|
737
|
+
summaryKey: string;
|
|
738
|
+
/**
|
|
739
|
+
* Parameters for summary message interpolation (e.g., { date: "2024-01-15", amount: "50" })
|
|
740
|
+
*/
|
|
741
|
+
summaryParams?: {
|
|
742
|
+
[key: string]: string;
|
|
743
|
+
};
|
|
738
744
|
/**
|
|
739
745
|
* Human-readable reasons for branching
|
|
740
746
|
*/
|
|
@@ -863,9 +869,15 @@ type ReviewDetailDto = {
|
|
|
863
869
|
*/
|
|
864
870
|
confidenceLevel: 'HIGH' | 'MEDIUM' | 'LOW';
|
|
865
871
|
/**
|
|
866
|
-
*
|
|
872
|
+
* i18n message key for summary (e.g., review.summary.duplicate). Translate on frontend with summaryParams.
|
|
867
873
|
*/
|
|
868
|
-
|
|
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
|
+
};
|
|
869
881
|
/**
|
|
870
882
|
* Human-readable reasons for branching
|
|
871
883
|
*/
|
|
@@ -2114,7 +2126,7 @@ type ImporterConfigDto = {
|
|
|
2114
2126
|
/**
|
|
2115
2127
|
* Importer identifier
|
|
2116
2128
|
*/
|
|
2117
|
-
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';
|
|
2118
2130
|
/**
|
|
2119
2131
|
* Configuration version (semver)
|
|
2120
2132
|
*/
|
|
@@ -2139,7 +2151,7 @@ type ImporterConfigDto = {
|
|
|
2139
2151
|
/**
|
|
2140
2152
|
* Importer identifier
|
|
2141
2153
|
*/
|
|
2142
|
-
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';
|
|
2143
2155
|
type ProviderSyncConfigDto = {
|
|
2144
2156
|
/**
|
|
2145
2157
|
* Source account for the first posting
|
|
@@ -2212,6 +2224,7 @@ type SupportedProvidersResponseDto = {
|
|
|
2212
2224
|
*/
|
|
2213
2225
|
providers: Array<string>;
|
|
2214
2226
|
};
|
|
2227
|
+
type ParserTelemetryReportDto = unknown;
|
|
2215
2228
|
type ProcessNlpDto = {
|
|
2216
2229
|
/**
|
|
2217
2230
|
* Natural language text describing a transaction (Chinese)
|
|
@@ -3385,12 +3398,6 @@ type AccountStandardsControllerGetTemplatesData = {
|
|
|
3385
3398
|
type?: 'Assets' | 'Liabilities' | 'Income' | 'Expenses' | 'Equity';
|
|
3386
3399
|
};
|
|
3387
3400
|
type AccountStandardsControllerGetTemplatesResponse = AccountStandardListResponseDto;
|
|
3388
|
-
type AccountStandardsControllerGetRegionsData = {
|
|
3389
|
-
/**
|
|
3390
|
-
* Region code (cn, us, de)
|
|
3391
|
-
*/
|
|
3392
|
-
region: 'cn' | 'us' | 'de';
|
|
3393
|
-
};
|
|
3394
3401
|
type AccountStandardsControllerGetRegionsResponse = RegionsMetadataResponseDto;
|
|
3395
3402
|
type BalanceControllerGetBalanceData = {
|
|
3396
3403
|
/**
|
|
@@ -3405,18 +3412,8 @@ type BalanceControllerGetBalanceData = {
|
|
|
3405
3412
|
* Date to calculate balance at (ISO 8601 format)
|
|
3406
3413
|
*/
|
|
3407
3414
|
date?: string;
|
|
3408
|
-
/**
|
|
3409
|
-
* Region code (cn, us, de)
|
|
3410
|
-
*/
|
|
3411
|
-
region: 'cn' | 'us' | 'de';
|
|
3412
3415
|
};
|
|
3413
3416
|
type BalanceControllerGetBalanceResponse = BalanceResponseDto;
|
|
3414
|
-
type BalanceControllerGetMultiCurrencyBalanceData = {
|
|
3415
|
-
/**
|
|
3416
|
-
* Region code (cn, us, de)
|
|
3417
|
-
*/
|
|
3418
|
-
region: 'cn' | 'us' | 'de';
|
|
3419
|
-
};
|
|
3420
3417
|
type BalanceControllerGetMultiCurrencyBalanceResponse = MultiCurrencyBalanceResponseDto;
|
|
3421
3418
|
type ReviewControllerFindAllData = {
|
|
3422
3419
|
/**
|
|
@@ -3432,7 +3429,7 @@ type ReviewControllerFindAllData = {
|
|
|
3432
3429
|
*/
|
|
3433
3430
|
page?: number;
|
|
3434
3431
|
/**
|
|
3435
|
-
* Region code
|
|
3432
|
+
* Region code for tenant context
|
|
3436
3433
|
*/
|
|
3437
3434
|
region: 'cn' | 'us' | 'de';
|
|
3438
3435
|
/**
|
|
@@ -3447,7 +3444,7 @@ type ReviewControllerFindAllData = {
|
|
|
3447
3444
|
type ReviewControllerFindAllResponse = ReviewListResponseDto;
|
|
3448
3445
|
type ReviewControllerGetStatsData = {
|
|
3449
3446
|
/**
|
|
3450
|
-
* Region code
|
|
3447
|
+
* Region code for tenant context
|
|
3451
3448
|
*/
|
|
3452
3449
|
region: 'cn' | 'us' | 'de';
|
|
3453
3450
|
};
|
|
@@ -3458,38 +3455,32 @@ type ReviewControllerFindOneData = {
|
|
|
3458
3455
|
*/
|
|
3459
3456
|
id: string;
|
|
3460
3457
|
/**
|
|
3461
|
-
* Region code
|
|
3458
|
+
* Region code for tenant context
|
|
3462
3459
|
*/
|
|
3463
3460
|
region: 'cn' | 'us' | 'de';
|
|
3464
3461
|
};
|
|
3465
3462
|
type ReviewControllerFindOneResponse = ReviewDetailDto;
|
|
3466
3463
|
type ReviewControllerData = {
|
|
3467
3464
|
/**
|
|
3468
|
-
* Region code
|
|
3465
|
+
* Region code for tenant context
|
|
3469
3466
|
*/
|
|
3470
3467
|
region: 'cn' | 'us' | 'de';
|
|
3471
3468
|
};
|
|
3472
3469
|
type ReviewControllerResponse = unknown;
|
|
3473
3470
|
type ReviewController1Data = {
|
|
3474
3471
|
/**
|
|
3475
|
-
* Region code
|
|
3472
|
+
* Region code for tenant context
|
|
3476
3473
|
*/
|
|
3477
3474
|
region: 'cn' | 'us' | 'de';
|
|
3478
3475
|
};
|
|
3479
3476
|
type ReviewController1Response = unknown;
|
|
3480
3477
|
type ReviewController2Data = {
|
|
3481
3478
|
/**
|
|
3482
|
-
* Region code
|
|
3479
|
+
* Region code for tenant context
|
|
3483
3480
|
*/
|
|
3484
3481
|
region: 'cn' | 'us' | 'de';
|
|
3485
3482
|
};
|
|
3486
3483
|
type ReviewController2Response = unknown;
|
|
3487
|
-
type PayeeControllerData = {
|
|
3488
|
-
/**
|
|
3489
|
-
* Region code (cn, us, de)
|
|
3490
|
-
*/
|
|
3491
|
-
region: 'cn' | 'us' | 'de';
|
|
3492
|
-
};
|
|
3493
3484
|
type PayeeControllerResponse = unknown;
|
|
3494
3485
|
type PayeeControllerFindAllData = {
|
|
3495
3486
|
/**
|
|
@@ -3504,10 +3495,6 @@ type PayeeControllerFindAllData = {
|
|
|
3504
3495
|
* Filter by exact payee name match
|
|
3505
3496
|
*/
|
|
3506
3497
|
payee?: string;
|
|
3507
|
-
/**
|
|
3508
|
-
* Region code (cn, us, de)
|
|
3509
|
-
*/
|
|
3510
|
-
region: 'cn' | 'us' | 'de';
|
|
3511
3498
|
/**
|
|
3512
3499
|
* Search term for payee name (partial match, case-insensitive). Useful for autocomplete.
|
|
3513
3500
|
*/
|
|
@@ -3527,10 +3514,6 @@ type PayeeControllerAutocompleteData = {
|
|
|
3527
3514
|
* Search query for payee name (partial match, case-insensitive)
|
|
3528
3515
|
*/
|
|
3529
3516
|
q: string;
|
|
3530
|
-
/**
|
|
3531
|
-
* Region code (cn, us, de)
|
|
3532
|
-
*/
|
|
3533
|
-
region: 'cn' | 'us' | 'de';
|
|
3534
3517
|
};
|
|
3535
3518
|
type PayeeControllerAutocompleteResponse = PayeeAutocompleteResponseDto;
|
|
3536
3519
|
type PayeeControllerGetTopPayeesData = {
|
|
@@ -3538,10 +3521,6 @@ type PayeeControllerGetTopPayeesData = {
|
|
|
3538
3521
|
* Maximum number of results
|
|
3539
3522
|
*/
|
|
3540
3523
|
limit?: number;
|
|
3541
|
-
/**
|
|
3542
|
-
* Region code (cn, us, de)
|
|
3543
|
-
*/
|
|
3544
|
-
region: 'cn' | 'us' | 'de';
|
|
3545
3524
|
};
|
|
3546
3525
|
type PayeeControllerGetTopPayeesResponse = Array<PayeeStatsResponseDto>;
|
|
3547
3526
|
type PayeeControllerFindOneData = {
|
|
@@ -3549,32 +3528,10 @@ type PayeeControllerFindOneData = {
|
|
|
3549
3528
|
* Payee UUID
|
|
3550
3529
|
*/
|
|
3551
3530
|
id: string;
|
|
3552
|
-
/**
|
|
3553
|
-
* Region code (cn, us, de)
|
|
3554
|
-
*/
|
|
3555
|
-
region: 'cn' | 'us' | 'de';
|
|
3556
3531
|
};
|
|
3557
3532
|
type PayeeControllerFindOneResponse = PayeeResponseDto;
|
|
3558
|
-
type PayeeController1Data = {
|
|
3559
|
-
/**
|
|
3560
|
-
* Region code (cn, us, de)
|
|
3561
|
-
*/
|
|
3562
|
-
region: 'cn' | 'us' | 'de';
|
|
3563
|
-
};
|
|
3564
3533
|
type PayeeController1Response = unknown;
|
|
3565
|
-
type PayeeController2Data = {
|
|
3566
|
-
/**
|
|
3567
|
-
* Region code (cn, us, de)
|
|
3568
|
-
*/
|
|
3569
|
-
region: 'cn' | 'us' | 'de';
|
|
3570
|
-
};
|
|
3571
3534
|
type PayeeController2Response = void;
|
|
3572
|
-
type PayeeProfileAdminControllerData = {
|
|
3573
|
-
/**
|
|
3574
|
-
* Region code (cn, us, de)
|
|
3575
|
-
*/
|
|
3576
|
-
region: 'cn' | 'us' | 'de';
|
|
3577
|
-
};
|
|
3578
3535
|
type PayeeProfileAdminControllerResponse = unknown;
|
|
3579
3536
|
type PayeeProfileAdminControllerFindAllData = {
|
|
3580
3537
|
/**
|
|
@@ -3593,10 +3550,6 @@ type PayeeProfileAdminControllerFindAllData = {
|
|
|
3593
3550
|
* Filter by active status (default: true - show only active)
|
|
3594
3551
|
*/
|
|
3595
3552
|
isActive?: boolean;
|
|
3596
|
-
/**
|
|
3597
|
-
* Region code (cn, us, de)
|
|
3598
|
-
*/
|
|
3599
|
-
region: 'cn' | 'us' | 'de';
|
|
3600
3553
|
/**
|
|
3601
3554
|
* Search term for canonical name and aliases (case-insensitive)
|
|
3602
3555
|
*/
|
|
@@ -3612,50 +3565,22 @@ type PayeeProfileAdminControllerFindOneData = {
|
|
|
3612
3565
|
* Payee profile ID (UUID)
|
|
3613
3566
|
*/
|
|
3614
3567
|
id: string;
|
|
3615
|
-
/**
|
|
3616
|
-
* Region code (cn, us, de)
|
|
3617
|
-
*/
|
|
3618
|
-
region: 'cn' | 'us' | 'de';
|
|
3619
3568
|
};
|
|
3620
3569
|
type PayeeProfileAdminControllerFindOneResponse = PayeeProfileResponseDto;
|
|
3621
|
-
type PayeeProfileAdminController1Data = {
|
|
3622
|
-
/**
|
|
3623
|
-
* Region code (cn, us, de)
|
|
3624
|
-
*/
|
|
3625
|
-
region: 'cn' | 'us' | 'de';
|
|
3626
|
-
};
|
|
3627
3570
|
type PayeeProfileAdminController1Response = unknown;
|
|
3628
|
-
type PayeeProfileAdminController2Data = {
|
|
3629
|
-
/**
|
|
3630
|
-
* Region code (cn, us, de)
|
|
3631
|
-
*/
|
|
3632
|
-
region: 'cn' | 'us' | 'de';
|
|
3633
|
-
};
|
|
3634
3571
|
type PayeeProfileAdminController2Response = void;
|
|
3635
|
-
type PayeeProfileAdminController3Data = {
|
|
3636
|
-
/**
|
|
3637
|
-
* Region code (cn, us, de)
|
|
3638
|
-
*/
|
|
3639
|
-
region: 'cn' | 'us' | 'de';
|
|
3640
|
-
};
|
|
3641
3572
|
type PayeeProfileAdminController3Response = unknown;
|
|
3642
|
-
type PayeeProfileAdminController4Data = {
|
|
3643
|
-
/**
|
|
3644
|
-
* Region code (cn, us, de)
|
|
3645
|
-
*/
|
|
3646
|
-
region: 'cn' | 'us' | 'de';
|
|
3647
|
-
};
|
|
3648
3573
|
type PayeeProfileAdminController4Response = unknown;
|
|
3649
3574
|
type CommodityControllerData = {
|
|
3650
3575
|
/**
|
|
3651
|
-
* Region code
|
|
3576
|
+
* Region code for tenant context
|
|
3652
3577
|
*/
|
|
3653
3578
|
region: 'cn' | 'us' | 'de';
|
|
3654
3579
|
};
|
|
3655
3580
|
type CommodityControllerResponse = unknown;
|
|
3656
3581
|
type CommodityControllerFindAllData = {
|
|
3657
3582
|
/**
|
|
3658
|
-
* Region code
|
|
3583
|
+
* Region code for tenant context
|
|
3659
3584
|
*/
|
|
3660
3585
|
region: 'cn' | 'us' | 'de';
|
|
3661
3586
|
/**
|
|
@@ -3670,7 +3595,7 @@ type CommodityControllerFindAllData = {
|
|
|
3670
3595
|
type CommodityControllerFindAllResponse = CommodityListResponseDto;
|
|
3671
3596
|
type CommodityControllerFindOneData = {
|
|
3672
3597
|
/**
|
|
3673
|
-
* Region code
|
|
3598
|
+
* Region code for tenant context
|
|
3674
3599
|
*/
|
|
3675
3600
|
region: 'cn' | 'us' | 'de';
|
|
3676
3601
|
/**
|
|
@@ -3681,35 +3606,35 @@ type CommodityControllerFindOneData = {
|
|
|
3681
3606
|
type CommodityControllerFindOneResponse = CommodityResponseDto;
|
|
3682
3607
|
type CommodityController1Data = {
|
|
3683
3608
|
/**
|
|
3684
|
-
* Region code
|
|
3609
|
+
* Region code for tenant context
|
|
3685
3610
|
*/
|
|
3686
3611
|
region: 'cn' | 'us' | 'de';
|
|
3687
3612
|
};
|
|
3688
3613
|
type CommodityController1Response = unknown;
|
|
3689
3614
|
type CommodityController2Data = {
|
|
3690
3615
|
/**
|
|
3691
|
-
* Region code
|
|
3616
|
+
* Region code for tenant context
|
|
3692
3617
|
*/
|
|
3693
3618
|
region: 'cn' | 'us' | 'de';
|
|
3694
3619
|
};
|
|
3695
3620
|
type CommodityController2Response = void;
|
|
3696
3621
|
type CommodityController3Data = {
|
|
3697
3622
|
/**
|
|
3698
|
-
* Region code
|
|
3623
|
+
* Region code for tenant context
|
|
3699
3624
|
*/
|
|
3700
3625
|
region: 'cn' | 'us' | 'de';
|
|
3701
3626
|
};
|
|
3702
3627
|
type CommodityController3Response = unknown;
|
|
3703
3628
|
type CommodityController4Data = {
|
|
3704
3629
|
/**
|
|
3705
|
-
* Region code
|
|
3630
|
+
* Region code for tenant context
|
|
3706
3631
|
*/
|
|
3707
3632
|
region: 'cn' | 'us' | 'de';
|
|
3708
3633
|
};
|
|
3709
3634
|
type CommodityController4Response = unknown;
|
|
3710
3635
|
type RecurringRuleControllerData = {
|
|
3711
3636
|
/**
|
|
3712
|
-
* Region code
|
|
3637
|
+
* Region code for tenant context
|
|
3713
3638
|
*/
|
|
3714
3639
|
region: 'cn' | 'us' | 'de';
|
|
3715
3640
|
};
|
|
@@ -3728,14 +3653,14 @@ type RecurringRuleControllerFindAllData = {
|
|
|
3728
3653
|
*/
|
|
3729
3654
|
isActive?: boolean;
|
|
3730
3655
|
/**
|
|
3731
|
-
* Region code
|
|
3656
|
+
* Region code for tenant context
|
|
3732
3657
|
*/
|
|
3733
3658
|
region: 'cn' | 'us' | 'de';
|
|
3734
3659
|
};
|
|
3735
3660
|
type RecurringRuleControllerFindAllResponse = Array<RecurringRuleResponseDto>;
|
|
3736
3661
|
type RecurringRuleController1Data = {
|
|
3737
3662
|
/**
|
|
3738
|
-
* Region code
|
|
3663
|
+
* Region code for tenant context
|
|
3739
3664
|
*/
|
|
3740
3665
|
region: 'cn' | 'us' | 'de';
|
|
3741
3666
|
};
|
|
@@ -3746,21 +3671,21 @@ type RecurringRuleControllerFindOneData = {
|
|
|
3746
3671
|
*/
|
|
3747
3672
|
id: string;
|
|
3748
3673
|
/**
|
|
3749
|
-
* Region code
|
|
3674
|
+
* Region code for tenant context
|
|
3750
3675
|
*/
|
|
3751
3676
|
region: 'cn' | 'us' | 'de';
|
|
3752
3677
|
};
|
|
3753
3678
|
type RecurringRuleControllerFindOneResponse = RecurringRuleResponseDto;
|
|
3754
3679
|
type RecurringRuleController2Data = {
|
|
3755
3680
|
/**
|
|
3756
|
-
* Region code
|
|
3681
|
+
* Region code for tenant context
|
|
3757
3682
|
*/
|
|
3758
3683
|
region: 'cn' | 'us' | 'de';
|
|
3759
3684
|
};
|
|
3760
3685
|
type RecurringRuleController2Response = unknown;
|
|
3761
3686
|
type RecurringRuleController3Data = {
|
|
3762
3687
|
/**
|
|
3763
|
-
* Region code
|
|
3688
|
+
* Region code for tenant context
|
|
3764
3689
|
*/
|
|
3765
3690
|
region: 'cn' | 'us' | 'de';
|
|
3766
3691
|
};
|
|
@@ -3771,7 +3696,7 @@ type RecurringRuleControllerGetWithStatsData = {
|
|
|
3771
3696
|
*/
|
|
3772
3697
|
id: string;
|
|
3773
3698
|
/**
|
|
3774
|
-
* Region code
|
|
3699
|
+
* Region code for tenant context
|
|
3775
3700
|
*/
|
|
3776
3701
|
region: 'cn' | 'us' | 'de';
|
|
3777
3702
|
};
|
|
@@ -3782,7 +3707,7 @@ type ExpectedTransactionControllerFindAllData = {
|
|
|
3782
3707
|
*/
|
|
3783
3708
|
fromDate?: string;
|
|
3784
3709
|
/**
|
|
3785
|
-
* Region code
|
|
3710
|
+
* Region code for tenant context
|
|
3786
3711
|
*/
|
|
3787
3712
|
region: 'cn' | 'us' | 'de';
|
|
3788
3713
|
/**
|
|
@@ -3801,7 +3726,7 @@ type ExpectedTransactionControllerFindAllData = {
|
|
|
3801
3726
|
type ExpectedTransactionControllerFindAllResponse = ExpectedTransactionListResponseDto;
|
|
3802
3727
|
type ExpectedTransactionControllerFindOverdueData = {
|
|
3803
3728
|
/**
|
|
3804
|
-
* Region code
|
|
3729
|
+
* Region code for tenant context
|
|
3805
3730
|
*/
|
|
3806
3731
|
region: 'cn' | 'us' | 'de';
|
|
3807
3732
|
};
|
|
@@ -3812,42 +3737,42 @@ type ExpectedTransactionControllerFindOneData = {
|
|
|
3812
3737
|
*/
|
|
3813
3738
|
id: string;
|
|
3814
3739
|
/**
|
|
3815
|
-
* Region code
|
|
3740
|
+
* Region code for tenant context
|
|
3816
3741
|
*/
|
|
3817
3742
|
region: 'cn' | 'us' | 'de';
|
|
3818
3743
|
};
|
|
3819
3744
|
type ExpectedTransactionControllerFindOneResponse = ExpectedTransactionResponseDto;
|
|
3820
3745
|
type ExpectedTransactionControllerData = {
|
|
3821
3746
|
/**
|
|
3822
|
-
* Region code
|
|
3747
|
+
* Region code for tenant context
|
|
3823
3748
|
*/
|
|
3824
3749
|
region: 'cn' | 'us' | 'de';
|
|
3825
3750
|
};
|
|
3826
3751
|
type ExpectedTransactionControllerResponse = unknown;
|
|
3827
3752
|
type ExpectedTransactionController1Data = {
|
|
3828
3753
|
/**
|
|
3829
|
-
* Region code
|
|
3754
|
+
* Region code for tenant context
|
|
3830
3755
|
*/
|
|
3831
3756
|
region: 'cn' | 'us' | 'de';
|
|
3832
3757
|
};
|
|
3833
3758
|
type ExpectedTransactionController1Response = unknown;
|
|
3834
3759
|
type ExpectedTransactionController2Data = {
|
|
3835
3760
|
/**
|
|
3836
|
-
* Region code
|
|
3761
|
+
* Region code for tenant context
|
|
3837
3762
|
*/
|
|
3838
3763
|
region: 'cn' | 'us' | 'de';
|
|
3839
3764
|
};
|
|
3840
3765
|
type ExpectedTransactionController2Response = unknown;
|
|
3841
3766
|
type ExpectedTransactionController3Data = {
|
|
3842
3767
|
/**
|
|
3843
|
-
* Region code
|
|
3768
|
+
* Region code for tenant context
|
|
3844
3769
|
*/
|
|
3845
3770
|
region: 'cn' | 'us' | 'de';
|
|
3846
3771
|
};
|
|
3847
3772
|
type ExpectedTransactionController3Response = unknown;
|
|
3848
3773
|
type ExpectedTransactionController4Data = {
|
|
3849
3774
|
/**
|
|
3850
|
-
* Region code
|
|
3775
|
+
* Region code for tenant context
|
|
3851
3776
|
*/
|
|
3852
3777
|
region: 'cn' | 'us' | 'de';
|
|
3853
3778
|
};
|
|
@@ -3857,15 +3782,11 @@ type ForecastControllerGetForecastData = {
|
|
|
3857
3782
|
* Number of months to forecast (1-12, default 3)
|
|
3858
3783
|
*/
|
|
3859
3784
|
months?: number;
|
|
3860
|
-
/**
|
|
3861
|
-
* Region code (cn, us, de)
|
|
3862
|
-
*/
|
|
3863
|
-
region: 'cn' | 'us' | 'de';
|
|
3864
3785
|
};
|
|
3865
3786
|
type ForecastControllerGetForecastResponse = ForecastResponseDto;
|
|
3866
3787
|
type TransactionRuleControllerData = {
|
|
3867
3788
|
/**
|
|
3868
|
-
* Region code
|
|
3789
|
+
* Region code for tenant context
|
|
3869
3790
|
*/
|
|
3870
3791
|
region: 'cn' | 'us' | 'de';
|
|
3871
3792
|
};
|
|
@@ -3892,14 +3813,14 @@ type TransactionRuleControllerListData = {
|
|
|
3892
3813
|
*/
|
|
3893
3814
|
offset?: number;
|
|
3894
3815
|
/**
|
|
3895
|
-
* Region code
|
|
3816
|
+
* Region code for tenant context
|
|
3896
3817
|
*/
|
|
3897
3818
|
region: 'cn' | 'us' | 'de';
|
|
3898
3819
|
};
|
|
3899
3820
|
type TransactionRuleControllerListResponse = TransactionRuleListResponseDto;
|
|
3900
3821
|
type TransactionRuleControllerValidateData = {
|
|
3901
3822
|
/**
|
|
3902
|
-
* Region code
|
|
3823
|
+
* Region code for tenant context
|
|
3903
3824
|
*/
|
|
3904
3825
|
region: 'cn' | 'us' | 'de';
|
|
3905
3826
|
requestBody: ValidateRuleDto;
|
|
@@ -3907,7 +3828,7 @@ type TransactionRuleControllerValidateData = {
|
|
|
3907
3828
|
type TransactionRuleControllerValidateResponse = ValidateRuleResponseDto;
|
|
3908
3829
|
type TransactionRuleController1Data = {
|
|
3909
3830
|
/**
|
|
3910
|
-
* Region code
|
|
3831
|
+
* Region code for tenant context
|
|
3911
3832
|
*/
|
|
3912
3833
|
region: 'cn' | 'us' | 'de';
|
|
3913
3834
|
};
|
|
@@ -3918,7 +3839,7 @@ type TransactionRuleControllerExportData = {
|
|
|
3918
3839
|
*/
|
|
3919
3840
|
format: 'json';
|
|
3920
3841
|
/**
|
|
3921
|
-
* Region code
|
|
3842
|
+
* Region code for tenant context
|
|
3922
3843
|
*/
|
|
3923
3844
|
region: 'cn' | 'us' | 'de';
|
|
3924
3845
|
};
|
|
@@ -3929,14 +3850,14 @@ type TransactionRuleControllerGetStatisticsData = {
|
|
|
3929
3850
|
*/
|
|
3930
3851
|
period: '7d' | '30d' | '90d';
|
|
3931
3852
|
/**
|
|
3932
|
-
* Region code
|
|
3853
|
+
* Region code for tenant context
|
|
3933
3854
|
*/
|
|
3934
3855
|
region: 'cn' | 'us' | 'de';
|
|
3935
3856
|
};
|
|
3936
3857
|
type TransactionRuleControllerGetStatisticsResponse = RuleStatisticsResponseDto;
|
|
3937
3858
|
type TransactionRuleControllerGetDetailData = {
|
|
3938
3859
|
/**
|
|
3939
|
-
* Region code
|
|
3860
|
+
* Region code for tenant context
|
|
3940
3861
|
*/
|
|
3941
3862
|
region: 'cn' | 'us' | 'de';
|
|
3942
3863
|
/**
|
|
@@ -3947,21 +3868,21 @@ type TransactionRuleControllerGetDetailData = {
|
|
|
3947
3868
|
type TransactionRuleControllerGetDetailResponse = TransactionRuleResponseDto;
|
|
3948
3869
|
type TransactionRuleController2Data = {
|
|
3949
3870
|
/**
|
|
3950
|
-
* Region code
|
|
3871
|
+
* Region code for tenant context
|
|
3951
3872
|
*/
|
|
3952
3873
|
region: 'cn' | 'us' | 'de';
|
|
3953
3874
|
};
|
|
3954
3875
|
type TransactionRuleController2Response = unknown;
|
|
3955
3876
|
type TransactionRuleController3Data = {
|
|
3956
3877
|
/**
|
|
3957
|
-
* Region code
|
|
3878
|
+
* Region code for tenant context
|
|
3958
3879
|
*/
|
|
3959
3880
|
region: 'cn' | 'us' | 'de';
|
|
3960
3881
|
};
|
|
3961
3882
|
type TransactionRuleController3Response = void;
|
|
3962
3883
|
type TransactionRuleControllerTestData = {
|
|
3963
3884
|
/**
|
|
3964
|
-
* Region code
|
|
3885
|
+
* Region code for tenant context
|
|
3965
3886
|
*/
|
|
3966
3887
|
region: 'cn' | 'us' | 'de';
|
|
3967
3888
|
requestBody: TestRuleDto;
|
|
@@ -3972,26 +3893,14 @@ type TransactionRuleControllerTestData = {
|
|
|
3972
3893
|
};
|
|
3973
3894
|
type TransactionRuleControllerTestResponse = TestRuleResponseDto;
|
|
3974
3895
|
type UserControllerDeleteOwnUserData = {
|
|
3975
|
-
/**
|
|
3976
|
-
* Region code (cn, us, de)
|
|
3977
|
-
*/
|
|
3978
|
-
region: 'cn' | 'us' | 'de';
|
|
3979
3896
|
requestBody: DeleteOwnUserDto;
|
|
3980
3897
|
};
|
|
3981
3898
|
type UserControllerDeleteOwnUserResponse = void;
|
|
3982
3899
|
type UserControllerGetUserData = {
|
|
3983
3900
|
acceptLanguage: string;
|
|
3984
|
-
/**
|
|
3985
|
-
* Region code (cn, us, de)
|
|
3986
|
-
*/
|
|
3987
|
-
region: 'cn' | 'us' | 'de';
|
|
3988
3901
|
};
|
|
3989
3902
|
type UserControllerGetUserResponse = unknown;
|
|
3990
3903
|
type UserControllerSignupUserData = {
|
|
3991
|
-
/**
|
|
3992
|
-
* Region code (cn, us, de)
|
|
3993
|
-
*/
|
|
3994
|
-
region: 'cn' | 'us' | 'de';
|
|
3995
3904
|
requestBody: SignupDto;
|
|
3996
3905
|
};
|
|
3997
3906
|
type UserControllerSignupUserResponse = unknown;
|
|
@@ -4000,10 +3909,6 @@ type UserControllerDeleteUserData = {
|
|
|
4000
3909
|
* User ID to delete
|
|
4001
3910
|
*/
|
|
4002
3911
|
id: string;
|
|
4003
|
-
/**
|
|
4004
|
-
* Region code (cn, us, de)
|
|
4005
|
-
*/
|
|
4006
|
-
region: 'cn' | 'us' | 'de';
|
|
4007
3912
|
};
|
|
4008
3913
|
type UserControllerDeleteUserResponse = void;
|
|
4009
3914
|
type UserControllerGetUserInfoData = {
|
|
@@ -4011,17 +3916,9 @@ type UserControllerGetUserInfoData = {
|
|
|
4011
3916
|
* User ID
|
|
4012
3917
|
*/
|
|
4013
3918
|
id: string;
|
|
4014
|
-
/**
|
|
4015
|
-
* Region code (cn, us, de)
|
|
4016
|
-
*/
|
|
4017
|
-
region: 'cn' | 'us' | 'de';
|
|
4018
3919
|
};
|
|
4019
3920
|
type UserControllerGetUserInfoResponse = unknown;
|
|
4020
3921
|
type UserControllerUpdateUserSettingData = {
|
|
4021
|
-
/**
|
|
4022
|
-
* Region code (cn, us, de)
|
|
4023
|
-
*/
|
|
4024
|
-
region: 'cn' | 'us' | 'de';
|
|
4025
3922
|
requestBody: UpdateUserSettingDto;
|
|
4026
3923
|
};
|
|
4027
3924
|
type UserControllerUpdateUserSettingResponse = unknown;
|
|
@@ -4034,60 +3931,24 @@ type UserControllerGetAllUserSettingsByPageData = {
|
|
|
4034
3931
|
* Page size
|
|
4035
3932
|
*/
|
|
4036
3933
|
pageSize: number;
|
|
4037
|
-
/**
|
|
4038
|
-
* Region code (cn, us, de)
|
|
4039
|
-
*/
|
|
4040
|
-
region: 'cn' | 'us' | 'de';
|
|
4041
3934
|
};
|
|
4042
3935
|
type UserControllerGetAllUserSettingsByPageResponse = unknown;
|
|
4043
|
-
type UserControllerGetAssetLiabilitySummaryData = {
|
|
4044
|
-
/**
|
|
4045
|
-
* Region code (cn, us, de)
|
|
4046
|
-
*/
|
|
4047
|
-
region: 'cn' | 'us' | 'de';
|
|
4048
|
-
};
|
|
4049
3936
|
type UserControllerGetAssetLiabilitySummaryResponse = unknown;
|
|
4050
|
-
type PropertyControllerGetAllData = {
|
|
4051
|
-
/**
|
|
4052
|
-
* Region code (cn, us, de)
|
|
4053
|
-
*/
|
|
4054
|
-
region: 'cn' | 'us' | 'de';
|
|
4055
|
-
};
|
|
4056
3937
|
type PropertyControllerGetAllResponse = unknown;
|
|
4057
3938
|
type PropertyControllerGetByKeyData = {
|
|
4058
3939
|
/**
|
|
4059
3940
|
* Property key
|
|
4060
3941
|
*/
|
|
4061
3942
|
key: string;
|
|
4062
|
-
/**
|
|
4063
|
-
* Region code (cn, us, de)
|
|
4064
|
-
*/
|
|
4065
|
-
region: 'cn' | 'us' | 'de';
|
|
4066
3943
|
};
|
|
4067
3944
|
type PropertyControllerGetByKeyResponse = unknown;
|
|
4068
|
-
type PropertyControllerData = {
|
|
4069
|
-
/**
|
|
4070
|
-
* Region code (cn, us, de)
|
|
4071
|
-
*/
|
|
4072
|
-
region: 'cn' | 'us' | 'de';
|
|
4073
|
-
};
|
|
4074
3945
|
type PropertyControllerResponse = unknown;
|
|
4075
|
-
type PropertyController1Data = {
|
|
4076
|
-
/**
|
|
4077
|
-
* Region code (cn, us, de)
|
|
4078
|
-
*/
|
|
4079
|
-
region: 'cn' | 'us' | 'de';
|
|
4080
|
-
};
|
|
4081
3946
|
type PropertyController1Response = void;
|
|
4082
3947
|
type FileImportControllerImportFileData = {
|
|
4083
3948
|
/**
|
|
4084
3949
|
* Bill file to import
|
|
4085
3950
|
*/
|
|
4086
3951
|
formData: FileImportDto;
|
|
4087
|
-
/**
|
|
4088
|
-
* Region code (cn, us, de)
|
|
4089
|
-
*/
|
|
4090
|
-
region: 'cn' | 'us' | 'de';
|
|
4091
3952
|
};
|
|
4092
3953
|
type FileImportControllerImportFileResponse = ImportResultDto;
|
|
4093
3954
|
type FileImportControllerIdentifyFileData = {
|
|
@@ -4095,33 +3956,29 @@ type FileImportControllerIdentifyFileData = {
|
|
|
4095
3956
|
* File to identify
|
|
4096
3957
|
*/
|
|
4097
3958
|
formData: FileImportDto;
|
|
4098
|
-
/**
|
|
4099
|
-
* Region code (cn, us, de)
|
|
4100
|
-
*/
|
|
4101
|
-
region: 'cn' | 'us' | 'de';
|
|
4102
3959
|
};
|
|
4103
3960
|
type FileImportControllerIdentifyFileResponse = IdentifyResultDto;
|
|
4104
3961
|
type ImporterConfigControllerGetConfigData = {
|
|
4105
3962
|
/**
|
|
4106
|
-
* 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
|
|
4107
3964
|
*/
|
|
4108
3965
|
importerId: string;
|
|
4109
3966
|
/**
|
|
4110
|
-
* Region code
|
|
3967
|
+
* Region code for tenant context
|
|
4111
3968
|
*/
|
|
4112
3969
|
region: 'cn' | 'us' | 'de';
|
|
4113
3970
|
};
|
|
4114
3971
|
type ImporterConfigControllerGetConfigResponse = ImporterConfigDto;
|
|
4115
3972
|
type ImporterConfigControllerData = {
|
|
4116
3973
|
/**
|
|
4117
|
-
* Region code
|
|
3974
|
+
* Region code for tenant context
|
|
4118
3975
|
*/
|
|
4119
3976
|
region: 'cn' | 'us' | 'de';
|
|
4120
3977
|
};
|
|
4121
3978
|
type ImporterConfigControllerResponse = unknown;
|
|
4122
3979
|
type ImporterConfigController1Data = {
|
|
4123
3980
|
/**
|
|
4124
|
-
* Region code
|
|
3981
|
+
* Region code for tenant context
|
|
4125
3982
|
*/
|
|
4126
3983
|
region: 'cn' | 'us' | 'de';
|
|
4127
3984
|
};
|
|
@@ -4130,7 +3987,7 @@ type ProviderSyncControllerSyncData = {
|
|
|
4130
3987
|
/**
|
|
4131
3988
|
* Provider name
|
|
4132
3989
|
*/
|
|
4133
|
-
providerName: 'plaid' | 'teller' | 'truelayer' | 'gocardless' | 'simplefin' | 'yodlee' | 'beancount-direct';
|
|
3990
|
+
providerName: 'plaid' | 'teller' | 'truelayer' | 'gocardless' | 'simplefin' | 'yodlee' | 'beancount-direct' | 'parsed-bill';
|
|
4134
3991
|
/**
|
|
4135
3992
|
* Region code
|
|
4136
3993
|
*/
|
|
@@ -4138,29 +3995,19 @@ type ProviderSyncControllerSyncData = {
|
|
|
4138
3995
|
requestBody: ProviderSyncDto;
|
|
4139
3996
|
};
|
|
4140
3997
|
type ProviderSyncControllerSyncResponse = ProviderSyncResponseDto;
|
|
4141
|
-
type ProviderSyncControllerGetSupportedProvidersData = {
|
|
4142
|
-
/**
|
|
4143
|
-
* Region code (cn, us, de)
|
|
4144
|
-
*/
|
|
4145
|
-
region: 'cn' | 'us' | 'de';
|
|
4146
|
-
};
|
|
4147
3998
|
type ProviderSyncControllerGetSupportedProvidersResponse = SupportedProvidersResponseDto;
|
|
4148
3999
|
type ProviderSyncControllerIsProviderSupportedData = {
|
|
4149
4000
|
/**
|
|
4150
4001
|
* Provider name to check
|
|
4151
4002
|
*/
|
|
4152
4003
|
providerName: string;
|
|
4153
|
-
/**
|
|
4154
|
-
* Region code (cn, us, de)
|
|
4155
|
-
*/
|
|
4156
|
-
region: 'cn' | 'us' | 'de';
|
|
4157
4004
|
};
|
|
4158
4005
|
type ProviderSyncControllerIsProviderSupportedResponse = unknown;
|
|
4006
|
+
type TelemetryControllerReportTelemetryData = {
|
|
4007
|
+
requestBody: ParserTelemetryReportDto;
|
|
4008
|
+
};
|
|
4009
|
+
type TelemetryControllerReportTelemetryResponse = unknown;
|
|
4159
4010
|
type NlpControllerProcessNaturalLanguageData = {
|
|
4160
|
-
/**
|
|
4161
|
-
* Region code (cn, us, de)
|
|
4162
|
-
*/
|
|
4163
|
-
region: 'cn' | 'us' | 'de';
|
|
4164
4011
|
/**
|
|
4165
4012
|
* Natural language transaction input with optional session ID
|
|
4166
4013
|
*/
|
|
@@ -4168,10 +4015,6 @@ type NlpControllerProcessNaturalLanguageData = {
|
|
|
4168
4015
|
};
|
|
4169
4016
|
type NlpControllerProcessNaturalLanguageResponse = NlpResponseDto;
|
|
4170
4017
|
type NlpControllerClearSessionData = {
|
|
4171
|
-
/**
|
|
4172
|
-
* Region code (cn, us, de)
|
|
4173
|
-
*/
|
|
4174
|
-
region: 'cn' | 'us' | 'de';
|
|
4175
4018
|
/**
|
|
4176
4019
|
* Specific session ID to clear (defaults to user session)
|
|
4177
4020
|
*/
|
|
@@ -4179,50 +4022,16 @@ type NlpControllerClearSessionData = {
|
|
|
4179
4022
|
};
|
|
4180
4023
|
type NlpControllerClearSessionResponse = void;
|
|
4181
4024
|
type NlpControllerGetSessionData = {
|
|
4182
|
-
/**
|
|
4183
|
-
* Region code (cn, us, de)
|
|
4184
|
-
*/
|
|
4185
|
-
region: 'cn' | 'us' | 'de';
|
|
4186
4025
|
/**
|
|
4187
4026
|
* Specific session ID to get (defaults to user session)
|
|
4188
4027
|
*/
|
|
4189
4028
|
sessionId?: string;
|
|
4190
4029
|
};
|
|
4191
4030
|
type NlpControllerGetSessionResponse = unknown;
|
|
4192
|
-
type PlatformControllerFindAllData = {
|
|
4193
|
-
/**
|
|
4194
|
-
* Region code (cn, us, de)
|
|
4195
|
-
*/
|
|
4196
|
-
region: 'cn' | 'us' | 'de';
|
|
4197
|
-
};
|
|
4198
4031
|
type PlatformControllerFindAllResponse = unknown;
|
|
4199
|
-
type PlatformControllerData = {
|
|
4200
|
-
/**
|
|
4201
|
-
* Region code (cn, us, de)
|
|
4202
|
-
*/
|
|
4203
|
-
region: 'cn' | 'us' | 'de';
|
|
4204
|
-
};
|
|
4205
4032
|
type PlatformControllerResponse = unknown;
|
|
4206
|
-
type PlatformControllerGetPlatformListData = {
|
|
4207
|
-
/**
|
|
4208
|
-
* Region code (cn, us, de)
|
|
4209
|
-
*/
|
|
4210
|
-
region: 'cn' | 'us' | 'de';
|
|
4211
|
-
};
|
|
4212
4033
|
type PlatformControllerGetPlatformListResponse = unknown;
|
|
4213
|
-
type PlatformController1Data = {
|
|
4214
|
-
/**
|
|
4215
|
-
* Region code (cn, us, de)
|
|
4216
|
-
*/
|
|
4217
|
-
region: 'cn' | 'us' | 'de';
|
|
4218
|
-
};
|
|
4219
4034
|
type PlatformController1Response = unknown;
|
|
4220
|
-
type PlatformController2Data = {
|
|
4221
|
-
/**
|
|
4222
|
-
* Region code (cn, us, de)
|
|
4223
|
-
*/
|
|
4224
|
-
region: 'cn' | 'us' | 'de';
|
|
4225
|
-
};
|
|
4226
4035
|
type PlatformController2Response = void;
|
|
4227
4036
|
type SymbolControllerLookupSymbolData = {
|
|
4228
4037
|
/**
|
|
@@ -4245,10 +4054,6 @@ type SymbolControllerLookupSymbolData = {
|
|
|
4245
4054
|
* Search query string
|
|
4246
4055
|
*/
|
|
4247
4056
|
query?: unknown;
|
|
4248
|
-
/**
|
|
4249
|
-
* Region code (cn, us, de)
|
|
4250
|
-
*/
|
|
4251
|
-
region: 'cn' | 'us' | 'de';
|
|
4252
4057
|
};
|
|
4253
4058
|
type SymbolControllerLookupSymbolResponse = unknown;
|
|
4254
4059
|
type SymbolControllerGetSymbolDataData = {
|
|
@@ -4260,10 +4065,6 @@ type SymbolControllerGetSymbolDataData = {
|
|
|
4260
4065
|
* Include historical price data (0 or 1)
|
|
4261
4066
|
*/
|
|
4262
4067
|
includeHistoricalData?: unknown;
|
|
4263
|
-
/**
|
|
4264
|
-
* Region code (cn, us, de)
|
|
4265
|
-
*/
|
|
4266
|
-
region: 'cn' | 'us' | 'de';
|
|
4267
4068
|
/**
|
|
4268
4069
|
* Symbol identifier (e.g., ticker code)
|
|
4269
4070
|
*/
|
|
@@ -4279,39 +4080,19 @@ type SymbolControllerGatherSymbolForDateData = {
|
|
|
4279
4080
|
* Date in ISO 8601 format (YYYY-MM-DD)
|
|
4280
4081
|
*/
|
|
4281
4082
|
dateString: string;
|
|
4282
|
-
/**
|
|
4283
|
-
* Region code (cn, us, de)
|
|
4284
|
-
*/
|
|
4285
|
-
region: 'cn' | 'us' | 'de';
|
|
4286
4083
|
/**
|
|
4287
4084
|
* Symbol identifier (e.g., ticker code)
|
|
4288
4085
|
*/
|
|
4289
4086
|
symbol: string;
|
|
4290
4087
|
};
|
|
4291
4088
|
type SymbolControllerGatherSymbolForDateResponse = unknown;
|
|
4292
|
-
type SymbolControllerData = {
|
|
4293
|
-
/**
|
|
4294
|
-
* Region code (cn, us, de)
|
|
4295
|
-
*/
|
|
4296
|
-
region: 'cn' | 'us' | 'de';
|
|
4297
|
-
};
|
|
4298
4089
|
type SymbolControllerResponse = unknown;
|
|
4299
|
-
type CacheControllerFlushCacheData = {
|
|
4300
|
-
/**
|
|
4301
|
-
* Region code (cn, us, de)
|
|
4302
|
-
*/
|
|
4303
|
-
region: 'cn' | 'us' | 'de';
|
|
4304
|
-
};
|
|
4305
4090
|
type CacheControllerFlushCacheResponse = unknown;
|
|
4306
4091
|
type DashboardControllerGetNetWorthData = {
|
|
4307
4092
|
/**
|
|
4308
4093
|
* Date for balance calculation (ISO 8601 format)
|
|
4309
4094
|
*/
|
|
4310
4095
|
date?: string;
|
|
4311
|
-
/**
|
|
4312
|
-
* Region code (cn, us, de)
|
|
4313
|
-
*/
|
|
4314
|
-
region: 'cn' | 'us' | 'de';
|
|
4315
4096
|
};
|
|
4316
4097
|
type DashboardControllerGetNetWorthResponse = NetWorthResponseDto;
|
|
4317
4098
|
type DashboardControllerGetAccountsData = {
|
|
@@ -4323,10 +4104,6 @@ type DashboardControllerGetAccountsData = {
|
|
|
4323
4104
|
* Grouping strategy
|
|
4324
4105
|
*/
|
|
4325
4106
|
groupBy?: 'platform' | 'assetClass';
|
|
4326
|
-
/**
|
|
4327
|
-
* Region code (cn, us, de)
|
|
4328
|
-
*/
|
|
4329
|
-
region: 'cn' | 'us' | 'de';
|
|
4330
4107
|
};
|
|
4331
4108
|
type DashboardControllerGetAccountsResponse = AccountsResponseDto | AssetClassAccountsResponseDto;
|
|
4332
4109
|
type DashboardControllerGetCashFlowData = {
|
|
@@ -4334,10 +4111,6 @@ type DashboardControllerGetCashFlowData = {
|
|
|
4334
4111
|
* Period in YYYY-MM format
|
|
4335
4112
|
*/
|
|
4336
4113
|
period: string;
|
|
4337
|
-
/**
|
|
4338
|
-
* Region code (cn, us, de)
|
|
4339
|
-
*/
|
|
4340
|
-
region: 'cn' | 'us' | 'de';
|
|
4341
4114
|
};
|
|
4342
4115
|
type DashboardControllerGetCashFlowResponse = CashFlowResponseDto;
|
|
4343
4116
|
type ReportingControllerGetPortfolioTrendsData = {
|
|
@@ -4349,17 +4122,9 @@ type ReportingControllerGetPortfolioTrendsData = {
|
|
|
4349
4122
|
* Time period
|
|
4350
4123
|
*/
|
|
4351
4124
|
period?: '1m' | '3m' | '6m' | '1y';
|
|
4352
|
-
/**
|
|
4353
|
-
* Region code (cn, us, de)
|
|
4354
|
-
*/
|
|
4355
|
-
region: 'cn' | 'us' | 'de';
|
|
4356
4125
|
};
|
|
4357
4126
|
type ReportingControllerGetPortfolioTrendsResponse = PortfolioTrendsResponseDto;
|
|
4358
4127
|
type ReportingControllerGenerateSnapshotData = {
|
|
4359
|
-
/**
|
|
4360
|
-
* Region code (cn, us, de)
|
|
4361
|
-
*/
|
|
4362
|
-
region: 'cn' | 'us' | 'de';
|
|
4363
4128
|
/**
|
|
4364
4129
|
* Optional date (defaults to today)
|
|
4365
4130
|
*/
|
|
@@ -4367,25 +4132,11 @@ type ReportingControllerGenerateSnapshotData = {
|
|
|
4367
4132
|
};
|
|
4368
4133
|
type ReportingControllerGenerateSnapshotResponse = GenerateSnapshotResponse;
|
|
4369
4134
|
type ReportingControllerBackfillSnapshotsData = {
|
|
4370
|
-
/**
|
|
4371
|
-
* Region code (cn, us, de)
|
|
4372
|
-
*/
|
|
4373
|
-
region: 'cn' | 'us' | 'de';
|
|
4374
4135
|
requestBody: BackfillSnapshotsBody;
|
|
4375
4136
|
};
|
|
4376
4137
|
type ReportingControllerBackfillSnapshotsResponse = BackfillSnapshotsResponse;
|
|
4377
|
-
type ApiKeysControllerData = {
|
|
4378
|
-
/**
|
|
4379
|
-
* Region code (cn, us, de)
|
|
4380
|
-
*/
|
|
4381
|
-
region: 'cn' | 'us' | 'de';
|
|
4382
|
-
};
|
|
4383
4138
|
type ApiKeysControllerResponse = unknown;
|
|
4384
4139
|
type AuthControllerAccessTokenLoginData = {
|
|
4385
|
-
/**
|
|
4386
|
-
* Region code (cn, us, de)
|
|
4387
|
-
*/
|
|
4388
|
-
region: 'cn' | 'us' | 'de';
|
|
4389
4140
|
requestBody: AnonymousLoginDto;
|
|
4390
4141
|
};
|
|
4391
4142
|
type AuthControllerAccessTokenLoginResponse = unknown;
|
|
@@ -4394,107 +4145,45 @@ type ExchangeRateControllerGetExchangeRateData = {
|
|
|
4394
4145
|
* Date in ISO format (YYYY-MM-DD)
|
|
4395
4146
|
*/
|
|
4396
4147
|
dateString: string;
|
|
4397
|
-
/**
|
|
4398
|
-
* Region code (cn, us, de)
|
|
4399
|
-
*/
|
|
4400
|
-
region: 'cn' | 'us' | 'de';
|
|
4401
4148
|
/**
|
|
4402
4149
|
* Currency pair symbol (e.g., USDCNY, EURUSD)
|
|
4403
4150
|
*/
|
|
4404
4151
|
symbol: string;
|
|
4405
4152
|
};
|
|
4406
4153
|
type ExchangeRateControllerGetExchangeRateResponse = unknown;
|
|
4407
|
-
type HealthControllerGetHealthData = {
|
|
4408
|
-
/**
|
|
4409
|
-
* Region code (cn, us, de)
|
|
4410
|
-
*/
|
|
4411
|
-
region: 'cn' | 'us' | 'de';
|
|
4412
|
-
};
|
|
4413
4154
|
type HealthControllerGetHealthResponse = unknown;
|
|
4414
|
-
type HealthControllerCheckDatabaseData = {
|
|
4415
|
-
/**
|
|
4416
|
-
* Region code (cn, us, de)
|
|
4417
|
-
*/
|
|
4418
|
-
region: 'cn' | 'us' | 'de';
|
|
4419
|
-
};
|
|
4420
4155
|
type HealthControllerCheckDatabaseResponse = unknown;
|
|
4421
|
-
type HealthControllerCheckRedisData = {
|
|
4422
|
-
/**
|
|
4423
|
-
* Region code (cn, us, de)
|
|
4424
|
-
*/
|
|
4425
|
-
region: 'cn' | 'us' | 'de';
|
|
4426
|
-
};
|
|
4427
4156
|
type HealthControllerCheckRedisResponse = unknown;
|
|
4428
|
-
type HealthControllerGetCircuitBreakersHealthData = {
|
|
4429
|
-
/**
|
|
4430
|
-
* Region code (cn, us, de)
|
|
4431
|
-
*/
|
|
4432
|
-
region: 'cn' | 'us' | 'de';
|
|
4433
|
-
};
|
|
4434
4157
|
type HealthControllerGetCircuitBreakersHealthResponse = unknown;
|
|
4435
4158
|
type HealthControllerResetCircuitBreakerData = {
|
|
4436
4159
|
/**
|
|
4437
4160
|
* Circuit breaker name to reset
|
|
4438
4161
|
*/
|
|
4439
4162
|
name: string;
|
|
4440
|
-
/**
|
|
4441
|
-
* Region code (cn, us, de)
|
|
4442
|
-
*/
|
|
4443
|
-
region: 'cn' | 'us' | 'de';
|
|
4444
4163
|
};
|
|
4445
4164
|
type HealthControllerResetCircuitBreakerResponse = unknown;
|
|
4446
|
-
type HealthControllerGetMetricsData = {
|
|
4447
|
-
/**
|
|
4448
|
-
* Region code (cn, us, de)
|
|
4449
|
-
*/
|
|
4450
|
-
region: 'cn' | 'us' | 'de';
|
|
4451
|
-
};
|
|
4452
4165
|
type HealthControllerGetMetricsResponse = unknown;
|
|
4453
4166
|
type HealthControllerGetHealthOfDataEnhancerData = {
|
|
4454
4167
|
/**
|
|
4455
4168
|
* Data enhancer name
|
|
4456
4169
|
*/
|
|
4457
4170
|
name: string;
|
|
4458
|
-
/**
|
|
4459
|
-
* Region code (cn, us, de)
|
|
4460
|
-
*/
|
|
4461
|
-
region: 'cn' | 'us' | 'de';
|
|
4462
4171
|
};
|
|
4463
4172
|
type HealthControllerGetHealthOfDataEnhancerResponse = unknown;
|
|
4464
|
-
type HealthControllerCheckDataProvidersData = {
|
|
4465
|
-
/**
|
|
4466
|
-
* Region code (cn, us, de)
|
|
4467
|
-
*/
|
|
4468
|
-
region: 'cn' | 'us' | 'de';
|
|
4469
|
-
};
|
|
4470
4173
|
type HealthControllerCheckDataProvidersResponse = unknown;
|
|
4471
4174
|
type HealthControllerGetHealthOfDataProviderData = {
|
|
4472
4175
|
/**
|
|
4473
4176
|
* Data source identifier
|
|
4474
4177
|
*/
|
|
4475
4178
|
dataSource: string;
|
|
4476
|
-
/**
|
|
4477
|
-
* Region code (cn, us, de)
|
|
4478
|
-
*/
|
|
4479
|
-
region: 'cn' | 'us' | 'de';
|
|
4480
4179
|
};
|
|
4481
4180
|
type HealthControllerGetHealthOfDataProviderResponse = unknown;
|
|
4482
|
-
type InfoControllerGetInfoData = {
|
|
4483
|
-
/**
|
|
4484
|
-
* Region code (cn, us, de)
|
|
4485
|
-
*/
|
|
4486
|
-
region: 'cn' | 'us' | 'de';
|
|
4487
|
-
};
|
|
4488
4181
|
type InfoControllerGetInfoResponse = unknown;
|
|
4489
4182
|
type LogoControllerGetLogoByDataSourceAndSymbolData = {
|
|
4490
4183
|
/**
|
|
4491
4184
|
* Data source identifier (e.g., YAHOO, COINGECKO)
|
|
4492
4185
|
*/
|
|
4493
4186
|
dataSource: string;
|
|
4494
|
-
/**
|
|
4495
|
-
* Region code (cn, us, de)
|
|
4496
|
-
*/
|
|
4497
|
-
region: 'cn' | 'us' | 'de';
|
|
4498
4187
|
/**
|
|
4499
4188
|
* Asset symbol (e.g., AAPL, BTC)
|
|
4500
4189
|
*/
|
|
@@ -4502,10 +4191,6 @@ type LogoControllerGetLogoByDataSourceAndSymbolData = {
|
|
|
4502
4191
|
};
|
|
4503
4192
|
type LogoControllerGetLogoByDataSourceAndSymbolResponse = unknown;
|
|
4504
4193
|
type LogoControllerGetLogoByUrlData = {
|
|
4505
|
-
/**
|
|
4506
|
-
* Region code (cn, us, de)
|
|
4507
|
-
*/
|
|
4508
|
-
region: 'cn' | 'us' | 'de';
|
|
4509
4194
|
/**
|
|
4510
4195
|
* Website URL to fetch favicon from
|
|
4511
4196
|
*/
|
|
@@ -4517,22 +4202,12 @@ type MarketDataControllerGetMarketDataBySymbolData = {
|
|
|
4517
4202
|
* Data source provider
|
|
4518
4203
|
*/
|
|
4519
4204
|
dataSource: 'ALPHA_VANTAGE' | 'EOD_HISTORICAL_DATA' | 'FINANCIAL_MODELING_PREP' | 'MANUAL' | 'RAPID_API' | 'YAHOO' | 'COINGECKO' | 'TUSHARE' | 'BLOOMBERG' | 'CSI' | 'STOOQ' | 'TRADING_VIEW';
|
|
4520
|
-
/**
|
|
4521
|
-
* Region code (cn, us, de)
|
|
4522
|
-
*/
|
|
4523
|
-
region: 'cn' | 'us' | 'de';
|
|
4524
4205
|
/**
|
|
4525
4206
|
* Symbol code
|
|
4526
4207
|
*/
|
|
4527
4208
|
symbol: string;
|
|
4528
4209
|
};
|
|
4529
4210
|
type MarketDataControllerGetMarketDataBySymbolResponse = unknown;
|
|
4530
|
-
type MarketDataControllerData = {
|
|
4531
|
-
/**
|
|
4532
|
-
* Region code (cn, us, de)
|
|
4533
|
-
*/
|
|
4534
|
-
region: 'cn' | 'us' | 'de';
|
|
4535
|
-
};
|
|
4536
4211
|
type MarketDataControllerResponse = unknown;
|
|
4537
4212
|
type $OpenApiTs = {
|
|
4538
4213
|
'/api/v1/{region}/bean/accounts': {
|
|
@@ -4749,7 +4424,6 @@ type $OpenApiTs = {
|
|
|
4749
4424
|
};
|
|
4750
4425
|
'/api/v1/{region}/bean/account-standards/regions': {
|
|
4751
4426
|
get: {
|
|
4752
|
-
req: AccountStandardsControllerGetRegionsData;
|
|
4753
4427
|
res: {
|
|
4754
4428
|
/**
|
|
4755
4429
|
* Regions metadata retrieved successfully
|
|
@@ -4779,7 +4453,6 @@ type $OpenApiTs = {
|
|
|
4779
4453
|
};
|
|
4780
4454
|
'/api/v1/{region}/bean/balances/multi-currency': {
|
|
4781
4455
|
get: {
|
|
4782
|
-
req: BalanceControllerGetMultiCurrencyBalanceData;
|
|
4783
4456
|
res: {
|
|
4784
4457
|
/**
|
|
4785
4458
|
* Balances calculated successfully
|
|
@@ -4846,7 +4519,6 @@ type $OpenApiTs = {
|
|
|
4846
4519
|
};
|
|
4847
4520
|
'/api/v1/bean/payees': {
|
|
4848
4521
|
post: {
|
|
4849
|
-
req: PayeeControllerData;
|
|
4850
4522
|
res: {
|
|
4851
4523
|
201: unknown;
|
|
4852
4524
|
};
|
|
@@ -4902,13 +4574,11 @@ type $OpenApiTs = {
|
|
|
4902
4574
|
};
|
|
4903
4575
|
};
|
|
4904
4576
|
put: {
|
|
4905
|
-
req: PayeeController1Data;
|
|
4906
4577
|
res: {
|
|
4907
4578
|
200: unknown;
|
|
4908
4579
|
};
|
|
4909
4580
|
};
|
|
4910
4581
|
delete: {
|
|
4911
|
-
req: PayeeController2Data;
|
|
4912
4582
|
res: {
|
|
4913
4583
|
204: void;
|
|
4914
4584
|
};
|
|
@@ -4916,7 +4586,6 @@ type $OpenApiTs = {
|
|
|
4916
4586
|
};
|
|
4917
4587
|
'/api/v1/admin/payee-profiles': {
|
|
4918
4588
|
post: {
|
|
4919
|
-
req: PayeeProfileAdminControllerData;
|
|
4920
4589
|
res: {
|
|
4921
4590
|
201: unknown;
|
|
4922
4591
|
};
|
|
@@ -4954,13 +4623,11 @@ type $OpenApiTs = {
|
|
|
4954
4623
|
};
|
|
4955
4624
|
};
|
|
4956
4625
|
put: {
|
|
4957
|
-
req: PayeeProfileAdminController1Data;
|
|
4958
4626
|
res: {
|
|
4959
4627
|
200: unknown;
|
|
4960
4628
|
};
|
|
4961
4629
|
};
|
|
4962
4630
|
delete: {
|
|
4963
|
-
req: PayeeProfileAdminController2Data;
|
|
4964
4631
|
res: {
|
|
4965
4632
|
204: void;
|
|
4966
4633
|
};
|
|
@@ -4968,13 +4635,11 @@ type $OpenApiTs = {
|
|
|
4968
4635
|
};
|
|
4969
4636
|
'/api/v1/admin/payee-profiles/{id}/verify': {
|
|
4970
4637
|
post: {
|
|
4971
|
-
req: PayeeProfileAdminController3Data;
|
|
4972
4638
|
res: {
|
|
4973
4639
|
201: unknown;
|
|
4974
4640
|
};
|
|
4975
4641
|
};
|
|
4976
4642
|
delete: {
|
|
4977
|
-
req: PayeeProfileAdminController4Data;
|
|
4978
4643
|
res: {
|
|
4979
4644
|
200: unknown;
|
|
4980
4645
|
};
|
|
@@ -5426,7 +5091,6 @@ type $OpenApiTs = {
|
|
|
5426
5091
|
};
|
|
5427
5092
|
'/api/v1/users/asset-liability-summary': {
|
|
5428
5093
|
get: {
|
|
5429
|
-
req: UserControllerGetAssetLiabilitySummaryData;
|
|
5430
5094
|
res: {
|
|
5431
5095
|
/**
|
|
5432
5096
|
* Summary retrieved successfully
|
|
@@ -5437,7 +5101,6 @@ type $OpenApiTs = {
|
|
|
5437
5101
|
};
|
|
5438
5102
|
'/api/v1/admin/properties': {
|
|
5439
5103
|
get: {
|
|
5440
|
-
req: PropertyControllerGetAllData;
|
|
5441
5104
|
res: {
|
|
5442
5105
|
/**
|
|
5443
5106
|
* Properties retrieved successfully
|
|
@@ -5477,13 +5140,11 @@ type $OpenApiTs = {
|
|
|
5477
5140
|
};
|
|
5478
5141
|
};
|
|
5479
5142
|
put: {
|
|
5480
|
-
req: PropertyControllerData;
|
|
5481
5143
|
res: {
|
|
5482
5144
|
200: unknown;
|
|
5483
5145
|
};
|
|
5484
5146
|
};
|
|
5485
5147
|
delete: {
|
|
5486
|
-
req: PropertyController1Data;
|
|
5487
5148
|
res: {
|
|
5488
5149
|
204: void;
|
|
5489
5150
|
};
|
|
@@ -5616,7 +5277,6 @@ type $OpenApiTs = {
|
|
|
5616
5277
|
};
|
|
5617
5278
|
'/api/v1/{region}/bean/import/provider/supported': {
|
|
5618
5279
|
get: {
|
|
5619
|
-
req: ProviderSyncControllerGetSupportedProvidersData;
|
|
5620
5280
|
res: {
|
|
5621
5281
|
/**
|
|
5622
5282
|
* List of supported providers
|
|
@@ -5644,6 +5304,21 @@ type $OpenApiTs = {
|
|
|
5644
5304
|
};
|
|
5645
5305
|
};
|
|
5646
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
|
+
};
|
|
5647
5322
|
'/api/v1/{region}/bean/nlp/process': {
|
|
5648
5323
|
post: {
|
|
5649
5324
|
req: NlpControllerProcessNaturalLanguageData;
|
|
@@ -5693,7 +5368,6 @@ type $OpenApiTs = {
|
|
|
5693
5368
|
};
|
|
5694
5369
|
'/api/v1/bean/platforms': {
|
|
5695
5370
|
get: {
|
|
5696
|
-
req: PlatformControllerFindAllData;
|
|
5697
5371
|
res: {
|
|
5698
5372
|
/**
|
|
5699
5373
|
* List of platforms with binding and account counts
|
|
@@ -5702,7 +5376,6 @@ type $OpenApiTs = {
|
|
|
5702
5376
|
};
|
|
5703
5377
|
};
|
|
5704
5378
|
post: {
|
|
5705
|
-
req: PlatformControllerData;
|
|
5706
5379
|
res: {
|
|
5707
5380
|
201: unknown;
|
|
5708
5381
|
};
|
|
@@ -5710,7 +5383,6 @@ type $OpenApiTs = {
|
|
|
5710
5383
|
};
|
|
5711
5384
|
'/api/v1/bean/platforms/list': {
|
|
5712
5385
|
get: {
|
|
5713
|
-
req: PlatformControllerGetPlatformListData;
|
|
5714
5386
|
res: {
|
|
5715
5387
|
/**
|
|
5716
5388
|
* List of platforms with user binding status
|
|
@@ -5721,13 +5393,11 @@ type $OpenApiTs = {
|
|
|
5721
5393
|
};
|
|
5722
5394
|
'/api/v1/bean/platforms/{id}': {
|
|
5723
5395
|
put: {
|
|
5724
|
-
req: PlatformController1Data;
|
|
5725
5396
|
res: {
|
|
5726
5397
|
200: unknown;
|
|
5727
5398
|
};
|
|
5728
5399
|
};
|
|
5729
5400
|
delete: {
|
|
5730
|
-
req: PlatformController2Data;
|
|
5731
5401
|
res: {
|
|
5732
5402
|
204: void;
|
|
5733
5403
|
};
|
|
@@ -5788,7 +5458,6 @@ type $OpenApiTs = {
|
|
|
5788
5458
|
};
|
|
5789
5459
|
'/api/v1/market/symbols/yahoo/batch-update': {
|
|
5790
5460
|
put: {
|
|
5791
|
-
req: SymbolControllerData;
|
|
5792
5461
|
res: {
|
|
5793
5462
|
200: unknown;
|
|
5794
5463
|
};
|
|
@@ -5796,7 +5465,6 @@ type $OpenApiTs = {
|
|
|
5796
5465
|
};
|
|
5797
5466
|
'/api/v1/cache/flush': {
|
|
5798
5467
|
post: {
|
|
5799
|
-
req: CacheControllerFlushCacheData;
|
|
5800
5468
|
res: {
|
|
5801
5469
|
201: unknown;
|
|
5802
5470
|
};
|
|
@@ -5910,7 +5578,6 @@ type $OpenApiTs = {
|
|
|
5910
5578
|
};
|
|
5911
5579
|
'/api/v1/auth/api-keys': {
|
|
5912
5580
|
post: {
|
|
5913
|
-
req: ApiKeysControllerData;
|
|
5914
5581
|
res: {
|
|
5915
5582
|
201: unknown;
|
|
5916
5583
|
};
|
|
@@ -5948,7 +5615,6 @@ type $OpenApiTs = {
|
|
|
5948
5615
|
};
|
|
5949
5616
|
'/api/v1/health': {
|
|
5950
5617
|
get: {
|
|
5951
|
-
req: HealthControllerGetHealthData;
|
|
5952
5618
|
res: {
|
|
5953
5619
|
/**
|
|
5954
5620
|
* Service is healthy
|
|
@@ -5963,7 +5629,6 @@ type $OpenApiTs = {
|
|
|
5963
5629
|
};
|
|
5964
5630
|
'/api/v1/health/database': {
|
|
5965
5631
|
get: {
|
|
5966
|
-
req: HealthControllerCheckDatabaseData;
|
|
5967
5632
|
res: {
|
|
5968
5633
|
/**
|
|
5969
5634
|
* Database is healthy
|
|
@@ -5978,7 +5643,6 @@ type $OpenApiTs = {
|
|
|
5978
5643
|
};
|
|
5979
5644
|
'/api/v1/health/redis': {
|
|
5980
5645
|
get: {
|
|
5981
|
-
req: HealthControllerCheckRedisData;
|
|
5982
5646
|
res: {
|
|
5983
5647
|
/**
|
|
5984
5648
|
* Redis is healthy
|
|
@@ -5993,7 +5657,6 @@ type $OpenApiTs = {
|
|
|
5993
5657
|
};
|
|
5994
5658
|
'/api/v1/health/circuit-breakers': {
|
|
5995
5659
|
get: {
|
|
5996
|
-
req: HealthControllerGetCircuitBreakersHealthData;
|
|
5997
5660
|
res: {
|
|
5998
5661
|
/**
|
|
5999
5662
|
* Circuit breaker status
|
|
@@ -6031,7 +5694,6 @@ type $OpenApiTs = {
|
|
|
6031
5694
|
};
|
|
6032
5695
|
'/api/v1/health/metrics': {
|
|
6033
5696
|
get: {
|
|
6034
|
-
req: HealthControllerGetMetricsData;
|
|
6035
5697
|
res: {
|
|
6036
5698
|
/**
|
|
6037
5699
|
* Health metrics
|
|
@@ -6065,7 +5727,6 @@ type $OpenApiTs = {
|
|
|
6065
5727
|
};
|
|
6066
5728
|
'/api/v1/health/data-providers': {
|
|
6067
5729
|
get: {
|
|
6068
|
-
req: HealthControllerCheckDataProvidersData;
|
|
6069
5730
|
res: {
|
|
6070
5731
|
/**
|
|
6071
5732
|
* Data providers health status
|
|
@@ -6107,7 +5768,6 @@ type $OpenApiTs = {
|
|
|
6107
5768
|
};
|
|
6108
5769
|
'/api/v1/system/info': {
|
|
6109
5770
|
get: {
|
|
6110
|
-
req: InfoControllerGetInfoData;
|
|
6111
5771
|
res: {
|
|
6112
5772
|
/**
|
|
6113
5773
|
* System information retrieved successfully
|
|
@@ -6177,7 +5837,6 @@ type $OpenApiTs = {
|
|
|
6177
5837
|
};
|
|
6178
5838
|
};
|
|
6179
5839
|
post: {
|
|
6180
|
-
req: MarketDataControllerData;
|
|
6181
5840
|
res: {
|
|
6182
5841
|
201: unknown;
|
|
6183
5842
|
};
|
|
@@ -6267,8 +5926,9 @@ declare class BeanAccountsService {
|
|
|
6267
5926
|
}
|
|
6268
5927
|
declare class BeanTransactionsService {
|
|
6269
5928
|
/**
|
|
6270
|
-
*
|
|
6271
|
-
*
|
|
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.
|
|
6272
5932
|
* @param data The data for the request.
|
|
6273
5933
|
* @param data.region Region code for tenant context
|
|
6274
5934
|
* @param data.requestBody Transaction data with postings
|
|
@@ -6334,7 +5994,6 @@ declare class BeanBalancesService {
|
|
|
6334
5994
|
* Calculate account balance at a specific date for a single currency
|
|
6335
5995
|
* @param data The data for the request.
|
|
6336
5996
|
* @param data.account Account name (e.g., "Assets:Bank:Checking")
|
|
6337
|
-
* @param data.region Region code (cn, us, de)
|
|
6338
5997
|
* @param data.date Date to calculate balance at (ISO 8601 format)
|
|
6339
5998
|
* @param data.currency Currency to query (e.g., "USD", "CNY")
|
|
6340
5999
|
* @returns BalanceResponseDto Balance calculated successfully
|
|
@@ -6344,17 +6003,15 @@ declare class BeanBalancesService {
|
|
|
6344
6003
|
/**
|
|
6345
6004
|
* Query multi-currency account balance
|
|
6346
6005
|
* Calculate account balances for all currencies at a specific date
|
|
6347
|
-
* @param data The data for the request.
|
|
6348
|
-
* @param data.region Region code (cn, us, de)
|
|
6349
6006
|
* @returns MultiCurrencyBalanceResponseDto Balances calculated successfully
|
|
6350
6007
|
* @throws ApiError
|
|
6351
6008
|
*/
|
|
6352
|
-
static balanceControllerGetMultiCurrencyBalance(
|
|
6009
|
+
static balanceControllerGetMultiCurrencyBalance(): CancelablePromise<BalanceControllerGetMultiCurrencyBalanceResponse>;
|
|
6353
6010
|
}
|
|
6354
6011
|
declare class BeanCommoditiesService {
|
|
6355
6012
|
/**
|
|
6356
6013
|
* @param data The data for the request.
|
|
6357
|
-
* @param data.region Region code
|
|
6014
|
+
* @param data.region Region code for tenant context
|
|
6358
6015
|
* @returns unknown
|
|
6359
6016
|
* @throws ApiError
|
|
6360
6017
|
*/
|
|
@@ -6363,7 +6020,7 @@ declare class BeanCommoditiesService {
|
|
|
6363
6020
|
* List user commodities
|
|
6364
6021
|
* Returns all commodity definitions for the authenticated user with optional filtering
|
|
6365
6022
|
* @param data The data for the request.
|
|
6366
|
-
* @param data.region Region code
|
|
6023
|
+
* @param data.region Region code for tenant context
|
|
6367
6024
|
* @param data.search Search term for symbol or metadata fields (partial match). Searches symbol and metadata.name.
|
|
6368
6025
|
* @param data.symbol Filter by exact symbol match
|
|
6369
6026
|
* @returns CommodityListResponseDto Commodities retrieved successfully
|
|
@@ -6375,35 +6032,35 @@ declare class BeanCommoditiesService {
|
|
|
6375
6032
|
* Returns a specific commodity definition by its symbol
|
|
6376
6033
|
* @param data The data for the request.
|
|
6377
6034
|
* @param data.symbol Commodity symbol
|
|
6378
|
-
* @param data.region Region code
|
|
6035
|
+
* @param data.region Region code for tenant context
|
|
6379
6036
|
* @returns CommodityResponseDto Commodity retrieved successfully
|
|
6380
6037
|
* @throws ApiError
|
|
6381
6038
|
*/
|
|
6382
6039
|
static commodityControllerFindOne(data: CommodityControllerFindOneData): CancelablePromise<CommodityControllerFindOneResponse>;
|
|
6383
6040
|
/**
|
|
6384
6041
|
* @param data The data for the request.
|
|
6385
|
-
* @param data.region Region code
|
|
6042
|
+
* @param data.region Region code for tenant context
|
|
6386
6043
|
* @returns unknown
|
|
6387
6044
|
* @throws ApiError
|
|
6388
6045
|
*/
|
|
6389
6046
|
static commodityController1(data: CommodityController1Data): CancelablePromise<CommodityController1Response>;
|
|
6390
6047
|
/**
|
|
6391
6048
|
* @param data The data for the request.
|
|
6392
|
-
* @param data.region Region code
|
|
6049
|
+
* @param data.region Region code for tenant context
|
|
6393
6050
|
* @returns void
|
|
6394
6051
|
* @throws ApiError
|
|
6395
6052
|
*/
|
|
6396
6053
|
static commodityController2(data: CommodityController2Data): CancelablePromise<CommodityController2Response>;
|
|
6397
6054
|
/**
|
|
6398
6055
|
* @param data The data for the request.
|
|
6399
|
-
* @param data.region Region code
|
|
6056
|
+
* @param data.region Region code for tenant context
|
|
6400
6057
|
* @returns unknown
|
|
6401
6058
|
* @throws ApiError
|
|
6402
6059
|
*/
|
|
6403
6060
|
static commodityController3(data: CommodityController3Data): CancelablePromise<CommodityController3Response>;
|
|
6404
6061
|
/**
|
|
6405
6062
|
* @param data The data for the request.
|
|
6406
|
-
* @param data.region Region code
|
|
6063
|
+
* @param data.region Region code for tenant context
|
|
6407
6064
|
* @returns unknown
|
|
6408
6065
|
* @throws ApiError
|
|
6409
6066
|
*/
|
|
@@ -6423,6 +6080,7 @@ declare class ProviderSyncService {
|
|
|
6423
6080
|
* - **simplefin**: SimpleFIN (Self-hosted)
|
|
6424
6081
|
* - **yodlee**: Yodlee (Global)
|
|
6425
6082
|
* - **beancount-direct**: Beancount format transactions
|
|
6083
|
+
* - **parsed-bill**: Client-side parsed bill transactions
|
|
6426
6084
|
*
|
|
6427
6085
|
* **Processing Flow:**
|
|
6428
6086
|
* 1. Transform raw data via provider adapter
|
|
@@ -6443,18 +6101,15 @@ declare class ProviderSyncService {
|
|
|
6443
6101
|
/**
|
|
6444
6102
|
* Get supported providers
|
|
6445
6103
|
* Returns a list of all providers supported by the sync endpoint.
|
|
6446
|
-
* @param data The data for the request.
|
|
6447
|
-
* @param data.region Region code (cn, us, de)
|
|
6448
6104
|
* @returns SupportedProvidersResponseDto List of supported providers
|
|
6449
6105
|
* @throws ApiError
|
|
6450
6106
|
*/
|
|
6451
|
-
static providerSyncControllerGetSupportedProviders(
|
|
6107
|
+
static providerSyncControllerGetSupportedProviders(): CancelablePromise<ProviderSyncControllerGetSupportedProvidersResponse>;
|
|
6452
6108
|
/**
|
|
6453
6109
|
* Check if provider is supported
|
|
6454
6110
|
* Returns whether a specific provider is supported.
|
|
6455
6111
|
* @param data The data for the request.
|
|
6456
6112
|
* @param data.providerName Provider name to check
|
|
6457
|
-
* @param data.region Region code (cn, us, de)
|
|
6458
6113
|
* @returns unknown Provider support status
|
|
6459
6114
|
* @throws ApiError
|
|
6460
6115
|
*/
|
|
@@ -6463,75 +6118,60 @@ declare class ProviderSyncService {
|
|
|
6463
6118
|
declare class HealthService {
|
|
6464
6119
|
/**
|
|
6465
6120
|
* Basic health check for K8s/load balancer probes
|
|
6466
|
-
* @param data The data for the request.
|
|
6467
|
-
* @param data.region Region code (cn, us, de)
|
|
6468
6121
|
* @returns unknown Service is healthy
|
|
6469
6122
|
* @throws ApiError
|
|
6470
6123
|
*/
|
|
6471
|
-
static healthControllerGetHealth(
|
|
6124
|
+
static healthControllerGetHealth(): CancelablePromise<HealthControllerGetHealthResponse>;
|
|
6472
6125
|
/**
|
|
6473
6126
|
* Check database connection health
|
|
6474
|
-
* @param data The data for the request.
|
|
6475
|
-
* @param data.region Region code (cn, us, de)
|
|
6476
6127
|
* @returns unknown Database is healthy
|
|
6477
6128
|
* @throws ApiError
|
|
6478
6129
|
*/
|
|
6479
|
-
static healthControllerCheckDatabase(
|
|
6130
|
+
static healthControllerCheckDatabase(): CancelablePromise<HealthControllerCheckDatabaseResponse>;
|
|
6480
6131
|
/**
|
|
6481
6132
|
* Check Redis connection health
|
|
6482
|
-
* @param data The data for the request.
|
|
6483
|
-
* @param data.region Region code (cn, us, de)
|
|
6484
6133
|
* @returns unknown Redis is healthy
|
|
6485
6134
|
* @throws ApiError
|
|
6486
6135
|
*/
|
|
6487
|
-
static healthControllerCheckRedis(
|
|
6136
|
+
static healthControllerCheckRedis(): CancelablePromise<HealthControllerCheckRedisResponse>;
|
|
6488
6137
|
/**
|
|
6489
6138
|
* Get status of all circuit breakers
|
|
6490
|
-
* @param data The data for the request.
|
|
6491
|
-
* @param data.region Region code (cn, us, de)
|
|
6492
6139
|
* @returns unknown Circuit breaker status
|
|
6493
6140
|
* @throws ApiError
|
|
6494
6141
|
*/
|
|
6495
|
-
static healthControllerGetCircuitBreakersHealth(
|
|
6142
|
+
static healthControllerGetCircuitBreakersHealth(): CancelablePromise<HealthControllerGetCircuitBreakersHealthResponse>;
|
|
6496
6143
|
/**
|
|
6497
6144
|
* Reset a circuit breaker to CLOSED state
|
|
6498
6145
|
* @param data The data for the request.
|
|
6499
6146
|
* @param data.name Circuit breaker name to reset
|
|
6500
|
-
* @param data.region Region code (cn, us, de)
|
|
6501
6147
|
* @returns unknown Circuit breaker reset successfully
|
|
6502
6148
|
* @throws ApiError
|
|
6503
6149
|
*/
|
|
6504
6150
|
static healthControllerResetCircuitBreaker(data: HealthControllerResetCircuitBreakerData): CancelablePromise<HealthControllerResetCircuitBreakerResponse>;
|
|
6505
6151
|
/**
|
|
6506
6152
|
* Get health check metrics and statistics
|
|
6507
|
-
* @param data The data for the request.
|
|
6508
|
-
* @param data.region Region code (cn, us, de)
|
|
6509
6153
|
* @returns unknown Health metrics
|
|
6510
6154
|
* @throws ApiError
|
|
6511
6155
|
*/
|
|
6512
|
-
static healthControllerGetMetrics(
|
|
6156
|
+
static healthControllerGetMetrics(): CancelablePromise<HealthControllerGetMetricsResponse>;
|
|
6513
6157
|
/**
|
|
6514
6158
|
* Check health of a specific data enhancer
|
|
6515
6159
|
* @param data The data for the request.
|
|
6516
6160
|
* @param data.name Data enhancer name
|
|
6517
|
-
* @param data.region Region code (cn, us, de)
|
|
6518
6161
|
* @returns unknown Data enhancer is healthy
|
|
6519
6162
|
* @throws ApiError
|
|
6520
6163
|
*/
|
|
6521
6164
|
static healthControllerGetHealthOfDataEnhancer(data: HealthControllerGetHealthOfDataEnhancerData): CancelablePromise<HealthControllerGetHealthOfDataEnhancerResponse>;
|
|
6522
6165
|
/**
|
|
6523
6166
|
* Check health of all data providers
|
|
6524
|
-
* @param data The data for the request.
|
|
6525
|
-
* @param data.region Region code (cn, us, de)
|
|
6526
6167
|
* @returns unknown Data providers health status
|
|
6527
6168
|
* @throws ApiError
|
|
6528
6169
|
*/
|
|
6529
|
-
static healthControllerCheckDataProviders(
|
|
6170
|
+
static healthControllerCheckDataProviders(): CancelablePromise<HealthControllerCheckDataProvidersResponse>;
|
|
6530
6171
|
/**
|
|
6531
6172
|
* Check health of a specific data provider
|
|
6532
6173
|
* @param data The data for the request.
|
|
6533
6174
|
* @param data.dataSource Data source identifier
|
|
6534
|
-
* @param data.region Region code (cn, us, de)
|
|
6535
6175
|
* @returns unknown Data provider is healthy
|
|
6536
6176
|
* @throws ApiError
|
|
6537
6177
|
*/
|
|
@@ -6578,4 +6218,4 @@ type OpenAPIConfig = {
|
|
|
6578
6218
|
};
|
|
6579
6219
|
declare const OpenAPI: OpenAPIConfig;
|
|
6580
6220
|
|
|
6581
|
-
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 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 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 };
|