@mcdylanproperenterprise/nodejs-proper-money-types 0.0.19 → 0.0.20

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/types.ts +3 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mcdylanproperenterprise/nodejs-proper-money-types",
3
- "version": "0.0.19",
3
+ "version": "0.0.20",
4
4
  "description": "",
5
5
  "main": "",
6
6
  "types": "index.d.ts",
package/types.ts CHANGED
@@ -179,8 +179,9 @@ export type TTimelineTransaction = {
179
179
  };
180
180
 
181
181
  export type TGetTransactionsDashboardQuery = {
182
- startTransactedAt: string;
183
- endTransactedAt: string;
182
+ startTransactedAt: Date;
183
+ endTransactedAt: Date;
184
+ userId: string;
184
185
  };
185
186
 
186
187
  export type TGetTransactionDashboardResponse = {