sowhat-types 2.0.135 → 2.0.137
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 +4 -2
- package/dist/index.d.ts +4 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -870,7 +870,9 @@ interface ReportValueResponse {
|
|
|
870
870
|
|
|
871
871
|
interface ReportBudgetResponse {
|
|
872
872
|
incomes: ReportValueResponse;
|
|
873
|
+
internalTransferIncomes: number;
|
|
873
874
|
expenses: ReportValueResponse;
|
|
875
|
+
internalTransferExpenses: number;
|
|
874
876
|
savings: ReportValueResponse;
|
|
875
877
|
}
|
|
876
878
|
|
|
@@ -883,8 +885,8 @@ interface ReportWealthResponse {
|
|
|
883
885
|
interface UserReportResponse {
|
|
884
886
|
userId: string;
|
|
885
887
|
reportId: string;
|
|
886
|
-
budget: ReportBudgetResponse;
|
|
887
|
-
wealth: ReportWealthResponse;
|
|
888
|
+
budget: ReportBudgetResponse | null;
|
|
889
|
+
wealth: ReportWealthResponse | null;
|
|
888
890
|
}
|
|
889
891
|
|
|
890
892
|
type ExactMatch<T, U extends T> = T & Record<keyof T, keyof U>;
|
package/dist/index.d.ts
CHANGED
|
@@ -870,7 +870,9 @@ interface ReportValueResponse {
|
|
|
870
870
|
|
|
871
871
|
interface ReportBudgetResponse {
|
|
872
872
|
incomes: ReportValueResponse;
|
|
873
|
+
internalTransferIncomes: number;
|
|
873
874
|
expenses: ReportValueResponse;
|
|
875
|
+
internalTransferExpenses: number;
|
|
874
876
|
savings: ReportValueResponse;
|
|
875
877
|
}
|
|
876
878
|
|
|
@@ -883,8 +885,8 @@ interface ReportWealthResponse {
|
|
|
883
885
|
interface UserReportResponse {
|
|
884
886
|
userId: string;
|
|
885
887
|
reportId: string;
|
|
886
|
-
budget: ReportBudgetResponse;
|
|
887
|
-
wealth: ReportWealthResponse;
|
|
888
|
+
budget: ReportBudgetResponse | null;
|
|
889
|
+
wealth: ReportWealthResponse | null;
|
|
888
890
|
}
|
|
889
891
|
|
|
890
892
|
type ExactMatch<T, U extends T> = T & Record<keyof T, keyof U>;
|