@dgpholdings/greatoak-shared 1.0.73 → 1.0.74

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.
@@ -67,18 +67,19 @@ export type TUser = {
67
67
  authMethod: "email" | "apple";
68
68
  };
69
69
  export type TUserSignInData = Pick<TUser, "email" | "isVerified" | "languageCountryCode" | "billingPlanType" | "billingPlanVersion" | "paymentMethod">;
70
- export type TForgotPasswordReq = {
70
+ export type TApiForgotPasswordReq = {
71
71
  email: string;
72
72
  captchaToken: string;
73
73
  };
74
- export type TForgotPasswordRes = {
74
+ export type TApiForgotPasswordRes = {
75
75
  success: boolean;
76
+ lastIssuedTokenTimeStamp?: number;
76
77
  };
77
- export type TResetPasswordReq = {
78
+ export type TApiResetPasswordReq = {
78
79
  verifyToken: string;
79
80
  newPassword: string;
80
81
  captchaToken: string;
81
82
  };
82
- export type TResetPasswordRes = {
83
+ export type TApiResetPasswordRes = {
83
84
  success: boolean;
84
85
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dgpholdings/greatoak-shared",
3
- "version": "1.0.73",
3
+ "version": "1.0.74",
4
4
  "description": "Shared TypeScript types and utilities for @dgpholdings projects",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",