@firela/api-types 0.0.0-canary.13e64482 → 0.0.0-canary.188a8787

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 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,244 +2383,536 @@ type ForecastResponseDto = {
2375
2383
  */
2376
2384
  periodEnd: string;
2377
2385
  };
2378
- type CreateTransactionRuleDto = {
2379
- name: string;
2380
- description?: string;
2381
- narrationKeywords?: Array<unknown[]>;
2382
- payeeKeywords?: Array<unknown[]>;
2383
- categoryKeywords?: Array<unknown[]>;
2386
+ type CurrencyBalanceDto = {
2384
2387
  /**
2385
- * Payment method keywords (e.g., HuaBei, YuEBao)
2388
+ * ISO 4217 currency code
2386
2389
  */
2387
- methodKeywords?: Array<unknown[]>;
2390
+ currency: string;
2388
2391
  /**
2389
- * Destination account for expenses/income (e.g., Expenses:Food:Coffee)
2392
+ * Balance amount
2390
2393
  */
2391
- categoryAccount?: string;
2392
- matchLogic: 'OR' | 'AND';
2394
+ balance: string;
2395
+ };
2396
+ type TimeSeriesPointDto = {
2393
2397
  /**
2394
- * Minimum transaction amount (inclusive)
2398
+ * Date in YYYY-MM-DD format
2395
2399
  */
2396
- amountMin?: number;
2400
+ date: string;
2397
2401
  /**
2398
- * Maximum transaction amount (inclusive)
2402
+ * Value at this date (in base currency)
2399
2403
  */
2400
- amountMax?: number;
2401
- priority: number;
2402
- additionalTags?: Array<unknown[]>;
2403
- additionalMetadata?: {
2404
+ value: string;
2405
+ /**
2406
+ * Change from previous point
2407
+ */
2408
+ change?: {
2404
2409
  [key: string]: unknown;
2405
2410
  };
2406
2411
  /**
2407
- * If true, update existing rule with matching payeeKeywords[0] instead of creating new rule
2412
+ * Total assets at this date (in base currency)
2408
2413
  */
2409
- upsertByPayee?: boolean;
2410
- };
2411
- type matchLogic = 'OR' | 'AND';
2412
- type AmountRangeDto = {
2414
+ assets?: string;
2413
2415
  /**
2414
- * Minimum amount
2416
+ * Total liabilities at this date (in base currency)
2415
2417
  */
2416
- min?: number;
2418
+ liabilities?: string;
2417
2419
  /**
2418
- * Maximum amount
2420
+ * Multi-currency breakdown for this point
2419
2421
  */
2420
- max?: number;
2422
+ byCurrency?: Array<CurrencyBalanceDto>;
2421
2423
  };
2422
- type TransactionRuleResponseDto = {
2424
+ type TrendSummaryDto = {
2423
2425
  /**
2424
- * Rule ID
2426
+ * Value at start of period
2425
2427
  */
2426
- id: string;
2428
+ startValue: string;
2427
2429
  /**
2428
- * Rule name
2430
+ * Value at end of period
2429
2431
  */
2430
- name: string;
2432
+ endValue: string;
2431
2433
  /**
2432
- * Rule description
2434
+ * Total change over period
2433
2435
  */
2434
- description?: string;
2436
+ totalChange: string;
2435
2437
  /**
2436
- * Keywords to match in transaction narration
2438
+ * Total change percentage
2437
2439
  */
2438
- narrationKeywords: Array<string>;
2440
+ totalChangePercentage: string;
2441
+ };
2442
+ type MultiCurrencyPointDto = {
2439
2443
  /**
2440
- * Keywords to match in payee name
2444
+ * Date in YYYY-MM-DD format
2441
2445
  */
2442
- payeeKeywords: Array<string>;
2446
+ date: string;
2443
2447
  /**
2444
- * Keywords to match in category
2448
+ * Balances by currency
2445
2449
  */
2446
- categoryKeywords: Array<string>;
2450
+ byCurrency: Array<CurrencyBalanceDto>;
2451
+ };
2452
+ type PortfolioTrendsResponseDto = {
2447
2453
  /**
2448
- * Keywords to match in payment method
2454
+ * Time series data points
2449
2455
  */
2450
- methodKeywords: Array<string>;
2456
+ series: Array<TimeSeriesPointDto>;
2451
2457
  /**
2452
- * Destination account for categorization
2458
+ * Period summary
2453
2459
  */
2454
- categoryAccount?: string;
2460
+ summary: TrendSummaryDto;
2455
2461
  /**
2456
- * Keyword matching logic
2462
+ * Period requested
2457
2463
  */
2458
- matchLogic: 'OR' | 'AND';
2464
+ period: string;
2459
2465
  /**
2460
- * Amount range for matching
2466
+ * Data granularity
2461
2467
  */
2462
- amountRange?: AmountRangeDto;
2468
+ granularity: string;
2463
2469
  /**
2464
- * Rule priority (0-1000, higher = first match)
2470
+ * Base currency for converted values
2465
2471
  */
2466
- priority: number;
2472
+ currency: string;
2467
2473
  /**
2468
- * Whether the rule is enabled
2474
+ * Multi-currency time series (each point has currency breakdown)
2469
2475
  */
2470
- enabled: boolean;
2476
+ byCurrency?: Array<MultiCurrencyPointDto>;
2471
2477
  /**
2472
- * Learning source: NLP, REVIEW_CENTER, or null for manual
2478
+ * Exchange rate warnings
2473
2479
  */
2474
- learningSource?: 'NLP' | 'REVIEW_CENTER' | null;
2480
+ warnings?: Array<ExchangeRateWarningDto>;
2481
+ };
2482
+ type CashFlowPointDto = {
2475
2483
  /**
2476
- * Whether auto-apply is enabled for this rule
2484
+ * Month key (YYYY-MM)
2477
2485
  */
2478
- autoApplyEnabled: boolean;
2486
+ month: string;
2479
2487
  /**
2480
- * Number of confirmations for NLP-learned rules
2488
+ * Income in base currency (absolute, converted)
2481
2489
  */
2482
- confirmationCount: number;
2490
+ income: string;
2483
2491
  /**
2484
- * Additional tags
2492
+ * Expense in base currency (absolute, converted)
2485
2493
  */
2486
- additionalTags: Array<string>;
2494
+ expense: string;
2487
2495
  /**
2488
- * Additional metadata
2496
+ * netSavings = income − expense (savings positive)
2489
2497
  */
2490
- additionalMetadata?: {
2491
- [key: string]: string;
2492
- };
2498
+ netSavings: string;
2499
+ };
2500
+ type CashFlowTrendSummaryDto = {
2493
2501
  /**
2494
- * Created timestamp
2502
+ * Total income across the period
2495
2503
  */
2496
- createdAt: string;
2504
+ totalIncome: string;
2497
2505
  /**
2498
- * Updated timestamp
2506
+ * Total expense across the period
2499
2507
  */
2500
- updatedAt: string;
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
- * Total count of rules
2510
+ * income expense across the period
2510
2511
  */
2511
- total: number;
2512
+ totalNetSavings: string;
2512
2513
  /**
2513
- * Results per page
2514
+ * totalNetSavings divided by the window length (N months, incl. zero-filled)
2514
2515
  */
2515
- limit: number;
2516
+ averageMonthlyNetSavings: string;
2517
+ };
2518
+ type CashFlowTrendsResponseDto = {
2516
2519
  /**
2517
- * Pagination offset
2520
+ * Monthly cash-flow series (fixed N-month window, zero-filled)
2518
2521
  */
2519
- offset: number;
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
- * Payment method keywords (e.g., HuaBei, YuEBao)
2524
+ * Period totals
2529
2525
  */
2530
- methodKeywords?: Array<unknown[]>;
2526
+ summary: CashFlowTrendSummaryDto;
2531
2527
  /**
2532
- * Destination account for expenses/income (e.g., Expenses:Food:Coffee)
2528
+ * Period requested
2533
2529
  */
2534
- categoryAccount?: string;
2535
- matchLogic: 'OR' | 'AND';
2530
+ period: string;
2536
2531
  /**
2537
- * Minimum transaction amount (inclusive)
2532
+ * Data granularity (v1 returns month buckets)
2538
2533
  */
2539
- amountMin?: number;
2534
+ granularity: string;
2540
2535
  /**
2541
- * Maximum transaction amount (inclusive)
2536
+ * Base currency for converted values
2542
2537
  */
2543
- amountMax?: number;
2544
- priority: number;
2545
- additionalTags?: Array<unknown[]>;
2546
- additionalMetadata?: {
2547
- [key: string]: unknown;
2548
- };
2538
+ currency: string;
2549
2539
  /**
2550
- * If true, update existing rule with matching payeeKeywords[0] instead of creating new rule
2540
+ * Exchange rate warnings (e.g. missing rate for a currency)
2551
2541
  */
2552
- upsertByPayee?: boolean;
2542
+ warnings?: Array<ExchangeRateWarningDto>;
2553
2543
  };
2554
- type ValidateRuleResponseDto = {
2544
+ type GenerateSnapshotBody = unknown;
2545
+ type GenerateSnapshotResponse = unknown;
2546
+ type BackfillSnapshotsBody = unknown;
2547
+ type BackfillSnapshotsResponse = unknown;
2548
+ type DeleteOwnUserDto = {
2555
2549
  /**
2556
- * Whether the rule configuration is valid
2550
+ * Access token for user verification
2557
2551
  */
2558
- valid: boolean;
2552
+ accessToken: string;
2553
+ };
2554
+ type SignupDto = {
2559
2555
  /**
2560
- * List of validation errors (empty if valid)
2556
+ * Cloudflare Turnstile verification token (optional when Turnstile disabled)
2561
2557
  */
2562
- errors: Array<unknown[]>;
2558
+ turnstileToken?: string;
2559
+ };
2560
+ type SignupResponseDto = {
2563
2561
  /**
2564
- * List of validation warnings (non-blocking issues)
2562
+ * JWT auth token
2565
2563
  */
2566
- warnings: Array<unknown[]>;
2567
- };
2568
- type BulkCreateRulesDto = {
2564
+ authToken: string;
2569
2565
  /**
2570
- * Array of rules to import
2566
+ * Auto-generated access token
2571
2567
  */
2572
- rules: Array<unknown[]>;
2568
+ accessToken: string;
2573
2569
  /**
2574
- * Conflict handling strategy: skip (default) ignores duplicates, replace soft-deletes existing rule
2570
+ * Assigned user role
2575
2571
  */
2576
- conflictStrategy: 'replace' | 'skip';
2572
+ role: 'USER' | 'ADMIN' | 'DEMO' | 'INACTIVE' | 'PAID' | 'OPS';
2577
2573
  };
2578
2574
  /**
2579
- * Conflict handling strategy: skip (default) ignores duplicates, replace soft-deletes existing rule
2575
+ * Assigned user role
2580
2576
  */
2581
- type conflictStrategy = 'replace' | 'skip';
2582
- type BulkCreateRulesResponseDto = {
2577
+ type role = 'USER' | 'ADMIN' | 'DEMO' | 'INACTIVE' | 'PAID' | 'OPS';
2578
+ type UpdateUserSettingDto = {
2583
2579
  /**
2584
- * Number of successfully created rules
2580
+ * Security ID
2585
2581
  */
2586
- successCount: number;
2582
+ secId?: number;
2587
2583
  /**
2588
- * Number of failed rules
2584
+ * Annual interest rate
2589
2585
  */
2590
- failureCount: number;
2586
+ annualInterestRate?: number;
2591
2587
  /**
2592
- * Error details for failed rules
2588
+ * Currency code
2593
2589
  */
2594
- errors: Array<{
2595
- index?: number;
2596
- message?: string;
2597
- }>;
2590
+ currency?: string;
2598
2591
  /**
2599
- * IDs of successfully created rules
2592
+ * Base currency code
2600
2593
  */
2601
- createdRuleIds: Array<string>;
2602
- };
2603
- type ExportRulesResponseDto = {
2594
+ baseCurrency?: string;
2604
2595
  /**
2605
- * Export timestamp
2596
+ * Benchmark symbol
2606
2597
  */
2607
- exportedAt: string;
2598
+ benchmark?: string;
2608
2599
  /**
2609
- * User ID
2600
+ * Color scheme
2610
2601
  */
2611
- userId: string;
2602
+ colorScheme?: 'DARK' | 'LIGHT';
2612
2603
  /**
2613
- * Number of exported rules
2604
+ * Date range filter
2614
2605
  */
2615
- ruleCount: number;
2606
+ dateRange?: string;
2607
+ /**
2608
+ * Emergency fund amount
2609
+ */
2610
+ emergencyFund?: number;
2611
+ /**
2612
+ * Account filter IDs
2613
+ */
2614
+ 'filters.accounts'?: Array<string>;
2615
+ /**
2616
+ * Asset class filters
2617
+ */
2618
+ 'filters.assetClasses'?: Array<string>;
2619
+ /**
2620
+ * Data source filter
2621
+ */
2622
+ 'filters.dataSource'?: string;
2623
+ /**
2624
+ * Symbol filter
2625
+ */
2626
+ 'filters.symbol'?: string;
2627
+ /**
2628
+ * Tag filters
2629
+ */
2630
+ 'filters.tags'?: Array<string>;
2631
+ /**
2632
+ * Enable experimental features
2633
+ */
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';
2663
+ };
2664
+ /**
2665
+ * Color scheme
2666
+ */
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;
2680
+ description?: string;
2681
+ narrationKeywords?: Array<unknown[]>;
2682
+ payeeKeywords?: Array<unknown[]>;
2683
+ categoryKeywords?: Array<unknown[]>;
2684
+ /**
2685
+ * Payment method keywords (e.g., HuaBei, YuEBao)
2686
+ */
2687
+ methodKeywords?: Array<unknown[]>;
2688
+ /**
2689
+ * Destination account for expenses/income (e.g., Expenses:Food:Coffee)
2690
+ */
2691
+ categoryAccount?: string;
2692
+ matchLogic: 'OR' | 'AND';
2693
+ /**
2694
+ * Minimum transaction amount (inclusive)
2695
+ */
2696
+ amountMin?: number;
2697
+ /**
2698
+ * Maximum transaction amount (inclusive)
2699
+ */
2700
+ amountMax?: number;
2701
+ priority: number;
2702
+ additionalTags?: Array<unknown[]>;
2703
+ additionalMetadata?: {
2704
+ [key: string]: unknown;
2705
+ };
2706
+ /**
2707
+ * If true, update existing rule with matching payeeKeywords[0] instead of creating new rule
2708
+ */
2709
+ upsertByPayee?: boolean;
2710
+ };
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
+ */
2754
+ categoryAccount?: string;
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;
2801
+ };
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>;
2808
+ /**
2809
+ * Total count of rules
2810
+ */
2811
+ total: number;
2812
+ /**
2813
+ * Results per page
2814
+ */
2815
+ limit: number;
2816
+ /**
2817
+ * Pagination offset
2818
+ */
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[]>;
2827
+ /**
2828
+ * Payment method keywords (e.g., HuaBei, YuEBao)
2829
+ */
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?: {
2847
+ [key: string]: unknown;
2848
+ };
2849
+ /**
2850
+ * If true, update existing rule with matching payeeKeywords[0] instead of creating new rule
2851
+ */
2852
+ upsertByPayee?: boolean;
2853
+ };
2854
+ type ValidateRuleResponseDto = {
2855
+ /**
2856
+ * Whether the rule configuration is valid
2857
+ */
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[]>;
2867
+ };
2868
+ type BulkCreateRulesDto = {
2869
+ /**
2870
+ * Array of rules to import
2871
+ */
2872
+ rules: Array<unknown[]>;
2873
+ /**
2874
+ * Conflict handling strategy: skip (default) ignores duplicates, replace soft-deletes existing rule
2875
+ */
2876
+ conflictStrategy: 'replace' | 'skip';
2877
+ };
2878
+ /**
2879
+ * Conflict handling strategy: skip (default) ignores duplicates, replace soft-deletes existing rule
2880
+ */
2881
+ type conflictStrategy = 'replace' | 'skip';
2882
+ type BulkCreateRulesResponseDto = {
2883
+ /**
2884
+ * Number of successfully created rules
2885
+ */
2886
+ successCount: number;
2887
+ /**
2888
+ * Number of failed rules
2889
+ */
2890
+ failureCount: number;
2891
+ /**
2892
+ * Error details for failed rules
2893
+ */
2894
+ errors: Array<{
2895
+ index?: number;
2896
+ message?: string;
2897
+ }>;
2898
+ /**
2899
+ * IDs of successfully created rules
2900
+ */
2901
+ createdRuleIds: Array<string>;
2902
+ };
2903
+ type ExportRulesResponseDto = {
2904
+ /**
2905
+ * Export timestamp
2906
+ */
2907
+ exportedAt: string;
2908
+ /**
2909
+ * User ID
2910
+ */
2911
+ userId: string;
2912
+ /**
2913
+ * Number of exported rules
2914
+ */
2915
+ ruleCount: number;
2616
2916
  /**
2617
2917
  * Exported rules
2618
2918
  */
@@ -2713,118 +3013,6 @@ type TestRuleResponseDto = {
2713
3013
  [key: string]: unknown;
2714
3014
  };
2715
3015
  };
2716
- type DeleteOwnUserDto = {
2717
- /**
2718
- * Access token for user verification
2719
- */
2720
- accessToken: string;
2721
- };
2722
- type SignupDto = {
2723
- /**
2724
- * Cloudflare Turnstile verification token (optional when Turnstile disabled)
2725
- */
2726
- turnstileToken?: string;
2727
- };
2728
- type UpdateUserSettingDto = {
2729
- /**
2730
- * Security ID
2731
- */
2732
- secId?: number;
2733
- /**
2734
- * Annual interest rate
2735
- */
2736
- annualInterestRate?: number;
2737
- /**
2738
- * Currency code
2739
- */
2740
- currency?: string;
2741
- /**
2742
- * Base currency code
2743
- */
2744
- baseCurrency?: string;
2745
- /**
2746
- * Benchmark symbol
2747
- */
2748
- benchmark?: string;
2749
- /**
2750
- * Color scheme
2751
- */
2752
- colorScheme?: 'DARK' | 'LIGHT';
2753
- /**
2754
- * Date range filter
2755
- */
2756
- dateRange?: string;
2757
- /**
2758
- * Emergency fund amount
2759
- */
2760
- emergencyFund?: number;
2761
- /**
2762
- * Account filter IDs
2763
- */
2764
- 'filters.accounts'?: Array<string>;
2765
- /**
2766
- * Asset class filters
2767
- */
2768
- 'filters.assetClasses'?: Array<string>;
2769
- /**
2770
- * Data source filter
2771
- */
2772
- 'filters.dataSource'?: string;
2773
- /**
2774
- * Symbol filter
2775
- */
2776
- 'filters.symbol'?: string;
2777
- /**
2778
- * Tag filters
2779
- */
2780
- 'filters.tags'?: Array<string>;
2781
- /**
2782
- * Enable experimental features
2783
- */
2784
- isExperimentalFeatures?: boolean;
2785
- /**
2786
- * Enable restricted view mode
2787
- */
2788
- isRestrictedView?: boolean;
2789
- /**
2790
- * Language code
2791
- */
2792
- language?: string;
2793
- /**
2794
- * Locale code
2795
- */
2796
- locale?: string;
2797
- /**
2798
- * Projected total amount
2799
- */
2800
- projectedTotalAmount?: number;
2801
- /**
2802
- * Retirement date in ISO 8601 format
2803
- */
2804
- retirementDate?: string;
2805
- /**
2806
- * Savings rate percentage
2807
- */
2808
- savingsRate?: number;
2809
- /**
2810
- * View mode
2811
- */
2812
- viewMode?: 'DEFAULT' | 'ZEN';
2813
- };
2814
- /**
2815
- * Color scheme
2816
- */
2817
- type colorScheme = 'DARK' | 'LIGHT';
2818
- /**
2819
- * View mode
2820
- */
2821
- type viewMode = 'DEFAULT' | 'ZEN';
2822
- type UpdatePropertyDto = {
2823
- /**
2824
- * Property value
2825
- */
2826
- value: string;
2827
- };
2828
3016
  type CreateBeanEventDto = {
2829
3017
  /**
2830
3018
  * Life event date (ISO 8601)
@@ -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: string;
3861
+ suggestedAccount?: string;
3666
3862
  /**
3667
3863
  * Similar accounts for user selection
3668
3864
  */
@@ -3784,7 +3980,7 @@ type NlpSuggestedAccountDto = {
3784
3980
  */
3785
3981
  account: string;
3786
3982
  /**
3787
- * Confidence score for this suggestion (0-1)
3983
+ * Confidence score for this suggestion (0-1). Present = predicted (confirm/confirm_rule/confirm_account); omitted = actual persisted account (created). (#586)
3788
3984
  */
3789
3985
  confidence?: number;
3790
3986
  };
@@ -3800,21 +3996,21 @@ type NlpSuggestedAccountsDto = {
3800
3996
  };
3801
3997
  type NlpDefaultAccountsDto = {
3802
3998
  /**
3803
- * Default asset account
3999
+ * Default OPEN asset account (MRU when multiple), or null when none/ambiguous
3804
4000
  */
3805
- asset: string;
4001
+ asset: string | null;
3806
4002
  /**
3807
- * Default expense account
4003
+ * Default OPEN expense account (MRU when multiple), or null when none/ambiguous
3808
4004
  */
3809
- expense: string;
4005
+ expense: string | null;
3810
4006
  /**
3811
- * Default income account
4007
+ * Default OPEN income account (MRU when multiple), or null when none/ambiguous
3812
4008
  */
3813
- income: string;
4009
+ income: string | null;
3814
4010
  /**
3815
- * Default liability account
4011
+ * Default OPEN liability account (MRU when multiple), or null when none/ambiguous
3816
4012
  */
3817
- liability: string;
4013
+ liability: string | null;
3818
4014
  };
3819
4015
  type NlpResponseDto = {
3820
4016
  /**
@@ -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
  */
@@ -3913,11 +4109,11 @@ type NlpResponseDto = {
3913
4109
  */
3914
4110
  recurringSuggestion?: RecurringSuggestionDto;
3915
4111
  /**
3916
- * Suggested accounts for this transaction. Contains recommended source and destination accounts based on the detected intent and rules.
4112
+ * Suggested accounts for this transaction (#586). confirm/confirm_rule/confirm_account: predicted (source/destination carry confidence); created: actual persisted accounts (confidence omitted). confirm_account destination is the suggested replacement, never the invalid account.
3917
4113
  */
3918
4114
  suggestedAccounts?: NlpSuggestedAccountsDto;
3919
4115
  /**
3920
- * Default accounts for the user/region. These are fallback accounts used when no specific suggestion is available.
4116
+ * Default fallback accounts for the user/region (#586). v1 returns universal constants; per-user personalization is planned.
3921
4117
  */
3922
4118
  defaultAccounts?: NlpDefaultAccountsDto;
3923
4119
  };
@@ -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
  */
@@ -4689,224 +4885,194 @@ type HoldingPnlRowDto = {
4689
4885
  */
4690
4886
  costFxRate?: FxRateDto | null;
4691
4887
  /**
4692
- * FX rate applied to market value
4693
- */
4694
- marketFxRate?: FxRateDto | null;
4695
- /**
4696
- * Share of invested assets % (Decimal string); only for invested chartTokens
4697
- */
4698
- pctOfInvestedAssets?: {
4699
- [key: string]: unknown;
4700
- } | null;
4701
- /**
4702
- * 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
4703
- */
4704
- realizedPnl?: MonetaryDto | null;
4705
- };
4706
- /**
4707
- * Chart segment token (libs/common resolver)
4708
- */
4709
- type chartToken = 'equity' | 'fund' | 'bond' | 'cash' | 'other';
4710
- type HoldingPnlWarningDto = {
4711
- /**
4712
- * Warning type
4713
- */
4714
- type: 'MISSING_COST_FX_RATE' | 'MISSING_MARKET_FX_RATE' | 'MISSING_SALE_PRICE' | 'MISSING_REALIZED_FX_RATE' | 'OVERSOLD_LOTS' | 'NO_PRICE' | 'MIXED_COST_CURRENCY';
4715
- symbol?: {
4716
- [key: string]: unknown;
4717
- } | null;
4718
- accountId?: {
4719
- [key: string]: unknown;
4720
- } | null;
4721
- currency?: {
4722
- [key: string]: unknown;
4723
- } | null;
4724
- };
4725
- /**
4726
- * Warning type
4727
- */
4728
- type type4 = 'MISSING_COST_FX_RATE' | 'MISSING_MARKET_FX_RATE' | 'MISSING_SALE_PRICE' | 'MISSING_REALIZED_FX_RATE' | 'OVERSOLD_LOTS' | 'NO_PRICE' | 'MIXED_COST_CURRENCY';
4729
- type HoldingPnlResponseDto = {
4730
- asOfDate: string;
4731
- baseCurrency: string;
4732
- /**
4733
- * Realized-P&L lot-matching method (FIFO or average). Unrealized cost basis remains average regardless of this value (#473).
4734
- */
4735
- method: 'average' | 'FIFO';
4736
- rows: Array<HoldingPnlRowDto>;
4737
- warnings: Array<HoldingPnlWarningDto>;
4738
- };
4739
- /**
4740
- * Realized-P&L lot-matching method (FIFO or average). Unrealized cost basis remains average regardless of this value (#473).
4741
- */
4742
- type method = 'average' | 'FIFO';
4743
- type CurrencyBalanceDto = {
4744
- /**
4745
- * ISO 4217 currency code
4746
- */
4747
- currency: string;
4748
- /**
4749
- * Balance amount
4750
- */
4751
- balance: string;
4752
- };
4753
- type TimeSeriesPointDto = {
4754
- /**
4755
- * Date in YYYY-MM-DD format
4756
- */
4757
- date: string;
4758
- /**
4759
- * Value at this date (in base currency)
4760
- */
4761
- value: string;
4762
- /**
4763
- * Change from previous point
4764
- */
4765
- change?: {
4766
- [key: string]: unknown;
4767
- };
4768
- /**
4769
- * Total assets at this date (in base currency)
4770
- */
4771
- assets?: string;
4772
- /**
4773
- * Total liabilities at this date (in base currency)
4774
- */
4775
- liabilities?: string;
4776
- /**
4777
- * Multi-currency breakdown for this point
4778
- */
4779
- byCurrency?: Array<CurrencyBalanceDto>;
4780
- };
4781
- type TrendSummaryDto = {
4782
- /**
4783
- * Value at start of period
4784
- */
4785
- startValue: string;
4786
- /**
4787
- * Value at end of period
4788
- */
4789
- endValue: string;
4790
- /**
4791
- * Total change over period
4792
- */
4793
- totalChange: string;
4794
- /**
4795
- * Total change percentage
4888
+ * FX rate applied to market value
4796
4889
  */
4797
- totalChangePercentage: string;
4798
- };
4799
- type MultiCurrencyPointDto = {
4890
+ marketFxRate?: FxRateDto | null;
4800
4891
  /**
4801
- * Date in YYYY-MM-DD format
4892
+ * Share of invested assets % (Decimal string); only for invested chartTokens
4802
4893
  */
4803
- date: string;
4894
+ pctOfInvestedAssets?: {
4895
+ [key: string]: unknown;
4896
+ } | null;
4804
4897
  /**
4805
- * Balances by currency
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
4806
4899
  */
4807
- byCurrency: Array<CurrencyBalanceDto>;
4900
+ realizedPnl?: MonetaryDto | null;
4808
4901
  };
4809
- type PortfolioTrendsResponseDto = {
4902
+ /**
4903
+ * Chart segment token (libs/common resolver)
4904
+ */
4905
+ type chartToken = 'equity' | 'fund' | 'bond' | 'cash' | 'other';
4906
+ type HoldingPnlWarningDto = {
4810
4907
  /**
4811
- * Time series data points
4908
+ * Warning type
4812
4909
  */
4813
- series: Array<TimeSeriesPointDto>;
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;
4814
4928
  /**
4815
- * Period summary
4929
+ * Realized-P&L lot-matching method (FIFO or average). Unrealized cost basis remains average regardless of this value (#473).
4816
4930
  */
4817
- summary: TrendSummaryDto;
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 = {
4818
4940
  /**
4819
- * Period requested
4941
+ * Access token for anonymous login
4820
4942
  */
4821
- period: string;
4943
+ accessToken: string;
4944
+ };
4945
+ type AnonymousLoginResponseDto = {
4822
4946
  /**
4823
- * Data granularity
4947
+ * JWT auth token
4824
4948
  */
4825
- granularity: string;
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;
4826
4959
  /**
4827
- * Base currency for converted values
4960
+ * OpenBB asset_type (e.g. stock, etf)
4828
4961
  */
4829
- currency: string;
4962
+ assetType?: {
4963
+ [key: string]: unknown;
4964
+ } | null;
4830
4965
  /**
4831
- * Multi-currency time series (each point has currency breakdown)
4966
+ * IGN asset class (region.types.ts ASSET_CLASSES)
4832
4967
  */
4833
- byCurrency?: Array<MultiCurrencyPointDto>;
4968
+ assetClass?: {
4969
+ [key: string]: unknown;
4970
+ } | null;
4834
4971
  /**
4835
- * Exchange rate warnings
4972
+ * IGN asset sub-class (region.types.ts ASSET_SUB_CLASSES)
4836
4973
  */
4837
- warnings?: Array<ExchangeRateWarningDto>;
4838
- };
4839
- type CashFlowPointDto = {
4974
+ assetSubClass?: {
4975
+ [key: string]: unknown;
4976
+ } | null;
4840
4977
  /**
4841
- * Month key (YYYY-MM)
4978
+ * Trading currency (extra_data or inferred from exchange)
4842
4979
  */
4843
- month: string;
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;
4844
4992
  /**
4845
- * Income in base currency (absolute, converted)
4993
+ * OpenBB asset_type
4846
4994
  */
4847
- income: string;
4995
+ assetType?: {
4996
+ [key: string]: unknown;
4997
+ } | null;
4848
4998
  /**
4849
- * Expense in base currency (absolute, converted)
4999
+ * IGN asset class
4850
5000
  */
4851
- expense: string;
5001
+ assetClass?: {
5002
+ [key: string]: unknown;
5003
+ } | null;
4852
5004
  /**
4853
- * netSavings = income − expense (savings positive)
5005
+ * IGN asset sub-class
4854
5006
  */
4855
- netSavings: string;
4856
- };
4857
- type CashFlowTrendSummaryDto = {
5007
+ assetSubClass?: {
5008
+ [key: string]: unknown;
5009
+ } | null;
4858
5010
  /**
4859
- * Total income across the period
5011
+ * Trading currency (extra_data or inferred from exchange)
4860
5012
  */
4861
- totalIncome: string;
5013
+ currency?: {
5014
+ [key: string]: unknown;
5015
+ } | null;
4862
5016
  /**
4863
- * Total expense across the period
5017
+ * Latest price (Decimal string)
4864
5018
  */
4865
- totalExpense: string;
5019
+ price?: {
5020
+ [key: string]: unknown;
5021
+ } | null;
4866
5022
  /**
4867
- * income expense across the period
5023
+ * Date the price was observed (ISO yyyy-MM-dd)
4868
5024
  */
4869
- totalNetSavings: string;
5025
+ priceDate?: {
5026
+ [key: string]: unknown;
5027
+ } | null;
4870
5028
  /**
4871
- * totalNetSavings divided by the window length (N months, incl. zero-filled)
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.
4872
5030
  */
4873
- averageMonthlyNetSavings: string;
4874
- };
4875
- type CashFlowTrendsResponseDto = {
5031
+ changePercent?: {
5032
+ [key: string]: unknown;
5033
+ } | null;
4876
5034
  /**
4877
- * Monthly cash-flow series (fixed N-month window, zero-filled)
5035
+ * Previous close (Decimal string)
4878
5036
  */
4879
- series: Array<CashFlowPointDto>;
5037
+ prevClose?: {
5038
+ [key: string]: unknown;
5039
+ } | null;
4880
5040
  /**
4881
- * Period totals
5041
+ * Day open (Decimal string)
4882
5042
  */
4883
- summary: CashFlowTrendSummaryDto;
5043
+ open?: {
5044
+ [key: string]: unknown;
5045
+ } | null;
4884
5046
  /**
4885
- * Period requested
5047
+ * Day high (Decimal string)
4886
5048
  */
4887
- period: string;
5049
+ high?: {
5050
+ [key: string]: unknown;
5051
+ } | null;
4888
5052
  /**
4889
- * Data granularity (v1 returns month buckets)
5053
+ * Day low (Decimal string)
4890
5054
  */
4891
- granularity: string;
5055
+ low?: {
5056
+ [key: string]: unknown;
5057
+ } | null;
4892
5058
  /**
4893
- * Base currency for converted values
5059
+ * Day volume (Decimal string)
4894
5060
  */
4895
- currency: string;
5061
+ volume?: {
5062
+ [key: string]: unknown;
5063
+ } | null;
4896
5064
  /**
4897
- * Exchange rate warnings (e.g. missing rate for a currency)
5065
+ * 52-week high (Decimal string)
4898
5066
  */
4899
- warnings?: Array<ExchangeRateWarningDto>;
4900
- };
4901
- type GenerateSnapshotBody = unknown;
4902
- type GenerateSnapshotResponse = unknown;
4903
- type BackfillSnapshotsBody = unknown;
4904
- type BackfillSnapshotsResponse = unknown;
4905
- type AnonymousLoginDto = {
5067
+ yearHigh?: {
5068
+ [key: string]: unknown;
5069
+ } | null;
4906
5070
  /**
4907
- * Access token for anonymous login
5071
+ * 52-week low (Decimal string)
4908
5072
  */
4909
- accessToken: string;
5073
+ yearLow?: {
5074
+ [key: string]: unknown;
5075
+ } | null;
4910
5076
  };
4911
5077
  type AccountControllerCreateData = {
4912
5078
  /**
@@ -5740,34 +5906,148 @@ type ExpectedTransactionControllerUnmatchData = {
5740
5906
  */
5741
5907
  id: string;
5742
5908
  /**
5743
- * Region code for tenant context
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 = {
6006
+ /**
6007
+ * User ID
5744
6008
  */
5745
- region: 'cn' | 'us' | 'de' | 'gb';
6009
+ id: string;
5746
6010
  };
5747
- type ExpectedTransactionControllerUnmatchResponse = unknown;
5748
- type ExpectedTransactionControllerEnterNowData = {
6011
+ type UserControllerGetUserInfoResponse = unknown;
6012
+ type UserControllerUpdateUserSettingData = {
6013
+ requestBody: UpdateUserSettingDto;
6014
+ };
6015
+ type UserControllerUpdateUserSettingResponse = unknown;
6016
+ type UserControllerGetAllUserSettingsByPageData = {
5749
6017
  /**
5750
- * Expected transaction ID
6018
+ * Page number
5751
6019
  */
5752
- id: string;
6020
+ pageNo: number;
5753
6021
  /**
5754
- * Region code for tenant context
6022
+ * Page size
5755
6023
  */
5756
- region: 'cn' | 'us' | 'de' | 'gb';
5757
- requestBody: EnterNowDto;
6024
+ pageSize: number;
5758
6025
  };
5759
- type ExpectedTransactionControllerEnterNowResponse = unknown;
5760
- type ForecastControllerGetForecastData = {
6026
+ type UserControllerGetAllUserSettingsByPageResponse = unknown;
6027
+ type UserControllerGetAssetLiabilitySummaryResponse = unknown;
6028
+ type PropertyControllerGetAllResponse = unknown;
6029
+ type PropertyControllerGetByKeyData = {
5761
6030
  /**
5762
- * Number of months to forecast (1-12, default 3)
6031
+ * Property key
5763
6032
  */
5764
- months?: number;
6033
+ key: string;
6034
+ };
6035
+ type PropertyControllerGetByKeyResponse = unknown;
6036
+ type PropertyControllerUpdateData = {
5765
6037
  /**
5766
- * Region code for tenant context
6038
+ * Property key
5767
6039
  */
5768
- region: 'cn' | 'us' | 'de' | 'gb';
6040
+ key: string;
6041
+ requestBody: UpdatePropertyDto;
5769
6042
  };
5770
- type ForecastControllerGetForecastResponse = ForecastResponseDto;
6043
+ type PropertyControllerUpdateResponse = unknown;
6044
+ type PropertyControllerDeleteData = {
6045
+ /**
6046
+ * Property key
6047
+ */
6048
+ key: string;
6049
+ };
6050
+ type PropertyControllerDeleteResponse = void;
5771
6051
  type TransactionRuleControllerCreateData = {
5772
6052
  /**
5773
6053
  * Region code for tenant context
@@ -5887,71 +6167,6 @@ type TransactionRuleControllerTestData = {
5887
6167
  ruleId: string;
5888
6168
  };
5889
6169
  type TransactionRuleControllerTestResponse = TestRuleResponseDto;
5890
- type UserControllerDeleteOwnUserData = {
5891
- requestBody: DeleteOwnUserDto;
5892
- };
5893
- type UserControllerDeleteOwnUserResponse = void;
5894
- type UserControllerGetUserData = {
5895
- acceptLanguage: string;
5896
- };
5897
- type UserControllerGetUserResponse = unknown;
5898
- type UserControllerSignupUserData = {
5899
- requestBody: SignupDto;
5900
- };
5901
- type UserControllerSignupUserResponse = unknown;
5902
- type UserControllerDeleteUserData = {
5903
- /**
5904
- * User ID to delete
5905
- */
5906
- id: string;
5907
- };
5908
- type UserControllerDeleteUserResponse = void;
5909
- type UserControllerGetUserInfoData = {
5910
- /**
5911
- * User ID
5912
- */
5913
- id: string;
5914
- };
5915
- type UserControllerGetUserInfoResponse = unknown;
5916
- type UserControllerUpdateUserSettingData = {
5917
- requestBody: UpdateUserSettingDto;
5918
- };
5919
- type UserControllerUpdateUserSettingResponse = unknown;
5920
- type UserControllerGetAllUserSettingsByPageData = {
5921
- /**
5922
- * Page number
5923
- */
5924
- pageNo: number;
5925
- /**
5926
- * Page size
5927
- */
5928
- pageSize: number;
5929
- };
5930
- type UserControllerGetAllUserSettingsByPageResponse = unknown;
5931
- type UserControllerGetAssetLiabilitySummaryResponse = unknown;
5932
- type PropertyControllerGetAllResponse = unknown;
5933
- type PropertyControllerGetByKeyData = {
5934
- /**
5935
- * Property key
5936
- */
5937
- key: string;
5938
- };
5939
- type PropertyControllerGetByKeyResponse = unknown;
5940
- type PropertyControllerUpdateData = {
5941
- /**
5942
- * Property key
5943
- */
5944
- key: string;
5945
- requestBody: UpdatePropertyDto;
5946
- };
5947
- type PropertyControllerUpdateResponse = unknown;
5948
- type PropertyControllerDeleteData = {
5949
- /**
5950
- * Property key
5951
- */
5952
- key: string;
5953
- };
5954
- type PropertyControllerDeleteResponse = void;
5955
6170
  type EventControllerCreateData = {
5956
6171
  /**
5957
6172
  * Region code for tenant context (decorative for life events)
@@ -6393,60 +6608,11 @@ type HoldingPnlControllerGetHoldingPnlData = {
6393
6608
  region: 'cn' | 'us' | 'de' | 'gb';
6394
6609
  };
6395
6610
  type HoldingPnlControllerGetHoldingPnlResponse = HoldingPnlResponseDto;
6396
- type ReportingControllerGetPortfolioTrendsData = {
6397
- /**
6398
- * Data granularity
6399
- */
6400
- granularity?: 'day' | 'week' | 'month';
6401
- /**
6402
- * Time period
6403
- */
6404
- period?: '1m' | '3m' | '6m' | '1y';
6405
- /**
6406
- * Region code for tenant context
6407
- */
6408
- region: 'cn' | 'us' | 'de' | 'gb';
6409
- };
6410
- type ReportingControllerGetPortfolioTrendsResponse = PortfolioTrendsResponseDto;
6411
- type ReportingControllerGetCashFlowTrendsData = {
6412
- /**
6413
- * Data granularity (accepted for API symmetry; v1 returns month buckets)
6414
- */
6415
- granularity?: 'day' | 'week' | 'month';
6416
- /**
6417
- * Time period
6418
- */
6419
- period?: '1m' | '3m' | '6m' | '1y';
6420
- /**
6421
- * Region code for tenant context
6422
- */
6423
- region: 'cn' | 'us' | 'de' | 'gb';
6424
- };
6425
- type ReportingControllerGetCashFlowTrendsResponse = CashFlowTrendsResponseDto;
6426
- type ReportingControllerGenerateSnapshotData = {
6427
- /**
6428
- * Region code for tenant context
6429
- */
6430
- region: 'cn' | 'us' | 'de' | 'gb';
6431
- /**
6432
- * Optional date (defaults to today)
6433
- */
6434
- requestBody: GenerateSnapshotBody;
6435
- };
6436
- type ReportingControllerGenerateSnapshotResponse = GenerateSnapshotResponse;
6437
- type ReportingControllerBackfillSnapshotsData = {
6438
- /**
6439
- * Region code for tenant context
6440
- */
6441
- region: 'cn' | 'us' | 'de' | 'gb';
6442
- requestBody: BackfillSnapshotsBody;
6443
- };
6444
- type ReportingControllerBackfillSnapshotsResponse = BackfillSnapshotsResponse;
6445
6611
  type ApiKeysControllerCreateApiKeyResponse = unknown;
6446
6612
  type AuthControllerAccessTokenLoginData = {
6447
6613
  requestBody: AnonymousLoginDto;
6448
6614
  };
6449
- type AuthControllerAccessTokenLoginResponse = unknown;
6615
+ type AuthControllerAccessTokenLoginResponse = AnonymousLoginResponseDto;
6450
6616
  type CacheControllerFlushCacheResponse = unknown;
6451
6617
  type ExchangeRateControllerGetExchangeRateData = {
6452
6618
  /**
@@ -6473,6 +6639,29 @@ type HealthControllerResetCircuitBreakerData = {
6473
6639
  type HealthControllerResetCircuitBreakerResponse = unknown;
6474
6640
  type HealthControllerGetMetricsResponse = unknown;
6475
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;
6476
6665
  type $OpenApiTs = {
6477
6666
  '/api/v1/{region}/bean/accounts': {
6478
6667
  post: {
@@ -7512,427 +7701,499 @@ type $OpenApiTs = {
7512
7701
  };
7513
7702
  };
7514
7703
  };
7515
- '/api/v1/{region}/bean/expected-transactions/{id}/enter': {
7704
+ '/api/v1/{region}/bean/expected-transactions/{id}/enter': {
7705
+ post: {
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': {
7516
7784
  post: {
7517
- req: ExpectedTransactionControllerEnterNowData;
7785
+ req: ReportingControllerBackfillSnapshotsData;
7518
7786
  res: {
7519
7787
  /**
7520
- * Transaction created successfully
7788
+ * Backfill completed successfully
7521
7789
  */
7522
- 201: unknown;
7790
+ 200: BackfillSnapshotsResponse;
7523
7791
  /**
7524
- * Cannot enter - not in PENDING status or missing accounts
7792
+ * Invalid date format or range
7525
7793
  */
7526
7794
  400: unknown;
7527
7795
  /**
7528
- * Expected transaction or accounts not found
7796
+ * User not authenticated
7529
7797
  */
7530
- 404: unknown;
7531
- };
7532
- };
7533
- };
7534
- '/api/v1/{region}/bean/recurring/forecast': {
7535
- get: {
7536
- req: ForecastControllerGetForecastData;
7537
- res: {
7798
+ 401: unknown;
7538
7799
  /**
7539
- * Forecast retrieved successfully
7800
+ * Backfill already in progress for this user
7540
7801
  */
7541
- 200: ForecastResponseDto;
7802
+ 409: unknown;
7542
7803
  };
7543
7804
  };
7544
7805
  };
7545
- '/api/v1/{region}/bean/transaction-rules': {
7546
- post: {
7547
- req: TransactionRuleControllerCreateData;
7806
+ '/api/v1/users': {
7807
+ delete: {
7808
+ req: UserControllerDeleteOwnUserData;
7548
7809
  res: {
7549
7810
  /**
7550
- * Rule updated successfully (upsert mode)
7551
- */
7552
- 200: TransactionRuleResponseDto;
7553
- /**
7554
- * Validation failed
7555
- */
7556
- 400: ApiProblemResponseDto;
7557
- /**
7558
- * Unauthorized
7811
+ * User deleted successfully
7559
7812
  */
7560
- 401: ApiProblemResponseDto;
7813
+ 204: void;
7561
7814
  /**
7562
- * Resource conflict - another process is updating this rule
7815
+ * Invalid access token
7563
7816
  */
7564
- 409: ApiProblemResponseDto;
7817
+ 403: unknown;
7565
7818
  };
7566
7819
  };
7567
7820
  get: {
7568
- req: TransactionRuleControllerListData;
7821
+ req: UserControllerGetUserData;
7569
7822
  res: {
7570
7823
  /**
7571
- * List of rules
7572
- */
7573
- 200: TransactionRuleListResponseDto;
7574
- /**
7575
- * Unauthorized
7824
+ * User retrieved successfully
7576
7825
  */
7577
- 401: ApiProblemResponseDto;
7826
+ 200: unknown;
7578
7827
  };
7579
7828
  };
7580
- };
7581
- '/api/v1/{region}/bean/transaction-rules/validate': {
7582
7829
  post: {
7583
- req: TransactionRuleControllerValidateData;
7830
+ req: UserControllerSignupUserData;
7584
7831
  res: {
7585
7832
  /**
7586
- * Validation result
7833
+ * User created successfully
7587
7834
  */
7588
- 200: ValidateRuleResponseDto;
7835
+ 201: SignupResponseDto;
7589
7836
  /**
7590
- * Validation failed
7837
+ * Invalid Turnstile token (when Turnstile is enabled)
7591
7838
  */
7592
- 400: ApiProblemResponseDto;
7839
+ 400: unknown;
7593
7840
  /**
7594
- * Unauthorized
7841
+ * User signup is disabled
7595
7842
  */
7596
- 401: ApiProblemResponseDto;
7843
+ 403: unknown;
7597
7844
  };
7598
7845
  };
7599
7846
  };
7600
- '/api/v1/{region}/bean/transaction-rules/bulk': {
7601
- post: {
7602
- req: TransactionRuleControllerBulkCreateData;
7847
+ '/api/v1/users/{id}': {
7848
+ delete: {
7849
+ req: UserControllerDeleteUserData;
7603
7850
  res: {
7604
7851
  /**
7605
- * Bulk create completed
7606
- */
7607
- 201: BulkCreateRulesResponseDto;
7608
- /**
7609
- * Invalid bulk create data
7852
+ * User deleted successfully
7610
7853
  */
7611
- 400: ApiProblemResponseDto;
7854
+ 204: void;
7612
7855
  /**
7613
- * Unauthorized
7856
+ * Cannot delete own account or insufficient permissions
7614
7857
  */
7615
- 401: ApiProblemResponseDto;
7858
+ 403: unknown;
7616
7859
  };
7617
7860
  };
7618
7861
  };
7619
- '/api/v1/{region}/bean/transaction-rules/export/{format}': {
7862
+ '/api/v1/users/{id}/info': {
7620
7863
  get: {
7621
- req: TransactionRuleControllerExportData;
7864
+ req: UserControllerGetUserInfoData;
7622
7865
  res: {
7623
7866
  /**
7624
- * Exported rules
7625
- */
7626
- 200: ExportRulesResponseDto;
7627
- /**
7628
- * Unsupported format
7867
+ * User info retrieved successfully
7629
7868
  */
7630
- 400: ApiProblemResponseDto;
7869
+ 200: unknown;
7631
7870
  /**
7632
- * Unauthorized
7871
+ * Cannot access other user info without admin permission
7633
7872
  */
7634
- 401: ApiProblemResponseDto;
7873
+ 403: unknown;
7635
7874
  };
7636
7875
  };
7637
7876
  };
7638
- '/api/v1/{region}/bean/transaction-rules/statistics/{period}': {
7639
- get: {
7640
- req: TransactionRuleControllerGetStatisticsData;
7877
+ '/api/v1/users/setting': {
7878
+ put: {
7879
+ req: UserControllerUpdateUserSettingData;
7641
7880
  res: {
7642
7881
  /**
7643
- * Rule statistics
7882
+ * Settings updated successfully
7644
7883
  */
7645
- 200: RuleStatisticsResponseDto;
7884
+ 200: unknown;
7646
7885
  /**
7647
- * Unauthorized
7886
+ * Insufficient permissions
7648
7887
  */
7649
- 401: ApiProblemResponseDto;
7888
+ 403: unknown;
7650
7889
  };
7651
7890
  };
7652
7891
  };
7653
- '/api/v1/{region}/bean/transaction-rules/{ruleId}': {
7892
+ '/api/v1/users/settings-by-page': {
7654
7893
  get: {
7655
- req: TransactionRuleControllerGetDetailData;
7894
+ req: UserControllerGetAllUserSettingsByPageData;
7656
7895
  res: {
7657
7896
  /**
7658
- * Rule details
7659
- */
7660
- 200: TransactionRuleResponseDto;
7661
- /**
7662
- * Unauthorized
7663
- */
7664
- 401: ApiProblemResponseDto;
7665
- /**
7666
- * Forbidden - not owner of rule
7667
- */
7668
- 403: ApiProblemResponseDto;
7669
- /**
7670
- * Rule not found
7897
+ * Settings list retrieved successfully
7671
7898
  */
7672
- 404: ApiProblemResponseDto;
7899
+ 200: unknown;
7673
7900
  };
7674
7901
  };
7675
- put: {
7676
- req: TransactionRuleControllerUpdateData;
7902
+ };
7903
+ '/api/v1/users/asset-liability-summary': {
7904
+ get: {
7677
7905
  res: {
7678
7906
  /**
7679
- * Rule updated successfully
7907
+ * Summary retrieved successfully
7680
7908
  */
7681
- 200: TransactionRuleResponseDto;
7909
+ 200: unknown;
7910
+ };
7911
+ };
7912
+ };
7913
+ '/api/v1/admin/properties': {
7914
+ get: {
7915
+ res: {
7682
7916
  /**
7683
- * Validation failed
7917
+ * Properties retrieved successfully
7684
7918
  */
7685
- 400: ApiProblemResponseDto;
7919
+ 200: unknown;
7686
7920
  /**
7687
7921
  * Unauthorized
7688
7922
  */
7689
- 401: ApiProblemResponseDto;
7690
- /**
7691
- * Forbidden - not owner of rule
7692
- */
7693
- 403: ApiProblemResponseDto;
7694
- /**
7695
- * Rule not found
7696
- */
7697
- 404: ApiProblemResponseDto;
7923
+ 401: unknown;
7698
7924
  /**
7699
- * Resource conflict - rule is being modified by another process
7925
+ * Forbidden - insufficient permissions
7700
7926
  */
7701
- 409: ApiProblemResponseDto;
7927
+ 403: unknown;
7702
7928
  };
7703
7929
  };
7704
- delete: {
7705
- req: TransactionRuleControllerDeleteData;
7930
+ };
7931
+ '/api/v1/admin/properties/{key}': {
7932
+ get: {
7933
+ req: PropertyControllerGetByKeyData;
7706
7934
  res: {
7707
7935
  /**
7708
- * Rule deleted successfully
7936
+ * Property retrieved successfully
7709
7937
  */
7710
- 204: void;
7938
+ 200: unknown;
7711
7939
  /**
7712
7940
  * Unauthorized
7713
7941
  */
7714
- 401: ApiProblemResponseDto;
7715
- /**
7716
- * Forbidden - not owner of rule
7717
- */
7718
- 403: ApiProblemResponseDto;
7942
+ 401: unknown;
7719
7943
  /**
7720
- * Rule not found
7944
+ * Forbidden - insufficient permissions
7721
7945
  */
7722
- 404: ApiProblemResponseDto;
7946
+ 403: unknown;
7723
7947
  /**
7724
- * Resource conflict - rule is being modified by another process
7948
+ * Property not found
7725
7949
  */
7726
- 409: ApiProblemResponseDto;
7950
+ 404: unknown;
7727
7951
  };
7728
7952
  };
7729
- };
7730
- '/api/v1/{region}/bean/transaction-rules/{ruleId}/test': {
7731
- post: {
7732
- req: TransactionRuleControllerTestData;
7953
+ put: {
7954
+ req: PropertyControllerUpdateData;
7733
7955
  res: {
7734
7956
  /**
7735
- * Test result
7957
+ * Property updated successfully
7736
7958
  */
7737
- 200: TestRuleResponseDto;
7959
+ 200: unknown;
7738
7960
  /**
7739
7961
  * Unauthorized
7740
7962
  */
7741
- 401: ApiProblemResponseDto;
7742
- /**
7743
- * Forbidden - not owner of rule
7744
- */
7745
- 403: ApiProblemResponseDto;
7963
+ 401: unknown;
7746
7964
  /**
7747
- * Rule not found
7965
+ * Forbidden - insufficient permissions
7748
7966
  */
7749
- 404: ApiProblemResponseDto;
7967
+ 403: unknown;
7750
7968
  };
7751
7969
  };
7752
- };
7753
- '/api/v1/users': {
7754
7970
  delete: {
7755
- req: UserControllerDeleteOwnUserData;
7971
+ req: PropertyControllerDeleteData;
7756
7972
  res: {
7757
7973
  /**
7758
- * User deleted successfully
7974
+ * Property deleted successfully
7759
7975
  */
7760
7976
  204: void;
7761
7977
  /**
7762
- * Invalid access token
7978
+ * Unauthorized
7979
+ */
7980
+ 401: unknown;
7981
+ /**
7982
+ * Forbidden - insufficient permissions
7763
7983
  */
7764
7984
  403: unknown;
7765
- };
7766
- };
7767
- get: {
7768
- req: UserControllerGetUserData;
7769
- res: {
7770
7985
  /**
7771
- * User retrieved successfully
7986
+ * Property not found
7772
7987
  */
7773
- 200: unknown;
7988
+ 404: unknown;
7774
7989
  };
7775
7990
  };
7991
+ };
7992
+ '/api/v1/{region}/bean/transaction-rules': {
7776
7993
  post: {
7777
- req: UserControllerSignupUserData;
7994
+ req: TransactionRuleControllerCreateData;
7778
7995
  res: {
7779
7996
  /**
7780
- * User created successfully
7997
+ * Rule updated successfully (upsert mode)
7781
7998
  */
7782
- 201: unknown;
7999
+ 200: TransactionRuleResponseDto;
7783
8000
  /**
7784
- * Invalid Turnstile token (when Turnstile is enabled)
8001
+ * Validation failed
7785
8002
  */
7786
- 400: unknown;
8003
+ 400: ApiProblemResponseDto;
7787
8004
  /**
7788
- * User signup is disabled
8005
+ * Unauthorized
8006
+ */
8007
+ 401: ApiProblemResponseDto;
8008
+ /**
8009
+ * Resource conflict - another process is updating this rule
7789
8010
  */
7790
- 403: unknown;
8011
+ 409: ApiProblemResponseDto;
7791
8012
  };
7792
8013
  };
7793
- };
7794
- '/api/v1/users/{id}': {
7795
- delete: {
7796
- req: UserControllerDeleteUserData;
8014
+ get: {
8015
+ req: TransactionRuleControllerListData;
7797
8016
  res: {
7798
8017
  /**
7799
- * User deleted successfully
8018
+ * List of rules
7800
8019
  */
7801
- 204: void;
8020
+ 200: TransactionRuleListResponseDto;
7802
8021
  /**
7803
- * Cannot delete own account or insufficient permissions
8022
+ * Unauthorized
7804
8023
  */
7805
- 403: unknown;
8024
+ 401: ApiProblemResponseDto;
7806
8025
  };
7807
8026
  };
7808
8027
  };
7809
- '/api/v1/users/{id}/info': {
7810
- get: {
7811
- req: UserControllerGetUserInfoData;
8028
+ '/api/v1/{region}/bean/transaction-rules/validate': {
8029
+ post: {
8030
+ req: TransactionRuleControllerValidateData;
7812
8031
  res: {
7813
8032
  /**
7814
- * User info retrieved successfully
8033
+ * Validation result
7815
8034
  */
7816
- 200: unknown;
8035
+ 200: ValidateRuleResponseDto;
7817
8036
  /**
7818
- * Cannot access other user info without admin permission
8037
+ * Validation failed
7819
8038
  */
7820
- 403: unknown;
8039
+ 400: ApiProblemResponseDto;
8040
+ /**
8041
+ * Unauthorized
8042
+ */
8043
+ 401: ApiProblemResponseDto;
7821
8044
  };
7822
8045
  };
7823
8046
  };
7824
- '/api/v1/users/setting': {
7825
- put: {
7826
- req: UserControllerUpdateUserSettingData;
8047
+ '/api/v1/{region}/bean/transaction-rules/bulk': {
8048
+ post: {
8049
+ req: TransactionRuleControllerBulkCreateData;
7827
8050
  res: {
7828
8051
  /**
7829
- * Settings updated successfully
8052
+ * Bulk create completed
7830
8053
  */
7831
- 200: unknown;
8054
+ 201: BulkCreateRulesResponseDto;
7832
8055
  /**
7833
- * Insufficient permissions
8056
+ * Invalid bulk create data
7834
8057
  */
7835
- 403: unknown;
8058
+ 400: ApiProblemResponseDto;
8059
+ /**
8060
+ * Unauthorized
8061
+ */
8062
+ 401: ApiProblemResponseDto;
7836
8063
  };
7837
8064
  };
7838
8065
  };
7839
- '/api/v1/users/settings-by-page': {
8066
+ '/api/v1/{region}/bean/transaction-rules/export/{format}': {
7840
8067
  get: {
7841
- req: UserControllerGetAllUserSettingsByPageData;
8068
+ req: TransactionRuleControllerExportData;
7842
8069
  res: {
7843
8070
  /**
7844
- * Settings list retrieved successfully
8071
+ * Exported rules
7845
8072
  */
7846
- 200: unknown;
8073
+ 200: ExportRulesResponseDto;
8074
+ /**
8075
+ * Unsupported format
8076
+ */
8077
+ 400: ApiProblemResponseDto;
8078
+ /**
8079
+ * Unauthorized
8080
+ */
8081
+ 401: ApiProblemResponseDto;
7847
8082
  };
7848
8083
  };
7849
8084
  };
7850
- '/api/v1/users/asset-liability-summary': {
8085
+ '/api/v1/{region}/bean/transaction-rules/statistics/{period}': {
7851
8086
  get: {
8087
+ req: TransactionRuleControllerGetStatisticsData;
7852
8088
  res: {
7853
8089
  /**
7854
- * Summary retrieved successfully
8090
+ * Rule statistics
7855
8091
  */
7856
- 200: unknown;
8092
+ 200: RuleStatisticsResponseDto;
8093
+ /**
8094
+ * Unauthorized
8095
+ */
8096
+ 401: ApiProblemResponseDto;
7857
8097
  };
7858
8098
  };
7859
8099
  };
7860
- '/api/v1/admin/properties': {
8100
+ '/api/v1/{region}/bean/transaction-rules/{ruleId}': {
7861
8101
  get: {
8102
+ req: TransactionRuleControllerGetDetailData;
7862
8103
  res: {
7863
8104
  /**
7864
- * Properties retrieved successfully
8105
+ * Rule details
7865
8106
  */
7866
- 200: unknown;
8107
+ 200: TransactionRuleResponseDto;
7867
8108
  /**
7868
8109
  * Unauthorized
7869
8110
  */
7870
- 401: unknown;
8111
+ 401: ApiProblemResponseDto;
7871
8112
  /**
7872
- * Forbidden - insufficient permissions
8113
+ * Forbidden - not owner of rule
7873
8114
  */
7874
- 403: unknown;
8115
+ 403: ApiProblemResponseDto;
8116
+ /**
8117
+ * Rule not found
8118
+ */
8119
+ 404: ApiProblemResponseDto;
7875
8120
  };
7876
8121
  };
7877
- };
7878
- '/api/v1/admin/properties/{key}': {
7879
- get: {
7880
- req: PropertyControllerGetByKeyData;
8122
+ put: {
8123
+ req: TransactionRuleControllerUpdateData;
7881
8124
  res: {
7882
8125
  /**
7883
- * Property retrieved successfully
8126
+ * Rule updated successfully
7884
8127
  */
7885
- 200: unknown;
8128
+ 200: TransactionRuleResponseDto;
8129
+ /**
8130
+ * Validation failed
8131
+ */
8132
+ 400: ApiProblemResponseDto;
7886
8133
  /**
7887
8134
  * Unauthorized
7888
8135
  */
7889
- 401: unknown;
8136
+ 401: ApiProblemResponseDto;
7890
8137
  /**
7891
- * Forbidden - insufficient permissions
8138
+ * Forbidden - not owner of rule
7892
8139
  */
7893
- 403: unknown;
8140
+ 403: ApiProblemResponseDto;
7894
8141
  /**
7895
- * Property not found
8142
+ * Rule not found
7896
8143
  */
7897
- 404: unknown;
8144
+ 404: ApiProblemResponseDto;
8145
+ /**
8146
+ * Resource conflict - rule is being modified by another process
8147
+ */
8148
+ 409: ApiProblemResponseDto;
7898
8149
  };
7899
8150
  };
7900
- put: {
7901
- req: PropertyControllerUpdateData;
8151
+ delete: {
8152
+ req: TransactionRuleControllerDeleteData;
7902
8153
  res: {
7903
8154
  /**
7904
- * Property updated successfully
8155
+ * Rule deleted successfully
7905
8156
  */
7906
- 200: unknown;
8157
+ 204: void;
7907
8158
  /**
7908
8159
  * Unauthorized
7909
8160
  */
7910
- 401: unknown;
8161
+ 401: ApiProblemResponseDto;
7911
8162
  /**
7912
- * Forbidden - insufficient permissions
8163
+ * Forbidden - not owner of rule
7913
8164
  */
7914
- 403: unknown;
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;
7915
8174
  };
7916
8175
  };
7917
- delete: {
7918
- req: PropertyControllerDeleteData;
8176
+ };
8177
+ '/api/v1/{region}/bean/transaction-rules/{ruleId}/test': {
8178
+ post: {
8179
+ req: TransactionRuleControllerTestData;
7919
8180
  res: {
7920
8181
  /**
7921
- * Property deleted successfully
8182
+ * Test result
7922
8183
  */
7923
- 204: void;
8184
+ 200: TestRuleResponseDto;
7924
8185
  /**
7925
8186
  * Unauthorized
7926
8187
  */
7927
- 401: unknown;
8188
+ 401: ApiProblemResponseDto;
7928
8189
  /**
7929
- * Forbidden - insufficient permissions
8190
+ * Forbidden - not owner of rule
7930
8191
  */
7931
- 403: unknown;
8192
+ 403: ApiProblemResponseDto;
7932
8193
  /**
7933
- * Property not found
8194
+ * Rule not found
7934
8195
  */
7935
- 404: unknown;
8196
+ 404: ApiProblemResponseDto;
7936
8197
  };
7937
8198
  };
7938
8199
  };
@@ -8609,78 +8870,6 @@ type $OpenApiTs = {
8609
8870
  };
8610
8871
  };
8611
8872
  };
8612
- '/api/v1/{region}/reporting/portfolio/trends': {
8613
- get: {
8614
- req: ReportingControllerGetPortfolioTrendsData;
8615
- res: {
8616
- /**
8617
- * Trends retrieved successfully
8618
- */
8619
- 200: PortfolioTrendsResponseDto;
8620
- /**
8621
- * User not authenticated
8622
- */
8623
- 401: unknown;
8624
- };
8625
- };
8626
- };
8627
- '/api/v1/{region}/reporting/cash-flow/trends': {
8628
- get: {
8629
- req: ReportingControllerGetCashFlowTrendsData;
8630
- res: {
8631
- /**
8632
- * Cash-flow trends retrieved successfully
8633
- */
8634
- 200: CashFlowTrendsResponseDto;
8635
- /**
8636
- * User not authenticated
8637
- */
8638
- 401: unknown;
8639
- };
8640
- };
8641
- };
8642
- '/api/v1/{region}/reporting/snapshots/generate': {
8643
- post: {
8644
- req: ReportingControllerGenerateSnapshotData;
8645
- res: {
8646
- /**
8647
- * Snapshot generated successfully
8648
- */
8649
- 200: GenerateSnapshotResponse;
8650
- /**
8651
- * Invalid date format
8652
- */
8653
- 400: unknown;
8654
- /**
8655
- * User not authenticated
8656
- */
8657
- 401: unknown;
8658
- };
8659
- };
8660
- };
8661
- '/api/v1/{region}/reporting/snapshots/backfill': {
8662
- post: {
8663
- req: ReportingControllerBackfillSnapshotsData;
8664
- res: {
8665
- /**
8666
- * Backfill completed successfully
8667
- */
8668
- 200: BackfillSnapshotsResponse;
8669
- /**
8670
- * Invalid date format or range
8671
- */
8672
- 400: unknown;
8673
- /**
8674
- * User not authenticated
8675
- */
8676
- 401: unknown;
8677
- /**
8678
- * Backfill already in progress for this user
8679
- */
8680
- 409: unknown;
8681
- };
8682
- };
8683
- };
8684
8873
  '/api/v1/auth/api-keys': {
8685
8874
  post: {
8686
8875
  res: {
@@ -8702,7 +8891,7 @@ type $OpenApiTs = {
8702
8891
  /**
8703
8892
  * Login successful
8704
8893
  */
8705
- 200: unknown;
8894
+ 200: AnonymousLoginResponseDto;
8706
8895
  /**
8707
8896
  * Invalid access token
8708
8897
  */
@@ -8849,6 +9038,32 @@ type $OpenApiTs = {
8849
9038
  };
8850
9039
  };
8851
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
+ };
8852
9067
  };
8853
9068
 
8854
9069
  declare class BeanAccountsService {
@@ -9272,4 +9487,4 @@ type OpenAPIConfig = {
9272
9487
  };
9273
9488
  declare const OpenAPI: OpenAPIConfig;
9274
9489
 
9275
- 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 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 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 matchType, type matchType2, 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 };