diff --git a/dist/index.d.ts b/dist/index.d.ts index 3edf1f0..99380d6 100644 --- a/dist/index.d.ts +++ b/dist/index.d.ts @@ -55,6 +55,7 @@ declare const datasquirel: { googleLogin: (_: import("./package-shared/types").GoogleAuthParams) => Promise; logout: typeof import("./package-shared/actions/users/logout-user").default; auth: typeof import("./package-shared/actions/users/user-auth").default; + validateTempEmailCode: typeof import("./package-shared/actions/users/validate-temp-email-code").default; }; }; }; @@ -77,6 +78,7 @@ declare const datasquirel: { googleLogin: (_: import("./package-shared/types").GoogleAuthParams) => Promise; logout: typeof import("./package-shared/actions/users/logout-user").default; auth: typeof import("./package-shared/actions/users/user-auth").default; + validateTempEmailCode: typeof import("./package-shared/actions/users/validate-temp-email-code").default; }; }; getSchema: typeof getSchema; diff --git a/dist/package-shared/api/user/index.d.ts b/dist/package-shared/api/user/index.d.ts index 9870769..0944691 100644 --- a/dist/package-shared/api/user/index.d.ts +++ b/dist/package-shared/api/user/index.d.ts @@ -1,5 +1,6 @@ import logoutUser from "../../actions/users/logout-user"; import userAuth from "../../actions/users/user-auth"; +import validateTempEmailCode from "../../actions/users/validate-temp-email-code"; import { AddUserParams, GetUserParams, GoogleAuthParams, LoginUserParam, ResetPasswordParams, SendEmailCodeParams, UpdateUserParams } from "../../types"; type Params = { local?: boolean; @@ -15,6 +16,7 @@ export default function user(params?: Params): { googleLogin: (_: GoogleAuthParams) => Promise; logout: typeof logoutUser; auth: typeof userAuth; + validateTempEmailCode: typeof validateTempEmailCode; }; }; export {}; diff --git a/dist/package-shared/api/user/index.js b/dist/package-shared/api/user/index.js index 92c15b4..e919f8b 100644 --- a/dist/package-shared/api/user/index.js +++ b/dist/package-shared/api/user/index.js @@ -22,6 +22,7 @@ const send_email_code_1 = __importDefault(require("../../actions/users/send-emai const google_auth_1 = __importDefault(require("../../actions/users/social/google-auth")); const update_user_1 = __importDefault(require("../../actions/users/update-user")); const user_auth_1 = __importDefault(require("../../actions/users/user-auth")); +const validate_temp_email_code_1 = __importDefault(require("../../actions/users/validate-temp-email-code")); function user(params) { return { auth: { @@ -62,6 +63,7 @@ function user(params) { : google_auth_1.default, logout: logout_user_1.default, auth: user_auth_1.default, + validateTempEmailCode: validate_temp_email_code_1.default, }, }; } diff --git a/package-shared/api/user/index.ts b/package-shared/api/user/index.ts index 5eb3285..88a7415 100644 --- a/package-shared/api/user/index.ts +++ b/package-shared/api/user/index.ts @@ -7,6 +7,7 @@ import sendEmailCode from "../../actions/users/send-email-code"; import googleAuth from "../../actions/users/social/google-auth"; import updateUser from "../../actions/users/update-user"; import userAuth from "../../actions/users/user-auth"; +import validateTempEmailCode from "../../actions/users/validate-temp-email-code"; import { AddUserParams, @@ -62,6 +63,7 @@ export default function user(params?: Params) { : googleAuth, logout: logoutUser, auth: userAuth, + validateTempEmailCode, }, }; } diff --git a/package.json b/package.json index 3a759e0..e6404d2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@moduletrace/datasquirel", - "version": "4.9.8", + "version": "4.9.9", "description": "Cloud-based SQL data management tool", "main": "dist/index.js", "bin": {