@mcdylanproperenterprise/nodejs-proper-money-types 0.0.17 → 0.0.19
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 +2 -0
package/package.json
CHANGED
package/types.ts
CHANGED
|
@@ -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 = {
|
|
@@ -320,6 +321,7 @@ export type TGetTransactionLabelQuery = {
|
|
|
320
321
|
q: string;
|
|
321
322
|
page: number;
|
|
322
323
|
limit: number;
|
|
324
|
+
userId: string;
|
|
323
325
|
};
|
|
324
326
|
|
|
325
327
|
export type TGetTransactionLabelResponse = {
|