@mcdylanproperenterprise/nodejs-proper-money-types 0.0.27 → 0.0.29

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 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mcdylanproperenterprise/nodejs-proper-money-types",
3
- "version": "0.0.27",
3
+ "version": "0.0.29",
4
4
  "description": "",
5
5
  "main": "",
6
6
  "types": "index.d.ts",
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;
@@ -366,9 +367,6 @@ export type TUser = {
366
367
  sharedUserId: string | null;
367
368
  sharedUserInfo: TSharedUserInfo;
368
369
  lastActiveAt: Date;
369
- premiumMemberTrialEndAt: Date | null;
370
- topUpMemberRole: ESubscriptionEntitlement | null;
371
- topUpMemberEndAt: Date | null;
372
370
  createdAt: Date;
373
371
  notificationToken: string | null;
374
372
  };