@mcdylanproperenterprise/nodejs-proper-money-types 0.0.28 → 0.0.30
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 +5 -0
package/package.json
CHANGED
package/types.ts
CHANGED
|
@@ -230,6 +230,7 @@ export type TGetTransactionQuery = {
|
|
|
230
230
|
page: number;
|
|
231
231
|
limit: number;
|
|
232
232
|
targetUserId: string | undefined;
|
|
233
|
+
isHideSharedUserTransactions: boolean;
|
|
233
234
|
startTransactedAt: Date | undefined;
|
|
234
235
|
endTransactedAt: Date | undefined;
|
|
235
236
|
transactionCategoryId: string | undefined;
|
|
@@ -428,6 +429,10 @@ export type TPostUserRequestOTPResponse = {
|
|
|
428
429
|
|
|
429
430
|
export type TPostUserUpdateBody = Partial<TUser>;
|
|
430
431
|
|
|
432
|
+
export type TPostUserRegisterNotificationToken = {
|
|
433
|
+
notificationToken: string;
|
|
434
|
+
};
|
|
435
|
+
|
|
431
436
|
export type TVerification = {
|
|
432
437
|
_id: string;
|
|
433
438
|
userId: string;
|