@firela/api-types 0.0.0-canary.5c1ed455 → 0.0.0-canary.5fa96f73
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 +555 -48
- package/dist/index.d.ts +555 -48
- package/dist/index.js +3 -1
- package/dist/index.mjs +3 -1
- package/package.json +1 -1
- package/src/generated/schemas.gen.ts +501 -73
- package/src/generated/services.gen.ts +262 -1
- package/src/generated/types.gen.ts +585 -50
package/dist/index.d.mts
CHANGED
|
@@ -779,6 +779,48 @@ type flag2 = 'CLEARED' | 'PENDING' | 'PADDING' | 'SUMMARIZE' | 'TRANSFER' | 'CON
|
|
|
779
779
|
* Transaction status
|
|
780
780
|
*/
|
|
781
781
|
type status2 = 'ACTIVE' | 'VOIDED' | 'SUPERSEDED';
|
|
782
|
+
type BalanceByCurrencyDto = {
|
|
783
|
+
/**
|
|
784
|
+
* ISO 4217 currency code
|
|
785
|
+
*/
|
|
786
|
+
currency: string;
|
|
787
|
+
/**
|
|
788
|
+
* Balance amount
|
|
789
|
+
*/
|
|
790
|
+
balance: string;
|
|
791
|
+
};
|
|
792
|
+
type ExchangeRateWarningDto = {
|
|
793
|
+
/**
|
|
794
|
+
* Warning type
|
|
795
|
+
*/
|
|
796
|
+
type: string;
|
|
797
|
+
/**
|
|
798
|
+
* Currency without exchange rate
|
|
799
|
+
*/
|
|
800
|
+
currency: string;
|
|
801
|
+
/**
|
|
802
|
+
* Total amount affected
|
|
803
|
+
*/
|
|
804
|
+
totalAmount: string;
|
|
805
|
+
};
|
|
806
|
+
type TransactionListSummaryDto = {
|
|
807
|
+
/**
|
|
808
|
+
* Partial converted total in base currency (rated currencies only, raw Beancount sign). When warnings is non-empty this excludes currencies missing an FX rate; may be "0.00" if ALL non-base currencies lack a rate. Converted at the dateTo (or current) available rate.
|
|
809
|
+
*/
|
|
810
|
+
totalAmount: string;
|
|
811
|
+
/**
|
|
812
|
+
* Base currency (ISO 4217)
|
|
813
|
+
*/
|
|
814
|
+
currency: string;
|
|
815
|
+
/**
|
|
816
|
+
* Raw (unconverted) balance per currency
|
|
817
|
+
*/
|
|
818
|
+
balanceByCurrency: Array<BalanceByCurrencyDto>;
|
|
819
|
+
/**
|
|
820
|
+
* Currencies missing an FX rate (omitted when empty)
|
|
821
|
+
*/
|
|
822
|
+
warnings?: Array<ExchangeRateWarningDto>;
|
|
823
|
+
};
|
|
782
824
|
type TransactionListResponseDto = {
|
|
783
825
|
/**
|
|
784
826
|
* List of transactions
|
|
@@ -796,6 +838,10 @@ type TransactionListResponseDto = {
|
|
|
796
838
|
* Number of items skipped
|
|
797
839
|
*/
|
|
798
840
|
offset: number;
|
|
841
|
+
/**
|
|
842
|
+
* Amount summary for the full filtered set (#514). Present only when the request has a single account OR category viewpoint; omitted for search-only / plain-list / dual-perspective requests.
|
|
843
|
+
*/
|
|
844
|
+
summary?: TransactionListSummaryDto;
|
|
799
845
|
};
|
|
800
846
|
type TagSuggestionDto = {
|
|
801
847
|
/**
|
|
@@ -1172,17 +1218,17 @@ type ResolveResultDto = {
|
|
|
1172
1218
|
[key: string]: string;
|
|
1173
1219
|
};
|
|
1174
1220
|
/**
|
|
1175
|
-
* Resolution ID for undo
|
|
1221
|
+
* Resolution ID for undo. Absent when the resolver rejected the decision (review stayed PENDING).
|
|
1176
1222
|
*/
|
|
1177
|
-
resolutionId
|
|
1223
|
+
resolutionId?: string;
|
|
1178
1224
|
/**
|
|
1179
1225
|
* Whether this decision can be undone
|
|
1180
1226
|
*/
|
|
1181
|
-
canUndo
|
|
1227
|
+
canUndo?: boolean;
|
|
1182
1228
|
/**
|
|
1183
1229
|
* Deadline for undo (24h from resolution)
|
|
1184
1230
|
*/
|
|
1185
|
-
undoDeadline
|
|
1231
|
+
undoDeadline?: string;
|
|
1186
1232
|
/**
|
|
1187
1233
|
* Rule ID if learning was triggered (ACCEPT_AND_LEARN actions). Use this to deep-link to the rule management page.
|
|
1188
1234
|
*/
|
|
@@ -2689,6 +2735,92 @@ type UpdatePropertyDto = {
|
|
|
2689
2735
|
*/
|
|
2690
2736
|
value: string;
|
|
2691
2737
|
};
|
|
2738
|
+
type CreateBeanEventDto = {
|
|
2739
|
+
/**
|
|
2740
|
+
* Life event date (ISO 8601)
|
|
2741
|
+
*/
|
|
2742
|
+
date: string;
|
|
2743
|
+
/**
|
|
2744
|
+
* Life event type (e.g., "employer", "location", "marital-status") — user-defined, no enum constraint at engine layer
|
|
2745
|
+
*/
|
|
2746
|
+
type: string;
|
|
2747
|
+
/**
|
|
2748
|
+
* Life event description. Empty string is a VALID value (distinct from absence).
|
|
2749
|
+
*/
|
|
2750
|
+
description: string;
|
|
2751
|
+
/**
|
|
2752
|
+
* Product-side metadata (lives in BeanEvent.meta JSON, never in engine Event fields)
|
|
2753
|
+
*/
|
|
2754
|
+
meta?: {
|
|
2755
|
+
[key: string]: unknown;
|
|
2756
|
+
};
|
|
2757
|
+
};
|
|
2758
|
+
type EventResponseDto = {
|
|
2759
|
+
/**
|
|
2760
|
+
* Unique identifier
|
|
2761
|
+
*/
|
|
2762
|
+
id: string;
|
|
2763
|
+
/**
|
|
2764
|
+
* User ID (owner of the life event)
|
|
2765
|
+
*/
|
|
2766
|
+
userId: string;
|
|
2767
|
+
/**
|
|
2768
|
+
* Life event date (ISO 8601 format)
|
|
2769
|
+
*/
|
|
2770
|
+
date: string;
|
|
2771
|
+
/**
|
|
2772
|
+
* Life event type (user-defined, e.g., "employer", "location")
|
|
2773
|
+
*/
|
|
2774
|
+
type: string;
|
|
2775
|
+
/**
|
|
2776
|
+
* Life event description. May be an empty string (a valid value distinct from absence).
|
|
2777
|
+
*/
|
|
2778
|
+
description: string;
|
|
2779
|
+
/**
|
|
2780
|
+
* Product-side metadata (free-form JSON)
|
|
2781
|
+
*/
|
|
2782
|
+
meta: {
|
|
2783
|
+
[key: string]: unknown;
|
|
2784
|
+
};
|
|
2785
|
+
/**
|
|
2786
|
+
* Creation timestamp
|
|
2787
|
+
*/
|
|
2788
|
+
createdAt: string;
|
|
2789
|
+
/**
|
|
2790
|
+
* Last update timestamp. Also emitted as the ETag response header for If-Match optimistic concurrency.
|
|
2791
|
+
*/
|
|
2792
|
+
updatedAt: string;
|
|
2793
|
+
};
|
|
2794
|
+
type EventListResponseDto = {
|
|
2795
|
+
/**
|
|
2796
|
+
* List of life events
|
|
2797
|
+
*/
|
|
2798
|
+
items: Array<EventResponseDto>;
|
|
2799
|
+
/**
|
|
2800
|
+
* Total number of life events matching the query
|
|
2801
|
+
*/
|
|
2802
|
+
total: number;
|
|
2803
|
+
};
|
|
2804
|
+
type UpdateBeanEventDto = {
|
|
2805
|
+
/**
|
|
2806
|
+
* Life event date (ISO 8601)
|
|
2807
|
+
*/
|
|
2808
|
+
date?: string;
|
|
2809
|
+
/**
|
|
2810
|
+
* Life event type (user-defined)
|
|
2811
|
+
*/
|
|
2812
|
+
type?: string;
|
|
2813
|
+
/**
|
|
2814
|
+
* Life event description. Empty string is a VALID value (distinct from absence).
|
|
2815
|
+
*/
|
|
2816
|
+
description?: string;
|
|
2817
|
+
/**
|
|
2818
|
+
* Product-side metadata (free-form JSON)
|
|
2819
|
+
*/
|
|
2820
|
+
meta?: {
|
|
2821
|
+
[key: string]: unknown;
|
|
2822
|
+
};
|
|
2823
|
+
};
|
|
2692
2824
|
type FileImportDto = {
|
|
2693
2825
|
/**
|
|
2694
2826
|
* Bill file to import (CSV, PDF, OFX, etc.)
|
|
@@ -3604,16 +3736,6 @@ type liabilitySubType = 'borrow' | 'repay';
|
|
|
3604
3736
|
* Equity sub-type (only present when intent is "equity"). opening: account opening balance (Equity → Assets), adjustment: balance correction.
|
|
3605
3737
|
*/
|
|
3606
3738
|
type equitySubType = 'opening' | 'adjustment';
|
|
3607
|
-
type BalanceByCurrencyDto = {
|
|
3608
|
-
/**
|
|
3609
|
-
* ISO 4217 currency code
|
|
3610
|
-
*/
|
|
3611
|
-
currency: string;
|
|
3612
|
-
/**
|
|
3613
|
-
* Balance amount
|
|
3614
|
-
*/
|
|
3615
|
-
balance: string;
|
|
3616
|
-
};
|
|
3617
3739
|
type NetWorthByCurrencyDto = {
|
|
3618
3740
|
/**
|
|
3619
3741
|
* Net worth by currency
|
|
@@ -3652,20 +3774,6 @@ type ConvertedNetWorthDto = {
|
|
|
3652
3774
|
[key: string]: unknown;
|
|
3653
3775
|
};
|
|
3654
3776
|
};
|
|
3655
|
-
type ExchangeRateWarningDto = {
|
|
3656
|
-
/**
|
|
3657
|
-
* Warning type
|
|
3658
|
-
*/
|
|
3659
|
-
type: string;
|
|
3660
|
-
/**
|
|
3661
|
-
* Currency without exchange rate
|
|
3662
|
-
*/
|
|
3663
|
-
currency: string;
|
|
3664
|
-
/**
|
|
3665
|
-
* Total amount affected
|
|
3666
|
-
*/
|
|
3667
|
-
totalAmount: string;
|
|
3668
|
-
};
|
|
3669
3777
|
type NetWorthResponseDto = {
|
|
3670
3778
|
/**
|
|
3671
3779
|
* Total net worth (assets - liabilities, converted to base currency)
|
|
@@ -3744,9 +3852,39 @@ type PlatformGroupDto = {
|
|
|
3744
3852
|
*/
|
|
3745
3853
|
accounts: Array<AccountItemDto>;
|
|
3746
3854
|
/**
|
|
3747
|
-
*
|
|
3855
|
+
* FX-converted total balance in base currency
|
|
3748
3856
|
*/
|
|
3749
3857
|
totalBalance: string;
|
|
3858
|
+
/**
|
|
3859
|
+
* Raw (unconverted) balances grouped by currency
|
|
3860
|
+
*/
|
|
3861
|
+
balanceByCurrency: Array<BalanceByCurrencyDto>;
|
|
3862
|
+
/**
|
|
3863
|
+
* Converted balance in base currency (omitted when no currency is convertible)
|
|
3864
|
+
*/
|
|
3865
|
+
convertedBalance?: string;
|
|
3866
|
+
/**
|
|
3867
|
+
* Share of the grand converted total (0-100); 0 when grand total is 0
|
|
3868
|
+
*/
|
|
3869
|
+
sharePct: number;
|
|
3870
|
+
};
|
|
3871
|
+
type AccountExchangeRateWarningDto = {
|
|
3872
|
+
/**
|
|
3873
|
+
* Warning type
|
|
3874
|
+
*/
|
|
3875
|
+
type: string;
|
|
3876
|
+
/**
|
|
3877
|
+
* Currency without exchange rate
|
|
3878
|
+
*/
|
|
3879
|
+
currency: string;
|
|
3880
|
+
/**
|
|
3881
|
+
* Affected account paths
|
|
3882
|
+
*/
|
|
3883
|
+
accounts: Array<string>;
|
|
3884
|
+
/**
|
|
3885
|
+
* Total amount in this currency
|
|
3886
|
+
*/
|
|
3887
|
+
totalAmount: string;
|
|
3750
3888
|
};
|
|
3751
3889
|
type AccountsSummaryDto = {
|
|
3752
3890
|
/**
|
|
@@ -3757,6 +3895,14 @@ type AccountsSummaryDto = {
|
|
|
3757
3895
|
* Total number of platforms
|
|
3758
3896
|
*/
|
|
3759
3897
|
totalPlatforms: number;
|
|
3898
|
+
/**
|
|
3899
|
+
* Base currency for conversion
|
|
3900
|
+
*/
|
|
3901
|
+
baseCurrency: string;
|
|
3902
|
+
/**
|
|
3903
|
+
* Per-account exchange rate warnings
|
|
3904
|
+
*/
|
|
3905
|
+
warnings?: Array<AccountExchangeRateWarningDto>;
|
|
3760
3906
|
};
|
|
3761
3907
|
type AccountsResponseDto = {
|
|
3762
3908
|
/**
|
|
@@ -3840,24 +3986,6 @@ type AssetClassGroupDto = {
|
|
|
3840
3986
|
* Asset class name
|
|
3841
3987
|
*/
|
|
3842
3988
|
type assetClass = 'LIQUIDITY' | 'EQUITY' | 'FIXED_INCOME' | 'PRECIOUS_METALS' | 'COMMODITY' | 'INSURANCE' | 'ALTERNATIVE_INVESTMENT' | 'PERSONAL_ASSETS' | 'LIABILITY' | 'REAL_ESTATE' | 'INDEX';
|
|
3843
|
-
type AccountExchangeRateWarningDto = {
|
|
3844
|
-
/**
|
|
3845
|
-
* Warning type
|
|
3846
|
-
*/
|
|
3847
|
-
type: string;
|
|
3848
|
-
/**
|
|
3849
|
-
* Currency without exchange rate
|
|
3850
|
-
*/
|
|
3851
|
-
currency: string;
|
|
3852
|
-
/**
|
|
3853
|
-
* Affected account paths
|
|
3854
|
-
*/
|
|
3855
|
-
accounts: Array<string>;
|
|
3856
|
-
/**
|
|
3857
|
-
* Total amount in this currency
|
|
3858
|
-
*/
|
|
3859
|
-
totalAmount: string;
|
|
3860
|
-
};
|
|
3861
3989
|
type AssetClassSummaryDto = {
|
|
3862
3990
|
/**
|
|
3863
3991
|
* Total number of accounts
|
|
@@ -4016,6 +4144,60 @@ type CashFlowResponseDto = {
|
|
|
4016
4144
|
*/
|
|
4017
4145
|
warnings?: Array<ExchangeRateWarningDto>;
|
|
4018
4146
|
};
|
|
4147
|
+
type CategoryGroupDto = {
|
|
4148
|
+
/**
|
|
4149
|
+
* Functional category (account-path Group segment); regional and universal account paths merge under it
|
|
4150
|
+
*/
|
|
4151
|
+
category: string;
|
|
4152
|
+
/**
|
|
4153
|
+
* Converted total for this category in base currency (expense amount when flow=expense, income amount when flow=income)
|
|
4154
|
+
*/
|
|
4155
|
+
totalExpense: string;
|
|
4156
|
+
/**
|
|
4157
|
+
* Share of grand total (0-100); 0 when grand total is 0
|
|
4158
|
+
*/
|
|
4159
|
+
sharePct: number;
|
|
4160
|
+
/**
|
|
4161
|
+
* Raw (unconverted) expense per currency
|
|
4162
|
+
*/
|
|
4163
|
+
balanceByCurrency: Array<BalanceByCurrencyDto>;
|
|
4164
|
+
/**
|
|
4165
|
+
* Converted total in base currency (omitted when FX missing for all currencies in this category)
|
|
4166
|
+
*/
|
|
4167
|
+
convertedBalance?: string;
|
|
4168
|
+
};
|
|
4169
|
+
type ExpensesByCategorySummaryDto = {
|
|
4170
|
+
/**
|
|
4171
|
+
* Total across all categories, converted (convertible categories only); expense totals when flow=expense, income totals when flow=income
|
|
4172
|
+
*/
|
|
4173
|
+
totalExpense: string;
|
|
4174
|
+
/**
|
|
4175
|
+
* Number of categories
|
|
4176
|
+
*/
|
|
4177
|
+
categoryCount: number;
|
|
4178
|
+
};
|
|
4179
|
+
type ExpensesByCategoryResponseDto = {
|
|
4180
|
+
/**
|
|
4181
|
+
* Period requested
|
|
4182
|
+
*/
|
|
4183
|
+
period: string;
|
|
4184
|
+
/**
|
|
4185
|
+
* Base currency for converted values
|
|
4186
|
+
*/
|
|
4187
|
+
baseCurrency: string;
|
|
4188
|
+
/**
|
|
4189
|
+
* Expense groups by functional category, sorted by converted total desc
|
|
4190
|
+
*/
|
|
4191
|
+
groups: Array<CategoryGroupDto>;
|
|
4192
|
+
/**
|
|
4193
|
+
* Summary statistics
|
|
4194
|
+
*/
|
|
4195
|
+
summary: ExpensesByCategorySummaryDto;
|
|
4196
|
+
/**
|
|
4197
|
+
* Exchange rate warnings (e.g. missing rate for a currency)
|
|
4198
|
+
*/
|
|
4199
|
+
warnings?: Array<ExchangeRateWarningDto>;
|
|
4200
|
+
};
|
|
4019
4201
|
type MonetaryDto = {
|
|
4020
4202
|
/**
|
|
4021
4203
|
* Amount (Decimal string)
|
|
@@ -4310,6 +4492,14 @@ type TimeSeriesPointDto = {
|
|
|
4310
4492
|
change?: {
|
|
4311
4493
|
[key: string]: unknown;
|
|
4312
4494
|
};
|
|
4495
|
+
/**
|
|
4496
|
+
* Total assets at this date (in base currency)
|
|
4497
|
+
*/
|
|
4498
|
+
assets?: string;
|
|
4499
|
+
/**
|
|
4500
|
+
* Total liabilities at this date (in base currency)
|
|
4501
|
+
*/
|
|
4502
|
+
liabilities?: string;
|
|
4313
4503
|
/**
|
|
4314
4504
|
* Multi-currency breakdown for this point
|
|
4315
4505
|
*/
|
|
@@ -4373,6 +4563,68 @@ type PortfolioTrendsResponseDto = {
|
|
|
4373
4563
|
*/
|
|
4374
4564
|
warnings?: Array<ExchangeRateWarningDto>;
|
|
4375
4565
|
};
|
|
4566
|
+
type CashFlowPointDto = {
|
|
4567
|
+
/**
|
|
4568
|
+
* Month key (YYYY-MM)
|
|
4569
|
+
*/
|
|
4570
|
+
month: string;
|
|
4571
|
+
/**
|
|
4572
|
+
* Income in base currency (absolute, converted)
|
|
4573
|
+
*/
|
|
4574
|
+
income: string;
|
|
4575
|
+
/**
|
|
4576
|
+
* Expense in base currency (absolute, converted)
|
|
4577
|
+
*/
|
|
4578
|
+
expense: string;
|
|
4579
|
+
/**
|
|
4580
|
+
* netSavings = income − expense (savings positive)
|
|
4581
|
+
*/
|
|
4582
|
+
netSavings: string;
|
|
4583
|
+
};
|
|
4584
|
+
type CashFlowTrendSummaryDto = {
|
|
4585
|
+
/**
|
|
4586
|
+
* Total income across the period
|
|
4587
|
+
*/
|
|
4588
|
+
totalIncome: string;
|
|
4589
|
+
/**
|
|
4590
|
+
* Total expense across the period
|
|
4591
|
+
*/
|
|
4592
|
+
totalExpense: string;
|
|
4593
|
+
/**
|
|
4594
|
+
* income − expense across the period
|
|
4595
|
+
*/
|
|
4596
|
+
totalNetSavings: string;
|
|
4597
|
+
/**
|
|
4598
|
+
* totalNetSavings divided by the window length (N months, incl. zero-filled)
|
|
4599
|
+
*/
|
|
4600
|
+
averageMonthlyNetSavings: string;
|
|
4601
|
+
};
|
|
4602
|
+
type CashFlowTrendsResponseDto = {
|
|
4603
|
+
/**
|
|
4604
|
+
* Monthly cash-flow series (fixed N-month window, zero-filled)
|
|
4605
|
+
*/
|
|
4606
|
+
series: Array<CashFlowPointDto>;
|
|
4607
|
+
/**
|
|
4608
|
+
* Period totals
|
|
4609
|
+
*/
|
|
4610
|
+
summary: CashFlowTrendSummaryDto;
|
|
4611
|
+
/**
|
|
4612
|
+
* Period requested
|
|
4613
|
+
*/
|
|
4614
|
+
period: string;
|
|
4615
|
+
/**
|
|
4616
|
+
* Data granularity (v1 returns month buckets)
|
|
4617
|
+
*/
|
|
4618
|
+
granularity: string;
|
|
4619
|
+
/**
|
|
4620
|
+
* Base currency for converted values
|
|
4621
|
+
*/
|
|
4622
|
+
currency: string;
|
|
4623
|
+
/**
|
|
4624
|
+
* Exchange rate warnings (e.g. missing rate for a currency)
|
|
4625
|
+
*/
|
|
4626
|
+
warnings?: Array<ExchangeRateWarningDto>;
|
|
4627
|
+
};
|
|
4376
4628
|
type GenerateSnapshotBody = unknown;
|
|
4377
4629
|
type GenerateSnapshotResponse = unknown;
|
|
4378
4630
|
type BackfillSnapshotsBody = unknown;
|
|
@@ -4529,6 +4781,10 @@ type TransactionControllerListData = {
|
|
|
4529
4781
|
* Filter by account ID (transactions with postings to this account)
|
|
4530
4782
|
*/
|
|
4531
4783
|
accountId?: string;
|
|
4784
|
+
/**
|
|
4785
|
+
* Filter by ADR-0075 functional category (Group segment); matches any posting to an Expenses/Income account whose derived Group segment equals this value
|
|
4786
|
+
*/
|
|
4787
|
+
category?: string;
|
|
4532
4788
|
/**
|
|
4533
4789
|
* Filter by start date (inclusive), format: YYYY-MM-DD
|
|
4534
4790
|
*/
|
|
@@ -5326,6 +5582,92 @@ type PropertyControllerDeleteData = {
|
|
|
5326
5582
|
key: string;
|
|
5327
5583
|
};
|
|
5328
5584
|
type PropertyControllerDeleteResponse = void;
|
|
5585
|
+
type EventControllerCreateData = {
|
|
5586
|
+
/**
|
|
5587
|
+
* Region code for tenant context (decorative for life events)
|
|
5588
|
+
*/
|
|
5589
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
5590
|
+
requestBody: CreateBeanEventDto;
|
|
5591
|
+
};
|
|
5592
|
+
type EventControllerCreateResponse = EventResponseDto;
|
|
5593
|
+
type EventControllerFindAllData = {
|
|
5594
|
+
/**
|
|
5595
|
+
* Filter life events from this date (ISO 8601 format)
|
|
5596
|
+
*/
|
|
5597
|
+
from?: string;
|
|
5598
|
+
/**
|
|
5599
|
+
* Number of items per page (default: 20, max: 100)
|
|
5600
|
+
*/
|
|
5601
|
+
limit?: number;
|
|
5602
|
+
/**
|
|
5603
|
+
* Page number for pagination (default: 1)
|
|
5604
|
+
*/
|
|
5605
|
+
page?: number;
|
|
5606
|
+
/**
|
|
5607
|
+
* Search term for description (case-insensitive partial match)
|
|
5608
|
+
*/
|
|
5609
|
+
q?: string;
|
|
5610
|
+
/**
|
|
5611
|
+
* Region code for tenant context (decorative for life events)
|
|
5612
|
+
*/
|
|
5613
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
5614
|
+
/**
|
|
5615
|
+
* Filter life events to this date (ISO 8601 format)
|
|
5616
|
+
*/
|
|
5617
|
+
to?: string;
|
|
5618
|
+
/**
|
|
5619
|
+
* Filter by life event type (exact match)
|
|
5620
|
+
*/
|
|
5621
|
+
type?: string;
|
|
5622
|
+
};
|
|
5623
|
+
type EventControllerFindAllResponse = EventListResponseDto;
|
|
5624
|
+
type EventControllerFindOneData = {
|
|
5625
|
+
/**
|
|
5626
|
+
* Life event ID
|
|
5627
|
+
*/
|
|
5628
|
+
id: string;
|
|
5629
|
+
/**
|
|
5630
|
+
* Region code for tenant context (decorative for life events)
|
|
5631
|
+
*/
|
|
5632
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
5633
|
+
};
|
|
5634
|
+
type EventControllerFindOneResponse = EventResponseDto;
|
|
5635
|
+
type EventControllerUpdateData = {
|
|
5636
|
+
/**
|
|
5637
|
+
* Life event ID
|
|
5638
|
+
*/
|
|
5639
|
+
id: string;
|
|
5640
|
+
/**
|
|
5641
|
+
* Region code for tenant context (decorative for life events)
|
|
5642
|
+
*/
|
|
5643
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
5644
|
+
requestBody: UpdateBeanEventDto;
|
|
5645
|
+
};
|
|
5646
|
+
type EventControllerUpdateResponse = EventResponseDto;
|
|
5647
|
+
type EventControllerDeleteData = {
|
|
5648
|
+
/**
|
|
5649
|
+
* Life event ID
|
|
5650
|
+
*/
|
|
5651
|
+
id: string;
|
|
5652
|
+
/**
|
|
5653
|
+
* Region code for tenant context (decorative for life events)
|
|
5654
|
+
*/
|
|
5655
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
5656
|
+
};
|
|
5657
|
+
type EventControllerDeleteResponse = void;
|
|
5658
|
+
type EventControllerGetSliceData = {
|
|
5659
|
+
accountPattern: string;
|
|
5660
|
+
granularity: string;
|
|
5661
|
+
/**
|
|
5662
|
+
* Life event ID
|
|
5663
|
+
*/
|
|
5664
|
+
id: string;
|
|
5665
|
+
/**
|
|
5666
|
+
* Region code for tenant context (decorative for life events)
|
|
5667
|
+
*/
|
|
5668
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
5669
|
+
};
|
|
5670
|
+
type EventControllerGetSliceResponse = unknown;
|
|
5329
5671
|
type ExportControllerExportBeancountResponse = unknown;
|
|
5330
5672
|
type FileImportControllerImportFileData = {
|
|
5331
5673
|
/**
|
|
@@ -5568,6 +5910,25 @@ type DashboardControllerGetCashFlowData = {
|
|
|
5568
5910
|
region: 'cn' | 'us' | 'de' | 'gb';
|
|
5569
5911
|
};
|
|
5570
5912
|
type DashboardControllerGetCashFlowResponse = CashFlowResponseDto;
|
|
5913
|
+
type DashboardControllerGetExpensesData = {
|
|
5914
|
+
/**
|
|
5915
|
+
* Account root to aggregate (expense → ^Expenses:, income → ^Income:)
|
|
5916
|
+
*/
|
|
5917
|
+
flow?: 'expense' | 'income';
|
|
5918
|
+
/**
|
|
5919
|
+
* Grouping strategy
|
|
5920
|
+
*/
|
|
5921
|
+
groupBy?: 'category';
|
|
5922
|
+
/**
|
|
5923
|
+
* Time window (1m = current calendar month)
|
|
5924
|
+
*/
|
|
5925
|
+
period?: '1m' | '3m' | '6m' | '1y';
|
|
5926
|
+
/**
|
|
5927
|
+
* Region code for tenant context
|
|
5928
|
+
*/
|
|
5929
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
5930
|
+
};
|
|
5931
|
+
type DashboardControllerGetExpensesResponse = ExpensesByCategoryResponseDto;
|
|
5571
5932
|
type HoldingPnlControllerGetHoldingPnlData = {
|
|
5572
5933
|
/**
|
|
5573
5934
|
* Scope to a single account
|
|
@@ -5687,6 +6048,21 @@ type ReportingControllerGetPortfolioTrendsData = {
|
|
|
5687
6048
|
region: 'cn' | 'us' | 'de' | 'gb';
|
|
5688
6049
|
};
|
|
5689
6050
|
type ReportingControllerGetPortfolioTrendsResponse = PortfolioTrendsResponseDto;
|
|
6051
|
+
type ReportingControllerGetCashFlowTrendsData = {
|
|
6052
|
+
/**
|
|
6053
|
+
* Data granularity (accepted for API symmetry; v1 returns month buckets)
|
|
6054
|
+
*/
|
|
6055
|
+
granularity?: 'day' | 'week' | 'month';
|
|
6056
|
+
/**
|
|
6057
|
+
* Time period
|
|
6058
|
+
*/
|
|
6059
|
+
period?: '1m' | '3m' | '6m' | '1y';
|
|
6060
|
+
/**
|
|
6061
|
+
* Region code for tenant context
|
|
6062
|
+
*/
|
|
6063
|
+
region: 'cn' | 'us' | 'de' | 'gb';
|
|
6064
|
+
};
|
|
6065
|
+
type ReportingControllerGetCashFlowTrendsResponse = CashFlowTrendsResponseDto;
|
|
5690
6066
|
type ReportingControllerGenerateSnapshotData = {
|
|
5691
6067
|
/**
|
|
5692
6068
|
* Region code for tenant context
|
|
@@ -7097,6 +7473,102 @@ type $OpenApiTs = {
|
|
|
7097
7473
|
};
|
|
7098
7474
|
};
|
|
7099
7475
|
};
|
|
7476
|
+
'/api/v1/{region}/bean/events': {
|
|
7477
|
+
post: {
|
|
7478
|
+
req: EventControllerCreateData;
|
|
7479
|
+
res: {
|
|
7480
|
+
/**
|
|
7481
|
+
* Life event created successfully
|
|
7482
|
+
*/
|
|
7483
|
+
201: EventResponseDto;
|
|
7484
|
+
/**
|
|
7485
|
+
* Life event already exists for this (userId, type, date) combination
|
|
7486
|
+
*/
|
|
7487
|
+
409: unknown;
|
|
7488
|
+
};
|
|
7489
|
+
};
|
|
7490
|
+
get: {
|
|
7491
|
+
req: EventControllerFindAllData;
|
|
7492
|
+
res: {
|
|
7493
|
+
/**
|
|
7494
|
+
* Life events retrieved successfully
|
|
7495
|
+
*/
|
|
7496
|
+
200: EventListResponseDto;
|
|
7497
|
+
};
|
|
7498
|
+
};
|
|
7499
|
+
};
|
|
7500
|
+
'/api/v1/{region}/bean/events/{id}': {
|
|
7501
|
+
get: {
|
|
7502
|
+
req: EventControllerFindOneData;
|
|
7503
|
+
res: {
|
|
7504
|
+
/**
|
|
7505
|
+
* Life event retrieved successfully
|
|
7506
|
+
*/
|
|
7507
|
+
200: EventResponseDto;
|
|
7508
|
+
/**
|
|
7509
|
+
* Life event not found
|
|
7510
|
+
*/
|
|
7511
|
+
404: unknown;
|
|
7512
|
+
};
|
|
7513
|
+
};
|
|
7514
|
+
put: {
|
|
7515
|
+
req: EventControllerUpdateData;
|
|
7516
|
+
res: {
|
|
7517
|
+
/**
|
|
7518
|
+
* Life event updated successfully
|
|
7519
|
+
*/
|
|
7520
|
+
200: EventResponseDto;
|
|
7521
|
+
/**
|
|
7522
|
+
* If-Match header is not a valid ISO 8601 date
|
|
7523
|
+
*/
|
|
7524
|
+
400: unknown;
|
|
7525
|
+
/**
|
|
7526
|
+
* Life event not found
|
|
7527
|
+
*/
|
|
7528
|
+
404: unknown;
|
|
7529
|
+
/**
|
|
7530
|
+
* Updated event conflicts with an existing (userId, type, date) combination
|
|
7531
|
+
*/
|
|
7532
|
+
409: unknown;
|
|
7533
|
+
/**
|
|
7534
|
+
* If-Match precondition failed (updatedAt mismatch)
|
|
7535
|
+
*/
|
|
7536
|
+
412: unknown;
|
|
7537
|
+
};
|
|
7538
|
+
};
|
|
7539
|
+
delete: {
|
|
7540
|
+
req: EventControllerDeleteData;
|
|
7541
|
+
res: {
|
|
7542
|
+
/**
|
|
7543
|
+
* Life event deleted successfully
|
|
7544
|
+
*/
|
|
7545
|
+
204: void;
|
|
7546
|
+
/**
|
|
7547
|
+
* Life event not found
|
|
7548
|
+
*/
|
|
7549
|
+
404: unknown;
|
|
7550
|
+
};
|
|
7551
|
+
};
|
|
7552
|
+
};
|
|
7553
|
+
'/api/v1/{region}/bean/events/{id}/slice': {
|
|
7554
|
+
get: {
|
|
7555
|
+
req: EventControllerGetSliceData;
|
|
7556
|
+
res: {
|
|
7557
|
+
/**
|
|
7558
|
+
* Time-series sliced by the life event range
|
|
7559
|
+
*/
|
|
7560
|
+
200: unknown;
|
|
7561
|
+
/**
|
|
7562
|
+
* accountPattern query param is empty
|
|
7563
|
+
*/
|
|
7564
|
+
400: unknown;
|
|
7565
|
+
/**
|
|
7566
|
+
* Life event not found
|
|
7567
|
+
*/
|
|
7568
|
+
404: unknown;
|
|
7569
|
+
};
|
|
7570
|
+
};
|
|
7571
|
+
};
|
|
7100
7572
|
'/api/v1/{region}/bean/export/beancount': {
|
|
7101
7573
|
get: {
|
|
7102
7574
|
res: {
|
|
@@ -7509,6 +7981,25 @@ type $OpenApiTs = {
|
|
|
7509
7981
|
};
|
|
7510
7982
|
};
|
|
7511
7983
|
};
|
|
7984
|
+
'/api/v1/{region}/dashboard/expenses': {
|
|
7985
|
+
get: {
|
|
7986
|
+
req: DashboardControllerGetExpensesData;
|
|
7987
|
+
res: {
|
|
7988
|
+
/**
|
|
7989
|
+
* Expenses retrieved successfully
|
|
7990
|
+
*/
|
|
7991
|
+
200: ExpensesByCategoryResponseDto;
|
|
7992
|
+
/**
|
|
7993
|
+
* Invalid groupBy or period
|
|
7994
|
+
*/
|
|
7995
|
+
400: unknown;
|
|
7996
|
+
/**
|
|
7997
|
+
* User not authenticated
|
|
7998
|
+
*/
|
|
7999
|
+
401: unknown;
|
|
8000
|
+
};
|
|
8001
|
+
};
|
|
8002
|
+
};
|
|
7512
8003
|
'/api/v1/{region}/investment/holdings/pnl': {
|
|
7513
8004
|
get: {
|
|
7514
8005
|
req: HoldingPnlControllerGetHoldingPnlData;
|
|
@@ -7627,6 +8118,21 @@ type $OpenApiTs = {
|
|
|
7627
8118
|
};
|
|
7628
8119
|
};
|
|
7629
8120
|
};
|
|
8121
|
+
'/api/v1/{region}/reporting/cash-flow/trends': {
|
|
8122
|
+
get: {
|
|
8123
|
+
req: ReportingControllerGetCashFlowTrendsData;
|
|
8124
|
+
res: {
|
|
8125
|
+
/**
|
|
8126
|
+
* Cash-flow trends retrieved successfully
|
|
8127
|
+
*/
|
|
8128
|
+
200: CashFlowTrendsResponseDto;
|
|
8129
|
+
/**
|
|
8130
|
+
* User not authenticated
|
|
8131
|
+
*/
|
|
8132
|
+
401: unknown;
|
|
8133
|
+
};
|
|
8134
|
+
};
|
|
8135
|
+
};
|
|
7630
8136
|
'/api/v1/{region}/reporting/snapshots/generate': {
|
|
7631
8137
|
post: {
|
|
7632
8138
|
req: ReportingControllerGenerateSnapshotData;
|
|
@@ -7943,6 +8449,7 @@ declare class BeanTransactionsService {
|
|
|
7943
8449
|
* @param data.status Filter by transaction status
|
|
7944
8450
|
* @param data.search Search in narration and payee fields (max 200 chars)
|
|
7945
8451
|
* @param data.accountId Filter by account ID (transactions with postings to this account)
|
|
8452
|
+
* @param data.category Filter by ADR-0075 functional category (Group segment); matches any posting to an Expenses/Income account whose derived Group segment equals this value
|
|
7946
8453
|
* @returns TransactionListResponseDto Transaction list
|
|
7947
8454
|
* @throws ApiError
|
|
7948
8455
|
*/
|
|
@@ -8248,4 +8755,4 @@ type OpenAPIConfig = {
|
|
|
8248
8755
|
};
|
|
8249
8756
|
declare const OpenAPI: OpenAPIConfig;
|
|
8250
8757
|
|
|
8251
|
-
export { type $OpenApiTs, type AccountControllerCloseData, type AccountControllerCloseResponse, type AccountControllerCreateData, type AccountControllerCreateResponse, type AccountControllerDeleteData, type AccountControllerDeleteResponse, type AccountControllerFindAllData, type AccountControllerFindAllResponse, type AccountControllerFindOneData, type AccountControllerFindOneResponse, type AccountControllerReopenData, type AccountControllerReopenResponse, type AccountControllerUpdateData, type AccountControllerUpdateResponse, type AccountExchangeRateWarningDto, type AccountItemDto, type AccountItemWithAssetClassDto, type AccountListResponseDto, type AccountResponseDto, type AccountStandardListResponseDto, type AccountStandardResponseDto, type AccountStandardsControllerGetRegionsData, type AccountStandardsControllerGetRegionsResponse, type AccountStandardsControllerGetTemplateMetadataData, type AccountStandardsControllerGetTemplateMetadataResponse, type AccountStandardsControllerGetTemplatesData, type AccountStandardsControllerGetTemplatesResponse, type AccountsResponseDto, type AccountsSummaryDto, type AmountDto, type AmountRangeDto, type AnonymousLoginDto, type ApiKeysControllerCreateApiKeyResponse, type ApiProblemResponseDto, type AssetClassAccountsResponseDto, type AssetClassGroupDto, type AssetClassSummaryDto, type AuthControllerAccessTokenLoginData, type AuthControllerAccessTokenLoginResponse, type BackfillSnapshotsBody, type BackfillSnapshotsResponse, type BalanceByCurrencyDto, type BalanceControllerGetBalanceData, type BalanceControllerGetBalanceResponse, type BalanceControllerGetMultiCurrencyBalanceData, type BalanceControllerGetMultiCurrencyBalanceResponse, type BalanceResponseDto, type BatchCreateTransactionDto, type BatchResolveDto, type BatchResolveResultDto, type BatchTransactionErrorDto, type BatchTransactionResponseDto, BeanAccountsService, BeanBalancesService, BeanCommoditiesService, BeanTransactionsService, type BulkCreateRulesDto, type BulkCreateRulesResponseDto, type CacheControllerFlushCacheResponse, type CashFlowByCurrencyDto, type CashFlowResponseDto, type CloseAccountDto, type CommodityControllerBulkCreateData, type CommodityControllerBulkCreateResponse, type CommodityControllerCreateData, type CommodityControllerCreateResponse, type CommodityControllerDeleteData, type CommodityControllerDeleteResponse, type CommodityControllerFindAllData, type CommodityControllerFindAllResponse, type CommodityControllerFindOneData, type CommodityControllerFindOneResponse, type CommodityControllerGetOrCreateData, type CommodityControllerGetOrCreateResponse, type CommodityControllerUpdateData, type CommodityControllerUpdateResponse, type CommodityListResponseDto, type CommodityResponseDto, type ConfirmMatchDto, type ConvertedCashFlowDto, type ConvertedNetWorthDto, type CorrectTransactionDto, type CostDetailDto, type CostSpecDto, type CreateAccountDto, type CreateBeanPriceDto, type CreateCommodityDto, type CreatePayeeDto, type CreatePayeeProfileDto, type CreatePlatformDto, type CreatePostingDto, type CreateRecurringRuleDto, type CreateRuleFromTransactionDto, type CreateTransactionDto, type CreateTransactionRuleDto, type CurrencyBalanceDto, type CurrentPriceDto, type DashboardControllerGetAccountsData, type DashboardControllerGetAccountsResponse, type DashboardControllerGetCashFlowData, type DashboardControllerGetCashFlowResponse, type DashboardControllerGetNetWorthData, type DashboardControllerGetNetWorthResponse, type DecisionOptionDto, type DeleteOwnUserDto, type EnterNowDto, type ExchangeRateControllerGetExchangeRateData, type ExchangeRateControllerGetExchangeRateResponse, type ExchangeRateWarningDto, type ExpectedTransactionControllerConfirmMatchData, type ExpectedTransactionControllerConfirmMatchResponse, type ExpectedTransactionControllerEnterNowData, type ExpectedTransactionControllerEnterNowResponse, type ExpectedTransactionControllerFindAllData, type ExpectedTransactionControllerFindAllResponse, type ExpectedTransactionControllerFindOneData, type ExpectedTransactionControllerFindOneResponse, type ExpectedTransactionControllerFindOverdueData, type ExpectedTransactionControllerFindOverdueResponse, type ExpectedTransactionControllerSkipData, type ExpectedTransactionControllerSkipResponse, type ExpectedTransactionControllerUndoSkipData, type ExpectedTransactionControllerUndoSkipResponse, type ExpectedTransactionControllerUnmatchData, type ExpectedTransactionControllerUnmatchResponse, type ExpectedTransactionListResponseDto, type ExpectedTransactionResponseDto, type ExpectedTransactionRuleDto, type ExportControllerExportBeancountResponse, type ExportRulesResponseDto, type FileImportControllerIdentifyFileData, type FileImportControllerIdentifyFileResponse, type FileImportControllerImportBeancountData, type FileImportControllerImportBeancountResponse, type FileImportControllerImportFileData, type FileImportControllerImportFileResponse, type FileImportDto, type ForecastControllerGetForecastData, type ForecastControllerGetForecastResponse, type ForecastItemDto, type ForecastResponseDto, type FxRateDto, type GenerateSnapshotBody, type GenerateSnapshotResponse, type HealthControllerCheckDatabaseResponse, type HealthControllerCheckOpenBbResponse, type HealthControllerCheckRedisResponse, type HealthControllerGetCircuitBreakersHealthResponse, type HealthControllerGetHealthResponse, type HealthControllerGetMetricsResponse, type HealthControllerResetCircuitBreakerData, type HealthControllerResetCircuitBreakerResponse, HealthService, type HoldingAssetClassAccountSliceDto, type HoldingAssetClassCrossAccountResponseDto, type HoldingPnlControllerGetHoldingPnlData, type HoldingPnlControllerGetHoldingPnlResponse, type HoldingPnlResponseDto, type HoldingPnlRowDto, type HoldingPnlWarningDto, type IdentifyResultDto, type ImportErrorDto, type ImportResultDto, type ImporterConfigControllerGetConfigData, type ImporterConfigControllerGetConfigResponse, type ImporterConfigControllerResetConfigData, type ImporterConfigControllerResetConfigResponse, type ImporterConfigControllerUpdateConfigData, type ImporterConfigControllerUpdateConfigResponse, type ImporterConfigDataDto, type ImporterConfigDto, type InfoControllerGetInfoResponse, type MapperDefaultsDto, type MonetaryDto, type MonthlyForecastDto, type MultiCurrencyBalanceResponseDto, type MultiCurrencyPointDto, type NetWorthByCurrencyDto, type NetWorthResponseDto, type NlpAccountConfirmationDataDto, type NlpAlternativePayeeDto, type NlpControllerClearSessionData, type NlpControllerClearSessionResponse, type NlpControllerGetSessionData, type NlpControllerGetSessionResponse, type NlpControllerProcessNaturalLanguageData, type NlpControllerProcessNaturalLanguageResponse, type NlpDefaultAccountsDto, type NlpDuplicateConfirmationDataDto, type NlpParsedDataDto, type NlpPayeeConfirmationDataDto, type NlpResponseDto, type NlpRuleConfirmationDataDto, type NlpSimilarityDto, type NlpSourceTransactionDto, type NlpSuggestedAccountDto, type NlpSuggestedAccountsDto, type NlpSuggestedPayeeDto, type NlpTargetTransactionDto, type NlpTransactionInfoDto, OpenAPI, type OpenAPIConfig, type ParserTelemetryReportDto, type PayeeAutocompleteResponseDto, type PayeeControllerAutocompleteData, type PayeeControllerAutocompleteResponse, type PayeeControllerCreateData, type PayeeControllerCreateResponse, type PayeeControllerDeleteData, type PayeeControllerDeleteResponse, type PayeeControllerFindAllData, type PayeeControllerFindAllResponse, type PayeeControllerFindOneData, type PayeeControllerFindOneResponse, type PayeeControllerGetTopPayeesData, type PayeeControllerGetTopPayeesResponse, type PayeeControllerUpdateData, type PayeeControllerUpdateResponse, type PayeeListResponseDto, type PayeeProfileAdminControllerCreateData, type PayeeProfileAdminControllerCreateResponse, type PayeeProfileAdminControllerDeleteData, type PayeeProfileAdminControllerDeleteResponse, type PayeeProfileAdminControllerFindAllData, type PayeeProfileAdminControllerFindAllResponse, type PayeeProfileAdminControllerFindOneData, type PayeeProfileAdminControllerFindOneResponse, type PayeeProfileAdminControllerUnverifyData, type PayeeProfileAdminControllerUnverifyResponse, type PayeeProfileAdminControllerUpdateData, type PayeeProfileAdminControllerUpdateResponse, type PayeeProfileAdminControllerVerifyData, type PayeeProfileAdminControllerVerifyResponse, type PayeeProfileListResponseDto, type PayeeProfileResponseDto, type PayeeResponseDto, type PayeeStatsResponseDto, type PlatformControllerCreateData, type PlatformControllerCreateResponse, type PlatformControllerDeleteData, type PlatformControllerDeleteResponse, type PlatformControllerFindAllResponse, type PlatformControllerGetPlatformListResponse, type PlatformControllerMatchPlatformsData, type PlatformControllerMatchPlatformsResponse, type PlatformControllerUpdateData, type PlatformControllerUpdateResponse, type PlatformGroupDto, type PortfolioTrendsResponseDto, type PostingDetailDto, type PostingResponseDto, type PriceControllerBulkCreateData, type PriceControllerBulkCreateResponse, type PriceControllerCreateData, type PriceControllerCreateResponse, type PriceControllerDeleteData, type PriceControllerDeleteResponse, type PriceControllerFindAllData, type PriceControllerFindAllResponse, type PriceControllerFindOneData, type PriceControllerFindOneResponse, type PriceControllerUpdateData, type PriceControllerUpdateResponse, type PriceListResponseDto, type PriceResponseDto, type ProcessNlpDto, type PropertyControllerDeleteData, type PropertyControllerDeleteResponse, type PropertyControllerGetAllResponse, type PropertyControllerGetByKeyData, type PropertyControllerGetByKeyResponse, type PropertyControllerUpdateData, type PropertyControllerUpdateResponse, type ProviderSyncConfigDto, type ProviderSyncControllerGetSupportedProvidersData, type ProviderSyncControllerGetSupportedProvidersResponse, type ProviderSyncControllerIsProviderSupportedData, type ProviderSyncControllerIsProviderSupportedResponse, type ProviderSyncControllerSyncData, type ProviderSyncControllerSyncResponse, type ProviderSyncDto, type ProviderSyncResponseDto, ProviderSyncService, type RecurringMatchInfoDto, type RecurringRuleControllerCreateData, type RecurringRuleControllerCreateFromTransactionData, type RecurringRuleControllerCreateFromTransactionResponse, type RecurringRuleControllerCreateResponse, type RecurringRuleControllerDeleteData, type RecurringRuleControllerDeleteResponse, type RecurringRuleControllerFindAllData, type RecurringRuleControllerFindAllResponse, type RecurringRuleControllerFindOneData, type RecurringRuleControllerFindOneResponse, type RecurringRuleControllerGetWithStatsData, type RecurringRuleControllerGetWithStatsResponse, type RecurringRuleControllerUpdateData, type RecurringRuleControllerUpdateResponse, type RecurringRuleResponseDto, type RecurringRuleWithStatsResponseDto, type RecurringSuggestionDto, type RegionConfigDto, type RegionInfoDto, type RegionsMetadataResponseDto, type ReopenAccountDto, type ReportingControllerBackfillSnapshotsData, type ReportingControllerBackfillSnapshotsResponse, type ReportingControllerGenerateSnapshotData, type ReportingControllerGenerateSnapshotResponse, type ReportingControllerGetPortfolioTrendsData, type ReportingControllerGetPortfolioTrendsResponse, type ResolveResultDto, type ResolveReviewDto, type ReviewControllerBatchResolveData, type ReviewControllerBatchResolveResponse, type ReviewControllerFindAllData, type ReviewControllerFindAllResponse, type ReviewControllerFindOneData, type ReviewControllerFindOneResponse, type ReviewControllerGetStatsData, type ReviewControllerGetStatsResponse, type ReviewControllerResolveData, type ReviewControllerResolveResponse, type ReviewControllerUndoData, type ReviewControllerUndoResponse, type ReviewDetailDto, type ReviewItemPreviewDto, type ReviewListResponseDto, type ReviewStatsDto, type ReviewSummaryDto, type RuleStatisticsResponseDto, type SignupDto, type SupportedProvidersResponseDto, type TagSuggestionDto, type TagSuggestionsResponseDto, type TelemetryControllerGetCoverageMetricsData, type TelemetryControllerGetCoverageMetricsResponse, type TelemetryControllerReportCoverageMissData, type TelemetryControllerReportCoverageMissResponse, type TelemetryControllerReportTelemetryData, type TelemetryControllerReportTelemetryResponse, type TemplateMetadataDto, type TemplateMetadataResponseDto, type TestRuleDto, type TestRuleResponseDto, type TimeSeriesPointDto, type TransactionControllerCorrectData, type TransactionControllerCorrectResponse, type TransactionControllerCreateBatchData, type TransactionControllerCreateBatchResponse, type TransactionControllerCreateData, type TransactionControllerCreateResponse, type TransactionControllerDeleteData, type TransactionControllerDeleteResponse, type TransactionControllerGetDetailData, type TransactionControllerGetDetailResponse, type TransactionControllerListData, type TransactionControllerListResponse, type TransactionControllerSuggestTagsData, type TransactionControllerSuggestTagsResponse, type TransactionControllerUpdateData, type TransactionControllerUpdateResponse, type TransactionDetailDto, type TransactionListResponseDto, type TransactionResponseDto, type TransactionRuleControllerBulkCreateData, type TransactionRuleControllerBulkCreateResponse, type TransactionRuleControllerCreateData, type TransactionRuleControllerCreateResponse, type TransactionRuleControllerDeleteData, type TransactionRuleControllerDeleteResponse, type TransactionRuleControllerExportData, type TransactionRuleControllerExportResponse, type TransactionRuleControllerGetDetailData, type TransactionRuleControllerGetDetailResponse, type TransactionRuleControllerGetStatisticsData, type TransactionRuleControllerGetStatisticsResponse, type TransactionRuleControllerListData, type TransactionRuleControllerListResponse, type TransactionRuleControllerTestData, type TransactionRuleControllerTestResponse, type TransactionRuleControllerUpdateData, type TransactionRuleControllerUpdateResponse, type TransactionRuleControllerValidateData, type TransactionRuleControllerValidateResponse, type TransactionRuleListResponseDto, type TransactionRuleResponseDto, type TransactionSummaryDto, type TrendSummaryDto, type UncoveredFormatMissDto, type UndoResultDto, type UpdateAccountDto, type UpdateBeanPriceDto, type UpdateCommodityDto, type UpdateConfigDataDto, type UpdateImporterConfigDto, type UpdateMapperDefaultsDto, type UpdatePayeeDto, type UpdatePayeeProfileDto, type UpdatePlatformDto, type UpdatePropertyDto, type UpdateRecurringRuleDto, type UpdateTransactionDto, type UpdateTransactionRuleDto, type UpdateUserSettingDto, type UserControllerDeleteOwnUserData, type UserControllerDeleteOwnUserResponse, type UserControllerDeleteUserData, type UserControllerDeleteUserResponse, type UserControllerGetAllUserSettingsByPageData, type UserControllerGetAllUserSettingsByPageResponse, type UserControllerGetAssetLiabilitySummaryResponse, type UserControllerGetUserData, type UserControllerGetUserInfoData, type UserControllerGetUserInfoResponse, type UserControllerGetUserResponse, type UserControllerSignupUserData, type UserControllerSignupUserResponse, type UserControllerUpdateUserSettingData, type UserControllerUpdateUserSettingResponse, type ValidateRuleDto, type ValidateRuleResponseDto, type VersionedConfigDto, type action, type action2, type assetClass, type assetSubType, type bookingMethod, type branchType, type category, type chartToken, type colorScheme, type confidenceLevel, type conflictStrategy, type dataSource, type equitySubType, type flag, type flag2, type frequency, type importerId, type intent, type investmentAction, type learningSource, type liabilitySubType, type matchLogic, type method, type mode, type paymentSource, type period, type source, type source2, type source3, type status, type status2, type status3, type status4, type suggestedFrequency, type type, type type2, type type3, type type4, type value, type viewMode };
|
|
8758
|
+
export { type $OpenApiTs, type AccountControllerCloseData, type AccountControllerCloseResponse, type AccountControllerCreateData, type AccountControllerCreateResponse, type AccountControllerDeleteData, type AccountControllerDeleteResponse, type AccountControllerFindAllData, type AccountControllerFindAllResponse, type AccountControllerFindOneData, type AccountControllerFindOneResponse, type AccountControllerReopenData, type AccountControllerReopenResponse, type AccountControllerUpdateData, type AccountControllerUpdateResponse, type AccountExchangeRateWarningDto, type AccountItemDto, type AccountItemWithAssetClassDto, type AccountListResponseDto, type AccountResponseDto, type AccountStandardListResponseDto, type AccountStandardResponseDto, type AccountStandardsControllerGetRegionsData, type AccountStandardsControllerGetRegionsResponse, type AccountStandardsControllerGetTemplateMetadataData, type AccountStandardsControllerGetTemplateMetadataResponse, type AccountStandardsControllerGetTemplatesData, type AccountStandardsControllerGetTemplatesResponse, type AccountsResponseDto, type AccountsSummaryDto, type AmountDto, type AmountRangeDto, type AnonymousLoginDto, type ApiKeysControllerCreateApiKeyResponse, type ApiProblemResponseDto, type AssetClassAccountsResponseDto, type AssetClassGroupDto, type AssetClassSummaryDto, type AuthControllerAccessTokenLoginData, type AuthControllerAccessTokenLoginResponse, type BackfillSnapshotsBody, type BackfillSnapshotsResponse, type BalanceByCurrencyDto, type BalanceControllerGetBalanceData, type BalanceControllerGetBalanceResponse, type BalanceControllerGetMultiCurrencyBalanceData, type BalanceControllerGetMultiCurrencyBalanceResponse, type BalanceResponseDto, type BatchCreateTransactionDto, type BatchResolveDto, type BatchResolveResultDto, type BatchTransactionErrorDto, type BatchTransactionResponseDto, BeanAccountsService, BeanBalancesService, BeanCommoditiesService, BeanTransactionsService, type BulkCreateRulesDto, type BulkCreateRulesResponseDto, type CacheControllerFlushCacheResponse, type CashFlowByCurrencyDto, type CashFlowPointDto, type CashFlowResponseDto, type CashFlowTrendSummaryDto, type CashFlowTrendsResponseDto, type 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 ConfirmMatchDto, type ConvertedCashFlowDto, type ConvertedNetWorthDto, type CorrectTransactionDto, type CostDetailDto, type CostSpecDto, type CreateAccountDto, type CreateBeanEventDto, type CreateBeanPriceDto, type CreateCommodityDto, type CreatePayeeDto, type CreatePayeeProfileDto, type CreatePlatformDto, type CreatePostingDto, type CreateRecurringRuleDto, type CreateRuleFromTransactionDto, type CreateTransactionDto, type CreateTransactionRuleDto, type CurrencyBalanceDto, type CurrentPriceDto, type DashboardControllerGetAccountsData, type DashboardControllerGetAccountsResponse, type DashboardControllerGetCashFlowData, type DashboardControllerGetCashFlowResponse, type 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 FileImportControllerIdentifyFileData, type FileImportControllerIdentifyFileResponse, type FileImportControllerImportBeancountData, type FileImportControllerImportBeancountResponse, type FileImportControllerImportFileData, type FileImportControllerImportFileResponse, type FileImportDto, type ForecastControllerGetForecastData, type ForecastControllerGetForecastResponse, type ForecastItemDto, type ForecastResponseDto, type FxRateDto, type GenerateSnapshotBody, type GenerateSnapshotResponse, type HealthControllerCheckDatabaseResponse, type HealthControllerCheckOpenBbResponse, type HealthControllerCheckRedisResponse, type HealthControllerGetCircuitBreakersHealthResponse, type HealthControllerGetHealthResponse, type HealthControllerGetMetricsResponse, type HealthControllerResetCircuitBreakerData, type HealthControllerResetCircuitBreakerResponse, HealthService, type HoldingAssetClassAccountSliceDto, type HoldingAssetClassCrossAccountResponseDto, type HoldingPnlControllerGetHoldingPnlData, type HoldingPnlControllerGetHoldingPnlResponse, type HoldingPnlResponseDto, type HoldingPnlRowDto, type HoldingPnlWarningDto, type IdentifyResultDto, type ImportErrorDto, type ImportResultDto, type ImporterConfigControllerGetConfigData, type ImporterConfigControllerGetConfigResponse, type ImporterConfigControllerResetConfigData, type ImporterConfigControllerResetConfigResponse, type ImporterConfigControllerUpdateConfigData, type ImporterConfigControllerUpdateConfigResponse, type ImporterConfigDataDto, type ImporterConfigDto, type InfoControllerGetInfoResponse, type MapperDefaultsDto, type MonetaryDto, type MonthlyForecastDto, type MultiCurrencyBalanceResponseDto, type MultiCurrencyPointDto, type NetWorthByCurrencyDto, type NetWorthResponseDto, type NlpAccountConfirmationDataDto, type NlpAlternativePayeeDto, type NlpControllerClearSessionData, type NlpControllerClearSessionResponse, type NlpControllerGetSessionData, type NlpControllerGetSessionResponse, type NlpControllerProcessNaturalLanguageData, type NlpControllerProcessNaturalLanguageResponse, type NlpDefaultAccountsDto, type NlpDuplicateConfirmationDataDto, type NlpParsedDataDto, type NlpPayeeConfirmationDataDto, type NlpResponseDto, type NlpRuleConfirmationDataDto, type NlpSimilarityDto, type NlpSourceTransactionDto, type NlpSuggestedAccountDto, type NlpSuggestedAccountsDto, type NlpSuggestedPayeeDto, type NlpTargetTransactionDto, type NlpTransactionInfoDto, OpenAPI, type OpenAPIConfig, type ParserTelemetryReportDto, type PayeeAutocompleteResponseDto, type PayeeControllerAutocompleteData, type PayeeControllerAutocompleteResponse, type PayeeControllerCreateData, type PayeeControllerCreateResponse, type PayeeControllerDeleteData, type PayeeControllerDeleteResponse, type PayeeControllerFindAllData, type PayeeControllerFindAllResponse, type PayeeControllerFindOneData, type PayeeControllerFindOneResponse, type PayeeControllerGetTopPayeesData, type PayeeControllerGetTopPayeesResponse, type PayeeControllerUpdateData, type PayeeControllerUpdateResponse, type PayeeListResponseDto, type PayeeProfileAdminControllerCreateData, type PayeeProfileAdminControllerCreateResponse, type PayeeProfileAdminControllerDeleteData, type PayeeProfileAdminControllerDeleteResponse, type PayeeProfileAdminControllerFindAllData, type PayeeProfileAdminControllerFindAllResponse, type PayeeProfileAdminControllerFindOneData, type PayeeProfileAdminControllerFindOneResponse, type PayeeProfileAdminControllerUnverifyData, type PayeeProfileAdminControllerUnverifyResponse, type PayeeProfileAdminControllerUpdateData, type PayeeProfileAdminControllerUpdateResponse, type PayeeProfileAdminControllerVerifyData, type PayeeProfileAdminControllerVerifyResponse, type PayeeProfileListResponseDto, type PayeeProfileResponseDto, type PayeeResponseDto, type PayeeStatsResponseDto, type PlatformControllerCreateData, type PlatformControllerCreateResponse, type PlatformControllerDeleteData, type PlatformControllerDeleteResponse, type PlatformControllerFindAllResponse, type PlatformControllerGetPlatformListResponse, type PlatformControllerMatchPlatformsData, type PlatformControllerMatchPlatformsResponse, type PlatformControllerUpdateData, type PlatformControllerUpdateResponse, type PlatformGroupDto, type PortfolioTrendsResponseDto, type PostingDetailDto, type PostingResponseDto, type PriceControllerBulkCreateData, type PriceControllerBulkCreateResponse, type PriceControllerCreateData, type PriceControllerCreateResponse, type PriceControllerDeleteData, type PriceControllerDeleteResponse, type PriceControllerFindAllData, type PriceControllerFindAllResponse, type PriceControllerFindOneData, type PriceControllerFindOneResponse, type PriceControllerUpdateData, type PriceControllerUpdateResponse, type PriceListResponseDto, type PriceResponseDto, type ProcessNlpDto, type PropertyControllerDeleteData, type PropertyControllerDeleteResponse, type PropertyControllerGetAllResponse, type PropertyControllerGetByKeyData, type PropertyControllerGetByKeyResponse, type PropertyControllerUpdateData, type PropertyControllerUpdateResponse, type ProviderSyncConfigDto, type ProviderSyncControllerGetSupportedProvidersData, type ProviderSyncControllerGetSupportedProvidersResponse, type ProviderSyncControllerIsProviderSupportedData, type ProviderSyncControllerIsProviderSupportedResponse, type ProviderSyncControllerSyncData, type ProviderSyncControllerSyncResponse, type ProviderSyncDto, type ProviderSyncResponseDto, ProviderSyncService, type RecurringMatchInfoDto, type RecurringRuleControllerCreateData, type RecurringRuleControllerCreateFromTransactionData, type RecurringRuleControllerCreateFromTransactionResponse, type RecurringRuleControllerCreateResponse, type RecurringRuleControllerDeleteData, type RecurringRuleControllerDeleteResponse, type RecurringRuleControllerFindAllData, type RecurringRuleControllerFindAllResponse, type RecurringRuleControllerFindOneData, type RecurringRuleControllerFindOneResponse, type RecurringRuleControllerGetWithStatsData, type RecurringRuleControllerGetWithStatsResponse, type RecurringRuleControllerUpdateData, type RecurringRuleControllerUpdateResponse, type RecurringRuleResponseDto, type RecurringRuleWithStatsResponseDto, type RecurringSuggestionDto, type RegionConfigDto, type RegionInfoDto, type RegionsMetadataResponseDto, type ReopenAccountDto, type ReportingControllerBackfillSnapshotsData, type ReportingControllerBackfillSnapshotsResponse, type ReportingControllerGenerateSnapshotData, type ReportingControllerGenerateSnapshotResponse, type ReportingControllerGetCashFlowTrendsData, type ReportingControllerGetCashFlowTrendsResponse, type ReportingControllerGetPortfolioTrendsData, type ReportingControllerGetPortfolioTrendsResponse, type ResolveResultDto, type ResolveReviewDto, type ReviewControllerBatchResolveData, type ReviewControllerBatchResolveResponse, type ReviewControllerFindAllData, type ReviewControllerFindAllResponse, type ReviewControllerFindOneData, type ReviewControllerFindOneResponse, type ReviewControllerGetStatsData, type ReviewControllerGetStatsResponse, type ReviewControllerResolveData, type ReviewControllerResolveResponse, type ReviewControllerUndoData, type ReviewControllerUndoResponse, type ReviewDetailDto, type ReviewItemPreviewDto, type ReviewListResponseDto, type ReviewStatsDto, type ReviewSummaryDto, type RuleStatisticsResponseDto, type SignupDto, type SupportedProvidersResponseDto, type TagSuggestionDto, type TagSuggestionsResponseDto, type TelemetryControllerGetCoverageMetricsData, type TelemetryControllerGetCoverageMetricsResponse, type TelemetryControllerReportCoverageMissData, type TelemetryControllerReportCoverageMissResponse, type TelemetryControllerReportTelemetryData, type TelemetryControllerReportTelemetryResponse, type TemplateMetadataDto, type TemplateMetadataResponseDto, type TestRuleDto, type TestRuleResponseDto, type TimeSeriesPointDto, type TransactionControllerCorrectData, type TransactionControllerCorrectResponse, type TransactionControllerCreateBatchData, type TransactionControllerCreateBatchResponse, type TransactionControllerCreateData, type TransactionControllerCreateResponse, type TransactionControllerDeleteData, type TransactionControllerDeleteResponse, type TransactionControllerGetDetailData, type TransactionControllerGetDetailResponse, type TransactionControllerListData, type TransactionControllerListResponse, type TransactionControllerSuggestTagsData, type TransactionControllerSuggestTagsResponse, type TransactionControllerUpdateData, type TransactionControllerUpdateResponse, type TransactionDetailDto, type TransactionListResponseDto, type 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 source, type source2, type source3, type status, type status2, type status3, type status4, type suggestedFrequency, type type, type type2, type type3, type type4, type value, type viewMode };
|