Updates
This commit is contained in:
parent
f9725a1d6f
commit
166bde51c7
2
dist/index.d.ts
vendored
2
dist/index.d.ts
vendored
@ -55,6 +55,7 @@ declare const datasquirel: {
|
|||||||
googleLogin: (_: import("./package-shared/types").GoogleAuthParams) => Promise<import("./package-shared/types").APIResponseObject>;
|
googleLogin: (_: import("./package-shared/types").GoogleAuthParams) => Promise<import("./package-shared/types").APIResponseObject>;
|
||||||
logout: typeof import("./package-shared/actions/users/logout-user").default;
|
logout: typeof import("./package-shared/actions/users/logout-user").default;
|
||||||
auth: typeof import("./package-shared/actions/users/user-auth").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<import("./package-shared/types").APIResponseObject>;
|
googleLogin: (_: import("./package-shared/types").GoogleAuthParams) => Promise<import("./package-shared/types").APIResponseObject>;
|
||||||
logout: typeof import("./package-shared/actions/users/logout-user").default;
|
logout: typeof import("./package-shared/actions/users/logout-user").default;
|
||||||
auth: typeof import("./package-shared/actions/users/user-auth").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;
|
getSchema: typeof getSchema;
|
||||||
|
2
dist/package-shared/api/user/index.d.ts
vendored
2
dist/package-shared/api/user/index.d.ts
vendored
@ -1,5 +1,6 @@
|
|||||||
import logoutUser from "../../actions/users/logout-user";
|
import logoutUser from "../../actions/users/logout-user";
|
||||||
import userAuth from "../../actions/users/user-auth";
|
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";
|
import { AddUserParams, GetUserParams, GoogleAuthParams, LoginUserParam, ResetPasswordParams, SendEmailCodeParams, UpdateUserParams } from "../../types";
|
||||||
type Params = {
|
type Params = {
|
||||||
local?: boolean;
|
local?: boolean;
|
||||||
@ -15,6 +16,7 @@ export default function user(params?: Params): {
|
|||||||
googleLogin: (_: GoogleAuthParams) => Promise<import("../../types").APIResponseObject>;
|
googleLogin: (_: GoogleAuthParams) => Promise<import("../../types").APIResponseObject>;
|
||||||
logout: typeof logoutUser;
|
logout: typeof logoutUser;
|
||||||
auth: typeof userAuth;
|
auth: typeof userAuth;
|
||||||
|
validateTempEmailCode: typeof validateTempEmailCode;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
export {};
|
export {};
|
||||||
|
2
dist/package-shared/api/user/index.js
vendored
2
dist/package-shared/api/user/index.js
vendored
@ -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 google_auth_1 = __importDefault(require("../../actions/users/social/google-auth"));
|
||||||
const update_user_1 = __importDefault(require("../../actions/users/update-user"));
|
const update_user_1 = __importDefault(require("../../actions/users/update-user"));
|
||||||
const user_auth_1 = __importDefault(require("../../actions/users/user-auth"));
|
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) {
|
function user(params) {
|
||||||
return {
|
return {
|
||||||
auth: {
|
auth: {
|
||||||
@ -62,6 +63,7 @@ function user(params) {
|
|||||||
: google_auth_1.default,
|
: google_auth_1.default,
|
||||||
logout: logout_user_1.default,
|
logout: logout_user_1.default,
|
||||||
auth: user_auth_1.default,
|
auth: user_auth_1.default,
|
||||||
|
validateTempEmailCode: validate_temp_email_code_1.default,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -7,6 +7,7 @@ import sendEmailCode from "../../actions/users/send-email-code";
|
|||||||
import googleAuth from "../../actions/users/social/google-auth";
|
import googleAuth from "../../actions/users/social/google-auth";
|
||||||
import updateUser from "../../actions/users/update-user";
|
import updateUser from "../../actions/users/update-user";
|
||||||
import userAuth from "../../actions/users/user-auth";
|
import userAuth from "../../actions/users/user-auth";
|
||||||
|
import validateTempEmailCode from "../../actions/users/validate-temp-email-code";
|
||||||
|
|
||||||
import {
|
import {
|
||||||
AddUserParams,
|
AddUserParams,
|
||||||
@ -62,6 +63,7 @@ export default function user(params?: Params) {
|
|||||||
: googleAuth,
|
: googleAuth,
|
||||||
logout: logoutUser,
|
logout: logoutUser,
|
||||||
auth: userAuth,
|
auth: userAuth,
|
||||||
|
validateTempEmailCode,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@moduletrace/datasquirel",
|
"name": "@moduletrace/datasquirel",
|
||||||
"version": "4.9.8",
|
"version": "4.9.9",
|
||||||
"description": "Cloud-based SQL data management tool",
|
"description": "Cloud-based SQL data management tool",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"bin": {
|
"bin": {
|
||||||
|
Loading…
Reference in New Issue
Block a user