sowhat-types 2.0.137 → 2.0.139

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
@@ -887,6 +887,7 @@ interface UserReportResponse {
887
887
  reportId: string;
888
888
  budget: ReportBudgetResponse | null;
889
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
@@ -887,6 +887,7 @@ interface UserReportResponse {
887
887
  reportId: string;
888
888
  budget: ReportBudgetResponse | null;
889
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.137",
3
+ "version": "2.0.139",
4
4
  "description": "Sowhat types",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -10,7 +10,8 @@
10
10
  ],
11
11
  "scripts": {
12
12
  "test": "echo \"Error: no test specified\" && exit 1",
13
- "build": "tsup"
13
+ "build": "tsup",
14
+ "publish-new-version": "node scripts/publish.js"
14
15
  },
15
16
  "author": "hugobayoud",
16
17
  "license": "ISC",