@firela/api-types 0.0.0-canary.8a8b3972 → 0.0.0-canary.8cbdced0
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 +61 -728
- package/dist/index.d.ts +61 -728
- package/dist/index.js +16 -71
- package/dist/index.mjs +16 -71
- package/package.json +1 -1
- package/src/generated/schemas.gen.ts +47 -818
- package/src/generated/services.gen.ts +20 -89
- package/src/generated/types.gen.ts +50 -734
package/dist/index.d.mts
CHANGED
|
@@ -413,6 +413,24 @@ type CreateTransactionDto = {
|
|
|
413
413
|
* Transaction flag: * (cleared), ! (pending)
|
|
414
414
|
*/
|
|
415
415
|
type flag = '*' | '!';
|
|
416
|
+
type CostDetailDto = {
|
|
417
|
+
/**
|
|
418
|
+
* Per-unit cost basis (mirrors engine Cost.number)
|
|
419
|
+
*/
|
|
420
|
+
number?: string;
|
|
421
|
+
/**
|
|
422
|
+
* Cost currency
|
|
423
|
+
*/
|
|
424
|
+
currency?: string;
|
|
425
|
+
/**
|
|
426
|
+
* Lot acquisition date (ISO yyyy-mm-dd)
|
|
427
|
+
*/
|
|
428
|
+
date?: string;
|
|
429
|
+
/**
|
|
430
|
+
* Lot label
|
|
431
|
+
*/
|
|
432
|
+
label?: string;
|
|
433
|
+
};
|
|
416
434
|
type PostingResponseDto = {
|
|
417
435
|
/**
|
|
418
436
|
* Account name
|
|
@@ -426,6 +444,10 @@ type PostingResponseDto = {
|
|
|
426
444
|
* Currency
|
|
427
445
|
*/
|
|
428
446
|
currency?: string;
|
|
447
|
+
/**
|
|
448
|
+
* Booking-resolved cost (mirrors engine Cost). Undefined when the posting has no cost basis.
|
|
449
|
+
*/
|
|
450
|
+
cost?: CostDetailDto;
|
|
429
451
|
};
|
|
430
452
|
type RecurringSuggestionDto = {
|
|
431
453
|
/**
|
|
@@ -646,6 +668,10 @@ type PostingDetailDto = {
|
|
|
646
668
|
* Cost date
|
|
647
669
|
*/
|
|
648
670
|
costDate?: string;
|
|
671
|
+
/**
|
|
672
|
+
* Booking-resolved cost (mirrors engine Cost). Undefined when the posting has no cost basis.
|
|
673
|
+
*/
|
|
674
|
+
cost?: CostDetailDto;
|
|
649
675
|
/**
|
|
650
676
|
* Price amount
|
|
651
677
|
*/
|
|
@@ -1146,17 +1172,17 @@ type ResolveResultDto = {
|
|
|
1146
1172
|
[key: string]: string;
|
|
1147
1173
|
};
|
|
1148
1174
|
/**
|
|
1149
|
-
* Resolution ID for undo
|
|
1175
|
+
* Resolution ID for undo. Absent when the resolver rejected the decision (review stayed PENDING).
|
|
1150
1176
|
*/
|
|
1151
|
-
resolutionId
|
|
1177
|
+
resolutionId?: string;
|
|
1152
1178
|
/**
|
|
1153
1179
|
* Whether this decision can be undone
|
|
1154
1180
|
*/
|
|
1155
|
-
canUndo
|
|
1181
|
+
canUndo?: boolean;
|
|
1156
1182
|
/**
|
|
1157
1183
|
* Deadline for undo (24h from resolution)
|
|
1158
1184
|
*/
|
|
1159
|
-
undoDeadline
|
|
1185
|
+
undoDeadline?: string;
|
|
1160
1186
|
/**
|
|
1161
1187
|
* Rule ID if learning was triggered (ACCEPT_AND_LEARN actions). Use this to deep-link to the rule management page.
|
|
1162
1188
|
*/
|
|
@@ -3011,32 +3037,6 @@ type ProviderSyncDto = {
|
|
|
3011
3037
|
*/
|
|
3012
3038
|
transactions: unknown[];
|
|
3013
3039
|
};
|
|
3014
|
-
type ProviderSyncResponseDto = {
|
|
3015
|
-
/**
|
|
3016
|
-
* Number of transactions successfully imported
|
|
3017
|
-
*/
|
|
3018
|
-
imported: number;
|
|
3019
|
-
/**
|
|
3020
|
-
* Number of transactions skipped (duplicates)
|
|
3021
|
-
*/
|
|
3022
|
-
skipped: number;
|
|
3023
|
-
/**
|
|
3024
|
-
* Number of transactions pending review
|
|
3025
|
-
*/
|
|
3026
|
-
pendingReview: number;
|
|
3027
|
-
/**
|
|
3028
|
-
* Number of transactions that failed to import
|
|
3029
|
-
*/
|
|
3030
|
-
failed: number;
|
|
3031
|
-
/**
|
|
3032
|
-
* IDs of successfully imported transactions
|
|
3033
|
-
*/
|
|
3034
|
-
importedTransactionIds?: Array<string>;
|
|
3035
|
-
/**
|
|
3036
|
-
* IDs of review items created for branched transactions
|
|
3037
|
-
*/
|
|
3038
|
-
reviewItemIds?: Array<string>;
|
|
3039
|
-
};
|
|
3040
3040
|
type SupportedProvidersResponseDto = {
|
|
3041
3041
|
/**
|
|
3042
3042
|
* List of supported provider names
|
|
@@ -3061,523 +3061,6 @@ type ProcessNlpDto = {
|
|
|
3061
3061
|
[key: string]: unknown;
|
|
3062
3062
|
};
|
|
3063
3063
|
};
|
|
3064
|
-
type NlpTransactionInfoDto = {
|
|
3065
|
-
/**
|
|
3066
|
-
* Transaction ID
|
|
3067
|
-
*/
|
|
3068
|
-
id: string;
|
|
3069
|
-
/**
|
|
3070
|
-
* Transaction date (ISO format)
|
|
3071
|
-
*/
|
|
3072
|
-
date: string;
|
|
3073
|
-
/**
|
|
3074
|
-
* Transaction amount
|
|
3075
|
-
*/
|
|
3076
|
-
amount: number;
|
|
3077
|
-
/**
|
|
3078
|
-
* Currency code
|
|
3079
|
-
*/
|
|
3080
|
-
currency: string;
|
|
3081
|
-
/**
|
|
3082
|
-
* Payee name
|
|
3083
|
-
*/
|
|
3084
|
-
payee?: string;
|
|
3085
|
-
/**
|
|
3086
|
-
* Transaction narration
|
|
3087
|
-
*/
|
|
3088
|
-
narration?: string;
|
|
3089
|
-
/**
|
|
3090
|
-
* Warning message for special transaction scenarios (e.g., cross-currency settlement)
|
|
3091
|
-
*/
|
|
3092
|
-
warning?: string;
|
|
3093
|
-
};
|
|
3094
|
-
type NlpParsedDataDto = {
|
|
3095
|
-
/**
|
|
3096
|
-
* Extracted amount
|
|
3097
|
-
*/
|
|
3098
|
-
amount?: number;
|
|
3099
|
-
/**
|
|
3100
|
-
* Currency code
|
|
3101
|
-
*/
|
|
3102
|
-
currency?: string;
|
|
3103
|
-
/**
|
|
3104
|
-
* Transaction date (ISO format)
|
|
3105
|
-
*/
|
|
3106
|
-
date?: string;
|
|
3107
|
-
/**
|
|
3108
|
-
* Payee name
|
|
3109
|
-
*/
|
|
3110
|
-
payee?: string;
|
|
3111
|
-
/**
|
|
3112
|
-
* Transaction narration
|
|
3113
|
-
*/
|
|
3114
|
-
narration?: string;
|
|
3115
|
-
/**
|
|
3116
|
-
* Category
|
|
3117
|
-
*/
|
|
3118
|
-
category?: string;
|
|
3119
|
-
/**
|
|
3120
|
-
* Income type (e.g., Salary, Bonus, Dividend, Interest)
|
|
3121
|
-
*/
|
|
3122
|
-
incomeType?: string;
|
|
3123
|
-
/**
|
|
3124
|
-
* Income source (e.g., company name)
|
|
3125
|
-
*/
|
|
3126
|
-
incomeSource?: string;
|
|
3127
|
-
/**
|
|
3128
|
-
* Security symbol code (e.g., 600519, AAPL)
|
|
3129
|
-
*/
|
|
3130
|
-
symbol?: string;
|
|
3131
|
-
/**
|
|
3132
|
-
* Quantity of shares/units
|
|
3133
|
-
*/
|
|
3134
|
-
quantity?: number;
|
|
3135
|
-
/**
|
|
3136
|
-
* Unit price per share/unit
|
|
3137
|
-
*/
|
|
3138
|
-
price?: number;
|
|
3139
|
-
/**
|
|
3140
|
-
* Investment action
|
|
3141
|
-
*/
|
|
3142
|
-
investmentAction?: 'buy' | 'sell';
|
|
3143
|
-
/**
|
|
3144
|
-
* Payment source: asset (default) or liability (credit card)
|
|
3145
|
-
*/
|
|
3146
|
-
paymentSource?: 'asset' | 'liability';
|
|
3147
|
-
/**
|
|
3148
|
-
* Liability account hint (CreditCard/Huabei/Baitiao)
|
|
3149
|
-
*/
|
|
3150
|
-
liabilityHint?: string;
|
|
3151
|
-
/**
|
|
3152
|
-
* Warning message for special scenarios (e.g., cross-currency settlement)
|
|
3153
|
-
*/
|
|
3154
|
-
warning?: string;
|
|
3155
|
-
};
|
|
3156
|
-
/**
|
|
3157
|
-
* Investment action
|
|
3158
|
-
*/
|
|
3159
|
-
type investmentAction = 'buy' | 'sell';
|
|
3160
|
-
/**
|
|
3161
|
-
* Payment source: asset (default) or liability (credit card)
|
|
3162
|
-
*/
|
|
3163
|
-
type paymentSource = 'asset' | 'liability';
|
|
3164
|
-
type NlpSourceTransactionDto = {
|
|
3165
|
-
/**
|
|
3166
|
-
* Transaction date (ISO format)
|
|
3167
|
-
*/
|
|
3168
|
-
date: string;
|
|
3169
|
-
/**
|
|
3170
|
-
* Amount as string
|
|
3171
|
-
*/
|
|
3172
|
-
amount: string;
|
|
3173
|
-
/**
|
|
3174
|
-
* Currency code
|
|
3175
|
-
*/
|
|
3176
|
-
currency: string;
|
|
3177
|
-
/**
|
|
3178
|
-
* Payee name
|
|
3179
|
-
*/
|
|
3180
|
-
payee?: string;
|
|
3181
|
-
/**
|
|
3182
|
-
* Transaction narration
|
|
3183
|
-
*/
|
|
3184
|
-
narration: string;
|
|
3185
|
-
};
|
|
3186
|
-
type NlpTargetTransactionDto = {
|
|
3187
|
-
/**
|
|
3188
|
-
* Existing transaction ID
|
|
3189
|
-
*/
|
|
3190
|
-
id: string;
|
|
3191
|
-
/**
|
|
3192
|
-
* Transaction date (ISO format)
|
|
3193
|
-
*/
|
|
3194
|
-
date: string;
|
|
3195
|
-
/**
|
|
3196
|
-
* Amount as string
|
|
3197
|
-
*/
|
|
3198
|
-
amount: string;
|
|
3199
|
-
/**
|
|
3200
|
-
* Currency code
|
|
3201
|
-
*/
|
|
3202
|
-
currency: string;
|
|
3203
|
-
/**
|
|
3204
|
-
* Payee name
|
|
3205
|
-
*/
|
|
3206
|
-
payee?: string;
|
|
3207
|
-
/**
|
|
3208
|
-
* Transaction narration
|
|
3209
|
-
*/
|
|
3210
|
-
narration: string;
|
|
3211
|
-
};
|
|
3212
|
-
type NlpSimilarityDto = {
|
|
3213
|
-
/**
|
|
3214
|
-
* Whether dates match
|
|
3215
|
-
*/
|
|
3216
|
-
dateMatch: boolean;
|
|
3217
|
-
/**
|
|
3218
|
-
* Date difference in days
|
|
3219
|
-
*/
|
|
3220
|
-
dateDiff: number;
|
|
3221
|
-
/**
|
|
3222
|
-
* Whether amounts match
|
|
3223
|
-
*/
|
|
3224
|
-
amountMatch: boolean;
|
|
3225
|
-
/**
|
|
3226
|
-
* Amount difference as decimal string
|
|
3227
|
-
*/
|
|
3228
|
-
amountDiff: string;
|
|
3229
|
-
/**
|
|
3230
|
-
* Whether payees match
|
|
3231
|
-
*/
|
|
3232
|
-
payeeMatch: boolean;
|
|
3233
|
-
/**
|
|
3234
|
-
* Payee similarity score (0-1)
|
|
3235
|
-
*/
|
|
3236
|
-
payeeSimilarity: number;
|
|
3237
|
-
/**
|
|
3238
|
-
* Account overlap score (0-1)
|
|
3239
|
-
*/
|
|
3240
|
-
accountOverlap: number;
|
|
3241
|
-
};
|
|
3242
|
-
type NlpDuplicateConfirmationDataDto = {
|
|
3243
|
-
/**
|
|
3244
|
-
* Duplicate detection confidence score (0.5-0.89)
|
|
3245
|
-
*/
|
|
3246
|
-
confidence: number;
|
|
3247
|
-
/**
|
|
3248
|
-
* Source transaction summary (the new transaction being entered)
|
|
3249
|
-
*/
|
|
3250
|
-
sourceTransaction: NlpSourceTransactionDto;
|
|
3251
|
-
/**
|
|
3252
|
-
* Target transaction summary (existing potential duplicate)
|
|
3253
|
-
*/
|
|
3254
|
-
targetTransaction: NlpTargetTransactionDto;
|
|
3255
|
-
/**
|
|
3256
|
-
* Detailed similarity information
|
|
3257
|
-
*/
|
|
3258
|
-
similarity: NlpSimilarityDto;
|
|
3259
|
-
/**
|
|
3260
|
-
* Human-readable reasons for duplicate detection
|
|
3261
|
-
*/
|
|
3262
|
-
reasons: Array<string>;
|
|
3263
|
-
};
|
|
3264
|
-
type NlpRuleConfirmationDataDto = {
|
|
3265
|
-
/**
|
|
3266
|
-
* Rule match confidence score (0.5-0.74)
|
|
3267
|
-
*/
|
|
3268
|
-
confidence: number;
|
|
3269
|
-
/**
|
|
3270
|
-
* Matched rule information
|
|
3271
|
-
*/
|
|
3272
|
-
matchedRule: {
|
|
3273
|
-
[key: string]: unknown;
|
|
3274
|
-
};
|
|
3275
|
-
/**
|
|
3276
|
-
* Suggested accounts from the rule
|
|
3277
|
-
*/
|
|
3278
|
-
suggestedAccounts: {
|
|
3279
|
-
[key: string]: unknown;
|
|
3280
|
-
};
|
|
3281
|
-
/**
|
|
3282
|
-
* Alternative rules that also match
|
|
3283
|
-
*/
|
|
3284
|
-
alternatives: unknown[];
|
|
3285
|
-
/**
|
|
3286
|
-
* Human-readable reasons for the match
|
|
3287
|
-
*/
|
|
3288
|
-
reasons: Array<string>;
|
|
3289
|
-
};
|
|
3290
|
-
type NlpAccountConfirmationDataDto = {
|
|
3291
|
-
/**
|
|
3292
|
-
* The invalid account name
|
|
3293
|
-
*/
|
|
3294
|
-
invalidAccount: string;
|
|
3295
|
-
/**
|
|
3296
|
-
* Suggested replacement account
|
|
3297
|
-
*/
|
|
3298
|
-
suggestedAccount: string;
|
|
3299
|
-
/**
|
|
3300
|
-
* Similar accounts for user selection
|
|
3301
|
-
*/
|
|
3302
|
-
similarAccounts: Array<string>;
|
|
3303
|
-
/**
|
|
3304
|
-
* Error message explaining the issue
|
|
3305
|
-
*/
|
|
3306
|
-
errorMessage: string;
|
|
3307
|
-
/**
|
|
3308
|
-
* Transaction context for reference
|
|
3309
|
-
*/
|
|
3310
|
-
transactionContext: {
|
|
3311
|
-
[key: string]: unknown;
|
|
3312
|
-
};
|
|
3313
|
-
};
|
|
3314
|
-
type NlpSuggestedPayeeDto = {
|
|
3315
|
-
/**
|
|
3316
|
-
* Payee ID
|
|
3317
|
-
*/
|
|
3318
|
-
id: string;
|
|
3319
|
-
/**
|
|
3320
|
-
* Payee name
|
|
3321
|
-
*/
|
|
3322
|
-
name: string;
|
|
3323
|
-
/**
|
|
3324
|
-
* Payee category
|
|
3325
|
-
*/
|
|
3326
|
-
category?: string;
|
|
3327
|
-
/**
|
|
3328
|
-
* Source of the payee
|
|
3329
|
-
*/
|
|
3330
|
-
source?: 'user' | 'global';
|
|
3331
|
-
/**
|
|
3332
|
-
* PayeeProfile ID (if matched from global)
|
|
3333
|
-
*/
|
|
3334
|
-
payeeProfileId?: string;
|
|
3335
|
-
};
|
|
3336
|
-
/**
|
|
3337
|
-
* Source of the payee
|
|
3338
|
-
*/
|
|
3339
|
-
type source = 'user' | 'global';
|
|
3340
|
-
type NlpAlternativePayeeDto = {
|
|
3341
|
-
/**
|
|
3342
|
-
* Payee ID
|
|
3343
|
-
*/
|
|
3344
|
-
id: string;
|
|
3345
|
-
/**
|
|
3346
|
-
* Payee name
|
|
3347
|
-
*/
|
|
3348
|
-
name: string;
|
|
3349
|
-
/**
|
|
3350
|
-
* Similarity score (0-1)
|
|
3351
|
-
*/
|
|
3352
|
-
similarity: number;
|
|
3353
|
-
};
|
|
3354
|
-
type NlpPayeeConfirmationDataDto = {
|
|
3355
|
-
/**
|
|
3356
|
-
* Confidence score for the payee match (0-1)
|
|
3357
|
-
*/
|
|
3358
|
-
confidence: number;
|
|
3359
|
-
/**
|
|
3360
|
-
* Original payee string from user input
|
|
3361
|
-
*/
|
|
3362
|
-
originalPayee: string;
|
|
3363
|
-
/**
|
|
3364
|
-
* Suggested payee to use (null when no similar payees found)
|
|
3365
|
-
*/
|
|
3366
|
-
suggestedPayee?: NlpSuggestedPayeeDto | null;
|
|
3367
|
-
/**
|
|
3368
|
-
* Similarity score between original and suggested (0-1)
|
|
3369
|
-
*/
|
|
3370
|
-
similarity: number;
|
|
3371
|
-
/**
|
|
3372
|
-
* Alternative payee options
|
|
3373
|
-
*/
|
|
3374
|
-
alternatives: Array<NlpAlternativePayeeDto>;
|
|
3375
|
-
/**
|
|
3376
|
-
* Human-readable reasons for the match
|
|
3377
|
-
*/
|
|
3378
|
-
reasons: Array<string>;
|
|
3379
|
-
};
|
|
3380
|
-
type RecurringMatchInfoDto = {
|
|
3381
|
-
/**
|
|
3382
|
-
* Expected transaction ID
|
|
3383
|
-
*/
|
|
3384
|
-
expectedId: string;
|
|
3385
|
-
/**
|
|
3386
|
-
* Recurring rule ID
|
|
3387
|
-
*/
|
|
3388
|
-
ruleId: string;
|
|
3389
|
-
/**
|
|
3390
|
-
* Rule name for display
|
|
3391
|
-
*/
|
|
3392
|
-
ruleName: string;
|
|
3393
|
-
/**
|
|
3394
|
-
* Rule icon
|
|
3395
|
-
*/
|
|
3396
|
-
ruleIcon?: string;
|
|
3397
|
-
/**
|
|
3398
|
-
* Expected date (YYYY-MM-DD)
|
|
3399
|
-
*/
|
|
3400
|
-
expectedDate: string;
|
|
3401
|
-
/**
|
|
3402
|
-
* Expected amount
|
|
3403
|
-
*/
|
|
3404
|
-
expectedAmount: number;
|
|
3405
|
-
/**
|
|
3406
|
-
* Match confidence score (0-1)
|
|
3407
|
-
*/
|
|
3408
|
-
confidence: number;
|
|
3409
|
-
/**
|
|
3410
|
-
* Whether auto-matched (confidence >= 0.82)
|
|
3411
|
-
*/
|
|
3412
|
-
isAutoMatched: boolean;
|
|
3413
|
-
};
|
|
3414
|
-
type NlpSuggestedAccountDto = {
|
|
3415
|
-
/**
|
|
3416
|
-
* Suggested account path
|
|
3417
|
-
*/
|
|
3418
|
-
account: string;
|
|
3419
|
-
/**
|
|
3420
|
-
* Confidence score for this suggestion (0-1)
|
|
3421
|
-
*/
|
|
3422
|
-
confidence?: number;
|
|
3423
|
-
};
|
|
3424
|
-
type NlpSuggestedAccountsDto = {
|
|
3425
|
-
/**
|
|
3426
|
-
* Source account suggestion (where money comes from). For expense: asset/liability account. For income: income account.
|
|
3427
|
-
*/
|
|
3428
|
-
source?: NlpSuggestedAccountDto;
|
|
3429
|
-
/**
|
|
3430
|
-
* Destination account suggestion (where money goes to). For expense: expense account. For income: asset/liability account.
|
|
3431
|
-
*/
|
|
3432
|
-
destination?: NlpSuggestedAccountDto;
|
|
3433
|
-
};
|
|
3434
|
-
type NlpDefaultAccountsDto = {
|
|
3435
|
-
/**
|
|
3436
|
-
* Default asset account
|
|
3437
|
-
*/
|
|
3438
|
-
asset: string;
|
|
3439
|
-
/**
|
|
3440
|
-
* Default expense account
|
|
3441
|
-
*/
|
|
3442
|
-
expense: string;
|
|
3443
|
-
/**
|
|
3444
|
-
* Default income account
|
|
3445
|
-
*/
|
|
3446
|
-
income: string;
|
|
3447
|
-
/**
|
|
3448
|
-
* Default liability account
|
|
3449
|
-
*/
|
|
3450
|
-
liability: string;
|
|
3451
|
-
};
|
|
3452
|
-
type NlpResponseDto = {
|
|
3453
|
-
/**
|
|
3454
|
-
* Response status
|
|
3455
|
-
*/
|
|
3456
|
-
status: 'success' | 'pending' | 'error';
|
|
3457
|
-
/**
|
|
3458
|
-
* Action taken or requested
|
|
3459
|
-
*/
|
|
3460
|
-
action: 'created' | 'ask' | 'confirm' | 'confirm_duplicate' | 'confirm_rule' | 'confirm_account' | 'confirm_payee' | 'cancel';
|
|
3461
|
-
/**
|
|
3462
|
-
* Transaction intent detected by EntityRouter (v6.0: 5 core intents). Frontend uses this to render scenario-specific form fields.
|
|
3463
|
-
*/
|
|
3464
|
-
intent?: 'expense' | 'asset' | 'income' | 'liability' | 'equity';
|
|
3465
|
-
/**
|
|
3466
|
-
* Asset sub-type (only present when intent is "asset"). Determines which asset-related form to render.
|
|
3467
|
-
*/
|
|
3468
|
-
assetSubType?: 'transfer' | 'banking' | 'investment';
|
|
3469
|
-
/**
|
|
3470
|
-
* Liability sub-type (only present when intent is "liability"). borrow: borrowing money (Liabilities → Assets), repay: repaying debt (Assets → Liabilities).
|
|
3471
|
-
*/
|
|
3472
|
-
liabilitySubType?: 'borrow' | 'repay';
|
|
3473
|
-
/**
|
|
3474
|
-
* Equity sub-type (only present when intent is "equity"). opening: account opening balance (Equity → Assets), adjustment: balance correction.
|
|
3475
|
-
*/
|
|
3476
|
-
equitySubType?: 'opening' | 'adjustment';
|
|
3477
|
-
/**
|
|
3478
|
-
* Payment source for expense transactions (v6.1). Indicates whether payment comes from asset or liability account. Only present when intent is "expense".
|
|
3479
|
-
*/
|
|
3480
|
-
paymentSource?: 'asset' | 'liability';
|
|
3481
|
-
/**
|
|
3482
|
-
* Liability account type hint for credit card/BNPL spending (v6.1). Only present when paymentSource is "liability". Values: CreditCard, Huabei, Baitiao
|
|
3483
|
-
*/
|
|
3484
|
-
liabilityHint?: string;
|
|
3485
|
-
/**
|
|
3486
|
-
* Human-readable message (for ask or error actions). Deprecated: Use messageKey for i18n support.
|
|
3487
|
-
* @deprecated
|
|
3488
|
-
*/
|
|
3489
|
-
message?: string;
|
|
3490
|
-
/**
|
|
3491
|
-
* i18n message key for frontend translation. Use this instead of message for internationalization support.
|
|
3492
|
-
*/
|
|
3493
|
-
messageKey?: string;
|
|
3494
|
-
/**
|
|
3495
|
-
* Parameters for message interpolation. Used with messageKey for dynamic values in translated messages.
|
|
3496
|
-
*/
|
|
3497
|
-
messageParams?: {
|
|
3498
|
-
[key: string]: unknown;
|
|
3499
|
-
};
|
|
3500
|
-
/**
|
|
3501
|
-
* Session ID for multi-turn dialogue. Must be included in subsequent requests to continue the conversation.
|
|
3502
|
-
*/
|
|
3503
|
-
sessionId?: string;
|
|
3504
|
-
/**
|
|
3505
|
-
* Which slot is waiting for user input
|
|
3506
|
-
*/
|
|
3507
|
-
waitingFor?: string;
|
|
3508
|
-
/**
|
|
3509
|
-
* Created transaction info (for created action)
|
|
3510
|
-
*/
|
|
3511
|
-
transaction?: NlpTransactionInfoDto;
|
|
3512
|
-
/**
|
|
3513
|
-
* Parsed data for confirmation (when action is "confirm"). Contains extracted fields that user should verify before transaction creation.
|
|
3514
|
-
*/
|
|
3515
|
-
parsedData?: NlpParsedDataDto;
|
|
3516
|
-
/**
|
|
3517
|
-
* Duplicate detection data (when action is "confirm_duplicate"). Contains information about potential duplicate transaction for user confirmation.
|
|
3518
|
-
*/
|
|
3519
|
-
duplicateData?: NlpDuplicateConfirmationDataDto;
|
|
3520
|
-
/**
|
|
3521
|
-
* Rule match data (when action is "confirm_rule"). Contains information about medium-confidence rule match for user confirmation.
|
|
3522
|
-
*/
|
|
3523
|
-
ruleData?: NlpRuleConfirmationDataDto;
|
|
3524
|
-
/**
|
|
3525
|
-
* Account validation data (when action is "confirm_account"). Contains information about invalid account for user correction.
|
|
3526
|
-
*/
|
|
3527
|
-
accountData?: NlpAccountConfirmationDataDto;
|
|
3528
|
-
/**
|
|
3529
|
-
* Payee confirmation data (when action is "confirm_payee"). Contains information about medium/low confidence payee match for user confirmation.
|
|
3530
|
-
*/
|
|
3531
|
-
payeeData?: NlpPayeeConfirmationDataDto;
|
|
3532
|
-
/**
|
|
3533
|
-
* Overall confidence score (0-1)
|
|
3534
|
-
*/
|
|
3535
|
-
confidence?: number;
|
|
3536
|
-
/**
|
|
3537
|
-
* Confidence threshold for automatic creation (default: 0.75). When confidence < threshold, action will be "confirm" requiring user verification.
|
|
3538
|
-
*/
|
|
3539
|
-
confidenceThreshold?: number;
|
|
3540
|
-
/**
|
|
3541
|
-
* Recurring transaction match info (when action is "created"). Contains match details when transaction matches a pending expected transaction.
|
|
3542
|
-
*/
|
|
3543
|
-
recurringMatch?: RecurringMatchInfoDto;
|
|
3544
|
-
/**
|
|
3545
|
-
* 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.
|
|
3546
|
-
*/
|
|
3547
|
-
recurringSuggestion?: RecurringSuggestionDto;
|
|
3548
|
-
/**
|
|
3549
|
-
* Suggested accounts for this transaction. Contains recommended source and destination accounts based on the detected intent and rules.
|
|
3550
|
-
*/
|
|
3551
|
-
suggestedAccounts?: NlpSuggestedAccountsDto;
|
|
3552
|
-
/**
|
|
3553
|
-
* Default accounts for the user/region. These are fallback accounts used when no specific suggestion is available.
|
|
3554
|
-
*/
|
|
3555
|
-
defaultAccounts?: NlpDefaultAccountsDto;
|
|
3556
|
-
};
|
|
3557
|
-
/**
|
|
3558
|
-
* Response status
|
|
3559
|
-
*/
|
|
3560
|
-
type status4 = 'success' | 'pending' | 'error';
|
|
3561
|
-
/**
|
|
3562
|
-
* Action taken or requested
|
|
3563
|
-
*/
|
|
3564
|
-
type action2 = 'created' | 'ask' | 'confirm' | 'confirm_duplicate' | 'confirm_rule' | 'confirm_account' | 'confirm_payee' | 'cancel';
|
|
3565
|
-
/**
|
|
3566
|
-
* Transaction intent detected by EntityRouter (v6.0: 5 core intents). Frontend uses this to render scenario-specific form fields.
|
|
3567
|
-
*/
|
|
3568
|
-
type intent = 'expense' | 'asset' | 'income' | 'liability' | 'equity';
|
|
3569
|
-
/**
|
|
3570
|
-
* Asset sub-type (only present when intent is "asset"). Determines which asset-related form to render.
|
|
3571
|
-
*/
|
|
3572
|
-
type assetSubType = 'transfer' | 'banking' | 'investment';
|
|
3573
|
-
/**
|
|
3574
|
-
* Liability sub-type (only present when intent is "liability"). borrow: borrowing money (Liabilities → Assets), repay: repaying debt (Assets → Liabilities).
|
|
3575
|
-
*/
|
|
3576
|
-
type liabilitySubType = 'borrow' | 'repay';
|
|
3577
|
-
/**
|
|
3578
|
-
* Equity sub-type (only present when intent is "equity"). opening: account opening balance (Equity → Assets), adjustment: balance correction.
|
|
3579
|
-
*/
|
|
3580
|
-
type equitySubType = 'opening' | 'adjustment';
|
|
3581
3064
|
type BalanceByCurrencyDto = {
|
|
3582
3065
|
/**
|
|
3583
3066
|
* ISO 4217 currency code
|
|
@@ -3787,7 +3270,7 @@ type AccountItemWithAssetClassDto = {
|
|
|
3787
3270
|
/**
|
|
3788
3271
|
* ADR-0105 classification provenance (holding level always; account level only on FALLBACK)
|
|
3789
3272
|
*/
|
|
3790
|
-
type
|
|
3273
|
+
type source = 'USER_META' | 'FIAT_CURRENCY' | 'OPENBB_MAPPING' | 'FALLBACK';
|
|
3791
3274
|
type AssetClassGroupDto = {
|
|
3792
3275
|
/**
|
|
3793
3276
|
* Asset class name
|
|
@@ -4027,7 +3510,7 @@ type CurrentPriceDto = {
|
|
|
4027
3510
|
/**
|
|
4028
3511
|
* Price source
|
|
4029
3512
|
*/
|
|
4030
|
-
type
|
|
3513
|
+
type source2 = 'USER_OVERRIDE' | 'OPENBB_EQUITY' | 'OPENBB_CURRENCY';
|
|
4031
3514
|
type FxRateDto = {
|
|
4032
3515
|
from: string;
|
|
4033
3516
|
to: string;
|
|
@@ -4364,7 +3847,7 @@ type AccountControllerCreateData = {
|
|
|
4364
3847
|
region: 'cn' | 'us' | 'de' | 'gb';
|
|
4365
3848
|
requestBody: CreateAccountDto;
|
|
4366
3849
|
};
|
|
4367
|
-
type AccountControllerCreateResponse =
|
|
3850
|
+
type AccountControllerCreateResponse = unknown;
|
|
4368
3851
|
type AccountControllerFindAllData = {
|
|
4369
3852
|
/**
|
|
4370
3853
|
* Filter by custom (user-created) accounts only
|
|
@@ -4408,9 +3891,6 @@ type AccountControllerFindOneData = {
|
|
|
4408
3891
|
};
|
|
4409
3892
|
type AccountControllerFindOneResponse = AccountResponseDto;
|
|
4410
3893
|
type AccountControllerUpdateData = {
|
|
4411
|
-
/**
|
|
4412
|
-
* Account UUID
|
|
4413
|
-
*/
|
|
4414
3894
|
id: string;
|
|
4415
3895
|
/**
|
|
4416
3896
|
* Region code for tenant context
|
|
@@ -4418,22 +3898,16 @@ type AccountControllerUpdateData = {
|
|
|
4418
3898
|
region: 'cn' | 'us' | 'de' | 'gb';
|
|
4419
3899
|
requestBody: UpdateAccountDto;
|
|
4420
3900
|
};
|
|
4421
|
-
type AccountControllerUpdateResponse =
|
|
3901
|
+
type AccountControllerUpdateResponse = unknown;
|
|
4422
3902
|
type AccountControllerDeleteData = {
|
|
4423
|
-
/**
|
|
4424
|
-
* Account UUID
|
|
4425
|
-
*/
|
|
4426
3903
|
id: string;
|
|
4427
3904
|
/**
|
|
4428
3905
|
* Region code for tenant context
|
|
4429
3906
|
*/
|
|
4430
3907
|
region: 'cn' | 'us' | 'de' | 'gb';
|
|
4431
3908
|
};
|
|
4432
|
-
type AccountControllerDeleteResponse =
|
|
3909
|
+
type AccountControllerDeleteResponse = unknown;
|
|
4433
3910
|
type AccountControllerCloseData = {
|
|
4434
|
-
/**
|
|
4435
|
-
* Account UUID
|
|
4436
|
-
*/
|
|
4437
3911
|
id: string;
|
|
4438
3912
|
/**
|
|
4439
3913
|
* Region code for tenant context
|
|
@@ -4441,11 +3915,8 @@ type AccountControllerCloseData = {
|
|
|
4441
3915
|
region: 'cn' | 'us' | 'de' | 'gb';
|
|
4442
3916
|
requestBody: CloseAccountDto;
|
|
4443
3917
|
};
|
|
4444
|
-
type AccountControllerCloseResponse =
|
|
3918
|
+
type AccountControllerCloseResponse = unknown;
|
|
4445
3919
|
type AccountControllerReopenData = {
|
|
4446
|
-
/**
|
|
4447
|
-
* Account UUID
|
|
4448
|
-
*/
|
|
4449
3920
|
id: string;
|
|
4450
3921
|
/**
|
|
4451
3922
|
* Region code for tenant context
|
|
@@ -4453,7 +3924,7 @@ type AccountControllerReopenData = {
|
|
|
4453
3924
|
region: 'cn' | 'us' | 'de' | 'gb';
|
|
4454
3925
|
requestBody: ReopenAccountDto;
|
|
4455
3926
|
};
|
|
4456
|
-
type AccountControllerReopenResponse =
|
|
3927
|
+
type AccountControllerReopenResponse = unknown;
|
|
4457
3928
|
type AccountStandardsControllerGetTemplatesData = {
|
|
4458
3929
|
/**
|
|
4459
3930
|
* Region code (cn, us, de)
|
|
@@ -5324,24 +4795,12 @@ type FileImportControllerIdentifyFileData = {
|
|
|
5324
4795
|
};
|
|
5325
4796
|
type FileImportControllerIdentifyFileResponse = IdentifyResultDto;
|
|
5326
4797
|
type FileImportControllerImportBeancountData = {
|
|
5327
|
-
/**
|
|
5328
|
-
* Beancount file to import
|
|
5329
|
-
*/
|
|
5330
|
-
formData: FileImportDto;
|
|
5331
4798
|
/**
|
|
5332
4799
|
* Region code for tenant context
|
|
5333
4800
|
*/
|
|
5334
4801
|
region: 'cn' | 'us' | 'de' | 'gb';
|
|
5335
4802
|
};
|
|
5336
|
-
type FileImportControllerImportBeancountResponse =
|
|
5337
|
-
imported?: number;
|
|
5338
|
-
skipped?: number;
|
|
5339
|
-
failed?: number;
|
|
5340
|
-
accountsCreated?: number;
|
|
5341
|
-
errors?: Array<{
|
|
5342
|
-
[key: string]: unknown;
|
|
5343
|
-
}>;
|
|
5344
|
-
};
|
|
4803
|
+
type FileImportControllerImportBeancountResponse = unknown;
|
|
5345
4804
|
type ImporterConfigControllerGetConfigData = {
|
|
5346
4805
|
/**
|
|
5347
4806
|
* 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
|
|
@@ -5412,17 +4871,14 @@ type PlatformControllerDeleteData = {
|
|
|
5412
4871
|
};
|
|
5413
4872
|
type PlatformControllerDeleteResponse = void;
|
|
5414
4873
|
type ProviderSyncControllerSyncData = {
|
|
5415
|
-
|
|
5416
|
-
* Provider name
|
|
5417
|
-
*/
|
|
5418
|
-
providerName: 'plaid' | 'teller' | 'truelayer' | 'gocardless' | 'simplefin' | 'yodlee' | 'beancount-direct' | 'parsed-bill';
|
|
4874
|
+
providerName: string;
|
|
5419
4875
|
/**
|
|
5420
4876
|
* Region code for tenant context
|
|
5421
4877
|
*/
|
|
5422
4878
|
region: 'cn' | 'us' | 'de' | 'gb';
|
|
5423
4879
|
requestBody: ProviderSyncDto;
|
|
5424
4880
|
};
|
|
5425
|
-
type ProviderSyncControllerSyncResponse =
|
|
4881
|
+
type ProviderSyncControllerSyncResponse = unknown;
|
|
5426
4882
|
type ProviderSyncControllerGetSupportedProvidersData = {
|
|
5427
4883
|
/**
|
|
5428
4884
|
* Region code for tenant context
|
|
@@ -5473,12 +4929,9 @@ type NlpControllerProcessNaturalLanguageData = {
|
|
|
5473
4929
|
* Region code for tenant context
|
|
5474
4930
|
*/
|
|
5475
4931
|
region: 'cn' | 'us' | 'de' | 'gb';
|
|
5476
|
-
/**
|
|
5477
|
-
* Natural language transaction input with optional session ID
|
|
5478
|
-
*/
|
|
5479
4932
|
requestBody: ProcessNlpDto;
|
|
5480
4933
|
};
|
|
5481
|
-
type NlpControllerProcessNaturalLanguageResponse =
|
|
4934
|
+
type NlpControllerProcessNaturalLanguageResponse = unknown;
|
|
5482
4935
|
type NlpControllerClearSessionData = {
|
|
5483
4936
|
/**
|
|
5484
4937
|
* Region code for tenant context
|
|
@@ -5716,14 +5169,7 @@ type $OpenApiTs = {
|
|
|
5716
5169
|
post: {
|
|
5717
5170
|
req: AccountControllerCreateData;
|
|
5718
5171
|
res: {
|
|
5719
|
-
|
|
5720
|
-
* Account created successfully
|
|
5721
|
-
*/
|
|
5722
|
-
201: AccountResponseDto;
|
|
5723
|
-
/**
|
|
5724
|
-
* Account already exists
|
|
5725
|
-
*/
|
|
5726
|
-
409: unknown;
|
|
5172
|
+
201: unknown;
|
|
5727
5173
|
};
|
|
5728
5174
|
};
|
|
5729
5175
|
get: {
|
|
@@ -5753,31 +5199,13 @@ type $OpenApiTs = {
|
|
|
5753
5199
|
put: {
|
|
5754
5200
|
req: AccountControllerUpdateData;
|
|
5755
5201
|
res: {
|
|
5756
|
-
|
|
5757
|
-
* Account updated successfully
|
|
5758
|
-
*/
|
|
5759
|
-
200: AccountResponseDto;
|
|
5760
|
-
/**
|
|
5761
|
-
* Account not found
|
|
5762
|
-
*/
|
|
5763
|
-
404: unknown;
|
|
5202
|
+
200: unknown;
|
|
5764
5203
|
};
|
|
5765
5204
|
};
|
|
5766
5205
|
delete: {
|
|
5767
5206
|
req: AccountControllerDeleteData;
|
|
5768
5207
|
res: {
|
|
5769
|
-
|
|
5770
|
-
* Account deleted successfully
|
|
5771
|
-
*/
|
|
5772
|
-
204: void;
|
|
5773
|
-
/**
|
|
5774
|
-
* Account not found
|
|
5775
|
-
*/
|
|
5776
|
-
404: unknown;
|
|
5777
|
-
/**
|
|
5778
|
-
* Account has transactions and cannot be deleted
|
|
5779
|
-
*/
|
|
5780
|
-
409: unknown;
|
|
5208
|
+
200: unknown;
|
|
5781
5209
|
};
|
|
5782
5210
|
};
|
|
5783
5211
|
};
|
|
@@ -5785,18 +5213,7 @@ type $OpenApiTs = {
|
|
|
5785
5213
|
post: {
|
|
5786
5214
|
req: AccountControllerCloseData;
|
|
5787
5215
|
res: {
|
|
5788
|
-
|
|
5789
|
-
* Account closed successfully
|
|
5790
|
-
*/
|
|
5791
|
-
200: AccountResponseDto;
|
|
5792
|
-
/**
|
|
5793
|
-
* Account is already closed
|
|
5794
|
-
*/
|
|
5795
|
-
400: unknown;
|
|
5796
|
-
/**
|
|
5797
|
-
* Account not found
|
|
5798
|
-
*/
|
|
5799
|
-
404: unknown;
|
|
5216
|
+
201: unknown;
|
|
5800
5217
|
};
|
|
5801
5218
|
};
|
|
5802
5219
|
};
|
|
@@ -5804,18 +5221,7 @@ type $OpenApiTs = {
|
|
|
5804
5221
|
post: {
|
|
5805
5222
|
req: AccountControllerReopenData;
|
|
5806
5223
|
res: {
|
|
5807
|
-
|
|
5808
|
-
* Account reopened successfully
|
|
5809
|
-
*/
|
|
5810
|
-
200: AccountResponseDto;
|
|
5811
|
-
/**
|
|
5812
|
-
* Account is not closed
|
|
5813
|
-
*/
|
|
5814
|
-
400: unknown;
|
|
5815
|
-
/**
|
|
5816
|
-
* Account not found
|
|
5817
|
-
*/
|
|
5818
|
-
404: unknown;
|
|
5224
|
+
201: unknown;
|
|
5819
5225
|
};
|
|
5820
5226
|
};
|
|
5821
5227
|
};
|
|
@@ -7151,22 +6557,7 @@ type $OpenApiTs = {
|
|
|
7151
6557
|
post: {
|
|
7152
6558
|
req: FileImportControllerImportBeancountData;
|
|
7153
6559
|
res: {
|
|
7154
|
-
|
|
7155
|
-
* Beancount file imported successfully
|
|
7156
|
-
*/
|
|
7157
|
-
200: {
|
|
7158
|
-
imported?: number;
|
|
7159
|
-
skipped?: number;
|
|
7160
|
-
failed?: number;
|
|
7161
|
-
accountsCreated?: number;
|
|
7162
|
-
errors?: Array<{
|
|
7163
|
-
[key: string]: unknown;
|
|
7164
|
-
}>;
|
|
7165
|
-
};
|
|
7166
|
-
/**
|
|
7167
|
-
* Bad request - invalid file or no file uploaded
|
|
7168
|
-
*/
|
|
7169
|
-
400: ApiProblemResponseDto;
|
|
6560
|
+
201: unknown;
|
|
7170
6561
|
};
|
|
7171
6562
|
};
|
|
7172
6563
|
};
|
|
@@ -7297,22 +6688,7 @@ type $OpenApiTs = {
|
|
|
7297
6688
|
post: {
|
|
7298
6689
|
req: ProviderSyncControllerSyncData;
|
|
7299
6690
|
res: {
|
|
7300
|
-
|
|
7301
|
-
* Sync completed successfully
|
|
7302
|
-
*/
|
|
7303
|
-
200: ProviderSyncResponseDto;
|
|
7304
|
-
/**
|
|
7305
|
-
* Invalid request data
|
|
7306
|
-
*/
|
|
7307
|
-
400: unknown;
|
|
7308
|
-
/**
|
|
7309
|
-
* Missing or invalid authentication
|
|
7310
|
-
*/
|
|
7311
|
-
401: unknown;
|
|
7312
|
-
/**
|
|
7313
|
-
* Provider not supported
|
|
7314
|
-
*/
|
|
7315
|
-
404: unknown;
|
|
6691
|
+
201: unknown;
|
|
7316
6692
|
};
|
|
7317
6693
|
};
|
|
7318
6694
|
};
|
|
@@ -7391,18 +6767,7 @@ type $OpenApiTs = {
|
|
|
7391
6767
|
post: {
|
|
7392
6768
|
req: NlpControllerProcessNaturalLanguageData;
|
|
7393
6769
|
res: {
|
|
7394
|
-
|
|
7395
|
-
* NLP processing result - either created transaction or asking for more info
|
|
7396
|
-
*/
|
|
7397
|
-
200: NlpResponseDto;
|
|
7398
|
-
/**
|
|
7399
|
-
* Invalid input
|
|
7400
|
-
*/
|
|
7401
|
-
400: unknown;
|
|
7402
|
-
/**
|
|
7403
|
-
* Unauthorized
|
|
7404
|
-
*/
|
|
7405
|
-
401: unknown;
|
|
6770
|
+
201: unknown;
|
|
7406
6771
|
};
|
|
7407
6772
|
};
|
|
7408
6773
|
};
|
|
@@ -7815,12 +7180,10 @@ type $OpenApiTs = {
|
|
|
7815
7180
|
|
|
7816
7181
|
declare class BeanAccountsService {
|
|
7817
7182
|
/**
|
|
7818
|
-
* Create a new account
|
|
7819
|
-
* Creates a new account (Beancount Open directive)
|
|
7820
7183
|
* @param data The data for the request.
|
|
7821
7184
|
* @param data.region Region code for tenant context
|
|
7822
7185
|
* @param data.requestBody
|
|
7823
|
-
* @returns
|
|
7186
|
+
* @returns unknown
|
|
7824
7187
|
* @throws ApiError
|
|
7825
7188
|
*/
|
|
7826
7189
|
static accountControllerCreate(data: AccountControllerCreateData): CancelablePromise<AccountControllerCreateResponse>;
|
|
@@ -7850,45 +7213,37 @@ declare class BeanAccountsService {
|
|
|
7850
7213
|
*/
|
|
7851
7214
|
static accountControllerFindOne(data: AccountControllerFindOneData): CancelablePromise<AccountControllerFindOneResponse>;
|
|
7852
7215
|
/**
|
|
7853
|
-
* Update account
|
|
7854
|
-
* Updates account metadata (path cannot be changed)
|
|
7855
7216
|
* @param data The data for the request.
|
|
7856
|
-
* @param data.id
|
|
7217
|
+
* @param data.id
|
|
7857
7218
|
* @param data.region Region code for tenant context
|
|
7858
7219
|
* @param data.requestBody
|
|
7859
|
-
* @returns
|
|
7220
|
+
* @returns unknown
|
|
7860
7221
|
* @throws ApiError
|
|
7861
7222
|
*/
|
|
7862
7223
|
static accountControllerUpdate(data: AccountControllerUpdateData): CancelablePromise<AccountControllerUpdateResponse>;
|
|
7863
7224
|
/**
|
|
7864
|
-
* Delete account
|
|
7865
|
-
* Deletes an account (only if no transactions)
|
|
7866
7225
|
* @param data The data for the request.
|
|
7867
|
-
* @param data.id
|
|
7226
|
+
* @param data.id
|
|
7868
7227
|
* @param data.region Region code for tenant context
|
|
7869
|
-
* @returns
|
|
7228
|
+
* @returns unknown
|
|
7870
7229
|
* @throws ApiError
|
|
7871
7230
|
*/
|
|
7872
7231
|
static accountControllerDelete(data: AccountControllerDeleteData): CancelablePromise<AccountControllerDeleteResponse>;
|
|
7873
7232
|
/**
|
|
7874
|
-
* Close account
|
|
7875
|
-
* Closes an account (Beancount Close directive)
|
|
7876
7233
|
* @param data The data for the request.
|
|
7877
|
-
* @param data.id
|
|
7234
|
+
* @param data.id
|
|
7878
7235
|
* @param data.region Region code for tenant context
|
|
7879
7236
|
* @param data.requestBody
|
|
7880
|
-
* @returns
|
|
7237
|
+
* @returns unknown
|
|
7881
7238
|
* @throws ApiError
|
|
7882
7239
|
*/
|
|
7883
7240
|
static accountControllerClose(data: AccountControllerCloseData): CancelablePromise<AccountControllerCloseResponse>;
|
|
7884
7241
|
/**
|
|
7885
|
-
* Reopen account
|
|
7886
|
-
* Reopens a previously closed account
|
|
7887
7242
|
* @param data The data for the request.
|
|
7888
|
-
* @param data.id
|
|
7243
|
+
* @param data.id
|
|
7889
7244
|
* @param data.region Region code for tenant context
|
|
7890
7245
|
* @param data.requestBody
|
|
7891
|
-
* @returns
|
|
7246
|
+
* @returns unknown
|
|
7892
7247
|
* @throws ApiError
|
|
7893
7248
|
*/
|
|
7894
7249
|
static accountControllerReopen(data: AccountControllerReopenData): CancelablePromise<AccountControllerReopenResponse>;
|
|
@@ -8085,33 +7440,11 @@ declare class BeanCommoditiesService {
|
|
|
8085
7440
|
}
|
|
8086
7441
|
declare class ProviderSyncService {
|
|
8087
7442
|
/**
|
|
8088
|
-
* Sync transactions from financial data provider
|
|
8089
|
-
*
|
|
8090
|
-
* Accepts raw transactions from external financial data providers, transforms them to Beancount format, and processes them through the ingestion pipeline.
|
|
8091
|
-
*
|
|
8092
|
-
* **Supported Providers:**
|
|
8093
|
-
* - **plaid**: Plaid API (US, Canada, Europe)
|
|
8094
|
-
* - **teller**: Teller API (US)
|
|
8095
|
-
* - **truelayer**: TrueLayer Open Banking (UK, Europe)
|
|
8096
|
-
* - **gocardless**: GoCardless Bank Account Data (Europe)
|
|
8097
|
-
* - **simplefin**: SimpleFIN (Self-hosted)
|
|
8098
|
-
* - **yodlee**: Yodlee (Global)
|
|
8099
|
-
* - **beancount-direct**: Beancount format transactions
|
|
8100
|
-
* - **parsed-bill**: Client-side parsed bill transactions
|
|
8101
|
-
*
|
|
8102
|
-
* **Processing Flow:**
|
|
8103
|
-
* 1. Transform raw data via provider adapter
|
|
8104
|
-
* 2. Validate transaction format
|
|
8105
|
-
* 3. Deduplicate using originalId
|
|
8106
|
-
* 4. Classify using rule engine
|
|
8107
|
-
* 5. Route low-confidence to Review Center
|
|
8108
|
-
* 6. Persist validated transactions
|
|
8109
|
-
*
|
|
8110
7443
|
* @param data The data for the request.
|
|
8111
|
-
* @param data.providerName
|
|
7444
|
+
* @param data.providerName
|
|
8112
7445
|
* @param data.region Region code for tenant context
|
|
8113
7446
|
* @param data.requestBody
|
|
8114
|
-
* @returns
|
|
7447
|
+
* @returns unknown
|
|
8115
7448
|
* @throws ApiError
|
|
8116
7449
|
*/
|
|
8117
7450
|
static providerSyncControllerSync(data: ProviderSyncControllerSyncData): CancelablePromise<ProviderSyncControllerSyncResponse>;
|
|
@@ -8222,4 +7555,4 @@ type OpenAPIConfig = {
|
|
|
8222
7555
|
};
|
|
8223
7556
|
declare const OpenAPI: OpenAPIConfig;
|
|
8224
7557
|
|
|
8225
|
-
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 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 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 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 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 };
|
|
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 };
|