@firela/api-types 0.0.0-canary.2d71872c → 0.0.0-canary.2e2a26ba
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 +1112 -841
- package/dist/index.d.ts +1112 -841
- package/package.json +1 -1
- package/src/generated/schemas.gen.ts +926 -613
- package/src/generated/services.gen.ts +496 -442
- package/src/generated/types.gen.ts +1276 -917
package/dist/index.d.mts
CHANGED
|
@@ -78,6 +78,10 @@ type AccountResponseDto = {
|
|
|
78
78
|
* Account type (root segment)
|
|
79
79
|
*/
|
|
80
80
|
type: 'Assets' | 'Liabilities' | 'Income' | 'Expenses' | 'Equity';
|
|
81
|
+
/**
|
|
82
|
+
* Account-level asset sub-class (product type, e.g. STOCK/DEPOSIT/CREDIT_CARD/PERSONAL_LOAN). Computed from the account path via the asset-classifier (ADR-0077). Null for non-asset accounts (Income/Expenses/Equity) or unmatched paths.
|
|
83
|
+
*/
|
|
84
|
+
assetSubClass?: 'DEPOSIT' | 'CASH' | 'MONEY_MARKET_FUND' | 'STOCK' | 'ETF' | 'MUTUAL_FUND' | 'EQUITY_COMPENSATION' | 'GOVERNMENT_BOND' | 'CORPORATE_BOND' | 'BOND_FUND' | 'PRIMARY_RESIDENCE' | 'INVESTMENT_PROPERTY' | 'REIT' | 'GOLD' | 'SILVER' | 'PRECIOUS_METAL' | 'PRECIOUS_METAL_FUND' | 'COMMODITY' | 'COMMODITY_FUND' | 'CRYPTOCURRENCY' | 'RETIREMENT_ACCOUNT' | 'HEALTH_ACCOUNT' | 'EDUCATION_ACCOUNT' | 'INSURANCE' | 'PRIVATE_EQUITY' | 'HEDGE_FUND' | 'COLLECTIBLES' | 'MORTGAGE' | 'STUDENT_LOAN' | 'CREDIT_CARD' | 'PERSONAL_LOAN' | 'OTHER' | null;
|
|
81
85
|
/**
|
|
82
86
|
* Account status
|
|
83
87
|
*/
|
|
@@ -145,6 +149,10 @@ type AccountResponseDto = {
|
|
|
145
149
|
* Account type (root segment)
|
|
146
150
|
*/
|
|
147
151
|
type type = 'Assets' | 'Liabilities' | 'Income' | 'Expenses' | 'Equity';
|
|
152
|
+
/**
|
|
153
|
+
* Account-level asset sub-class (product type, e.g. STOCK/DEPOSIT/CREDIT_CARD/PERSONAL_LOAN). Computed from the account path via the asset-classifier (ADR-0077). Null for non-asset accounts (Income/Expenses/Equity) or unmatched paths.
|
|
154
|
+
*/
|
|
155
|
+
type assetSubClass = 'DEPOSIT' | 'CASH' | 'MONEY_MARKET_FUND' | 'STOCK' | 'ETF' | 'MUTUAL_FUND' | 'EQUITY_COMPENSATION' | 'GOVERNMENT_BOND' | 'CORPORATE_BOND' | 'BOND_FUND' | 'PRIMARY_RESIDENCE' | 'INVESTMENT_PROPERTY' | 'REIT' | 'GOLD' | 'SILVER' | 'PRECIOUS_METAL' | 'PRECIOUS_METAL_FUND' | 'COMMODITY' | 'COMMODITY_FUND' | 'CRYPTOCURRENCY' | 'RETIREMENT_ACCOUNT' | 'HEALTH_ACCOUNT' | 'EDUCATION_ACCOUNT' | 'INSURANCE' | 'PRIVATE_EQUITY' | 'HEDGE_FUND' | 'COLLECTIBLES' | 'MORTGAGE' | 'STUDENT_LOAN' | 'CREDIT_CARD' | 'PERSONAL_LOAN' | 'OTHER';
|
|
148
156
|
/**
|
|
149
157
|
* Account status
|
|
150
158
|
*/
|
|
@@ -2375,286 +2383,300 @@ type ForecastResponseDto = {
|
|
|
2375
2383
|
*/
|
|
2376
2384
|
periodEnd: string;
|
|
2377
2385
|
};
|
|
2378
|
-
type
|
|
2379
|
-
name: string;
|
|
2380
|
-
description?: string;
|
|
2381
|
-
narrationKeywords?: Array<unknown[]>;
|
|
2382
|
-
payeeKeywords?: Array<unknown[]>;
|
|
2383
|
-
categoryKeywords?: Array<unknown[]>;
|
|
2386
|
+
type CurrencyBalanceDto = {
|
|
2384
2387
|
/**
|
|
2385
|
-
*
|
|
2388
|
+
* ISO 4217 currency code
|
|
2386
2389
|
*/
|
|
2387
|
-
|
|
2390
|
+
currency: string;
|
|
2388
2391
|
/**
|
|
2389
|
-
*
|
|
2392
|
+
* Balance amount
|
|
2390
2393
|
*/
|
|
2391
|
-
|
|
2392
|
-
|
|
2394
|
+
balance: string;
|
|
2395
|
+
};
|
|
2396
|
+
type TimeSeriesPointDto = {
|
|
2393
2397
|
/**
|
|
2394
|
-
*
|
|
2398
|
+
* Date in YYYY-MM-DD format
|
|
2395
2399
|
*/
|
|
2396
|
-
|
|
2400
|
+
date: string;
|
|
2397
2401
|
/**
|
|
2398
|
-
*
|
|
2402
|
+
* Value at this date (in base currency)
|
|
2399
2403
|
*/
|
|
2400
|
-
|
|
2401
|
-
|
|
2402
|
-
|
|
2403
|
-
|
|
2404
|
+
value: string;
|
|
2405
|
+
/**
|
|
2406
|
+
* Change from previous point
|
|
2407
|
+
*/
|
|
2408
|
+
change?: {
|
|
2404
2409
|
[key: string]: unknown;
|
|
2405
2410
|
};
|
|
2406
2411
|
/**
|
|
2407
|
-
*
|
|
2412
|
+
* Total assets at this date (in base currency)
|
|
2408
2413
|
*/
|
|
2409
|
-
|
|
2410
|
-
};
|
|
2411
|
-
type matchLogic = 'OR' | 'AND';
|
|
2412
|
-
type AmountRangeDto = {
|
|
2414
|
+
assets?: string;
|
|
2413
2415
|
/**
|
|
2414
|
-
*
|
|
2416
|
+
* Total liabilities at this date (in base currency)
|
|
2415
2417
|
*/
|
|
2416
|
-
|
|
2418
|
+
liabilities?: string;
|
|
2417
2419
|
/**
|
|
2418
|
-
*
|
|
2420
|
+
* Multi-currency breakdown for this point
|
|
2419
2421
|
*/
|
|
2420
|
-
|
|
2422
|
+
byCurrency?: Array<CurrencyBalanceDto>;
|
|
2421
2423
|
};
|
|
2422
|
-
type
|
|
2424
|
+
type TrendSummaryDto = {
|
|
2423
2425
|
/**
|
|
2424
|
-
*
|
|
2426
|
+
* Value at start of period
|
|
2425
2427
|
*/
|
|
2426
|
-
|
|
2428
|
+
startValue: string;
|
|
2427
2429
|
/**
|
|
2428
|
-
*
|
|
2430
|
+
* Value at end of period
|
|
2429
2431
|
*/
|
|
2430
|
-
|
|
2432
|
+
endValue: string;
|
|
2431
2433
|
/**
|
|
2432
|
-
*
|
|
2434
|
+
* Total change over period
|
|
2433
2435
|
*/
|
|
2434
|
-
|
|
2436
|
+
totalChange: string;
|
|
2435
2437
|
/**
|
|
2436
|
-
*
|
|
2438
|
+
* Total change percentage
|
|
2437
2439
|
*/
|
|
2438
|
-
|
|
2440
|
+
totalChangePercentage: string;
|
|
2441
|
+
};
|
|
2442
|
+
type MultiCurrencyPointDto = {
|
|
2439
2443
|
/**
|
|
2440
|
-
*
|
|
2444
|
+
* Date in YYYY-MM-DD format
|
|
2441
2445
|
*/
|
|
2442
|
-
|
|
2446
|
+
date: string;
|
|
2443
2447
|
/**
|
|
2444
|
-
*
|
|
2448
|
+
* Balances by currency
|
|
2445
2449
|
*/
|
|
2446
|
-
|
|
2450
|
+
byCurrency: Array<CurrencyBalanceDto>;
|
|
2451
|
+
};
|
|
2452
|
+
type PortfolioTrendsResponseDto = {
|
|
2447
2453
|
/**
|
|
2448
|
-
*
|
|
2454
|
+
* Time series data points
|
|
2449
2455
|
*/
|
|
2450
|
-
|
|
2456
|
+
series: Array<TimeSeriesPointDto>;
|
|
2451
2457
|
/**
|
|
2452
|
-
*
|
|
2458
|
+
* Period summary
|
|
2453
2459
|
*/
|
|
2454
|
-
|
|
2460
|
+
summary: TrendSummaryDto;
|
|
2455
2461
|
/**
|
|
2456
|
-
*
|
|
2462
|
+
* Period requested
|
|
2457
2463
|
*/
|
|
2458
|
-
|
|
2464
|
+
period: string;
|
|
2459
2465
|
/**
|
|
2460
|
-
*
|
|
2466
|
+
* Data granularity
|
|
2461
2467
|
*/
|
|
2462
|
-
|
|
2468
|
+
granularity: string;
|
|
2463
2469
|
/**
|
|
2464
|
-
*
|
|
2470
|
+
* Base currency for converted values
|
|
2465
2471
|
*/
|
|
2466
|
-
|
|
2472
|
+
currency: string;
|
|
2467
2473
|
/**
|
|
2468
|
-
*
|
|
2474
|
+
* Multi-currency time series (each point has currency breakdown)
|
|
2469
2475
|
*/
|
|
2470
|
-
|
|
2476
|
+
byCurrency?: Array<MultiCurrencyPointDto>;
|
|
2471
2477
|
/**
|
|
2472
|
-
*
|
|
2478
|
+
* Exchange rate warnings
|
|
2473
2479
|
*/
|
|
2474
|
-
|
|
2480
|
+
warnings?: Array<ExchangeRateWarningDto>;
|
|
2481
|
+
};
|
|
2482
|
+
type CashFlowPointDto = {
|
|
2475
2483
|
/**
|
|
2476
|
-
*
|
|
2484
|
+
* Month key (YYYY-MM)
|
|
2477
2485
|
*/
|
|
2478
|
-
|
|
2486
|
+
month: string;
|
|
2479
2487
|
/**
|
|
2480
|
-
*
|
|
2488
|
+
* Income in base currency (absolute, converted)
|
|
2481
2489
|
*/
|
|
2482
|
-
|
|
2490
|
+
income: string;
|
|
2483
2491
|
/**
|
|
2484
|
-
*
|
|
2492
|
+
* Expense in base currency (absolute, converted)
|
|
2485
2493
|
*/
|
|
2486
|
-
|
|
2494
|
+
expense: string;
|
|
2487
2495
|
/**
|
|
2488
|
-
*
|
|
2496
|
+
* netSavings = income − expense (savings positive)
|
|
2489
2497
|
*/
|
|
2490
|
-
|
|
2491
|
-
|
|
2492
|
-
|
|
2498
|
+
netSavings: string;
|
|
2499
|
+
};
|
|
2500
|
+
type CashFlowTrendSummaryDto = {
|
|
2493
2501
|
/**
|
|
2494
|
-
*
|
|
2502
|
+
* Total income across the period
|
|
2495
2503
|
*/
|
|
2496
|
-
|
|
2504
|
+
totalIncome: string;
|
|
2497
2505
|
/**
|
|
2498
|
-
*
|
|
2506
|
+
* Total expense across the period
|
|
2499
2507
|
*/
|
|
2500
|
-
|
|
2501
|
-
};
|
|
2502
|
-
/**
|
|
2503
|
-
* Learning source: NLP, REVIEW_CENTER, or null for manual
|
|
2504
|
-
*/
|
|
2505
|
-
type learningSource = 'NLP' | 'REVIEW_CENTER';
|
|
2506
|
-
type TransactionRuleListResponseDto = {
|
|
2507
|
-
data: Array<TransactionRuleResponseDto>;
|
|
2508
|
+
totalExpense: string;
|
|
2508
2509
|
/**
|
|
2509
|
-
*
|
|
2510
|
+
* income − expense across the period
|
|
2510
2511
|
*/
|
|
2511
|
-
|
|
2512
|
+
totalNetSavings: string;
|
|
2512
2513
|
/**
|
|
2513
|
-
*
|
|
2514
|
+
* totalNetSavings divided by the window length (N months, incl. zero-filled)
|
|
2514
2515
|
*/
|
|
2515
|
-
|
|
2516
|
+
averageMonthlyNetSavings: string;
|
|
2517
|
+
};
|
|
2518
|
+
type CashFlowTrendsResponseDto = {
|
|
2516
2519
|
/**
|
|
2517
|
-
*
|
|
2520
|
+
* Monthly cash-flow series (fixed N-month window, zero-filled)
|
|
2518
2521
|
*/
|
|
2519
|
-
|
|
2520
|
-
};
|
|
2521
|
-
type ValidateRuleDto = {
|
|
2522
|
-
name: string;
|
|
2523
|
-
description?: string;
|
|
2524
|
-
narrationKeywords?: Array<unknown[]>;
|
|
2525
|
-
payeeKeywords?: Array<unknown[]>;
|
|
2526
|
-
categoryKeywords?: Array<unknown[]>;
|
|
2522
|
+
series: Array<CashFlowPointDto>;
|
|
2527
2523
|
/**
|
|
2528
|
-
*
|
|
2524
|
+
* Period totals
|
|
2529
2525
|
*/
|
|
2530
|
-
|
|
2526
|
+
summary: CashFlowTrendSummaryDto;
|
|
2531
2527
|
/**
|
|
2532
|
-
*
|
|
2528
|
+
* Period requested
|
|
2533
2529
|
*/
|
|
2534
|
-
|
|
2535
|
-
matchLogic: 'OR' | 'AND';
|
|
2530
|
+
period: string;
|
|
2536
2531
|
/**
|
|
2537
|
-
*
|
|
2532
|
+
* Data granularity (v1 returns month buckets)
|
|
2538
2533
|
*/
|
|
2539
|
-
|
|
2534
|
+
granularity: string;
|
|
2540
2535
|
/**
|
|
2541
|
-
*
|
|
2536
|
+
* Base currency for converted values
|
|
2542
2537
|
*/
|
|
2543
|
-
|
|
2544
|
-
priority: number;
|
|
2545
|
-
additionalTags?: Array<unknown[]>;
|
|
2546
|
-
additionalMetadata?: {
|
|
2547
|
-
[key: string]: unknown;
|
|
2548
|
-
};
|
|
2538
|
+
currency: string;
|
|
2549
2539
|
/**
|
|
2550
|
-
*
|
|
2540
|
+
* Exchange rate warnings (e.g. missing rate for a currency)
|
|
2551
2541
|
*/
|
|
2552
|
-
|
|
2542
|
+
warnings?: Array<ExchangeRateWarningDto>;
|
|
2553
2543
|
};
|
|
2554
|
-
type
|
|
2544
|
+
type GenerateSnapshotBody = unknown;
|
|
2545
|
+
type GenerateSnapshotResponse = unknown;
|
|
2546
|
+
type BackfillSnapshotsBody = unknown;
|
|
2547
|
+
type BackfillSnapshotsResponse = unknown;
|
|
2548
|
+
type DeleteOwnUserDto = {
|
|
2555
2549
|
/**
|
|
2556
|
-
*
|
|
2550
|
+
* Access token for user verification
|
|
2557
2551
|
*/
|
|
2558
|
-
|
|
2552
|
+
accessToken: string;
|
|
2553
|
+
};
|
|
2554
|
+
type SignupDto = {
|
|
2559
2555
|
/**
|
|
2560
|
-
*
|
|
2556
|
+
* Cloudflare Turnstile verification token (optional when Turnstile disabled)
|
|
2561
2557
|
*/
|
|
2562
|
-
|
|
2558
|
+
turnstileToken?: string;
|
|
2559
|
+
};
|
|
2560
|
+
type SignupResponseDto = {
|
|
2563
2561
|
/**
|
|
2564
|
-
*
|
|
2562
|
+
* JWT auth token
|
|
2565
2563
|
*/
|
|
2566
|
-
|
|
2567
|
-
};
|
|
2568
|
-
type BulkCreateRulesDto = {
|
|
2564
|
+
authToken: string;
|
|
2569
2565
|
/**
|
|
2570
|
-
*
|
|
2566
|
+
* Auto-generated access token
|
|
2571
2567
|
*/
|
|
2572
|
-
|
|
2568
|
+
accessToken: string;
|
|
2573
2569
|
/**
|
|
2574
|
-
*
|
|
2570
|
+
* Assigned user role
|
|
2575
2571
|
*/
|
|
2576
|
-
|
|
2572
|
+
role: 'USER' | 'ADMIN' | 'DEMO' | 'INACTIVE' | 'PAID' | 'OPS';
|
|
2577
2573
|
};
|
|
2578
2574
|
/**
|
|
2579
|
-
*
|
|
2575
|
+
* Assigned user role
|
|
2580
2576
|
*/
|
|
2581
|
-
type
|
|
2582
|
-
type
|
|
2577
|
+
type role = 'USER' | 'ADMIN' | 'DEMO' | 'INACTIVE' | 'PAID' | 'OPS';
|
|
2578
|
+
type UpdateUserSettingDto = {
|
|
2583
2579
|
/**
|
|
2584
|
-
*
|
|
2580
|
+
* Security ID
|
|
2585
2581
|
*/
|
|
2586
|
-
|
|
2582
|
+
secId?: number;
|
|
2587
2583
|
/**
|
|
2588
|
-
*
|
|
2584
|
+
* Annual interest rate
|
|
2589
2585
|
*/
|
|
2590
|
-
|
|
2586
|
+
annualInterestRate?: number;
|
|
2591
2587
|
/**
|
|
2592
|
-
*
|
|
2588
|
+
* Currency code
|
|
2593
2589
|
*/
|
|
2594
|
-
|
|
2595
|
-
index?: number;
|
|
2596
|
-
message?: string;
|
|
2597
|
-
}>;
|
|
2590
|
+
currency?: string;
|
|
2598
2591
|
/**
|
|
2599
|
-
*
|
|
2592
|
+
* Base currency code
|
|
2600
2593
|
*/
|
|
2601
|
-
|
|
2602
|
-
};
|
|
2603
|
-
type ExportRulesResponseDto = {
|
|
2594
|
+
baseCurrency?: string;
|
|
2604
2595
|
/**
|
|
2605
|
-
*
|
|
2596
|
+
* Benchmark symbol
|
|
2606
2597
|
*/
|
|
2607
|
-
|
|
2598
|
+
benchmark?: string;
|
|
2608
2599
|
/**
|
|
2609
|
-
*
|
|
2600
|
+
* Color scheme
|
|
2610
2601
|
*/
|
|
2611
|
-
|
|
2602
|
+
colorScheme?: 'DARK' | 'LIGHT';
|
|
2612
2603
|
/**
|
|
2613
|
-
*
|
|
2604
|
+
* Date range filter
|
|
2614
2605
|
*/
|
|
2615
|
-
|
|
2606
|
+
dateRange?: string;
|
|
2616
2607
|
/**
|
|
2617
|
-
*
|
|
2608
|
+
* Emergency fund amount
|
|
2618
2609
|
*/
|
|
2619
|
-
|
|
2620
|
-
};
|
|
2621
|
-
type RuleStatisticsResponseDto = {
|
|
2610
|
+
emergencyFund?: number;
|
|
2622
2611
|
/**
|
|
2623
|
-
*
|
|
2612
|
+
* Account filter IDs
|
|
2624
2613
|
*/
|
|
2625
|
-
|
|
2614
|
+
'filters.accounts'?: Array<string>;
|
|
2626
2615
|
/**
|
|
2627
|
-
*
|
|
2616
|
+
* Asset class filters
|
|
2628
2617
|
*/
|
|
2629
|
-
|
|
2618
|
+
'filters.assetClasses'?: Array<string>;
|
|
2630
2619
|
/**
|
|
2631
|
-
*
|
|
2620
|
+
* Data source filter
|
|
2632
2621
|
*/
|
|
2633
|
-
|
|
2622
|
+
'filters.dataSource'?: string;
|
|
2634
2623
|
/**
|
|
2635
|
-
*
|
|
2624
|
+
* Symbol filter
|
|
2636
2625
|
*/
|
|
2637
|
-
|
|
2626
|
+
'filters.symbol'?: string;
|
|
2638
2627
|
/**
|
|
2639
|
-
*
|
|
2628
|
+
* Tag filters
|
|
2640
2629
|
*/
|
|
2641
|
-
|
|
2630
|
+
'filters.tags'?: Array<string>;
|
|
2642
2631
|
/**
|
|
2643
|
-
*
|
|
2632
|
+
* Enable experimental features
|
|
2644
2633
|
*/
|
|
2645
|
-
|
|
2646
|
-
|
|
2647
|
-
|
|
2648
|
-
|
|
2649
|
-
|
|
2650
|
-
|
|
2634
|
+
isExperimentalFeatures?: boolean;
|
|
2635
|
+
/**
|
|
2636
|
+
* Enable restricted view mode
|
|
2637
|
+
*/
|
|
2638
|
+
isRestrictedView?: boolean;
|
|
2639
|
+
/**
|
|
2640
|
+
* Language code
|
|
2641
|
+
*/
|
|
2642
|
+
language?: string;
|
|
2643
|
+
/**
|
|
2644
|
+
* Locale code
|
|
2645
|
+
*/
|
|
2646
|
+
locale?: string;
|
|
2647
|
+
/**
|
|
2648
|
+
* Projected total amount
|
|
2649
|
+
*/
|
|
2650
|
+
projectedTotalAmount?: number;
|
|
2651
|
+
/**
|
|
2652
|
+
* Retirement date in ISO 8601 format
|
|
2653
|
+
*/
|
|
2654
|
+
retirementDate?: string;
|
|
2655
|
+
/**
|
|
2656
|
+
* Savings rate percentage
|
|
2657
|
+
*/
|
|
2658
|
+
savingsRate?: number;
|
|
2659
|
+
/**
|
|
2660
|
+
* View mode
|
|
2661
|
+
*/
|
|
2662
|
+
viewMode?: 'DEFAULT' | 'ZEN';
|
|
2651
2663
|
};
|
|
2652
2664
|
/**
|
|
2653
|
-
*
|
|
2665
|
+
* Color scheme
|
|
2654
2666
|
*/
|
|
2655
|
-
type
|
|
2656
|
-
|
|
2657
|
-
|
|
2667
|
+
type colorScheme = 'DARK' | 'LIGHT';
|
|
2668
|
+
/**
|
|
2669
|
+
* View mode
|
|
2670
|
+
*/
|
|
2671
|
+
type viewMode = 'DEFAULT' | 'ZEN';
|
|
2672
|
+
type UpdatePropertyDto = {
|
|
2673
|
+
/**
|
|
2674
|
+
* Property value
|
|
2675
|
+
*/
|
|
2676
|
+
value: string;
|
|
2677
|
+
};
|
|
2678
|
+
type CreateTransactionRuleDto = {
|
|
2679
|
+
name: string;
|
|
2658
2680
|
description?: string;
|
|
2659
2681
|
narrationKeywords?: Array<unknown[]>;
|
|
2660
2682
|
payeeKeywords?: Array<unknown[]>;
|
|
@@ -2667,7 +2689,7 @@ type UpdateTransactionRuleDto = {
|
|
|
2667
2689
|
* Destination account for expenses/income (e.g., Expenses:Food:Coffee)
|
|
2668
2690
|
*/
|
|
2669
2691
|
categoryAccount?: string;
|
|
2670
|
-
matchLogic
|
|
2692
|
+
matchLogic: 'OR' | 'AND';
|
|
2671
2693
|
/**
|
|
2672
2694
|
* Minimum transaction amount (inclusive)
|
|
2673
2695
|
*/
|
|
@@ -2676,154 +2698,320 @@ type UpdateTransactionRuleDto = {
|
|
|
2676
2698
|
* Maximum transaction amount (inclusive)
|
|
2677
2699
|
*/
|
|
2678
2700
|
amountMax?: number;
|
|
2679
|
-
priority
|
|
2680
|
-
/**
|
|
2681
|
-
* Enable or disable the rule
|
|
2682
|
-
*/
|
|
2683
|
-
enabled?: boolean;
|
|
2701
|
+
priority: number;
|
|
2684
2702
|
additionalTags?: Array<unknown[]>;
|
|
2685
2703
|
additionalMetadata?: {
|
|
2686
2704
|
[key: string]: unknown;
|
|
2687
2705
|
};
|
|
2706
|
+
/**
|
|
2707
|
+
* If true, update existing rule with matching payeeKeywords[0] instead of creating new rule
|
|
2708
|
+
*/
|
|
2709
|
+
upsertByPayee?: boolean;
|
|
2688
2710
|
};
|
|
2689
|
-
type
|
|
2690
|
-
|
|
2691
|
-
|
|
2711
|
+
type matchLogic = 'OR' | 'AND';
|
|
2712
|
+
type AmountRangeDto = {
|
|
2713
|
+
/**
|
|
2714
|
+
* Minimum amount
|
|
2715
|
+
*/
|
|
2716
|
+
min?: number;
|
|
2717
|
+
/**
|
|
2718
|
+
* Maximum amount
|
|
2719
|
+
*/
|
|
2720
|
+
max?: number;
|
|
2721
|
+
};
|
|
2722
|
+
type TransactionRuleResponseDto = {
|
|
2723
|
+
/**
|
|
2724
|
+
* Rule ID
|
|
2725
|
+
*/
|
|
2726
|
+
id: string;
|
|
2727
|
+
/**
|
|
2728
|
+
* Rule name
|
|
2729
|
+
*/
|
|
2730
|
+
name: string;
|
|
2731
|
+
/**
|
|
2732
|
+
* Rule description
|
|
2733
|
+
*/
|
|
2734
|
+
description?: string;
|
|
2735
|
+
/**
|
|
2736
|
+
* Keywords to match in transaction narration
|
|
2737
|
+
*/
|
|
2738
|
+
narrationKeywords: Array<string>;
|
|
2739
|
+
/**
|
|
2740
|
+
* Keywords to match in payee name
|
|
2741
|
+
*/
|
|
2742
|
+
payeeKeywords: Array<string>;
|
|
2743
|
+
/**
|
|
2744
|
+
* Keywords to match in category
|
|
2745
|
+
*/
|
|
2746
|
+
categoryKeywords: Array<string>;
|
|
2747
|
+
/**
|
|
2748
|
+
* Keywords to match in payment method
|
|
2749
|
+
*/
|
|
2750
|
+
methodKeywords: Array<string>;
|
|
2751
|
+
/**
|
|
2752
|
+
* Destination account for categorization
|
|
2753
|
+
*/
|
|
2692
2754
|
categoryAccount?: string;
|
|
2693
|
-
|
|
2694
|
-
|
|
2755
|
+
/**
|
|
2756
|
+
* Keyword matching logic
|
|
2757
|
+
*/
|
|
2758
|
+
matchLogic: 'OR' | 'AND';
|
|
2759
|
+
/**
|
|
2760
|
+
* Amount range for matching
|
|
2761
|
+
*/
|
|
2762
|
+
amountRange?: AmountRangeDto;
|
|
2763
|
+
/**
|
|
2764
|
+
* Rule priority (0-1000, higher = first match)
|
|
2765
|
+
*/
|
|
2766
|
+
priority: number;
|
|
2767
|
+
/**
|
|
2768
|
+
* Whether the rule is enabled
|
|
2769
|
+
*/
|
|
2770
|
+
enabled: boolean;
|
|
2771
|
+
/**
|
|
2772
|
+
* Learning source: NLP, REVIEW_CENTER, or null for manual
|
|
2773
|
+
*/
|
|
2774
|
+
learningSource?: 'NLP' | 'REVIEW_CENTER' | null;
|
|
2775
|
+
/**
|
|
2776
|
+
* Whether auto-apply is enabled for this rule
|
|
2777
|
+
*/
|
|
2778
|
+
autoApplyEnabled: boolean;
|
|
2779
|
+
/**
|
|
2780
|
+
* Number of confirmations for NLP-learned rules
|
|
2781
|
+
*/
|
|
2782
|
+
confirmationCount: number;
|
|
2783
|
+
/**
|
|
2784
|
+
* Additional tags
|
|
2785
|
+
*/
|
|
2786
|
+
additionalTags: Array<string>;
|
|
2787
|
+
/**
|
|
2788
|
+
* Additional metadata
|
|
2789
|
+
*/
|
|
2790
|
+
additionalMetadata?: {
|
|
2791
|
+
[key: string]: string;
|
|
2792
|
+
};
|
|
2793
|
+
/**
|
|
2794
|
+
* Created timestamp
|
|
2795
|
+
*/
|
|
2796
|
+
createdAt: string;
|
|
2797
|
+
/**
|
|
2798
|
+
* Updated timestamp
|
|
2799
|
+
*/
|
|
2800
|
+
updatedAt: string;
|
|
2695
2801
|
};
|
|
2696
|
-
|
|
2802
|
+
/**
|
|
2803
|
+
* Learning source: NLP, REVIEW_CENTER, or null for manual
|
|
2804
|
+
*/
|
|
2805
|
+
type learningSource = 'NLP' | 'REVIEW_CENTER';
|
|
2806
|
+
type TransactionRuleListResponseDto = {
|
|
2807
|
+
data: Array<TransactionRuleResponseDto>;
|
|
2697
2808
|
/**
|
|
2698
|
-
*
|
|
2809
|
+
* Total count of rules
|
|
2699
2810
|
*/
|
|
2700
|
-
|
|
2811
|
+
total: number;
|
|
2701
2812
|
/**
|
|
2702
|
-
*
|
|
2813
|
+
* Results per page
|
|
2703
2814
|
*/
|
|
2704
|
-
|
|
2815
|
+
limit: number;
|
|
2705
2816
|
/**
|
|
2706
|
-
*
|
|
2817
|
+
* Pagination offset
|
|
2707
2818
|
*/
|
|
2708
|
-
|
|
2819
|
+
offset: number;
|
|
2820
|
+
};
|
|
2821
|
+
type ValidateRuleDto = {
|
|
2822
|
+
name: string;
|
|
2823
|
+
description?: string;
|
|
2824
|
+
narrationKeywords?: Array<unknown[]>;
|
|
2825
|
+
payeeKeywords?: Array<unknown[]>;
|
|
2826
|
+
categoryKeywords?: Array<unknown[]>;
|
|
2709
2827
|
/**
|
|
2710
|
-
*
|
|
2828
|
+
* Payment method keywords (e.g., HuaBei, YuEBao)
|
|
2711
2829
|
*/
|
|
2712
|
-
|
|
2830
|
+
methodKeywords?: Array<unknown[]>;
|
|
2831
|
+
/**
|
|
2832
|
+
* Destination account for expenses/income (e.g., Expenses:Food:Coffee)
|
|
2833
|
+
*/
|
|
2834
|
+
categoryAccount?: string;
|
|
2835
|
+
matchLogic: 'OR' | 'AND';
|
|
2836
|
+
/**
|
|
2837
|
+
* Minimum transaction amount (inclusive)
|
|
2838
|
+
*/
|
|
2839
|
+
amountMin?: number;
|
|
2840
|
+
/**
|
|
2841
|
+
* Maximum transaction amount (inclusive)
|
|
2842
|
+
*/
|
|
2843
|
+
amountMax?: number;
|
|
2844
|
+
priority: number;
|
|
2845
|
+
additionalTags?: Array<unknown[]>;
|
|
2846
|
+
additionalMetadata?: {
|
|
2713
2847
|
[key: string]: unknown;
|
|
2714
2848
|
};
|
|
2849
|
+
/**
|
|
2850
|
+
* If true, update existing rule with matching payeeKeywords[0] instead of creating new rule
|
|
2851
|
+
*/
|
|
2852
|
+
upsertByPayee?: boolean;
|
|
2715
2853
|
};
|
|
2716
|
-
type
|
|
2854
|
+
type ValidateRuleResponseDto = {
|
|
2717
2855
|
/**
|
|
2718
|
-
*
|
|
2856
|
+
* Whether the rule configuration is valid
|
|
2719
2857
|
*/
|
|
2720
|
-
|
|
2858
|
+
valid: boolean;
|
|
2859
|
+
/**
|
|
2860
|
+
* List of validation errors (empty if valid)
|
|
2861
|
+
*/
|
|
2862
|
+
errors: Array<unknown[]>;
|
|
2863
|
+
/**
|
|
2864
|
+
* List of validation warnings (non-blocking issues)
|
|
2865
|
+
*/
|
|
2866
|
+
warnings: Array<unknown[]>;
|
|
2721
2867
|
};
|
|
2722
|
-
type
|
|
2868
|
+
type BulkCreateRulesDto = {
|
|
2723
2869
|
/**
|
|
2724
|
-
*
|
|
2870
|
+
* Array of rules to import
|
|
2725
2871
|
*/
|
|
2726
|
-
|
|
2872
|
+
rules: Array<unknown[]>;
|
|
2873
|
+
/**
|
|
2874
|
+
* Conflict handling strategy: skip (default) ignores duplicates, replace soft-deletes existing rule
|
|
2875
|
+
*/
|
|
2876
|
+
conflictStrategy: 'replace' | 'skip';
|
|
2727
2877
|
};
|
|
2728
|
-
|
|
2878
|
+
/**
|
|
2879
|
+
* Conflict handling strategy: skip (default) ignores duplicates, replace soft-deletes existing rule
|
|
2880
|
+
*/
|
|
2881
|
+
type conflictStrategy = 'replace' | 'skip';
|
|
2882
|
+
type BulkCreateRulesResponseDto = {
|
|
2729
2883
|
/**
|
|
2730
|
-
*
|
|
2884
|
+
* Number of successfully created rules
|
|
2731
2885
|
*/
|
|
2732
|
-
|
|
2886
|
+
successCount: number;
|
|
2733
2887
|
/**
|
|
2734
|
-
*
|
|
2888
|
+
* Number of failed rules
|
|
2735
2889
|
*/
|
|
2736
|
-
|
|
2890
|
+
failureCount: number;
|
|
2737
2891
|
/**
|
|
2738
|
-
*
|
|
2892
|
+
* Error details for failed rules
|
|
2739
2893
|
*/
|
|
2740
|
-
|
|
2894
|
+
errors: Array<{
|
|
2895
|
+
index?: number;
|
|
2896
|
+
message?: string;
|
|
2897
|
+
}>;
|
|
2741
2898
|
/**
|
|
2742
|
-
*
|
|
2899
|
+
* IDs of successfully created rules
|
|
2743
2900
|
*/
|
|
2744
|
-
|
|
2901
|
+
createdRuleIds: Array<string>;
|
|
2902
|
+
};
|
|
2903
|
+
type ExportRulesResponseDto = {
|
|
2745
2904
|
/**
|
|
2746
|
-
*
|
|
2905
|
+
* Export timestamp
|
|
2747
2906
|
*/
|
|
2748
|
-
|
|
2907
|
+
exportedAt: string;
|
|
2749
2908
|
/**
|
|
2750
|
-
*
|
|
2909
|
+
* User ID
|
|
2751
2910
|
*/
|
|
2752
|
-
|
|
2911
|
+
userId: string;
|
|
2753
2912
|
/**
|
|
2754
|
-
*
|
|
2913
|
+
* Number of exported rules
|
|
2755
2914
|
*/
|
|
2756
|
-
|
|
2915
|
+
ruleCount: number;
|
|
2916
|
+
/**
|
|
2917
|
+
* Exported rules
|
|
2918
|
+
*/
|
|
2919
|
+
rules: unknown[];
|
|
2920
|
+
};
|
|
2921
|
+
type RuleStatisticsResponseDto = {
|
|
2757
2922
|
/**
|
|
2758
|
-
*
|
|
2923
|
+
* Statistics time period
|
|
2759
2924
|
*/
|
|
2760
|
-
|
|
2925
|
+
period: '7d' | '30d' | '90d';
|
|
2761
2926
|
/**
|
|
2762
|
-
*
|
|
2927
|
+
* Total number of rules
|
|
2763
2928
|
*/
|
|
2764
|
-
|
|
2929
|
+
totalRules: number;
|
|
2765
2930
|
/**
|
|
2766
|
-
*
|
|
2931
|
+
* Number of rules with at least one match
|
|
2767
2932
|
*/
|
|
2768
|
-
|
|
2933
|
+
rulesWithMatches: number;
|
|
2769
2934
|
/**
|
|
2770
|
-
*
|
|
2935
|
+
* Total number of matches across all rules
|
|
2771
2936
|
*/
|
|
2772
|
-
|
|
2937
|
+
totalMatches: number;
|
|
2773
2938
|
/**
|
|
2774
|
-
*
|
|
2939
|
+
* Average confidence score across all matches
|
|
2775
2940
|
*/
|
|
2776
|
-
|
|
2941
|
+
averageConfidence: number;
|
|
2777
2942
|
/**
|
|
2778
|
-
*
|
|
2943
|
+
* Per-rule statistics
|
|
2779
2944
|
*/
|
|
2780
|
-
|
|
2945
|
+
ruleStats: Array<{
|
|
2946
|
+
ruleId?: string;
|
|
2947
|
+
ruleName?: string;
|
|
2948
|
+
matchCount?: number;
|
|
2949
|
+
averageConfidence?: number;
|
|
2950
|
+
}>;
|
|
2951
|
+
};
|
|
2952
|
+
/**
|
|
2953
|
+
* Statistics time period
|
|
2954
|
+
*/
|
|
2955
|
+
type period = '7d' | '30d' | '90d';
|
|
2956
|
+
type UpdateTransactionRuleDto = {
|
|
2957
|
+
name?: string;
|
|
2958
|
+
description?: string;
|
|
2959
|
+
narrationKeywords?: Array<unknown[]>;
|
|
2960
|
+
payeeKeywords?: Array<unknown[]>;
|
|
2961
|
+
categoryKeywords?: Array<unknown[]>;
|
|
2781
2962
|
/**
|
|
2782
|
-
*
|
|
2963
|
+
* Payment method keywords (e.g., HuaBei, YuEBao)
|
|
2783
2964
|
*/
|
|
2784
|
-
|
|
2965
|
+
methodKeywords?: Array<unknown[]>;
|
|
2785
2966
|
/**
|
|
2786
|
-
*
|
|
2967
|
+
* Destination account for expenses/income (e.g., Expenses:Food:Coffee)
|
|
2787
2968
|
*/
|
|
2788
|
-
|
|
2969
|
+
categoryAccount?: string;
|
|
2970
|
+
matchLogic?: 'OR' | 'AND';
|
|
2789
2971
|
/**
|
|
2790
|
-
*
|
|
2972
|
+
* Minimum transaction amount (inclusive)
|
|
2791
2973
|
*/
|
|
2792
|
-
|
|
2974
|
+
amountMin?: number;
|
|
2793
2975
|
/**
|
|
2794
|
-
*
|
|
2976
|
+
* Maximum transaction amount (inclusive)
|
|
2795
2977
|
*/
|
|
2796
|
-
|
|
2978
|
+
amountMax?: number;
|
|
2979
|
+
priority?: number;
|
|
2797
2980
|
/**
|
|
2798
|
-
*
|
|
2981
|
+
* Enable or disable the rule
|
|
2799
2982
|
*/
|
|
2800
|
-
|
|
2983
|
+
enabled?: boolean;
|
|
2984
|
+
additionalTags?: Array<unknown[]>;
|
|
2985
|
+
additionalMetadata?: {
|
|
2986
|
+
[key: string]: unknown;
|
|
2987
|
+
};
|
|
2988
|
+
};
|
|
2989
|
+
type TestRuleDto = {
|
|
2990
|
+
narration: string;
|
|
2991
|
+
payee?: string;
|
|
2992
|
+
categoryAccount?: string;
|
|
2993
|
+
amount?: number;
|
|
2994
|
+
currency?: string;
|
|
2995
|
+
};
|
|
2996
|
+
type TestRuleResponseDto = {
|
|
2801
2997
|
/**
|
|
2802
|
-
*
|
|
2998
|
+
* Rule ID that was tested
|
|
2803
2999
|
*/
|
|
2804
|
-
|
|
3000
|
+
ruleId: string;
|
|
2805
3001
|
/**
|
|
2806
|
-
*
|
|
3002
|
+
* Whether the rule matched the test data
|
|
2807
3003
|
*/
|
|
2808
|
-
|
|
3004
|
+
matches: boolean;
|
|
2809
3005
|
/**
|
|
2810
|
-
*
|
|
3006
|
+
* Match confidence score (0-1)
|
|
2811
3007
|
*/
|
|
2812
|
-
|
|
2813
|
-
};
|
|
2814
|
-
/**
|
|
2815
|
-
* Color scheme
|
|
2816
|
-
*/
|
|
2817
|
-
type colorScheme = 'DARK' | 'LIGHT';
|
|
2818
|
-
/**
|
|
2819
|
-
* View mode
|
|
2820
|
-
*/
|
|
2821
|
-
type viewMode = 'DEFAULT' | 'ZEN';
|
|
2822
|
-
type UpdatePropertyDto = {
|
|
3008
|
+
confidence: number;
|
|
2823
3009
|
/**
|
|
2824
|
-
*
|
|
3010
|
+
* Details of which fields matched
|
|
2825
3011
|
*/
|
|
2826
|
-
|
|
3012
|
+
matchDetails: {
|
|
3013
|
+
[key: string]: unknown;
|
|
3014
|
+
};
|
|
2827
3015
|
};
|
|
2828
3016
|
type CreateBeanEventDto = {
|
|
2829
3017
|
/**
|
|
@@ -3427,6 +3615,14 @@ type ProcessNlpDto = {
|
|
|
3427
3615
|
parsedData?: {
|
|
3428
3616
|
[key: string]: unknown;
|
|
3429
3617
|
};
|
|
3618
|
+
/**
|
|
3619
|
+
* confirm_rule echo-back: rule id selected from the prior confirm_rule response (matchedRule.id or alternatives[i].ruleId). Applied directly when the session is confirming_rule — no NL re-parse.
|
|
3620
|
+
*/
|
|
3621
|
+
selectedRuleId?: string;
|
|
3622
|
+
/**
|
|
3623
|
+
* confirm_account echo-back: account path selected from the prior confirm_account response (suggestedAccount, similarAccounts[i], or a typed path). Applied directly when the session is confirming_account — no NL re-parse.
|
|
3624
|
+
*/
|
|
3625
|
+
selectedAccount?: string;
|
|
3430
3626
|
};
|
|
3431
3627
|
type NlpTransactionInfoDto = {
|
|
3432
3628
|
/**
|
|
@@ -3660,9 +3856,9 @@ type NlpAccountConfirmationDataDto = {
|
|
|
3660
3856
|
*/
|
|
3661
3857
|
invalidAccount: string;
|
|
3662
3858
|
/**
|
|
3663
|
-
* Suggested replacement account
|
|
3859
|
+
* Suggested replacement account (omitted when no clear candidate)
|
|
3664
3860
|
*/
|
|
3665
|
-
suggestedAccount
|
|
3861
|
+
suggestedAccount?: string;
|
|
3666
3862
|
/**
|
|
3667
3863
|
* Similar accounts for user selection
|
|
3668
3864
|
*/
|
|
@@ -3824,7 +4020,7 @@ type NlpResponseDto = {
|
|
|
3824
4020
|
/**
|
|
3825
4021
|
* Action taken or requested
|
|
3826
4022
|
*/
|
|
3827
|
-
action: 'created' | 'ask' | 'confirm' | 'confirm_duplicate' | 'confirm_rule' | 'confirm_account' | 'confirm_payee' | 'cancel';
|
|
4023
|
+
action: 'created' | 'ask' | 'confirm' | 'confirm_duplicate' | 'confirm_rule' | 'confirm_account' | 'confirm_payee' | 'cancel' | 'aborted';
|
|
3828
4024
|
/**
|
|
3829
4025
|
* Transaction intent detected by EntityRouter (v6.0: 5 core intents). Frontend uses this to render scenario-specific form fields.
|
|
3830
4026
|
*/
|
|
@@ -3928,7 +4124,7 @@ type status4 = 'success' | 'pending' | 'error';
|
|
|
3928
4124
|
/**
|
|
3929
4125
|
* Action taken or requested
|
|
3930
4126
|
*/
|
|
3931
|
-
type action2 = 'created' | 'ask' | 'confirm' | 'confirm_duplicate' | 'confirm_rule' | 'confirm_account' | 'confirm_payee' | 'cancel';
|
|
4127
|
+
type action2 = 'created' | 'ask' | 'confirm' | 'confirm_duplicate' | 'confirm_rule' | 'confirm_account' | 'confirm_payee' | 'cancel' | 'aborted';
|
|
3932
4128
|
/**
|
|
3933
4129
|
* Transaction intent detected by EntityRouter (v6.0: 5 core intents). Frontend uses this to render scenario-specific form fields.
|
|
3934
4130
|
*/
|
|
@@ -3983,6 +4179,62 @@ type PlatformListItemDto = {
|
|
|
3983
4179
|
* Platform type
|
|
3984
4180
|
*/
|
|
3985
4181
|
type type3 = 'BANK' | 'BROKERAGE' | 'CRYPTO_EXCHANGE' | 'PAYMENT' | 'INVESTMENT' | 'INSURANCE' | 'OTHER';
|
|
4182
|
+
type PlatformMatchResultDto = {
|
|
4183
|
+
/**
|
|
4184
|
+
* Global platform ID
|
|
4185
|
+
*/
|
|
4186
|
+
id: string;
|
|
4187
|
+
/**
|
|
4188
|
+
* Platform name (e.g., "ICBC")
|
|
4189
|
+
*/
|
|
4190
|
+
name: string;
|
|
4191
|
+
/**
|
|
4192
|
+
* Canonical identifier in ACCOUNT_RE format (e.g., "icbc")
|
|
4193
|
+
*/
|
|
4194
|
+
canonical: string;
|
|
4195
|
+
/**
|
|
4196
|
+
* Platform type
|
|
4197
|
+
*/
|
|
4198
|
+
type: 'BANK' | 'BROKERAGE' | 'CRYPTO_EXCHANGE' | 'PAYMENT' | 'INVESTMENT' | 'INSURANCE' | 'OTHER';
|
|
4199
|
+
/**
|
|
4200
|
+
* Suggested path segment — canonical, already in ACCOUNT_RE format
|
|
4201
|
+
*/
|
|
4202
|
+
suggestedSegment: string;
|
|
4203
|
+
/**
|
|
4204
|
+
* Logo URL
|
|
4205
|
+
*/
|
|
4206
|
+
logoUrl: string | null;
|
|
4207
|
+
/**
|
|
4208
|
+
* How this row matched: 'exact' > 'prefix' > 'substring'
|
|
4209
|
+
*/
|
|
4210
|
+
matchType: 'exact' | 'prefix' | 'substring';
|
|
4211
|
+
};
|
|
4212
|
+
/**
|
|
4213
|
+
* How this row matched: 'exact' > 'prefix' > 'substring'
|
|
4214
|
+
*/
|
|
4215
|
+
type matchType = 'exact' | 'prefix' | 'substring';
|
|
4216
|
+
type PlatformMatchResponseDto = {
|
|
4217
|
+
/**
|
|
4218
|
+
* Ranked matches, best tier first (at most 10 rows)
|
|
4219
|
+
*/
|
|
4220
|
+
platforms: Array<PlatformMatchResultDto>;
|
|
4221
|
+
/**
|
|
4222
|
+
* Overall match quality — top row's tier, or 'none' when no hits
|
|
4223
|
+
*/
|
|
4224
|
+
matchType: 'none' | 'exact' | 'prefix' | 'substring';
|
|
4225
|
+
/**
|
|
4226
|
+
* Total matches before LIMIT (truncation transparency)
|
|
4227
|
+
*/
|
|
4228
|
+
total: number;
|
|
4229
|
+
/**
|
|
4230
|
+
* true when total > platforms.length (more matches exist)
|
|
4231
|
+
*/
|
|
4232
|
+
hasMore: boolean;
|
|
4233
|
+
};
|
|
4234
|
+
/**
|
|
4235
|
+
* Overall match quality — top row's tier, or 'none' when no hits
|
|
4236
|
+
*/
|
|
4237
|
+
type matchType2 = 'none' | 'exact' | 'prefix' | 'substring';
|
|
3986
4238
|
type CreatePlatformDto = {
|
|
3987
4239
|
/**
|
|
3988
4240
|
* Platform name
|
|
@@ -4637,220 +4889,190 @@ type HoldingPnlRowDto = {
|
|
|
4637
4889
|
*/
|
|
4638
4890
|
marketFxRate?: FxRateDto | null;
|
|
4639
4891
|
/**
|
|
4640
|
-
* Share of invested assets % (Decimal string); only for invested chartTokens
|
|
4641
|
-
*/
|
|
4642
|
-
pctOfInvestedAssets?: {
|
|
4643
|
-
[key: string]: unknown;
|
|
4644
|
-
} | null;
|
|
4645
|
-
/**
|
|
4646
|
-
* Cumulative realized P&L on sold lots (asOf-date cutoff); null when the method has no applicable sells, a sell lacks a price, or any required FX rate is missing (never-mix). When a sell spans multiple currencies (cross-currency sale), amount and currency reflect the base currency; baseCcyEquivalent is always the authoritative dual-FX figure
|
|
4647
|
-
*/
|
|
4648
|
-
realizedPnl?: MonetaryDto | null;
|
|
4649
|
-
};
|
|
4650
|
-
/**
|
|
4651
|
-
* Chart segment token (libs/common resolver)
|
|
4652
|
-
*/
|
|
4653
|
-
type chartToken = 'equity' | 'fund' | 'bond' | 'cash' | 'other';
|
|
4654
|
-
type HoldingPnlWarningDto = {
|
|
4655
|
-
/**
|
|
4656
|
-
* Warning type
|
|
4657
|
-
*/
|
|
4658
|
-
type: 'MISSING_COST_FX_RATE' | 'MISSING_MARKET_FX_RATE' | 'MISSING_SALE_PRICE' | 'MISSING_REALIZED_FX_RATE' | 'OVERSOLD_LOTS' | 'NO_PRICE' | 'MIXED_COST_CURRENCY';
|
|
4659
|
-
symbol?: {
|
|
4660
|
-
[key: string]: unknown;
|
|
4661
|
-
} | null;
|
|
4662
|
-
accountId?: {
|
|
4663
|
-
[key: string]: unknown;
|
|
4664
|
-
} | null;
|
|
4665
|
-
currency?: {
|
|
4666
|
-
[key: string]: unknown;
|
|
4667
|
-
} | null;
|
|
4668
|
-
};
|
|
4669
|
-
/**
|
|
4670
|
-
* Warning type
|
|
4671
|
-
*/
|
|
4672
|
-
type type4 = 'MISSING_COST_FX_RATE' | 'MISSING_MARKET_FX_RATE' | 'MISSING_SALE_PRICE' | 'MISSING_REALIZED_FX_RATE' | 'OVERSOLD_LOTS' | 'NO_PRICE' | 'MIXED_COST_CURRENCY';
|
|
4673
|
-
type HoldingPnlResponseDto = {
|
|
4674
|
-
asOfDate: string;
|
|
4675
|
-
baseCurrency: string;
|
|
4676
|
-
/**
|
|
4677
|
-
* Realized-P&L lot-matching method (FIFO or average). Unrealized cost basis remains average regardless of this value (#473).
|
|
4678
|
-
*/
|
|
4679
|
-
method: 'average' | 'FIFO';
|
|
4680
|
-
rows: Array<HoldingPnlRowDto>;
|
|
4681
|
-
warnings: Array<HoldingPnlWarningDto>;
|
|
4682
|
-
};
|
|
4683
|
-
/**
|
|
4684
|
-
* Realized-P&L lot-matching method (FIFO or average). Unrealized cost basis remains average regardless of this value (#473).
|
|
4685
|
-
*/
|
|
4686
|
-
type method = 'average' | 'FIFO';
|
|
4687
|
-
type CurrencyBalanceDto = {
|
|
4688
|
-
/**
|
|
4689
|
-
* ISO 4217 currency code
|
|
4690
|
-
*/
|
|
4691
|
-
currency: string;
|
|
4692
|
-
/**
|
|
4693
|
-
* Balance amount
|
|
4694
|
-
*/
|
|
4695
|
-
balance: string;
|
|
4696
|
-
};
|
|
4697
|
-
type TimeSeriesPointDto = {
|
|
4698
|
-
/**
|
|
4699
|
-
* Date in YYYY-MM-DD format
|
|
4700
|
-
*/
|
|
4701
|
-
date: string;
|
|
4702
|
-
/**
|
|
4703
|
-
* Value at this date (in base currency)
|
|
4704
|
-
*/
|
|
4705
|
-
value: string;
|
|
4706
|
-
/**
|
|
4707
|
-
* Change from previous point
|
|
4708
|
-
*/
|
|
4709
|
-
change?: {
|
|
4710
|
-
[key: string]: unknown;
|
|
4711
|
-
};
|
|
4712
|
-
/**
|
|
4713
|
-
* Total assets at this date (in base currency)
|
|
4714
|
-
*/
|
|
4715
|
-
assets?: string;
|
|
4716
|
-
/**
|
|
4717
|
-
* Total liabilities at this date (in base currency)
|
|
4718
|
-
*/
|
|
4719
|
-
liabilities?: string;
|
|
4720
|
-
/**
|
|
4721
|
-
* Multi-currency breakdown for this point
|
|
4722
|
-
*/
|
|
4723
|
-
byCurrency?: Array<CurrencyBalanceDto>;
|
|
4724
|
-
};
|
|
4725
|
-
type TrendSummaryDto = {
|
|
4726
|
-
/**
|
|
4727
|
-
* Value at start of period
|
|
4728
|
-
*/
|
|
4729
|
-
startValue: string;
|
|
4730
|
-
/**
|
|
4731
|
-
* Value at end of period
|
|
4732
|
-
*/
|
|
4733
|
-
endValue: string;
|
|
4734
|
-
/**
|
|
4735
|
-
* Total change over period
|
|
4736
|
-
*/
|
|
4737
|
-
totalChange: string;
|
|
4738
|
-
/**
|
|
4739
|
-
* Total change percentage
|
|
4740
|
-
*/
|
|
4741
|
-
totalChangePercentage: string;
|
|
4742
|
-
};
|
|
4743
|
-
type MultiCurrencyPointDto = {
|
|
4744
|
-
/**
|
|
4745
|
-
* Date in YYYY-MM-DD format
|
|
4892
|
+
* Share of invested assets % (Decimal string); only for invested chartTokens
|
|
4746
4893
|
*/
|
|
4747
|
-
|
|
4894
|
+
pctOfInvestedAssets?: {
|
|
4895
|
+
[key: string]: unknown;
|
|
4896
|
+
} | null;
|
|
4748
4897
|
/**
|
|
4749
|
-
*
|
|
4898
|
+
* Cumulative realized P&L on sold lots (asOf-date cutoff); null when the method has no applicable sells, a sell lacks a price, or any required FX rate is missing (never-mix). When a sell spans multiple currencies (cross-currency sale), amount and currency reflect the base currency; baseCcyEquivalent is always the authoritative dual-FX figure
|
|
4750
4899
|
*/
|
|
4751
|
-
|
|
4900
|
+
realizedPnl?: MonetaryDto | null;
|
|
4752
4901
|
};
|
|
4753
|
-
|
|
4902
|
+
/**
|
|
4903
|
+
* Chart segment token (libs/common resolver)
|
|
4904
|
+
*/
|
|
4905
|
+
type chartToken = 'equity' | 'fund' | 'bond' | 'cash' | 'other';
|
|
4906
|
+
type HoldingPnlWarningDto = {
|
|
4754
4907
|
/**
|
|
4755
|
-
*
|
|
4908
|
+
* Warning type
|
|
4756
4909
|
*/
|
|
4757
|
-
|
|
4910
|
+
type: 'MISSING_COST_FX_RATE' | 'MISSING_MARKET_FX_RATE' | 'MISSING_SALE_PRICE' | 'MISSING_REALIZED_FX_RATE' | 'OVERSOLD_LOTS' | 'NO_PRICE' | 'MIXED_COST_CURRENCY';
|
|
4911
|
+
symbol?: {
|
|
4912
|
+
[key: string]: unknown;
|
|
4913
|
+
} | null;
|
|
4914
|
+
accountId?: {
|
|
4915
|
+
[key: string]: unknown;
|
|
4916
|
+
} | null;
|
|
4917
|
+
currency?: {
|
|
4918
|
+
[key: string]: unknown;
|
|
4919
|
+
} | null;
|
|
4920
|
+
};
|
|
4921
|
+
/**
|
|
4922
|
+
* Warning type
|
|
4923
|
+
*/
|
|
4924
|
+
type type4 = 'MISSING_COST_FX_RATE' | 'MISSING_MARKET_FX_RATE' | 'MISSING_SALE_PRICE' | 'MISSING_REALIZED_FX_RATE' | 'OVERSOLD_LOTS' | 'NO_PRICE' | 'MIXED_COST_CURRENCY';
|
|
4925
|
+
type HoldingPnlResponseDto = {
|
|
4926
|
+
asOfDate: string;
|
|
4927
|
+
baseCurrency: string;
|
|
4758
4928
|
/**
|
|
4759
|
-
*
|
|
4929
|
+
* Realized-P&L lot-matching method (FIFO or average). Unrealized cost basis remains average regardless of this value (#473).
|
|
4760
4930
|
*/
|
|
4761
|
-
|
|
4931
|
+
method: 'average' | 'FIFO';
|
|
4932
|
+
rows: Array<HoldingPnlRowDto>;
|
|
4933
|
+
warnings: Array<HoldingPnlWarningDto>;
|
|
4934
|
+
};
|
|
4935
|
+
/**
|
|
4936
|
+
* Realized-P&L lot-matching method (FIFO or average). Unrealized cost basis remains average regardless of this value (#473).
|
|
4937
|
+
*/
|
|
4938
|
+
type method = 'average' | 'FIFO';
|
|
4939
|
+
type AnonymousLoginDto = {
|
|
4762
4940
|
/**
|
|
4763
|
-
*
|
|
4941
|
+
* Access token for anonymous login
|
|
4764
4942
|
*/
|
|
4765
|
-
|
|
4943
|
+
accessToken: string;
|
|
4944
|
+
};
|
|
4945
|
+
type AnonymousLoginResponseDto = {
|
|
4766
4946
|
/**
|
|
4767
|
-
*
|
|
4947
|
+
* JWT auth token
|
|
4768
4948
|
*/
|
|
4769
|
-
|
|
4949
|
+
authToken: string;
|
|
4950
|
+
};
|
|
4951
|
+
type SymbolSearchResultDto = {
|
|
4952
|
+
symbol: string;
|
|
4953
|
+
name?: {
|
|
4954
|
+
[key: string]: unknown;
|
|
4955
|
+
} | null;
|
|
4956
|
+
exchange?: {
|
|
4957
|
+
[key: string]: unknown;
|
|
4958
|
+
} | null;
|
|
4770
4959
|
/**
|
|
4771
|
-
*
|
|
4960
|
+
* OpenBB asset_type (e.g. stock, etf)
|
|
4772
4961
|
*/
|
|
4773
|
-
|
|
4962
|
+
assetType?: {
|
|
4963
|
+
[key: string]: unknown;
|
|
4964
|
+
} | null;
|
|
4774
4965
|
/**
|
|
4775
|
-
*
|
|
4966
|
+
* IGN asset class (region.types.ts ASSET_CLASSES)
|
|
4776
4967
|
*/
|
|
4777
|
-
|
|
4968
|
+
assetClass?: {
|
|
4969
|
+
[key: string]: unknown;
|
|
4970
|
+
} | null;
|
|
4778
4971
|
/**
|
|
4779
|
-
*
|
|
4972
|
+
* IGN asset sub-class (region.types.ts ASSET_SUB_CLASSES)
|
|
4780
4973
|
*/
|
|
4781
|
-
|
|
4782
|
-
|
|
4783
|
-
|
|
4974
|
+
assetSubClass?: {
|
|
4975
|
+
[key: string]: unknown;
|
|
4976
|
+
} | null;
|
|
4784
4977
|
/**
|
|
4785
|
-
*
|
|
4978
|
+
* Trading currency (extra_data or inferred from exchange)
|
|
4786
4979
|
*/
|
|
4787
|
-
|
|
4980
|
+
currency?: {
|
|
4981
|
+
[key: string]: unknown;
|
|
4982
|
+
} | null;
|
|
4983
|
+
};
|
|
4984
|
+
type SymbolQuoteDto = {
|
|
4985
|
+
symbol?: string;
|
|
4986
|
+
name?: {
|
|
4987
|
+
[key: string]: unknown;
|
|
4988
|
+
} | null;
|
|
4989
|
+
exchange?: {
|
|
4990
|
+
[key: string]: unknown;
|
|
4991
|
+
} | null;
|
|
4788
4992
|
/**
|
|
4789
|
-
*
|
|
4993
|
+
* OpenBB asset_type
|
|
4790
4994
|
*/
|
|
4791
|
-
|
|
4995
|
+
assetType?: {
|
|
4996
|
+
[key: string]: unknown;
|
|
4997
|
+
} | null;
|
|
4792
4998
|
/**
|
|
4793
|
-
*
|
|
4999
|
+
* IGN asset class
|
|
4794
5000
|
*/
|
|
4795
|
-
|
|
5001
|
+
assetClass?: {
|
|
5002
|
+
[key: string]: unknown;
|
|
5003
|
+
} | null;
|
|
4796
5004
|
/**
|
|
4797
|
-
*
|
|
5005
|
+
* IGN asset sub-class
|
|
4798
5006
|
*/
|
|
4799
|
-
|
|
4800
|
-
|
|
4801
|
-
|
|
5007
|
+
assetSubClass?: {
|
|
5008
|
+
[key: string]: unknown;
|
|
5009
|
+
} | null;
|
|
4802
5010
|
/**
|
|
4803
|
-
*
|
|
5011
|
+
* Trading currency (extra_data or inferred from exchange)
|
|
4804
5012
|
*/
|
|
4805
|
-
|
|
5013
|
+
currency?: {
|
|
5014
|
+
[key: string]: unknown;
|
|
5015
|
+
} | null;
|
|
4806
5016
|
/**
|
|
4807
|
-
*
|
|
5017
|
+
* Latest price (Decimal string)
|
|
4808
5018
|
*/
|
|
4809
|
-
|
|
5019
|
+
price?: {
|
|
5020
|
+
[key: string]: unknown;
|
|
5021
|
+
} | null;
|
|
4810
5022
|
/**
|
|
4811
|
-
*
|
|
5023
|
+
* Date the price was observed (ISO yyyy-MM-dd)
|
|
4812
5024
|
*/
|
|
4813
|
-
|
|
5025
|
+
priceDate?: {
|
|
5026
|
+
[key: string]: unknown;
|
|
5027
|
+
} | null;
|
|
4814
5028
|
/**
|
|
4815
|
-
*
|
|
5029
|
+
* Change vs previous close, in percentage points (1.7 == 1.7%). openbb stores change_percent as a normalized decimal; this exposes percentage points for frontend convenience.
|
|
4816
5030
|
*/
|
|
4817
|
-
|
|
4818
|
-
|
|
4819
|
-
|
|
5031
|
+
changePercent?: {
|
|
5032
|
+
[key: string]: unknown;
|
|
5033
|
+
} | null;
|
|
4820
5034
|
/**
|
|
4821
|
-
*
|
|
5035
|
+
* Previous close (Decimal string)
|
|
4822
5036
|
*/
|
|
4823
|
-
|
|
5037
|
+
prevClose?: {
|
|
5038
|
+
[key: string]: unknown;
|
|
5039
|
+
} | null;
|
|
4824
5040
|
/**
|
|
4825
|
-
*
|
|
5041
|
+
* Day open (Decimal string)
|
|
4826
5042
|
*/
|
|
4827
|
-
|
|
5043
|
+
open?: {
|
|
5044
|
+
[key: string]: unknown;
|
|
5045
|
+
} | null;
|
|
4828
5046
|
/**
|
|
4829
|
-
*
|
|
5047
|
+
* Day high (Decimal string)
|
|
4830
5048
|
*/
|
|
4831
|
-
|
|
5049
|
+
high?: {
|
|
5050
|
+
[key: string]: unknown;
|
|
5051
|
+
} | null;
|
|
4832
5052
|
/**
|
|
4833
|
-
*
|
|
5053
|
+
* Day low (Decimal string)
|
|
4834
5054
|
*/
|
|
4835
|
-
|
|
5055
|
+
low?: {
|
|
5056
|
+
[key: string]: unknown;
|
|
5057
|
+
} | null;
|
|
4836
5058
|
/**
|
|
4837
|
-
*
|
|
5059
|
+
* Day volume (Decimal string)
|
|
4838
5060
|
*/
|
|
4839
|
-
|
|
5061
|
+
volume?: {
|
|
5062
|
+
[key: string]: unknown;
|
|
5063
|
+
} | null;
|
|
4840
5064
|
/**
|
|
4841
|
-
*
|
|
5065
|
+
* 52-week high (Decimal string)
|
|
4842
5066
|
*/
|
|
4843
|
-
|
|
4844
|
-
|
|
4845
|
-
|
|
4846
|
-
type GenerateSnapshotResponse = unknown;
|
|
4847
|
-
type BackfillSnapshotsBody = unknown;
|
|
4848
|
-
type BackfillSnapshotsResponse = unknown;
|
|
4849
|
-
type AnonymousLoginDto = {
|
|
5067
|
+
yearHigh?: {
|
|
5068
|
+
[key: string]: unknown;
|
|
5069
|
+
} | null;
|
|
4850
5070
|
/**
|
|
4851
|
-
*
|
|
5071
|
+
* 52-week low (Decimal string)
|
|
4852
5072
|
*/
|
|
4853
|
-
|
|
5073
|
+
yearLow?: {
|
|
5074
|
+
[key: string]: unknown;
|
|
5075
|
+
} | null;
|
|
4854
5076
|
};
|
|
4855
5077
|
type AccountControllerCreateData = {
|
|
4856
5078
|
/**
|
|
@@ -5677,41 +5899,155 @@ type ExpectedTransactionControllerConfirmMatchData = {
|
|
|
5677
5899
|
region: 'cn' | 'us' | 'de' | 'gb';
|
|
5678
5900
|
requestBody: ConfirmMatchDto;
|
|
5679
5901
|
};
|
|
5680
|
-
type ExpectedTransactionControllerConfirmMatchResponse = unknown;
|
|
5681
|
-
type ExpectedTransactionControllerUnmatchData = {
|
|
5902
|
+
type ExpectedTransactionControllerConfirmMatchResponse = unknown;
|
|
5903
|
+
type ExpectedTransactionControllerUnmatchData = {
|
|
5904
|
+
/**
|
|
5905
|
+
* Expected transaction ID
|
|
5906
|
+
*/
|
|
5907
|
+
id: string;
|
|
5908
|
+
/**
|
|
5909
|
+
* Region code for tenant context
|
|
5910
|
+
*/
|
|
5911
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
5912
|
+
};
|
|
5913
|
+
type ExpectedTransactionControllerUnmatchResponse = unknown;
|
|
5914
|
+
type ExpectedTransactionControllerEnterNowData = {
|
|
5915
|
+
/**
|
|
5916
|
+
* Expected transaction ID
|
|
5917
|
+
*/
|
|
5918
|
+
id: string;
|
|
5919
|
+
/**
|
|
5920
|
+
* Region code for tenant context
|
|
5921
|
+
*/
|
|
5922
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
5923
|
+
requestBody: EnterNowDto;
|
|
5924
|
+
};
|
|
5925
|
+
type ExpectedTransactionControllerEnterNowResponse = unknown;
|
|
5926
|
+
type ForecastControllerGetForecastData = {
|
|
5927
|
+
/**
|
|
5928
|
+
* Number of months to forecast (1-12, default 3)
|
|
5929
|
+
*/
|
|
5930
|
+
months?: number;
|
|
5931
|
+
/**
|
|
5932
|
+
* Region code for tenant context
|
|
5933
|
+
*/
|
|
5934
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
5935
|
+
};
|
|
5936
|
+
type ForecastControllerGetForecastResponse = ForecastResponseDto;
|
|
5937
|
+
type ReportingControllerGetPortfolioTrendsData = {
|
|
5938
|
+
/**
|
|
5939
|
+
* Data granularity
|
|
5940
|
+
*/
|
|
5941
|
+
granularity?: 'day' | 'week' | 'month';
|
|
5942
|
+
/**
|
|
5943
|
+
* Time period
|
|
5944
|
+
*/
|
|
5945
|
+
period?: '1m' | '3m' | '6m' | '1y';
|
|
5946
|
+
/**
|
|
5947
|
+
* Region code for tenant context
|
|
5948
|
+
*/
|
|
5949
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
5950
|
+
};
|
|
5951
|
+
type ReportingControllerGetPortfolioTrendsResponse = PortfolioTrendsResponseDto;
|
|
5952
|
+
type ReportingControllerGetCashFlowTrendsData = {
|
|
5953
|
+
/**
|
|
5954
|
+
* Data granularity (accepted for API symmetry; v1 returns month buckets)
|
|
5955
|
+
*/
|
|
5956
|
+
granularity?: 'day' | 'week' | 'month';
|
|
5957
|
+
/**
|
|
5958
|
+
* Time period
|
|
5959
|
+
*/
|
|
5960
|
+
period?: '1m' | '3m' | '6m' | '1y';
|
|
5961
|
+
/**
|
|
5962
|
+
* Region code for tenant context
|
|
5963
|
+
*/
|
|
5964
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
5965
|
+
};
|
|
5966
|
+
type ReportingControllerGetCashFlowTrendsResponse = CashFlowTrendsResponseDto;
|
|
5967
|
+
type ReportingControllerGenerateSnapshotData = {
|
|
5968
|
+
/**
|
|
5969
|
+
* Region code for tenant context
|
|
5970
|
+
*/
|
|
5971
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
5972
|
+
/**
|
|
5973
|
+
* Optional date (defaults to today)
|
|
5974
|
+
*/
|
|
5975
|
+
requestBody: GenerateSnapshotBody;
|
|
5976
|
+
};
|
|
5977
|
+
type ReportingControllerGenerateSnapshotResponse = GenerateSnapshotResponse;
|
|
5978
|
+
type ReportingControllerBackfillSnapshotsData = {
|
|
5979
|
+
/**
|
|
5980
|
+
* Region code for tenant context
|
|
5981
|
+
*/
|
|
5982
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
5983
|
+
requestBody: BackfillSnapshotsBody;
|
|
5984
|
+
};
|
|
5985
|
+
type ReportingControllerBackfillSnapshotsResponse = BackfillSnapshotsResponse;
|
|
5986
|
+
type UserControllerDeleteOwnUserData = {
|
|
5987
|
+
requestBody: DeleteOwnUserDto;
|
|
5988
|
+
};
|
|
5989
|
+
type UserControllerDeleteOwnUserResponse = void;
|
|
5990
|
+
type UserControllerGetUserData = {
|
|
5991
|
+
acceptLanguage: string;
|
|
5992
|
+
};
|
|
5993
|
+
type UserControllerGetUserResponse = unknown;
|
|
5994
|
+
type UserControllerSignupUserData = {
|
|
5995
|
+
requestBody: SignupDto;
|
|
5996
|
+
};
|
|
5997
|
+
type UserControllerSignupUserResponse = SignupResponseDto;
|
|
5998
|
+
type UserControllerDeleteUserData = {
|
|
5999
|
+
/**
|
|
6000
|
+
* User ID to delete
|
|
6001
|
+
*/
|
|
6002
|
+
id: string;
|
|
6003
|
+
};
|
|
6004
|
+
type UserControllerDeleteUserResponse = void;
|
|
6005
|
+
type UserControllerGetUserInfoData = {
|
|
5682
6006
|
/**
|
|
5683
|
-
*
|
|
6007
|
+
* User ID
|
|
5684
6008
|
*/
|
|
5685
6009
|
id: string;
|
|
6010
|
+
};
|
|
6011
|
+
type UserControllerGetUserInfoResponse = unknown;
|
|
6012
|
+
type UserControllerUpdateUserSettingData = {
|
|
6013
|
+
requestBody: UpdateUserSettingDto;
|
|
6014
|
+
};
|
|
6015
|
+
type UserControllerUpdateUserSettingResponse = unknown;
|
|
6016
|
+
type UserControllerGetAllUserSettingsByPageData = {
|
|
5686
6017
|
/**
|
|
5687
|
-
*
|
|
6018
|
+
* Page number
|
|
5688
6019
|
*/
|
|
5689
|
-
|
|
5690
|
-
};
|
|
5691
|
-
type ExpectedTransactionControllerUnmatchResponse = unknown;
|
|
5692
|
-
type ExpectedTransactionControllerEnterNowData = {
|
|
6020
|
+
pageNo: number;
|
|
5693
6021
|
/**
|
|
5694
|
-
*
|
|
6022
|
+
* Page size
|
|
5695
6023
|
*/
|
|
5696
|
-
|
|
6024
|
+
pageSize: number;
|
|
6025
|
+
};
|
|
6026
|
+
type UserControllerGetAllUserSettingsByPageResponse = unknown;
|
|
6027
|
+
type UserControllerGetAssetLiabilitySummaryResponse = unknown;
|
|
6028
|
+
type PropertyControllerGetAllResponse = unknown;
|
|
6029
|
+
type PropertyControllerGetByKeyData = {
|
|
5697
6030
|
/**
|
|
5698
|
-
*
|
|
6031
|
+
* Property key
|
|
5699
6032
|
*/
|
|
5700
|
-
|
|
5701
|
-
requestBody: EnterNowDto;
|
|
6033
|
+
key: string;
|
|
5702
6034
|
};
|
|
5703
|
-
type
|
|
5704
|
-
type
|
|
6035
|
+
type PropertyControllerGetByKeyResponse = unknown;
|
|
6036
|
+
type PropertyControllerUpdateData = {
|
|
5705
6037
|
/**
|
|
5706
|
-
*
|
|
6038
|
+
* Property key
|
|
5707
6039
|
*/
|
|
5708
|
-
|
|
6040
|
+
key: string;
|
|
6041
|
+
requestBody: UpdatePropertyDto;
|
|
6042
|
+
};
|
|
6043
|
+
type PropertyControllerUpdateResponse = unknown;
|
|
6044
|
+
type PropertyControllerDeleteData = {
|
|
5709
6045
|
/**
|
|
5710
|
-
*
|
|
6046
|
+
* Property key
|
|
5711
6047
|
*/
|
|
5712
|
-
|
|
6048
|
+
key: string;
|
|
5713
6049
|
};
|
|
5714
|
-
type
|
|
6050
|
+
type PropertyControllerDeleteResponse = void;
|
|
5715
6051
|
type TransactionRuleControllerCreateData = {
|
|
5716
6052
|
/**
|
|
5717
6053
|
* Region code for tenant context
|
|
@@ -5831,71 +6167,6 @@ type TransactionRuleControllerTestData = {
|
|
|
5831
6167
|
ruleId: string;
|
|
5832
6168
|
};
|
|
5833
6169
|
type TransactionRuleControllerTestResponse = TestRuleResponseDto;
|
|
5834
|
-
type UserControllerDeleteOwnUserData = {
|
|
5835
|
-
requestBody: DeleteOwnUserDto;
|
|
5836
|
-
};
|
|
5837
|
-
type UserControllerDeleteOwnUserResponse = void;
|
|
5838
|
-
type UserControllerGetUserData = {
|
|
5839
|
-
acceptLanguage: string;
|
|
5840
|
-
};
|
|
5841
|
-
type UserControllerGetUserResponse = unknown;
|
|
5842
|
-
type UserControllerSignupUserData = {
|
|
5843
|
-
requestBody: SignupDto;
|
|
5844
|
-
};
|
|
5845
|
-
type UserControllerSignupUserResponse = unknown;
|
|
5846
|
-
type UserControllerDeleteUserData = {
|
|
5847
|
-
/**
|
|
5848
|
-
* User ID to delete
|
|
5849
|
-
*/
|
|
5850
|
-
id: string;
|
|
5851
|
-
};
|
|
5852
|
-
type UserControllerDeleteUserResponse = void;
|
|
5853
|
-
type UserControllerGetUserInfoData = {
|
|
5854
|
-
/**
|
|
5855
|
-
* User ID
|
|
5856
|
-
*/
|
|
5857
|
-
id: string;
|
|
5858
|
-
};
|
|
5859
|
-
type UserControllerGetUserInfoResponse = unknown;
|
|
5860
|
-
type UserControllerUpdateUserSettingData = {
|
|
5861
|
-
requestBody: UpdateUserSettingDto;
|
|
5862
|
-
};
|
|
5863
|
-
type UserControllerUpdateUserSettingResponse = unknown;
|
|
5864
|
-
type UserControllerGetAllUserSettingsByPageData = {
|
|
5865
|
-
/**
|
|
5866
|
-
* Page number
|
|
5867
|
-
*/
|
|
5868
|
-
pageNo: number;
|
|
5869
|
-
/**
|
|
5870
|
-
* Page size
|
|
5871
|
-
*/
|
|
5872
|
-
pageSize: number;
|
|
5873
|
-
};
|
|
5874
|
-
type UserControllerGetAllUserSettingsByPageResponse = unknown;
|
|
5875
|
-
type UserControllerGetAssetLiabilitySummaryResponse = unknown;
|
|
5876
|
-
type PropertyControllerGetAllResponse = unknown;
|
|
5877
|
-
type PropertyControllerGetByKeyData = {
|
|
5878
|
-
/**
|
|
5879
|
-
* Property key
|
|
5880
|
-
*/
|
|
5881
|
-
key: string;
|
|
5882
|
-
};
|
|
5883
|
-
type PropertyControllerGetByKeyResponse = unknown;
|
|
5884
|
-
type PropertyControllerUpdateData = {
|
|
5885
|
-
/**
|
|
5886
|
-
* Property key
|
|
5887
|
-
*/
|
|
5888
|
-
key: string;
|
|
5889
|
-
requestBody: UpdatePropertyDto;
|
|
5890
|
-
};
|
|
5891
|
-
type PropertyControllerUpdateResponse = unknown;
|
|
5892
|
-
type PropertyControllerDeleteData = {
|
|
5893
|
-
/**
|
|
5894
|
-
* Property key
|
|
5895
|
-
*/
|
|
5896
|
-
key: string;
|
|
5897
|
-
};
|
|
5898
|
-
type PropertyControllerDeleteResponse = void;
|
|
5899
6170
|
type EventControllerCreateData = {
|
|
5900
6171
|
/**
|
|
5901
6172
|
* Region code for tenant context (decorative for life events)
|
|
@@ -6242,7 +6513,7 @@ type PlatformControllerMatchPlatformsData = {
|
|
|
6242
6513
|
*/
|
|
6243
6514
|
region?: string;
|
|
6244
6515
|
};
|
|
6245
|
-
type PlatformControllerMatchPlatformsResponse =
|
|
6516
|
+
type PlatformControllerMatchPlatformsResponse = PlatformMatchResponseDto;
|
|
6246
6517
|
type PlatformControllerUpdateData = {
|
|
6247
6518
|
/**
|
|
6248
6519
|
* Platform ID
|
|
@@ -6337,60 +6608,11 @@ type HoldingPnlControllerGetHoldingPnlData = {
|
|
|
6337
6608
|
region: 'cn' | 'us' | 'de' | 'gb';
|
|
6338
6609
|
};
|
|
6339
6610
|
type HoldingPnlControllerGetHoldingPnlResponse = HoldingPnlResponseDto;
|
|
6340
|
-
type ReportingControllerGetPortfolioTrendsData = {
|
|
6341
|
-
/**
|
|
6342
|
-
* Data granularity
|
|
6343
|
-
*/
|
|
6344
|
-
granularity?: 'day' | 'week' | 'month';
|
|
6345
|
-
/**
|
|
6346
|
-
* Time period
|
|
6347
|
-
*/
|
|
6348
|
-
period?: '1m' | '3m' | '6m' | '1y';
|
|
6349
|
-
/**
|
|
6350
|
-
* Region code for tenant context
|
|
6351
|
-
*/
|
|
6352
|
-
region: 'cn' | 'us' | 'de' | 'gb';
|
|
6353
|
-
};
|
|
6354
|
-
type ReportingControllerGetPortfolioTrendsResponse = PortfolioTrendsResponseDto;
|
|
6355
|
-
type ReportingControllerGetCashFlowTrendsData = {
|
|
6356
|
-
/**
|
|
6357
|
-
* Data granularity (accepted for API symmetry; v1 returns month buckets)
|
|
6358
|
-
*/
|
|
6359
|
-
granularity?: 'day' | 'week' | 'month';
|
|
6360
|
-
/**
|
|
6361
|
-
* Time period
|
|
6362
|
-
*/
|
|
6363
|
-
period?: '1m' | '3m' | '6m' | '1y';
|
|
6364
|
-
/**
|
|
6365
|
-
* Region code for tenant context
|
|
6366
|
-
*/
|
|
6367
|
-
region: 'cn' | 'us' | 'de' | 'gb';
|
|
6368
|
-
};
|
|
6369
|
-
type ReportingControllerGetCashFlowTrendsResponse = CashFlowTrendsResponseDto;
|
|
6370
|
-
type ReportingControllerGenerateSnapshotData = {
|
|
6371
|
-
/**
|
|
6372
|
-
* Region code for tenant context
|
|
6373
|
-
*/
|
|
6374
|
-
region: 'cn' | 'us' | 'de' | 'gb';
|
|
6375
|
-
/**
|
|
6376
|
-
* Optional date (defaults to today)
|
|
6377
|
-
*/
|
|
6378
|
-
requestBody: GenerateSnapshotBody;
|
|
6379
|
-
};
|
|
6380
|
-
type ReportingControllerGenerateSnapshotResponse = GenerateSnapshotResponse;
|
|
6381
|
-
type ReportingControllerBackfillSnapshotsData = {
|
|
6382
|
-
/**
|
|
6383
|
-
* Region code for tenant context
|
|
6384
|
-
*/
|
|
6385
|
-
region: 'cn' | 'us' | 'de' | 'gb';
|
|
6386
|
-
requestBody: BackfillSnapshotsBody;
|
|
6387
|
-
};
|
|
6388
|
-
type ReportingControllerBackfillSnapshotsResponse = BackfillSnapshotsResponse;
|
|
6389
6611
|
type ApiKeysControllerCreateApiKeyResponse = unknown;
|
|
6390
6612
|
type AuthControllerAccessTokenLoginData = {
|
|
6391
6613
|
requestBody: AnonymousLoginDto;
|
|
6392
6614
|
};
|
|
6393
|
-
type AuthControllerAccessTokenLoginResponse =
|
|
6615
|
+
type AuthControllerAccessTokenLoginResponse = AnonymousLoginResponseDto;
|
|
6394
6616
|
type CacheControllerFlushCacheResponse = unknown;
|
|
6395
6617
|
type ExchangeRateControllerGetExchangeRateData = {
|
|
6396
6618
|
/**
|
|
@@ -6417,6 +6639,29 @@ type HealthControllerResetCircuitBreakerData = {
|
|
|
6417
6639
|
type HealthControllerResetCircuitBreakerResponse = unknown;
|
|
6418
6640
|
type HealthControllerGetMetricsResponse = unknown;
|
|
6419
6641
|
type InfoControllerGetInfoResponse = unknown;
|
|
6642
|
+
type SymbolControllerSearchData = {
|
|
6643
|
+
/**
|
|
6644
|
+
* Filter by OpenBB asset_type (e.g. stock, etf)
|
|
6645
|
+
*/
|
|
6646
|
+
assetType?: string;
|
|
6647
|
+
/**
|
|
6648
|
+
* Filter by exchange code (e.g. US, HK, SS, SZ)
|
|
6649
|
+
*/
|
|
6650
|
+
exchange?: string;
|
|
6651
|
+
/**
|
|
6652
|
+
* Maximum number of results (clamped 1..50)
|
|
6653
|
+
*/
|
|
6654
|
+
limit?: number;
|
|
6655
|
+
/**
|
|
6656
|
+
* Search term — matched against symbol and instrument name. Empty string returns [].
|
|
6657
|
+
*/
|
|
6658
|
+
q: string;
|
|
6659
|
+
};
|
|
6660
|
+
type SymbolControllerSearchResponse = Array<SymbolSearchResultDto>;
|
|
6661
|
+
type SymbolControllerGetQuoteData = {
|
|
6662
|
+
symbol: string;
|
|
6663
|
+
};
|
|
6664
|
+
type SymbolControllerGetQuoteResponse = SymbolQuoteDto;
|
|
6420
6665
|
type $OpenApiTs = {
|
|
6421
6666
|
'/api/v1/{region}/bean/accounts': {
|
|
6422
6667
|
post: {
|
|
@@ -7458,425 +7703,497 @@ type $OpenApiTs = {
|
|
|
7458
7703
|
};
|
|
7459
7704
|
'/api/v1/{region}/bean/expected-transactions/{id}/enter': {
|
|
7460
7705
|
post: {
|
|
7461
|
-
req: ExpectedTransactionControllerEnterNowData;
|
|
7706
|
+
req: ExpectedTransactionControllerEnterNowData;
|
|
7707
|
+
res: {
|
|
7708
|
+
/**
|
|
7709
|
+
* Transaction created successfully
|
|
7710
|
+
*/
|
|
7711
|
+
201: unknown;
|
|
7712
|
+
/**
|
|
7713
|
+
* Cannot enter - not in PENDING status or missing accounts
|
|
7714
|
+
*/
|
|
7715
|
+
400: unknown;
|
|
7716
|
+
/**
|
|
7717
|
+
* Expected transaction or accounts not found
|
|
7718
|
+
*/
|
|
7719
|
+
404: unknown;
|
|
7720
|
+
};
|
|
7721
|
+
};
|
|
7722
|
+
};
|
|
7723
|
+
'/api/v1/{region}/bean/recurring/forecast': {
|
|
7724
|
+
get: {
|
|
7725
|
+
req: ForecastControllerGetForecastData;
|
|
7726
|
+
res: {
|
|
7727
|
+
/**
|
|
7728
|
+
* Forecast retrieved successfully
|
|
7729
|
+
*/
|
|
7730
|
+
200: ForecastResponseDto;
|
|
7731
|
+
};
|
|
7732
|
+
};
|
|
7733
|
+
};
|
|
7734
|
+
'/api/v1/{region}/reporting/portfolio/trends': {
|
|
7735
|
+
get: {
|
|
7736
|
+
req: ReportingControllerGetPortfolioTrendsData;
|
|
7737
|
+
res: {
|
|
7738
|
+
/**
|
|
7739
|
+
* Trends retrieved successfully
|
|
7740
|
+
*/
|
|
7741
|
+
200: PortfolioTrendsResponseDto;
|
|
7742
|
+
/**
|
|
7743
|
+
* User not authenticated
|
|
7744
|
+
*/
|
|
7745
|
+
401: unknown;
|
|
7746
|
+
};
|
|
7747
|
+
};
|
|
7748
|
+
};
|
|
7749
|
+
'/api/v1/{region}/reporting/cash-flow/trends': {
|
|
7750
|
+
get: {
|
|
7751
|
+
req: ReportingControllerGetCashFlowTrendsData;
|
|
7752
|
+
res: {
|
|
7753
|
+
/**
|
|
7754
|
+
* Cash-flow trends retrieved successfully
|
|
7755
|
+
*/
|
|
7756
|
+
200: CashFlowTrendsResponseDto;
|
|
7757
|
+
/**
|
|
7758
|
+
* User not authenticated
|
|
7759
|
+
*/
|
|
7760
|
+
401: unknown;
|
|
7761
|
+
};
|
|
7762
|
+
};
|
|
7763
|
+
};
|
|
7764
|
+
'/api/v1/{region}/reporting/snapshots/generate': {
|
|
7765
|
+
post: {
|
|
7766
|
+
req: ReportingControllerGenerateSnapshotData;
|
|
7767
|
+
res: {
|
|
7768
|
+
/**
|
|
7769
|
+
* Snapshot generated successfully
|
|
7770
|
+
*/
|
|
7771
|
+
200: GenerateSnapshotResponse;
|
|
7772
|
+
/**
|
|
7773
|
+
* Invalid date format
|
|
7774
|
+
*/
|
|
7775
|
+
400: unknown;
|
|
7776
|
+
/**
|
|
7777
|
+
* User not authenticated
|
|
7778
|
+
*/
|
|
7779
|
+
401: unknown;
|
|
7780
|
+
};
|
|
7781
|
+
};
|
|
7782
|
+
};
|
|
7783
|
+
'/api/v1/{region}/reporting/snapshots/backfill': {
|
|
7784
|
+
post: {
|
|
7785
|
+
req: ReportingControllerBackfillSnapshotsData;
|
|
7462
7786
|
res: {
|
|
7463
7787
|
/**
|
|
7464
|
-
*
|
|
7788
|
+
* Backfill completed successfully
|
|
7465
7789
|
*/
|
|
7466
|
-
|
|
7790
|
+
200: BackfillSnapshotsResponse;
|
|
7467
7791
|
/**
|
|
7468
|
-
*
|
|
7792
|
+
* Invalid date format or range
|
|
7469
7793
|
*/
|
|
7470
7794
|
400: unknown;
|
|
7471
7795
|
/**
|
|
7472
|
-
*
|
|
7796
|
+
* User not authenticated
|
|
7473
7797
|
*/
|
|
7474
|
-
|
|
7475
|
-
};
|
|
7476
|
-
};
|
|
7477
|
-
};
|
|
7478
|
-
'/api/v1/{region}/bean/recurring/forecast': {
|
|
7479
|
-
get: {
|
|
7480
|
-
req: ForecastControllerGetForecastData;
|
|
7481
|
-
res: {
|
|
7798
|
+
401: unknown;
|
|
7482
7799
|
/**
|
|
7483
|
-
*
|
|
7800
|
+
* Backfill already in progress for this user
|
|
7484
7801
|
*/
|
|
7485
|
-
|
|
7802
|
+
409: unknown;
|
|
7486
7803
|
};
|
|
7487
7804
|
};
|
|
7488
7805
|
};
|
|
7489
|
-
'/api/v1/
|
|
7490
|
-
|
|
7491
|
-
req:
|
|
7806
|
+
'/api/v1/users': {
|
|
7807
|
+
delete: {
|
|
7808
|
+
req: UserControllerDeleteOwnUserData;
|
|
7492
7809
|
res: {
|
|
7493
7810
|
/**
|
|
7494
|
-
*
|
|
7495
|
-
*/
|
|
7496
|
-
200: TransactionRuleResponseDto;
|
|
7497
|
-
/**
|
|
7498
|
-
* Validation failed
|
|
7499
|
-
*/
|
|
7500
|
-
400: ApiProblemResponseDto;
|
|
7501
|
-
/**
|
|
7502
|
-
* Unauthorized
|
|
7811
|
+
* User deleted successfully
|
|
7503
7812
|
*/
|
|
7504
|
-
|
|
7813
|
+
204: void;
|
|
7505
7814
|
/**
|
|
7506
|
-
*
|
|
7815
|
+
* Invalid access token
|
|
7507
7816
|
*/
|
|
7508
|
-
|
|
7817
|
+
403: unknown;
|
|
7509
7818
|
};
|
|
7510
7819
|
};
|
|
7511
7820
|
get: {
|
|
7512
|
-
req:
|
|
7821
|
+
req: UserControllerGetUserData;
|
|
7513
7822
|
res: {
|
|
7514
7823
|
/**
|
|
7515
|
-
*
|
|
7516
|
-
*/
|
|
7517
|
-
200: TransactionRuleListResponseDto;
|
|
7518
|
-
/**
|
|
7519
|
-
* Unauthorized
|
|
7824
|
+
* User retrieved successfully
|
|
7520
7825
|
*/
|
|
7521
|
-
|
|
7826
|
+
200: unknown;
|
|
7522
7827
|
};
|
|
7523
7828
|
};
|
|
7524
|
-
};
|
|
7525
|
-
'/api/v1/{region}/bean/transaction-rules/validate': {
|
|
7526
7829
|
post: {
|
|
7527
|
-
req:
|
|
7830
|
+
req: UserControllerSignupUserData;
|
|
7528
7831
|
res: {
|
|
7529
7832
|
/**
|
|
7530
|
-
*
|
|
7833
|
+
* User created successfully
|
|
7531
7834
|
*/
|
|
7532
|
-
|
|
7835
|
+
201: SignupResponseDto;
|
|
7533
7836
|
/**
|
|
7534
|
-
*
|
|
7837
|
+
* Invalid Turnstile token (when Turnstile is enabled)
|
|
7535
7838
|
*/
|
|
7536
|
-
400:
|
|
7839
|
+
400: unknown;
|
|
7537
7840
|
/**
|
|
7538
|
-
*
|
|
7841
|
+
* User signup is disabled
|
|
7539
7842
|
*/
|
|
7540
|
-
|
|
7843
|
+
403: unknown;
|
|
7541
7844
|
};
|
|
7542
7845
|
};
|
|
7543
7846
|
};
|
|
7544
|
-
'/api/v1/{
|
|
7545
|
-
|
|
7546
|
-
req:
|
|
7847
|
+
'/api/v1/users/{id}': {
|
|
7848
|
+
delete: {
|
|
7849
|
+
req: UserControllerDeleteUserData;
|
|
7547
7850
|
res: {
|
|
7548
7851
|
/**
|
|
7549
|
-
*
|
|
7550
|
-
*/
|
|
7551
|
-
201: BulkCreateRulesResponseDto;
|
|
7552
|
-
/**
|
|
7553
|
-
* Invalid bulk create data
|
|
7852
|
+
* User deleted successfully
|
|
7554
7853
|
*/
|
|
7555
|
-
|
|
7854
|
+
204: void;
|
|
7556
7855
|
/**
|
|
7557
|
-
*
|
|
7856
|
+
* Cannot delete own account or insufficient permissions
|
|
7558
7857
|
*/
|
|
7559
|
-
|
|
7858
|
+
403: unknown;
|
|
7560
7859
|
};
|
|
7561
7860
|
};
|
|
7562
7861
|
};
|
|
7563
|
-
'/api/v1/{
|
|
7862
|
+
'/api/v1/users/{id}/info': {
|
|
7564
7863
|
get: {
|
|
7565
|
-
req:
|
|
7864
|
+
req: UserControllerGetUserInfoData;
|
|
7566
7865
|
res: {
|
|
7567
7866
|
/**
|
|
7568
|
-
*
|
|
7569
|
-
*/
|
|
7570
|
-
200: ExportRulesResponseDto;
|
|
7571
|
-
/**
|
|
7572
|
-
* Unsupported format
|
|
7867
|
+
* User info retrieved successfully
|
|
7573
7868
|
*/
|
|
7574
|
-
|
|
7869
|
+
200: unknown;
|
|
7575
7870
|
/**
|
|
7576
|
-
*
|
|
7871
|
+
* Cannot access other user info without admin permission
|
|
7577
7872
|
*/
|
|
7578
|
-
|
|
7873
|
+
403: unknown;
|
|
7579
7874
|
};
|
|
7580
7875
|
};
|
|
7581
7876
|
};
|
|
7582
|
-
'/api/v1/
|
|
7583
|
-
|
|
7584
|
-
req:
|
|
7877
|
+
'/api/v1/users/setting': {
|
|
7878
|
+
put: {
|
|
7879
|
+
req: UserControllerUpdateUserSettingData;
|
|
7585
7880
|
res: {
|
|
7586
7881
|
/**
|
|
7587
|
-
*
|
|
7882
|
+
* Settings updated successfully
|
|
7588
7883
|
*/
|
|
7589
|
-
200:
|
|
7884
|
+
200: unknown;
|
|
7590
7885
|
/**
|
|
7591
|
-
*
|
|
7886
|
+
* Insufficient permissions
|
|
7592
7887
|
*/
|
|
7593
|
-
|
|
7888
|
+
403: unknown;
|
|
7594
7889
|
};
|
|
7595
7890
|
};
|
|
7596
7891
|
};
|
|
7597
|
-
'/api/v1/
|
|
7892
|
+
'/api/v1/users/settings-by-page': {
|
|
7598
7893
|
get: {
|
|
7599
|
-
req:
|
|
7894
|
+
req: UserControllerGetAllUserSettingsByPageData;
|
|
7600
7895
|
res: {
|
|
7601
7896
|
/**
|
|
7602
|
-
*
|
|
7603
|
-
*/
|
|
7604
|
-
200: TransactionRuleResponseDto;
|
|
7605
|
-
/**
|
|
7606
|
-
* Unauthorized
|
|
7607
|
-
*/
|
|
7608
|
-
401: ApiProblemResponseDto;
|
|
7609
|
-
/**
|
|
7610
|
-
* Forbidden - not owner of rule
|
|
7611
|
-
*/
|
|
7612
|
-
403: ApiProblemResponseDto;
|
|
7613
|
-
/**
|
|
7614
|
-
* Rule not found
|
|
7897
|
+
* Settings list retrieved successfully
|
|
7615
7898
|
*/
|
|
7616
|
-
|
|
7899
|
+
200: unknown;
|
|
7617
7900
|
};
|
|
7618
7901
|
};
|
|
7619
|
-
|
|
7620
|
-
|
|
7902
|
+
};
|
|
7903
|
+
'/api/v1/users/asset-liability-summary': {
|
|
7904
|
+
get: {
|
|
7621
7905
|
res: {
|
|
7622
7906
|
/**
|
|
7623
|
-
*
|
|
7907
|
+
* Summary retrieved successfully
|
|
7624
7908
|
*/
|
|
7625
|
-
200:
|
|
7909
|
+
200: unknown;
|
|
7910
|
+
};
|
|
7911
|
+
};
|
|
7912
|
+
};
|
|
7913
|
+
'/api/v1/admin/properties': {
|
|
7914
|
+
get: {
|
|
7915
|
+
res: {
|
|
7626
7916
|
/**
|
|
7627
|
-
*
|
|
7917
|
+
* Properties retrieved successfully
|
|
7628
7918
|
*/
|
|
7629
|
-
|
|
7919
|
+
200: unknown;
|
|
7630
7920
|
/**
|
|
7631
7921
|
* Unauthorized
|
|
7632
7922
|
*/
|
|
7633
|
-
401:
|
|
7634
|
-
/**
|
|
7635
|
-
* Forbidden - not owner of rule
|
|
7636
|
-
*/
|
|
7637
|
-
403: ApiProblemResponseDto;
|
|
7638
|
-
/**
|
|
7639
|
-
* Rule not found
|
|
7640
|
-
*/
|
|
7641
|
-
404: ApiProblemResponseDto;
|
|
7923
|
+
401: unknown;
|
|
7642
7924
|
/**
|
|
7643
|
-
*
|
|
7925
|
+
* Forbidden - insufficient permissions
|
|
7644
7926
|
*/
|
|
7645
|
-
|
|
7927
|
+
403: unknown;
|
|
7646
7928
|
};
|
|
7647
7929
|
};
|
|
7648
|
-
|
|
7649
|
-
|
|
7930
|
+
};
|
|
7931
|
+
'/api/v1/admin/properties/{key}': {
|
|
7932
|
+
get: {
|
|
7933
|
+
req: PropertyControllerGetByKeyData;
|
|
7650
7934
|
res: {
|
|
7651
7935
|
/**
|
|
7652
|
-
*
|
|
7936
|
+
* Property retrieved successfully
|
|
7653
7937
|
*/
|
|
7654
|
-
|
|
7938
|
+
200: unknown;
|
|
7655
7939
|
/**
|
|
7656
7940
|
* Unauthorized
|
|
7657
7941
|
*/
|
|
7658
|
-
401:
|
|
7659
|
-
/**
|
|
7660
|
-
* Forbidden - not owner of rule
|
|
7661
|
-
*/
|
|
7662
|
-
403: ApiProblemResponseDto;
|
|
7942
|
+
401: unknown;
|
|
7663
7943
|
/**
|
|
7664
|
-
*
|
|
7944
|
+
* Forbidden - insufficient permissions
|
|
7665
7945
|
*/
|
|
7666
|
-
|
|
7946
|
+
403: unknown;
|
|
7667
7947
|
/**
|
|
7668
|
-
*
|
|
7948
|
+
* Property not found
|
|
7669
7949
|
*/
|
|
7670
|
-
|
|
7950
|
+
404: unknown;
|
|
7671
7951
|
};
|
|
7672
7952
|
};
|
|
7673
|
-
|
|
7674
|
-
|
|
7675
|
-
post: {
|
|
7676
|
-
req: TransactionRuleControllerTestData;
|
|
7953
|
+
put: {
|
|
7954
|
+
req: PropertyControllerUpdateData;
|
|
7677
7955
|
res: {
|
|
7678
7956
|
/**
|
|
7679
|
-
*
|
|
7957
|
+
* Property updated successfully
|
|
7680
7958
|
*/
|
|
7681
|
-
200:
|
|
7959
|
+
200: unknown;
|
|
7682
7960
|
/**
|
|
7683
7961
|
* Unauthorized
|
|
7684
7962
|
*/
|
|
7685
|
-
401:
|
|
7686
|
-
/**
|
|
7687
|
-
* Forbidden - not owner of rule
|
|
7688
|
-
*/
|
|
7689
|
-
403: ApiProblemResponseDto;
|
|
7963
|
+
401: unknown;
|
|
7690
7964
|
/**
|
|
7691
|
-
*
|
|
7965
|
+
* Forbidden - insufficient permissions
|
|
7692
7966
|
*/
|
|
7693
|
-
|
|
7967
|
+
403: unknown;
|
|
7694
7968
|
};
|
|
7695
7969
|
};
|
|
7696
|
-
};
|
|
7697
|
-
'/api/v1/users': {
|
|
7698
7970
|
delete: {
|
|
7699
|
-
req:
|
|
7971
|
+
req: PropertyControllerDeleteData;
|
|
7700
7972
|
res: {
|
|
7701
7973
|
/**
|
|
7702
|
-
*
|
|
7974
|
+
* Property deleted successfully
|
|
7703
7975
|
*/
|
|
7704
7976
|
204: void;
|
|
7705
7977
|
/**
|
|
7706
|
-
*
|
|
7978
|
+
* Unauthorized
|
|
7979
|
+
*/
|
|
7980
|
+
401: unknown;
|
|
7981
|
+
/**
|
|
7982
|
+
* Forbidden - insufficient permissions
|
|
7707
7983
|
*/
|
|
7708
7984
|
403: unknown;
|
|
7709
|
-
};
|
|
7710
|
-
};
|
|
7711
|
-
get: {
|
|
7712
|
-
req: UserControllerGetUserData;
|
|
7713
|
-
res: {
|
|
7714
7985
|
/**
|
|
7715
|
-
*
|
|
7986
|
+
* Property not found
|
|
7716
7987
|
*/
|
|
7717
|
-
|
|
7988
|
+
404: unknown;
|
|
7718
7989
|
};
|
|
7719
7990
|
};
|
|
7991
|
+
};
|
|
7992
|
+
'/api/v1/{region}/bean/transaction-rules': {
|
|
7720
7993
|
post: {
|
|
7721
|
-
req:
|
|
7994
|
+
req: TransactionRuleControllerCreateData;
|
|
7722
7995
|
res: {
|
|
7723
7996
|
/**
|
|
7724
|
-
*
|
|
7997
|
+
* Rule updated successfully (upsert mode)
|
|
7725
7998
|
*/
|
|
7726
|
-
|
|
7999
|
+
200: TransactionRuleResponseDto;
|
|
7727
8000
|
/**
|
|
7728
|
-
*
|
|
8001
|
+
* Validation failed
|
|
7729
8002
|
*/
|
|
7730
|
-
400:
|
|
8003
|
+
400: ApiProblemResponseDto;
|
|
7731
8004
|
/**
|
|
7732
|
-
*
|
|
8005
|
+
* Unauthorized
|
|
7733
8006
|
*/
|
|
7734
|
-
|
|
8007
|
+
401: ApiProblemResponseDto;
|
|
8008
|
+
/**
|
|
8009
|
+
* Resource conflict - another process is updating this rule
|
|
8010
|
+
*/
|
|
8011
|
+
409: ApiProblemResponseDto;
|
|
7735
8012
|
};
|
|
7736
8013
|
};
|
|
7737
|
-
|
|
7738
|
-
|
|
7739
|
-
delete: {
|
|
7740
|
-
req: UserControllerDeleteUserData;
|
|
8014
|
+
get: {
|
|
8015
|
+
req: TransactionRuleControllerListData;
|
|
7741
8016
|
res: {
|
|
7742
8017
|
/**
|
|
7743
|
-
*
|
|
8018
|
+
* List of rules
|
|
7744
8019
|
*/
|
|
7745
|
-
|
|
8020
|
+
200: TransactionRuleListResponseDto;
|
|
7746
8021
|
/**
|
|
7747
|
-
*
|
|
8022
|
+
* Unauthorized
|
|
7748
8023
|
*/
|
|
7749
|
-
|
|
8024
|
+
401: ApiProblemResponseDto;
|
|
7750
8025
|
};
|
|
7751
8026
|
};
|
|
7752
8027
|
};
|
|
7753
|
-
'/api/v1/
|
|
7754
|
-
|
|
7755
|
-
req:
|
|
8028
|
+
'/api/v1/{region}/bean/transaction-rules/validate': {
|
|
8029
|
+
post: {
|
|
8030
|
+
req: TransactionRuleControllerValidateData;
|
|
7756
8031
|
res: {
|
|
7757
8032
|
/**
|
|
7758
|
-
*
|
|
8033
|
+
* Validation result
|
|
7759
8034
|
*/
|
|
7760
|
-
200:
|
|
8035
|
+
200: ValidateRuleResponseDto;
|
|
7761
8036
|
/**
|
|
7762
|
-
*
|
|
8037
|
+
* Validation failed
|
|
7763
8038
|
*/
|
|
7764
|
-
|
|
8039
|
+
400: ApiProblemResponseDto;
|
|
8040
|
+
/**
|
|
8041
|
+
* Unauthorized
|
|
8042
|
+
*/
|
|
8043
|
+
401: ApiProblemResponseDto;
|
|
7765
8044
|
};
|
|
7766
8045
|
};
|
|
7767
8046
|
};
|
|
7768
|
-
'/api/v1/
|
|
7769
|
-
|
|
7770
|
-
req:
|
|
8047
|
+
'/api/v1/{region}/bean/transaction-rules/bulk': {
|
|
8048
|
+
post: {
|
|
8049
|
+
req: TransactionRuleControllerBulkCreateData;
|
|
7771
8050
|
res: {
|
|
7772
8051
|
/**
|
|
7773
|
-
*
|
|
8052
|
+
* Bulk create completed
|
|
7774
8053
|
*/
|
|
7775
|
-
|
|
8054
|
+
201: BulkCreateRulesResponseDto;
|
|
7776
8055
|
/**
|
|
7777
|
-
*
|
|
8056
|
+
* Invalid bulk create data
|
|
7778
8057
|
*/
|
|
7779
|
-
|
|
8058
|
+
400: ApiProblemResponseDto;
|
|
8059
|
+
/**
|
|
8060
|
+
* Unauthorized
|
|
8061
|
+
*/
|
|
8062
|
+
401: ApiProblemResponseDto;
|
|
7780
8063
|
};
|
|
7781
8064
|
};
|
|
7782
8065
|
};
|
|
7783
|
-
'/api/v1/
|
|
8066
|
+
'/api/v1/{region}/bean/transaction-rules/export/{format}': {
|
|
7784
8067
|
get: {
|
|
7785
|
-
req:
|
|
8068
|
+
req: TransactionRuleControllerExportData;
|
|
7786
8069
|
res: {
|
|
7787
8070
|
/**
|
|
7788
|
-
*
|
|
8071
|
+
* Exported rules
|
|
7789
8072
|
*/
|
|
7790
|
-
200:
|
|
8073
|
+
200: ExportRulesResponseDto;
|
|
8074
|
+
/**
|
|
8075
|
+
* Unsupported format
|
|
8076
|
+
*/
|
|
8077
|
+
400: ApiProblemResponseDto;
|
|
8078
|
+
/**
|
|
8079
|
+
* Unauthorized
|
|
8080
|
+
*/
|
|
8081
|
+
401: ApiProblemResponseDto;
|
|
7791
8082
|
};
|
|
7792
8083
|
};
|
|
7793
8084
|
};
|
|
7794
|
-
'/api/v1/
|
|
8085
|
+
'/api/v1/{region}/bean/transaction-rules/statistics/{period}': {
|
|
7795
8086
|
get: {
|
|
8087
|
+
req: TransactionRuleControllerGetStatisticsData;
|
|
7796
8088
|
res: {
|
|
7797
8089
|
/**
|
|
7798
|
-
*
|
|
8090
|
+
* Rule statistics
|
|
7799
8091
|
*/
|
|
7800
|
-
200:
|
|
8092
|
+
200: RuleStatisticsResponseDto;
|
|
8093
|
+
/**
|
|
8094
|
+
* Unauthorized
|
|
8095
|
+
*/
|
|
8096
|
+
401: ApiProblemResponseDto;
|
|
7801
8097
|
};
|
|
7802
8098
|
};
|
|
7803
8099
|
};
|
|
7804
|
-
'/api/v1/
|
|
8100
|
+
'/api/v1/{region}/bean/transaction-rules/{ruleId}': {
|
|
7805
8101
|
get: {
|
|
8102
|
+
req: TransactionRuleControllerGetDetailData;
|
|
7806
8103
|
res: {
|
|
7807
8104
|
/**
|
|
7808
|
-
*
|
|
8105
|
+
* Rule details
|
|
7809
8106
|
*/
|
|
7810
|
-
200:
|
|
8107
|
+
200: TransactionRuleResponseDto;
|
|
7811
8108
|
/**
|
|
7812
8109
|
* Unauthorized
|
|
7813
8110
|
*/
|
|
7814
|
-
401:
|
|
8111
|
+
401: ApiProblemResponseDto;
|
|
7815
8112
|
/**
|
|
7816
|
-
* Forbidden -
|
|
8113
|
+
* Forbidden - not owner of rule
|
|
7817
8114
|
*/
|
|
7818
|
-
403:
|
|
8115
|
+
403: ApiProblemResponseDto;
|
|
8116
|
+
/**
|
|
8117
|
+
* Rule not found
|
|
8118
|
+
*/
|
|
8119
|
+
404: ApiProblemResponseDto;
|
|
7819
8120
|
};
|
|
7820
8121
|
};
|
|
7821
|
-
|
|
7822
|
-
|
|
7823
|
-
get: {
|
|
7824
|
-
req: PropertyControllerGetByKeyData;
|
|
8122
|
+
put: {
|
|
8123
|
+
req: TransactionRuleControllerUpdateData;
|
|
7825
8124
|
res: {
|
|
7826
8125
|
/**
|
|
7827
|
-
*
|
|
8126
|
+
* Rule updated successfully
|
|
7828
8127
|
*/
|
|
7829
|
-
200:
|
|
8128
|
+
200: TransactionRuleResponseDto;
|
|
8129
|
+
/**
|
|
8130
|
+
* Validation failed
|
|
8131
|
+
*/
|
|
8132
|
+
400: ApiProblemResponseDto;
|
|
7830
8133
|
/**
|
|
7831
8134
|
* Unauthorized
|
|
7832
8135
|
*/
|
|
7833
|
-
401:
|
|
8136
|
+
401: ApiProblemResponseDto;
|
|
7834
8137
|
/**
|
|
7835
|
-
* Forbidden -
|
|
8138
|
+
* Forbidden - not owner of rule
|
|
7836
8139
|
*/
|
|
7837
|
-
403:
|
|
8140
|
+
403: ApiProblemResponseDto;
|
|
7838
8141
|
/**
|
|
7839
|
-
*
|
|
8142
|
+
* Rule not found
|
|
7840
8143
|
*/
|
|
7841
|
-
404:
|
|
8144
|
+
404: ApiProblemResponseDto;
|
|
8145
|
+
/**
|
|
8146
|
+
* Resource conflict - rule is being modified by another process
|
|
8147
|
+
*/
|
|
8148
|
+
409: ApiProblemResponseDto;
|
|
7842
8149
|
};
|
|
7843
8150
|
};
|
|
7844
|
-
|
|
7845
|
-
req:
|
|
8151
|
+
delete: {
|
|
8152
|
+
req: TransactionRuleControllerDeleteData;
|
|
7846
8153
|
res: {
|
|
7847
8154
|
/**
|
|
7848
|
-
*
|
|
8155
|
+
* Rule deleted successfully
|
|
7849
8156
|
*/
|
|
7850
|
-
|
|
8157
|
+
204: void;
|
|
7851
8158
|
/**
|
|
7852
8159
|
* Unauthorized
|
|
7853
8160
|
*/
|
|
7854
|
-
401:
|
|
8161
|
+
401: ApiProblemResponseDto;
|
|
7855
8162
|
/**
|
|
7856
|
-
* Forbidden -
|
|
8163
|
+
* Forbidden - not owner of rule
|
|
7857
8164
|
*/
|
|
7858
|
-
403:
|
|
8165
|
+
403: ApiProblemResponseDto;
|
|
8166
|
+
/**
|
|
8167
|
+
* Rule not found
|
|
8168
|
+
*/
|
|
8169
|
+
404: ApiProblemResponseDto;
|
|
8170
|
+
/**
|
|
8171
|
+
* Resource conflict - rule is being modified by another process
|
|
8172
|
+
*/
|
|
8173
|
+
409: ApiProblemResponseDto;
|
|
7859
8174
|
};
|
|
7860
8175
|
};
|
|
7861
|
-
|
|
7862
|
-
|
|
8176
|
+
};
|
|
8177
|
+
'/api/v1/{region}/bean/transaction-rules/{ruleId}/test': {
|
|
8178
|
+
post: {
|
|
8179
|
+
req: TransactionRuleControllerTestData;
|
|
7863
8180
|
res: {
|
|
7864
8181
|
/**
|
|
7865
|
-
*
|
|
8182
|
+
* Test result
|
|
7866
8183
|
*/
|
|
7867
|
-
|
|
8184
|
+
200: TestRuleResponseDto;
|
|
7868
8185
|
/**
|
|
7869
8186
|
* Unauthorized
|
|
7870
8187
|
*/
|
|
7871
|
-
401:
|
|
8188
|
+
401: ApiProblemResponseDto;
|
|
7872
8189
|
/**
|
|
7873
|
-
* Forbidden -
|
|
8190
|
+
* Forbidden - not owner of rule
|
|
7874
8191
|
*/
|
|
7875
|
-
403:
|
|
8192
|
+
403: ApiProblemResponseDto;
|
|
7876
8193
|
/**
|
|
7877
|
-
*
|
|
8194
|
+
* Rule not found
|
|
7878
8195
|
*/
|
|
7879
|
-
404:
|
|
8196
|
+
404: ApiProblemResponseDto;
|
|
7880
8197
|
};
|
|
7881
8198
|
};
|
|
7882
8199
|
};
|
|
@@ -8432,9 +8749,9 @@ type $OpenApiTs = {
|
|
|
8432
8749
|
req: PlatformControllerMatchPlatformsData;
|
|
8433
8750
|
res: {
|
|
8434
8751
|
/**
|
|
8435
|
-
*
|
|
8752
|
+
* Matching platforms with overall match type and truncation flag
|
|
8436
8753
|
*/
|
|
8437
|
-
200:
|
|
8754
|
+
200: PlatformMatchResponseDto;
|
|
8438
8755
|
};
|
|
8439
8756
|
};
|
|
8440
8757
|
};
|
|
@@ -8553,78 +8870,6 @@ type $OpenApiTs = {
|
|
|
8553
8870
|
};
|
|
8554
8871
|
};
|
|
8555
8872
|
};
|
|
8556
|
-
'/api/v1/{region}/reporting/portfolio/trends': {
|
|
8557
|
-
get: {
|
|
8558
|
-
req: ReportingControllerGetPortfolioTrendsData;
|
|
8559
|
-
res: {
|
|
8560
|
-
/**
|
|
8561
|
-
* Trends retrieved successfully
|
|
8562
|
-
*/
|
|
8563
|
-
200: PortfolioTrendsResponseDto;
|
|
8564
|
-
/**
|
|
8565
|
-
* User not authenticated
|
|
8566
|
-
*/
|
|
8567
|
-
401: unknown;
|
|
8568
|
-
};
|
|
8569
|
-
};
|
|
8570
|
-
};
|
|
8571
|
-
'/api/v1/{region}/reporting/cash-flow/trends': {
|
|
8572
|
-
get: {
|
|
8573
|
-
req: ReportingControllerGetCashFlowTrendsData;
|
|
8574
|
-
res: {
|
|
8575
|
-
/**
|
|
8576
|
-
* Cash-flow trends retrieved successfully
|
|
8577
|
-
*/
|
|
8578
|
-
200: CashFlowTrendsResponseDto;
|
|
8579
|
-
/**
|
|
8580
|
-
* User not authenticated
|
|
8581
|
-
*/
|
|
8582
|
-
401: unknown;
|
|
8583
|
-
};
|
|
8584
|
-
};
|
|
8585
|
-
};
|
|
8586
|
-
'/api/v1/{region}/reporting/snapshots/generate': {
|
|
8587
|
-
post: {
|
|
8588
|
-
req: ReportingControllerGenerateSnapshotData;
|
|
8589
|
-
res: {
|
|
8590
|
-
/**
|
|
8591
|
-
* Snapshot generated successfully
|
|
8592
|
-
*/
|
|
8593
|
-
200: GenerateSnapshotResponse;
|
|
8594
|
-
/**
|
|
8595
|
-
* Invalid date format
|
|
8596
|
-
*/
|
|
8597
|
-
400: unknown;
|
|
8598
|
-
/**
|
|
8599
|
-
* User not authenticated
|
|
8600
|
-
*/
|
|
8601
|
-
401: unknown;
|
|
8602
|
-
};
|
|
8603
|
-
};
|
|
8604
|
-
};
|
|
8605
|
-
'/api/v1/{region}/reporting/snapshots/backfill': {
|
|
8606
|
-
post: {
|
|
8607
|
-
req: ReportingControllerBackfillSnapshotsData;
|
|
8608
|
-
res: {
|
|
8609
|
-
/**
|
|
8610
|
-
* Backfill completed successfully
|
|
8611
|
-
*/
|
|
8612
|
-
200: BackfillSnapshotsResponse;
|
|
8613
|
-
/**
|
|
8614
|
-
* Invalid date format or range
|
|
8615
|
-
*/
|
|
8616
|
-
400: unknown;
|
|
8617
|
-
/**
|
|
8618
|
-
* User not authenticated
|
|
8619
|
-
*/
|
|
8620
|
-
401: unknown;
|
|
8621
|
-
/**
|
|
8622
|
-
* Backfill already in progress for this user
|
|
8623
|
-
*/
|
|
8624
|
-
409: unknown;
|
|
8625
|
-
};
|
|
8626
|
-
};
|
|
8627
|
-
};
|
|
8628
8873
|
'/api/v1/auth/api-keys': {
|
|
8629
8874
|
post: {
|
|
8630
8875
|
res: {
|
|
@@ -8646,7 +8891,7 @@ type $OpenApiTs = {
|
|
|
8646
8891
|
/**
|
|
8647
8892
|
* Login successful
|
|
8648
8893
|
*/
|
|
8649
|
-
200:
|
|
8894
|
+
200: AnonymousLoginResponseDto;
|
|
8650
8895
|
/**
|
|
8651
8896
|
* Invalid access token
|
|
8652
8897
|
*/
|
|
@@ -8793,6 +9038,32 @@ type $OpenApiTs = {
|
|
|
8793
9038
|
};
|
|
8794
9039
|
};
|
|
8795
9040
|
};
|
|
9041
|
+
'/api/v1/market/symbols/search': {
|
|
9042
|
+
get: {
|
|
9043
|
+
req: SymbolControllerSearchData;
|
|
9044
|
+
res: {
|
|
9045
|
+
/**
|
|
9046
|
+
* Ranked search results
|
|
9047
|
+
*/
|
|
9048
|
+
200: Array<SymbolSearchResultDto>;
|
|
9049
|
+
};
|
|
9050
|
+
};
|
|
9051
|
+
};
|
|
9052
|
+
'/api/v1/market/symbols/{symbol}/quote': {
|
|
9053
|
+
get: {
|
|
9054
|
+
req: SymbolControllerGetQuoteData;
|
|
9055
|
+
res: {
|
|
9056
|
+
/**
|
|
9057
|
+
* Symbol quote
|
|
9058
|
+
*/
|
|
9059
|
+
200: SymbolQuoteDto;
|
|
9060
|
+
/**
|
|
9061
|
+
* Symbol not found in the openbb catalog
|
|
9062
|
+
*/
|
|
9063
|
+
404: unknown;
|
|
9064
|
+
};
|
|
9065
|
+
};
|
|
9066
|
+
};
|
|
8796
9067
|
};
|
|
8797
9068
|
|
|
8798
9069
|
declare class BeanAccountsService {
|
|
@@ -9216,4 +9487,4 @@ type OpenAPIConfig = {
|
|
|
9216
9487
|
};
|
|
9217
9488
|
declare const OpenAPI: OpenAPIConfig;
|
|
9218
9489
|
|
|
9219
|
-
export { type $OpenApiTs, type AccountControllerAddOpeningBalanceData, type AccountControllerAddOpeningBalanceResponse, 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 ActualBalanceDto, type AmountDto, type AmountRangeDto, type AnonymousLoginDto, type ApiKeysControllerCreateApiKeyResponse, type ApiProblemResponseDto, type AssertReconciliationDto, 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 CategoryGroupDto, 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 ComputeReconciliationDto, type ConfirmMatchDto, type ConvertedCashFlowDto, type ConvertedNetWorthDto, type CorrectTransactionDto, type CostDetailDto, type CostSpecDto, type CreateAccountDto, type CreateBeanEventDto, type CreateBeanPriceDto, type CreateCommodityDto, type CreateExternalAccountLinkDto, type CreateOpeningBalanceDto, 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 DashboardControllerGetExpensesData, type DashboardControllerGetExpensesResponse, 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 ExpensesByCategoryResponseDto, type ExpensesByCategorySummaryDto, type ExportControllerExportBeancountResponse, type ExportRulesResponseDto, type ExternalAccountLinkControllerCreateData, type ExternalAccountLinkControllerCreateResponse, type ExternalAccountLinkControllerFindAllData, type ExternalAccountLinkControllerFindAllResponse, type ExternalAccountLinkControllerFindOneData, type ExternalAccountLinkControllerFindOneResponse, type ExternalAccountLinkControllerRemoveData, type ExternalAccountLinkControllerRemoveResponse, type ExternalAccountLinkListResponseDto, type ExternalAccountLinkResponseDto, 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, type OnboardingAccountDto, type OnboardingControllerBootstrapData, type OnboardingControllerBootstrapResponse, type OnboardingDto, OpenAPI, type OpenAPIConfig, type OpeningBalanceResultDto, type PadReconciliationDto, type PadResultDto, 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 PlatformListItemDto, 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 ReconciliationComputeResultDto, type ReconciliationControllerAssertData, type ReconciliationControllerAssertResponse, type ReconciliationControllerComputeData, type ReconciliationControllerComputeResponse, type ReconciliationControllerHistoryData, type ReconciliationControllerHistoryResponse, type ReconciliationControllerPadData, type ReconciliationControllerPadResponse, type ReconciliationRecordDto, 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 TransactionListSummaryDto, 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 provider, type source, type source2, type source3, type status, type status2, type status3, type status4, type suggestedAction, type suggestedFrequency, type type, type type2, type type3, type type4, type value, type viewMode };
|
|
9490
|
+
export { type $OpenApiTs, type AccountControllerAddOpeningBalanceData, type AccountControllerAddOpeningBalanceResponse, 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 ActualBalanceDto, type AmountDto, type AmountRangeDto, type AnonymousLoginDto, type AnonymousLoginResponseDto, type ApiKeysControllerCreateApiKeyResponse, type ApiProblemResponseDto, type AssertReconciliationDto, 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 CategoryGroupDto, 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 ComputeReconciliationDto, type ConfirmMatchDto, type ConvertedCashFlowDto, type ConvertedNetWorthDto, type CorrectTransactionDto, type CostDetailDto, type CostSpecDto, type CreateAccountDto, type CreateBeanEventDto, type CreateBeanPriceDto, type CreateCommodityDto, type CreateExternalAccountLinkDto, type CreateOpeningBalanceDto, 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 DashboardControllerGetExpensesData, type DashboardControllerGetExpensesResponse, 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 ExpensesByCategoryResponseDto, type ExpensesByCategorySummaryDto, type ExportControllerExportBeancountResponse, type ExportRulesResponseDto, type ExternalAccountLinkControllerCreateData, type ExternalAccountLinkControllerCreateResponse, type ExternalAccountLinkControllerFindAllData, type ExternalAccountLinkControllerFindAllResponse, type ExternalAccountLinkControllerFindOneData, type ExternalAccountLinkControllerFindOneResponse, type ExternalAccountLinkControllerRemoveData, type ExternalAccountLinkControllerRemoveResponse, type ExternalAccountLinkListResponseDto, type ExternalAccountLinkResponseDto, 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, type OnboardingAccountDto, type OnboardingControllerBootstrapData, type OnboardingControllerBootstrapResponse, type OnboardingDto, OpenAPI, type OpenAPIConfig, type OpeningBalanceResultDto, type PadReconciliationDto, type PadResultDto, 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 PlatformListItemDto, type PlatformMatchResponseDto, type PlatformMatchResultDto, 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 ReconciliationComputeResultDto, type ReconciliationControllerAssertData, type ReconciliationControllerAssertResponse, type ReconciliationControllerComputeData, type ReconciliationControllerComputeResponse, type ReconciliationControllerHistoryData, type ReconciliationControllerHistoryResponse, type ReconciliationControllerPadData, type ReconciliationControllerPadResponse, type ReconciliationRecordDto, 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 SignupResponseDto, type SupportedProvidersResponseDto, type SymbolControllerGetQuoteData, type SymbolControllerGetQuoteResponse, type SymbolControllerSearchData, type SymbolControllerSearchResponse, type SymbolQuoteDto, type SymbolSearchResultDto, 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 TransactionListSummaryDto, 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 assetSubClass, 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 matchType, type matchType2, type method, type mode, type paymentSource, type period, type provider, type role, type source, type source2, type source3, type status, type status2, type status3, type status4, type suggestedAction, type suggestedFrequency, type type, type type2, type type3, type type4, type value, type viewMode };
|