@firela/api-types 0.0.0-canary.8cbdced0 → 0.0.0-canary.9d0af796
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 +1091 -38
- package/dist/index.d.ts +1091 -38
- package/dist/index.js +71 -16
- package/dist/index.mjs +71 -16
- package/package.json +1 -1
- package/src/generated/schemas.gen.ts +1115 -56
- package/src/generated/services.gen.ts +314 -20
- package/src/generated/types.gen.ts +1112 -19
package/dist/index.d.mts
CHANGED
|
@@ -2689,6 +2689,92 @@ type UpdatePropertyDto = {
|
|
|
2689
2689
|
*/
|
|
2690
2690
|
value: string;
|
|
2691
2691
|
};
|
|
2692
|
+
type CreateBeanEventDto = {
|
|
2693
|
+
/**
|
|
2694
|
+
* Life event date (ISO 8601)
|
|
2695
|
+
*/
|
|
2696
|
+
date: string;
|
|
2697
|
+
/**
|
|
2698
|
+
* Life event type (e.g., "employer", "location", "marital-status") — user-defined, no enum constraint at engine layer
|
|
2699
|
+
*/
|
|
2700
|
+
type: string;
|
|
2701
|
+
/**
|
|
2702
|
+
* Life event description. Empty string is a VALID value (distinct from absence).
|
|
2703
|
+
*/
|
|
2704
|
+
description: string;
|
|
2705
|
+
/**
|
|
2706
|
+
* Product-side metadata (lives in BeanEvent.meta JSON, never in engine Event fields)
|
|
2707
|
+
*/
|
|
2708
|
+
meta?: {
|
|
2709
|
+
[key: string]: unknown;
|
|
2710
|
+
};
|
|
2711
|
+
};
|
|
2712
|
+
type EventResponseDto = {
|
|
2713
|
+
/**
|
|
2714
|
+
* Unique identifier
|
|
2715
|
+
*/
|
|
2716
|
+
id: string;
|
|
2717
|
+
/**
|
|
2718
|
+
* User ID (owner of the life event)
|
|
2719
|
+
*/
|
|
2720
|
+
userId: string;
|
|
2721
|
+
/**
|
|
2722
|
+
* Life event date (ISO 8601 format)
|
|
2723
|
+
*/
|
|
2724
|
+
date: string;
|
|
2725
|
+
/**
|
|
2726
|
+
* Life event type (user-defined, e.g., "employer", "location")
|
|
2727
|
+
*/
|
|
2728
|
+
type: string;
|
|
2729
|
+
/**
|
|
2730
|
+
* Life event description. May be an empty string (a valid value distinct from absence).
|
|
2731
|
+
*/
|
|
2732
|
+
description: string;
|
|
2733
|
+
/**
|
|
2734
|
+
* Product-side metadata (free-form JSON)
|
|
2735
|
+
*/
|
|
2736
|
+
meta: {
|
|
2737
|
+
[key: string]: unknown;
|
|
2738
|
+
};
|
|
2739
|
+
/**
|
|
2740
|
+
* Creation timestamp
|
|
2741
|
+
*/
|
|
2742
|
+
createdAt: string;
|
|
2743
|
+
/**
|
|
2744
|
+
* Last update timestamp. Also emitted as the ETag response header for If-Match optimistic concurrency.
|
|
2745
|
+
*/
|
|
2746
|
+
updatedAt: string;
|
|
2747
|
+
};
|
|
2748
|
+
type EventListResponseDto = {
|
|
2749
|
+
/**
|
|
2750
|
+
* List of life events
|
|
2751
|
+
*/
|
|
2752
|
+
items: Array<EventResponseDto>;
|
|
2753
|
+
/**
|
|
2754
|
+
* Total number of life events matching the query
|
|
2755
|
+
*/
|
|
2756
|
+
total: number;
|
|
2757
|
+
};
|
|
2758
|
+
type UpdateBeanEventDto = {
|
|
2759
|
+
/**
|
|
2760
|
+
* Life event date (ISO 8601)
|
|
2761
|
+
*/
|
|
2762
|
+
date?: string;
|
|
2763
|
+
/**
|
|
2764
|
+
* Life event type (user-defined)
|
|
2765
|
+
*/
|
|
2766
|
+
type?: string;
|
|
2767
|
+
/**
|
|
2768
|
+
* Life event description. Empty string is a VALID value (distinct from absence).
|
|
2769
|
+
*/
|
|
2770
|
+
description?: string;
|
|
2771
|
+
/**
|
|
2772
|
+
* Product-side metadata (free-form JSON)
|
|
2773
|
+
*/
|
|
2774
|
+
meta?: {
|
|
2775
|
+
[key: string]: unknown;
|
|
2776
|
+
};
|
|
2777
|
+
};
|
|
2692
2778
|
type FileImportDto = {
|
|
2693
2779
|
/**
|
|
2694
2780
|
* Bill file to import (CSV, PDF, OFX, etc.)
|
|
@@ -3037,6 +3123,32 @@ type ProviderSyncDto = {
|
|
|
3037
3123
|
*/
|
|
3038
3124
|
transactions: unknown[];
|
|
3039
3125
|
};
|
|
3126
|
+
type ProviderSyncResponseDto = {
|
|
3127
|
+
/**
|
|
3128
|
+
* Number of transactions successfully imported
|
|
3129
|
+
*/
|
|
3130
|
+
imported: number;
|
|
3131
|
+
/**
|
|
3132
|
+
* Number of transactions skipped (duplicates)
|
|
3133
|
+
*/
|
|
3134
|
+
skipped: number;
|
|
3135
|
+
/**
|
|
3136
|
+
* Number of transactions pending review
|
|
3137
|
+
*/
|
|
3138
|
+
pendingReview: number;
|
|
3139
|
+
/**
|
|
3140
|
+
* Number of transactions that failed to import
|
|
3141
|
+
*/
|
|
3142
|
+
failed: number;
|
|
3143
|
+
/**
|
|
3144
|
+
* IDs of successfully imported transactions
|
|
3145
|
+
*/
|
|
3146
|
+
importedTransactionIds?: Array<string>;
|
|
3147
|
+
/**
|
|
3148
|
+
* IDs of review items created for branched transactions
|
|
3149
|
+
*/
|
|
3150
|
+
reviewItemIds?: Array<string>;
|
|
3151
|
+
};
|
|
3040
3152
|
type SupportedProvidersResponseDto = {
|
|
3041
3153
|
/**
|
|
3042
3154
|
* List of supported provider names
|
|
@@ -3061,6 +3173,523 @@ type ProcessNlpDto = {
|
|
|
3061
3173
|
[key: string]: unknown;
|
|
3062
3174
|
};
|
|
3063
3175
|
};
|
|
3176
|
+
type NlpTransactionInfoDto = {
|
|
3177
|
+
/**
|
|
3178
|
+
* Transaction ID
|
|
3179
|
+
*/
|
|
3180
|
+
id: string;
|
|
3181
|
+
/**
|
|
3182
|
+
* Transaction date (ISO format)
|
|
3183
|
+
*/
|
|
3184
|
+
date: string;
|
|
3185
|
+
/**
|
|
3186
|
+
* Transaction amount
|
|
3187
|
+
*/
|
|
3188
|
+
amount: number;
|
|
3189
|
+
/**
|
|
3190
|
+
* Currency code
|
|
3191
|
+
*/
|
|
3192
|
+
currency: string;
|
|
3193
|
+
/**
|
|
3194
|
+
* Payee name
|
|
3195
|
+
*/
|
|
3196
|
+
payee?: string;
|
|
3197
|
+
/**
|
|
3198
|
+
* Transaction narration
|
|
3199
|
+
*/
|
|
3200
|
+
narration?: string;
|
|
3201
|
+
/**
|
|
3202
|
+
* Warning message for special transaction scenarios (e.g., cross-currency settlement)
|
|
3203
|
+
*/
|
|
3204
|
+
warning?: string;
|
|
3205
|
+
};
|
|
3206
|
+
type NlpParsedDataDto = {
|
|
3207
|
+
/**
|
|
3208
|
+
* Extracted amount
|
|
3209
|
+
*/
|
|
3210
|
+
amount?: number;
|
|
3211
|
+
/**
|
|
3212
|
+
* Currency code
|
|
3213
|
+
*/
|
|
3214
|
+
currency?: string;
|
|
3215
|
+
/**
|
|
3216
|
+
* Transaction date (ISO format)
|
|
3217
|
+
*/
|
|
3218
|
+
date?: string;
|
|
3219
|
+
/**
|
|
3220
|
+
* Payee name
|
|
3221
|
+
*/
|
|
3222
|
+
payee?: string;
|
|
3223
|
+
/**
|
|
3224
|
+
* Transaction narration
|
|
3225
|
+
*/
|
|
3226
|
+
narration?: string;
|
|
3227
|
+
/**
|
|
3228
|
+
* Category
|
|
3229
|
+
*/
|
|
3230
|
+
category?: string;
|
|
3231
|
+
/**
|
|
3232
|
+
* Income type (e.g., Salary, Bonus, Dividend, Interest)
|
|
3233
|
+
*/
|
|
3234
|
+
incomeType?: string;
|
|
3235
|
+
/**
|
|
3236
|
+
* Income source (e.g., company name)
|
|
3237
|
+
*/
|
|
3238
|
+
incomeSource?: string;
|
|
3239
|
+
/**
|
|
3240
|
+
* Security symbol code (e.g., 600519, AAPL)
|
|
3241
|
+
*/
|
|
3242
|
+
symbol?: string;
|
|
3243
|
+
/**
|
|
3244
|
+
* Quantity of shares/units
|
|
3245
|
+
*/
|
|
3246
|
+
quantity?: number;
|
|
3247
|
+
/**
|
|
3248
|
+
* Unit price per share/unit
|
|
3249
|
+
*/
|
|
3250
|
+
price?: number;
|
|
3251
|
+
/**
|
|
3252
|
+
* Investment action
|
|
3253
|
+
*/
|
|
3254
|
+
investmentAction?: 'buy' | 'sell';
|
|
3255
|
+
/**
|
|
3256
|
+
* Payment source: asset (default) or liability (credit card)
|
|
3257
|
+
*/
|
|
3258
|
+
paymentSource?: 'asset' | 'liability';
|
|
3259
|
+
/**
|
|
3260
|
+
* Liability account hint (CreditCard/Huabei/Baitiao)
|
|
3261
|
+
*/
|
|
3262
|
+
liabilityHint?: string;
|
|
3263
|
+
/**
|
|
3264
|
+
* Warning message for special scenarios (e.g., cross-currency settlement)
|
|
3265
|
+
*/
|
|
3266
|
+
warning?: string;
|
|
3267
|
+
};
|
|
3268
|
+
/**
|
|
3269
|
+
* Investment action
|
|
3270
|
+
*/
|
|
3271
|
+
type investmentAction = 'buy' | 'sell';
|
|
3272
|
+
/**
|
|
3273
|
+
* Payment source: asset (default) or liability (credit card)
|
|
3274
|
+
*/
|
|
3275
|
+
type paymentSource = 'asset' | 'liability';
|
|
3276
|
+
type NlpSourceTransactionDto = {
|
|
3277
|
+
/**
|
|
3278
|
+
* Transaction date (ISO format)
|
|
3279
|
+
*/
|
|
3280
|
+
date: string;
|
|
3281
|
+
/**
|
|
3282
|
+
* Amount as string
|
|
3283
|
+
*/
|
|
3284
|
+
amount: string;
|
|
3285
|
+
/**
|
|
3286
|
+
* Currency code
|
|
3287
|
+
*/
|
|
3288
|
+
currency: string;
|
|
3289
|
+
/**
|
|
3290
|
+
* Payee name
|
|
3291
|
+
*/
|
|
3292
|
+
payee?: string;
|
|
3293
|
+
/**
|
|
3294
|
+
* Transaction narration
|
|
3295
|
+
*/
|
|
3296
|
+
narration: string;
|
|
3297
|
+
};
|
|
3298
|
+
type NlpTargetTransactionDto = {
|
|
3299
|
+
/**
|
|
3300
|
+
* Existing transaction ID
|
|
3301
|
+
*/
|
|
3302
|
+
id: string;
|
|
3303
|
+
/**
|
|
3304
|
+
* Transaction date (ISO format)
|
|
3305
|
+
*/
|
|
3306
|
+
date: string;
|
|
3307
|
+
/**
|
|
3308
|
+
* Amount as string
|
|
3309
|
+
*/
|
|
3310
|
+
amount: string;
|
|
3311
|
+
/**
|
|
3312
|
+
* Currency code
|
|
3313
|
+
*/
|
|
3314
|
+
currency: string;
|
|
3315
|
+
/**
|
|
3316
|
+
* Payee name
|
|
3317
|
+
*/
|
|
3318
|
+
payee?: string;
|
|
3319
|
+
/**
|
|
3320
|
+
* Transaction narration
|
|
3321
|
+
*/
|
|
3322
|
+
narration: string;
|
|
3323
|
+
};
|
|
3324
|
+
type NlpSimilarityDto = {
|
|
3325
|
+
/**
|
|
3326
|
+
* Whether dates match
|
|
3327
|
+
*/
|
|
3328
|
+
dateMatch: boolean;
|
|
3329
|
+
/**
|
|
3330
|
+
* Date difference in days
|
|
3331
|
+
*/
|
|
3332
|
+
dateDiff: number;
|
|
3333
|
+
/**
|
|
3334
|
+
* Whether amounts match
|
|
3335
|
+
*/
|
|
3336
|
+
amountMatch: boolean;
|
|
3337
|
+
/**
|
|
3338
|
+
* Amount difference as decimal string
|
|
3339
|
+
*/
|
|
3340
|
+
amountDiff: string;
|
|
3341
|
+
/**
|
|
3342
|
+
* Whether payees match
|
|
3343
|
+
*/
|
|
3344
|
+
payeeMatch: boolean;
|
|
3345
|
+
/**
|
|
3346
|
+
* Payee similarity score (0-1)
|
|
3347
|
+
*/
|
|
3348
|
+
payeeSimilarity: number;
|
|
3349
|
+
/**
|
|
3350
|
+
* Account overlap score (0-1)
|
|
3351
|
+
*/
|
|
3352
|
+
accountOverlap: number;
|
|
3353
|
+
};
|
|
3354
|
+
type NlpDuplicateConfirmationDataDto = {
|
|
3355
|
+
/**
|
|
3356
|
+
* Duplicate detection confidence score (0.5-0.89)
|
|
3357
|
+
*/
|
|
3358
|
+
confidence: number;
|
|
3359
|
+
/**
|
|
3360
|
+
* Source transaction summary (the new transaction being entered)
|
|
3361
|
+
*/
|
|
3362
|
+
sourceTransaction: NlpSourceTransactionDto;
|
|
3363
|
+
/**
|
|
3364
|
+
* Target transaction summary (existing potential duplicate)
|
|
3365
|
+
*/
|
|
3366
|
+
targetTransaction: NlpTargetTransactionDto;
|
|
3367
|
+
/**
|
|
3368
|
+
* Detailed similarity information
|
|
3369
|
+
*/
|
|
3370
|
+
similarity: NlpSimilarityDto;
|
|
3371
|
+
/**
|
|
3372
|
+
* Human-readable reasons for duplicate detection
|
|
3373
|
+
*/
|
|
3374
|
+
reasons: Array<string>;
|
|
3375
|
+
};
|
|
3376
|
+
type NlpRuleConfirmationDataDto = {
|
|
3377
|
+
/**
|
|
3378
|
+
* Rule match confidence score (0.5-0.74)
|
|
3379
|
+
*/
|
|
3380
|
+
confidence: number;
|
|
3381
|
+
/**
|
|
3382
|
+
* Matched rule information
|
|
3383
|
+
*/
|
|
3384
|
+
matchedRule: {
|
|
3385
|
+
[key: string]: unknown;
|
|
3386
|
+
};
|
|
3387
|
+
/**
|
|
3388
|
+
* Suggested accounts from the rule
|
|
3389
|
+
*/
|
|
3390
|
+
suggestedAccounts: {
|
|
3391
|
+
[key: string]: unknown;
|
|
3392
|
+
};
|
|
3393
|
+
/**
|
|
3394
|
+
* Alternative rules that also match
|
|
3395
|
+
*/
|
|
3396
|
+
alternatives: unknown[];
|
|
3397
|
+
/**
|
|
3398
|
+
* Human-readable reasons for the match
|
|
3399
|
+
*/
|
|
3400
|
+
reasons: Array<string>;
|
|
3401
|
+
};
|
|
3402
|
+
type NlpAccountConfirmationDataDto = {
|
|
3403
|
+
/**
|
|
3404
|
+
* The invalid account name
|
|
3405
|
+
*/
|
|
3406
|
+
invalidAccount: string;
|
|
3407
|
+
/**
|
|
3408
|
+
* Suggested replacement account
|
|
3409
|
+
*/
|
|
3410
|
+
suggestedAccount: string;
|
|
3411
|
+
/**
|
|
3412
|
+
* Similar accounts for user selection
|
|
3413
|
+
*/
|
|
3414
|
+
similarAccounts: Array<string>;
|
|
3415
|
+
/**
|
|
3416
|
+
* Error message explaining the issue
|
|
3417
|
+
*/
|
|
3418
|
+
errorMessage: string;
|
|
3419
|
+
/**
|
|
3420
|
+
* Transaction context for reference
|
|
3421
|
+
*/
|
|
3422
|
+
transactionContext: {
|
|
3423
|
+
[key: string]: unknown;
|
|
3424
|
+
};
|
|
3425
|
+
};
|
|
3426
|
+
type NlpSuggestedPayeeDto = {
|
|
3427
|
+
/**
|
|
3428
|
+
* Payee ID
|
|
3429
|
+
*/
|
|
3430
|
+
id: string;
|
|
3431
|
+
/**
|
|
3432
|
+
* Payee name
|
|
3433
|
+
*/
|
|
3434
|
+
name: string;
|
|
3435
|
+
/**
|
|
3436
|
+
* Payee category
|
|
3437
|
+
*/
|
|
3438
|
+
category?: string;
|
|
3439
|
+
/**
|
|
3440
|
+
* Source of the payee
|
|
3441
|
+
*/
|
|
3442
|
+
source?: 'user' | 'global';
|
|
3443
|
+
/**
|
|
3444
|
+
* PayeeProfile ID (if matched from global)
|
|
3445
|
+
*/
|
|
3446
|
+
payeeProfileId?: string;
|
|
3447
|
+
};
|
|
3448
|
+
/**
|
|
3449
|
+
* Source of the payee
|
|
3450
|
+
*/
|
|
3451
|
+
type source = 'user' | 'global';
|
|
3452
|
+
type NlpAlternativePayeeDto = {
|
|
3453
|
+
/**
|
|
3454
|
+
* Payee ID
|
|
3455
|
+
*/
|
|
3456
|
+
id: string;
|
|
3457
|
+
/**
|
|
3458
|
+
* Payee name
|
|
3459
|
+
*/
|
|
3460
|
+
name: string;
|
|
3461
|
+
/**
|
|
3462
|
+
* Similarity score (0-1)
|
|
3463
|
+
*/
|
|
3464
|
+
similarity: number;
|
|
3465
|
+
};
|
|
3466
|
+
type NlpPayeeConfirmationDataDto = {
|
|
3467
|
+
/**
|
|
3468
|
+
* Confidence score for the payee match (0-1)
|
|
3469
|
+
*/
|
|
3470
|
+
confidence: number;
|
|
3471
|
+
/**
|
|
3472
|
+
* Original payee string from user input
|
|
3473
|
+
*/
|
|
3474
|
+
originalPayee: string;
|
|
3475
|
+
/**
|
|
3476
|
+
* Suggested payee to use (null when no similar payees found)
|
|
3477
|
+
*/
|
|
3478
|
+
suggestedPayee?: NlpSuggestedPayeeDto | null;
|
|
3479
|
+
/**
|
|
3480
|
+
* Similarity score between original and suggested (0-1)
|
|
3481
|
+
*/
|
|
3482
|
+
similarity: number;
|
|
3483
|
+
/**
|
|
3484
|
+
* Alternative payee options
|
|
3485
|
+
*/
|
|
3486
|
+
alternatives: Array<NlpAlternativePayeeDto>;
|
|
3487
|
+
/**
|
|
3488
|
+
* Human-readable reasons for the match
|
|
3489
|
+
*/
|
|
3490
|
+
reasons: Array<string>;
|
|
3491
|
+
};
|
|
3492
|
+
type RecurringMatchInfoDto = {
|
|
3493
|
+
/**
|
|
3494
|
+
* Expected transaction ID
|
|
3495
|
+
*/
|
|
3496
|
+
expectedId: string;
|
|
3497
|
+
/**
|
|
3498
|
+
* Recurring rule ID
|
|
3499
|
+
*/
|
|
3500
|
+
ruleId: string;
|
|
3501
|
+
/**
|
|
3502
|
+
* Rule name for display
|
|
3503
|
+
*/
|
|
3504
|
+
ruleName: string;
|
|
3505
|
+
/**
|
|
3506
|
+
* Rule icon
|
|
3507
|
+
*/
|
|
3508
|
+
ruleIcon?: string;
|
|
3509
|
+
/**
|
|
3510
|
+
* Expected date (YYYY-MM-DD)
|
|
3511
|
+
*/
|
|
3512
|
+
expectedDate: string;
|
|
3513
|
+
/**
|
|
3514
|
+
* Expected amount
|
|
3515
|
+
*/
|
|
3516
|
+
expectedAmount: number;
|
|
3517
|
+
/**
|
|
3518
|
+
* Match confidence score (0-1)
|
|
3519
|
+
*/
|
|
3520
|
+
confidence: number;
|
|
3521
|
+
/**
|
|
3522
|
+
* Whether auto-matched (confidence >= 0.82)
|
|
3523
|
+
*/
|
|
3524
|
+
isAutoMatched: boolean;
|
|
3525
|
+
};
|
|
3526
|
+
type NlpSuggestedAccountDto = {
|
|
3527
|
+
/**
|
|
3528
|
+
* Suggested account path
|
|
3529
|
+
*/
|
|
3530
|
+
account: string;
|
|
3531
|
+
/**
|
|
3532
|
+
* Confidence score for this suggestion (0-1)
|
|
3533
|
+
*/
|
|
3534
|
+
confidence?: number;
|
|
3535
|
+
};
|
|
3536
|
+
type NlpSuggestedAccountsDto = {
|
|
3537
|
+
/**
|
|
3538
|
+
* Source account suggestion (where money comes from). For expense: asset/liability account. For income: income account.
|
|
3539
|
+
*/
|
|
3540
|
+
source?: NlpSuggestedAccountDto;
|
|
3541
|
+
/**
|
|
3542
|
+
* Destination account suggestion (where money goes to). For expense: expense account. For income: asset/liability account.
|
|
3543
|
+
*/
|
|
3544
|
+
destination?: NlpSuggestedAccountDto;
|
|
3545
|
+
};
|
|
3546
|
+
type NlpDefaultAccountsDto = {
|
|
3547
|
+
/**
|
|
3548
|
+
* Default asset account
|
|
3549
|
+
*/
|
|
3550
|
+
asset: string;
|
|
3551
|
+
/**
|
|
3552
|
+
* Default expense account
|
|
3553
|
+
*/
|
|
3554
|
+
expense: string;
|
|
3555
|
+
/**
|
|
3556
|
+
* Default income account
|
|
3557
|
+
*/
|
|
3558
|
+
income: string;
|
|
3559
|
+
/**
|
|
3560
|
+
* Default liability account
|
|
3561
|
+
*/
|
|
3562
|
+
liability: string;
|
|
3563
|
+
};
|
|
3564
|
+
type NlpResponseDto = {
|
|
3565
|
+
/**
|
|
3566
|
+
* Response status
|
|
3567
|
+
*/
|
|
3568
|
+
status: 'success' | 'pending' | 'error';
|
|
3569
|
+
/**
|
|
3570
|
+
* Action taken or requested
|
|
3571
|
+
*/
|
|
3572
|
+
action: 'created' | 'ask' | 'confirm' | 'confirm_duplicate' | 'confirm_rule' | 'confirm_account' | 'confirm_payee' | 'cancel';
|
|
3573
|
+
/**
|
|
3574
|
+
* Transaction intent detected by EntityRouter (v6.0: 5 core intents). Frontend uses this to render scenario-specific form fields.
|
|
3575
|
+
*/
|
|
3576
|
+
intent?: 'expense' | 'asset' | 'income' | 'liability' | 'equity';
|
|
3577
|
+
/**
|
|
3578
|
+
* Asset sub-type (only present when intent is "asset"). Determines which asset-related form to render.
|
|
3579
|
+
*/
|
|
3580
|
+
assetSubType?: 'transfer' | 'banking' | 'investment';
|
|
3581
|
+
/**
|
|
3582
|
+
* Liability sub-type (only present when intent is "liability"). borrow: borrowing money (Liabilities → Assets), repay: repaying debt (Assets → Liabilities).
|
|
3583
|
+
*/
|
|
3584
|
+
liabilitySubType?: 'borrow' | 'repay';
|
|
3585
|
+
/**
|
|
3586
|
+
* Equity sub-type (only present when intent is "equity"). opening: account opening balance (Equity → Assets), adjustment: balance correction.
|
|
3587
|
+
*/
|
|
3588
|
+
equitySubType?: 'opening' | 'adjustment';
|
|
3589
|
+
/**
|
|
3590
|
+
* Payment source for expense transactions (v6.1). Indicates whether payment comes from asset or liability account. Only present when intent is "expense".
|
|
3591
|
+
*/
|
|
3592
|
+
paymentSource?: 'asset' | 'liability';
|
|
3593
|
+
/**
|
|
3594
|
+
* Liability account type hint for credit card/BNPL spending (v6.1). Only present when paymentSource is "liability". Values: CreditCard, Huabei, Baitiao
|
|
3595
|
+
*/
|
|
3596
|
+
liabilityHint?: string;
|
|
3597
|
+
/**
|
|
3598
|
+
* Human-readable message (for ask or error actions). Deprecated: Use messageKey for i18n support.
|
|
3599
|
+
* @deprecated
|
|
3600
|
+
*/
|
|
3601
|
+
message?: string;
|
|
3602
|
+
/**
|
|
3603
|
+
* i18n message key for frontend translation. Use this instead of message for internationalization support.
|
|
3604
|
+
*/
|
|
3605
|
+
messageKey?: string;
|
|
3606
|
+
/**
|
|
3607
|
+
* Parameters for message interpolation. Used with messageKey for dynamic values in translated messages.
|
|
3608
|
+
*/
|
|
3609
|
+
messageParams?: {
|
|
3610
|
+
[key: string]: unknown;
|
|
3611
|
+
};
|
|
3612
|
+
/**
|
|
3613
|
+
* Session ID for multi-turn dialogue. Must be included in subsequent requests to continue the conversation.
|
|
3614
|
+
*/
|
|
3615
|
+
sessionId?: string;
|
|
3616
|
+
/**
|
|
3617
|
+
* Which slot is waiting for user input
|
|
3618
|
+
*/
|
|
3619
|
+
waitingFor?: string;
|
|
3620
|
+
/**
|
|
3621
|
+
* Created transaction info (for created action)
|
|
3622
|
+
*/
|
|
3623
|
+
transaction?: NlpTransactionInfoDto;
|
|
3624
|
+
/**
|
|
3625
|
+
* Parsed data for confirmation (when action is "confirm"). Contains extracted fields that user should verify before transaction creation.
|
|
3626
|
+
*/
|
|
3627
|
+
parsedData?: NlpParsedDataDto;
|
|
3628
|
+
/**
|
|
3629
|
+
* Duplicate detection data (when action is "confirm_duplicate"). Contains information about potential duplicate transaction for user confirmation.
|
|
3630
|
+
*/
|
|
3631
|
+
duplicateData?: NlpDuplicateConfirmationDataDto;
|
|
3632
|
+
/**
|
|
3633
|
+
* Rule match data (when action is "confirm_rule"). Contains information about medium-confidence rule match for user confirmation.
|
|
3634
|
+
*/
|
|
3635
|
+
ruleData?: NlpRuleConfirmationDataDto;
|
|
3636
|
+
/**
|
|
3637
|
+
* Account validation data (when action is "confirm_account"). Contains information about invalid account for user correction.
|
|
3638
|
+
*/
|
|
3639
|
+
accountData?: NlpAccountConfirmationDataDto;
|
|
3640
|
+
/**
|
|
3641
|
+
* Payee confirmation data (when action is "confirm_payee"). Contains information about medium/low confidence payee match for user confirmation.
|
|
3642
|
+
*/
|
|
3643
|
+
payeeData?: NlpPayeeConfirmationDataDto;
|
|
3644
|
+
/**
|
|
3645
|
+
* Overall confidence score (0-1)
|
|
3646
|
+
*/
|
|
3647
|
+
confidence?: number;
|
|
3648
|
+
/**
|
|
3649
|
+
* Confidence threshold for automatic creation (default: 0.75). When confidence < threshold, action will be "confirm" requiring user verification.
|
|
3650
|
+
*/
|
|
3651
|
+
confidenceThreshold?: number;
|
|
3652
|
+
/**
|
|
3653
|
+
* Recurring transaction match info (when action is "created"). Contains match details when transaction matches a pending expected transaction.
|
|
3654
|
+
*/
|
|
3655
|
+
recurringMatch?: RecurringMatchInfoDto;
|
|
3656
|
+
/**
|
|
3657
|
+
* Recurring rule creation suggestion (when action is "created"). Contains suggestion to create a recurring rule based on detected patterns. Only present when no existing rule matched and similar historical transactions were found.
|
|
3658
|
+
*/
|
|
3659
|
+
recurringSuggestion?: RecurringSuggestionDto;
|
|
3660
|
+
/**
|
|
3661
|
+
* Suggested accounts for this transaction. Contains recommended source and destination accounts based on the detected intent and rules.
|
|
3662
|
+
*/
|
|
3663
|
+
suggestedAccounts?: NlpSuggestedAccountsDto;
|
|
3664
|
+
/**
|
|
3665
|
+
* Default accounts for the user/region. These are fallback accounts used when no specific suggestion is available.
|
|
3666
|
+
*/
|
|
3667
|
+
defaultAccounts?: NlpDefaultAccountsDto;
|
|
3668
|
+
};
|
|
3669
|
+
/**
|
|
3670
|
+
* Response status
|
|
3671
|
+
*/
|
|
3672
|
+
type status4 = 'success' | 'pending' | 'error';
|
|
3673
|
+
/**
|
|
3674
|
+
* Action taken or requested
|
|
3675
|
+
*/
|
|
3676
|
+
type action2 = 'created' | 'ask' | 'confirm' | 'confirm_duplicate' | 'confirm_rule' | 'confirm_account' | 'confirm_payee' | 'cancel';
|
|
3677
|
+
/**
|
|
3678
|
+
* Transaction intent detected by EntityRouter (v6.0: 5 core intents). Frontend uses this to render scenario-specific form fields.
|
|
3679
|
+
*/
|
|
3680
|
+
type intent = 'expense' | 'asset' | 'income' | 'liability' | 'equity';
|
|
3681
|
+
/**
|
|
3682
|
+
* Asset sub-type (only present when intent is "asset"). Determines which asset-related form to render.
|
|
3683
|
+
*/
|
|
3684
|
+
type assetSubType = 'transfer' | 'banking' | 'investment';
|
|
3685
|
+
/**
|
|
3686
|
+
* Liability sub-type (only present when intent is "liability"). borrow: borrowing money (Liabilities → Assets), repay: repaying debt (Assets → Liabilities).
|
|
3687
|
+
*/
|
|
3688
|
+
type liabilitySubType = 'borrow' | 'repay';
|
|
3689
|
+
/**
|
|
3690
|
+
* Equity sub-type (only present when intent is "equity"). opening: account opening balance (Equity → Assets), adjustment: balance correction.
|
|
3691
|
+
*/
|
|
3692
|
+
type equitySubType = 'opening' | 'adjustment';
|
|
3064
3693
|
type BalanceByCurrencyDto = {
|
|
3065
3694
|
/**
|
|
3066
3695
|
* ISO 4217 currency code
|
|
@@ -3270,7 +3899,7 @@ type AccountItemWithAssetClassDto = {
|
|
|
3270
3899
|
/**
|
|
3271
3900
|
* ADR-0105 classification provenance (holding level always; account level only on FALLBACK)
|
|
3272
3901
|
*/
|
|
3273
|
-
type
|
|
3902
|
+
type source2 = 'USER_META' | 'FIAT_CURRENCY' | 'OPENBB_MAPPING' | 'FALLBACK';
|
|
3274
3903
|
type AssetClassGroupDto = {
|
|
3275
3904
|
/**
|
|
3276
3905
|
* Asset class name
|
|
@@ -3510,7 +4139,7 @@ type CurrentPriceDto = {
|
|
|
3510
4139
|
/**
|
|
3511
4140
|
* Price source
|
|
3512
4141
|
*/
|
|
3513
|
-
type
|
|
4142
|
+
type source3 = 'USER_OVERRIDE' | 'OPENBB_EQUITY' | 'OPENBB_CURRENCY';
|
|
3514
4143
|
type FxRateDto = {
|
|
3515
4144
|
from: string;
|
|
3516
4145
|
to: string;
|
|
@@ -3808,13 +4437,79 @@ type PortfolioTrendsResponseDto = {
|
|
|
3808
4437
|
/**
|
|
3809
4438
|
* Period summary
|
|
3810
4439
|
*/
|
|
3811
|
-
summary: TrendSummaryDto;
|
|
4440
|
+
summary: TrendSummaryDto;
|
|
4441
|
+
/**
|
|
4442
|
+
* Period requested
|
|
4443
|
+
*/
|
|
4444
|
+
period: string;
|
|
4445
|
+
/**
|
|
4446
|
+
* Data granularity
|
|
4447
|
+
*/
|
|
4448
|
+
granularity: string;
|
|
4449
|
+
/**
|
|
4450
|
+
* Base currency for converted values
|
|
4451
|
+
*/
|
|
4452
|
+
currency: string;
|
|
4453
|
+
/**
|
|
4454
|
+
* Multi-currency time series (each point has currency breakdown)
|
|
4455
|
+
*/
|
|
4456
|
+
byCurrency?: Array<MultiCurrencyPointDto>;
|
|
4457
|
+
/**
|
|
4458
|
+
* Exchange rate warnings
|
|
4459
|
+
*/
|
|
4460
|
+
warnings?: Array<ExchangeRateWarningDto>;
|
|
4461
|
+
};
|
|
4462
|
+
type CashFlowPointDto = {
|
|
4463
|
+
/**
|
|
4464
|
+
* Month key (YYYY-MM)
|
|
4465
|
+
*/
|
|
4466
|
+
month: string;
|
|
4467
|
+
/**
|
|
4468
|
+
* Income in base currency (absolute, converted)
|
|
4469
|
+
*/
|
|
4470
|
+
income: string;
|
|
4471
|
+
/**
|
|
4472
|
+
* Expense in base currency (absolute, converted)
|
|
4473
|
+
*/
|
|
4474
|
+
expense: string;
|
|
4475
|
+
/**
|
|
4476
|
+
* netSavings = income − expense (savings positive)
|
|
4477
|
+
*/
|
|
4478
|
+
netSavings: string;
|
|
4479
|
+
};
|
|
4480
|
+
type CashFlowTrendSummaryDto = {
|
|
4481
|
+
/**
|
|
4482
|
+
* Total income across the period
|
|
4483
|
+
*/
|
|
4484
|
+
totalIncome: string;
|
|
4485
|
+
/**
|
|
4486
|
+
* Total expense across the period
|
|
4487
|
+
*/
|
|
4488
|
+
totalExpense: string;
|
|
4489
|
+
/**
|
|
4490
|
+
* income − expense across the period
|
|
4491
|
+
*/
|
|
4492
|
+
totalNetSavings: string;
|
|
4493
|
+
/**
|
|
4494
|
+
* totalNetSavings divided by the window length (N months, incl. zero-filled)
|
|
4495
|
+
*/
|
|
4496
|
+
averageMonthlyNetSavings: string;
|
|
4497
|
+
};
|
|
4498
|
+
type CashFlowTrendsResponseDto = {
|
|
4499
|
+
/**
|
|
4500
|
+
* Monthly cash-flow series (fixed N-month window, zero-filled)
|
|
4501
|
+
*/
|
|
4502
|
+
series: Array<CashFlowPointDto>;
|
|
4503
|
+
/**
|
|
4504
|
+
* Period totals
|
|
4505
|
+
*/
|
|
4506
|
+
summary: CashFlowTrendSummaryDto;
|
|
3812
4507
|
/**
|
|
3813
4508
|
* Period requested
|
|
3814
4509
|
*/
|
|
3815
4510
|
period: string;
|
|
3816
4511
|
/**
|
|
3817
|
-
* Data granularity
|
|
4512
|
+
* Data granularity (v1 returns month buckets)
|
|
3818
4513
|
*/
|
|
3819
4514
|
granularity: string;
|
|
3820
4515
|
/**
|
|
@@ -3822,11 +4517,7 @@ type PortfolioTrendsResponseDto = {
|
|
|
3822
4517
|
*/
|
|
3823
4518
|
currency: string;
|
|
3824
4519
|
/**
|
|
3825
|
-
*
|
|
3826
|
-
*/
|
|
3827
|
-
byCurrency?: Array<MultiCurrencyPointDto>;
|
|
3828
|
-
/**
|
|
3829
|
-
* Exchange rate warnings
|
|
4520
|
+
* Exchange rate warnings (e.g. missing rate for a currency)
|
|
3830
4521
|
*/
|
|
3831
4522
|
warnings?: Array<ExchangeRateWarningDto>;
|
|
3832
4523
|
};
|
|
@@ -3847,7 +4538,7 @@ type AccountControllerCreateData = {
|
|
|
3847
4538
|
region: 'cn' | 'us' | 'de' | 'gb';
|
|
3848
4539
|
requestBody: CreateAccountDto;
|
|
3849
4540
|
};
|
|
3850
|
-
type AccountControllerCreateResponse =
|
|
4541
|
+
type AccountControllerCreateResponse = AccountResponseDto;
|
|
3851
4542
|
type AccountControllerFindAllData = {
|
|
3852
4543
|
/**
|
|
3853
4544
|
* Filter by custom (user-created) accounts only
|
|
@@ -3891,6 +4582,9 @@ type AccountControllerFindOneData = {
|
|
|
3891
4582
|
};
|
|
3892
4583
|
type AccountControllerFindOneResponse = AccountResponseDto;
|
|
3893
4584
|
type AccountControllerUpdateData = {
|
|
4585
|
+
/**
|
|
4586
|
+
* Account UUID
|
|
4587
|
+
*/
|
|
3894
4588
|
id: string;
|
|
3895
4589
|
/**
|
|
3896
4590
|
* Region code for tenant context
|
|
@@ -3898,16 +4592,22 @@ type AccountControllerUpdateData = {
|
|
|
3898
4592
|
region: 'cn' | 'us' | 'de' | 'gb';
|
|
3899
4593
|
requestBody: UpdateAccountDto;
|
|
3900
4594
|
};
|
|
3901
|
-
type AccountControllerUpdateResponse =
|
|
4595
|
+
type AccountControllerUpdateResponse = AccountResponseDto;
|
|
3902
4596
|
type AccountControllerDeleteData = {
|
|
4597
|
+
/**
|
|
4598
|
+
* Account UUID
|
|
4599
|
+
*/
|
|
3903
4600
|
id: string;
|
|
3904
4601
|
/**
|
|
3905
4602
|
* Region code for tenant context
|
|
3906
4603
|
*/
|
|
3907
4604
|
region: 'cn' | 'us' | 'de' | 'gb';
|
|
3908
4605
|
};
|
|
3909
|
-
type AccountControllerDeleteResponse =
|
|
4606
|
+
type AccountControllerDeleteResponse = void;
|
|
3910
4607
|
type AccountControllerCloseData = {
|
|
4608
|
+
/**
|
|
4609
|
+
* Account UUID
|
|
4610
|
+
*/
|
|
3911
4611
|
id: string;
|
|
3912
4612
|
/**
|
|
3913
4613
|
* Region code for tenant context
|
|
@@ -3915,8 +4615,11 @@ type AccountControllerCloseData = {
|
|
|
3915
4615
|
region: 'cn' | 'us' | 'de' | 'gb';
|
|
3916
4616
|
requestBody: CloseAccountDto;
|
|
3917
4617
|
};
|
|
3918
|
-
type AccountControllerCloseResponse =
|
|
4618
|
+
type AccountControllerCloseResponse = AccountResponseDto;
|
|
3919
4619
|
type AccountControllerReopenData = {
|
|
4620
|
+
/**
|
|
4621
|
+
* Account UUID
|
|
4622
|
+
*/
|
|
3920
4623
|
id: string;
|
|
3921
4624
|
/**
|
|
3922
4625
|
* Region code for tenant context
|
|
@@ -3924,7 +4627,7 @@ type AccountControllerReopenData = {
|
|
|
3924
4627
|
region: 'cn' | 'us' | 'de' | 'gb';
|
|
3925
4628
|
requestBody: ReopenAccountDto;
|
|
3926
4629
|
};
|
|
3927
|
-
type AccountControllerReopenResponse =
|
|
4630
|
+
type AccountControllerReopenResponse = AccountResponseDto;
|
|
3928
4631
|
type AccountStandardsControllerGetTemplatesData = {
|
|
3929
4632
|
/**
|
|
3930
4633
|
* Region code (cn, us, de)
|
|
@@ -4771,6 +5474,92 @@ type PropertyControllerDeleteData = {
|
|
|
4771
5474
|
key: string;
|
|
4772
5475
|
};
|
|
4773
5476
|
type PropertyControllerDeleteResponse = void;
|
|
5477
|
+
type EventControllerCreateData = {
|
|
5478
|
+
/**
|
|
5479
|
+
* Region code for tenant context (decorative for life events)
|
|
5480
|
+
*/
|
|
5481
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
5482
|
+
requestBody: CreateBeanEventDto;
|
|
5483
|
+
};
|
|
5484
|
+
type EventControllerCreateResponse = EventResponseDto;
|
|
5485
|
+
type EventControllerFindAllData = {
|
|
5486
|
+
/**
|
|
5487
|
+
* Filter life events from this date (ISO 8601 format)
|
|
5488
|
+
*/
|
|
5489
|
+
from?: string;
|
|
5490
|
+
/**
|
|
5491
|
+
* Number of items per page (default: 20, max: 100)
|
|
5492
|
+
*/
|
|
5493
|
+
limit?: number;
|
|
5494
|
+
/**
|
|
5495
|
+
* Page number for pagination (default: 1)
|
|
5496
|
+
*/
|
|
5497
|
+
page?: number;
|
|
5498
|
+
/**
|
|
5499
|
+
* Search term for description (case-insensitive partial match)
|
|
5500
|
+
*/
|
|
5501
|
+
q?: string;
|
|
5502
|
+
/**
|
|
5503
|
+
* Region code for tenant context (decorative for life events)
|
|
5504
|
+
*/
|
|
5505
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
5506
|
+
/**
|
|
5507
|
+
* Filter life events to this date (ISO 8601 format)
|
|
5508
|
+
*/
|
|
5509
|
+
to?: string;
|
|
5510
|
+
/**
|
|
5511
|
+
* Filter by life event type (exact match)
|
|
5512
|
+
*/
|
|
5513
|
+
type?: string;
|
|
5514
|
+
};
|
|
5515
|
+
type EventControllerFindAllResponse = EventListResponseDto;
|
|
5516
|
+
type EventControllerFindOneData = {
|
|
5517
|
+
/**
|
|
5518
|
+
* Life event ID
|
|
5519
|
+
*/
|
|
5520
|
+
id: string;
|
|
5521
|
+
/**
|
|
5522
|
+
* Region code for tenant context (decorative for life events)
|
|
5523
|
+
*/
|
|
5524
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
5525
|
+
};
|
|
5526
|
+
type EventControllerFindOneResponse = EventResponseDto;
|
|
5527
|
+
type EventControllerUpdateData = {
|
|
5528
|
+
/**
|
|
5529
|
+
* Life event ID
|
|
5530
|
+
*/
|
|
5531
|
+
id: string;
|
|
5532
|
+
/**
|
|
5533
|
+
* Region code for tenant context (decorative for life events)
|
|
5534
|
+
*/
|
|
5535
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
5536
|
+
requestBody: UpdateBeanEventDto;
|
|
5537
|
+
};
|
|
5538
|
+
type EventControllerUpdateResponse = EventResponseDto;
|
|
5539
|
+
type EventControllerDeleteData = {
|
|
5540
|
+
/**
|
|
5541
|
+
* Life event ID
|
|
5542
|
+
*/
|
|
5543
|
+
id: string;
|
|
5544
|
+
/**
|
|
5545
|
+
* Region code for tenant context (decorative for life events)
|
|
5546
|
+
*/
|
|
5547
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
5548
|
+
};
|
|
5549
|
+
type EventControllerDeleteResponse = void;
|
|
5550
|
+
type EventControllerGetSliceData = {
|
|
5551
|
+
accountPattern: string;
|
|
5552
|
+
granularity: string;
|
|
5553
|
+
/**
|
|
5554
|
+
* Life event ID
|
|
5555
|
+
*/
|
|
5556
|
+
id: string;
|
|
5557
|
+
/**
|
|
5558
|
+
* Region code for tenant context (decorative for life events)
|
|
5559
|
+
*/
|
|
5560
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
5561
|
+
};
|
|
5562
|
+
type EventControllerGetSliceResponse = unknown;
|
|
4774
5563
|
type ExportControllerExportBeancountResponse = unknown;
|
|
4775
5564
|
type FileImportControllerImportFileData = {
|
|
4776
5565
|
/**
|
|
@@ -4795,12 +5584,24 @@ type FileImportControllerIdentifyFileData = {
|
|
|
4795
5584
|
};
|
|
4796
5585
|
type FileImportControllerIdentifyFileResponse = IdentifyResultDto;
|
|
4797
5586
|
type FileImportControllerImportBeancountData = {
|
|
5587
|
+
/**
|
|
5588
|
+
* Beancount file to import
|
|
5589
|
+
*/
|
|
5590
|
+
formData: FileImportDto;
|
|
4798
5591
|
/**
|
|
4799
5592
|
* Region code for tenant context
|
|
4800
5593
|
*/
|
|
4801
5594
|
region: 'cn' | 'us' | 'de' | 'gb';
|
|
4802
5595
|
};
|
|
4803
|
-
type FileImportControllerImportBeancountResponse =
|
|
5596
|
+
type FileImportControllerImportBeancountResponse = {
|
|
5597
|
+
imported?: number;
|
|
5598
|
+
skipped?: number;
|
|
5599
|
+
failed?: number;
|
|
5600
|
+
accountsCreated?: number;
|
|
5601
|
+
errors?: Array<{
|
|
5602
|
+
[key: string]: unknown;
|
|
5603
|
+
}>;
|
|
5604
|
+
};
|
|
4804
5605
|
type ImporterConfigControllerGetConfigData = {
|
|
4805
5606
|
/**
|
|
4806
5607
|
* 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
|
|
@@ -4871,14 +5672,17 @@ type PlatformControllerDeleteData = {
|
|
|
4871
5672
|
};
|
|
4872
5673
|
type PlatformControllerDeleteResponse = void;
|
|
4873
5674
|
type ProviderSyncControllerSyncData = {
|
|
4874
|
-
|
|
5675
|
+
/**
|
|
5676
|
+
* Provider name
|
|
5677
|
+
*/
|
|
5678
|
+
providerName: 'plaid' | 'teller' | 'truelayer' | 'gocardless' | 'simplefin' | 'yodlee' | 'beancount-direct' | 'parsed-bill';
|
|
4875
5679
|
/**
|
|
4876
5680
|
* Region code for tenant context
|
|
4877
5681
|
*/
|
|
4878
5682
|
region: 'cn' | 'us' | 'de' | 'gb';
|
|
4879
5683
|
requestBody: ProviderSyncDto;
|
|
4880
5684
|
};
|
|
4881
|
-
type ProviderSyncControllerSyncResponse =
|
|
5685
|
+
type ProviderSyncControllerSyncResponse = ProviderSyncResponseDto;
|
|
4882
5686
|
type ProviderSyncControllerGetSupportedProvidersData = {
|
|
4883
5687
|
/**
|
|
4884
5688
|
* Region code for tenant context
|
|
@@ -4929,9 +5733,12 @@ type NlpControllerProcessNaturalLanguageData = {
|
|
|
4929
5733
|
* Region code for tenant context
|
|
4930
5734
|
*/
|
|
4931
5735
|
region: 'cn' | 'us' | 'de' | 'gb';
|
|
5736
|
+
/**
|
|
5737
|
+
* Natural language transaction input with optional session ID
|
|
5738
|
+
*/
|
|
4932
5739
|
requestBody: ProcessNlpDto;
|
|
4933
5740
|
};
|
|
4934
|
-
type NlpControllerProcessNaturalLanguageResponse =
|
|
5741
|
+
type NlpControllerProcessNaturalLanguageResponse = NlpResponseDto;
|
|
4935
5742
|
type NlpControllerClearSessionData = {
|
|
4936
5743
|
/**
|
|
4937
5744
|
* Region code for tenant context
|
|
@@ -5114,6 +5921,21 @@ type ReportingControllerGetPortfolioTrendsData = {
|
|
|
5114
5921
|
region: 'cn' | 'us' | 'de' | 'gb';
|
|
5115
5922
|
};
|
|
5116
5923
|
type ReportingControllerGetPortfolioTrendsResponse = PortfolioTrendsResponseDto;
|
|
5924
|
+
type ReportingControllerGetCashFlowTrendsData = {
|
|
5925
|
+
/**
|
|
5926
|
+
* Data granularity (accepted for API symmetry; v1 returns month buckets)
|
|
5927
|
+
*/
|
|
5928
|
+
granularity?: 'day' | 'week' | 'month';
|
|
5929
|
+
/**
|
|
5930
|
+
* Time period
|
|
5931
|
+
*/
|
|
5932
|
+
period?: '1m' | '3m' | '6m' | '1y';
|
|
5933
|
+
/**
|
|
5934
|
+
* Region code for tenant context
|
|
5935
|
+
*/
|
|
5936
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
5937
|
+
};
|
|
5938
|
+
type ReportingControllerGetCashFlowTrendsResponse = CashFlowTrendsResponseDto;
|
|
5117
5939
|
type ReportingControllerGenerateSnapshotData = {
|
|
5118
5940
|
/**
|
|
5119
5941
|
* Region code for tenant context
|
|
@@ -5169,7 +5991,14 @@ type $OpenApiTs = {
|
|
|
5169
5991
|
post: {
|
|
5170
5992
|
req: AccountControllerCreateData;
|
|
5171
5993
|
res: {
|
|
5172
|
-
|
|
5994
|
+
/**
|
|
5995
|
+
* Account created successfully
|
|
5996
|
+
*/
|
|
5997
|
+
201: AccountResponseDto;
|
|
5998
|
+
/**
|
|
5999
|
+
* Account already exists
|
|
6000
|
+
*/
|
|
6001
|
+
409: unknown;
|
|
5173
6002
|
};
|
|
5174
6003
|
};
|
|
5175
6004
|
get: {
|
|
@@ -5199,13 +6028,31 @@ type $OpenApiTs = {
|
|
|
5199
6028
|
put: {
|
|
5200
6029
|
req: AccountControllerUpdateData;
|
|
5201
6030
|
res: {
|
|
5202
|
-
|
|
6031
|
+
/**
|
|
6032
|
+
* Account updated successfully
|
|
6033
|
+
*/
|
|
6034
|
+
200: AccountResponseDto;
|
|
6035
|
+
/**
|
|
6036
|
+
* Account not found
|
|
6037
|
+
*/
|
|
6038
|
+
404: unknown;
|
|
5203
6039
|
};
|
|
5204
6040
|
};
|
|
5205
6041
|
delete: {
|
|
5206
6042
|
req: AccountControllerDeleteData;
|
|
5207
6043
|
res: {
|
|
5208
|
-
|
|
6044
|
+
/**
|
|
6045
|
+
* Account deleted successfully
|
|
6046
|
+
*/
|
|
6047
|
+
204: void;
|
|
6048
|
+
/**
|
|
6049
|
+
* Account not found
|
|
6050
|
+
*/
|
|
6051
|
+
404: unknown;
|
|
6052
|
+
/**
|
|
6053
|
+
* Account has transactions and cannot be deleted
|
|
6054
|
+
*/
|
|
6055
|
+
409: unknown;
|
|
5209
6056
|
};
|
|
5210
6057
|
};
|
|
5211
6058
|
};
|
|
@@ -5213,7 +6060,18 @@ type $OpenApiTs = {
|
|
|
5213
6060
|
post: {
|
|
5214
6061
|
req: AccountControllerCloseData;
|
|
5215
6062
|
res: {
|
|
5216
|
-
|
|
6063
|
+
/**
|
|
6064
|
+
* Account closed successfully
|
|
6065
|
+
*/
|
|
6066
|
+
200: AccountResponseDto;
|
|
6067
|
+
/**
|
|
6068
|
+
* Account is already closed
|
|
6069
|
+
*/
|
|
6070
|
+
400: unknown;
|
|
6071
|
+
/**
|
|
6072
|
+
* Account not found
|
|
6073
|
+
*/
|
|
6074
|
+
404: unknown;
|
|
5217
6075
|
};
|
|
5218
6076
|
};
|
|
5219
6077
|
};
|
|
@@ -5221,7 +6079,18 @@ type $OpenApiTs = {
|
|
|
5221
6079
|
post: {
|
|
5222
6080
|
req: AccountControllerReopenData;
|
|
5223
6081
|
res: {
|
|
5224
|
-
|
|
6082
|
+
/**
|
|
6083
|
+
* Account reopened successfully
|
|
6084
|
+
*/
|
|
6085
|
+
200: AccountResponseDto;
|
|
6086
|
+
/**
|
|
6087
|
+
* Account is not closed
|
|
6088
|
+
*/
|
|
6089
|
+
400: unknown;
|
|
6090
|
+
/**
|
|
6091
|
+
* Account not found
|
|
6092
|
+
*/
|
|
6093
|
+
404: unknown;
|
|
5225
6094
|
};
|
|
5226
6095
|
};
|
|
5227
6096
|
};
|
|
@@ -6477,6 +7346,102 @@ type $OpenApiTs = {
|
|
|
6477
7346
|
};
|
|
6478
7347
|
};
|
|
6479
7348
|
};
|
|
7349
|
+
'/api/v1/{region}/bean/events': {
|
|
7350
|
+
post: {
|
|
7351
|
+
req: EventControllerCreateData;
|
|
7352
|
+
res: {
|
|
7353
|
+
/**
|
|
7354
|
+
* Life event created successfully
|
|
7355
|
+
*/
|
|
7356
|
+
201: EventResponseDto;
|
|
7357
|
+
/**
|
|
7358
|
+
* Life event already exists for this (userId, type, date) combination
|
|
7359
|
+
*/
|
|
7360
|
+
409: unknown;
|
|
7361
|
+
};
|
|
7362
|
+
};
|
|
7363
|
+
get: {
|
|
7364
|
+
req: EventControllerFindAllData;
|
|
7365
|
+
res: {
|
|
7366
|
+
/**
|
|
7367
|
+
* Life events retrieved successfully
|
|
7368
|
+
*/
|
|
7369
|
+
200: EventListResponseDto;
|
|
7370
|
+
};
|
|
7371
|
+
};
|
|
7372
|
+
};
|
|
7373
|
+
'/api/v1/{region}/bean/events/{id}': {
|
|
7374
|
+
get: {
|
|
7375
|
+
req: EventControllerFindOneData;
|
|
7376
|
+
res: {
|
|
7377
|
+
/**
|
|
7378
|
+
* Life event retrieved successfully
|
|
7379
|
+
*/
|
|
7380
|
+
200: EventResponseDto;
|
|
7381
|
+
/**
|
|
7382
|
+
* Life event not found
|
|
7383
|
+
*/
|
|
7384
|
+
404: unknown;
|
|
7385
|
+
};
|
|
7386
|
+
};
|
|
7387
|
+
put: {
|
|
7388
|
+
req: EventControllerUpdateData;
|
|
7389
|
+
res: {
|
|
7390
|
+
/**
|
|
7391
|
+
* Life event updated successfully
|
|
7392
|
+
*/
|
|
7393
|
+
200: EventResponseDto;
|
|
7394
|
+
/**
|
|
7395
|
+
* If-Match header is not a valid ISO 8601 date
|
|
7396
|
+
*/
|
|
7397
|
+
400: unknown;
|
|
7398
|
+
/**
|
|
7399
|
+
* Life event not found
|
|
7400
|
+
*/
|
|
7401
|
+
404: unknown;
|
|
7402
|
+
/**
|
|
7403
|
+
* Updated event conflicts with an existing (userId, type, date) combination
|
|
7404
|
+
*/
|
|
7405
|
+
409: unknown;
|
|
7406
|
+
/**
|
|
7407
|
+
* If-Match precondition failed (updatedAt mismatch)
|
|
7408
|
+
*/
|
|
7409
|
+
412: unknown;
|
|
7410
|
+
};
|
|
7411
|
+
};
|
|
7412
|
+
delete: {
|
|
7413
|
+
req: EventControllerDeleteData;
|
|
7414
|
+
res: {
|
|
7415
|
+
/**
|
|
7416
|
+
* Life event deleted successfully
|
|
7417
|
+
*/
|
|
7418
|
+
204: void;
|
|
7419
|
+
/**
|
|
7420
|
+
* Life event not found
|
|
7421
|
+
*/
|
|
7422
|
+
404: unknown;
|
|
7423
|
+
};
|
|
7424
|
+
};
|
|
7425
|
+
};
|
|
7426
|
+
'/api/v1/{region}/bean/events/{id}/slice': {
|
|
7427
|
+
get: {
|
|
7428
|
+
req: EventControllerGetSliceData;
|
|
7429
|
+
res: {
|
|
7430
|
+
/**
|
|
7431
|
+
* Time-series sliced by the life event range
|
|
7432
|
+
*/
|
|
7433
|
+
200: unknown;
|
|
7434
|
+
/**
|
|
7435
|
+
* accountPattern query param is empty
|
|
7436
|
+
*/
|
|
7437
|
+
400: unknown;
|
|
7438
|
+
/**
|
|
7439
|
+
* Life event not found
|
|
7440
|
+
*/
|
|
7441
|
+
404: unknown;
|
|
7442
|
+
};
|
|
7443
|
+
};
|
|
7444
|
+
};
|
|
6480
7445
|
'/api/v1/{region}/bean/export/beancount': {
|
|
6481
7446
|
get: {
|
|
6482
7447
|
res: {
|
|
@@ -6557,7 +7522,22 @@ type $OpenApiTs = {
|
|
|
6557
7522
|
post: {
|
|
6558
7523
|
req: FileImportControllerImportBeancountData;
|
|
6559
7524
|
res: {
|
|
6560
|
-
|
|
7525
|
+
/**
|
|
7526
|
+
* Beancount file imported successfully
|
|
7527
|
+
*/
|
|
7528
|
+
200: {
|
|
7529
|
+
imported?: number;
|
|
7530
|
+
skipped?: number;
|
|
7531
|
+
failed?: number;
|
|
7532
|
+
accountsCreated?: number;
|
|
7533
|
+
errors?: Array<{
|
|
7534
|
+
[key: string]: unknown;
|
|
7535
|
+
}>;
|
|
7536
|
+
};
|
|
7537
|
+
/**
|
|
7538
|
+
* Bad request - invalid file or no file uploaded
|
|
7539
|
+
*/
|
|
7540
|
+
400: ApiProblemResponseDto;
|
|
6561
7541
|
};
|
|
6562
7542
|
};
|
|
6563
7543
|
};
|
|
@@ -6688,7 +7668,22 @@ type $OpenApiTs = {
|
|
|
6688
7668
|
post: {
|
|
6689
7669
|
req: ProviderSyncControllerSyncData;
|
|
6690
7670
|
res: {
|
|
6691
|
-
|
|
7671
|
+
/**
|
|
7672
|
+
* Sync completed successfully
|
|
7673
|
+
*/
|
|
7674
|
+
200: ProviderSyncResponseDto;
|
|
7675
|
+
/**
|
|
7676
|
+
* Invalid request data
|
|
7677
|
+
*/
|
|
7678
|
+
400: unknown;
|
|
7679
|
+
/**
|
|
7680
|
+
* Missing or invalid authentication
|
|
7681
|
+
*/
|
|
7682
|
+
401: unknown;
|
|
7683
|
+
/**
|
|
7684
|
+
* Provider not supported
|
|
7685
|
+
*/
|
|
7686
|
+
404: unknown;
|
|
6692
7687
|
};
|
|
6693
7688
|
};
|
|
6694
7689
|
};
|
|
@@ -6767,7 +7762,18 @@ type $OpenApiTs = {
|
|
|
6767
7762
|
post: {
|
|
6768
7763
|
req: NlpControllerProcessNaturalLanguageData;
|
|
6769
7764
|
res: {
|
|
6770
|
-
|
|
7765
|
+
/**
|
|
7766
|
+
* NLP processing result - either created transaction or asking for more info
|
|
7767
|
+
*/
|
|
7768
|
+
200: NlpResponseDto;
|
|
7769
|
+
/**
|
|
7770
|
+
* Invalid input
|
|
7771
|
+
*/
|
|
7772
|
+
400: unknown;
|
|
7773
|
+
/**
|
|
7774
|
+
* Unauthorized
|
|
7775
|
+
*/
|
|
7776
|
+
401: unknown;
|
|
6771
7777
|
};
|
|
6772
7778
|
};
|
|
6773
7779
|
};
|
|
@@ -6966,6 +7972,21 @@ type $OpenApiTs = {
|
|
|
6966
7972
|
};
|
|
6967
7973
|
};
|
|
6968
7974
|
};
|
|
7975
|
+
'/api/v1/{region}/reporting/cash-flow/trends': {
|
|
7976
|
+
get: {
|
|
7977
|
+
req: ReportingControllerGetCashFlowTrendsData;
|
|
7978
|
+
res: {
|
|
7979
|
+
/**
|
|
7980
|
+
* Cash-flow trends retrieved successfully
|
|
7981
|
+
*/
|
|
7982
|
+
200: CashFlowTrendsResponseDto;
|
|
7983
|
+
/**
|
|
7984
|
+
* User not authenticated
|
|
7985
|
+
*/
|
|
7986
|
+
401: unknown;
|
|
7987
|
+
};
|
|
7988
|
+
};
|
|
7989
|
+
};
|
|
6969
7990
|
'/api/v1/{region}/reporting/snapshots/generate': {
|
|
6970
7991
|
post: {
|
|
6971
7992
|
req: ReportingControllerGenerateSnapshotData;
|
|
@@ -7180,10 +8201,12 @@ type $OpenApiTs = {
|
|
|
7180
8201
|
|
|
7181
8202
|
declare class BeanAccountsService {
|
|
7182
8203
|
/**
|
|
8204
|
+
* Create a new account
|
|
8205
|
+
* Creates a new account (Beancount Open directive)
|
|
7183
8206
|
* @param data The data for the request.
|
|
7184
8207
|
* @param data.region Region code for tenant context
|
|
7185
8208
|
* @param data.requestBody
|
|
7186
|
-
* @returns
|
|
8209
|
+
* @returns AccountResponseDto Account created successfully
|
|
7187
8210
|
* @throws ApiError
|
|
7188
8211
|
*/
|
|
7189
8212
|
static accountControllerCreate(data: AccountControllerCreateData): CancelablePromise<AccountControllerCreateResponse>;
|
|
@@ -7213,37 +8236,45 @@ declare class BeanAccountsService {
|
|
|
7213
8236
|
*/
|
|
7214
8237
|
static accountControllerFindOne(data: AccountControllerFindOneData): CancelablePromise<AccountControllerFindOneResponse>;
|
|
7215
8238
|
/**
|
|
8239
|
+
* Update account
|
|
8240
|
+
* Updates account metadata (path cannot be changed)
|
|
7216
8241
|
* @param data The data for the request.
|
|
7217
|
-
* @param data.id
|
|
8242
|
+
* @param data.id Account UUID
|
|
7218
8243
|
* @param data.region Region code for tenant context
|
|
7219
8244
|
* @param data.requestBody
|
|
7220
|
-
* @returns
|
|
8245
|
+
* @returns AccountResponseDto Account updated successfully
|
|
7221
8246
|
* @throws ApiError
|
|
7222
8247
|
*/
|
|
7223
8248
|
static accountControllerUpdate(data: AccountControllerUpdateData): CancelablePromise<AccountControllerUpdateResponse>;
|
|
7224
8249
|
/**
|
|
8250
|
+
* Delete account
|
|
8251
|
+
* Deletes an account (only if no transactions)
|
|
7225
8252
|
* @param data The data for the request.
|
|
7226
|
-
* @param data.id
|
|
8253
|
+
* @param data.id Account UUID
|
|
7227
8254
|
* @param data.region Region code for tenant context
|
|
7228
|
-
* @returns
|
|
8255
|
+
* @returns void Account deleted successfully
|
|
7229
8256
|
* @throws ApiError
|
|
7230
8257
|
*/
|
|
7231
8258
|
static accountControllerDelete(data: AccountControllerDeleteData): CancelablePromise<AccountControllerDeleteResponse>;
|
|
7232
8259
|
/**
|
|
8260
|
+
* Close account
|
|
8261
|
+
* Closes an account (Beancount Close directive)
|
|
7233
8262
|
* @param data The data for the request.
|
|
7234
|
-
* @param data.id
|
|
8263
|
+
* @param data.id Account UUID
|
|
7235
8264
|
* @param data.region Region code for tenant context
|
|
7236
8265
|
* @param data.requestBody
|
|
7237
|
-
* @returns
|
|
8266
|
+
* @returns AccountResponseDto Account closed successfully
|
|
7238
8267
|
* @throws ApiError
|
|
7239
8268
|
*/
|
|
7240
8269
|
static accountControllerClose(data: AccountControllerCloseData): CancelablePromise<AccountControllerCloseResponse>;
|
|
7241
8270
|
/**
|
|
8271
|
+
* Reopen account
|
|
8272
|
+
* Reopens a previously closed account
|
|
7242
8273
|
* @param data The data for the request.
|
|
7243
|
-
* @param data.id
|
|
8274
|
+
* @param data.id Account UUID
|
|
7244
8275
|
* @param data.region Region code for tenant context
|
|
7245
8276
|
* @param data.requestBody
|
|
7246
|
-
* @returns
|
|
8277
|
+
* @returns AccountResponseDto Account reopened successfully
|
|
7247
8278
|
* @throws ApiError
|
|
7248
8279
|
*/
|
|
7249
8280
|
static accountControllerReopen(data: AccountControllerReopenData): CancelablePromise<AccountControllerReopenResponse>;
|
|
@@ -7440,11 +8471,33 @@ declare class BeanCommoditiesService {
|
|
|
7440
8471
|
}
|
|
7441
8472
|
declare class ProviderSyncService {
|
|
7442
8473
|
/**
|
|
8474
|
+
* Sync transactions from financial data provider
|
|
8475
|
+
*
|
|
8476
|
+
* Accepts raw transactions from external financial data providers, transforms them to Beancount format, and processes them through the ingestion pipeline.
|
|
8477
|
+
*
|
|
8478
|
+
* **Supported Providers:**
|
|
8479
|
+
* - **plaid**: Plaid API (US, Canada, Europe)
|
|
8480
|
+
* - **teller**: Teller API (US)
|
|
8481
|
+
* - **truelayer**: TrueLayer Open Banking (UK, Europe)
|
|
8482
|
+
* - **gocardless**: GoCardless Bank Account Data (Europe)
|
|
8483
|
+
* - **simplefin**: SimpleFIN (Self-hosted)
|
|
8484
|
+
* - **yodlee**: Yodlee (Global)
|
|
8485
|
+
* - **beancount-direct**: Beancount format transactions
|
|
8486
|
+
* - **parsed-bill**: Client-side parsed bill transactions
|
|
8487
|
+
*
|
|
8488
|
+
* **Processing Flow:**
|
|
8489
|
+
* 1. Transform raw data via provider adapter
|
|
8490
|
+
* 2. Validate transaction format
|
|
8491
|
+
* 3. Deduplicate using originalId
|
|
8492
|
+
* 4. Classify using rule engine
|
|
8493
|
+
* 5. Route low-confidence to Review Center
|
|
8494
|
+
* 6. Persist validated transactions
|
|
8495
|
+
*
|
|
7443
8496
|
* @param data The data for the request.
|
|
7444
|
-
* @param data.providerName
|
|
8497
|
+
* @param data.providerName Provider name
|
|
7445
8498
|
* @param data.region Region code for tenant context
|
|
7446
8499
|
* @param data.requestBody
|
|
7447
|
-
* @returns
|
|
8500
|
+
* @returns ProviderSyncResponseDto Sync completed successfully
|
|
7448
8501
|
* @throws ApiError
|
|
7449
8502
|
*/
|
|
7450
8503
|
static providerSyncControllerSync(data: ProviderSyncControllerSyncData): CancelablePromise<ProviderSyncControllerSyncResponse>;
|
|
@@ -7555,4 +8608,4 @@ type OpenAPIConfig = {
|
|
|
7555
8608
|
};
|
|
7556
8609
|
declare const OpenAPI: OpenAPIConfig;
|
|
7557
8610
|
|
|
7558
|
-
export { type $OpenApiTs, type AccountControllerCloseData, type AccountControllerCloseResponse, type AccountControllerCreateData, type AccountControllerCreateResponse, type AccountControllerDeleteData, type AccountControllerDeleteResponse, type AccountControllerFindAllData, type AccountControllerFindAllResponse, type AccountControllerFindOneData, type AccountControllerFindOneResponse, type AccountControllerReopenData, type AccountControllerReopenResponse, type AccountControllerUpdateData, type AccountControllerUpdateResponse, type AccountExchangeRateWarningDto, type AccountItemDto, type AccountItemWithAssetClassDto, type AccountListResponseDto, type AccountResponseDto, type AccountStandardListResponseDto, type AccountStandardResponseDto, type AccountStandardsControllerGetRegionsData, type AccountStandardsControllerGetRegionsResponse, type AccountStandardsControllerGetTemplateMetadataData, type AccountStandardsControllerGetTemplateMetadataResponse, type AccountStandardsControllerGetTemplatesData, type AccountStandardsControllerGetTemplatesResponse, type AccountsResponseDto, type AccountsSummaryDto, type AmountDto, type AmountRangeDto, type AnonymousLoginDto, type ApiKeysControllerCreateApiKeyResponse, type ApiProblemResponseDto, type AssetClassAccountsResponseDto, type AssetClassGroupDto, type AssetClassSummaryDto, type AuthControllerAccessTokenLoginData, type AuthControllerAccessTokenLoginResponse, type BackfillSnapshotsBody, type BackfillSnapshotsResponse, type BalanceByCurrencyDto, type BalanceControllerGetBalanceData, type BalanceControllerGetBalanceResponse, type BalanceControllerGetMultiCurrencyBalanceData, type BalanceControllerGetMultiCurrencyBalanceResponse, type BalanceResponseDto, type BatchCreateTransactionDto, type BatchResolveDto, type BatchResolveResultDto, type BatchTransactionErrorDto, type BatchTransactionResponseDto, BeanAccountsService, BeanBalancesService, BeanCommoditiesService, BeanTransactionsService, type BulkCreateRulesDto, type BulkCreateRulesResponseDto, type CacheControllerFlushCacheResponse, type CashFlowByCurrencyDto, type CashFlowResponseDto, type CloseAccountDto, type CommodityControllerBulkCreateData, type CommodityControllerBulkCreateResponse, type CommodityControllerCreateData, type CommodityControllerCreateResponse, type CommodityControllerDeleteData, type CommodityControllerDeleteResponse, type CommodityControllerFindAllData, type CommodityControllerFindAllResponse, type CommodityControllerFindOneData, type CommodityControllerFindOneResponse, type CommodityControllerGetOrCreateData, type CommodityControllerGetOrCreateResponse, type CommodityControllerUpdateData, type CommodityControllerUpdateResponse, type CommodityListResponseDto, type CommodityResponseDto, type ConfirmMatchDto, type ConvertedCashFlowDto, type ConvertedNetWorthDto, type CorrectTransactionDto, type CostDetailDto, type CostSpecDto, type CreateAccountDto, type CreateBeanPriceDto, type CreateCommodityDto, type CreatePayeeDto, type CreatePayeeProfileDto, type CreatePlatformDto, type CreatePostingDto, type CreateRecurringRuleDto, type CreateRuleFromTransactionDto, type CreateTransactionDto, type CreateTransactionRuleDto, type CurrencyBalanceDto, type CurrentPriceDto, type DashboardControllerGetAccountsData, type DashboardControllerGetAccountsResponse, type DashboardControllerGetCashFlowData, type DashboardControllerGetCashFlowResponse, type DashboardControllerGetNetWorthData, type DashboardControllerGetNetWorthResponse, type DecisionOptionDto, type DeleteOwnUserDto, type EnterNowDto, type ExchangeRateControllerGetExchangeRateData, type ExchangeRateControllerGetExchangeRateResponse, type ExchangeRateWarningDto, type ExpectedTransactionControllerConfirmMatchData, type ExpectedTransactionControllerConfirmMatchResponse, type ExpectedTransactionControllerEnterNowData, type ExpectedTransactionControllerEnterNowResponse, type ExpectedTransactionControllerFindAllData, type ExpectedTransactionControllerFindAllResponse, type ExpectedTransactionControllerFindOneData, type ExpectedTransactionControllerFindOneResponse, type ExpectedTransactionControllerFindOverdueData, type ExpectedTransactionControllerFindOverdueResponse, type ExpectedTransactionControllerSkipData, type ExpectedTransactionControllerSkipResponse, type ExpectedTransactionControllerUndoSkipData, type ExpectedTransactionControllerUndoSkipResponse, type ExpectedTransactionControllerUnmatchData, type ExpectedTransactionControllerUnmatchResponse, type ExpectedTransactionListResponseDto, type ExpectedTransactionResponseDto, type ExpectedTransactionRuleDto, type ExportControllerExportBeancountResponse, type ExportRulesResponseDto, type FileImportControllerIdentifyFileData, type FileImportControllerIdentifyFileResponse, type FileImportControllerImportBeancountData, type FileImportControllerImportBeancountResponse, type FileImportControllerImportFileData, type FileImportControllerImportFileResponse, type FileImportDto, type ForecastControllerGetForecastData, type ForecastControllerGetForecastResponse, type ForecastItemDto, type ForecastResponseDto, type FxRateDto, type GenerateSnapshotBody, type GenerateSnapshotResponse, type HealthControllerCheckDatabaseResponse, type HealthControllerCheckOpenBbResponse, type HealthControllerCheckRedisResponse, type HealthControllerGetCircuitBreakersHealthResponse, type HealthControllerGetHealthResponse, type HealthControllerGetMetricsResponse, type HealthControllerResetCircuitBreakerData, type HealthControllerResetCircuitBreakerResponse, HealthService, type HoldingAssetClassAccountSliceDto, type HoldingAssetClassCrossAccountResponseDto, type HoldingPnlControllerGetHoldingPnlData, type HoldingPnlControllerGetHoldingPnlResponse, type HoldingPnlResponseDto, type HoldingPnlRowDto, type HoldingPnlWarningDto, type IdentifyResultDto, type ImportErrorDto, type ImportResultDto, type ImporterConfigControllerGetConfigData, type ImporterConfigControllerGetConfigResponse, type ImporterConfigControllerResetConfigData, type ImporterConfigControllerResetConfigResponse, type ImporterConfigControllerUpdateConfigData, type ImporterConfigControllerUpdateConfigResponse, type ImporterConfigDataDto, type ImporterConfigDto, type InfoControllerGetInfoResponse, type MapperDefaultsDto, type MonetaryDto, type MonthlyForecastDto, type MultiCurrencyBalanceResponseDto, type MultiCurrencyPointDto, type NetWorthByCurrencyDto, type NetWorthResponseDto, type NlpControllerClearSessionData, type NlpControllerClearSessionResponse, type NlpControllerGetSessionData, type NlpControllerGetSessionResponse, type NlpControllerProcessNaturalLanguageData, type NlpControllerProcessNaturalLanguageResponse, OpenAPI, type OpenAPIConfig, type ParserTelemetryReportDto, type PayeeAutocompleteResponseDto, type PayeeControllerAutocompleteData, type PayeeControllerAutocompleteResponse, type PayeeControllerCreateData, type PayeeControllerCreateResponse, type PayeeControllerDeleteData, type PayeeControllerDeleteResponse, type PayeeControllerFindAllData, type PayeeControllerFindAllResponse, type PayeeControllerFindOneData, type PayeeControllerFindOneResponse, type PayeeControllerGetTopPayeesData, type PayeeControllerGetTopPayeesResponse, type PayeeControllerUpdateData, type PayeeControllerUpdateResponse, type PayeeListResponseDto, type PayeeProfileAdminControllerCreateData, type PayeeProfileAdminControllerCreateResponse, type PayeeProfileAdminControllerDeleteData, type PayeeProfileAdminControllerDeleteResponse, type PayeeProfileAdminControllerFindAllData, type PayeeProfileAdminControllerFindAllResponse, type PayeeProfileAdminControllerFindOneData, type PayeeProfileAdminControllerFindOneResponse, type PayeeProfileAdminControllerUnverifyData, type PayeeProfileAdminControllerUnverifyResponse, type PayeeProfileAdminControllerUpdateData, type PayeeProfileAdminControllerUpdateResponse, type PayeeProfileAdminControllerVerifyData, type PayeeProfileAdminControllerVerifyResponse, type PayeeProfileListResponseDto, type PayeeProfileResponseDto, type PayeeResponseDto, type PayeeStatsResponseDto, type PlatformControllerCreateData, type PlatformControllerCreateResponse, type PlatformControllerDeleteData, type PlatformControllerDeleteResponse, type PlatformControllerFindAllResponse, type PlatformControllerGetPlatformListResponse, type PlatformControllerMatchPlatformsData, type PlatformControllerMatchPlatformsResponse, type PlatformControllerUpdateData, type PlatformControllerUpdateResponse, type PlatformGroupDto, type PortfolioTrendsResponseDto, type PostingDetailDto, type PostingResponseDto, type PriceControllerBulkCreateData, type PriceControllerBulkCreateResponse, type PriceControllerCreateData, type PriceControllerCreateResponse, type PriceControllerDeleteData, type PriceControllerDeleteResponse, type PriceControllerFindAllData, type PriceControllerFindAllResponse, type PriceControllerFindOneData, type PriceControllerFindOneResponse, type PriceControllerUpdateData, type PriceControllerUpdateResponse, type PriceListResponseDto, type PriceResponseDto, type ProcessNlpDto, type PropertyControllerDeleteData, type PropertyControllerDeleteResponse, type PropertyControllerGetAllResponse, type PropertyControllerGetByKeyData, type PropertyControllerGetByKeyResponse, type PropertyControllerUpdateData, type PropertyControllerUpdateResponse, type ProviderSyncConfigDto, type ProviderSyncControllerGetSupportedProvidersData, type ProviderSyncControllerGetSupportedProvidersResponse, type ProviderSyncControllerIsProviderSupportedData, type ProviderSyncControllerIsProviderSupportedResponse, type ProviderSyncControllerSyncData, type ProviderSyncControllerSyncResponse, type ProviderSyncDto, ProviderSyncService, type RecurringRuleControllerCreateData, type RecurringRuleControllerCreateFromTransactionData, type RecurringRuleControllerCreateFromTransactionResponse, type RecurringRuleControllerCreateResponse, type RecurringRuleControllerDeleteData, type RecurringRuleControllerDeleteResponse, type RecurringRuleControllerFindAllData, type RecurringRuleControllerFindAllResponse, type RecurringRuleControllerFindOneData, type RecurringRuleControllerFindOneResponse, type RecurringRuleControllerGetWithStatsData, type RecurringRuleControllerGetWithStatsResponse, type RecurringRuleControllerUpdateData, type RecurringRuleControllerUpdateResponse, type RecurringRuleResponseDto, type RecurringRuleWithStatsResponseDto, type RecurringSuggestionDto, type RegionConfigDto, type RegionInfoDto, type RegionsMetadataResponseDto, type ReopenAccountDto, type ReportingControllerBackfillSnapshotsData, type ReportingControllerBackfillSnapshotsResponse, type ReportingControllerGenerateSnapshotData, type ReportingControllerGenerateSnapshotResponse, type ReportingControllerGetPortfolioTrendsData, type ReportingControllerGetPortfolioTrendsResponse, type ResolveResultDto, type ResolveReviewDto, type ReviewControllerBatchResolveData, type ReviewControllerBatchResolveResponse, type ReviewControllerFindAllData, type ReviewControllerFindAllResponse, type ReviewControllerFindOneData, type ReviewControllerFindOneResponse, type ReviewControllerGetStatsData, type ReviewControllerGetStatsResponse, type ReviewControllerResolveData, type ReviewControllerResolveResponse, type ReviewControllerUndoData, type ReviewControllerUndoResponse, type ReviewDetailDto, type ReviewItemPreviewDto, type ReviewListResponseDto, type ReviewStatsDto, type ReviewSummaryDto, type RuleStatisticsResponseDto, type SignupDto, type SupportedProvidersResponseDto, type TagSuggestionDto, type TagSuggestionsResponseDto, type TelemetryControllerGetCoverageMetricsData, type TelemetryControllerGetCoverageMetricsResponse, type TelemetryControllerReportCoverageMissData, type TelemetryControllerReportCoverageMissResponse, type TelemetryControllerReportTelemetryData, type TelemetryControllerReportTelemetryResponse, type TemplateMetadataDto, type TemplateMetadataResponseDto, type TestRuleDto, type TestRuleResponseDto, type TimeSeriesPointDto, type TransactionControllerCorrectData, type TransactionControllerCorrectResponse, type TransactionControllerCreateBatchData, type TransactionControllerCreateBatchResponse, type TransactionControllerCreateData, type TransactionControllerCreateResponse, type TransactionControllerDeleteData, type TransactionControllerDeleteResponse, type TransactionControllerGetDetailData, type TransactionControllerGetDetailResponse, type TransactionControllerListData, type TransactionControllerListResponse, type TransactionControllerSuggestTagsData, type TransactionControllerSuggestTagsResponse, type TransactionControllerUpdateData, type TransactionControllerUpdateResponse, type TransactionDetailDto, type TransactionListResponseDto, type TransactionResponseDto, type TransactionRuleControllerBulkCreateData, type TransactionRuleControllerBulkCreateResponse, type TransactionRuleControllerCreateData, type TransactionRuleControllerCreateResponse, type TransactionRuleControllerDeleteData, type TransactionRuleControllerDeleteResponse, type TransactionRuleControllerExportData, type TransactionRuleControllerExportResponse, type TransactionRuleControllerGetDetailData, type TransactionRuleControllerGetDetailResponse, type TransactionRuleControllerGetStatisticsData, type TransactionRuleControllerGetStatisticsResponse, type TransactionRuleControllerListData, type TransactionRuleControllerListResponse, type TransactionRuleControllerTestData, type TransactionRuleControllerTestResponse, type TransactionRuleControllerUpdateData, type TransactionRuleControllerUpdateResponse, type TransactionRuleControllerValidateData, type TransactionRuleControllerValidateResponse, type TransactionRuleListResponseDto, type TransactionRuleResponseDto, type TransactionSummaryDto, type TrendSummaryDto, type UncoveredFormatMissDto, type UndoResultDto, type UpdateAccountDto, type UpdateBeanPriceDto, type UpdateCommodityDto, type UpdateConfigDataDto, type UpdateImporterConfigDto, type UpdateMapperDefaultsDto, type UpdatePayeeDto, type UpdatePayeeProfileDto, type UpdatePlatformDto, type UpdatePropertyDto, type UpdateRecurringRuleDto, type UpdateTransactionDto, type UpdateTransactionRuleDto, type UpdateUserSettingDto, type UserControllerDeleteOwnUserData, type UserControllerDeleteOwnUserResponse, type UserControllerDeleteUserData, type UserControllerDeleteUserResponse, type UserControllerGetAllUserSettingsByPageData, type UserControllerGetAllUserSettingsByPageResponse, type UserControllerGetAssetLiabilitySummaryResponse, type UserControllerGetUserData, type UserControllerGetUserInfoData, type UserControllerGetUserInfoResponse, type UserControllerGetUserResponse, type UserControllerSignupUserData, type UserControllerSignupUserResponse, type UserControllerUpdateUserSettingData, type UserControllerUpdateUserSettingResponse, type ValidateRuleDto, type ValidateRuleResponseDto, type VersionedConfigDto, type action, type assetClass, type bookingMethod, type branchType, type category, type chartToken, type colorScheme, type confidenceLevel, type conflictStrategy, type dataSource, type flag, type flag2, type frequency, type importerId, type learningSource, type matchLogic, type method, type mode, type period, type source, type source2, type status, type status2, type status3, type suggestedFrequency, type type, type type2, type type3, type type4, type value, type viewMode };
|
|
8611
|
+
export { type $OpenApiTs, type AccountControllerCloseData, type AccountControllerCloseResponse, type AccountControllerCreateData, type AccountControllerCreateResponse, type AccountControllerDeleteData, type AccountControllerDeleteResponse, type AccountControllerFindAllData, type AccountControllerFindAllResponse, type AccountControllerFindOneData, type AccountControllerFindOneResponse, type AccountControllerReopenData, type AccountControllerReopenResponse, type AccountControllerUpdateData, type AccountControllerUpdateResponse, type AccountExchangeRateWarningDto, type AccountItemDto, type AccountItemWithAssetClassDto, type AccountListResponseDto, type AccountResponseDto, type AccountStandardListResponseDto, type AccountStandardResponseDto, type AccountStandardsControllerGetRegionsData, type AccountStandardsControllerGetRegionsResponse, type AccountStandardsControllerGetTemplateMetadataData, type AccountStandardsControllerGetTemplateMetadataResponse, type AccountStandardsControllerGetTemplatesData, type AccountStandardsControllerGetTemplatesResponse, type AccountsResponseDto, type AccountsSummaryDto, type AmountDto, type AmountRangeDto, type AnonymousLoginDto, type ApiKeysControllerCreateApiKeyResponse, type ApiProblemResponseDto, type AssetClassAccountsResponseDto, type AssetClassGroupDto, type AssetClassSummaryDto, type AuthControllerAccessTokenLoginData, type AuthControllerAccessTokenLoginResponse, type BackfillSnapshotsBody, type BackfillSnapshotsResponse, type BalanceByCurrencyDto, type BalanceControllerGetBalanceData, type BalanceControllerGetBalanceResponse, type BalanceControllerGetMultiCurrencyBalanceData, type BalanceControllerGetMultiCurrencyBalanceResponse, type BalanceResponseDto, type BatchCreateTransactionDto, type BatchResolveDto, type BatchResolveResultDto, type BatchTransactionErrorDto, type BatchTransactionResponseDto, BeanAccountsService, BeanBalancesService, BeanCommoditiesService, BeanTransactionsService, type BulkCreateRulesDto, type BulkCreateRulesResponseDto, type CacheControllerFlushCacheResponse, type CashFlowByCurrencyDto, type CashFlowPointDto, type CashFlowResponseDto, type CashFlowTrendSummaryDto, type CashFlowTrendsResponseDto, type CloseAccountDto, type CommodityControllerBulkCreateData, type CommodityControllerBulkCreateResponse, type CommodityControllerCreateData, type CommodityControllerCreateResponse, type CommodityControllerDeleteData, type CommodityControllerDeleteResponse, type CommodityControllerFindAllData, type CommodityControllerFindAllResponse, type CommodityControllerFindOneData, type CommodityControllerFindOneResponse, type CommodityControllerGetOrCreateData, type CommodityControllerGetOrCreateResponse, type CommodityControllerUpdateData, type CommodityControllerUpdateResponse, type CommodityListResponseDto, type CommodityResponseDto, type ConfirmMatchDto, type ConvertedCashFlowDto, type ConvertedNetWorthDto, type CorrectTransactionDto, type CostDetailDto, type CostSpecDto, type CreateAccountDto, type CreateBeanEventDto, type CreateBeanPriceDto, type CreateCommodityDto, type CreatePayeeDto, type CreatePayeeProfileDto, type CreatePlatformDto, type CreatePostingDto, type CreateRecurringRuleDto, type CreateRuleFromTransactionDto, type CreateTransactionDto, type CreateTransactionRuleDto, type CurrencyBalanceDto, type CurrentPriceDto, type DashboardControllerGetAccountsData, type DashboardControllerGetAccountsResponse, type DashboardControllerGetCashFlowData, type DashboardControllerGetCashFlowResponse, type DashboardControllerGetNetWorthData, type DashboardControllerGetNetWorthResponse, type DecisionOptionDto, type DeleteOwnUserDto, type EnterNowDto, type EventControllerCreateData, type EventControllerCreateResponse, type EventControllerDeleteData, type EventControllerDeleteResponse, type EventControllerFindAllData, type EventControllerFindAllResponse, type EventControllerFindOneData, type EventControllerFindOneResponse, type EventControllerGetSliceData, type EventControllerGetSliceResponse, type EventControllerUpdateData, type EventControllerUpdateResponse, type EventListResponseDto, type EventResponseDto, type ExchangeRateControllerGetExchangeRateData, type ExchangeRateControllerGetExchangeRateResponse, type ExchangeRateWarningDto, type ExpectedTransactionControllerConfirmMatchData, type ExpectedTransactionControllerConfirmMatchResponse, type ExpectedTransactionControllerEnterNowData, type ExpectedTransactionControllerEnterNowResponse, type ExpectedTransactionControllerFindAllData, type ExpectedTransactionControllerFindAllResponse, type ExpectedTransactionControllerFindOneData, type ExpectedTransactionControllerFindOneResponse, type ExpectedTransactionControllerFindOverdueData, type ExpectedTransactionControllerFindOverdueResponse, type ExpectedTransactionControllerSkipData, type ExpectedTransactionControllerSkipResponse, type ExpectedTransactionControllerUndoSkipData, type ExpectedTransactionControllerUndoSkipResponse, type ExpectedTransactionControllerUnmatchData, type ExpectedTransactionControllerUnmatchResponse, type ExpectedTransactionListResponseDto, type ExpectedTransactionResponseDto, type ExpectedTransactionRuleDto, type ExportControllerExportBeancountResponse, type ExportRulesResponseDto, type FileImportControllerIdentifyFileData, type FileImportControllerIdentifyFileResponse, type FileImportControllerImportBeancountData, type FileImportControllerImportBeancountResponse, type FileImportControllerImportFileData, type FileImportControllerImportFileResponse, type FileImportDto, type ForecastControllerGetForecastData, type ForecastControllerGetForecastResponse, type ForecastItemDto, type ForecastResponseDto, type FxRateDto, type GenerateSnapshotBody, type GenerateSnapshotResponse, type HealthControllerCheckDatabaseResponse, type HealthControllerCheckOpenBbResponse, type HealthControllerCheckRedisResponse, type HealthControllerGetCircuitBreakersHealthResponse, type HealthControllerGetHealthResponse, type HealthControllerGetMetricsResponse, type HealthControllerResetCircuitBreakerData, type HealthControllerResetCircuitBreakerResponse, HealthService, type HoldingAssetClassAccountSliceDto, type HoldingAssetClassCrossAccountResponseDto, type HoldingPnlControllerGetHoldingPnlData, type HoldingPnlControllerGetHoldingPnlResponse, type HoldingPnlResponseDto, type HoldingPnlRowDto, type HoldingPnlWarningDto, type IdentifyResultDto, type ImportErrorDto, type ImportResultDto, type ImporterConfigControllerGetConfigData, type ImporterConfigControllerGetConfigResponse, type ImporterConfigControllerResetConfigData, type ImporterConfigControllerResetConfigResponse, type ImporterConfigControllerUpdateConfigData, type ImporterConfigControllerUpdateConfigResponse, type ImporterConfigDataDto, type ImporterConfigDto, type InfoControllerGetInfoResponse, type MapperDefaultsDto, type MonetaryDto, type MonthlyForecastDto, type MultiCurrencyBalanceResponseDto, type MultiCurrencyPointDto, type NetWorthByCurrencyDto, type NetWorthResponseDto, type NlpAccountConfirmationDataDto, type NlpAlternativePayeeDto, type NlpControllerClearSessionData, type NlpControllerClearSessionResponse, type NlpControllerGetSessionData, type NlpControllerGetSessionResponse, type NlpControllerProcessNaturalLanguageData, type NlpControllerProcessNaturalLanguageResponse, type NlpDefaultAccountsDto, type NlpDuplicateConfirmationDataDto, type NlpParsedDataDto, type NlpPayeeConfirmationDataDto, type NlpResponseDto, type NlpRuleConfirmationDataDto, type NlpSimilarityDto, type NlpSourceTransactionDto, type NlpSuggestedAccountDto, type NlpSuggestedAccountsDto, type NlpSuggestedPayeeDto, type NlpTargetTransactionDto, type NlpTransactionInfoDto, OpenAPI, type OpenAPIConfig, type ParserTelemetryReportDto, type PayeeAutocompleteResponseDto, type PayeeControllerAutocompleteData, type PayeeControllerAutocompleteResponse, type PayeeControllerCreateData, type PayeeControllerCreateResponse, type PayeeControllerDeleteData, type PayeeControllerDeleteResponse, type PayeeControllerFindAllData, type PayeeControllerFindAllResponse, type PayeeControllerFindOneData, type PayeeControllerFindOneResponse, type PayeeControllerGetTopPayeesData, type PayeeControllerGetTopPayeesResponse, type PayeeControllerUpdateData, type PayeeControllerUpdateResponse, type PayeeListResponseDto, type PayeeProfileAdminControllerCreateData, type PayeeProfileAdminControllerCreateResponse, type PayeeProfileAdminControllerDeleteData, type PayeeProfileAdminControllerDeleteResponse, type PayeeProfileAdminControllerFindAllData, type PayeeProfileAdminControllerFindAllResponse, type PayeeProfileAdminControllerFindOneData, type PayeeProfileAdminControllerFindOneResponse, type PayeeProfileAdminControllerUnverifyData, type PayeeProfileAdminControllerUnverifyResponse, type PayeeProfileAdminControllerUpdateData, type PayeeProfileAdminControllerUpdateResponse, type PayeeProfileAdminControllerVerifyData, type PayeeProfileAdminControllerVerifyResponse, type PayeeProfileListResponseDto, type PayeeProfileResponseDto, type PayeeResponseDto, type PayeeStatsResponseDto, type PlatformControllerCreateData, type PlatformControllerCreateResponse, type PlatformControllerDeleteData, type PlatformControllerDeleteResponse, type PlatformControllerFindAllResponse, type PlatformControllerGetPlatformListResponse, type PlatformControllerMatchPlatformsData, type PlatformControllerMatchPlatformsResponse, type PlatformControllerUpdateData, type PlatformControllerUpdateResponse, type PlatformGroupDto, type PortfolioTrendsResponseDto, type PostingDetailDto, type PostingResponseDto, type PriceControllerBulkCreateData, type PriceControllerBulkCreateResponse, type PriceControllerCreateData, type PriceControllerCreateResponse, type PriceControllerDeleteData, type PriceControllerDeleteResponse, type PriceControllerFindAllData, type PriceControllerFindAllResponse, type PriceControllerFindOneData, type PriceControllerFindOneResponse, type PriceControllerUpdateData, type PriceControllerUpdateResponse, type PriceListResponseDto, type PriceResponseDto, type ProcessNlpDto, type PropertyControllerDeleteData, type PropertyControllerDeleteResponse, type PropertyControllerGetAllResponse, type PropertyControllerGetByKeyData, type PropertyControllerGetByKeyResponse, type PropertyControllerUpdateData, type PropertyControllerUpdateResponse, type ProviderSyncConfigDto, type ProviderSyncControllerGetSupportedProvidersData, type ProviderSyncControllerGetSupportedProvidersResponse, type ProviderSyncControllerIsProviderSupportedData, type ProviderSyncControllerIsProviderSupportedResponse, type ProviderSyncControllerSyncData, type ProviderSyncControllerSyncResponse, type ProviderSyncDto, type ProviderSyncResponseDto, ProviderSyncService, type RecurringMatchInfoDto, type RecurringRuleControllerCreateData, type RecurringRuleControllerCreateFromTransactionData, type RecurringRuleControllerCreateFromTransactionResponse, type RecurringRuleControllerCreateResponse, type RecurringRuleControllerDeleteData, type RecurringRuleControllerDeleteResponse, type RecurringRuleControllerFindAllData, type RecurringRuleControllerFindAllResponse, type RecurringRuleControllerFindOneData, type RecurringRuleControllerFindOneResponse, type RecurringRuleControllerGetWithStatsData, type RecurringRuleControllerGetWithStatsResponse, type RecurringRuleControllerUpdateData, type RecurringRuleControllerUpdateResponse, type RecurringRuleResponseDto, type RecurringRuleWithStatsResponseDto, type RecurringSuggestionDto, type RegionConfigDto, type RegionInfoDto, type RegionsMetadataResponseDto, type ReopenAccountDto, type ReportingControllerBackfillSnapshotsData, type ReportingControllerBackfillSnapshotsResponse, type ReportingControllerGenerateSnapshotData, type ReportingControllerGenerateSnapshotResponse, type ReportingControllerGetCashFlowTrendsData, type ReportingControllerGetCashFlowTrendsResponse, type ReportingControllerGetPortfolioTrendsData, type ReportingControllerGetPortfolioTrendsResponse, type ResolveResultDto, type ResolveReviewDto, type ReviewControllerBatchResolveData, type ReviewControllerBatchResolveResponse, type ReviewControllerFindAllData, type ReviewControllerFindAllResponse, type ReviewControllerFindOneData, type ReviewControllerFindOneResponse, type ReviewControllerGetStatsData, type ReviewControllerGetStatsResponse, type ReviewControllerResolveData, type ReviewControllerResolveResponse, type ReviewControllerUndoData, type ReviewControllerUndoResponse, type ReviewDetailDto, type ReviewItemPreviewDto, type ReviewListResponseDto, type ReviewStatsDto, type ReviewSummaryDto, type RuleStatisticsResponseDto, type SignupDto, type SupportedProvidersResponseDto, type TagSuggestionDto, type TagSuggestionsResponseDto, type TelemetryControllerGetCoverageMetricsData, type TelemetryControllerGetCoverageMetricsResponse, type TelemetryControllerReportCoverageMissData, type TelemetryControllerReportCoverageMissResponse, type TelemetryControllerReportTelemetryData, type TelemetryControllerReportTelemetryResponse, type TemplateMetadataDto, type TemplateMetadataResponseDto, type TestRuleDto, type TestRuleResponseDto, type TimeSeriesPointDto, type TransactionControllerCorrectData, type TransactionControllerCorrectResponse, type TransactionControllerCreateBatchData, type TransactionControllerCreateBatchResponse, type TransactionControllerCreateData, type TransactionControllerCreateResponse, type TransactionControllerDeleteData, type TransactionControllerDeleteResponse, type TransactionControllerGetDetailData, type TransactionControllerGetDetailResponse, type TransactionControllerListData, type TransactionControllerListResponse, type TransactionControllerSuggestTagsData, type TransactionControllerSuggestTagsResponse, type TransactionControllerUpdateData, type TransactionControllerUpdateResponse, type TransactionDetailDto, type TransactionListResponseDto, type TransactionResponseDto, type TransactionRuleControllerBulkCreateData, type TransactionRuleControllerBulkCreateResponse, type TransactionRuleControllerCreateData, type TransactionRuleControllerCreateResponse, type TransactionRuleControllerDeleteData, type TransactionRuleControllerDeleteResponse, type TransactionRuleControllerExportData, type TransactionRuleControllerExportResponse, type TransactionRuleControllerGetDetailData, type TransactionRuleControllerGetDetailResponse, type TransactionRuleControllerGetStatisticsData, type TransactionRuleControllerGetStatisticsResponse, type TransactionRuleControllerListData, type TransactionRuleControllerListResponse, type TransactionRuleControllerTestData, type TransactionRuleControllerTestResponse, type TransactionRuleControllerUpdateData, type TransactionRuleControllerUpdateResponse, type TransactionRuleControllerValidateData, type TransactionRuleControllerValidateResponse, type TransactionRuleListResponseDto, type TransactionRuleResponseDto, type TransactionSummaryDto, type TrendSummaryDto, type UncoveredFormatMissDto, type UndoResultDto, type UpdateAccountDto, type UpdateBeanEventDto, type UpdateBeanPriceDto, type UpdateCommodityDto, type UpdateConfigDataDto, type UpdateImporterConfigDto, type UpdateMapperDefaultsDto, type UpdatePayeeDto, type UpdatePayeeProfileDto, type UpdatePlatformDto, type UpdatePropertyDto, type UpdateRecurringRuleDto, type UpdateTransactionDto, type UpdateTransactionRuleDto, type UpdateUserSettingDto, type UserControllerDeleteOwnUserData, type UserControllerDeleteOwnUserResponse, type UserControllerDeleteUserData, type UserControllerDeleteUserResponse, type UserControllerGetAllUserSettingsByPageData, type UserControllerGetAllUserSettingsByPageResponse, type UserControllerGetAssetLiabilitySummaryResponse, type UserControllerGetUserData, type UserControllerGetUserInfoData, type UserControllerGetUserInfoResponse, type UserControllerGetUserResponse, type UserControllerSignupUserData, type UserControllerSignupUserResponse, type UserControllerUpdateUserSettingData, type UserControllerUpdateUserSettingResponse, type ValidateRuleDto, type ValidateRuleResponseDto, type VersionedConfigDto, type action, type action2, type assetClass, type assetSubType, type bookingMethod, type branchType, type category, type chartToken, type colorScheme, type confidenceLevel, type conflictStrategy, type dataSource, type equitySubType, type flag, type flag2, type frequency, type importerId, type intent, type investmentAction, type learningSource, type liabilitySubType, type matchLogic, type method, type mode, type paymentSource, type period, type source, type source2, type source3, type status, type status2, type status3, type status4, type suggestedFrequency, type type, type type2, type type3, type type4, type value, type viewMode };
|