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 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>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sowhat-types",
3
- "version": "2.0.136",
3
+ "version": "2.0.138",
4
4
  "description": "Sowhat types",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",