@mcdylanproperenterprise/nodejs-proper-money-types 0.0.18 → 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.
- package/package.json +1 -1
- package/types.ts +4 -2
package/package.json
CHANGED
package/types.ts
CHANGED
|
@@ -179,8 +179,9 @@ export type TTimelineTransaction = {
|
|
|
179
179
|
};
|
|
180
180
|
|
|
181
181
|
export type TGetTransactionsDashboardQuery = {
|
|
182
|
-
startTransactedAt:
|
|
183
|
-
endTransactedAt:
|
|
182
|
+
startTransactedAt: Date;
|
|
183
|
+
endTransactedAt: Date;
|
|
184
|
+
userId: string;
|
|
184
185
|
};
|
|
185
186
|
|
|
186
187
|
export type TGetTransactionDashboardResponse = {
|
|
@@ -321,6 +322,7 @@ export type TGetTransactionLabelQuery = {
|
|
|
321
322
|
q: string;
|
|
322
323
|
page: number;
|
|
323
324
|
limit: number;
|
|
325
|
+
userId: string;
|
|
324
326
|
};
|
|
325
327
|
|
|
326
328
|
export type TGetTransactionLabelResponse = {
|