sowhat-types 2.0.136 → 2.0.138
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 +3 -2
- package/dist/index.d.ts +3 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -885,8 +885,9 @@ interface ReportWealthResponse {
|
|
|
885
885
|
interface UserReportResponse {
|
|
886
886
|
userId: string;
|
|
887
887
|
reportId: string;
|
|
888
|
-
budget: ReportBudgetResponse;
|
|
889
|
-
wealth: ReportWealthResponse;
|
|
888
|
+
budget: ReportBudgetResponse | null;
|
|
889
|
+
wealth: ReportWealthResponse | null;
|
|
890
|
+
createdAt: Date | null;
|
|
890
891
|
}
|
|
891
892
|
|
|
892
893
|
type ExactMatch<T, U extends T> = T & Record<keyof T, keyof U>;
|
package/dist/index.d.ts
CHANGED
|
@@ -885,8 +885,9 @@ interface ReportWealthResponse {
|
|
|
885
885
|
interface UserReportResponse {
|
|
886
886
|
userId: string;
|
|
887
887
|
reportId: string;
|
|
888
|
-
budget: ReportBudgetResponse;
|
|
889
|
-
wealth: ReportWealthResponse;
|
|
888
|
+
budget: ReportBudgetResponse | null;
|
|
889
|
+
wealth: ReportWealthResponse | null;
|
|
890
|
+
createdAt: Date | null;
|
|
890
891
|
}
|
|
891
892
|
|
|
892
893
|
type ExactMatch<T, U extends T> = T & Record<keyof T, keyof U>;
|