@actual-app/api 25.12.0-nightly.20251107 → 25.12.0-nightly.20251108
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.
|
@@ -41,11 +41,21 @@ export type SpendingWidget = AbstractWidget<'spending-card', {
|
|
|
41
41
|
export type CustomReportWidget = AbstractWidget<'custom-report', {
|
|
42
42
|
id: string;
|
|
43
43
|
}>;
|
|
44
|
+
export type CrossoverWidget = AbstractWidget<'crossover-card', {
|
|
45
|
+
name?: string;
|
|
46
|
+
expenseCategoryIds?: string[];
|
|
47
|
+
incomeAccountIds?: string[];
|
|
48
|
+
timeFrame?: TimeFrame;
|
|
49
|
+
safeWithdrawalRate?: number;
|
|
50
|
+
estimatedReturn?: number | null;
|
|
51
|
+
projectionType?: 'trend' | 'hampel';
|
|
52
|
+
showHiddenCategories?: boolean;
|
|
53
|
+
} | null>;
|
|
44
54
|
export type MarkdownWidget = AbstractWidget<'markdown-card', {
|
|
45
55
|
content: string;
|
|
46
56
|
text_align?: 'left' | 'right' | 'center';
|
|
47
57
|
}>;
|
|
48
|
-
type SpecializedWidget = NetWorthWidget | CashFlowWidget | SpendingWidget | MarkdownWidget | SummaryWidget | CalendarWidget | FormulaWidget;
|
|
58
|
+
type SpecializedWidget = NetWorthWidget | CashFlowWidget | SpendingWidget | CrossoverWidget | MarkdownWidget | SummaryWidget | CalendarWidget | FormulaWidget;
|
|
49
59
|
export type Widget = SpecializedWidget | CustomReportWidget;
|
|
50
60
|
export type NewWidget = Omit<Widget, 'id' | 'tombstone'>;
|
|
51
61
|
export type ExportImportCustomReportWidget = Omit<CustomReportWidget, 'id' | 'meta' | 'tombstone'> & {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export type FeatureFlag = 'goalTemplatesEnabled' | 'goalTemplatesUIEnabled' | 'actionTemplating' | 'formulaMode' | 'currency' | 'plugins';
|
|
1
|
+
export type FeatureFlag = 'goalTemplatesEnabled' | 'goalTemplatesUIEnabled' | 'actionTemplating' | 'formulaMode' | 'currency' | 'crossoverReport' | 'plugins';
|
|
2
2
|
/**
|
|
3
3
|
* Cross-device preferences. These sync across devices when they are changed.
|
|
4
4
|
*/
|
package/dist/app/bundle.api.js
CHANGED
|
@@ -125214,6 +125214,7 @@ const exportModel = {
|
|
|
125214
125214
|
"net-worth-card",
|
|
125215
125215
|
"cash-flow-card",
|
|
125216
125216
|
"spending-card",
|
|
125217
|
+
"crossover-card",
|
|
125217
125218
|
"custom-report",
|
|
125218
125219
|
"markdown-card",
|
|
125219
125220
|
"summary-card",
|
package/dist/package.json
CHANGED