@firela/api-types 0.0.0-canary.209966 → 0.0.0-canary.209967
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 +276 -265
- package/dist/index.d.ts +276 -265
- package/dist/index.js +20 -20
- package/dist/index.mjs +20 -20
- package/package.json +6 -3
- package/src/generated/schemas.gen.ts +61 -0
- package/src/generated/services.gen.ts +115 -115
- package/src/generated/types.gen.ts +259 -244
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
|
|
@@ -3176,7 +3191,7 @@ type AccountControllerCreateData = {
|
|
|
3176
3191
|
/**
|
|
3177
3192
|
* Region code for tenant context
|
|
3178
3193
|
*/
|
|
3179
|
-
region: 'cn' | 'us' | '
|
|
3194
|
+
region: 'cn' | 'us' | 'de';
|
|
3180
3195
|
requestBody: CreateAccountDto;
|
|
3181
3196
|
};
|
|
3182
3197
|
type AccountControllerCreateResponse = AccountResponseDto;
|
|
@@ -3196,7 +3211,7 @@ type AccountControllerFindAllData = {
|
|
|
3196
3211
|
/**
|
|
3197
3212
|
* Region code for tenant context
|
|
3198
3213
|
*/
|
|
3199
|
-
region: 'cn' | 'us' | '
|
|
3214
|
+
region: 'cn' | 'us' | 'de';
|
|
3200
3215
|
/**
|
|
3201
3216
|
* Search term for path or i18nKey
|
|
3202
3217
|
*/
|
|
@@ -3219,7 +3234,7 @@ type AccountControllerFindOneData = {
|
|
|
3219
3234
|
/**
|
|
3220
3235
|
* Region code for tenant context
|
|
3221
3236
|
*/
|
|
3222
|
-
region: 'cn' | 'us' | '
|
|
3237
|
+
region: 'cn' | 'us' | 'de';
|
|
3223
3238
|
};
|
|
3224
3239
|
type AccountControllerFindOneResponse = AccountResponseDto;
|
|
3225
3240
|
type AccountControllerUpdateData = {
|
|
@@ -3230,7 +3245,7 @@ type AccountControllerUpdateData = {
|
|
|
3230
3245
|
/**
|
|
3231
3246
|
* Region code for tenant context
|
|
3232
3247
|
*/
|
|
3233
|
-
region: 'cn' | 'us' | '
|
|
3248
|
+
region: 'cn' | 'us' | 'de';
|
|
3234
3249
|
requestBody: UpdateAccountDto;
|
|
3235
3250
|
};
|
|
3236
3251
|
type AccountControllerUpdateResponse = AccountResponseDto;
|
|
@@ -3242,7 +3257,7 @@ type AccountControllerDeleteData = {
|
|
|
3242
3257
|
/**
|
|
3243
3258
|
* Region code for tenant context
|
|
3244
3259
|
*/
|
|
3245
|
-
region: 'cn' | 'us' | '
|
|
3260
|
+
region: 'cn' | 'us' | 'de';
|
|
3246
3261
|
};
|
|
3247
3262
|
type AccountControllerDeleteResponse = void;
|
|
3248
3263
|
type AccountControllerCloseData = {
|
|
@@ -3253,7 +3268,7 @@ type AccountControllerCloseData = {
|
|
|
3253
3268
|
/**
|
|
3254
3269
|
* Region code for tenant context
|
|
3255
3270
|
*/
|
|
3256
|
-
region: 'cn' | 'us' | '
|
|
3271
|
+
region: 'cn' | 'us' | 'de';
|
|
3257
3272
|
requestBody: CloseAccountDto;
|
|
3258
3273
|
};
|
|
3259
3274
|
type AccountControllerCloseResponse = AccountResponseDto;
|
|
@@ -3265,7 +3280,7 @@ type AccountControllerReopenData = {
|
|
|
3265
3280
|
/**
|
|
3266
3281
|
* Region code for tenant context
|
|
3267
3282
|
*/
|
|
3268
|
-
region: 'cn' | 'us' | '
|
|
3283
|
+
region: 'cn' | 'us' | 'de';
|
|
3269
3284
|
requestBody: ReopenAccountDto;
|
|
3270
3285
|
};
|
|
3271
3286
|
type AccountControllerReopenResponse = AccountResponseDto;
|
|
@@ -3273,7 +3288,7 @@ type TransactionControllerCreateData = {
|
|
|
3273
3288
|
/**
|
|
3274
3289
|
* Region code for tenant context
|
|
3275
3290
|
*/
|
|
3276
|
-
region: 'cn' | 'us' | '
|
|
3291
|
+
region: 'cn' | 'us' | 'de';
|
|
3277
3292
|
/**
|
|
3278
3293
|
* Transaction data with postings
|
|
3279
3294
|
*/
|
|
@@ -3304,7 +3319,7 @@ type TransactionControllerListData = {
|
|
|
3304
3319
|
/**
|
|
3305
3320
|
* Region code for tenant context
|
|
3306
3321
|
*/
|
|
3307
|
-
region: 'cn' | 'us' | '
|
|
3322
|
+
region: 'cn' | 'us' | 'de';
|
|
3308
3323
|
/**
|
|
3309
3324
|
* Search in narration and payee fields (max 200 chars)
|
|
3310
3325
|
*/
|
|
@@ -3319,7 +3334,7 @@ type TransactionControllerData = {
|
|
|
3319
3334
|
/**
|
|
3320
3335
|
* Region code for tenant context
|
|
3321
3336
|
*/
|
|
3322
|
-
region: 'cn' | 'us' | '
|
|
3337
|
+
region: 'cn' | 'us' | 'de';
|
|
3323
3338
|
};
|
|
3324
3339
|
type TransactionControllerResponse = unknown;
|
|
3325
3340
|
type TransactionControllerGetDetailData = {
|
|
@@ -3330,7 +3345,7 @@ type TransactionControllerGetDetailData = {
|
|
|
3330
3345
|
/**
|
|
3331
3346
|
* Region code for tenant context
|
|
3332
3347
|
*/
|
|
3333
|
-
region: 'cn' | 'us' | '
|
|
3348
|
+
region: 'cn' | 'us' | 'de';
|
|
3334
3349
|
};
|
|
3335
3350
|
type TransactionControllerGetDetailResponse = TransactionDetailDto;
|
|
3336
3351
|
type TransactionControllerUpdateData = {
|
|
@@ -3341,7 +3356,7 @@ type TransactionControllerUpdateData = {
|
|
|
3341
3356
|
/**
|
|
3342
3357
|
* Region code for tenant context
|
|
3343
3358
|
*/
|
|
3344
|
-
region: 'cn' | 'us' | '
|
|
3359
|
+
region: 'cn' | 'us' | 'de';
|
|
3345
3360
|
/**
|
|
3346
3361
|
* Fields to update (all optional)
|
|
3347
3362
|
*/
|
|
@@ -3352,14 +3367,14 @@ type TransactionController1Data = {
|
|
|
3352
3367
|
/**
|
|
3353
3368
|
* Region code for tenant context
|
|
3354
3369
|
*/
|
|
3355
|
-
region: 'cn' | 'us' | '
|
|
3370
|
+
region: 'cn' | 'us' | 'de';
|
|
3356
3371
|
};
|
|
3357
3372
|
type TransactionController1Response = void;
|
|
3358
3373
|
type AccountStandardsControllerGetTemplatesData = {
|
|
3359
3374
|
/**
|
|
3360
|
-
* Region code (cn, us,
|
|
3375
|
+
* Region code (cn, us, de)
|
|
3361
3376
|
*/
|
|
3362
|
-
region: 'cn' | 'us' | '
|
|
3377
|
+
region: 'cn' | 'us' | 'de';
|
|
3363
3378
|
/**
|
|
3364
3379
|
* Search term for path or description
|
|
3365
3380
|
*/
|
|
@@ -3372,13 +3387,11 @@ type AccountStandardsControllerGetTemplatesData = {
|
|
|
3372
3387
|
type AccountStandardsControllerGetTemplatesResponse = AccountStandardListResponseDto;
|
|
3373
3388
|
type AccountStandardsControllerGetRegionsData = {
|
|
3374
3389
|
/**
|
|
3375
|
-
* Region code (cn, us,
|
|
3390
|
+
* Region code (cn, us, de)
|
|
3376
3391
|
*/
|
|
3377
|
-
region: 'cn' | 'us' | '
|
|
3378
|
-
};
|
|
3379
|
-
type AccountStandardsControllerGetRegionsResponse = {
|
|
3380
|
-
regions?: Array<string>;
|
|
3392
|
+
region: 'cn' | 'us' | 'de';
|
|
3381
3393
|
};
|
|
3394
|
+
type AccountStandardsControllerGetRegionsResponse = RegionsMetadataResponseDto;
|
|
3382
3395
|
type BalanceControllerGetBalanceData = {
|
|
3383
3396
|
/**
|
|
3384
3397
|
* Account name (e.g., "Assets:Bank:Checking")
|
|
@@ -3393,16 +3406,16 @@ type BalanceControllerGetBalanceData = {
|
|
|
3393
3406
|
*/
|
|
3394
3407
|
date?: string;
|
|
3395
3408
|
/**
|
|
3396
|
-
* Region code (cn, us,
|
|
3409
|
+
* Region code (cn, us, de)
|
|
3397
3410
|
*/
|
|
3398
|
-
region: 'cn' | 'us' | '
|
|
3411
|
+
region: 'cn' | 'us' | 'de';
|
|
3399
3412
|
};
|
|
3400
3413
|
type BalanceControllerGetBalanceResponse = BalanceResponseDto;
|
|
3401
3414
|
type BalanceControllerGetMultiCurrencyBalanceData = {
|
|
3402
3415
|
/**
|
|
3403
|
-
* Region code (cn, us,
|
|
3416
|
+
* Region code (cn, us, de)
|
|
3404
3417
|
*/
|
|
3405
|
-
region: 'cn' | 'us' | '
|
|
3418
|
+
region: 'cn' | 'us' | 'de';
|
|
3406
3419
|
};
|
|
3407
3420
|
type BalanceControllerGetMultiCurrencyBalanceResponse = MultiCurrencyBalanceResponseDto;
|
|
3408
3421
|
type ReviewControllerFindAllData = {
|
|
@@ -3419,9 +3432,9 @@ type ReviewControllerFindAllData = {
|
|
|
3419
3432
|
*/
|
|
3420
3433
|
page?: number;
|
|
3421
3434
|
/**
|
|
3422
|
-
* Region code (cn, us,
|
|
3435
|
+
* Region code (cn, us, de)
|
|
3423
3436
|
*/
|
|
3424
|
-
region: 'cn' | 'us' | '
|
|
3437
|
+
region: 'cn' | 'us' | 'de';
|
|
3425
3438
|
/**
|
|
3426
3439
|
* Sort order
|
|
3427
3440
|
*/
|
|
@@ -3434,9 +3447,9 @@ type ReviewControllerFindAllData = {
|
|
|
3434
3447
|
type ReviewControllerFindAllResponse = ReviewListResponseDto;
|
|
3435
3448
|
type ReviewControllerGetStatsData = {
|
|
3436
3449
|
/**
|
|
3437
|
-
* Region code (cn, us,
|
|
3450
|
+
* Region code (cn, us, de)
|
|
3438
3451
|
*/
|
|
3439
|
-
region: 'cn' | 'us' | '
|
|
3452
|
+
region: 'cn' | 'us' | 'de';
|
|
3440
3453
|
};
|
|
3441
3454
|
type ReviewControllerGetStatsResponse = ReviewStatsDto;
|
|
3442
3455
|
type ReviewControllerFindOneData = {
|
|
@@ -3445,37 +3458,37 @@ type ReviewControllerFindOneData = {
|
|
|
3445
3458
|
*/
|
|
3446
3459
|
id: string;
|
|
3447
3460
|
/**
|
|
3448
|
-
* Region code (cn, us,
|
|
3461
|
+
* Region code (cn, us, de)
|
|
3449
3462
|
*/
|
|
3450
|
-
region: 'cn' | 'us' | '
|
|
3463
|
+
region: 'cn' | 'us' | 'de';
|
|
3451
3464
|
};
|
|
3452
3465
|
type ReviewControllerFindOneResponse = ReviewDetailDto;
|
|
3453
3466
|
type ReviewControllerData = {
|
|
3454
3467
|
/**
|
|
3455
|
-
* Region code (cn, us,
|
|
3468
|
+
* Region code (cn, us, de)
|
|
3456
3469
|
*/
|
|
3457
|
-
region: 'cn' | 'us' | '
|
|
3470
|
+
region: 'cn' | 'us' | 'de';
|
|
3458
3471
|
};
|
|
3459
3472
|
type ReviewControllerResponse = unknown;
|
|
3460
3473
|
type ReviewController1Data = {
|
|
3461
3474
|
/**
|
|
3462
|
-
* Region code (cn, us,
|
|
3475
|
+
* Region code (cn, us, de)
|
|
3463
3476
|
*/
|
|
3464
|
-
region: 'cn' | 'us' | '
|
|
3477
|
+
region: 'cn' | 'us' | 'de';
|
|
3465
3478
|
};
|
|
3466
3479
|
type ReviewController1Response = unknown;
|
|
3467
3480
|
type ReviewController2Data = {
|
|
3468
3481
|
/**
|
|
3469
|
-
* Region code (cn, us,
|
|
3482
|
+
* Region code (cn, us, de)
|
|
3470
3483
|
*/
|
|
3471
|
-
region: 'cn' | 'us' | '
|
|
3484
|
+
region: 'cn' | 'us' | 'de';
|
|
3472
3485
|
};
|
|
3473
3486
|
type ReviewController2Response = unknown;
|
|
3474
3487
|
type PayeeControllerData = {
|
|
3475
3488
|
/**
|
|
3476
|
-
* Region code (cn, us,
|
|
3489
|
+
* Region code (cn, us, de)
|
|
3477
3490
|
*/
|
|
3478
|
-
region: 'cn' | 'us' | '
|
|
3491
|
+
region: 'cn' | 'us' | 'de';
|
|
3479
3492
|
};
|
|
3480
3493
|
type PayeeControllerResponse = unknown;
|
|
3481
3494
|
type PayeeControllerFindAllData = {
|
|
@@ -3492,9 +3505,9 @@ type PayeeControllerFindAllData = {
|
|
|
3492
3505
|
*/
|
|
3493
3506
|
payee?: string;
|
|
3494
3507
|
/**
|
|
3495
|
-
* Region code (cn, us,
|
|
3508
|
+
* Region code (cn, us, de)
|
|
3496
3509
|
*/
|
|
3497
|
-
region: 'cn' | 'us' | '
|
|
3510
|
+
region: 'cn' | 'us' | 'de';
|
|
3498
3511
|
/**
|
|
3499
3512
|
* Search term for payee name (partial match, case-insensitive). Useful for autocomplete.
|
|
3500
3513
|
*/
|
|
@@ -3515,9 +3528,9 @@ type PayeeControllerAutocompleteData = {
|
|
|
3515
3528
|
*/
|
|
3516
3529
|
q: string;
|
|
3517
3530
|
/**
|
|
3518
|
-
* Region code (cn, us,
|
|
3531
|
+
* Region code (cn, us, de)
|
|
3519
3532
|
*/
|
|
3520
|
-
region: 'cn' | 'us' | '
|
|
3533
|
+
region: 'cn' | 'us' | 'de';
|
|
3521
3534
|
};
|
|
3522
3535
|
type PayeeControllerAutocompleteResponse = PayeeAutocompleteResponseDto;
|
|
3523
3536
|
type PayeeControllerGetTopPayeesData = {
|
|
@@ -3526,9 +3539,9 @@ type PayeeControllerGetTopPayeesData = {
|
|
|
3526
3539
|
*/
|
|
3527
3540
|
limit?: number;
|
|
3528
3541
|
/**
|
|
3529
|
-
* Region code (cn, us,
|
|
3542
|
+
* Region code (cn, us, de)
|
|
3530
3543
|
*/
|
|
3531
|
-
region: 'cn' | 'us' | '
|
|
3544
|
+
region: 'cn' | 'us' | 'de';
|
|
3532
3545
|
};
|
|
3533
3546
|
type PayeeControllerGetTopPayeesResponse = Array<PayeeStatsResponseDto>;
|
|
3534
3547
|
type PayeeControllerFindOneData = {
|
|
@@ -3537,30 +3550,30 @@ type PayeeControllerFindOneData = {
|
|
|
3537
3550
|
*/
|
|
3538
3551
|
id: string;
|
|
3539
3552
|
/**
|
|
3540
|
-
* Region code (cn, us,
|
|
3553
|
+
* Region code (cn, us, de)
|
|
3541
3554
|
*/
|
|
3542
|
-
region: 'cn' | 'us' | '
|
|
3555
|
+
region: 'cn' | 'us' | 'de';
|
|
3543
3556
|
};
|
|
3544
3557
|
type PayeeControllerFindOneResponse = PayeeResponseDto;
|
|
3545
3558
|
type PayeeController1Data = {
|
|
3546
3559
|
/**
|
|
3547
|
-
* Region code (cn, us,
|
|
3560
|
+
* Region code (cn, us, de)
|
|
3548
3561
|
*/
|
|
3549
|
-
region: 'cn' | 'us' | '
|
|
3562
|
+
region: 'cn' | 'us' | 'de';
|
|
3550
3563
|
};
|
|
3551
3564
|
type PayeeController1Response = unknown;
|
|
3552
3565
|
type PayeeController2Data = {
|
|
3553
3566
|
/**
|
|
3554
|
-
* Region code (cn, us,
|
|
3567
|
+
* Region code (cn, us, de)
|
|
3555
3568
|
*/
|
|
3556
|
-
region: 'cn' | 'us' | '
|
|
3569
|
+
region: 'cn' | 'us' | 'de';
|
|
3557
3570
|
};
|
|
3558
3571
|
type PayeeController2Response = void;
|
|
3559
3572
|
type PayeeProfileAdminControllerData = {
|
|
3560
3573
|
/**
|
|
3561
|
-
* Region code (cn, us,
|
|
3574
|
+
* Region code (cn, us, de)
|
|
3562
3575
|
*/
|
|
3563
|
-
region: 'cn' | 'us' | '
|
|
3576
|
+
region: 'cn' | 'us' | 'de';
|
|
3564
3577
|
};
|
|
3565
3578
|
type PayeeProfileAdminControllerResponse = unknown;
|
|
3566
3579
|
type PayeeProfileAdminControllerFindAllData = {
|
|
@@ -3581,9 +3594,9 @@ type PayeeProfileAdminControllerFindAllData = {
|
|
|
3581
3594
|
*/
|
|
3582
3595
|
isActive?: boolean;
|
|
3583
3596
|
/**
|
|
3584
|
-
* Region code (cn, us,
|
|
3597
|
+
* Region code (cn, us, de)
|
|
3585
3598
|
*/
|
|
3586
|
-
region: 'cn' | 'us' | '
|
|
3599
|
+
region: 'cn' | 'us' | 'de';
|
|
3587
3600
|
/**
|
|
3588
3601
|
* Search term for canonical name and aliases (case-insensitive)
|
|
3589
3602
|
*/
|
|
@@ -3600,51 +3613,51 @@ type PayeeProfileAdminControllerFindOneData = {
|
|
|
3600
3613
|
*/
|
|
3601
3614
|
id: string;
|
|
3602
3615
|
/**
|
|
3603
|
-
* Region code (cn, us,
|
|
3616
|
+
* Region code (cn, us, de)
|
|
3604
3617
|
*/
|
|
3605
|
-
region: 'cn' | 'us' | '
|
|
3618
|
+
region: 'cn' | 'us' | 'de';
|
|
3606
3619
|
};
|
|
3607
3620
|
type PayeeProfileAdminControllerFindOneResponse = PayeeProfileResponseDto;
|
|
3608
3621
|
type PayeeProfileAdminController1Data = {
|
|
3609
3622
|
/**
|
|
3610
|
-
* Region code (cn, us,
|
|
3623
|
+
* Region code (cn, us, de)
|
|
3611
3624
|
*/
|
|
3612
|
-
region: 'cn' | 'us' | '
|
|
3625
|
+
region: 'cn' | 'us' | 'de';
|
|
3613
3626
|
};
|
|
3614
3627
|
type PayeeProfileAdminController1Response = unknown;
|
|
3615
3628
|
type PayeeProfileAdminController2Data = {
|
|
3616
3629
|
/**
|
|
3617
|
-
* Region code (cn, us,
|
|
3630
|
+
* Region code (cn, us, de)
|
|
3618
3631
|
*/
|
|
3619
|
-
region: 'cn' | 'us' | '
|
|
3632
|
+
region: 'cn' | 'us' | 'de';
|
|
3620
3633
|
};
|
|
3621
3634
|
type PayeeProfileAdminController2Response = void;
|
|
3622
3635
|
type PayeeProfileAdminController3Data = {
|
|
3623
3636
|
/**
|
|
3624
|
-
* Region code (cn, us,
|
|
3637
|
+
* Region code (cn, us, de)
|
|
3625
3638
|
*/
|
|
3626
|
-
region: 'cn' | 'us' | '
|
|
3639
|
+
region: 'cn' | 'us' | 'de';
|
|
3627
3640
|
};
|
|
3628
3641
|
type PayeeProfileAdminController3Response = unknown;
|
|
3629
3642
|
type PayeeProfileAdminController4Data = {
|
|
3630
3643
|
/**
|
|
3631
|
-
* Region code (cn, us,
|
|
3644
|
+
* Region code (cn, us, de)
|
|
3632
3645
|
*/
|
|
3633
|
-
region: 'cn' | 'us' | '
|
|
3646
|
+
region: 'cn' | 'us' | 'de';
|
|
3634
3647
|
};
|
|
3635
3648
|
type PayeeProfileAdminController4Response = unknown;
|
|
3636
3649
|
type CommodityControllerData = {
|
|
3637
3650
|
/**
|
|
3638
|
-
* Region code (cn, us,
|
|
3651
|
+
* Region code (cn, us, de)
|
|
3639
3652
|
*/
|
|
3640
|
-
region: 'cn' | 'us' | '
|
|
3653
|
+
region: 'cn' | 'us' | 'de';
|
|
3641
3654
|
};
|
|
3642
3655
|
type CommodityControllerResponse = unknown;
|
|
3643
3656
|
type CommodityControllerFindAllData = {
|
|
3644
3657
|
/**
|
|
3645
|
-
* Region code (cn, us,
|
|
3658
|
+
* Region code (cn, us, de)
|
|
3646
3659
|
*/
|
|
3647
|
-
region: 'cn' | 'us' | '
|
|
3660
|
+
region: 'cn' | 'us' | 'de';
|
|
3648
3661
|
/**
|
|
3649
3662
|
* Search term for symbol or metadata fields (partial match). Searches symbol and metadata.name.
|
|
3650
3663
|
*/
|
|
@@ -3657,9 +3670,9 @@ type CommodityControllerFindAllData = {
|
|
|
3657
3670
|
type CommodityControllerFindAllResponse = CommodityListResponseDto;
|
|
3658
3671
|
type CommodityControllerFindOneData = {
|
|
3659
3672
|
/**
|
|
3660
|
-
* Region code (cn, us,
|
|
3673
|
+
* Region code (cn, us, de)
|
|
3661
3674
|
*/
|
|
3662
|
-
region: 'cn' | 'us' | '
|
|
3675
|
+
region: 'cn' | 'us' | 'de';
|
|
3663
3676
|
/**
|
|
3664
3677
|
* Commodity symbol
|
|
3665
3678
|
*/
|
|
@@ -3668,37 +3681,37 @@ type CommodityControllerFindOneData = {
|
|
|
3668
3681
|
type CommodityControllerFindOneResponse = CommodityResponseDto;
|
|
3669
3682
|
type CommodityController1Data = {
|
|
3670
3683
|
/**
|
|
3671
|
-
* Region code (cn, us,
|
|
3684
|
+
* Region code (cn, us, de)
|
|
3672
3685
|
*/
|
|
3673
|
-
region: 'cn' | 'us' | '
|
|
3686
|
+
region: 'cn' | 'us' | 'de';
|
|
3674
3687
|
};
|
|
3675
3688
|
type CommodityController1Response = unknown;
|
|
3676
3689
|
type CommodityController2Data = {
|
|
3677
3690
|
/**
|
|
3678
|
-
* Region code (cn, us,
|
|
3691
|
+
* Region code (cn, us, de)
|
|
3679
3692
|
*/
|
|
3680
|
-
region: 'cn' | 'us' | '
|
|
3693
|
+
region: 'cn' | 'us' | 'de';
|
|
3681
3694
|
};
|
|
3682
3695
|
type CommodityController2Response = void;
|
|
3683
3696
|
type CommodityController3Data = {
|
|
3684
3697
|
/**
|
|
3685
|
-
* Region code (cn, us,
|
|
3698
|
+
* Region code (cn, us, de)
|
|
3686
3699
|
*/
|
|
3687
|
-
region: 'cn' | 'us' | '
|
|
3700
|
+
region: 'cn' | 'us' | 'de';
|
|
3688
3701
|
};
|
|
3689
3702
|
type CommodityController3Response = unknown;
|
|
3690
3703
|
type CommodityController4Data = {
|
|
3691
3704
|
/**
|
|
3692
|
-
* Region code (cn, us,
|
|
3705
|
+
* Region code (cn, us, de)
|
|
3693
3706
|
*/
|
|
3694
|
-
region: 'cn' | 'us' | '
|
|
3707
|
+
region: 'cn' | 'us' | 'de';
|
|
3695
3708
|
};
|
|
3696
3709
|
type CommodityController4Response = unknown;
|
|
3697
3710
|
type RecurringRuleControllerData = {
|
|
3698
3711
|
/**
|
|
3699
|
-
* Region code (cn, us,
|
|
3712
|
+
* Region code (cn, us, de)
|
|
3700
3713
|
*/
|
|
3701
|
-
region: 'cn' | 'us' | '
|
|
3714
|
+
region: 'cn' | 'us' | 'de';
|
|
3702
3715
|
};
|
|
3703
3716
|
type RecurringRuleControllerResponse = unknown;
|
|
3704
3717
|
type RecurringRuleControllerFindAllData = {
|
|
@@ -3715,16 +3728,16 @@ type RecurringRuleControllerFindAllData = {
|
|
|
3715
3728
|
*/
|
|
3716
3729
|
isActive?: boolean;
|
|
3717
3730
|
/**
|
|
3718
|
-
* Region code (cn, us,
|
|
3731
|
+
* Region code (cn, us, de)
|
|
3719
3732
|
*/
|
|
3720
|
-
region: 'cn' | 'us' | '
|
|
3733
|
+
region: 'cn' | 'us' | 'de';
|
|
3721
3734
|
};
|
|
3722
3735
|
type RecurringRuleControllerFindAllResponse = Array<RecurringRuleResponseDto>;
|
|
3723
3736
|
type RecurringRuleController1Data = {
|
|
3724
3737
|
/**
|
|
3725
|
-
* Region code (cn, us,
|
|
3738
|
+
* Region code (cn, us, de)
|
|
3726
3739
|
*/
|
|
3727
|
-
region: 'cn' | 'us' | '
|
|
3740
|
+
region: 'cn' | 'us' | 'de';
|
|
3728
3741
|
};
|
|
3729
3742
|
type RecurringRuleController1Response = unknown;
|
|
3730
3743
|
type RecurringRuleControllerFindOneData = {
|
|
@@ -3733,23 +3746,23 @@ type RecurringRuleControllerFindOneData = {
|
|
|
3733
3746
|
*/
|
|
3734
3747
|
id: string;
|
|
3735
3748
|
/**
|
|
3736
|
-
* Region code (cn, us,
|
|
3749
|
+
* Region code (cn, us, de)
|
|
3737
3750
|
*/
|
|
3738
|
-
region: 'cn' | 'us' | '
|
|
3751
|
+
region: 'cn' | 'us' | 'de';
|
|
3739
3752
|
};
|
|
3740
3753
|
type RecurringRuleControllerFindOneResponse = RecurringRuleResponseDto;
|
|
3741
3754
|
type RecurringRuleController2Data = {
|
|
3742
3755
|
/**
|
|
3743
|
-
* Region code (cn, us,
|
|
3756
|
+
* Region code (cn, us, de)
|
|
3744
3757
|
*/
|
|
3745
|
-
region: 'cn' | 'us' | '
|
|
3758
|
+
region: 'cn' | 'us' | 'de';
|
|
3746
3759
|
};
|
|
3747
3760
|
type RecurringRuleController2Response = unknown;
|
|
3748
3761
|
type RecurringRuleController3Data = {
|
|
3749
3762
|
/**
|
|
3750
|
-
* Region code (cn, us,
|
|
3763
|
+
* Region code (cn, us, de)
|
|
3751
3764
|
*/
|
|
3752
|
-
region: 'cn' | 'us' | '
|
|
3765
|
+
region: 'cn' | 'us' | 'de';
|
|
3753
3766
|
};
|
|
3754
3767
|
type RecurringRuleController3Response = void;
|
|
3755
3768
|
type RecurringRuleControllerGetWithStatsData = {
|
|
@@ -3758,9 +3771,9 @@ type RecurringRuleControllerGetWithStatsData = {
|
|
|
3758
3771
|
*/
|
|
3759
3772
|
id: string;
|
|
3760
3773
|
/**
|
|
3761
|
-
* Region code (cn, us,
|
|
3774
|
+
* Region code (cn, us, de)
|
|
3762
3775
|
*/
|
|
3763
|
-
region: 'cn' | 'us' | '
|
|
3776
|
+
region: 'cn' | 'us' | 'de';
|
|
3764
3777
|
};
|
|
3765
3778
|
type RecurringRuleControllerGetWithStatsResponse = RecurringRuleWithStatsResponseDto;
|
|
3766
3779
|
type ExpectedTransactionControllerFindAllData = {
|
|
@@ -3769,9 +3782,9 @@ type ExpectedTransactionControllerFindAllData = {
|
|
|
3769
3782
|
*/
|
|
3770
3783
|
fromDate?: string;
|
|
3771
3784
|
/**
|
|
3772
|
-
* Region code (cn, us,
|
|
3785
|
+
* Region code (cn, us, de)
|
|
3773
3786
|
*/
|
|
3774
|
-
region: 'cn' | 'us' | '
|
|
3787
|
+
region: 'cn' | 'us' | 'de';
|
|
3775
3788
|
/**
|
|
3776
3789
|
* Filter by recurring rule ID
|
|
3777
3790
|
*/
|
|
@@ -3788,9 +3801,9 @@ type ExpectedTransactionControllerFindAllData = {
|
|
|
3788
3801
|
type ExpectedTransactionControllerFindAllResponse = ExpectedTransactionListResponseDto;
|
|
3789
3802
|
type ExpectedTransactionControllerFindOverdueData = {
|
|
3790
3803
|
/**
|
|
3791
|
-
* Region code (cn, us,
|
|
3804
|
+
* Region code (cn, us, de)
|
|
3792
3805
|
*/
|
|
3793
|
-
region: 'cn' | 'us' | '
|
|
3806
|
+
region: 'cn' | 'us' | 'de';
|
|
3794
3807
|
};
|
|
3795
3808
|
type ExpectedTransactionControllerFindOverdueResponse = ExpectedTransactionListResponseDto;
|
|
3796
3809
|
type ExpectedTransactionControllerFindOneData = {
|
|
@@ -3799,44 +3812,44 @@ type ExpectedTransactionControllerFindOneData = {
|
|
|
3799
3812
|
*/
|
|
3800
3813
|
id: string;
|
|
3801
3814
|
/**
|
|
3802
|
-
* Region code (cn, us,
|
|
3815
|
+
* Region code (cn, us, de)
|
|
3803
3816
|
*/
|
|
3804
|
-
region: 'cn' | 'us' | '
|
|
3817
|
+
region: 'cn' | 'us' | 'de';
|
|
3805
3818
|
};
|
|
3806
3819
|
type ExpectedTransactionControllerFindOneResponse = ExpectedTransactionResponseDto;
|
|
3807
3820
|
type ExpectedTransactionControllerData = {
|
|
3808
3821
|
/**
|
|
3809
|
-
* Region code (cn, us,
|
|
3822
|
+
* Region code (cn, us, de)
|
|
3810
3823
|
*/
|
|
3811
|
-
region: 'cn' | 'us' | '
|
|
3824
|
+
region: 'cn' | 'us' | 'de';
|
|
3812
3825
|
};
|
|
3813
3826
|
type ExpectedTransactionControllerResponse = unknown;
|
|
3814
3827
|
type ExpectedTransactionController1Data = {
|
|
3815
3828
|
/**
|
|
3816
|
-
* Region code (cn, us,
|
|
3829
|
+
* Region code (cn, us, de)
|
|
3817
3830
|
*/
|
|
3818
|
-
region: 'cn' | 'us' | '
|
|
3831
|
+
region: 'cn' | 'us' | 'de';
|
|
3819
3832
|
};
|
|
3820
3833
|
type ExpectedTransactionController1Response = unknown;
|
|
3821
3834
|
type ExpectedTransactionController2Data = {
|
|
3822
3835
|
/**
|
|
3823
|
-
* Region code (cn, us,
|
|
3836
|
+
* Region code (cn, us, de)
|
|
3824
3837
|
*/
|
|
3825
|
-
region: 'cn' | 'us' | '
|
|
3838
|
+
region: 'cn' | 'us' | 'de';
|
|
3826
3839
|
};
|
|
3827
3840
|
type ExpectedTransactionController2Response = unknown;
|
|
3828
3841
|
type ExpectedTransactionController3Data = {
|
|
3829
3842
|
/**
|
|
3830
|
-
* Region code (cn, us,
|
|
3843
|
+
* Region code (cn, us, de)
|
|
3831
3844
|
*/
|
|
3832
|
-
region: 'cn' | 'us' | '
|
|
3845
|
+
region: 'cn' | 'us' | 'de';
|
|
3833
3846
|
};
|
|
3834
3847
|
type ExpectedTransactionController3Response = unknown;
|
|
3835
3848
|
type ExpectedTransactionController4Data = {
|
|
3836
3849
|
/**
|
|
3837
|
-
* Region code (cn, us,
|
|
3850
|
+
* Region code (cn, us, de)
|
|
3838
3851
|
*/
|
|
3839
|
-
region: 'cn' | 'us' | '
|
|
3852
|
+
region: 'cn' | 'us' | 'de';
|
|
3840
3853
|
};
|
|
3841
3854
|
type ExpectedTransactionController4Response = unknown;
|
|
3842
3855
|
type ForecastControllerGetForecastData = {
|
|
@@ -3845,16 +3858,16 @@ type ForecastControllerGetForecastData = {
|
|
|
3845
3858
|
*/
|
|
3846
3859
|
months?: number;
|
|
3847
3860
|
/**
|
|
3848
|
-
* Region code (cn, us,
|
|
3861
|
+
* Region code (cn, us, de)
|
|
3849
3862
|
*/
|
|
3850
|
-
region: 'cn' | 'us' | '
|
|
3863
|
+
region: 'cn' | 'us' | 'de';
|
|
3851
3864
|
};
|
|
3852
3865
|
type ForecastControllerGetForecastResponse = ForecastResponseDto;
|
|
3853
3866
|
type TransactionRuleControllerData = {
|
|
3854
3867
|
/**
|
|
3855
|
-
* Region code (cn, us,
|
|
3868
|
+
* Region code (cn, us, de)
|
|
3856
3869
|
*/
|
|
3857
|
-
region: 'cn' | 'us' | '
|
|
3870
|
+
region: 'cn' | 'us' | 'de';
|
|
3858
3871
|
};
|
|
3859
3872
|
type TransactionRuleControllerResponse = unknown;
|
|
3860
3873
|
type TransactionRuleControllerListData = {
|
|
@@ -3879,24 +3892,24 @@ type TransactionRuleControllerListData = {
|
|
|
3879
3892
|
*/
|
|
3880
3893
|
offset?: number;
|
|
3881
3894
|
/**
|
|
3882
|
-
* Region code (cn, us,
|
|
3895
|
+
* Region code (cn, us, de)
|
|
3883
3896
|
*/
|
|
3884
|
-
region: 'cn' | 'us' | '
|
|
3897
|
+
region: 'cn' | 'us' | 'de';
|
|
3885
3898
|
};
|
|
3886
3899
|
type TransactionRuleControllerListResponse = TransactionRuleListResponseDto;
|
|
3887
3900
|
type TransactionRuleControllerValidateData = {
|
|
3888
3901
|
/**
|
|
3889
|
-
* Region code (cn, us,
|
|
3902
|
+
* Region code (cn, us, de)
|
|
3890
3903
|
*/
|
|
3891
|
-
region: 'cn' | 'us' | '
|
|
3904
|
+
region: 'cn' | 'us' | 'de';
|
|
3892
3905
|
requestBody: ValidateRuleDto;
|
|
3893
3906
|
};
|
|
3894
3907
|
type TransactionRuleControllerValidateResponse = ValidateRuleResponseDto;
|
|
3895
3908
|
type TransactionRuleController1Data = {
|
|
3896
3909
|
/**
|
|
3897
|
-
* Region code (cn, us,
|
|
3910
|
+
* Region code (cn, us, de)
|
|
3898
3911
|
*/
|
|
3899
|
-
region: 'cn' | 'us' | '
|
|
3912
|
+
region: 'cn' | 'us' | 'de';
|
|
3900
3913
|
};
|
|
3901
3914
|
type TransactionRuleController1Response = unknown;
|
|
3902
3915
|
type TransactionRuleControllerExportData = {
|
|
@@ -3905,9 +3918,9 @@ type TransactionRuleControllerExportData = {
|
|
|
3905
3918
|
*/
|
|
3906
3919
|
format: 'json';
|
|
3907
3920
|
/**
|
|
3908
|
-
* Region code (cn, us,
|
|
3921
|
+
* Region code (cn, us, de)
|
|
3909
3922
|
*/
|
|
3910
|
-
region: 'cn' | 'us' | '
|
|
3923
|
+
region: 'cn' | 'us' | 'de';
|
|
3911
3924
|
};
|
|
3912
3925
|
type TransactionRuleControllerExportResponse = ExportRulesResponseDto;
|
|
3913
3926
|
type TransactionRuleControllerGetStatisticsData = {
|
|
@@ -3916,16 +3929,16 @@ type TransactionRuleControllerGetStatisticsData = {
|
|
|
3916
3929
|
*/
|
|
3917
3930
|
period: '7d' | '30d' | '90d';
|
|
3918
3931
|
/**
|
|
3919
|
-
* Region code (cn, us,
|
|
3932
|
+
* Region code (cn, us, de)
|
|
3920
3933
|
*/
|
|
3921
|
-
region: 'cn' | 'us' | '
|
|
3934
|
+
region: 'cn' | 'us' | 'de';
|
|
3922
3935
|
};
|
|
3923
3936
|
type TransactionRuleControllerGetStatisticsResponse = RuleStatisticsResponseDto;
|
|
3924
3937
|
type TransactionRuleControllerGetDetailData = {
|
|
3925
3938
|
/**
|
|
3926
|
-
* Region code (cn, us,
|
|
3939
|
+
* Region code (cn, us, de)
|
|
3927
3940
|
*/
|
|
3928
|
-
region: 'cn' | 'us' | '
|
|
3941
|
+
region: 'cn' | 'us' | 'de';
|
|
3929
3942
|
/**
|
|
3930
3943
|
* Rule ID
|
|
3931
3944
|
*/
|
|
@@ -3934,23 +3947,23 @@ type TransactionRuleControllerGetDetailData = {
|
|
|
3934
3947
|
type TransactionRuleControllerGetDetailResponse = TransactionRuleResponseDto;
|
|
3935
3948
|
type TransactionRuleController2Data = {
|
|
3936
3949
|
/**
|
|
3937
|
-
* Region code (cn, us,
|
|
3950
|
+
* Region code (cn, us, de)
|
|
3938
3951
|
*/
|
|
3939
|
-
region: 'cn' | 'us' | '
|
|
3952
|
+
region: 'cn' | 'us' | 'de';
|
|
3940
3953
|
};
|
|
3941
3954
|
type TransactionRuleController2Response = unknown;
|
|
3942
3955
|
type TransactionRuleController3Data = {
|
|
3943
3956
|
/**
|
|
3944
|
-
* Region code (cn, us,
|
|
3957
|
+
* Region code (cn, us, de)
|
|
3945
3958
|
*/
|
|
3946
|
-
region: 'cn' | 'us' | '
|
|
3959
|
+
region: 'cn' | 'us' | 'de';
|
|
3947
3960
|
};
|
|
3948
3961
|
type TransactionRuleController3Response = void;
|
|
3949
3962
|
type TransactionRuleControllerTestData = {
|
|
3950
3963
|
/**
|
|
3951
|
-
* Region code (cn, us,
|
|
3964
|
+
* Region code (cn, us, de)
|
|
3952
3965
|
*/
|
|
3953
|
-
region: 'cn' | 'us' | '
|
|
3966
|
+
region: 'cn' | 'us' | 'de';
|
|
3954
3967
|
requestBody: TestRuleDto;
|
|
3955
3968
|
/**
|
|
3956
3969
|
* Rule ID to test
|
|
@@ -3960,25 +3973,25 @@ type TransactionRuleControllerTestData = {
|
|
|
3960
3973
|
type TransactionRuleControllerTestResponse = TestRuleResponseDto;
|
|
3961
3974
|
type UserControllerDeleteOwnUserData = {
|
|
3962
3975
|
/**
|
|
3963
|
-
* Region code (cn, us,
|
|
3976
|
+
* Region code (cn, us, de)
|
|
3964
3977
|
*/
|
|
3965
|
-
region: 'cn' | 'us' | '
|
|
3978
|
+
region: 'cn' | 'us' | 'de';
|
|
3966
3979
|
requestBody: DeleteOwnUserDto;
|
|
3967
3980
|
};
|
|
3968
3981
|
type UserControllerDeleteOwnUserResponse = void;
|
|
3969
3982
|
type UserControllerGetUserData = {
|
|
3970
3983
|
acceptLanguage: string;
|
|
3971
3984
|
/**
|
|
3972
|
-
* Region code (cn, us,
|
|
3985
|
+
* Region code (cn, us, de)
|
|
3973
3986
|
*/
|
|
3974
|
-
region: 'cn' | 'us' | '
|
|
3987
|
+
region: 'cn' | 'us' | 'de';
|
|
3975
3988
|
};
|
|
3976
3989
|
type UserControllerGetUserResponse = unknown;
|
|
3977
3990
|
type UserControllerSignupUserData = {
|
|
3978
3991
|
/**
|
|
3979
|
-
* Region code (cn, us,
|
|
3992
|
+
* Region code (cn, us, de)
|
|
3980
3993
|
*/
|
|
3981
|
-
region: 'cn' | 'us' | '
|
|
3994
|
+
region: 'cn' | 'us' | 'de';
|
|
3982
3995
|
requestBody: SignupDto;
|
|
3983
3996
|
};
|
|
3984
3997
|
type UserControllerSignupUserResponse = unknown;
|
|
@@ -3988,9 +4001,9 @@ type UserControllerDeleteUserData = {
|
|
|
3988
4001
|
*/
|
|
3989
4002
|
id: string;
|
|
3990
4003
|
/**
|
|
3991
|
-
* Region code (cn, us,
|
|
4004
|
+
* Region code (cn, us, de)
|
|
3992
4005
|
*/
|
|
3993
|
-
region: 'cn' | 'us' | '
|
|
4006
|
+
region: 'cn' | 'us' | 'de';
|
|
3994
4007
|
};
|
|
3995
4008
|
type UserControllerDeleteUserResponse = void;
|
|
3996
4009
|
type UserControllerGetUserInfoData = {
|
|
@@ -3999,16 +4012,16 @@ type UserControllerGetUserInfoData = {
|
|
|
3999
4012
|
*/
|
|
4000
4013
|
id: string;
|
|
4001
4014
|
/**
|
|
4002
|
-
* Region code (cn, us,
|
|
4015
|
+
* Region code (cn, us, de)
|
|
4003
4016
|
*/
|
|
4004
|
-
region: 'cn' | 'us' | '
|
|
4017
|
+
region: 'cn' | 'us' | 'de';
|
|
4005
4018
|
};
|
|
4006
4019
|
type UserControllerGetUserInfoResponse = unknown;
|
|
4007
4020
|
type UserControllerUpdateUserSettingData = {
|
|
4008
4021
|
/**
|
|
4009
|
-
* Region code (cn, us,
|
|
4022
|
+
* Region code (cn, us, de)
|
|
4010
4023
|
*/
|
|
4011
|
-
region: 'cn' | 'us' | '
|
|
4024
|
+
region: 'cn' | 'us' | 'de';
|
|
4012
4025
|
requestBody: UpdateUserSettingDto;
|
|
4013
4026
|
};
|
|
4014
4027
|
type UserControllerUpdateUserSettingResponse = unknown;
|
|
@@ -4022,23 +4035,23 @@ type UserControllerGetAllUserSettingsByPageData = {
|
|
|
4022
4035
|
*/
|
|
4023
4036
|
pageSize: number;
|
|
4024
4037
|
/**
|
|
4025
|
-
* Region code (cn, us,
|
|
4038
|
+
* Region code (cn, us, de)
|
|
4026
4039
|
*/
|
|
4027
|
-
region: 'cn' | 'us' | '
|
|
4040
|
+
region: 'cn' | 'us' | 'de';
|
|
4028
4041
|
};
|
|
4029
4042
|
type UserControllerGetAllUserSettingsByPageResponse = unknown;
|
|
4030
4043
|
type UserControllerGetAssetLiabilitySummaryData = {
|
|
4031
4044
|
/**
|
|
4032
|
-
* Region code (cn, us,
|
|
4045
|
+
* Region code (cn, us, de)
|
|
4033
4046
|
*/
|
|
4034
|
-
region: 'cn' | 'us' | '
|
|
4047
|
+
region: 'cn' | 'us' | 'de';
|
|
4035
4048
|
};
|
|
4036
4049
|
type UserControllerGetAssetLiabilitySummaryResponse = unknown;
|
|
4037
4050
|
type PropertyControllerGetAllData = {
|
|
4038
4051
|
/**
|
|
4039
|
-
* Region code (cn, us,
|
|
4052
|
+
* Region code (cn, us, de)
|
|
4040
4053
|
*/
|
|
4041
|
-
region: 'cn' | 'us' | '
|
|
4054
|
+
region: 'cn' | 'us' | 'de';
|
|
4042
4055
|
};
|
|
4043
4056
|
type PropertyControllerGetAllResponse = unknown;
|
|
4044
4057
|
type PropertyControllerGetByKeyData = {
|
|
@@ -4047,23 +4060,23 @@ type PropertyControllerGetByKeyData = {
|
|
|
4047
4060
|
*/
|
|
4048
4061
|
key: string;
|
|
4049
4062
|
/**
|
|
4050
|
-
* Region code (cn, us,
|
|
4063
|
+
* Region code (cn, us, de)
|
|
4051
4064
|
*/
|
|
4052
|
-
region: 'cn' | 'us' | '
|
|
4065
|
+
region: 'cn' | 'us' | 'de';
|
|
4053
4066
|
};
|
|
4054
4067
|
type PropertyControllerGetByKeyResponse = unknown;
|
|
4055
4068
|
type PropertyControllerData = {
|
|
4056
4069
|
/**
|
|
4057
|
-
* Region code (cn, us,
|
|
4070
|
+
* Region code (cn, us, de)
|
|
4058
4071
|
*/
|
|
4059
|
-
region: 'cn' | 'us' | '
|
|
4072
|
+
region: 'cn' | 'us' | 'de';
|
|
4060
4073
|
};
|
|
4061
4074
|
type PropertyControllerResponse = unknown;
|
|
4062
4075
|
type PropertyController1Data = {
|
|
4063
4076
|
/**
|
|
4064
|
-
* Region code (cn, us,
|
|
4077
|
+
* Region code (cn, us, de)
|
|
4065
4078
|
*/
|
|
4066
|
-
region: 'cn' | 'us' | '
|
|
4079
|
+
region: 'cn' | 'us' | 'de';
|
|
4067
4080
|
};
|
|
4068
4081
|
type PropertyController1Response = void;
|
|
4069
4082
|
type FileImportControllerImportFileData = {
|
|
@@ -4072,9 +4085,9 @@ type FileImportControllerImportFileData = {
|
|
|
4072
4085
|
*/
|
|
4073
4086
|
formData: FileImportDto;
|
|
4074
4087
|
/**
|
|
4075
|
-
* Region code (cn, us,
|
|
4088
|
+
* Region code (cn, us, de)
|
|
4076
4089
|
*/
|
|
4077
|
-
region: 'cn' | 'us' | '
|
|
4090
|
+
region: 'cn' | 'us' | 'de';
|
|
4078
4091
|
};
|
|
4079
4092
|
type FileImportControllerImportFileResponse = ImportResultDto;
|
|
4080
4093
|
type FileImportControllerIdentifyFileData = {
|
|
@@ -4083,9 +4096,9 @@ type FileImportControllerIdentifyFileData = {
|
|
|
4083
4096
|
*/
|
|
4084
4097
|
formData: FileImportDto;
|
|
4085
4098
|
/**
|
|
4086
|
-
* Region code (cn, us,
|
|
4099
|
+
* Region code (cn, us, de)
|
|
4087
4100
|
*/
|
|
4088
|
-
region: 'cn' | 'us' | '
|
|
4101
|
+
region: 'cn' | 'us' | 'de';
|
|
4089
4102
|
};
|
|
4090
4103
|
type FileImportControllerIdentifyFileResponse = IdentifyResultDto;
|
|
4091
4104
|
type ImporterConfigControllerGetConfigData = {
|
|
@@ -4094,23 +4107,23 @@ type ImporterConfigControllerGetConfigData = {
|
|
|
4094
4107
|
*/
|
|
4095
4108
|
importerId: string;
|
|
4096
4109
|
/**
|
|
4097
|
-
* Region code (cn, us,
|
|
4110
|
+
* Region code (cn, us, de)
|
|
4098
4111
|
*/
|
|
4099
|
-
region: 'cn' | 'us' | '
|
|
4112
|
+
region: 'cn' | 'us' | 'de';
|
|
4100
4113
|
};
|
|
4101
4114
|
type ImporterConfigControllerGetConfigResponse = ImporterConfigDto;
|
|
4102
4115
|
type ImporterConfigControllerData = {
|
|
4103
4116
|
/**
|
|
4104
|
-
* Region code (cn, us,
|
|
4117
|
+
* Region code (cn, us, de)
|
|
4105
4118
|
*/
|
|
4106
|
-
region: 'cn' | 'us' | '
|
|
4119
|
+
region: 'cn' | 'us' | 'de';
|
|
4107
4120
|
};
|
|
4108
4121
|
type ImporterConfigControllerResponse = unknown;
|
|
4109
4122
|
type ImporterConfigController1Data = {
|
|
4110
4123
|
/**
|
|
4111
|
-
* Region code (cn, us,
|
|
4124
|
+
* Region code (cn, us, de)
|
|
4112
4125
|
*/
|
|
4113
|
-
region: 'cn' | 'us' | '
|
|
4126
|
+
region: 'cn' | 'us' | 'de';
|
|
4114
4127
|
};
|
|
4115
4128
|
type ImporterConfigController1Response = unknown;
|
|
4116
4129
|
type ProviderSyncControllerSyncData = {
|
|
@@ -4127,9 +4140,9 @@ type ProviderSyncControllerSyncData = {
|
|
|
4127
4140
|
type ProviderSyncControllerSyncResponse = ProviderSyncResponseDto;
|
|
4128
4141
|
type ProviderSyncControllerGetSupportedProvidersData = {
|
|
4129
4142
|
/**
|
|
4130
|
-
* Region code (cn, us,
|
|
4143
|
+
* Region code (cn, us, de)
|
|
4131
4144
|
*/
|
|
4132
|
-
region: 'cn' | 'us' | '
|
|
4145
|
+
region: 'cn' | 'us' | 'de';
|
|
4133
4146
|
};
|
|
4134
4147
|
type ProviderSyncControllerGetSupportedProvidersResponse = SupportedProvidersResponseDto;
|
|
4135
4148
|
type ProviderSyncControllerIsProviderSupportedData = {
|
|
@@ -4138,16 +4151,16 @@ type ProviderSyncControllerIsProviderSupportedData = {
|
|
|
4138
4151
|
*/
|
|
4139
4152
|
providerName: string;
|
|
4140
4153
|
/**
|
|
4141
|
-
* Region code (cn, us,
|
|
4154
|
+
* Region code (cn, us, de)
|
|
4142
4155
|
*/
|
|
4143
|
-
region: 'cn' | 'us' | '
|
|
4156
|
+
region: 'cn' | 'us' | 'de';
|
|
4144
4157
|
};
|
|
4145
4158
|
type ProviderSyncControllerIsProviderSupportedResponse = unknown;
|
|
4146
4159
|
type NlpControllerProcessNaturalLanguageData = {
|
|
4147
4160
|
/**
|
|
4148
|
-
* Region code (cn, us,
|
|
4161
|
+
* Region code (cn, us, de)
|
|
4149
4162
|
*/
|
|
4150
|
-
region: 'cn' | 'us' | '
|
|
4163
|
+
region: 'cn' | 'us' | 'de';
|
|
4151
4164
|
/**
|
|
4152
4165
|
* Natural language transaction input with optional session ID
|
|
4153
4166
|
*/
|
|
@@ -4156,9 +4169,9 @@ type NlpControllerProcessNaturalLanguageData = {
|
|
|
4156
4169
|
type NlpControllerProcessNaturalLanguageResponse = NlpResponseDto;
|
|
4157
4170
|
type NlpControllerClearSessionData = {
|
|
4158
4171
|
/**
|
|
4159
|
-
* Region code (cn, us,
|
|
4172
|
+
* Region code (cn, us, de)
|
|
4160
4173
|
*/
|
|
4161
|
-
region: 'cn' | 'us' | '
|
|
4174
|
+
region: 'cn' | 'us' | 'de';
|
|
4162
4175
|
/**
|
|
4163
4176
|
* Specific session ID to clear (defaults to user session)
|
|
4164
4177
|
*/
|
|
@@ -4167,9 +4180,9 @@ type NlpControllerClearSessionData = {
|
|
|
4167
4180
|
type NlpControllerClearSessionResponse = void;
|
|
4168
4181
|
type NlpControllerGetSessionData = {
|
|
4169
4182
|
/**
|
|
4170
|
-
* Region code (cn, us,
|
|
4183
|
+
* Region code (cn, us, de)
|
|
4171
4184
|
*/
|
|
4172
|
-
region: 'cn' | 'us' | '
|
|
4185
|
+
region: 'cn' | 'us' | 'de';
|
|
4173
4186
|
/**
|
|
4174
4187
|
* Specific session ID to get (defaults to user session)
|
|
4175
4188
|
*/
|
|
@@ -4178,37 +4191,37 @@ type NlpControllerGetSessionData = {
|
|
|
4178
4191
|
type NlpControllerGetSessionResponse = unknown;
|
|
4179
4192
|
type PlatformControllerFindAllData = {
|
|
4180
4193
|
/**
|
|
4181
|
-
* Region code (cn, us,
|
|
4194
|
+
* Region code (cn, us, de)
|
|
4182
4195
|
*/
|
|
4183
|
-
region: 'cn' | 'us' | '
|
|
4196
|
+
region: 'cn' | 'us' | 'de';
|
|
4184
4197
|
};
|
|
4185
4198
|
type PlatformControllerFindAllResponse = unknown;
|
|
4186
4199
|
type PlatformControllerData = {
|
|
4187
4200
|
/**
|
|
4188
|
-
* Region code (cn, us,
|
|
4201
|
+
* Region code (cn, us, de)
|
|
4189
4202
|
*/
|
|
4190
|
-
region: 'cn' | 'us' | '
|
|
4203
|
+
region: 'cn' | 'us' | 'de';
|
|
4191
4204
|
};
|
|
4192
4205
|
type PlatformControllerResponse = unknown;
|
|
4193
4206
|
type PlatformControllerGetPlatformListData = {
|
|
4194
4207
|
/**
|
|
4195
|
-
* Region code (cn, us,
|
|
4208
|
+
* Region code (cn, us, de)
|
|
4196
4209
|
*/
|
|
4197
|
-
region: 'cn' | 'us' | '
|
|
4210
|
+
region: 'cn' | 'us' | 'de';
|
|
4198
4211
|
};
|
|
4199
4212
|
type PlatformControllerGetPlatformListResponse = unknown;
|
|
4200
4213
|
type PlatformController1Data = {
|
|
4201
4214
|
/**
|
|
4202
|
-
* Region code (cn, us,
|
|
4215
|
+
* Region code (cn, us, de)
|
|
4203
4216
|
*/
|
|
4204
|
-
region: 'cn' | 'us' | '
|
|
4217
|
+
region: 'cn' | 'us' | 'de';
|
|
4205
4218
|
};
|
|
4206
4219
|
type PlatformController1Response = unknown;
|
|
4207
4220
|
type PlatformController2Data = {
|
|
4208
4221
|
/**
|
|
4209
|
-
* Region code (cn, us,
|
|
4222
|
+
* Region code (cn, us, de)
|
|
4210
4223
|
*/
|
|
4211
|
-
region: 'cn' | 'us' | '
|
|
4224
|
+
region: 'cn' | 'us' | 'de';
|
|
4212
4225
|
};
|
|
4213
4226
|
type PlatformController2Response = void;
|
|
4214
4227
|
type SymbolControllerLookupSymbolData = {
|
|
@@ -4233,9 +4246,9 @@ type SymbolControllerLookupSymbolData = {
|
|
|
4233
4246
|
*/
|
|
4234
4247
|
query?: unknown;
|
|
4235
4248
|
/**
|
|
4236
|
-
* Region code (cn, us,
|
|
4249
|
+
* Region code (cn, us, de)
|
|
4237
4250
|
*/
|
|
4238
|
-
region: 'cn' | 'us' | '
|
|
4251
|
+
region: 'cn' | 'us' | 'de';
|
|
4239
4252
|
};
|
|
4240
4253
|
type SymbolControllerLookupSymbolResponse = unknown;
|
|
4241
4254
|
type SymbolControllerGetSymbolDataData = {
|
|
@@ -4248,9 +4261,9 @@ type SymbolControllerGetSymbolDataData = {
|
|
|
4248
4261
|
*/
|
|
4249
4262
|
includeHistoricalData?: unknown;
|
|
4250
4263
|
/**
|
|
4251
|
-
* Region code (cn, us,
|
|
4264
|
+
* Region code (cn, us, de)
|
|
4252
4265
|
*/
|
|
4253
|
-
region: 'cn' | 'us' | '
|
|
4266
|
+
region: 'cn' | 'us' | 'de';
|
|
4254
4267
|
/**
|
|
4255
4268
|
* Symbol identifier (e.g., ticker code)
|
|
4256
4269
|
*/
|
|
@@ -4267,9 +4280,9 @@ type SymbolControllerGatherSymbolForDateData = {
|
|
|
4267
4280
|
*/
|
|
4268
4281
|
dateString: string;
|
|
4269
4282
|
/**
|
|
4270
|
-
* Region code (cn, us,
|
|
4283
|
+
* Region code (cn, us, de)
|
|
4271
4284
|
*/
|
|
4272
|
-
region: 'cn' | 'us' | '
|
|
4285
|
+
region: 'cn' | 'us' | 'de';
|
|
4273
4286
|
/**
|
|
4274
4287
|
* Symbol identifier (e.g., ticker code)
|
|
4275
4288
|
*/
|
|
@@ -4278,16 +4291,16 @@ type SymbolControllerGatherSymbolForDateData = {
|
|
|
4278
4291
|
type SymbolControllerGatherSymbolForDateResponse = unknown;
|
|
4279
4292
|
type SymbolControllerData = {
|
|
4280
4293
|
/**
|
|
4281
|
-
* Region code (cn, us,
|
|
4294
|
+
* Region code (cn, us, de)
|
|
4282
4295
|
*/
|
|
4283
|
-
region: 'cn' | 'us' | '
|
|
4296
|
+
region: 'cn' | 'us' | 'de';
|
|
4284
4297
|
};
|
|
4285
4298
|
type SymbolControllerResponse = unknown;
|
|
4286
4299
|
type CacheControllerFlushCacheData = {
|
|
4287
4300
|
/**
|
|
4288
|
-
* Region code (cn, us,
|
|
4301
|
+
* Region code (cn, us, de)
|
|
4289
4302
|
*/
|
|
4290
|
-
region: 'cn' | 'us' | '
|
|
4303
|
+
region: 'cn' | 'us' | 'de';
|
|
4291
4304
|
};
|
|
4292
4305
|
type CacheControllerFlushCacheResponse = unknown;
|
|
4293
4306
|
type DashboardControllerGetNetWorthData = {
|
|
@@ -4296,9 +4309,9 @@ type DashboardControllerGetNetWorthData = {
|
|
|
4296
4309
|
*/
|
|
4297
4310
|
date?: string;
|
|
4298
4311
|
/**
|
|
4299
|
-
* Region code (cn, us,
|
|
4312
|
+
* Region code (cn, us, de)
|
|
4300
4313
|
*/
|
|
4301
|
-
region: 'cn' | 'us' | '
|
|
4314
|
+
region: 'cn' | 'us' | 'de';
|
|
4302
4315
|
};
|
|
4303
4316
|
type DashboardControllerGetNetWorthResponse = NetWorthResponseDto;
|
|
4304
4317
|
type DashboardControllerGetAccountsData = {
|
|
@@ -4311,9 +4324,9 @@ type DashboardControllerGetAccountsData = {
|
|
|
4311
4324
|
*/
|
|
4312
4325
|
groupBy?: 'platform' | 'assetClass';
|
|
4313
4326
|
/**
|
|
4314
|
-
* Region code (cn, us,
|
|
4327
|
+
* Region code (cn, us, de)
|
|
4315
4328
|
*/
|
|
4316
|
-
region: 'cn' | 'us' | '
|
|
4329
|
+
region: 'cn' | 'us' | 'de';
|
|
4317
4330
|
};
|
|
4318
4331
|
type DashboardControllerGetAccountsResponse = AccountsResponseDto | AssetClassAccountsResponseDto;
|
|
4319
4332
|
type DashboardControllerGetCashFlowData = {
|
|
@@ -4322,9 +4335,9 @@ type DashboardControllerGetCashFlowData = {
|
|
|
4322
4335
|
*/
|
|
4323
4336
|
period: string;
|
|
4324
4337
|
/**
|
|
4325
|
-
* Region code (cn, us,
|
|
4338
|
+
* Region code (cn, us, de)
|
|
4326
4339
|
*/
|
|
4327
|
-
region: 'cn' | 'us' | '
|
|
4340
|
+
region: 'cn' | 'us' | 'de';
|
|
4328
4341
|
};
|
|
4329
4342
|
type DashboardControllerGetCashFlowResponse = CashFlowResponseDto;
|
|
4330
4343
|
type ReportingControllerGetPortfolioTrendsData = {
|
|
@@ -4337,16 +4350,16 @@ type ReportingControllerGetPortfolioTrendsData = {
|
|
|
4337
4350
|
*/
|
|
4338
4351
|
period?: '1m' | '3m' | '6m' | '1y';
|
|
4339
4352
|
/**
|
|
4340
|
-
* Region code (cn, us,
|
|
4353
|
+
* Region code (cn, us, de)
|
|
4341
4354
|
*/
|
|
4342
|
-
region: 'cn' | 'us' | '
|
|
4355
|
+
region: 'cn' | 'us' | 'de';
|
|
4343
4356
|
};
|
|
4344
4357
|
type ReportingControllerGetPortfolioTrendsResponse = PortfolioTrendsResponseDto;
|
|
4345
4358
|
type ReportingControllerGenerateSnapshotData = {
|
|
4346
4359
|
/**
|
|
4347
|
-
* Region code (cn, us,
|
|
4360
|
+
* Region code (cn, us, de)
|
|
4348
4361
|
*/
|
|
4349
|
-
region: 'cn' | 'us' | '
|
|
4362
|
+
region: 'cn' | 'us' | 'de';
|
|
4350
4363
|
/**
|
|
4351
4364
|
* Optional date (defaults to today)
|
|
4352
4365
|
*/
|
|
@@ -4355,24 +4368,24 @@ type ReportingControllerGenerateSnapshotData = {
|
|
|
4355
4368
|
type ReportingControllerGenerateSnapshotResponse = GenerateSnapshotResponse;
|
|
4356
4369
|
type ReportingControllerBackfillSnapshotsData = {
|
|
4357
4370
|
/**
|
|
4358
|
-
* Region code (cn, us,
|
|
4371
|
+
* Region code (cn, us, de)
|
|
4359
4372
|
*/
|
|
4360
|
-
region: 'cn' | 'us' | '
|
|
4373
|
+
region: 'cn' | 'us' | 'de';
|
|
4361
4374
|
requestBody: BackfillSnapshotsBody;
|
|
4362
4375
|
};
|
|
4363
4376
|
type ReportingControllerBackfillSnapshotsResponse = BackfillSnapshotsResponse;
|
|
4364
4377
|
type ApiKeysControllerData = {
|
|
4365
4378
|
/**
|
|
4366
|
-
* Region code (cn, us,
|
|
4379
|
+
* Region code (cn, us, de)
|
|
4367
4380
|
*/
|
|
4368
|
-
region: 'cn' | 'us' | '
|
|
4381
|
+
region: 'cn' | 'us' | 'de';
|
|
4369
4382
|
};
|
|
4370
4383
|
type ApiKeysControllerResponse = unknown;
|
|
4371
4384
|
type AuthControllerAccessTokenLoginData = {
|
|
4372
4385
|
/**
|
|
4373
|
-
* Region code (cn, us,
|
|
4386
|
+
* Region code (cn, us, de)
|
|
4374
4387
|
*/
|
|
4375
|
-
region: 'cn' | 'us' | '
|
|
4388
|
+
region: 'cn' | 'us' | 'de';
|
|
4376
4389
|
requestBody: AnonymousLoginDto;
|
|
4377
4390
|
};
|
|
4378
4391
|
type AuthControllerAccessTokenLoginResponse = unknown;
|
|
@@ -4382,9 +4395,9 @@ type ExchangeRateControllerGetExchangeRateData = {
|
|
|
4382
4395
|
*/
|
|
4383
4396
|
dateString: string;
|
|
4384
4397
|
/**
|
|
4385
|
-
* Region code (cn, us,
|
|
4398
|
+
* Region code (cn, us, de)
|
|
4386
4399
|
*/
|
|
4387
|
-
region: 'cn' | 'us' | '
|
|
4400
|
+
region: 'cn' | 'us' | 'de';
|
|
4388
4401
|
/**
|
|
4389
4402
|
* Currency pair symbol (e.g., USDCNY, EURUSD)
|
|
4390
4403
|
*/
|
|
@@ -4393,30 +4406,30 @@ type ExchangeRateControllerGetExchangeRateData = {
|
|
|
4393
4406
|
type ExchangeRateControllerGetExchangeRateResponse = unknown;
|
|
4394
4407
|
type HealthControllerGetHealthData = {
|
|
4395
4408
|
/**
|
|
4396
|
-
* Region code (cn, us,
|
|
4409
|
+
* Region code (cn, us, de)
|
|
4397
4410
|
*/
|
|
4398
|
-
region: 'cn' | 'us' | '
|
|
4411
|
+
region: 'cn' | 'us' | 'de';
|
|
4399
4412
|
};
|
|
4400
4413
|
type HealthControllerGetHealthResponse = unknown;
|
|
4401
4414
|
type HealthControllerCheckDatabaseData = {
|
|
4402
4415
|
/**
|
|
4403
|
-
* Region code (cn, us,
|
|
4416
|
+
* Region code (cn, us, de)
|
|
4404
4417
|
*/
|
|
4405
|
-
region: 'cn' | 'us' | '
|
|
4418
|
+
region: 'cn' | 'us' | 'de';
|
|
4406
4419
|
};
|
|
4407
4420
|
type HealthControllerCheckDatabaseResponse = unknown;
|
|
4408
4421
|
type HealthControllerCheckRedisData = {
|
|
4409
4422
|
/**
|
|
4410
|
-
* Region code (cn, us,
|
|
4423
|
+
* Region code (cn, us, de)
|
|
4411
4424
|
*/
|
|
4412
|
-
region: 'cn' | 'us' | '
|
|
4425
|
+
region: 'cn' | 'us' | 'de';
|
|
4413
4426
|
};
|
|
4414
4427
|
type HealthControllerCheckRedisResponse = unknown;
|
|
4415
4428
|
type HealthControllerGetCircuitBreakersHealthData = {
|
|
4416
4429
|
/**
|
|
4417
|
-
* Region code (cn, us,
|
|
4430
|
+
* Region code (cn, us, de)
|
|
4418
4431
|
*/
|
|
4419
|
-
region: 'cn' | 'us' | '
|
|
4432
|
+
region: 'cn' | 'us' | 'de';
|
|
4420
4433
|
};
|
|
4421
4434
|
type HealthControllerGetCircuitBreakersHealthResponse = unknown;
|
|
4422
4435
|
type HealthControllerResetCircuitBreakerData = {
|
|
@@ -4425,16 +4438,16 @@ type HealthControllerResetCircuitBreakerData = {
|
|
|
4425
4438
|
*/
|
|
4426
4439
|
name: string;
|
|
4427
4440
|
/**
|
|
4428
|
-
* Region code (cn, us,
|
|
4441
|
+
* Region code (cn, us, de)
|
|
4429
4442
|
*/
|
|
4430
|
-
region: 'cn' | 'us' | '
|
|
4443
|
+
region: 'cn' | 'us' | 'de';
|
|
4431
4444
|
};
|
|
4432
4445
|
type HealthControllerResetCircuitBreakerResponse = unknown;
|
|
4433
4446
|
type HealthControllerGetMetricsData = {
|
|
4434
4447
|
/**
|
|
4435
|
-
* Region code (cn, us,
|
|
4448
|
+
* Region code (cn, us, de)
|
|
4436
4449
|
*/
|
|
4437
|
-
region: 'cn' | 'us' | '
|
|
4450
|
+
region: 'cn' | 'us' | 'de';
|
|
4438
4451
|
};
|
|
4439
4452
|
type HealthControllerGetMetricsResponse = unknown;
|
|
4440
4453
|
type HealthControllerGetHealthOfDataEnhancerData = {
|
|
@@ -4443,16 +4456,16 @@ type HealthControllerGetHealthOfDataEnhancerData = {
|
|
|
4443
4456
|
*/
|
|
4444
4457
|
name: string;
|
|
4445
4458
|
/**
|
|
4446
|
-
* Region code (cn, us,
|
|
4459
|
+
* Region code (cn, us, de)
|
|
4447
4460
|
*/
|
|
4448
|
-
region: 'cn' | 'us' | '
|
|
4461
|
+
region: 'cn' | 'us' | 'de';
|
|
4449
4462
|
};
|
|
4450
4463
|
type HealthControllerGetHealthOfDataEnhancerResponse = unknown;
|
|
4451
4464
|
type HealthControllerCheckDataProvidersData = {
|
|
4452
4465
|
/**
|
|
4453
|
-
* Region code (cn, us,
|
|
4466
|
+
* Region code (cn, us, de)
|
|
4454
4467
|
*/
|
|
4455
|
-
region: 'cn' | 'us' | '
|
|
4468
|
+
region: 'cn' | 'us' | 'de';
|
|
4456
4469
|
};
|
|
4457
4470
|
type HealthControllerCheckDataProvidersResponse = unknown;
|
|
4458
4471
|
type HealthControllerGetHealthOfDataProviderData = {
|
|
@@ -4461,16 +4474,16 @@ type HealthControllerGetHealthOfDataProviderData = {
|
|
|
4461
4474
|
*/
|
|
4462
4475
|
dataSource: string;
|
|
4463
4476
|
/**
|
|
4464
|
-
* Region code (cn, us,
|
|
4477
|
+
* Region code (cn, us, de)
|
|
4465
4478
|
*/
|
|
4466
|
-
region: 'cn' | 'us' | '
|
|
4479
|
+
region: 'cn' | 'us' | 'de';
|
|
4467
4480
|
};
|
|
4468
4481
|
type HealthControllerGetHealthOfDataProviderResponse = unknown;
|
|
4469
4482
|
type InfoControllerGetInfoData = {
|
|
4470
4483
|
/**
|
|
4471
|
-
* Region code (cn, us,
|
|
4484
|
+
* Region code (cn, us, de)
|
|
4472
4485
|
*/
|
|
4473
|
-
region: 'cn' | 'us' | '
|
|
4486
|
+
region: 'cn' | 'us' | 'de';
|
|
4474
4487
|
};
|
|
4475
4488
|
type InfoControllerGetInfoResponse = unknown;
|
|
4476
4489
|
type LogoControllerGetLogoByDataSourceAndSymbolData = {
|
|
@@ -4479,9 +4492,9 @@ type LogoControllerGetLogoByDataSourceAndSymbolData = {
|
|
|
4479
4492
|
*/
|
|
4480
4493
|
dataSource: string;
|
|
4481
4494
|
/**
|
|
4482
|
-
* Region code (cn, us,
|
|
4495
|
+
* Region code (cn, us, de)
|
|
4483
4496
|
*/
|
|
4484
|
-
region: 'cn' | 'us' | '
|
|
4497
|
+
region: 'cn' | 'us' | 'de';
|
|
4485
4498
|
/**
|
|
4486
4499
|
* Asset symbol (e.g., AAPL, BTC)
|
|
4487
4500
|
*/
|
|
@@ -4490,9 +4503,9 @@ type LogoControllerGetLogoByDataSourceAndSymbolData = {
|
|
|
4490
4503
|
type LogoControllerGetLogoByDataSourceAndSymbolResponse = unknown;
|
|
4491
4504
|
type LogoControllerGetLogoByUrlData = {
|
|
4492
4505
|
/**
|
|
4493
|
-
* Region code (cn, us,
|
|
4506
|
+
* Region code (cn, us, de)
|
|
4494
4507
|
*/
|
|
4495
|
-
region: 'cn' | 'us' | '
|
|
4508
|
+
region: 'cn' | 'us' | 'de';
|
|
4496
4509
|
/**
|
|
4497
4510
|
* Website URL to fetch favicon from
|
|
4498
4511
|
*/
|
|
@@ -4505,9 +4518,9 @@ type MarketDataControllerGetMarketDataBySymbolData = {
|
|
|
4505
4518
|
*/
|
|
4506
4519
|
dataSource: 'ALPHA_VANTAGE' | 'EOD_HISTORICAL_DATA' | 'FINANCIAL_MODELING_PREP' | 'MANUAL' | 'RAPID_API' | 'YAHOO' | 'COINGECKO' | 'TUSHARE' | 'BLOOMBERG' | 'CSI' | 'STOOQ' | 'TRADING_VIEW';
|
|
4507
4520
|
/**
|
|
4508
|
-
* Region code (cn, us,
|
|
4521
|
+
* Region code (cn, us, de)
|
|
4509
4522
|
*/
|
|
4510
|
-
region: 'cn' | 'us' | '
|
|
4523
|
+
region: 'cn' | 'us' | 'de';
|
|
4511
4524
|
/**
|
|
4512
4525
|
* Symbol code
|
|
4513
4526
|
*/
|
|
@@ -4516,9 +4529,9 @@ type MarketDataControllerGetMarketDataBySymbolData = {
|
|
|
4516
4529
|
type MarketDataControllerGetMarketDataBySymbolResponse = unknown;
|
|
4517
4530
|
type MarketDataControllerData = {
|
|
4518
4531
|
/**
|
|
4519
|
-
* Region code (cn, us,
|
|
4532
|
+
* Region code (cn, us, de)
|
|
4520
4533
|
*/
|
|
4521
|
-
region: 'cn' | 'us' | '
|
|
4534
|
+
region: 'cn' | 'us' | 'de';
|
|
4522
4535
|
};
|
|
4523
4536
|
type MarketDataControllerResponse = unknown;
|
|
4524
4537
|
type $OpenApiTs = {
|
|
@@ -4739,11 +4752,9 @@ type $OpenApiTs = {
|
|
|
4739
4752
|
req: AccountStandardsControllerGetRegionsData;
|
|
4740
4753
|
res: {
|
|
4741
4754
|
/**
|
|
4742
|
-
* Regions retrieved successfully
|
|
4755
|
+
* Regions metadata retrieved successfully
|
|
4743
4756
|
*/
|
|
4744
|
-
200:
|
|
4745
|
-
regions?: Array<string>;
|
|
4746
|
-
};
|
|
4757
|
+
200: RegionsMetadataResponseDto;
|
|
4747
4758
|
};
|
|
4748
4759
|
};
|
|
4749
4760
|
};
|
|
@@ -6323,7 +6334,7 @@ declare class BeanBalancesService {
|
|
|
6323
6334
|
* Calculate account balance at a specific date for a single currency
|
|
6324
6335
|
* @param data The data for the request.
|
|
6325
6336
|
* @param data.account Account name (e.g., "Assets:Bank:Checking")
|
|
6326
|
-
* @param data.region Region code (cn, us,
|
|
6337
|
+
* @param data.region Region code (cn, us, de)
|
|
6327
6338
|
* @param data.date Date to calculate balance at (ISO 8601 format)
|
|
6328
6339
|
* @param data.currency Currency to query (e.g., "USD", "CNY")
|
|
6329
6340
|
* @returns BalanceResponseDto Balance calculated successfully
|
|
@@ -6334,7 +6345,7 @@ declare class BeanBalancesService {
|
|
|
6334
6345
|
* Query multi-currency account balance
|
|
6335
6346
|
* Calculate account balances for all currencies at a specific date
|
|
6336
6347
|
* @param data The data for the request.
|
|
6337
|
-
* @param data.region Region code (cn, us,
|
|
6348
|
+
* @param data.region Region code (cn, us, de)
|
|
6338
6349
|
* @returns MultiCurrencyBalanceResponseDto Balances calculated successfully
|
|
6339
6350
|
* @throws ApiError
|
|
6340
6351
|
*/
|
|
@@ -6343,7 +6354,7 @@ declare class BeanBalancesService {
|
|
|
6343
6354
|
declare class BeanCommoditiesService {
|
|
6344
6355
|
/**
|
|
6345
6356
|
* @param data The data for the request.
|
|
6346
|
-
* @param data.region Region code (cn, us,
|
|
6357
|
+
* @param data.region Region code (cn, us, de)
|
|
6347
6358
|
* @returns unknown
|
|
6348
6359
|
* @throws ApiError
|
|
6349
6360
|
*/
|
|
@@ -6352,7 +6363,7 @@ declare class BeanCommoditiesService {
|
|
|
6352
6363
|
* List user commodities
|
|
6353
6364
|
* Returns all commodity definitions for the authenticated user with optional filtering
|
|
6354
6365
|
* @param data The data for the request.
|
|
6355
|
-
* @param data.region Region code (cn, us,
|
|
6366
|
+
* @param data.region Region code (cn, us, de)
|
|
6356
6367
|
* @param data.search Search term for symbol or metadata fields (partial match). Searches symbol and metadata.name.
|
|
6357
6368
|
* @param data.symbol Filter by exact symbol match
|
|
6358
6369
|
* @returns CommodityListResponseDto Commodities retrieved successfully
|
|
@@ -6364,35 +6375,35 @@ declare class BeanCommoditiesService {
|
|
|
6364
6375
|
* Returns a specific commodity definition by its symbol
|
|
6365
6376
|
* @param data The data for the request.
|
|
6366
6377
|
* @param data.symbol Commodity symbol
|
|
6367
|
-
* @param data.region Region code (cn, us,
|
|
6378
|
+
* @param data.region Region code (cn, us, de)
|
|
6368
6379
|
* @returns CommodityResponseDto Commodity retrieved successfully
|
|
6369
6380
|
* @throws ApiError
|
|
6370
6381
|
*/
|
|
6371
6382
|
static commodityControllerFindOne(data: CommodityControllerFindOneData): CancelablePromise<CommodityControllerFindOneResponse>;
|
|
6372
6383
|
/**
|
|
6373
6384
|
* @param data The data for the request.
|
|
6374
|
-
* @param data.region Region code (cn, us,
|
|
6385
|
+
* @param data.region Region code (cn, us, de)
|
|
6375
6386
|
* @returns unknown
|
|
6376
6387
|
* @throws ApiError
|
|
6377
6388
|
*/
|
|
6378
6389
|
static commodityController1(data: CommodityController1Data): CancelablePromise<CommodityController1Response>;
|
|
6379
6390
|
/**
|
|
6380
6391
|
* @param data The data for the request.
|
|
6381
|
-
* @param data.region Region code (cn, us,
|
|
6392
|
+
* @param data.region Region code (cn, us, de)
|
|
6382
6393
|
* @returns void
|
|
6383
6394
|
* @throws ApiError
|
|
6384
6395
|
*/
|
|
6385
6396
|
static commodityController2(data: CommodityController2Data): CancelablePromise<CommodityController2Response>;
|
|
6386
6397
|
/**
|
|
6387
6398
|
* @param data The data for the request.
|
|
6388
|
-
* @param data.region Region code (cn, us,
|
|
6399
|
+
* @param data.region Region code (cn, us, de)
|
|
6389
6400
|
* @returns unknown
|
|
6390
6401
|
* @throws ApiError
|
|
6391
6402
|
*/
|
|
6392
6403
|
static commodityController3(data: CommodityController3Data): CancelablePromise<CommodityController3Response>;
|
|
6393
6404
|
/**
|
|
6394
6405
|
* @param data The data for the request.
|
|
6395
|
-
* @param data.region Region code (cn, us,
|
|
6406
|
+
* @param data.region Region code (cn, us, de)
|
|
6396
6407
|
* @returns unknown
|
|
6397
6408
|
* @throws ApiError
|
|
6398
6409
|
*/
|
|
@@ -6433,7 +6444,7 @@ declare class ProviderSyncService {
|
|
|
6433
6444
|
* Get supported providers
|
|
6434
6445
|
* Returns a list of all providers supported by the sync endpoint.
|
|
6435
6446
|
* @param data The data for the request.
|
|
6436
|
-
* @param data.region Region code (cn, us,
|
|
6447
|
+
* @param data.region Region code (cn, us, de)
|
|
6437
6448
|
* @returns SupportedProvidersResponseDto List of supported providers
|
|
6438
6449
|
* @throws ApiError
|
|
6439
6450
|
*/
|
|
@@ -6443,7 +6454,7 @@ declare class ProviderSyncService {
|
|
|
6443
6454
|
* Returns whether a specific provider is supported.
|
|
6444
6455
|
* @param data The data for the request.
|
|
6445
6456
|
* @param data.providerName Provider name to check
|
|
6446
|
-
* @param data.region Region code (cn, us,
|
|
6457
|
+
* @param data.region Region code (cn, us, de)
|
|
6447
6458
|
* @returns unknown Provider support status
|
|
6448
6459
|
* @throws ApiError
|
|
6449
6460
|
*/
|
|
@@ -6453,7 +6464,7 @@ declare class HealthService {
|
|
|
6453
6464
|
/**
|
|
6454
6465
|
* Basic health check for K8s/load balancer probes
|
|
6455
6466
|
* @param data The data for the request.
|
|
6456
|
-
* @param data.region Region code (cn, us,
|
|
6467
|
+
* @param data.region Region code (cn, us, de)
|
|
6457
6468
|
* @returns unknown Service is healthy
|
|
6458
6469
|
* @throws ApiError
|
|
6459
6470
|
*/
|
|
@@ -6461,7 +6472,7 @@ declare class HealthService {
|
|
|
6461
6472
|
/**
|
|
6462
6473
|
* Check database connection health
|
|
6463
6474
|
* @param data The data for the request.
|
|
6464
|
-
* @param data.region Region code (cn, us,
|
|
6475
|
+
* @param data.region Region code (cn, us, de)
|
|
6465
6476
|
* @returns unknown Database is healthy
|
|
6466
6477
|
* @throws ApiError
|
|
6467
6478
|
*/
|
|
@@ -6469,7 +6480,7 @@ declare class HealthService {
|
|
|
6469
6480
|
/**
|
|
6470
6481
|
* Check Redis connection health
|
|
6471
6482
|
* @param data The data for the request.
|
|
6472
|
-
* @param data.region Region code (cn, us,
|
|
6483
|
+
* @param data.region Region code (cn, us, de)
|
|
6473
6484
|
* @returns unknown Redis is healthy
|
|
6474
6485
|
* @throws ApiError
|
|
6475
6486
|
*/
|
|
@@ -6477,7 +6488,7 @@ declare class HealthService {
|
|
|
6477
6488
|
/**
|
|
6478
6489
|
* Get status of all circuit breakers
|
|
6479
6490
|
* @param data The data for the request.
|
|
6480
|
-
* @param data.region Region code (cn, us,
|
|
6491
|
+
* @param data.region Region code (cn, us, de)
|
|
6481
6492
|
* @returns unknown Circuit breaker status
|
|
6482
6493
|
* @throws ApiError
|
|
6483
6494
|
*/
|
|
@@ -6486,7 +6497,7 @@ declare class HealthService {
|
|
|
6486
6497
|
* Reset a circuit breaker to CLOSED state
|
|
6487
6498
|
* @param data The data for the request.
|
|
6488
6499
|
* @param data.name Circuit breaker name to reset
|
|
6489
|
-
* @param data.region Region code (cn, us,
|
|
6500
|
+
* @param data.region Region code (cn, us, de)
|
|
6490
6501
|
* @returns unknown Circuit breaker reset successfully
|
|
6491
6502
|
* @throws ApiError
|
|
6492
6503
|
*/
|
|
@@ -6494,7 +6505,7 @@ declare class HealthService {
|
|
|
6494
6505
|
/**
|
|
6495
6506
|
* Get health check metrics and statistics
|
|
6496
6507
|
* @param data The data for the request.
|
|
6497
|
-
* @param data.region Region code (cn, us,
|
|
6508
|
+
* @param data.region Region code (cn, us, de)
|
|
6498
6509
|
* @returns unknown Health metrics
|
|
6499
6510
|
* @throws ApiError
|
|
6500
6511
|
*/
|
|
@@ -6503,7 +6514,7 @@ declare class HealthService {
|
|
|
6503
6514
|
* Check health of a specific data enhancer
|
|
6504
6515
|
* @param data The data for the request.
|
|
6505
6516
|
* @param data.name Data enhancer name
|
|
6506
|
-
* @param data.region Region code (cn, us,
|
|
6517
|
+
* @param data.region Region code (cn, us, de)
|
|
6507
6518
|
* @returns unknown Data enhancer is healthy
|
|
6508
6519
|
* @throws ApiError
|
|
6509
6520
|
*/
|
|
@@ -6511,7 +6522,7 @@ declare class HealthService {
|
|
|
6511
6522
|
/**
|
|
6512
6523
|
* Check health of all data providers
|
|
6513
6524
|
* @param data The data for the request.
|
|
6514
|
-
* @param data.region Region code (cn, us,
|
|
6525
|
+
* @param data.region Region code (cn, us, de)
|
|
6515
6526
|
* @returns unknown Data providers health status
|
|
6516
6527
|
* @throws ApiError
|
|
6517
6528
|
*/
|
|
@@ -6520,7 +6531,7 @@ declare class HealthService {
|
|
|
6520
6531
|
* Check health of a specific data provider
|
|
6521
6532
|
* @param data The data for the request.
|
|
6522
6533
|
* @param data.dataSource Data source identifier
|
|
6523
|
-
* @param data.region Region code (cn, us,
|
|
6534
|
+
* @param data.region Region code (cn, us, de)
|
|
6524
6535
|
* @returns unknown Data provider is healthy
|
|
6525
6536
|
* @throws ApiError
|
|
6526
6537
|
*/
|
|
@@ -6567,4 +6578,4 @@ type OpenAPIConfig = {
|
|
|
6567
6578
|
};
|
|
6568
6579
|
declare const OpenAPI: OpenAPIConfig;
|
|
6569
6580
|
|
|
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 };
|
|
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 };
|