@firela/api-types 0.0.0-canary.63a53b7d → 0.0.0-canary.693e8bdf

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' | 'ACCOUNTS_PAYABLE' | 'TAX_PAYABLE' | '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' | 'ACCOUNTS_PAYABLE' | 'TAX_PAYABLE' | 'OTHER';
148
156
  /**
149
157
  * Account status
150
158
  */
@@ -246,7 +254,27 @@ type AccountStandardResponseDto = {
246
254
  * Icon identifier for UI display
247
255
  */
248
256
  icon: string;
257
+ /**
258
+ * Onboarding product category (coarse grouping derived from assetSubClass)
259
+ */
260
+ productCategory: 'cash' | 'investment' | 'credit_card' | 'loan' | 'payable_tax' | 'other';
261
+ /**
262
+ * Asset class (LIQUIDITY/EQUITY/.../LIABILITY), derived at read time from classification rules
263
+ */
264
+ assetClass?: 'LIQUIDITY' | 'EQUITY' | 'FIXED_INCOME' | 'PRECIOUS_METALS' | 'COMMODITY' | 'INSURANCE' | 'ALTERNATIVE_INVESTMENT' | 'PERSONAL_ASSETS' | 'LIABILITY' | 'REAL_ESTATE' | 'INDEX';
265
+ /**
266
+ * Asset sub-class (product type, derived at read time from classification rules)
267
+ */
268
+ assetSubClass?: string;
249
269
  };
270
+ /**
271
+ * Onboarding product category (coarse grouping derived from assetSubClass)
272
+ */
273
+ type productCategory = 'cash' | 'investment' | 'credit_card' | 'loan' | 'payable_tax' | 'other';
274
+ /**
275
+ * Asset class (LIQUIDITY/EQUITY/.../LIABILITY), derived at read time from classification rules
276
+ */
277
+ type assetClass = 'LIQUIDITY' | 'EQUITY' | 'FIXED_INCOME' | 'PRECIOUS_METALS' | 'COMMODITY' | 'INSURANCE' | 'ALTERNATIVE_INVESTMENT' | 'PERSONAL_ASSETS' | 'LIABILITY' | 'REAL_ESTATE' | 'INDEX';
250
278
  type AccountStandardListResponseDto = {
251
279
  /**
252
280
  * Array of account templates
@@ -2375,367 +2403,233 @@ type ForecastResponseDto = {
2375
2403
  */
2376
2404
  periodEnd: string;
2377
2405
  };
2378
- type CreateTransactionRuleDto = {
2379
- name: string;
2380
- description?: string;
2381
- narrationKeywords?: Array<unknown[]>;
2382
- payeeKeywords?: Array<unknown[]>;
2383
- categoryKeywords?: Array<unknown[]>;
2406
+ type CurrencyBalanceDto = {
2384
2407
  /**
2385
- * Payment method keywords (e.g., HuaBei, YuEBao)
2408
+ * ISO 4217 currency code
2386
2409
  */
2387
- methodKeywords?: Array<unknown[]>;
2410
+ currency: string;
2388
2411
  /**
2389
- * Destination account for expenses/income (e.g., Expenses:Food:Coffee)
2412
+ * Balance amount
2390
2413
  */
2391
- categoryAccount?: string;
2392
- matchLogic: 'OR' | 'AND';
2414
+ balance: string;
2415
+ };
2416
+ type TimeSeriesPointDto = {
2393
2417
  /**
2394
- * Minimum transaction amount (inclusive)
2418
+ * Date in YYYY-MM-DD format
2395
2419
  */
2396
- amountMin?: number;
2420
+ date: string;
2397
2421
  /**
2398
- * Maximum transaction amount (inclusive)
2422
+ * Value at this date (in base currency)
2399
2423
  */
2400
- amountMax?: number;
2401
- priority: number;
2402
- additionalTags?: Array<unknown[]>;
2403
- additionalMetadata?: {
2424
+ value: string;
2425
+ /**
2426
+ * Change from previous point
2427
+ */
2428
+ change?: {
2404
2429
  [key: string]: unknown;
2405
2430
  };
2406
2431
  /**
2407
- * If true, update existing rule with matching payeeKeywords[0] instead of creating new rule
2432
+ * Total assets at this date (in base currency)
2408
2433
  */
2409
- upsertByPayee?: boolean;
2410
- };
2411
- type matchLogic = 'OR' | 'AND';
2412
- type AmountRangeDto = {
2434
+ assets?: string;
2413
2435
  /**
2414
- * Minimum amount
2436
+ * Total liabilities at this date (in base currency)
2415
2437
  */
2416
- min?: number;
2438
+ liabilities?: string;
2417
2439
  /**
2418
- * Maximum amount
2440
+ * Multi-currency breakdown for this point
2419
2441
  */
2420
- max?: number;
2442
+ byCurrency?: Array<CurrencyBalanceDto>;
2421
2443
  };
2422
- type TransactionRuleResponseDto = {
2444
+ type TrendSummaryDto = {
2423
2445
  /**
2424
- * Rule ID
2446
+ * Value at start of period
2425
2447
  */
2426
- id: string;
2448
+ startValue: string;
2427
2449
  /**
2428
- * Rule name
2450
+ * Value at end of period
2429
2451
  */
2430
- name: string;
2452
+ endValue: string;
2431
2453
  /**
2432
- * Rule description
2454
+ * Total change over period
2433
2455
  */
2434
- description?: string;
2456
+ totalChange: string;
2435
2457
  /**
2436
- * Keywords to match in transaction narration
2458
+ * Total change percentage
2437
2459
  */
2438
- narrationKeywords: Array<string>;
2460
+ totalChangePercentage: string;
2461
+ };
2462
+ type MultiCurrencyPointDto = {
2439
2463
  /**
2440
- * Keywords to match in payee name
2464
+ * Date in YYYY-MM-DD format
2441
2465
  */
2442
- payeeKeywords: Array<string>;
2466
+ date: string;
2443
2467
  /**
2444
- * Keywords to match in category
2468
+ * Balances by currency
2445
2469
  */
2446
- categoryKeywords: Array<string>;
2470
+ byCurrency: Array<CurrencyBalanceDto>;
2471
+ };
2472
+ type PortfolioTrendsResponseDto = {
2447
2473
  /**
2448
- * Keywords to match in payment method
2474
+ * Time series data points
2449
2475
  */
2450
- methodKeywords: Array<string>;
2476
+ series: Array<TimeSeriesPointDto>;
2451
2477
  /**
2452
- * Destination account for categorization
2478
+ * Period summary
2453
2479
  */
2454
- categoryAccount?: string;
2480
+ summary: TrendSummaryDto;
2455
2481
  /**
2456
- * Keyword matching logic
2482
+ * Period requested
2457
2483
  */
2458
- matchLogic: 'OR' | 'AND';
2484
+ period: string;
2459
2485
  /**
2460
- * Amount range for matching
2486
+ * Data granularity
2461
2487
  */
2462
- amountRange?: AmountRangeDto;
2488
+ granularity: string;
2463
2489
  /**
2464
- * Rule priority (0-1000, higher = first match)
2490
+ * Base currency for converted values
2465
2491
  */
2466
- priority: number;
2492
+ currency: string;
2467
2493
  /**
2468
- * Whether the rule is enabled
2494
+ * Multi-currency time series (each point has currency breakdown)
2469
2495
  */
2470
- enabled: boolean;
2496
+ byCurrency?: Array<MultiCurrencyPointDto>;
2471
2497
  /**
2472
- * Learning source: NLP, REVIEW_CENTER, or null for manual
2498
+ * Exchange rate warnings
2473
2499
  */
2474
- learningSource?: 'NLP' | 'REVIEW_CENTER' | null;
2500
+ warnings?: Array<ExchangeRateWarningDto>;
2501
+ };
2502
+ type CashFlowPointDto = {
2475
2503
  /**
2476
- * Whether auto-apply is enabled for this rule
2504
+ * Month key (YYYY-MM)
2477
2505
  */
2478
- autoApplyEnabled: boolean;
2506
+ month: string;
2479
2507
  /**
2480
- * Number of confirmations for NLP-learned rules
2508
+ * Income in base currency (absolute, converted)
2481
2509
  */
2482
- confirmationCount: number;
2510
+ income: string;
2483
2511
  /**
2484
- * Additional tags
2512
+ * Expense in base currency (absolute, converted)
2485
2513
  */
2486
- additionalTags: Array<string>;
2514
+ expense: string;
2487
2515
  /**
2488
- * Additional metadata
2516
+ * netSavings = income − expense (savings positive)
2489
2517
  */
2490
- additionalMetadata?: {
2491
- [key: string]: string;
2492
- };
2518
+ netSavings: string;
2519
+ };
2520
+ type CashFlowTrendSummaryDto = {
2493
2521
  /**
2494
- * Created timestamp
2522
+ * Total income across the period
2495
2523
  */
2496
- createdAt: string;
2524
+ totalIncome: string;
2497
2525
  /**
2498
- * Updated timestamp
2526
+ * Total expense across the period
2499
2527
  */
2500
- updatedAt: string;
2528
+ totalExpense: string;
2529
+ /**
2530
+ * income − expense across the period
2531
+ */
2532
+ totalNetSavings: string;
2533
+ /**
2534
+ * totalNetSavings divided by the window length (N months, incl. zero-filled)
2535
+ */
2536
+ averageMonthlyNetSavings: string;
2501
2537
  };
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>;
2538
+ type CashFlowTrendsResponseDto = {
2508
2539
  /**
2509
- * Total count of rules
2540
+ * Monthly cash-flow series (fixed N-month window, zero-filled)
2510
2541
  */
2511
- total: number;
2542
+ series: Array<CashFlowPointDto>;
2512
2543
  /**
2513
- * Results per page
2544
+ * Period totals
2514
2545
  */
2515
- limit: number;
2546
+ summary: CashFlowTrendSummaryDto;
2516
2547
  /**
2517
- * Pagination offset
2548
+ * Period requested
2518
2549
  */
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[]>;
2550
+ period: string;
2527
2551
  /**
2528
- * Payment method keywords (e.g., HuaBei, YuEBao)
2552
+ * Data granularity (v1 returns month buckets)
2529
2553
  */
2530
- methodKeywords?: Array<unknown[]>;
2554
+ granularity: string;
2531
2555
  /**
2532
- * Destination account for expenses/income (e.g., Expenses:Food:Coffee)
2556
+ * Base currency for converted values
2533
2557
  */
2534
- categoryAccount?: string;
2535
- matchLogic: 'OR' | 'AND';
2558
+ currency: string;
2536
2559
  /**
2537
- * Minimum transaction amount (inclusive)
2560
+ * Exchange rate warnings (e.g. missing rate for a currency)
2538
2561
  */
2539
- amountMin?: number;
2562
+ warnings?: Array<ExchangeRateWarningDto>;
2563
+ };
2564
+ type GenerateSnapshotBody = unknown;
2565
+ type GenerateSnapshotResponse = unknown;
2566
+ type BackfillSnapshotsBody = unknown;
2567
+ type BackfillSnapshotsResponse = unknown;
2568
+ type DeleteOwnUserDto = {
2540
2569
  /**
2541
- * Maximum transaction amount (inclusive)
2570
+ * Access token for user verification
2542
2571
  */
2543
- amountMax?: number;
2544
- priority: number;
2545
- additionalTags?: Array<unknown[]>;
2546
- additionalMetadata?: {
2547
- [key: string]: unknown;
2548
- };
2572
+ accessToken: string;
2573
+ };
2574
+ type UserSettingsResponseDto = {
2549
2575
  /**
2550
- * If true, update existing rule with matching payeeKeywords[0] instead of creating new rule
2576
+ * Base currency (ISO 4217) for net-worth/report aggregation. Independent of region (ADR-0006).
2551
2577
  */
2552
- upsertByPayee?: boolean;
2578
+ baseCurrency: string | null;
2553
2579
  };
2554
- type ValidateRuleResponseDto = {
2580
+ type UserResponseDto = {
2555
2581
  /**
2556
- * Whether the rule configuration is valid
2582
+ * User ID
2557
2583
  */
2558
- valid: boolean;
2584
+ id: string;
2559
2585
  /**
2560
- * List of validation errors (empty if valid)
2586
+ * Assigned user role
2561
2587
  */
2562
- errors: Array<unknown[]>;
2588
+ role: string;
2563
2589
  /**
2564
- * List of validation warnings (non-blocking issues)
2590
+ * Permission strings
2565
2591
  */
2566
- warnings: Array<unknown[]>;
2592
+ permissions: Array<string>;
2593
+ /**
2594
+ * User settings
2595
+ */
2596
+ settings: UserSettingsResponseDto;
2567
2597
  };
2568
- type BulkCreateRulesDto = {
2598
+ type SignupDto = {
2569
2599
  /**
2570
- * Array of rules to import
2600
+ * Cloudflare Turnstile verification token (optional when Turnstile disabled)
2571
2601
  */
2572
- rules: Array<unknown[]>;
2602
+ turnstileToken?: string;
2603
+ };
2604
+ type SignupResponseDto = {
2573
2605
  /**
2574
- * Conflict handling strategy: skip (default) ignores duplicates, replace soft-deletes existing rule
2606
+ * JWT auth token
2575
2607
  */
2576
- conflictStrategy: 'replace' | 'skip';
2608
+ authToken: string;
2609
+ /**
2610
+ * Auto-generated access token
2611
+ */
2612
+ accessToken: string;
2613
+ /**
2614
+ * Assigned user role
2615
+ */
2616
+ role: 'USER' | 'ADMIN' | 'DEMO' | 'INACTIVE' | 'PAID' | 'OPS';
2577
2617
  };
2578
2618
  /**
2579
- * Conflict handling strategy: skip (default) ignores duplicates, replace soft-deletes existing rule
2619
+ * Assigned user role
2580
2620
  */
2581
- type conflictStrategy = 'replace' | 'skip';
2582
- type BulkCreateRulesResponseDto = {
2621
+ type role = 'USER' | 'ADMIN' | 'DEMO' | 'INACTIVE' | 'PAID' | 'OPS';
2622
+ type UpdateUserSettingDto = {
2583
2623
  /**
2584
- * Number of successfully created rules
2624
+ * Security ID
2585
2625
  */
2586
- successCount: number;
2626
+ secId?: number;
2587
2627
  /**
2588
- * Number of failed rules
2628
+ * Annual interest rate
2589
2629
  */
2590
- failureCount: number;
2630
+ annualInterestRate?: number;
2591
2631
  /**
2592
- * Error details for failed rules
2593
- */
2594
- errors: Array<{
2595
- index?: number;
2596
- message?: string;
2597
- }>;
2598
- /**
2599
- * IDs of successfully created rules
2600
- */
2601
- createdRuleIds: Array<string>;
2602
- };
2603
- type ExportRulesResponseDto = {
2604
- /**
2605
- * Export timestamp
2606
- */
2607
- exportedAt: string;
2608
- /**
2609
- * User ID
2610
- */
2611
- userId: string;
2612
- /**
2613
- * Number of exported rules
2614
- */
2615
- ruleCount: number;
2616
- /**
2617
- * Exported rules
2618
- */
2619
- rules: unknown[];
2620
- };
2621
- type RuleStatisticsResponseDto = {
2622
- /**
2623
- * Statistics time period
2624
- */
2625
- period: '7d' | '30d' | '90d';
2626
- /**
2627
- * Total number of rules
2628
- */
2629
- totalRules: number;
2630
- /**
2631
- * Number of rules with at least one match
2632
- */
2633
- rulesWithMatches: number;
2634
- /**
2635
- * Total number of matches across all rules
2636
- */
2637
- totalMatches: number;
2638
- /**
2639
- * Average confidence score across all matches
2640
- */
2641
- averageConfidence: number;
2642
- /**
2643
- * Per-rule statistics
2644
- */
2645
- ruleStats: Array<{
2646
- ruleId?: string;
2647
- ruleName?: string;
2648
- matchCount?: number;
2649
- averageConfidence?: number;
2650
- }>;
2651
- };
2652
- /**
2653
- * Statistics time period
2654
- */
2655
- type period = '7d' | '30d' | '90d';
2656
- type UpdateTransactionRuleDto = {
2657
- name?: string;
2658
- description?: string;
2659
- narrationKeywords?: Array<unknown[]>;
2660
- payeeKeywords?: Array<unknown[]>;
2661
- categoryKeywords?: Array<unknown[]>;
2662
- /**
2663
- * Payment method keywords (e.g., HuaBei, YuEBao)
2664
- */
2665
- methodKeywords?: Array<unknown[]>;
2666
- /**
2667
- * Destination account for expenses/income (e.g., Expenses:Food:Coffee)
2668
- */
2669
- categoryAccount?: string;
2670
- matchLogic?: 'OR' | 'AND';
2671
- /**
2672
- * Minimum transaction amount (inclusive)
2673
- */
2674
- amountMin?: number;
2675
- /**
2676
- * Maximum transaction amount (inclusive)
2677
- */
2678
- amountMax?: number;
2679
- priority?: number;
2680
- /**
2681
- * Enable or disable the rule
2682
- */
2683
- enabled?: boolean;
2684
- additionalTags?: Array<unknown[]>;
2685
- additionalMetadata?: {
2686
- [key: string]: unknown;
2687
- };
2688
- };
2689
- type TestRuleDto = {
2690
- narration: string;
2691
- payee?: string;
2692
- categoryAccount?: string;
2693
- amount?: number;
2694
- currency?: string;
2695
- };
2696
- type TestRuleResponseDto = {
2697
- /**
2698
- * Rule ID that was tested
2699
- */
2700
- ruleId: string;
2701
- /**
2702
- * Whether the rule matched the test data
2703
- */
2704
- matches: boolean;
2705
- /**
2706
- * Match confidence score (0-1)
2707
- */
2708
- confidence: number;
2709
- /**
2710
- * Details of which fields matched
2711
- */
2712
- matchDetails: {
2713
- [key: string]: unknown;
2714
- };
2715
- };
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
2632
+ * Currency code
2739
2633
  */
2740
2634
  currency?: string;
2741
2635
  /**
@@ -2825,103 +2719,477 @@ type UpdatePropertyDto = {
2825
2719
  */
2826
2720
  value: string;
2827
2721
  };
2828
- type CreateBeanEventDto = {
2722
+ type CreateTransactionRuleDto = {
2723
+ name: string;
2724
+ description?: string;
2725
+ narrationKeywords?: Array<unknown[]>;
2726
+ payeeKeywords?: Array<unknown[]>;
2727
+ categoryKeywords?: Array<unknown[]>;
2829
2728
  /**
2830
- * Life event date (ISO 8601)
2729
+ * Payment method keywords (e.g., HuaBei, YuEBao)
2831
2730
  */
2832
- date: string;
2731
+ methodKeywords?: Array<unknown[]>;
2833
2732
  /**
2834
- * Life event type (e.g., "employer", "location", "marital-status") — user-defined, no enum constraint at engine layer
2733
+ * Destination account for expenses/income (e.g., Expenses:Food:Coffee)
2835
2734
  */
2836
- type: string;
2735
+ categoryAccount?: string;
2736
+ matchLogic: 'OR' | 'AND';
2837
2737
  /**
2838
- * Life event description. Empty string is a VALID value (distinct from absence).
2738
+ * Minimum transaction amount (inclusive)
2839
2739
  */
2840
- description: string;
2740
+ amountMin?: number;
2841
2741
  /**
2842
- * Product-side metadata (lives in BeanEvent.meta JSON, never in engine Event fields)
2742
+ * Maximum transaction amount (inclusive)
2843
2743
  */
2844
- meta?: {
2744
+ amountMax?: number;
2745
+ priority: number;
2746
+ additionalTags?: Array<unknown[]>;
2747
+ additionalMetadata?: {
2845
2748
  [key: string]: unknown;
2846
2749
  };
2847
- };
2848
- type EventResponseDto = {
2849
2750
  /**
2850
- * Unique identifier
2751
+ * If true, update existing rule with matching payeeKeywords[0] instead of creating new rule
2851
2752
  */
2852
- id: string;
2753
+ upsertByPayee?: boolean;
2754
+ };
2755
+ type matchLogic = 'OR' | 'AND';
2756
+ type AmountRangeDto = {
2853
2757
  /**
2854
- * User ID (owner of the life event)
2758
+ * Minimum amount
2855
2759
  */
2856
- userId: string;
2760
+ min?: number;
2857
2761
  /**
2858
- * Life event date (ISO 8601 format)
2762
+ * Maximum amount
2859
2763
  */
2860
- date: string;
2764
+ max?: number;
2765
+ };
2766
+ type TransactionRuleResponseDto = {
2861
2767
  /**
2862
- * Life event type (user-defined, e.g., "employer", "location")
2768
+ * Rule ID
2863
2769
  */
2864
- type: string;
2770
+ id: string;
2865
2771
  /**
2866
- * Life event description. May be an empty string (a valid value distinct from absence).
2772
+ * Rule name
2867
2773
  */
2868
- description: string;
2774
+ name: string;
2869
2775
  /**
2870
- * Product-side metadata (free-form JSON)
2776
+ * Rule description
2871
2777
  */
2872
- meta: {
2873
- [key: string]: unknown;
2874
- };
2778
+ description?: string;
2875
2779
  /**
2876
- * Creation timestamp
2780
+ * Keywords to match in transaction narration
2877
2781
  */
2878
- createdAt: string;
2782
+ narrationKeywords: Array<string>;
2879
2783
  /**
2880
- * Last update timestamp. Also emitted as the ETag response header for If-Match optimistic concurrency.
2784
+ * Keywords to match in payee name
2881
2785
  */
2882
- updatedAt: string;
2883
- };
2884
- type EventListResponseDto = {
2786
+ payeeKeywords: Array<string>;
2885
2787
  /**
2886
- * List of life events
2788
+ * Keywords to match in category
2887
2789
  */
2888
- items: Array<EventResponseDto>;
2790
+ categoryKeywords: Array<string>;
2889
2791
  /**
2890
- * Total number of life events matching the query
2792
+ * Keywords to match in payment method
2891
2793
  */
2892
- total: number;
2893
- };
2894
- type UpdateBeanEventDto = {
2794
+ methodKeywords: Array<string>;
2895
2795
  /**
2896
- * Life event date (ISO 8601)
2796
+ * Destination account for categorization
2897
2797
  */
2898
- date?: string;
2798
+ categoryAccount?: string;
2899
2799
  /**
2900
- * Life event type (user-defined)
2800
+ * Keyword matching logic
2901
2801
  */
2902
- type?: string;
2802
+ matchLogic: 'OR' | 'AND';
2903
2803
  /**
2904
- * Life event description. Empty string is a VALID value (distinct from absence).
2804
+ * Amount range for matching
2905
2805
  */
2906
- description?: string;
2806
+ amountRange?: AmountRangeDto;
2907
2807
  /**
2908
- * Product-side metadata (free-form JSON)
2808
+ * Rule priority (0-1000, higher = first match)
2909
2809
  */
2910
- meta?: {
2911
- [key: string]: unknown;
2912
- };
2913
- };
2914
- type OnboardingAccountDto = {
2810
+ priority: number;
2915
2811
  /**
2916
- * Account path (Assets/Liabilities only; format validated by the account service)
2812
+ * Whether the rule is enabled
2917
2813
  */
2918
- path: string;
2814
+ enabled: boolean;
2919
2815
  /**
2920
- * ISO 4217 currency code (3 letters)
2816
+ * Learning source: NLP, REVIEW_CENTER, or null for manual
2921
2817
  */
2922
- currency: string;
2818
+ learningSource?: 'NLP' | 'REVIEW_CENTER' | null;
2923
2819
  /**
2924
- * Opening balance as a non-negative Decimal string (e.g. "1000.00")
2820
+ * Whether auto-apply is enabled for this rule
2821
+ */
2822
+ autoApplyEnabled: boolean;
2823
+ /**
2824
+ * Number of confirmations for NLP-learned rules
2825
+ */
2826
+ confirmationCount: number;
2827
+ /**
2828
+ * Additional tags
2829
+ */
2830
+ additionalTags: Array<string>;
2831
+ /**
2832
+ * Additional metadata
2833
+ */
2834
+ additionalMetadata?: {
2835
+ [key: string]: string;
2836
+ };
2837
+ /**
2838
+ * Created timestamp
2839
+ */
2840
+ createdAt: string;
2841
+ /**
2842
+ * Updated timestamp
2843
+ */
2844
+ updatedAt: string;
2845
+ };
2846
+ /**
2847
+ * Learning source: NLP, REVIEW_CENTER, or null for manual
2848
+ */
2849
+ type learningSource = 'NLP' | 'REVIEW_CENTER';
2850
+ type TransactionRuleListResponseDto = {
2851
+ data: Array<TransactionRuleResponseDto>;
2852
+ /**
2853
+ * Total count of rules
2854
+ */
2855
+ total: number;
2856
+ /**
2857
+ * Results per page
2858
+ */
2859
+ limit: number;
2860
+ /**
2861
+ * Pagination offset
2862
+ */
2863
+ offset: number;
2864
+ };
2865
+ type ValidateRuleDto = {
2866
+ name: string;
2867
+ description?: string;
2868
+ narrationKeywords?: Array<unknown[]>;
2869
+ payeeKeywords?: Array<unknown[]>;
2870
+ categoryKeywords?: Array<unknown[]>;
2871
+ /**
2872
+ * Payment method keywords (e.g., HuaBei, YuEBao)
2873
+ */
2874
+ methodKeywords?: Array<unknown[]>;
2875
+ /**
2876
+ * Destination account for expenses/income (e.g., Expenses:Food:Coffee)
2877
+ */
2878
+ categoryAccount?: string;
2879
+ matchLogic: 'OR' | 'AND';
2880
+ /**
2881
+ * Minimum transaction amount (inclusive)
2882
+ */
2883
+ amountMin?: number;
2884
+ /**
2885
+ * Maximum transaction amount (inclusive)
2886
+ */
2887
+ amountMax?: number;
2888
+ priority: number;
2889
+ additionalTags?: Array<unknown[]>;
2890
+ additionalMetadata?: {
2891
+ [key: string]: unknown;
2892
+ };
2893
+ /**
2894
+ * If true, update existing rule with matching payeeKeywords[0] instead of creating new rule
2895
+ */
2896
+ upsertByPayee?: boolean;
2897
+ };
2898
+ type ValidateRuleResponseDto = {
2899
+ /**
2900
+ * Whether the rule configuration is valid
2901
+ */
2902
+ valid: boolean;
2903
+ /**
2904
+ * List of validation errors (empty if valid)
2905
+ */
2906
+ errors: Array<unknown[]>;
2907
+ /**
2908
+ * List of validation warnings (non-blocking issues)
2909
+ */
2910
+ warnings: Array<unknown[]>;
2911
+ };
2912
+ type BulkCreateRulesDto = {
2913
+ /**
2914
+ * Array of rules to import
2915
+ */
2916
+ rules: Array<unknown[]>;
2917
+ /**
2918
+ * Conflict handling strategy: skip (default) ignores duplicates, replace soft-deletes existing rule
2919
+ */
2920
+ conflictStrategy: 'replace' | 'skip';
2921
+ };
2922
+ /**
2923
+ * Conflict handling strategy: skip (default) ignores duplicates, replace soft-deletes existing rule
2924
+ */
2925
+ type conflictStrategy = 'replace' | 'skip';
2926
+ type BulkCreateRulesResponseDto = {
2927
+ /**
2928
+ * Number of successfully created rules
2929
+ */
2930
+ successCount: number;
2931
+ /**
2932
+ * Number of failed rules
2933
+ */
2934
+ failureCount: number;
2935
+ /**
2936
+ * Error details for failed rules
2937
+ */
2938
+ errors: Array<{
2939
+ index?: number;
2940
+ message?: string;
2941
+ }>;
2942
+ /**
2943
+ * IDs of successfully created rules
2944
+ */
2945
+ createdRuleIds: Array<string>;
2946
+ };
2947
+ type ExportRulesResponseDto = {
2948
+ /**
2949
+ * Export timestamp
2950
+ */
2951
+ exportedAt: string;
2952
+ /**
2953
+ * User ID
2954
+ */
2955
+ userId: string;
2956
+ /**
2957
+ * Number of exported rules
2958
+ */
2959
+ ruleCount: number;
2960
+ /**
2961
+ * Exported rules
2962
+ */
2963
+ rules: unknown[];
2964
+ };
2965
+ type RuleStatisticsResponseDto = {
2966
+ /**
2967
+ * Statistics time period
2968
+ */
2969
+ period: '7d' | '30d' | '90d';
2970
+ /**
2971
+ * Total number of rules
2972
+ */
2973
+ totalRules: number;
2974
+ /**
2975
+ * Number of rules with at least one match
2976
+ */
2977
+ rulesWithMatches: number;
2978
+ /**
2979
+ * Total number of matches across all rules
2980
+ */
2981
+ totalMatches: number;
2982
+ /**
2983
+ * Average confidence score across all matches
2984
+ */
2985
+ averageConfidence: number;
2986
+ /**
2987
+ * Per-rule statistics
2988
+ */
2989
+ ruleStats: Array<{
2990
+ ruleId?: string;
2991
+ ruleName?: string;
2992
+ matchCount?: number;
2993
+ averageConfidence?: number;
2994
+ }>;
2995
+ };
2996
+ /**
2997
+ * Statistics time period
2998
+ */
2999
+ type period = '7d' | '30d' | '90d';
3000
+ type UpdateTransactionRuleDto = {
3001
+ name?: string;
3002
+ description?: string;
3003
+ narrationKeywords?: Array<unknown[]>;
3004
+ payeeKeywords?: Array<unknown[]>;
3005
+ categoryKeywords?: Array<unknown[]>;
3006
+ /**
3007
+ * Payment method keywords (e.g., HuaBei, YuEBao)
3008
+ */
3009
+ methodKeywords?: Array<unknown[]>;
3010
+ /**
3011
+ * Destination account for expenses/income (e.g., Expenses:Food:Coffee)
3012
+ */
3013
+ categoryAccount?: string;
3014
+ matchLogic?: 'OR' | 'AND';
3015
+ /**
3016
+ * Minimum transaction amount (inclusive)
3017
+ */
3018
+ amountMin?: number;
3019
+ /**
3020
+ * Maximum transaction amount (inclusive)
3021
+ */
3022
+ amountMax?: number;
3023
+ priority?: number;
3024
+ /**
3025
+ * Enable or disable the rule
3026
+ */
3027
+ enabled?: boolean;
3028
+ additionalTags?: Array<unknown[]>;
3029
+ additionalMetadata?: {
3030
+ [key: string]: unknown;
3031
+ };
3032
+ };
3033
+ type TestRuleDto = {
3034
+ narration: string;
3035
+ payee?: string;
3036
+ categoryAccount?: string;
3037
+ amount?: number;
3038
+ currency?: string;
3039
+ };
3040
+ type TestRuleResponseDto = {
3041
+ /**
3042
+ * Rule ID that was tested
3043
+ */
3044
+ ruleId: string;
3045
+ /**
3046
+ * Whether the rule matched the test data
3047
+ */
3048
+ matches: boolean;
3049
+ /**
3050
+ * Match confidence score (0-1)
3051
+ */
3052
+ confidence: number;
3053
+ /**
3054
+ * Details of which fields matched
3055
+ */
3056
+ matchDetails: {
3057
+ [key: string]: unknown;
3058
+ };
3059
+ };
3060
+ type CategoryCatalogEntryDto = {
3061
+ /**
3062
+ * Category slug (single source-of-truth)
3063
+ */
3064
+ slug: string;
3065
+ /**
3066
+ * Display scenario group (maps to frontend picker _scenario)
3067
+ */
3068
+ scenario: 'expense' | 'income' | 'investment' | 'banking' | 'transfer' | 'payment';
3069
+ /**
3070
+ * Lucide icon name
3071
+ */
3072
+ icon: string;
3073
+ /**
3074
+ * Applicable regions ('*' = all, 'cn' = CN-only)
3075
+ */
3076
+ regions: Array<string>;
3077
+ };
3078
+ /**
3079
+ * Display scenario group (maps to frontend picker _scenario)
3080
+ */
3081
+ type scenario = 'expense' | 'income' | 'investment' | 'banking' | 'transfer' | 'payment';
3082
+ type CategoryCatalogListResponseDto = {
3083
+ /**
3084
+ * Category entries (region-scoped, query-filtered)
3085
+ */
3086
+ items: Array<CategoryCatalogEntryDto>;
3087
+ /**
3088
+ * Total category entries for the region (before query filtering)
3089
+ */
3090
+ total: number;
3091
+ /**
3092
+ * Region code
3093
+ */
3094
+ region: string;
3095
+ };
3096
+ type CreateBeanEventDto = {
3097
+ /**
3098
+ * Life event date (ISO 8601)
3099
+ */
3100
+ date: string;
3101
+ /**
3102
+ * Life event type (e.g., "employer", "location", "marital-status") — user-defined, no enum constraint at engine layer
3103
+ */
3104
+ type: string;
3105
+ /**
3106
+ * Life event description. Empty string is a VALID value (distinct from absence).
3107
+ */
3108
+ description: string;
3109
+ /**
3110
+ * Product-side metadata (lives in BeanEvent.meta JSON, never in engine Event fields)
3111
+ */
3112
+ meta?: {
3113
+ [key: string]: unknown;
3114
+ };
3115
+ };
3116
+ type EventResponseDto = {
3117
+ /**
3118
+ * Unique identifier
3119
+ */
3120
+ id: string;
3121
+ /**
3122
+ * User ID (owner of the life event)
3123
+ */
3124
+ userId: string;
3125
+ /**
3126
+ * Life event date (ISO 8601 format)
3127
+ */
3128
+ date: string;
3129
+ /**
3130
+ * Life event type (user-defined, e.g., "employer", "location")
3131
+ */
3132
+ type: string;
3133
+ /**
3134
+ * Life event description. May be an empty string (a valid value distinct from absence).
3135
+ */
3136
+ description: string;
3137
+ /**
3138
+ * Product-side metadata (free-form JSON)
3139
+ */
3140
+ meta: {
3141
+ [key: string]: unknown;
3142
+ };
3143
+ /**
3144
+ * Creation timestamp
3145
+ */
3146
+ createdAt: string;
3147
+ /**
3148
+ * Last update timestamp. Also emitted as the ETag response header for If-Match optimistic concurrency.
3149
+ */
3150
+ updatedAt: string;
3151
+ };
3152
+ type EventListResponseDto = {
3153
+ /**
3154
+ * List of life events
3155
+ */
3156
+ items: Array<EventResponseDto>;
3157
+ /**
3158
+ * Total number of life events matching the query
3159
+ */
3160
+ total: number;
3161
+ };
3162
+ type UpdateBeanEventDto = {
3163
+ /**
3164
+ * Life event date (ISO 8601)
3165
+ */
3166
+ date?: string;
3167
+ /**
3168
+ * Life event type (user-defined)
3169
+ */
3170
+ type?: string;
3171
+ /**
3172
+ * Life event description. Empty string is a VALID value (distinct from absence).
3173
+ */
3174
+ description?: string;
3175
+ /**
3176
+ * Product-side metadata (free-form JSON)
3177
+ */
3178
+ meta?: {
3179
+ [key: string]: unknown;
3180
+ };
3181
+ };
3182
+ type OnboardingAccountDto = {
3183
+ /**
3184
+ * Account path (Assets/Liabilities only; format validated by the account service)
3185
+ */
3186
+ path: string;
3187
+ /**
3188
+ * ISO 4217 currency code (3 letters)
3189
+ */
3190
+ currency: string;
3191
+ /**
3192
+ * Opening balance as a non-negative Decimal string (e.g. "1000.00")
2925
3193
  */
2926
3194
  openingBalance?: string;
2927
3195
  /**
@@ -3309,13 +3577,13 @@ type ProviderSyncConfigDto = {
3309
3577
  */
3310
3578
  defaultCurrency: string;
3311
3579
  /**
3312
- * Default expense account for the second posting
3580
+ * Default expense account for the second posting. Omit when no real default exists; the pipeline routes to Review via the Uncategorized sentinel (#618).
3313
3581
  */
3314
- defaultExpenseAccount: string;
3582
+ defaultExpenseAccount?: string;
3315
3583
  /**
3316
- * Default income account for the second posting
3584
+ * Default income account for the second posting. Omit when no real default exists; the pipeline routes to Review via the Uncategorized sentinel (#618).
3317
3585
  */
3318
- defaultIncomeAccount: string;
3586
+ defaultIncomeAccount?: string;
3319
3587
  /**
3320
3588
  * Filter pending transactions
3321
3589
  */
@@ -3363,60 +3631,134 @@ type ProviderSyncResponseDto = {
3363
3631
  /**
3364
3632
  * IDs of successfully imported transactions
3365
3633
  */
3366
- importedTransactionIds?: Array<string>;
3634
+ importedTransactionIds?: Array<string>;
3635
+ /**
3636
+ * IDs of review items created for branched transactions
3637
+ */
3638
+ reviewItemIds?: Array<string>;
3639
+ };
3640
+ type SupportedProvidersResponseDto = {
3641
+ /**
3642
+ * List of supported provider names
3643
+ */
3644
+ providers: Array<string>;
3645
+ };
3646
+ type CreateExternalAccountLinkDto = {
3647
+ /**
3648
+ * Open Banking provider (whitelist)
3649
+ */
3650
+ provider: 'plaid' | 'teller' | 'truelayer' | 'gocardless' | 'simplefin' | 'yodlee' | 'beancount-direct' | 'parsed-bill';
3651
+ /**
3652
+ * External account ID from the provider
3653
+ */
3654
+ externalAccountId: string;
3655
+ /**
3656
+ * Target BeanAccount ID (must belong to the JWT user)
3657
+ */
3658
+ beanAccountId: string;
3659
+ };
3660
+ /**
3661
+ * Open Banking provider (whitelist)
3662
+ */
3663
+ type provider = 'plaid' | 'teller' | 'truelayer' | 'gocardless' | 'simplefin' | 'yodlee' | 'beancount-direct' | 'parsed-bill';
3664
+ type ExternalAccountLinkResponseDto = {
3665
+ id: string;
3666
+ provider: string;
3667
+ externalAccountId: string;
3668
+ beanAccountId: string;
3669
+ isActive: boolean;
3670
+ createdAt: string;
3671
+ updatedAt: string;
3672
+ };
3673
+ type ExternalAccountLinkListResponseDto = {
3674
+ items: Array<ExternalAccountLinkResponseDto>;
3675
+ total: number;
3676
+ /**
3677
+ * Filter by provider (query param)
3678
+ */
3679
+ provider?: string;
3680
+ };
3681
+ type ParserTelemetryReportDto = unknown;
3682
+ type UncoveredFormatMissDto = unknown;
3683
+ type ClientParsedDataDto = {
3684
+ /**
3685
+ * Transaction amount
3686
+ */
3687
+ amount?: number;
3688
+ /**
3689
+ * Currency code
3690
+ */
3691
+ currency?: string;
3692
+ /**
3693
+ * Transaction date (ISO 8601)
3694
+ */
3695
+ date?: string;
3696
+ /**
3697
+ * Payee/merchant name
3698
+ */
3699
+ payee?: string;
3700
+ /**
3701
+ * Transaction narration
3702
+ */
3703
+ narration?: string;
3704
+ /**
3705
+ * Category slug
3706
+ */
3707
+ category?: string;
3708
+ /**
3709
+ * Income type
3710
+ */
3711
+ incomeType?: string;
3712
+ /**
3713
+ * Income source
3714
+ */
3715
+ incomeSource?: string;
3716
+ /**
3717
+ * Security symbol code (e.g., 600519, AAPL)
3718
+ */
3719
+ symbol?: string;
3720
+ /**
3721
+ * Quantity of shares/units
3722
+ */
3723
+ quantity?: number;
3367
3724
  /**
3368
- * IDs of review items created for branched transactions
3725
+ * Unit price per share/unit
3369
3726
  */
3370
- reviewItemIds?: Array<string>;
3371
- };
3372
- type SupportedProvidersResponseDto = {
3727
+ price?: number;
3373
3728
  /**
3374
- * List of supported provider names
3729
+ * Investment action
3375
3730
  */
3376
- providers: Array<string>;
3377
- };
3378
- type CreateExternalAccountLinkDto = {
3731
+ investmentAction?: 'buy' | 'sell';
3379
3732
  /**
3380
- * Open Banking provider (whitelist)
3733
+ * Payment source: asset (default) or liability (credit card)
3381
3734
  */
3382
- provider: 'plaid' | 'teller' | 'truelayer' | 'gocardless' | 'simplefin' | 'yodlee' | 'beancount-direct' | 'parsed-bill';
3735
+ paymentSource?: 'asset' | 'liability';
3383
3736
  /**
3384
- * External account ID from the provider
3737
+ * Liability account hint (CreditCard/Huabei/Baitiao)
3385
3738
  */
3386
- externalAccountId: string;
3739
+ liabilityHint?: string;
3387
3740
  /**
3388
- * Target BeanAccount ID (must belong to the JWT user)
3741
+ * Display-only warning from the prior response; accepted but ignored.
3389
3742
  */
3390
- beanAccountId: string;
3743
+ warning?: string;
3391
3744
  };
3392
3745
  /**
3393
- * Open Banking provider (whitelist)
3746
+ * Investment action
3394
3747
  */
3395
- type provider = 'plaid' | 'teller' | 'truelayer' | 'gocardless' | 'simplefin' | 'yodlee' | 'beancount-direct' | 'parsed-bill';
3396
- type ExternalAccountLinkResponseDto = {
3397
- id: string;
3398
- provider: string;
3399
- externalAccountId: string;
3400
- beanAccountId: string;
3401
- isActive: boolean;
3402
- createdAt: string;
3403
- updatedAt: string;
3404
- };
3405
- type ExternalAccountLinkListResponseDto = {
3406
- items: Array<ExternalAccountLinkResponseDto>;
3407
- total: number;
3748
+ type investmentAction = 'buy' | 'sell';
3749
+ /**
3750
+ * Payment source: asset (default) or liability (credit card)
3751
+ */
3752
+ type paymentSource = 'asset' | 'liability';
3753
+ type ProcessNlpDto = {
3408
3754
  /**
3409
- * Filter by provider (query param)
3755
+ * Natural language text describing a transaction. Optional when `confirm` is true (structured confirm); otherwise required.
3410
3756
  */
3411
- provider?: string;
3412
- };
3413
- type ParserTelemetryReportDto = unknown;
3414
- type UncoveredFormatMissDto = unknown;
3415
- type ProcessNlpDto = {
3757
+ message?: string;
3416
3758
  /**
3417
- * Natural language text describing a transaction (Chinese)
3759
+ * Structured confirm signal bypasses NL confirm-word matching when true. Send parsedData field edits alongside. The NL word-list path is the fallback.
3418
3760
  */
3419
- message: string;
3761
+ confirm?: boolean;
3420
3762
  /**
3421
3763
  * Session ID for multi-turn conversation (auto-generated if not provided)
3422
3764
  */
@@ -3424,9 +3766,15 @@ type ProcessNlpDto = {
3424
3766
  /**
3425
3767
  * Parsed data from previous NLP response for session recovery. Send back the parsedData received in confirm_payee/confirm responses.
3426
3768
  */
3427
- parsedData?: {
3428
- [key: string]: unknown;
3429
- };
3769
+ parsedData?: ClientParsedDataDto;
3770
+ /**
3771
+ * 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.
3772
+ */
3773
+ selectedRuleId?: string;
3774
+ /**
3775
+ * 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.
3776
+ */
3777
+ selectedAccount?: string;
3430
3778
  };
3431
3779
  type NlpTransactionInfoDto = {
3432
3780
  /**
@@ -3520,14 +3868,6 @@ type NlpParsedDataDto = {
3520
3868
  */
3521
3869
  warning?: string;
3522
3870
  };
3523
- /**
3524
- * Investment action
3525
- */
3526
- type investmentAction = 'buy' | 'sell';
3527
- /**
3528
- * Payment source: asset (default) or liability (credit card)
3529
- */
3530
- type paymentSource = 'asset' | 'liability';
3531
3871
  type NlpSourceTransactionDto = {
3532
3872
  /**
3533
3873
  * Transaction date (ISO format)
@@ -3660,9 +4000,9 @@ type NlpAccountConfirmationDataDto = {
3660
4000
  */
3661
4001
  invalidAccount: string;
3662
4002
  /**
3663
- * Suggested replacement account
4003
+ * Suggested replacement account (omitted when no clear candidate)
3664
4004
  */
3665
- suggestedAccount: string;
4005
+ suggestedAccount?: string;
3666
4006
  /**
3667
4007
  * Similar accounts for user selection
3668
4008
  */
@@ -3784,7 +4124,7 @@ type NlpSuggestedAccountDto = {
3784
4124
  */
3785
4125
  account: string;
3786
4126
  /**
3787
- * Confidence score for this suggestion (0-1)
4127
+ * Confidence score for this suggestion (0-1). Present = predicted (confirm/confirm_rule/confirm_account); omitted = actual persisted account (created). (#586)
3788
4128
  */
3789
4129
  confidence?: number;
3790
4130
  };
@@ -3800,21 +4140,21 @@ type NlpSuggestedAccountsDto = {
3800
4140
  };
3801
4141
  type NlpDefaultAccountsDto = {
3802
4142
  /**
3803
- * Default asset account
4143
+ * Default OPEN asset account (MRU when multiple), or null when none/ambiguous
3804
4144
  */
3805
- asset: string;
4145
+ asset: string | null;
3806
4146
  /**
3807
- * Default expense account
4147
+ * Default OPEN expense account (MRU when multiple), or null when none/ambiguous
3808
4148
  */
3809
- expense: string;
4149
+ expense: string | null;
3810
4150
  /**
3811
- * Default income account
4151
+ * Default OPEN income account (MRU when multiple), or null when none/ambiguous
3812
4152
  */
3813
- income: string;
4153
+ income: string | null;
3814
4154
  /**
3815
- * Default liability account
4155
+ * Default OPEN liability account (MRU when multiple), or null when none/ambiguous
3816
4156
  */
3817
- liability: string;
4157
+ liability: string | null;
3818
4158
  };
3819
4159
  type NlpResponseDto = {
3820
4160
  /**
@@ -3824,7 +4164,7 @@ type NlpResponseDto = {
3824
4164
  /**
3825
4165
  * Action taken or requested
3826
4166
  */
3827
- action: 'created' | 'ask' | 'confirm' | 'confirm_duplicate' | 'confirm_rule' | 'confirm_account' | 'confirm_payee' | 'cancel';
4167
+ action: 'created' | 'ask' | 'confirm' | 'confirm_duplicate' | 'confirm_rule' | 'confirm_account' | 'confirm_payee' | 'cancel' | 'aborted';
3828
4168
  /**
3829
4169
  * Transaction intent detected by EntityRouter (v6.0: 5 core intents). Frontend uses this to render scenario-specific form fields.
3830
4170
  */
@@ -3832,7 +4172,7 @@ type NlpResponseDto = {
3832
4172
  /**
3833
4173
  * Asset sub-type (only present when intent is "asset"). Determines which asset-related form to render.
3834
4174
  */
3835
- assetSubType?: 'transfer' | 'banking' | 'investment';
4175
+ assetSubType?: 'transfer' | 'banking' | 'investment' | 'lend' | 'lend_collect';
3836
4176
  /**
3837
4177
  * Liability sub-type (only present when intent is "liability"). borrow: borrowing money (Liabilities → Assets), repay: repaying debt (Assets → Liabilities).
3838
4178
  */
@@ -3913,11 +4253,11 @@ type NlpResponseDto = {
3913
4253
  */
3914
4254
  recurringSuggestion?: RecurringSuggestionDto;
3915
4255
  /**
3916
- * Suggested accounts for this transaction. Contains recommended source and destination accounts based on the detected intent and rules.
4256
+ * 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
4257
  */
3918
4258
  suggestedAccounts?: NlpSuggestedAccountsDto;
3919
4259
  /**
3920
- * Default accounts for the user/region. These are fallback accounts used when no specific suggestion is available.
4260
+ * Default fallback accounts for the user/region (#586). v1 returns universal constants; per-user personalization is planned.
3921
4261
  */
3922
4262
  defaultAccounts?: NlpDefaultAccountsDto;
3923
4263
  };
@@ -3928,7 +4268,7 @@ type status4 = 'success' | 'pending' | 'error';
3928
4268
  /**
3929
4269
  * Action taken or requested
3930
4270
  */
3931
- type action2 = 'created' | 'ask' | 'confirm' | 'confirm_duplicate' | 'confirm_rule' | 'confirm_account' | 'confirm_payee' | 'cancel';
4271
+ type action2 = 'created' | 'ask' | 'confirm' | 'confirm_duplicate' | 'confirm_rule' | 'confirm_account' | 'confirm_payee' | 'cancel' | 'aborted';
3932
4272
  /**
3933
4273
  * Transaction intent detected by EntityRouter (v6.0: 5 core intents). Frontend uses this to render scenario-specific form fields.
3934
4274
  */
@@ -3936,7 +4276,7 @@ type intent = 'expense' | 'asset' | 'income' | 'liability' | 'equity';
3936
4276
  /**
3937
4277
  * Asset sub-type (only present when intent is "asset"). Determines which asset-related form to render.
3938
4278
  */
3939
- type assetSubType = 'transfer' | 'banking' | 'investment';
4279
+ type assetSubType = 'transfer' | 'banking' | 'investment' | 'lend' | 'lend_collect';
3940
4280
  /**
3941
4281
  * Liability sub-type (only present when intent is "liability"). borrow: borrowing money (Liabilities → Assets), repay: repaying debt (Assets → Liabilities).
3942
4282
  */
@@ -3945,6 +4285,116 @@ type liabilitySubType = 'borrow' | 'repay';
3945
4285
  * Equity sub-type (only present when intent is "equity"). opening: account opening balance (Equity → Assets), adjustment: balance correction.
3946
4286
  */
3947
4287
  type equitySubType = 'opening' | 'adjustment';
4288
+ type PlatformListItemDto = {
4289
+ /**
4290
+ * Global platform ID
4291
+ */
4292
+ id: string;
4293
+ /**
4294
+ * Platform name
4295
+ */
4296
+ name: string;
4297
+ /**
4298
+ * Platform URL
4299
+ */
4300
+ url: string;
4301
+ /**
4302
+ * Platform type
4303
+ */
4304
+ type: 'BANK' | 'BROKERAGE' | 'CRYPTO_EXCHANGE' | 'PAYMENT' | 'INVESTMENT' | 'INSURANCE' | 'OTHER';
4305
+ /**
4306
+ * Canonical identifier in ACCOUNT_RE format (e.g., "icbc")
4307
+ */
4308
+ canonical: string;
4309
+ /**
4310
+ * Suggested path segment — canonical PascalCased per hyphen-part, hyphens preserved (e.g. "Apple-Pay")
4311
+ */
4312
+ suggestedSegment: string;
4313
+ /**
4314
+ * Logo URL
4315
+ */
4316
+ logoUrl: string | null;
4317
+ /**
4318
+ * ISO 3166-1 alpha-2 (UPPERCASE); null = global platform
4319
+ */
4320
+ countryCode: string | null;
4321
+ /**
4322
+ * Region-aware category (institution vocab, e.g. DigitalWallet/Bank). null = no region-aware suggestion; fall back to type.
4323
+ */
4324
+ category: string | null;
4325
+ /**
4326
+ * Whether user has accounts using this platform
4327
+ */
4328
+ isBound: boolean;
4329
+ };
4330
+ /**
4331
+ * Platform type
4332
+ */
4333
+ type type3 = 'BANK' | 'BROKERAGE' | 'CRYPTO_EXCHANGE' | 'PAYMENT' | 'INVESTMENT' | 'INSURANCE' | 'OTHER';
4334
+ type PlatformMatchResultDto = {
4335
+ /**
4336
+ * Global platform ID
4337
+ */
4338
+ id: string;
4339
+ /**
4340
+ * Platform name (e.g., "ICBC")
4341
+ */
4342
+ name: string;
4343
+ /**
4344
+ * Canonical identifier in ACCOUNT_RE format (e.g., "icbc")
4345
+ */
4346
+ canonical: string;
4347
+ /**
4348
+ * Platform type
4349
+ */
4350
+ type: 'BANK' | 'BROKERAGE' | 'CRYPTO_EXCHANGE' | 'PAYMENT' | 'INVESTMENT' | 'INSURANCE' | 'OTHER';
4351
+ /**
4352
+ * Suggested path segment — canonical PascalCased per hyphen-part, hyphens preserved (e.g. "Apple-Pay")
4353
+ */
4354
+ suggestedSegment: string;
4355
+ /**
4356
+ * Logo URL
4357
+ */
4358
+ logoUrl: string | null;
4359
+ /**
4360
+ * ISO 3166-1 alpha-2 (UPPERCASE); null = global platform
4361
+ */
4362
+ countryCode: string | null;
4363
+ /**
4364
+ * Region-aware category (institution vocab, e.g. DigitalWallet/Bank). null = no region-aware suggestion; fall back to type.
4365
+ */
4366
+ category: string | null;
4367
+ /**
4368
+ * How this row matched: 'exact' > 'prefix' > 'substring'
4369
+ */
4370
+ matchType: 'exact' | 'prefix' | 'substring';
4371
+ };
4372
+ /**
4373
+ * How this row matched: 'exact' > 'prefix' > 'substring'
4374
+ */
4375
+ type matchType = 'exact' | 'prefix' | 'substring';
4376
+ type PlatformMatchResponseDto = {
4377
+ /**
4378
+ * Ranked matches, best tier first (at most 10 rows)
4379
+ */
4380
+ platforms: Array<PlatformMatchResultDto>;
4381
+ /**
4382
+ * Overall match quality — top row's tier, or 'none' when no hits
4383
+ */
4384
+ matchType: 'none' | 'exact' | 'prefix' | 'substring';
4385
+ /**
4386
+ * Total matches before LIMIT (truncation transparency)
4387
+ */
4388
+ total: number;
4389
+ /**
4390
+ * true when total > platforms.length (more matches exist)
4391
+ */
4392
+ hasMore: boolean;
4393
+ };
4394
+ /**
4395
+ * Overall match quality — top row's tier, or 'none' when no hits
4396
+ */
4397
+ type matchType2 = 'none' | 'exact' | 'prefix' | 'substring';
3948
4398
  type CreatePlatformDto = {
3949
4399
  /**
3950
4400
  * Platform name
@@ -3975,10 +4425,6 @@ type CreatePlatformDto = {
3975
4425
  */
3976
4426
  isActive?: boolean;
3977
4427
  };
3978
- /**
3979
- * Platform type
3980
- */
3981
- type type3 = 'BANK' | 'BROKERAGE' | 'CRYPTO_EXCHANGE' | 'PAYMENT' | 'INVESTMENT' | 'INSURANCE' | 'OTHER';
3982
4428
  type UpdatePlatformDto = {
3983
4429
  /**
3984
4430
  * Platform name
@@ -4263,10 +4709,6 @@ type AssetClassGroupDto = {
4263
4709
  */
4264
4710
  convertedBalance?: string;
4265
4711
  };
4266
- /**
4267
- * Asset class name
4268
- */
4269
- type assetClass = 'LIQUIDITY' | 'EQUITY' | 'FIXED_INCOME' | 'PRECIOUS_METALS' | 'COMMODITY' | 'INSURANCE' | 'ALTERNATIVE_INVESTMENT' | 'PERSONAL_ASSETS' | 'LIABILITY' | 'REAL_ESTATE' | 'INDEX';
4270
4712
  type AssetClassSummaryDto = {
4271
4713
  /**
4272
4714
  * Total number of accounts
@@ -4595,234 +5037,204 @@ type HoldingPnlRowDto = {
4595
5037
  [key: string]: unknown;
4596
5038
  } | null;
4597
5039
  /**
4598
- * Historical FX rate applied to cost basis
4599
- */
4600
- costFxRate?: FxRateDto | null;
4601
- /**
4602
- * FX rate applied to market value
4603
- */
4604
- marketFxRate?: FxRateDto | null;
4605
- /**
4606
- * Share of invested assets % (Decimal string); only for invested chartTokens
4607
- */
4608
- pctOfInvestedAssets?: {
4609
- [key: string]: unknown;
4610
- } | null;
4611
- /**
4612
- * 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
4613
- */
4614
- realizedPnl?: MonetaryDto | null;
4615
- };
4616
- /**
4617
- * Chart segment token (libs/common resolver)
4618
- */
4619
- type chartToken = 'equity' | 'fund' | 'bond' | 'cash' | 'other';
4620
- type HoldingPnlWarningDto = {
4621
- /**
4622
- * Warning type
4623
- */
4624
- type: 'MISSING_COST_FX_RATE' | 'MISSING_MARKET_FX_RATE' | 'MISSING_SALE_PRICE' | 'MISSING_REALIZED_FX_RATE' | 'OVERSOLD_LOTS' | 'NO_PRICE' | 'MIXED_COST_CURRENCY';
4625
- symbol?: {
4626
- [key: string]: unknown;
4627
- } | null;
4628
- accountId?: {
4629
- [key: string]: unknown;
4630
- } | null;
4631
- currency?: {
4632
- [key: string]: unknown;
4633
- } | null;
4634
- };
4635
- /**
4636
- * Warning type
4637
- */
4638
- type type4 = 'MISSING_COST_FX_RATE' | 'MISSING_MARKET_FX_RATE' | 'MISSING_SALE_PRICE' | 'MISSING_REALIZED_FX_RATE' | 'OVERSOLD_LOTS' | 'NO_PRICE' | 'MIXED_COST_CURRENCY';
4639
- type HoldingPnlResponseDto = {
4640
- asOfDate: string;
4641
- baseCurrency: string;
4642
- /**
4643
- * Realized-P&L lot-matching method (FIFO or average). Unrealized cost basis remains average regardless of this value (#473).
4644
- */
4645
- method: 'average' | 'FIFO';
4646
- rows: Array<HoldingPnlRowDto>;
4647
- warnings: Array<HoldingPnlWarningDto>;
4648
- };
4649
- /**
4650
- * Realized-P&L lot-matching method (FIFO or average). Unrealized cost basis remains average regardless of this value (#473).
4651
- */
4652
- type method = 'average' | 'FIFO';
4653
- type CurrencyBalanceDto = {
4654
- /**
4655
- * ISO 4217 currency code
4656
- */
4657
- currency: string;
4658
- /**
4659
- * Balance amount
4660
- */
4661
- balance: string;
4662
- };
4663
- type TimeSeriesPointDto = {
4664
- /**
4665
- * Date in YYYY-MM-DD format
4666
- */
4667
- date: string;
4668
- /**
4669
- * Value at this date (in base currency)
4670
- */
4671
- value: string;
4672
- /**
4673
- * Change from previous point
4674
- */
4675
- change?: {
4676
- [key: string]: unknown;
4677
- };
4678
- /**
4679
- * Total assets at this date (in base currency)
4680
- */
4681
- assets?: string;
4682
- /**
4683
- * Total liabilities at this date (in base currency)
4684
- */
4685
- liabilities?: string;
4686
- /**
4687
- * Multi-currency breakdown for this point
4688
- */
4689
- byCurrency?: Array<CurrencyBalanceDto>;
4690
- };
4691
- type TrendSummaryDto = {
4692
- /**
4693
- * Value at start of period
4694
- */
4695
- startValue: string;
4696
- /**
4697
- * Value at end of period
4698
- */
4699
- endValue: string;
4700
- /**
4701
- * Total change over period
5040
+ * Historical FX rate applied to cost basis
4702
5041
  */
4703
- totalChange: string;
5042
+ costFxRate?: FxRateDto | null;
4704
5043
  /**
4705
- * Total change percentage
5044
+ * FX rate applied to market value
4706
5045
  */
4707
- totalChangePercentage: string;
4708
- };
4709
- type MultiCurrencyPointDto = {
5046
+ marketFxRate?: FxRateDto | null;
4710
5047
  /**
4711
- * Date in YYYY-MM-DD format
5048
+ * Share of invested assets % (Decimal string); only for invested chartTokens
4712
5049
  */
4713
- date: string;
5050
+ pctOfInvestedAssets?: {
5051
+ [key: string]: unknown;
5052
+ } | null;
4714
5053
  /**
4715
- * Balances by currency
5054
+ * 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
4716
5055
  */
4717
- byCurrency: Array<CurrencyBalanceDto>;
5056
+ realizedPnl?: MonetaryDto | null;
4718
5057
  };
4719
- type PortfolioTrendsResponseDto = {
5058
+ /**
5059
+ * Chart segment token (libs/common resolver)
5060
+ */
5061
+ type chartToken = 'equity' | 'fund' | 'bond' | 'cash' | 'other';
5062
+ type HoldingPnlWarningDto = {
4720
5063
  /**
4721
- * Time series data points
5064
+ * Warning type
4722
5065
  */
4723
- series: Array<TimeSeriesPointDto>;
5066
+ type: 'MISSING_COST_FX_RATE' | 'MISSING_MARKET_FX_RATE' | 'MISSING_SALE_PRICE' | 'MISSING_REALIZED_FX_RATE' | 'OVERSOLD_LOTS' | 'NO_PRICE' | 'MIXED_COST_CURRENCY';
5067
+ symbol?: {
5068
+ [key: string]: unknown;
5069
+ } | null;
5070
+ accountId?: {
5071
+ [key: string]: unknown;
5072
+ } | null;
5073
+ currency?: {
5074
+ [key: string]: unknown;
5075
+ } | null;
5076
+ };
5077
+ /**
5078
+ * Warning type
5079
+ */
5080
+ type type4 = 'MISSING_COST_FX_RATE' | 'MISSING_MARKET_FX_RATE' | 'MISSING_SALE_PRICE' | 'MISSING_REALIZED_FX_RATE' | 'OVERSOLD_LOTS' | 'NO_PRICE' | 'MIXED_COST_CURRENCY';
5081
+ type HoldingPnlResponseDto = {
5082
+ asOfDate: string;
5083
+ baseCurrency: string;
4724
5084
  /**
4725
- * Period summary
5085
+ * Realized-P&L lot-matching method (FIFO or average). Unrealized cost basis remains average regardless of this value (#473).
4726
5086
  */
4727
- summary: TrendSummaryDto;
5087
+ method: 'average' | 'FIFO';
5088
+ rows: Array<HoldingPnlRowDto>;
5089
+ warnings: Array<HoldingPnlWarningDto>;
5090
+ };
5091
+ /**
5092
+ * Realized-P&L lot-matching method (FIFO or average). Unrealized cost basis remains average regardless of this value (#473).
5093
+ */
5094
+ type method = 'average' | 'FIFO';
5095
+ type AnonymousLoginDto = {
4728
5096
  /**
4729
- * Period requested
5097
+ * Access token for anonymous login
4730
5098
  */
4731
- period: string;
5099
+ accessToken: string;
5100
+ };
5101
+ type AnonymousLoginResponseDto = {
4732
5102
  /**
4733
- * Data granularity
5103
+ * JWT auth token
4734
5104
  */
4735
- granularity: string;
5105
+ authToken: string;
5106
+ };
5107
+ type SymbolSearchResultDto = {
5108
+ symbol: string;
5109
+ name?: {
5110
+ [key: string]: unknown;
5111
+ } | null;
5112
+ exchange?: {
5113
+ [key: string]: unknown;
5114
+ } | null;
4736
5115
  /**
4737
- * Base currency for converted values
5116
+ * OpenBB asset_type (e.g. stock, etf)
4738
5117
  */
4739
- currency: string;
5118
+ assetType?: {
5119
+ [key: string]: unknown;
5120
+ } | null;
4740
5121
  /**
4741
- * Multi-currency time series (each point has currency breakdown)
5122
+ * IGN asset class (region.types.ts ASSET_CLASSES)
4742
5123
  */
4743
- byCurrency?: Array<MultiCurrencyPointDto>;
5124
+ assetClass?: {
5125
+ [key: string]: unknown;
5126
+ } | null;
4744
5127
  /**
4745
- * Exchange rate warnings
5128
+ * IGN asset sub-class (region.types.ts ASSET_SUB_CLASSES)
4746
5129
  */
4747
- warnings?: Array<ExchangeRateWarningDto>;
4748
- };
4749
- type CashFlowPointDto = {
5130
+ assetSubClass?: {
5131
+ [key: string]: unknown;
5132
+ } | null;
4750
5133
  /**
4751
- * Month key (YYYY-MM)
5134
+ * Trading currency (extra_data or inferred from exchange)
4752
5135
  */
4753
- month: string;
5136
+ currency?: {
5137
+ [key: string]: unknown;
5138
+ } | null;
5139
+ };
5140
+ type SymbolQuoteDto = {
5141
+ symbol?: string;
5142
+ name?: {
5143
+ [key: string]: unknown;
5144
+ } | null;
5145
+ exchange?: {
5146
+ [key: string]: unknown;
5147
+ } | null;
4754
5148
  /**
4755
- * Income in base currency (absolute, converted)
5149
+ * OpenBB asset_type
4756
5150
  */
4757
- income: string;
5151
+ assetType?: {
5152
+ [key: string]: unknown;
5153
+ } | null;
4758
5154
  /**
4759
- * Expense in base currency (absolute, converted)
5155
+ * IGN asset class
4760
5156
  */
4761
- expense: string;
5157
+ assetClass?: {
5158
+ [key: string]: unknown;
5159
+ } | null;
4762
5160
  /**
4763
- * netSavings = income − expense (savings positive)
5161
+ * IGN asset sub-class
4764
5162
  */
4765
- netSavings: string;
4766
- };
4767
- type CashFlowTrendSummaryDto = {
5163
+ assetSubClass?: {
5164
+ [key: string]: unknown;
5165
+ } | null;
4768
5166
  /**
4769
- * Total income across the period
5167
+ * Trading currency (extra_data or inferred from exchange)
4770
5168
  */
4771
- totalIncome: string;
5169
+ currency?: {
5170
+ [key: string]: unknown;
5171
+ } | null;
4772
5172
  /**
4773
- * Total expense across the period
5173
+ * Latest price (Decimal string)
4774
5174
  */
4775
- totalExpense: string;
5175
+ price?: {
5176
+ [key: string]: unknown;
5177
+ } | null;
4776
5178
  /**
4777
- * income expense across the period
5179
+ * Date the price was observed (ISO yyyy-MM-dd)
4778
5180
  */
4779
- totalNetSavings: string;
5181
+ priceDate?: {
5182
+ [key: string]: unknown;
5183
+ } | null;
4780
5184
  /**
4781
- * totalNetSavings divided by the window length (N months, incl. zero-filled)
5185
+ * 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.
4782
5186
  */
4783
- averageMonthlyNetSavings: string;
4784
- };
4785
- type CashFlowTrendsResponseDto = {
5187
+ changePercent?: {
5188
+ [key: string]: unknown;
5189
+ } | null;
4786
5190
  /**
4787
- * Monthly cash-flow series (fixed N-month window, zero-filled)
5191
+ * Previous close (Decimal string)
4788
5192
  */
4789
- series: Array<CashFlowPointDto>;
5193
+ prevClose?: {
5194
+ [key: string]: unknown;
5195
+ } | null;
4790
5196
  /**
4791
- * Period totals
5197
+ * Day open (Decimal string)
4792
5198
  */
4793
- summary: CashFlowTrendSummaryDto;
5199
+ open?: {
5200
+ [key: string]: unknown;
5201
+ } | null;
4794
5202
  /**
4795
- * Period requested
5203
+ * Day high (Decimal string)
4796
5204
  */
4797
- period: string;
5205
+ high?: {
5206
+ [key: string]: unknown;
5207
+ } | null;
4798
5208
  /**
4799
- * Data granularity (v1 returns month buckets)
5209
+ * Day low (Decimal string)
4800
5210
  */
4801
- granularity: string;
5211
+ low?: {
5212
+ [key: string]: unknown;
5213
+ } | null;
4802
5214
  /**
4803
- * Base currency for converted values
5215
+ * Day volume (Decimal string)
4804
5216
  */
4805
- currency: string;
5217
+ volume?: {
5218
+ [key: string]: unknown;
5219
+ } | null;
4806
5220
  /**
4807
- * Exchange rate warnings (e.g. missing rate for a currency)
5221
+ * 52-week high (Decimal string)
4808
5222
  */
4809
- warnings?: Array<ExchangeRateWarningDto>;
4810
- };
4811
- type GenerateSnapshotBody = unknown;
4812
- type GenerateSnapshotResponse = unknown;
4813
- type BackfillSnapshotsBody = unknown;
4814
- type BackfillSnapshotsResponse = unknown;
4815
- type AnonymousLoginDto = {
5223
+ yearHigh?: {
5224
+ [key: string]: unknown;
5225
+ } | null;
4816
5226
  /**
4817
- * Access token for anonymous login
5227
+ * 52-week low (Decimal string)
4818
5228
  */
4819
- accessToken: string;
5229
+ yearLow?: {
5230
+ [key: string]: unknown;
5231
+ } | null;
4820
5232
  };
4821
5233
  type AccountControllerCreateData = {
4822
5234
  /**
4823
5235
  * Region code for tenant context
4824
5236
  */
4825
- region: 'cn' | 'us' | 'de' | 'gb';
5237
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
4826
5238
  requestBody: CreateAccountDto;
4827
5239
  };
4828
5240
  type AccountControllerCreateResponse = AccountResponseDto;
@@ -4842,7 +5254,7 @@ type AccountControllerFindAllData = {
4842
5254
  /**
4843
5255
  * Region code for tenant context
4844
5256
  */
4845
- region: 'cn' | 'us' | 'de' | 'gb';
5257
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
4846
5258
  /**
4847
5259
  * Search term for account path
4848
5260
  */
@@ -4865,7 +5277,7 @@ type AccountControllerFindOneData = {
4865
5277
  /**
4866
5278
  * Region code for tenant context
4867
5279
  */
4868
- region: 'cn' | 'us' | 'de' | 'gb';
5280
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
4869
5281
  };
4870
5282
  type AccountControllerFindOneResponse = AccountResponseDto;
4871
5283
  type AccountControllerUpdateData = {
@@ -4876,7 +5288,7 @@ type AccountControllerUpdateData = {
4876
5288
  /**
4877
5289
  * Region code for tenant context
4878
5290
  */
4879
- region: 'cn' | 'us' | 'de' | 'gb';
5291
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
4880
5292
  requestBody: UpdateAccountDto;
4881
5293
  };
4882
5294
  type AccountControllerUpdateResponse = AccountResponseDto;
@@ -4888,7 +5300,7 @@ type AccountControllerDeleteData = {
4888
5300
  /**
4889
5301
  * Region code for tenant context
4890
5302
  */
4891
- region: 'cn' | 'us' | 'de' | 'gb';
5303
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
4892
5304
  };
4893
5305
  type AccountControllerDeleteResponse = void;
4894
5306
  type AccountControllerCloseData = {
@@ -4899,7 +5311,7 @@ type AccountControllerCloseData = {
4899
5311
  /**
4900
5312
  * Region code for tenant context
4901
5313
  */
4902
- region: 'cn' | 'us' | 'de' | 'gb';
5314
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
4903
5315
  requestBody: CloseAccountDto;
4904
5316
  };
4905
5317
  type AccountControllerCloseResponse = AccountResponseDto;
@@ -4911,7 +5323,7 @@ type AccountControllerReopenData = {
4911
5323
  /**
4912
5324
  * Region code for tenant context
4913
5325
  */
4914
- region: 'cn' | 'us' | 'de' | 'gb';
5326
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
4915
5327
  requestBody: ReopenAccountDto;
4916
5328
  };
4917
5329
  type AccountControllerReopenResponse = AccountResponseDto;
@@ -4923,7 +5335,7 @@ type AccountControllerAddOpeningBalanceData = {
4923
5335
  /**
4924
5336
  * Region code for tenant context
4925
5337
  */
4926
- region: 'cn' | 'us' | 'de' | 'gb';
5338
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
4927
5339
  requestBody: CreateOpeningBalanceDto;
4928
5340
  };
4929
5341
  type AccountControllerAddOpeningBalanceResponse = OpeningBalanceResultDto;
@@ -4931,7 +5343,7 @@ type AccountStandardsControllerGetTemplatesData = {
4931
5343
  /**
4932
5344
  * Region code (cn, us, de)
4933
5345
  */
4934
- region: 'cn' | 'us' | 'de' | 'gb';
5346
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
4935
5347
  /**
4936
5348
  * Search term for path or description
4937
5349
  */
@@ -4950,21 +5362,21 @@ type AccountStandardsControllerGetTemplateMetadataData = {
4950
5362
  /**
4951
5363
  * Region code for tenant context
4952
5364
  */
4953
- region: 'cn' | 'us' | 'de' | 'gb';
5365
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
4954
5366
  };
4955
5367
  type AccountStandardsControllerGetTemplateMetadataResponse = TemplateMetadataResponseDto;
4956
5368
  type AccountStandardsControllerGetRegionsData = {
4957
5369
  /**
4958
5370
  * Region code for tenant context
4959
5371
  */
4960
- region: 'cn' | 'us' | 'de' | 'gb';
5372
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
4961
5373
  };
4962
5374
  type AccountStandardsControllerGetRegionsResponse = RegionsMetadataResponseDto;
4963
5375
  type TransactionControllerCreateData = {
4964
5376
  /**
4965
5377
  * Region code for tenant context
4966
5378
  */
4967
- region: 'cn' | 'us' | 'de' | 'gb';
5379
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
4968
5380
  /**
4969
5381
  * Transaction data with postings
4970
5382
  */
@@ -4999,7 +5411,7 @@ type TransactionControllerListData = {
4999
5411
  /**
5000
5412
  * Region code for tenant context
5001
5413
  */
5002
- region: 'cn' | 'us' | 'de' | 'gb';
5414
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5003
5415
  /**
5004
5416
  * Search in narration and payee fields (max 200 chars)
5005
5417
  */
@@ -5014,7 +5426,7 @@ type TransactionControllerCreateBatchData = {
5014
5426
  /**
5015
5427
  * Region code for tenant context
5016
5428
  */
5017
- region: 'cn' | 'us' | 'de' | 'gb';
5429
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5018
5430
  requestBody: BatchCreateTransactionDto;
5019
5431
  };
5020
5432
  type TransactionControllerCreateBatchResponse = BatchTransactionResponseDto;
@@ -5026,7 +5438,7 @@ type TransactionControllerCorrectData = {
5026
5438
  /**
5027
5439
  * Region code for tenant context
5028
5440
  */
5029
- region: 'cn' | 'us' | 'de' | 'gb';
5441
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5030
5442
  requestBody: CorrectTransactionDto;
5031
5443
  };
5032
5444
  type TransactionControllerCorrectResponse = TransactionDetailDto;
@@ -5042,7 +5454,7 @@ type TransactionControllerSuggestTagsData = {
5042
5454
  /**
5043
5455
  * Region code for tenant context
5044
5456
  */
5045
- region: 'cn' | 'us' | 'de' | 'gb';
5457
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5046
5458
  /**
5047
5459
  * usage (default) or name
5048
5460
  */
@@ -5057,7 +5469,7 @@ type TransactionControllerGetDetailData = {
5057
5469
  /**
5058
5470
  * Region code for tenant context
5059
5471
  */
5060
- region: 'cn' | 'us' | 'de' | 'gb';
5472
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5061
5473
  };
5062
5474
  type TransactionControllerGetDetailResponse = TransactionDetailDto;
5063
5475
  type TransactionControllerUpdateData = {
@@ -5068,7 +5480,7 @@ type TransactionControllerUpdateData = {
5068
5480
  /**
5069
5481
  * Region code for tenant context
5070
5482
  */
5071
- region: 'cn' | 'us' | 'de' | 'gb';
5483
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5072
5484
  /**
5073
5485
  * Fields to update (all optional)
5074
5486
  */
@@ -5083,7 +5495,7 @@ type TransactionControllerDeleteData = {
5083
5495
  /**
5084
5496
  * Region code for tenant context
5085
5497
  */
5086
- region: 'cn' | 'us' | 'de' | 'gb';
5498
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5087
5499
  };
5088
5500
  type TransactionControllerDeleteResponse = void;
5089
5501
  type BalanceControllerGetBalanceData = {
@@ -5102,14 +5514,14 @@ type BalanceControllerGetBalanceData = {
5102
5514
  /**
5103
5515
  * Region code for tenant context
5104
5516
  */
5105
- region: 'cn' | 'us' | 'de' | 'gb';
5517
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5106
5518
  };
5107
5519
  type BalanceControllerGetBalanceResponse = BalanceResponseDto;
5108
5520
  type BalanceControllerGetMultiCurrencyBalanceData = {
5109
5521
  /**
5110
5522
  * Region code for tenant context
5111
5523
  */
5112
- region: 'cn' | 'us' | 'de' | 'gb';
5524
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5113
5525
  };
5114
5526
  type BalanceControllerGetMultiCurrencyBalanceResponse = MultiCurrencyBalanceResponseDto;
5115
5527
  type ReviewControllerFindAllData = {
@@ -5128,7 +5540,7 @@ type ReviewControllerFindAllData = {
5128
5540
  /**
5129
5541
  * Region code for tenant context
5130
5542
  */
5131
- region: 'cn' | 'us' | 'de' | 'gb';
5543
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5132
5544
  /**
5133
5545
  * Sort order
5134
5546
  */
@@ -5143,7 +5555,7 @@ type ReviewControllerGetStatsData = {
5143
5555
  /**
5144
5556
  * Region code for tenant context
5145
5557
  */
5146
- region: 'cn' | 'us' | 'de' | 'gb';
5558
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5147
5559
  };
5148
5560
  type ReviewControllerGetStatsResponse = ReviewStatsDto;
5149
5561
  type ReviewControllerFindOneData = {
@@ -5154,7 +5566,7 @@ type ReviewControllerFindOneData = {
5154
5566
  /**
5155
5567
  * Region code for tenant context
5156
5568
  */
5157
- region: 'cn' | 'us' | 'de' | 'gb';
5569
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5158
5570
  };
5159
5571
  type ReviewControllerFindOneResponse = ReviewDetailDto;
5160
5572
  type ReviewControllerResolveData = {
@@ -5165,7 +5577,7 @@ type ReviewControllerResolveData = {
5165
5577
  /**
5166
5578
  * Region code for tenant context
5167
5579
  */
5168
- region: 'cn' | 'us' | 'de' | 'gb';
5580
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5169
5581
  requestBody: ResolveReviewDto;
5170
5582
  };
5171
5583
  type ReviewControllerResolveResponse = ResolveResultDto;
@@ -5177,14 +5589,14 @@ type ReviewControllerUndoData = {
5177
5589
  /**
5178
5590
  * Region code for tenant context
5179
5591
  */
5180
- region: 'cn' | 'us' | 'de' | 'gb';
5592
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5181
5593
  };
5182
5594
  type ReviewControllerUndoResponse = UndoResultDto;
5183
5595
  type ReviewControllerBatchResolveData = {
5184
5596
  /**
5185
5597
  * Region code for tenant context
5186
5598
  */
5187
- region: 'cn' | 'us' | 'de' | 'gb';
5599
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5188
5600
  /**
5189
5601
  * Batch resolution request containing review IDs and action
5190
5602
  */
@@ -5329,7 +5741,7 @@ type CommodityControllerCreateData = {
5329
5741
  /**
5330
5742
  * Region code for tenant context
5331
5743
  */
5332
- region: 'cn' | 'us' | 'de' | 'gb';
5744
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5333
5745
  requestBody: CreateCommodityDto;
5334
5746
  };
5335
5747
  type CommodityControllerCreateResponse = CommodityResponseDto;
@@ -5337,7 +5749,7 @@ type CommodityControllerFindAllData = {
5337
5749
  /**
5338
5750
  * Region code for tenant context
5339
5751
  */
5340
- region: 'cn' | 'us' | 'de' | 'gb';
5752
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5341
5753
  /**
5342
5754
  * Search term for symbol or metadata fields (partial match). Searches symbol and metadata.name.
5343
5755
  */
@@ -5352,7 +5764,7 @@ type CommodityControllerFindOneData = {
5352
5764
  /**
5353
5765
  * Region code for tenant context
5354
5766
  */
5355
- region: 'cn' | 'us' | 'de' | 'gb';
5767
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5356
5768
  /**
5357
5769
  * Commodity symbol
5358
5770
  */
@@ -5363,7 +5775,7 @@ type CommodityControllerUpdateData = {
5363
5775
  /**
5364
5776
  * Region code for tenant context
5365
5777
  */
5366
- region: 'cn' | 'us' | 'de' | 'gb';
5778
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5367
5779
  requestBody: UpdateCommodityDto;
5368
5780
  /**
5369
5781
  * Commodity symbol
@@ -5375,7 +5787,7 @@ type CommodityControllerDeleteData = {
5375
5787
  /**
5376
5788
  * Region code for tenant context
5377
5789
  */
5378
- region: 'cn' | 'us' | 'de' | 'gb';
5790
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5379
5791
  /**
5380
5792
  * Commodity symbol
5381
5793
  */
@@ -5386,7 +5798,7 @@ type CommodityControllerGetOrCreateData = {
5386
5798
  /**
5387
5799
  * Region code for tenant context
5388
5800
  */
5389
- region: 'cn' | 'us' | 'de' | 'gb';
5801
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5390
5802
  /**
5391
5803
  * Commodity symbol
5392
5804
  */
@@ -5397,14 +5809,14 @@ type CommodityControllerBulkCreateData = {
5397
5809
  /**
5398
5810
  * Region code for tenant context
5399
5811
  */
5400
- region: 'cn' | 'us' | 'de' | 'gb';
5812
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5401
5813
  };
5402
5814
  type CommodityControllerBulkCreateResponse = Array<CommodityResponseDto>;
5403
5815
  type PriceControllerCreateData = {
5404
5816
  /**
5405
5817
  * Region code for tenant context
5406
5818
  */
5407
- region: 'cn' | 'us' | 'de' | 'gb';
5819
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5408
5820
  requestBody: CreateBeanPriceDto;
5409
5821
  };
5410
5822
  type PriceControllerCreateResponse = PriceResponseDto;
@@ -5436,7 +5848,7 @@ type PriceControllerFindAllData = {
5436
5848
  /**
5437
5849
  * Region code for tenant context
5438
5850
  */
5439
- region: 'cn' | 'us' | 'de' | 'gb';
5851
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5440
5852
  /**
5441
5853
  * Search term for currency or quoteCurrency (case-insensitive partial match)
5442
5854
  */
@@ -5451,7 +5863,7 @@ type PriceControllerFindOneData = {
5451
5863
  /**
5452
5864
  * Region code for tenant context
5453
5865
  */
5454
- region: 'cn' | 'us' | 'de' | 'gb';
5866
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5455
5867
  };
5456
5868
  type PriceControllerFindOneResponse = PriceResponseDto;
5457
5869
  type PriceControllerUpdateData = {
@@ -5462,7 +5874,7 @@ type PriceControllerUpdateData = {
5462
5874
  /**
5463
5875
  * Region code for tenant context
5464
5876
  */
5465
- region: 'cn' | 'us' | 'de' | 'gb';
5877
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5466
5878
  requestBody: UpdateBeanPriceDto;
5467
5879
  };
5468
5880
  type PriceControllerUpdateResponse = PriceResponseDto;
@@ -5474,14 +5886,14 @@ type PriceControllerDeleteData = {
5474
5886
  /**
5475
5887
  * Region code for tenant context
5476
5888
  */
5477
- region: 'cn' | 'us' | 'de' | 'gb';
5889
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5478
5890
  };
5479
5891
  type PriceControllerDeleteResponse = void;
5480
5892
  type PriceControllerBulkCreateData = {
5481
5893
  /**
5482
5894
  * Region code for tenant context
5483
5895
  */
5484
- region: 'cn' | 'us' | 'de' | 'gb';
5896
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5485
5897
  requestBody: Array<string>;
5486
5898
  };
5487
5899
  type PriceControllerBulkCreateResponse = Array<PriceResponseDto>;
@@ -5489,7 +5901,7 @@ type RecurringRuleControllerCreateData = {
5489
5901
  /**
5490
5902
  * Region code for tenant context
5491
5903
  */
5492
- region: 'cn' | 'us' | 'de' | 'gb';
5904
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5493
5905
  requestBody: CreateRecurringRuleDto;
5494
5906
  };
5495
5907
  type RecurringRuleControllerCreateResponse = RecurringRuleResponseDto;
@@ -5509,14 +5921,14 @@ type RecurringRuleControllerFindAllData = {
5509
5921
  /**
5510
5922
  * Region code for tenant context
5511
5923
  */
5512
- region: 'cn' | 'us' | 'de' | 'gb';
5924
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5513
5925
  };
5514
5926
  type RecurringRuleControllerFindAllResponse = Array<RecurringRuleResponseDto>;
5515
5927
  type RecurringRuleControllerCreateFromTransactionData = {
5516
5928
  /**
5517
5929
  * Region code for tenant context
5518
5930
  */
5519
- region: 'cn' | 'us' | 'de' | 'gb';
5931
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5520
5932
  requestBody: CreateRuleFromTransactionDto;
5521
5933
  /**
5522
5934
  * Source transaction ID
@@ -5532,7 +5944,7 @@ type RecurringRuleControllerFindOneData = {
5532
5944
  /**
5533
5945
  * Region code for tenant context
5534
5946
  */
5535
- region: 'cn' | 'us' | 'de' | 'gb';
5947
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5536
5948
  };
5537
5949
  type RecurringRuleControllerFindOneResponse = RecurringRuleResponseDto;
5538
5950
  type RecurringRuleControllerUpdateData = {
@@ -5543,7 +5955,7 @@ type RecurringRuleControllerUpdateData = {
5543
5955
  /**
5544
5956
  * Region code for tenant context
5545
5957
  */
5546
- region: 'cn' | 'us' | 'de' | 'gb';
5958
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5547
5959
  requestBody: UpdateRecurringRuleDto;
5548
5960
  };
5549
5961
  type RecurringRuleControllerUpdateResponse = RecurringRuleResponseDto;
@@ -5555,7 +5967,7 @@ type RecurringRuleControllerDeleteData = {
5555
5967
  /**
5556
5968
  * Region code for tenant context
5557
5969
  */
5558
- region: 'cn' | 'us' | 'de' | 'gb';
5970
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5559
5971
  };
5560
5972
  type RecurringRuleControllerDeleteResponse = void;
5561
5973
  type RecurringRuleControllerGetWithStatsData = {
@@ -5566,7 +5978,7 @@ type RecurringRuleControllerGetWithStatsData = {
5566
5978
  /**
5567
5979
  * Region code for tenant context
5568
5980
  */
5569
- region: 'cn' | 'us' | 'de' | 'gb';
5981
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5570
5982
  };
5571
5983
  type RecurringRuleControllerGetWithStatsResponse = RecurringRuleWithStatsResponseDto;
5572
5984
  type ExpectedTransactionControllerFindAllData = {
@@ -5577,7 +5989,7 @@ type ExpectedTransactionControllerFindAllData = {
5577
5989
  /**
5578
5990
  * Region code for tenant context
5579
5991
  */
5580
- region: 'cn' | 'us' | 'de' | 'gb';
5992
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5581
5993
  /**
5582
5994
  * Filter by recurring rule ID
5583
5995
  */
@@ -5596,93 +6008,207 @@ type ExpectedTransactionControllerFindOverdueData = {
5596
6008
  /**
5597
6009
  * Region code for tenant context
5598
6010
  */
5599
- region: 'cn' | 'us' | 'de' | 'gb';
6011
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5600
6012
  };
5601
6013
  type ExpectedTransactionControllerFindOverdueResponse = ExpectedTransactionListResponseDto;
5602
6014
  type ExpectedTransactionControllerFindOneData = {
5603
6015
  /**
5604
6016
  * Expected transaction ID
5605
6017
  */
5606
- id: string;
6018
+ id: string;
6019
+ /**
6020
+ * Region code for tenant context
6021
+ */
6022
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6023
+ };
6024
+ type ExpectedTransactionControllerFindOneResponse = ExpectedTransactionResponseDto;
6025
+ type ExpectedTransactionControllerSkipData = {
6026
+ /**
6027
+ * Expected transaction ID
6028
+ */
6029
+ id: string;
6030
+ /**
6031
+ * Region code for tenant context
6032
+ */
6033
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6034
+ };
6035
+ type ExpectedTransactionControllerSkipResponse = ExpectedTransactionResponseDto;
6036
+ type ExpectedTransactionControllerUndoSkipData = {
6037
+ /**
6038
+ * Expected transaction ID
6039
+ */
6040
+ id: string;
6041
+ /**
6042
+ * Region code for tenant context
6043
+ */
6044
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6045
+ };
6046
+ type ExpectedTransactionControllerUndoSkipResponse = ExpectedTransactionResponseDto;
6047
+ type ExpectedTransactionControllerConfirmMatchData = {
6048
+ /**
6049
+ * Expected transaction ID
6050
+ */
6051
+ id: string;
6052
+ /**
6053
+ * Region code for tenant context
6054
+ */
6055
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6056
+ requestBody: ConfirmMatchDto;
6057
+ };
6058
+ type ExpectedTransactionControllerConfirmMatchResponse = unknown;
6059
+ type ExpectedTransactionControllerUnmatchData = {
6060
+ /**
6061
+ * Expected transaction ID
6062
+ */
6063
+ id: string;
6064
+ /**
6065
+ * Region code for tenant context
6066
+ */
6067
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6068
+ };
6069
+ type ExpectedTransactionControllerUnmatchResponse = unknown;
6070
+ type ExpectedTransactionControllerEnterNowData = {
6071
+ /**
6072
+ * Expected transaction ID
6073
+ */
6074
+ id: string;
6075
+ /**
6076
+ * Region code for tenant context
6077
+ */
6078
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6079
+ requestBody: EnterNowDto;
6080
+ };
6081
+ type ExpectedTransactionControllerEnterNowResponse = unknown;
6082
+ type ForecastControllerGetForecastData = {
6083
+ /**
6084
+ * Number of months to forecast (1-12, default 3)
6085
+ */
6086
+ months?: number;
6087
+ /**
6088
+ * Region code for tenant context
6089
+ */
6090
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6091
+ };
6092
+ type ForecastControllerGetForecastResponse = ForecastResponseDto;
6093
+ type ReportingControllerGetPortfolioTrendsData = {
6094
+ /**
6095
+ * Data granularity
6096
+ */
6097
+ granularity?: 'day' | 'week' | 'month';
6098
+ /**
6099
+ * Time period
6100
+ */
6101
+ period?: '1m' | '3m' | '6m' | '1y';
6102
+ /**
6103
+ * Region code for tenant context
6104
+ */
6105
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6106
+ };
6107
+ type ReportingControllerGetPortfolioTrendsResponse = PortfolioTrendsResponseDto;
6108
+ type ReportingControllerGetCashFlowTrendsData = {
6109
+ /**
6110
+ * Data granularity (accepted for API symmetry; v1 returns month buckets)
6111
+ */
6112
+ granularity?: 'day' | 'week' | 'month';
6113
+ /**
6114
+ * Time period
6115
+ */
6116
+ period?: '1m' | '3m' | '6m' | '1y';
5607
6117
  /**
5608
6118
  * Region code for tenant context
5609
6119
  */
5610
- region: 'cn' | 'us' | 'de' | 'gb';
6120
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5611
6121
  };
5612
- type ExpectedTransactionControllerFindOneResponse = ExpectedTransactionResponseDto;
5613
- type ExpectedTransactionControllerSkipData = {
5614
- /**
5615
- * Expected transaction ID
5616
- */
5617
- id: string;
6122
+ type ReportingControllerGetCashFlowTrendsResponse = CashFlowTrendsResponseDto;
6123
+ type ReportingControllerGenerateSnapshotData = {
5618
6124
  /**
5619
6125
  * Region code for tenant context
5620
6126
  */
5621
- region: 'cn' | 'us' | 'de' | 'gb';
5622
- };
5623
- type ExpectedTransactionControllerSkipResponse = ExpectedTransactionResponseDto;
5624
- type ExpectedTransactionControllerUndoSkipData = {
6127
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5625
6128
  /**
5626
- * Expected transaction ID
6129
+ * Optional date (defaults to today)
5627
6130
  */
5628
- id: string;
6131
+ requestBody: GenerateSnapshotBody;
6132
+ };
6133
+ type ReportingControllerGenerateSnapshotResponse = GenerateSnapshotResponse;
6134
+ type ReportingControllerBackfillSnapshotsData = {
5629
6135
  /**
5630
6136
  * Region code for tenant context
5631
6137
  */
5632
- region: 'cn' | 'us' | 'de' | 'gb';
6138
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6139
+ requestBody: BackfillSnapshotsBody;
5633
6140
  };
5634
- type ExpectedTransactionControllerUndoSkipResponse = ExpectedTransactionResponseDto;
5635
- type ExpectedTransactionControllerConfirmMatchData = {
6141
+ type ReportingControllerBackfillSnapshotsResponse = BackfillSnapshotsResponse;
6142
+ type UserControllerDeleteOwnUserData = {
6143
+ requestBody: DeleteOwnUserDto;
6144
+ };
6145
+ type UserControllerDeleteOwnUserResponse = void;
6146
+ type UserControllerGetUserData = {
6147
+ acceptLanguage: string;
6148
+ };
6149
+ type UserControllerGetUserResponse = UserResponseDto;
6150
+ type UserControllerSignupUserData = {
6151
+ requestBody: SignupDto;
6152
+ };
6153
+ type UserControllerSignupUserResponse = SignupResponseDto;
6154
+ type UserControllerDeleteUserData = {
5636
6155
  /**
5637
- * Expected transaction ID
6156
+ * User ID to delete
5638
6157
  */
5639
6158
  id: string;
5640
- /**
5641
- * Region code for tenant context
5642
- */
5643
- region: 'cn' | 'us' | 'de' | 'gb';
5644
- requestBody: ConfirmMatchDto;
5645
6159
  };
5646
- type ExpectedTransactionControllerConfirmMatchResponse = unknown;
5647
- type ExpectedTransactionControllerUnmatchData = {
6160
+ type UserControllerDeleteUserResponse = void;
6161
+ type UserControllerGetUserInfoData = {
5648
6162
  /**
5649
- * Expected transaction ID
6163
+ * User ID
5650
6164
  */
5651
6165
  id: string;
6166
+ };
6167
+ type UserControllerGetUserInfoResponse = unknown;
6168
+ type UserControllerUpdateUserSettingData = {
6169
+ requestBody: UpdateUserSettingDto;
6170
+ };
6171
+ type UserControllerUpdateUserSettingResponse = unknown;
6172
+ type UserControllerGetAllUserSettingsByPageData = {
5652
6173
  /**
5653
- * Region code for tenant context
6174
+ * Page number
5654
6175
  */
5655
- region: 'cn' | 'us' | 'de' | 'gb';
5656
- };
5657
- type ExpectedTransactionControllerUnmatchResponse = unknown;
5658
- type ExpectedTransactionControllerEnterNowData = {
6176
+ pageNo: number;
5659
6177
  /**
5660
- * Expected transaction ID
6178
+ * Page size
5661
6179
  */
5662
- id: string;
6180
+ pageSize: number;
6181
+ };
6182
+ type UserControllerGetAllUserSettingsByPageResponse = unknown;
6183
+ type UserControllerGetAssetLiabilitySummaryResponse = unknown;
6184
+ type PropertyControllerGetAllResponse = unknown;
6185
+ type PropertyControllerGetByKeyData = {
5663
6186
  /**
5664
- * Region code for tenant context
6187
+ * Property key
5665
6188
  */
5666
- region: 'cn' | 'us' | 'de' | 'gb';
5667
- requestBody: EnterNowDto;
6189
+ key: string;
5668
6190
  };
5669
- type ExpectedTransactionControllerEnterNowResponse = unknown;
5670
- type ForecastControllerGetForecastData = {
6191
+ type PropertyControllerGetByKeyResponse = unknown;
6192
+ type PropertyControllerUpdateData = {
5671
6193
  /**
5672
- * Number of months to forecast (1-12, default 3)
6194
+ * Property key
5673
6195
  */
5674
- months?: number;
6196
+ key: string;
6197
+ requestBody: UpdatePropertyDto;
6198
+ };
6199
+ type PropertyControllerUpdateResponse = unknown;
6200
+ type PropertyControllerDeleteData = {
5675
6201
  /**
5676
- * Region code for tenant context
6202
+ * Property key
5677
6203
  */
5678
- region: 'cn' | 'us' | 'de' | 'gb';
6204
+ key: string;
5679
6205
  };
5680
- type ForecastControllerGetForecastResponse = ForecastResponseDto;
6206
+ type PropertyControllerDeleteResponse = void;
5681
6207
  type TransactionRuleControllerCreateData = {
5682
6208
  /**
5683
6209
  * Region code for tenant context
5684
6210
  */
5685
- region: 'cn' | 'us' | 'de' | 'gb';
6211
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5686
6212
  requestBody: CreateTransactionRuleDto;
5687
6213
  };
5688
6214
  type TransactionRuleControllerCreateResponse = TransactionRuleResponseDto;
@@ -5710,14 +6236,14 @@ type TransactionRuleControllerListData = {
5710
6236
  /**
5711
6237
  * Region code for tenant context
5712
6238
  */
5713
- region: 'cn' | 'us' | 'de' | 'gb';
6239
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5714
6240
  };
5715
6241
  type TransactionRuleControllerListResponse = TransactionRuleListResponseDto;
5716
6242
  type TransactionRuleControllerValidateData = {
5717
6243
  /**
5718
6244
  * Region code for tenant context
5719
6245
  */
5720
- region: 'cn' | 'us' | 'de' | 'gb';
6246
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5721
6247
  requestBody: ValidateRuleDto;
5722
6248
  };
5723
6249
  type TransactionRuleControllerValidateResponse = ValidateRuleResponseDto;
@@ -5725,7 +6251,7 @@ type TransactionRuleControllerBulkCreateData = {
5725
6251
  /**
5726
6252
  * Region code for tenant context
5727
6253
  */
5728
- region: 'cn' | 'us' | 'de' | 'gb';
6254
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5729
6255
  requestBody: BulkCreateRulesDto;
5730
6256
  };
5731
6257
  type TransactionRuleControllerBulkCreateResponse = BulkCreateRulesResponseDto;
@@ -5737,7 +6263,7 @@ type TransactionRuleControllerExportData = {
5737
6263
  /**
5738
6264
  * Region code for tenant context
5739
6265
  */
5740
- region: 'cn' | 'us' | 'de' | 'gb';
6266
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5741
6267
  };
5742
6268
  type TransactionRuleControllerExportResponse = ExportRulesResponseDto;
5743
6269
  type TransactionRuleControllerGetStatisticsData = {
@@ -5748,14 +6274,14 @@ type TransactionRuleControllerGetStatisticsData = {
5748
6274
  /**
5749
6275
  * Region code for tenant context
5750
6276
  */
5751
- region: 'cn' | 'us' | 'de' | 'gb';
6277
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5752
6278
  };
5753
6279
  type TransactionRuleControllerGetStatisticsResponse = RuleStatisticsResponseDto;
5754
6280
  type TransactionRuleControllerGetDetailData = {
5755
6281
  /**
5756
6282
  * Region code for tenant context
5757
6283
  */
5758
- region: 'cn' | 'us' | 'de' | 'gb';
6284
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5759
6285
  /**
5760
6286
  * Rule ID
5761
6287
  */
@@ -5766,7 +6292,7 @@ type TransactionRuleControllerUpdateData = {
5766
6292
  /**
5767
6293
  * Region code for tenant context
5768
6294
  */
5769
- region: 'cn' | 'us' | 'de' | 'gb';
6295
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5770
6296
  requestBody: UpdateTransactionRuleDto;
5771
6297
  /**
5772
6298
  * Rule ID to update
@@ -5778,7 +6304,7 @@ type TransactionRuleControllerDeleteData = {
5778
6304
  /**
5779
6305
  * Region code for tenant context
5780
6306
  */
5781
- region: 'cn' | 'us' | 'de' | 'gb';
6307
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5782
6308
  /**
5783
6309
  * Rule ID to delete
5784
6310
  */
@@ -5789,7 +6315,7 @@ type TransactionRuleControllerTestData = {
5789
6315
  /**
5790
6316
  * Region code for tenant context
5791
6317
  */
5792
- region: 'cn' | 'us' | 'de' | 'gb';
6318
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5793
6319
  requestBody: TestRuleDto;
5794
6320
  /**
5795
6321
  * Rule ID to test
@@ -5797,76 +6323,26 @@ type TransactionRuleControllerTestData = {
5797
6323
  ruleId: string;
5798
6324
  };
5799
6325
  type TransactionRuleControllerTestResponse = TestRuleResponseDto;
5800
- type UserControllerDeleteOwnUserData = {
5801
- requestBody: DeleteOwnUserDto;
5802
- };
5803
- type UserControllerDeleteOwnUserResponse = void;
5804
- type UserControllerGetUserData = {
5805
- acceptLanguage: string;
5806
- };
5807
- type UserControllerGetUserResponse = unknown;
5808
- type UserControllerSignupUserData = {
5809
- requestBody: SignupDto;
5810
- };
5811
- type UserControllerSignupUserResponse = unknown;
5812
- type UserControllerDeleteUserData = {
5813
- /**
5814
- * User ID to delete
5815
- */
5816
- id: string;
5817
- };
5818
- type UserControllerDeleteUserResponse = void;
5819
- type UserControllerGetUserInfoData = {
5820
- /**
5821
- * User ID
5822
- */
5823
- id: string;
5824
- };
5825
- type UserControllerGetUserInfoResponse = unknown;
5826
- type UserControllerUpdateUserSettingData = {
5827
- requestBody: UpdateUserSettingDto;
5828
- };
5829
- type UserControllerUpdateUserSettingResponse = unknown;
5830
- type UserControllerGetAllUserSettingsByPageData = {
5831
- /**
5832
- * Page number
5833
- */
5834
- pageNo: number;
5835
- /**
5836
- * Page size
5837
- */
5838
- pageSize: number;
5839
- };
5840
- type UserControllerGetAllUserSettingsByPageResponse = unknown;
5841
- type UserControllerGetAssetLiabilitySummaryResponse = unknown;
5842
- type PropertyControllerGetAllResponse = unknown;
5843
- type PropertyControllerGetByKeyData = {
6326
+ type CategoryCatalogControllerListData = {
5844
6327
  /**
5845
- * Property key
6328
+ * Region code for tenant context
5846
6329
  */
5847
- key: string;
5848
- };
5849
- type PropertyControllerGetByKeyResponse = unknown;
5850
- type PropertyControllerUpdateData = {
6330
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5851
6331
  /**
5852
- * Property key
6332
+ * Filter by routeBearing (entity-router route() consumes it)
5853
6333
  */
5854
- key: string;
5855
- requestBody: UpdatePropertyDto;
5856
- };
5857
- type PropertyControllerUpdateResponse = unknown;
5858
- type PropertyControllerDeleteData = {
6334
+ routeBearing?: boolean;
5859
6335
  /**
5860
- * Property key
6336
+ * Filter by scenario
5861
6337
  */
5862
- key: string;
6338
+ scenario?: 'expense' | 'income' | 'investment' | 'banking' | 'transfer' | 'payment';
5863
6339
  };
5864
- type PropertyControllerDeleteResponse = void;
6340
+ type CategoryCatalogControllerListResponse = CategoryCatalogListResponseDto;
5865
6341
  type EventControllerCreateData = {
5866
6342
  /**
5867
6343
  * Region code for tenant context (decorative for life events)
5868
6344
  */
5869
- region: 'cn' | 'us' | 'de' | 'gb';
6345
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5870
6346
  requestBody: CreateBeanEventDto;
5871
6347
  };
5872
6348
  type EventControllerCreateResponse = EventResponseDto;
@@ -5890,7 +6366,7 @@ type EventControllerFindAllData = {
5890
6366
  /**
5891
6367
  * Region code for tenant context (decorative for life events)
5892
6368
  */
5893
- region: 'cn' | 'us' | 'de' | 'gb';
6369
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5894
6370
  /**
5895
6371
  * Filter life events to this date (ISO 8601 format)
5896
6372
  */
@@ -5909,7 +6385,7 @@ type EventControllerFindOneData = {
5909
6385
  /**
5910
6386
  * Region code for tenant context (decorative for life events)
5911
6387
  */
5912
- region: 'cn' | 'us' | 'de' | 'gb';
6388
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5913
6389
  };
5914
6390
  type EventControllerFindOneResponse = EventResponseDto;
5915
6391
  type EventControllerUpdateData = {
@@ -5920,7 +6396,7 @@ type EventControllerUpdateData = {
5920
6396
  /**
5921
6397
  * Region code for tenant context (decorative for life events)
5922
6398
  */
5923
- region: 'cn' | 'us' | 'de' | 'gb';
6399
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5924
6400
  requestBody: UpdateBeanEventDto;
5925
6401
  };
5926
6402
  type EventControllerUpdateResponse = EventResponseDto;
@@ -5932,7 +6408,7 @@ type EventControllerDeleteData = {
5932
6408
  /**
5933
6409
  * Region code for tenant context (decorative for life events)
5934
6410
  */
5935
- region: 'cn' | 'us' | 'de' | 'gb';
6411
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5936
6412
  };
5937
6413
  type EventControllerDeleteResponse = void;
5938
6414
  type EventControllerGetSliceData = {
@@ -5945,14 +6421,14 @@ type EventControllerGetSliceData = {
5945
6421
  /**
5946
6422
  * Region code for tenant context (decorative for life events)
5947
6423
  */
5948
- region: 'cn' | 'us' | 'de' | 'gb';
6424
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5949
6425
  };
5950
6426
  type EventControllerGetSliceResponse = unknown;
5951
6427
  type OnboardingControllerBootstrapData = {
5952
6428
  /**
5953
6429
  * Region code for tenant context
5954
6430
  */
5955
- region: 'cn' | 'us' | 'de' | 'gb';
6431
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5956
6432
  requestBody: OnboardingDto;
5957
6433
  };
5958
6434
  type OnboardingControllerBootstrapResponse = unknown;
@@ -5960,7 +6436,7 @@ type ReconciliationControllerComputeData = {
5960
6436
  /**
5961
6437
  * Region code for tenant context (decorative for reconciliation)
5962
6438
  */
5963
- region: 'cn' | 'us' | 'de' | 'gb';
6439
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5964
6440
  requestBody: ComputeReconciliationDto;
5965
6441
  };
5966
6442
  type ReconciliationControllerComputeResponse = ReconciliationComputeResultDto;
@@ -5968,7 +6444,7 @@ type ReconciliationControllerAssertData = {
5968
6444
  /**
5969
6445
  * Region code for tenant context (decorative for reconciliation)
5970
6446
  */
5971
- region: 'cn' | 'us' | 'de' | 'gb';
6447
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5972
6448
  requestBody: AssertReconciliationDto;
5973
6449
  };
5974
6450
  type ReconciliationControllerAssertResponse = ReconciliationRecordDto;
@@ -5976,7 +6452,7 @@ type ReconciliationControllerPadData = {
5976
6452
  /**
5977
6453
  * Region code for tenant context (decorative for reconciliation)
5978
6454
  */
5979
- region: 'cn' | 'us' | 'de' | 'gb';
6455
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5980
6456
  requestBody: PadReconciliationDto;
5981
6457
  };
5982
6458
  type ReconciliationControllerPadResponse = PadResultDto;
@@ -5988,7 +6464,7 @@ type ReconciliationControllerHistoryData = {
5988
6464
  /**
5989
6465
  * Region code for tenant context (decorative for reconciliation)
5990
6466
  */
5991
- region: 'cn' | 'us' | 'de' | 'gb';
6467
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
5992
6468
  };
5993
6469
  type ReconciliationControllerHistoryResponse = Array<ReconciliationRecordDto>;
5994
6470
  type ExportControllerExportBeancountResponse = unknown;
@@ -6000,7 +6476,7 @@ type FileImportControllerImportFileData = {
6000
6476
  /**
6001
6477
  * Region code for tenant context
6002
6478
  */
6003
- region: 'cn' | 'us' | 'de' | 'gb';
6479
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6004
6480
  };
6005
6481
  type FileImportControllerImportFileResponse = ImportResultDto;
6006
6482
  type FileImportControllerIdentifyFileData = {
@@ -6011,7 +6487,7 @@ type FileImportControllerIdentifyFileData = {
6011
6487
  /**
6012
6488
  * Region code for tenant context
6013
6489
  */
6014
- region: 'cn' | 'us' | 'de' | 'gb';
6490
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6015
6491
  };
6016
6492
  type FileImportControllerIdentifyFileResponse = IdentifyResultDto;
6017
6493
  type FileImportControllerImportBeancountData = {
@@ -6022,7 +6498,7 @@ type FileImportControllerImportBeancountData = {
6022
6498
  /**
6023
6499
  * Region code for tenant context
6024
6500
  */
6025
- region: 'cn' | 'us' | 'de' | 'gb';
6501
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6026
6502
  };
6027
6503
  type FileImportControllerImportBeancountResponse = {
6028
6504
  imported?: number;
@@ -6041,7 +6517,7 @@ type ImporterConfigControllerGetConfigData = {
6041
6517
  /**
6042
6518
  * Region code for tenant context
6043
6519
  */
6044
- region: 'cn' | 'us' | 'de' | 'gb';
6520
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6045
6521
  };
6046
6522
  type ImporterConfigControllerGetConfigResponse = ImporterConfigDto;
6047
6523
  type ImporterConfigControllerUpdateConfigData = {
@@ -6052,7 +6528,7 @@ type ImporterConfigControllerUpdateConfigData = {
6052
6528
  /**
6053
6529
  * Region code for tenant context
6054
6530
  */
6055
- region: 'cn' | 'us' | 'de' | 'gb';
6531
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6056
6532
  /**
6057
6533
  * Partial configuration update. Only provided fields will be updated.
6058
6534
  */
@@ -6067,7 +6543,7 @@ type ImporterConfigControllerResetConfigData = {
6067
6543
  /**
6068
6544
  * Region code for tenant context
6069
6545
  */
6070
- region: 'cn' | 'us' | 'de' | 'gb';
6546
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6071
6547
  };
6072
6548
  type ImporterConfigControllerResetConfigResponse = ImporterConfigDto;
6073
6549
  type ProviderSyncControllerSyncData = {
@@ -6078,7 +6554,7 @@ type ProviderSyncControllerSyncData = {
6078
6554
  /**
6079
6555
  * Region code for tenant context
6080
6556
  */
6081
- region: 'cn' | 'us' | 'de' | 'gb';
6557
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6082
6558
  requestBody: ProviderSyncDto;
6083
6559
  };
6084
6560
  type ProviderSyncControllerSyncResponse = ProviderSyncResponseDto;
@@ -6086,7 +6562,7 @@ type ProviderSyncControllerGetSupportedProvidersData = {
6086
6562
  /**
6087
6563
  * Region code for tenant context
6088
6564
  */
6089
- region: 'cn' | 'us' | 'de' | 'gb';
6565
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6090
6566
  };
6091
6567
  type ProviderSyncControllerGetSupportedProvidersResponse = SupportedProvidersResponseDto;
6092
6568
  type ProviderSyncControllerIsProviderSupportedData = {
@@ -6097,14 +6573,14 @@ type ProviderSyncControllerIsProviderSupportedData = {
6097
6573
  /**
6098
6574
  * Region code for tenant context
6099
6575
  */
6100
- region: 'cn' | 'us' | 'de' | 'gb';
6576
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6101
6577
  };
6102
6578
  type ProviderSyncControllerIsProviderSupportedResponse = unknown;
6103
6579
  type ExternalAccountLinkControllerCreateData = {
6104
6580
  /**
6105
6581
  * Region code for tenant context
6106
6582
  */
6107
- region: 'cn' | 'us' | 'de' | 'gb';
6583
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6108
6584
  requestBody: CreateExternalAccountLinkDto;
6109
6585
  };
6110
6586
  type ExternalAccountLinkControllerCreateResponse = ExternalAccountLinkResponseDto;
@@ -6113,7 +6589,7 @@ type ExternalAccountLinkControllerFindAllData = {
6113
6589
  /**
6114
6590
  * Region code for tenant context
6115
6591
  */
6116
- region: 'cn' | 'us' | 'de' | 'gb';
6592
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6117
6593
  };
6118
6594
  type ExternalAccountLinkControllerFindAllResponse = ExternalAccountLinkListResponseDto;
6119
6595
  type ExternalAccountLinkControllerFindOneData = {
@@ -6121,7 +6597,7 @@ type ExternalAccountLinkControllerFindOneData = {
6121
6597
  /**
6122
6598
  * Region code for tenant context
6123
6599
  */
6124
- region: 'cn' | 'us' | 'de' | 'gb';
6600
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6125
6601
  };
6126
6602
  type ExternalAccountLinkControllerFindOneResponse = ExternalAccountLinkResponseDto;
6127
6603
  type ExternalAccountLinkControllerRemoveData = {
@@ -6129,14 +6605,14 @@ type ExternalAccountLinkControllerRemoveData = {
6129
6605
  /**
6130
6606
  * Region code for tenant context
6131
6607
  */
6132
- region: 'cn' | 'us' | 'de' | 'gb';
6608
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6133
6609
  };
6134
6610
  type ExternalAccountLinkControllerRemoveResponse = void;
6135
6611
  type TelemetryControllerReportTelemetryData = {
6136
6612
  /**
6137
6613
  * Region code for tenant context
6138
6614
  */
6139
- region: 'cn' | 'us' | 'de' | 'gb';
6615
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6140
6616
  requestBody: ParserTelemetryReportDto;
6141
6617
  };
6142
6618
  type TelemetryControllerReportTelemetryResponse = unknown;
@@ -6144,7 +6620,7 @@ type TelemetryControllerReportCoverageMissData = {
6144
6620
  /**
6145
6621
  * Region code for tenant context
6146
6622
  */
6147
- region: 'cn' | 'us' | 'de' | 'gb';
6623
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6148
6624
  requestBody: UncoveredFormatMissDto;
6149
6625
  };
6150
6626
  type TelemetryControllerReportCoverageMissResponse = unknown;
@@ -6152,7 +6628,7 @@ type TelemetryControllerGetCoverageMetricsData = {
6152
6628
  /**
6153
6629
  * Region code for tenant context
6154
6630
  */
6155
- region: 'cn' | 'us' | 'de' | 'gb';
6631
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6156
6632
  /**
6157
6633
  * Top-N uncovered formats (default 10)
6158
6634
  */
@@ -6163,7 +6639,7 @@ type NlpControllerProcessNaturalLanguageData = {
6163
6639
  /**
6164
6640
  * Region code for tenant context
6165
6641
  */
6166
- region: 'cn' | 'us' | 'de' | 'gb';
6642
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6167
6643
  /**
6168
6644
  * Natural language transaction input with optional session ID
6169
6645
  */
@@ -6174,7 +6650,7 @@ type NlpControllerClearSessionData = {
6174
6650
  /**
6175
6651
  * Region code for tenant context
6176
6652
  */
6177
- region: 'cn' | 'us' | 'de' | 'gb';
6653
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6178
6654
  /**
6179
6655
  * Specific session ID to clear (defaults to user session)
6180
6656
  */
@@ -6185,7 +6661,7 @@ type NlpControllerGetSessionData = {
6185
6661
  /**
6186
6662
  * Region code for tenant context
6187
6663
  */
6188
- region: 'cn' | 'us' | 'de' | 'gb';
6664
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6189
6665
  /**
6190
6666
  * Specific session ID to get (defaults to user session)
6191
6667
  */
@@ -6197,18 +6673,24 @@ type PlatformControllerCreateData = {
6197
6673
  requestBody: CreatePlatformDto;
6198
6674
  };
6199
6675
  type PlatformControllerCreateResponse = unknown;
6200
- type PlatformControllerGetPlatformListResponse = unknown;
6676
+ type PlatformControllerGetPlatformListData = {
6677
+ /**
6678
+ * Region code (ISO 3166-1 alpha-2) that biases within-type-bucket ordering (local-region platforms first). Case-insensitive — stored/compared UPPERCASE ("cn" == "CN").
6679
+ */
6680
+ region?: string;
6681
+ };
6682
+ type PlatformControllerGetPlatformListResponse = Array<PlatformListItemDto>;
6201
6683
  type PlatformControllerMatchPlatformsData = {
6202
6684
  /**
6203
6685
  * Search query — Chinese name, English name, or abbreviation
6204
6686
  */
6205
6687
  q: string;
6206
6688
  /**
6207
- * Region code for category override lookup
6689
+ * Region code (ISO 3166-1 alpha-2) that biases within-tier ordering (local-region platforms first); also the intended categoryOverrides key. Case-insensitive — stored/compared UPPERCASE ("cn" == "CN").
6208
6690
  */
6209
6691
  region?: string;
6210
6692
  };
6211
- type PlatformControllerMatchPlatformsResponse = unknown;
6693
+ type PlatformControllerMatchPlatformsResponse = PlatformMatchResponseDto;
6212
6694
  type PlatformControllerUpdateData = {
6213
6695
  /**
6214
6696
  * Platform ID
@@ -6232,7 +6714,7 @@ type DashboardControllerGetNetWorthData = {
6232
6714
  /**
6233
6715
  * Region code for tenant context
6234
6716
  */
6235
- region: 'cn' | 'us' | 'de' | 'gb';
6717
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6236
6718
  };
6237
6719
  type DashboardControllerGetNetWorthResponse = NetWorthResponseDto;
6238
6720
  type DashboardControllerGetAccountsData = {
@@ -6251,7 +6733,7 @@ type DashboardControllerGetAccountsData = {
6251
6733
  /**
6252
6734
  * Region code for tenant context
6253
6735
  */
6254
- region: 'cn' | 'us' | 'de' | 'gb';
6736
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6255
6737
  };
6256
6738
  type DashboardControllerGetAccountsResponse = AccountsResponseDto | AssetClassAccountsResponseDto | HoldingAssetClassCrossAccountResponseDto;
6257
6739
  type DashboardControllerGetCashFlowData = {
@@ -6262,7 +6744,7 @@ type DashboardControllerGetCashFlowData = {
6262
6744
  /**
6263
6745
  * Region code for tenant context
6264
6746
  */
6265
- region: 'cn' | 'us' | 'de' | 'gb';
6747
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6266
6748
  };
6267
6749
  type DashboardControllerGetCashFlowResponse = CashFlowResponseDto;
6268
6750
  type DashboardControllerGetExpensesData = {
@@ -6281,7 +6763,7 @@ type DashboardControllerGetExpensesData = {
6281
6763
  /**
6282
6764
  * Region code for tenant context
6283
6765
  */
6284
- region: 'cn' | 'us' | 'de' | 'gb';
6766
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6285
6767
  };
6286
6768
  type DashboardControllerGetExpensesResponse = ExpensesByCategoryResponseDto;
6287
6769
  type HoldingPnlControllerGetHoldingPnlData = {
@@ -6300,63 +6782,14 @@ type HoldingPnlControllerGetHoldingPnlData = {
6300
6782
  /**
6301
6783
  * Region code for tenant context
6302
6784
  */
6303
- region: 'cn' | 'us' | 'de' | 'gb';
6785
+ region: 'ad' | 'ae' | 'af' | 'ag' | 'al' | 'am' | 'ao' | 'au' | 'br' | 'ca' | 'cn' | 'de' | 'dz' | 'es' | 'fr' | 'gb' | 'hk' | 'in' | 'it' | 'jp' | 'kr' | 'nl' | 'sg' | 'tw' | 'us';
6304
6786
  };
6305
6787
  type HoldingPnlControllerGetHoldingPnlResponse = HoldingPnlResponseDto;
6306
- type ReportingControllerGetPortfolioTrendsData = {
6307
- /**
6308
- * Data granularity
6309
- */
6310
- granularity?: 'day' | 'week' | 'month';
6311
- /**
6312
- * Time period
6313
- */
6314
- period?: '1m' | '3m' | '6m' | '1y';
6315
- /**
6316
- * Region code for tenant context
6317
- */
6318
- region: 'cn' | 'us' | 'de' | 'gb';
6319
- };
6320
- type ReportingControllerGetPortfolioTrendsResponse = PortfolioTrendsResponseDto;
6321
- type ReportingControllerGetCashFlowTrendsData = {
6322
- /**
6323
- * Data granularity (accepted for API symmetry; v1 returns month buckets)
6324
- */
6325
- granularity?: 'day' | 'week' | 'month';
6326
- /**
6327
- * Time period
6328
- */
6329
- period?: '1m' | '3m' | '6m' | '1y';
6330
- /**
6331
- * Region code for tenant context
6332
- */
6333
- region: 'cn' | 'us' | 'de' | 'gb';
6334
- };
6335
- type ReportingControllerGetCashFlowTrendsResponse = CashFlowTrendsResponseDto;
6336
- type ReportingControllerGenerateSnapshotData = {
6337
- /**
6338
- * Region code for tenant context
6339
- */
6340
- region: 'cn' | 'us' | 'de' | 'gb';
6341
- /**
6342
- * Optional date (defaults to today)
6343
- */
6344
- requestBody: GenerateSnapshotBody;
6345
- };
6346
- type ReportingControllerGenerateSnapshotResponse = GenerateSnapshotResponse;
6347
- type ReportingControllerBackfillSnapshotsData = {
6348
- /**
6349
- * Region code for tenant context
6350
- */
6351
- region: 'cn' | 'us' | 'de' | 'gb';
6352
- requestBody: BackfillSnapshotsBody;
6353
- };
6354
- type ReportingControllerBackfillSnapshotsResponse = BackfillSnapshotsResponse;
6355
6788
  type ApiKeysControllerCreateApiKeyResponse = unknown;
6356
6789
  type AuthControllerAccessTokenLoginData = {
6357
6790
  requestBody: AnonymousLoginDto;
6358
6791
  };
6359
- type AuthControllerAccessTokenLoginResponse = unknown;
6792
+ type AuthControllerAccessTokenLoginResponse = AnonymousLoginResponseDto;
6360
6793
  type CacheControllerFlushCacheResponse = unknown;
6361
6794
  type ExchangeRateControllerGetExchangeRateData = {
6362
6795
  /**
@@ -6383,6 +6816,29 @@ type HealthControllerResetCircuitBreakerData = {
6383
6816
  type HealthControllerResetCircuitBreakerResponse = unknown;
6384
6817
  type HealthControllerGetMetricsResponse = unknown;
6385
6818
  type InfoControllerGetInfoResponse = unknown;
6819
+ type SymbolControllerSearchData = {
6820
+ /**
6821
+ * Filter by OpenBB asset_type (e.g. stock, etf)
6822
+ */
6823
+ assetType?: string;
6824
+ /**
6825
+ * Filter by exchange code (e.g. US, HK, SS, SZ)
6826
+ */
6827
+ exchange?: string;
6828
+ /**
6829
+ * Maximum number of results (clamped 1..50)
6830
+ */
6831
+ limit?: number;
6832
+ /**
6833
+ * Search term — matched against symbol and instrument name. Empty string returns [].
6834
+ */
6835
+ q: string;
6836
+ };
6837
+ type SymbolControllerSearchResponse = Array<SymbolSearchResultDto>;
6838
+ type SymbolControllerGetQuoteData = {
6839
+ symbol: string;
6840
+ };
6841
+ type SymbolControllerGetQuoteResponse = SymbolQuoteDto;
6386
6842
  type $OpenApiTs = {
6387
6843
  '/api/v1/{region}/bean/accounts': {
6388
6844
  post: {
@@ -6447,7 +6903,7 @@ type $OpenApiTs = {
6447
6903
  */
6448
6904
  404: unknown;
6449
6905
  /**
6450
- * Account has transactions and cannot be deleted
6906
+ * Account has active transactions and cannot be deleted
6451
6907
  */
6452
6908
  409: unknown;
6453
6909
  };
@@ -7446,403 +7902,486 @@ type $OpenApiTs = {
7446
7902
  req: ForecastControllerGetForecastData;
7447
7903
  res: {
7448
7904
  /**
7449
- * Forecast retrieved successfully
7905
+ * Forecast retrieved successfully
7906
+ */
7907
+ 200: ForecastResponseDto;
7908
+ };
7909
+ };
7910
+ };
7911
+ '/api/v1/{region}/reporting/portfolio/trends': {
7912
+ get: {
7913
+ req: ReportingControllerGetPortfolioTrendsData;
7914
+ res: {
7915
+ /**
7916
+ * Trends retrieved successfully
7917
+ */
7918
+ 200: PortfolioTrendsResponseDto;
7919
+ /**
7920
+ * User not authenticated
7921
+ */
7922
+ 401: unknown;
7923
+ };
7924
+ };
7925
+ };
7926
+ '/api/v1/{region}/reporting/cash-flow/trends': {
7927
+ get: {
7928
+ req: ReportingControllerGetCashFlowTrendsData;
7929
+ res: {
7930
+ /**
7931
+ * Cash-flow trends retrieved successfully
7932
+ */
7933
+ 200: CashFlowTrendsResponseDto;
7934
+ /**
7935
+ * User not authenticated
7936
+ */
7937
+ 401: unknown;
7938
+ };
7939
+ };
7940
+ };
7941
+ '/api/v1/{region}/reporting/snapshots/generate': {
7942
+ post: {
7943
+ req: ReportingControllerGenerateSnapshotData;
7944
+ res: {
7945
+ /**
7946
+ * Snapshot generated successfully
7947
+ */
7948
+ 200: GenerateSnapshotResponse;
7949
+ /**
7950
+ * Invalid date format
7951
+ */
7952
+ 400: unknown;
7953
+ /**
7954
+ * User not authenticated
7450
7955
  */
7451
- 200: ForecastResponseDto;
7956
+ 401: unknown;
7452
7957
  };
7453
7958
  };
7454
7959
  };
7455
- '/api/v1/{region}/bean/transaction-rules': {
7960
+ '/api/v1/{region}/reporting/snapshots/backfill': {
7456
7961
  post: {
7457
- req: TransactionRuleControllerCreateData;
7962
+ req: ReportingControllerBackfillSnapshotsData;
7458
7963
  res: {
7459
7964
  /**
7460
- * Rule updated successfully (upsert mode)
7965
+ * Backfill completed successfully
7461
7966
  */
7462
- 200: TransactionRuleResponseDto;
7967
+ 200: BackfillSnapshotsResponse;
7463
7968
  /**
7464
- * Validation failed
7969
+ * Invalid date format or range
7465
7970
  */
7466
- 400: ApiProblemResponseDto;
7971
+ 400: unknown;
7467
7972
  /**
7468
- * Unauthorized
7973
+ * User not authenticated
7469
7974
  */
7470
- 401: ApiProblemResponseDto;
7975
+ 401: unknown;
7471
7976
  /**
7472
- * Resource conflict - another process is updating this rule
7977
+ * Backfill already in progress for this user
7473
7978
  */
7474
- 409: ApiProblemResponseDto;
7979
+ 409: unknown;
7475
7980
  };
7476
7981
  };
7477
- get: {
7478
- req: TransactionRuleControllerListData;
7982
+ };
7983
+ '/api/v1/users': {
7984
+ delete: {
7985
+ req: UserControllerDeleteOwnUserData;
7479
7986
  res: {
7480
7987
  /**
7481
- * List of rules
7988
+ * User deleted successfully
7482
7989
  */
7483
- 200: TransactionRuleListResponseDto;
7990
+ 204: void;
7484
7991
  /**
7485
- * Unauthorized
7992
+ * Invalid access token
7486
7993
  */
7487
- 401: ApiProblemResponseDto;
7994
+ 403: unknown;
7488
7995
  };
7489
7996
  };
7490
- };
7491
- '/api/v1/{region}/bean/transaction-rules/validate': {
7492
- post: {
7493
- req: TransactionRuleControllerValidateData;
7997
+ get: {
7998
+ req: UserControllerGetUserData;
7494
7999
  res: {
7495
8000
  /**
7496
- * Validation result
7497
- */
7498
- 200: ValidateRuleResponseDto;
7499
- /**
7500
- * Validation failed
7501
- */
7502
- 400: ApiProblemResponseDto;
7503
- /**
7504
- * Unauthorized
8001
+ * User retrieved successfully
7505
8002
  */
7506
- 401: ApiProblemResponseDto;
8003
+ 200: UserResponseDto;
7507
8004
  };
7508
8005
  };
7509
- };
7510
- '/api/v1/{region}/bean/transaction-rules/bulk': {
7511
8006
  post: {
7512
- req: TransactionRuleControllerBulkCreateData;
8007
+ req: UserControllerSignupUserData;
7513
8008
  res: {
7514
8009
  /**
7515
- * Bulk create completed
8010
+ * User created successfully
7516
8011
  */
7517
- 201: BulkCreateRulesResponseDto;
8012
+ 201: SignupResponseDto;
7518
8013
  /**
7519
- * Invalid bulk create data
8014
+ * Invalid Turnstile token (when Turnstile is enabled)
7520
8015
  */
7521
- 400: ApiProblemResponseDto;
8016
+ 400: unknown;
7522
8017
  /**
7523
- * Unauthorized
8018
+ * User signup is disabled
7524
8019
  */
7525
- 401: ApiProblemResponseDto;
8020
+ 403: unknown;
7526
8021
  };
7527
8022
  };
7528
8023
  };
7529
- '/api/v1/{region}/bean/transaction-rules/export/{format}': {
7530
- get: {
7531
- req: TransactionRuleControllerExportData;
8024
+ '/api/v1/users/{id}': {
8025
+ delete: {
8026
+ req: UserControllerDeleteUserData;
7532
8027
  res: {
7533
8028
  /**
7534
- * Exported rules
7535
- */
7536
- 200: ExportRulesResponseDto;
7537
- /**
7538
- * Unsupported format
8029
+ * User deleted successfully
7539
8030
  */
7540
- 400: ApiProblemResponseDto;
8031
+ 204: void;
7541
8032
  /**
7542
- * Unauthorized
8033
+ * Cannot delete own account or insufficient permissions
7543
8034
  */
7544
- 401: ApiProblemResponseDto;
8035
+ 403: unknown;
7545
8036
  };
7546
8037
  };
7547
8038
  };
7548
- '/api/v1/{region}/bean/transaction-rules/statistics/{period}': {
8039
+ '/api/v1/users/{id}/info': {
7549
8040
  get: {
7550
- req: TransactionRuleControllerGetStatisticsData;
8041
+ req: UserControllerGetUserInfoData;
7551
8042
  res: {
7552
8043
  /**
7553
- * Rule statistics
8044
+ * User info retrieved successfully
7554
8045
  */
7555
- 200: RuleStatisticsResponseDto;
8046
+ 200: unknown;
7556
8047
  /**
7557
- * Unauthorized
8048
+ * Cannot access other user info without admin permission
7558
8049
  */
7559
- 401: ApiProblemResponseDto;
8050
+ 403: unknown;
7560
8051
  };
7561
8052
  };
7562
8053
  };
7563
- '/api/v1/{region}/bean/transaction-rules/{ruleId}': {
7564
- get: {
7565
- req: TransactionRuleControllerGetDetailData;
8054
+ '/api/v1/users/setting': {
8055
+ put: {
8056
+ req: UserControllerUpdateUserSettingData;
7566
8057
  res: {
7567
8058
  /**
7568
- * Rule details
7569
- */
7570
- 200: TransactionRuleResponseDto;
7571
- /**
7572
- * Unauthorized
8059
+ * Settings updated successfully
7573
8060
  */
7574
- 401: ApiProblemResponseDto;
8061
+ 200: unknown;
7575
8062
  /**
7576
- * Forbidden - not owner of rule
8063
+ * Insufficient permissions
7577
8064
  */
7578
- 403: ApiProblemResponseDto;
8065
+ 403: unknown;
8066
+ };
8067
+ };
8068
+ };
8069
+ '/api/v1/users/settings-by-page': {
8070
+ get: {
8071
+ req: UserControllerGetAllUserSettingsByPageData;
8072
+ res: {
7579
8073
  /**
7580
- * Rule not found
8074
+ * Settings list retrieved successfully
7581
8075
  */
7582
- 404: ApiProblemResponseDto;
8076
+ 200: unknown;
7583
8077
  };
7584
8078
  };
7585
- put: {
7586
- req: TransactionRuleControllerUpdateData;
8079
+ };
8080
+ '/api/v1/users/asset-liability-summary': {
8081
+ get: {
7587
8082
  res: {
7588
8083
  /**
7589
- * Rule updated successfully
8084
+ * Summary retrieved successfully
7590
8085
  */
7591
- 200: TransactionRuleResponseDto;
8086
+ 200: unknown;
8087
+ };
8088
+ };
8089
+ };
8090
+ '/api/v1/admin/properties': {
8091
+ get: {
8092
+ res: {
7592
8093
  /**
7593
- * Validation failed
8094
+ * Properties retrieved successfully
7594
8095
  */
7595
- 400: ApiProblemResponseDto;
8096
+ 200: unknown;
7596
8097
  /**
7597
8098
  * Unauthorized
7598
8099
  */
7599
- 401: ApiProblemResponseDto;
7600
- /**
7601
- * Forbidden - not owner of rule
7602
- */
7603
- 403: ApiProblemResponseDto;
7604
- /**
7605
- * Rule not found
7606
- */
7607
- 404: ApiProblemResponseDto;
8100
+ 401: unknown;
7608
8101
  /**
7609
- * Resource conflict - rule is being modified by another process
8102
+ * Forbidden - insufficient permissions
7610
8103
  */
7611
- 409: ApiProblemResponseDto;
8104
+ 403: unknown;
7612
8105
  };
7613
8106
  };
7614
- delete: {
7615
- req: TransactionRuleControllerDeleteData;
8107
+ };
8108
+ '/api/v1/admin/properties/{key}': {
8109
+ get: {
8110
+ req: PropertyControllerGetByKeyData;
7616
8111
  res: {
7617
8112
  /**
7618
- * Rule deleted successfully
8113
+ * Property retrieved successfully
7619
8114
  */
7620
- 204: void;
8115
+ 200: unknown;
7621
8116
  /**
7622
8117
  * Unauthorized
7623
8118
  */
7624
- 401: ApiProblemResponseDto;
7625
- /**
7626
- * Forbidden - not owner of rule
7627
- */
7628
- 403: ApiProblemResponseDto;
8119
+ 401: unknown;
7629
8120
  /**
7630
- * Rule not found
8121
+ * Forbidden - insufficient permissions
7631
8122
  */
7632
- 404: ApiProblemResponseDto;
8123
+ 403: unknown;
7633
8124
  /**
7634
- * Resource conflict - rule is being modified by another process
8125
+ * Property not found
7635
8126
  */
7636
- 409: ApiProblemResponseDto;
8127
+ 404: unknown;
7637
8128
  };
7638
8129
  };
7639
- };
7640
- '/api/v1/{region}/bean/transaction-rules/{ruleId}/test': {
7641
- post: {
7642
- req: TransactionRuleControllerTestData;
8130
+ put: {
8131
+ req: PropertyControllerUpdateData;
7643
8132
  res: {
7644
8133
  /**
7645
- * Test result
8134
+ * Property updated successfully
7646
8135
  */
7647
- 200: TestRuleResponseDto;
8136
+ 200: unknown;
7648
8137
  /**
7649
8138
  * Unauthorized
7650
8139
  */
7651
- 401: ApiProblemResponseDto;
7652
- /**
7653
- * Forbidden - not owner of rule
7654
- */
7655
- 403: ApiProblemResponseDto;
8140
+ 401: unknown;
7656
8141
  /**
7657
- * Rule not found
8142
+ * Forbidden - insufficient permissions
7658
8143
  */
7659
- 404: ApiProblemResponseDto;
8144
+ 403: unknown;
7660
8145
  };
7661
8146
  };
7662
- };
7663
- '/api/v1/users': {
7664
8147
  delete: {
7665
- req: UserControllerDeleteOwnUserData;
8148
+ req: PropertyControllerDeleteData;
7666
8149
  res: {
7667
8150
  /**
7668
- * User deleted successfully
8151
+ * Property deleted successfully
7669
8152
  */
7670
8153
  204: void;
7671
8154
  /**
7672
- * Invalid access token
8155
+ * Unauthorized
8156
+ */
8157
+ 401: unknown;
8158
+ /**
8159
+ * Forbidden - insufficient permissions
7673
8160
  */
7674
8161
  403: unknown;
7675
- };
7676
- };
7677
- get: {
7678
- req: UserControllerGetUserData;
7679
- res: {
7680
8162
  /**
7681
- * User retrieved successfully
8163
+ * Property not found
7682
8164
  */
7683
- 200: unknown;
8165
+ 404: unknown;
7684
8166
  };
7685
8167
  };
8168
+ };
8169
+ '/api/v1/{region}/bean/transaction-rules': {
7686
8170
  post: {
7687
- req: UserControllerSignupUserData;
8171
+ req: TransactionRuleControllerCreateData;
7688
8172
  res: {
7689
8173
  /**
7690
- * User created successfully
8174
+ * Rule updated successfully (upsert mode)
7691
8175
  */
7692
- 201: unknown;
8176
+ 200: TransactionRuleResponseDto;
7693
8177
  /**
7694
- * Invalid Turnstile token (when Turnstile is enabled)
8178
+ * Validation failed
7695
8179
  */
7696
- 400: unknown;
8180
+ 400: ApiProblemResponseDto;
7697
8181
  /**
7698
- * User signup is disabled
8182
+ * Unauthorized
7699
8183
  */
7700
- 403: unknown;
8184
+ 401: ApiProblemResponseDto;
8185
+ /**
8186
+ * Resource conflict - another process is updating this rule
8187
+ */
8188
+ 409: ApiProblemResponseDto;
7701
8189
  };
7702
8190
  };
7703
- };
7704
- '/api/v1/users/{id}': {
7705
- delete: {
7706
- req: UserControllerDeleteUserData;
8191
+ get: {
8192
+ req: TransactionRuleControllerListData;
7707
8193
  res: {
7708
8194
  /**
7709
- * User deleted successfully
8195
+ * List of rules
7710
8196
  */
7711
- 204: void;
8197
+ 200: TransactionRuleListResponseDto;
7712
8198
  /**
7713
- * Cannot delete own account or insufficient permissions
8199
+ * Unauthorized
7714
8200
  */
7715
- 403: unknown;
8201
+ 401: ApiProblemResponseDto;
7716
8202
  };
7717
8203
  };
7718
8204
  };
7719
- '/api/v1/users/{id}/info': {
7720
- get: {
7721
- req: UserControllerGetUserInfoData;
8205
+ '/api/v1/{region}/bean/transaction-rules/validate': {
8206
+ post: {
8207
+ req: TransactionRuleControllerValidateData;
7722
8208
  res: {
7723
8209
  /**
7724
- * User info retrieved successfully
8210
+ * Validation result
7725
8211
  */
7726
- 200: unknown;
8212
+ 200: ValidateRuleResponseDto;
7727
8213
  /**
7728
- * Cannot access other user info without admin permission
8214
+ * Validation failed
7729
8215
  */
7730
- 403: unknown;
8216
+ 400: ApiProblemResponseDto;
8217
+ /**
8218
+ * Unauthorized
8219
+ */
8220
+ 401: ApiProblemResponseDto;
7731
8221
  };
7732
8222
  };
7733
8223
  };
7734
- '/api/v1/users/setting': {
7735
- put: {
7736
- req: UserControllerUpdateUserSettingData;
8224
+ '/api/v1/{region}/bean/transaction-rules/bulk': {
8225
+ post: {
8226
+ req: TransactionRuleControllerBulkCreateData;
7737
8227
  res: {
7738
8228
  /**
7739
- * Settings updated successfully
8229
+ * Bulk create completed
7740
8230
  */
7741
- 200: unknown;
8231
+ 201: BulkCreateRulesResponseDto;
7742
8232
  /**
7743
- * Insufficient permissions
8233
+ * Invalid bulk create data
7744
8234
  */
7745
- 403: unknown;
8235
+ 400: ApiProblemResponseDto;
8236
+ /**
8237
+ * Unauthorized
8238
+ */
8239
+ 401: ApiProblemResponseDto;
7746
8240
  };
7747
8241
  };
7748
8242
  };
7749
- '/api/v1/users/settings-by-page': {
8243
+ '/api/v1/{region}/bean/transaction-rules/export/{format}': {
7750
8244
  get: {
7751
- req: UserControllerGetAllUserSettingsByPageData;
8245
+ req: TransactionRuleControllerExportData;
7752
8246
  res: {
7753
8247
  /**
7754
- * Settings list retrieved successfully
8248
+ * Exported rules
7755
8249
  */
7756
- 200: unknown;
8250
+ 200: ExportRulesResponseDto;
8251
+ /**
8252
+ * Unsupported format
8253
+ */
8254
+ 400: ApiProblemResponseDto;
8255
+ /**
8256
+ * Unauthorized
8257
+ */
8258
+ 401: ApiProblemResponseDto;
7757
8259
  };
7758
8260
  };
7759
8261
  };
7760
- '/api/v1/users/asset-liability-summary': {
8262
+ '/api/v1/{region}/bean/transaction-rules/statistics/{period}': {
7761
8263
  get: {
8264
+ req: TransactionRuleControllerGetStatisticsData;
7762
8265
  res: {
7763
8266
  /**
7764
- * Summary retrieved successfully
8267
+ * Rule statistics
7765
8268
  */
7766
- 200: unknown;
8269
+ 200: RuleStatisticsResponseDto;
8270
+ /**
8271
+ * Unauthorized
8272
+ */
8273
+ 401: ApiProblemResponseDto;
7767
8274
  };
7768
8275
  };
7769
8276
  };
7770
- '/api/v1/admin/properties': {
8277
+ '/api/v1/{region}/bean/transaction-rules/{ruleId}': {
7771
8278
  get: {
8279
+ req: TransactionRuleControllerGetDetailData;
7772
8280
  res: {
7773
8281
  /**
7774
- * Properties retrieved successfully
8282
+ * Rule details
7775
8283
  */
7776
- 200: unknown;
8284
+ 200: TransactionRuleResponseDto;
7777
8285
  /**
7778
8286
  * Unauthorized
7779
8287
  */
7780
- 401: unknown;
8288
+ 401: ApiProblemResponseDto;
7781
8289
  /**
7782
- * Forbidden - insufficient permissions
8290
+ * Forbidden - not owner of rule
7783
8291
  */
7784
- 403: unknown;
8292
+ 403: ApiProblemResponseDto;
8293
+ /**
8294
+ * Rule not found
8295
+ */
8296
+ 404: ApiProblemResponseDto;
7785
8297
  };
7786
8298
  };
7787
- };
7788
- '/api/v1/admin/properties/{key}': {
7789
- get: {
7790
- req: PropertyControllerGetByKeyData;
8299
+ put: {
8300
+ req: TransactionRuleControllerUpdateData;
7791
8301
  res: {
7792
8302
  /**
7793
- * Property retrieved successfully
8303
+ * Rule updated successfully
7794
8304
  */
7795
- 200: unknown;
8305
+ 200: TransactionRuleResponseDto;
8306
+ /**
8307
+ * Validation failed
8308
+ */
8309
+ 400: ApiProblemResponseDto;
7796
8310
  /**
7797
8311
  * Unauthorized
7798
8312
  */
7799
- 401: unknown;
8313
+ 401: ApiProblemResponseDto;
7800
8314
  /**
7801
- * Forbidden - insufficient permissions
8315
+ * Forbidden - not owner of rule
7802
8316
  */
7803
- 403: unknown;
8317
+ 403: ApiProblemResponseDto;
7804
8318
  /**
7805
- * Property not found
8319
+ * Rule not found
7806
8320
  */
7807
- 404: unknown;
8321
+ 404: ApiProblemResponseDto;
8322
+ /**
8323
+ * Resource conflict - rule is being modified by another process
8324
+ */
8325
+ 409: ApiProblemResponseDto;
7808
8326
  };
7809
8327
  };
7810
- put: {
7811
- req: PropertyControllerUpdateData;
8328
+ delete: {
8329
+ req: TransactionRuleControllerDeleteData;
7812
8330
  res: {
7813
8331
  /**
7814
- * Property updated successfully
8332
+ * Rule deleted successfully
7815
8333
  */
7816
- 200: unknown;
8334
+ 204: void;
7817
8335
  /**
7818
8336
  * Unauthorized
7819
8337
  */
7820
- 401: unknown;
8338
+ 401: ApiProblemResponseDto;
7821
8339
  /**
7822
- * Forbidden - insufficient permissions
8340
+ * Forbidden - not owner of rule
7823
8341
  */
7824
- 403: unknown;
8342
+ 403: ApiProblemResponseDto;
8343
+ /**
8344
+ * Rule not found
8345
+ */
8346
+ 404: ApiProblemResponseDto;
8347
+ /**
8348
+ * Resource conflict - rule is being modified by another process
8349
+ */
8350
+ 409: ApiProblemResponseDto;
7825
8351
  };
7826
8352
  };
7827
- delete: {
7828
- req: PropertyControllerDeleteData;
8353
+ };
8354
+ '/api/v1/{region}/bean/transaction-rules/{ruleId}/test': {
8355
+ post: {
8356
+ req: TransactionRuleControllerTestData;
7829
8357
  res: {
7830
8358
  /**
7831
- * Property deleted successfully
8359
+ * Test result
7832
8360
  */
7833
- 204: void;
8361
+ 200: TestRuleResponseDto;
7834
8362
  /**
7835
8363
  * Unauthorized
7836
8364
  */
7837
- 401: unknown;
8365
+ 401: ApiProblemResponseDto;
7838
8366
  /**
7839
- * Forbidden - insufficient permissions
8367
+ * Forbidden - not owner of rule
7840
8368
  */
7841
- 403: unknown;
8369
+ 403: ApiProblemResponseDto;
7842
8370
  /**
7843
- * Property not found
8371
+ * Rule not found
7844
8372
  */
7845
- 404: unknown;
8373
+ 404: ApiProblemResponseDto;
8374
+ };
8375
+ };
8376
+ };
8377
+ '/api/v1/{region}/bean/categories': {
8378
+ get: {
8379
+ req: CategoryCatalogControllerListData;
8380
+ res: {
8381
+ /**
8382
+ * Category catalog retrieved successfully
8383
+ */
8384
+ 200: CategoryCatalogListResponseDto;
7846
8385
  };
7847
8386
  };
7848
8387
  };
@@ -8385,11 +8924,12 @@ type $OpenApiTs = {
8385
8924
  };
8386
8925
  '/api/v1/bean/platforms/list': {
8387
8926
  get: {
8927
+ req: PlatformControllerGetPlatformListData;
8388
8928
  res: {
8389
8929
  /**
8390
8930
  * List of platforms with user binding status
8391
8931
  */
8392
- 200: unknown;
8932
+ 200: Array<PlatformListItemDto>;
8393
8933
  };
8394
8934
  };
8395
8935
  };
@@ -8398,9 +8938,9 @@ type $OpenApiTs = {
8398
8938
  req: PlatformControllerMatchPlatformsData;
8399
8939
  res: {
8400
8940
  /**
8401
- * List of matching platforms with suggested segment names
8941
+ * Matching platforms with overall match type and truncation flag
8402
8942
  */
8403
- 200: unknown;
8943
+ 200: PlatformMatchResponseDto;
8404
8944
  };
8405
8945
  };
8406
8946
  };
@@ -8519,78 +9059,6 @@ type $OpenApiTs = {
8519
9059
  };
8520
9060
  };
8521
9061
  };
8522
- '/api/v1/{region}/reporting/portfolio/trends': {
8523
- get: {
8524
- req: ReportingControllerGetPortfolioTrendsData;
8525
- res: {
8526
- /**
8527
- * Trends retrieved successfully
8528
- */
8529
- 200: PortfolioTrendsResponseDto;
8530
- /**
8531
- * User not authenticated
8532
- */
8533
- 401: unknown;
8534
- };
8535
- };
8536
- };
8537
- '/api/v1/{region}/reporting/cash-flow/trends': {
8538
- get: {
8539
- req: ReportingControllerGetCashFlowTrendsData;
8540
- res: {
8541
- /**
8542
- * Cash-flow trends retrieved successfully
8543
- */
8544
- 200: CashFlowTrendsResponseDto;
8545
- /**
8546
- * User not authenticated
8547
- */
8548
- 401: unknown;
8549
- };
8550
- };
8551
- };
8552
- '/api/v1/{region}/reporting/snapshots/generate': {
8553
- post: {
8554
- req: ReportingControllerGenerateSnapshotData;
8555
- res: {
8556
- /**
8557
- * Snapshot generated successfully
8558
- */
8559
- 200: GenerateSnapshotResponse;
8560
- /**
8561
- * Invalid date format
8562
- */
8563
- 400: unknown;
8564
- /**
8565
- * User not authenticated
8566
- */
8567
- 401: unknown;
8568
- };
8569
- };
8570
- };
8571
- '/api/v1/{region}/reporting/snapshots/backfill': {
8572
- post: {
8573
- req: ReportingControllerBackfillSnapshotsData;
8574
- res: {
8575
- /**
8576
- * Backfill completed successfully
8577
- */
8578
- 200: BackfillSnapshotsResponse;
8579
- /**
8580
- * Invalid date format or range
8581
- */
8582
- 400: unknown;
8583
- /**
8584
- * User not authenticated
8585
- */
8586
- 401: unknown;
8587
- /**
8588
- * Backfill already in progress for this user
8589
- */
8590
- 409: unknown;
8591
- };
8592
- };
8593
- };
8594
9062
  '/api/v1/auth/api-keys': {
8595
9063
  post: {
8596
9064
  res: {
@@ -8612,7 +9080,7 @@ type $OpenApiTs = {
8612
9080
  /**
8613
9081
  * Login successful
8614
9082
  */
8615
- 200: unknown;
9083
+ 200: AnonymousLoginResponseDto;
8616
9084
  /**
8617
9085
  * Invalid access token
8618
9086
  */
@@ -8759,6 +9227,32 @@ type $OpenApiTs = {
8759
9227
  };
8760
9228
  };
8761
9229
  };
9230
+ '/api/v1/market/symbols/search': {
9231
+ get: {
9232
+ req: SymbolControllerSearchData;
9233
+ res: {
9234
+ /**
9235
+ * Ranked search results
9236
+ */
9237
+ 200: Array<SymbolSearchResultDto>;
9238
+ };
9239
+ };
9240
+ };
9241
+ '/api/v1/market/symbols/{symbol}/quote': {
9242
+ get: {
9243
+ req: SymbolControllerGetQuoteData;
9244
+ res: {
9245
+ /**
9246
+ * Symbol quote
9247
+ */
9248
+ 200: SymbolQuoteDto;
9249
+ /**
9250
+ * Symbol not found in the openbb catalog
9251
+ */
9252
+ 404: unknown;
9253
+ };
9254
+ };
9255
+ };
8762
9256
  };
8763
9257
 
8764
9258
  declare class BeanAccountsService {
@@ -8810,7 +9304,7 @@ declare class BeanAccountsService {
8810
9304
  static accountControllerUpdate(data: AccountControllerUpdateData): CancelablePromise<AccountControllerUpdateResponse>;
8811
9305
  /**
8812
9306
  * Delete account
8813
- * Deletes an account (only if no transactions)
9307
+ * Deletes an account (only if no active transactions; voided/superseded residual postings are cleaned up)
8814
9308
  * @param data The data for the request.
8815
9309
  * @param data.id Account UUID
8816
9310
  * @param data.region Region code for tenant context
@@ -9182,4 +9676,4 @@ type OpenAPIConfig = {
9182
9676
  };
9183
9677
  declare const OpenAPI: OpenAPIConfig;
9184
9678
 
9185
- 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 PortfolioTrendsResponseDto, type PostingDetailDto, type PostingResponseDto, type PriceControllerBulkCreateData, type PriceControllerBulkCreateResponse, type PriceControllerCreateData, type PriceControllerCreateResponse, type PriceControllerDeleteData, type PriceControllerDeleteResponse, type PriceControllerFindAllData, type PriceControllerFindAllResponse, type PriceControllerFindOneData, type PriceControllerFindOneResponse, type PriceControllerUpdateData, type PriceControllerUpdateResponse, type PriceListResponseDto, type PriceResponseDto, type ProcessNlpDto, type PropertyControllerDeleteData, type PropertyControllerDeleteResponse, type PropertyControllerGetAllResponse, type PropertyControllerGetByKeyData, type PropertyControllerGetByKeyResponse, type PropertyControllerUpdateData, type PropertyControllerUpdateResponse, type ProviderSyncConfigDto, type ProviderSyncControllerGetSupportedProvidersData, type ProviderSyncControllerGetSupportedProvidersResponse, type ProviderSyncControllerIsProviderSupportedData, type ProviderSyncControllerIsProviderSupportedResponse, type ProviderSyncControllerSyncData, type ProviderSyncControllerSyncResponse, type ProviderSyncDto, type ProviderSyncResponseDto, ProviderSyncService, type ReconciliationComputeResultDto, type ReconciliationControllerAssertData, type ReconciliationControllerAssertResponse, type ReconciliationControllerComputeData, type ReconciliationControllerComputeResponse, type ReconciliationControllerHistoryData, type ReconciliationControllerHistoryResponse, type ReconciliationControllerPadData, type ReconciliationControllerPadResponse, type ReconciliationRecordDto, type RecurringMatchInfoDto, type RecurringRuleControllerCreateData, type RecurringRuleControllerCreateFromTransactionData, type RecurringRuleControllerCreateFromTransactionResponse, type RecurringRuleControllerCreateResponse, type RecurringRuleControllerDeleteData, type RecurringRuleControllerDeleteResponse, type RecurringRuleControllerFindAllData, type RecurringRuleControllerFindAllResponse, type RecurringRuleControllerFindOneData, type RecurringRuleControllerFindOneResponse, type RecurringRuleControllerGetWithStatsData, type RecurringRuleControllerGetWithStatsResponse, type RecurringRuleControllerUpdateData, type RecurringRuleControllerUpdateResponse, type RecurringRuleResponseDto, type RecurringRuleWithStatsResponseDto, type RecurringSuggestionDto, type RegionConfigDto, type RegionInfoDto, type RegionsMetadataResponseDto, type ReopenAccountDto, type ReportingControllerBackfillSnapshotsData, type ReportingControllerBackfillSnapshotsResponse, type ReportingControllerGenerateSnapshotData, type ReportingControllerGenerateSnapshotResponse, type ReportingControllerGetCashFlowTrendsData, type ReportingControllerGetCashFlowTrendsResponse, type ReportingControllerGetPortfolioTrendsData, type ReportingControllerGetPortfolioTrendsResponse, type ResolveResultDto, type ResolveReviewDto, type ReviewControllerBatchResolveData, type ReviewControllerBatchResolveResponse, type ReviewControllerFindAllData, type ReviewControllerFindAllResponse, type ReviewControllerFindOneData, type ReviewControllerFindOneResponse, type ReviewControllerGetStatsData, type ReviewControllerGetStatsResponse, type ReviewControllerResolveData, type ReviewControllerResolveResponse, type ReviewControllerUndoData, type ReviewControllerUndoResponse, type ReviewDetailDto, type ReviewItemPreviewDto, type ReviewListResponseDto, type ReviewStatsDto, type ReviewSummaryDto, type RuleStatisticsResponseDto, type SignupDto, type SupportedProvidersResponseDto, type TagSuggestionDto, type TagSuggestionsResponseDto, type TelemetryControllerGetCoverageMetricsData, type TelemetryControllerGetCoverageMetricsResponse, type TelemetryControllerReportCoverageMissData, type TelemetryControllerReportCoverageMissResponse, type TelemetryControllerReportTelemetryData, type TelemetryControllerReportTelemetryResponse, type TemplateMetadataDto, type TemplateMetadataResponseDto, type TestRuleDto, type TestRuleResponseDto, type TimeSeriesPointDto, type TransactionControllerCorrectData, type TransactionControllerCorrectResponse, type TransactionControllerCreateBatchData, type TransactionControllerCreateBatchResponse, type TransactionControllerCreateData, type TransactionControllerCreateResponse, type TransactionControllerDeleteData, type TransactionControllerDeleteResponse, type TransactionControllerGetDetailData, type TransactionControllerGetDetailResponse, type TransactionControllerListData, type TransactionControllerListResponse, type TransactionControllerSuggestTagsData, type TransactionControllerSuggestTagsResponse, type TransactionControllerUpdateData, type TransactionControllerUpdateResponse, type TransactionDetailDto, type TransactionListResponseDto, type TransactionListSummaryDto, type TransactionResponseDto, type TransactionRuleControllerBulkCreateData, type TransactionRuleControllerBulkCreateResponse, type TransactionRuleControllerCreateData, type TransactionRuleControllerCreateResponse, type TransactionRuleControllerDeleteData, type TransactionRuleControllerDeleteResponse, type TransactionRuleControllerExportData, type TransactionRuleControllerExportResponse, type TransactionRuleControllerGetDetailData, type TransactionRuleControllerGetDetailResponse, type TransactionRuleControllerGetStatisticsData, type TransactionRuleControllerGetStatisticsResponse, type TransactionRuleControllerListData, type TransactionRuleControllerListResponse, type TransactionRuleControllerTestData, type TransactionRuleControllerTestResponse, type TransactionRuleControllerUpdateData, type TransactionRuleControllerUpdateResponse, type TransactionRuleControllerValidateData, type TransactionRuleControllerValidateResponse, type TransactionRuleListResponseDto, type TransactionRuleResponseDto, type TransactionSummaryDto, type TrendSummaryDto, type UncoveredFormatMissDto, type UndoResultDto, type UpdateAccountDto, type UpdateBeanEventDto, type UpdateBeanPriceDto, type UpdateCommodityDto, type UpdateConfigDataDto, type UpdateImporterConfigDto, type UpdateMapperDefaultsDto, type UpdatePayeeDto, type UpdatePayeeProfileDto, type UpdatePlatformDto, type UpdatePropertyDto, type UpdateRecurringRuleDto, type UpdateTransactionDto, type UpdateTransactionRuleDto, type UpdateUserSettingDto, type UserControllerDeleteOwnUserData, type UserControllerDeleteOwnUserResponse, type UserControllerDeleteUserData, type UserControllerDeleteUserResponse, type UserControllerGetAllUserSettingsByPageData, type UserControllerGetAllUserSettingsByPageResponse, type UserControllerGetAssetLiabilitySummaryResponse, type UserControllerGetUserData, type UserControllerGetUserInfoData, type UserControllerGetUserInfoResponse, type UserControllerGetUserResponse, type UserControllerSignupUserData, type UserControllerSignupUserResponse, type UserControllerUpdateUserSettingData, type UserControllerUpdateUserSettingResponse, type ValidateRuleDto, type ValidateRuleResponseDto, type VersionedConfigDto, type action, type action2, type assetClass, type assetSubType, type bookingMethod, type branchType, type category, type chartToken, type colorScheme, type confidenceLevel, type conflictStrategy, type dataSource, type equitySubType, type flag, type flag2, type frequency, type importerId, type intent, type investmentAction, type learningSource, type liabilitySubType, type matchLogic, type method, type mode, type paymentSource, type period, type provider, type source, type source2, type source3, type status, type status2, type status3, type status4, type suggestedAction, type suggestedFrequency, type type, type type2, type type3, type type4, type value, type viewMode };
9679
+ 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 CategoryCatalogControllerListData, type CategoryCatalogControllerListResponse, type CategoryCatalogEntryDto, type CategoryCatalogListResponseDto, type CategoryGroupDto, type ClientParsedDataDto, 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 PlatformControllerGetPlatformListData, 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 UserResponseDto, type UserSettingsResponseDto, 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 productCategory, type provider, type role, type scenario, 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 };