@plus45/types 1.2.2 → 1.2.4

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.
@@ -1,5 +1,6 @@
1
1
  export declare const AuthType: {
2
2
  readonly PASSWORD_CHANGE: "PASSWORD_CHANGE";
3
+ readonly EMAIL_VERIFICATION: "VERIFY_EMAIL";
3
4
  };
4
5
  export type AuthType = (typeof AuthType)[keyof typeof AuthType];
5
6
  export type AuthorizationActionData<T = any> = {
@@ -2,5 +2,6 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.AuthType = void 0;
4
4
  exports.AuthType = {
5
- PASSWORD_CHANGE: "PASSWORD_CHANGE"
5
+ PASSWORD_CHANGE: "PASSWORD_CHANGE",
6
+ EMAIL_VERIFICATION: "VERIFY_EMAIL"
6
7
  };
@@ -8,4 +8,5 @@ export type User = {
8
8
  created_at: string;
9
9
  theme_mode: string;
10
10
  theme_color: "light" | "dark";
11
+ email_verified: boolean;
11
12
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plus45/types",
3
- "version": "1.2.2",
3
+ "version": "1.2.4",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": [