@mcdylanproperenterprise/nodejs-proper-money-types 0.0.16 → 0.0.18

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 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mcdylanproperenterprise/nodejs-proper-money-types",
3
- "version": "0.0.16",
3
+ "version": "0.0.18",
4
4
  "description": "",
5
5
  "main": "",
6
6
  "types": "index.d.ts",
package/types.ts CHANGED
@@ -233,7 +233,7 @@ export type TGetTransactionQuery = {
233
233
  page: number;
234
234
  limit: number;
235
235
  transactionCategoryId: string | undefined;
236
- transactionLabelId: string | undefined;
236
+ transactionLabelIds: string[] | undefined;
237
237
  };
238
238
 
239
239
  export type TGetTransactionResponse = {
@@ -268,6 +268,7 @@ export type TGetTransactionCategoryQuery = {
268
268
  page: number;
269
269
  limit: number;
270
270
  type: ETransactionCategoryType;
271
+ userId: string;
271
272
  };
272
273
 
273
274
  export type TGetTransactionCategoryResponse = {