@mcdylanproperenterprise/nodejs-proper-money-types 0.0.22 → 0.0.24

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 +1 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mcdylanproperenterprise/nodejs-proper-money-types",
3
- "version": "0.0.22",
3
+ "version": "0.0.24",
4
4
  "description": "",
5
5
  "main": "",
6
6
  "types": "index.d.ts",
package/types.ts CHANGED
@@ -183,7 +183,6 @@ export type TGetTransactionsDashboardQuery = {
183
183
  startTransactedAt: Date;
184
184
  endTransactedAt: Date;
185
185
  userId: string;
186
- transactionCategoryType: ETransactionCategoryType;
187
186
  };
188
187
 
189
188
  export type TTransactionDashboardCategoryType = {
@@ -192,7 +191,7 @@ export type TTransactionDashboardCategoryType = {
192
191
  categories: TTransactionCategory & {
193
192
  totalAmount: number;
194
193
  percentage: number;
195
- };
194
+ }[];
196
195
  };
197
196
 
198
197
  export type TGetTransactionDashboardResponse =