@mcdylanproperenterprise/nodejs-proper-money-types 0.0.25 → 0.0.26

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 +2 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mcdylanproperenterprise/nodejs-proper-money-types",
3
- "version": "0.0.25",
3
+ "version": "0.0.26",
4
4
  "description": "",
5
5
  "main": "",
6
6
  "types": "index.d.ts",
package/types.ts CHANGED
@@ -229,6 +229,8 @@ export type TPostTransactionDeleteBody = {
229
229
  export type TGetTransactionQuery = {
230
230
  page: number;
231
231
  limit: number;
232
+ startTransactedAt: Date | undefined;
233
+ endTransactedAt: Date | undefined;
232
234
  transactionCategoryId: string | undefined;
233
235
  transactionLabelIds: string[] | undefined;
234
236
  };