diff --git a/dist/index.d.ts b/dist/index.d.ts index f040b8c..fe00d70 100644 --- a/dist/index.d.ts +++ b/dist/index.d.ts @@ -54,7 +54,6 @@ declare const datasquirel: { update: typeof import("./package-shared/actions/users/update-user").default; resetPassword: typeof import("./package-shared/actions/users/reset-password").default; googleLogin: typeof import("./package-shared/actions/users/social/google-auth").default; - githubLoginFn: typeof import("./package-shared/functions/api/social-login/githubLogin").default; 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; @@ -84,6 +83,7 @@ declare const datasquirel: { 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; + githubLoginFn: typeof import("./package-shared/functions/api/social-login/githubLogin").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 0bd11f2..8f6a374 100644 --- a/dist/package-shared/api/user/index.d.ts +++ b/dist/package-shared/api/user/index.d.ts @@ -8,7 +8,6 @@ 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 githubLogin from "../../functions/api/social-login/githubLogin"; declare const user: { auth: { login: typeof loginUser; @@ -18,7 +17,6 @@ declare const user: { update: typeof updateUser; resetPassword: typeof resetPassword; googleLogin: typeof googleAuth; - githubLoginFn: typeof githubLogin; logout: typeof logoutUser; auth: typeof userAuth; validateTempEmailCode: typeof validateTempEmailCode; diff --git a/dist/package-shared/api/user/index.js b/dist/package-shared/api/user/index.js index 60f51b6..a9654ed 100644 --- a/dist/package-shared/api/user/index.js +++ b/dist/package-shared/api/user/index.js @@ -13,7 +13,6 @@ const google_auth_1 = __importDefault(require("../../actions/users/social/google 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")); -const githubLogin_1 = __importDefault(require("../../functions/api/social-login/githubLogin")); const user = { auth: { login: login_user_1.default, @@ -23,7 +22,6 @@ const user = { update: update_user_1.default, resetPassword: reset_password_1.default, googleLogin: google_auth_1.default, - githubLoginFn: githubLogin_1.default, logout: logout_user_1.default, auth: user_auth_1.default, validateTempEmailCode: validate_temp_email_code_1.default, diff --git a/dist/package-shared/api/user/local-user.d.ts b/dist/package-shared/api/user/local-user.d.ts index 54863c7..8a1e90e 100644 --- a/dist/package-shared/api/user/local-user.d.ts +++ b/dist/package-shared/api/user/local-user.d.ts @@ -1,6 +1,7 @@ import logoutUser from "../../actions/users/logout-user"; import userAuth from "../../actions/users/user-auth"; import validateTempEmailCode from "../../actions/users/validate-temp-email-code"; +import githubLogin from "../../functions/api/social-login/githubLogin"; import { AddUserParams, GetUserParams, GoogleAuthParams, LoginUserParam, ResetPasswordParams, SendEmailCodeParams, UpdateUserParams } from "../../types"; declare const localUser: { auth: { @@ -14,6 +15,7 @@ declare const localUser: { logout: typeof logoutUser; auth: typeof userAuth; validateTempEmailCode: typeof validateTempEmailCode; + githubLoginFn: typeof githubLogin; }; }; export default localUser; diff --git a/dist/package-shared/api/user/local-user.js b/dist/package-shared/api/user/local-user.js index 75f7684..09af410 100644 --- a/dist/package-shared/api/user/local-user.js +++ b/dist/package-shared/api/user/local-user.js @@ -22,6 +22,7 @@ const google_auth_1 = __importDefault(require("../../actions/users/social/google 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")); +const githubLogin_1 = __importDefault(require("../../functions/api/social-login/githubLogin")); const localUser = { auth: { login: (_) => __awaiter(void 0, void 0, void 0, function* () { @@ -48,6 +49,7 @@ const localUser = { logout: logout_user_1.default, auth: user_auth_1.default, validateTempEmailCode: validate_temp_email_code_1.default, + githubLoginFn: githubLogin_1.default, }, }; exports.default = localUser; diff --git a/package-shared/api/user/index.ts b/package-shared/api/user/index.ts index 280d45c..35eb707 100644 --- a/package-shared/api/user/index.ts +++ b/package-shared/api/user/index.ts @@ -8,7 +8,6 @@ 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 githubLogin from "../../functions/api/social-login/githubLogin"; const user = { auth: { @@ -19,7 +18,6 @@ const user = { update: updateUser, resetPassword: resetPassword, googleLogin: googleAuth, - githubLoginFn: githubLogin, logout: logoutUser, auth: userAuth, validateTempEmailCode, diff --git a/package-shared/api/user/local-user.ts b/package-shared/api/user/local-user.ts index f0c4edd..5d9221d 100644 --- a/package-shared/api/user/local-user.ts +++ b/package-shared/api/user/local-user.ts @@ -8,6 +8,7 @@ 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 githubLogin from "../../functions/api/social-login/githubLogin"; import { AddUserParams, @@ -45,6 +46,7 @@ const localUser = { logout: logoutUser, auth: userAuth, validateTempEmailCode, + githubLoginFn: githubLogin, }, }; diff --git a/package.json b/package.json index ffc1bc2..31f3186 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@moduletrace/datasquirel", - "version": "5.7.33", + "version": "5.7.34", "description": "Cloud-based SQL data management tool", "main": "dist/index.js", "bin": {