From f251a05d414bfa6a841f20dec0e107a1b3756b20 Mon Sep 17 00:00:00 2001 From: pedro Date: Tue, 7 May 2019 22:03:56 +0800 Subject: [PATCH 01/15] =?UTF-8?q?feat:=E6=B7=BB=E5=8A=A0=E4=BB=A4=E7=89=8C?= =?UTF-8?q?=E7=94=9F=E6=88=90=E5=92=8C=E9=AA=8C=E8=AF=81=E7=9A=84=E4=BE=BF?= =?UTF-8?q?=E5=88=A9=E5=87=BD=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/jwt.ts | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/lib/jwt.ts b/lib/jwt.ts index 944ac90..7b6617e 100644 --- a/lib/jwt.ts +++ b/lib/jwt.ts @@ -1,4 +1,8 @@ -import jwtGenerator, { TokenExpiredError } from "jsonwebtoken"; +import jwtGenerator, { + TokenExpiredError, + VerifyOptions, + SignOptions +} from "jsonwebtoken"; import { ExpiredTokenException, InvalidTokenException, @@ -142,6 +146,27 @@ const jwt = new Token( config.getItem("refreshExp") ); +/** + * 生成令牌 + * @param payload 负载 + * @param options 参数 + */ +export function generateToken( + payload: string | Buffer | object, + options?: SignOptions +) { + return jwtGenerator.sign(payload, config.getItem("secret"), options); +} + +/** + * 验证令牌 + * @param token 令牌 + * @param options 选项 + */ +export function verifyToken(token: string, options?: VerifyOptions) { + return jwtGenerator.verify(token, config.getItem("secret"), options); +} + /** * 颁发令牌 * @param user 用户 From 40d3150c310fdd8a0dfd0646838c7e22188d1fc3 Mon Sep 17 00:00:00 2001 From: pedro Date: Wed, 8 May 2019 23:18:41 +0800 Subject: [PATCH 02/15] =?UTF-8?q?feat:=E6=B7=BB=E5=8A=A0=E4=BB=A4=E7=89=8C?= =?UTF-8?q?=E7=94=9F=E6=88=90=E5=92=8C=E9=AA=8C=E8=AF=81=E7=9A=84=E4=BE=BF?= =?UTF-8?q?=E5=88=A9=E5=87=BD=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/jwt.ts | 61 +++++++++++++++++++++++++++++++++++++++++++++++------- 1 file changed, 54 insertions(+), 7 deletions(-) diff --git a/lib/jwt.ts b/lib/jwt.ts index 7b6617e..376a65b 100644 --- a/lib/jwt.ts +++ b/lib/jwt.ts @@ -147,23 +147,70 @@ const jwt = new Token( ); /** - * 生成令牌 - * @param payload 负载 + * 生成access token + * @param payload 负载,支持 string 和 object * @param options 参数 */ -export function generateToken( - payload: string | Buffer | object, +export function createAccessToken( + payload: string | object, options?: SignOptions ) { - return jwtGenerator.sign(payload, config.getItem("secret"), options); + // type: TokenType.REFRESH + if (typeof payload === "string") { + return jwtGenerator.sign( + { indentify: payload, type: TokenType.ACCESS }, + config.getItem("secret"), + options + ); + } else { + return jwtGenerator.sign( + { ...payload, type: TokenType.ACCESS }, + config.getItem("secret"), + options + ); + } +} + +/** + * 生成refresh token + * @param payload 负载,支持 string 和 object + * @param options 参数 + */ +export function createRefreshToken( + payload: string | object, + options?: SignOptions +) { + // type: TokenType.REFRESH + if (typeof payload === "string") { + return jwtGenerator.sign( + { indentify: payload, type: TokenType.REFRESH }, + config.getItem("secret"), + options + ); + } else { + return jwtGenerator.sign( + { ...payload, type: TokenType.REFRESH }, + config.getItem("secret"), + options + ); + } +} + +/** + * 验证 access token + * @param token 令牌 + * @param options 选项 + */ +export function verifyAccessToken(token: string, options?: VerifyOptions) { + return jwtGenerator.verify(token, config.getItem("secret"), options); } /** - * 验证令牌 + * 验证 refresh token * @param token 令牌 * @param options 选项 */ -export function verifyToken(token: string, options?: VerifyOptions) { +export function verifyRefreshToken(token: string, options?: VerifyOptions) { return jwtGenerator.verify(token, config.getItem("secret"), options); } From 32170d20dcb64c3d136e860d7be54b909da61492 Mon Sep 17 00:00:00 2001 From: pedro Date: Fri, 10 May 2019 11:07:04 +0800 Subject: [PATCH 03/15] =?UTF-8?q?feat:=E6=B7=BB=E5=8A=A0=E6=96=87=E4=BB=B6?= =?UTF-8?q?=E4=B8=8A=E4=BC=A0=E7=9A=84=E5=9F=BA=E6=9C=AC=E6=9E=B6=E6=9E=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/config.ts | 6 +- lib/core.ts | 100 +++++++++++++++---------------- lib/db.ts | 20 +++---- lib/enums.ts | 4 +- lib/exception.ts | 32 +++++----- lib/extend.ts | 18 +++--- lib/extended-validator.ts | 10 ++-- lib/file.ts | 22 +++++++ lib/index.ts | 24 ++++---- lib/interface.ts | 38 ++++++------ lib/jwt.ts | 118 +++++++++++++++++++++++-------------- lib/lin-router.ts | 34 +++++------ lib/lin-validator.ts | 52 ++++++++-------- lib/loader.ts | 54 ++++++++--------- lib/log.ts | 32 +++++----- lib/middleware.ts | 18 +++--- lib/password-hash.ts | 20 +++---- lib/plugin.ts | 3 +- lib/sse.ts | 8 +-- lib/util.ts | 50 ++++++++-------- tests/config.test.ts | 20 +++---- tests/enums.test.ts | 6 +- tests/exception.test.ts | 12 ++-- tests/jwt.test.ts | 20 +++---- tests/passwordHash.test.ts | 14 ++--- tests/redprint.test.ts | 18 +++--- tests/setting.js | 4 +- tests/token.test.ts | 18 ++++++ tslint.json | 4 +- 29 files changed, 423 insertions(+), 356 deletions(-) create mode 100644 lib/file.ts create mode 100644 tests/token.test.ts diff --git a/lib/config.ts b/lib/config.ts index 15de550..57c01ce 100644 --- a/lib/config.ts +++ b/lib/config.ts @@ -1,6 +1,6 @@ -import * as path from "path"; -import { merge, get, has, set } from "lodash"; -import Application from "koa"; +import * as path from 'path'; +import { merge, get, has, set } from 'lodash'; +import Application from 'koa'; /** * Config类的实现 diff --git a/lib/core.ts b/lib/core.ts index 9c54859..51b0bc7 100644 --- a/lib/core.ts +++ b/lib/core.ts @@ -1,32 +1,32 @@ -import Application from "koa"; -import consola from "consola"; -import { Model } from "sequelize"; -import { IMiddleware } from "koa-router"; -import { jwt } from "./jwt"; -import { assert } from "./util"; -import { db } from "./db"; +import Application from 'koa'; +import consola from 'consola'; +import { Model } from 'sequelize'; +import { IMiddleware } from 'koa-router'; +import { jwt } from './jwt'; +import { assert } from './util'; +import { db } from './db'; import { UserInterface, GroupInterface, AuthInterface, LogInterface -} from "./interface"; -import { json, logging, success } from "./extend"; -import { NotFound, ParametersException } from "./exception"; -import { set, get, has, merge } from "lodash"; -import { Loader } from "./loader"; -import { LinRouter } from "./lin-router"; -import { verify } from "./password-hash"; -import { config } from "./config"; +} from './interface'; +import { json, logging, success } from './extend'; +import { NotFound, ParametersException } from './exception'; +import { set, get, has, merge } from 'lodash'; +import { Loader } from './loader'; +import { LinRouter } from './lin-router'; +import { verify } from './password-hash'; +import { config } from './config'; // tslint:disable-next-line:variable-name -export const __version__ = "0.0.1"; +export const __version__ = '0.0.1'; // 存放meta路由信息 export const routeMetaInfo = new Map(); // 当前文件路由是否挂载 -export const disableLoading = Symbol("disableLoading"); +export const disableLoading = Symbol('disableLoading'); /** * Lin核心类 @@ -54,7 +54,7 @@ export class Lin { authModel?: any ) { this.app = app; - assert(!!this.app, "app must not be null"); + assert(!!this.app, 'app must not be null'); // 2. 默认扩展 json logger this.applyDefaultExtends(); // 3. manager @@ -71,7 +71,7 @@ export class Lin { } private applyJwt() { - const secret = this.app!.context.config.getItem("secret"); + const secret = this.app!.context.config.getItem('secret'); jwt.initApp(this.app!, secret); } @@ -82,7 +82,7 @@ export class Lin { private applyManager(userModel: any, groupModel: any, authModel: any) { const manager = new Manager(); this.manager = manager; - const pluginPath = this.app!.context.config.getItem("pluginPath"); + const pluginPath = this.app!.context.config.getItem('pluginPath'); manager.initApp(this.app!, userModel, groupModel, authModel, pluginPath); } @@ -93,27 +93,27 @@ export class Lin { } private mount() { - const pluginRp = new LinRouter({ prefix: "/plugin" }); + const pluginRp = new LinRouter({ prefix: '/plugin' }); Object.values(this.manager!.plugins).forEach(plugin => { - consola.info(`loading plugin: ${get(plugin, "name")}`); - const controllers = Object.values(get(plugin, "controllers")); + consola.info(`loading plugin: ${get(plugin, 'name')}`); + const controllers = Object.values(get(plugin, 'controllers')); if (controllers.length > 1) { controllers.forEach(cont => { set( cont, - "opts.prefix", - `/${get(plugin, "name")}${get(cont, "opts.prefix")}` + 'opts.prefix', + `/${get(plugin, 'name')}${get(cont, 'opts.prefix')}` ); - get(cont, "stack", []).forEach(ly => { - if (config.getItem("debug")) { + get(cont, 'stack', []).forEach(ly => { + if (config.getItem('debug')) { consola.info( - `loading a route: /plugin/${get(plugin, "name")}${get( + `loading a route: /plugin/${get(plugin, 'name')}${get( ly, - "path" + 'path' )}` ); } - set(ly, "path", `/${get(plugin, "name")}${get(ly, "path")}`); + set(ly, 'path', `/${get(plugin, 'name')}${get(ly, 'path')}`); }); pluginRp .use((cont as any).routes() as IMiddleware) @@ -121,9 +121,9 @@ export class Lin { }); } else { controllers.forEach(cont => { - if (config.getItem("debug")) { - get(cont, "stack", []).forEach(ly => { - consola.info(`loading a route: /plugin${get(ly, "path")}`); + if (config.getItem('debug')) { + get(cont, 'stack', []).forEach(ly => { + consola.info(`loading a route: /plugin${get(ly, 'path')}`); }); } pluginRp @@ -225,16 +225,16 @@ export class User extends Model { // tslint:disable-next-line: await-promise const user = await this.findOne({ where: { nickname, delete_time: null } }); if (!user) { - throw new NotFound({ msg: "用户不存在" }); + throw new NotFound({ msg: '用户不存在' }); } if (!user.checkPassword(password)) { - throw new ParametersException({ msg: "密码错误,请输入正确密码" }); + throw new ParametersException({ msg: '密码错误,请输入正确密码' }); } return user; } checkPassword(raw: string) { - if (!this.password || this.password === "") { + if (!this.password || this.password === '') { return false; } return verify(raw, this.password); @@ -263,10 +263,10 @@ export class User extends Model { // @ts-ignore create_time: this.createTime }; - if (has(this, "auths")) { - return { ...origin, auths: get(this, "auths", []) }; - } else if (has(this, "groupName")) { - return { ...origin, group_name: get(this, "groupName", "") }; + if (has(this, 'auths')) { + return { ...origin, auths: get(this, 'auths', []) }; + } else if (has(this, 'groupName')) { + return { ...origin, group_name: get(this, 'groupName', '') }; } else { return origin; } @@ -280,8 +280,8 @@ User.init( merge( { sequelize: db, - tableName: "lin_user", - modelName: "user" + tableName: 'lin_user', + modelName: 'user' }, UserInterface.options ) @@ -301,8 +301,8 @@ export class Group extends Model { name: this.name, info: this.info }; - return has(this, "auths") - ? { ...origin, auths: get(this, "auths", []) } + return has(this, 'auths') + ? { ...origin, auths: get(this, 'auths', []) } : origin; } } @@ -314,8 +314,8 @@ Group.init( merge( { sequelize: db, - tableName: "lin_group", - modelName: "group" + tableName: 'lin_group', + modelName: 'group' }, GroupInterface.options ) @@ -348,8 +348,8 @@ Auth.init( merge( { sequelize: db, - tableName: "lin_auth", - modelName: "auth" + tableName: 'lin_auth', + modelName: 'auth' }, AuthInterface.options ) @@ -411,8 +411,8 @@ Log.init( merge( { sequelize: db, - tableName: "lin_log", - modelName: "log" + tableName: 'lin_log', + modelName: 'log' }, LogInterface.options ) diff --git a/lib/db.ts b/lib/db.ts index 129833a..dcd09d8 100644 --- a/lib/db.ts +++ b/lib/db.ts @@ -1,5 +1,5 @@ -import { Sequelize } from "sequelize"; -import { config } from "./config"; +import { Sequelize } from 'sequelize'; +import { config } from './config'; /** * 数据库配置项 @@ -8,37 +8,37 @@ import { config } from "./config"; /** * 数据库名,默认lin-cms */ -const database = config.getItem("db.database", "lin-cms"); +const database = config.getItem('db.database', 'lin-cms'); /** * 数据库类型,默认mysql */ -const type = config.getItem("db.type", "mysql"); +const type = config.getItem('db.type', 'mysql'); /** * 数据库host,默认localhost */ -const host = config.getItem("db.host", "localhost"); +const host = config.getItem('db.host', 'localhost'); /** * 数据库端口,默认3306 */ -const port = config.getItem("db.port", 3306); +const port = config.getItem('db.port', 3306); /** * 数据库用户名,默认root */ -const username = config.getItem("db.username", "root"); +const username = config.getItem('db.username', 'root'); /** * 数据库密码,默认123456 */ -const password = config.getItem("db.password", "123456"); +const password = config.getItem('db.password', '123456'); /** * 是否输出sequelize日志,默认 true */ -const logging = config.getItem("db.logging", true); +const logging = config.getItem('db.logging', true); /** * 全局的 Sequelize 实例 @@ -48,5 +48,5 @@ export const db = new Sequelize(database, username, password, { port: port, dialect: type, logging: logging, - timezone: "+08:00" + timezone: '+08:00' }); diff --git a/lib/enums.ts b/lib/enums.ts index 4d4e0ed..ce415c8 100644 --- a/lib/enums.ts +++ b/lib/enums.ts @@ -28,6 +28,6 @@ export enum UserActive { * REFRESH 代表 refresh token */ export enum TokenType { - ACCESS = "access", - REFRESH = "refresh" + ACCESS = 'access', + REFRESH = 'refresh' } diff --git a/lib/exception.ts b/lib/exception.ts index b1157eb..2e41c54 100644 --- a/lib/exception.ts +++ b/lib/exception.ts @@ -1,5 +1,5 @@ -import assert from "assert"; -import { isInteger } from "lodash"; +import assert from 'assert'; +import { isInteger } from 'lodash'; /** * HttpException 类构造函数的参数接口 @@ -36,14 +36,14 @@ export class HttpException extends Error { /** * 返回的信息内容 */ - public msg: any = "服务器未知错误"; + public msg: any = '服务器未知错误'; /** * 特定的错误码 */ public errorCode: number = 999; - public fields: string[] = ["msg", "errorCode"]; + public fields: string[] = ['msg', 'errorCode']; /** * 构造函数 @@ -70,7 +70,7 @@ export class HttpException extends Error { */ export class Success extends HttpException { public code = 201; - public msg = "成功"; + public msg = '成功'; public errorCode = 0; constructor(ex?: Exception) { @@ -94,7 +94,7 @@ export class Success extends HttpException { */ export class Failed extends HttpException { public code = 400; - public msg = "失败"; + public msg = '失败'; public errorCode = 9999; constructor(ex?: Exception) { @@ -118,7 +118,7 @@ export class Failed extends HttpException { */ export class AuthFailed extends HttpException { public code = 401; - public msg = "认证失败"; + public msg = '认证失败'; public errorCode = 10000; constructor(ex?: Exception) { @@ -142,7 +142,7 @@ export class AuthFailed extends HttpException { */ export class NotFound extends HttpException { public code = 404; - public msg = "资源不存在"; + public msg = '资源不存在'; public errorCode = 10020; constructor(ex?: Exception) { @@ -166,7 +166,7 @@ export class NotFound extends HttpException { */ export class ParametersException extends HttpException { public code = 400; - public msg = "参数错误"; + public msg = '参数错误'; public errorCode = 10030; constructor(ex?: Exception) { @@ -190,7 +190,7 @@ export class ParametersException extends HttpException { */ export class InvalidTokenException extends HttpException { public code = 401; - public msg = "令牌失效"; + public msg = '令牌失效'; public errorCode = 10040; constructor(ex?: Exception) { @@ -214,7 +214,7 @@ export class InvalidTokenException extends HttpException { */ export class ExpiredTokenException extends HttpException { public code = 422; - public msg = "令牌过期"; + public msg = '令牌过期'; public errorCode = 10050; constructor(ex?: Exception) { @@ -238,7 +238,7 @@ export class ExpiredTokenException extends HttpException { */ export class UnknownException extends HttpException { public code = 400; - public msg = "服务器未知错误"; + public msg = '服务器未知错误'; public errorCode = 999; constructor(ex?: Exception) { @@ -262,7 +262,7 @@ export class UnknownException extends HttpException { */ export class RepeatException extends HttpException { public code = 400; - public msg = "字段重复"; + public msg = '字段重复'; public errorCode = 10060; constructor(ex?: Exception) { @@ -286,7 +286,7 @@ export class RepeatException extends HttpException { */ export class Forbidden extends HttpException { public code = 401; - public msg = "不可操作"; + public msg = '不可操作'; public errorCode = 10070; constructor(ex?: Exception) { @@ -310,7 +310,7 @@ export class Forbidden extends HttpException { */ export class MethodNotAllowed extends HttpException { public code = 405; - public msg = "请求方法不允许"; + public msg = '请求方法不允许'; public errorCode = 10080; constructor(ex?: Exception) { @@ -334,7 +334,7 @@ export class MethodNotAllowed extends HttpException { */ export class RefreshException extends HttpException { public code = 401; - public msg = "refresh token 获取失败"; + public msg = 'refresh token 获取失败'; public errorCode = 10100; constructor(ex?: Exception) { diff --git a/lib/extend.ts b/lib/extend.ts index 99e2141..316d198 100644 --- a/lib/extend.ts +++ b/lib/extend.ts @@ -1,8 +1,8 @@ -import Application from "koa"; -import { HttpException, Success, Exception } from "./exception"; -import consola from "consola"; -import { toLine, unsets } from "./util"; -import { get, set } from "lodash"; +import Application from 'koa'; +import { HttpException, Success, Exception } from './exception'; +import consola from 'consola'; +import { toLine, unsets } from './util'; +import { get, set } from 'lodash'; /** * json序列化扩展 @@ -18,12 +18,12 @@ export const json = (app: Application) => { * hide 表示想要隐藏的属性 */ app.context.json = function(obj: any, hide = []) { - this.type = "application/json"; + this.type = 'application/json'; unsets(obj, hide); let data = Object.create(null); if (obj instanceof HttpException) { transform(obj, data); - set(data, "url", this.request.url); + set(data, 'url', this.request.url); this.status = obj.code; } else { data = obj; @@ -33,7 +33,7 @@ export const json = (app: Application) => { }; function transform(obj: any, data: any) { - const fields: string[] = get(obj, "fields", []); + const fields: string[] = get(obj, 'fields', []); fields.forEach(field => { data[toLine(field)] = get(obj, field); }); @@ -54,7 +54,7 @@ function transform(obj: any, data: any) { */ export const success = (app: Application) => { app.context.success = function(ex?: Exception) { - this.type = "application/json"; + this.type = 'application/json'; const suc = new Success(ex); let data = { error_code: suc.errorCode, diff --git a/lib/extended-validator.ts b/lib/extended-validator.ts index 43a96c7..3e76884 100644 --- a/lib/extended-validator.ts +++ b/lib/extended-validator.ts @@ -1,6 +1,6 @@ -import { Validator as BaseValidator } from "class-validator"; -import { has, get } from "lodash"; -import validator1 from "validator"; +import { Validator as BaseValidator } from 'class-validator'; +import { has, get } from 'lodash'; +import validator1 from 'validator'; /** * IsFloat的参数可选项 @@ -125,7 +125,7 @@ export class ExtendedValidator extends BaseValidator { * @param options 参数项 */ isFloat2(input: number, options?: IsFloatOptions) { - return validator1.isFloat(input + "", options); + return validator1.isFloat(input + '', options); } /** @@ -143,7 +143,7 @@ export class ExtendedValidator extends BaseValidator { * @param options 参数项 */ isInt3(input: number, options?: IsIntOptions) { - return validator1.isInt(input + "", options); + return validator1.isInt(input + '', options); } } diff --git a/lib/file.ts b/lib/file.ts new file mode 100644 index 0000000..6cea079 --- /dev/null +++ b/lib/file.ts @@ -0,0 +1,22 @@ +/** + * 文件上传相关 + * file_include,file_exclude,file_single_limit,file_total_limit,file_store_dir + * id,path,type,name,extension,size + */ + +/** + * 上传文件类,所有文件上传的基类 + */ +class Uploader { + constructor() {} + + /** + * 处理文件流Stream + */ + public handle() {} + + /** + * 存储到lin_file + */ + public save() {} +} diff --git a/lib/index.ts b/lib/index.ts index 2635717..fefc670 100644 --- a/lib/index.ts +++ b/lib/index.ts @@ -1,12 +1,12 @@ -export * from "./core"; -export * from "./enums"; -export * from "./exception"; -export * from "./extend"; -export * from "./lin-validator"; -export * from "./extended-validator"; -export * from "./jwt"; -export * from "./log"; -export * from "./middleware"; -export * from "./mixin"; -export * from "./lin-router"; -export * from "./util"; +export * from './core'; +export * from './enums'; +export * from './exception'; +export * from './extend'; +export * from './lin-validator'; +export * from './extended-validator'; +export * from './jwt'; +export * from './log'; +export * from './middleware'; +export * from './mixin'; +export * from './lin-router'; +export * from './util'; diff --git a/lib/interface.ts b/lib/interface.ts index 3081742..d5e196c 100644 --- a/lib/interface.ts +++ b/lib/interface.ts @@ -1,8 +1,8 @@ -import Sequelize from "sequelize"; -import { merge } from "lodash"; -import { UserAdmin, UserActive } from "./enums"; -import dayjs from "dayjs"; -import { generate } from "./password-hash"; +import Sequelize from 'sequelize'; +import { merge } from 'lodash'; +import { UserAdmin, UserActive } from './enums'; +import dayjs from 'dayjs'; +import { generate } from './password-hash'; /** * 记录信息的mixin @@ -10,14 +10,14 @@ import { generate } from "./password-hash"; export const InfoCrudMixin = { attributes: {}, options: { - createdAt: "create_time", - updatedAt: "update_time", - deletedAt: "delete_time", + createdAt: 'create_time', + updatedAt: 'update_time', + deletedAt: 'delete_time', paranoid: true, getterMethods: { createTime() { // @ts-ignore - return dayjs(this.getDataValue("create_time")).unix() * 1000; + return dayjs(this.getDataValue('create_time')).unix() * 1000; } } } @@ -61,25 +61,25 @@ export const UserInterface = { type: Sequelize.STRING({ length: 100 }), set(ps) { // @ts-ignore - this.setDataValue("password", generate(ps)); + this.setDataValue('password', generate(ps)); }, get() { // @ts-ignore - return this.getDataValue("password"); + return this.getDataValue('password'); } } }, options: merge( { - tableName: "lin_user", + tableName: 'lin_user', getterMethods: { isAdmin() { // @ts-ignore - return this.getDataValue("admin") === UserAdmin.ADMIN; + return this.getDataValue('admin') === UserAdmin.ADMIN; }, isActive() { // @ts-ignore - return this.getDataValue("active") === UserActive.ACTIVE; + return this.getDataValue('active') === UserActive.ACTIVE; } } }, @@ -109,7 +109,7 @@ export const AuthInterface = { } }, options: { - tableName: "lin_auth", + tableName: 'lin_auth', createdAt: false, updatedAt: false } @@ -134,7 +134,7 @@ export const GroupInterface = { } }, options: { - tableName: "lin_group", + tableName: 'lin_group', createdAt: false, updatedAt: false } @@ -174,13 +174,13 @@ export const LogInterface = { } }, options: { - tableName: "lin_log", - createdAt: "time", + tableName: 'lin_log', + createdAt: 'time', updatedAt: false, getterMethods: { time() { // @ts-ignore - return dayjs(this.getDataValue("time")).unix() * 1000; + return dayjs(this.getDataValue('time')).unix() * 1000; } } } diff --git a/lib/jwt.ts b/lib/jwt.ts index 376a65b..65bc2d8 100644 --- a/lib/jwt.ts +++ b/lib/jwt.ts @@ -2,20 +2,20 @@ import jwtGenerator, { TokenExpiredError, VerifyOptions, SignOptions -} from "jsonwebtoken"; +} from 'jsonwebtoken'; import { ExpiredTokenException, InvalidTokenException, AuthFailed, NotFound, RefreshException -} from "./exception"; -import Application from "koa"; -import { RouterContext } from "koa-router"; -import { get } from "lodash"; -import { routeMetaInfo } from "./core"; -import { TokenType } from "./enums"; -import { config } from "./config"; +} from './exception'; +import Application from 'koa'; +import { RouterContext } from 'koa-router'; +import { get } from 'lodash'; +import { routeMetaInfo } from './core'; +import { TokenType } from './enums'; +import { config } from './config'; /** * 令牌类,提供令牌的生成和解析功能 @@ -32,17 +32,17 @@ export class Token { /** * 令牌的secret值,用于令牌的加密 */ - private secret: string | undefined; + public secret: string | undefined; /** * access token 默认的过期时间 */ - private accessExp: number = 60 * 60; // 1h; + public accessExp: number = 60 * 60; // 1h; /** * refresh token 默认的过期时间 */ - private refreshExp: number = 60 * 60 * 24 * 30 * 3; // 3 months + public refreshExp: number = 60 * 60 * 24 * 30 * 3; // 3 months /** * 构造函数 @@ -78,7 +78,7 @@ export class Token { */ public createAccessToken(identity: string | number) { if (!this.secret) { - throw new Error("密匙不可为空"); + throw new Error('密匙不可为空'); } let exp: number = Math.floor(Date.now() / 1000) + this.accessExp; return jwtGenerator.sign( @@ -97,7 +97,7 @@ export class Token { */ public createRefreshToken(identity: string | number) { if (!this.secret) { - throw new Error("密匙不可为空"); + throw new Error('密匙不可为空'); } let exp: number = Math.floor(Date.now() / 1000) + this.refreshExp; return jwtGenerator.sign( @@ -119,7 +119,7 @@ export class Token { */ public verifyToken(token: string) { if (!this.secret) { - throw new Error("密匙不可为空"); + throw new Error('密匙不可为空'); } // NotBeforeError // TokenExpiredError @@ -141,9 +141,9 @@ export class Token { * jwt 的实例 */ const jwt = new Token( - config.getItem("secret"), - config.getItem("accessExp"), - config.getItem("refreshExp") + config.getItem('secret'), + config.getItem('accessExp'), + config.getItem('refreshExp') ); /** @@ -156,16 +156,17 @@ export function createAccessToken( options?: SignOptions ) { // type: TokenType.REFRESH - if (typeof payload === "string") { + let exp: number = Math.floor(Date.now() / 1000) + jwt.accessExp; + if (typeof payload === 'string') { return jwtGenerator.sign( - { indentify: payload, type: TokenType.ACCESS }, - config.getItem("secret"), + { indentify: payload, type: TokenType.ACCESS, exp: jwt.accessExp }, + jwt.secret!, options ); } else { return jwtGenerator.sign( - { ...payload, type: TokenType.ACCESS }, - config.getItem("secret"), + { ...payload, type: TokenType.ACCESS, exp: exp }, + jwt.secret!, options ); } @@ -180,17 +181,18 @@ export function createRefreshToken( payload: string | object, options?: SignOptions ) { + let exp: number = Math.floor(Date.now() / 1000) + jwt.refreshExp; // type: TokenType.REFRESH - if (typeof payload === "string") { + if (typeof payload === 'string') { return jwtGenerator.sign( - { indentify: payload, type: TokenType.REFRESH }, - config.getItem("secret"), + { indentify: payload, type: TokenType.REFRESH, exp: jwt.refreshExp }, + jwt.secret!, options ); } else { return jwtGenerator.sign( - { ...payload, type: TokenType.REFRESH }, - config.getItem("secret"), + { ...payload, type: TokenType.REFRESH, exp: exp }, + jwt.secret!, options ); } @@ -202,7 +204,20 @@ export function createRefreshToken( * @param options 选项 */ export function verifyAccessToken(token: string, options?: VerifyOptions) { - return jwtGenerator.verify(token, config.getItem("secret"), options); + let decode; + try { + decode = jwtGenerator.verify(token, jwt.secret!, options); + } catch (error) { + if (error instanceof TokenExpiredError) { + throw new ExpiredTokenException(); + } else { + throw new InvalidTokenException(); + } + } + if (!decode['type'] || decode['type'] !== TokenType.ACCESS) { + throw new InvalidTokenException({ msg: '令牌类型错误' }); + } + return decode; } /** @@ -211,7 +226,20 @@ export function verifyAccessToken(token: string, options?: VerifyOptions) { * @param options 选项 */ export function verifyRefreshToken(token: string, options?: VerifyOptions) { - return jwtGenerator.verify(token, config.getItem("secret"), options); + let decode; + try { + decode = jwtGenerator.verify(token, jwt.secret!, options); + } catch (error) { + if (error instanceof TokenExpiredError) { + throw new ExpiredTokenException(); + } else { + throw new InvalidTokenException(); + } + } + if (!decode['type'] || decode['type'] !== TokenType.REFRESH) { + throw new InvalidTokenException({ msg: '令牌类型错误' }); + } + return decode; } /** @@ -232,9 +260,9 @@ function getTokens(user) { async function parseHeader(ctx: RouterContext, type = TokenType.ACCESS) { // 此处借鉴了koa-jwt if (!ctx.header || !ctx.header.authorization) { - ctx.throw(new AuthFailed({ msg: "认证失败,请检查请求令牌是否正确" })); + ctx.throw(new AuthFailed({ msg: '认证失败,请检查请求令牌是否正确' })); } - const parts = ctx.header.authorization.split(" "); + const parts = ctx.header.authorization.split(' '); if (parts.length === 2) { // Bearer 字段 @@ -244,12 +272,12 @@ async function parseHeader(ctx: RouterContext, type = TokenType.ACCESS) { if (/^Bearer$/i.test(scheme)) { const obj = ctx.jwt.verifyToken(token); - if (!get(obj, "type") || get(obj, "type") !== type) { - ctx.throw(new AuthFailed({ msg: "请使用正确类型的令牌" })); + if (!get(obj, 'type') || get(obj, 'type') !== type) { + ctx.throw(new AuthFailed({ msg: '请使用正确类型的令牌' })); } - const user = await ctx.manager.userModel.findByPk(get(obj, "identity")); + const user = await ctx.manager.userModel.findByPk(get(obj, 'identity')); if (!user) { - ctx.throw(new NotFound({ msg: "用户不存在" })); + ctx.throw(new NotFound({ msg: '用户不存在' })); } // 将user挂在ctx上 ctx.currentUser = user; @@ -261,7 +289,7 @@ async function parseHeader(ctx: RouterContext, type = TokenType.ACCESS) { function checkUserIsActive(user) { if (!user || !user.isActive) { - throw new AuthFailed({ msg: "您目前处于未激活状态,请联系超级管理员" }); + throw new AuthFailed({ msg: '您目前处于未激活状态,请联系超级管理员' }); } } @@ -269,7 +297,7 @@ function checkUserIsActive(user) { * 守卫函数,用户登陆即可访问 */ async function loginRequired(ctx: RouterContext, next: () => Promise) { - if (ctx.request.method !== "OPTIONS") { + if (ctx.request.method !== 'OPTIONS') { await parseHeader(ctx); // 一定要await,否则这个守卫函数没有作用 // 用户处于未激活状态 @@ -289,7 +317,7 @@ async function refreshTokenRequired( next: () => Promise ) { // 添加access 和 refresh 的标识位 - if (ctx.request.method !== "OPTIONS") { + if (ctx.request.method !== 'OPTIONS') { await parseHeader(ctx, TokenType.REFRESH); await next(); } else { @@ -305,7 +333,7 @@ async function refreshTokenRequiredWithUnifyException( next: () => Promise ) { // 添加access 和 refresh 的标识位 - if (ctx.request.method !== "OPTIONS") { + if (ctx.request.method !== 'OPTIONS') { try { await parseHeader(ctx, TokenType.REFRESH); } catch (error) { @@ -321,7 +349,7 @@ async function refreshTokenRequiredWithUnifyException( * 守卫函数,用于权限组鉴权 */ async function groupRequired(ctx: RouterContext, next: () => Promise) { - if (ctx.request.method !== "OPTIONS") { + if (ctx.request.method !== 'OPTIONS') { await parseHeader(ctx); const currentUser = ctx.currentUser; // 用户处于未激活状态 @@ -333,7 +361,7 @@ async function groupRequired(ctx: RouterContext, next: () => Promise) { const groupId = currentUser.group_id; if (!groupId) { throw new AuthFailed({ - msg: "您还不属于任何权限组,请联系超级管理员获得权限" + msg: '您还不属于任何权限组,请联系超级管理员获得权限' }); } if (ctx.matched) { @@ -347,10 +375,10 @@ async function groupRequired(ctx: RouterContext, next: () => Promise) { if (item) { await next(); } else { - throw new AuthFailed({ msg: "权限不够,请联系超级管理员获得权限" }); + throw new AuthFailed({ msg: '权限不够,请联系超级管理员获得权限' }); } } else { - throw new AuthFailed({ msg: "权限不够,请联系超级管理员获得权限" }); + throw new AuthFailed({ msg: '权限不够,请联系超级管理员获得权限' }); } } } else { @@ -362,13 +390,13 @@ async function groupRequired(ctx: RouterContext, next: () => Promise) { * 守卫函数,非超级管理员不可访问 */ async function adminRequired(ctx: RouterContext, next: () => Promise) { - if (ctx.request.method !== "OPTIONS") { + if (ctx.request.method !== 'OPTIONS') { await parseHeader(ctx); const currentUser = ctx.currentUser; if (currentUser && currentUser.isAdmin) { await next(); } else { - throw new AuthFailed({ msg: "只有超级管理员可操作" }); + throw new AuthFailed({ msg: '只有超级管理员可操作' }); } } else { await next(); diff --git a/lib/lin-router.ts b/lib/lin-router.ts index bf52715..d4530ca 100644 --- a/lib/lin-router.ts +++ b/lib/lin-router.ts @@ -1,6 +1,6 @@ -import Router, { IMiddleware } from "koa-router"; -import { assert } from "./util"; -import { routeMetaInfo } from "./core"; +import Router, { IMiddleware } from 'koa-router'; +import { assert } from './util'; +import { routeMetaInfo } from './core'; export interface Meta { auth?: string; @@ -22,9 +22,9 @@ export class LinRouter extends Router { if (meta && meta.mount) { assert( !!(meta.auth && meta.module), - "auth and module must not be empty, if you want to mount" + 'auth and module must not be empty, if you want to mount' ); - const endpoint = "OPTION " + name; + const endpoint = 'OPTION ' + name; routeMetaInfo.set(endpoint, { auth: meta.auth, module: meta.module }); } return this.options(name, path, ...middleware); @@ -39,9 +39,9 @@ export class LinRouter extends Router { if (meta && meta.mount) { assert( !!(meta.auth && meta.module), - "auth and module must not be empty, if you want to mount" + 'auth and module must not be empty, if you want to mount' ); - const endpoint = "HEAD " + name; + const endpoint = 'HEAD ' + name; routeMetaInfo.set(endpoint, { auth: meta.auth, module: meta.module }); } return this.head(name, path, ...middleware); @@ -56,9 +56,9 @@ export class LinRouter extends Router { if (meta && meta.mount) { assert( !!(meta.auth && meta.module), - "auth and module must not be empty, if you want to mount" + 'auth and module must not be empty, if you want to mount' ); - const endpoint = "GET " + name; + const endpoint = 'GET ' + name; routeMetaInfo.set(endpoint, { auth: meta.auth, module: meta.module }); } return this.get(name, path, ...middleware); @@ -73,9 +73,9 @@ export class LinRouter extends Router { if (meta && meta.mount) { assert( !!(meta.auth && meta.module), - "auth and module must not be empty, if you want to mount" + 'auth and module must not be empty, if you want to mount' ); - const endpoint = "PUT " + name; + const endpoint = 'PUT ' + name; routeMetaInfo.set(endpoint, { auth: meta.auth, module: meta.module }); } return this.put(name, path, ...middleware); @@ -90,9 +90,9 @@ export class LinRouter extends Router { if (meta && meta.mount) { assert( !!(meta.auth && meta.module), - "auth and module must not be empty, if you want to mount" + 'auth and module must not be empty, if you want to mount' ); - const endpoint = "PATCH " + name; + const endpoint = 'PATCH ' + name; routeMetaInfo.set(endpoint, { auth: meta.auth, module: meta.module }); } return this.patch(name, path, ...middleware); @@ -107,9 +107,9 @@ export class LinRouter extends Router { if (meta && meta.mount) { assert( !!(meta.auth && meta.module), - "auth and module must not be empty, if you want to mount" + 'auth and module must not be empty, if you want to mount' ); - const endpoint = "POST " + name; + const endpoint = 'POST ' + name; routeMetaInfo.set(endpoint, { auth: meta.auth, module: meta.module }); } return this.post(name, path, ...middleware); @@ -124,9 +124,9 @@ export class LinRouter extends Router { if (meta && meta.mount) { assert( !!(meta.auth && meta.module), - "auth and module must not be empty, if you want to mount" + 'auth and module must not be empty, if you want to mount' ); - const endpoint = "DELETE " + name; + const endpoint = 'DELETE ' + name; routeMetaInfo.set(endpoint, { auth: meta.auth, module: meta.module }); } return this.delete(name, path, ...middleware); diff --git a/lib/lin-validator.ts b/lib/lin-validator.ts index 174550e..a170065 100644 --- a/lib/lin-validator.ts +++ b/lib/lin-validator.ts @@ -1,10 +1,10 @@ -import isAsyncFunction from "is-async-function"; -import { get, isArray, unset, cloneDeep } from "lodash"; -import { ParametersException, HttpException } from "./exception"; -import { Context } from "koa"; -import validator1 from "validator"; -import { extendedValidator } from "./extended-validator"; -import { getAllMethodNames, getAllFieldNames } from "./util"; +import isAsyncFunction from 'is-async-function'; +import { get, isArray, unset, cloneDeep } from 'lodash'; +import { ParametersException, HttpException } from './exception'; +import { Context } from 'koa'; +import validator1 from 'validator'; +import { extendedValidator } from './extended-validator'; +import { getAllMethodNames, getAllFieldNames } from './util'; /** * 强大的校验器 @@ -91,8 +91,8 @@ export class LinValidator { if (val === null) { return true; } - if (typeof val === "string") { - return val === "" || val.trim() === ""; + if (typeof val === 'string') { + return val === '' || val.trim() === ''; } return false; } @@ -110,7 +110,7 @@ export class LinValidator { } for (const it of value) { if (!(it instanceof Rule)) { - throw new Error("every item must be a instance of Rule"); + throw new Error('every item must be a instance of Rule'); } } return true; @@ -156,7 +156,7 @@ export class LinValidator { if (!optional) { this.errors.push({ key, message: msg || `${key}不可为空` }); } else { - this.parsed["default"][key] = defaultVal; + this.parsed['default'][key] = defaultVal; } } else { if (isArray(value)) { @@ -209,7 +209,7 @@ export class LinValidator { } let validateFuncKeys: string[] = getAllMethodNames(this, { filter: key => - /validate([A-Z])\w+/g.test(key) && typeof this[key] === "function" + /validate([A-Z])\w+/g.test(key) && typeof this[key] === 'function' }); for (const validateFuncKey of validateFuncKeys) { @@ -236,7 +236,7 @@ export class LinValidator { } else if (!validRes) { let key = this.getValidateFuncKey(validateFuncKey); // 如果自定函数没有给出错误信息,那么错误信息为默认 - this.errors.push({ key, message: "参数错误" }); + this.errors.push({ key, message: '参数错误' }); } } catch (error) { const key = this.getValidateFuncKey(validateFuncKey); @@ -255,7 +255,7 @@ export class LinValidator { * @param validateFuncKey 规则函数的名称 */ private getValidateFuncKey(validateFuncKey: string) { - return validateFuncKey.replace("validate", ""); + return validateFuncKey.replace('validate', ''); } /** @@ -274,9 +274,9 @@ export class LinValidator { if (!this.isOptional(key)) { return key; } else { - const index = path.lastIndexOf("."); + const index = path.lastIndexOf('.'); const suffix = path.substring(index + 1, path.length); - return get(this.parsed["default"], suffix, defaultVal && defaultVal); + return get(this.parsed['default'], suffix, defaultVal && defaultVal); } } else { return get(this.data, path, defaultVal && defaultVal); @@ -312,9 +312,9 @@ export class Rule { ...options ) { this.validateFunction = validateFunction; - this.message = message || "参数错误"; + this.message = message || '参数错误'; this.options = options; - if (this.validateFunction === "isOptional") { + if (this.validateFunction === 'isOptional') { // 如果当前项为optional,检查该项是否存在,若不存在,将optional置为true // 如果是optional,那么没有传入的参数,可以使用默认值 this.optional = true; @@ -324,35 +324,35 @@ export class Rule { validate(value: any) { this.rawValue = value; - if (typeof this.validateFunction === "function") { + if (typeof this.validateFunction === 'function') { return this.validateFunction(value, ...this.options); } else { switch (this.validateFunction) { - case "isInt": - if (typeof value === "string") { + case 'isInt': + if (typeof value === 'string') { this.parsedValue = validator1.toInt(value); return validator1.isInt(value, ...this.options); } else { this.parsedValue = value; return validator1.isInt(String(value), ...this.options); } - case "isFloat": - if (typeof value === "string") { + case 'isFloat': + if (typeof value === 'string') { this.parsedValue = validator1.toFloat(value); return validator1.isFloat(value, ...this.options); } else { this.parsedValue = value; return validator1.isFloat(String(value), ...this.options); } - case "isBoolean": - if (typeof value === "string") { + case 'isBoolean': + if (typeof value === 'string') { this.parsedValue = validator1.toBoolean(value); return validator1.isBoolean(value); } else { this.parsedValue = value; return validator1.isBoolean(String(value)); } - case "isNotEmpty": + case 'isNotEmpty': return extendedValidator.isNotEmpty(value); default: return validator1[this.validateFunction](value, ...this.options); diff --git a/lib/loader.ts b/lib/loader.ts index f55f04b..7962db7 100644 --- a/lib/loader.ts +++ b/lib/loader.ts @@ -1,13 +1,13 @@ -import { assert, getFiles } from "./util"; -import { get, set } from "lodash"; -import Application from "koa"; -import Router from "koa-router"; -import consola from "consola"; -import path from "path"; -import { Model } from "sequelize"; -import { Plugin } from "./plugin"; -import { config } from "./config"; -import { disableLoading } from "./core"; +import { assert, getFiles } from './util'; +import { get, set } from 'lodash'; +import Application from 'koa'; +import Router from 'koa-router'; +import consola from 'consola'; +import path from 'path'; +import { Model } from 'sequelize'; +import { Plugin } from './plugin'; +import { config } from './config'; +import { disableLoading } from './core'; /** * 加载器 @@ -19,7 +19,7 @@ export class Loader { private app: Application; public plugins = {}; constructor(pluginPath: {}, app: Application) { - assert(!!pluginPath, "pluginPath must not be empty"); + assert(!!pluginPath, 'pluginPath must not be empty'); this.pluginPath = pluginPath; this.app = app; this.loadMainApi(app); @@ -35,15 +35,15 @@ export class Loader { if (get(this.pluginPath, `${item}.enable`)) { const path1 = get(this.pluginPath, `${item}.path`); const baseDir = process.cwd(); - let confPath = ""; - const scriptType = config.getItem("scriptType", "js"); - const prod = process.env.NODE_ENV === "production"; - if (prod || scriptType !== "ts") { - confPath = path.resolve(baseDir, path1, "config.js"); + let confPath = ''; + const scriptType = config.getItem('scriptType', 'js'); + const prod = process.env.NODE_ENV === 'production'; + if (prod || scriptType !== 'ts') { + confPath = path.resolve(baseDir, path1, 'config.js'); } else { - confPath = path.resolve(baseDir, path1, "config.ts"); + confPath = path.resolve(baseDir, path1, 'config.ts'); } - const appPath = path.resolve(baseDir, path1, "app"); + const appPath = path.resolve(baseDir, path1, 'app'); const incomingConf = get(this.pluginPath, item); this.loadConfig(item, confPath, incomingConf); this.loadPlugin(item, appPath); @@ -87,35 +87,35 @@ export class Loader { const mainRouter = new Router(); this.mainRouter = mainRouter; // 默认api的文件夹 - let apiDir = config.getItem("apiDir", "app/api"); + let apiDir = config.getItem('apiDir', 'app/api'); apiDir = `${process.cwd()}/${apiDir}`; const files = getFiles(apiDir); for (const file of files) { - const extention = file.substring(file.lastIndexOf("."), file.length); + const extention = file.substring(file.lastIndexOf('.'), file.length); // 现在只考虑加载.js文件,后续考虑.ts文件 - if (extention === ".js") { + if (extention === '.js') { const mod = require(file); // 如果mod 为 koa-router实例 // const exports = get(mod, "default"); // 如果disableLoading为true,则不加载这个文件路由 // tslint:disable-next-line:no-empty if (mod instanceof Router) { - if (config.getItem("debug")) { + if (config.getItem('debug')) { consola.info(`loading a router instance from file: ${file}`); - get(mod, "stack", []).forEach(ly => { - consola.info(`loading a route: ${get(ly, "path")}`); + get(mod, 'stack', []).forEach(ly => { + consola.info(`loading a route: ${get(ly, 'path')}`); }); } mainRouter.use(mod.routes()).use(mod.allowedMethods()); } else if (!mod[disableLoading]) { Object.keys(mod).forEach(key => { if (mod[key] instanceof Router) { - if (config.getItem("debug")) { + if (config.getItem('debug')) { consola.info( `loading a router instance :${key} from file: ${file}` ); - get(mod[key], "stack", []).forEach(ly => { - consola.info(`loading a route: ${get(ly, "path")}`); + get(mod[key], 'stack', []).forEach(ly => { + consola.info(`loading a route: ${get(ly, 'path')}`); }); } mainRouter.use(mod[key].routes()).use(mod[key].allowedMethods()); diff --git a/lib/log.ts b/lib/log.ts index e4d0086..fd6ba56 100644 --- a/lib/log.ts +++ b/lib/log.ts @@ -1,8 +1,8 @@ -import { IRouterContext } from "koa-router"; -import { assert, findAuthAndModule } from "./util"; -import { get } from "lodash"; -import { Response, Request } from "koa"; -import { Log } from "./core"; +import { IRouterContext } from 'koa-router'; +import { assert, findAuthAndModule } from './util'; +import { get } from 'lodash'; +import { Response, Request } from 'koa'; +import { Log } from './core'; const REG_XP = /(?<=\{)[^}]*(?=\})/g; @@ -46,9 +46,9 @@ function writeLog(template: string, ctx: IRouterContext) { ); if (ctx.matched) { const info = findAuthAndModule(ctx); - let auth = ""; + let auth = ''; if (info) { - auth = get(info, "auth"); + auth = get(info, 'auth'); } const statusCode = ctx.status || 0; // @ts-ignore @@ -83,23 +83,23 @@ export function parseTemplate( const res = REG_XP.exec(template); if (res) { res.forEach(item => { - const index = item.lastIndexOf("."); - assert(index !== -1, item + "中必须包含 . ,且为一个"); + const index = item.lastIndexOf('.'); + assert(index !== -1, item + '中必须包含 . ,且为一个'); const obj = item.substring(0, index); const prop = item.substring(index + 1, item.length); let it; switch (obj) { - case "user": - it = get(user, prop, ""); + case 'user': + it = get(user, prop, ''); break; - case "response": - it = get(reponse, prop, ""); + case 'response': + it = get(reponse, prop, ''); break; - case "request": - it = get(request, prop, ""); + case 'request': + it = get(request, prop, ''); break; default: - it = ""; + it = ''; break; } template = template.replace(`{${item}}`, it); diff --git a/lib/middleware.ts b/lib/middleware.ts index 541cd0d..c6f4d31 100644 --- a/lib/middleware.ts +++ b/lib/middleware.ts @@ -1,11 +1,11 @@ -import { HttpException, NotFound, MethodNotAllowed } from "./exception"; -import { Context } from "koa"; +import { HttpException, NotFound, MethodNotAllowed } from './exception'; +import { Context } from 'koa'; /** * 全局异常处理中间件 */ export const error = (err: Error, ctx: Context) => { - ctx.type = "application/json"; + ctx.type = 'application/json'; if (err instanceof HttpException) { ctx.status = err.code || 500; ctx.body = JSON.stringify({ @@ -17,7 +17,7 @@ export const error = (err: Error, ctx: Context) => { ctx.logger.error(err as any); ctx.body = JSON.stringify({ error_code: 999, - msg: "服务器未知错误", + msg: '服务器未知错误', url: ctx.req.url }); } @@ -31,20 +31,20 @@ export const log = async (ctx: Context, next: () => Promise) => { try { await next(); const ms = Date.now() - start; - ctx.set("X-Response-Time", `${ms}ms`); + ctx.set('X-Response-Time', `${ms}ms`); ctx.logger.info( `[${ctx.method}] -> [${ctx.url}] from: ${ctx.ip} costs: ${ms}ms` ); if (ctx.status === 404) { - ctx.app.emit("error", new NotFound(), ctx); + ctx.app.emit('error', new NotFound(), ctx); } else if (ctx.status === 405) { - ctx.app.emit("error", new MethodNotAllowed(), ctx); + ctx.app.emit('error', new MethodNotAllowed(), ctx); } else if (!ctx.body) { - ctx.app.emit("error", new HttpException({ msg: ctx.message }), ctx); + ctx.app.emit('error', new HttpException({ msg: ctx.message }), ctx); } } catch (err) { ctx.status = ctx.status || 500; - ctx.app.emit("error", err, ctx); + ctx.app.emit('error', err, ctx); } }; diff --git a/lib/password-hash.ts b/lib/password-hash.ts index f57058d..539e11a 100644 --- a/lib/password-hash.ts +++ b/lib/password-hash.ts @@ -2,20 +2,20 @@ * 借鉴 node-password-hash link: https://github.com/davidwood/node-password-hash * 实现原理与werkzeug的原理基本一样 */ -import crypto from "crypto"; +import crypto from 'crypto'; let saltChars = - "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"; + 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789'; let saltCharsCount = saltChars.length; function generateSalt(len: number) { if (crypto.randomBytes) { return crypto .randomBytes(Math.ceil(len / 2)) - .toString("hex") + .toString('hex') .substring(0, len); } else { - let salt = ""; + let salt = ''; for (let i = 0; i < len; i++) { salt += saltChars.charAt(Math.floor(Math.random() * saltCharsCount)); } @@ -36,11 +36,11 @@ function generateHash( hash = crypto .createHmac(algorithm, salt) .update(hash) - .digest("hex"); + .digest('hex'); } - return algorithm + "$" + salt + "$" + iterations + "$" + hash; + return algorithm + '$' + salt + '$' + iterations + '$' + hash; } catch (e) { - throw new Error("Invalid message digest algorithm"); + throw new Error('Invalid message digest algorithm'); } } @@ -57,7 +57,7 @@ export interface Option { */ export const generate = function(password: string, options?: Option) { options || (options = {}); - options.algorithm || (options.algorithm = "sha1"); + options.algorithm || (options.algorithm = 'sha1'); options.saltLength || options.saltLength === 0 || (options.saltLength = 8); options.iterations || (options.iterations = 1); let salt = generateSalt(options.saltLength); @@ -71,7 +71,7 @@ export const generate = function(password: string, options?: Option) { */ export const verify = function(password: string, hashedPassword: string) { if (!password || !hashedPassword) return false; - let parts = hashedPassword.split("$"); + let parts = hashedPassword.split('$'); if (parts.length !== 4) return false; try { const iter = parseInt(parts[2], 10); @@ -87,5 +87,5 @@ export const verify = function(password: string, hashedPassword: string) { */ export const isHashed = function(password: string) { if (!password) return false; - return password.split("$").length === 4; + return password.split('$').length === 4; }; diff --git a/lib/plugin.ts b/lib/plugin.ts index 94607e8..95b1e54 100644 --- a/lib/plugin.ts +++ b/lib/plugin.ts @@ -1,11 +1,10 @@ -import { set, get } from "lodash"; +import { set, get } from 'lodash'; /** * 插件类,一个插件包含自己的业务 (router),自己的模型 (model) * 自己的校验层,视图层 */ export class Plugin { - /** * 插件名称 */ diff --git a/lib/sse.ts b/lib/sse.ts index 621da3c..e31264c 100644 --- a/lib/sse.ts +++ b/lib/sse.ts @@ -1,4 +1,4 @@ -import { Transform, Readable, TransformCallback } from "stream"; +import { Transform, Readable, TransformCallback } from 'stream'; /** * SSE功能封装类 @@ -9,7 +9,7 @@ export class SSE extends Transform { } _transform(chunk: any, encoding: string, cb: TransformCallback) { - this.push(chunk.toString("utf8")); + this.push(chunk.toString('utf8')); cb(); } } @@ -99,7 +99,7 @@ export class MessageBroker { * 拼接buffer */ joinBuffer() { - return this.buffer.join(""); + return this.buffer.join(''); } /** @@ -121,7 +121,7 @@ export class MessageBroker { if (comment) { this.buffer.push(comment); } else { - this.buffer.push(": sse sever is still alive \n\n"); + this.buffer.push(': sse sever is still alive \n\n'); const tmp = this.joinBuffer(); this.buffer.length = 0; return tmp; diff --git a/lib/util.ts b/lib/util.ts index 8f22cc1..968f366 100644 --- a/lib/util.ts +++ b/lib/util.ts @@ -1,26 +1,26 @@ -import { IRouterContext } from "koa-router"; -import fs from "fs"; -import { routeMetaInfo } from "./core"; -import { get, unset } from "lodash"; -import { config } from "./config"; -import { ParametersException } from "./exception"; -import { extendedValidator } from "./extended-validator"; -import { __decorate, __metadata } from "tslib"; +import { IRouterContext } from 'koa-router'; +import fs from 'fs'; +import { routeMetaInfo } from './core'; +import { get, unset } from 'lodash'; +import { config } from './config'; +import { ParametersException } from './exception'; +import { extendedValidator } from './extended-validator'; +import { __decorate, __metadata } from 'tslib'; export const isUndefined = (obj: any): obj is undefined => - typeof obj === "undefined"; + typeof obj === 'undefined'; -export const isFunction = (fn: any): boolean => typeof fn === "function"; +export const isFunction = (fn: any): boolean => typeof fn === 'function'; export const isObject = (fn: any): fn is object => - !isNil(fn) && typeof fn === "object"; + !isNil(fn) && typeof fn === 'object'; -export const isString = (fn: any): fn is string => typeof fn === "string"; +export const isString = (fn: any): fn is string => typeof fn === 'string'; -export const isConstructor = (fn: string): boolean => fn === "constructor"; +export const isConstructor = (fn: string): boolean => fn === 'constructor'; export const validatePath = (path?: string): string => - path ? (path.charAt(0) !== "/" ? "/" + path : path) : ""; + path ? (path.charAt(0) !== '/' ? '/' + path : path) : ''; // tslint:disable-next-line: strict-type-predicates export const isNil = (obj: null): boolean => isUndefined(obj) || obj === null; @@ -28,10 +28,10 @@ export const isNil = (obj: null): boolean => isUndefined(obj) || obj === null; export const isEmpty = (array: { length: number }): boolean => !(array && array.length > 0); -export const isSymbol = (fn: any): fn is symbol => typeof fn === "symbol"; +export const isSymbol = (fn: any): fn is symbol => typeof fn === 'symbol'; export const strVal = (value: any) => - typeof value === "string" ? value : String(value); + typeof value === 'string' ? value : String(value); export const isNotEmpty = extendedValidator.isNotEmpty; @@ -44,7 +44,7 @@ export const isPositive = extendedValidator.isPositive; */ export function assert(ok: boolean, ...args: string[]): void { if (!ok) { - throw new Error(args.join(" ")); + throw new Error(args.join(' ')); } } @@ -57,7 +57,7 @@ export function toHump(name: string) { // 驼峰转换下划线 export function toLine(name: string) { - return name.replace(/([A-Z])/g, "_$1").toLowerCase(); + return name.replace(/([A-Z])/g, '_$1').toLowerCase(); } /** @@ -74,7 +74,7 @@ export function findMetaByAuth(auth: any) { const dests = Array.from(routeMetaInfo.values()); for (let i = 0; i < dests.length; i++) { const el = dests[i]; - if (el["auth"] === auth) { + if (el['auth'] === auth) { return el; } } @@ -86,7 +86,7 @@ export function findMetaByAuth(auth: any) { * @param time input time */ export function checkDateFormat(time: string) { - if (!time || time === "") { + if (!time || time === '') { return true; } const r = time.match( @@ -113,13 +113,13 @@ export function checkDateFormat(time: string) { export function paginate(ctx: IRouterContext) { let count = - get(ctx.request.query, "count") || config.getItem("countDefault", 10); + get(ctx.request.query, 'count') || config.getItem('countDefault', 10); let start = - get(ctx.request.query, "page") || config.getItem("pageDefault", 0); + get(ctx.request.query, 'page') || config.getItem('pageDefault', 0); count = parseInt(count >= 15 ? 15 : count, 10); start = parseInt(start, 10) * count; if (start < 0 || count < 0) { - throw new ParametersException({ msg: "请输入正确的分页参数" }); + throw new ParametersException({ msg: '请输入正确的分页参数' }); } return { start, count }; } @@ -163,7 +163,7 @@ export function unsets(obj: any, props: Array) { */ export function decorateProp(decorators, type, target, key) { return __decorate( - [...decorators, __metadata("design:type", type)], + [...decorators, __metadata('design:type', type)], target, key ); @@ -244,7 +244,7 @@ export function getFiles(dir: string) { let res: string[] = []; const files = fs.readdirSync(dir); for (const file of files) { - const name = dir + "/" + file; + const name = dir + '/' + file; if (fs.statSync(name).isDirectory()) { const tmp = getFiles(name); res = res.concat(tmp); diff --git a/tests/config.test.ts b/tests/config.test.ts index 77900bb..a5adb2a 100644 --- a/tests/config.test.ts +++ b/tests/config.test.ts @@ -1,15 +1,15 @@ -import { Config } from "../lib/config"; +import { Config } from '../lib/config'; -test("测试Config", () => { +test('测试Config', () => { const conf = new Config(); - conf.getConfigFromFile("tests/setting.js"); - expect(conf.getItem("hello", null)).toBe(null); - expect(conf.hasItem("hello")).toBe(false); + conf.getConfigFromFile('tests/setting.js'); + expect(conf.getItem('hello', null)).toBe(null); + expect(conf.hasItem('hello')).toBe(false); - expect(conf.setItem("user.gender", "man")).toBe(undefined); - expect(conf.getItem("user.name")).toBe("pedro"); + expect(conf.setItem('user.gender', 'man')).toBe(undefined); + expect(conf.getItem('user.name')).toBe('pedro'); - conf.getConfigFromObj({ header: "user-agent", body: "world" }); - expect(conf.getItem("user.gender")).toBe("man"); - expect(conf.getItem("body")).toBe("world"); + conf.getConfigFromObj({ header: 'user-agent', body: 'world' }); + expect(conf.getItem('user.gender')).toBe('man'); + expect(conf.getItem('body')).toBe('world'); }); diff --git a/tests/enums.test.ts b/tests/enums.test.ts index b338688..f23cc84 100644 --- a/tests/enums.test.ts +++ b/tests/enums.test.ts @@ -1,11 +1,11 @@ -import { UserActive, UserAdmin } from "../lib/enums"; +import { UserActive, UserAdmin } from '../lib/enums'; -test("测试UserSuper", () => { +test('测试UserSuper', () => { expect(UserAdmin.COMMON).toBe(1); expect(UserAdmin.ADMIN).toBe(2); }); -test("测试UserActive", () => { +test('测试UserActive', () => { expect(UserActive.ACTIVE).toBe(1); expect(UserActive.NOT_ACTIVE).toBe(2); }); diff --git a/tests/exception.test.ts b/tests/exception.test.ts index 9ba1366..0346fb5 100644 --- a/tests/exception.test.ts +++ b/tests/exception.test.ts @@ -1,21 +1,21 @@ -import { HttpException, ParametersException, Success } from "../lib/exception"; +import { HttpException, ParametersException, Success } from '../lib/exception'; -test("测试HttpException基类", () => { +test('测试HttpException基类', () => { const ex = new HttpException(); expect(ex.code).toBe(500); expect(ex.errorCode).toBe(999); }); -test("测试ParametersException", () => { +test('测试ParametersException', () => { const ex = new ParametersException(); expect(ex.code).toBe(400); expect(ex.errorCode).toBe(10030); - expect(ex.msg).toBe("参数错误"); + expect(ex.msg).toBe('参数错误'); }); -test("测试Success", () => { +test('测试Success', () => { const ex = new Success(); expect(ex.code).toBe(201); expect(ex.errorCode).toBe(0); - expect(ex.msg).toBe("成功"); + expect(ex.msg).toBe('成功'); }); diff --git a/tests/jwt.test.ts b/tests/jwt.test.ts index 437c042..8dd7a19 100644 --- a/tests/jwt.test.ts +++ b/tests/jwt.test.ts @@ -1,15 +1,15 @@ -import { Token } from "../lib/jwt"; -import { InvalidTokenException, ExpiredTokenException } from "../lib/exception"; +import { Token } from '../lib/jwt'; +import { InvalidTokenException, ExpiredTokenException } from '../lib/exception'; -test("测试令牌生成", () => { +test('测试令牌生成', () => { const TEST_EXP = Math.floor(Date.now() / 1000) + 30; // 30s const REFRESH_EXP = Math.floor(Date.now() / 1000) + 60 * 60 * 24 * 30 * 3; // 3 months - const SECRET = "ui908908uhohachsoshisospowou"; + const SECRET = 'ui908908uhohachsoshisospowou'; const token = new Token(SECRET, TEST_EXP, REFRESH_EXP); - const access = token.createAccessToken("pedro"); - const refresh = token.createRefreshToken("pedro"); + const access = token.createAccessToken('pedro'); + const refresh = token.createRefreshToken('pedro'); console.log(access); console.log(refresh); expect(access).not.toBe(null); @@ -23,10 +23,10 @@ function sleep(delay: number) { } } -test("测试令牌过期和损坏", () => { +test('测试令牌过期和损坏', () => { const TEST_EXP = Math.floor(Date.now() / 1000) + 30; // 30s const REFRESH_EXP = Math.floor(Date.now() / 1000) + 60 * 60 * 24 * 30 * 3; // 3 month - const SECRET = "ui908908uhohachsoshisospowou"; + const SECRET = 'ui908908uhohachsoshisospowou'; const token = new Token(SECRET, TEST_EXP, REFRESH_EXP); @@ -39,11 +39,11 @@ test("测试令牌过期和损坏", () => { expect(refresh).not.toBe(null); const obj = token.verifyToken(access); - expect(obj).toHaveProperty("identity", 1); + expect(obj).toHaveProperty('identity', 1); console.log(obj); expect(() => { - token.verifyToken(access + "s"); + token.verifyToken(access + 's'); }).toThrow(new InvalidTokenException({})); sleep(33 * 1000); diff --git a/tests/passwordHash.test.ts b/tests/passwordHash.test.ts index 812f39e..715c97f 100644 --- a/tests/passwordHash.test.ts +++ b/tests/passwordHash.test.ts @@ -1,17 +1,17 @@ -import { generate, verify } from "../lib/passwordHash"; +import { generate, verify } from '../lib/password-hash'; -test("测试加密解密1", () => { - const hash = generate("123456gpd"); - const decoded = verify("123456gpd", hash); +test('测试加密解密1', () => { + const hash = generate('123456gpd'); + const decoded = verify('123456gpd', hash); console.log(hash); console.log(decoded); expect(hash).not.toBe(null); expect(decoded).toBe(true); }); -test("测试加密解密2", () => { - const hash = generate("123456gpdhjihh$"); - const decoded = verify("123456gpdhjihh$", hash); +test('测试加密解密2', () => { + const hash = generate('123456gpdhjihh$'); + const decoded = verify('123456gpdhjihh$', hash); console.log(hash); console.log(decoded); expect(hash).not.toBe(null); diff --git a/tests/redprint.test.ts b/tests/redprint.test.ts index 9abbde9..cb50a68 100644 --- a/tests/redprint.test.ts +++ b/tests/redprint.test.ts @@ -1,20 +1,20 @@ -import { LinRouter } from "../lib/linRouter"; -import { routeMetaInfo } from "../lib/core"; -import { groupRequired } from "../lib/jwt"; +import { LinRouter } from '../lib/lin-router'; +import { routeMetaInfo } from '../lib/core'; +import { groupRequired } from '../lib/jwt'; // ts的装饰器只能对类和类方法使用,不能对函数直接使用 // 拒绝脸 -test("测试红图挂载", () => { - const rp = new LinRouter({ prefix: "test" }); +test('测试红图挂载', () => { + const rp = new LinRouter({ prefix: 'test' }); console.log(routeMetaInfo); rp.linGet( - "测试红图", - "/", - { auth: "打个招呼", module: "看看你咯", mount: true }, + '测试红图', + '/', + { auth: '打个招呼', module: '看看你咯', mount: true }, groupRequired, async (ctx, next) => { - ctx.body = "world"; + ctx.body = 'world'; } ); diff --git a/tests/setting.js b/tests/setting.js index 8209f1b..8fa2729 100644 --- a/tests/setting.js +++ b/tests/setting.js @@ -1,4 +1,4 @@ exports.user = { - name: "pedro", + name: 'pedro', age: 23 -} \ No newline at end of file +}; diff --git a/tests/token.test.ts b/tests/token.test.ts new file mode 100644 index 0000000..b76a156 --- /dev/null +++ b/tests/token.test.ts @@ -0,0 +1,18 @@ +const { createAccessToken, verifyAccessToken } = require('../lib/jwt'); +const { config } = require('../lib/config'); + +beforeAll(() => { + config.setItem('secret', 'hiugugugjvvufuyfuyf'); +}); + +test('测试token生成,验证', () => { + const token = createAccessToken({ + nickname: 'pedro', + exp: Math.floor(Date.now() / 1000) + 60 * 60 + }); + expect(token).not.toBe(''); + console.log(token); + const decode = verifyAccessToken(token); + const date = new Date(decode['exp'] * 1000); + console.log(date); +}); diff --git a/tslint.json b/tslint.json index f31b08d..adb8b4b 100644 --- a/tslint.json +++ b/tslint.json @@ -1,7 +1,7 @@ { "extends": "tslint-config-standard", "rules": { - "quotemark": true, + "quotemark": false, "semicolon": true, "space-before-function-paren": false, "whitespace": true @@ -9,4 +9,4 @@ "linterOptions": { "exclude": ["node_modules/**", "lin/**/**"] } -} \ No newline at end of file +} From ed031979b85deb0722e6414fffa0a6af3f11d4c8 Mon Sep 17 00:00:00 2001 From: pedro Date: Sun, 12 May 2019 17:42:17 +0800 Subject: [PATCH 04/15] =?UTF-8?q?feat:=E6=B7=BB=E5=8A=A0file=E6=A8=A1?= =?UTF-8?q?=E5=9E=8B=E5=92=8Cmulpart=E6=96=87=E4=BB=B6=E8=A7=A3=E6=9E=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/core.ts | 56 +++++++++++++++++++++++- lib/exception.ts | 24 ++++++++++ lib/extend.ts | 112 ++++++++++++++++++++++++++++++++++++++++++++++- lib/file.ts | 6 ++- lib/interface.ts | 31 +++++++++++++ package.json | 6 ++- 6 files changed, 229 insertions(+), 6 deletions(-) diff --git a/lib/core.ts b/lib/core.ts index 51b0bc7..6901cfd 100644 --- a/lib/core.ts +++ b/lib/core.ts @@ -9,7 +9,8 @@ import { UserInterface, GroupInterface, AuthInterface, - LogInterface + LogInterface, + FileInterface } from './interface'; import { json, logging, success } from './extend'; import { NotFound, ParametersException } from './exception'; @@ -417,3 +418,56 @@ Log.init( LogInterface.options ) ); + +export interface FileArgs { + path?: string; + type?: number; + name?: string; + extension?: string; + size?: number; +} + +/** + * 文件模型 + * id,path,type,name,extension,size + */ +export class File extends Model { + public id!: number; + public path!: string; + public type!: number; // 1 => local + public name!: string; + public extension!: string; + public size!: number; + + static createRecord(args?: FileArgs, commit?: boolean) { + const record = File.build(args as any); + commit && record.save(); + return record; + } + + toJSON() { + let origin = { + id: this.id, + path: this.path, + type: this.type, + name: this.name, + extension: this.extension, + size: this.size + }; + return origin; + } +} + +File.init( + { + ...FileInterface + }, + { + sequelize: db, + tableName: 'lin_file', + modelName: 'file', + createdAt: false, + updatedAt: false, + deletedAt: false + } +); diff --git a/lib/exception.ts b/lib/exception.ts index 2e41c54..d9a632e 100644 --- a/lib/exception.ts +++ b/lib/exception.ts @@ -352,3 +352,27 @@ export class RefreshException extends HttpException { } } } + +/** + * 文件体积过大 + */ +export class FileTooLargeException extends HttpException { + public code = 413; + public msg = '文件体积过大'; + public errorCode = 10110; + + constructor(ex?: Exception) { + super(); + if (ex && ex.code) { + assert(isInteger(ex.code)); + this.code = ex.code; + } + if (ex && ex.msg) { + this.msg = ex.msg; + } + if (ex && ex.errorCode) { + assert(isInteger(ex.errorCode)); + this.errorCode = ex.errorCode; + } + } +} diff --git a/lib/extend.ts b/lib/extend.ts index 316d198..01f100c 100644 --- a/lib/extend.ts +++ b/lib/extend.ts @@ -1,8 +1,17 @@ import Application from 'koa'; -import { HttpException, Success, Exception } from './exception'; +import { + HttpException, + Success, + Exception, + FileTooLargeException +} from './exception'; import consola from 'consola'; import { toLine, unsets } from './util'; -import { get, set } from 'lodash'; +import { config } from './config'; +import { get, set, cloneDeep } from 'lodash'; +import parse from 'co-busboy'; +import sendToWormhole from 'stream-wormhole'; +import { extname } from 'path'; /** * json序列化扩展 @@ -81,3 +90,102 @@ export const success = (app: Application) => { export const logging = (app: Application) => { app.context.logger = consola; }; + +/** + * 解析上传文件 + * @param app app实例 + */ +export const multipart = (app: Application) => { + app.context.multipart = async function(autoFields = false) { + // multipart/form-data + if (!this.is('multipart')) { + throw new Error('Content-Type must be multipart/*'); + } + // field指表单中的非文件 + const parts = parse(this, { autoFields: autoFields }); + let part; + let totalSize = 0; + const files: any[] = []; + // tslint:disable-next-line:no-conditional-assignment + while ((part = await parts()) != null) { + if (part.length) { + // arrays are busboy fields + // console.log('field: ' + part[0]); + // console.log('value: ' + part[1]); + // console.log('valueTruncated: ' + part[2]); + // console.log('fieldnameTruncated: ' + part[3]); + } else { + if (!part.filename) { + // user click `upload` before choose a file, + // `part` will be file stream, but `part.filename` is empty + // must handler this, such as log error. + await sendToWormhole(part); + continue; + } + // otherwise, it's a stream + // console.log('field: ' + part.fieldname); + // console.log('filename: ' + part.filename); + // console.log('encoding: ' + part.encoding); + // console.log('mime: ' + part.mime); + // part.readableLength 31492 检查单个文件的大小 + // 超过长度,则跳过该文件 + // 检查extension,失败跳过该文件 + // const ext = extname(part.filename); + if (checkFileExtension(extname(part.filename))) { + if (checkSingleFileSize(part.readableLength)) { + // 计算总大小 + totalSize += part.readableLength; + const tmp = cloneDeep(part); + files.push(tmp); + } + } + // 恢复再次接受data + part.resume(); + } + } + if (!checkTotalFileSize(totalSize)) { + throw new FileTooLargeException(); + } + return files; + }; +}; + +function checkSingleFileSize(size: number) { + // file_include,file_exclude,file_single_limit,file_total_limit,file_store_dir + // 默认 2M + const confSize = config.getItem('file_single_limit', 1024 * 1024 * 2); + return confSize > size; +} + +function checkTotalFileSize(size: number) { + // 默认 20M + const confSize = config.getItem('file_total_limit', 1024 * 1024 * 20); + return confSize > size; +} + +function checkFileExtension(ext: string) { + const fileInclude = config.getItem('file_include'); + const fileExclude = config.getItem('file_exclude'); + // 如果两者都有取fileInclude,有一者则用一者 + if (fileInclude && fileExclude) { + if (!Array.isArray(fileInclude)) { + throw new Error('file_include must an array!'); + } + return fileInclude.includes(ext); + } else if (fileInclude && !fileExclude) { + // 有include,无exclude + if (!Array.isArray(fileInclude)) { + throw new Error('file_include must an array!'); + } + return fileInclude.includes(ext); + } else if (fileExclude && !fileInclude) { + // 有exclude,无include + if (!Array.isArray(fileExclude)) { + throw new Error('file_exclude must an array!'); + } + return !fileExclude.includes(ext); + } else { + // 二者都没有 + return true; + } +} diff --git a/lib/file.ts b/lib/file.ts index 6cea079..a934fe3 100644 --- a/lib/file.ts +++ b/lib/file.ts @@ -13,10 +13,12 @@ class Uploader { /** * 处理文件流Stream */ - public handle() {} + public upload() {} /** * 存储到lin_file */ - public save() {} + public save() { + + } } diff --git a/lib/interface.ts b/lib/interface.ts index d5e196c..74e82ae 100644 --- a/lib/interface.ts +++ b/lib/interface.ts @@ -185,3 +185,34 @@ export const LogInterface = { } } }; + +/** + * 文件接口 + */ +export const FileInterface = { + id: { + type: Sequelize.INTEGER, + primaryKey: true, + autoIncrement: true + }, + path: { + type: Sequelize.STRING({ length: 500 }), + allowNull: false + }, + type: { + type: Sequelize.TINYINT, + allowNull: false, + defaultValue: 1 + }, + name: { + type: Sequelize.STRING(30), + allowNull: false + }, + extension: { + type: Sequelize.STRING(20) + }, + size: { + type: Sequelize.INTEGER, + allowNull: true + } +}; diff --git a/package.json b/package.json index 595a677..705eac7 100644 --- a/package.json +++ b/package.json @@ -25,8 +25,12 @@ "koa-router": "^7.4.0", "lodash": "^4.17.11", "mysql2": "^1.6.5", + "mz-modules": "^2.1.0", "sequelize": "^5.3.5", - "tslib": "^1.9.3" + "tslib": "^1.9.3", + "uuid": "^3.3.2", + "co-busboy": "^1.4.0", + "stream-wormhole": "^1.1.0" }, "devDependencies": { "@types/consola": "^1.0.0", From 58b57a3eefb4efca0ac8b0f96b0f9a167f66691f Mon Sep 17 00:00:00 2001 From: pedro Date: Sun, 12 May 2019 22:19:08 +0800 Subject: [PATCH 05/15] =?UTF-8?q?feat:=E6=B7=BB=E5=8A=A0=E5=9F=BA=E7=A1=80?= =?UTF-8?q?=E7=9A=84uploader=E7=B1=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/assets/js/search.js | 2 +- docs/classes/_config_.config.html | 17 +- docs/classes/_core_.auth.html | 19 +- docs/classes/_core_.file.html | 6236 +++++++++++++++++ docs/classes/_core_.group.html | 17 +- docs/classes/_core_.lin.html | 25 +- docs/classes/_core_.log.html | 31 +- docs/classes/_core_.manager.html | 27 +- docs/classes/_core_.user.html | 39 +- docs/classes/_exception_.authfailed.html | 18 +- .../_exception_.expiredtokenexception.html | 18 +- docs/classes/_exception_.failed.html | 18 +- .../_exception_.filetoolargeexception.html | 448 ++ docs/classes/_exception_.forbidden.html | 18 +- docs/classes/_exception_.httpexception.html | 21 +- .../_exception_.invalidtokenexception.html | 18 +- .../classes/_exception_.methodnotallowed.html | 18 +- docs/classes/_exception_.notfound.html | 18 +- .../_exception_.parametersexception.html | 18 +- .../classes/_exception_.refreshexception.html | 18 +- docs/classes/_exception_.repeatexception.html | 18 +- docs/classes/_exception_.success.html | 18 +- .../classes/_exception_.unknownexception.html | 18 +- ...extended_validator_.extendedvalidator.html | 25 +- docs/classes/_file_.uploader.html | 444 ++ docs/classes/_jwt_.token.html | 59 +- docs/classes/_lin_router_.linrouter.html | 17 +- .../classes/_lin_router_.linrouter.layer.html | 3 + .../_lin_router_.linrouter.paramname.html | 3 + .../classes/_lin_validator_.linvalidator.html | 25 +- docs/classes/_lin_validator_.rule.html | 21 +- docs/classes/_loader_.loader.html | 21 +- docs/classes/_mixin_.jsonmixin.html | 5 +- docs/classes/_plugin_.plugin.html | 17 +- docs/classes/_sse_.messagebroker.html | 33 +- docs/classes/_sse_.sse.html | 7 +- docs/classes/_sse_.subscription.html | 9 +- docs/enums/_enums_.tokentype.html | 7 +- docs/enums/_enums_.useractive.html | 7 +- docs/enums/_enums_.useradmin.html | 7 +- docs/globals.html | 4 + docs/index.html | 3 + docs/interfaces/_core_.fileargs.html | 355 + docs/interfaces/_core_.logargs.html | 23 +- docs/interfaces/_exception_.exception.html | 12 +- .../_extended_validator_.isfloatoptions.html | 11 +- .../_extended_validator_.isintoptions.html | 13 +- .../_lin_router_.linrouter.ilayeroptions.html | 3 + ...in_router_.linrouter.iparammiddleware.html | 3 + ...inrouter.irouterallowedmethodsoptions.html | 3 + ..._lin_router_.linrouter.iroutercontext.html | 3 + ..._lin_router_.linrouter.irouteroptions.html | 3 + ...router_.linrouter.irouterparamcontext.html | 3 + .../_lin_router_.linrouter.iroutesmatch.html | 3 + ...in_router_.linrouter.iurloptionsquery.html | 3 + docs/interfaces/_lin_router_.meta.html | 9 +- docs/interfaces/_password_hash_.option.html | 9 +- docs/interfaces/_util_.objoptions.html | 7 +- docs/modules/_config_.html | 5 +- docs/modules/_core_.html | 19 +- docs/modules/_db_.html | 35 +- docs/modules/_enums_.html | 3 + docs/modules/_exception_.html | 7 + docs/modules/_extend_.html | 129 +- docs/modules/_extended_validator_.html | 5 +- docs/modules/_factory_.html | 5 +- docs/modules/_file_.html | 233 + docs/modules/_index_.html | 3 + docs/modules/_interface_.html | 496 +- docs/modules/_jwt_.html | 191 +- docs/modules/_lin_router_.html | 3 + docs/modules/_lin_validator_.html | 3 + docs/modules/_loader_.html | 3 + docs/modules/_log_.html | 11 +- docs/modules/_middleware_.html | 7 +- docs/modules/_mixin_.html | 3 + docs/modules/_password_hash_.html | 17 +- docs/modules/_plugin_.html | 3 + docs/modules/_sse_.html | 3 + docs/modules/_util_.html | 55 +- example/simple.js | 27 +- lib/file.ts | 47 +- lib/interface.ts | 3 +- package.json | 1 + 84 files changed, 9099 insertions(+), 496 deletions(-) create mode 100644 docs/classes/_core_.file.html create mode 100644 docs/classes/_exception_.filetoolargeexception.html create mode 100644 docs/classes/_file_.uploader.html create mode 100644 docs/interfaces/_core_.fileargs.html create mode 100644 docs/modules/_file_.html diff --git a/docs/assets/js/search.js b/docs/assets/js/search.js index dcb05e0..c04cf48 100644 --- a/docs/assets/js/search.js +++ b/docs/assets/js/search.js @@ -1,3 +1,3 @@ var typedoc = typedoc || {}; typedoc.search = typedoc.search || {}; - typedoc.search.data = {"kinds":{"1":"External module","4":"Enumeration","16":"Enumeration member","32":"Variable","64":"Function","128":"Class","256":"Interface","512":"Constructor","1024":"Property","2048":"Method","65536":"Type literal","262144":"Accessor","2097152":"Object literal","4194304":"Type alias"},"rows":[{"id":0,"kind":1,"name":"\"config\"","url":"modules/_config_.html","classes":"tsd-kind-external-module"},{"id":1,"kind":128,"name":"Config","url":"classes/_config_.config.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"config\""},{"id":2,"kind":1024,"name":"store","url":"classes/_config_.config.html#store","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"config\".Config"},{"id":3,"kind":2048,"name":"initApp","url":"classes/_config_.config.html#initapp","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"config\".Config"},{"id":4,"kind":2048,"name":"getItem","url":"classes/_config_.config.html#getitem","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"config\".Config"},{"id":5,"kind":2048,"name":"hasItem","url":"classes/_config_.config.html#hasitem","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"config\".Config"},{"id":6,"kind":2048,"name":"setItem","url":"classes/_config_.config.html#setitem","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"config\".Config"},{"id":7,"kind":2048,"name":"getConfigFromFile","url":"classes/_config_.config.html#getconfigfromfile","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"config\".Config"},{"id":8,"kind":2048,"name":"getConfigFromObj","url":"classes/_config_.config.html#getconfigfromobj","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"config\".Config"},{"id":9,"kind":32,"name":"config","url":"modules/_config_.html#config-1","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"config\""},{"id":10,"kind":1,"name":"\"exception\"","url":"modules/_exception_.html","classes":"tsd-kind-external-module"},{"id":11,"kind":256,"name":"Exception","url":"interfaces/_exception_.exception.html","classes":"tsd-kind-interface tsd-parent-kind-external-module","parent":"\"exception\""},{"id":12,"kind":1024,"name":"code","url":"interfaces/_exception_.exception.html#code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"exception\".Exception"},{"id":13,"kind":1024,"name":"msg","url":"interfaces/_exception_.exception.html#msg","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"exception\".Exception"},{"id":14,"kind":1024,"name":"errorCode","url":"interfaces/_exception_.exception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"exception\".Exception"},{"id":15,"kind":128,"name":"HttpException","url":"classes/_exception_.httpexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":16,"kind":1024,"name":"code","url":"classes/_exception_.httpexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"exception\".HttpException"},{"id":17,"kind":1024,"name":"msg","url":"classes/_exception_.httpexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"exception\".HttpException"},{"id":18,"kind":1024,"name":"errorCode","url":"classes/_exception_.httpexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"exception\".HttpException"},{"id":19,"kind":1024,"name":"fields","url":"classes/_exception_.httpexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"exception\".HttpException"},{"id":20,"kind":512,"name":"constructor","url":"classes/_exception_.httpexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"exception\".HttpException"},{"id":21,"kind":1024,"name":"name","url":"classes/_exception_.httpexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".HttpException"},{"id":22,"kind":1024,"name":"message","url":"classes/_exception_.httpexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".HttpException"},{"id":23,"kind":1024,"name":"stack","url":"classes/_exception_.httpexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".HttpException"},{"id":24,"kind":1024,"name":"Error","url":"classes/_exception_.httpexception.html#error","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"\"exception\".HttpException"},{"id":25,"kind":128,"name":"Success","url":"classes/_exception_.success.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":26,"kind":1024,"name":"code","url":"classes/_exception_.success.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Success"},{"id":27,"kind":1024,"name":"msg","url":"classes/_exception_.success.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Success"},{"id":28,"kind":1024,"name":"errorCode","url":"classes/_exception_.success.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Success"},{"id":29,"kind":512,"name":"constructor","url":"classes/_exception_.success.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Success"},{"id":30,"kind":1024,"name":"fields","url":"classes/_exception_.success.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Success"},{"id":31,"kind":1024,"name":"name","url":"classes/_exception_.success.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Success"},{"id":32,"kind":1024,"name":"message","url":"classes/_exception_.success.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Success"},{"id":33,"kind":1024,"name":"stack","url":"classes/_exception_.success.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".Success"},{"id":34,"kind":128,"name":"Failed","url":"classes/_exception_.failed.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":35,"kind":1024,"name":"code","url":"classes/_exception_.failed.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Failed"},{"id":36,"kind":1024,"name":"msg","url":"classes/_exception_.failed.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Failed"},{"id":37,"kind":1024,"name":"errorCode","url":"classes/_exception_.failed.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Failed"},{"id":38,"kind":512,"name":"constructor","url":"classes/_exception_.failed.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Failed"},{"id":39,"kind":1024,"name":"fields","url":"classes/_exception_.failed.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Failed"},{"id":40,"kind":1024,"name":"name","url":"classes/_exception_.failed.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Failed"},{"id":41,"kind":1024,"name":"message","url":"classes/_exception_.failed.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Failed"},{"id":42,"kind":1024,"name":"stack","url":"classes/_exception_.failed.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".Failed"},{"id":43,"kind":128,"name":"AuthFailed","url":"classes/_exception_.authfailed.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":44,"kind":1024,"name":"code","url":"classes/_exception_.authfailed.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".AuthFailed"},{"id":45,"kind":1024,"name":"msg","url":"classes/_exception_.authfailed.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".AuthFailed"},{"id":46,"kind":1024,"name":"errorCode","url":"classes/_exception_.authfailed.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".AuthFailed"},{"id":47,"kind":512,"name":"constructor","url":"classes/_exception_.authfailed.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".AuthFailed"},{"id":48,"kind":1024,"name":"fields","url":"classes/_exception_.authfailed.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".AuthFailed"},{"id":49,"kind":1024,"name":"name","url":"classes/_exception_.authfailed.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".AuthFailed"},{"id":50,"kind":1024,"name":"message","url":"classes/_exception_.authfailed.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".AuthFailed"},{"id":51,"kind":1024,"name":"stack","url":"classes/_exception_.authfailed.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".AuthFailed"},{"id":52,"kind":128,"name":"NotFound","url":"classes/_exception_.notfound.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":53,"kind":1024,"name":"code","url":"classes/_exception_.notfound.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".NotFound"},{"id":54,"kind":1024,"name":"msg","url":"classes/_exception_.notfound.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".NotFound"},{"id":55,"kind":1024,"name":"errorCode","url":"classes/_exception_.notfound.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".NotFound"},{"id":56,"kind":512,"name":"constructor","url":"classes/_exception_.notfound.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".NotFound"},{"id":57,"kind":1024,"name":"fields","url":"classes/_exception_.notfound.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".NotFound"},{"id":58,"kind":1024,"name":"name","url":"classes/_exception_.notfound.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".NotFound"},{"id":59,"kind":1024,"name":"message","url":"classes/_exception_.notfound.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".NotFound"},{"id":60,"kind":1024,"name":"stack","url":"classes/_exception_.notfound.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".NotFound"},{"id":61,"kind":128,"name":"ParametersException","url":"classes/_exception_.parametersexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":62,"kind":1024,"name":"code","url":"classes/_exception_.parametersexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ParametersException"},{"id":63,"kind":1024,"name":"msg","url":"classes/_exception_.parametersexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ParametersException"},{"id":64,"kind":1024,"name":"errorCode","url":"classes/_exception_.parametersexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ParametersException"},{"id":65,"kind":512,"name":"constructor","url":"classes/_exception_.parametersexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ParametersException"},{"id":66,"kind":1024,"name":"fields","url":"classes/_exception_.parametersexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".ParametersException"},{"id":67,"kind":1024,"name":"name","url":"classes/_exception_.parametersexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".ParametersException"},{"id":68,"kind":1024,"name":"message","url":"classes/_exception_.parametersexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".ParametersException"},{"id":69,"kind":1024,"name":"stack","url":"classes/_exception_.parametersexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".ParametersException"},{"id":70,"kind":128,"name":"InvalidTokenException","url":"classes/_exception_.invalidtokenexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":71,"kind":1024,"name":"code","url":"classes/_exception_.invalidtokenexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".InvalidTokenException"},{"id":72,"kind":1024,"name":"msg","url":"classes/_exception_.invalidtokenexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".InvalidTokenException"},{"id":73,"kind":1024,"name":"errorCode","url":"classes/_exception_.invalidtokenexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".InvalidTokenException"},{"id":74,"kind":512,"name":"constructor","url":"classes/_exception_.invalidtokenexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".InvalidTokenException"},{"id":75,"kind":1024,"name":"fields","url":"classes/_exception_.invalidtokenexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".InvalidTokenException"},{"id":76,"kind":1024,"name":"name","url":"classes/_exception_.invalidtokenexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".InvalidTokenException"},{"id":77,"kind":1024,"name":"message","url":"classes/_exception_.invalidtokenexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".InvalidTokenException"},{"id":78,"kind":1024,"name":"stack","url":"classes/_exception_.invalidtokenexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".InvalidTokenException"},{"id":79,"kind":128,"name":"ExpiredTokenException","url":"classes/_exception_.expiredtokenexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":80,"kind":1024,"name":"code","url":"classes/_exception_.expiredtokenexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ExpiredTokenException"},{"id":81,"kind":1024,"name":"msg","url":"classes/_exception_.expiredtokenexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ExpiredTokenException"},{"id":82,"kind":1024,"name":"errorCode","url":"classes/_exception_.expiredtokenexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ExpiredTokenException"},{"id":83,"kind":512,"name":"constructor","url":"classes/_exception_.expiredtokenexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ExpiredTokenException"},{"id":84,"kind":1024,"name":"fields","url":"classes/_exception_.expiredtokenexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".ExpiredTokenException"},{"id":85,"kind":1024,"name":"name","url":"classes/_exception_.expiredtokenexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".ExpiredTokenException"},{"id":86,"kind":1024,"name":"message","url":"classes/_exception_.expiredtokenexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".ExpiredTokenException"},{"id":87,"kind":1024,"name":"stack","url":"classes/_exception_.expiredtokenexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".ExpiredTokenException"},{"id":88,"kind":128,"name":"UnknownException","url":"classes/_exception_.unknownexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":89,"kind":1024,"name":"code","url":"classes/_exception_.unknownexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".UnknownException"},{"id":90,"kind":1024,"name":"msg","url":"classes/_exception_.unknownexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".UnknownException"},{"id":91,"kind":1024,"name":"errorCode","url":"classes/_exception_.unknownexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".UnknownException"},{"id":92,"kind":512,"name":"constructor","url":"classes/_exception_.unknownexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".UnknownException"},{"id":93,"kind":1024,"name":"fields","url":"classes/_exception_.unknownexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".UnknownException"},{"id":94,"kind":1024,"name":"name","url":"classes/_exception_.unknownexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".UnknownException"},{"id":95,"kind":1024,"name":"message","url":"classes/_exception_.unknownexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".UnknownException"},{"id":96,"kind":1024,"name":"stack","url":"classes/_exception_.unknownexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".UnknownException"},{"id":97,"kind":128,"name":"RepeatException","url":"classes/_exception_.repeatexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":98,"kind":1024,"name":"code","url":"classes/_exception_.repeatexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RepeatException"},{"id":99,"kind":1024,"name":"msg","url":"classes/_exception_.repeatexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RepeatException"},{"id":100,"kind":1024,"name":"errorCode","url":"classes/_exception_.repeatexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RepeatException"},{"id":101,"kind":512,"name":"constructor","url":"classes/_exception_.repeatexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RepeatException"},{"id":102,"kind":1024,"name":"fields","url":"classes/_exception_.repeatexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".RepeatException"},{"id":103,"kind":1024,"name":"name","url":"classes/_exception_.repeatexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".RepeatException"},{"id":104,"kind":1024,"name":"message","url":"classes/_exception_.repeatexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".RepeatException"},{"id":105,"kind":1024,"name":"stack","url":"classes/_exception_.repeatexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".RepeatException"},{"id":106,"kind":128,"name":"Forbidden","url":"classes/_exception_.forbidden.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":107,"kind":1024,"name":"code","url":"classes/_exception_.forbidden.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Forbidden"},{"id":108,"kind":1024,"name":"msg","url":"classes/_exception_.forbidden.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Forbidden"},{"id":109,"kind":1024,"name":"errorCode","url":"classes/_exception_.forbidden.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Forbidden"},{"id":110,"kind":512,"name":"constructor","url":"classes/_exception_.forbidden.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Forbidden"},{"id":111,"kind":1024,"name":"fields","url":"classes/_exception_.forbidden.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Forbidden"},{"id":112,"kind":1024,"name":"name","url":"classes/_exception_.forbidden.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Forbidden"},{"id":113,"kind":1024,"name":"message","url":"classes/_exception_.forbidden.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Forbidden"},{"id":114,"kind":1024,"name":"stack","url":"classes/_exception_.forbidden.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".Forbidden"},{"id":115,"kind":128,"name":"MethodNotAllowed","url":"classes/_exception_.methodnotallowed.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":116,"kind":1024,"name":"code","url":"classes/_exception_.methodnotallowed.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".MethodNotAllowed"},{"id":117,"kind":1024,"name":"msg","url":"classes/_exception_.methodnotallowed.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".MethodNotAllowed"},{"id":118,"kind":1024,"name":"errorCode","url":"classes/_exception_.methodnotallowed.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".MethodNotAllowed"},{"id":119,"kind":512,"name":"constructor","url":"classes/_exception_.methodnotallowed.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".MethodNotAllowed"},{"id":120,"kind":1024,"name":"fields","url":"classes/_exception_.methodnotallowed.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".MethodNotAllowed"},{"id":121,"kind":1024,"name":"name","url":"classes/_exception_.methodnotallowed.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".MethodNotAllowed"},{"id":122,"kind":1024,"name":"message","url":"classes/_exception_.methodnotallowed.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".MethodNotAllowed"},{"id":123,"kind":1024,"name":"stack","url":"classes/_exception_.methodnotallowed.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".MethodNotAllowed"},{"id":124,"kind":128,"name":"RefreshException","url":"classes/_exception_.refreshexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":125,"kind":1024,"name":"code","url":"classes/_exception_.refreshexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RefreshException"},{"id":126,"kind":1024,"name":"msg","url":"classes/_exception_.refreshexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RefreshException"},{"id":127,"kind":1024,"name":"errorCode","url":"classes/_exception_.refreshexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RefreshException"},{"id":128,"kind":512,"name":"constructor","url":"classes/_exception_.refreshexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RefreshException"},{"id":129,"kind":1024,"name":"fields","url":"classes/_exception_.refreshexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".RefreshException"},{"id":130,"kind":1024,"name":"name","url":"classes/_exception_.refreshexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".RefreshException"},{"id":131,"kind":1024,"name":"message","url":"classes/_exception_.refreshexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".RefreshException"},{"id":132,"kind":1024,"name":"stack","url":"classes/_exception_.refreshexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".RefreshException"},{"id":133,"kind":1,"name":"\"enums\"","url":"modules/_enums_.html","classes":"tsd-kind-external-module"},{"id":134,"kind":4,"name":"UserAdmin","url":"enums/_enums_.useradmin.html","classes":"tsd-kind-enum tsd-parent-kind-external-module","parent":"\"enums\""},{"id":135,"kind":16,"name":"COMMON","url":"enums/_enums_.useradmin.html#common","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"enums\".UserAdmin"},{"id":136,"kind":16,"name":"ADMIN","url":"enums/_enums_.useradmin.html#admin","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"enums\".UserAdmin"},{"id":137,"kind":4,"name":"UserActive","url":"enums/_enums_.useractive.html","classes":"tsd-kind-enum tsd-parent-kind-external-module","parent":"\"enums\""},{"id":138,"kind":16,"name":"ACTIVE","url":"enums/_enums_.useractive.html#active","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"enums\".UserActive"},{"id":139,"kind":16,"name":"NOT_ACTIVE","url":"enums/_enums_.useractive.html#not_active","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"enums\".UserActive"},{"id":140,"kind":4,"name":"TokenType","url":"enums/_enums_.tokentype.html","classes":"tsd-kind-enum tsd-parent-kind-external-module","parent":"\"enums\""},{"id":141,"kind":16,"name":"ACCESS","url":"enums/_enums_.tokentype.html#access","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"enums\".TokenType"},{"id":142,"kind":16,"name":"REFRESH","url":"enums/_enums_.tokentype.html#refresh","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"enums\".TokenType"},{"id":143,"kind":1,"name":"\"jwt\"","url":"modules/_jwt_.html","classes":"tsd-kind-external-module"},{"id":144,"kind":128,"name":"Token","url":"classes/_jwt_.token.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"jwt\""},{"id":145,"kind":1024,"name":"secret","url":"classes/_jwt_.token.html#secret","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"jwt\".Token"},{"id":146,"kind":1024,"name":"accessExp","url":"classes/_jwt_.token.html#accessexp","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"jwt\".Token"},{"id":147,"kind":1024,"name":"refreshExp","url":"classes/_jwt_.token.html#refreshexp","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"jwt\".Token"},{"id":148,"kind":512,"name":"constructor","url":"classes/_jwt_.token.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":149,"kind":2048,"name":"initApp","url":"classes/_jwt_.token.html#initapp","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":150,"kind":2048,"name":"createAccessToken","url":"classes/_jwt_.token.html#createaccesstoken","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":151,"kind":2048,"name":"createRefreshToken","url":"classes/_jwt_.token.html#createrefreshtoken","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":152,"kind":2048,"name":"verifyToken","url":"classes/_jwt_.token.html#verifytoken","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":153,"kind":32,"name":"jwt","url":"modules/_jwt_.html#jwt","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":154,"kind":64,"name":"getTokens","url":"modules/_jwt_.html#gettokens","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":155,"kind":64,"name":"parseHeader","url":"modules/_jwt_.html#parseheader","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":156,"kind":64,"name":"checkUserIsActive","url":"modules/_jwt_.html#checkuserisactive","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":157,"kind":64,"name":"loginRequired","url":"modules/_jwt_.html#loginrequired","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":158,"kind":64,"name":"refreshTokenRequired","url":"modules/_jwt_.html#refreshtokenrequired","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":159,"kind":64,"name":"refreshTokenRequiredWithUnifyException","url":"modules/_jwt_.html#refreshtokenrequiredwithunifyexception","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":160,"kind":64,"name":"groupRequired","url":"modules/_jwt_.html#grouprequired","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":161,"kind":64,"name":"adminRequired","url":"modules/_jwt_.html#adminrequired","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":162,"kind":1,"name":"\"extended-validator\"","url":"modules/_extended_validator_.html","classes":"tsd-kind-external-module"},{"id":163,"kind":256,"name":"IsFloatOptions","url":"interfaces/_extended_validator_.isfloatoptions.html","classes":"tsd-kind-interface tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"extended-validator\""},{"id":164,"kind":1024,"name":"min","url":"interfaces/_extended_validator_.isfloatoptions.html#min","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsFloatOptions"},{"id":165,"kind":1024,"name":"max","url":"interfaces/_extended_validator_.isfloatoptions.html#max","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsFloatOptions"},{"id":166,"kind":1024,"name":"gt","url":"interfaces/_extended_validator_.isfloatoptions.html#gt","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsFloatOptions"},{"id":167,"kind":1024,"name":"lt","url":"interfaces/_extended_validator_.isfloatoptions.html#lt","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsFloatOptions"},{"id":168,"kind":256,"name":"IsIntOptions","url":"interfaces/_extended_validator_.isintoptions.html","classes":"tsd-kind-interface tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"extended-validator\""},{"id":169,"kind":1024,"name":"min","url":"interfaces/_extended_validator_.isintoptions.html#min","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsIntOptions"},{"id":170,"kind":1024,"name":"max","url":"interfaces/_extended_validator_.isintoptions.html#max","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsIntOptions"},{"id":171,"kind":1024,"name":"allow_leading_zeroes","url":"interfaces/_extended_validator_.isintoptions.html#allow_leading_zeroes","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsIntOptions"},{"id":172,"kind":1024,"name":"lt","url":"interfaces/_extended_validator_.isintoptions.html#lt","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsIntOptions"},{"id":173,"kind":1024,"name":"gt","url":"interfaces/_extended_validator_.isintoptions.html#gt","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsIntOptions"},{"id":174,"kind":128,"name":"ExtendedValidator","url":"classes/_extended_validator_.extendedvalidator.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"extended-validator\""},{"id":175,"kind":2048,"name":"hasProperty","url":"classes/_extended_validator_.extendedvalidator.html#hasproperty","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":176,"kind":2048,"name":"objPropertyIsNotEmpty","url":"classes/_extended_validator_.extendedvalidator.html#objpropertyisnotempty","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":177,"kind":2048,"name":"objPropertiesIsNotEmpty","url":"classes/_extended_validator_.extendedvalidator.html#objpropertiesisnotempty","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":178,"kind":2048,"name":"toInt","url":"classes/_extended_validator_.extendedvalidator.html#toint","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":179,"kind":2048,"name":"toFloat","url":"classes/_extended_validator_.extendedvalidator.html#tofloat","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":180,"kind":2048,"name":"toBoolean","url":"classes/_extended_validator_.extendedvalidator.html#toboolean","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":181,"kind":2048,"name":"toDate","url":"classes/_extended_validator_.extendedvalidator.html#todate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":182,"kind":2048,"name":"isFloat","url":"classes/_extended_validator_.extendedvalidator.html#isfloat","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":183,"kind":2048,"name":"isFloat2","url":"classes/_extended_validator_.extendedvalidator.html#isfloat2","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":184,"kind":2048,"name":"isInt2","url":"classes/_extended_validator_.extendedvalidator.html#isint2","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":185,"kind":2048,"name":"isInt3","url":"classes/_extended_validator_.extendedvalidator.html#isint3","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":186,"kind":2048,"name":"validate","url":"classes/_extended_validator_.extendedvalidator.html#validate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":187,"kind":2048,"name":"validateOrReject","url":"classes/_extended_validator_.extendedvalidator.html#validateorreject","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":188,"kind":2048,"name":"validateSync","url":"classes/_extended_validator_.extendedvalidator.html#validatesync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":189,"kind":2048,"name":"validateValueByMetadata","url":"classes/_extended_validator_.extendedvalidator.html#validatevaluebymetadata","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":190,"kind":2048,"name":"isDefined","url":"classes/_extended_validator_.extendedvalidator.html#isdefined","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":191,"kind":2048,"name":"equals","url":"classes/_extended_validator_.extendedvalidator.html#equals","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":192,"kind":2048,"name":"notEquals","url":"classes/_extended_validator_.extendedvalidator.html#notequals","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":193,"kind":2048,"name":"isEmpty","url":"classes/_extended_validator_.extendedvalidator.html#isempty","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":194,"kind":2048,"name":"isNotEmpty","url":"classes/_extended_validator_.extendedvalidator.html#isnotempty","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":195,"kind":2048,"name":"isIn","url":"classes/_extended_validator_.extendedvalidator.html#isin","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":196,"kind":2048,"name":"isNotIn","url":"classes/_extended_validator_.extendedvalidator.html#isnotin","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":197,"kind":2048,"name":"isBoolean","url":"classes/_extended_validator_.extendedvalidator.html#isboolean","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":198,"kind":2048,"name":"isDate","url":"classes/_extended_validator_.extendedvalidator.html#isdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":199,"kind":2048,"name":"isString","url":"classes/_extended_validator_.extendedvalidator.html#isstring","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":200,"kind":2048,"name":"isDateString","url":"classes/_extended_validator_.extendedvalidator.html#isdatestring","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":201,"kind":2048,"name":"isArray","url":"classes/_extended_validator_.extendedvalidator.html#isarray","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":202,"kind":2048,"name":"isEnum","url":"classes/_extended_validator_.extendedvalidator.html#isenum","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":203,"kind":2048,"name":"isNumber","url":"classes/_extended_validator_.extendedvalidator.html#isnumber","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":204,"kind":2048,"name":"isInt","url":"classes/_extended_validator_.extendedvalidator.html#isint","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":205,"kind":2048,"name":"isDivisibleBy","url":"classes/_extended_validator_.extendedvalidator.html#isdivisibleby","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":206,"kind":2048,"name":"isPositive","url":"classes/_extended_validator_.extendedvalidator.html#ispositive","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":207,"kind":2048,"name":"isNegative","url":"classes/_extended_validator_.extendedvalidator.html#isnegative","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":208,"kind":2048,"name":"min","url":"classes/_extended_validator_.extendedvalidator.html#min","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":209,"kind":2048,"name":"max","url":"classes/_extended_validator_.extendedvalidator.html#max","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":210,"kind":2048,"name":"minDate","url":"classes/_extended_validator_.extendedvalidator.html#mindate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":211,"kind":2048,"name":"maxDate","url":"classes/_extended_validator_.extendedvalidator.html#maxdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":212,"kind":2048,"name":"isBooleanString","url":"classes/_extended_validator_.extendedvalidator.html#isbooleanstring","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":213,"kind":2048,"name":"isNumberString","url":"classes/_extended_validator_.extendedvalidator.html#isnumberstring","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":214,"kind":2048,"name":"contains","url":"classes/_extended_validator_.extendedvalidator.html#contains","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":215,"kind":2048,"name":"notContains","url":"classes/_extended_validator_.extendedvalidator.html#notcontains","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":216,"kind":2048,"name":"isAlpha","url":"classes/_extended_validator_.extendedvalidator.html#isalpha","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":217,"kind":2048,"name":"isAlphanumeric","url":"classes/_extended_validator_.extendedvalidator.html#isalphanumeric","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":218,"kind":2048,"name":"isAscii","url":"classes/_extended_validator_.extendedvalidator.html#isascii","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":219,"kind":2048,"name":"isBase64","url":"classes/_extended_validator_.extendedvalidator.html#isbase64","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":220,"kind":2048,"name":"isByteLength","url":"classes/_extended_validator_.extendedvalidator.html#isbytelength","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":221,"kind":2048,"name":"isCreditCard","url":"classes/_extended_validator_.extendedvalidator.html#iscreditcard","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":222,"kind":2048,"name":"isCurrency","url":"classes/_extended_validator_.extendedvalidator.html#iscurrency","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":223,"kind":2048,"name":"isEmail","url":"classes/_extended_validator_.extendedvalidator.html#isemail","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":224,"kind":2048,"name":"isFQDN","url":"classes/_extended_validator_.extendedvalidator.html#isfqdn","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":225,"kind":2048,"name":"isFullWidth","url":"classes/_extended_validator_.extendedvalidator.html#isfullwidth","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":226,"kind":2048,"name":"isHalfWidth","url":"classes/_extended_validator_.extendedvalidator.html#ishalfwidth","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":227,"kind":2048,"name":"isVariableWidth","url":"classes/_extended_validator_.extendedvalidator.html#isvariablewidth","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":228,"kind":2048,"name":"isHexColor","url":"classes/_extended_validator_.extendedvalidator.html#ishexcolor","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":229,"kind":2048,"name":"isHexadecimal","url":"classes/_extended_validator_.extendedvalidator.html#ishexadecimal","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":230,"kind":2048,"name":"isIP","url":"classes/_extended_validator_.extendedvalidator.html#isip","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":231,"kind":2048,"name":"isISBN","url":"classes/_extended_validator_.extendedvalidator.html#isisbn","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":232,"kind":2048,"name":"isISIN","url":"classes/_extended_validator_.extendedvalidator.html#isisin","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":233,"kind":2048,"name":"isISO8601","url":"classes/_extended_validator_.extendedvalidator.html#isiso8601","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":234,"kind":2048,"name":"isJSON","url":"classes/_extended_validator_.extendedvalidator.html#isjson","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":235,"kind":2048,"name":"isLowercase","url":"classes/_extended_validator_.extendedvalidator.html#islowercase","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":236,"kind":2048,"name":"isMobilePhone","url":"classes/_extended_validator_.extendedvalidator.html#ismobilephone","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":237,"kind":2048,"name":"isPhoneNumber","url":"classes/_extended_validator_.extendedvalidator.html#isphonenumber","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":238,"kind":2048,"name":"isMongoId","url":"classes/_extended_validator_.extendedvalidator.html#ismongoid","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":239,"kind":2048,"name":"isMultibyte","url":"classes/_extended_validator_.extendedvalidator.html#ismultibyte","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":240,"kind":2048,"name":"isSurrogatePair","url":"classes/_extended_validator_.extendedvalidator.html#issurrogatepair","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":241,"kind":2048,"name":"isURL","url":"classes/_extended_validator_.extendedvalidator.html#isurl","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":242,"kind":2048,"name":"isUUID","url":"classes/_extended_validator_.extendedvalidator.html#isuuid","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":243,"kind":2048,"name":"isUppercase","url":"classes/_extended_validator_.extendedvalidator.html#isuppercase","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":244,"kind":2048,"name":"length","url":"classes/_extended_validator_.extendedvalidator.html#length","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":245,"kind":2048,"name":"minLength","url":"classes/_extended_validator_.extendedvalidator.html#minlength","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":246,"kind":2048,"name":"maxLength","url":"classes/_extended_validator_.extendedvalidator.html#maxlength","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":247,"kind":2048,"name":"matches","url":"classes/_extended_validator_.extendedvalidator.html#matches","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":248,"kind":2048,"name":"isMilitaryTime","url":"classes/_extended_validator_.extendedvalidator.html#ismilitarytime","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":249,"kind":2048,"name":"arrayContains","url":"classes/_extended_validator_.extendedvalidator.html#arraycontains","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":250,"kind":2048,"name":"arrayNotContains","url":"classes/_extended_validator_.extendedvalidator.html#arraynotcontains","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":251,"kind":2048,"name":"arrayNotEmpty","url":"classes/_extended_validator_.extendedvalidator.html#arraynotempty","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":252,"kind":2048,"name":"arrayMinSize","url":"classes/_extended_validator_.extendedvalidator.html#arrayminsize","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":253,"kind":2048,"name":"arrayMaxSize","url":"classes/_extended_validator_.extendedvalidator.html#arraymaxsize","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":254,"kind":2048,"name":"arrayUnique","url":"classes/_extended_validator_.extendedvalidator.html#arrayunique","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":255,"kind":2048,"name":"isInstance","url":"classes/_extended_validator_.extendedvalidator.html#isinstance","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":256,"kind":32,"name":"extendedValidator","url":"modules/_extended_validator_.html#extendedvalidator-1","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"extended-validator\""},{"id":257,"kind":1,"name":"\"util\"","url":"modules/_util_.html","classes":"tsd-kind-external-module"},{"id":258,"kind":256,"name":"ObjOptions","url":"interfaces/_util_.objoptions.html","classes":"tsd-kind-interface tsd-parent-kind-external-module","parent":"\"util\""},{"id":259,"kind":1024,"name":"prefix","url":"interfaces/_util_.objoptions.html#prefix","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"util\".ObjOptions"},{"id":260,"kind":1024,"name":"filter","url":"interfaces/_util_.objoptions.html#filter","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"util\".ObjOptions"},{"id":261,"kind":64,"name":"isUndefined","url":"modules/_util_.html#isundefined","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":262,"kind":64,"name":"isFunction","url":"modules/_util_.html#isfunction","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":263,"kind":64,"name":"isObject","url":"modules/_util_.html#isobject","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":264,"kind":64,"name":"isString","url":"modules/_util_.html#isstring","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":265,"kind":64,"name":"isConstructor","url":"modules/_util_.html#isconstructor","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":266,"kind":64,"name":"validatePath","url":"modules/_util_.html#validatepath","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":267,"kind":64,"name":"isNil","url":"modules/_util_.html#isnil","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":268,"kind":64,"name":"isEmpty","url":"modules/_util_.html#isempty","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":269,"kind":64,"name":"isSymbol","url":"modules/_util_.html#issymbol","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":270,"kind":64,"name":"strVal","url":"modules/_util_.html#strval","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":271,"kind":32,"name":"isNotEmpty","url":"modules/_util_.html#isnotempty","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"util\""},{"id":272,"kind":32,"name":"isNegative","url":"modules/_util_.html#isnegative","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"util\""},{"id":273,"kind":32,"name":"isPositive","url":"modules/_util_.html#ispositive","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"util\""},{"id":274,"kind":64,"name":"assert","url":"modules/_util_.html#assert","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":275,"kind":64,"name":"toHump","url":"modules/_util_.html#tohump","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":276,"kind":64,"name":"toLine","url":"modules/_util_.html#toline","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":277,"kind":64,"name":"findAuthAndModule","url":"modules/_util_.html#findauthandmodule","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":278,"kind":64,"name":"findMetaByAuth","url":"modules/_util_.html#findmetabyauth","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":279,"kind":64,"name":"checkDateFormat","url":"modules/_util_.html#checkdateformat","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":280,"kind":64,"name":"paginate","url":"modules/_util_.html#paginate","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":281,"kind":64,"name":"unsets","url":"modules/_util_.html#unsets","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":282,"kind":64,"name":"decorateProp","url":"modules/_util_.html#decorateprop","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":283,"kind":64,"name":"getAllMethodNames","url":"modules/_util_.html#getallmethodnames","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":284,"kind":64,"name":"getAllFieldNames","url":"modules/_util_.html#getallfieldnames","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":285,"kind":64,"name":"prefixAndFilter","url":"modules/_util_.html#prefixandfilter","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"util\""},{"id":286,"kind":64,"name":"getFiles","url":"modules/_util_.html#getfiles","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":287,"kind":1,"name":"\"db\"","url":"modules/_db_.html","classes":"tsd-kind-external-module"},{"id":288,"kind":32,"name":"database","url":"modules/_db_.html#database","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"db\""},{"id":289,"kind":32,"name":"type","url":"modules/_db_.html#type","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"db\""},{"id":290,"kind":32,"name":"host","url":"modules/_db_.html#host","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"db\""},{"id":291,"kind":32,"name":"port","url":"modules/_db_.html#port","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"db\""},{"id":292,"kind":32,"name":"username","url":"modules/_db_.html#username","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"db\""},{"id":293,"kind":32,"name":"password","url":"modules/_db_.html#password","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"db\""},{"id":294,"kind":32,"name":"logging","url":"modules/_db_.html#logging","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"db\""},{"id":295,"kind":32,"name":"db","url":"modules/_db_.html#db","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"db\""},{"id":296,"kind":1,"name":"\"password-hash\"","url":"modules/_password_hash_.html","classes":"tsd-kind-external-module"},{"id":297,"kind":256,"name":"Option","url":"interfaces/_password_hash_.option.html","classes":"tsd-kind-interface tsd-parent-kind-external-module","parent":"\"password-hash\""},{"id":298,"kind":1024,"name":"algorithm","url":"interfaces/_password_hash_.option.html#algorithm","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"password-hash\".Option"},{"id":299,"kind":1024,"name":"saltLength","url":"interfaces/_password_hash_.option.html#saltlength","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"password-hash\".Option"},{"id":300,"kind":1024,"name":"iterations","url":"interfaces/_password_hash_.option.html#iterations","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"password-hash\".Option"},{"id":301,"kind":32,"name":"saltChars","url":"modules/_password_hash_.html#saltchars","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"password-hash\""},{"id":302,"kind":32,"name":"saltCharsCount","url":"modules/_password_hash_.html#saltcharscount","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"password-hash\""},{"id":303,"kind":64,"name":"generateSalt","url":"modules/_password_hash_.html#generatesalt","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"password-hash\""},{"id":304,"kind":64,"name":"generateHash","url":"modules/_password_hash_.html#generatehash","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"password-hash\""},{"id":305,"kind":64,"name":"generate","url":"modules/_password_hash_.html#generate","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"password-hash\""},{"id":306,"kind":64,"name":"verify","url":"modules/_password_hash_.html#verify","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"password-hash\""},{"id":307,"kind":64,"name":"isHashed","url":"modules/_password_hash_.html#ishashed","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"password-hash\""},{"id":308,"kind":1,"name":"\"interface\"","url":"modules/_interface_.html","classes":"tsd-kind-external-module"},{"id":309,"kind":2097152,"name":"InfoCrudMixin","url":"modules/_interface_.html#infocrudmixin","classes":"tsd-kind-object-literal tsd-parent-kind-external-module","parent":"\"interface\""},{"id":310,"kind":32,"name":"attributes","url":"modules/_interface_.html#infocrudmixin.attributes-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin"},{"id":311,"kind":65536,"name":"__type","url":"modules/_interface_.html#infocrudmixin.attributes-2.__type","classes":"tsd-kind-type-literal tsd-parent-kind-variable tsd-is-not-exported","parent":"\"interface\".InfoCrudMixin.attributes"},{"id":312,"kind":2097152,"name":"options","url":"modules/_interface_.html#infocrudmixin.options-2","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin"},{"id":313,"kind":32,"name":"createdAt","url":"modules/_interface_.html#infocrudmixin.options-2.createdat-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin.options"},{"id":314,"kind":32,"name":"updatedAt","url":"modules/_interface_.html#infocrudmixin.options-2.updatedat-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin.options"},{"id":315,"kind":32,"name":"deletedAt","url":"modules/_interface_.html#infocrudmixin.options-2.deletedat","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin.options"},{"id":316,"kind":32,"name":"paranoid","url":"modules/_interface_.html#infocrudmixin.options-2.paranoid","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin.options"},{"id":317,"kind":2097152,"name":"getterMethods","url":"modules/_interface_.html#infocrudmixin.options-2.gettermethods","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin.options"},{"id":318,"kind":64,"name":"createTime","url":"modules/_interface_.html#infocrudmixin.options-2.gettermethods.createtime","classes":"tsd-kind-function tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin.options.getterMethods"},{"id":319,"kind":2097152,"name":"UserInterface","url":"modules/_interface_.html#userinterface","classes":"tsd-kind-object-literal tsd-parent-kind-external-module","parent":"\"interface\""},{"id":320,"kind":2097152,"name":"attributes","url":"modules/_interface_.html#userinterface.attributes-4","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface"},{"id":321,"kind":2097152,"name":"id","url":"modules/_interface_.html#userinterface.attributes-4.id-3","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes"},{"id":322,"kind":32,"name":"type","url":"modules/_interface_.html#userinterface.attributes-4.id-3.type-19","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.id"},{"id":323,"kind":32,"name":"primaryKey","url":"modules/_interface_.html#userinterface.attributes-4.id-3.primarykey-3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.id"},{"id":324,"kind":32,"name":"autoIncrement","url":"modules/_interface_.html#userinterface.attributes-4.id-3.autoincrement-3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.id"},{"id":325,"kind":2097152,"name":"nickname","url":"modules/_interface_.html#userinterface.attributes-4.nickname","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes"},{"id":326,"kind":32,"name":"type","url":"modules/_interface_.html#userinterface.attributes-4.nickname.type-20","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.nickname"},{"id":327,"kind":32,"name":"allowNull","url":"modules/_interface_.html#userinterface.attributes-4.nickname.allownull-7","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.nickname"},{"id":328,"kind":32,"name":"unique","url":"modules/_interface_.html#userinterface.attributes-4.nickname.unique-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.nickname"},{"id":329,"kind":2097152,"name":"admin","url":"modules/_interface_.html#userinterface.attributes-4.admin","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes"},{"id":330,"kind":32,"name":"type","url":"modules/_interface_.html#userinterface.attributes-4.admin.type-16","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.admin"},{"id":331,"kind":32,"name":"allowNull","url":"modules/_interface_.html#userinterface.attributes-4.admin.allownull-4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.admin"},{"id":332,"kind":32,"name":"defaultValue","url":"modules/_interface_.html#userinterface.attributes-4.admin.defaultvalue-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.admin"},{"id":333,"kind":2097152,"name":"active","url":"modules/_interface_.html#userinterface.attributes-4.active","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes"},{"id":334,"kind":32,"name":"type","url":"modules/_interface_.html#userinterface.attributes-4.active.type-15","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.active"},{"id":335,"kind":32,"name":"allowNull","url":"modules/_interface_.html#userinterface.attributes-4.active.allownull-3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.active"},{"id":336,"kind":32,"name":"defaultValue","url":"modules/_interface_.html#userinterface.attributes-4.active.defaultvalue","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.active"},{"id":337,"kind":2097152,"name":"email","url":"modules/_interface_.html#userinterface.attributes-4.email","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes"},{"id":338,"kind":32,"name":"type","url":"modules/_interface_.html#userinterface.attributes-4.email.type-17","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.email"},{"id":339,"kind":32,"name":"unique","url":"modules/_interface_.html#userinterface.attributes-4.email.unique","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.email"},{"id":340,"kind":32,"name":"allowNull","url":"modules/_interface_.html#userinterface.attributes-4.email.allownull-5","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.email"},{"id":341,"kind":2097152,"name":"group_id","url":"modules/_interface_.html#userinterface.attributes-4.group_id-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes"},{"id":342,"kind":32,"name":"type","url":"modules/_interface_.html#userinterface.attributes-4.group_id-1.type-18","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.group_id"},{"id":343,"kind":32,"name":"allowNull","url":"modules/_interface_.html#userinterface.attributes-4.group_id-1.allownull-6","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.group_id"},{"id":344,"kind":2097152,"name":"password","url":"modules/_interface_.html#userinterface.attributes-4.password","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes"},{"id":345,"kind":32,"name":"type","url":"modules/_interface_.html#userinterface.attributes-4.password.type-21","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.password"},{"id":346,"kind":64,"name":"set","url":"modules/_interface_.html#userinterface.attributes-4.password.set","classes":"tsd-kind-function tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.password"},{"id":347,"kind":64,"name":"get","url":"modules/_interface_.html#userinterface.attributes-4.password.get","classes":"tsd-kind-function tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.password"},{"id":348,"kind":32,"name":"options","url":"modules/_interface_.html#userinterface.options-4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface"},{"id":349,"kind":2097152,"name":"AuthInterface","url":"modules/_interface_.html#authinterface","classes":"tsd-kind-object-literal tsd-parent-kind-external-module","parent":"\"interface\""},{"id":350,"kind":2097152,"name":"attributes","url":"modules/_interface_.html#authinterface.attributes","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface"},{"id":351,"kind":2097152,"name":"id","url":"modules/_interface_.html#authinterface.attributes.id","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes"},{"id":352,"kind":32,"name":"type","url":"modules/_interface_.html#authinterface.attributes.id.type-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes.id"},{"id":353,"kind":32,"name":"primaryKey","url":"modules/_interface_.html#authinterface.attributes.id.primarykey","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes.id"},{"id":354,"kind":32,"name":"autoIncrement","url":"modules/_interface_.html#authinterface.attributes.id.autoincrement","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes.id"},{"id":355,"kind":2097152,"name":"group_id","url":"modules/_interface_.html#authinterface.attributes.group_id","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes"},{"id":356,"kind":32,"name":"type","url":"modules/_interface_.html#authinterface.attributes.group_id.type-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes.group_id"},{"id":357,"kind":32,"name":"allowNull","url":"modules/_interface_.html#authinterface.attributes.group_id.allownull","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes.group_id"},{"id":358,"kind":2097152,"name":"auth","url":"modules/_interface_.html#authinterface.attributes.auth","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes"},{"id":359,"kind":32,"name":"type","url":"modules/_interface_.html#authinterface.attributes.auth.type","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes.auth"},{"id":360,"kind":2097152,"name":"module","url":"modules/_interface_.html#authinterface.attributes.module","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes"},{"id":361,"kind":32,"name":"type","url":"modules/_interface_.html#authinterface.attributes.module.type-3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes.module"},{"id":362,"kind":2097152,"name":"options","url":"modules/_interface_.html#authinterface.options","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface"},{"id":363,"kind":32,"name":"tableName","url":"modules/_interface_.html#authinterface.options.tablename","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.options"},{"id":364,"kind":32,"name":"createdAt","url":"modules/_interface_.html#authinterface.options.createdat","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.options"},{"id":365,"kind":32,"name":"updatedAt","url":"modules/_interface_.html#authinterface.options.updatedat","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.options"},{"id":366,"kind":2097152,"name":"GroupInterface","url":"modules/_interface_.html#groupinterface","classes":"tsd-kind-object-literal tsd-parent-kind-external-module","parent":"\"interface\""},{"id":367,"kind":2097152,"name":"attributes","url":"modules/_interface_.html#groupinterface.attributes-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface"},{"id":368,"kind":2097152,"name":"id","url":"modules/_interface_.html#groupinterface.attributes-1.id-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes"},{"id":369,"kind":32,"name":"type","url":"modules/_interface_.html#groupinterface.attributes-1.id-1.type-4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes.id"},{"id":370,"kind":32,"name":"primaryKey","url":"modules/_interface_.html#groupinterface.attributes-1.id-1.primarykey-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes.id"},{"id":371,"kind":32,"name":"autoIncrement","url":"modules/_interface_.html#groupinterface.attributes-1.id-1.autoincrement-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes.id"},{"id":372,"kind":2097152,"name":"name","url":"modules/_interface_.html#groupinterface.attributes-1.name","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes"},{"id":373,"kind":32,"name":"type","url":"modules/_interface_.html#groupinterface.attributes-1.name.type-6","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes.name"},{"id":374,"kind":2097152,"name":"info","url":"modules/_interface_.html#groupinterface.attributes-1.info","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes"},{"id":375,"kind":32,"name":"type","url":"modules/_interface_.html#groupinterface.attributes-1.info.type-5","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes.info"},{"id":376,"kind":32,"name":"allowNull","url":"modules/_interface_.html#groupinterface.attributes-1.info.allownull-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes.info"},{"id":377,"kind":2097152,"name":"options","url":"modules/_interface_.html#groupinterface.options-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface"},{"id":378,"kind":32,"name":"tableName","url":"modules/_interface_.html#groupinterface.options-1.tablename-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.options"},{"id":379,"kind":32,"name":"createdAt","url":"modules/_interface_.html#groupinterface.options-1.createdat-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.options"},{"id":380,"kind":32,"name":"updatedAt","url":"modules/_interface_.html#groupinterface.options-1.updatedat-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.options"},{"id":381,"kind":2097152,"name":"LogInterface","url":"modules/_interface_.html#loginterface","classes":"tsd-kind-object-literal tsd-parent-kind-external-module","parent":"\"interface\""},{"id":382,"kind":2097152,"name":"attributes","url":"modules/_interface_.html#loginterface.attributes-3","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface"},{"id":383,"kind":2097152,"name":"id","url":"modules/_interface_.html#loginterface.attributes-3.id-2","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":384,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.id-2.type-8","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.id"},{"id":385,"kind":32,"name":"primaryKey","url":"modules/_interface_.html#loginterface.attributes-3.id-2.primarykey-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.id"},{"id":386,"kind":32,"name":"autoIncrement","url":"modules/_interface_.html#loginterface.attributes-3.id-2.autoincrement-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.id"},{"id":387,"kind":2097152,"name":"message","url":"modules/_interface_.html#loginterface.attributes-3.message","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":388,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.message.type-9","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.message"},{"id":389,"kind":2097152,"name":"user_id","url":"modules/_interface_.html#loginterface.attributes-3.user_id","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":390,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.user_id.type-13","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.user_id"},{"id":391,"kind":32,"name":"allowNull","url":"modules/_interface_.html#loginterface.attributes-3.user_id.allownull-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.user_id"},{"id":392,"kind":2097152,"name":"user_name","url":"modules/_interface_.html#loginterface.attributes-3.user_name","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":393,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.user_name.type-14","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.user_name"},{"id":394,"kind":2097152,"name":"status_code","url":"modules/_interface_.html#loginterface.attributes-3.status_code","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":395,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.status_code.type-12","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.status_code"},{"id":396,"kind":2097152,"name":"method","url":"modules/_interface_.html#loginterface.attributes-3.method","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":397,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.method.type-10","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.method"},{"id":398,"kind":2097152,"name":"path","url":"modules/_interface_.html#loginterface.attributes-3.path","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":399,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.path.type-11","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.path"},{"id":400,"kind":2097152,"name":"authority","url":"modules/_interface_.html#loginterface.attributes-3.authority","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":401,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.authority.type-7","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.authority"},{"id":402,"kind":2097152,"name":"options","url":"modules/_interface_.html#loginterface.options-3","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface"},{"id":403,"kind":32,"name":"tableName","url":"modules/_interface_.html#loginterface.options-3.tablename-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.options"},{"id":404,"kind":32,"name":"createdAt","url":"modules/_interface_.html#loginterface.options-3.createdat-3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.options"},{"id":405,"kind":32,"name":"updatedAt","url":"modules/_interface_.html#loginterface.options-3.updatedat-3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.options"},{"id":406,"kind":2097152,"name":"getterMethods","url":"modules/_interface_.html#loginterface.options-3.gettermethods-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.options"},{"id":407,"kind":64,"name":"time","url":"modules/_interface_.html#loginterface.options-3.gettermethods-1.time","classes":"tsd-kind-function tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.options.getterMethods"},{"id":408,"kind":1,"name":"\"extend\"","url":"modules/_extend_.html","classes":"tsd-kind-external-module"},{"id":409,"kind":64,"name":"json","url":"modules/_extend_.html#json","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"extend\""},{"id":410,"kind":64,"name":"transform","url":"modules/_extend_.html#transform","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"extend\""},{"id":411,"kind":64,"name":"success","url":"modules/_extend_.html#success","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"extend\""},{"id":412,"kind":64,"name":"logging","url":"modules/_extend_.html#logging","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"extend\""},{"id":413,"kind":1,"name":"\"plugin\"","url":"modules/_plugin_.html","classes":"tsd-kind-external-module"},{"id":414,"kind":128,"name":"Plugin","url":"classes/_plugin_.plugin.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"plugin\""},{"id":415,"kind":1024,"name":"name","url":"classes/_plugin_.plugin.html#name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"plugin\".Plugin"},{"id":416,"kind":1024,"name":"models","url":"classes/_plugin_.plugin.html#models","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"plugin\".Plugin"},{"id":417,"kind":65536,"name":"__type","url":"classes/_plugin_.plugin.html#models.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"plugin\".Plugin.models"},{"id":418,"kind":1024,"name":"controllers","url":"classes/_plugin_.plugin.html#controllers","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"plugin\".Plugin"},{"id":419,"kind":65536,"name":"__type","url":"classes/_plugin_.plugin.html#controllers.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"plugin\".Plugin.controllers"},{"id":420,"kind":512,"name":"constructor","url":"classes/_plugin_.plugin.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"plugin\".Plugin"},{"id":421,"kind":2048,"name":"addModel","url":"classes/_plugin_.plugin.html#addmodel","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"plugin\".Plugin"},{"id":422,"kind":2048,"name":"getModel","url":"classes/_plugin_.plugin.html#getmodel","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"plugin\".Plugin"},{"id":423,"kind":2048,"name":"addController","url":"classes/_plugin_.plugin.html#addcontroller","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"plugin\".Plugin"},{"id":424,"kind":1,"name":"\"loader\"","url":"modules/_loader_.html","classes":"tsd-kind-external-module"},{"id":425,"kind":128,"name":"Loader","url":"classes/_loader_.loader.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"loader\""},{"id":426,"kind":1024,"name":"mainRouter","url":"classes/_loader_.loader.html#mainrouter","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":427,"kind":1024,"name":"pluginPath","url":"classes/_loader_.loader.html#pluginpath","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":428,"kind":1024,"name":"app","url":"classes/_loader_.loader.html#app","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"loader\".Loader"},{"id":429,"kind":1024,"name":"plugins","url":"classes/_loader_.loader.html#plugins","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":430,"kind":65536,"name":"__type","url":"classes/_loader_.loader.html#plugins.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"loader\".Loader.plugins"},{"id":431,"kind":512,"name":"constructor","url":"classes/_loader_.loader.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":432,"kind":2048,"name":"loadPlugins","url":"classes/_loader_.loader.html#loadplugins","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":433,"kind":2048,"name":"loadPlugin","url":"classes/_loader_.loader.html#loadplugin","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":434,"kind":2048,"name":"loadConfig","url":"classes/_loader_.loader.html#loadconfig","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":435,"kind":2048,"name":"loadMainApi","url":"classes/_loader_.loader.html#loadmainapi","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":436,"kind":1,"name":"\"lin-router\"","url":"modules/_lin_router_.html","classes":"tsd-kind-external-module"},{"id":437,"kind":256,"name":"Meta","url":"interfaces/_lin_router_.meta.html","classes":"tsd-kind-interface tsd-parent-kind-external-module","parent":"\"lin-router\""},{"id":438,"kind":1024,"name":"auth","url":"interfaces/_lin_router_.meta.html#auth","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".Meta"},{"id":439,"kind":1024,"name":"module","url":"interfaces/_lin_router_.meta.html#module","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".Meta"},{"id":440,"kind":1024,"name":"mount","url":"interfaces/_lin_router_.meta.html#mount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".Meta"},{"id":441,"kind":128,"name":"LinRouter","url":"classes/_lin_router_.linrouter.html","classes":"tsd-kind-class tsd-parent-kind-external-module tsd-has-type-parameter","parent":"\"lin-router\""},{"id":442,"kind":2048,"name":"linOption","url":"classes/_lin_router_.linrouter.html#linoption","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":443,"kind":2048,"name":"linHead","url":"classes/_lin_router_.linrouter.html#linhead","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":444,"kind":2048,"name":"linGet","url":"classes/_lin_router_.linrouter.html#linget","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":445,"kind":2048,"name":"linPut","url":"classes/_lin_router_.linrouter.html#linput","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":446,"kind":2048,"name":"linPatch","url":"classes/_lin_router_.linrouter.html#linpatch","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":447,"kind":2048,"name":"linPost","url":"classes/_lin_router_.linrouter.html#linpost","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":448,"kind":2048,"name":"linDelete","url":"classes/_lin_router_.linrouter.html#lindelete","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":449,"kind":256,"name":"IRouterOptions","url":"interfaces/_lin_router_.linrouter.irouteroptions.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":450,"kind":1024,"name":"prefix","url":"interfaces/_lin_router_.linrouter.irouteroptions.html#prefix","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterOptions"},{"id":451,"kind":1024,"name":"methods","url":"interfaces/_lin_router_.linrouter.irouteroptions.html#methods","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterOptions"},{"id":452,"kind":1024,"name":"routerPath","url":"interfaces/_lin_router_.linrouter.irouteroptions.html#routerpath","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterOptions"},{"id":453,"kind":1024,"name":"sensitive","url":"interfaces/_lin_router_.linrouter.irouteroptions.html#sensitive","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterOptions"},{"id":454,"kind":1024,"name":"strict","url":"interfaces/_lin_router_.linrouter.irouteroptions.html#strict","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterOptions"},{"id":455,"kind":256,"name":"IRouterParamContext","url":"interfaces/_lin_router_.linrouter.irouterparamcontext.html","classes":"tsd-kind-interface tsd-parent-kind-class tsd-has-type-parameter","parent":"\"lin-router\".LinRouter"},{"id":456,"kind":1024,"name":"params","url":"interfaces/_lin_router_.linrouter.irouterparamcontext.html#params","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterParamContext"},{"id":457,"kind":1024,"name":"router","url":"interfaces/_lin_router_.linrouter.irouterparamcontext.html#router","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterParamContext"},{"id":458,"kind":1024,"name":"_matchedRoute","url":"interfaces/_lin_router_.linrouter.irouterparamcontext.html#_matchedroute","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterParamContext"},{"id":459,"kind":1024,"name":"_matchedRouteName","url":"interfaces/_lin_router_.linrouter.irouterparamcontext.html#_matchedroutename","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterParamContext"},{"id":460,"kind":256,"name":"IRouterContext","url":"interfaces/_lin_router_.linrouter.iroutercontext.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":461,"kind":256,"name":"IParamMiddleware","url":"interfaces/_lin_router_.linrouter.iparammiddleware.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":462,"kind":256,"name":"IRouterAllowedMethodsOptions","url":"interfaces/_lin_router_.linrouter.irouterallowedmethodsoptions.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":463,"kind":1024,"name":"throw","url":"interfaces/_lin_router_.linrouter.irouterallowedmethodsoptions.html#throw","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterAllowedMethodsOptions"},{"id":464,"kind":1024,"name":"notImplemented","url":"interfaces/_lin_router_.linrouter.irouterallowedmethodsoptions.html#notimplemented","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterAllowedMethodsOptions"},{"id":465,"kind":1024,"name":"methodNotAllowed","url":"interfaces/_lin_router_.linrouter.irouterallowedmethodsoptions.html#methodnotallowed","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterAllowedMethodsOptions"},{"id":466,"kind":256,"name":"ILayerOptions","url":"interfaces/_lin_router_.linrouter.ilayeroptions.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":467,"kind":1024,"name":"name","url":"interfaces/_lin_router_.linrouter.ilayeroptions.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.ILayerOptions"},{"id":468,"kind":1024,"name":"sensitive","url":"interfaces/_lin_router_.linrouter.ilayeroptions.html#sensitive","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.ILayerOptions"},{"id":469,"kind":1024,"name":"strict","url":"interfaces/_lin_router_.linrouter.ilayeroptions.html#strict","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.ILayerOptions"},{"id":470,"kind":256,"name":"IUrlOptionsQuery","url":"interfaces/_lin_router_.linrouter.iurloptionsquery.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":471,"kind":1024,"name":"query","url":"interfaces/_lin_router_.linrouter.iurloptionsquery.html#query","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IUrlOptionsQuery"},{"id":472,"kind":256,"name":"IRoutesMatch","url":"interfaces/_lin_router_.linrouter.iroutesmatch.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":473,"kind":1024,"name":"path","url":"interfaces/_lin_router_.linrouter.iroutesmatch.html#path","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRoutesMatch"},{"id":474,"kind":1024,"name":"pathAndMethod","url":"interfaces/_lin_router_.linrouter.iroutesmatch.html#pathandmethod","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRoutesMatch"},{"id":475,"kind":1024,"name":"route","url":"interfaces/_lin_router_.linrouter.iroutesmatch.html#route","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRoutesMatch"},{"id":476,"kind":128,"name":"ParamName","url":"classes/_lin_router_.linrouter.paramname.html","classes":"tsd-kind-class tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":477,"kind":1024,"name":"asterisk","url":"classes/_lin_router_.linrouter.paramname.html#asterisk","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":478,"kind":1024,"name":"delimiter","url":"classes/_lin_router_.linrouter.paramname.html#delimiter","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":479,"kind":1024,"name":"name","url":"classes/_lin_router_.linrouter.paramname.html#name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":480,"kind":1024,"name":"optional","url":"classes/_lin_router_.linrouter.paramname.html#optional","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":481,"kind":1024,"name":"partial","url":"classes/_lin_router_.linrouter.paramname.html#partial","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":482,"kind":1024,"name":"pattern","url":"classes/_lin_router_.linrouter.paramname.html#pattern","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":483,"kind":1024,"name":"prefix","url":"classes/_lin_router_.linrouter.paramname.html#prefix","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":484,"kind":1024,"name":"repeat","url":"classes/_lin_router_.linrouter.paramname.html#repeat","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":485,"kind":128,"name":"Layer","url":"classes/_lin_router_.linrouter.layer.html","classes":"tsd-kind-class tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":486,"kind":1024,"name":"opts","url":"classes/_lin_router_.linrouter.layer.html#opts","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":487,"kind":1024,"name":"name","url":"classes/_lin_router_.linrouter.layer.html#name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":488,"kind":1024,"name":"methods","url":"classes/_lin_router_.linrouter.layer.html#methods","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":489,"kind":1024,"name":"paramNames","url":"classes/_lin_router_.linrouter.layer.html#paramnames","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":490,"kind":1024,"name":"stack","url":"classes/_lin_router_.linrouter.layer.html#stack","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":491,"kind":1024,"name":"regexp","url":"classes/_lin_router_.linrouter.layer.html#regexp","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":492,"kind":1024,"name":"path","url":"classes/_lin_router_.linrouter.layer.html#path","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":493,"kind":512,"name":"constructor","url":"classes/_lin_router_.linrouter.layer.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":494,"kind":2048,"name":"match","url":"classes/_lin_router_.linrouter.layer.html#match","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":495,"kind":2048,"name":"params","url":"classes/_lin_router_.linrouter.layer.html#params","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":496,"kind":2048,"name":"captures","url":"classes/_lin_router_.linrouter.layer.html#captures","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":497,"kind":2048,"name":"url","url":"classes/_lin_router_.linrouter.layer.html#url","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":498,"kind":2048,"name":"param","url":"classes/_lin_router_.linrouter.layer.html#param","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":499,"kind":2048,"name":"setPrefix","url":"classes/_lin_router_.linrouter.layer.html#setprefix","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":500,"kind":4194304,"name":"RouterContext","url":"classes/_lin_router_.linrouter.html#routercontext","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-has-type-parameter tsd-is-static","parent":"\"lin-router\".LinRouter"},{"id":501,"kind":4194304,"name":"IMiddleware","url":"classes/_lin_router_.linrouter.html#imiddleware","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-has-type-parameter tsd-is-static","parent":"\"lin-router\".LinRouter"},{"id":502,"kind":1024,"name":"params","url":"classes/_lin_router_.linrouter.html#params","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":503,"kind":1024,"name":"stack","url":"classes/_lin_router_.linrouter.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":504,"kind":512,"name":"constructor","url":"classes/_lin_router_.linrouter.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":505,"kind":2048,"name":"use","url":"classes/_lin_router_.linrouter.html#use","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":506,"kind":2048,"name":"get","url":"classes/_lin_router_.linrouter.html#get","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":507,"kind":2048,"name":"post","url":"classes/_lin_router_.linrouter.html#post","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":508,"kind":2048,"name":"put","url":"classes/_lin_router_.linrouter.html#put","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":509,"kind":2048,"name":"link","url":"classes/_lin_router_.linrouter.html#link","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":510,"kind":2048,"name":"unlink","url":"classes/_lin_router_.linrouter.html#unlink","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":511,"kind":2048,"name":"delete","url":"classes/_lin_router_.linrouter.html#delete","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":512,"kind":2048,"name":"del","url":"classes/_lin_router_.linrouter.html#del","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":513,"kind":2048,"name":"head","url":"classes/_lin_router_.linrouter.html#head","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":514,"kind":2048,"name":"options","url":"classes/_lin_router_.linrouter.html#options","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":515,"kind":2048,"name":"patch","url":"classes/_lin_router_.linrouter.html#patch","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":516,"kind":2048,"name":"all","url":"classes/_lin_router_.linrouter.html#all","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":517,"kind":2048,"name":"prefix","url":"classes/_lin_router_.linrouter.html#prefix","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":518,"kind":2048,"name":"routes","url":"classes/_lin_router_.linrouter.html#routes","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":519,"kind":2048,"name":"middleware","url":"classes/_lin_router_.linrouter.html#middleware","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":520,"kind":2048,"name":"allowedMethods","url":"classes/_lin_router_.linrouter.html#allowedmethods","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":521,"kind":2048,"name":"redirect","url":"classes/_lin_router_.linrouter.html#redirect","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":522,"kind":2048,"name":"register","url":"classes/_lin_router_.linrouter.html#register","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":523,"kind":2048,"name":"route","url":"classes/_lin_router_.linrouter.html#route","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":524,"kind":2048,"name":"url","url":"classes/_lin_router_.linrouter.html#url","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":525,"kind":2048,"name":"match","url":"classes/_lin_router_.linrouter.html#match","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":526,"kind":2048,"name":"param","url":"classes/_lin_router_.linrouter.html#param","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":527,"kind":2048,"name":"url","url":"classes/_lin_router_.linrouter.html#url-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"lin-router\".LinRouter"},{"id":528,"kind":1,"name":"\"core\"","url":"modules/_core_.html","classes":"tsd-kind-external-module"},{"id":529,"kind":128,"name":"Lin","url":"classes/_core_.lin.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"core\""},{"id":530,"kind":1024,"name":"manager","url":"classes/_core_.lin.html#manager","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"core\".Lin"},{"id":531,"kind":1024,"name":"app","url":"classes/_core_.lin.html#app","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"core\".Lin"},{"id":532,"kind":2048,"name":"initApp","url":"classes/_core_.lin.html#initapp","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".Lin"},{"id":533,"kind":2048,"name":"applyJwt","url":"classes/_core_.lin.html#applyjwt","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"core\".Lin"},{"id":534,"kind":2048,"name":"applyDB","url":"classes/_core_.lin.html#applydb","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"core\".Lin"},{"id":535,"kind":2048,"name":"applyManager","url":"classes/_core_.lin.html#applymanager","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"core\".Lin"},{"id":536,"kind":2048,"name":"applyDefaultExtends","url":"classes/_core_.lin.html#applydefaultextends","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"core\".Lin"},{"id":537,"kind":2048,"name":"mount","url":"classes/_core_.lin.html#mount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"core\".Lin"},{"id":538,"kind":128,"name":"Manager","url":"classes/_core_.manager.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"core\""},{"id":539,"kind":1024,"name":"loader","url":"classes/_core_.manager.html#loader","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":540,"kind":1024,"name":"userModel","url":"classes/_core_.manager.html#usermodel","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":541,"kind":1024,"name":"groupModel","url":"classes/_core_.manager.html#groupmodel","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":542,"kind":1024,"name":"authModel","url":"classes/_core_.manager.html#authmodel","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":543,"kind":2048,"name":"initApp","url":"classes/_core_.manager.html#initapp","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":544,"kind":262144,"name":"plugins","url":"classes/_core_.manager.html#plugins","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":545,"kind":2048,"name":"verify","url":"classes/_core_.manager.html#verify","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":546,"kind":2048,"name":"findUser","url":"classes/_core_.manager.html#finduser","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":547,"kind":2048,"name":"findGroup","url":"classes/_core_.manager.html#findgroup","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":548,"kind":128,"name":"User","url":"classes/_core_.user.html","classes":"tsd-kind-class tsd-parent-kind-external-module tsd-has-type-parameter","parent":"\"core\""},{"id":549,"kind":1024,"name":"id","url":"classes/_core_.user.html#id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":550,"kind":1024,"name":"nickname","url":"classes/_core_.user.html#nickname","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":551,"kind":1024,"name":"admin","url":"classes/_core_.user.html#admin","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":552,"kind":1024,"name":"active","url":"classes/_core_.user.html#active","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":553,"kind":1024,"name":"email","url":"classes/_core_.user.html#email","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":554,"kind":1024,"name":"group_id","url":"classes/_core_.user.html#group_id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":555,"kind":1024,"name":"password","url":"classes/_core_.user.html#password","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":556,"kind":1024,"name":"create_time","url":"classes/_core_.user.html#create_time","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":557,"kind":1024,"name":"update_time","url":"classes/_core_.user.html#update_time","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":558,"kind":1024,"name":"delete_time","url":"classes/_core_.user.html#delete_time","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":559,"kind":2048,"name":"verify","url":"classes/_core_.user.html#verify","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"\"core\".User"},{"id":560,"kind":2048,"name":"checkPassword","url":"classes/_core_.user.html#checkpassword","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".User"},{"id":561,"kind":2048,"name":"resetPassword","url":"classes/_core_.user.html#resetpassword","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".User"},{"id":562,"kind":2048,"name":"changePassword","url":"classes/_core_.user.html#changepassword","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".User"},{"id":563,"kind":2048,"name":"toJSON","url":"classes/_core_.user.html#tojson","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"core\".User"},{"id":564,"kind":1024,"name":"tableName","url":"classes/_core_.user.html#tablename","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":565,"kind":1024,"name":"primaryKeyAttribute","url":"classes/_core_.user.html#primarykeyattribute","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":566,"kind":1024,"name":"associations","url":"classes/_core_.user.html#associations","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":567,"kind":65536,"name":"__type","url":"classes/_core_.user.html#associations.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".User.associations"},{"id":568,"kind":1024,"name":"options","url":"classes/_core_.user.html#options","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":569,"kind":1024,"name":"rawAttributes","url":"classes/_core_.user.html#rawattributes","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":570,"kind":65536,"name":"__type","url":"classes/_core_.user.html#rawattributes.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".User.rawAttributes"},{"id":571,"kind":1024,"name":"sequelize","url":"classes/_core_.user.html#sequelize-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":572,"kind":2048,"name":"init","url":"classes/_core_.user.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":573,"kind":2048,"name":"removeAttribute","url":"classes/_core_.user.html#removeattribute","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":574,"kind":2048,"name":"sync","url":"classes/_core_.user.html#sync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":575,"kind":2048,"name":"drop","url":"classes/_core_.user.html#drop","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":576,"kind":2048,"name":"schema","url":"classes/_core_.user.html#schema","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":577,"kind":2048,"name":"getTableName","url":"classes/_core_.user.html#gettablename","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":578,"kind":2048,"name":"scope","url":"classes/_core_.user.html#scope","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":579,"kind":2048,"name":"addScope","url":"classes/_core_.user.html#addscope","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":580,"kind":2048,"name":"findAll","url":"classes/_core_.user.html#findall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":581,"kind":2048,"name":"findByPk","url":"classes/_core_.user.html#findbypk","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":582,"kind":2048,"name":"findOne","url":"classes/_core_.user.html#findone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":583,"kind":2048,"name":"aggregate","url":"classes/_core_.user.html#aggregate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":584,"kind":2048,"name":"count","url":"classes/_core_.user.html#count","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":585,"kind":2048,"name":"findAndCountAll","url":"classes/_core_.user.html#findandcountall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":586,"kind":2048,"name":"max","url":"classes/_core_.user.html#max","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":587,"kind":2048,"name":"min","url":"classes/_core_.user.html#min","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":588,"kind":2048,"name":"sum","url":"classes/_core_.user.html#sum","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":589,"kind":2048,"name":"build","url":"classes/_core_.user.html#build","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":590,"kind":2048,"name":"bulkBuild","url":"classes/_core_.user.html#bulkbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":591,"kind":2048,"name":"create","url":"classes/_core_.user.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":592,"kind":2048,"name":"findOrBuild","url":"classes/_core_.user.html#findorbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":593,"kind":2048,"name":"findOrCreate","url":"classes/_core_.user.html#findorcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":594,"kind":2048,"name":"upsert","url":"classes/_core_.user.html#upsert","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":595,"kind":2048,"name":"bulkCreate","url":"classes/_core_.user.html#bulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":596,"kind":2048,"name":"truncate","url":"classes/_core_.user.html#truncate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":597,"kind":2048,"name":"destroy","url":"classes/_core_.user.html#destroy-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":598,"kind":2048,"name":"restore","url":"classes/_core_.user.html#restore-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":599,"kind":2048,"name":"update","url":"classes/_core_.user.html#update-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":600,"kind":2048,"name":"increment","url":"classes/_core_.user.html#increment-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":601,"kind":2048,"name":"describe","url":"classes/_core_.user.html#describe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":602,"kind":2048,"name":"unscoped","url":"classes/_core_.user.html#unscoped","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":603,"kind":2048,"name":"beforeValidate","url":"classes/_core_.user.html#beforevalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":604,"kind":2048,"name":"afterValidate","url":"classes/_core_.user.html#aftervalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":605,"kind":2048,"name":"beforeCreate","url":"classes/_core_.user.html#beforecreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":606,"kind":2048,"name":"afterCreate","url":"classes/_core_.user.html#aftercreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":607,"kind":2048,"name":"beforeDestroy","url":"classes/_core_.user.html#beforedestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":608,"kind":2048,"name":"afterDestroy","url":"classes/_core_.user.html#afterdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":609,"kind":2048,"name":"beforeUpdate","url":"classes/_core_.user.html#beforeupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":610,"kind":2048,"name":"afterUpdate","url":"classes/_core_.user.html#afterupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":611,"kind":2048,"name":"beforeBulkCreate","url":"classes/_core_.user.html#beforebulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":612,"kind":2048,"name":"afterBulkCreate","url":"classes/_core_.user.html#afterbulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":613,"kind":2048,"name":"beforeBulkDestroy","url":"classes/_core_.user.html#beforebulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":614,"kind":2048,"name":"afterBulkDestroy","url":"classes/_core_.user.html#afterbulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":615,"kind":2048,"name":"beforeBulkUpdate","url":"classes/_core_.user.html#beforebulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":616,"kind":2048,"name":"afterBulkUpdate","url":"classes/_core_.user.html#afterbulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":617,"kind":2048,"name":"beforeFind","url":"classes/_core_.user.html#beforefind","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":618,"kind":2048,"name":"beforeCount","url":"classes/_core_.user.html#beforecount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":619,"kind":2048,"name":"beforeFindAfterExpandIncludeAll","url":"classes/_core_.user.html#beforefindafterexpandincludeall","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":620,"kind":2048,"name":"beforeFindAfterOptions","url":"classes/_core_.user.html#beforefindafteroptions","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":621,"kind":2048,"name":"afterFind","url":"classes/_core_.user.html#afterfind","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":622,"kind":2048,"name":"beforeBulkSync","url":"classes/_core_.user.html#beforebulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":623,"kind":2048,"name":"afterBulkSync","url":"classes/_core_.user.html#afterbulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":624,"kind":2048,"name":"beforeSync","url":"classes/_core_.user.html#beforesync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":625,"kind":2048,"name":"afterSync","url":"classes/_core_.user.html#aftersync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":626,"kind":2048,"name":"hasOne","url":"classes/_core_.user.html#hasone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":627,"kind":2048,"name":"belongsTo","url":"classes/_core_.user.html#belongsto","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":628,"kind":2048,"name":"hasMany","url":"classes/_core_.user.html#hasmany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":629,"kind":2048,"name":"belongsToMany","url":"classes/_core_.user.html#belongstomany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":630,"kind":1024,"name":"isNewRecord","url":"classes/_core_.user.html#isnewrecord","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":631,"kind":1024,"name":"sequelize","url":"classes/_core_.user.html#sequelize","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":632,"kind":512,"name":"constructor","url":"classes/_core_.user.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":633,"kind":2048,"name":"where","url":"classes/_core_.user.html#where","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":634,"kind":2048,"name":"getDataValue","url":"classes/_core_.user.html#getdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":635,"kind":2048,"name":"setDataValue","url":"classes/_core_.user.html#setdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":636,"kind":2048,"name":"get","url":"classes/_core_.user.html#get","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":637,"kind":2048,"name":"set","url":"classes/_core_.user.html#set","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":638,"kind":2048,"name":"setAttributes","url":"classes/_core_.user.html#setattributes","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":639,"kind":2048,"name":"changed","url":"classes/_core_.user.html#changed","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":640,"kind":2048,"name":"previous","url":"classes/_core_.user.html#previous","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":641,"kind":2048,"name":"save","url":"classes/_core_.user.html#save","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":642,"kind":2048,"name":"reload","url":"classes/_core_.user.html#reload","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":643,"kind":2048,"name":"validate","url":"classes/_core_.user.html#validate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":644,"kind":2048,"name":"update","url":"classes/_core_.user.html#update","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":645,"kind":2048,"name":"destroy","url":"classes/_core_.user.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":646,"kind":2048,"name":"restore","url":"classes/_core_.user.html#restore","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":647,"kind":2048,"name":"increment","url":"classes/_core_.user.html#increment","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":648,"kind":2048,"name":"decrement","url":"classes/_core_.user.html#decrement","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":649,"kind":2048,"name":"equals","url":"classes/_core_.user.html#equals","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":650,"kind":2048,"name":"equalsOneOf","url":"classes/_core_.user.html#equalsoneof","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":651,"kind":2048,"name":"addHook","url":"classes/_core_.user.html#addhook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":652,"kind":2048,"name":"removeHook","url":"classes/_core_.user.html#removehook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":653,"kind":2048,"name":"hasHook","url":"classes/_core_.user.html#hashook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":654,"kind":2048,"name":"hasHooks","url":"classes/_core_.user.html#hashooks-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":655,"kind":2048,"name":"addHook","url":"classes/_core_.user.html#addhook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":656,"kind":2048,"name":"removeHook","url":"classes/_core_.user.html#removehook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":657,"kind":2048,"name":"hasHook","url":"classes/_core_.user.html#hashook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":658,"kind":2048,"name":"hasHooks","url":"classes/_core_.user.html#hashooks","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":659,"kind":128,"name":"Group","url":"classes/_core_.group.html","classes":"tsd-kind-class tsd-parent-kind-external-module tsd-has-type-parameter","parent":"\"core\""},{"id":660,"kind":1024,"name":"id","url":"classes/_core_.group.html#id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Group"},{"id":661,"kind":1024,"name":"name","url":"classes/_core_.group.html#name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Group"},{"id":662,"kind":1024,"name":"info","url":"classes/_core_.group.html#info","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Group"},{"id":663,"kind":2048,"name":"toJSON","url":"classes/_core_.group.html#tojson","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"core\".Group"},{"id":664,"kind":1024,"name":"tableName","url":"classes/_core_.group.html#tablename","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":665,"kind":1024,"name":"primaryKeyAttribute","url":"classes/_core_.group.html#primarykeyattribute","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":666,"kind":1024,"name":"associations","url":"classes/_core_.group.html#associations","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":667,"kind":65536,"name":"__type","url":"classes/_core_.group.html#associations.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".Group.associations"},{"id":668,"kind":1024,"name":"options","url":"classes/_core_.group.html#options","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":669,"kind":1024,"name":"rawAttributes","url":"classes/_core_.group.html#rawattributes","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":670,"kind":65536,"name":"__type","url":"classes/_core_.group.html#rawattributes.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".Group.rawAttributes"},{"id":671,"kind":1024,"name":"sequelize","url":"classes/_core_.group.html#sequelize-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":672,"kind":2048,"name":"init","url":"classes/_core_.group.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":673,"kind":2048,"name":"removeAttribute","url":"classes/_core_.group.html#removeattribute","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":674,"kind":2048,"name":"sync","url":"classes/_core_.group.html#sync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":675,"kind":2048,"name":"drop","url":"classes/_core_.group.html#drop","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":676,"kind":2048,"name":"schema","url":"classes/_core_.group.html#schema","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":677,"kind":2048,"name":"getTableName","url":"classes/_core_.group.html#gettablename","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":678,"kind":2048,"name":"scope","url":"classes/_core_.group.html#scope","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":679,"kind":2048,"name":"addScope","url":"classes/_core_.group.html#addscope","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":680,"kind":2048,"name":"findAll","url":"classes/_core_.group.html#findall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":681,"kind":2048,"name":"findByPk","url":"classes/_core_.group.html#findbypk","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":682,"kind":2048,"name":"findOne","url":"classes/_core_.group.html#findone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":683,"kind":2048,"name":"aggregate","url":"classes/_core_.group.html#aggregate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":684,"kind":2048,"name":"count","url":"classes/_core_.group.html#count","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":685,"kind":2048,"name":"findAndCountAll","url":"classes/_core_.group.html#findandcountall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":686,"kind":2048,"name":"max","url":"classes/_core_.group.html#max","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":687,"kind":2048,"name":"min","url":"classes/_core_.group.html#min","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":688,"kind":2048,"name":"sum","url":"classes/_core_.group.html#sum","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":689,"kind":2048,"name":"build","url":"classes/_core_.group.html#build","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":690,"kind":2048,"name":"bulkBuild","url":"classes/_core_.group.html#bulkbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":691,"kind":2048,"name":"create","url":"classes/_core_.group.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":692,"kind":2048,"name":"findOrBuild","url":"classes/_core_.group.html#findorbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":693,"kind":2048,"name":"findOrCreate","url":"classes/_core_.group.html#findorcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":694,"kind":2048,"name":"upsert","url":"classes/_core_.group.html#upsert","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":695,"kind":2048,"name":"bulkCreate","url":"classes/_core_.group.html#bulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":696,"kind":2048,"name":"truncate","url":"classes/_core_.group.html#truncate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":697,"kind":2048,"name":"destroy","url":"classes/_core_.group.html#destroy-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":698,"kind":2048,"name":"restore","url":"classes/_core_.group.html#restore-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":699,"kind":2048,"name":"update","url":"classes/_core_.group.html#update-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":700,"kind":2048,"name":"increment","url":"classes/_core_.group.html#increment-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":701,"kind":2048,"name":"describe","url":"classes/_core_.group.html#describe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":702,"kind":2048,"name":"unscoped","url":"classes/_core_.group.html#unscoped","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":703,"kind":2048,"name":"beforeValidate","url":"classes/_core_.group.html#beforevalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":704,"kind":2048,"name":"afterValidate","url":"classes/_core_.group.html#aftervalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":705,"kind":2048,"name":"beforeCreate","url":"classes/_core_.group.html#beforecreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":706,"kind":2048,"name":"afterCreate","url":"classes/_core_.group.html#aftercreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":707,"kind":2048,"name":"beforeDestroy","url":"classes/_core_.group.html#beforedestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":708,"kind":2048,"name":"afterDestroy","url":"classes/_core_.group.html#afterdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":709,"kind":2048,"name":"beforeUpdate","url":"classes/_core_.group.html#beforeupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":710,"kind":2048,"name":"afterUpdate","url":"classes/_core_.group.html#afterupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":711,"kind":2048,"name":"beforeBulkCreate","url":"classes/_core_.group.html#beforebulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":712,"kind":2048,"name":"afterBulkCreate","url":"classes/_core_.group.html#afterbulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":713,"kind":2048,"name":"beforeBulkDestroy","url":"classes/_core_.group.html#beforebulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":714,"kind":2048,"name":"afterBulkDestroy","url":"classes/_core_.group.html#afterbulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":715,"kind":2048,"name":"beforeBulkUpdate","url":"classes/_core_.group.html#beforebulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":716,"kind":2048,"name":"afterBulkUpdate","url":"classes/_core_.group.html#afterbulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":717,"kind":2048,"name":"beforeFind","url":"classes/_core_.group.html#beforefind","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":718,"kind":2048,"name":"beforeCount","url":"classes/_core_.group.html#beforecount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":719,"kind":2048,"name":"beforeFindAfterExpandIncludeAll","url":"classes/_core_.group.html#beforefindafterexpandincludeall","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":720,"kind":2048,"name":"beforeFindAfterOptions","url":"classes/_core_.group.html#beforefindafteroptions","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":721,"kind":2048,"name":"afterFind","url":"classes/_core_.group.html#afterfind","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":722,"kind":2048,"name":"beforeBulkSync","url":"classes/_core_.group.html#beforebulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":723,"kind":2048,"name":"afterBulkSync","url":"classes/_core_.group.html#afterbulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":724,"kind":2048,"name":"beforeSync","url":"classes/_core_.group.html#beforesync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":725,"kind":2048,"name":"afterSync","url":"classes/_core_.group.html#aftersync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":726,"kind":2048,"name":"hasOne","url":"classes/_core_.group.html#hasone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":727,"kind":2048,"name":"belongsTo","url":"classes/_core_.group.html#belongsto","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":728,"kind":2048,"name":"hasMany","url":"classes/_core_.group.html#hasmany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":729,"kind":2048,"name":"belongsToMany","url":"classes/_core_.group.html#belongstomany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":730,"kind":1024,"name":"isNewRecord","url":"classes/_core_.group.html#isnewrecord","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":731,"kind":1024,"name":"sequelize","url":"classes/_core_.group.html#sequelize","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":732,"kind":512,"name":"constructor","url":"classes/_core_.group.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":733,"kind":2048,"name":"where","url":"classes/_core_.group.html#where","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":734,"kind":2048,"name":"getDataValue","url":"classes/_core_.group.html#getdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":735,"kind":2048,"name":"setDataValue","url":"classes/_core_.group.html#setdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":736,"kind":2048,"name":"get","url":"classes/_core_.group.html#get","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":737,"kind":2048,"name":"set","url":"classes/_core_.group.html#set","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":738,"kind":2048,"name":"setAttributes","url":"classes/_core_.group.html#setattributes","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":739,"kind":2048,"name":"changed","url":"classes/_core_.group.html#changed","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":740,"kind":2048,"name":"previous","url":"classes/_core_.group.html#previous","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":741,"kind":2048,"name":"save","url":"classes/_core_.group.html#save","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":742,"kind":2048,"name":"reload","url":"classes/_core_.group.html#reload","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":743,"kind":2048,"name":"validate","url":"classes/_core_.group.html#validate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":744,"kind":2048,"name":"update","url":"classes/_core_.group.html#update","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":745,"kind":2048,"name":"destroy","url":"classes/_core_.group.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":746,"kind":2048,"name":"restore","url":"classes/_core_.group.html#restore","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":747,"kind":2048,"name":"increment","url":"classes/_core_.group.html#increment","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":748,"kind":2048,"name":"decrement","url":"classes/_core_.group.html#decrement","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":749,"kind":2048,"name":"equals","url":"classes/_core_.group.html#equals","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":750,"kind":2048,"name":"equalsOneOf","url":"classes/_core_.group.html#equalsoneof","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":751,"kind":2048,"name":"addHook","url":"classes/_core_.group.html#addhook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":752,"kind":2048,"name":"removeHook","url":"classes/_core_.group.html#removehook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":753,"kind":2048,"name":"hasHook","url":"classes/_core_.group.html#hashook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":754,"kind":2048,"name":"hasHooks","url":"classes/_core_.group.html#hashooks-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":755,"kind":2048,"name":"addHook","url":"classes/_core_.group.html#addhook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":756,"kind":2048,"name":"removeHook","url":"classes/_core_.group.html#removehook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":757,"kind":2048,"name":"hasHook","url":"classes/_core_.group.html#hashook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":758,"kind":2048,"name":"hasHooks","url":"classes/_core_.group.html#hashooks","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":759,"kind":128,"name":"Auth","url":"classes/_core_.auth.html","classes":"tsd-kind-class tsd-parent-kind-external-module tsd-has-type-parameter","parent":"\"core\""},{"id":760,"kind":1024,"name":"id","url":"classes/_core_.auth.html#id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Auth"},{"id":761,"kind":1024,"name":"group_id","url":"classes/_core_.auth.html#group_id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Auth"},{"id":762,"kind":1024,"name":"auth","url":"classes/_core_.auth.html#auth","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Auth"},{"id":763,"kind":1024,"name":"module","url":"classes/_core_.auth.html#module","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Auth"},{"id":764,"kind":2048,"name":"toJSON","url":"classes/_core_.auth.html#tojson","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"core\".Auth"},{"id":765,"kind":1024,"name":"tableName","url":"classes/_core_.auth.html#tablename","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":766,"kind":1024,"name":"primaryKeyAttribute","url":"classes/_core_.auth.html#primarykeyattribute","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":767,"kind":1024,"name":"associations","url":"classes/_core_.auth.html#associations","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":768,"kind":65536,"name":"__type","url":"classes/_core_.auth.html#associations.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".Auth.associations"},{"id":769,"kind":1024,"name":"options","url":"classes/_core_.auth.html#options","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":770,"kind":1024,"name":"rawAttributes","url":"classes/_core_.auth.html#rawattributes","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":771,"kind":65536,"name":"__type","url":"classes/_core_.auth.html#rawattributes.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".Auth.rawAttributes"},{"id":772,"kind":1024,"name":"sequelize","url":"classes/_core_.auth.html#sequelize-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":773,"kind":2048,"name":"init","url":"classes/_core_.auth.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":774,"kind":2048,"name":"removeAttribute","url":"classes/_core_.auth.html#removeattribute","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":775,"kind":2048,"name":"sync","url":"classes/_core_.auth.html#sync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":776,"kind":2048,"name":"drop","url":"classes/_core_.auth.html#drop","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":777,"kind":2048,"name":"schema","url":"classes/_core_.auth.html#schema","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":778,"kind":2048,"name":"getTableName","url":"classes/_core_.auth.html#gettablename","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":779,"kind":2048,"name":"scope","url":"classes/_core_.auth.html#scope","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":780,"kind":2048,"name":"addScope","url":"classes/_core_.auth.html#addscope","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":781,"kind":2048,"name":"findAll","url":"classes/_core_.auth.html#findall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":782,"kind":2048,"name":"findByPk","url":"classes/_core_.auth.html#findbypk","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":783,"kind":2048,"name":"findOne","url":"classes/_core_.auth.html#findone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":784,"kind":2048,"name":"aggregate","url":"classes/_core_.auth.html#aggregate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":785,"kind":2048,"name":"count","url":"classes/_core_.auth.html#count","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":786,"kind":2048,"name":"findAndCountAll","url":"classes/_core_.auth.html#findandcountall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":787,"kind":2048,"name":"max","url":"classes/_core_.auth.html#max","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":788,"kind":2048,"name":"min","url":"classes/_core_.auth.html#min","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":789,"kind":2048,"name":"sum","url":"classes/_core_.auth.html#sum","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":790,"kind":2048,"name":"build","url":"classes/_core_.auth.html#build","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":791,"kind":2048,"name":"bulkBuild","url":"classes/_core_.auth.html#bulkbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":792,"kind":2048,"name":"create","url":"classes/_core_.auth.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":793,"kind":2048,"name":"findOrBuild","url":"classes/_core_.auth.html#findorbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":794,"kind":2048,"name":"findOrCreate","url":"classes/_core_.auth.html#findorcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":795,"kind":2048,"name":"upsert","url":"classes/_core_.auth.html#upsert","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":796,"kind":2048,"name":"bulkCreate","url":"classes/_core_.auth.html#bulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":797,"kind":2048,"name":"truncate","url":"classes/_core_.auth.html#truncate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":798,"kind":2048,"name":"destroy","url":"classes/_core_.auth.html#destroy-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":799,"kind":2048,"name":"restore","url":"classes/_core_.auth.html#restore-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":800,"kind":2048,"name":"update","url":"classes/_core_.auth.html#update-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":801,"kind":2048,"name":"increment","url":"classes/_core_.auth.html#increment-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":802,"kind":2048,"name":"describe","url":"classes/_core_.auth.html#describe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":803,"kind":2048,"name":"unscoped","url":"classes/_core_.auth.html#unscoped","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":804,"kind":2048,"name":"beforeValidate","url":"classes/_core_.auth.html#beforevalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":805,"kind":2048,"name":"afterValidate","url":"classes/_core_.auth.html#aftervalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":806,"kind":2048,"name":"beforeCreate","url":"classes/_core_.auth.html#beforecreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":807,"kind":2048,"name":"afterCreate","url":"classes/_core_.auth.html#aftercreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":808,"kind":2048,"name":"beforeDestroy","url":"classes/_core_.auth.html#beforedestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":809,"kind":2048,"name":"afterDestroy","url":"classes/_core_.auth.html#afterdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":810,"kind":2048,"name":"beforeUpdate","url":"classes/_core_.auth.html#beforeupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":811,"kind":2048,"name":"afterUpdate","url":"classes/_core_.auth.html#afterupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":812,"kind":2048,"name":"beforeBulkCreate","url":"classes/_core_.auth.html#beforebulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":813,"kind":2048,"name":"afterBulkCreate","url":"classes/_core_.auth.html#afterbulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":814,"kind":2048,"name":"beforeBulkDestroy","url":"classes/_core_.auth.html#beforebulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":815,"kind":2048,"name":"afterBulkDestroy","url":"classes/_core_.auth.html#afterbulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":816,"kind":2048,"name":"beforeBulkUpdate","url":"classes/_core_.auth.html#beforebulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":817,"kind":2048,"name":"afterBulkUpdate","url":"classes/_core_.auth.html#afterbulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":818,"kind":2048,"name":"beforeFind","url":"classes/_core_.auth.html#beforefind","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":819,"kind":2048,"name":"beforeCount","url":"classes/_core_.auth.html#beforecount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":820,"kind":2048,"name":"beforeFindAfterExpandIncludeAll","url":"classes/_core_.auth.html#beforefindafterexpandincludeall","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":821,"kind":2048,"name":"beforeFindAfterOptions","url":"classes/_core_.auth.html#beforefindafteroptions","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":822,"kind":2048,"name":"afterFind","url":"classes/_core_.auth.html#afterfind","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":823,"kind":2048,"name":"beforeBulkSync","url":"classes/_core_.auth.html#beforebulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":824,"kind":2048,"name":"afterBulkSync","url":"classes/_core_.auth.html#afterbulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":825,"kind":2048,"name":"beforeSync","url":"classes/_core_.auth.html#beforesync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":826,"kind":2048,"name":"afterSync","url":"classes/_core_.auth.html#aftersync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":827,"kind":2048,"name":"hasOne","url":"classes/_core_.auth.html#hasone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":828,"kind":2048,"name":"belongsTo","url":"classes/_core_.auth.html#belongsto","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":829,"kind":2048,"name":"hasMany","url":"classes/_core_.auth.html#hasmany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":830,"kind":2048,"name":"belongsToMany","url":"classes/_core_.auth.html#belongstomany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":831,"kind":1024,"name":"isNewRecord","url":"classes/_core_.auth.html#isnewrecord","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":832,"kind":1024,"name":"sequelize","url":"classes/_core_.auth.html#sequelize","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":833,"kind":512,"name":"constructor","url":"classes/_core_.auth.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":834,"kind":2048,"name":"where","url":"classes/_core_.auth.html#where","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":835,"kind":2048,"name":"getDataValue","url":"classes/_core_.auth.html#getdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":836,"kind":2048,"name":"setDataValue","url":"classes/_core_.auth.html#setdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":837,"kind":2048,"name":"get","url":"classes/_core_.auth.html#get","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":838,"kind":2048,"name":"set","url":"classes/_core_.auth.html#set","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":839,"kind":2048,"name":"setAttributes","url":"classes/_core_.auth.html#setattributes","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":840,"kind":2048,"name":"changed","url":"classes/_core_.auth.html#changed","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":841,"kind":2048,"name":"previous","url":"classes/_core_.auth.html#previous","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":842,"kind":2048,"name":"save","url":"classes/_core_.auth.html#save","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":843,"kind":2048,"name":"reload","url":"classes/_core_.auth.html#reload","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":844,"kind":2048,"name":"validate","url":"classes/_core_.auth.html#validate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":845,"kind":2048,"name":"update","url":"classes/_core_.auth.html#update","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":846,"kind":2048,"name":"destroy","url":"classes/_core_.auth.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":847,"kind":2048,"name":"restore","url":"classes/_core_.auth.html#restore","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":848,"kind":2048,"name":"increment","url":"classes/_core_.auth.html#increment","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":849,"kind":2048,"name":"decrement","url":"classes/_core_.auth.html#decrement","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":850,"kind":2048,"name":"equals","url":"classes/_core_.auth.html#equals","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":851,"kind":2048,"name":"equalsOneOf","url":"classes/_core_.auth.html#equalsoneof","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":852,"kind":2048,"name":"addHook","url":"classes/_core_.auth.html#addhook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":853,"kind":2048,"name":"removeHook","url":"classes/_core_.auth.html#removehook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":854,"kind":2048,"name":"hasHook","url":"classes/_core_.auth.html#hashook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":855,"kind":2048,"name":"hasHooks","url":"classes/_core_.auth.html#hashooks-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":856,"kind":2048,"name":"addHook","url":"classes/_core_.auth.html#addhook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":857,"kind":2048,"name":"removeHook","url":"classes/_core_.auth.html#removehook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":858,"kind":2048,"name":"hasHook","url":"classes/_core_.auth.html#hashook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":859,"kind":2048,"name":"hasHooks","url":"classes/_core_.auth.html#hashooks","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":860,"kind":256,"name":"LogArgs","url":"interfaces/_core_.logargs.html","classes":"tsd-kind-interface tsd-parent-kind-external-module","parent":"\"core\""},{"id":861,"kind":1024,"name":"message","url":"interfaces/_core_.logargs.html#message","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".LogArgs"},{"id":862,"kind":1024,"name":"user_id","url":"interfaces/_core_.logargs.html#user_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".LogArgs"},{"id":863,"kind":1024,"name":"user_name","url":"interfaces/_core_.logargs.html#user_name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".LogArgs"},{"id":864,"kind":1024,"name":"status_code","url":"interfaces/_core_.logargs.html#status_code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".LogArgs"},{"id":865,"kind":1024,"name":"method","url":"interfaces/_core_.logargs.html#method","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".LogArgs"},{"id":866,"kind":1024,"name":"path","url":"interfaces/_core_.logargs.html#path","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".LogArgs"},{"id":867,"kind":1024,"name":"authority","url":"interfaces/_core_.logargs.html#authority","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".LogArgs"},{"id":868,"kind":128,"name":"Log","url":"classes/_core_.log.html","classes":"tsd-kind-class tsd-parent-kind-external-module tsd-has-type-parameter","parent":"\"core\""},{"id":869,"kind":1024,"name":"id","url":"classes/_core_.log.html#id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":870,"kind":1024,"name":"message","url":"classes/_core_.log.html#message","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":871,"kind":1024,"name":"user_id","url":"classes/_core_.log.html#user_id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":872,"kind":1024,"name":"user_name","url":"classes/_core_.log.html#user_name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":873,"kind":1024,"name":"status_code","url":"classes/_core_.log.html#status_code","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":874,"kind":1024,"name":"method","url":"classes/_core_.log.html#method","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":875,"kind":1024,"name":"path","url":"classes/_core_.log.html#path","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":876,"kind":1024,"name":"authority","url":"classes/_core_.log.html#authority","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":877,"kind":1024,"name":"time","url":"classes/_core_.log.html#time","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":878,"kind":2048,"name":"createLog","url":"classes/_core_.log.html#createlog","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"\"core\".Log"},{"id":879,"kind":2048,"name":"toJSON","url":"classes/_core_.log.html#tojson","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"core\".Log"},{"id":880,"kind":1024,"name":"tableName","url":"classes/_core_.log.html#tablename","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":881,"kind":1024,"name":"primaryKeyAttribute","url":"classes/_core_.log.html#primarykeyattribute","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":882,"kind":1024,"name":"associations","url":"classes/_core_.log.html#associations","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":883,"kind":65536,"name":"__type","url":"classes/_core_.log.html#associations.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".Log.associations"},{"id":884,"kind":1024,"name":"options","url":"classes/_core_.log.html#options","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":885,"kind":1024,"name":"rawAttributes","url":"classes/_core_.log.html#rawattributes","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":886,"kind":65536,"name":"__type","url":"classes/_core_.log.html#rawattributes.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".Log.rawAttributes"},{"id":887,"kind":1024,"name":"sequelize","url":"classes/_core_.log.html#sequelize-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":888,"kind":2048,"name":"init","url":"classes/_core_.log.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":889,"kind":2048,"name":"removeAttribute","url":"classes/_core_.log.html#removeattribute","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":890,"kind":2048,"name":"sync","url":"classes/_core_.log.html#sync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":891,"kind":2048,"name":"drop","url":"classes/_core_.log.html#drop","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":892,"kind":2048,"name":"schema","url":"classes/_core_.log.html#schema","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":893,"kind":2048,"name":"getTableName","url":"classes/_core_.log.html#gettablename","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":894,"kind":2048,"name":"scope","url":"classes/_core_.log.html#scope","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":895,"kind":2048,"name":"addScope","url":"classes/_core_.log.html#addscope","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":896,"kind":2048,"name":"findAll","url":"classes/_core_.log.html#findall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":897,"kind":2048,"name":"findByPk","url":"classes/_core_.log.html#findbypk","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":898,"kind":2048,"name":"findOne","url":"classes/_core_.log.html#findone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":899,"kind":2048,"name":"aggregate","url":"classes/_core_.log.html#aggregate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":900,"kind":2048,"name":"count","url":"classes/_core_.log.html#count","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":901,"kind":2048,"name":"findAndCountAll","url":"classes/_core_.log.html#findandcountall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":902,"kind":2048,"name":"max","url":"classes/_core_.log.html#max","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":903,"kind":2048,"name":"min","url":"classes/_core_.log.html#min","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":904,"kind":2048,"name":"sum","url":"classes/_core_.log.html#sum","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":905,"kind":2048,"name":"build","url":"classes/_core_.log.html#build","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":906,"kind":2048,"name":"bulkBuild","url":"classes/_core_.log.html#bulkbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":907,"kind":2048,"name":"create","url":"classes/_core_.log.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":908,"kind":2048,"name":"findOrBuild","url":"classes/_core_.log.html#findorbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":909,"kind":2048,"name":"findOrCreate","url":"classes/_core_.log.html#findorcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":910,"kind":2048,"name":"upsert","url":"classes/_core_.log.html#upsert","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":911,"kind":2048,"name":"bulkCreate","url":"classes/_core_.log.html#bulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":912,"kind":2048,"name":"truncate","url":"classes/_core_.log.html#truncate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":913,"kind":2048,"name":"destroy","url":"classes/_core_.log.html#destroy-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":914,"kind":2048,"name":"restore","url":"classes/_core_.log.html#restore-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":915,"kind":2048,"name":"update","url":"classes/_core_.log.html#update-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":916,"kind":2048,"name":"increment","url":"classes/_core_.log.html#increment-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":917,"kind":2048,"name":"describe","url":"classes/_core_.log.html#describe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":918,"kind":2048,"name":"unscoped","url":"classes/_core_.log.html#unscoped","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":919,"kind":2048,"name":"beforeValidate","url":"classes/_core_.log.html#beforevalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":920,"kind":2048,"name":"afterValidate","url":"classes/_core_.log.html#aftervalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":921,"kind":2048,"name":"beforeCreate","url":"classes/_core_.log.html#beforecreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":922,"kind":2048,"name":"afterCreate","url":"classes/_core_.log.html#aftercreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":923,"kind":2048,"name":"beforeDestroy","url":"classes/_core_.log.html#beforedestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":924,"kind":2048,"name":"afterDestroy","url":"classes/_core_.log.html#afterdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":925,"kind":2048,"name":"beforeUpdate","url":"classes/_core_.log.html#beforeupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":926,"kind":2048,"name":"afterUpdate","url":"classes/_core_.log.html#afterupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":927,"kind":2048,"name":"beforeBulkCreate","url":"classes/_core_.log.html#beforebulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":928,"kind":2048,"name":"afterBulkCreate","url":"classes/_core_.log.html#afterbulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":929,"kind":2048,"name":"beforeBulkDestroy","url":"classes/_core_.log.html#beforebulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":930,"kind":2048,"name":"afterBulkDestroy","url":"classes/_core_.log.html#afterbulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":931,"kind":2048,"name":"beforeBulkUpdate","url":"classes/_core_.log.html#beforebulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":932,"kind":2048,"name":"afterBulkUpdate","url":"classes/_core_.log.html#afterbulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":933,"kind":2048,"name":"beforeFind","url":"classes/_core_.log.html#beforefind","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":934,"kind":2048,"name":"beforeCount","url":"classes/_core_.log.html#beforecount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":935,"kind":2048,"name":"beforeFindAfterExpandIncludeAll","url":"classes/_core_.log.html#beforefindafterexpandincludeall","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":936,"kind":2048,"name":"beforeFindAfterOptions","url":"classes/_core_.log.html#beforefindafteroptions","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":937,"kind":2048,"name":"afterFind","url":"classes/_core_.log.html#afterfind","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":938,"kind":2048,"name":"beforeBulkSync","url":"classes/_core_.log.html#beforebulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":939,"kind":2048,"name":"afterBulkSync","url":"classes/_core_.log.html#afterbulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":940,"kind":2048,"name":"beforeSync","url":"classes/_core_.log.html#beforesync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":941,"kind":2048,"name":"afterSync","url":"classes/_core_.log.html#aftersync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":942,"kind":2048,"name":"hasOne","url":"classes/_core_.log.html#hasone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":943,"kind":2048,"name":"belongsTo","url":"classes/_core_.log.html#belongsto","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":944,"kind":2048,"name":"hasMany","url":"classes/_core_.log.html#hasmany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":945,"kind":2048,"name":"belongsToMany","url":"classes/_core_.log.html#belongstomany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":946,"kind":1024,"name":"isNewRecord","url":"classes/_core_.log.html#isnewrecord","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":947,"kind":1024,"name":"sequelize","url":"classes/_core_.log.html#sequelize","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":948,"kind":512,"name":"constructor","url":"classes/_core_.log.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":949,"kind":2048,"name":"where","url":"classes/_core_.log.html#where","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":950,"kind":2048,"name":"getDataValue","url":"classes/_core_.log.html#getdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":951,"kind":2048,"name":"setDataValue","url":"classes/_core_.log.html#setdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":952,"kind":2048,"name":"get","url":"classes/_core_.log.html#get","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":953,"kind":2048,"name":"set","url":"classes/_core_.log.html#set","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":954,"kind":2048,"name":"setAttributes","url":"classes/_core_.log.html#setattributes","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":955,"kind":2048,"name":"changed","url":"classes/_core_.log.html#changed","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":956,"kind":2048,"name":"previous","url":"classes/_core_.log.html#previous","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":957,"kind":2048,"name":"save","url":"classes/_core_.log.html#save","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":958,"kind":2048,"name":"reload","url":"classes/_core_.log.html#reload","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":959,"kind":2048,"name":"validate","url":"classes/_core_.log.html#validate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":960,"kind":2048,"name":"update","url":"classes/_core_.log.html#update","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":961,"kind":2048,"name":"destroy","url":"classes/_core_.log.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":962,"kind":2048,"name":"restore","url":"classes/_core_.log.html#restore","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":963,"kind":2048,"name":"increment","url":"classes/_core_.log.html#increment","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":964,"kind":2048,"name":"decrement","url":"classes/_core_.log.html#decrement","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":965,"kind":2048,"name":"equals","url":"classes/_core_.log.html#equals","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":966,"kind":2048,"name":"equalsOneOf","url":"classes/_core_.log.html#equalsoneof","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":967,"kind":2048,"name":"addHook","url":"classes/_core_.log.html#addhook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":968,"kind":2048,"name":"removeHook","url":"classes/_core_.log.html#removehook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":969,"kind":2048,"name":"hasHook","url":"classes/_core_.log.html#hashook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":970,"kind":2048,"name":"hasHooks","url":"classes/_core_.log.html#hashooks-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":971,"kind":2048,"name":"addHook","url":"classes/_core_.log.html#addhook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":972,"kind":2048,"name":"removeHook","url":"classes/_core_.log.html#removehook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":973,"kind":2048,"name":"hasHook","url":"classes/_core_.log.html#hashook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":974,"kind":2048,"name":"hasHooks","url":"classes/_core_.log.html#hashooks","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":975,"kind":32,"name":"__version__","url":"modules/_core_.html#__version__","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"core\""},{"id":976,"kind":32,"name":"routeMetaInfo","url":"modules/_core_.html#routemetainfo","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"core\""},{"id":977,"kind":32,"name":"disableLoading","url":"modules/_core_.html#disableloading","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"core\""},{"id":978,"kind":1,"name":"\"factory\"","url":"modules/_factory_.html","classes":"tsd-kind-external-module"},{"id":979,"kind":64,"name":"modelExtend","url":"modules/_factory_.html#modelextend","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"factory\""},{"id":980,"kind":1,"name":"\"lin-validator\"","url":"modules/_lin_validator_.html","classes":"tsd-kind-external-module"},{"id":981,"kind":128,"name":"LinValidator","url":"classes/_lin_validator_.linvalidator.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"lin-validator\""},{"id":982,"kind":1024,"name":"data","url":"classes/_lin_validator_.linvalidator.html#data","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".LinValidator"},{"id":983,"kind":1024,"name":"parsed","url":"classes/_lin_validator_.linvalidator.html#parsed","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".LinValidator"},{"id":984,"kind":1024,"name":"errors","url":"classes/_lin_validator_.linvalidator.html#errors","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".LinValidator"},{"id":985,"kind":1024,"name":"alias","url":"classes/_lin_validator_.linvalidator.html#alias","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".LinValidator"},{"id":986,"kind":2048,"name":"validate","url":"classes/_lin_validator_.linvalidator.html#validate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-validator\".LinValidator"},{"id":987,"kind":2048,"name":"replace","url":"classes/_lin_validator_.linvalidator.html#replace","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"lin-validator\".LinValidator"},{"id":988,"kind":2048,"name":"isOptional","url":"classes/_lin_validator_.linvalidator.html#isoptional","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"lin-validator\".LinValidator"},{"id":989,"kind":2048,"name":"checkRules","url":"classes/_lin_validator_.linvalidator.html#checkrules","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"lin-validator\".LinValidator"},{"id":990,"kind":2048,"name":"getValidateFuncKey","url":"classes/_lin_validator_.linvalidator.html#getvalidatefunckey","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"lin-validator\".LinValidator"},{"id":991,"kind":2048,"name":"get","url":"classes/_lin_validator_.linvalidator.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-validator\".LinValidator"},{"id":992,"kind":2048,"name":"findInData","url":"classes/_lin_validator_.linvalidator.html#findindata","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"lin-validator\".LinValidator"},{"id":993,"kind":128,"name":"Rule","url":"classes/_lin_validator_.rule.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"lin-validator\""},{"id":994,"kind":1024,"name":"options","url":"classes/_lin_validator_.rule.html#options","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":995,"kind":1024,"name":"message","url":"classes/_lin_validator_.rule.html#message","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":996,"kind":1024,"name":"validateFunction","url":"classes/_lin_validator_.rule.html#validatefunction","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":997,"kind":1024,"name":"optional","url":"classes/_lin_validator_.rule.html#optional","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":998,"kind":1024,"name":"parsedValue","url":"classes/_lin_validator_.rule.html#parsedvalue","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":999,"kind":1024,"name":"rawValue","url":"classes/_lin_validator_.rule.html#rawvalue","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1000,"kind":1024,"name":"defaultValue","url":"classes/_lin_validator_.rule.html#defaultvalue","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1001,"kind":512,"name":"constructor","url":"classes/_lin_validator_.rule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1002,"kind":2048,"name":"validate","url":"classes/_lin_validator_.rule.html#validate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1003,"kind":1,"name":"\"log\"","url":"modules/_log_.html","classes":"tsd-kind-external-module"},{"id":1004,"kind":32,"name":"REG_XP","url":"modules/_log_.html#reg_xp","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"log\""},{"id":1005,"kind":64,"name":"logger","url":"modules/_log_.html#logger","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"log\""},{"id":1006,"kind":64,"name":"writeLog","url":"modules/_log_.html#writelog","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"log\""},{"id":1007,"kind":64,"name":"parseTemplate","url":"modules/_log_.html#parsetemplate","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"log\""},{"id":1008,"kind":1,"name":"\"middleware\"","url":"modules/_middleware_.html","classes":"tsd-kind-external-module"},{"id":1009,"kind":64,"name":"error","url":"modules/_middleware_.html#error","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"middleware\""},{"id":1010,"kind":64,"name":"log","url":"modules/_middleware_.html#log","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"middleware\""},{"id":1011,"kind":1,"name":"\"mixin\"","url":"modules/_mixin_.html","classes":"tsd-kind-external-module"},{"id":1012,"kind":128,"name":"JsonMixin","url":"classes/_mixin_.jsonmixin.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"mixin\""},{"id":1013,"kind":1024,"name":"fields","url":"classes/_mixin_.jsonmixin.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"mixin\".JsonMixin"},{"id":1014,"kind":1,"name":"\"index\"","url":"modules/_index_.html","classes":"tsd-kind-external-module"},{"id":1015,"kind":1,"name":"\"sse\"","url":"modules/_sse_.html","classes":"tsd-kind-external-module"},{"id":1016,"kind":128,"name":"SSE","url":"classes/_sse_.sse.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"sse\""},{"id":1017,"kind":512,"name":"constructor","url":"classes/_sse_.sse.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"sse\".SSE"},{"id":1018,"kind":2048,"name":"_transform","url":"classes/_sse_.sse.html#_transform","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"sse\".SSE"},{"id":1019,"kind":2048,"name":"_flush","url":"classes/_sse_.sse.html#_flush","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1020,"kind":1024,"name":"writable","url":"classes/_sse_.sse.html#writable","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1021,"kind":1024,"name":"writableHighWaterMark","url":"classes/_sse_.sse.html#writablehighwatermark","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1022,"kind":1024,"name":"writableLength","url":"classes/_sse_.sse.html#writablelength","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1023,"kind":2048,"name":"_write","url":"classes/_sse_.sse.html#_write","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1024,"kind":2048,"name":"_writev","url":"classes/_sse_.sse.html#_writev","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1025,"kind":2048,"name":"_destroy","url":"classes/_sse_.sse.html#_destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1026,"kind":2048,"name":"_final","url":"classes/_sse_.sse.html#_final","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1027,"kind":2048,"name":"write","url":"classes/_sse_.sse.html#write","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1028,"kind":2048,"name":"setDefaultEncoding","url":"classes/_sse_.sse.html#setdefaultencoding","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1029,"kind":2048,"name":"end","url":"classes/_sse_.sse.html#end","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1030,"kind":2048,"name":"cork","url":"classes/_sse_.sse.html#cork","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1031,"kind":2048,"name":"uncork","url":"classes/_sse_.sse.html#uncork","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1032,"kind":1024,"name":"readable","url":"classes/_sse_.sse.html#readable","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1033,"kind":1024,"name":"readableHighWaterMark","url":"classes/_sse_.sse.html#readablehighwatermark","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1034,"kind":1024,"name":"readableLength","url":"classes/_sse_.sse.html#readablelength","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1035,"kind":2048,"name":"_read","url":"classes/_sse_.sse.html#_read","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1036,"kind":2048,"name":"read","url":"classes/_sse_.sse.html#read","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1037,"kind":2048,"name":"setEncoding","url":"classes/_sse_.sse.html#setencoding","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1038,"kind":2048,"name":"pause","url":"classes/_sse_.sse.html#pause","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1039,"kind":2048,"name":"resume","url":"classes/_sse_.sse.html#resume","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1040,"kind":2048,"name":"isPaused","url":"classes/_sse_.sse.html#ispaused","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1041,"kind":2048,"name":"unpipe","url":"classes/_sse_.sse.html#unpipe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1042,"kind":2048,"name":"unshift","url":"classes/_sse_.sse.html#unshift","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1043,"kind":2048,"name":"wrap","url":"classes/_sse_.sse.html#wrap","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1044,"kind":2048,"name":"push","url":"classes/_sse_.sse.html#push","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1045,"kind":2048,"name":"destroy","url":"classes/_sse_.sse.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1046,"kind":2048,"name":"addListener","url":"classes/_sse_.sse.html#addlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1047,"kind":2048,"name":"emit","url":"classes/_sse_.sse.html#emit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1048,"kind":2048,"name":"on","url":"classes/_sse_.sse.html#on","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1049,"kind":2048,"name":"once","url":"classes/_sse_.sse.html#once","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1050,"kind":2048,"name":"prependListener","url":"classes/_sse_.sse.html#prependlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1051,"kind":2048,"name":"prependOnceListener","url":"classes/_sse_.sse.html#prependoncelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1052,"kind":2048,"name":"removeListener","url":"classes/_sse_.sse.html#removelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1053,"kind":2048,"name":"__@asyncIterator","url":"classes/_sse_.sse.html#___asynciterator","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1054,"kind":2048,"name":"pipe","url":"classes/_sse_.sse.html#pipe","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1055,"kind":2048,"name":"listenerCount","url":"classes/_sse_.sse.html#listenercount-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"sse\".SSE"},{"id":1056,"kind":1024,"name":"defaultMaxListeners","url":"classes/_sse_.sse.html#defaultmaxlisteners","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"sse\".SSE"},{"id":1057,"kind":2048,"name":"off","url":"classes/_sse_.sse.html#off","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1058,"kind":2048,"name":"removeAllListeners","url":"classes/_sse_.sse.html#removealllisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1059,"kind":2048,"name":"setMaxListeners","url":"classes/_sse_.sse.html#setmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1060,"kind":2048,"name":"getMaxListeners","url":"classes/_sse_.sse.html#getmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1061,"kind":2048,"name":"listeners","url":"classes/_sse_.sse.html#listeners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1062,"kind":2048,"name":"rawListeners","url":"classes/_sse_.sse.html#rawlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1063,"kind":2048,"name":"eventNames","url":"classes/_sse_.sse.html#eventnames","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1064,"kind":2048,"name":"listenerCount","url":"classes/_sse_.sse.html#listenercount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1065,"kind":128,"name":"MessageBroker","url":"classes/_sse_.messagebroker.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"sse\""},{"id":1066,"kind":1024,"name":"messages","url":"classes/_sse_.messagebroker.html#messages","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1067,"kind":1024,"name":"retry","url":"classes/_sse_.messagebroker.html#retry","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"sse\".MessageBroker"},{"id":1068,"kind":1024,"name":"buffer","url":"classes/_sse_.messagebroker.html#buffer","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"sse\".MessageBroker"},{"id":1069,"kind":1024,"name":"defaultId","url":"classes/_sse_.messagebroker.html#defaultid","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"sse\".MessageBroker"},{"id":1070,"kind":512,"name":"constructor","url":"classes/_sse_.messagebroker.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1071,"kind":2048,"name":"setRetry","url":"classes/_sse_.messagebroker.html#setretry","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1072,"kind":2048,"name":"setEventId","url":"classes/_sse_.messagebroker.html#seteventid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1073,"kind":2048,"name":"resetEventId","url":"classes/_sse_.messagebroker.html#reseteventid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1074,"kind":2048,"name":"increaseId","url":"classes/_sse_.messagebroker.html#increaseid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1075,"kind":2048,"name":"addMessage","url":"classes/_sse_.messagebroker.html#addmessage","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1076,"kind":2048,"name":"flushBuffer","url":"classes/_sse_.messagebroker.html#flushbuffer","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1077,"kind":2048,"name":"joinBuffer","url":"classes/_sse_.messagebroker.html#joinbuffer","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1078,"kind":2048,"name":"pop","url":"classes/_sse_.messagebroker.html#pop","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1079,"kind":2048,"name":"heartbeat","url":"classes/_sse_.messagebroker.html#heartbeat","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1080,"kind":2048,"name":"existMessage","url":"classes/_sse_.messagebroker.html#existmessage","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1081,"kind":128,"name":"Subscription","url":"classes/_sse_.subscription.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"sse\""},{"id":1082,"kind":1024,"name":"value","url":"classes/_sse_.subscription.html#value","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"sse\".Subscription"},{"id":1083,"kind":512,"name":"constructor","url":"classes/_sse_.subscription.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"sse\".Subscription"},{"id":1084,"kind":2048,"name":"_read","url":"classes/_sse_.subscription.html#_read","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"sse\".Subscription"},{"id":1085,"kind":1024,"name":"readable","url":"classes/_sse_.subscription.html#readable","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1086,"kind":1024,"name":"readableHighWaterMark","url":"classes/_sse_.subscription.html#readablehighwatermark","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1087,"kind":1024,"name":"readableLength","url":"classes/_sse_.subscription.html#readablelength","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1088,"kind":2048,"name":"read","url":"classes/_sse_.subscription.html#read","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1089,"kind":2048,"name":"setEncoding","url":"classes/_sse_.subscription.html#setencoding","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1090,"kind":2048,"name":"pause","url":"classes/_sse_.subscription.html#pause","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1091,"kind":2048,"name":"resume","url":"classes/_sse_.subscription.html#resume","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1092,"kind":2048,"name":"isPaused","url":"classes/_sse_.subscription.html#ispaused","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1093,"kind":2048,"name":"unpipe","url":"classes/_sse_.subscription.html#unpipe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1094,"kind":2048,"name":"unshift","url":"classes/_sse_.subscription.html#unshift","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1095,"kind":2048,"name":"wrap","url":"classes/_sse_.subscription.html#wrap","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1096,"kind":2048,"name":"push","url":"classes/_sse_.subscription.html#push","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1097,"kind":2048,"name":"_destroy","url":"classes/_sse_.subscription.html#_destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1098,"kind":2048,"name":"destroy","url":"classes/_sse_.subscription.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1099,"kind":2048,"name":"addListener","url":"classes/_sse_.subscription.html#addlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1100,"kind":2048,"name":"emit","url":"classes/_sse_.subscription.html#emit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1101,"kind":2048,"name":"on","url":"classes/_sse_.subscription.html#on","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1102,"kind":2048,"name":"once","url":"classes/_sse_.subscription.html#once","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1103,"kind":2048,"name":"prependListener","url":"classes/_sse_.subscription.html#prependlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1104,"kind":2048,"name":"prependOnceListener","url":"classes/_sse_.subscription.html#prependoncelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1105,"kind":2048,"name":"removeListener","url":"classes/_sse_.subscription.html#removelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1106,"kind":2048,"name":"__@asyncIterator","url":"classes/_sse_.subscription.html#___asynciterator","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1107,"kind":2048,"name":"pipe","url":"classes/_sse_.subscription.html#pipe","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1108,"kind":2048,"name":"listenerCount","url":"classes/_sse_.subscription.html#listenercount-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"sse\".Subscription"},{"id":1109,"kind":1024,"name":"defaultMaxListeners","url":"classes/_sse_.subscription.html#defaultmaxlisteners","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"sse\".Subscription"},{"id":1110,"kind":2048,"name":"off","url":"classes/_sse_.subscription.html#off","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1111,"kind":2048,"name":"removeAllListeners","url":"classes/_sse_.subscription.html#removealllisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1112,"kind":2048,"name":"setMaxListeners","url":"classes/_sse_.subscription.html#setmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1113,"kind":2048,"name":"getMaxListeners","url":"classes/_sse_.subscription.html#getmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1114,"kind":2048,"name":"listeners","url":"classes/_sse_.subscription.html#listeners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1115,"kind":2048,"name":"rawListeners","url":"classes/_sse_.subscription.html#rawlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1116,"kind":2048,"name":"eventNames","url":"classes/_sse_.subscription.html#eventnames","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1117,"kind":2048,"name":"listenerCount","url":"classes/_sse_.subscription.html#listenercount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"}]}; \ No newline at end of file + typedoc.search.data = {"kinds":{"1":"External module","4":"Enumeration","16":"Enumeration member","32":"Variable","64":"Function","128":"Class","256":"Interface","512":"Constructor","1024":"Property","2048":"Method","65536":"Type literal","262144":"Accessor","2097152":"Object literal","4194304":"Type alias"},"rows":[{"id":0,"kind":1,"name":"\"config\"","url":"modules/_config_.html","classes":"tsd-kind-external-module"},{"id":1,"kind":128,"name":"Config","url":"classes/_config_.config.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"config\""},{"id":2,"kind":1024,"name":"store","url":"classes/_config_.config.html#store","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"config\".Config"},{"id":3,"kind":2048,"name":"initApp","url":"classes/_config_.config.html#initapp","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"config\".Config"},{"id":4,"kind":2048,"name":"getItem","url":"classes/_config_.config.html#getitem","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"config\".Config"},{"id":5,"kind":2048,"name":"hasItem","url":"classes/_config_.config.html#hasitem","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"config\".Config"},{"id":6,"kind":2048,"name":"setItem","url":"classes/_config_.config.html#setitem","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"config\".Config"},{"id":7,"kind":2048,"name":"getConfigFromFile","url":"classes/_config_.config.html#getconfigfromfile","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"config\".Config"},{"id":8,"kind":2048,"name":"getConfigFromObj","url":"classes/_config_.config.html#getconfigfromobj","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"config\".Config"},{"id":9,"kind":32,"name":"config","url":"modules/_config_.html#config-1","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"config\""},{"id":10,"kind":1,"name":"\"exception\"","url":"modules/_exception_.html","classes":"tsd-kind-external-module"},{"id":11,"kind":256,"name":"Exception","url":"interfaces/_exception_.exception.html","classes":"tsd-kind-interface tsd-parent-kind-external-module","parent":"\"exception\""},{"id":12,"kind":1024,"name":"code","url":"interfaces/_exception_.exception.html#code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"exception\".Exception"},{"id":13,"kind":1024,"name":"msg","url":"interfaces/_exception_.exception.html#msg","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"exception\".Exception"},{"id":14,"kind":1024,"name":"errorCode","url":"interfaces/_exception_.exception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"exception\".Exception"},{"id":15,"kind":128,"name":"HttpException","url":"classes/_exception_.httpexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":16,"kind":1024,"name":"code","url":"classes/_exception_.httpexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"exception\".HttpException"},{"id":17,"kind":1024,"name":"msg","url":"classes/_exception_.httpexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"exception\".HttpException"},{"id":18,"kind":1024,"name":"errorCode","url":"classes/_exception_.httpexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"exception\".HttpException"},{"id":19,"kind":1024,"name":"fields","url":"classes/_exception_.httpexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"exception\".HttpException"},{"id":20,"kind":512,"name":"constructor","url":"classes/_exception_.httpexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"exception\".HttpException"},{"id":21,"kind":1024,"name":"name","url":"classes/_exception_.httpexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".HttpException"},{"id":22,"kind":1024,"name":"message","url":"classes/_exception_.httpexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".HttpException"},{"id":23,"kind":1024,"name":"stack","url":"classes/_exception_.httpexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".HttpException"},{"id":24,"kind":1024,"name":"Error","url":"classes/_exception_.httpexception.html#error","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"\"exception\".HttpException"},{"id":25,"kind":128,"name":"Success","url":"classes/_exception_.success.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":26,"kind":1024,"name":"code","url":"classes/_exception_.success.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Success"},{"id":27,"kind":1024,"name":"msg","url":"classes/_exception_.success.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Success"},{"id":28,"kind":1024,"name":"errorCode","url":"classes/_exception_.success.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Success"},{"id":29,"kind":512,"name":"constructor","url":"classes/_exception_.success.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Success"},{"id":30,"kind":1024,"name":"fields","url":"classes/_exception_.success.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Success"},{"id":31,"kind":1024,"name":"name","url":"classes/_exception_.success.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Success"},{"id":32,"kind":1024,"name":"message","url":"classes/_exception_.success.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Success"},{"id":33,"kind":1024,"name":"stack","url":"classes/_exception_.success.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".Success"},{"id":34,"kind":128,"name":"Failed","url":"classes/_exception_.failed.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":35,"kind":1024,"name":"code","url":"classes/_exception_.failed.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Failed"},{"id":36,"kind":1024,"name":"msg","url":"classes/_exception_.failed.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Failed"},{"id":37,"kind":1024,"name":"errorCode","url":"classes/_exception_.failed.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Failed"},{"id":38,"kind":512,"name":"constructor","url":"classes/_exception_.failed.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Failed"},{"id":39,"kind":1024,"name":"fields","url":"classes/_exception_.failed.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Failed"},{"id":40,"kind":1024,"name":"name","url":"classes/_exception_.failed.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Failed"},{"id":41,"kind":1024,"name":"message","url":"classes/_exception_.failed.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Failed"},{"id":42,"kind":1024,"name":"stack","url":"classes/_exception_.failed.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".Failed"},{"id":43,"kind":128,"name":"AuthFailed","url":"classes/_exception_.authfailed.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":44,"kind":1024,"name":"code","url":"classes/_exception_.authfailed.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".AuthFailed"},{"id":45,"kind":1024,"name":"msg","url":"classes/_exception_.authfailed.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".AuthFailed"},{"id":46,"kind":1024,"name":"errorCode","url":"classes/_exception_.authfailed.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".AuthFailed"},{"id":47,"kind":512,"name":"constructor","url":"classes/_exception_.authfailed.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".AuthFailed"},{"id":48,"kind":1024,"name":"fields","url":"classes/_exception_.authfailed.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".AuthFailed"},{"id":49,"kind":1024,"name":"name","url":"classes/_exception_.authfailed.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".AuthFailed"},{"id":50,"kind":1024,"name":"message","url":"classes/_exception_.authfailed.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".AuthFailed"},{"id":51,"kind":1024,"name":"stack","url":"classes/_exception_.authfailed.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".AuthFailed"},{"id":52,"kind":128,"name":"NotFound","url":"classes/_exception_.notfound.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":53,"kind":1024,"name":"code","url":"classes/_exception_.notfound.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".NotFound"},{"id":54,"kind":1024,"name":"msg","url":"classes/_exception_.notfound.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".NotFound"},{"id":55,"kind":1024,"name":"errorCode","url":"classes/_exception_.notfound.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".NotFound"},{"id":56,"kind":512,"name":"constructor","url":"classes/_exception_.notfound.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".NotFound"},{"id":57,"kind":1024,"name":"fields","url":"classes/_exception_.notfound.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".NotFound"},{"id":58,"kind":1024,"name":"name","url":"classes/_exception_.notfound.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".NotFound"},{"id":59,"kind":1024,"name":"message","url":"classes/_exception_.notfound.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".NotFound"},{"id":60,"kind":1024,"name":"stack","url":"classes/_exception_.notfound.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".NotFound"},{"id":61,"kind":128,"name":"ParametersException","url":"classes/_exception_.parametersexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":62,"kind":1024,"name":"code","url":"classes/_exception_.parametersexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ParametersException"},{"id":63,"kind":1024,"name":"msg","url":"classes/_exception_.parametersexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ParametersException"},{"id":64,"kind":1024,"name":"errorCode","url":"classes/_exception_.parametersexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ParametersException"},{"id":65,"kind":512,"name":"constructor","url":"classes/_exception_.parametersexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ParametersException"},{"id":66,"kind":1024,"name":"fields","url":"classes/_exception_.parametersexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".ParametersException"},{"id":67,"kind":1024,"name":"name","url":"classes/_exception_.parametersexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".ParametersException"},{"id":68,"kind":1024,"name":"message","url":"classes/_exception_.parametersexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".ParametersException"},{"id":69,"kind":1024,"name":"stack","url":"classes/_exception_.parametersexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".ParametersException"},{"id":70,"kind":128,"name":"InvalidTokenException","url":"classes/_exception_.invalidtokenexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":71,"kind":1024,"name":"code","url":"classes/_exception_.invalidtokenexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".InvalidTokenException"},{"id":72,"kind":1024,"name":"msg","url":"classes/_exception_.invalidtokenexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".InvalidTokenException"},{"id":73,"kind":1024,"name":"errorCode","url":"classes/_exception_.invalidtokenexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".InvalidTokenException"},{"id":74,"kind":512,"name":"constructor","url":"classes/_exception_.invalidtokenexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".InvalidTokenException"},{"id":75,"kind":1024,"name":"fields","url":"classes/_exception_.invalidtokenexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".InvalidTokenException"},{"id":76,"kind":1024,"name":"name","url":"classes/_exception_.invalidtokenexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".InvalidTokenException"},{"id":77,"kind":1024,"name":"message","url":"classes/_exception_.invalidtokenexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".InvalidTokenException"},{"id":78,"kind":1024,"name":"stack","url":"classes/_exception_.invalidtokenexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".InvalidTokenException"},{"id":79,"kind":128,"name":"ExpiredTokenException","url":"classes/_exception_.expiredtokenexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":80,"kind":1024,"name":"code","url":"classes/_exception_.expiredtokenexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ExpiredTokenException"},{"id":81,"kind":1024,"name":"msg","url":"classes/_exception_.expiredtokenexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ExpiredTokenException"},{"id":82,"kind":1024,"name":"errorCode","url":"classes/_exception_.expiredtokenexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ExpiredTokenException"},{"id":83,"kind":512,"name":"constructor","url":"classes/_exception_.expiredtokenexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ExpiredTokenException"},{"id":84,"kind":1024,"name":"fields","url":"classes/_exception_.expiredtokenexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".ExpiredTokenException"},{"id":85,"kind":1024,"name":"name","url":"classes/_exception_.expiredtokenexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".ExpiredTokenException"},{"id":86,"kind":1024,"name":"message","url":"classes/_exception_.expiredtokenexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".ExpiredTokenException"},{"id":87,"kind":1024,"name":"stack","url":"classes/_exception_.expiredtokenexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".ExpiredTokenException"},{"id":88,"kind":128,"name":"UnknownException","url":"classes/_exception_.unknownexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":89,"kind":1024,"name":"code","url":"classes/_exception_.unknownexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".UnknownException"},{"id":90,"kind":1024,"name":"msg","url":"classes/_exception_.unknownexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".UnknownException"},{"id":91,"kind":1024,"name":"errorCode","url":"classes/_exception_.unknownexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".UnknownException"},{"id":92,"kind":512,"name":"constructor","url":"classes/_exception_.unknownexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".UnknownException"},{"id":93,"kind":1024,"name":"fields","url":"classes/_exception_.unknownexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".UnknownException"},{"id":94,"kind":1024,"name":"name","url":"classes/_exception_.unknownexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".UnknownException"},{"id":95,"kind":1024,"name":"message","url":"classes/_exception_.unknownexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".UnknownException"},{"id":96,"kind":1024,"name":"stack","url":"classes/_exception_.unknownexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".UnknownException"},{"id":97,"kind":128,"name":"RepeatException","url":"classes/_exception_.repeatexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":98,"kind":1024,"name":"code","url":"classes/_exception_.repeatexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RepeatException"},{"id":99,"kind":1024,"name":"msg","url":"classes/_exception_.repeatexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RepeatException"},{"id":100,"kind":1024,"name":"errorCode","url":"classes/_exception_.repeatexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RepeatException"},{"id":101,"kind":512,"name":"constructor","url":"classes/_exception_.repeatexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RepeatException"},{"id":102,"kind":1024,"name":"fields","url":"classes/_exception_.repeatexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".RepeatException"},{"id":103,"kind":1024,"name":"name","url":"classes/_exception_.repeatexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".RepeatException"},{"id":104,"kind":1024,"name":"message","url":"classes/_exception_.repeatexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".RepeatException"},{"id":105,"kind":1024,"name":"stack","url":"classes/_exception_.repeatexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".RepeatException"},{"id":106,"kind":128,"name":"Forbidden","url":"classes/_exception_.forbidden.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":107,"kind":1024,"name":"code","url":"classes/_exception_.forbidden.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Forbidden"},{"id":108,"kind":1024,"name":"msg","url":"classes/_exception_.forbidden.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Forbidden"},{"id":109,"kind":1024,"name":"errorCode","url":"classes/_exception_.forbidden.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Forbidden"},{"id":110,"kind":512,"name":"constructor","url":"classes/_exception_.forbidden.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Forbidden"},{"id":111,"kind":1024,"name":"fields","url":"classes/_exception_.forbidden.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Forbidden"},{"id":112,"kind":1024,"name":"name","url":"classes/_exception_.forbidden.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Forbidden"},{"id":113,"kind":1024,"name":"message","url":"classes/_exception_.forbidden.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Forbidden"},{"id":114,"kind":1024,"name":"stack","url":"classes/_exception_.forbidden.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".Forbidden"},{"id":115,"kind":128,"name":"MethodNotAllowed","url":"classes/_exception_.methodnotallowed.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":116,"kind":1024,"name":"code","url":"classes/_exception_.methodnotallowed.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".MethodNotAllowed"},{"id":117,"kind":1024,"name":"msg","url":"classes/_exception_.methodnotallowed.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".MethodNotAllowed"},{"id":118,"kind":1024,"name":"errorCode","url":"classes/_exception_.methodnotallowed.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".MethodNotAllowed"},{"id":119,"kind":512,"name":"constructor","url":"classes/_exception_.methodnotallowed.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".MethodNotAllowed"},{"id":120,"kind":1024,"name":"fields","url":"classes/_exception_.methodnotallowed.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".MethodNotAllowed"},{"id":121,"kind":1024,"name":"name","url":"classes/_exception_.methodnotallowed.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".MethodNotAllowed"},{"id":122,"kind":1024,"name":"message","url":"classes/_exception_.methodnotallowed.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".MethodNotAllowed"},{"id":123,"kind":1024,"name":"stack","url":"classes/_exception_.methodnotallowed.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".MethodNotAllowed"},{"id":124,"kind":128,"name":"RefreshException","url":"classes/_exception_.refreshexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":125,"kind":1024,"name":"code","url":"classes/_exception_.refreshexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RefreshException"},{"id":126,"kind":1024,"name":"msg","url":"classes/_exception_.refreshexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RefreshException"},{"id":127,"kind":1024,"name":"errorCode","url":"classes/_exception_.refreshexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RefreshException"},{"id":128,"kind":512,"name":"constructor","url":"classes/_exception_.refreshexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RefreshException"},{"id":129,"kind":1024,"name":"fields","url":"classes/_exception_.refreshexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".RefreshException"},{"id":130,"kind":1024,"name":"name","url":"classes/_exception_.refreshexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".RefreshException"},{"id":131,"kind":1024,"name":"message","url":"classes/_exception_.refreshexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".RefreshException"},{"id":132,"kind":1024,"name":"stack","url":"classes/_exception_.refreshexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".RefreshException"},{"id":133,"kind":128,"name":"FileTooLargeException","url":"classes/_exception_.filetoolargeexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":134,"kind":1024,"name":"code","url":"classes/_exception_.filetoolargeexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileTooLargeException"},{"id":135,"kind":1024,"name":"msg","url":"classes/_exception_.filetoolargeexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileTooLargeException"},{"id":136,"kind":1024,"name":"errorCode","url":"classes/_exception_.filetoolargeexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileTooLargeException"},{"id":137,"kind":512,"name":"constructor","url":"classes/_exception_.filetoolargeexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileTooLargeException"},{"id":138,"kind":1024,"name":"fields","url":"classes/_exception_.filetoolargeexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".FileTooLargeException"},{"id":139,"kind":1024,"name":"name","url":"classes/_exception_.filetoolargeexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".FileTooLargeException"},{"id":140,"kind":1024,"name":"message","url":"classes/_exception_.filetoolargeexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".FileTooLargeException"},{"id":141,"kind":1024,"name":"stack","url":"classes/_exception_.filetoolargeexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".FileTooLargeException"},{"id":142,"kind":1,"name":"\"enums\"","url":"modules/_enums_.html","classes":"tsd-kind-external-module"},{"id":143,"kind":4,"name":"UserAdmin","url":"enums/_enums_.useradmin.html","classes":"tsd-kind-enum tsd-parent-kind-external-module","parent":"\"enums\""},{"id":144,"kind":16,"name":"COMMON","url":"enums/_enums_.useradmin.html#common","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"enums\".UserAdmin"},{"id":145,"kind":16,"name":"ADMIN","url":"enums/_enums_.useradmin.html#admin","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"enums\".UserAdmin"},{"id":146,"kind":4,"name":"UserActive","url":"enums/_enums_.useractive.html","classes":"tsd-kind-enum tsd-parent-kind-external-module","parent":"\"enums\""},{"id":147,"kind":16,"name":"ACTIVE","url":"enums/_enums_.useractive.html#active","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"enums\".UserActive"},{"id":148,"kind":16,"name":"NOT_ACTIVE","url":"enums/_enums_.useractive.html#not_active","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"enums\".UserActive"},{"id":149,"kind":4,"name":"TokenType","url":"enums/_enums_.tokentype.html","classes":"tsd-kind-enum tsd-parent-kind-external-module","parent":"\"enums\""},{"id":150,"kind":16,"name":"ACCESS","url":"enums/_enums_.tokentype.html#access","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"enums\".TokenType"},{"id":151,"kind":16,"name":"REFRESH","url":"enums/_enums_.tokentype.html#refresh","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"enums\".TokenType"},{"id":152,"kind":1,"name":"\"jwt\"","url":"modules/_jwt_.html","classes":"tsd-kind-external-module"},{"id":153,"kind":128,"name":"Token","url":"classes/_jwt_.token.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"jwt\""},{"id":154,"kind":1024,"name":"secret","url":"classes/_jwt_.token.html#secret","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":155,"kind":1024,"name":"accessExp","url":"classes/_jwt_.token.html#accessexp","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":156,"kind":1024,"name":"refreshExp","url":"classes/_jwt_.token.html#refreshexp","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":157,"kind":512,"name":"constructor","url":"classes/_jwt_.token.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":158,"kind":2048,"name":"initApp","url":"classes/_jwt_.token.html#initapp","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":159,"kind":2048,"name":"createAccessToken","url":"classes/_jwt_.token.html#createaccesstoken","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":160,"kind":2048,"name":"createRefreshToken","url":"classes/_jwt_.token.html#createrefreshtoken","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":161,"kind":2048,"name":"verifyToken","url":"classes/_jwt_.token.html#verifytoken","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":162,"kind":32,"name":"jwt","url":"modules/_jwt_.html#jwt","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":163,"kind":64,"name":"createAccessToken","url":"modules/_jwt_.html#createaccesstoken","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"jwt\""},{"id":164,"kind":64,"name":"createRefreshToken","url":"modules/_jwt_.html#createrefreshtoken","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"jwt\""},{"id":165,"kind":64,"name":"verifyAccessToken","url":"modules/_jwt_.html#verifyaccesstoken","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"jwt\""},{"id":166,"kind":64,"name":"verifyRefreshToken","url":"modules/_jwt_.html#verifyrefreshtoken","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"jwt\""},{"id":167,"kind":64,"name":"getTokens","url":"modules/_jwt_.html#gettokens","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":168,"kind":64,"name":"parseHeader","url":"modules/_jwt_.html#parseheader","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":169,"kind":64,"name":"checkUserIsActive","url":"modules/_jwt_.html#checkuserisactive","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":170,"kind":64,"name":"loginRequired","url":"modules/_jwt_.html#loginrequired","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":171,"kind":64,"name":"refreshTokenRequired","url":"modules/_jwt_.html#refreshtokenrequired","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":172,"kind":64,"name":"refreshTokenRequiredWithUnifyException","url":"modules/_jwt_.html#refreshtokenrequiredwithunifyexception","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":173,"kind":64,"name":"groupRequired","url":"modules/_jwt_.html#grouprequired","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":174,"kind":64,"name":"adminRequired","url":"modules/_jwt_.html#adminrequired","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":175,"kind":1,"name":"\"extended-validator\"","url":"modules/_extended_validator_.html","classes":"tsd-kind-external-module"},{"id":176,"kind":256,"name":"IsFloatOptions","url":"interfaces/_extended_validator_.isfloatoptions.html","classes":"tsd-kind-interface tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"extended-validator\""},{"id":177,"kind":1024,"name":"min","url":"interfaces/_extended_validator_.isfloatoptions.html#min","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsFloatOptions"},{"id":178,"kind":1024,"name":"max","url":"interfaces/_extended_validator_.isfloatoptions.html#max","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsFloatOptions"},{"id":179,"kind":1024,"name":"gt","url":"interfaces/_extended_validator_.isfloatoptions.html#gt","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsFloatOptions"},{"id":180,"kind":1024,"name":"lt","url":"interfaces/_extended_validator_.isfloatoptions.html#lt","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsFloatOptions"},{"id":181,"kind":256,"name":"IsIntOptions","url":"interfaces/_extended_validator_.isintoptions.html","classes":"tsd-kind-interface tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"extended-validator\""},{"id":182,"kind":1024,"name":"min","url":"interfaces/_extended_validator_.isintoptions.html#min","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsIntOptions"},{"id":183,"kind":1024,"name":"max","url":"interfaces/_extended_validator_.isintoptions.html#max","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsIntOptions"},{"id":184,"kind":1024,"name":"allow_leading_zeroes","url":"interfaces/_extended_validator_.isintoptions.html#allow_leading_zeroes","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsIntOptions"},{"id":185,"kind":1024,"name":"lt","url":"interfaces/_extended_validator_.isintoptions.html#lt","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsIntOptions"},{"id":186,"kind":1024,"name":"gt","url":"interfaces/_extended_validator_.isintoptions.html#gt","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsIntOptions"},{"id":187,"kind":128,"name":"ExtendedValidator","url":"classes/_extended_validator_.extendedvalidator.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"extended-validator\""},{"id":188,"kind":2048,"name":"hasProperty","url":"classes/_extended_validator_.extendedvalidator.html#hasproperty","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":189,"kind":2048,"name":"objPropertyIsNotEmpty","url":"classes/_extended_validator_.extendedvalidator.html#objpropertyisnotempty","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":190,"kind":2048,"name":"objPropertiesIsNotEmpty","url":"classes/_extended_validator_.extendedvalidator.html#objpropertiesisnotempty","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":191,"kind":2048,"name":"toInt","url":"classes/_extended_validator_.extendedvalidator.html#toint","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":192,"kind":2048,"name":"toFloat","url":"classes/_extended_validator_.extendedvalidator.html#tofloat","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":193,"kind":2048,"name":"toBoolean","url":"classes/_extended_validator_.extendedvalidator.html#toboolean","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":194,"kind":2048,"name":"toDate","url":"classes/_extended_validator_.extendedvalidator.html#todate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":195,"kind":2048,"name":"isFloat","url":"classes/_extended_validator_.extendedvalidator.html#isfloat","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":196,"kind":2048,"name":"isFloat2","url":"classes/_extended_validator_.extendedvalidator.html#isfloat2","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":197,"kind":2048,"name":"isInt2","url":"classes/_extended_validator_.extendedvalidator.html#isint2","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":198,"kind":2048,"name":"isInt3","url":"classes/_extended_validator_.extendedvalidator.html#isint3","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":199,"kind":2048,"name":"validate","url":"classes/_extended_validator_.extendedvalidator.html#validate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":200,"kind":2048,"name":"validateOrReject","url":"classes/_extended_validator_.extendedvalidator.html#validateorreject","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":201,"kind":2048,"name":"validateSync","url":"classes/_extended_validator_.extendedvalidator.html#validatesync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":202,"kind":2048,"name":"validateValueByMetadata","url":"classes/_extended_validator_.extendedvalidator.html#validatevaluebymetadata","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":203,"kind":2048,"name":"isDefined","url":"classes/_extended_validator_.extendedvalidator.html#isdefined","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":204,"kind":2048,"name":"equals","url":"classes/_extended_validator_.extendedvalidator.html#equals","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":205,"kind":2048,"name":"notEquals","url":"classes/_extended_validator_.extendedvalidator.html#notequals","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":206,"kind":2048,"name":"isEmpty","url":"classes/_extended_validator_.extendedvalidator.html#isempty","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":207,"kind":2048,"name":"isNotEmpty","url":"classes/_extended_validator_.extendedvalidator.html#isnotempty","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":208,"kind":2048,"name":"isIn","url":"classes/_extended_validator_.extendedvalidator.html#isin","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":209,"kind":2048,"name":"isNotIn","url":"classes/_extended_validator_.extendedvalidator.html#isnotin","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":210,"kind":2048,"name":"isBoolean","url":"classes/_extended_validator_.extendedvalidator.html#isboolean","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":211,"kind":2048,"name":"isDate","url":"classes/_extended_validator_.extendedvalidator.html#isdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":212,"kind":2048,"name":"isString","url":"classes/_extended_validator_.extendedvalidator.html#isstring","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":213,"kind":2048,"name":"isDateString","url":"classes/_extended_validator_.extendedvalidator.html#isdatestring","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":214,"kind":2048,"name":"isArray","url":"classes/_extended_validator_.extendedvalidator.html#isarray","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":215,"kind":2048,"name":"isEnum","url":"classes/_extended_validator_.extendedvalidator.html#isenum","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":216,"kind":2048,"name":"isNumber","url":"classes/_extended_validator_.extendedvalidator.html#isnumber","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":217,"kind":2048,"name":"isInt","url":"classes/_extended_validator_.extendedvalidator.html#isint","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":218,"kind":2048,"name":"isDivisibleBy","url":"classes/_extended_validator_.extendedvalidator.html#isdivisibleby","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":219,"kind":2048,"name":"isPositive","url":"classes/_extended_validator_.extendedvalidator.html#ispositive","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":220,"kind":2048,"name":"isNegative","url":"classes/_extended_validator_.extendedvalidator.html#isnegative","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":221,"kind":2048,"name":"min","url":"classes/_extended_validator_.extendedvalidator.html#min","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":222,"kind":2048,"name":"max","url":"classes/_extended_validator_.extendedvalidator.html#max","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":223,"kind":2048,"name":"minDate","url":"classes/_extended_validator_.extendedvalidator.html#mindate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":224,"kind":2048,"name":"maxDate","url":"classes/_extended_validator_.extendedvalidator.html#maxdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":225,"kind":2048,"name":"isBooleanString","url":"classes/_extended_validator_.extendedvalidator.html#isbooleanstring","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":226,"kind":2048,"name":"isNumberString","url":"classes/_extended_validator_.extendedvalidator.html#isnumberstring","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":227,"kind":2048,"name":"contains","url":"classes/_extended_validator_.extendedvalidator.html#contains","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":228,"kind":2048,"name":"notContains","url":"classes/_extended_validator_.extendedvalidator.html#notcontains","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":229,"kind":2048,"name":"isAlpha","url":"classes/_extended_validator_.extendedvalidator.html#isalpha","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":230,"kind":2048,"name":"isAlphanumeric","url":"classes/_extended_validator_.extendedvalidator.html#isalphanumeric","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":231,"kind":2048,"name":"isAscii","url":"classes/_extended_validator_.extendedvalidator.html#isascii","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":232,"kind":2048,"name":"isBase64","url":"classes/_extended_validator_.extendedvalidator.html#isbase64","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":233,"kind":2048,"name":"isByteLength","url":"classes/_extended_validator_.extendedvalidator.html#isbytelength","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":234,"kind":2048,"name":"isCreditCard","url":"classes/_extended_validator_.extendedvalidator.html#iscreditcard","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":235,"kind":2048,"name":"isCurrency","url":"classes/_extended_validator_.extendedvalidator.html#iscurrency","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":236,"kind":2048,"name":"isEmail","url":"classes/_extended_validator_.extendedvalidator.html#isemail","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":237,"kind":2048,"name":"isFQDN","url":"classes/_extended_validator_.extendedvalidator.html#isfqdn","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":238,"kind":2048,"name":"isFullWidth","url":"classes/_extended_validator_.extendedvalidator.html#isfullwidth","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":239,"kind":2048,"name":"isHalfWidth","url":"classes/_extended_validator_.extendedvalidator.html#ishalfwidth","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":240,"kind":2048,"name":"isVariableWidth","url":"classes/_extended_validator_.extendedvalidator.html#isvariablewidth","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":241,"kind":2048,"name":"isHexColor","url":"classes/_extended_validator_.extendedvalidator.html#ishexcolor","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":242,"kind":2048,"name":"isHexadecimal","url":"classes/_extended_validator_.extendedvalidator.html#ishexadecimal","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":243,"kind":2048,"name":"isIP","url":"classes/_extended_validator_.extendedvalidator.html#isip","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":244,"kind":2048,"name":"isISBN","url":"classes/_extended_validator_.extendedvalidator.html#isisbn","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":245,"kind":2048,"name":"isISIN","url":"classes/_extended_validator_.extendedvalidator.html#isisin","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":246,"kind":2048,"name":"isISO8601","url":"classes/_extended_validator_.extendedvalidator.html#isiso8601","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":247,"kind":2048,"name":"isJSON","url":"classes/_extended_validator_.extendedvalidator.html#isjson","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":248,"kind":2048,"name":"isLowercase","url":"classes/_extended_validator_.extendedvalidator.html#islowercase","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":249,"kind":2048,"name":"isMobilePhone","url":"classes/_extended_validator_.extendedvalidator.html#ismobilephone","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":250,"kind":2048,"name":"isPhoneNumber","url":"classes/_extended_validator_.extendedvalidator.html#isphonenumber","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":251,"kind":2048,"name":"isMongoId","url":"classes/_extended_validator_.extendedvalidator.html#ismongoid","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":252,"kind":2048,"name":"isMultibyte","url":"classes/_extended_validator_.extendedvalidator.html#ismultibyte","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":253,"kind":2048,"name":"isSurrogatePair","url":"classes/_extended_validator_.extendedvalidator.html#issurrogatepair","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":254,"kind":2048,"name":"isURL","url":"classes/_extended_validator_.extendedvalidator.html#isurl","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":255,"kind":2048,"name":"isUUID","url":"classes/_extended_validator_.extendedvalidator.html#isuuid","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":256,"kind":2048,"name":"isUppercase","url":"classes/_extended_validator_.extendedvalidator.html#isuppercase","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":257,"kind":2048,"name":"length","url":"classes/_extended_validator_.extendedvalidator.html#length","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":258,"kind":2048,"name":"minLength","url":"classes/_extended_validator_.extendedvalidator.html#minlength","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":259,"kind":2048,"name":"maxLength","url":"classes/_extended_validator_.extendedvalidator.html#maxlength","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":260,"kind":2048,"name":"matches","url":"classes/_extended_validator_.extendedvalidator.html#matches","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":261,"kind":2048,"name":"isMilitaryTime","url":"classes/_extended_validator_.extendedvalidator.html#ismilitarytime","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":262,"kind":2048,"name":"arrayContains","url":"classes/_extended_validator_.extendedvalidator.html#arraycontains","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":263,"kind":2048,"name":"arrayNotContains","url":"classes/_extended_validator_.extendedvalidator.html#arraynotcontains","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":264,"kind":2048,"name":"arrayNotEmpty","url":"classes/_extended_validator_.extendedvalidator.html#arraynotempty","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":265,"kind":2048,"name":"arrayMinSize","url":"classes/_extended_validator_.extendedvalidator.html#arrayminsize","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":266,"kind":2048,"name":"arrayMaxSize","url":"classes/_extended_validator_.extendedvalidator.html#arraymaxsize","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":267,"kind":2048,"name":"arrayUnique","url":"classes/_extended_validator_.extendedvalidator.html#arrayunique","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":268,"kind":2048,"name":"isInstance","url":"classes/_extended_validator_.extendedvalidator.html#isinstance","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":269,"kind":32,"name":"extendedValidator","url":"modules/_extended_validator_.html#extendedvalidator-1","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"extended-validator\""},{"id":270,"kind":1,"name":"\"util\"","url":"modules/_util_.html","classes":"tsd-kind-external-module"},{"id":271,"kind":256,"name":"ObjOptions","url":"interfaces/_util_.objoptions.html","classes":"tsd-kind-interface tsd-parent-kind-external-module","parent":"\"util\""},{"id":272,"kind":1024,"name":"prefix","url":"interfaces/_util_.objoptions.html#prefix","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"util\".ObjOptions"},{"id":273,"kind":1024,"name":"filter","url":"interfaces/_util_.objoptions.html#filter","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"util\".ObjOptions"},{"id":274,"kind":64,"name":"isUndefined","url":"modules/_util_.html#isundefined","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":275,"kind":64,"name":"isFunction","url":"modules/_util_.html#isfunction","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":276,"kind":64,"name":"isObject","url":"modules/_util_.html#isobject","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":277,"kind":64,"name":"isString","url":"modules/_util_.html#isstring","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":278,"kind":64,"name":"isConstructor","url":"modules/_util_.html#isconstructor","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":279,"kind":64,"name":"validatePath","url":"modules/_util_.html#validatepath","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":280,"kind":64,"name":"isNil","url":"modules/_util_.html#isnil","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":281,"kind":64,"name":"isEmpty","url":"modules/_util_.html#isempty","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":282,"kind":64,"name":"isSymbol","url":"modules/_util_.html#issymbol","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":283,"kind":64,"name":"strVal","url":"modules/_util_.html#strval","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":284,"kind":32,"name":"isNotEmpty","url":"modules/_util_.html#isnotempty","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"util\""},{"id":285,"kind":32,"name":"isNegative","url":"modules/_util_.html#isnegative","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"util\""},{"id":286,"kind":32,"name":"isPositive","url":"modules/_util_.html#ispositive","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"util\""},{"id":287,"kind":64,"name":"assert","url":"modules/_util_.html#assert","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":288,"kind":64,"name":"toHump","url":"modules/_util_.html#tohump","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":289,"kind":64,"name":"toLine","url":"modules/_util_.html#toline","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":290,"kind":64,"name":"findAuthAndModule","url":"modules/_util_.html#findauthandmodule","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":291,"kind":64,"name":"findMetaByAuth","url":"modules/_util_.html#findmetabyauth","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":292,"kind":64,"name":"checkDateFormat","url":"modules/_util_.html#checkdateformat","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":293,"kind":64,"name":"paginate","url":"modules/_util_.html#paginate","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":294,"kind":64,"name":"unsets","url":"modules/_util_.html#unsets","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":295,"kind":64,"name":"decorateProp","url":"modules/_util_.html#decorateprop","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":296,"kind":64,"name":"getAllMethodNames","url":"modules/_util_.html#getallmethodnames","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":297,"kind":64,"name":"getAllFieldNames","url":"modules/_util_.html#getallfieldnames","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":298,"kind":64,"name":"prefixAndFilter","url":"modules/_util_.html#prefixandfilter","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"util\""},{"id":299,"kind":64,"name":"getFiles","url":"modules/_util_.html#getfiles","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":300,"kind":1,"name":"\"db\"","url":"modules/_db_.html","classes":"tsd-kind-external-module"},{"id":301,"kind":32,"name":"database","url":"modules/_db_.html#database","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"db\""},{"id":302,"kind":32,"name":"type","url":"modules/_db_.html#type","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"db\""},{"id":303,"kind":32,"name":"host","url":"modules/_db_.html#host","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"db\""},{"id":304,"kind":32,"name":"port","url":"modules/_db_.html#port","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"db\""},{"id":305,"kind":32,"name":"username","url":"modules/_db_.html#username","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"db\""},{"id":306,"kind":32,"name":"password","url":"modules/_db_.html#password","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"db\""},{"id":307,"kind":32,"name":"logging","url":"modules/_db_.html#logging","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"db\""},{"id":308,"kind":32,"name":"db","url":"modules/_db_.html#db","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"db\""},{"id":309,"kind":1,"name":"\"password-hash\"","url":"modules/_password_hash_.html","classes":"tsd-kind-external-module"},{"id":310,"kind":256,"name":"Option","url":"interfaces/_password_hash_.option.html","classes":"tsd-kind-interface tsd-parent-kind-external-module","parent":"\"password-hash\""},{"id":311,"kind":1024,"name":"algorithm","url":"interfaces/_password_hash_.option.html#algorithm","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"password-hash\".Option"},{"id":312,"kind":1024,"name":"saltLength","url":"interfaces/_password_hash_.option.html#saltlength","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"password-hash\".Option"},{"id":313,"kind":1024,"name":"iterations","url":"interfaces/_password_hash_.option.html#iterations","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"password-hash\".Option"},{"id":314,"kind":32,"name":"saltChars","url":"modules/_password_hash_.html#saltchars","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"password-hash\""},{"id":315,"kind":32,"name":"saltCharsCount","url":"modules/_password_hash_.html#saltcharscount","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"password-hash\""},{"id":316,"kind":64,"name":"generateSalt","url":"modules/_password_hash_.html#generatesalt","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"password-hash\""},{"id":317,"kind":64,"name":"generateHash","url":"modules/_password_hash_.html#generatehash","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"password-hash\""},{"id":318,"kind":64,"name":"generate","url":"modules/_password_hash_.html#generate","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"password-hash\""},{"id":319,"kind":64,"name":"verify","url":"modules/_password_hash_.html#verify","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"password-hash\""},{"id":320,"kind":64,"name":"isHashed","url":"modules/_password_hash_.html#ishashed","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"password-hash\""},{"id":321,"kind":1,"name":"\"interface\"","url":"modules/_interface_.html","classes":"tsd-kind-external-module"},{"id":322,"kind":2097152,"name":"InfoCrudMixin","url":"modules/_interface_.html#infocrudmixin","classes":"tsd-kind-object-literal tsd-parent-kind-external-module","parent":"\"interface\""},{"id":323,"kind":32,"name":"attributes","url":"modules/_interface_.html#infocrudmixin.attributes-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin"},{"id":324,"kind":65536,"name":"__type","url":"modules/_interface_.html#infocrudmixin.attributes-2.__type","classes":"tsd-kind-type-literal tsd-parent-kind-variable tsd-is-not-exported","parent":"\"interface\".InfoCrudMixin.attributes"},{"id":325,"kind":2097152,"name":"options","url":"modules/_interface_.html#infocrudmixin.options-2","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin"},{"id":326,"kind":32,"name":"createdAt","url":"modules/_interface_.html#infocrudmixin.options-2.createdat-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin.options"},{"id":327,"kind":32,"name":"updatedAt","url":"modules/_interface_.html#infocrudmixin.options-2.updatedat-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin.options"},{"id":328,"kind":32,"name":"deletedAt","url":"modules/_interface_.html#infocrudmixin.options-2.deletedat","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin.options"},{"id":329,"kind":32,"name":"paranoid","url":"modules/_interface_.html#infocrudmixin.options-2.paranoid","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin.options"},{"id":330,"kind":2097152,"name":"getterMethods","url":"modules/_interface_.html#infocrudmixin.options-2.gettermethods","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin.options"},{"id":331,"kind":64,"name":"createTime","url":"modules/_interface_.html#infocrudmixin.options-2.gettermethods.createtime","classes":"tsd-kind-function tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin.options.getterMethods"},{"id":332,"kind":2097152,"name":"UserInterface","url":"modules/_interface_.html#userinterface","classes":"tsd-kind-object-literal tsd-parent-kind-external-module","parent":"\"interface\""},{"id":333,"kind":2097152,"name":"attributes","url":"modules/_interface_.html#userinterface.attributes-4","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface"},{"id":334,"kind":2097152,"name":"id","url":"modules/_interface_.html#userinterface.attributes-4.id-4","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes"},{"id":335,"kind":32,"name":"type","url":"modules/_interface_.html#userinterface.attributes-4.id-4.type-26","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.id"},{"id":336,"kind":32,"name":"primaryKey","url":"modules/_interface_.html#userinterface.attributes-4.id-4.primarykey-4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.id"},{"id":337,"kind":32,"name":"autoIncrement","url":"modules/_interface_.html#userinterface.attributes-4.id-4.autoincrement-4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.id"},{"id":338,"kind":2097152,"name":"nickname","url":"modules/_interface_.html#userinterface.attributes-4.nickname","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes"},{"id":339,"kind":32,"name":"type","url":"modules/_interface_.html#userinterface.attributes-4.nickname.type-27","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.nickname"},{"id":340,"kind":32,"name":"allowNull","url":"modules/_interface_.html#userinterface.attributes-4.nickname.allownull-11","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.nickname"},{"id":341,"kind":32,"name":"unique","url":"modules/_interface_.html#userinterface.attributes-4.nickname.unique-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.nickname"},{"id":342,"kind":2097152,"name":"admin","url":"modules/_interface_.html#userinterface.attributes-4.admin","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes"},{"id":343,"kind":32,"name":"type","url":"modules/_interface_.html#userinterface.attributes-4.admin.type-23","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.admin"},{"id":344,"kind":32,"name":"allowNull","url":"modules/_interface_.html#userinterface.attributes-4.admin.allownull-8","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.admin"},{"id":345,"kind":32,"name":"defaultValue","url":"modules/_interface_.html#userinterface.attributes-4.admin.defaultvalue-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.admin"},{"id":346,"kind":2097152,"name":"active","url":"modules/_interface_.html#userinterface.attributes-4.active","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes"},{"id":347,"kind":32,"name":"type","url":"modules/_interface_.html#userinterface.attributes-4.active.type-22","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.active"},{"id":348,"kind":32,"name":"allowNull","url":"modules/_interface_.html#userinterface.attributes-4.active.allownull-7","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.active"},{"id":349,"kind":32,"name":"defaultValue","url":"modules/_interface_.html#userinterface.attributes-4.active.defaultvalue-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.active"},{"id":350,"kind":2097152,"name":"email","url":"modules/_interface_.html#userinterface.attributes-4.email","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes"},{"id":351,"kind":32,"name":"type","url":"modules/_interface_.html#userinterface.attributes-4.email.type-24","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.email"},{"id":352,"kind":32,"name":"unique","url":"modules/_interface_.html#userinterface.attributes-4.email.unique","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.email"},{"id":353,"kind":32,"name":"allowNull","url":"modules/_interface_.html#userinterface.attributes-4.email.allownull-9","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.email"},{"id":354,"kind":2097152,"name":"group_id","url":"modules/_interface_.html#userinterface.attributes-4.group_id-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes"},{"id":355,"kind":32,"name":"type","url":"modules/_interface_.html#userinterface.attributes-4.group_id-1.type-25","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.group_id"},{"id":356,"kind":32,"name":"allowNull","url":"modules/_interface_.html#userinterface.attributes-4.group_id-1.allownull-10","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.group_id"},{"id":357,"kind":2097152,"name":"password","url":"modules/_interface_.html#userinterface.attributes-4.password","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes"},{"id":358,"kind":32,"name":"type","url":"modules/_interface_.html#userinterface.attributes-4.password.type-28","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.password"},{"id":359,"kind":64,"name":"set","url":"modules/_interface_.html#userinterface.attributes-4.password.set","classes":"tsd-kind-function tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.password"},{"id":360,"kind":64,"name":"get","url":"modules/_interface_.html#userinterface.attributes-4.password.get","classes":"tsd-kind-function tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.password"},{"id":361,"kind":32,"name":"options","url":"modules/_interface_.html#userinterface.options-4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface"},{"id":362,"kind":2097152,"name":"AuthInterface","url":"modules/_interface_.html#authinterface","classes":"tsd-kind-object-literal tsd-parent-kind-external-module","parent":"\"interface\""},{"id":363,"kind":2097152,"name":"attributes","url":"modules/_interface_.html#authinterface.attributes","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface"},{"id":364,"kind":2097152,"name":"id","url":"modules/_interface_.html#authinterface.attributes.id","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes"},{"id":365,"kind":32,"name":"type","url":"modules/_interface_.html#authinterface.attributes.id.type-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes.id"},{"id":366,"kind":32,"name":"primaryKey","url":"modules/_interface_.html#authinterface.attributes.id.primarykey","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes.id"},{"id":367,"kind":32,"name":"autoIncrement","url":"modules/_interface_.html#authinterface.attributes.id.autoincrement","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes.id"},{"id":368,"kind":2097152,"name":"group_id","url":"modules/_interface_.html#authinterface.attributes.group_id","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes"},{"id":369,"kind":32,"name":"type","url":"modules/_interface_.html#authinterface.attributes.group_id.type-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes.group_id"},{"id":370,"kind":32,"name":"allowNull","url":"modules/_interface_.html#authinterface.attributes.group_id.allownull","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes.group_id"},{"id":371,"kind":2097152,"name":"auth","url":"modules/_interface_.html#authinterface.attributes.auth","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes"},{"id":372,"kind":32,"name":"type","url":"modules/_interface_.html#authinterface.attributes.auth.type","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes.auth"},{"id":373,"kind":2097152,"name":"module","url":"modules/_interface_.html#authinterface.attributes.module","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes"},{"id":374,"kind":32,"name":"type","url":"modules/_interface_.html#authinterface.attributes.module.type-3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes.module"},{"id":375,"kind":2097152,"name":"options","url":"modules/_interface_.html#authinterface.options","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface"},{"id":376,"kind":32,"name":"tableName","url":"modules/_interface_.html#authinterface.options.tablename","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.options"},{"id":377,"kind":32,"name":"createdAt","url":"modules/_interface_.html#authinterface.options.createdat","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.options"},{"id":378,"kind":32,"name":"updatedAt","url":"modules/_interface_.html#authinterface.options.updatedat","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.options"},{"id":379,"kind":2097152,"name":"GroupInterface","url":"modules/_interface_.html#groupinterface","classes":"tsd-kind-object-literal tsd-parent-kind-external-module","parent":"\"interface\""},{"id":380,"kind":2097152,"name":"attributes","url":"modules/_interface_.html#groupinterface.attributes-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface"},{"id":381,"kind":2097152,"name":"id","url":"modules/_interface_.html#groupinterface.attributes-1.id-2","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes"},{"id":382,"kind":32,"name":"type","url":"modules/_interface_.html#groupinterface.attributes-1.id-2.type-11","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes.id"},{"id":383,"kind":32,"name":"primaryKey","url":"modules/_interface_.html#groupinterface.attributes-1.id-2.primarykey-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes.id"},{"id":384,"kind":32,"name":"autoIncrement","url":"modules/_interface_.html#groupinterface.attributes-1.id-2.autoincrement-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes.id"},{"id":385,"kind":2097152,"name":"name","url":"modules/_interface_.html#groupinterface.attributes-1.name-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes"},{"id":386,"kind":32,"name":"type","url":"modules/_interface_.html#groupinterface.attributes-1.name-1.type-13","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes.name"},{"id":387,"kind":2097152,"name":"info","url":"modules/_interface_.html#groupinterface.attributes-1.info","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes"},{"id":388,"kind":32,"name":"type","url":"modules/_interface_.html#groupinterface.attributes-1.info.type-12","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes.info"},{"id":389,"kind":32,"name":"allowNull","url":"modules/_interface_.html#groupinterface.attributes-1.info.allownull-5","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes.info"},{"id":390,"kind":2097152,"name":"options","url":"modules/_interface_.html#groupinterface.options-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface"},{"id":391,"kind":32,"name":"tableName","url":"modules/_interface_.html#groupinterface.options-1.tablename-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.options"},{"id":392,"kind":32,"name":"createdAt","url":"modules/_interface_.html#groupinterface.options-1.createdat-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.options"},{"id":393,"kind":32,"name":"updatedAt","url":"modules/_interface_.html#groupinterface.options-1.updatedat-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.options"},{"id":394,"kind":2097152,"name":"LogInterface","url":"modules/_interface_.html#loginterface","classes":"tsd-kind-object-literal tsd-parent-kind-external-module","parent":"\"interface\""},{"id":395,"kind":2097152,"name":"attributes","url":"modules/_interface_.html#loginterface.attributes-3","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface"},{"id":396,"kind":2097152,"name":"id","url":"modules/_interface_.html#loginterface.attributes-3.id-3","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":397,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.id-3.type-15","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.id"},{"id":398,"kind":32,"name":"primaryKey","url":"modules/_interface_.html#loginterface.attributes-3.id-3.primarykey-3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.id"},{"id":399,"kind":32,"name":"autoIncrement","url":"modules/_interface_.html#loginterface.attributes-3.id-3.autoincrement-3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.id"},{"id":400,"kind":2097152,"name":"message","url":"modules/_interface_.html#loginterface.attributes-3.message","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":401,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.message.type-16","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.message"},{"id":402,"kind":2097152,"name":"user_id","url":"modules/_interface_.html#loginterface.attributes-3.user_id","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":403,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.user_id.type-20","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.user_id"},{"id":404,"kind":32,"name":"allowNull","url":"modules/_interface_.html#loginterface.attributes-3.user_id.allownull-6","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.user_id"},{"id":405,"kind":2097152,"name":"user_name","url":"modules/_interface_.html#loginterface.attributes-3.user_name","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":406,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.user_name.type-21","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.user_name"},{"id":407,"kind":2097152,"name":"status_code","url":"modules/_interface_.html#loginterface.attributes-3.status_code","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":408,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.status_code.type-19","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.status_code"},{"id":409,"kind":2097152,"name":"method","url":"modules/_interface_.html#loginterface.attributes-3.method","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":410,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.method.type-17","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.method"},{"id":411,"kind":2097152,"name":"path","url":"modules/_interface_.html#loginterface.attributes-3.path-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":412,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.path-1.type-18","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.path"},{"id":413,"kind":2097152,"name":"authority","url":"modules/_interface_.html#loginterface.attributes-3.authority","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":414,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.authority.type-14","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.authority"},{"id":415,"kind":2097152,"name":"options","url":"modules/_interface_.html#loginterface.options-3","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface"},{"id":416,"kind":32,"name":"tableName","url":"modules/_interface_.html#loginterface.options-3.tablename-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.options"},{"id":417,"kind":32,"name":"createdAt","url":"modules/_interface_.html#loginterface.options-3.createdat-3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.options"},{"id":418,"kind":32,"name":"updatedAt","url":"modules/_interface_.html#loginterface.options-3.updatedat-3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.options"},{"id":419,"kind":2097152,"name":"getterMethods","url":"modules/_interface_.html#loginterface.options-3.gettermethods-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.options"},{"id":420,"kind":64,"name":"time","url":"modules/_interface_.html#loginterface.options-3.gettermethods-1.time","classes":"tsd-kind-function tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.options.getterMethods"},{"id":421,"kind":2097152,"name":"FileInterface","url":"modules/_interface_.html#fileinterface","classes":"tsd-kind-object-literal tsd-parent-kind-external-module","parent":"\"interface\""},{"id":422,"kind":2097152,"name":"id","url":"modules/_interface_.html#fileinterface.id-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface"},{"id":423,"kind":32,"name":"type","url":"modules/_interface_.html#fileinterface.id-1.type-5","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.id"},{"id":424,"kind":32,"name":"primaryKey","url":"modules/_interface_.html#fileinterface.id-1.primarykey-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.id"},{"id":425,"kind":32,"name":"autoIncrement","url":"modules/_interface_.html#fileinterface.id-1.autoincrement-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.id"},{"id":426,"kind":2097152,"name":"path","url":"modules/_interface_.html#fileinterface.path","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface"},{"id":427,"kind":32,"name":"type","url":"modules/_interface_.html#fileinterface.path.type-7","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.path"},{"id":428,"kind":32,"name":"allowNull","url":"modules/_interface_.html#fileinterface.path.allownull-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.path"},{"id":429,"kind":2097152,"name":"type","url":"modules/_interface_.html#fileinterface.type-9","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface"},{"id":430,"kind":32,"name":"type","url":"modules/_interface_.html#fileinterface.type-9.type-10","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.type"},{"id":431,"kind":32,"name":"allowNull","url":"modules/_interface_.html#fileinterface.type-9.allownull-4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.type"},{"id":432,"kind":32,"name":"defaultValue","url":"modules/_interface_.html#fileinterface.type-9.defaultvalue","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.type"},{"id":433,"kind":32,"name":"comment","url":"modules/_interface_.html#fileinterface.type-9.comment","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.type"},{"id":434,"kind":2097152,"name":"name","url":"modules/_interface_.html#fileinterface.name","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface"},{"id":435,"kind":32,"name":"type","url":"modules/_interface_.html#fileinterface.name.type-6","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.name"},{"id":436,"kind":32,"name":"allowNull","url":"modules/_interface_.html#fileinterface.name.allownull-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.name"},{"id":437,"kind":2097152,"name":"extension","url":"modules/_interface_.html#fileinterface.extension","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface"},{"id":438,"kind":32,"name":"type","url":"modules/_interface_.html#fileinterface.extension.type-4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.extension"},{"id":439,"kind":2097152,"name":"size","url":"modules/_interface_.html#fileinterface.size","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface"},{"id":440,"kind":32,"name":"type","url":"modules/_interface_.html#fileinterface.size.type-8","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.size"},{"id":441,"kind":32,"name":"allowNull","url":"modules/_interface_.html#fileinterface.size.allownull-3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.size"},{"id":442,"kind":1,"name":"\"extend\"","url":"modules/_extend_.html","classes":"tsd-kind-external-module"},{"id":443,"kind":64,"name":"json","url":"modules/_extend_.html#json","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"extend\""},{"id":444,"kind":64,"name":"transform","url":"modules/_extend_.html#transform","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"extend\""},{"id":445,"kind":64,"name":"success","url":"modules/_extend_.html#success","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"extend\""},{"id":446,"kind":64,"name":"logging","url":"modules/_extend_.html#logging","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"extend\""},{"id":447,"kind":64,"name":"multipart","url":"modules/_extend_.html#multipart","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"extend\""},{"id":448,"kind":64,"name":"checkSingleFileSize","url":"modules/_extend_.html#checksinglefilesize","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"extend\""},{"id":449,"kind":64,"name":"checkTotalFileSize","url":"modules/_extend_.html#checktotalfilesize","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"extend\""},{"id":450,"kind":64,"name":"checkFileExtension","url":"modules/_extend_.html#checkfileextension","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"extend\""},{"id":451,"kind":1,"name":"\"plugin\"","url":"modules/_plugin_.html","classes":"tsd-kind-external-module"},{"id":452,"kind":128,"name":"Plugin","url":"classes/_plugin_.plugin.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"plugin\""},{"id":453,"kind":1024,"name":"name","url":"classes/_plugin_.plugin.html#name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"plugin\".Plugin"},{"id":454,"kind":1024,"name":"models","url":"classes/_plugin_.plugin.html#models","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"plugin\".Plugin"},{"id":455,"kind":65536,"name":"__type","url":"classes/_plugin_.plugin.html#models.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"plugin\".Plugin.models"},{"id":456,"kind":1024,"name":"controllers","url":"classes/_plugin_.plugin.html#controllers","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"plugin\".Plugin"},{"id":457,"kind":65536,"name":"__type","url":"classes/_plugin_.plugin.html#controllers.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"plugin\".Plugin.controllers"},{"id":458,"kind":512,"name":"constructor","url":"classes/_plugin_.plugin.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"plugin\".Plugin"},{"id":459,"kind":2048,"name":"addModel","url":"classes/_plugin_.plugin.html#addmodel","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"plugin\".Plugin"},{"id":460,"kind":2048,"name":"getModel","url":"classes/_plugin_.plugin.html#getmodel","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"plugin\".Plugin"},{"id":461,"kind":2048,"name":"addController","url":"classes/_plugin_.plugin.html#addcontroller","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"plugin\".Plugin"},{"id":462,"kind":1,"name":"\"loader\"","url":"modules/_loader_.html","classes":"tsd-kind-external-module"},{"id":463,"kind":128,"name":"Loader","url":"classes/_loader_.loader.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"loader\""},{"id":464,"kind":1024,"name":"mainRouter","url":"classes/_loader_.loader.html#mainrouter","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":465,"kind":1024,"name":"pluginPath","url":"classes/_loader_.loader.html#pluginpath","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":466,"kind":1024,"name":"app","url":"classes/_loader_.loader.html#app","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"loader\".Loader"},{"id":467,"kind":1024,"name":"plugins","url":"classes/_loader_.loader.html#plugins","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":468,"kind":65536,"name":"__type","url":"classes/_loader_.loader.html#plugins.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"loader\".Loader.plugins"},{"id":469,"kind":512,"name":"constructor","url":"classes/_loader_.loader.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":470,"kind":2048,"name":"loadPlugins","url":"classes/_loader_.loader.html#loadplugins","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":471,"kind":2048,"name":"loadPlugin","url":"classes/_loader_.loader.html#loadplugin","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":472,"kind":2048,"name":"loadConfig","url":"classes/_loader_.loader.html#loadconfig","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":473,"kind":2048,"name":"loadMainApi","url":"classes/_loader_.loader.html#loadmainapi","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":474,"kind":1,"name":"\"lin-router\"","url":"modules/_lin_router_.html","classes":"tsd-kind-external-module"},{"id":475,"kind":256,"name":"Meta","url":"interfaces/_lin_router_.meta.html","classes":"tsd-kind-interface tsd-parent-kind-external-module","parent":"\"lin-router\""},{"id":476,"kind":1024,"name":"auth","url":"interfaces/_lin_router_.meta.html#auth","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".Meta"},{"id":477,"kind":1024,"name":"module","url":"interfaces/_lin_router_.meta.html#module","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".Meta"},{"id":478,"kind":1024,"name":"mount","url":"interfaces/_lin_router_.meta.html#mount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".Meta"},{"id":479,"kind":128,"name":"LinRouter","url":"classes/_lin_router_.linrouter.html","classes":"tsd-kind-class tsd-parent-kind-external-module tsd-has-type-parameter","parent":"\"lin-router\""},{"id":480,"kind":2048,"name":"linOption","url":"classes/_lin_router_.linrouter.html#linoption","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":481,"kind":2048,"name":"linHead","url":"classes/_lin_router_.linrouter.html#linhead","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":482,"kind":2048,"name":"linGet","url":"classes/_lin_router_.linrouter.html#linget","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":483,"kind":2048,"name":"linPut","url":"classes/_lin_router_.linrouter.html#linput","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":484,"kind":2048,"name":"linPatch","url":"classes/_lin_router_.linrouter.html#linpatch","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":485,"kind":2048,"name":"linPost","url":"classes/_lin_router_.linrouter.html#linpost","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":486,"kind":2048,"name":"linDelete","url":"classes/_lin_router_.linrouter.html#lindelete","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":487,"kind":256,"name":"IRouterOptions","url":"interfaces/_lin_router_.linrouter.irouteroptions.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":488,"kind":1024,"name":"prefix","url":"interfaces/_lin_router_.linrouter.irouteroptions.html#prefix","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterOptions"},{"id":489,"kind":1024,"name":"methods","url":"interfaces/_lin_router_.linrouter.irouteroptions.html#methods","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterOptions"},{"id":490,"kind":1024,"name":"routerPath","url":"interfaces/_lin_router_.linrouter.irouteroptions.html#routerpath","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterOptions"},{"id":491,"kind":1024,"name":"sensitive","url":"interfaces/_lin_router_.linrouter.irouteroptions.html#sensitive","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterOptions"},{"id":492,"kind":1024,"name":"strict","url":"interfaces/_lin_router_.linrouter.irouteroptions.html#strict","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterOptions"},{"id":493,"kind":256,"name":"IRouterParamContext","url":"interfaces/_lin_router_.linrouter.irouterparamcontext.html","classes":"tsd-kind-interface tsd-parent-kind-class tsd-has-type-parameter","parent":"\"lin-router\".LinRouter"},{"id":494,"kind":1024,"name":"params","url":"interfaces/_lin_router_.linrouter.irouterparamcontext.html#params","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterParamContext"},{"id":495,"kind":1024,"name":"router","url":"interfaces/_lin_router_.linrouter.irouterparamcontext.html#router","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterParamContext"},{"id":496,"kind":1024,"name":"_matchedRoute","url":"interfaces/_lin_router_.linrouter.irouterparamcontext.html#_matchedroute","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterParamContext"},{"id":497,"kind":1024,"name":"_matchedRouteName","url":"interfaces/_lin_router_.linrouter.irouterparamcontext.html#_matchedroutename","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterParamContext"},{"id":498,"kind":256,"name":"IRouterContext","url":"interfaces/_lin_router_.linrouter.iroutercontext.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":499,"kind":256,"name":"IParamMiddleware","url":"interfaces/_lin_router_.linrouter.iparammiddleware.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":500,"kind":256,"name":"IRouterAllowedMethodsOptions","url":"interfaces/_lin_router_.linrouter.irouterallowedmethodsoptions.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":501,"kind":1024,"name":"throw","url":"interfaces/_lin_router_.linrouter.irouterallowedmethodsoptions.html#throw","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterAllowedMethodsOptions"},{"id":502,"kind":1024,"name":"notImplemented","url":"interfaces/_lin_router_.linrouter.irouterallowedmethodsoptions.html#notimplemented","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterAllowedMethodsOptions"},{"id":503,"kind":1024,"name":"methodNotAllowed","url":"interfaces/_lin_router_.linrouter.irouterallowedmethodsoptions.html#methodnotallowed","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterAllowedMethodsOptions"},{"id":504,"kind":256,"name":"ILayerOptions","url":"interfaces/_lin_router_.linrouter.ilayeroptions.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":505,"kind":1024,"name":"name","url":"interfaces/_lin_router_.linrouter.ilayeroptions.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.ILayerOptions"},{"id":506,"kind":1024,"name":"sensitive","url":"interfaces/_lin_router_.linrouter.ilayeroptions.html#sensitive","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.ILayerOptions"},{"id":507,"kind":1024,"name":"strict","url":"interfaces/_lin_router_.linrouter.ilayeroptions.html#strict","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.ILayerOptions"},{"id":508,"kind":256,"name":"IUrlOptionsQuery","url":"interfaces/_lin_router_.linrouter.iurloptionsquery.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":509,"kind":1024,"name":"query","url":"interfaces/_lin_router_.linrouter.iurloptionsquery.html#query","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IUrlOptionsQuery"},{"id":510,"kind":256,"name":"IRoutesMatch","url":"interfaces/_lin_router_.linrouter.iroutesmatch.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":511,"kind":1024,"name":"path","url":"interfaces/_lin_router_.linrouter.iroutesmatch.html#path","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRoutesMatch"},{"id":512,"kind":1024,"name":"pathAndMethod","url":"interfaces/_lin_router_.linrouter.iroutesmatch.html#pathandmethod","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRoutesMatch"},{"id":513,"kind":1024,"name":"route","url":"interfaces/_lin_router_.linrouter.iroutesmatch.html#route","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRoutesMatch"},{"id":514,"kind":128,"name":"ParamName","url":"classes/_lin_router_.linrouter.paramname.html","classes":"tsd-kind-class tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":515,"kind":1024,"name":"asterisk","url":"classes/_lin_router_.linrouter.paramname.html#asterisk","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":516,"kind":1024,"name":"delimiter","url":"classes/_lin_router_.linrouter.paramname.html#delimiter","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":517,"kind":1024,"name":"name","url":"classes/_lin_router_.linrouter.paramname.html#name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":518,"kind":1024,"name":"optional","url":"classes/_lin_router_.linrouter.paramname.html#optional","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":519,"kind":1024,"name":"partial","url":"classes/_lin_router_.linrouter.paramname.html#partial","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":520,"kind":1024,"name":"pattern","url":"classes/_lin_router_.linrouter.paramname.html#pattern","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":521,"kind":1024,"name":"prefix","url":"classes/_lin_router_.linrouter.paramname.html#prefix","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":522,"kind":1024,"name":"repeat","url":"classes/_lin_router_.linrouter.paramname.html#repeat","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":523,"kind":128,"name":"Layer","url":"classes/_lin_router_.linrouter.layer.html","classes":"tsd-kind-class tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":524,"kind":1024,"name":"opts","url":"classes/_lin_router_.linrouter.layer.html#opts","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":525,"kind":1024,"name":"name","url":"classes/_lin_router_.linrouter.layer.html#name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":526,"kind":1024,"name":"methods","url":"classes/_lin_router_.linrouter.layer.html#methods","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":527,"kind":1024,"name":"paramNames","url":"classes/_lin_router_.linrouter.layer.html#paramnames","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":528,"kind":1024,"name":"stack","url":"classes/_lin_router_.linrouter.layer.html#stack","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":529,"kind":1024,"name":"regexp","url":"classes/_lin_router_.linrouter.layer.html#regexp","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":530,"kind":1024,"name":"path","url":"classes/_lin_router_.linrouter.layer.html#path","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":531,"kind":512,"name":"constructor","url":"classes/_lin_router_.linrouter.layer.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":532,"kind":2048,"name":"match","url":"classes/_lin_router_.linrouter.layer.html#match","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":533,"kind":2048,"name":"params","url":"classes/_lin_router_.linrouter.layer.html#params","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":534,"kind":2048,"name":"captures","url":"classes/_lin_router_.linrouter.layer.html#captures","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":535,"kind":2048,"name":"url","url":"classes/_lin_router_.linrouter.layer.html#url","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":536,"kind":2048,"name":"param","url":"classes/_lin_router_.linrouter.layer.html#param","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":537,"kind":2048,"name":"setPrefix","url":"classes/_lin_router_.linrouter.layer.html#setprefix","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":538,"kind":4194304,"name":"RouterContext","url":"classes/_lin_router_.linrouter.html#routercontext","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-has-type-parameter tsd-is-static","parent":"\"lin-router\".LinRouter"},{"id":539,"kind":4194304,"name":"IMiddleware","url":"classes/_lin_router_.linrouter.html#imiddleware","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-has-type-parameter tsd-is-static","parent":"\"lin-router\".LinRouter"},{"id":540,"kind":1024,"name":"params","url":"classes/_lin_router_.linrouter.html#params","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":541,"kind":1024,"name":"stack","url":"classes/_lin_router_.linrouter.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":542,"kind":512,"name":"constructor","url":"classes/_lin_router_.linrouter.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":543,"kind":2048,"name":"use","url":"classes/_lin_router_.linrouter.html#use","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":544,"kind":2048,"name":"get","url":"classes/_lin_router_.linrouter.html#get","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":545,"kind":2048,"name":"post","url":"classes/_lin_router_.linrouter.html#post","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":546,"kind":2048,"name":"put","url":"classes/_lin_router_.linrouter.html#put","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":547,"kind":2048,"name":"link","url":"classes/_lin_router_.linrouter.html#link","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":548,"kind":2048,"name":"unlink","url":"classes/_lin_router_.linrouter.html#unlink","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":549,"kind":2048,"name":"delete","url":"classes/_lin_router_.linrouter.html#delete","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":550,"kind":2048,"name":"del","url":"classes/_lin_router_.linrouter.html#del","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":551,"kind":2048,"name":"head","url":"classes/_lin_router_.linrouter.html#head","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":552,"kind":2048,"name":"options","url":"classes/_lin_router_.linrouter.html#options","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":553,"kind":2048,"name":"patch","url":"classes/_lin_router_.linrouter.html#patch","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":554,"kind":2048,"name":"all","url":"classes/_lin_router_.linrouter.html#all","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":555,"kind":2048,"name":"prefix","url":"classes/_lin_router_.linrouter.html#prefix","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":556,"kind":2048,"name":"routes","url":"classes/_lin_router_.linrouter.html#routes","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":557,"kind":2048,"name":"middleware","url":"classes/_lin_router_.linrouter.html#middleware","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":558,"kind":2048,"name":"allowedMethods","url":"classes/_lin_router_.linrouter.html#allowedmethods","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":559,"kind":2048,"name":"redirect","url":"classes/_lin_router_.linrouter.html#redirect","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":560,"kind":2048,"name":"register","url":"classes/_lin_router_.linrouter.html#register","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":561,"kind":2048,"name":"route","url":"classes/_lin_router_.linrouter.html#route","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":562,"kind":2048,"name":"url","url":"classes/_lin_router_.linrouter.html#url","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":563,"kind":2048,"name":"match","url":"classes/_lin_router_.linrouter.html#match","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":564,"kind":2048,"name":"param","url":"classes/_lin_router_.linrouter.html#param","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":565,"kind":2048,"name":"url","url":"classes/_lin_router_.linrouter.html#url-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"lin-router\".LinRouter"},{"id":566,"kind":1,"name":"\"core\"","url":"modules/_core_.html","classes":"tsd-kind-external-module"},{"id":567,"kind":128,"name":"Lin","url":"classes/_core_.lin.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"core\""},{"id":568,"kind":1024,"name":"manager","url":"classes/_core_.lin.html#manager","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"core\".Lin"},{"id":569,"kind":1024,"name":"app","url":"classes/_core_.lin.html#app","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"core\".Lin"},{"id":570,"kind":2048,"name":"initApp","url":"classes/_core_.lin.html#initapp","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".Lin"},{"id":571,"kind":2048,"name":"applyJwt","url":"classes/_core_.lin.html#applyjwt","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"core\".Lin"},{"id":572,"kind":2048,"name":"applyDB","url":"classes/_core_.lin.html#applydb","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"core\".Lin"},{"id":573,"kind":2048,"name":"applyManager","url":"classes/_core_.lin.html#applymanager","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"core\".Lin"},{"id":574,"kind":2048,"name":"applyDefaultExtends","url":"classes/_core_.lin.html#applydefaultextends","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"core\".Lin"},{"id":575,"kind":2048,"name":"mount","url":"classes/_core_.lin.html#mount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"core\".Lin"},{"id":576,"kind":128,"name":"Manager","url":"classes/_core_.manager.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"core\""},{"id":577,"kind":1024,"name":"loader","url":"classes/_core_.manager.html#loader","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":578,"kind":1024,"name":"userModel","url":"classes/_core_.manager.html#usermodel","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":579,"kind":1024,"name":"groupModel","url":"classes/_core_.manager.html#groupmodel","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":580,"kind":1024,"name":"authModel","url":"classes/_core_.manager.html#authmodel","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":581,"kind":2048,"name":"initApp","url":"classes/_core_.manager.html#initapp","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":582,"kind":262144,"name":"plugins","url":"classes/_core_.manager.html#plugins","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":583,"kind":2048,"name":"verify","url":"classes/_core_.manager.html#verify","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":584,"kind":2048,"name":"findUser","url":"classes/_core_.manager.html#finduser","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":585,"kind":2048,"name":"findGroup","url":"classes/_core_.manager.html#findgroup","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":586,"kind":128,"name":"User","url":"classes/_core_.user.html","classes":"tsd-kind-class tsd-parent-kind-external-module tsd-has-type-parameter","parent":"\"core\""},{"id":587,"kind":1024,"name":"id","url":"classes/_core_.user.html#id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":588,"kind":1024,"name":"nickname","url":"classes/_core_.user.html#nickname","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":589,"kind":1024,"name":"admin","url":"classes/_core_.user.html#admin","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":590,"kind":1024,"name":"active","url":"classes/_core_.user.html#active","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":591,"kind":1024,"name":"email","url":"classes/_core_.user.html#email","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":592,"kind":1024,"name":"group_id","url":"classes/_core_.user.html#group_id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":593,"kind":1024,"name":"password","url":"classes/_core_.user.html#password","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":594,"kind":1024,"name":"create_time","url":"classes/_core_.user.html#create_time","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":595,"kind":1024,"name":"update_time","url":"classes/_core_.user.html#update_time","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":596,"kind":1024,"name":"delete_time","url":"classes/_core_.user.html#delete_time","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":597,"kind":2048,"name":"verify","url":"classes/_core_.user.html#verify","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"\"core\".User"},{"id":598,"kind":2048,"name":"checkPassword","url":"classes/_core_.user.html#checkpassword","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".User"},{"id":599,"kind":2048,"name":"resetPassword","url":"classes/_core_.user.html#resetpassword","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".User"},{"id":600,"kind":2048,"name":"changePassword","url":"classes/_core_.user.html#changepassword","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".User"},{"id":601,"kind":2048,"name":"toJSON","url":"classes/_core_.user.html#tojson","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"core\".User"},{"id":602,"kind":1024,"name":"tableName","url":"classes/_core_.user.html#tablename","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":603,"kind":1024,"name":"primaryKeyAttribute","url":"classes/_core_.user.html#primarykeyattribute","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":604,"kind":1024,"name":"associations","url":"classes/_core_.user.html#associations","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":605,"kind":65536,"name":"__type","url":"classes/_core_.user.html#associations.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".User.associations"},{"id":606,"kind":1024,"name":"options","url":"classes/_core_.user.html#options","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":607,"kind":1024,"name":"rawAttributes","url":"classes/_core_.user.html#rawattributes","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":608,"kind":65536,"name":"__type","url":"classes/_core_.user.html#rawattributes.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".User.rawAttributes"},{"id":609,"kind":1024,"name":"sequelize","url":"classes/_core_.user.html#sequelize-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":610,"kind":2048,"name":"init","url":"classes/_core_.user.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":611,"kind":2048,"name":"removeAttribute","url":"classes/_core_.user.html#removeattribute","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":612,"kind":2048,"name":"sync","url":"classes/_core_.user.html#sync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":613,"kind":2048,"name":"drop","url":"classes/_core_.user.html#drop","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":614,"kind":2048,"name":"schema","url":"classes/_core_.user.html#schema","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":615,"kind":2048,"name":"getTableName","url":"classes/_core_.user.html#gettablename","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":616,"kind":2048,"name":"scope","url":"classes/_core_.user.html#scope","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":617,"kind":2048,"name":"addScope","url":"classes/_core_.user.html#addscope","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":618,"kind":2048,"name":"findAll","url":"classes/_core_.user.html#findall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":619,"kind":2048,"name":"findByPk","url":"classes/_core_.user.html#findbypk","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":620,"kind":2048,"name":"findOne","url":"classes/_core_.user.html#findone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":621,"kind":2048,"name":"aggregate","url":"classes/_core_.user.html#aggregate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":622,"kind":2048,"name":"count","url":"classes/_core_.user.html#count","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":623,"kind":2048,"name":"findAndCountAll","url":"classes/_core_.user.html#findandcountall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":624,"kind":2048,"name":"max","url":"classes/_core_.user.html#max","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":625,"kind":2048,"name":"min","url":"classes/_core_.user.html#min","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":626,"kind":2048,"name":"sum","url":"classes/_core_.user.html#sum","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":627,"kind":2048,"name":"build","url":"classes/_core_.user.html#build","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":628,"kind":2048,"name":"bulkBuild","url":"classes/_core_.user.html#bulkbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":629,"kind":2048,"name":"create","url":"classes/_core_.user.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":630,"kind":2048,"name":"findOrBuild","url":"classes/_core_.user.html#findorbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":631,"kind":2048,"name":"findOrCreate","url":"classes/_core_.user.html#findorcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":632,"kind":2048,"name":"upsert","url":"classes/_core_.user.html#upsert","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":633,"kind":2048,"name":"bulkCreate","url":"classes/_core_.user.html#bulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":634,"kind":2048,"name":"truncate","url":"classes/_core_.user.html#truncate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":635,"kind":2048,"name":"destroy","url":"classes/_core_.user.html#destroy-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":636,"kind":2048,"name":"restore","url":"classes/_core_.user.html#restore-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":637,"kind":2048,"name":"update","url":"classes/_core_.user.html#update-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":638,"kind":2048,"name":"increment","url":"classes/_core_.user.html#increment-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":639,"kind":2048,"name":"describe","url":"classes/_core_.user.html#describe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":640,"kind":2048,"name":"unscoped","url":"classes/_core_.user.html#unscoped","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":641,"kind":2048,"name":"beforeValidate","url":"classes/_core_.user.html#beforevalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":642,"kind":2048,"name":"afterValidate","url":"classes/_core_.user.html#aftervalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":643,"kind":2048,"name":"beforeCreate","url":"classes/_core_.user.html#beforecreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":644,"kind":2048,"name":"afterCreate","url":"classes/_core_.user.html#aftercreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":645,"kind":2048,"name":"beforeDestroy","url":"classes/_core_.user.html#beforedestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":646,"kind":2048,"name":"afterDestroy","url":"classes/_core_.user.html#afterdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":647,"kind":2048,"name":"beforeUpdate","url":"classes/_core_.user.html#beforeupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":648,"kind":2048,"name":"afterUpdate","url":"classes/_core_.user.html#afterupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":649,"kind":2048,"name":"beforeBulkCreate","url":"classes/_core_.user.html#beforebulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":650,"kind":2048,"name":"afterBulkCreate","url":"classes/_core_.user.html#afterbulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":651,"kind":2048,"name":"beforeBulkDestroy","url":"classes/_core_.user.html#beforebulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":652,"kind":2048,"name":"afterBulkDestroy","url":"classes/_core_.user.html#afterbulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":653,"kind":2048,"name":"beforeBulkUpdate","url":"classes/_core_.user.html#beforebulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":654,"kind":2048,"name":"afterBulkUpdate","url":"classes/_core_.user.html#afterbulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":655,"kind":2048,"name":"beforeFind","url":"classes/_core_.user.html#beforefind","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":656,"kind":2048,"name":"beforeCount","url":"classes/_core_.user.html#beforecount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":657,"kind":2048,"name":"beforeFindAfterExpandIncludeAll","url":"classes/_core_.user.html#beforefindafterexpandincludeall","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":658,"kind":2048,"name":"beforeFindAfterOptions","url":"classes/_core_.user.html#beforefindafteroptions","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":659,"kind":2048,"name":"afterFind","url":"classes/_core_.user.html#afterfind","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":660,"kind":2048,"name":"beforeBulkSync","url":"classes/_core_.user.html#beforebulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":661,"kind":2048,"name":"afterBulkSync","url":"classes/_core_.user.html#afterbulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":662,"kind":2048,"name":"beforeSync","url":"classes/_core_.user.html#beforesync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":663,"kind":2048,"name":"afterSync","url":"classes/_core_.user.html#aftersync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":664,"kind":2048,"name":"hasOne","url":"classes/_core_.user.html#hasone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":665,"kind":2048,"name":"belongsTo","url":"classes/_core_.user.html#belongsto","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":666,"kind":2048,"name":"hasMany","url":"classes/_core_.user.html#hasmany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":667,"kind":2048,"name":"belongsToMany","url":"classes/_core_.user.html#belongstomany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":668,"kind":1024,"name":"isNewRecord","url":"classes/_core_.user.html#isnewrecord","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":669,"kind":1024,"name":"sequelize","url":"classes/_core_.user.html#sequelize","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":670,"kind":512,"name":"constructor","url":"classes/_core_.user.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":671,"kind":2048,"name":"where","url":"classes/_core_.user.html#where","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":672,"kind":2048,"name":"getDataValue","url":"classes/_core_.user.html#getdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":673,"kind":2048,"name":"setDataValue","url":"classes/_core_.user.html#setdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":674,"kind":2048,"name":"get","url":"classes/_core_.user.html#get","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":675,"kind":2048,"name":"set","url":"classes/_core_.user.html#set","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":676,"kind":2048,"name":"setAttributes","url":"classes/_core_.user.html#setattributes","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":677,"kind":2048,"name":"changed","url":"classes/_core_.user.html#changed","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":678,"kind":2048,"name":"previous","url":"classes/_core_.user.html#previous","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":679,"kind":2048,"name":"save","url":"classes/_core_.user.html#save","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":680,"kind":2048,"name":"reload","url":"classes/_core_.user.html#reload","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":681,"kind":2048,"name":"validate","url":"classes/_core_.user.html#validate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":682,"kind":2048,"name":"update","url":"classes/_core_.user.html#update","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":683,"kind":2048,"name":"destroy","url":"classes/_core_.user.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":684,"kind":2048,"name":"restore","url":"classes/_core_.user.html#restore","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":685,"kind":2048,"name":"increment","url":"classes/_core_.user.html#increment","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":686,"kind":2048,"name":"decrement","url":"classes/_core_.user.html#decrement","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":687,"kind":2048,"name":"equals","url":"classes/_core_.user.html#equals","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":688,"kind":2048,"name":"equalsOneOf","url":"classes/_core_.user.html#equalsoneof","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":689,"kind":2048,"name":"addHook","url":"classes/_core_.user.html#addhook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":690,"kind":2048,"name":"removeHook","url":"classes/_core_.user.html#removehook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":691,"kind":2048,"name":"hasHook","url":"classes/_core_.user.html#hashook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":692,"kind":2048,"name":"hasHooks","url":"classes/_core_.user.html#hashooks-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":693,"kind":2048,"name":"addHook","url":"classes/_core_.user.html#addhook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":694,"kind":2048,"name":"removeHook","url":"classes/_core_.user.html#removehook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":695,"kind":2048,"name":"hasHook","url":"classes/_core_.user.html#hashook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":696,"kind":2048,"name":"hasHooks","url":"classes/_core_.user.html#hashooks","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":697,"kind":128,"name":"Group","url":"classes/_core_.group.html","classes":"tsd-kind-class tsd-parent-kind-external-module tsd-has-type-parameter","parent":"\"core\""},{"id":698,"kind":1024,"name":"id","url":"classes/_core_.group.html#id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Group"},{"id":699,"kind":1024,"name":"name","url":"classes/_core_.group.html#name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Group"},{"id":700,"kind":1024,"name":"info","url":"classes/_core_.group.html#info","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Group"},{"id":701,"kind":2048,"name":"toJSON","url":"classes/_core_.group.html#tojson","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"core\".Group"},{"id":702,"kind":1024,"name":"tableName","url":"classes/_core_.group.html#tablename","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":703,"kind":1024,"name":"primaryKeyAttribute","url":"classes/_core_.group.html#primarykeyattribute","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":704,"kind":1024,"name":"associations","url":"classes/_core_.group.html#associations","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":705,"kind":65536,"name":"__type","url":"classes/_core_.group.html#associations.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".Group.associations"},{"id":706,"kind":1024,"name":"options","url":"classes/_core_.group.html#options","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":707,"kind":1024,"name":"rawAttributes","url":"classes/_core_.group.html#rawattributes","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":708,"kind":65536,"name":"__type","url":"classes/_core_.group.html#rawattributes.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".Group.rawAttributes"},{"id":709,"kind":1024,"name":"sequelize","url":"classes/_core_.group.html#sequelize-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":710,"kind":2048,"name":"init","url":"classes/_core_.group.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":711,"kind":2048,"name":"removeAttribute","url":"classes/_core_.group.html#removeattribute","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":712,"kind":2048,"name":"sync","url":"classes/_core_.group.html#sync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":713,"kind":2048,"name":"drop","url":"classes/_core_.group.html#drop","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":714,"kind":2048,"name":"schema","url":"classes/_core_.group.html#schema","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":715,"kind":2048,"name":"getTableName","url":"classes/_core_.group.html#gettablename","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":716,"kind":2048,"name":"scope","url":"classes/_core_.group.html#scope","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":717,"kind":2048,"name":"addScope","url":"classes/_core_.group.html#addscope","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":718,"kind":2048,"name":"findAll","url":"classes/_core_.group.html#findall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":719,"kind":2048,"name":"findByPk","url":"classes/_core_.group.html#findbypk","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":720,"kind":2048,"name":"findOne","url":"classes/_core_.group.html#findone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":721,"kind":2048,"name":"aggregate","url":"classes/_core_.group.html#aggregate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":722,"kind":2048,"name":"count","url":"classes/_core_.group.html#count","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":723,"kind":2048,"name":"findAndCountAll","url":"classes/_core_.group.html#findandcountall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":724,"kind":2048,"name":"max","url":"classes/_core_.group.html#max","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":725,"kind":2048,"name":"min","url":"classes/_core_.group.html#min","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":726,"kind":2048,"name":"sum","url":"classes/_core_.group.html#sum","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":727,"kind":2048,"name":"build","url":"classes/_core_.group.html#build","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":728,"kind":2048,"name":"bulkBuild","url":"classes/_core_.group.html#bulkbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":729,"kind":2048,"name":"create","url":"classes/_core_.group.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":730,"kind":2048,"name":"findOrBuild","url":"classes/_core_.group.html#findorbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":731,"kind":2048,"name":"findOrCreate","url":"classes/_core_.group.html#findorcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":732,"kind":2048,"name":"upsert","url":"classes/_core_.group.html#upsert","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":733,"kind":2048,"name":"bulkCreate","url":"classes/_core_.group.html#bulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":734,"kind":2048,"name":"truncate","url":"classes/_core_.group.html#truncate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":735,"kind":2048,"name":"destroy","url":"classes/_core_.group.html#destroy-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":736,"kind":2048,"name":"restore","url":"classes/_core_.group.html#restore-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":737,"kind":2048,"name":"update","url":"classes/_core_.group.html#update-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":738,"kind":2048,"name":"increment","url":"classes/_core_.group.html#increment-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":739,"kind":2048,"name":"describe","url":"classes/_core_.group.html#describe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":740,"kind":2048,"name":"unscoped","url":"classes/_core_.group.html#unscoped","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":741,"kind":2048,"name":"beforeValidate","url":"classes/_core_.group.html#beforevalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":742,"kind":2048,"name":"afterValidate","url":"classes/_core_.group.html#aftervalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":743,"kind":2048,"name":"beforeCreate","url":"classes/_core_.group.html#beforecreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":744,"kind":2048,"name":"afterCreate","url":"classes/_core_.group.html#aftercreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":745,"kind":2048,"name":"beforeDestroy","url":"classes/_core_.group.html#beforedestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":746,"kind":2048,"name":"afterDestroy","url":"classes/_core_.group.html#afterdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":747,"kind":2048,"name":"beforeUpdate","url":"classes/_core_.group.html#beforeupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":748,"kind":2048,"name":"afterUpdate","url":"classes/_core_.group.html#afterupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":749,"kind":2048,"name":"beforeBulkCreate","url":"classes/_core_.group.html#beforebulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":750,"kind":2048,"name":"afterBulkCreate","url":"classes/_core_.group.html#afterbulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":751,"kind":2048,"name":"beforeBulkDestroy","url":"classes/_core_.group.html#beforebulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":752,"kind":2048,"name":"afterBulkDestroy","url":"classes/_core_.group.html#afterbulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":753,"kind":2048,"name":"beforeBulkUpdate","url":"classes/_core_.group.html#beforebulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":754,"kind":2048,"name":"afterBulkUpdate","url":"classes/_core_.group.html#afterbulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":755,"kind":2048,"name":"beforeFind","url":"classes/_core_.group.html#beforefind","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":756,"kind":2048,"name":"beforeCount","url":"classes/_core_.group.html#beforecount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":757,"kind":2048,"name":"beforeFindAfterExpandIncludeAll","url":"classes/_core_.group.html#beforefindafterexpandincludeall","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":758,"kind":2048,"name":"beforeFindAfterOptions","url":"classes/_core_.group.html#beforefindafteroptions","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":759,"kind":2048,"name":"afterFind","url":"classes/_core_.group.html#afterfind","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":760,"kind":2048,"name":"beforeBulkSync","url":"classes/_core_.group.html#beforebulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":761,"kind":2048,"name":"afterBulkSync","url":"classes/_core_.group.html#afterbulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":762,"kind":2048,"name":"beforeSync","url":"classes/_core_.group.html#beforesync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":763,"kind":2048,"name":"afterSync","url":"classes/_core_.group.html#aftersync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":764,"kind":2048,"name":"hasOne","url":"classes/_core_.group.html#hasone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":765,"kind":2048,"name":"belongsTo","url":"classes/_core_.group.html#belongsto","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":766,"kind":2048,"name":"hasMany","url":"classes/_core_.group.html#hasmany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":767,"kind":2048,"name":"belongsToMany","url":"classes/_core_.group.html#belongstomany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":768,"kind":1024,"name":"isNewRecord","url":"classes/_core_.group.html#isnewrecord","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":769,"kind":1024,"name":"sequelize","url":"classes/_core_.group.html#sequelize","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":770,"kind":512,"name":"constructor","url":"classes/_core_.group.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":771,"kind":2048,"name":"where","url":"classes/_core_.group.html#where","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":772,"kind":2048,"name":"getDataValue","url":"classes/_core_.group.html#getdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":773,"kind":2048,"name":"setDataValue","url":"classes/_core_.group.html#setdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":774,"kind":2048,"name":"get","url":"classes/_core_.group.html#get","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":775,"kind":2048,"name":"set","url":"classes/_core_.group.html#set","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":776,"kind":2048,"name":"setAttributes","url":"classes/_core_.group.html#setattributes","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":777,"kind":2048,"name":"changed","url":"classes/_core_.group.html#changed","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":778,"kind":2048,"name":"previous","url":"classes/_core_.group.html#previous","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":779,"kind":2048,"name":"save","url":"classes/_core_.group.html#save","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":780,"kind":2048,"name":"reload","url":"classes/_core_.group.html#reload","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":781,"kind":2048,"name":"validate","url":"classes/_core_.group.html#validate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":782,"kind":2048,"name":"update","url":"classes/_core_.group.html#update","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":783,"kind":2048,"name":"destroy","url":"classes/_core_.group.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":784,"kind":2048,"name":"restore","url":"classes/_core_.group.html#restore","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":785,"kind":2048,"name":"increment","url":"classes/_core_.group.html#increment","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":786,"kind":2048,"name":"decrement","url":"classes/_core_.group.html#decrement","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":787,"kind":2048,"name":"equals","url":"classes/_core_.group.html#equals","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":788,"kind":2048,"name":"equalsOneOf","url":"classes/_core_.group.html#equalsoneof","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":789,"kind":2048,"name":"addHook","url":"classes/_core_.group.html#addhook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":790,"kind":2048,"name":"removeHook","url":"classes/_core_.group.html#removehook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":791,"kind":2048,"name":"hasHook","url":"classes/_core_.group.html#hashook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":792,"kind":2048,"name":"hasHooks","url":"classes/_core_.group.html#hashooks-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":793,"kind":2048,"name":"addHook","url":"classes/_core_.group.html#addhook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":794,"kind":2048,"name":"removeHook","url":"classes/_core_.group.html#removehook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":795,"kind":2048,"name":"hasHook","url":"classes/_core_.group.html#hashook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":796,"kind":2048,"name":"hasHooks","url":"classes/_core_.group.html#hashooks","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":797,"kind":128,"name":"Auth","url":"classes/_core_.auth.html","classes":"tsd-kind-class tsd-parent-kind-external-module tsd-has-type-parameter","parent":"\"core\""},{"id":798,"kind":1024,"name":"id","url":"classes/_core_.auth.html#id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Auth"},{"id":799,"kind":1024,"name":"group_id","url":"classes/_core_.auth.html#group_id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Auth"},{"id":800,"kind":1024,"name":"auth","url":"classes/_core_.auth.html#auth","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Auth"},{"id":801,"kind":1024,"name":"module","url":"classes/_core_.auth.html#module","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Auth"},{"id":802,"kind":2048,"name":"toJSON","url":"classes/_core_.auth.html#tojson","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"core\".Auth"},{"id":803,"kind":1024,"name":"tableName","url":"classes/_core_.auth.html#tablename","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":804,"kind":1024,"name":"primaryKeyAttribute","url":"classes/_core_.auth.html#primarykeyattribute","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":805,"kind":1024,"name":"associations","url":"classes/_core_.auth.html#associations","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":806,"kind":65536,"name":"__type","url":"classes/_core_.auth.html#associations.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".Auth.associations"},{"id":807,"kind":1024,"name":"options","url":"classes/_core_.auth.html#options","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":808,"kind":1024,"name":"rawAttributes","url":"classes/_core_.auth.html#rawattributes","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":809,"kind":65536,"name":"__type","url":"classes/_core_.auth.html#rawattributes.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".Auth.rawAttributes"},{"id":810,"kind":1024,"name":"sequelize","url":"classes/_core_.auth.html#sequelize-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":811,"kind":2048,"name":"init","url":"classes/_core_.auth.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":812,"kind":2048,"name":"removeAttribute","url":"classes/_core_.auth.html#removeattribute","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":813,"kind":2048,"name":"sync","url":"classes/_core_.auth.html#sync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":814,"kind":2048,"name":"drop","url":"classes/_core_.auth.html#drop","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":815,"kind":2048,"name":"schema","url":"classes/_core_.auth.html#schema","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":816,"kind":2048,"name":"getTableName","url":"classes/_core_.auth.html#gettablename","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":817,"kind":2048,"name":"scope","url":"classes/_core_.auth.html#scope","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":818,"kind":2048,"name":"addScope","url":"classes/_core_.auth.html#addscope","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":819,"kind":2048,"name":"findAll","url":"classes/_core_.auth.html#findall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":820,"kind":2048,"name":"findByPk","url":"classes/_core_.auth.html#findbypk","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":821,"kind":2048,"name":"findOne","url":"classes/_core_.auth.html#findone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":822,"kind":2048,"name":"aggregate","url":"classes/_core_.auth.html#aggregate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":823,"kind":2048,"name":"count","url":"classes/_core_.auth.html#count","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":824,"kind":2048,"name":"findAndCountAll","url":"classes/_core_.auth.html#findandcountall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":825,"kind":2048,"name":"max","url":"classes/_core_.auth.html#max","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":826,"kind":2048,"name":"min","url":"classes/_core_.auth.html#min","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":827,"kind":2048,"name":"sum","url":"classes/_core_.auth.html#sum","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":828,"kind":2048,"name":"build","url":"classes/_core_.auth.html#build","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":829,"kind":2048,"name":"bulkBuild","url":"classes/_core_.auth.html#bulkbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":830,"kind":2048,"name":"create","url":"classes/_core_.auth.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":831,"kind":2048,"name":"findOrBuild","url":"classes/_core_.auth.html#findorbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":832,"kind":2048,"name":"findOrCreate","url":"classes/_core_.auth.html#findorcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":833,"kind":2048,"name":"upsert","url":"classes/_core_.auth.html#upsert","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":834,"kind":2048,"name":"bulkCreate","url":"classes/_core_.auth.html#bulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":835,"kind":2048,"name":"truncate","url":"classes/_core_.auth.html#truncate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":836,"kind":2048,"name":"destroy","url":"classes/_core_.auth.html#destroy-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":837,"kind":2048,"name":"restore","url":"classes/_core_.auth.html#restore-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":838,"kind":2048,"name":"update","url":"classes/_core_.auth.html#update-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":839,"kind":2048,"name":"increment","url":"classes/_core_.auth.html#increment-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":840,"kind":2048,"name":"describe","url":"classes/_core_.auth.html#describe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":841,"kind":2048,"name":"unscoped","url":"classes/_core_.auth.html#unscoped","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":842,"kind":2048,"name":"beforeValidate","url":"classes/_core_.auth.html#beforevalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":843,"kind":2048,"name":"afterValidate","url":"classes/_core_.auth.html#aftervalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":844,"kind":2048,"name":"beforeCreate","url":"classes/_core_.auth.html#beforecreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":845,"kind":2048,"name":"afterCreate","url":"classes/_core_.auth.html#aftercreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":846,"kind":2048,"name":"beforeDestroy","url":"classes/_core_.auth.html#beforedestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":847,"kind":2048,"name":"afterDestroy","url":"classes/_core_.auth.html#afterdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":848,"kind":2048,"name":"beforeUpdate","url":"classes/_core_.auth.html#beforeupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":849,"kind":2048,"name":"afterUpdate","url":"classes/_core_.auth.html#afterupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":850,"kind":2048,"name":"beforeBulkCreate","url":"classes/_core_.auth.html#beforebulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":851,"kind":2048,"name":"afterBulkCreate","url":"classes/_core_.auth.html#afterbulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":852,"kind":2048,"name":"beforeBulkDestroy","url":"classes/_core_.auth.html#beforebulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":853,"kind":2048,"name":"afterBulkDestroy","url":"classes/_core_.auth.html#afterbulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":854,"kind":2048,"name":"beforeBulkUpdate","url":"classes/_core_.auth.html#beforebulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":855,"kind":2048,"name":"afterBulkUpdate","url":"classes/_core_.auth.html#afterbulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":856,"kind":2048,"name":"beforeFind","url":"classes/_core_.auth.html#beforefind","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":857,"kind":2048,"name":"beforeCount","url":"classes/_core_.auth.html#beforecount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":858,"kind":2048,"name":"beforeFindAfterExpandIncludeAll","url":"classes/_core_.auth.html#beforefindafterexpandincludeall","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":859,"kind":2048,"name":"beforeFindAfterOptions","url":"classes/_core_.auth.html#beforefindafteroptions","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":860,"kind":2048,"name":"afterFind","url":"classes/_core_.auth.html#afterfind","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":861,"kind":2048,"name":"beforeBulkSync","url":"classes/_core_.auth.html#beforebulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":862,"kind":2048,"name":"afterBulkSync","url":"classes/_core_.auth.html#afterbulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":863,"kind":2048,"name":"beforeSync","url":"classes/_core_.auth.html#beforesync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":864,"kind":2048,"name":"afterSync","url":"classes/_core_.auth.html#aftersync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":865,"kind":2048,"name":"hasOne","url":"classes/_core_.auth.html#hasone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":866,"kind":2048,"name":"belongsTo","url":"classes/_core_.auth.html#belongsto","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":867,"kind":2048,"name":"hasMany","url":"classes/_core_.auth.html#hasmany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":868,"kind":2048,"name":"belongsToMany","url":"classes/_core_.auth.html#belongstomany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":869,"kind":1024,"name":"isNewRecord","url":"classes/_core_.auth.html#isnewrecord","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":870,"kind":1024,"name":"sequelize","url":"classes/_core_.auth.html#sequelize","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":871,"kind":512,"name":"constructor","url":"classes/_core_.auth.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":872,"kind":2048,"name":"where","url":"classes/_core_.auth.html#where","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":873,"kind":2048,"name":"getDataValue","url":"classes/_core_.auth.html#getdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":874,"kind":2048,"name":"setDataValue","url":"classes/_core_.auth.html#setdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":875,"kind":2048,"name":"get","url":"classes/_core_.auth.html#get","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":876,"kind":2048,"name":"set","url":"classes/_core_.auth.html#set","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":877,"kind":2048,"name":"setAttributes","url":"classes/_core_.auth.html#setattributes","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":878,"kind":2048,"name":"changed","url":"classes/_core_.auth.html#changed","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":879,"kind":2048,"name":"previous","url":"classes/_core_.auth.html#previous","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":880,"kind":2048,"name":"save","url":"classes/_core_.auth.html#save","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":881,"kind":2048,"name":"reload","url":"classes/_core_.auth.html#reload","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":882,"kind":2048,"name":"validate","url":"classes/_core_.auth.html#validate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":883,"kind":2048,"name":"update","url":"classes/_core_.auth.html#update","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":884,"kind":2048,"name":"destroy","url":"classes/_core_.auth.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":885,"kind":2048,"name":"restore","url":"classes/_core_.auth.html#restore","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":886,"kind":2048,"name":"increment","url":"classes/_core_.auth.html#increment","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":887,"kind":2048,"name":"decrement","url":"classes/_core_.auth.html#decrement","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":888,"kind":2048,"name":"equals","url":"classes/_core_.auth.html#equals","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":889,"kind":2048,"name":"equalsOneOf","url":"classes/_core_.auth.html#equalsoneof","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":890,"kind":2048,"name":"addHook","url":"classes/_core_.auth.html#addhook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":891,"kind":2048,"name":"removeHook","url":"classes/_core_.auth.html#removehook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":892,"kind":2048,"name":"hasHook","url":"classes/_core_.auth.html#hashook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":893,"kind":2048,"name":"hasHooks","url":"classes/_core_.auth.html#hashooks-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":894,"kind":2048,"name":"addHook","url":"classes/_core_.auth.html#addhook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":895,"kind":2048,"name":"removeHook","url":"classes/_core_.auth.html#removehook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":896,"kind":2048,"name":"hasHook","url":"classes/_core_.auth.html#hashook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":897,"kind":2048,"name":"hasHooks","url":"classes/_core_.auth.html#hashooks","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":898,"kind":256,"name":"LogArgs","url":"interfaces/_core_.logargs.html","classes":"tsd-kind-interface tsd-parent-kind-external-module","parent":"\"core\""},{"id":899,"kind":1024,"name":"message","url":"interfaces/_core_.logargs.html#message","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".LogArgs"},{"id":900,"kind":1024,"name":"user_id","url":"interfaces/_core_.logargs.html#user_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".LogArgs"},{"id":901,"kind":1024,"name":"user_name","url":"interfaces/_core_.logargs.html#user_name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".LogArgs"},{"id":902,"kind":1024,"name":"status_code","url":"interfaces/_core_.logargs.html#status_code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".LogArgs"},{"id":903,"kind":1024,"name":"method","url":"interfaces/_core_.logargs.html#method","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".LogArgs"},{"id":904,"kind":1024,"name":"path","url":"interfaces/_core_.logargs.html#path","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".LogArgs"},{"id":905,"kind":1024,"name":"authority","url":"interfaces/_core_.logargs.html#authority","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".LogArgs"},{"id":906,"kind":128,"name":"Log","url":"classes/_core_.log.html","classes":"tsd-kind-class tsd-parent-kind-external-module tsd-has-type-parameter","parent":"\"core\""},{"id":907,"kind":1024,"name":"id","url":"classes/_core_.log.html#id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":908,"kind":1024,"name":"message","url":"classes/_core_.log.html#message","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":909,"kind":1024,"name":"user_id","url":"classes/_core_.log.html#user_id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":910,"kind":1024,"name":"user_name","url":"classes/_core_.log.html#user_name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":911,"kind":1024,"name":"status_code","url":"classes/_core_.log.html#status_code","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":912,"kind":1024,"name":"method","url":"classes/_core_.log.html#method","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":913,"kind":1024,"name":"path","url":"classes/_core_.log.html#path","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":914,"kind":1024,"name":"authority","url":"classes/_core_.log.html#authority","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":915,"kind":1024,"name":"time","url":"classes/_core_.log.html#time","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":916,"kind":2048,"name":"createLog","url":"classes/_core_.log.html#createlog","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"\"core\".Log"},{"id":917,"kind":2048,"name":"toJSON","url":"classes/_core_.log.html#tojson","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"core\".Log"},{"id":918,"kind":1024,"name":"tableName","url":"classes/_core_.log.html#tablename","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":919,"kind":1024,"name":"primaryKeyAttribute","url":"classes/_core_.log.html#primarykeyattribute","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":920,"kind":1024,"name":"associations","url":"classes/_core_.log.html#associations","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":921,"kind":65536,"name":"__type","url":"classes/_core_.log.html#associations.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".Log.associations"},{"id":922,"kind":1024,"name":"options","url":"classes/_core_.log.html#options","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":923,"kind":1024,"name":"rawAttributes","url":"classes/_core_.log.html#rawattributes","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":924,"kind":65536,"name":"__type","url":"classes/_core_.log.html#rawattributes.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".Log.rawAttributes"},{"id":925,"kind":1024,"name":"sequelize","url":"classes/_core_.log.html#sequelize-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":926,"kind":2048,"name":"init","url":"classes/_core_.log.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":927,"kind":2048,"name":"removeAttribute","url":"classes/_core_.log.html#removeattribute","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":928,"kind":2048,"name":"sync","url":"classes/_core_.log.html#sync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":929,"kind":2048,"name":"drop","url":"classes/_core_.log.html#drop","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":930,"kind":2048,"name":"schema","url":"classes/_core_.log.html#schema","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":931,"kind":2048,"name":"getTableName","url":"classes/_core_.log.html#gettablename","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":932,"kind":2048,"name":"scope","url":"classes/_core_.log.html#scope","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":933,"kind":2048,"name":"addScope","url":"classes/_core_.log.html#addscope","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":934,"kind":2048,"name":"findAll","url":"classes/_core_.log.html#findall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":935,"kind":2048,"name":"findByPk","url":"classes/_core_.log.html#findbypk","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":936,"kind":2048,"name":"findOne","url":"classes/_core_.log.html#findone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":937,"kind":2048,"name":"aggregate","url":"classes/_core_.log.html#aggregate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":938,"kind":2048,"name":"count","url":"classes/_core_.log.html#count","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":939,"kind":2048,"name":"findAndCountAll","url":"classes/_core_.log.html#findandcountall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":940,"kind":2048,"name":"max","url":"classes/_core_.log.html#max","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":941,"kind":2048,"name":"min","url":"classes/_core_.log.html#min","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":942,"kind":2048,"name":"sum","url":"classes/_core_.log.html#sum","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":943,"kind":2048,"name":"build","url":"classes/_core_.log.html#build","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":944,"kind":2048,"name":"bulkBuild","url":"classes/_core_.log.html#bulkbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":945,"kind":2048,"name":"create","url":"classes/_core_.log.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":946,"kind":2048,"name":"findOrBuild","url":"classes/_core_.log.html#findorbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":947,"kind":2048,"name":"findOrCreate","url":"classes/_core_.log.html#findorcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":948,"kind":2048,"name":"upsert","url":"classes/_core_.log.html#upsert","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":949,"kind":2048,"name":"bulkCreate","url":"classes/_core_.log.html#bulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":950,"kind":2048,"name":"truncate","url":"classes/_core_.log.html#truncate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":951,"kind":2048,"name":"destroy","url":"classes/_core_.log.html#destroy-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":952,"kind":2048,"name":"restore","url":"classes/_core_.log.html#restore-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":953,"kind":2048,"name":"update","url":"classes/_core_.log.html#update-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":954,"kind":2048,"name":"increment","url":"classes/_core_.log.html#increment-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":955,"kind":2048,"name":"describe","url":"classes/_core_.log.html#describe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":956,"kind":2048,"name":"unscoped","url":"classes/_core_.log.html#unscoped","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":957,"kind":2048,"name":"beforeValidate","url":"classes/_core_.log.html#beforevalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":958,"kind":2048,"name":"afterValidate","url":"classes/_core_.log.html#aftervalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":959,"kind":2048,"name":"beforeCreate","url":"classes/_core_.log.html#beforecreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":960,"kind":2048,"name":"afterCreate","url":"classes/_core_.log.html#aftercreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":961,"kind":2048,"name":"beforeDestroy","url":"classes/_core_.log.html#beforedestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":962,"kind":2048,"name":"afterDestroy","url":"classes/_core_.log.html#afterdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":963,"kind":2048,"name":"beforeUpdate","url":"classes/_core_.log.html#beforeupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":964,"kind":2048,"name":"afterUpdate","url":"classes/_core_.log.html#afterupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":965,"kind":2048,"name":"beforeBulkCreate","url":"classes/_core_.log.html#beforebulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":966,"kind":2048,"name":"afterBulkCreate","url":"classes/_core_.log.html#afterbulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":967,"kind":2048,"name":"beforeBulkDestroy","url":"classes/_core_.log.html#beforebulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":968,"kind":2048,"name":"afterBulkDestroy","url":"classes/_core_.log.html#afterbulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":969,"kind":2048,"name":"beforeBulkUpdate","url":"classes/_core_.log.html#beforebulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":970,"kind":2048,"name":"afterBulkUpdate","url":"classes/_core_.log.html#afterbulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":971,"kind":2048,"name":"beforeFind","url":"classes/_core_.log.html#beforefind","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":972,"kind":2048,"name":"beforeCount","url":"classes/_core_.log.html#beforecount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":973,"kind":2048,"name":"beforeFindAfterExpandIncludeAll","url":"classes/_core_.log.html#beforefindafterexpandincludeall","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":974,"kind":2048,"name":"beforeFindAfterOptions","url":"classes/_core_.log.html#beforefindafteroptions","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":975,"kind":2048,"name":"afterFind","url":"classes/_core_.log.html#afterfind","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":976,"kind":2048,"name":"beforeBulkSync","url":"classes/_core_.log.html#beforebulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":977,"kind":2048,"name":"afterBulkSync","url":"classes/_core_.log.html#afterbulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":978,"kind":2048,"name":"beforeSync","url":"classes/_core_.log.html#beforesync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":979,"kind":2048,"name":"afterSync","url":"classes/_core_.log.html#aftersync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":980,"kind":2048,"name":"hasOne","url":"classes/_core_.log.html#hasone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":981,"kind":2048,"name":"belongsTo","url":"classes/_core_.log.html#belongsto","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":982,"kind":2048,"name":"hasMany","url":"classes/_core_.log.html#hasmany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":983,"kind":2048,"name":"belongsToMany","url":"classes/_core_.log.html#belongstomany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":984,"kind":1024,"name":"isNewRecord","url":"classes/_core_.log.html#isnewrecord","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":985,"kind":1024,"name":"sequelize","url":"classes/_core_.log.html#sequelize","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":986,"kind":512,"name":"constructor","url":"classes/_core_.log.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":987,"kind":2048,"name":"where","url":"classes/_core_.log.html#where","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":988,"kind":2048,"name":"getDataValue","url":"classes/_core_.log.html#getdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":989,"kind":2048,"name":"setDataValue","url":"classes/_core_.log.html#setdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":990,"kind":2048,"name":"get","url":"classes/_core_.log.html#get","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":991,"kind":2048,"name":"set","url":"classes/_core_.log.html#set","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":992,"kind":2048,"name":"setAttributes","url":"classes/_core_.log.html#setattributes","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":993,"kind":2048,"name":"changed","url":"classes/_core_.log.html#changed","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":994,"kind":2048,"name":"previous","url":"classes/_core_.log.html#previous","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":995,"kind":2048,"name":"save","url":"classes/_core_.log.html#save","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":996,"kind":2048,"name":"reload","url":"classes/_core_.log.html#reload","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":997,"kind":2048,"name":"validate","url":"classes/_core_.log.html#validate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":998,"kind":2048,"name":"update","url":"classes/_core_.log.html#update","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":999,"kind":2048,"name":"destroy","url":"classes/_core_.log.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1000,"kind":2048,"name":"restore","url":"classes/_core_.log.html#restore","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1001,"kind":2048,"name":"increment","url":"classes/_core_.log.html#increment","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1002,"kind":2048,"name":"decrement","url":"classes/_core_.log.html#decrement","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1003,"kind":2048,"name":"equals","url":"classes/_core_.log.html#equals","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1004,"kind":2048,"name":"equalsOneOf","url":"classes/_core_.log.html#equalsoneof","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1005,"kind":2048,"name":"addHook","url":"classes/_core_.log.html#addhook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1006,"kind":2048,"name":"removeHook","url":"classes/_core_.log.html#removehook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1007,"kind":2048,"name":"hasHook","url":"classes/_core_.log.html#hashook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1008,"kind":2048,"name":"hasHooks","url":"classes/_core_.log.html#hashooks-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1009,"kind":2048,"name":"addHook","url":"classes/_core_.log.html#addhook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1010,"kind":2048,"name":"removeHook","url":"classes/_core_.log.html#removehook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1011,"kind":2048,"name":"hasHook","url":"classes/_core_.log.html#hashook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1012,"kind":2048,"name":"hasHooks","url":"classes/_core_.log.html#hashooks","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1013,"kind":256,"name":"FileArgs","url":"interfaces/_core_.fileargs.html","classes":"tsd-kind-interface tsd-parent-kind-external-module","parent":"\"core\""},{"id":1014,"kind":1024,"name":"path","url":"interfaces/_core_.fileargs.html#path","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".FileArgs"},{"id":1015,"kind":1024,"name":"type","url":"interfaces/_core_.fileargs.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".FileArgs"},{"id":1016,"kind":1024,"name":"name","url":"interfaces/_core_.fileargs.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".FileArgs"},{"id":1017,"kind":1024,"name":"extension","url":"interfaces/_core_.fileargs.html#extension","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".FileArgs"},{"id":1018,"kind":1024,"name":"size","url":"interfaces/_core_.fileargs.html#size","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".FileArgs"},{"id":1019,"kind":128,"name":"File","url":"classes/_core_.file.html","classes":"tsd-kind-class tsd-parent-kind-external-module tsd-has-type-parameter","parent":"\"core\""},{"id":1020,"kind":1024,"name":"id","url":"classes/_core_.file.html#id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".File"},{"id":1021,"kind":1024,"name":"path","url":"classes/_core_.file.html#path","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".File"},{"id":1022,"kind":1024,"name":"type","url":"classes/_core_.file.html#type","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".File"},{"id":1023,"kind":1024,"name":"name","url":"classes/_core_.file.html#name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".File"},{"id":1024,"kind":1024,"name":"extension","url":"classes/_core_.file.html#extension","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".File"},{"id":1025,"kind":1024,"name":"size","url":"classes/_core_.file.html#size","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".File"},{"id":1026,"kind":2048,"name":"createRecord","url":"classes/_core_.file.html#createrecord","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"\"core\".File"},{"id":1027,"kind":2048,"name":"toJSON","url":"classes/_core_.file.html#tojson","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"core\".File"},{"id":1028,"kind":1024,"name":"tableName","url":"classes/_core_.file.html#tablename","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1029,"kind":1024,"name":"primaryKeyAttribute","url":"classes/_core_.file.html#primarykeyattribute","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1030,"kind":1024,"name":"associations","url":"classes/_core_.file.html#associations","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1031,"kind":65536,"name":"__type","url":"classes/_core_.file.html#associations.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".File.associations"},{"id":1032,"kind":1024,"name":"options","url":"classes/_core_.file.html#options","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1033,"kind":1024,"name":"rawAttributes","url":"classes/_core_.file.html#rawattributes","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1034,"kind":65536,"name":"__type","url":"classes/_core_.file.html#rawattributes.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".File.rawAttributes"},{"id":1035,"kind":1024,"name":"sequelize","url":"classes/_core_.file.html#sequelize-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1036,"kind":2048,"name":"init","url":"classes/_core_.file.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1037,"kind":2048,"name":"removeAttribute","url":"classes/_core_.file.html#removeattribute","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1038,"kind":2048,"name":"sync","url":"classes/_core_.file.html#sync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1039,"kind":2048,"name":"drop","url":"classes/_core_.file.html#drop","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1040,"kind":2048,"name":"schema","url":"classes/_core_.file.html#schema","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1041,"kind":2048,"name":"getTableName","url":"classes/_core_.file.html#gettablename","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1042,"kind":2048,"name":"scope","url":"classes/_core_.file.html#scope","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1043,"kind":2048,"name":"addScope","url":"classes/_core_.file.html#addscope","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1044,"kind":2048,"name":"findAll","url":"classes/_core_.file.html#findall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1045,"kind":2048,"name":"findByPk","url":"classes/_core_.file.html#findbypk","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1046,"kind":2048,"name":"findOne","url":"classes/_core_.file.html#findone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1047,"kind":2048,"name":"aggregate","url":"classes/_core_.file.html#aggregate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1048,"kind":2048,"name":"count","url":"classes/_core_.file.html#count","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1049,"kind":2048,"name":"findAndCountAll","url":"classes/_core_.file.html#findandcountall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1050,"kind":2048,"name":"max","url":"classes/_core_.file.html#max","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1051,"kind":2048,"name":"min","url":"classes/_core_.file.html#min","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1052,"kind":2048,"name":"sum","url":"classes/_core_.file.html#sum","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1053,"kind":2048,"name":"build","url":"classes/_core_.file.html#build","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1054,"kind":2048,"name":"bulkBuild","url":"classes/_core_.file.html#bulkbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1055,"kind":2048,"name":"create","url":"classes/_core_.file.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1056,"kind":2048,"name":"findOrBuild","url":"classes/_core_.file.html#findorbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1057,"kind":2048,"name":"findOrCreate","url":"classes/_core_.file.html#findorcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1058,"kind":2048,"name":"upsert","url":"classes/_core_.file.html#upsert","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1059,"kind":2048,"name":"bulkCreate","url":"classes/_core_.file.html#bulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1060,"kind":2048,"name":"truncate","url":"classes/_core_.file.html#truncate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1061,"kind":2048,"name":"destroy","url":"classes/_core_.file.html#destroy-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1062,"kind":2048,"name":"restore","url":"classes/_core_.file.html#restore-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1063,"kind":2048,"name":"update","url":"classes/_core_.file.html#update-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1064,"kind":2048,"name":"increment","url":"classes/_core_.file.html#increment-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1065,"kind":2048,"name":"describe","url":"classes/_core_.file.html#describe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1066,"kind":2048,"name":"unscoped","url":"classes/_core_.file.html#unscoped","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1067,"kind":2048,"name":"beforeValidate","url":"classes/_core_.file.html#beforevalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1068,"kind":2048,"name":"afterValidate","url":"classes/_core_.file.html#aftervalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1069,"kind":2048,"name":"beforeCreate","url":"classes/_core_.file.html#beforecreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1070,"kind":2048,"name":"afterCreate","url":"classes/_core_.file.html#aftercreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1071,"kind":2048,"name":"beforeDestroy","url":"classes/_core_.file.html#beforedestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1072,"kind":2048,"name":"afterDestroy","url":"classes/_core_.file.html#afterdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1073,"kind":2048,"name":"beforeUpdate","url":"classes/_core_.file.html#beforeupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1074,"kind":2048,"name":"afterUpdate","url":"classes/_core_.file.html#afterupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1075,"kind":2048,"name":"beforeBulkCreate","url":"classes/_core_.file.html#beforebulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1076,"kind":2048,"name":"afterBulkCreate","url":"classes/_core_.file.html#afterbulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1077,"kind":2048,"name":"beforeBulkDestroy","url":"classes/_core_.file.html#beforebulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1078,"kind":2048,"name":"afterBulkDestroy","url":"classes/_core_.file.html#afterbulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1079,"kind":2048,"name":"beforeBulkUpdate","url":"classes/_core_.file.html#beforebulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1080,"kind":2048,"name":"afterBulkUpdate","url":"classes/_core_.file.html#afterbulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1081,"kind":2048,"name":"beforeFind","url":"classes/_core_.file.html#beforefind","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1082,"kind":2048,"name":"beforeCount","url":"classes/_core_.file.html#beforecount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1083,"kind":2048,"name":"beforeFindAfterExpandIncludeAll","url":"classes/_core_.file.html#beforefindafterexpandincludeall","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1084,"kind":2048,"name":"beforeFindAfterOptions","url":"classes/_core_.file.html#beforefindafteroptions","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1085,"kind":2048,"name":"afterFind","url":"classes/_core_.file.html#afterfind","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1086,"kind":2048,"name":"beforeBulkSync","url":"classes/_core_.file.html#beforebulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1087,"kind":2048,"name":"afterBulkSync","url":"classes/_core_.file.html#afterbulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1088,"kind":2048,"name":"beforeSync","url":"classes/_core_.file.html#beforesync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1089,"kind":2048,"name":"afterSync","url":"classes/_core_.file.html#aftersync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1090,"kind":2048,"name":"hasOne","url":"classes/_core_.file.html#hasone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1091,"kind":2048,"name":"belongsTo","url":"classes/_core_.file.html#belongsto","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1092,"kind":2048,"name":"hasMany","url":"classes/_core_.file.html#hasmany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1093,"kind":2048,"name":"belongsToMany","url":"classes/_core_.file.html#belongstomany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1094,"kind":1024,"name":"isNewRecord","url":"classes/_core_.file.html#isnewrecord","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1095,"kind":1024,"name":"sequelize","url":"classes/_core_.file.html#sequelize","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1096,"kind":512,"name":"constructor","url":"classes/_core_.file.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1097,"kind":2048,"name":"where","url":"classes/_core_.file.html#where","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1098,"kind":2048,"name":"getDataValue","url":"classes/_core_.file.html#getdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1099,"kind":2048,"name":"setDataValue","url":"classes/_core_.file.html#setdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1100,"kind":2048,"name":"get","url":"classes/_core_.file.html#get","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1101,"kind":2048,"name":"set","url":"classes/_core_.file.html#set","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1102,"kind":2048,"name":"setAttributes","url":"classes/_core_.file.html#setattributes","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1103,"kind":2048,"name":"changed","url":"classes/_core_.file.html#changed","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1104,"kind":2048,"name":"previous","url":"classes/_core_.file.html#previous","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1105,"kind":2048,"name":"save","url":"classes/_core_.file.html#save","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1106,"kind":2048,"name":"reload","url":"classes/_core_.file.html#reload","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1107,"kind":2048,"name":"validate","url":"classes/_core_.file.html#validate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1108,"kind":2048,"name":"update","url":"classes/_core_.file.html#update","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1109,"kind":2048,"name":"destroy","url":"classes/_core_.file.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1110,"kind":2048,"name":"restore","url":"classes/_core_.file.html#restore","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1111,"kind":2048,"name":"increment","url":"classes/_core_.file.html#increment","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1112,"kind":2048,"name":"decrement","url":"classes/_core_.file.html#decrement","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1113,"kind":2048,"name":"equals","url":"classes/_core_.file.html#equals","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1114,"kind":2048,"name":"equalsOneOf","url":"classes/_core_.file.html#equalsoneof","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1115,"kind":2048,"name":"addHook","url":"classes/_core_.file.html#addhook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1116,"kind":2048,"name":"removeHook","url":"classes/_core_.file.html#removehook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1117,"kind":2048,"name":"hasHook","url":"classes/_core_.file.html#hashook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1118,"kind":2048,"name":"hasHooks","url":"classes/_core_.file.html#hashooks-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1119,"kind":2048,"name":"addHook","url":"classes/_core_.file.html#addhook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1120,"kind":2048,"name":"removeHook","url":"classes/_core_.file.html#removehook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1121,"kind":2048,"name":"hasHook","url":"classes/_core_.file.html#hashook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1122,"kind":2048,"name":"hasHooks","url":"classes/_core_.file.html#hashooks","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1123,"kind":32,"name":"__version__","url":"modules/_core_.html#__version__","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"core\""},{"id":1124,"kind":32,"name":"routeMetaInfo","url":"modules/_core_.html#routemetainfo","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"core\""},{"id":1125,"kind":32,"name":"disableLoading","url":"modules/_core_.html#disableloading","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"core\""},{"id":1126,"kind":1,"name":"\"factory\"","url":"modules/_factory_.html","classes":"tsd-kind-external-module"},{"id":1127,"kind":64,"name":"modelExtend","url":"modules/_factory_.html#modelextend","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"factory\""},{"id":1128,"kind":1,"name":"\"file\"","url":"modules/_file_.html","classes":"tsd-kind-external-module"},{"id":1129,"kind":128,"name":"Uploader","url":"classes/_file_.uploader.html","classes":"tsd-kind-class tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"file\""},{"id":1130,"kind":1024,"name":"storeDir","url":"classes/_file_.uploader.html#storedir","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private tsd-is-not-exported","parent":"\"file\".Uploader"},{"id":1131,"kind":512,"name":"constructor","url":"classes/_file_.uploader.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-not-exported","parent":"\"file\".Uploader"},{"id":1132,"kind":2048,"name":"upload","url":"classes/_file_.uploader.html#upload","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-not-exported","parent":"\"file\".Uploader"},{"id":1133,"kind":2048,"name":"getStorePath","url":"classes/_file_.uploader.html#getstorepath","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-not-exported","parent":"\"file\".Uploader"},{"id":1134,"kind":2048,"name":"generateName","url":"classes/_file_.uploader.html#generatename","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-not-exported","parent":"\"file\".Uploader"},{"id":1135,"kind":2048,"name":"getExactStoreDir","url":"classes/_file_.uploader.html#getexactstoredir","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-not-exported","parent":"\"file\".Uploader"},{"id":1136,"kind":1,"name":"\"lin-validator\"","url":"modules/_lin_validator_.html","classes":"tsd-kind-external-module"},{"id":1137,"kind":128,"name":"LinValidator","url":"classes/_lin_validator_.linvalidator.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"lin-validator\""},{"id":1138,"kind":1024,"name":"data","url":"classes/_lin_validator_.linvalidator.html#data","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".LinValidator"},{"id":1139,"kind":1024,"name":"parsed","url":"classes/_lin_validator_.linvalidator.html#parsed","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".LinValidator"},{"id":1140,"kind":1024,"name":"errors","url":"classes/_lin_validator_.linvalidator.html#errors","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".LinValidator"},{"id":1141,"kind":1024,"name":"alias","url":"classes/_lin_validator_.linvalidator.html#alias","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".LinValidator"},{"id":1142,"kind":2048,"name":"validate","url":"classes/_lin_validator_.linvalidator.html#validate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-validator\".LinValidator"},{"id":1143,"kind":2048,"name":"replace","url":"classes/_lin_validator_.linvalidator.html#replace","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"lin-validator\".LinValidator"},{"id":1144,"kind":2048,"name":"isOptional","url":"classes/_lin_validator_.linvalidator.html#isoptional","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"lin-validator\".LinValidator"},{"id":1145,"kind":2048,"name":"checkRules","url":"classes/_lin_validator_.linvalidator.html#checkrules","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"lin-validator\".LinValidator"},{"id":1146,"kind":2048,"name":"getValidateFuncKey","url":"classes/_lin_validator_.linvalidator.html#getvalidatefunckey","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"lin-validator\".LinValidator"},{"id":1147,"kind":2048,"name":"get","url":"classes/_lin_validator_.linvalidator.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-validator\".LinValidator"},{"id":1148,"kind":2048,"name":"findInData","url":"classes/_lin_validator_.linvalidator.html#findindata","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"lin-validator\".LinValidator"},{"id":1149,"kind":128,"name":"Rule","url":"classes/_lin_validator_.rule.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"lin-validator\""},{"id":1150,"kind":1024,"name":"options","url":"classes/_lin_validator_.rule.html#options","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1151,"kind":1024,"name":"message","url":"classes/_lin_validator_.rule.html#message","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1152,"kind":1024,"name":"validateFunction","url":"classes/_lin_validator_.rule.html#validatefunction","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1153,"kind":1024,"name":"optional","url":"classes/_lin_validator_.rule.html#optional","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1154,"kind":1024,"name":"parsedValue","url":"classes/_lin_validator_.rule.html#parsedvalue","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1155,"kind":1024,"name":"rawValue","url":"classes/_lin_validator_.rule.html#rawvalue","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1156,"kind":1024,"name":"defaultValue","url":"classes/_lin_validator_.rule.html#defaultvalue","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1157,"kind":512,"name":"constructor","url":"classes/_lin_validator_.rule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1158,"kind":2048,"name":"validate","url":"classes/_lin_validator_.rule.html#validate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1159,"kind":1,"name":"\"log\"","url":"modules/_log_.html","classes":"tsd-kind-external-module"},{"id":1160,"kind":32,"name":"REG_XP","url":"modules/_log_.html#reg_xp","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"log\""},{"id":1161,"kind":64,"name":"logger","url":"modules/_log_.html#logger","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"log\""},{"id":1162,"kind":64,"name":"writeLog","url":"modules/_log_.html#writelog","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"log\""},{"id":1163,"kind":64,"name":"parseTemplate","url":"modules/_log_.html#parsetemplate","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"log\""},{"id":1164,"kind":1,"name":"\"middleware\"","url":"modules/_middleware_.html","classes":"tsd-kind-external-module"},{"id":1165,"kind":64,"name":"error","url":"modules/_middleware_.html#error","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"middleware\""},{"id":1166,"kind":64,"name":"log","url":"modules/_middleware_.html#log","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"middleware\""},{"id":1167,"kind":1,"name":"\"mixin\"","url":"modules/_mixin_.html","classes":"tsd-kind-external-module"},{"id":1168,"kind":128,"name":"JsonMixin","url":"classes/_mixin_.jsonmixin.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"mixin\""},{"id":1169,"kind":1024,"name":"fields","url":"classes/_mixin_.jsonmixin.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"mixin\".JsonMixin"},{"id":1170,"kind":1,"name":"\"index\"","url":"modules/_index_.html","classes":"tsd-kind-external-module"},{"id":1171,"kind":1,"name":"\"sse\"","url":"modules/_sse_.html","classes":"tsd-kind-external-module"},{"id":1172,"kind":128,"name":"SSE","url":"classes/_sse_.sse.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"sse\""},{"id":1173,"kind":512,"name":"constructor","url":"classes/_sse_.sse.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"sse\".SSE"},{"id":1174,"kind":2048,"name":"_transform","url":"classes/_sse_.sse.html#_transform","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"sse\".SSE"},{"id":1175,"kind":2048,"name":"_flush","url":"classes/_sse_.sse.html#_flush","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1176,"kind":1024,"name":"writable","url":"classes/_sse_.sse.html#writable","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1177,"kind":1024,"name":"writableHighWaterMark","url":"classes/_sse_.sse.html#writablehighwatermark","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1178,"kind":1024,"name":"writableLength","url":"classes/_sse_.sse.html#writablelength","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1179,"kind":2048,"name":"_write","url":"classes/_sse_.sse.html#_write","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1180,"kind":2048,"name":"_writev","url":"classes/_sse_.sse.html#_writev","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1181,"kind":2048,"name":"_destroy","url":"classes/_sse_.sse.html#_destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1182,"kind":2048,"name":"_final","url":"classes/_sse_.sse.html#_final","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1183,"kind":2048,"name":"write","url":"classes/_sse_.sse.html#write","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1184,"kind":2048,"name":"setDefaultEncoding","url":"classes/_sse_.sse.html#setdefaultencoding","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1185,"kind":2048,"name":"end","url":"classes/_sse_.sse.html#end","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1186,"kind":2048,"name":"cork","url":"classes/_sse_.sse.html#cork","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1187,"kind":2048,"name":"uncork","url":"classes/_sse_.sse.html#uncork","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1188,"kind":1024,"name":"readable","url":"classes/_sse_.sse.html#readable","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1189,"kind":1024,"name":"readableHighWaterMark","url":"classes/_sse_.sse.html#readablehighwatermark","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1190,"kind":1024,"name":"readableLength","url":"classes/_sse_.sse.html#readablelength","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1191,"kind":2048,"name":"_read","url":"classes/_sse_.sse.html#_read","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1192,"kind":2048,"name":"read","url":"classes/_sse_.sse.html#read","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1193,"kind":2048,"name":"setEncoding","url":"classes/_sse_.sse.html#setencoding","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1194,"kind":2048,"name":"pause","url":"classes/_sse_.sse.html#pause","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1195,"kind":2048,"name":"resume","url":"classes/_sse_.sse.html#resume","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1196,"kind":2048,"name":"isPaused","url":"classes/_sse_.sse.html#ispaused","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1197,"kind":2048,"name":"unpipe","url":"classes/_sse_.sse.html#unpipe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1198,"kind":2048,"name":"unshift","url":"classes/_sse_.sse.html#unshift","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1199,"kind":2048,"name":"wrap","url":"classes/_sse_.sse.html#wrap","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1200,"kind":2048,"name":"push","url":"classes/_sse_.sse.html#push","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1201,"kind":2048,"name":"destroy","url":"classes/_sse_.sse.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1202,"kind":2048,"name":"addListener","url":"classes/_sse_.sse.html#addlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1203,"kind":2048,"name":"emit","url":"classes/_sse_.sse.html#emit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1204,"kind":2048,"name":"on","url":"classes/_sse_.sse.html#on","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1205,"kind":2048,"name":"once","url":"classes/_sse_.sse.html#once","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1206,"kind":2048,"name":"prependListener","url":"classes/_sse_.sse.html#prependlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1207,"kind":2048,"name":"prependOnceListener","url":"classes/_sse_.sse.html#prependoncelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1208,"kind":2048,"name":"removeListener","url":"classes/_sse_.sse.html#removelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1209,"kind":2048,"name":"__@asyncIterator","url":"classes/_sse_.sse.html#___asynciterator","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1210,"kind":2048,"name":"pipe","url":"classes/_sse_.sse.html#pipe","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1211,"kind":2048,"name":"listenerCount","url":"classes/_sse_.sse.html#listenercount-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"sse\".SSE"},{"id":1212,"kind":1024,"name":"defaultMaxListeners","url":"classes/_sse_.sse.html#defaultmaxlisteners","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"sse\".SSE"},{"id":1213,"kind":2048,"name":"off","url":"classes/_sse_.sse.html#off","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1214,"kind":2048,"name":"removeAllListeners","url":"classes/_sse_.sse.html#removealllisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1215,"kind":2048,"name":"setMaxListeners","url":"classes/_sse_.sse.html#setmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1216,"kind":2048,"name":"getMaxListeners","url":"classes/_sse_.sse.html#getmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1217,"kind":2048,"name":"listeners","url":"classes/_sse_.sse.html#listeners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1218,"kind":2048,"name":"rawListeners","url":"classes/_sse_.sse.html#rawlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1219,"kind":2048,"name":"eventNames","url":"classes/_sse_.sse.html#eventnames","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1220,"kind":2048,"name":"listenerCount","url":"classes/_sse_.sse.html#listenercount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1221,"kind":128,"name":"MessageBroker","url":"classes/_sse_.messagebroker.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"sse\""},{"id":1222,"kind":1024,"name":"messages","url":"classes/_sse_.messagebroker.html#messages","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1223,"kind":1024,"name":"retry","url":"classes/_sse_.messagebroker.html#retry","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"sse\".MessageBroker"},{"id":1224,"kind":1024,"name":"buffer","url":"classes/_sse_.messagebroker.html#buffer","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"sse\".MessageBroker"},{"id":1225,"kind":1024,"name":"defaultId","url":"classes/_sse_.messagebroker.html#defaultid","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"sse\".MessageBroker"},{"id":1226,"kind":512,"name":"constructor","url":"classes/_sse_.messagebroker.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1227,"kind":2048,"name":"setRetry","url":"classes/_sse_.messagebroker.html#setretry","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1228,"kind":2048,"name":"setEventId","url":"classes/_sse_.messagebroker.html#seteventid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1229,"kind":2048,"name":"resetEventId","url":"classes/_sse_.messagebroker.html#reseteventid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1230,"kind":2048,"name":"increaseId","url":"classes/_sse_.messagebroker.html#increaseid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1231,"kind":2048,"name":"addMessage","url":"classes/_sse_.messagebroker.html#addmessage","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1232,"kind":2048,"name":"flushBuffer","url":"classes/_sse_.messagebroker.html#flushbuffer","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1233,"kind":2048,"name":"joinBuffer","url":"classes/_sse_.messagebroker.html#joinbuffer","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1234,"kind":2048,"name":"pop","url":"classes/_sse_.messagebroker.html#pop","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1235,"kind":2048,"name":"heartbeat","url":"classes/_sse_.messagebroker.html#heartbeat","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1236,"kind":2048,"name":"existMessage","url":"classes/_sse_.messagebroker.html#existmessage","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1237,"kind":128,"name":"Subscription","url":"classes/_sse_.subscription.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"sse\""},{"id":1238,"kind":1024,"name":"value","url":"classes/_sse_.subscription.html#value","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"sse\".Subscription"},{"id":1239,"kind":512,"name":"constructor","url":"classes/_sse_.subscription.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"sse\".Subscription"},{"id":1240,"kind":2048,"name":"_read","url":"classes/_sse_.subscription.html#_read","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"sse\".Subscription"},{"id":1241,"kind":1024,"name":"readable","url":"classes/_sse_.subscription.html#readable","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1242,"kind":1024,"name":"readableHighWaterMark","url":"classes/_sse_.subscription.html#readablehighwatermark","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1243,"kind":1024,"name":"readableLength","url":"classes/_sse_.subscription.html#readablelength","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1244,"kind":2048,"name":"read","url":"classes/_sse_.subscription.html#read","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1245,"kind":2048,"name":"setEncoding","url":"classes/_sse_.subscription.html#setencoding","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1246,"kind":2048,"name":"pause","url":"classes/_sse_.subscription.html#pause","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1247,"kind":2048,"name":"resume","url":"classes/_sse_.subscription.html#resume","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1248,"kind":2048,"name":"isPaused","url":"classes/_sse_.subscription.html#ispaused","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1249,"kind":2048,"name":"unpipe","url":"classes/_sse_.subscription.html#unpipe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1250,"kind":2048,"name":"unshift","url":"classes/_sse_.subscription.html#unshift","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1251,"kind":2048,"name":"wrap","url":"classes/_sse_.subscription.html#wrap","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1252,"kind":2048,"name":"push","url":"classes/_sse_.subscription.html#push","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1253,"kind":2048,"name":"_destroy","url":"classes/_sse_.subscription.html#_destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1254,"kind":2048,"name":"destroy","url":"classes/_sse_.subscription.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1255,"kind":2048,"name":"addListener","url":"classes/_sse_.subscription.html#addlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1256,"kind":2048,"name":"emit","url":"classes/_sse_.subscription.html#emit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1257,"kind":2048,"name":"on","url":"classes/_sse_.subscription.html#on","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1258,"kind":2048,"name":"once","url":"classes/_sse_.subscription.html#once","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1259,"kind":2048,"name":"prependListener","url":"classes/_sse_.subscription.html#prependlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1260,"kind":2048,"name":"prependOnceListener","url":"classes/_sse_.subscription.html#prependoncelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1261,"kind":2048,"name":"removeListener","url":"classes/_sse_.subscription.html#removelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1262,"kind":2048,"name":"__@asyncIterator","url":"classes/_sse_.subscription.html#___asynciterator","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1263,"kind":2048,"name":"pipe","url":"classes/_sse_.subscription.html#pipe","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1264,"kind":2048,"name":"listenerCount","url":"classes/_sse_.subscription.html#listenercount-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"sse\".Subscription"},{"id":1265,"kind":1024,"name":"defaultMaxListeners","url":"classes/_sse_.subscription.html#defaultmaxlisteners","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"sse\".Subscription"},{"id":1266,"kind":2048,"name":"off","url":"classes/_sse_.subscription.html#off","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1267,"kind":2048,"name":"removeAllListeners","url":"classes/_sse_.subscription.html#removealllisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1268,"kind":2048,"name":"setMaxListeners","url":"classes/_sse_.subscription.html#setmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1269,"kind":2048,"name":"getMaxListeners","url":"classes/_sse_.subscription.html#getmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1270,"kind":2048,"name":"listeners","url":"classes/_sse_.subscription.html#listeners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1271,"kind":2048,"name":"rawListeners","url":"classes/_sse_.subscription.html#rawlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1272,"kind":2048,"name":"eventNames","url":"classes/_sse_.subscription.html#eventnames","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1273,"kind":2048,"name":"listenerCount","url":"classes/_sse_.subscription.html#listenercount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"}]}; \ No newline at end of file diff --git a/docs/classes/_config_.config.html b/docs/classes/_config_.config.html index 82907b5..f56ac67 100644 --- a/docs/classes/_config_.config.html +++ b/docs/classes/_config_.config.html @@ -123,7 +123,7 @@

Private store

store: Object
@@ -145,7 +145,7 @@

getConfigFromFile

  • @@ -177,7 +177,7 @@

    getConfigFromObj

  • @@ -209,7 +209,7 @@

    getItem

  • @@ -251,7 +251,7 @@

    hasItem

  • @@ -285,7 +285,7 @@

    initApp

  • @@ -316,7 +316,7 @@

    setItem

  • @@ -378,6 +378,9 @@

    Returns void "factory"

  • +
  • + "file" +
  • "index"
  • diff --git a/docs/classes/_core_.auth.html b/docs/classes/_core_.auth.html index 4276eeb..2c02e61 100644 --- a/docs/classes/_core_.auth.html +++ b/docs/classes/_core_.auth.html @@ -268,7 +268,7 @@

    auth

    auth: string
    @@ -278,7 +278,7 @@

    group_id

    group_id: number
    @@ -288,7 +288,7 @@

    id

    id: number
    @@ -314,7 +314,7 @@

    module

    module: string
    @@ -1305,7 +1305,7 @@

    toJSON

    Returns object

    @@ -5715,6 +5715,9 @@

    Returns Promise "factory" +
  • + "file" +
  • "index"
  • @@ -6061,6 +6064,9 @@

    Returns Promise
      +
    • + File +
    • Group
    • @@ -6076,6 +6082,9 @@

      Returns Promise User +
    • + FileArgs +
    • LogArgs
    • diff --git a/docs/classes/_core_.file.html b/docs/classes/_core_.file.html new file mode 100644 index 0000000..af83b68 --- /dev/null +++ b/docs/classes/_core_.file.html @@ -0,0 +1,6236 @@ + + + + + + File | lin-mizar + + + + + +
      +
      +
      +
      + +
      +
      + Options +
      +
      + All +
        +
      • Public
      • +
      • Public/Protected
      • +
      • All
      • +
      +
      + + + + + + +
      +
      + Menu +
      +
      +
      +
      +
      +
      + +

      Class File<T, T2>

      +
      +
      +
      +
      +
      +
      +
      +
      +
      +

      文件模型 + id,path,type,name,extension,size

      +
      +
      +
      +
      +

      Type parameters

      +
        +
      • +

        T

        +
      • +
      • +

        T2

        +
      • +
      +
      +
      +

      Hierarchy

      +
        +
      • + Model +
          +
        • + File +
        • +
        +
      • +
      +
      +
      +

      Index

      +
      + +
      +
      +
      +

      Constructors

      +
      + +

      constructor

      +
        +
      • new File(values?: undefined | object, options?: BuildOptions): File
      • +
      +
        +
      • + +
        +
        +

        Builds a new model instance.

        +
        +
        +

        Parameters

        +
          +
        • +
          Optional values: undefined | object
          +
          +
          +

          an object of key value pairs

          +
          +
          +
        • +
        • +
          Optional options: BuildOptions
          +
        • +
        +

        Returns File

        +
      • +
      +
      +
      +
      +

      Properties

      +
      + +

      extension

      +
      extension: string
      + +
      +
      + +

      id

      +
      id: number
      + +
      +
      + +

      isNewRecord

      +
      isNewRecord: boolean
      + +
      +
      +

      Returns true if this instance has not yet been persisted to the database

      +
      +
      +
      +
      + +

      name

      +
      name: string
      + +
      +
      + +

      path

      +
      path: string
      + +
      +
      + +

      sequelize

      +
      sequelize: Sequelize
      + +
      +
      +

      A reference to the sequelize instance

      +
      +
      +
      +
      + +

      size

      +
      size: number
      + +
      +
      + +

      type

      +
      type: number
      + +
      +
      + +

      Static associations

      +
      associations: object
      + +
      +
      +

      An object hash from alias to association object

      +
      +
      +
      +

      Type declaration

      +
        +
      • +
        [key: string]: Association
        +
      • +
      +
      +
      +
      + +

      Static options

      +
      options: InitOptions
      + +
      +
      +

      The options that the model was initialized with

      +
      +
      +
      +
      + +

      Static primaryKeyAttribute

      +
      primaryKeyAttribute: string
      + +
      +
      +

      The name of the primary key attribute

      +
      +
      +
      +
      + +

      Static rawAttributes

      +
      rawAttributes: object
      + +
      +
      +

      The attributes of the model

      +
      +
      +
      +

      Type declaration

      +
        +
      • +
        [attribute: string]: ModelAttributeColumnOptions
        +
      • +
      +
      +
      +
      + +

      Static Optional sequelize

      +
      sequelize: Sequelize
      + +
      +
      +

      Reference to the sequelize instance the model was initialized with

      +
      +
      +
      +
      + +

      Static tableName

      +
      tableName: string
      + +
      +
      +

      The name of the database table

      +
      +
      +
      +
      +
      +

      Methods

      +
      + +

      addHook

      +
        +
      • addHook<K>(hookType: K, name: string, fn: SequelizeHooks[K]): this
      • +
      • addHook<K>(hookType: K, fn: SequelizeHooks[K]): this
      • +
      +
        +
      • + +
        +
        +

        Add a hook to the model

        +
        +
        +

        Type parameters

        +
          +
        • +

          K: keyof SequelizeHooks

          +
        • +
        +

        Parameters

        +
          +
        • +
          hookType: K
          +
        • +
        • +
          name: string
          +
          +

          Provide a name for the hook function. It can be used to remove the hook later or to order + hooks based on some sort of priority system in the future.

          +
          +
        • +
        • +
          fn: SequelizeHooks[K]
          +
        • +
        +

        Returns this

        +
      • +
      • + +

        Type parameters

        +
          +
        • +

          K: keyof SequelizeHooks

          +
        • +
        +

        Parameters

        +
          +
        • +
          hookType: K
          +
        • +
        • +
          fn: SequelizeHooks[K]
          +
        • +
        +

        Returns this

        +
      • +
      +
      +
      + +

      changed

      +
        +
      • changed<K>(key: K): boolean
      • +
      • changed<K>(key: K, dirty: boolean): void
      • +
      • changed(): false | string[]
      • +
      +
        +
      • + +
        +
        +

        If changed is called with a string it will return a boolean indicating whether the value of that key in + dataValues is different from the value in _previousDataValues.

        +
        +

        If changed is called without an argument, it will return an array of keys that have changed.

        +

        If changed is called with two arguments, it will set the property to dirty.

        +

        If changed is called without an argument and no keys have changed, it will return false.

        +
        +

        Type parameters

        +
          +
        • +

          K: keyof this

          +
        • +
        +

        Parameters

        +
          +
        • +
          key: K
          +
        • +
        +

        Returns boolean

        +
      • +
      • + +

        Type parameters

        +
          +
        • +

          K: keyof this

          +
        • +
        +

        Parameters

        +
          +
        • +
          key: K
          +
        • +
        • +
          dirty: boolean
          +
        • +
        +

        Returns void

        +
      • +
      • + +

        Returns false + | + string[] +

        +
      • +
      +
      +
      + +

      decrement

      +
        +
      • decrement<K>(fields: K | K[] | Partial<this>, options?: IncrementDecrementOptionsWithBy): Promise<this>
      • +
      +
        +
      • + +
        +
        +

        Decrement the value of one or more columns. This is done in the database, which means it does not use + the values currently stored on the Instance. The decrement is done using a

        +
        SET column = column - X
        +

        query. To get the correct value after an decrement into the Instance you should do a reload.

        +
        +
        instance.decrement('number') // decrement number by 1
        +instance.decrement(['number', 'count'], { by: 2 }) // decrement number and count by 2
        +instance.decrement({ answer: 42, tries: 1}, { by: 2 }) // decrement answer by 42, and tries by 1.
        +                                                       // `by` is ignored, since each column has its own
        +                                                       // value
        +
        +

        Type parameters

        +
          +
        • +

          K: keyof this

          +
        • +
        +

        Parameters

        +
          +
        • +
          fields: K | K[] | Partial<this>
          +
          +

          If a string is provided, that column is decremented by the value of by given in options. + If an array is provided, the same is true for each column. + If and object is provided, each column is decremented by the value given

          +
          +
        • +
        • +
          Optional options: IncrementDecrementOptionsWithBy
          +
        • +
        +

        Returns Promise<this>

        +
      • +
      +
      +
      + +

      destroy

      +
        +
      • destroy(options?: InstanceDestroyOptions): Promise<void>
      • +
      +
        +
      • + +
        +
        +

        Destroy the row corresponding to this instance. Depending on your setting for paranoid, the row will + either be completely deleted, or have its deletedAt timestamp set to the current time.

        +
        +
        +

        Parameters

        +
          +
        • +
          Optional options: InstanceDestroyOptions
          +
        • +
        +

        Returns Promise<void>

        +
      • +
      +
      +
      + +

      equals

      +
        +
      • equals(other: this): boolean
      • +
      +
        +
      • + +
        +
        +

        Check whether all values of this and other Instance are the same

        +
        +
        +

        Parameters

        +
          +
        • +
          other: this
          +
        • +
        +

        Returns boolean

        +
      • +
      +
      +
      + +

      equalsOneOf

      +
        +
      • equalsOneOf(others: this[]): boolean
      • +
      +
        +
      • + +
        +
        +

        Check if this is eqaul to one of others by calling equals

        +
        +
        +

        Parameters

        +
          +
        • +
          others: this[]
          +
        • +
        +

        Returns boolean

        +
      • +
      +
      +
      + +

      get

      +
        +
      • get(options?: undefined | object): object
      • +
      • get(key: string, options?: undefined | object): unknown
      • +
      • get<K>(key: K, options?: undefined | object): this[K]
      • +
      +
        +
      • + +
        +
        +

        If no key is given, returns all values of the instance, also invoking virtual getters.

        +
        +

        If key is given and a field or virtual getter is present for the key it will call that getter - else it + will return the value for key.

        +
        +

        Parameters

        +
          +
        • +
          Optional options: undefined | object
          +
        • +
        +

        Returns object

        +
      • +
      • + +

        Parameters

        +
          +
        • +
          key: string
          +
        • +
        • +
          Optional options: undefined | object
          +
        • +
        +

        Returns unknown

        +
      • +
      • + +

        Type parameters

        +
          +
        • +

          K: keyof this

          +
        • +
        +

        Parameters

        +
          +
        • +
          key: K
          +
        • +
        • +
          Optional options: undefined | object
          +
        • +
        +

        Returns this[K]

        +
      • +
      +
      +
      + +

      getDataValue

      +
        +
      • getDataValue<K>(key: K): this[K]
      • +
      +
        +
      • + +
        +
        +

        Get the value of the underlying data value

        +
        +
        +

        Type parameters

        +
          +
        • +

          K: keyof this

          +
        • +
        +

        Parameters

        +
          +
        • +
          key: K
          +
        • +
        +

        Returns this[K]

        +
      • +
      +
      +
      + +

      hasHook

      +
        +
      • hasHook<K>(hookType: K): boolean
      • +
      +
        +
      • + +
        +
        +

        Check whether the mode has any hooks of this type

        +
        +
        +

        Type parameters

        +
          +
        • +

          K: keyof SequelizeHooks

          +
        • +
        +

        Parameters

        +
          +
        • +
          hookType: K
          +
        • +
        +

        Returns boolean

        +
      • +
      +
      +
      + +

      hasHooks

      +
        +
      • hasHooks<K>(hookType: K): boolean
      • +
      +
        +
      • + +

        Type parameters

        +
          +
        • +

          K: keyof SequelizeHooks

          +
        • +
        +

        Parameters

        +
          +
        • +
          hookType: K
          +
        • +
        +

        Returns boolean

        +
      • +
      +
      +
      + +

      increment

      +
        +
      • increment<K>(fields: K | K[] | Partial<this>, options?: IncrementDecrementOptionsWithBy): Promise<this>
      • +
      +
        +
      • + +
        +
        +

        Increment the value of one or more columns. This is done in the database, which means it does not use + the values currently stored on the Instance. The increment is done using a

        +
        SET column = column + X
        +

        query. To get the correct value after an increment into the Instance you should do a reload.

        +
        +
        instance.increment('number') // increment number by 1
        +instance.increment(['number', 'count'], { by: 2 }) // increment number and count by 2
        +instance.increment({ answer: 42, tries: 1}, { by: 2 }) // increment answer by 42, and tries by 1.
        +                                                       // `by` is ignored, since each column has its own
        +                                                       // value
        +
        +

        Type parameters

        +
          +
        • +

          K: keyof this

          +
        • +
        +

        Parameters

        +
          +
        • +
          fields: K | K[] | Partial<this>
          +
          +

          If a string is provided, that column is incremented by the value of by given in options. + If an array is provided, the same is true for each column. + If and object is provided, each column is incremented by the value given.

          +
          +
        • +
        • +
          Optional options: IncrementDecrementOptionsWithBy
          +
        • +
        +

        Returns Promise<this>

        +
      • +
      +
      +
      + +

      previous

      +
        +
      • previous<K>(key: K): this[K]
      • +
      +
        +
      • + +
        +
        +

        Returns the previous value for key from _previousDataValues.

        +
        +
        +

        Type parameters

        +
          +
        • +

          K: keyof this

          +
        • +
        +

        Parameters

        +
          +
        • +
          key: K
          +
        • +
        +

        Returns this[K]

        +
      • +
      +
      +
      + +

      reload

      +
        +
      • reload(options?: FindOptions): Promise<this>
      • +
      +
        +
      • + +
        +
        +

        Refresh the current instance in-place, i.e. update the object with current data from the DB and return + the same object. This is different from doing a find(Instance.id), because that would create and + return a new instance. With this method, all references to the Instance are updated with the new data + and no new objects are created.

        +
        +
        +

        Parameters

        +
          +
        • +
          Optional options: FindOptions
          +
        • +
        +

        Returns Promise<this>

        +
      • +
      +
      +
      + +

      removeHook

      +
        +
      • removeHook<K>(hookType: K, name: string): this
      • +
      +
        +
      • + +
        +
        +

        Remove hook from the model

        +
        +
        +

        Type parameters

        +
          +
        • +

          K: keyof SequelizeHooks

          +
        • +
        +

        Parameters

        +
          +
        • +
          hookType: K
          +
        • +
        • +
          name: string
          +
        • +
        +

        Returns this

        +
      • +
      +
      +
      + +

      restore

      +
        +
      • restore(options?: InstanceRestoreOptions): Promise<void>
      • +
      +
        +
      • + +
        +
        +

        Restore the row corresponding to this instance. Only available for paranoid models.

        +
        +
        +

        Parameters

        +
          +
        • +
          Optional options: InstanceRestoreOptions
          +
        • +
        +

        Returns Promise<void>

        +
      • +
      +
      +
      + +

      save

      +
        +
      • save(options?: SaveOptions): Promise<this>
      • +
      +
        +
      • + +
        +
        +

        Validate this instance, and if the validation passes, persist it to the database.

        +
        +

        On success, the callback will be called with this instance. On validation error, the callback will be + called with an instance of Sequelize.ValidationError. This error will have a property for each of the + fields for which validation failed, with the error message for that field.

        +
        +

        Parameters

        +
          +
        • +
          Optional options: SaveOptions
          +
        • +
        +

        Returns Promise<this>

        +
      • +
      +
      +
      + +

      set

      +
        +
      • set<K>(key: K, value: this[K], options?: SetOptions): this
      • +
      • set(keys: Partial<this>, options?: SetOptions): this
      • +
      +
        +
      • + +
        +
        +

        Set is used to update values on the instance (the sequelize representation of the instance that is, + remember that nothing will be persisted before you actually call save). In its most basic form set + will update a value stored in the underlying dataValues object. However, if a custom setter function + is defined for the key, that function will be called instead. To bypass the setter, you can pass raw: +true in the options object.

        +
        +

        If set is called with an object, it will loop over the object, and call set recursively for each key, + value pair. If you set raw to true, the underlying dataValues will either be set directly to the object + passed, or used to extend dataValues, if dataValues already contain values.

        +

        When set is called, the previous value of the field is stored and sets a changed flag(see changed).

        +

        Set can also be used to build instances for associations, if you have values for those. + When using set with associations you need to make sure the property key matches the alias of the + association while also making sure that the proper include options have been set (from .build() or + .findOne())

        +

        If called with a dot.seperated key on a JSON/JSONB attribute it will set the value nested and flag the + entire object as changed.

        +
        +

        Type parameters

        +
          +
        • +

          K: keyof this

          +
        • +
        +

        Parameters

        +
          +
        • +
          key: K
          +
        • +
        • +
          value: this[K]
          +
        • +
        • +
          Optional options: SetOptions
          +
        • +
        +

        Returns this

        +
      • +
      • + +

        Parameters

        +
          +
        • +
          keys: Partial<this>
          +
        • +
        • +
          Optional options: SetOptions
          +
        • +
        +

        Returns this

        +
      • +
      +
      +
      + +

      setAttributes

      +
        +
      • setAttributes<K>(key: K, value: this[K], options?: SetOptions): this
      • +
      • setAttributes(keys: object, options?: SetOptions): this
      • +
      +
        +
      • + +

        Type parameters

        +
          +
        • +

          K: keyof this

          +
        • +
        +

        Parameters

        +
          +
        • +
          key: K
          +
        • +
        • +
          value: this[K]
          +
        • +
        • +
          Optional options: SetOptions
          +
        • +
        +

        Returns this

        +
      • +
      • + +

        Parameters

        +
          +
        • +
          keys: object
          +
        • +
        • +
          Optional options: SetOptions
          +
        • +
        +

        Returns this

        +
      • +
      +
      +
      + +

      setDataValue

      +
        +
      • setDataValue<K>(key: K, value: this[K]): void
      • +
      +
        +
      • + +
        +
        +

        Update the underlying data value

        +
        +
        +

        Type parameters

        +
          +
        • +

          K: keyof this

          +
        • +
        +

        Parameters

        +
          +
        • +
          key: K
          +
        • +
        • +
          value: this[K]
          +
        • +
        +

        Returns void

        +
      • +
      +
      +
      + +

      toJSON

      +
        +
      • toJSON(): object
      • +
      +
        +
      • + +

        Returns object

        +
          +
        • +
          extension: string
          +
        • +
        • +
          id: number
          +
        • +
        • +
          name: string
          +
        • +
        • +
          path: string
          +
        • +
        • +
          size: number
          +
        • +
        • +
          type: number
          +
        • +
        +
      • +
      +
      +
      + +

      update

      +
        +
      • update<K>(key: K, value: this[K], options?: InstanceUpdateOptions): Promise<this>
      • +
      • update(keys: object, options?: InstanceUpdateOptions): Promise<this>
      • +
      +
        +
      • + +
        +
        +

        This is the same as calling set and then calling save.

        +
        +
        +

        Type parameters

        +
          +
        • +

          K: keyof this

          +
        • +
        +

        Parameters

        +
          +
        • +
          key: K
          +
        • +
        • +
          value: this[K]
          +
        • +
        • +
          Optional options: InstanceUpdateOptions
          +
        • +
        +

        Returns Promise<this>

        +
      • +
      • + +

        Parameters

        +
          +
        • +
          keys: object
          +
        • +
        • +
          Optional options: InstanceUpdateOptions
          +
        • +
        +

        Returns Promise<this>

        +
      • +
      +
      +
      + +

      validate

      +
        +
      • validate(options?: ValidationOptions): Promise<void>
      • +
      +
        +
      • + +
        +
        +

        Validate the attribute of this instance according to validation rules set in the model definition.

        +
        +

        Emits null if and only if validation successful; otherwise an Error instance containing + { field name : [error msgs] } entries.

        +
        +

        Parameters

        +
          +
        • +
          Optional options: ValidationOptions
          +
        • +
        +

        Returns Promise<void>

        +
      • +
      +
      +
      + +

      where

      +
        +
      • where(): object
      • +
      +
        +
      • + +
        +
        +

        Get an object representing the query for this instance, use with options.where

        +
        +
        +

        Returns object

        +
      • +
      +
      +
      + +

      Static addHook

      +
        +
      • addHook<C, K>(hookType: K, name: string, fn: SequelizeHooks[K]): C
      • +
      • addHook<C, K>(hookType: K, fn: SequelizeHooks[K]): C
      • +
      +
        +
      • + +
        +
        +

        Add a hook to the model

        +
        +
        +

        Type parameters

        +
          +
        • +

          C: Hooks

          +
        • +
        • +

          K: keyof SequelizeHooks

          +
        • +
        +

        Parameters

        +
          +
        • +
          hookType: K
          +
        • +
        • +
          name: string
          +
          +

          Provide a name for the hook function. It can be used to remove the hook later or to order + hooks based on some sort of priority system in the future.

          +
          +
        • +
        • +
          fn: SequelizeHooks[K]
          +
        • +
        +

        Returns C

        +
      • +
      • + +

        Type parameters

        +
          +
        • +

          C: Hooks

          +
        • +
        • +

          K: keyof SequelizeHooks

          +
        • +
        +

        Parameters

        +
          +
        • +
          hookType: K
          +
        • +
        • +
          fn: SequelizeHooks[K]
          +
        • +
        +

        Returns C

        +
      • +
      +
      +
      + +

      Static addScope

      +
        +
      • addScope(name: string, scope: FindOptions, options?: AddScopeOptions): void
      • +
      +
        +
      • + +

        Parameters

        +
          +
        • +
          name: string
          +
        • +
        • +
          scope: FindOptions
          +
        • +
        • +
          Optional options: AddScopeOptions
          +
        • +
        +

        Returns void

        +
      • +
      +
      +
      + +

      Static afterBulkCreate

      +
        +
      • afterBulkCreate<M>(this: object & Model, name: string, fn: function): void
      • +
      • afterBulkCreate<M>(this: object & Model, fn: function): void
      • +
      +
        +
      • + +
        +
        +

        A hook that is run after creating instances in bulk

        +
        +
        +

        Type parameters

        +
          +
        • +

          M: Model

          +
        • +
        +

        Parameters

        +
          +
        • +
          this: object & Model
          +
        • +
        • +
          name: string
          +
        • +
        • +
          fn: function
          +
          +

          A callback function that is called with instances, options

          +
          +
            +
          • +
              +
            • (instances: M[], options: BulkCreateOptions): HookReturn
            • +
            +
              +
            • +

              Parameters

              +
                +
              • +
                instances: M[]
                +
              • +
              • +
                options: BulkCreateOptions
                +
              • +
              +

              Returns HookReturn

              +
            • +
            +
          • +
          +
        • +
        +

        Returns void

        +
      • +
      • + +

        Type parameters

        +
          +
        • +

          M: Model

          +
        • +
        +

        Parameters

        +
          +
        • +
          this: object & Model
          +
        • +
        • +
          fn: function
          +
            +
          • +
              +
            • (instances: M[], options: BulkCreateOptions): HookReturn
            • +
            +
              +
            • +

              Parameters

              +
                +
              • +
                instances: M[]
                +
              • +
              • +
                options: BulkCreateOptions
                +
              • +
              +

              Returns HookReturn

              +
            • +
            +
          • +
          +
        • +
        +

        Returns void

        +
      • +
      +
      +
      + +

      Static afterBulkDestroy

      +
        +
      • afterBulkDestroy(name: string, fn: function): void
      • +
      • afterBulkDestroy(fn: function): void
      • +
      +
        +
      • + +
        +
        +

        A hook that is run after destroying instances in bulk

        +
        +
        +

        Parameters

        +
          +
        • +
          name: string
          +
        • +
        • +
          fn: function
          +
          +

          A callback function that is called with options

          +
          +
            +
          • +
              +
            • (options: DestroyOptions): HookReturn
            • +
            +
              +
            • +

              Parameters

              +
                +
              • +
                options: DestroyOptions
                +
              • +
              +

              Returns HookReturn

              +
            • +
            +
          • +
          +
        • +
        +

        Returns void

        +
      • +
      • + +

        Parameters

        +
          +
        • +
          fn: function
          +
            +
          • +
              +
            • (options: DestroyOptions): HookReturn
            • +
            +
              +
            • +

              Parameters

              +
                +
              • +
                options: DestroyOptions
                +
              • +
              +

              Returns HookReturn

              +
            • +
            +
          • +
          +
        • +
        +

        Returns void

        +
      • +
      +
      +
      + +

      Static afterBulkSync

      +
        +
      • afterBulkSync(name: string, fn: function): void
      • +
      • afterBulkSync(fn: function): void
      • +
      +
        +
      • + +
        +
        +

        A hook that is run after sequelize.sync call

        +
        +
        +

        Parameters

        +
          +
        • +
          name: string
          +
        • +
        • +
          fn: function
          +
          +

          A callback function that is called with options passed to sequelize.sync

          +
          +
            +
          • +
              +
            • (options: SyncOptions): HookReturn
            • +
            +
              +
            • +

              Parameters

              +
                +
              • +
                options: SyncOptions
                +
              • +
              +

              Returns HookReturn

              +
            • +
            +
          • +
          +
        • +
        +

        Returns void

        +
      • +
      • + +

        Parameters

        +
          +
        • +
          fn: function
          +
            +
          • +
              +
            • (options: SyncOptions): HookReturn
            • +
            +
              +
            • +

              Parameters

              +
                +
              • +
                options: SyncOptions
                +
              • +
              +

              Returns HookReturn

              +
            • +
            +
          • +
          +
        • +
        +

        Returns void

        +
      • +
      +
      +
      + +

      Static afterBulkUpdate

      +
        +
      • afterBulkUpdate(name: string, fn: function): void
      • +
      • afterBulkUpdate(fn: function): void
      • +
      +
        +
      • + +
        +
        +

        A hook that is run after updating instances in bulk

        +
        +
        +

        Parameters

        +
          +
        • +
          name: string
          +
        • +
        • +
          fn: function
          +
          +

          A callback function that is called with options

          +
          +
            +
          • +
              +
            • (options: UpdateOptions): HookReturn
            • +
            +
              +
            • +

              Parameters

              +
                +
              • +
                options: UpdateOptions
                +
              • +
              +

              Returns HookReturn

              +
            • +
            +
          • +
          +
        • +
        +

        Returns void

        +
      • +
      • + +

        Parameters

        +
          +
        • +
          fn: function
          +
            +
          • +
              +
            • (options: UpdateOptions): HookReturn
            • +
            +
              +
            • +

              Parameters

              +
                +
              • +
                options: UpdateOptions
                +
              • +
              +

              Returns HookReturn

              +
            • +
            +
          • +
          +
        • +
        +

        Returns void

        +
      • +
      +
      +
      + +

      Static afterCreate

      +
        +
      • afterCreate<M>(this: object & Model, name: string, fn: function): void
      • +
      • afterCreate<M>(this: object & Model, fn: function): void
      • +
      +
        +
      • + +
        +
        +

        A hook that is run after creating a single instance

        +
        +
        +

        Type parameters

        +
          +
        • +

          M: Model

          +
        • +
        +

        Parameters

        +
          +
        • +
          this: object & Model
          +
        • +
        • +
          name: string
          +
        • +
        • +
          fn: function
          +
          +

          A callback function that is called with attributes, options

          +
          +
            +
          • +
              +
            • (attributes: M, options: CreateOptions): HookReturn
            • +
            +
              +
            • +

              Parameters

              +
                +
              • +
                attributes: M
                +
              • +
              • +
                options: CreateOptions
                +
              • +
              +

              Returns HookReturn

              +
            • +
            +
          • +
          +
        • +
        +

        Returns void

        +
      • +
      • + +

        Type parameters

        +
          +
        • +

          M: Model

          +
        • +
        +

        Parameters

        +
          +
        • +
          this: object & Model
          +
        • +
        • +
          fn: function
          +
            +
          • +
              +
            • (attributes: M, options: CreateOptions): HookReturn
            • +
            +
              +
            • +

              Parameters

              +
                +
              • +
                attributes: M
                +
              • +
              • +
                options: CreateOptions
                +
              • +
              +

              Returns HookReturn

              +
            • +
            +
          • +
          +
        • +
        +

        Returns void

        +
      • +
      +
      +
      + +

      Static afterDestroy

      +
        +
      • afterDestroy<M>(this: object & Model, name: string, fn: function): void
      • +
      • afterDestroy<M>(this: object & Model, fn: function): void
      • +
      +
        +
      • + +
        +
        +

        A hook that is run after destroying a single instance

        +
        +
        +

        Type parameters

        +
          +
        • +

          M: Model

          +
        • +
        +

        Parameters

        +
          +
        • +
          this: object & Model
          +
        • +
        • +
          name: string
          +
        • +
        • +
          fn: function
          +
          +

          A callback function that is called with instance, options

          +
          +
            +
          • +
              +
            • (instance: M, options: InstanceDestroyOptions): HookReturn
            • +
            +
              +
            • +

              Parameters

              +
                +
              • +
                instance: M
                +
              • +
              • +
                options: InstanceDestroyOptions
                +
              • +
              +

              Returns HookReturn

              +
            • +
            +
          • +
          +
        • +
        +

        Returns void

        +
      • +
      • + +

        Type parameters

        +
          +
        • +

          M: Model

          +
        • +
        +

        Parameters

        +
          +
        • +
          this: object & Model
          +
        • +
        • +
          fn: function
          +
            +
          • +
              +
            • (instance: M, options: InstanceDestroyOptions): HookReturn
            • +
            +
              +
            • +

              Parameters

              +
                +
              • +
                instance: M
                +
              • +
              • +
                options: InstanceDestroyOptions
                +
              • +
              +

              Returns HookReturn

              +
            • +
            +
          • +
          +
        • +
        +

        Returns void

        +
      • +
      +
      +
      + +

      Static afterFind

      +
        +
      • afterFind<M>(this: object & Model, name: string, fn: function): void
      • +
      • afterFind<M>(this: object & Model, fn: function): void
      • +
      +
        +
      • + +
        +
        +

        A hook that is run after a find (select) query

        +
        +
        +

        Type parameters

        +
          +
        • +

          M: Model

          +
        • +
        +

        Parameters

        +
          +
        • +
          this: object & Model
          +
        • +
        • +
          name: string
          +
        • +
        • +
          fn: function
          +
          +

          A callback function that is called with instance(s), options

          +
          +
            +
          • +
              +
            • (instancesOrInstance: M[] | M, options: FindOptions): HookReturn
            • +
            +
              +
            • +

              Parameters

              +
                +
              • +
                instancesOrInstance: M[] | M
                +
              • +
              • +
                options: FindOptions
                +
              • +
              +

              Returns HookReturn

              +
            • +
            +
          • +
          +
        • +
        +

        Returns void

        +
      • +
      • + +

        Type parameters

        +
          +
        • +

          M: Model

          +
        • +
        +

        Parameters

        +
          +
        • +
          this: object & Model
          +
        • +
        • +
          fn: function
          +
            +
          • +
              +
            • (instancesOrInstance: M[] | M, options: FindOptions): HookReturn
            • +
            +
              +
            • +

              Parameters

              +
                +
              • +
                instancesOrInstance: M[] | M
                +
              • +
              • +
                options: FindOptions
                +
              • +
              +

              Returns HookReturn

              +
            • +
            +
          • +
          +
        • +
        +

        Returns void

        +
      • +
      +
      +
      + +

      Static afterSync

      +
        +
      • afterSync(name: string, fn: function): void
      • +
      • afterSync(fn: function): void
      • +
      +
        +
      • + +
        +
        +

        A hook that is run after Model.sync call

        +
        +
        +

        Parameters

        +
          +
        • +
          name: string
          +
        • +
        • +
          fn: function
          +
          +

          A callback function that is called with options passed to Model.sync

          +
          +
            +
          • +
              +
            • (options: SyncOptions): HookReturn
            • +
            +
              +
            • +

              Parameters

              +
                +
              • +
                options: SyncOptions
                +
              • +
              +

              Returns HookReturn

              +
            • +
            +
          • +
          +
        • +
        +

        Returns void

        +
      • +
      • + +

        Parameters

        +
          +
        • +
          fn: function
          +
            +
          • +
              +
            • (options: SyncOptions): HookReturn
            • +
            +
              +
            • +

              Parameters

              +
                +
              • +
                options: SyncOptions
                +
              • +
              +

              Returns HookReturn

              +
            • +
            +
          • +
          +
        • +
        +

        Returns void

        +
      • +
      +
      +
      + +

      Static afterUpdate

      +
        +
      • afterUpdate<M>(this: object & Model, name: string, fn: function): void
      • +
      • afterUpdate<M>(this: object & Model, fn: function): void
      • +
      +
        +
      • + +
        +
        +

        A hook that is run after updating a single instance

        +
        +
        +

        Type parameters

        +
          +
        • +

          M: Model

          +
        • +
        +

        Parameters

        +
          +
        • +
          this: object & Model
          +
        • +
        • +
          name: string
          +
        • +
        • +
          fn: function
          +
          +

          A callback function that is called with instance, options

          +
          +
            +
          • +
              +
            • (instance: M, options: UpdateOptions): HookReturn
            • +
            +
              +
            • +

              Parameters

              +
                +
              • +
                instance: M
                +
              • +
              • +
                options: UpdateOptions
                +
              • +
              +

              Returns HookReturn

              +
            • +
            +
          • +
          +
        • +
        +

        Returns void

        +
      • +
      • + +

        Type parameters

        +
          +
        • +

          M: Model

          +
        • +
        +

        Parameters

        +
          +
        • +
          this: object & Model
          +
        • +
        • +
          fn: function
          +
            +
          • +
              +
            • (instance: M, options: UpdateOptions): HookReturn
            • +
            +
              +
            • +

              Parameters

              +
                +
              • +
                instance: M
                +
              • +
              • +
                options: UpdateOptions
                +
              • +
              +

              Returns HookReturn

              +
            • +
            +
          • +
          +
        • +
        +

        Returns void

        +
      • +
      +
      +
      + +

      Static afterValidate

      +
        +
      • afterValidate<M>(this: object & Model, name: string, fn: function): void
      • +
      • afterValidate<M>(this: object & Model, fn: function): void
      • +
      +
        +
      • + +
        +
        +

        A hook that is run after validation

        +
        +
        +

        Type parameters

        +
          +
        • +

          M: Model

          +
        • +
        +

        Parameters

        +
          +
        • +
          this: object & Model
          +
        • +
        • +
          name: string
          +
        • +
        • +
          fn: function
          +
          +

          A callback function that is called with instance, options

          +
          +
            +
          • +
              +
            • (instance: M, options: ValidationOptions): HookReturn
            • +
            +
              +
            • +

              Parameters

              +
                +
              • +
                instance: M
                +
              • +
              • +
                options: ValidationOptions
                +
              • +
              +

              Returns HookReturn

              +
            • +
            +
          • +
          +
        • +
        +

        Returns void

        +
      • +
      • + +

        Type parameters

        +
          +
        • +

          M: Model

          +
        • +
        +

        Parameters

        +
          +
        • +
          this: object & Model
          +
        • +
        • +
          fn: function
          +
            +
          • +
              +
            • (instance: M, options: ValidationOptions): HookReturn
            • +
            +
              +
            • +

              Parameters

              +
                +
              • +
                instance: M
                +
              • +
              • +
                options: ValidationOptions
                +
              • +
              +

              Returns HookReturn

              +
            • +
            +
          • +
          +
        • +
        +

        Returns void

        +
      • +
      +
      +
      + +

      Static aggregate

      +
        +
      • aggregate<M, T>(this: object & Model, field: keyof M, aggregateFunction: string, options?: AggregateOptions<T>): Promise<T>
      • +
      +
        +
      • + +
        +
        +

        Run an aggregation method on the specified field

        +
        +
        +

        Type parameters

        +
          +
        • +

          M: Model

          +
        • +
        • +

          T: DataType | unknown

          +
        • +
        +

        Parameters

        +
          +
        • +
          this: object & Model
          +
        • +
        • +
          field: keyof M
          +
          +

          The field to aggregate over. Can be a field name or *

          +
          +
        • +
        • +
          aggregateFunction: string
          +
          +

          The function to use for aggregation, e.g. sum, max etc.

          +
          +
        • +
        • +
          Optional options: AggregateOptions<T>
          +
          +

          Query options. See sequelize.query for full options

          +
          +
        • +
        +

        Returns Promise<T>

        +

        Returns the aggregate result cast to options.dataType, unless options.plain is false, in + which case the complete data result is returned.

        +
      • +
      +
      +
      + +

      Static beforeBulkCreate

      +
        +
      • beforeBulkCreate<M>(this: object & Model, name: string, fn: function): void
      • +
      • beforeBulkCreate<M>(this: object & Model, fn: function): void
      • +
      +
        +
      • + +
        +
        +

        A hook that is run before creating instances in bulk

        +
        +
        +

        Type parameters

        +
          +
        • +

          M: Model

          +
        • +
        +

        Parameters

        +
          +
        • +
          this: object & Model
          +
        • +
        • +
          name: string
          +
        • +
        • +
          fn: function
          +
          +

          A callback function that is called with instances, options

          +
          +
            +
          • +
              +
            • (instances: M[], options: BulkCreateOptions): HookReturn
            • +
            +
              +
            • +

              Parameters

              +
                +
              • +
                instances: M[]
                +
              • +
              • +
                options: BulkCreateOptions
                +
              • +
              +

              Returns HookReturn

              +
            • +
            +
          • +
          +
        • +
        +

        Returns void

        +
      • +
      • + +

        Type parameters

        +
          +
        • +

          M: Model

          +
        • +
        +

        Parameters

        +
          +
        • +
          this: object & Model
          +
        • +
        • +
          fn: function
          +
            +
          • +
              +
            • (instances: M[], options: BulkCreateOptions): HookReturn
            • +
            +
              +
            • +

              Parameters

              +
                +
              • +
                instances: M[]
                +
              • +
              • +
                options: BulkCreateOptions
                +
              • +
              +

              Returns HookReturn

              +
            • +
            +
          • +
          +
        • +
        +

        Returns void

        +
      • +
      +
      +
      + +

      Static beforeBulkDestroy

      +
        +
      • beforeBulkDestroy(name: string, fn: function): void
      • +
      • beforeBulkDestroy(fn: function): void
      • +
      +
        +
      • + +
        +
        +

        A hook that is run before destroying instances in bulk

        +
        +
        +

        Parameters

        +
          +
        • +
          name: string
          +
        • +
        • +
          fn: function
          +
          +

          A callback function that is called with options

          +
          +
            +
          • +
              +
            • (options: BulkCreateOptions): HookReturn
            • +
            +
              +
            • +

              Parameters

              +
                +
              • +
                options: BulkCreateOptions
                +
              • +
              +

              Returns HookReturn

              +
            • +
            +
          • +
          +
        • +
        +

        Returns void

        +
      • +
      • + +

        Parameters

        +
          +
        • +
          fn: function
          +
            +
          • +
              +
            • (options: BulkCreateOptions): HookReturn
            • +
            +
              +
            • +

              Parameters

              +
                +
              • +
                options: BulkCreateOptions
                +
              • +
              +

              Returns HookReturn

              +
            • +
            +
          • +
          +
        • +
        +

        Returns void

        +
      • +
      +
      +
      + +

      Static beforeBulkSync

      +
        +
      • beforeBulkSync(name: string, fn: function): void
      • +
      • beforeBulkSync(fn: function): void
      • +
      +
        +
      • + +
        +
        +

        A hook that is run before sequelize.sync call

        +
        +
        +

        Parameters

        +
          +
        • +
          name: string
          +
        • +
        • +
          fn: function
          +
          +

          A callback function that is called with options passed to sequelize.sync

          +
          +
            +
          • +
              +
            • (options: SyncOptions): HookReturn
            • +
            +
              +
            • +

              Parameters

              +
                +
              • +
                options: SyncOptions
                +
              • +
              +

              Returns HookReturn

              +
            • +
            +
          • +
          +
        • +
        +

        Returns void

        +
      • +
      • + +

        Parameters

        +
          +
        • +
          fn: function
          +
            +
          • +
              +
            • (options: SyncOptions): HookReturn
            • +
            +
              +
            • +

              Parameters

              +
                +
              • +
                options: SyncOptions
                +
              • +
              +

              Returns HookReturn

              +
            • +
            +
          • +
          +
        • +
        +

        Returns void

        +
      • +
      +
      +
      + +

      Static beforeBulkUpdate

      +
        +
      • beforeBulkUpdate(name: string, fn: function): void
      • +
      • beforeBulkUpdate(fn: function): void
      • +
      +
        +
      • + +
        +
        +

        A hook that is run after updating instances in bulk

        +
        +
        +

        Parameters

        +
          +
        • +
          name: string
          +
        • +
        • +
          fn: function
          +
          +

          A callback function that is called with options

          +
          +
            +
          • +
              +
            • (options: UpdateOptions): HookReturn
            • +
            +
              +
            • +

              Parameters

              +
                +
              • +
                options: UpdateOptions
                +
              • +
              +

              Returns HookReturn

              +
            • +
            +
          • +
          +
        • +
        +

        Returns void

        +
      • +
      • + +

        Parameters

        +
          +
        • +
          fn: function
          +
            +
          • +
              +
            • (options: UpdateOptions): HookReturn
            • +
            +
              +
            • +

              Parameters

              +
                +
              • +
                options: UpdateOptions
                +
              • +
              +

              Returns HookReturn

              +
            • +
            +
          • +
          +
        • +
        +

        Returns void

        +
      • +
      +
      +
      + +

      Static beforeCount

      +
        +
      • beforeCount(name: string, fn: function): void
      • +
      • beforeCount(fn: function): void
      • +
      +
        +
      • + +
        +
        +

        A hook that is run before a count query

        +
        +
        +

        Parameters

        +
          +
        • +
          name: string
          +
        • +
        • +
          fn: function
          +
          +

          A callback function that is called with options

          +
          +
            +
          • +
              +
            • (options: CountOptions): HookReturn
            • +
            +
              +
            • +

              Parameters

              +
                +
              • +
                options: CountOptions
                +
              • +
              +

              Returns HookReturn

              +
            • +
            +
          • +
          +
        • +
        +

        Returns void

        +
      • +
      • + +

        Parameters

        +
          +
        • +
          fn: function
          +
            +
          • +
              +
            • (options: CountOptions): HookReturn
            • +
            +
              +
            • +

              Parameters

              +
                +
              • +
                options: CountOptions
                +
              • +
              +

              Returns HookReturn

              +
            • +
            +
          • +
          +
        • +
        +

        Returns void

        +
      • +
      +
      +
      + +

      Static beforeCreate

      +
        +
      • beforeCreate<M>(this: object & Model, name: string, fn: function): void
      • +
      • beforeCreate<M>(this: object & Model, fn: function): void
      • +
      +
        +
      • + +
        +
        +

        A hook that is run before creating a single instance

        +
        +
        +

        Type parameters

        +
          +
        • +

          M: Model

          +
        • +
        +

        Parameters

        +
          +
        • +
          this: object & Model
          +
        • +
        • +
          name: string
          +
        • +
        • +
          fn: function
          +
          +

          A callback function that is called with attributes, options

          +
          +
            +
          • +
              +
            • (attributes: M, options: CreateOptions): HookReturn
            • +
            +
              +
            • +

              Parameters

              +
                +
              • +
                attributes: M
                +
              • +
              • +
                options: CreateOptions
                +
              • +
              +

              Returns HookReturn

              +
            • +
            +
          • +
          +
        • +
        +

        Returns void

        +
      • +
      • + +

        Type parameters

        +
          +
        • +

          M: Model

          +
        • +
        +

        Parameters

        +
          +
        • +
          this: object & Model
          +
        • +
        • +
          fn: function
          +
            +
          • +
              +
            • (attributes: M, options: CreateOptions): HookReturn
            • +
            +
              +
            • +

              Parameters

              +
                +
              • +
                attributes: M
                +
              • +
              • +
                options: CreateOptions
                +
              • +
              +

              Returns HookReturn

              +
            • +
            +
          • +
          +
        • +
        +

        Returns void

        +
      • +
      +
      +
      + +

      Static beforeDestroy

      +
        +
      • beforeDestroy<M>(this: object & Model, name: string, fn: function): void
      • +
      • beforeDestroy<M>(this: object & Model, fn: function): void
      • +
      +
        +
      • + +
        +
        +

        A hook that is run before destroying a single instance

        +
        +
        +

        Type parameters

        +
          +
        • +

          M: Model

          +
        • +
        +

        Parameters

        +
          +
        • +
          this: object & Model
          +
        • +
        • +
          name: string
          +
        • +
        • +
          fn: function
          +
          +

          A callback function that is called with instance, options

          +
          +
            +
          • +
              +
            • (instance: M, options: InstanceDestroyOptions): HookReturn
            • +
            +
              +
            • +

              Parameters

              +
                +
              • +
                instance: M
                +
              • +
              • +
                options: InstanceDestroyOptions
                +
              • +
              +

              Returns HookReturn

              +
            • +
            +
          • +
          +
        • +
        +

        Returns void

        +
      • +
      • + +

        Type parameters

        +
          +
        • +

          M: Model

          +
        • +
        +

        Parameters

        +
          +
        • +
          this: object & Model
          +
        • +
        • +
          fn: function
          +
            +
          • +
              +
            • (instance: Model, options: InstanceDestroyOptions): HookReturn
            • +
            +
              +
            • +

              Parameters

              +
                +
              • +
                instance: Model
                +
              • +
              • +
                options: InstanceDestroyOptions
                +
              • +
              +

              Returns HookReturn

              +
            • +
            +
          • +
          +
        • +
        +

        Returns void

        +
      • +
      +
      +
      + +

      Static beforeFind

      +
        +
      • beforeFind(name: string, fn: function): void
      • +
      • beforeFind(fn: function): void
      • +
      +
        +
      • + +
        +
        +

        A hook that is run before a find (select) query

        +
        +
        +

        Parameters

        +
          +
        • +
          name: string
          +
        • +
        • +
          fn: function
          +
          +

          A callback function that is called with options

          +
          +
            +
          • +
              +
            • (options: FindOptions): HookReturn
            • +
            +
              +
            • +

              Parameters

              +
                +
              • +
                options: FindOptions
                +
              • +
              +

              Returns HookReturn

              +
            • +
            +
          • +
          +
        • +
        +

        Returns void

        +
      • +
      • + +

        Parameters

        +
          +
        • +
          fn: function
          +
            +
          • +
              +
            • (options: FindOptions): HookReturn
            • +
            +
              +
            • +

              Parameters

              +
                +
              • +
                options: FindOptions
                +
              • +
              +

              Returns HookReturn

              +
            • +
            +
          • +
          +
        • +
        +

        Returns void

        +
      • +
      +
      +
      + +

      Static beforeFindAfterExpandIncludeAll

      +
        +
      • beforeFindAfterExpandIncludeAll(name: string, fn: function): void
      • +
      • beforeFindAfterExpandIncludeAll(fn: function): void
      • +
      +
        +
      • + +
        +
        +

        A hook that is run before a find (select) query, after any { include: {all: ...} } options are expanded

        +
        +
        +

        Parameters

        +
          +
        • +
          name: string
          +
        • +
        • +
          fn: function
          +
          +

          A callback function that is called with options

          +
          +
            +
          • +
              +
            • (options: FindOptions): HookReturn
            • +
            +
              +
            • +

              Parameters

              +
                +
              • +
                options: FindOptions
                +
              • +
              +

              Returns HookReturn

              +
            • +
            +
          • +
          +
        • +
        +

        Returns void

        +
      • +
      • + +

        Parameters

        +
          +
        • +
          fn: function
          +
            +
          • +
              +
            • (options: FindOptions): HookReturn
            • +
            +
              +
            • +

              Parameters

              +
                +
              • +
                options: FindOptions
                +
              • +
              +

              Returns HookReturn

              +
            • +
            +
          • +
          +
        • +
        +

        Returns void

        +
      • +
      +
      +
      + +

      Static beforeFindAfterOptions

      +
        +
      • beforeFindAfterOptions(name: string, fn: function): void
      • +
      • beforeFindAfterOptions(fn: function): HookReturn
      • +
      +
        +
      • + +
        +
        +

        A hook that is run before a find (select) query, after all option parsing is complete

        +
        +
        +

        Parameters

        +
          +
        • +
          name: string
          +
        • +
        • +
          fn: function
          +
          +

          A callback function that is called with options

          +
          +
            +
          • +
              +
            • (options: FindOptions): HookReturn
            • +
            +
              +
            • +

              Parameters

              +
                +
              • +
                options: FindOptions
                +
              • +
              +

              Returns HookReturn

              +
            • +
            +
          • +
          +
        • +
        +

        Returns void

        +
      • +
      • + +

        Parameters

        +
          +
        • +
          fn: function
          +
            +
          • +
              +
            • (options: FindOptions): void
            • +
            +
              +
            • +

              Parameters

              +
                +
              • +
                options: FindOptions
                +
              • +
              +

              Returns void

              +
            • +
            +
          • +
          +
        • +
        +

        Returns HookReturn

        +
      • +
      +
      +
      + +

      Static beforeSync

      +
        +
      • beforeSync(name: string, fn: function): void
      • +
      • beforeSync(fn: function): void
      • +
      +
        +
      • + +
        +
        +

        A hook that is run before Model.sync call

        +
        +
        +

        Parameters

        +
          +
        • +
          name: string
          +
        • +
        • +
          fn: function
          +
          +

          A callback function that is called with options passed to Model.sync

          +
          +
            +
          • +
              +
            • (options: SyncOptions): HookReturn
            • +
            +
              +
            • +

              Parameters

              +
                +
              • +
                options: SyncOptions
                +
              • +
              +

              Returns HookReturn

              +
            • +
            +
          • +
          +
        • +
        +

        Returns void

        +
      • +
      • + +

        Parameters

        +
          +
        • +
          fn: function
          +
            +
          • +
              +
            • (options: SyncOptions): HookReturn
            • +
            +
              +
            • +

              Parameters

              +
                +
              • +
                options: SyncOptions
                +
              • +
              +

              Returns HookReturn

              +
            • +
            +
          • +
          +
        • +
        +

        Returns void

        +
      • +
      +
      +
      + +

      Static beforeUpdate

      +
        +
      • beforeUpdate<M>(this: object & Model, name: string, fn: function): void
      • +
      • beforeUpdate<M>(this: object & Model, fn: function): void
      • +
      +
        +
      • + +
        +
        +

        A hook that is run before updating a single instance

        +
        +
        +

        Type parameters

        +
          +
        • +

          M: Model

          +
        • +
        +

        Parameters

        +
          +
        • +
          this: object & Model
          +
        • +
        • +
          name: string
          +
        • +
        • +
          fn: function
          +
          +

          A callback function that is called with instance, options

          +
          +
            +
          • +
              +
            • (instance: M, options: UpdateOptions): HookReturn
            • +
            +
              +
            • +

              Parameters

              +
                +
              • +
                instance: M
                +
              • +
              • +
                options: UpdateOptions
                +
              • +
              +

              Returns HookReturn

              +
            • +
            +
          • +
          +
        • +
        +

        Returns void

        +
      • +
      • + +

        Type parameters

        +
          +
        • +

          M: Model

          +
        • +
        +

        Parameters

        +
          +
        • +
          this: object & Model
          +
        • +
        • +
          fn: function
          +
            +
          • +
              +
            • (instance: M, options: UpdateOptions): HookReturn
            • +
            +
              +
            • +

              Parameters

              +
                +
              • +
                instance: M
                +
              • +
              • +
                options: UpdateOptions
                +
              • +
              +

              Returns HookReturn

              +
            • +
            +
          • +
          +
        • +
        +

        Returns void

        +
      • +
      +
      +
      + +

      Static beforeValidate

      +
        +
      • beforeValidate<M>(this: object & Model, name: string, fn: function): void
      • +
      • beforeValidate<M>(this: object & Model, fn: function): void
      • +
      +
        +
      • + +
        +
        +

        A hook that is run before validation

        +
        +
        +

        Type parameters

        +
          +
        • +

          M: Model

          +
        • +
        +

        Parameters

        +
          +
        • +
          this: object & Model
          +
        • +
        • +
          name: string
          +
        • +
        • +
          fn: function
          +
          +

          A callback function that is called with instance, options

          +
          +
            +
          • +
              +
            • (instance: M, options: ValidationOptions): HookReturn
            • +
            +
              +
            • +

              Parameters

              +
                +
              • +
                instance: M
                +
              • +
              • +
                options: ValidationOptions
                +
              • +
              +

              Returns HookReturn

              +
            • +
            +
          • +
          +
        • +
        +

        Returns void

        +
      • +
      • + +

        Type parameters

        +
          +
        • +

          M: Model

          +
        • +
        +

        Parameters

        +
          +
        • +
          this: object & Model
          +
        • +
        • +
          fn: function
          +
            +
          • +
              +
            • (instance: M, options: ValidationOptions): HookReturn
            • +
            +
              +
            • +

              Parameters

              +
                +
              • +
                instance: M
                +
              • +
              • +
                options: ValidationOptions
                +
              • +
              +

              Returns HookReturn

              +
            • +
            +
          • +
          +
        • +
        +

        Returns void

        +
      • +
      +
      +
      + +

      Static belongsTo

      +
        +
      • belongsTo<M, T>(this: ModelCtor<M>, target: ModelCtor<T>, options?: BelongsToOptions): BelongsTo<M, T>
      • +
      +
        +
      • + +
        +
        +

        Creates an association between this (the source) and the provided target. The foreign key is added on the + source.

        +
        +

        Example: Profile.belongsTo(User). This will add userId to the profile table.

        +
        +

        Type parameters

        +
          +
        • +

          M: Model

          +
        • +
        • +

          T: Model

          +
        • +
        +

        Parameters

        +
          +
        • +
          this: ModelCtor<M>
          +
        • +
        • +
          target: ModelCtor<T>
          +
          +

          The model that will be associated with hasOne relationship

          +
          +
        • +
        • +
          Optional options: BelongsToOptions
          +
          +

          Options for the association

          +
          +
        • +
        +

        Returns BelongsTo<M, T>

        +
      • +
      +
      +
      + +

      Static belongsToMany

      +
        +
      • belongsToMany<M, T>(this: ModelCtor<M>, target: ModelCtor<T>, options: BelongsToManyOptions): BelongsToMany<M, T>
      • +
      +
        +
      • + +
        +
        +

        Create an N:M association with a join table

        +
        +
        User.belongsToMany(Project)
        +Project.belongsToMany(User)
        +

        By default, the name of the join table will be source+target, so in this case projectsusers. This can be + overridden by providing either a string or a Model as through in the options.

        +

        If you use a through model with custom attributes, these attributes can be set when adding / setting new + associations in two ways. Consider users and projects from before with a join table that stores whether + the project has been started yet:

        +
        class UserProjects extends Model {}
        +UserProjects.init({
        +  started: Sequelize.BOOLEAN
        +}, { sequelize });
        +User.belongsToMany(Project, { through: UserProjects })
        +Project.belongsToMany(User, { through: UserProjects })
        +
        jan.addProject(homework, { started: false }) // The homework project is not started yet
        +jan.setProjects([makedinner, doshopping], { started: true}) // Both shopping and dinner has been started
        +

        If you want to set several target instances, but with different attributes you have to set the + attributes on the instance, using a property with the name of the through model:

        +
        p1.userprojects {
        +  started: true
        +}
        +user.setProjects([p1, p2], {started: false}) // The default value is false, but p1 overrides that.
        +

        Similarily, when fetching through a join table with custom attributes, these attributes will be + available as an object with the name of the through model.

        +
        user.getProjects().then(projects => {
        +  const p1 = projects[0]
        +  p1.userprojects.started // Is this project started yet?
        +})
        +
        +

        Type parameters

        +
          +
        • +

          M: Model

          +
        • +
        • +

          T: Model

          +
        • +
        +

        Parameters

        +
          +
        • +
          this: ModelCtor<M>
          +
        • +
        • +
          target: ModelCtor<T>
          +
          +

          The model that will be associated with hasOne relationship

          +
          +
        • +
        • +
          options: BelongsToManyOptions
          +
          +

          Options for the association

          +
          +
        • +
        +

        Returns BelongsToMany<M, T>

        +
      • +
      +
      +
      + +

      Static build

      +
        +
      • build<M>(this: object & Model, record?: undefined | object, options?: BuildOptions): M
      • +
      +
        +
      • + +
        +
        +

        Builds a new model instance. Values is an object of key value pairs, must be defined but can be empty.

        +
        +
        +

        Type parameters

        +
          +
        • +

          M: Model

          +
        • +
        +

        Parameters

        +
          +
        • +
          this: object & Model
          +
        • +
        • +
          Optional record: undefined | object
          +
        • +
        • +
          Optional options: BuildOptions
          +
        • +
        +

        Returns M

        +
      • +
      +
      +
      + +

      Static bulkBuild

      +
        +
      • bulkBuild<M>(this: object & Model, records: object[], options?: BuildOptions): M[]
      • +
      +
        +
      • + +
        +
        +

        Undocumented bulkBuild

        +
        +
        +

        Type parameters

        +
          +
        • +

          M: Model

          +
        • +
        +

        Parameters

        +
          +
        • +
          this: object & Model
          +
        • +
        • +
          records: object[]
          +
        • +
        • +
          Optional options: BuildOptions
          +
        • +
        +

        Returns M[]

        +
      • +
      +
      +
      + +

      Static bulkCreate

      +
        +
      • bulkCreate<M>(this: object & Model, records: object[], options?: BulkCreateOptions): Promise<M[]>
      • +
      +
        +
      • + +
        +
        +

        Create and insert multiple instances in bulk.

        +
        +

        The success handler is passed an array of instances, but please notice that these may not completely + represent the state of the rows in the DB. This is because MySQL and SQLite do not make it easy to + obtain + back automatically generated IDs and other default values in a way that can be mapped to multiple + records. To obtain Instances for the newly created values, you will need to query for them again.

        +
        +

        Type parameters

        +
          +
        • +

          M: Model

          +
        • +
        +

        Parameters

        +
          +
        • +
          this: object & Model
          +
        • +
        • +
          records: object[]
          +
          +

          List of objects (key/value pairs) to create instances from

          +
          +
        • +
        • +
          Optional options: BulkCreateOptions
          +
        • +
        +

        Returns Promise<M[]>

        +
      • +
      +
      +
      + +

      Static count

      +
        +
      • count(options?: CountOptions): Promise<number>
      • +
      +
        +
      • + +
        +
        +

        Count the number of records matching the provided where clause.

        +
        +

        If you provide an include option, the number of matching associations will be counted instead.

        +
        +

        Parameters

        +
          +
        • +
          Optional options: CountOptions
          +
        • +
        +

        Returns Promise<number>

        +
      • +
      +
      +
      + +

      Static create

      +
        +
      • create<M>(this: object & Model, values?: undefined | object, options?: CreateOptions): Promise<M>
      • +
      • create(values: object, options: CreateOptions & object): Promise<void>
      • +
      +
        +
      • + +
        +
        +

        Builds a new model instance and calls save on it.

        +
        +
        +

        Type parameters

        +
          +
        • +

          M: Model

          +
        • +
        +

        Parameters

        +
          +
        • +
          this: object & Model
          +
        • +
        • +
          Optional values: undefined | object
          +
        • +
        • +
          Optional options: CreateOptions
          +
        • +
        +

        Returns Promise<M>

        +
      • +
      • + +

        Parameters

        +
          +
        • +
          values: object
          +
        • +
        • +
          options: CreateOptions & object
          +
        • +
        +

        Returns Promise<void>

        +
      • +
      +
      +
      + +

      Static createRecord

      +
        +
      • createRecord(args?: FileArgs, commit?: undefined | false | true): File
      • +
      +
        +
      • + +

        Parameters

        +
          +
        • +
          Optional args: FileArgs
          +
        • +
        • +
          Optional commit: undefined | false | true
          +
        • +
        +

        Returns File

        +
      • +
      +
      +
      + +

      Static describe

      +
        +
      • describe(): Promise<object>
      • +
      +
        +
      • + +
        +
        +

        Run a describe query on the table. The result will be return to the listener as a hash of attributes and + their types.

        +
        +
        +

        Returns Promise<object>

        +
      • +
      +
      +
      + +

      Static destroy

      +
        +
      • destroy(options?: DestroyOptions): Promise<number>
      • +
      +
        +
      • + +
        +
        +

        Delete multiple instances, or set their deletedAt timestamp to the current time if paranoid is enabled.

        +
        +
        +

        Parameters

        +
          +
        • +
          Optional options: DestroyOptions
          +
        • +
        +

        Returns Promise<number>

        +

        Promise The number of destroyed rows

        +
      • +
      +
      +
      + +

      Static drop

      +
        +
      • drop(options?: DropOptions): Promise<void>
      • +
      +
        +
      • + +
        +
        +

        Drop the table represented by this Model

        +
        +
        +

        Parameters

        +
          +
        • +
          Optional options: DropOptions
          +
          +
          +
        • +
        +

        Returns Promise<void>

        +
      • +
      +
      +
      + +

      Static findAll

      +
        +
      • findAll<M>(this: object & Model, options?: FindOptions): Promise<M[]>
      • +
      +
        +
      • + +
        +
        +

        Search for multiple instances.

        +
        +

        Simple search using AND and =

        +
        Model.findAll({
        +  where: {
        +    attr1: 42,
        +    attr2: 'cake'
        +  }
        +})
        +
        WHERE attr1 = 42 AND attr2 = 'cake'
        +

        Using greater than, less than etc.

        +
        
        +Model.findAll({
        +  where: {
        +    attr1: {
        +      gt: 50
        +    },
        +    attr2: {
        +      lte: 45
        +    },
        +    attr3: {
        +      in: [1,2,3]
        +    },
        +    attr4: {
        +      ne: 5
        +    }
        +  }
        +})
        +
        WHERE attr1 > 50 AND attr2 <= 45 AND attr3 IN (1,2,3) AND attr4 != 5
        +

        Possible options are: [Op.ne], [Op.in], [Op.not], [Op.notIn], [Op.gte], [Op.gt], [Op.lte], [Op.lt], [Op.like], [Op.ilike]/[Op.iLike], [Op.notLike], +[Op.notILike], '..'/[Op.between], '!..'/[Op.notBetween], '&&'/[Op.overlap], '@>'/[Op.contains], '<@'/[Op.contained]

        +

        Queries using OR

        +
        Model.findAll({
        +  where: Sequelize.and(
        +    { name: 'a project' },
        +    Sequelize.or(
        +      { id: [1,2,3] },
        +      { id: { gt: 10 } }
        +    )
        +  )
        +})
        +
        WHERE name = 'a project' AND (id` IN (1,2,3) OR id > 10)
        +

        The success listener is called with an array of instances if the query succeeds.

        +
        +
        see
        +

        {Sequelize#query}

        +
        +
        +
        +

        Type parameters

        +
          +
        • +

          M: Model

          +
        • +
        +

        Parameters

        +
          +
        • +
          this: object & Model
          +
        • +
        • +
          Optional options: FindOptions
          +
        • +
        +

        Returns Promise<M[]>

        +
      • +
      +
      +
      + +

      Static findAndCountAll

      +
        +
      • findAndCountAll<M>(this: object & Model, options?: FindAndCountOptions): Promise<object>
      • +
      +
        +
      • + +
        +
        +

        Find all the rows matching your query, within a specified offset / limit, and get the total number of + rows matching your query. This is very usefull for paging

        +
        +
        Model.findAndCountAll({
        +  where: ...,
        +  limit: 12,
        +  offset: 12
        +}).then(result => {
        +  ...
        +})
        +

        In the above example, result.rows will contain rows 13 through 24, while result.count will return + the + total number of rows that matched your query.

        +

        When you add includes, only those which are required (either because they have a where clause, or + because + required is explicitly set to true on the include) will be added to the count part.

        +

        Suppose you want to find all users who have a profile attached:

        +
        User.findAndCountAll({
        +  include: [
        +     { model: Profile, required: true}
        +  ],
        +  limit 3
        +});
        +

        Because the include for Profile has required set it will result in an inner join, and only the users + who have a profile will be counted. If we remove required from the include, both users with and + without + profiles will be counted

        +
        +

        Type parameters

        +
          +
        • +

          M: Model

          +
        • +
        +

        Parameters

        +
          +
        • +
          this: object & Model
          +
        • +
        • +
          Optional options: FindAndCountOptions
          +
        • +
        +

        Returns Promise<object>

        +
      • +
      +
      +
      + +

      Static findByPk

      +
        +
      • findByPk<M>(this: object & Model, identifier?: Identifier, options?: FindOptions): Promise<M | null>
      • +
      • findByPk<M>(this: object & Model, identifier: Identifier, options: NonNullFindOptions): Promise<M>
      • +
      +
        +
      • + +
        +
        +

        Search for a single instance by its primary key. This applies LIMIT 1, so the listener will + always be called with a single instance.

        +
        +
        +

        Type parameters

        +
          +
        • +

          M: Model

          +
        • +
        +

        Parameters

        +
          +
        • +
          this: object & Model
          +
        • +
        • +
          Optional identifier: Identifier
          +
        • +
        • +
          Optional options: FindOptions
          +
        • +
        +

        Returns Promise<M | null>

        +
      • +
      • + +

        Type parameters

        +
          +
        • +

          M: Model

          +
        • +
        +

        Parameters

        +
          +
        • +
          this: object & Model
          +
        • +
        • +
          identifier: Identifier
          +
        • +
        • +
          options: NonNullFindOptions
          +
        • +
        +

        Returns Promise<M>

        +
      • +
      +
      +
      + +

      Static findOne

      +
        +
      • findOne<M>(this: object & Model, options?: FindOptions): Promise<M | null>
      • +
      • findOne<M>(this: object & Model, options: NonNullFindOptions): Promise<M>
      • +
      +
        +
      • + +
        +
        +

        Search for a single instance. This applies LIMIT 1, so the listener will always be called with a single + instance.

        +
        +
        +

        Type parameters

        +
          +
        • +

          M: Model

          +
        • +
        +

        Parameters

        +
          +
        • +
          this: object & Model
          +
        • +
        • +
          Optional options: FindOptions
          +
        • +
        +

        Returns Promise<M | null>

        +
      • +
      • + +

        Type parameters

        +
          +
        • +

          M: Model

          +
        • +
        +

        Parameters

        +
          +
        • +
          this: object & Model
          +
        • +
        • +
          options: NonNullFindOptions
          +
        • +
        +

        Returns Promise<M>

        +
      • +
      +
      +
      + +

      Static findOrBuild

      +
        +
      • findOrBuild<M>(this: object & Model, options: FindOrCreateOptions): Promise<[M, boolean]>
      • +
      +
        +
      • + +
        +
        +

        Find a row that matches the query, or build (but don't save) the row if none is found. + The successfull result of the promise will be (instance, initialized) - Make sure to use .then(([...]))

        +
        +
        +

        Type parameters

        +
          +
        • +

          M: Model

          +
        • +
        +

        Parameters

        +
          +
        • +
          this: object & Model
          +
        • +
        • +
          options: FindOrCreateOptions
          +
        • +
        +

        Returns Promise<[M, boolean]>

        +
      • +
      +
      +
      + +

      Static findOrCreate

      +
        +
      • findOrCreate<M>(this: object & Model, options: FindOrCreateOptions): Promise<[M, boolean]>
      • +
      +
        +
      • + +
        +
        +

        Find a row that matches the query, or build and save the row if none is found + The successful result of the promise will be (instance, created) - Make sure to use .then(([...]))

        +
        +

        If no transaction is passed in the options object, a new transaction will be created internally, to + prevent the race condition where a matching row is created by another connection after the find but + before the insert call. However, it is not always possible to handle this case in SQLite, specifically + if one transaction inserts and another tries to select before the first one has comitted. In this case, + an instance of sequelize.TimeoutError will be thrown instead. If a transaction is created, a savepoint + will be created instead, and any unique constraint violation will be handled internally.

        +
        +

        Type parameters

        +
          +
        • +

          M: Model

          +
        • +
        +

        Parameters

        +
          +
        • +
          this: object & Model
          +
        • +
        • +
          options: FindOrCreateOptions
          +
        • +
        +

        Returns Promise<[M, boolean]>

        +
      • +
      +
      +
      + +

      Static getTableName

      +
        +
      • getTableName(): string | object
      • +
      +
        +
      • + +
        +
        +

        Get the tablename of the model, taking schema into account. The method will return The name as a string + if the model has no schema, or an object with tableName, schema and delimiter properties.

        +
        +
        +

        Returns string + | + object +

        +
      • +
      +
      +
      + +

      Static hasHook

      +
        +
      • hasHook<K>(hookType: K): boolean
      • +
      +
        +
      • + +
        +
        +

        Check whether the mode has any hooks of this type

        +
        +
        +

        Type parameters

        +
          +
        • +

          K: keyof SequelizeHooks

          +
        • +
        +

        Parameters

        +
          +
        • +
          hookType: K
          +
        • +
        +

        Returns boolean

        +
      • +
      +
      +
      + +

      Static hasHooks

      +
        +
      • hasHooks<K>(hookType: K): boolean
      • +
      +
        +
      • + +

        Type parameters

        +
          +
        • +

          K: keyof SequelizeHooks

          +
        • +
        +

        Parameters

        +
          +
        • +
          hookType: K
          +
        • +
        +

        Returns boolean

        +
      • +
      +
      +
      + +

      Static hasMany

      +
        +
      • hasMany<M, T>(this: ModelCtor<M>, target: ModelCtor<T>, options?: HasManyOptions): HasMany<M, T>
      • +
      +
        +
      • + +
        +
        +

        Create an association that is either 1:m or n:m.

        +
        +
        // Create a 1:m association between user and project
        +User.hasMany(Project)
        +
        // Create a n:m association between user and project
        +User.hasMany(Project)
        +Project.hasMany(User)
        +

        By default, the name of the join table will be source+target, so in this case projectsusers. This can be + overridden by providing either a string or a Model as through in the options. If you use a through + model with custom attributes, these attributes can be set when adding / setting new associations in two + ways. Consider users and projects from before with a join table that stores whether the project has been + started yet:

        +
        class UserProjects extends Model {}
        +UserProjects.init({
        +  started: Sequelize.BOOLEAN
        +}, { sequelize })
        +User.hasMany(Project, { through: UserProjects })
        +Project.hasMany(User, { through: UserProjects })
        +
        jan.addProject(homework, { started: false }) // The homework project is not started yet
        +jan.setProjects([makedinner, doshopping], { started: true}) // Both shopping and dinner have been
        +started
        +

        If you want to set several target instances, but with different attributes you have to set the + attributes on the instance, using a property with the name of the through model:

        +
        p1.userprojects {
        +  started: true
        +}
        +user.setProjects([p1, p2], {started: false}) // The default value is false, but p1 overrides that.
        +

        Similarily, when fetching through a join table with custom attributes, these attributes will be + available as an object with the name of the through model.

        +
        user.getProjects().then(projects => {
        +  const p1 = projects[0]
        +  p1.userprojects.started // Is this project started yet?
        +})
        +
        +

        Type parameters

        +
          +
        • +

          M: Model

          +
        • +
        • +

          T: Model

          +
        • +
        +

        Parameters

        +
          +
        • +
          this: ModelCtor<M>
          +
        • +
        • +
          target: ModelCtor<T>
          +
          +

          The model that will be associated with hasOne relationship

          +
          +
        • +
        • +
          Optional options: HasManyOptions
          +
          +

          Options for the association

          +
          +
        • +
        +

        Returns HasMany<M, T>

        +
      • +
      +
      +
      + +

      Static hasOne

      +
        +
      • hasOne<M, T>(this: ModelCtor<M>, target: ModelCtor<T>, options?: HasOneOptions): HasOne<M, T>
      • +
      +
        +
      • + +
        +
        +

        Creates an association between this (the source) and the provided target. The foreign key is added + on the target.

        +
        +

        Example: User.hasOne(Profile). This will add userId to the profile table.

        +
        +

        Type parameters

        +
          +
        • +

          M: Model

          +
        • +
        • +

          T: Model

          +
        • +
        +

        Parameters

        +
          +
        • +
          this: ModelCtor<M>
          +
        • +
        • +
          target: ModelCtor<T>
          +
          +

          The model that will be associated with hasOne relationship

          +
          +
        • +
        • +
          Optional options: HasOneOptions
          +
          +

          Options for the association

          +
          +
        • +
        +

        Returns HasOne<M, T>

        +
      • +
      +
      +
      + +

      Static increment

      +
        +
      • increment<M, K>(this: object, field: K, options: IncrementDecrementOptionsWithBy): Promise<M>
      • +
      • increment<M, K>(this: object, fields: K[], options: IncrementDecrementOptionsWithBy): Promise<M>
      • +
      • increment<M, K>(this: object, fields: object, options: IncrementDecrementOptions): Promise<M>
      • +
      +
        +
      • + +
        +
        +

        Increments a single field.

        +
        +
        +

        Type parameters

        +
          +
        • +

          M: Model

          +
        • +
        • +

          K: keyof M

          +
        • +
        +

        Parameters

        +
          +
        • +
          this: object
          +
            +
          • +
            constructor: function
            +
              +
            • new __type(): M
            • +
            +
              +
            • + +

              Returns M

              +
            • +
          • +
          +
        • +
        • +
          field: K
          +
        • +
        • +
          options: IncrementDecrementOptionsWithBy
          +
        • +
        +

        Returns Promise<M>

        +
      • +
      • + +
        +
        +

        Increments multiple fields by the same value.

        +
        +
        +

        Type parameters

        +
          +
        • +

          M: Model

          +
        • +
        • +

          K: keyof M

          +
        • +
        +

        Parameters

        +
          +
        • +
          this: object
          +
            +
          • +
            constructor: function
            +
              +
            • new __type(): M
            • +
            +
              +
            • + +

              Returns M

              +
            • +
          • +
          +
        • +
        • +
          fields: K[]
          +
        • +
        • +
          options: IncrementDecrementOptionsWithBy
          +
        • +
        +

        Returns Promise<M>

        +
      • +
      • + +
        +
        +

        Increments multiple fields by different values.

        +
        +
        +

        Type parameters

        +
          +
        • +

          M: Model

          +
        • +
        • +

          K: keyof M

          +
        • +
        +

        Parameters

        +
          +
        • +
          this: object
          +
            +
          • +
            constructor: function
            +
              +
            • new __type(): M
            • +
            +
              +
            • + +

              Returns M

              +
            • +
          • +
          +
        • +
        • +
          fields: object
          +
            +
          +
        • +
        • +
          options: IncrementDecrementOptions
          +
        • +
        +

        Returns Promise<M>

        +
      • +
      +
      +
      + +

      Static init

      +
        +
      • init(attributes: ModelAttributes, options: InitOptions): void
      • +
      +
        +
      • + +
        +
        +

        Initialize a model, representing a table in the DB, with attributes and options.

        +
        +

        The table columns are define by the hash that is given as the second argument. Each attribute of the hash represents a column. A short table definition might look like this:

        +
        Project.init({
        +  columnA: {
        +    type: Sequelize.BOOLEAN,
        +    validate: {
        +      is: ['[a-z]','i'],        // will only allow letters
        +      max: 23,                  // only allow values <= 23
        +      isIn: {
        +        args: [['en', 'zh']],
        +        msg: "Must be English or Chinese"
        +      }
        +    },
        +    field: 'column_a'
        +    // Other attributes here
        +  },
        +  columnB: Sequelize.STRING,
        +  columnC: 'MY VERY OWN COLUMN TYPE'
        +}, {sequelize})
        +
        +sequelize.models.modelName // The model will now be available in models under the class name
        +

        As shown above, column definitions can be either strings, a reference to one of the datatypes that are predefined on the Sequelize constructor, or an object that allows you to specify both the type of the column, and other attributes such as default values, foreign key constraints and custom setters and getters.

        +

        For a list of possible data types, see http://docs.sequelizejs.com/en/latest/docs/models-definition/#data-types

        +

        For more about getters and setters, see http://docs.sequelizejs.com/en/latest/docs/models-definition/#getters-setters

        +

        For more about instance and class methods, see http://docs.sequelizejs.com/en/latest/docs/models-definition/#expansion-of-models

        +

        For more about validation, see http://docs.sequelizejs.com/en/latest/docs/models-definition/#validations

        +
        +

        Parameters

        +
          +
        • +
          attributes: ModelAttributes
          +
          +

          An object, where each attribute is a column of the table. Each column can be either a DataType, a + string or a type-description object, with the properties described below:

          +
          +
        • +
        • +
          options: InitOptions
          +
          +

          These options are merged with the default define options provided to the Sequelize constructor

          +
          +
        • +
        +

        Returns void

        +
      • +
      +
      +
      + +

      Static max

      +
        +
      • max<M, T>(this: object & Model, field: keyof M, options?: AggregateOptions<T>): Promise<T>
      • +
      +
        +
      • + +
        +
        +

        Find the maximum value of field

        +
        +
        +

        Type parameters

        +
          +
        • +

          M: Model

          +
        • +
        • +

          T: DataType | unknown

          +
        • +
        +

        Parameters

        +
          +
        • +
          this: object & Model
          +
        • +
        • +
          field: keyof M
          +
        • +
        • +
          Optional options: AggregateOptions<T>
          +
        • +
        +

        Returns Promise<T>

        +
      • +
      +
      +
      + +

      Static min

      +
        +
      • min<M, T>(this: object & Model, field: keyof M, options?: AggregateOptions<T>): Promise<T>
      • +
      +
        +
      • + +
        +
        +

        Find the minimum value of field

        +
        +
        +

        Type parameters

        +
          +
        • +

          M: Model

          +
        • +
        • +

          T: DataType | unknown

          +
        • +
        +

        Parameters

        +
          +
        • +
          this: object & Model
          +
        • +
        • +
          field: keyof M
          +
        • +
        • +
          Optional options: AggregateOptions<T>
          +
        • +
        +

        Returns Promise<T>

        +
      • +
      +
      +
      + +

      Static removeAttribute

      +
        +
      • removeAttribute(attribute: string): void
      • +
      +
        +
      • + +
        +
        +

        Remove attribute from model definition

        +
        +
        +

        Parameters

        +
          +
        • +
          attribute: string
          +
          +
          +
        • +
        +

        Returns void

        +
      • +
      +
      +
      + +

      Static removeHook

      +
        +
      • removeHook<C, K>(hookType: K, name: string): C
      • +
      +
        +
      • + +
        +
        +

        Remove hook from the model

        +
        +
        +

        Type parameters

        +
          +
        • +

          C: Hooks

          +
        • +
        • +

          K: keyof SequelizeHooks

          +
        • +
        +

        Parameters

        +
          +
        • +
          hookType: K
          +
        • +
        • +
          name: string
          +
        • +
        +

        Returns C

        +
      • +
      +
      +
      + +

      Static restore

      +
        +
      • restore(options?: RestoreOptions): Promise<void>
      • +
      +
        +
      • + +
        +
        +

        Restore multiple instances if paranoid is enabled.

        +
        +
        +

        Parameters

        +
          +
        • +
          Optional options: RestoreOptions
          +
        • +
        +

        Returns Promise<void>

        +
      • +
      +
      +
      + +

      Static schema

      +
        +
      • schema<M>(this: object & Model, schema: string, options?: SchemaOptions): object & Model
      • +
      +
        +
      • + +
        +
        +

        Apply a schema to this model. For postgres, this will actually place the schema in front of the table + name

        +
          +
        • "schema"."tableName", while the schema will be prepended to the table name for mysql and + sqlite - 'schema.tablename'.
        • +
        +
        +
        +

        Type parameters

        +
          +
        • +

          M: Model

          +
        • +
        +

        Parameters

        +
          +
        • +
          this: object & Model
          +
        • +
        • +
          schema: string
          +
          +

          The name of the schema

          +
          +
        • +
        • +
          Optional options: SchemaOptions
          +
          +
          +
        • +
        +

        Returns object + & + Model +

        +
      • +
      +
      +
      + +

      Static scope

      +
        +
      • scope<M>(this: M, options?: string | string[] | ScopeOptions | WhereAttributeHash): M
      • +
      +
        +
      • + +
        +
        +

        Apply a scope created in define to the model. First let's look at how to create scopes:

        +
        class MyModel extends Model {}
        +MyModel.init(attributes, {
        +  defaultScope: {
        +    where: {
        +      username: 'dan'
        +    },
        +    limit: 12
        +  },
        +  scopes: {
        +    isALie: {
        +      where: {
        +        stuff: 'cake'
        +      }
        +    },
        +    complexFunction(email, accessLevel) {
        +      return {
        +        where: {
        +          email: {
        +            [Op.like]: email
        +          },
        +          accesss_level {
        +            [Op.gte]: accessLevel
        +          }
        +        }
        +      }
        +    }
        +  },
        +  sequelize,
        +})
        +

        Now, since you defined a default scope, every time you do Model.find, the default scope is appended to + your query. Here's a couple of examples:

        +
        Model.findAll() // WHERE username = 'dan'
        +Model.findAll({ where: { age: { gt: 12 } } }) // WHERE age > 12 AND username = 'dan'
        +
        +

        To invoke scope functions you can do:

        +
        Model.scope({ method: ['complexFunction' 'dan@sequelize.com', 42]}).findAll()
        +// WHERE email like 'dan@sequelize.com%' AND access_level >= 42
        +
        +

        Type parameters

        +
          +
        • +

          M: object

          +
        • +
        +

        Parameters

        +
          +
        • +
          this: M
          +
        • +
        • +
          Optional options: string | string[] | ScopeOptions | WhereAttributeHash
          +
        • +
        +

        Returns M

        +

        Model A reference to the model, with the scope(s) applied. Calling scope again on the returned + model will clear the previous scope.

        +
      • +
      +
      +
      + +

      Static sum

      +
        +
      • sum<M, T>(this: object & Model, field: keyof M, options?: AggregateOptions<T>): Promise<number>
      • +
      +
        +
      • + +
        +
        +

        Find the sum of field

        +
        +
        +

        Type parameters

        +
          +
        • +

          M: Model

          +
        • +
        • +

          T: DataType | unknown

          +
        • +
        +

        Parameters

        +
          +
        • +
          this: object & Model
          +
        • +
        • +
          field: keyof M
          +
        • +
        • +
          Optional options: AggregateOptions<T>
          +
        • +
        +

        Returns Promise<number>

        +
      • +
      +
      +
      + +

      Static sync

      +
        +
      • sync(options?: SyncOptions): Promise<Model>
      • +
      +
        +
      • + +
        +
        +

        Sync this Model to the DB, that is create the table. Upon success, the callback will be called with the + model instance (this)

        +
        +
        +

        Parameters

        +
          +
        • +
          Optional options: SyncOptions
          +
        • +
        +

        Returns Promise<Model>

        +
      • +
      +
      +
      + +

      Static truncate

      +
        +
      • truncate(options?: TruncateOptions): Promise<void>
      • +
      +
        +
      • + +
        +
        +

        Truncate all instances of the model. This is a convenient method for Model.destroy({ truncate: true }).

        +
        +
        +

        Parameters

        +
          +
        • +
          Optional options: TruncateOptions
          +
        • +
        +

        Returns Promise<void>

        +
      • +
      +
      +
      + +

      Static unscoped

      +
        +
      • unscoped<M>(this: M): M
      • +
      +
        +
      • + +
        +
        +

        Unscope the model

        +
        +
        +

        Type parameters

        +
          +
        • +

          M: Model

          +
        • +
        +

        Parameters

        +
          +
        • +
          this: M
          +
        • +
        +

        Returns M

        +
      • +
      +
      +
      + +

      Static update

      +
        +
      • update<M>(this: object & Model, values: object, options: UpdateOptions): Promise<[number, M[]]>
      • +
      +
        +
      • + +
        +
        +

        Update multiple instances that match the where options. The promise returns an array with one or two + elements. The first element is always the number of affected rows, while the second element is the actual + affected rows (only supported in postgres with options.returning true.)

        +
        +
        +

        Type parameters

        +
          +
        • +

          M: Model

          +
        • +
        +

        Parameters

        +
          +
        • +
          this: object & Model
          +
        • +
        • +
          values: object
          +
        • +
        • +
          options: UpdateOptions
          +
        • +
        +

        Returns Promise<[number, M[]]>

        +
      • +
      +
      +
      + +

      Static upsert

      +
        +
      • upsert<M>(this: object & Model, values: object, options?: UpsertOptions): Promise<boolean>
      • +
      +
        +
      • + +
        +
        +

        Insert or update a single row. An update will be executed if a row which matches the supplied values on + either the primary key or a unique key is found. Note that the unique index must be defined in your + sequelize model and not just in the table. Otherwise you may experience a unique constraint violation, + because sequelize fails to identify the row that should be updated.

        +
        +

        Implementation details:

        +
          +
        • MySQL - Implemented as a single query INSERT values ON DUPLICATE KEY UPDATE values
        • +
        • PostgreSQL - Implemented as a temporary function with exception handling: INSERT EXCEPTION WHEN + unique_constraint UPDATE
        • +
        • SQLite - Implemented as two queries INSERT; UPDATE. This means that the update is executed + regardless + of whether the row already existed or not
        • +
        +

        Note that SQLite returns undefined for created, no matter if the row was created or updated. This is + because SQLite always runs INSERT OR IGNORE + UPDATE, in a single query, so there is no way to know + whether the row was inserted or not.

        +
        +

        Type parameters

        +
          +
        • +

          M: Model

          +
        • +
        +

        Parameters

        +
          +
        • +
          this: object & Model
          +
        • +
        • +
          values: object
          +
        • +
        • +
          Optional options: UpsertOptions
          +
        • +
        +

        Returns Promise<boolean>

        +
      • +
      +
      +
      +
      + +
      +
      +
      +
      +

      Legend

      +
      +
        +
      • Module
      • +
      • Object literal
      • +
      • Variable
      • +
      • Function
      • +
      • Function with type parameter
      • +
      • Index signature
      • +
      • Type alias
      • +
      +
        +
      • Enumeration
      • +
      • Enumeration member
      • +
      • Property
      • +
      • Method
      • +
      +
        +
      • Interface
      • +
      • Interface with type parameter
      • +
      • Constructor
      • +
      • Property
      • +
      • Method
      • +
      • Index signature
      • +
      +
        +
      • Class
      • +
      • Class with type parameter
      • +
      • Constructor
      • +
      • Property
      • +
      • Method
      • +
      • Accessor
      • +
      • Index signature
      • +
      +
        +
      • Inherited constructor
      • +
      • Inherited property
      • +
      • Inherited method
      • +
      • Inherited accessor
      • +
      +
        +
      • Protected property
      • +
      • Protected method
      • +
      • Protected accessor
      • +
      +
        +
      • Private property
      • +
      • Private method
      • +
      • Private accessor
      • +
      +
        +
      • Static property
      • +
      • Static method
      • +
      +
      +
      +
      +
      +

      Generated using TypeDoc

      +
      +
      + + + + \ No newline at end of file diff --git a/docs/classes/_core_.group.html b/docs/classes/_core_.group.html index 8f0feab..cf90a7c 100644 --- a/docs/classes/_core_.group.html +++ b/docs/classes/_core_.group.html @@ -267,7 +267,7 @@

      id

      id: number
      @@ -277,7 +277,7 @@

      info

      info: string
      @@ -303,7 +303,7 @@

      name

      name: string
      @@ -1294,7 +1294,7 @@

      toJSON

      Returns object @@ -5693,6 +5693,9 @@

      Returns Promise "factory" +
    • + "file" +
    • "index"
    • @@ -5739,6 +5742,9 @@

      Returns Promise Auth +
    • + File +
    • diff --git a/docs/classes/_exception_.httpexception.html b/docs/classes/_exception_.httpexception.html index 6b70f4c..6c975f0 100644 --- a/docs/classes/_exception_.httpexception.html +++ b/docs/classes/_exception_.httpexception.html @@ -132,6 +132,9 @@

      Hierarchy

    • RefreshException
    • +
    • + FileTooLargeException +
    @@ -176,7 +179,7 @@

    constructor

  • @@ -208,7 +211,7 @@

    code

    code: number = 500
    @@ -223,7 +226,7 @@

    errorCode

    errorCode: number = 999
    @@ -235,10 +238,10 @@

    errorCode

    fields

    -
    fields: string[] = ["msg", "errorCode"]
    +
    fields: string[] = ['msg', 'errorCode']
    @@ -259,7 +262,7 @@

    msg

    msg: any = "服务器未知错误"
    @@ -333,6 +336,9 @@

    Static Error

  • "factory"
  • +
  • + "file" +
  • "index"
  • @@ -385,6 +391,9 @@

    Static Error

  • Failed
  • +
  • + FileTooLargeException +
  • Forbidden
  • diff --git a/docs/classes/_exception_.invalidtokenexception.html b/docs/classes/_exception_.invalidtokenexception.html index 04a8362..b0b55d1 100644 --- a/docs/classes/_exception_.invalidtokenexception.html +++ b/docs/classes/_exception_.invalidtokenexception.html @@ -127,7 +127,7 @@

    constructor

    Parameters

    @@ -150,7 +150,7 @@

    code

    @@ -161,18 +161,18 @@

    errorCode

    fields

    -
    fields: string[] = ["msg", "errorCode"]
    +
    fields: string[] = ['msg', 'errorCode']
    @@ -194,7 +194,7 @@

    msg

    @@ -253,6 +253,9 @@

    Optional stack

  • "factory"
  • +
  • + "file" +
  • "index"
  • @@ -305,6 +308,9 @@

    Optional stack

  • Failed
  • +
  • + FileTooLargeException +
  • Forbidden
  • diff --git a/docs/classes/_exception_.methodnotallowed.html b/docs/classes/_exception_.methodnotallowed.html index 550c2b1..7882e51 100644 --- a/docs/classes/_exception_.methodnotallowed.html +++ b/docs/classes/_exception_.methodnotallowed.html @@ -127,7 +127,7 @@

    constructor

    Parameters

    @@ -150,7 +150,7 @@

    code

    @@ -161,18 +161,18 @@

    errorCode

    fields

    -
    fields: string[] = ["msg", "errorCode"]
    +
    fields: string[] = ['msg', 'errorCode']
    @@ -194,7 +194,7 @@

    msg

    @@ -253,6 +253,9 @@

    Optional stack

  • "factory"
  • +
  • + "file" +
  • "index"
  • @@ -305,6 +308,9 @@

    Optional stack

  • Failed
  • +
  • + FileTooLargeException +
  • Forbidden
  • diff --git a/docs/classes/_exception_.notfound.html b/docs/classes/_exception_.notfound.html index ba54ec4..cde0a2a 100644 --- a/docs/classes/_exception_.notfound.html +++ b/docs/classes/_exception_.notfound.html @@ -127,7 +127,7 @@

    constructor

    Parameters

    @@ -150,7 +150,7 @@

    code

    @@ -161,18 +161,18 @@

    errorCode

    fields

    -
    fields: string[] = ["msg", "errorCode"]
    +
    fields: string[] = ['msg', 'errorCode']
    @@ -194,7 +194,7 @@

    msg

    @@ -253,6 +253,9 @@

    Optional stack

  • "factory"
  • +
  • + "file" +
  • "index"
  • @@ -305,6 +308,9 @@

    Optional stack

  • Failed
  • +
  • + FileTooLargeException +
  • Forbidden
  • diff --git a/docs/classes/_exception_.parametersexception.html b/docs/classes/_exception_.parametersexception.html index 4c95c48..a571e83 100644 --- a/docs/classes/_exception_.parametersexception.html +++ b/docs/classes/_exception_.parametersexception.html @@ -127,7 +127,7 @@

    constructor

    Parameters

    @@ -150,7 +150,7 @@

    code

    @@ -161,18 +161,18 @@

    errorCode

    fields

    -
    fields: string[] = ["msg", "errorCode"]
    +
    fields: string[] = ['msg', 'errorCode']
    @@ -194,7 +194,7 @@

    msg

    @@ -253,6 +253,9 @@

    Optional stack

  • "factory"
  • +
  • + "file" +
  • "index"
  • @@ -305,6 +308,9 @@

    Optional stack

  • Failed
  • +
  • + FileTooLargeException +
  • Forbidden
  • diff --git a/docs/classes/_exception_.refreshexception.html b/docs/classes/_exception_.refreshexception.html index e436966..8fda888 100644 --- a/docs/classes/_exception_.refreshexception.html +++ b/docs/classes/_exception_.refreshexception.html @@ -127,7 +127,7 @@

    constructor

    Parameters

    @@ -150,7 +150,7 @@

    code

    @@ -161,18 +161,18 @@

    errorCode

    fields

    -
    fields: string[] = ["msg", "errorCode"]
    +
    fields: string[] = ['msg', 'errorCode']
    @@ -194,7 +194,7 @@

    msg

    @@ -253,6 +253,9 @@

    Optional stack

  • "factory"
  • +
  • + "file" +
  • "index"
  • @@ -305,6 +308,9 @@

    Optional stack

  • Failed
  • +
  • + FileTooLargeException +
  • Forbidden
  • diff --git a/docs/classes/_exception_.repeatexception.html b/docs/classes/_exception_.repeatexception.html index 6086366..81251fa 100644 --- a/docs/classes/_exception_.repeatexception.html +++ b/docs/classes/_exception_.repeatexception.html @@ -127,7 +127,7 @@

    constructor

    Parameters

    @@ -150,7 +150,7 @@

    code

    @@ -161,18 +161,18 @@

    errorCode

    fields

    -
    fields: string[] = ["msg", "errorCode"]
    +
    fields: string[] = ['msg', 'errorCode']
    @@ -194,7 +194,7 @@

    msg

    @@ -253,6 +253,9 @@

    Optional stack

  • "factory"
  • +
  • + "file" +
  • "index"
  • @@ -305,6 +308,9 @@

    Optional stack

  • Failed
  • +
  • + FileTooLargeException +
  • Forbidden
  • diff --git a/docs/classes/_exception_.success.html b/docs/classes/_exception_.success.html index 9b3a93b..59dc5d0 100644 --- a/docs/classes/_exception_.success.html +++ b/docs/classes/_exception_.success.html @@ -127,7 +127,7 @@

    constructor

    Parameters

    @@ -150,7 +150,7 @@

    code

    @@ -161,18 +161,18 @@

    errorCode

    fields

    -
    fields: string[] = ["msg", "errorCode"]
    +
    fields: string[] = ['msg', 'errorCode']
    @@ -194,7 +194,7 @@

    msg

    @@ -253,6 +253,9 @@

    Optional stack

  • "factory"
  • +
  • + "file" +
  • "index"
  • @@ -305,6 +308,9 @@

    Optional stack

  • Failed
  • +
  • + FileTooLargeException +
  • Forbidden
  • diff --git a/docs/classes/_exception_.unknownexception.html b/docs/classes/_exception_.unknownexception.html index 5d0e0d0..a193bfe 100644 --- a/docs/classes/_exception_.unknownexception.html +++ b/docs/classes/_exception_.unknownexception.html @@ -127,7 +127,7 @@

    constructor

    Parameters

    @@ -150,7 +150,7 @@

    code

    @@ -161,18 +161,18 @@

    errorCode

    fields

    -
    fields: string[] = ["msg", "errorCode"]
    +
    fields: string[] = ['msg', 'errorCode']
    @@ -194,7 +194,7 @@

    msg

    @@ -253,6 +253,9 @@

    Optional stack

  • "factory"
  • +
  • + "file" +
  • "index"
  • @@ -305,6 +308,9 @@

    Optional stack

  • Failed
  • +
  • + FileTooLargeException +
  • Forbidden
  • diff --git a/docs/classes/_extended_validator_.extendedvalidator.html b/docs/classes/_extended_validator_.extendedvalidator.html index 72a3ef9..8ab5ba6 100644 --- a/docs/classes/_extended_validator_.extendedvalidator.html +++ b/docs/classes/_extended_validator_.extendedvalidator.html @@ -451,7 +451,7 @@

    hasProperty

  • @@ -1038,7 +1038,7 @@

    isFloat

  • @@ -1075,7 +1075,7 @@

    isFloat2

  • @@ -1453,7 +1453,7 @@

    isInt2

  • @@ -1490,7 +1490,7 @@

    isInt3

  • @@ -2445,7 +2445,7 @@

    objPropertiesIsNotEmpty

  • @@ -2479,7 +2479,7 @@

    objPropertyIsNotEmpty

  • @@ -2513,7 +2513,7 @@

    toBoolean

  • @@ -2544,7 +2544,7 @@

    toDate

  • @@ -2575,7 +2575,7 @@

    toFloat

  • @@ -2606,7 +2606,7 @@

    toInt

  • @@ -2875,6 +2875,9 @@

    Returns boolean "factory"

  • +
  • + "file" +
  • "index"
  • diff --git a/docs/classes/_file_.uploader.html b/docs/classes/_file_.uploader.html new file mode 100644 index 0000000..704aecd --- /dev/null +++ b/docs/classes/_file_.uploader.html @@ -0,0 +1,444 @@ + + + + + + Uploader | lin-mizar + + + + + +
    +
    +
    +
    + +
    +
    + Options +
    +
    + All +
      +
    • Public
    • +
    • Public/Protected
    • +
    • All
    • +
    +
    + + + + + + +
    +
    + Menu +
    +
    +
    +
    +
    +
    + +

    Class Uploader

    +
    +
    +
    +
    +
    +
    +
    +
    +
    +

    上传文件类,所有文件上传的基类

    +
    +
    +
    +
    +

    Hierarchy

    +
      +
    • + Uploader +
    • +
    +
    +
    +

    Index

    +
    +
    +
    +

    Constructors

    + +
    +
    +

    Properties

    + +
    +
    +

    Methods

    + +
    +
    +
    +
    +
    +

    Constructors

    +
    + +

    constructor

    +
      +
    • new Uploader(storeDir?: undefined | string): Uploader
    • +
    +
      +
    • + +

      Parameters

      +
        +
      • +
        Optional storeDir: undefined | string
        +
      • +
      +

      Returns Uploader

      +
    • +
    +
    +
    +
    +

    Properties

    +
    + +

    Private storeDir

    +
    storeDir: string | undefined
    + +
    +
    +
    +

    Methods

    +
    + +

    generateName

    +
      +
    • generateName(filename: string): string
    • +
    +
      +
    • + +
      +
      +

      生成文件名

      +
      +
      +

      Parameters

      +
        +
      • +
        filename: string
        +
        +

        文件名

        +
        +
      • +
      +

      Returns string

      +
    • +
    +
    +
    + +

    getExactStoreDir

    +
      +
    • getExactStoreDir(): string
    • +
    +
      +
    • + +
      +
      +

      获得确切的保存路径

      +
      +
      +

      Returns string

      +
    • +
    +
    +
    + +

    getStorePath

    +
      +
    • getStorePath(filename: string): string
    • +
    +
      +
    • + +
      +
      +

      获得保存的路径名

      +
      +
      +

      Parameters

      +
        +
      • +
        filename: string
        +
        +

        文件名

        +
        +
      • +
      +

      Returns string

      +
    • +
    +
    +
    + +

    upload

    +
      +
    • upload(files: any[]): void
    • +
    +
      +
    • + +
      +
      +

      处理文件流Stream

      +
      +
      +

      Parameters

      +
        +
      • +
        files: any[]
        +
      • +
      +

      Returns void

      +
    • +
    +
    +
    +
    + +
    +
    +
    +
    +

    Legend

    +
    +
      +
    • Module
    • +
    • Object literal
    • +
    • Variable
    • +
    • Function
    • +
    • Function with type parameter
    • +
    • Index signature
    • +
    • Type alias
    • +
    +
      +
    • Enumeration
    • +
    • Enumeration member
    • +
    • Property
    • +
    • Method
    • +
    +
      +
    • Interface
    • +
    • Interface with type parameter
    • +
    • Constructor
    • +
    • Property
    • +
    • Method
    • +
    • Index signature
    • +
    +
      +
    • Class
    • +
    • Class with type parameter
    • +
    • Constructor
    • +
    • Property
    • +
    • Method
    • +
    • Accessor
    • +
    • Index signature
    • +
    +
      +
    • Inherited constructor
    • +
    • Inherited property
    • +
    • Inherited method
    • +
    • Inherited accessor
    • +
    +
      +
    • Protected property
    • +
    • Protected method
    • +
    • Protected accessor
    • +
    +
      +
    • Private property
    • +
    • Private method
    • +
    • Private accessor
    • +
    +
      +
    • Static property
    • +
    • Static method
    • +
    +
    +
    +
    +
    +

    Generated using TypeDoc

    +
    +
    + + + + \ No newline at end of file diff --git a/docs/classes/_jwt_.token.html b/docs/classes/_jwt_.token.html index e9ee8ce..fed5f60 100644 --- a/docs/classes/_jwt_.token.html +++ b/docs/classes/_jwt_.token.html @@ -99,12 +99,12 @@

    Constructors

  • constructor
  • -
    +

    Properties

    @@ -131,7 +131,7 @@

    constructor

  • @@ -171,15 +171,15 @@

    Returns +

    Properties

    -
    +
    -

    Private accessExp

    +

    accessExp

    accessExp: number = 60 * 60
    @@ -188,13 +188,13 @@

    Private accessExp

  • -
    +
    -

    Private refreshExp

    +

    refreshExp

    refreshExp: number = 60 * 60 * 24 * 30 * 3
    @@ -203,13 +203,13 @@

    Private refreshExp

    -
    +
    -

    Private secret

    +

    secret

    secret: string | undefined
    @@ -231,7 +231,7 @@

    createAccessToken

  • @@ -262,7 +262,7 @@

    createRefreshToken

  • @@ -293,7 +293,7 @@

    initApp

  • @@ -330,7 +330,7 @@

    verifyToken

  • @@ -385,6 +385,9 @@

    Returns any "factory"

  • +
  • + "file" +
  • "index"
  • @@ -436,13 +439,13 @@

    Returns any constructor -
  • +
  • accessExp
  • -
  • +
  • refreshExp
  • -
  • +
  • secret
  • @@ -470,6 +473,12 @@

    Returns any checkUserIsActive

  • +
  • + createAccessToken +
  • +
  • + createRefreshToken +
  • getTokens
  • @@ -488,6 +497,12 @@

    Returns any refreshTokenRequiredWithUnifyException +
  • + verifyAccessToken +
  • +
  • + verifyRefreshToken +
  • diff --git a/docs/classes/_lin_router_.linrouter.html b/docs/classes/_lin_router_.linrouter.html index fbcf7d4..462f616 100644 --- a/docs/classes/_lin_router_.linrouter.html +++ b/docs/classes/_lin_router_.linrouter.html @@ -902,7 +902,7 @@

    linDelete

  • Parameters

    @@ -934,7 +934,7 @@

    linGet

  • Parameters

    @@ -966,7 +966,7 @@

    linHead

  • Parameters

    @@ -998,7 +998,7 @@

    linOption

  • Parameters

    @@ -1030,7 +1030,7 @@

    linPatch

  • Parameters

    @@ -1062,7 +1062,7 @@

    linPost

  • Parameters

    @@ -1094,7 +1094,7 @@

    linPut

  • Parameters

    @@ -2270,6 +2270,9 @@

    Returns string "factory"

  • +
  • + "file" +
  • "index"
  • diff --git a/docs/classes/_lin_router_.linrouter.layer.html b/docs/classes/_lin_router_.linrouter.layer.html index 31be492..ea7464a 100644 --- a/docs/classes/_lin_router_.linrouter.layer.html +++ b/docs/classes/_lin_router_.linrouter.layer.html @@ -459,6 +459,9 @@

    Returns string "factory" +
  • + "file" +
  • "index"
  • diff --git a/docs/classes/_lin_router_.linrouter.paramname.html b/docs/classes/_lin_router_.linrouter.paramname.html index 0e8e9ee..66d27d1 100644 --- a/docs/classes/_lin_router_.linrouter.paramname.html +++ b/docs/classes/_lin_router_.linrouter.paramname.html @@ -214,6 +214,9 @@

    repeat

  • "factory"
  • +
  • + "file" +
  • "index"
  • diff --git a/docs/classes/_lin_validator_.linvalidator.html b/docs/classes/_lin_validator_.linvalidator.html index 5cce2dd..99a4dc9 100644 --- a/docs/classes/_lin_validator_.linvalidator.html +++ b/docs/classes/_lin_validator_.linvalidator.html @@ -121,7 +121,7 @@

    alias

    alias: any
    @@ -136,7 +136,7 @@

    data

    data: any
    @@ -151,7 +151,7 @@

    errors

    errors: any[] = []
    @@ -166,7 +166,7 @@

    parsed

    parsed: any
    @@ -188,7 +188,7 @@

    Private checkRules

  • Returns Promise<boolean>

    @@ -205,7 +205,7 @@

    Private findInData

  • Parameters

    @@ -228,7 +228,7 @@

    get

  • @@ -265,7 +265,7 @@

    Private getValidateFu
  • @@ -296,7 +296,7 @@

    Private isOptional

  • Parameters

    @@ -319,7 +319,7 @@

    Private replace

  • Parameters

    @@ -342,7 +342,7 @@

    validate

  • @@ -401,6 +401,9 @@

    Returns Promise "factory"

  • +
  • + "file" +
  • "index"
  • diff --git a/docs/classes/_lin_validator_.rule.html b/docs/classes/_lin_validator_.rule.html index d723e05..877bd1a 100644 --- a/docs/classes/_lin_validator_.rule.html +++ b/docs/classes/_lin_validator_.rule.html @@ -127,7 +127,7 @@

    constructor

  • Parameters

    @@ -155,7 +155,7 @@

    defaultValue

    defaultValue: any
  • @@ -165,7 +165,7 @@

    message

    message: string
    @@ -175,7 +175,7 @@

    optional

    optional: boolean = false
    @@ -185,7 +185,7 @@

    options

    options: any
    @@ -195,7 +195,7 @@

    parsedValue

    parsedValue: any
    @@ -205,7 +205,7 @@

    rawValue

    rawValue: any
    @@ -215,7 +215,7 @@

    validateFunction

    validateFunction: string | Function
    @@ -232,7 +232,7 @@

    validate

  • Parameters

    @@ -277,6 +277,9 @@

    Returns any "factory"

  • +
  • + "file" +
  • "index"
  • diff --git a/docs/classes/_loader_.loader.html b/docs/classes/_loader_.loader.html index 2b6cafb..71743d3 100644 --- a/docs/classes/_loader_.loader.html +++ b/docs/classes/_loader_.loader.html @@ -128,7 +128,7 @@

    constructor

  • Parameters

    @@ -153,7 +153,7 @@

    Private app

    app: Application
    @@ -163,7 +163,7 @@

    mainRouter

    mainRouter: Router | undefined
    @@ -173,7 +173,7 @@

    pluginPath

    pluginPath: __type
    @@ -183,7 +183,7 @@

    plugins

    plugins: object
    @@ -205,7 +205,7 @@

    loadConfig

  • @@ -239,7 +239,7 @@

    loadMainApi

  • @@ -267,7 +267,7 @@

    loadPlugin

  • @@ -298,7 +298,7 @@

    loadPlugins

  • @@ -342,6 +342,9 @@

    Returns void "factory"

  • +
  • + "file" +
  • "index"
  • diff --git a/docs/classes/_mixin_.jsonmixin.html b/docs/classes/_mixin_.jsonmixin.html index bdd62ae..c44732a 100644 --- a/docs/classes/_mixin_.jsonmixin.html +++ b/docs/classes/_mixin_.jsonmixin.html @@ -110,7 +110,7 @@

    Private fields

    fields: string[] | undefined
    @@ -146,6 +146,9 @@

    Private fields

  • "factory"
  • +
  • + "file" +
  • "index"
  • diff --git a/docs/classes/_plugin_.plugin.html b/docs/classes/_plugin_.plugin.html index 756cc48..8820527 100644 --- a/docs/classes/_plugin_.plugin.html +++ b/docs/classes/_plugin_.plugin.html @@ -126,7 +126,7 @@

    constructor

  • Parameters

    @@ -148,7 +148,7 @@

    controllers

    controllers: object
    @@ -168,7 +168,7 @@

    models

    models: object
    @@ -188,7 +188,7 @@

    name

    name: string
    @@ -210,7 +210,7 @@

    addController

  • @@ -247,7 +247,7 @@

    addModel

  • @@ -284,7 +284,7 @@

    getModel

  • @@ -337,6 +337,9 @@

    Returns any "factory"

  • +
  • + "file" +
  • "index"
  • diff --git a/docs/classes/_sse_.messagebroker.html b/docs/classes/_sse_.messagebroker.html index fa236bd..335a376 100644 --- a/docs/classes/_sse_.messagebroker.html +++ b/docs/classes/_sse_.messagebroker.html @@ -133,7 +133,7 @@

    constructor

  • @@ -165,7 +165,7 @@

    Private buffer

    buffer: string[]
    @@ -175,7 +175,7 @@

    Private defaultId

    defaultId: number
    @@ -185,7 +185,7 @@

    messages

    messages: string[] = []
    @@ -200,7 +200,7 @@

    Private retry

    retry: number | undefined
    @@ -217,7 +217,7 @@

    addMessage

  • @@ -260,7 +260,7 @@

    existMessage

  • @@ -282,7 +282,7 @@

    flushBuffer

  • @@ -304,7 +304,7 @@

    heartbeat

  • @@ -338,7 +338,7 @@

    increaseId

  • @@ -360,7 +360,7 @@

    joinBuffer

  • @@ -382,7 +382,7 @@

    pop

  • @@ -404,7 +404,7 @@

    resetEventId

  • @@ -426,7 +426,7 @@

    setEventId

  • @@ -457,7 +457,7 @@

    setRetry

  • @@ -510,6 +510,9 @@

    Returns void "factory"

  • +
  • + "file" +
  • "index"
  • diff --git a/docs/classes/_sse_.sse.html b/docs/classes/_sse_.sse.html index 3835d11..88b92a1 100644 --- a/docs/classes/_sse_.sse.html +++ b/docs/classes/_sse_.sse.html @@ -179,7 +179,7 @@

    constructor

    Parameters

    @@ -440,7 +440,7 @@

    _transform

    Parameters

    @@ -2699,6 +2699,9 @@

    Returns number "factory" +
  • + "file" +
  • "index"
  • diff --git a/docs/classes/_sse_.subscription.html b/docs/classes/_sse_.subscription.html index 18dae20..7b4547f 100644 --- a/docs/classes/_sse_.subscription.html +++ b/docs/classes/_sse_.subscription.html @@ -159,7 +159,7 @@

    constructor

    Parameters

    @@ -214,7 +214,7 @@

    value

    value: number
    @@ -306,7 +306,7 @@

    _read

    Returns void

    @@ -2286,6 +2286,9 @@

    Returns number "factory" +
  • + "file" +
  • "index"
  • diff --git a/docs/enums/_enums_.tokentype.html b/docs/enums/_enums_.tokentype.html index 300a2e0..c742e3a 100644 --- a/docs/enums/_enums_.tokentype.html +++ b/docs/enums/_enums_.tokentype.html @@ -100,7 +100,7 @@

    ACCESS

    ACCESS: = "access"
    @@ -110,7 +110,7 @@

    REFRESH

    REFRESH: = "refresh"
    @@ -146,6 +146,9 @@

    REFRESH

  • "factory"
  • +
  • + "file" +
  • "index"
  • diff --git a/docs/enums/_enums_.useractive.html b/docs/enums/_enums_.useractive.html index 784e78e..2e5ec36 100644 --- a/docs/enums/_enums_.useractive.html +++ b/docs/enums/_enums_.useractive.html @@ -100,7 +100,7 @@

    ACTIVE

    ACTIVE: = 1
    @@ -110,7 +110,7 @@

    NOT_ACTIVE

    NOT_ACTIVE: = 2
    @@ -146,6 +146,9 @@

    NOT_ACTIVE

  • "factory"
  • +
  • + "file" +
  • "index"
  • diff --git a/docs/enums/_enums_.useradmin.html b/docs/enums/_enums_.useradmin.html index f633047..4e3a2d8 100644 --- a/docs/enums/_enums_.useradmin.html +++ b/docs/enums/_enums_.useradmin.html @@ -100,7 +100,7 @@

    ADMIN

    ADMIN: = 2
    @@ -110,7 +110,7 @@

    COMMON

    COMMON: = 1
    @@ -146,6 +146,9 @@

    COMMON

  • "factory"
  • +
  • + "file" +
  • "index"
  • diff --git a/docs/globals.html b/docs/globals.html index c64bbdc..98bb8ce 100644 --- a/docs/globals.html +++ b/docs/globals.html @@ -78,6 +78,7 @@

    External modules

  • "extend"
  • "extended-validator"
  • "factory"
  • +
  • "file"
  • "index"
  • "interface"
  • "jwt"
  • @@ -127,6 +128,9 @@

    External modules

  • "factory"
  • +
  • + "file" +
  • "index"
  • diff --git a/docs/index.html b/docs/index.html index e2d89b1..edce02b 100644 --- a/docs/index.html +++ b/docs/index.html @@ -176,6 +176,9 @@

    完善的文档

  • "factory"
  • +
  • + "file" +
  • "index"
  • diff --git a/docs/interfaces/_core_.fileargs.html b/docs/interfaces/_core_.fileargs.html new file mode 100644 index 0000000..8993466 --- /dev/null +++ b/docs/interfaces/_core_.fileargs.html @@ -0,0 +1,355 @@ + + + + + + FileArgs | lin-mizar + + + + + +
    +
    +
    +
    + +
    +
    + Options +
    +
    + All +
      +
    • Public
    • +
    • Public/Protected
    • +
    • All
    • +
    +
    + + + + + + +
    +
    + Menu +
    +
    +
    +
    +
    +
    + +

    Interface FileArgs

    +
    +
    +
    +
    +
    +
    +
    +

    Hierarchy

    +
      +
    • + FileArgs +
    • +
    +
    +
    +

    Index

    +
    +
    +
    +

    Properties

    + +
    +
    +
    +
    +
    +

    Properties

    +
    + +

    Optional extension

    +
    extension: undefined | string
    + +
    +
    + +

    Optional name

    +
    name: undefined | string
    + +
    +
    + +

    Optional path

    +
    path: undefined | string
    + +
    +
    + +

    Optional size

    +
    size: undefined | number
    + +
    +
    + +

    Optional type

    +
    type: undefined | number
    + +
    +
    +
    + +
    +
    +
    +
    +

    Legend

    +
    +
      +
    • Module
    • +
    • Object literal
    • +
    • Variable
    • +
    • Function
    • +
    • Function with type parameter
    • +
    • Index signature
    • +
    • Type alias
    • +
    +
      +
    • Enumeration
    • +
    • Enumeration member
    • +
    • Property
    • +
    • Method
    • +
    +
      +
    • Interface
    • +
    • Interface with type parameter
    • +
    • Constructor
    • +
    • Property
    • +
    • Method
    • +
    • Index signature
    • +
    +
      +
    • Class
    • +
    • Class with type parameter
    • +
    • Constructor
    • +
    • Property
    • +
    • Method
    • +
    • Accessor
    • +
    • Index signature
    • +
    +
      +
    • Inherited constructor
    • +
    • Inherited property
    • +
    • Inherited method
    • +
    • Inherited accessor
    • +
    +
      +
    • Protected property
    • +
    • Protected method
    • +
    • Protected accessor
    • +
    +
      +
    • Private property
    • +
    • Private method
    • +
    • Private accessor
    • +
    +
      +
    • Static property
    • +
    • Static method
    • +
    +
    +
    +
    +
    +

    Generated using TypeDoc

    +
    +
    + + + + \ No newline at end of file diff --git a/docs/interfaces/_core_.logargs.html b/docs/interfaces/_core_.logargs.html index d7160c6..fa3c0e7 100644 --- a/docs/interfaces/_core_.logargs.html +++ b/docs/interfaces/_core_.logargs.html @@ -104,7 +104,7 @@

    Optional authority

    authority: undefined | string
    @@ -114,7 +114,7 @@

    Optional message

    message: undefined | string
    @@ -124,7 +124,7 @@

    Optional method

    method: undefined | string
    @@ -134,7 +134,7 @@

    Optional path

    path: undefined | string
    @@ -144,7 +144,7 @@

    Optional status_code

    status_code: undefined | number
    @@ -154,7 +154,7 @@

    Optional user_id

    user_id: undefined | number
    @@ -164,7 +164,7 @@

    Optional user_name

    user_name: undefined | string
    @@ -200,6 +200,9 @@

    Optional user_name

  • "factory"
  • +
  • + "file" +
  • "index"
  • @@ -246,6 +249,9 @@

    Optional user_name

  • Auth
  • +
  • + File +
  • Group
  • @@ -261,6 +267,9 @@

    Optional user_name

  • User
  • +
  • + FileArgs +
    • diff --git a/docs/interfaces/_exception_.exception.html b/docs/interfaces/_exception_.exception.html index 33f421e..3f94778 100644 --- a/docs/interfaces/_exception_.exception.html +++ b/docs/interfaces/_exception_.exception.html @@ -107,7 +107,7 @@

      Optional code

      code: undefined | number
      @@ -117,7 +117,7 @@

      Optional errorCode

      errorCode: undefined | number
      @@ -127,7 +127,7 @@

      Optional msg

      msg: any
      @@ -163,6 +163,9 @@

      Optional msg

    • "factory"
    • +
    • + "file" +
    • "index"
    • @@ -215,6 +218,9 @@

      Optional msg

    • Failed
    • +
    • + FileTooLargeException +
    • Forbidden
    • diff --git a/docs/interfaces/_extended_validator_.isfloatoptions.html b/docs/interfaces/_extended_validator_.isfloatoptions.html index 934482d..e061350 100644 --- a/docs/interfaces/_extended_validator_.isfloatoptions.html +++ b/docs/interfaces/_extended_validator_.isfloatoptions.html @@ -108,7 +108,7 @@

      Optional gt

      gt: undefined | number
      @@ -118,7 +118,7 @@

      Optional lt

      lt: undefined | number
      @@ -128,7 +128,7 @@

      Optional max

      max: undefined | number
      @@ -138,7 +138,7 @@

      Optional min

      min: undefined | number
      @@ -174,6 +174,9 @@

      Optional min

    • "factory"
    • +
    • + "file" +
    • "index"
    • diff --git a/docs/interfaces/_extended_validator_.isintoptions.html b/docs/interfaces/_extended_validator_.isintoptions.html index 507d948..55427d3 100644 --- a/docs/interfaces/_extended_validator_.isintoptions.html +++ b/docs/interfaces/_extended_validator_.isintoptions.html @@ -109,7 +109,7 @@

      Optional allow_leading_allow_leading_zeroes: undefined | false | true @@ -119,7 +119,7 @@

      Optional gt

      gt: undefined | number
      @@ -129,7 +129,7 @@

      Optional lt

      lt: undefined | number
      @@ -139,7 +139,7 @@

      Optional max

      max: undefined | number
      @@ -149,7 +149,7 @@

      Optional min

      min: undefined | number
      @@ -185,6 +185,9 @@

      Optional min

    • "factory"
    • +
    • + "file" +
    • "index"
    • diff --git a/docs/interfaces/_lin_router_.linrouter.ilayeroptions.html b/docs/interfaces/_lin_router_.linrouter.ilayeroptions.html index 7a1e441..3813eac 100644 --- a/docs/interfaces/_lin_router_.linrouter.ilayeroptions.html +++ b/docs/interfaces/_lin_router_.linrouter.ilayeroptions.html @@ -159,6 +159,9 @@

      Optional strict

    • "factory"
    • +
    • + "file" +
    • "index"
    • diff --git a/docs/interfaces/_lin_router_.linrouter.iparammiddleware.html b/docs/interfaces/_lin_router_.linrouter.iparammiddleware.html index 42e71c2..aeb8787 100644 --- a/docs/interfaces/_lin_router_.linrouter.iparammiddleware.html +++ b/docs/interfaces/_lin_router_.linrouter.iparammiddleware.html @@ -151,6 +151,9 @@

      Returns any "factory" +
    • + "file" +
    • "index"
    • diff --git a/docs/interfaces/_lin_router_.linrouter.irouterallowedmethodsoptions.html b/docs/interfaces/_lin_router_.linrouter.irouterallowedmethodsoptions.html index e04547b..7b8a502 100644 --- a/docs/interfaces/_lin_router_.linrouter.irouterallowedmethodsoptions.html +++ b/docs/interfaces/_lin_router_.linrouter.irouterallowedmethodsoptions.html @@ -174,6 +174,9 @@

      Optional throw

    • "factory"
    • +
    • + "file" +
    • "index"
    • diff --git a/docs/interfaces/_lin_router_.linrouter.iroutercontext.html b/docs/interfaces/_lin_router_.linrouter.iroutercontext.html index 4c9861a..8d5072b 100644 --- a/docs/interfaces/_lin_router_.linrouter.iroutercontext.html +++ b/docs/interfaces/_lin_router_.linrouter.iroutercontext.html @@ -111,6 +111,9 @@

      Hierarchy

    • "factory"
    • +
    • + "file" +
    • "index"
    • diff --git a/docs/interfaces/_lin_router_.linrouter.irouteroptions.html b/docs/interfaces/_lin_router_.linrouter.irouteroptions.html index 0ceb887..ce22538 100644 --- a/docs/interfaces/_lin_router_.linrouter.irouteroptions.html +++ b/docs/interfaces/_lin_router_.linrouter.irouteroptions.html @@ -203,6 +203,9 @@

      Optional strict

    • "factory"
    • +
    • + "file" +
    • "index"
    • diff --git a/docs/interfaces/_lin_router_.linrouter.irouterparamcontext.html b/docs/interfaces/_lin_router_.linrouter.irouterparamcontext.html index 76276a7..4101e6b 100644 --- a/docs/interfaces/_lin_router_.linrouter.irouterparamcontext.html +++ b/docs/interfaces/_lin_router_.linrouter.irouterparamcontext.html @@ -196,6 +196,9 @@

      router

    • "factory"
    • +
    • + "file" +
    • "index"
    • diff --git a/docs/interfaces/_lin_router_.linrouter.iroutesmatch.html b/docs/interfaces/_lin_router_.linrouter.iroutesmatch.html index e786560..18ea9c7 100644 --- a/docs/interfaces/_lin_router_.linrouter.iroutesmatch.html +++ b/docs/interfaces/_lin_router_.linrouter.iroutesmatch.html @@ -159,6 +159,9 @@

      route

    • "factory"
    • +
    • + "file" +
    • "index"
    • diff --git a/docs/interfaces/_lin_router_.linrouter.iurloptionsquery.html b/docs/interfaces/_lin_router_.linrouter.iurloptionsquery.html index 4b07330..e19ec6b 100644 --- a/docs/interfaces/_lin_router_.linrouter.iurloptionsquery.html +++ b/docs/interfaces/_lin_router_.linrouter.iurloptionsquery.html @@ -137,6 +137,9 @@

      query

    • "factory"
    • +
    • + "file" +
    • "index"
    • diff --git a/docs/interfaces/_lin_router_.meta.html b/docs/interfaces/_lin_router_.meta.html index ae1140e..70a660d 100644 --- a/docs/interfaces/_lin_router_.meta.html +++ b/docs/interfaces/_lin_router_.meta.html @@ -100,7 +100,7 @@

      Optional auth

      auth: undefined | string
      @@ -110,7 +110,7 @@

      Optional module

      module: undefined | string
      @@ -120,7 +120,7 @@

      Optional mount

      mount: undefined | false | true
      @@ -156,6 +156,9 @@

      Optional mount

    • "factory"
    • +
    • + "file" +
    • "index"
    • diff --git a/docs/interfaces/_password_hash_.option.html b/docs/interfaces/_password_hash_.option.html index 8166a3d..2bdb7e9 100644 --- a/docs/interfaces/_password_hash_.option.html +++ b/docs/interfaces/_password_hash_.option.html @@ -100,7 +100,7 @@

      Optional algorithm

      algorithm: undefined | string
      @@ -110,7 +110,7 @@

      Optional iterations

      iterations: undefined | number
      @@ -120,7 +120,7 @@

      Optional saltLength

      saltLength: undefined | number
      @@ -156,6 +156,9 @@

      Optional saltLength

    • "factory"
    • +
    • + "file" +
    • "index"
    • diff --git a/docs/interfaces/_util_.objoptions.html b/docs/interfaces/_util_.objoptions.html index aedb334..eff8f54 100644 --- a/docs/interfaces/_util_.objoptions.html +++ b/docs/interfaces/_util_.objoptions.html @@ -99,7 +99,7 @@

      Optional filter

      filter: undefined | function
      @@ -109,7 +109,7 @@

      Optional prefix

      prefix: undefined | string
      @@ -145,6 +145,9 @@

      Optional prefix

    • "factory"
    • +
    • + "file" +
    • "index"
    • diff --git a/docs/modules/_config_.html b/docs/modules/_config_.html index ad01fda..43fb05f 100644 --- a/docs/modules/_config_.html +++ b/docs/modules/_config_.html @@ -93,7 +93,7 @@

      Const config

      config: Config = new Config()
      @@ -134,6 +134,9 @@

      Const config

    • "factory"
    • +
    • + "file" +
    • "index"
    • diff --git a/docs/modules/_core_.html b/docs/modules/_core_.html index 16ad958..adcd997 100644 --- a/docs/modules/_core_.html +++ b/docs/modules/_core_.html @@ -74,6 +74,7 @@

      Index

      Classes

      • Auth
      • +
      • File
      • Group
      • Lin
      • Log
      • @@ -84,6 +85,7 @@

        Classes

        Interfaces

        @@ -106,17 +108,17 @@

        Const __version__

        __version__: "0.0.1" = "0.0.1"

        Const disableLoading

        -
        disableLoading: unique symbol = Symbol("disableLoading")
        +
        disableLoading: unique symbol = Symbol('disableLoading')
        @@ -126,7 +128,7 @@

        Const routeMetaInfo

        routeMetaInfo: Map<any, any> = new Map()
      @@ -162,6 +164,9 @@

      Const routeMetaInfo

      "factory" +
    • + "file" +
    • "index"
    • @@ -208,6 +213,9 @@

      Const routeMetaInfo

      Auth +
    • + File +
    • Group
    • @@ -223,6 +231,9 @@

      Const routeMetaInfo

      User +
    • + FileArgs +
    • LogArgs
    • diff --git a/docs/modules/_db_.html b/docs/modules/_db_.html index a51ed67..560e1e7 100644 --- a/docs/modules/_db_.html +++ b/docs/modules/_db_.html @@ -91,10 +91,10 @@

      Variables

      Const database

      -
      database: any = config.getItem("db.database", "lin-cms")
      +
      database: any = config.getItem('db.database', 'lin-cms')
      @@ -106,10 +106,10 @@

      Const database

      Const db

      -
      db: Sequelize = new Sequelize(database, username, password, {host: host,port: port,dialect: type,logging: logging,timezone: "+08:00"})
      +
      db: Sequelize = new Sequelize(database, username, password, {host: host,port: port,dialect: type,logging: logging,timezone: '+08:00'})
      @@ -121,10 +121,10 @@

      Const db

      Const host

      -
      host: any = config.getItem("db.host", "localhost")
      +
      host: any = config.getItem('db.host', 'localhost')
      @@ -136,10 +136,10 @@

      Const host

      Const logging

      -
      logging: any = config.getItem("db.logging", true)
      +
      logging: any = config.getItem('db.logging', true)
      @@ -151,10 +151,10 @@

      Const logging

      Const password

      -
      password: any = config.getItem("db.password", "123456")
      +
      password: any = config.getItem('db.password', '123456')
      @@ -166,10 +166,10 @@

      Const password

      Const port

      -
      port: any = config.getItem("db.port", 3306)
      +
      port: any = config.getItem('db.port', 3306)
      @@ -181,10 +181,10 @@

      Const port

      Const type

      -
      type: any = config.getItem("db.type", "mysql")
      +
      type: any = config.getItem('db.type', 'mysql')
      @@ -196,10 +196,10 @@

      Const type

      Const username

      -
      username: any = config.getItem("db.username", "root")
      +
      username: any = config.getItem('db.username', 'root')
      @@ -240,6 +240,9 @@

      Const username

    • "factory"
    • +
    • + "file" +
    • "index"
    • diff --git a/docs/modules/_enums_.html b/docs/modules/_enums_.html index 67bf897..292a6c2 100644 --- a/docs/modules/_enums_.html +++ b/docs/modules/_enums_.html @@ -119,6 +119,9 @@

      Enumerations

    • "factory"
    • +
    • + "file" +
    • "index"
    • diff --git a/docs/modules/_exception_.html b/docs/modules/_exception_.html index 06a6787..995094f 100644 --- a/docs/modules/_exception_.html +++ b/docs/modules/_exception_.html @@ -76,6 +76,7 @@

      Classes

    • AuthFailed
    • ExpiredTokenException
    • Failed
    • +
    • FileTooLargeException
    • Forbidden
    • HttpException
    • InvalidTokenException
    • @@ -128,6 +129,9 @@

      Interfaces

    • "factory"
    • +
    • + "file" +
    • "index"
    • @@ -180,6 +184,9 @@

      Interfaces

    • Failed
    • +
    • + FileTooLargeException +
    • Forbidden
    • diff --git a/docs/modules/_extend_.html b/docs/modules/_extend_.html index 0f0ba35..b4cf49b 100644 --- a/docs/modules/_extend_.html +++ b/docs/modules/_extend_.html @@ -73,8 +73,12 @@

      Index

      Functions

      @@ -84,6 +88,75 @@

      Functions

      Functions

      +
      + +

      checkFileExtension

      +
        +
      • checkFileExtension(ext: string): boolean
      • +
      +
        +
      • + +

        Parameters

        +
          +
        • +
          ext: string
          +
        • +
        +

        Returns boolean

        +
      • +
      +
      +
      + +

      checkSingleFileSize

      +
        +
      • checkSingleFileSize(size: number): boolean
      • +
      +
        +
      • + +

        Parameters

        +
          +
        • +
          size: number
          +
        • +
        +

        Returns boolean

        +
      • +
      +
      +
      + +

      checkTotalFileSize

      +
        +
      • checkTotalFileSize(size: number): boolean
      • +
      +
        +
      • + +

        Parameters

        +
          +
        • +
          size: number
          +
        • +
        +

        Returns boolean

        +
      • +
      +

      Const json

      @@ -94,7 +167,7 @@

      Const json

    • @@ -128,7 +201,7 @@

      Const logging

    • @@ -155,6 +228,39 @@

      Returns void

    +
    + +

    Const multipart

    +
      +
    • multipart(app: Application): void
    • +
    +
      +
    • + +
      +
      +

      解析上传文件

      +
      +
      +

      Parameters

      +
        +
      • +
        app: Application
        +
        +
        +

        app实例

        +
        +
        +
      • +
      +

      Returns void

      +
    • +
    +

    Const success

    @@ -165,7 +271,7 @@

    Const success

  • @@ -200,7 +306,7 @@

    transform

  • Parameters

    @@ -248,6 +354,9 @@

    Returns void "factory"

  • +
  • + "file" +
  • "index"
  • @@ -291,12 +400,24 @@

    Returns void

    @@ -193,7 +194,7 @@

    type

    type: IntegerDataTypeConstructor = Sequelize.INTEGER
    @@ -204,7 +205,7 @@

    module

    module: object
    @@ -213,7 +214,7 @@

    type

    type: StringDataType = Sequelize.STRING({ length: 50 })
    @@ -225,7 +226,7 @@

    options

    options: object
    @@ -234,7 +235,7 @@

    createdAt

    createdAt: boolean = false
    @@ -244,7 +245,7 @@

    tableName

    tableName: string = "lin_auth"
    @@ -254,7 +255,222 @@

    updatedAt

    updatedAt: boolean = false
    + + + +
    + +

    Const FileInterface

    +
    FileInterface: object
    + +
    +
    +

    文件接口

    +
    +
    +
    + +

    extension

    +
    extension: object
    + +
    + +

    type

    +
    type: StringDataType = Sequelize.STRING(20)
    + +
    +
    +
    + +

    id

    +
    id: object
    + +
    + +

    autoIncrement

    +
    autoIncrement: boolean = true
    + +
    +
    + +

    primaryKey

    +
    primaryKey: boolean = true
    + +
    +
    + +

    type

    +
    type: IntegerDataTypeConstructor = Sequelize.INTEGER
    + +
    +
    +
    + +

    name

    +
    name: object
    + +
    + +

    allowNull

    +
    allowNull: boolean = false
    + +
    +
    + +

    type

    +
    type: StringDataType = Sequelize.STRING(30)
    + +
    +
    +
    + +

    path

    +
    path: object
    + +
    + +

    allowNull

    +
    allowNull: boolean = false
    + +
    +
    + +

    type

    +
    type: StringDataType = Sequelize.STRING({ length: 500 })
    + +
    +
    +
    + +

    size

    +
    size: object
    + +
    + +

    allowNull

    +
    allowNull: boolean = true
    + +
    +
    + +

    type

    +
    type: IntegerDataTypeConstructor = Sequelize.INTEGER
    + +
    +
    +
    + +

    type

    +
    type: object
    + +
    + +

    allowNull

    +
    allowNull: boolean = false
    + +
    +
    + +

    comment

    +
    comment: string = "1 local,其他表示其他地方"
    + +
    +
    + +

    defaultValue

    +
    defaultValue: number = 1
    + +
    +
    + +

    type

    +
    type: TinyIntegerDataTypeConstructor = Sequelize.TINYINT
    +
    @@ -266,7 +482,7 @@

    Const GroupInterface

    GroupInterface: object
    @@ -280,45 +496,45 @@

    attributes

    attributes: object
    - +

    id

    id: object
    - +

    autoIncrement

    autoIncrement: boolean = true
    - +

    primaryKey

    primaryKey: boolean = true
    - +

    type

    type: IntegerDataTypeConstructor = Sequelize.INTEGER
    @@ -329,46 +545,46 @@

    info

    info: object
    - +

    allowNull

    allowNull: boolean = true
    - +

    type

    type: StringDataType = Sequelize.STRING({ length: 255 })
    - +

    name

    name: object
    - +

    type

    type: StringDataType = Sequelize.STRING({ length: 60 })
    @@ -380,7 +596,7 @@

    options

    options: object
    @@ -389,7 +605,7 @@

    createdAt

    createdAt: boolean = false
    @@ -399,7 +615,7 @@

    tableName

    tableName: string = "lin_group"
    @@ -409,7 +625,7 @@

    updatedAt

    updatedAt: boolean = false
    @@ -421,7 +637,7 @@

    Const InfoCrudMixin

    InfoCrudMixin: object
    @@ -435,7 +651,7 @@

    attributes

    attributes: object
    @@ -450,7 +666,7 @@

    options

    options: object
    @@ -459,7 +675,7 @@

    createdAt

    createdAt: string = "create_time"
    @@ -469,7 +685,7 @@

    deletedAt

    deletedAt: string = "delete_time"
    @@ -479,7 +695,7 @@

    paranoid

    paranoid: boolean = true
    @@ -489,7 +705,7 @@

    updatedAt

    updatedAt: string = "update_time"
    @@ -499,7 +715,7 @@

    getterMethods

    getterMethods: object
    @@ -512,7 +728,7 @@

    createTime

  • Returns any

    @@ -528,7 +744,7 @@

    Const LogInterface

    LogInterface: object
    @@ -542,7 +758,7 @@

    attributes

    attributes: object
    @@ -551,56 +767,56 @@

    authority

    authority: object
    - +

    type

    type: StringDataType = Sequelize.STRING(100)
    - +

    id

    id: object
    - +

    autoIncrement

    autoIncrement: boolean = true
    - +

    primaryKey

    primaryKey: boolean = true
    - +

    type

    type: IntegerDataTypeConstructor = Sequelize.INTEGER
    @@ -611,16 +827,16 @@

    message

    message: object
    - +

    type

    type: StringDataType = Sequelize.STRING({ length: 450 })
    @@ -631,36 +847,36 @@

    method

    method: object
    - +

    type

    type: StringDataType = Sequelize.STRING(20)
    - +

    path

    path: object
    - +

    type

    type: StringDataType = Sequelize.STRING(50)
    @@ -671,16 +887,16 @@

    status_code

    status_code: object
    - +

    type

    type: IntegerDataTypeConstructor = Sequelize.INTEGER
    @@ -691,26 +907,26 @@

    user_id

    user_id: object
    - +

    allowNull

    allowNull: boolean = false
    - +

    type

    type: IntegerDataTypeConstructor = Sequelize.INTEGER
    @@ -721,16 +937,16 @@

    user_name

    user_name: object
    - +

    type

    type: StringDataType = Sequelize.STRING(20)
    @@ -742,7 +958,7 @@

    options

    options: object
    @@ -751,7 +967,7 @@

    createdAt

    createdAt: string = "time"
    @@ -761,7 +977,7 @@

    tableName

    tableName: string = "lin_log"
    @@ -771,7 +987,7 @@

    updatedAt

    updatedAt: boolean = false
  • @@ -781,7 +997,7 @@

    getterMethods

    getterMethods: object
    @@ -794,7 +1010,7 @@

    time

  • Returns any

    @@ -810,7 +1026,7 @@

    Const UserInterface

    UserInterface: object
    @@ -821,10 +1037,10 @@

    Const UserInterface

    options

    -
    options: object & object = merge({tableName: "lin_user",getterMethods: {isAdmin() {// @ts-ignorereturn this.getDataValue("admin") === UserAdmin.ADMIN;},isActive() {// @ts-ignorereturn this.getDataValue("active") === UserActive.ACTIVE;}}},InfoCrudMixin.options)
    +
    options: object & object = merge({tableName: 'lin_user',getterMethods: {isAdmin() {// @ts-ignorereturn this.getDataValue('admin') === UserAdmin.ADMIN;},isActive() {// @ts-ignorereturn this.getDataValue('active') === UserActive.ACTIVE;}}},InfoCrudMixin.options)
    @@ -834,7 +1050,7 @@

    attributes

    attributes: object
    @@ -843,36 +1059,36 @@

    active

    active: object
    - +

    allowNull

    allowNull: boolean = false
    - +

    defaultValue

    defaultValue: number = 1
    - +

    type

    type: TinyIntegerDataTypeConstructor = Sequelize.TINYINT
    @@ -883,36 +1099,36 @@

    admin

    admin: object
    - +

    allowNull

    allowNull: boolean = false
    - +

    defaultValue

    defaultValue: number = 1
    - +

    type

    type: TinyIntegerDataTypeConstructor = Sequelize.TINYINT
    @@ -923,26 +1139,26 @@

    email

    email: object
    - +

    allowNull

    allowNull: boolean = true
    - +

    type

    type: StringDataType = Sequelize.STRING({ length: 100 })
    @@ -952,7 +1168,7 @@

    unique

    unique: boolean = true
    @@ -963,66 +1179,66 @@

    group_id

    group_id: object
    - +

    allowNull

    allowNull: boolean = true
    - +

    type

    type: IntegerDataTypeConstructor = Sequelize.INTEGER
  • - +

    id

    id: object
    - +

    autoIncrement

    autoIncrement: boolean = true
    - +

    primaryKey

    primaryKey: boolean = true
    - +

    type

    type: IntegerDataTypeConstructor = Sequelize.INTEGER
    @@ -1033,26 +1249,26 @@

    nickname

    nickname: object
    - +

    allowNull

    allowNull: boolean = false
    - +

    type

    type: StringDataType = Sequelize.STRING({ length: 24 })
    @@ -1062,7 +1278,7 @@

    unique

    unique: boolean = true
    @@ -1073,16 +1289,16 @@

    password

    password: object
    - +

    type

    type: StringDataType = Sequelize.STRING({ length: 100 })
    @@ -1096,7 +1312,7 @@

    get

  • Returns any

    @@ -1113,7 +1329,7 @@

    set

  • Parameters

    @@ -1161,6 +1377,9 @@

    Returns void "factory"

  • +
  • + "file" +
  • "index"
  • @@ -1207,6 +1426,9 @@

    Returns void AuthInterface +
  • + FileInterface +
  • GroupInterface
  • diff --git a/docs/modules/_jwt_.html b/docs/modules/_jwt_.html index feb4b0b..5270a5d 100644 --- a/docs/modules/_jwt_.html +++ b/docs/modules/_jwt_.html @@ -82,17 +82,21 @@

    Variables

  • jwt
  • -
    +

    Functions

    @@ -103,10 +107,10 @@

    Variables

    Const jwt

    -
    jwt: Token = new Token(config.getItem("secret"),config.getItem("accessExp"),config.getItem("refreshExp"))
    +
    jwt: Token = new Token(config.getItem('secret'),config.getItem('accessExp'),config.getItem('refreshExp'))
    @@ -116,7 +120,7 @@

    Const jwt

    -
    +

    Functions

    @@ -128,7 +132,7 @@

    adminRequired

  • @@ -171,7 +175,7 @@

    checkUserIsActive

  • Parameters

    @@ -184,6 +188,80 @@

    Returns void

  • +
    + +

    createAccessToken

    +
      +
    • createAccessToken(payload: string | object, options?: SignOptions): string
    • +
    +
      +
    • + +
      +
      +

      生成access token

      +
      +
      +

      Parameters

      +
        +
      • +
        payload: string | object
        +
        +

        负载,支持 string 和 object

        +
        +
      • +
      • +
        Optional options: SignOptions
        +
        +

        参数

        +
        +
      • +
      +

      Returns string

      +
    • +
    +
    +
    + +

    createRefreshToken

    +
      +
    • createRefreshToken(payload: string | object, options?: SignOptions): string
    • +
    +
      +
    • + +
      +
      +

      生成refresh token

      +
      +
      +

      Parameters

      +
        +
      • +
        payload: string | object
        +
        +

        负载,支持 string 和 object

        +
        +
      • +
      • +
        Optional options: SignOptions
        +
        +

        参数

        +
        +
      • +
      +

      Returns string

      +
    • +
    +

    getTokens

    @@ -194,7 +272,7 @@

    getTokens

  • @@ -233,7 +311,7 @@

    groupRequired

  • @@ -276,7 +354,7 @@

    loginRequired

  • @@ -319,7 +397,7 @@

    parseHeader

  • @@ -356,7 +434,7 @@

    refreshTokenRequired

  • @@ -399,7 +477,7 @@

    refreshTokenRequiredWithUnifyException

  • @@ -432,6 +510,80 @@

    Returns Promise

  • +
    + +

    verifyAccessToken

    +
      +
    • verifyAccessToken(token: string, options?: VerifyOptions): any
    • +
    +
      +
    • + +
      +
      +

      验证 access token

      +
      +
      +

      Parameters

      +
        +
      • +
        token: string
        +
        +

        令牌

        +
        +
      • +
      • +
        Optional options: VerifyOptions
        +
        +

        选项

        +
        +
      • +
      +

      Returns any

      +
    • +
    +
    +
    + +

    verifyRefreshToken

    +
      +
    • verifyRefreshToken(token: string, options?: VerifyOptions): any
    • +
    +
      +
    • + +
      +
      +

      验证 refresh token

      +
      +
      +

      Parameters

      +
        +
      • +
        token: string
        +
        +

        令牌

        +
        +
      • +
      • +
        Optional options: VerifyOptions
        +
        +

        选项

        +
        +
      • +
      +

      Returns any

      +
    • +
    +
    diff --git a/docs/modules/_lin_router_.html b/docs/modules/_lin_router_.html index afdfe55..05c4d5e 100644 --- a/docs/modules/_lin_router_.html +++ b/docs/modules/_lin_router_.html @@ -116,6 +116,9 @@

    Interfaces

  • "factory"
  • +
  • + "file" +
  • "index"
  • diff --git a/docs/modules/_lin_validator_.html b/docs/modules/_lin_validator_.html index 54c4913..b8bcf0d 100644 --- a/docs/modules/_lin_validator_.html +++ b/docs/modules/_lin_validator_.html @@ -111,6 +111,9 @@

    Classes

  • "factory"
  • +
  • + "file" +
  • "index"
  • diff --git a/docs/modules/_loader_.html b/docs/modules/_loader_.html index cc52abd..9ec0164 100644 --- a/docs/modules/_loader_.html +++ b/docs/modules/_loader_.html @@ -110,6 +110,9 @@

    Classes

  • "factory"
  • +
  • + "file" +
  • "index"
  • diff --git a/docs/modules/_log_.html b/docs/modules/_log_.html index 607ad3d..cb22958 100644 --- a/docs/modules/_log_.html +++ b/docs/modules/_log_.html @@ -95,7 +95,7 @@

    Const REG_XP

    REG_XP: RegExp = /(?<=\{)[^}]*(?=\})/g
    @@ -112,7 +112,7 @@

    Const logger

  • @@ -161,7 +161,7 @@

    parseTemplate

  • @@ -206,7 +206,7 @@

    writeLog

  • Parameters

    @@ -254,6 +254,9 @@

    Returns void "factory"

  • +
  • + "file" +
  • "index"
  • diff --git a/docs/modules/_middleware_.html b/docs/modules/_middleware_.html index 9568488..5c84993 100644 --- a/docs/modules/_middleware_.html +++ b/docs/modules/_middleware_.html @@ -92,7 +92,7 @@

    Const error

  • @@ -123,7 +123,7 @@

    Const log

  • @@ -188,6 +188,9 @@

    Returns Promise "factory"

  • +
  • + "file" +
  • "index"
  • diff --git a/docs/modules/_mixin_.html b/docs/modules/_mixin_.html index 576becb..221c5ed 100644 --- a/docs/modules/_mixin_.html +++ b/docs/modules/_mixin_.html @@ -110,6 +110,9 @@

    Classes

  • "factory"
  • +
  • + "file" +
  • "index"
  • diff --git a/docs/modules/_password_hash_.html b/docs/modules/_password_hash_.html index c8a84e4..3638fb9 100644 --- a/docs/modules/_password_hash_.html +++ b/docs/modules/_password_hash_.html @@ -104,7 +104,7 @@

    Let saltChars

    saltChars: string = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"
    @@ -114,7 +114,7 @@

    Let saltCharsCount

    saltCharsCount: number = saltChars.length
    @@ -131,7 +131,7 @@

    Const generate

  • @@ -172,7 +172,7 @@

    generateHash

  • Parameters

    @@ -204,7 +204,7 @@

    generateSalt

  • Parameters

    @@ -227,7 +227,7 @@

    Const isHashed

  • @@ -260,7 +260,7 @@

    Const verify

  • @@ -323,6 +323,9 @@

    Returns boolean "factory"

  • +
  • + "file" +
  • "index"
  • diff --git a/docs/modules/_plugin_.html b/docs/modules/_plugin_.html index fb59937..9013fdc 100644 --- a/docs/modules/_plugin_.html +++ b/docs/modules/_plugin_.html @@ -110,6 +110,9 @@

    Classes

  • "factory"
  • +
  • + "file" +
  • "index"
  • diff --git a/docs/modules/_sse_.html b/docs/modules/_sse_.html index 3b9a946..0665e6f 100644 --- a/docs/modules/_sse_.html +++ b/docs/modules/_sse_.html @@ -112,6 +112,9 @@

    Classes

  • "factory"
  • +
  • + "file" +
  • "index"
  • diff --git a/docs/modules/_util_.html b/docs/modules/_util_.html index e5c2b07..a790b3e 100644 --- a/docs/modules/_util_.html +++ b/docs/modules/_util_.html @@ -123,7 +123,7 @@

    Const isNegative

    isNegative: isNegative = extendedValidator.isNegative
    @@ -133,7 +133,7 @@

    Const isNotEmpty

    isNotEmpty: isNotEmpty = extendedValidator.isNotEmpty
    @@ -143,7 +143,7 @@

    Const isPositive

    isPositive: isPositive = extendedValidator.isPositive
    @@ -160,7 +160,7 @@

    assert

  • @@ -191,7 +191,7 @@

    checkDateFormat

  • @@ -222,7 +222,7 @@

    decorateProp

  • @@ -292,7 +292,7 @@

    findAuthAndModule

  • @@ -323,7 +323,7 @@

    findMetaByAuth

  • Parameters

    @@ -346,7 +346,7 @@

    getAllFieldNames

  • @@ -401,7 +401,7 @@

    getAllMethodNames

  • @@ -442,7 +442,7 @@

    getFiles

  • @@ -473,7 +473,7 @@

    Const isConstructor

  • Parameters

    @@ -496,7 +496,7 @@

    Const isEmpty

  • Parameters

    @@ -524,7 +524,7 @@

    Const isFunction

  • Parameters

    @@ -547,7 +547,7 @@

    Const isNil

  • Parameters

    @@ -570,7 +570,7 @@

    Const isObject

  • Parameters

    @@ -593,7 +593,7 @@

    Const isString

  • Parameters

    @@ -616,7 +616,7 @@

    Const isSymbol

  • Parameters

    @@ -639,7 +639,7 @@

    Const isUndefined

  • Parameters

    @@ -662,7 +662,7 @@

    paginate

  • Parameters

    @@ -693,7 +693,7 @@

    prefixAndFilter

  • Parameters

    @@ -719,7 +719,7 @@

    Const strVal

  • Parameters

    @@ -742,7 +742,7 @@

    toHump

  • Parameters

    @@ -765,7 +765,7 @@

    toLine

  • Parameters

    @@ -788,7 +788,7 @@

    unsets

  • Parameters

    @@ -814,7 +814,7 @@

    Const validatePath

  • Parameters

    @@ -859,6 +859,9 @@

    Returns string "factory"

  • +
  • + "file" +
  • "index"
  • diff --git a/example/simple.js b/example/simple.js index f0a109f..17a9655 100644 --- a/example/simple.js +++ b/example/simple.js @@ -1,21 +1,34 @@ -const Koa = require("koa"); -const { Lin, log, error } = require("../lin"); -const { config } = require("../lin/config"); +const Koa = require('koa'); +const { Lin, log, error } = require('../lin'); +const { config } = require('../lin/config'); // 需要mysql数据库,数据库名为lin-cms,默认用户名:root,密码:123456 const run = async () => { - config.setItem("pluginPath", {}); - config.setItem("apiDir", "example"); + config.setItem('pluginPath', {}); + config.setItem('apiDir', 'example'); const app = new Koa(); config.initApp(app); app.use(log); - app.on("error", error); + app.on('error', error); const lin = new Lin(); await lin.initApp(app, true, true); + // const { File } = require('../lin/core'); + + // File.createRecord( + // { + // path: '/flow.png', + // type: 1, + // name: 'flow', + // extension: '.png', + // size: 1024 + // }, + // true + // ); + app.listen(3000, () => { - console.log("listening at http://localhost:3000"); + console.log('listening at http://localhost:3000'); }); }; diff --git a/lib/file.ts b/lib/file.ts index a934fe3..c220bca 100644 --- a/lib/file.ts +++ b/lib/file.ts @@ -3,22 +3,59 @@ * file_include,file_exclude,file_single_limit,file_total_limit,file_store_dir * id,path,type,name,extension,size */ +import uuid from 'uuid'; +import dayjs from 'dayjs'; +import path from 'path'; +import fs from 'fs'; +import { config } from './config'; /** * 上传文件类,所有文件上传的基类 */ class Uploader { - constructor() {} - + private storeDir: string | undefined; + constructor(storeDir?: string) { + this.storeDir = storeDir; + } /** * 处理文件流Stream */ - public upload() {} + public upload(files: any[]) { + throw new Error('you must overload this method'); + } + + /** + * 获得保存的路径名 + * @param filename 文件名 + */ + public getStorePath(filename: string) { + const filename2 = this.generateName(filename); + const dir = this.getExactStoreDir(); + const exists = fs.existsSync(dir); + if (!exists) { + fs.mkdirSync(dir); + } + return path.join(dir, filename2); + } /** - * 存储到lin_file + * 生成文件名 + * @param filename 文件名 */ - public save() { + public generateName(filename: string) { + const ext = path.extname(filename); + return `${uuid.v4()}${ext}`; + } + /** + * 获得确切的保存路径 + */ + public getExactStoreDir() { + let storeDir = config.getItem('file_store_dir', 'assets'); + this.storeDir && (storeDir = this.storeDir); + const extrat = path.isAbsolute(storeDir) + ? path.join(storeDir, dayjs().format('YYYY/MM/DD')) + : path.join(process.cwd(), storeDir, dayjs().format('YYYY/MM/DD')); + return extrat; } } diff --git a/lib/interface.ts b/lib/interface.ts index 74e82ae..ff506ef 100644 --- a/lib/interface.ts +++ b/lib/interface.ts @@ -202,7 +202,8 @@ export const FileInterface = { type: { type: Sequelize.TINYINT, allowNull: false, - defaultValue: 1 + defaultValue: 1, + comment: '1 local,其他表示其他地方' }, name: { type: Sequelize.STRING(30), diff --git a/package.json b/package.json index 705eac7..4c1614c 100644 --- a/package.json +++ b/package.json @@ -41,6 +41,7 @@ "@types/koa-router": "^7.0.39", "@types/lodash": "^4.14.122", "@types/sequelize": "^4.27.39", + "@types/uuid": "^3.4.4", "jest": "^24.3.1", "ts-jest": "^24.0.0", "ts-node": "^8.0.3", From 12f5a9b2e1bf37039441fa72b9eccff6faf7514c Mon Sep 17 00:00:00 2001 From: pedro Date: Sun, 12 May 2019 23:22:43 +0800 Subject: [PATCH 06/15] =?UTF-8?q?feat:=E4=BF=AE=E6=94=B9mulpart=E7=9A=84?= =?UTF-8?q?=E6=A0=A1=E9=AA=8C=E8=A7=84=E5=88=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/assets/js/search.js | 2 +- docs/classes/_config_.config.html | 14 +- docs/classes/_core_.auth.html | 10 +- docs/classes/_core_.file.html | 16 +- docs/classes/_core_.group.html | 8 +- docs/classes/_core_.lin.html | 16 +- docs/classes/_core_.log.html | 22 +- docs/classes/_core_.manager.html | 18 +- docs/classes/_core_.user.html | 30 +- docs/classes/_exception_.authfailed.html | 16 +- .../_exception_.expiredtokenexception.html | 16 +- docs/classes/_exception_.failed.html | 16 +- .../_exception_.fileextensionexception.html | 454 ++++++++++++++++++ .../_exception_.filetoolargeexception.html | 16 +- .../_exception_.filetoomanyexception.html | 454 ++++++++++++++++++ docs/classes/_exception_.forbidden.html | 16 +- docs/classes/_exception_.httpexception.html | 22 +- .../_exception_.invalidtokenexception.html | 16 +- .../classes/_exception_.methodnotallowed.html | 16 +- docs/classes/_exception_.notfound.html | 16 +- .../_exception_.parametersexception.html | 16 +- .../classes/_exception_.refreshexception.html | 16 +- docs/classes/_exception_.repeatexception.html | 16 +- docs/classes/_exception_.success.html | 16 +- .../classes/_exception_.unknownexception.html | 16 +- ...extended_validator_.extendedvalidator.html | 22 +- docs/classes/_file_.uploader.html | 72 +-- docs/classes/_jwt_.token.html | 16 +- docs/classes/_lin_router_.linrouter.html | 14 +- .../classes/_lin_validator_.linvalidator.html | 22 +- docs/classes/_lin_validator_.rule.html | 18 +- docs/classes/_loader_.loader.html | 18 +- docs/classes/_mixin_.jsonmixin.html | 2 +- docs/classes/_plugin_.plugin.html | 14 +- docs/classes/_sse_.messagebroker.html | 30 +- docs/classes/_sse_.sse.html | 4 +- docs/classes/_sse_.subscription.html | 6 +- docs/enums/_enums_.tokentype.html | 4 +- docs/enums/_enums_.useractive.html | 4 +- docs/enums/_enums_.useradmin.html | 4 +- docs/interfaces/_core_.fileargs.html | 10 +- docs/interfaces/_core_.logargs.html | 14 +- docs/interfaces/_exception_.exception.html | 12 +- .../_extended_validator_.isfloatoptions.html | 8 +- .../_extended_validator_.isintoptions.html | 10 +- docs/interfaces/_lin_router_.meta.html | 6 +- docs/interfaces/_password_hash_.option.html | 6 +- docs/interfaces/_util_.objoptions.html | 4 +- docs/modules/_config_.html | 2 +- docs/modules/_core_.html | 6 +- docs/modules/_db_.html | 16 +- docs/modules/_exception_.html | 8 + docs/modules/_extend_.html | 43 +- docs/modules/_extended_validator_.html | 2 +- docs/modules/_factory_.html | 2 +- docs/modules/_file_.html | 6 +- docs/modules/_interface_.html | 238 ++++----- docs/modules/_jwt_.html | 26 +- docs/modules/_log_.html | 8 +- docs/modules/_middleware_.html | 4 +- docs/modules/_password_hash_.html | 14 +- docs/modules/_util_.html | 52 +- lib/exception.ts | 48 ++ lib/extend.ts | 34 +- lib/file.ts | 2 +- 65 files changed, 1602 insertions(+), 503 deletions(-) create mode 100644 docs/classes/_exception_.fileextensionexception.html create mode 100644 docs/classes/_exception_.filetoomanyexception.html diff --git a/docs/assets/js/search.js b/docs/assets/js/search.js index c04cf48..5c05fa5 100644 --- a/docs/assets/js/search.js +++ b/docs/assets/js/search.js @@ -1,3 +1,3 @@ var typedoc = typedoc || {}; typedoc.search = typedoc.search || {}; - typedoc.search.data = {"kinds":{"1":"External module","4":"Enumeration","16":"Enumeration member","32":"Variable","64":"Function","128":"Class","256":"Interface","512":"Constructor","1024":"Property","2048":"Method","65536":"Type literal","262144":"Accessor","2097152":"Object literal","4194304":"Type alias"},"rows":[{"id":0,"kind":1,"name":"\"config\"","url":"modules/_config_.html","classes":"tsd-kind-external-module"},{"id":1,"kind":128,"name":"Config","url":"classes/_config_.config.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"config\""},{"id":2,"kind":1024,"name":"store","url":"classes/_config_.config.html#store","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"config\".Config"},{"id":3,"kind":2048,"name":"initApp","url":"classes/_config_.config.html#initapp","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"config\".Config"},{"id":4,"kind":2048,"name":"getItem","url":"classes/_config_.config.html#getitem","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"config\".Config"},{"id":5,"kind":2048,"name":"hasItem","url":"classes/_config_.config.html#hasitem","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"config\".Config"},{"id":6,"kind":2048,"name":"setItem","url":"classes/_config_.config.html#setitem","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"config\".Config"},{"id":7,"kind":2048,"name":"getConfigFromFile","url":"classes/_config_.config.html#getconfigfromfile","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"config\".Config"},{"id":8,"kind":2048,"name":"getConfigFromObj","url":"classes/_config_.config.html#getconfigfromobj","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"config\".Config"},{"id":9,"kind":32,"name":"config","url":"modules/_config_.html#config-1","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"config\""},{"id":10,"kind":1,"name":"\"exception\"","url":"modules/_exception_.html","classes":"tsd-kind-external-module"},{"id":11,"kind":256,"name":"Exception","url":"interfaces/_exception_.exception.html","classes":"tsd-kind-interface tsd-parent-kind-external-module","parent":"\"exception\""},{"id":12,"kind":1024,"name":"code","url":"interfaces/_exception_.exception.html#code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"exception\".Exception"},{"id":13,"kind":1024,"name":"msg","url":"interfaces/_exception_.exception.html#msg","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"exception\".Exception"},{"id":14,"kind":1024,"name":"errorCode","url":"interfaces/_exception_.exception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"exception\".Exception"},{"id":15,"kind":128,"name":"HttpException","url":"classes/_exception_.httpexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":16,"kind":1024,"name":"code","url":"classes/_exception_.httpexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"exception\".HttpException"},{"id":17,"kind":1024,"name":"msg","url":"classes/_exception_.httpexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"exception\".HttpException"},{"id":18,"kind":1024,"name":"errorCode","url":"classes/_exception_.httpexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"exception\".HttpException"},{"id":19,"kind":1024,"name":"fields","url":"classes/_exception_.httpexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"exception\".HttpException"},{"id":20,"kind":512,"name":"constructor","url":"classes/_exception_.httpexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"exception\".HttpException"},{"id":21,"kind":1024,"name":"name","url":"classes/_exception_.httpexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".HttpException"},{"id":22,"kind":1024,"name":"message","url":"classes/_exception_.httpexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".HttpException"},{"id":23,"kind":1024,"name":"stack","url":"classes/_exception_.httpexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".HttpException"},{"id":24,"kind":1024,"name":"Error","url":"classes/_exception_.httpexception.html#error","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"\"exception\".HttpException"},{"id":25,"kind":128,"name":"Success","url":"classes/_exception_.success.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":26,"kind":1024,"name":"code","url":"classes/_exception_.success.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Success"},{"id":27,"kind":1024,"name":"msg","url":"classes/_exception_.success.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Success"},{"id":28,"kind":1024,"name":"errorCode","url":"classes/_exception_.success.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Success"},{"id":29,"kind":512,"name":"constructor","url":"classes/_exception_.success.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Success"},{"id":30,"kind":1024,"name":"fields","url":"classes/_exception_.success.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Success"},{"id":31,"kind":1024,"name":"name","url":"classes/_exception_.success.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Success"},{"id":32,"kind":1024,"name":"message","url":"classes/_exception_.success.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Success"},{"id":33,"kind":1024,"name":"stack","url":"classes/_exception_.success.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".Success"},{"id":34,"kind":128,"name":"Failed","url":"classes/_exception_.failed.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":35,"kind":1024,"name":"code","url":"classes/_exception_.failed.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Failed"},{"id":36,"kind":1024,"name":"msg","url":"classes/_exception_.failed.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Failed"},{"id":37,"kind":1024,"name":"errorCode","url":"classes/_exception_.failed.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Failed"},{"id":38,"kind":512,"name":"constructor","url":"classes/_exception_.failed.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Failed"},{"id":39,"kind":1024,"name":"fields","url":"classes/_exception_.failed.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Failed"},{"id":40,"kind":1024,"name":"name","url":"classes/_exception_.failed.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Failed"},{"id":41,"kind":1024,"name":"message","url":"classes/_exception_.failed.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Failed"},{"id":42,"kind":1024,"name":"stack","url":"classes/_exception_.failed.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".Failed"},{"id":43,"kind":128,"name":"AuthFailed","url":"classes/_exception_.authfailed.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":44,"kind":1024,"name":"code","url":"classes/_exception_.authfailed.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".AuthFailed"},{"id":45,"kind":1024,"name":"msg","url":"classes/_exception_.authfailed.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".AuthFailed"},{"id":46,"kind":1024,"name":"errorCode","url":"classes/_exception_.authfailed.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".AuthFailed"},{"id":47,"kind":512,"name":"constructor","url":"classes/_exception_.authfailed.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".AuthFailed"},{"id":48,"kind":1024,"name":"fields","url":"classes/_exception_.authfailed.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".AuthFailed"},{"id":49,"kind":1024,"name":"name","url":"classes/_exception_.authfailed.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".AuthFailed"},{"id":50,"kind":1024,"name":"message","url":"classes/_exception_.authfailed.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".AuthFailed"},{"id":51,"kind":1024,"name":"stack","url":"classes/_exception_.authfailed.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".AuthFailed"},{"id":52,"kind":128,"name":"NotFound","url":"classes/_exception_.notfound.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":53,"kind":1024,"name":"code","url":"classes/_exception_.notfound.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".NotFound"},{"id":54,"kind":1024,"name":"msg","url":"classes/_exception_.notfound.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".NotFound"},{"id":55,"kind":1024,"name":"errorCode","url":"classes/_exception_.notfound.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".NotFound"},{"id":56,"kind":512,"name":"constructor","url":"classes/_exception_.notfound.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".NotFound"},{"id":57,"kind":1024,"name":"fields","url":"classes/_exception_.notfound.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".NotFound"},{"id":58,"kind":1024,"name":"name","url":"classes/_exception_.notfound.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".NotFound"},{"id":59,"kind":1024,"name":"message","url":"classes/_exception_.notfound.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".NotFound"},{"id":60,"kind":1024,"name":"stack","url":"classes/_exception_.notfound.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".NotFound"},{"id":61,"kind":128,"name":"ParametersException","url":"classes/_exception_.parametersexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":62,"kind":1024,"name":"code","url":"classes/_exception_.parametersexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ParametersException"},{"id":63,"kind":1024,"name":"msg","url":"classes/_exception_.parametersexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ParametersException"},{"id":64,"kind":1024,"name":"errorCode","url":"classes/_exception_.parametersexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ParametersException"},{"id":65,"kind":512,"name":"constructor","url":"classes/_exception_.parametersexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ParametersException"},{"id":66,"kind":1024,"name":"fields","url":"classes/_exception_.parametersexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".ParametersException"},{"id":67,"kind":1024,"name":"name","url":"classes/_exception_.parametersexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".ParametersException"},{"id":68,"kind":1024,"name":"message","url":"classes/_exception_.parametersexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".ParametersException"},{"id":69,"kind":1024,"name":"stack","url":"classes/_exception_.parametersexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".ParametersException"},{"id":70,"kind":128,"name":"InvalidTokenException","url":"classes/_exception_.invalidtokenexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":71,"kind":1024,"name":"code","url":"classes/_exception_.invalidtokenexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".InvalidTokenException"},{"id":72,"kind":1024,"name":"msg","url":"classes/_exception_.invalidtokenexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".InvalidTokenException"},{"id":73,"kind":1024,"name":"errorCode","url":"classes/_exception_.invalidtokenexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".InvalidTokenException"},{"id":74,"kind":512,"name":"constructor","url":"classes/_exception_.invalidtokenexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".InvalidTokenException"},{"id":75,"kind":1024,"name":"fields","url":"classes/_exception_.invalidtokenexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".InvalidTokenException"},{"id":76,"kind":1024,"name":"name","url":"classes/_exception_.invalidtokenexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".InvalidTokenException"},{"id":77,"kind":1024,"name":"message","url":"classes/_exception_.invalidtokenexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".InvalidTokenException"},{"id":78,"kind":1024,"name":"stack","url":"classes/_exception_.invalidtokenexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".InvalidTokenException"},{"id":79,"kind":128,"name":"ExpiredTokenException","url":"classes/_exception_.expiredtokenexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":80,"kind":1024,"name":"code","url":"classes/_exception_.expiredtokenexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ExpiredTokenException"},{"id":81,"kind":1024,"name":"msg","url":"classes/_exception_.expiredtokenexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ExpiredTokenException"},{"id":82,"kind":1024,"name":"errorCode","url":"classes/_exception_.expiredtokenexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ExpiredTokenException"},{"id":83,"kind":512,"name":"constructor","url":"classes/_exception_.expiredtokenexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ExpiredTokenException"},{"id":84,"kind":1024,"name":"fields","url":"classes/_exception_.expiredtokenexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".ExpiredTokenException"},{"id":85,"kind":1024,"name":"name","url":"classes/_exception_.expiredtokenexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".ExpiredTokenException"},{"id":86,"kind":1024,"name":"message","url":"classes/_exception_.expiredtokenexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".ExpiredTokenException"},{"id":87,"kind":1024,"name":"stack","url":"classes/_exception_.expiredtokenexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".ExpiredTokenException"},{"id":88,"kind":128,"name":"UnknownException","url":"classes/_exception_.unknownexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":89,"kind":1024,"name":"code","url":"classes/_exception_.unknownexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".UnknownException"},{"id":90,"kind":1024,"name":"msg","url":"classes/_exception_.unknownexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".UnknownException"},{"id":91,"kind":1024,"name":"errorCode","url":"classes/_exception_.unknownexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".UnknownException"},{"id":92,"kind":512,"name":"constructor","url":"classes/_exception_.unknownexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".UnknownException"},{"id":93,"kind":1024,"name":"fields","url":"classes/_exception_.unknownexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".UnknownException"},{"id":94,"kind":1024,"name":"name","url":"classes/_exception_.unknownexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".UnknownException"},{"id":95,"kind":1024,"name":"message","url":"classes/_exception_.unknownexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".UnknownException"},{"id":96,"kind":1024,"name":"stack","url":"classes/_exception_.unknownexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".UnknownException"},{"id":97,"kind":128,"name":"RepeatException","url":"classes/_exception_.repeatexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":98,"kind":1024,"name":"code","url":"classes/_exception_.repeatexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RepeatException"},{"id":99,"kind":1024,"name":"msg","url":"classes/_exception_.repeatexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RepeatException"},{"id":100,"kind":1024,"name":"errorCode","url":"classes/_exception_.repeatexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RepeatException"},{"id":101,"kind":512,"name":"constructor","url":"classes/_exception_.repeatexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RepeatException"},{"id":102,"kind":1024,"name":"fields","url":"classes/_exception_.repeatexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".RepeatException"},{"id":103,"kind":1024,"name":"name","url":"classes/_exception_.repeatexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".RepeatException"},{"id":104,"kind":1024,"name":"message","url":"classes/_exception_.repeatexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".RepeatException"},{"id":105,"kind":1024,"name":"stack","url":"classes/_exception_.repeatexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".RepeatException"},{"id":106,"kind":128,"name":"Forbidden","url":"classes/_exception_.forbidden.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":107,"kind":1024,"name":"code","url":"classes/_exception_.forbidden.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Forbidden"},{"id":108,"kind":1024,"name":"msg","url":"classes/_exception_.forbidden.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Forbidden"},{"id":109,"kind":1024,"name":"errorCode","url":"classes/_exception_.forbidden.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Forbidden"},{"id":110,"kind":512,"name":"constructor","url":"classes/_exception_.forbidden.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Forbidden"},{"id":111,"kind":1024,"name":"fields","url":"classes/_exception_.forbidden.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Forbidden"},{"id":112,"kind":1024,"name":"name","url":"classes/_exception_.forbidden.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Forbidden"},{"id":113,"kind":1024,"name":"message","url":"classes/_exception_.forbidden.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Forbidden"},{"id":114,"kind":1024,"name":"stack","url":"classes/_exception_.forbidden.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".Forbidden"},{"id":115,"kind":128,"name":"MethodNotAllowed","url":"classes/_exception_.methodnotallowed.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":116,"kind":1024,"name":"code","url":"classes/_exception_.methodnotallowed.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".MethodNotAllowed"},{"id":117,"kind":1024,"name":"msg","url":"classes/_exception_.methodnotallowed.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".MethodNotAllowed"},{"id":118,"kind":1024,"name":"errorCode","url":"classes/_exception_.methodnotallowed.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".MethodNotAllowed"},{"id":119,"kind":512,"name":"constructor","url":"classes/_exception_.methodnotallowed.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".MethodNotAllowed"},{"id":120,"kind":1024,"name":"fields","url":"classes/_exception_.methodnotallowed.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".MethodNotAllowed"},{"id":121,"kind":1024,"name":"name","url":"classes/_exception_.methodnotallowed.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".MethodNotAllowed"},{"id":122,"kind":1024,"name":"message","url":"classes/_exception_.methodnotallowed.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".MethodNotAllowed"},{"id":123,"kind":1024,"name":"stack","url":"classes/_exception_.methodnotallowed.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".MethodNotAllowed"},{"id":124,"kind":128,"name":"RefreshException","url":"classes/_exception_.refreshexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":125,"kind":1024,"name":"code","url":"classes/_exception_.refreshexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RefreshException"},{"id":126,"kind":1024,"name":"msg","url":"classes/_exception_.refreshexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RefreshException"},{"id":127,"kind":1024,"name":"errorCode","url":"classes/_exception_.refreshexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RefreshException"},{"id":128,"kind":512,"name":"constructor","url":"classes/_exception_.refreshexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RefreshException"},{"id":129,"kind":1024,"name":"fields","url":"classes/_exception_.refreshexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".RefreshException"},{"id":130,"kind":1024,"name":"name","url":"classes/_exception_.refreshexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".RefreshException"},{"id":131,"kind":1024,"name":"message","url":"classes/_exception_.refreshexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".RefreshException"},{"id":132,"kind":1024,"name":"stack","url":"classes/_exception_.refreshexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".RefreshException"},{"id":133,"kind":128,"name":"FileTooLargeException","url":"classes/_exception_.filetoolargeexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":134,"kind":1024,"name":"code","url":"classes/_exception_.filetoolargeexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileTooLargeException"},{"id":135,"kind":1024,"name":"msg","url":"classes/_exception_.filetoolargeexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileTooLargeException"},{"id":136,"kind":1024,"name":"errorCode","url":"classes/_exception_.filetoolargeexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileTooLargeException"},{"id":137,"kind":512,"name":"constructor","url":"classes/_exception_.filetoolargeexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileTooLargeException"},{"id":138,"kind":1024,"name":"fields","url":"classes/_exception_.filetoolargeexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".FileTooLargeException"},{"id":139,"kind":1024,"name":"name","url":"classes/_exception_.filetoolargeexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".FileTooLargeException"},{"id":140,"kind":1024,"name":"message","url":"classes/_exception_.filetoolargeexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".FileTooLargeException"},{"id":141,"kind":1024,"name":"stack","url":"classes/_exception_.filetoolargeexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".FileTooLargeException"},{"id":142,"kind":1,"name":"\"enums\"","url":"modules/_enums_.html","classes":"tsd-kind-external-module"},{"id":143,"kind":4,"name":"UserAdmin","url":"enums/_enums_.useradmin.html","classes":"tsd-kind-enum tsd-parent-kind-external-module","parent":"\"enums\""},{"id":144,"kind":16,"name":"COMMON","url":"enums/_enums_.useradmin.html#common","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"enums\".UserAdmin"},{"id":145,"kind":16,"name":"ADMIN","url":"enums/_enums_.useradmin.html#admin","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"enums\".UserAdmin"},{"id":146,"kind":4,"name":"UserActive","url":"enums/_enums_.useractive.html","classes":"tsd-kind-enum tsd-parent-kind-external-module","parent":"\"enums\""},{"id":147,"kind":16,"name":"ACTIVE","url":"enums/_enums_.useractive.html#active","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"enums\".UserActive"},{"id":148,"kind":16,"name":"NOT_ACTIVE","url":"enums/_enums_.useractive.html#not_active","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"enums\".UserActive"},{"id":149,"kind":4,"name":"TokenType","url":"enums/_enums_.tokentype.html","classes":"tsd-kind-enum tsd-parent-kind-external-module","parent":"\"enums\""},{"id":150,"kind":16,"name":"ACCESS","url":"enums/_enums_.tokentype.html#access","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"enums\".TokenType"},{"id":151,"kind":16,"name":"REFRESH","url":"enums/_enums_.tokentype.html#refresh","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"enums\".TokenType"},{"id":152,"kind":1,"name":"\"jwt\"","url":"modules/_jwt_.html","classes":"tsd-kind-external-module"},{"id":153,"kind":128,"name":"Token","url":"classes/_jwt_.token.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"jwt\""},{"id":154,"kind":1024,"name":"secret","url":"classes/_jwt_.token.html#secret","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":155,"kind":1024,"name":"accessExp","url":"classes/_jwt_.token.html#accessexp","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":156,"kind":1024,"name":"refreshExp","url":"classes/_jwt_.token.html#refreshexp","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":157,"kind":512,"name":"constructor","url":"classes/_jwt_.token.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":158,"kind":2048,"name":"initApp","url":"classes/_jwt_.token.html#initapp","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":159,"kind":2048,"name":"createAccessToken","url":"classes/_jwt_.token.html#createaccesstoken","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":160,"kind":2048,"name":"createRefreshToken","url":"classes/_jwt_.token.html#createrefreshtoken","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":161,"kind":2048,"name":"verifyToken","url":"classes/_jwt_.token.html#verifytoken","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":162,"kind":32,"name":"jwt","url":"modules/_jwt_.html#jwt","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":163,"kind":64,"name":"createAccessToken","url":"modules/_jwt_.html#createaccesstoken","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"jwt\""},{"id":164,"kind":64,"name":"createRefreshToken","url":"modules/_jwt_.html#createrefreshtoken","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"jwt\""},{"id":165,"kind":64,"name":"verifyAccessToken","url":"modules/_jwt_.html#verifyaccesstoken","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"jwt\""},{"id":166,"kind":64,"name":"verifyRefreshToken","url":"modules/_jwt_.html#verifyrefreshtoken","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"jwt\""},{"id":167,"kind":64,"name":"getTokens","url":"modules/_jwt_.html#gettokens","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":168,"kind":64,"name":"parseHeader","url":"modules/_jwt_.html#parseheader","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":169,"kind":64,"name":"checkUserIsActive","url":"modules/_jwt_.html#checkuserisactive","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":170,"kind":64,"name":"loginRequired","url":"modules/_jwt_.html#loginrequired","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":171,"kind":64,"name":"refreshTokenRequired","url":"modules/_jwt_.html#refreshtokenrequired","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":172,"kind":64,"name":"refreshTokenRequiredWithUnifyException","url":"modules/_jwt_.html#refreshtokenrequiredwithunifyexception","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":173,"kind":64,"name":"groupRequired","url":"modules/_jwt_.html#grouprequired","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":174,"kind":64,"name":"adminRequired","url":"modules/_jwt_.html#adminrequired","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":175,"kind":1,"name":"\"extended-validator\"","url":"modules/_extended_validator_.html","classes":"tsd-kind-external-module"},{"id":176,"kind":256,"name":"IsFloatOptions","url":"interfaces/_extended_validator_.isfloatoptions.html","classes":"tsd-kind-interface tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"extended-validator\""},{"id":177,"kind":1024,"name":"min","url":"interfaces/_extended_validator_.isfloatoptions.html#min","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsFloatOptions"},{"id":178,"kind":1024,"name":"max","url":"interfaces/_extended_validator_.isfloatoptions.html#max","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsFloatOptions"},{"id":179,"kind":1024,"name":"gt","url":"interfaces/_extended_validator_.isfloatoptions.html#gt","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsFloatOptions"},{"id":180,"kind":1024,"name":"lt","url":"interfaces/_extended_validator_.isfloatoptions.html#lt","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsFloatOptions"},{"id":181,"kind":256,"name":"IsIntOptions","url":"interfaces/_extended_validator_.isintoptions.html","classes":"tsd-kind-interface tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"extended-validator\""},{"id":182,"kind":1024,"name":"min","url":"interfaces/_extended_validator_.isintoptions.html#min","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsIntOptions"},{"id":183,"kind":1024,"name":"max","url":"interfaces/_extended_validator_.isintoptions.html#max","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsIntOptions"},{"id":184,"kind":1024,"name":"allow_leading_zeroes","url":"interfaces/_extended_validator_.isintoptions.html#allow_leading_zeroes","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsIntOptions"},{"id":185,"kind":1024,"name":"lt","url":"interfaces/_extended_validator_.isintoptions.html#lt","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsIntOptions"},{"id":186,"kind":1024,"name":"gt","url":"interfaces/_extended_validator_.isintoptions.html#gt","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsIntOptions"},{"id":187,"kind":128,"name":"ExtendedValidator","url":"classes/_extended_validator_.extendedvalidator.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"extended-validator\""},{"id":188,"kind":2048,"name":"hasProperty","url":"classes/_extended_validator_.extendedvalidator.html#hasproperty","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":189,"kind":2048,"name":"objPropertyIsNotEmpty","url":"classes/_extended_validator_.extendedvalidator.html#objpropertyisnotempty","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":190,"kind":2048,"name":"objPropertiesIsNotEmpty","url":"classes/_extended_validator_.extendedvalidator.html#objpropertiesisnotempty","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":191,"kind":2048,"name":"toInt","url":"classes/_extended_validator_.extendedvalidator.html#toint","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":192,"kind":2048,"name":"toFloat","url":"classes/_extended_validator_.extendedvalidator.html#tofloat","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":193,"kind":2048,"name":"toBoolean","url":"classes/_extended_validator_.extendedvalidator.html#toboolean","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":194,"kind":2048,"name":"toDate","url":"classes/_extended_validator_.extendedvalidator.html#todate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":195,"kind":2048,"name":"isFloat","url":"classes/_extended_validator_.extendedvalidator.html#isfloat","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":196,"kind":2048,"name":"isFloat2","url":"classes/_extended_validator_.extendedvalidator.html#isfloat2","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":197,"kind":2048,"name":"isInt2","url":"classes/_extended_validator_.extendedvalidator.html#isint2","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":198,"kind":2048,"name":"isInt3","url":"classes/_extended_validator_.extendedvalidator.html#isint3","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":199,"kind":2048,"name":"validate","url":"classes/_extended_validator_.extendedvalidator.html#validate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":200,"kind":2048,"name":"validateOrReject","url":"classes/_extended_validator_.extendedvalidator.html#validateorreject","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":201,"kind":2048,"name":"validateSync","url":"classes/_extended_validator_.extendedvalidator.html#validatesync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":202,"kind":2048,"name":"validateValueByMetadata","url":"classes/_extended_validator_.extendedvalidator.html#validatevaluebymetadata","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":203,"kind":2048,"name":"isDefined","url":"classes/_extended_validator_.extendedvalidator.html#isdefined","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":204,"kind":2048,"name":"equals","url":"classes/_extended_validator_.extendedvalidator.html#equals","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":205,"kind":2048,"name":"notEquals","url":"classes/_extended_validator_.extendedvalidator.html#notequals","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":206,"kind":2048,"name":"isEmpty","url":"classes/_extended_validator_.extendedvalidator.html#isempty","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":207,"kind":2048,"name":"isNotEmpty","url":"classes/_extended_validator_.extendedvalidator.html#isnotempty","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":208,"kind":2048,"name":"isIn","url":"classes/_extended_validator_.extendedvalidator.html#isin","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":209,"kind":2048,"name":"isNotIn","url":"classes/_extended_validator_.extendedvalidator.html#isnotin","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":210,"kind":2048,"name":"isBoolean","url":"classes/_extended_validator_.extendedvalidator.html#isboolean","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":211,"kind":2048,"name":"isDate","url":"classes/_extended_validator_.extendedvalidator.html#isdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":212,"kind":2048,"name":"isString","url":"classes/_extended_validator_.extendedvalidator.html#isstring","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":213,"kind":2048,"name":"isDateString","url":"classes/_extended_validator_.extendedvalidator.html#isdatestring","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":214,"kind":2048,"name":"isArray","url":"classes/_extended_validator_.extendedvalidator.html#isarray","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":215,"kind":2048,"name":"isEnum","url":"classes/_extended_validator_.extendedvalidator.html#isenum","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":216,"kind":2048,"name":"isNumber","url":"classes/_extended_validator_.extendedvalidator.html#isnumber","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":217,"kind":2048,"name":"isInt","url":"classes/_extended_validator_.extendedvalidator.html#isint","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":218,"kind":2048,"name":"isDivisibleBy","url":"classes/_extended_validator_.extendedvalidator.html#isdivisibleby","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":219,"kind":2048,"name":"isPositive","url":"classes/_extended_validator_.extendedvalidator.html#ispositive","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":220,"kind":2048,"name":"isNegative","url":"classes/_extended_validator_.extendedvalidator.html#isnegative","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":221,"kind":2048,"name":"min","url":"classes/_extended_validator_.extendedvalidator.html#min","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":222,"kind":2048,"name":"max","url":"classes/_extended_validator_.extendedvalidator.html#max","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":223,"kind":2048,"name":"minDate","url":"classes/_extended_validator_.extendedvalidator.html#mindate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":224,"kind":2048,"name":"maxDate","url":"classes/_extended_validator_.extendedvalidator.html#maxdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":225,"kind":2048,"name":"isBooleanString","url":"classes/_extended_validator_.extendedvalidator.html#isbooleanstring","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":226,"kind":2048,"name":"isNumberString","url":"classes/_extended_validator_.extendedvalidator.html#isnumberstring","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":227,"kind":2048,"name":"contains","url":"classes/_extended_validator_.extendedvalidator.html#contains","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":228,"kind":2048,"name":"notContains","url":"classes/_extended_validator_.extendedvalidator.html#notcontains","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":229,"kind":2048,"name":"isAlpha","url":"classes/_extended_validator_.extendedvalidator.html#isalpha","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":230,"kind":2048,"name":"isAlphanumeric","url":"classes/_extended_validator_.extendedvalidator.html#isalphanumeric","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":231,"kind":2048,"name":"isAscii","url":"classes/_extended_validator_.extendedvalidator.html#isascii","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":232,"kind":2048,"name":"isBase64","url":"classes/_extended_validator_.extendedvalidator.html#isbase64","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":233,"kind":2048,"name":"isByteLength","url":"classes/_extended_validator_.extendedvalidator.html#isbytelength","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":234,"kind":2048,"name":"isCreditCard","url":"classes/_extended_validator_.extendedvalidator.html#iscreditcard","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":235,"kind":2048,"name":"isCurrency","url":"classes/_extended_validator_.extendedvalidator.html#iscurrency","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":236,"kind":2048,"name":"isEmail","url":"classes/_extended_validator_.extendedvalidator.html#isemail","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":237,"kind":2048,"name":"isFQDN","url":"classes/_extended_validator_.extendedvalidator.html#isfqdn","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":238,"kind":2048,"name":"isFullWidth","url":"classes/_extended_validator_.extendedvalidator.html#isfullwidth","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":239,"kind":2048,"name":"isHalfWidth","url":"classes/_extended_validator_.extendedvalidator.html#ishalfwidth","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":240,"kind":2048,"name":"isVariableWidth","url":"classes/_extended_validator_.extendedvalidator.html#isvariablewidth","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":241,"kind":2048,"name":"isHexColor","url":"classes/_extended_validator_.extendedvalidator.html#ishexcolor","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":242,"kind":2048,"name":"isHexadecimal","url":"classes/_extended_validator_.extendedvalidator.html#ishexadecimal","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":243,"kind":2048,"name":"isIP","url":"classes/_extended_validator_.extendedvalidator.html#isip","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":244,"kind":2048,"name":"isISBN","url":"classes/_extended_validator_.extendedvalidator.html#isisbn","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":245,"kind":2048,"name":"isISIN","url":"classes/_extended_validator_.extendedvalidator.html#isisin","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":246,"kind":2048,"name":"isISO8601","url":"classes/_extended_validator_.extendedvalidator.html#isiso8601","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":247,"kind":2048,"name":"isJSON","url":"classes/_extended_validator_.extendedvalidator.html#isjson","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":248,"kind":2048,"name":"isLowercase","url":"classes/_extended_validator_.extendedvalidator.html#islowercase","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":249,"kind":2048,"name":"isMobilePhone","url":"classes/_extended_validator_.extendedvalidator.html#ismobilephone","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":250,"kind":2048,"name":"isPhoneNumber","url":"classes/_extended_validator_.extendedvalidator.html#isphonenumber","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":251,"kind":2048,"name":"isMongoId","url":"classes/_extended_validator_.extendedvalidator.html#ismongoid","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":252,"kind":2048,"name":"isMultibyte","url":"classes/_extended_validator_.extendedvalidator.html#ismultibyte","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":253,"kind":2048,"name":"isSurrogatePair","url":"classes/_extended_validator_.extendedvalidator.html#issurrogatepair","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":254,"kind":2048,"name":"isURL","url":"classes/_extended_validator_.extendedvalidator.html#isurl","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":255,"kind":2048,"name":"isUUID","url":"classes/_extended_validator_.extendedvalidator.html#isuuid","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":256,"kind":2048,"name":"isUppercase","url":"classes/_extended_validator_.extendedvalidator.html#isuppercase","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":257,"kind":2048,"name":"length","url":"classes/_extended_validator_.extendedvalidator.html#length","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":258,"kind":2048,"name":"minLength","url":"classes/_extended_validator_.extendedvalidator.html#minlength","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":259,"kind":2048,"name":"maxLength","url":"classes/_extended_validator_.extendedvalidator.html#maxlength","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":260,"kind":2048,"name":"matches","url":"classes/_extended_validator_.extendedvalidator.html#matches","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":261,"kind":2048,"name":"isMilitaryTime","url":"classes/_extended_validator_.extendedvalidator.html#ismilitarytime","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":262,"kind":2048,"name":"arrayContains","url":"classes/_extended_validator_.extendedvalidator.html#arraycontains","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":263,"kind":2048,"name":"arrayNotContains","url":"classes/_extended_validator_.extendedvalidator.html#arraynotcontains","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":264,"kind":2048,"name":"arrayNotEmpty","url":"classes/_extended_validator_.extendedvalidator.html#arraynotempty","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":265,"kind":2048,"name":"arrayMinSize","url":"classes/_extended_validator_.extendedvalidator.html#arrayminsize","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":266,"kind":2048,"name":"arrayMaxSize","url":"classes/_extended_validator_.extendedvalidator.html#arraymaxsize","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":267,"kind":2048,"name":"arrayUnique","url":"classes/_extended_validator_.extendedvalidator.html#arrayunique","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":268,"kind":2048,"name":"isInstance","url":"classes/_extended_validator_.extendedvalidator.html#isinstance","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":269,"kind":32,"name":"extendedValidator","url":"modules/_extended_validator_.html#extendedvalidator-1","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"extended-validator\""},{"id":270,"kind":1,"name":"\"util\"","url":"modules/_util_.html","classes":"tsd-kind-external-module"},{"id":271,"kind":256,"name":"ObjOptions","url":"interfaces/_util_.objoptions.html","classes":"tsd-kind-interface tsd-parent-kind-external-module","parent":"\"util\""},{"id":272,"kind":1024,"name":"prefix","url":"interfaces/_util_.objoptions.html#prefix","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"util\".ObjOptions"},{"id":273,"kind":1024,"name":"filter","url":"interfaces/_util_.objoptions.html#filter","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"util\".ObjOptions"},{"id":274,"kind":64,"name":"isUndefined","url":"modules/_util_.html#isundefined","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":275,"kind":64,"name":"isFunction","url":"modules/_util_.html#isfunction","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":276,"kind":64,"name":"isObject","url":"modules/_util_.html#isobject","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":277,"kind":64,"name":"isString","url":"modules/_util_.html#isstring","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":278,"kind":64,"name":"isConstructor","url":"modules/_util_.html#isconstructor","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":279,"kind":64,"name":"validatePath","url":"modules/_util_.html#validatepath","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":280,"kind":64,"name":"isNil","url":"modules/_util_.html#isnil","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":281,"kind":64,"name":"isEmpty","url":"modules/_util_.html#isempty","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":282,"kind":64,"name":"isSymbol","url":"modules/_util_.html#issymbol","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":283,"kind":64,"name":"strVal","url":"modules/_util_.html#strval","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":284,"kind":32,"name":"isNotEmpty","url":"modules/_util_.html#isnotempty","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"util\""},{"id":285,"kind":32,"name":"isNegative","url":"modules/_util_.html#isnegative","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"util\""},{"id":286,"kind":32,"name":"isPositive","url":"modules/_util_.html#ispositive","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"util\""},{"id":287,"kind":64,"name":"assert","url":"modules/_util_.html#assert","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":288,"kind":64,"name":"toHump","url":"modules/_util_.html#tohump","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":289,"kind":64,"name":"toLine","url":"modules/_util_.html#toline","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":290,"kind":64,"name":"findAuthAndModule","url":"modules/_util_.html#findauthandmodule","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":291,"kind":64,"name":"findMetaByAuth","url":"modules/_util_.html#findmetabyauth","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":292,"kind":64,"name":"checkDateFormat","url":"modules/_util_.html#checkdateformat","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":293,"kind":64,"name":"paginate","url":"modules/_util_.html#paginate","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":294,"kind":64,"name":"unsets","url":"modules/_util_.html#unsets","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":295,"kind":64,"name":"decorateProp","url":"modules/_util_.html#decorateprop","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":296,"kind":64,"name":"getAllMethodNames","url":"modules/_util_.html#getallmethodnames","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":297,"kind":64,"name":"getAllFieldNames","url":"modules/_util_.html#getallfieldnames","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":298,"kind":64,"name":"prefixAndFilter","url":"modules/_util_.html#prefixandfilter","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"util\""},{"id":299,"kind":64,"name":"getFiles","url":"modules/_util_.html#getfiles","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":300,"kind":1,"name":"\"db\"","url":"modules/_db_.html","classes":"tsd-kind-external-module"},{"id":301,"kind":32,"name":"database","url":"modules/_db_.html#database","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"db\""},{"id":302,"kind":32,"name":"type","url":"modules/_db_.html#type","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"db\""},{"id":303,"kind":32,"name":"host","url":"modules/_db_.html#host","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"db\""},{"id":304,"kind":32,"name":"port","url":"modules/_db_.html#port","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"db\""},{"id":305,"kind":32,"name":"username","url":"modules/_db_.html#username","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"db\""},{"id":306,"kind":32,"name":"password","url":"modules/_db_.html#password","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"db\""},{"id":307,"kind":32,"name":"logging","url":"modules/_db_.html#logging","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"db\""},{"id":308,"kind":32,"name":"db","url":"modules/_db_.html#db","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"db\""},{"id":309,"kind":1,"name":"\"password-hash\"","url":"modules/_password_hash_.html","classes":"tsd-kind-external-module"},{"id":310,"kind":256,"name":"Option","url":"interfaces/_password_hash_.option.html","classes":"tsd-kind-interface tsd-parent-kind-external-module","parent":"\"password-hash\""},{"id":311,"kind":1024,"name":"algorithm","url":"interfaces/_password_hash_.option.html#algorithm","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"password-hash\".Option"},{"id":312,"kind":1024,"name":"saltLength","url":"interfaces/_password_hash_.option.html#saltlength","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"password-hash\".Option"},{"id":313,"kind":1024,"name":"iterations","url":"interfaces/_password_hash_.option.html#iterations","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"password-hash\".Option"},{"id":314,"kind":32,"name":"saltChars","url":"modules/_password_hash_.html#saltchars","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"password-hash\""},{"id":315,"kind":32,"name":"saltCharsCount","url":"modules/_password_hash_.html#saltcharscount","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"password-hash\""},{"id":316,"kind":64,"name":"generateSalt","url":"modules/_password_hash_.html#generatesalt","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"password-hash\""},{"id":317,"kind":64,"name":"generateHash","url":"modules/_password_hash_.html#generatehash","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"password-hash\""},{"id":318,"kind":64,"name":"generate","url":"modules/_password_hash_.html#generate","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"password-hash\""},{"id":319,"kind":64,"name":"verify","url":"modules/_password_hash_.html#verify","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"password-hash\""},{"id":320,"kind":64,"name":"isHashed","url":"modules/_password_hash_.html#ishashed","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"password-hash\""},{"id":321,"kind":1,"name":"\"interface\"","url":"modules/_interface_.html","classes":"tsd-kind-external-module"},{"id":322,"kind":2097152,"name":"InfoCrudMixin","url":"modules/_interface_.html#infocrudmixin","classes":"tsd-kind-object-literal tsd-parent-kind-external-module","parent":"\"interface\""},{"id":323,"kind":32,"name":"attributes","url":"modules/_interface_.html#infocrudmixin.attributes-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin"},{"id":324,"kind":65536,"name":"__type","url":"modules/_interface_.html#infocrudmixin.attributes-2.__type","classes":"tsd-kind-type-literal tsd-parent-kind-variable tsd-is-not-exported","parent":"\"interface\".InfoCrudMixin.attributes"},{"id":325,"kind":2097152,"name":"options","url":"modules/_interface_.html#infocrudmixin.options-2","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin"},{"id":326,"kind":32,"name":"createdAt","url":"modules/_interface_.html#infocrudmixin.options-2.createdat-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin.options"},{"id":327,"kind":32,"name":"updatedAt","url":"modules/_interface_.html#infocrudmixin.options-2.updatedat-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin.options"},{"id":328,"kind":32,"name":"deletedAt","url":"modules/_interface_.html#infocrudmixin.options-2.deletedat","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin.options"},{"id":329,"kind":32,"name":"paranoid","url":"modules/_interface_.html#infocrudmixin.options-2.paranoid","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin.options"},{"id":330,"kind":2097152,"name":"getterMethods","url":"modules/_interface_.html#infocrudmixin.options-2.gettermethods","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin.options"},{"id":331,"kind":64,"name":"createTime","url":"modules/_interface_.html#infocrudmixin.options-2.gettermethods.createtime","classes":"tsd-kind-function tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin.options.getterMethods"},{"id":332,"kind":2097152,"name":"UserInterface","url":"modules/_interface_.html#userinterface","classes":"tsd-kind-object-literal tsd-parent-kind-external-module","parent":"\"interface\""},{"id":333,"kind":2097152,"name":"attributes","url":"modules/_interface_.html#userinterface.attributes-4","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface"},{"id":334,"kind":2097152,"name":"id","url":"modules/_interface_.html#userinterface.attributes-4.id-4","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes"},{"id":335,"kind":32,"name":"type","url":"modules/_interface_.html#userinterface.attributes-4.id-4.type-26","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.id"},{"id":336,"kind":32,"name":"primaryKey","url":"modules/_interface_.html#userinterface.attributes-4.id-4.primarykey-4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.id"},{"id":337,"kind":32,"name":"autoIncrement","url":"modules/_interface_.html#userinterface.attributes-4.id-4.autoincrement-4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.id"},{"id":338,"kind":2097152,"name":"nickname","url":"modules/_interface_.html#userinterface.attributes-4.nickname","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes"},{"id":339,"kind":32,"name":"type","url":"modules/_interface_.html#userinterface.attributes-4.nickname.type-27","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.nickname"},{"id":340,"kind":32,"name":"allowNull","url":"modules/_interface_.html#userinterface.attributes-4.nickname.allownull-11","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.nickname"},{"id":341,"kind":32,"name":"unique","url":"modules/_interface_.html#userinterface.attributes-4.nickname.unique-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.nickname"},{"id":342,"kind":2097152,"name":"admin","url":"modules/_interface_.html#userinterface.attributes-4.admin","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes"},{"id":343,"kind":32,"name":"type","url":"modules/_interface_.html#userinterface.attributes-4.admin.type-23","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.admin"},{"id":344,"kind":32,"name":"allowNull","url":"modules/_interface_.html#userinterface.attributes-4.admin.allownull-8","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.admin"},{"id":345,"kind":32,"name":"defaultValue","url":"modules/_interface_.html#userinterface.attributes-4.admin.defaultvalue-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.admin"},{"id":346,"kind":2097152,"name":"active","url":"modules/_interface_.html#userinterface.attributes-4.active","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes"},{"id":347,"kind":32,"name":"type","url":"modules/_interface_.html#userinterface.attributes-4.active.type-22","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.active"},{"id":348,"kind":32,"name":"allowNull","url":"modules/_interface_.html#userinterface.attributes-4.active.allownull-7","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.active"},{"id":349,"kind":32,"name":"defaultValue","url":"modules/_interface_.html#userinterface.attributes-4.active.defaultvalue-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.active"},{"id":350,"kind":2097152,"name":"email","url":"modules/_interface_.html#userinterface.attributes-4.email","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes"},{"id":351,"kind":32,"name":"type","url":"modules/_interface_.html#userinterface.attributes-4.email.type-24","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.email"},{"id":352,"kind":32,"name":"unique","url":"modules/_interface_.html#userinterface.attributes-4.email.unique","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.email"},{"id":353,"kind":32,"name":"allowNull","url":"modules/_interface_.html#userinterface.attributes-4.email.allownull-9","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.email"},{"id":354,"kind":2097152,"name":"group_id","url":"modules/_interface_.html#userinterface.attributes-4.group_id-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes"},{"id":355,"kind":32,"name":"type","url":"modules/_interface_.html#userinterface.attributes-4.group_id-1.type-25","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.group_id"},{"id":356,"kind":32,"name":"allowNull","url":"modules/_interface_.html#userinterface.attributes-4.group_id-1.allownull-10","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.group_id"},{"id":357,"kind":2097152,"name":"password","url":"modules/_interface_.html#userinterface.attributes-4.password","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes"},{"id":358,"kind":32,"name":"type","url":"modules/_interface_.html#userinterface.attributes-4.password.type-28","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.password"},{"id":359,"kind":64,"name":"set","url":"modules/_interface_.html#userinterface.attributes-4.password.set","classes":"tsd-kind-function tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.password"},{"id":360,"kind":64,"name":"get","url":"modules/_interface_.html#userinterface.attributes-4.password.get","classes":"tsd-kind-function tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.password"},{"id":361,"kind":32,"name":"options","url":"modules/_interface_.html#userinterface.options-4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface"},{"id":362,"kind":2097152,"name":"AuthInterface","url":"modules/_interface_.html#authinterface","classes":"tsd-kind-object-literal tsd-parent-kind-external-module","parent":"\"interface\""},{"id":363,"kind":2097152,"name":"attributes","url":"modules/_interface_.html#authinterface.attributes","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface"},{"id":364,"kind":2097152,"name":"id","url":"modules/_interface_.html#authinterface.attributes.id","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes"},{"id":365,"kind":32,"name":"type","url":"modules/_interface_.html#authinterface.attributes.id.type-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes.id"},{"id":366,"kind":32,"name":"primaryKey","url":"modules/_interface_.html#authinterface.attributes.id.primarykey","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes.id"},{"id":367,"kind":32,"name":"autoIncrement","url":"modules/_interface_.html#authinterface.attributes.id.autoincrement","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes.id"},{"id":368,"kind":2097152,"name":"group_id","url":"modules/_interface_.html#authinterface.attributes.group_id","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes"},{"id":369,"kind":32,"name":"type","url":"modules/_interface_.html#authinterface.attributes.group_id.type-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes.group_id"},{"id":370,"kind":32,"name":"allowNull","url":"modules/_interface_.html#authinterface.attributes.group_id.allownull","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes.group_id"},{"id":371,"kind":2097152,"name":"auth","url":"modules/_interface_.html#authinterface.attributes.auth","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes"},{"id":372,"kind":32,"name":"type","url":"modules/_interface_.html#authinterface.attributes.auth.type","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes.auth"},{"id":373,"kind":2097152,"name":"module","url":"modules/_interface_.html#authinterface.attributes.module","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes"},{"id":374,"kind":32,"name":"type","url":"modules/_interface_.html#authinterface.attributes.module.type-3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes.module"},{"id":375,"kind":2097152,"name":"options","url":"modules/_interface_.html#authinterface.options","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface"},{"id":376,"kind":32,"name":"tableName","url":"modules/_interface_.html#authinterface.options.tablename","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.options"},{"id":377,"kind":32,"name":"createdAt","url":"modules/_interface_.html#authinterface.options.createdat","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.options"},{"id":378,"kind":32,"name":"updatedAt","url":"modules/_interface_.html#authinterface.options.updatedat","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.options"},{"id":379,"kind":2097152,"name":"GroupInterface","url":"modules/_interface_.html#groupinterface","classes":"tsd-kind-object-literal tsd-parent-kind-external-module","parent":"\"interface\""},{"id":380,"kind":2097152,"name":"attributes","url":"modules/_interface_.html#groupinterface.attributes-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface"},{"id":381,"kind":2097152,"name":"id","url":"modules/_interface_.html#groupinterface.attributes-1.id-2","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes"},{"id":382,"kind":32,"name":"type","url":"modules/_interface_.html#groupinterface.attributes-1.id-2.type-11","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes.id"},{"id":383,"kind":32,"name":"primaryKey","url":"modules/_interface_.html#groupinterface.attributes-1.id-2.primarykey-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes.id"},{"id":384,"kind":32,"name":"autoIncrement","url":"modules/_interface_.html#groupinterface.attributes-1.id-2.autoincrement-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes.id"},{"id":385,"kind":2097152,"name":"name","url":"modules/_interface_.html#groupinterface.attributes-1.name-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes"},{"id":386,"kind":32,"name":"type","url":"modules/_interface_.html#groupinterface.attributes-1.name-1.type-13","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes.name"},{"id":387,"kind":2097152,"name":"info","url":"modules/_interface_.html#groupinterface.attributes-1.info","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes"},{"id":388,"kind":32,"name":"type","url":"modules/_interface_.html#groupinterface.attributes-1.info.type-12","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes.info"},{"id":389,"kind":32,"name":"allowNull","url":"modules/_interface_.html#groupinterface.attributes-1.info.allownull-5","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes.info"},{"id":390,"kind":2097152,"name":"options","url":"modules/_interface_.html#groupinterface.options-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface"},{"id":391,"kind":32,"name":"tableName","url":"modules/_interface_.html#groupinterface.options-1.tablename-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.options"},{"id":392,"kind":32,"name":"createdAt","url":"modules/_interface_.html#groupinterface.options-1.createdat-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.options"},{"id":393,"kind":32,"name":"updatedAt","url":"modules/_interface_.html#groupinterface.options-1.updatedat-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.options"},{"id":394,"kind":2097152,"name":"LogInterface","url":"modules/_interface_.html#loginterface","classes":"tsd-kind-object-literal tsd-parent-kind-external-module","parent":"\"interface\""},{"id":395,"kind":2097152,"name":"attributes","url":"modules/_interface_.html#loginterface.attributes-3","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface"},{"id":396,"kind":2097152,"name":"id","url":"modules/_interface_.html#loginterface.attributes-3.id-3","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":397,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.id-3.type-15","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.id"},{"id":398,"kind":32,"name":"primaryKey","url":"modules/_interface_.html#loginterface.attributes-3.id-3.primarykey-3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.id"},{"id":399,"kind":32,"name":"autoIncrement","url":"modules/_interface_.html#loginterface.attributes-3.id-3.autoincrement-3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.id"},{"id":400,"kind":2097152,"name":"message","url":"modules/_interface_.html#loginterface.attributes-3.message","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":401,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.message.type-16","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.message"},{"id":402,"kind":2097152,"name":"user_id","url":"modules/_interface_.html#loginterface.attributes-3.user_id","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":403,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.user_id.type-20","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.user_id"},{"id":404,"kind":32,"name":"allowNull","url":"modules/_interface_.html#loginterface.attributes-3.user_id.allownull-6","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.user_id"},{"id":405,"kind":2097152,"name":"user_name","url":"modules/_interface_.html#loginterface.attributes-3.user_name","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":406,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.user_name.type-21","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.user_name"},{"id":407,"kind":2097152,"name":"status_code","url":"modules/_interface_.html#loginterface.attributes-3.status_code","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":408,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.status_code.type-19","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.status_code"},{"id":409,"kind":2097152,"name":"method","url":"modules/_interface_.html#loginterface.attributes-3.method","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":410,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.method.type-17","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.method"},{"id":411,"kind":2097152,"name":"path","url":"modules/_interface_.html#loginterface.attributes-3.path-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":412,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.path-1.type-18","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.path"},{"id":413,"kind":2097152,"name":"authority","url":"modules/_interface_.html#loginterface.attributes-3.authority","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":414,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.authority.type-14","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.authority"},{"id":415,"kind":2097152,"name":"options","url":"modules/_interface_.html#loginterface.options-3","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface"},{"id":416,"kind":32,"name":"tableName","url":"modules/_interface_.html#loginterface.options-3.tablename-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.options"},{"id":417,"kind":32,"name":"createdAt","url":"modules/_interface_.html#loginterface.options-3.createdat-3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.options"},{"id":418,"kind":32,"name":"updatedAt","url":"modules/_interface_.html#loginterface.options-3.updatedat-3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.options"},{"id":419,"kind":2097152,"name":"getterMethods","url":"modules/_interface_.html#loginterface.options-3.gettermethods-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.options"},{"id":420,"kind":64,"name":"time","url":"modules/_interface_.html#loginterface.options-3.gettermethods-1.time","classes":"tsd-kind-function tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.options.getterMethods"},{"id":421,"kind":2097152,"name":"FileInterface","url":"modules/_interface_.html#fileinterface","classes":"tsd-kind-object-literal tsd-parent-kind-external-module","parent":"\"interface\""},{"id":422,"kind":2097152,"name":"id","url":"modules/_interface_.html#fileinterface.id-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface"},{"id":423,"kind":32,"name":"type","url":"modules/_interface_.html#fileinterface.id-1.type-5","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.id"},{"id":424,"kind":32,"name":"primaryKey","url":"modules/_interface_.html#fileinterface.id-1.primarykey-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.id"},{"id":425,"kind":32,"name":"autoIncrement","url":"modules/_interface_.html#fileinterface.id-1.autoincrement-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.id"},{"id":426,"kind":2097152,"name":"path","url":"modules/_interface_.html#fileinterface.path","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface"},{"id":427,"kind":32,"name":"type","url":"modules/_interface_.html#fileinterface.path.type-7","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.path"},{"id":428,"kind":32,"name":"allowNull","url":"modules/_interface_.html#fileinterface.path.allownull-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.path"},{"id":429,"kind":2097152,"name":"type","url":"modules/_interface_.html#fileinterface.type-9","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface"},{"id":430,"kind":32,"name":"type","url":"modules/_interface_.html#fileinterface.type-9.type-10","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.type"},{"id":431,"kind":32,"name":"allowNull","url":"modules/_interface_.html#fileinterface.type-9.allownull-4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.type"},{"id":432,"kind":32,"name":"defaultValue","url":"modules/_interface_.html#fileinterface.type-9.defaultvalue","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.type"},{"id":433,"kind":32,"name":"comment","url":"modules/_interface_.html#fileinterface.type-9.comment","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.type"},{"id":434,"kind":2097152,"name":"name","url":"modules/_interface_.html#fileinterface.name","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface"},{"id":435,"kind":32,"name":"type","url":"modules/_interface_.html#fileinterface.name.type-6","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.name"},{"id":436,"kind":32,"name":"allowNull","url":"modules/_interface_.html#fileinterface.name.allownull-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.name"},{"id":437,"kind":2097152,"name":"extension","url":"modules/_interface_.html#fileinterface.extension","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface"},{"id":438,"kind":32,"name":"type","url":"modules/_interface_.html#fileinterface.extension.type-4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.extension"},{"id":439,"kind":2097152,"name":"size","url":"modules/_interface_.html#fileinterface.size","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface"},{"id":440,"kind":32,"name":"type","url":"modules/_interface_.html#fileinterface.size.type-8","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.size"},{"id":441,"kind":32,"name":"allowNull","url":"modules/_interface_.html#fileinterface.size.allownull-3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.size"},{"id":442,"kind":1,"name":"\"extend\"","url":"modules/_extend_.html","classes":"tsd-kind-external-module"},{"id":443,"kind":64,"name":"json","url":"modules/_extend_.html#json","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"extend\""},{"id":444,"kind":64,"name":"transform","url":"modules/_extend_.html#transform","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"extend\""},{"id":445,"kind":64,"name":"success","url":"modules/_extend_.html#success","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"extend\""},{"id":446,"kind":64,"name":"logging","url":"modules/_extend_.html#logging","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"extend\""},{"id":447,"kind":64,"name":"multipart","url":"modules/_extend_.html#multipart","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"extend\""},{"id":448,"kind":64,"name":"checkSingleFileSize","url":"modules/_extend_.html#checksinglefilesize","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"extend\""},{"id":449,"kind":64,"name":"checkTotalFileSize","url":"modules/_extend_.html#checktotalfilesize","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"extend\""},{"id":450,"kind":64,"name":"checkFileExtension","url":"modules/_extend_.html#checkfileextension","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"extend\""},{"id":451,"kind":1,"name":"\"plugin\"","url":"modules/_plugin_.html","classes":"tsd-kind-external-module"},{"id":452,"kind":128,"name":"Plugin","url":"classes/_plugin_.plugin.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"plugin\""},{"id":453,"kind":1024,"name":"name","url":"classes/_plugin_.plugin.html#name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"plugin\".Plugin"},{"id":454,"kind":1024,"name":"models","url":"classes/_plugin_.plugin.html#models","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"plugin\".Plugin"},{"id":455,"kind":65536,"name":"__type","url":"classes/_plugin_.plugin.html#models.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"plugin\".Plugin.models"},{"id":456,"kind":1024,"name":"controllers","url":"classes/_plugin_.plugin.html#controllers","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"plugin\".Plugin"},{"id":457,"kind":65536,"name":"__type","url":"classes/_plugin_.plugin.html#controllers.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"plugin\".Plugin.controllers"},{"id":458,"kind":512,"name":"constructor","url":"classes/_plugin_.plugin.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"plugin\".Plugin"},{"id":459,"kind":2048,"name":"addModel","url":"classes/_plugin_.plugin.html#addmodel","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"plugin\".Plugin"},{"id":460,"kind":2048,"name":"getModel","url":"classes/_plugin_.plugin.html#getmodel","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"plugin\".Plugin"},{"id":461,"kind":2048,"name":"addController","url":"classes/_plugin_.plugin.html#addcontroller","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"plugin\".Plugin"},{"id":462,"kind":1,"name":"\"loader\"","url":"modules/_loader_.html","classes":"tsd-kind-external-module"},{"id":463,"kind":128,"name":"Loader","url":"classes/_loader_.loader.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"loader\""},{"id":464,"kind":1024,"name":"mainRouter","url":"classes/_loader_.loader.html#mainrouter","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":465,"kind":1024,"name":"pluginPath","url":"classes/_loader_.loader.html#pluginpath","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":466,"kind":1024,"name":"app","url":"classes/_loader_.loader.html#app","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"loader\".Loader"},{"id":467,"kind":1024,"name":"plugins","url":"classes/_loader_.loader.html#plugins","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":468,"kind":65536,"name":"__type","url":"classes/_loader_.loader.html#plugins.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"loader\".Loader.plugins"},{"id":469,"kind":512,"name":"constructor","url":"classes/_loader_.loader.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":470,"kind":2048,"name":"loadPlugins","url":"classes/_loader_.loader.html#loadplugins","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":471,"kind":2048,"name":"loadPlugin","url":"classes/_loader_.loader.html#loadplugin","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":472,"kind":2048,"name":"loadConfig","url":"classes/_loader_.loader.html#loadconfig","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":473,"kind":2048,"name":"loadMainApi","url":"classes/_loader_.loader.html#loadmainapi","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":474,"kind":1,"name":"\"lin-router\"","url":"modules/_lin_router_.html","classes":"tsd-kind-external-module"},{"id":475,"kind":256,"name":"Meta","url":"interfaces/_lin_router_.meta.html","classes":"tsd-kind-interface tsd-parent-kind-external-module","parent":"\"lin-router\""},{"id":476,"kind":1024,"name":"auth","url":"interfaces/_lin_router_.meta.html#auth","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".Meta"},{"id":477,"kind":1024,"name":"module","url":"interfaces/_lin_router_.meta.html#module","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".Meta"},{"id":478,"kind":1024,"name":"mount","url":"interfaces/_lin_router_.meta.html#mount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".Meta"},{"id":479,"kind":128,"name":"LinRouter","url":"classes/_lin_router_.linrouter.html","classes":"tsd-kind-class tsd-parent-kind-external-module tsd-has-type-parameter","parent":"\"lin-router\""},{"id":480,"kind":2048,"name":"linOption","url":"classes/_lin_router_.linrouter.html#linoption","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":481,"kind":2048,"name":"linHead","url":"classes/_lin_router_.linrouter.html#linhead","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":482,"kind":2048,"name":"linGet","url":"classes/_lin_router_.linrouter.html#linget","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":483,"kind":2048,"name":"linPut","url":"classes/_lin_router_.linrouter.html#linput","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":484,"kind":2048,"name":"linPatch","url":"classes/_lin_router_.linrouter.html#linpatch","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":485,"kind":2048,"name":"linPost","url":"classes/_lin_router_.linrouter.html#linpost","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":486,"kind":2048,"name":"linDelete","url":"classes/_lin_router_.linrouter.html#lindelete","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":487,"kind":256,"name":"IRouterOptions","url":"interfaces/_lin_router_.linrouter.irouteroptions.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":488,"kind":1024,"name":"prefix","url":"interfaces/_lin_router_.linrouter.irouteroptions.html#prefix","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterOptions"},{"id":489,"kind":1024,"name":"methods","url":"interfaces/_lin_router_.linrouter.irouteroptions.html#methods","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterOptions"},{"id":490,"kind":1024,"name":"routerPath","url":"interfaces/_lin_router_.linrouter.irouteroptions.html#routerpath","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterOptions"},{"id":491,"kind":1024,"name":"sensitive","url":"interfaces/_lin_router_.linrouter.irouteroptions.html#sensitive","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterOptions"},{"id":492,"kind":1024,"name":"strict","url":"interfaces/_lin_router_.linrouter.irouteroptions.html#strict","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterOptions"},{"id":493,"kind":256,"name":"IRouterParamContext","url":"interfaces/_lin_router_.linrouter.irouterparamcontext.html","classes":"tsd-kind-interface tsd-parent-kind-class tsd-has-type-parameter","parent":"\"lin-router\".LinRouter"},{"id":494,"kind":1024,"name":"params","url":"interfaces/_lin_router_.linrouter.irouterparamcontext.html#params","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterParamContext"},{"id":495,"kind":1024,"name":"router","url":"interfaces/_lin_router_.linrouter.irouterparamcontext.html#router","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterParamContext"},{"id":496,"kind":1024,"name":"_matchedRoute","url":"interfaces/_lin_router_.linrouter.irouterparamcontext.html#_matchedroute","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterParamContext"},{"id":497,"kind":1024,"name":"_matchedRouteName","url":"interfaces/_lin_router_.linrouter.irouterparamcontext.html#_matchedroutename","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterParamContext"},{"id":498,"kind":256,"name":"IRouterContext","url":"interfaces/_lin_router_.linrouter.iroutercontext.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":499,"kind":256,"name":"IParamMiddleware","url":"interfaces/_lin_router_.linrouter.iparammiddleware.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":500,"kind":256,"name":"IRouterAllowedMethodsOptions","url":"interfaces/_lin_router_.linrouter.irouterallowedmethodsoptions.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":501,"kind":1024,"name":"throw","url":"interfaces/_lin_router_.linrouter.irouterallowedmethodsoptions.html#throw","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterAllowedMethodsOptions"},{"id":502,"kind":1024,"name":"notImplemented","url":"interfaces/_lin_router_.linrouter.irouterallowedmethodsoptions.html#notimplemented","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterAllowedMethodsOptions"},{"id":503,"kind":1024,"name":"methodNotAllowed","url":"interfaces/_lin_router_.linrouter.irouterallowedmethodsoptions.html#methodnotallowed","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterAllowedMethodsOptions"},{"id":504,"kind":256,"name":"ILayerOptions","url":"interfaces/_lin_router_.linrouter.ilayeroptions.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":505,"kind":1024,"name":"name","url":"interfaces/_lin_router_.linrouter.ilayeroptions.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.ILayerOptions"},{"id":506,"kind":1024,"name":"sensitive","url":"interfaces/_lin_router_.linrouter.ilayeroptions.html#sensitive","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.ILayerOptions"},{"id":507,"kind":1024,"name":"strict","url":"interfaces/_lin_router_.linrouter.ilayeroptions.html#strict","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.ILayerOptions"},{"id":508,"kind":256,"name":"IUrlOptionsQuery","url":"interfaces/_lin_router_.linrouter.iurloptionsquery.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":509,"kind":1024,"name":"query","url":"interfaces/_lin_router_.linrouter.iurloptionsquery.html#query","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IUrlOptionsQuery"},{"id":510,"kind":256,"name":"IRoutesMatch","url":"interfaces/_lin_router_.linrouter.iroutesmatch.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":511,"kind":1024,"name":"path","url":"interfaces/_lin_router_.linrouter.iroutesmatch.html#path","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRoutesMatch"},{"id":512,"kind":1024,"name":"pathAndMethod","url":"interfaces/_lin_router_.linrouter.iroutesmatch.html#pathandmethod","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRoutesMatch"},{"id":513,"kind":1024,"name":"route","url":"interfaces/_lin_router_.linrouter.iroutesmatch.html#route","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRoutesMatch"},{"id":514,"kind":128,"name":"ParamName","url":"classes/_lin_router_.linrouter.paramname.html","classes":"tsd-kind-class tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":515,"kind":1024,"name":"asterisk","url":"classes/_lin_router_.linrouter.paramname.html#asterisk","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":516,"kind":1024,"name":"delimiter","url":"classes/_lin_router_.linrouter.paramname.html#delimiter","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":517,"kind":1024,"name":"name","url":"classes/_lin_router_.linrouter.paramname.html#name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":518,"kind":1024,"name":"optional","url":"classes/_lin_router_.linrouter.paramname.html#optional","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":519,"kind":1024,"name":"partial","url":"classes/_lin_router_.linrouter.paramname.html#partial","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":520,"kind":1024,"name":"pattern","url":"classes/_lin_router_.linrouter.paramname.html#pattern","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":521,"kind":1024,"name":"prefix","url":"classes/_lin_router_.linrouter.paramname.html#prefix","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":522,"kind":1024,"name":"repeat","url":"classes/_lin_router_.linrouter.paramname.html#repeat","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":523,"kind":128,"name":"Layer","url":"classes/_lin_router_.linrouter.layer.html","classes":"tsd-kind-class tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":524,"kind":1024,"name":"opts","url":"classes/_lin_router_.linrouter.layer.html#opts","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":525,"kind":1024,"name":"name","url":"classes/_lin_router_.linrouter.layer.html#name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":526,"kind":1024,"name":"methods","url":"classes/_lin_router_.linrouter.layer.html#methods","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":527,"kind":1024,"name":"paramNames","url":"classes/_lin_router_.linrouter.layer.html#paramnames","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":528,"kind":1024,"name":"stack","url":"classes/_lin_router_.linrouter.layer.html#stack","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":529,"kind":1024,"name":"regexp","url":"classes/_lin_router_.linrouter.layer.html#regexp","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":530,"kind":1024,"name":"path","url":"classes/_lin_router_.linrouter.layer.html#path","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":531,"kind":512,"name":"constructor","url":"classes/_lin_router_.linrouter.layer.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":532,"kind":2048,"name":"match","url":"classes/_lin_router_.linrouter.layer.html#match","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":533,"kind":2048,"name":"params","url":"classes/_lin_router_.linrouter.layer.html#params","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":534,"kind":2048,"name":"captures","url":"classes/_lin_router_.linrouter.layer.html#captures","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":535,"kind":2048,"name":"url","url":"classes/_lin_router_.linrouter.layer.html#url","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":536,"kind":2048,"name":"param","url":"classes/_lin_router_.linrouter.layer.html#param","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":537,"kind":2048,"name":"setPrefix","url":"classes/_lin_router_.linrouter.layer.html#setprefix","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":538,"kind":4194304,"name":"RouterContext","url":"classes/_lin_router_.linrouter.html#routercontext","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-has-type-parameter tsd-is-static","parent":"\"lin-router\".LinRouter"},{"id":539,"kind":4194304,"name":"IMiddleware","url":"classes/_lin_router_.linrouter.html#imiddleware","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-has-type-parameter tsd-is-static","parent":"\"lin-router\".LinRouter"},{"id":540,"kind":1024,"name":"params","url":"classes/_lin_router_.linrouter.html#params","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":541,"kind":1024,"name":"stack","url":"classes/_lin_router_.linrouter.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":542,"kind":512,"name":"constructor","url":"classes/_lin_router_.linrouter.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":543,"kind":2048,"name":"use","url":"classes/_lin_router_.linrouter.html#use","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":544,"kind":2048,"name":"get","url":"classes/_lin_router_.linrouter.html#get","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":545,"kind":2048,"name":"post","url":"classes/_lin_router_.linrouter.html#post","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":546,"kind":2048,"name":"put","url":"classes/_lin_router_.linrouter.html#put","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":547,"kind":2048,"name":"link","url":"classes/_lin_router_.linrouter.html#link","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":548,"kind":2048,"name":"unlink","url":"classes/_lin_router_.linrouter.html#unlink","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":549,"kind":2048,"name":"delete","url":"classes/_lin_router_.linrouter.html#delete","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":550,"kind":2048,"name":"del","url":"classes/_lin_router_.linrouter.html#del","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":551,"kind":2048,"name":"head","url":"classes/_lin_router_.linrouter.html#head","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":552,"kind":2048,"name":"options","url":"classes/_lin_router_.linrouter.html#options","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":553,"kind":2048,"name":"patch","url":"classes/_lin_router_.linrouter.html#patch","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":554,"kind":2048,"name":"all","url":"classes/_lin_router_.linrouter.html#all","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":555,"kind":2048,"name":"prefix","url":"classes/_lin_router_.linrouter.html#prefix","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":556,"kind":2048,"name":"routes","url":"classes/_lin_router_.linrouter.html#routes","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":557,"kind":2048,"name":"middleware","url":"classes/_lin_router_.linrouter.html#middleware","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":558,"kind":2048,"name":"allowedMethods","url":"classes/_lin_router_.linrouter.html#allowedmethods","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":559,"kind":2048,"name":"redirect","url":"classes/_lin_router_.linrouter.html#redirect","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":560,"kind":2048,"name":"register","url":"classes/_lin_router_.linrouter.html#register","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":561,"kind":2048,"name":"route","url":"classes/_lin_router_.linrouter.html#route","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":562,"kind":2048,"name":"url","url":"classes/_lin_router_.linrouter.html#url","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":563,"kind":2048,"name":"match","url":"classes/_lin_router_.linrouter.html#match","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":564,"kind":2048,"name":"param","url":"classes/_lin_router_.linrouter.html#param","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":565,"kind":2048,"name":"url","url":"classes/_lin_router_.linrouter.html#url-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"lin-router\".LinRouter"},{"id":566,"kind":1,"name":"\"core\"","url":"modules/_core_.html","classes":"tsd-kind-external-module"},{"id":567,"kind":128,"name":"Lin","url":"classes/_core_.lin.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"core\""},{"id":568,"kind":1024,"name":"manager","url":"classes/_core_.lin.html#manager","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"core\".Lin"},{"id":569,"kind":1024,"name":"app","url":"classes/_core_.lin.html#app","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"core\".Lin"},{"id":570,"kind":2048,"name":"initApp","url":"classes/_core_.lin.html#initapp","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".Lin"},{"id":571,"kind":2048,"name":"applyJwt","url":"classes/_core_.lin.html#applyjwt","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"core\".Lin"},{"id":572,"kind":2048,"name":"applyDB","url":"classes/_core_.lin.html#applydb","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"core\".Lin"},{"id":573,"kind":2048,"name":"applyManager","url":"classes/_core_.lin.html#applymanager","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"core\".Lin"},{"id":574,"kind":2048,"name":"applyDefaultExtends","url":"classes/_core_.lin.html#applydefaultextends","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"core\".Lin"},{"id":575,"kind":2048,"name":"mount","url":"classes/_core_.lin.html#mount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"core\".Lin"},{"id":576,"kind":128,"name":"Manager","url":"classes/_core_.manager.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"core\""},{"id":577,"kind":1024,"name":"loader","url":"classes/_core_.manager.html#loader","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":578,"kind":1024,"name":"userModel","url":"classes/_core_.manager.html#usermodel","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":579,"kind":1024,"name":"groupModel","url":"classes/_core_.manager.html#groupmodel","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":580,"kind":1024,"name":"authModel","url":"classes/_core_.manager.html#authmodel","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":581,"kind":2048,"name":"initApp","url":"classes/_core_.manager.html#initapp","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":582,"kind":262144,"name":"plugins","url":"classes/_core_.manager.html#plugins","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":583,"kind":2048,"name":"verify","url":"classes/_core_.manager.html#verify","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":584,"kind":2048,"name":"findUser","url":"classes/_core_.manager.html#finduser","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":585,"kind":2048,"name":"findGroup","url":"classes/_core_.manager.html#findgroup","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":586,"kind":128,"name":"User","url":"classes/_core_.user.html","classes":"tsd-kind-class tsd-parent-kind-external-module tsd-has-type-parameter","parent":"\"core\""},{"id":587,"kind":1024,"name":"id","url":"classes/_core_.user.html#id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":588,"kind":1024,"name":"nickname","url":"classes/_core_.user.html#nickname","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":589,"kind":1024,"name":"admin","url":"classes/_core_.user.html#admin","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":590,"kind":1024,"name":"active","url":"classes/_core_.user.html#active","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":591,"kind":1024,"name":"email","url":"classes/_core_.user.html#email","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":592,"kind":1024,"name":"group_id","url":"classes/_core_.user.html#group_id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":593,"kind":1024,"name":"password","url":"classes/_core_.user.html#password","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":594,"kind":1024,"name":"create_time","url":"classes/_core_.user.html#create_time","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":595,"kind":1024,"name":"update_time","url":"classes/_core_.user.html#update_time","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":596,"kind":1024,"name":"delete_time","url":"classes/_core_.user.html#delete_time","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":597,"kind":2048,"name":"verify","url":"classes/_core_.user.html#verify","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"\"core\".User"},{"id":598,"kind":2048,"name":"checkPassword","url":"classes/_core_.user.html#checkpassword","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".User"},{"id":599,"kind":2048,"name":"resetPassword","url":"classes/_core_.user.html#resetpassword","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".User"},{"id":600,"kind":2048,"name":"changePassword","url":"classes/_core_.user.html#changepassword","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".User"},{"id":601,"kind":2048,"name":"toJSON","url":"classes/_core_.user.html#tojson","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"core\".User"},{"id":602,"kind":1024,"name":"tableName","url":"classes/_core_.user.html#tablename","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":603,"kind":1024,"name":"primaryKeyAttribute","url":"classes/_core_.user.html#primarykeyattribute","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":604,"kind":1024,"name":"associations","url":"classes/_core_.user.html#associations","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":605,"kind":65536,"name":"__type","url":"classes/_core_.user.html#associations.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".User.associations"},{"id":606,"kind":1024,"name":"options","url":"classes/_core_.user.html#options","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":607,"kind":1024,"name":"rawAttributes","url":"classes/_core_.user.html#rawattributes","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":608,"kind":65536,"name":"__type","url":"classes/_core_.user.html#rawattributes.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".User.rawAttributes"},{"id":609,"kind":1024,"name":"sequelize","url":"classes/_core_.user.html#sequelize-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":610,"kind":2048,"name":"init","url":"classes/_core_.user.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":611,"kind":2048,"name":"removeAttribute","url":"classes/_core_.user.html#removeattribute","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":612,"kind":2048,"name":"sync","url":"classes/_core_.user.html#sync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":613,"kind":2048,"name":"drop","url":"classes/_core_.user.html#drop","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":614,"kind":2048,"name":"schema","url":"classes/_core_.user.html#schema","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":615,"kind":2048,"name":"getTableName","url":"classes/_core_.user.html#gettablename","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":616,"kind":2048,"name":"scope","url":"classes/_core_.user.html#scope","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":617,"kind":2048,"name":"addScope","url":"classes/_core_.user.html#addscope","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":618,"kind":2048,"name":"findAll","url":"classes/_core_.user.html#findall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":619,"kind":2048,"name":"findByPk","url":"classes/_core_.user.html#findbypk","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":620,"kind":2048,"name":"findOne","url":"classes/_core_.user.html#findone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":621,"kind":2048,"name":"aggregate","url":"classes/_core_.user.html#aggregate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":622,"kind":2048,"name":"count","url":"classes/_core_.user.html#count","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":623,"kind":2048,"name":"findAndCountAll","url":"classes/_core_.user.html#findandcountall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":624,"kind":2048,"name":"max","url":"classes/_core_.user.html#max","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":625,"kind":2048,"name":"min","url":"classes/_core_.user.html#min","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":626,"kind":2048,"name":"sum","url":"classes/_core_.user.html#sum","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":627,"kind":2048,"name":"build","url":"classes/_core_.user.html#build","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":628,"kind":2048,"name":"bulkBuild","url":"classes/_core_.user.html#bulkbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":629,"kind":2048,"name":"create","url":"classes/_core_.user.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":630,"kind":2048,"name":"findOrBuild","url":"classes/_core_.user.html#findorbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":631,"kind":2048,"name":"findOrCreate","url":"classes/_core_.user.html#findorcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":632,"kind":2048,"name":"upsert","url":"classes/_core_.user.html#upsert","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":633,"kind":2048,"name":"bulkCreate","url":"classes/_core_.user.html#bulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":634,"kind":2048,"name":"truncate","url":"classes/_core_.user.html#truncate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":635,"kind":2048,"name":"destroy","url":"classes/_core_.user.html#destroy-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":636,"kind":2048,"name":"restore","url":"classes/_core_.user.html#restore-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":637,"kind":2048,"name":"update","url":"classes/_core_.user.html#update-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":638,"kind":2048,"name":"increment","url":"classes/_core_.user.html#increment-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":639,"kind":2048,"name":"describe","url":"classes/_core_.user.html#describe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":640,"kind":2048,"name":"unscoped","url":"classes/_core_.user.html#unscoped","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":641,"kind":2048,"name":"beforeValidate","url":"classes/_core_.user.html#beforevalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":642,"kind":2048,"name":"afterValidate","url":"classes/_core_.user.html#aftervalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":643,"kind":2048,"name":"beforeCreate","url":"classes/_core_.user.html#beforecreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":644,"kind":2048,"name":"afterCreate","url":"classes/_core_.user.html#aftercreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":645,"kind":2048,"name":"beforeDestroy","url":"classes/_core_.user.html#beforedestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":646,"kind":2048,"name":"afterDestroy","url":"classes/_core_.user.html#afterdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":647,"kind":2048,"name":"beforeUpdate","url":"classes/_core_.user.html#beforeupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":648,"kind":2048,"name":"afterUpdate","url":"classes/_core_.user.html#afterupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":649,"kind":2048,"name":"beforeBulkCreate","url":"classes/_core_.user.html#beforebulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":650,"kind":2048,"name":"afterBulkCreate","url":"classes/_core_.user.html#afterbulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":651,"kind":2048,"name":"beforeBulkDestroy","url":"classes/_core_.user.html#beforebulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":652,"kind":2048,"name":"afterBulkDestroy","url":"classes/_core_.user.html#afterbulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":653,"kind":2048,"name":"beforeBulkUpdate","url":"classes/_core_.user.html#beforebulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":654,"kind":2048,"name":"afterBulkUpdate","url":"classes/_core_.user.html#afterbulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":655,"kind":2048,"name":"beforeFind","url":"classes/_core_.user.html#beforefind","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":656,"kind":2048,"name":"beforeCount","url":"classes/_core_.user.html#beforecount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":657,"kind":2048,"name":"beforeFindAfterExpandIncludeAll","url":"classes/_core_.user.html#beforefindafterexpandincludeall","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":658,"kind":2048,"name":"beforeFindAfterOptions","url":"classes/_core_.user.html#beforefindafteroptions","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":659,"kind":2048,"name":"afterFind","url":"classes/_core_.user.html#afterfind","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":660,"kind":2048,"name":"beforeBulkSync","url":"classes/_core_.user.html#beforebulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":661,"kind":2048,"name":"afterBulkSync","url":"classes/_core_.user.html#afterbulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":662,"kind":2048,"name":"beforeSync","url":"classes/_core_.user.html#beforesync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":663,"kind":2048,"name":"afterSync","url":"classes/_core_.user.html#aftersync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":664,"kind":2048,"name":"hasOne","url":"classes/_core_.user.html#hasone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":665,"kind":2048,"name":"belongsTo","url":"classes/_core_.user.html#belongsto","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":666,"kind":2048,"name":"hasMany","url":"classes/_core_.user.html#hasmany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":667,"kind":2048,"name":"belongsToMany","url":"classes/_core_.user.html#belongstomany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":668,"kind":1024,"name":"isNewRecord","url":"classes/_core_.user.html#isnewrecord","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":669,"kind":1024,"name":"sequelize","url":"classes/_core_.user.html#sequelize","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":670,"kind":512,"name":"constructor","url":"classes/_core_.user.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":671,"kind":2048,"name":"where","url":"classes/_core_.user.html#where","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":672,"kind":2048,"name":"getDataValue","url":"classes/_core_.user.html#getdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":673,"kind":2048,"name":"setDataValue","url":"classes/_core_.user.html#setdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":674,"kind":2048,"name":"get","url":"classes/_core_.user.html#get","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":675,"kind":2048,"name":"set","url":"classes/_core_.user.html#set","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":676,"kind":2048,"name":"setAttributes","url":"classes/_core_.user.html#setattributes","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":677,"kind":2048,"name":"changed","url":"classes/_core_.user.html#changed","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":678,"kind":2048,"name":"previous","url":"classes/_core_.user.html#previous","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":679,"kind":2048,"name":"save","url":"classes/_core_.user.html#save","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":680,"kind":2048,"name":"reload","url":"classes/_core_.user.html#reload","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":681,"kind":2048,"name":"validate","url":"classes/_core_.user.html#validate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":682,"kind":2048,"name":"update","url":"classes/_core_.user.html#update","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":683,"kind":2048,"name":"destroy","url":"classes/_core_.user.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":684,"kind":2048,"name":"restore","url":"classes/_core_.user.html#restore","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":685,"kind":2048,"name":"increment","url":"classes/_core_.user.html#increment","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":686,"kind":2048,"name":"decrement","url":"classes/_core_.user.html#decrement","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":687,"kind":2048,"name":"equals","url":"classes/_core_.user.html#equals","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":688,"kind":2048,"name":"equalsOneOf","url":"classes/_core_.user.html#equalsoneof","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":689,"kind":2048,"name":"addHook","url":"classes/_core_.user.html#addhook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":690,"kind":2048,"name":"removeHook","url":"classes/_core_.user.html#removehook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":691,"kind":2048,"name":"hasHook","url":"classes/_core_.user.html#hashook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":692,"kind":2048,"name":"hasHooks","url":"classes/_core_.user.html#hashooks-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":693,"kind":2048,"name":"addHook","url":"classes/_core_.user.html#addhook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":694,"kind":2048,"name":"removeHook","url":"classes/_core_.user.html#removehook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":695,"kind":2048,"name":"hasHook","url":"classes/_core_.user.html#hashook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":696,"kind":2048,"name":"hasHooks","url":"classes/_core_.user.html#hashooks","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":697,"kind":128,"name":"Group","url":"classes/_core_.group.html","classes":"tsd-kind-class tsd-parent-kind-external-module tsd-has-type-parameter","parent":"\"core\""},{"id":698,"kind":1024,"name":"id","url":"classes/_core_.group.html#id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Group"},{"id":699,"kind":1024,"name":"name","url":"classes/_core_.group.html#name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Group"},{"id":700,"kind":1024,"name":"info","url":"classes/_core_.group.html#info","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Group"},{"id":701,"kind":2048,"name":"toJSON","url":"classes/_core_.group.html#tojson","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"core\".Group"},{"id":702,"kind":1024,"name":"tableName","url":"classes/_core_.group.html#tablename","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":703,"kind":1024,"name":"primaryKeyAttribute","url":"classes/_core_.group.html#primarykeyattribute","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":704,"kind":1024,"name":"associations","url":"classes/_core_.group.html#associations","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":705,"kind":65536,"name":"__type","url":"classes/_core_.group.html#associations.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".Group.associations"},{"id":706,"kind":1024,"name":"options","url":"classes/_core_.group.html#options","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":707,"kind":1024,"name":"rawAttributes","url":"classes/_core_.group.html#rawattributes","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":708,"kind":65536,"name":"__type","url":"classes/_core_.group.html#rawattributes.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".Group.rawAttributes"},{"id":709,"kind":1024,"name":"sequelize","url":"classes/_core_.group.html#sequelize-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":710,"kind":2048,"name":"init","url":"classes/_core_.group.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":711,"kind":2048,"name":"removeAttribute","url":"classes/_core_.group.html#removeattribute","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":712,"kind":2048,"name":"sync","url":"classes/_core_.group.html#sync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":713,"kind":2048,"name":"drop","url":"classes/_core_.group.html#drop","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":714,"kind":2048,"name":"schema","url":"classes/_core_.group.html#schema","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":715,"kind":2048,"name":"getTableName","url":"classes/_core_.group.html#gettablename","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":716,"kind":2048,"name":"scope","url":"classes/_core_.group.html#scope","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":717,"kind":2048,"name":"addScope","url":"classes/_core_.group.html#addscope","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":718,"kind":2048,"name":"findAll","url":"classes/_core_.group.html#findall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":719,"kind":2048,"name":"findByPk","url":"classes/_core_.group.html#findbypk","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":720,"kind":2048,"name":"findOne","url":"classes/_core_.group.html#findone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":721,"kind":2048,"name":"aggregate","url":"classes/_core_.group.html#aggregate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":722,"kind":2048,"name":"count","url":"classes/_core_.group.html#count","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":723,"kind":2048,"name":"findAndCountAll","url":"classes/_core_.group.html#findandcountall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":724,"kind":2048,"name":"max","url":"classes/_core_.group.html#max","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":725,"kind":2048,"name":"min","url":"classes/_core_.group.html#min","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":726,"kind":2048,"name":"sum","url":"classes/_core_.group.html#sum","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":727,"kind":2048,"name":"build","url":"classes/_core_.group.html#build","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":728,"kind":2048,"name":"bulkBuild","url":"classes/_core_.group.html#bulkbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":729,"kind":2048,"name":"create","url":"classes/_core_.group.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":730,"kind":2048,"name":"findOrBuild","url":"classes/_core_.group.html#findorbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":731,"kind":2048,"name":"findOrCreate","url":"classes/_core_.group.html#findorcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":732,"kind":2048,"name":"upsert","url":"classes/_core_.group.html#upsert","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":733,"kind":2048,"name":"bulkCreate","url":"classes/_core_.group.html#bulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":734,"kind":2048,"name":"truncate","url":"classes/_core_.group.html#truncate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":735,"kind":2048,"name":"destroy","url":"classes/_core_.group.html#destroy-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":736,"kind":2048,"name":"restore","url":"classes/_core_.group.html#restore-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":737,"kind":2048,"name":"update","url":"classes/_core_.group.html#update-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":738,"kind":2048,"name":"increment","url":"classes/_core_.group.html#increment-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":739,"kind":2048,"name":"describe","url":"classes/_core_.group.html#describe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":740,"kind":2048,"name":"unscoped","url":"classes/_core_.group.html#unscoped","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":741,"kind":2048,"name":"beforeValidate","url":"classes/_core_.group.html#beforevalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":742,"kind":2048,"name":"afterValidate","url":"classes/_core_.group.html#aftervalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":743,"kind":2048,"name":"beforeCreate","url":"classes/_core_.group.html#beforecreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":744,"kind":2048,"name":"afterCreate","url":"classes/_core_.group.html#aftercreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":745,"kind":2048,"name":"beforeDestroy","url":"classes/_core_.group.html#beforedestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":746,"kind":2048,"name":"afterDestroy","url":"classes/_core_.group.html#afterdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":747,"kind":2048,"name":"beforeUpdate","url":"classes/_core_.group.html#beforeupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":748,"kind":2048,"name":"afterUpdate","url":"classes/_core_.group.html#afterupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":749,"kind":2048,"name":"beforeBulkCreate","url":"classes/_core_.group.html#beforebulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":750,"kind":2048,"name":"afterBulkCreate","url":"classes/_core_.group.html#afterbulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":751,"kind":2048,"name":"beforeBulkDestroy","url":"classes/_core_.group.html#beforebulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":752,"kind":2048,"name":"afterBulkDestroy","url":"classes/_core_.group.html#afterbulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":753,"kind":2048,"name":"beforeBulkUpdate","url":"classes/_core_.group.html#beforebulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":754,"kind":2048,"name":"afterBulkUpdate","url":"classes/_core_.group.html#afterbulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":755,"kind":2048,"name":"beforeFind","url":"classes/_core_.group.html#beforefind","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":756,"kind":2048,"name":"beforeCount","url":"classes/_core_.group.html#beforecount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":757,"kind":2048,"name":"beforeFindAfterExpandIncludeAll","url":"classes/_core_.group.html#beforefindafterexpandincludeall","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":758,"kind":2048,"name":"beforeFindAfterOptions","url":"classes/_core_.group.html#beforefindafteroptions","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":759,"kind":2048,"name":"afterFind","url":"classes/_core_.group.html#afterfind","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":760,"kind":2048,"name":"beforeBulkSync","url":"classes/_core_.group.html#beforebulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":761,"kind":2048,"name":"afterBulkSync","url":"classes/_core_.group.html#afterbulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":762,"kind":2048,"name":"beforeSync","url":"classes/_core_.group.html#beforesync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":763,"kind":2048,"name":"afterSync","url":"classes/_core_.group.html#aftersync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":764,"kind":2048,"name":"hasOne","url":"classes/_core_.group.html#hasone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":765,"kind":2048,"name":"belongsTo","url":"classes/_core_.group.html#belongsto","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":766,"kind":2048,"name":"hasMany","url":"classes/_core_.group.html#hasmany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":767,"kind":2048,"name":"belongsToMany","url":"classes/_core_.group.html#belongstomany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":768,"kind":1024,"name":"isNewRecord","url":"classes/_core_.group.html#isnewrecord","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":769,"kind":1024,"name":"sequelize","url":"classes/_core_.group.html#sequelize","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":770,"kind":512,"name":"constructor","url":"classes/_core_.group.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":771,"kind":2048,"name":"where","url":"classes/_core_.group.html#where","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":772,"kind":2048,"name":"getDataValue","url":"classes/_core_.group.html#getdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":773,"kind":2048,"name":"setDataValue","url":"classes/_core_.group.html#setdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":774,"kind":2048,"name":"get","url":"classes/_core_.group.html#get","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":775,"kind":2048,"name":"set","url":"classes/_core_.group.html#set","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":776,"kind":2048,"name":"setAttributes","url":"classes/_core_.group.html#setattributes","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":777,"kind":2048,"name":"changed","url":"classes/_core_.group.html#changed","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":778,"kind":2048,"name":"previous","url":"classes/_core_.group.html#previous","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":779,"kind":2048,"name":"save","url":"classes/_core_.group.html#save","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":780,"kind":2048,"name":"reload","url":"classes/_core_.group.html#reload","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":781,"kind":2048,"name":"validate","url":"classes/_core_.group.html#validate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":782,"kind":2048,"name":"update","url":"classes/_core_.group.html#update","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":783,"kind":2048,"name":"destroy","url":"classes/_core_.group.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":784,"kind":2048,"name":"restore","url":"classes/_core_.group.html#restore","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":785,"kind":2048,"name":"increment","url":"classes/_core_.group.html#increment","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":786,"kind":2048,"name":"decrement","url":"classes/_core_.group.html#decrement","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":787,"kind":2048,"name":"equals","url":"classes/_core_.group.html#equals","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":788,"kind":2048,"name":"equalsOneOf","url":"classes/_core_.group.html#equalsoneof","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":789,"kind":2048,"name":"addHook","url":"classes/_core_.group.html#addhook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":790,"kind":2048,"name":"removeHook","url":"classes/_core_.group.html#removehook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":791,"kind":2048,"name":"hasHook","url":"classes/_core_.group.html#hashook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":792,"kind":2048,"name":"hasHooks","url":"classes/_core_.group.html#hashooks-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":793,"kind":2048,"name":"addHook","url":"classes/_core_.group.html#addhook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":794,"kind":2048,"name":"removeHook","url":"classes/_core_.group.html#removehook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":795,"kind":2048,"name":"hasHook","url":"classes/_core_.group.html#hashook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":796,"kind":2048,"name":"hasHooks","url":"classes/_core_.group.html#hashooks","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":797,"kind":128,"name":"Auth","url":"classes/_core_.auth.html","classes":"tsd-kind-class tsd-parent-kind-external-module tsd-has-type-parameter","parent":"\"core\""},{"id":798,"kind":1024,"name":"id","url":"classes/_core_.auth.html#id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Auth"},{"id":799,"kind":1024,"name":"group_id","url":"classes/_core_.auth.html#group_id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Auth"},{"id":800,"kind":1024,"name":"auth","url":"classes/_core_.auth.html#auth","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Auth"},{"id":801,"kind":1024,"name":"module","url":"classes/_core_.auth.html#module","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Auth"},{"id":802,"kind":2048,"name":"toJSON","url":"classes/_core_.auth.html#tojson","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"core\".Auth"},{"id":803,"kind":1024,"name":"tableName","url":"classes/_core_.auth.html#tablename","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":804,"kind":1024,"name":"primaryKeyAttribute","url":"classes/_core_.auth.html#primarykeyattribute","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":805,"kind":1024,"name":"associations","url":"classes/_core_.auth.html#associations","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":806,"kind":65536,"name":"__type","url":"classes/_core_.auth.html#associations.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".Auth.associations"},{"id":807,"kind":1024,"name":"options","url":"classes/_core_.auth.html#options","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":808,"kind":1024,"name":"rawAttributes","url":"classes/_core_.auth.html#rawattributes","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":809,"kind":65536,"name":"__type","url":"classes/_core_.auth.html#rawattributes.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".Auth.rawAttributes"},{"id":810,"kind":1024,"name":"sequelize","url":"classes/_core_.auth.html#sequelize-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":811,"kind":2048,"name":"init","url":"classes/_core_.auth.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":812,"kind":2048,"name":"removeAttribute","url":"classes/_core_.auth.html#removeattribute","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":813,"kind":2048,"name":"sync","url":"classes/_core_.auth.html#sync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":814,"kind":2048,"name":"drop","url":"classes/_core_.auth.html#drop","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":815,"kind":2048,"name":"schema","url":"classes/_core_.auth.html#schema","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":816,"kind":2048,"name":"getTableName","url":"classes/_core_.auth.html#gettablename","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":817,"kind":2048,"name":"scope","url":"classes/_core_.auth.html#scope","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":818,"kind":2048,"name":"addScope","url":"classes/_core_.auth.html#addscope","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":819,"kind":2048,"name":"findAll","url":"classes/_core_.auth.html#findall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":820,"kind":2048,"name":"findByPk","url":"classes/_core_.auth.html#findbypk","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":821,"kind":2048,"name":"findOne","url":"classes/_core_.auth.html#findone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":822,"kind":2048,"name":"aggregate","url":"classes/_core_.auth.html#aggregate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":823,"kind":2048,"name":"count","url":"classes/_core_.auth.html#count","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":824,"kind":2048,"name":"findAndCountAll","url":"classes/_core_.auth.html#findandcountall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":825,"kind":2048,"name":"max","url":"classes/_core_.auth.html#max","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":826,"kind":2048,"name":"min","url":"classes/_core_.auth.html#min","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":827,"kind":2048,"name":"sum","url":"classes/_core_.auth.html#sum","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":828,"kind":2048,"name":"build","url":"classes/_core_.auth.html#build","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":829,"kind":2048,"name":"bulkBuild","url":"classes/_core_.auth.html#bulkbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":830,"kind":2048,"name":"create","url":"classes/_core_.auth.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":831,"kind":2048,"name":"findOrBuild","url":"classes/_core_.auth.html#findorbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":832,"kind":2048,"name":"findOrCreate","url":"classes/_core_.auth.html#findorcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":833,"kind":2048,"name":"upsert","url":"classes/_core_.auth.html#upsert","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":834,"kind":2048,"name":"bulkCreate","url":"classes/_core_.auth.html#bulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":835,"kind":2048,"name":"truncate","url":"classes/_core_.auth.html#truncate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":836,"kind":2048,"name":"destroy","url":"classes/_core_.auth.html#destroy-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":837,"kind":2048,"name":"restore","url":"classes/_core_.auth.html#restore-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":838,"kind":2048,"name":"update","url":"classes/_core_.auth.html#update-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":839,"kind":2048,"name":"increment","url":"classes/_core_.auth.html#increment-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":840,"kind":2048,"name":"describe","url":"classes/_core_.auth.html#describe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":841,"kind":2048,"name":"unscoped","url":"classes/_core_.auth.html#unscoped","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":842,"kind":2048,"name":"beforeValidate","url":"classes/_core_.auth.html#beforevalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":843,"kind":2048,"name":"afterValidate","url":"classes/_core_.auth.html#aftervalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":844,"kind":2048,"name":"beforeCreate","url":"classes/_core_.auth.html#beforecreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":845,"kind":2048,"name":"afterCreate","url":"classes/_core_.auth.html#aftercreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":846,"kind":2048,"name":"beforeDestroy","url":"classes/_core_.auth.html#beforedestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":847,"kind":2048,"name":"afterDestroy","url":"classes/_core_.auth.html#afterdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":848,"kind":2048,"name":"beforeUpdate","url":"classes/_core_.auth.html#beforeupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":849,"kind":2048,"name":"afterUpdate","url":"classes/_core_.auth.html#afterupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":850,"kind":2048,"name":"beforeBulkCreate","url":"classes/_core_.auth.html#beforebulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":851,"kind":2048,"name":"afterBulkCreate","url":"classes/_core_.auth.html#afterbulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":852,"kind":2048,"name":"beforeBulkDestroy","url":"classes/_core_.auth.html#beforebulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":853,"kind":2048,"name":"afterBulkDestroy","url":"classes/_core_.auth.html#afterbulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":854,"kind":2048,"name":"beforeBulkUpdate","url":"classes/_core_.auth.html#beforebulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":855,"kind":2048,"name":"afterBulkUpdate","url":"classes/_core_.auth.html#afterbulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":856,"kind":2048,"name":"beforeFind","url":"classes/_core_.auth.html#beforefind","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":857,"kind":2048,"name":"beforeCount","url":"classes/_core_.auth.html#beforecount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":858,"kind":2048,"name":"beforeFindAfterExpandIncludeAll","url":"classes/_core_.auth.html#beforefindafterexpandincludeall","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":859,"kind":2048,"name":"beforeFindAfterOptions","url":"classes/_core_.auth.html#beforefindafteroptions","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":860,"kind":2048,"name":"afterFind","url":"classes/_core_.auth.html#afterfind","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":861,"kind":2048,"name":"beforeBulkSync","url":"classes/_core_.auth.html#beforebulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":862,"kind":2048,"name":"afterBulkSync","url":"classes/_core_.auth.html#afterbulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":863,"kind":2048,"name":"beforeSync","url":"classes/_core_.auth.html#beforesync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":864,"kind":2048,"name":"afterSync","url":"classes/_core_.auth.html#aftersync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":865,"kind":2048,"name":"hasOne","url":"classes/_core_.auth.html#hasone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":866,"kind":2048,"name":"belongsTo","url":"classes/_core_.auth.html#belongsto","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":867,"kind":2048,"name":"hasMany","url":"classes/_core_.auth.html#hasmany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":868,"kind":2048,"name":"belongsToMany","url":"classes/_core_.auth.html#belongstomany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":869,"kind":1024,"name":"isNewRecord","url":"classes/_core_.auth.html#isnewrecord","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":870,"kind":1024,"name":"sequelize","url":"classes/_core_.auth.html#sequelize","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":871,"kind":512,"name":"constructor","url":"classes/_core_.auth.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":872,"kind":2048,"name":"where","url":"classes/_core_.auth.html#where","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":873,"kind":2048,"name":"getDataValue","url":"classes/_core_.auth.html#getdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":874,"kind":2048,"name":"setDataValue","url":"classes/_core_.auth.html#setdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":875,"kind":2048,"name":"get","url":"classes/_core_.auth.html#get","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":876,"kind":2048,"name":"set","url":"classes/_core_.auth.html#set","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":877,"kind":2048,"name":"setAttributes","url":"classes/_core_.auth.html#setattributes","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":878,"kind":2048,"name":"changed","url":"classes/_core_.auth.html#changed","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":879,"kind":2048,"name":"previous","url":"classes/_core_.auth.html#previous","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":880,"kind":2048,"name":"save","url":"classes/_core_.auth.html#save","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":881,"kind":2048,"name":"reload","url":"classes/_core_.auth.html#reload","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":882,"kind":2048,"name":"validate","url":"classes/_core_.auth.html#validate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":883,"kind":2048,"name":"update","url":"classes/_core_.auth.html#update","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":884,"kind":2048,"name":"destroy","url":"classes/_core_.auth.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":885,"kind":2048,"name":"restore","url":"classes/_core_.auth.html#restore","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":886,"kind":2048,"name":"increment","url":"classes/_core_.auth.html#increment","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":887,"kind":2048,"name":"decrement","url":"classes/_core_.auth.html#decrement","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":888,"kind":2048,"name":"equals","url":"classes/_core_.auth.html#equals","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":889,"kind":2048,"name":"equalsOneOf","url":"classes/_core_.auth.html#equalsoneof","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":890,"kind":2048,"name":"addHook","url":"classes/_core_.auth.html#addhook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":891,"kind":2048,"name":"removeHook","url":"classes/_core_.auth.html#removehook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":892,"kind":2048,"name":"hasHook","url":"classes/_core_.auth.html#hashook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":893,"kind":2048,"name":"hasHooks","url":"classes/_core_.auth.html#hashooks-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":894,"kind":2048,"name":"addHook","url":"classes/_core_.auth.html#addhook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":895,"kind":2048,"name":"removeHook","url":"classes/_core_.auth.html#removehook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":896,"kind":2048,"name":"hasHook","url":"classes/_core_.auth.html#hashook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":897,"kind":2048,"name":"hasHooks","url":"classes/_core_.auth.html#hashooks","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":898,"kind":256,"name":"LogArgs","url":"interfaces/_core_.logargs.html","classes":"tsd-kind-interface tsd-parent-kind-external-module","parent":"\"core\""},{"id":899,"kind":1024,"name":"message","url":"interfaces/_core_.logargs.html#message","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".LogArgs"},{"id":900,"kind":1024,"name":"user_id","url":"interfaces/_core_.logargs.html#user_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".LogArgs"},{"id":901,"kind":1024,"name":"user_name","url":"interfaces/_core_.logargs.html#user_name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".LogArgs"},{"id":902,"kind":1024,"name":"status_code","url":"interfaces/_core_.logargs.html#status_code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".LogArgs"},{"id":903,"kind":1024,"name":"method","url":"interfaces/_core_.logargs.html#method","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".LogArgs"},{"id":904,"kind":1024,"name":"path","url":"interfaces/_core_.logargs.html#path","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".LogArgs"},{"id":905,"kind":1024,"name":"authority","url":"interfaces/_core_.logargs.html#authority","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".LogArgs"},{"id":906,"kind":128,"name":"Log","url":"classes/_core_.log.html","classes":"tsd-kind-class tsd-parent-kind-external-module tsd-has-type-parameter","parent":"\"core\""},{"id":907,"kind":1024,"name":"id","url":"classes/_core_.log.html#id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":908,"kind":1024,"name":"message","url":"classes/_core_.log.html#message","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":909,"kind":1024,"name":"user_id","url":"classes/_core_.log.html#user_id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":910,"kind":1024,"name":"user_name","url":"classes/_core_.log.html#user_name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":911,"kind":1024,"name":"status_code","url":"classes/_core_.log.html#status_code","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":912,"kind":1024,"name":"method","url":"classes/_core_.log.html#method","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":913,"kind":1024,"name":"path","url":"classes/_core_.log.html#path","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":914,"kind":1024,"name":"authority","url":"classes/_core_.log.html#authority","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":915,"kind":1024,"name":"time","url":"classes/_core_.log.html#time","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":916,"kind":2048,"name":"createLog","url":"classes/_core_.log.html#createlog","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"\"core\".Log"},{"id":917,"kind":2048,"name":"toJSON","url":"classes/_core_.log.html#tojson","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"core\".Log"},{"id":918,"kind":1024,"name":"tableName","url":"classes/_core_.log.html#tablename","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":919,"kind":1024,"name":"primaryKeyAttribute","url":"classes/_core_.log.html#primarykeyattribute","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":920,"kind":1024,"name":"associations","url":"classes/_core_.log.html#associations","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":921,"kind":65536,"name":"__type","url":"classes/_core_.log.html#associations.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".Log.associations"},{"id":922,"kind":1024,"name":"options","url":"classes/_core_.log.html#options","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":923,"kind":1024,"name":"rawAttributes","url":"classes/_core_.log.html#rawattributes","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":924,"kind":65536,"name":"__type","url":"classes/_core_.log.html#rawattributes.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".Log.rawAttributes"},{"id":925,"kind":1024,"name":"sequelize","url":"classes/_core_.log.html#sequelize-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":926,"kind":2048,"name":"init","url":"classes/_core_.log.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":927,"kind":2048,"name":"removeAttribute","url":"classes/_core_.log.html#removeattribute","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":928,"kind":2048,"name":"sync","url":"classes/_core_.log.html#sync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":929,"kind":2048,"name":"drop","url":"classes/_core_.log.html#drop","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":930,"kind":2048,"name":"schema","url":"classes/_core_.log.html#schema","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":931,"kind":2048,"name":"getTableName","url":"classes/_core_.log.html#gettablename","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":932,"kind":2048,"name":"scope","url":"classes/_core_.log.html#scope","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":933,"kind":2048,"name":"addScope","url":"classes/_core_.log.html#addscope","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":934,"kind":2048,"name":"findAll","url":"classes/_core_.log.html#findall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":935,"kind":2048,"name":"findByPk","url":"classes/_core_.log.html#findbypk","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":936,"kind":2048,"name":"findOne","url":"classes/_core_.log.html#findone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":937,"kind":2048,"name":"aggregate","url":"classes/_core_.log.html#aggregate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":938,"kind":2048,"name":"count","url":"classes/_core_.log.html#count","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":939,"kind":2048,"name":"findAndCountAll","url":"classes/_core_.log.html#findandcountall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":940,"kind":2048,"name":"max","url":"classes/_core_.log.html#max","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":941,"kind":2048,"name":"min","url":"classes/_core_.log.html#min","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":942,"kind":2048,"name":"sum","url":"classes/_core_.log.html#sum","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":943,"kind":2048,"name":"build","url":"classes/_core_.log.html#build","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":944,"kind":2048,"name":"bulkBuild","url":"classes/_core_.log.html#bulkbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":945,"kind":2048,"name":"create","url":"classes/_core_.log.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":946,"kind":2048,"name":"findOrBuild","url":"classes/_core_.log.html#findorbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":947,"kind":2048,"name":"findOrCreate","url":"classes/_core_.log.html#findorcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":948,"kind":2048,"name":"upsert","url":"classes/_core_.log.html#upsert","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":949,"kind":2048,"name":"bulkCreate","url":"classes/_core_.log.html#bulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":950,"kind":2048,"name":"truncate","url":"classes/_core_.log.html#truncate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":951,"kind":2048,"name":"destroy","url":"classes/_core_.log.html#destroy-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":952,"kind":2048,"name":"restore","url":"classes/_core_.log.html#restore-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":953,"kind":2048,"name":"update","url":"classes/_core_.log.html#update-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":954,"kind":2048,"name":"increment","url":"classes/_core_.log.html#increment-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":955,"kind":2048,"name":"describe","url":"classes/_core_.log.html#describe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":956,"kind":2048,"name":"unscoped","url":"classes/_core_.log.html#unscoped","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":957,"kind":2048,"name":"beforeValidate","url":"classes/_core_.log.html#beforevalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":958,"kind":2048,"name":"afterValidate","url":"classes/_core_.log.html#aftervalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":959,"kind":2048,"name":"beforeCreate","url":"classes/_core_.log.html#beforecreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":960,"kind":2048,"name":"afterCreate","url":"classes/_core_.log.html#aftercreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":961,"kind":2048,"name":"beforeDestroy","url":"classes/_core_.log.html#beforedestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":962,"kind":2048,"name":"afterDestroy","url":"classes/_core_.log.html#afterdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":963,"kind":2048,"name":"beforeUpdate","url":"classes/_core_.log.html#beforeupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":964,"kind":2048,"name":"afterUpdate","url":"classes/_core_.log.html#afterupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":965,"kind":2048,"name":"beforeBulkCreate","url":"classes/_core_.log.html#beforebulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":966,"kind":2048,"name":"afterBulkCreate","url":"classes/_core_.log.html#afterbulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":967,"kind":2048,"name":"beforeBulkDestroy","url":"classes/_core_.log.html#beforebulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":968,"kind":2048,"name":"afterBulkDestroy","url":"classes/_core_.log.html#afterbulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":969,"kind":2048,"name":"beforeBulkUpdate","url":"classes/_core_.log.html#beforebulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":970,"kind":2048,"name":"afterBulkUpdate","url":"classes/_core_.log.html#afterbulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":971,"kind":2048,"name":"beforeFind","url":"classes/_core_.log.html#beforefind","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":972,"kind":2048,"name":"beforeCount","url":"classes/_core_.log.html#beforecount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":973,"kind":2048,"name":"beforeFindAfterExpandIncludeAll","url":"classes/_core_.log.html#beforefindafterexpandincludeall","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":974,"kind":2048,"name":"beforeFindAfterOptions","url":"classes/_core_.log.html#beforefindafteroptions","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":975,"kind":2048,"name":"afterFind","url":"classes/_core_.log.html#afterfind","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":976,"kind":2048,"name":"beforeBulkSync","url":"classes/_core_.log.html#beforebulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":977,"kind":2048,"name":"afterBulkSync","url":"classes/_core_.log.html#afterbulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":978,"kind":2048,"name":"beforeSync","url":"classes/_core_.log.html#beforesync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":979,"kind":2048,"name":"afterSync","url":"classes/_core_.log.html#aftersync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":980,"kind":2048,"name":"hasOne","url":"classes/_core_.log.html#hasone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":981,"kind":2048,"name":"belongsTo","url":"classes/_core_.log.html#belongsto","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":982,"kind":2048,"name":"hasMany","url":"classes/_core_.log.html#hasmany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":983,"kind":2048,"name":"belongsToMany","url":"classes/_core_.log.html#belongstomany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":984,"kind":1024,"name":"isNewRecord","url":"classes/_core_.log.html#isnewrecord","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":985,"kind":1024,"name":"sequelize","url":"classes/_core_.log.html#sequelize","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":986,"kind":512,"name":"constructor","url":"classes/_core_.log.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":987,"kind":2048,"name":"where","url":"classes/_core_.log.html#where","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":988,"kind":2048,"name":"getDataValue","url":"classes/_core_.log.html#getdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":989,"kind":2048,"name":"setDataValue","url":"classes/_core_.log.html#setdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":990,"kind":2048,"name":"get","url":"classes/_core_.log.html#get","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":991,"kind":2048,"name":"set","url":"classes/_core_.log.html#set","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":992,"kind":2048,"name":"setAttributes","url":"classes/_core_.log.html#setattributes","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":993,"kind":2048,"name":"changed","url":"classes/_core_.log.html#changed","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":994,"kind":2048,"name":"previous","url":"classes/_core_.log.html#previous","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":995,"kind":2048,"name":"save","url":"classes/_core_.log.html#save","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":996,"kind":2048,"name":"reload","url":"classes/_core_.log.html#reload","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":997,"kind":2048,"name":"validate","url":"classes/_core_.log.html#validate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":998,"kind":2048,"name":"update","url":"classes/_core_.log.html#update","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":999,"kind":2048,"name":"destroy","url":"classes/_core_.log.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1000,"kind":2048,"name":"restore","url":"classes/_core_.log.html#restore","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1001,"kind":2048,"name":"increment","url":"classes/_core_.log.html#increment","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1002,"kind":2048,"name":"decrement","url":"classes/_core_.log.html#decrement","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1003,"kind":2048,"name":"equals","url":"classes/_core_.log.html#equals","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1004,"kind":2048,"name":"equalsOneOf","url":"classes/_core_.log.html#equalsoneof","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1005,"kind":2048,"name":"addHook","url":"classes/_core_.log.html#addhook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1006,"kind":2048,"name":"removeHook","url":"classes/_core_.log.html#removehook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1007,"kind":2048,"name":"hasHook","url":"classes/_core_.log.html#hashook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1008,"kind":2048,"name":"hasHooks","url":"classes/_core_.log.html#hashooks-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1009,"kind":2048,"name":"addHook","url":"classes/_core_.log.html#addhook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1010,"kind":2048,"name":"removeHook","url":"classes/_core_.log.html#removehook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1011,"kind":2048,"name":"hasHook","url":"classes/_core_.log.html#hashook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1012,"kind":2048,"name":"hasHooks","url":"classes/_core_.log.html#hashooks","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1013,"kind":256,"name":"FileArgs","url":"interfaces/_core_.fileargs.html","classes":"tsd-kind-interface tsd-parent-kind-external-module","parent":"\"core\""},{"id":1014,"kind":1024,"name":"path","url":"interfaces/_core_.fileargs.html#path","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".FileArgs"},{"id":1015,"kind":1024,"name":"type","url":"interfaces/_core_.fileargs.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".FileArgs"},{"id":1016,"kind":1024,"name":"name","url":"interfaces/_core_.fileargs.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".FileArgs"},{"id":1017,"kind":1024,"name":"extension","url":"interfaces/_core_.fileargs.html#extension","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".FileArgs"},{"id":1018,"kind":1024,"name":"size","url":"interfaces/_core_.fileargs.html#size","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".FileArgs"},{"id":1019,"kind":128,"name":"File","url":"classes/_core_.file.html","classes":"tsd-kind-class tsd-parent-kind-external-module tsd-has-type-parameter","parent":"\"core\""},{"id":1020,"kind":1024,"name":"id","url":"classes/_core_.file.html#id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".File"},{"id":1021,"kind":1024,"name":"path","url":"classes/_core_.file.html#path","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".File"},{"id":1022,"kind":1024,"name":"type","url":"classes/_core_.file.html#type","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".File"},{"id":1023,"kind":1024,"name":"name","url":"classes/_core_.file.html#name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".File"},{"id":1024,"kind":1024,"name":"extension","url":"classes/_core_.file.html#extension","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".File"},{"id":1025,"kind":1024,"name":"size","url":"classes/_core_.file.html#size","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".File"},{"id":1026,"kind":2048,"name":"createRecord","url":"classes/_core_.file.html#createrecord","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"\"core\".File"},{"id":1027,"kind":2048,"name":"toJSON","url":"classes/_core_.file.html#tojson","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"core\".File"},{"id":1028,"kind":1024,"name":"tableName","url":"classes/_core_.file.html#tablename","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1029,"kind":1024,"name":"primaryKeyAttribute","url":"classes/_core_.file.html#primarykeyattribute","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1030,"kind":1024,"name":"associations","url":"classes/_core_.file.html#associations","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1031,"kind":65536,"name":"__type","url":"classes/_core_.file.html#associations.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".File.associations"},{"id":1032,"kind":1024,"name":"options","url":"classes/_core_.file.html#options","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1033,"kind":1024,"name":"rawAttributes","url":"classes/_core_.file.html#rawattributes","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1034,"kind":65536,"name":"__type","url":"classes/_core_.file.html#rawattributes.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".File.rawAttributes"},{"id":1035,"kind":1024,"name":"sequelize","url":"classes/_core_.file.html#sequelize-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1036,"kind":2048,"name":"init","url":"classes/_core_.file.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1037,"kind":2048,"name":"removeAttribute","url":"classes/_core_.file.html#removeattribute","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1038,"kind":2048,"name":"sync","url":"classes/_core_.file.html#sync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1039,"kind":2048,"name":"drop","url":"classes/_core_.file.html#drop","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1040,"kind":2048,"name":"schema","url":"classes/_core_.file.html#schema","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1041,"kind":2048,"name":"getTableName","url":"classes/_core_.file.html#gettablename","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1042,"kind":2048,"name":"scope","url":"classes/_core_.file.html#scope","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1043,"kind":2048,"name":"addScope","url":"classes/_core_.file.html#addscope","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1044,"kind":2048,"name":"findAll","url":"classes/_core_.file.html#findall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1045,"kind":2048,"name":"findByPk","url":"classes/_core_.file.html#findbypk","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1046,"kind":2048,"name":"findOne","url":"classes/_core_.file.html#findone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1047,"kind":2048,"name":"aggregate","url":"classes/_core_.file.html#aggregate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1048,"kind":2048,"name":"count","url":"classes/_core_.file.html#count","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1049,"kind":2048,"name":"findAndCountAll","url":"classes/_core_.file.html#findandcountall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1050,"kind":2048,"name":"max","url":"classes/_core_.file.html#max","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1051,"kind":2048,"name":"min","url":"classes/_core_.file.html#min","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1052,"kind":2048,"name":"sum","url":"classes/_core_.file.html#sum","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1053,"kind":2048,"name":"build","url":"classes/_core_.file.html#build","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1054,"kind":2048,"name":"bulkBuild","url":"classes/_core_.file.html#bulkbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1055,"kind":2048,"name":"create","url":"classes/_core_.file.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1056,"kind":2048,"name":"findOrBuild","url":"classes/_core_.file.html#findorbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1057,"kind":2048,"name":"findOrCreate","url":"classes/_core_.file.html#findorcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1058,"kind":2048,"name":"upsert","url":"classes/_core_.file.html#upsert","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1059,"kind":2048,"name":"bulkCreate","url":"classes/_core_.file.html#bulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1060,"kind":2048,"name":"truncate","url":"classes/_core_.file.html#truncate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1061,"kind":2048,"name":"destroy","url":"classes/_core_.file.html#destroy-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1062,"kind":2048,"name":"restore","url":"classes/_core_.file.html#restore-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1063,"kind":2048,"name":"update","url":"classes/_core_.file.html#update-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1064,"kind":2048,"name":"increment","url":"classes/_core_.file.html#increment-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1065,"kind":2048,"name":"describe","url":"classes/_core_.file.html#describe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1066,"kind":2048,"name":"unscoped","url":"classes/_core_.file.html#unscoped","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1067,"kind":2048,"name":"beforeValidate","url":"classes/_core_.file.html#beforevalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1068,"kind":2048,"name":"afterValidate","url":"classes/_core_.file.html#aftervalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1069,"kind":2048,"name":"beforeCreate","url":"classes/_core_.file.html#beforecreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1070,"kind":2048,"name":"afterCreate","url":"classes/_core_.file.html#aftercreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1071,"kind":2048,"name":"beforeDestroy","url":"classes/_core_.file.html#beforedestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1072,"kind":2048,"name":"afterDestroy","url":"classes/_core_.file.html#afterdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1073,"kind":2048,"name":"beforeUpdate","url":"classes/_core_.file.html#beforeupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1074,"kind":2048,"name":"afterUpdate","url":"classes/_core_.file.html#afterupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1075,"kind":2048,"name":"beforeBulkCreate","url":"classes/_core_.file.html#beforebulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1076,"kind":2048,"name":"afterBulkCreate","url":"classes/_core_.file.html#afterbulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1077,"kind":2048,"name":"beforeBulkDestroy","url":"classes/_core_.file.html#beforebulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1078,"kind":2048,"name":"afterBulkDestroy","url":"classes/_core_.file.html#afterbulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1079,"kind":2048,"name":"beforeBulkUpdate","url":"classes/_core_.file.html#beforebulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1080,"kind":2048,"name":"afterBulkUpdate","url":"classes/_core_.file.html#afterbulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1081,"kind":2048,"name":"beforeFind","url":"classes/_core_.file.html#beforefind","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1082,"kind":2048,"name":"beforeCount","url":"classes/_core_.file.html#beforecount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1083,"kind":2048,"name":"beforeFindAfterExpandIncludeAll","url":"classes/_core_.file.html#beforefindafterexpandincludeall","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1084,"kind":2048,"name":"beforeFindAfterOptions","url":"classes/_core_.file.html#beforefindafteroptions","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1085,"kind":2048,"name":"afterFind","url":"classes/_core_.file.html#afterfind","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1086,"kind":2048,"name":"beforeBulkSync","url":"classes/_core_.file.html#beforebulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1087,"kind":2048,"name":"afterBulkSync","url":"classes/_core_.file.html#afterbulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1088,"kind":2048,"name":"beforeSync","url":"classes/_core_.file.html#beforesync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1089,"kind":2048,"name":"afterSync","url":"classes/_core_.file.html#aftersync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1090,"kind":2048,"name":"hasOne","url":"classes/_core_.file.html#hasone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1091,"kind":2048,"name":"belongsTo","url":"classes/_core_.file.html#belongsto","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1092,"kind":2048,"name":"hasMany","url":"classes/_core_.file.html#hasmany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1093,"kind":2048,"name":"belongsToMany","url":"classes/_core_.file.html#belongstomany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1094,"kind":1024,"name":"isNewRecord","url":"classes/_core_.file.html#isnewrecord","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1095,"kind":1024,"name":"sequelize","url":"classes/_core_.file.html#sequelize","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1096,"kind":512,"name":"constructor","url":"classes/_core_.file.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1097,"kind":2048,"name":"where","url":"classes/_core_.file.html#where","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1098,"kind":2048,"name":"getDataValue","url":"classes/_core_.file.html#getdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1099,"kind":2048,"name":"setDataValue","url":"classes/_core_.file.html#setdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1100,"kind":2048,"name":"get","url":"classes/_core_.file.html#get","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1101,"kind":2048,"name":"set","url":"classes/_core_.file.html#set","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1102,"kind":2048,"name":"setAttributes","url":"classes/_core_.file.html#setattributes","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1103,"kind":2048,"name":"changed","url":"classes/_core_.file.html#changed","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1104,"kind":2048,"name":"previous","url":"classes/_core_.file.html#previous","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1105,"kind":2048,"name":"save","url":"classes/_core_.file.html#save","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1106,"kind":2048,"name":"reload","url":"classes/_core_.file.html#reload","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1107,"kind":2048,"name":"validate","url":"classes/_core_.file.html#validate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1108,"kind":2048,"name":"update","url":"classes/_core_.file.html#update","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1109,"kind":2048,"name":"destroy","url":"classes/_core_.file.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1110,"kind":2048,"name":"restore","url":"classes/_core_.file.html#restore","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1111,"kind":2048,"name":"increment","url":"classes/_core_.file.html#increment","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1112,"kind":2048,"name":"decrement","url":"classes/_core_.file.html#decrement","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1113,"kind":2048,"name":"equals","url":"classes/_core_.file.html#equals","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1114,"kind":2048,"name":"equalsOneOf","url":"classes/_core_.file.html#equalsoneof","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1115,"kind":2048,"name":"addHook","url":"classes/_core_.file.html#addhook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1116,"kind":2048,"name":"removeHook","url":"classes/_core_.file.html#removehook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1117,"kind":2048,"name":"hasHook","url":"classes/_core_.file.html#hashook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1118,"kind":2048,"name":"hasHooks","url":"classes/_core_.file.html#hashooks-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1119,"kind":2048,"name":"addHook","url":"classes/_core_.file.html#addhook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1120,"kind":2048,"name":"removeHook","url":"classes/_core_.file.html#removehook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1121,"kind":2048,"name":"hasHook","url":"classes/_core_.file.html#hashook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1122,"kind":2048,"name":"hasHooks","url":"classes/_core_.file.html#hashooks","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1123,"kind":32,"name":"__version__","url":"modules/_core_.html#__version__","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"core\""},{"id":1124,"kind":32,"name":"routeMetaInfo","url":"modules/_core_.html#routemetainfo","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"core\""},{"id":1125,"kind":32,"name":"disableLoading","url":"modules/_core_.html#disableloading","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"core\""},{"id":1126,"kind":1,"name":"\"factory\"","url":"modules/_factory_.html","classes":"tsd-kind-external-module"},{"id":1127,"kind":64,"name":"modelExtend","url":"modules/_factory_.html#modelextend","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"factory\""},{"id":1128,"kind":1,"name":"\"file\"","url":"modules/_file_.html","classes":"tsd-kind-external-module"},{"id":1129,"kind":128,"name":"Uploader","url":"classes/_file_.uploader.html","classes":"tsd-kind-class tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"file\""},{"id":1130,"kind":1024,"name":"storeDir","url":"classes/_file_.uploader.html#storedir","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private tsd-is-not-exported","parent":"\"file\".Uploader"},{"id":1131,"kind":512,"name":"constructor","url":"classes/_file_.uploader.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-not-exported","parent":"\"file\".Uploader"},{"id":1132,"kind":2048,"name":"upload","url":"classes/_file_.uploader.html#upload","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-not-exported","parent":"\"file\".Uploader"},{"id":1133,"kind":2048,"name":"getStorePath","url":"classes/_file_.uploader.html#getstorepath","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-not-exported","parent":"\"file\".Uploader"},{"id":1134,"kind":2048,"name":"generateName","url":"classes/_file_.uploader.html#generatename","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-not-exported","parent":"\"file\".Uploader"},{"id":1135,"kind":2048,"name":"getExactStoreDir","url":"classes/_file_.uploader.html#getexactstoredir","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-not-exported","parent":"\"file\".Uploader"},{"id":1136,"kind":1,"name":"\"lin-validator\"","url":"modules/_lin_validator_.html","classes":"tsd-kind-external-module"},{"id":1137,"kind":128,"name":"LinValidator","url":"classes/_lin_validator_.linvalidator.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"lin-validator\""},{"id":1138,"kind":1024,"name":"data","url":"classes/_lin_validator_.linvalidator.html#data","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".LinValidator"},{"id":1139,"kind":1024,"name":"parsed","url":"classes/_lin_validator_.linvalidator.html#parsed","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".LinValidator"},{"id":1140,"kind":1024,"name":"errors","url":"classes/_lin_validator_.linvalidator.html#errors","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".LinValidator"},{"id":1141,"kind":1024,"name":"alias","url":"classes/_lin_validator_.linvalidator.html#alias","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".LinValidator"},{"id":1142,"kind":2048,"name":"validate","url":"classes/_lin_validator_.linvalidator.html#validate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-validator\".LinValidator"},{"id":1143,"kind":2048,"name":"replace","url":"classes/_lin_validator_.linvalidator.html#replace","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"lin-validator\".LinValidator"},{"id":1144,"kind":2048,"name":"isOptional","url":"classes/_lin_validator_.linvalidator.html#isoptional","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"lin-validator\".LinValidator"},{"id":1145,"kind":2048,"name":"checkRules","url":"classes/_lin_validator_.linvalidator.html#checkrules","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"lin-validator\".LinValidator"},{"id":1146,"kind":2048,"name":"getValidateFuncKey","url":"classes/_lin_validator_.linvalidator.html#getvalidatefunckey","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"lin-validator\".LinValidator"},{"id":1147,"kind":2048,"name":"get","url":"classes/_lin_validator_.linvalidator.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-validator\".LinValidator"},{"id":1148,"kind":2048,"name":"findInData","url":"classes/_lin_validator_.linvalidator.html#findindata","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"lin-validator\".LinValidator"},{"id":1149,"kind":128,"name":"Rule","url":"classes/_lin_validator_.rule.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"lin-validator\""},{"id":1150,"kind":1024,"name":"options","url":"classes/_lin_validator_.rule.html#options","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1151,"kind":1024,"name":"message","url":"classes/_lin_validator_.rule.html#message","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1152,"kind":1024,"name":"validateFunction","url":"classes/_lin_validator_.rule.html#validatefunction","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1153,"kind":1024,"name":"optional","url":"classes/_lin_validator_.rule.html#optional","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1154,"kind":1024,"name":"parsedValue","url":"classes/_lin_validator_.rule.html#parsedvalue","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1155,"kind":1024,"name":"rawValue","url":"classes/_lin_validator_.rule.html#rawvalue","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1156,"kind":1024,"name":"defaultValue","url":"classes/_lin_validator_.rule.html#defaultvalue","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1157,"kind":512,"name":"constructor","url":"classes/_lin_validator_.rule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1158,"kind":2048,"name":"validate","url":"classes/_lin_validator_.rule.html#validate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1159,"kind":1,"name":"\"log\"","url":"modules/_log_.html","classes":"tsd-kind-external-module"},{"id":1160,"kind":32,"name":"REG_XP","url":"modules/_log_.html#reg_xp","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"log\""},{"id":1161,"kind":64,"name":"logger","url":"modules/_log_.html#logger","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"log\""},{"id":1162,"kind":64,"name":"writeLog","url":"modules/_log_.html#writelog","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"log\""},{"id":1163,"kind":64,"name":"parseTemplate","url":"modules/_log_.html#parsetemplate","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"log\""},{"id":1164,"kind":1,"name":"\"middleware\"","url":"modules/_middleware_.html","classes":"tsd-kind-external-module"},{"id":1165,"kind":64,"name":"error","url":"modules/_middleware_.html#error","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"middleware\""},{"id":1166,"kind":64,"name":"log","url":"modules/_middleware_.html#log","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"middleware\""},{"id":1167,"kind":1,"name":"\"mixin\"","url":"modules/_mixin_.html","classes":"tsd-kind-external-module"},{"id":1168,"kind":128,"name":"JsonMixin","url":"classes/_mixin_.jsonmixin.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"mixin\""},{"id":1169,"kind":1024,"name":"fields","url":"classes/_mixin_.jsonmixin.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"mixin\".JsonMixin"},{"id":1170,"kind":1,"name":"\"index\"","url":"modules/_index_.html","classes":"tsd-kind-external-module"},{"id":1171,"kind":1,"name":"\"sse\"","url":"modules/_sse_.html","classes":"tsd-kind-external-module"},{"id":1172,"kind":128,"name":"SSE","url":"classes/_sse_.sse.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"sse\""},{"id":1173,"kind":512,"name":"constructor","url":"classes/_sse_.sse.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"sse\".SSE"},{"id":1174,"kind":2048,"name":"_transform","url":"classes/_sse_.sse.html#_transform","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"sse\".SSE"},{"id":1175,"kind":2048,"name":"_flush","url":"classes/_sse_.sse.html#_flush","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1176,"kind":1024,"name":"writable","url":"classes/_sse_.sse.html#writable","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1177,"kind":1024,"name":"writableHighWaterMark","url":"classes/_sse_.sse.html#writablehighwatermark","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1178,"kind":1024,"name":"writableLength","url":"classes/_sse_.sse.html#writablelength","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1179,"kind":2048,"name":"_write","url":"classes/_sse_.sse.html#_write","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1180,"kind":2048,"name":"_writev","url":"classes/_sse_.sse.html#_writev","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1181,"kind":2048,"name":"_destroy","url":"classes/_sse_.sse.html#_destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1182,"kind":2048,"name":"_final","url":"classes/_sse_.sse.html#_final","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1183,"kind":2048,"name":"write","url":"classes/_sse_.sse.html#write","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1184,"kind":2048,"name":"setDefaultEncoding","url":"classes/_sse_.sse.html#setdefaultencoding","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1185,"kind":2048,"name":"end","url":"classes/_sse_.sse.html#end","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1186,"kind":2048,"name":"cork","url":"classes/_sse_.sse.html#cork","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1187,"kind":2048,"name":"uncork","url":"classes/_sse_.sse.html#uncork","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1188,"kind":1024,"name":"readable","url":"classes/_sse_.sse.html#readable","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1189,"kind":1024,"name":"readableHighWaterMark","url":"classes/_sse_.sse.html#readablehighwatermark","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1190,"kind":1024,"name":"readableLength","url":"classes/_sse_.sse.html#readablelength","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1191,"kind":2048,"name":"_read","url":"classes/_sse_.sse.html#_read","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1192,"kind":2048,"name":"read","url":"classes/_sse_.sse.html#read","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1193,"kind":2048,"name":"setEncoding","url":"classes/_sse_.sse.html#setencoding","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1194,"kind":2048,"name":"pause","url":"classes/_sse_.sse.html#pause","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1195,"kind":2048,"name":"resume","url":"classes/_sse_.sse.html#resume","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1196,"kind":2048,"name":"isPaused","url":"classes/_sse_.sse.html#ispaused","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1197,"kind":2048,"name":"unpipe","url":"classes/_sse_.sse.html#unpipe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1198,"kind":2048,"name":"unshift","url":"classes/_sse_.sse.html#unshift","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1199,"kind":2048,"name":"wrap","url":"classes/_sse_.sse.html#wrap","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1200,"kind":2048,"name":"push","url":"classes/_sse_.sse.html#push","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1201,"kind":2048,"name":"destroy","url":"classes/_sse_.sse.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1202,"kind":2048,"name":"addListener","url":"classes/_sse_.sse.html#addlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1203,"kind":2048,"name":"emit","url":"classes/_sse_.sse.html#emit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1204,"kind":2048,"name":"on","url":"classes/_sse_.sse.html#on","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1205,"kind":2048,"name":"once","url":"classes/_sse_.sse.html#once","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1206,"kind":2048,"name":"prependListener","url":"classes/_sse_.sse.html#prependlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1207,"kind":2048,"name":"prependOnceListener","url":"classes/_sse_.sse.html#prependoncelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1208,"kind":2048,"name":"removeListener","url":"classes/_sse_.sse.html#removelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1209,"kind":2048,"name":"__@asyncIterator","url":"classes/_sse_.sse.html#___asynciterator","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1210,"kind":2048,"name":"pipe","url":"classes/_sse_.sse.html#pipe","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1211,"kind":2048,"name":"listenerCount","url":"classes/_sse_.sse.html#listenercount-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"sse\".SSE"},{"id":1212,"kind":1024,"name":"defaultMaxListeners","url":"classes/_sse_.sse.html#defaultmaxlisteners","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"sse\".SSE"},{"id":1213,"kind":2048,"name":"off","url":"classes/_sse_.sse.html#off","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1214,"kind":2048,"name":"removeAllListeners","url":"classes/_sse_.sse.html#removealllisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1215,"kind":2048,"name":"setMaxListeners","url":"classes/_sse_.sse.html#setmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1216,"kind":2048,"name":"getMaxListeners","url":"classes/_sse_.sse.html#getmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1217,"kind":2048,"name":"listeners","url":"classes/_sse_.sse.html#listeners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1218,"kind":2048,"name":"rawListeners","url":"classes/_sse_.sse.html#rawlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1219,"kind":2048,"name":"eventNames","url":"classes/_sse_.sse.html#eventnames","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1220,"kind":2048,"name":"listenerCount","url":"classes/_sse_.sse.html#listenercount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1221,"kind":128,"name":"MessageBroker","url":"classes/_sse_.messagebroker.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"sse\""},{"id":1222,"kind":1024,"name":"messages","url":"classes/_sse_.messagebroker.html#messages","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1223,"kind":1024,"name":"retry","url":"classes/_sse_.messagebroker.html#retry","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"sse\".MessageBroker"},{"id":1224,"kind":1024,"name":"buffer","url":"classes/_sse_.messagebroker.html#buffer","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"sse\".MessageBroker"},{"id":1225,"kind":1024,"name":"defaultId","url":"classes/_sse_.messagebroker.html#defaultid","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"sse\".MessageBroker"},{"id":1226,"kind":512,"name":"constructor","url":"classes/_sse_.messagebroker.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1227,"kind":2048,"name":"setRetry","url":"classes/_sse_.messagebroker.html#setretry","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1228,"kind":2048,"name":"setEventId","url":"classes/_sse_.messagebroker.html#seteventid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1229,"kind":2048,"name":"resetEventId","url":"classes/_sse_.messagebroker.html#reseteventid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1230,"kind":2048,"name":"increaseId","url":"classes/_sse_.messagebroker.html#increaseid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1231,"kind":2048,"name":"addMessage","url":"classes/_sse_.messagebroker.html#addmessage","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1232,"kind":2048,"name":"flushBuffer","url":"classes/_sse_.messagebroker.html#flushbuffer","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1233,"kind":2048,"name":"joinBuffer","url":"classes/_sse_.messagebroker.html#joinbuffer","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1234,"kind":2048,"name":"pop","url":"classes/_sse_.messagebroker.html#pop","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1235,"kind":2048,"name":"heartbeat","url":"classes/_sse_.messagebroker.html#heartbeat","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1236,"kind":2048,"name":"existMessage","url":"classes/_sse_.messagebroker.html#existmessage","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1237,"kind":128,"name":"Subscription","url":"classes/_sse_.subscription.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"sse\""},{"id":1238,"kind":1024,"name":"value","url":"classes/_sse_.subscription.html#value","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"sse\".Subscription"},{"id":1239,"kind":512,"name":"constructor","url":"classes/_sse_.subscription.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"sse\".Subscription"},{"id":1240,"kind":2048,"name":"_read","url":"classes/_sse_.subscription.html#_read","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"sse\".Subscription"},{"id":1241,"kind":1024,"name":"readable","url":"classes/_sse_.subscription.html#readable","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1242,"kind":1024,"name":"readableHighWaterMark","url":"classes/_sse_.subscription.html#readablehighwatermark","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1243,"kind":1024,"name":"readableLength","url":"classes/_sse_.subscription.html#readablelength","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1244,"kind":2048,"name":"read","url":"classes/_sse_.subscription.html#read","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1245,"kind":2048,"name":"setEncoding","url":"classes/_sse_.subscription.html#setencoding","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1246,"kind":2048,"name":"pause","url":"classes/_sse_.subscription.html#pause","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1247,"kind":2048,"name":"resume","url":"classes/_sse_.subscription.html#resume","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1248,"kind":2048,"name":"isPaused","url":"classes/_sse_.subscription.html#ispaused","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1249,"kind":2048,"name":"unpipe","url":"classes/_sse_.subscription.html#unpipe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1250,"kind":2048,"name":"unshift","url":"classes/_sse_.subscription.html#unshift","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1251,"kind":2048,"name":"wrap","url":"classes/_sse_.subscription.html#wrap","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1252,"kind":2048,"name":"push","url":"classes/_sse_.subscription.html#push","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1253,"kind":2048,"name":"_destroy","url":"classes/_sse_.subscription.html#_destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1254,"kind":2048,"name":"destroy","url":"classes/_sse_.subscription.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1255,"kind":2048,"name":"addListener","url":"classes/_sse_.subscription.html#addlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1256,"kind":2048,"name":"emit","url":"classes/_sse_.subscription.html#emit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1257,"kind":2048,"name":"on","url":"classes/_sse_.subscription.html#on","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1258,"kind":2048,"name":"once","url":"classes/_sse_.subscription.html#once","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1259,"kind":2048,"name":"prependListener","url":"classes/_sse_.subscription.html#prependlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1260,"kind":2048,"name":"prependOnceListener","url":"classes/_sse_.subscription.html#prependoncelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1261,"kind":2048,"name":"removeListener","url":"classes/_sse_.subscription.html#removelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1262,"kind":2048,"name":"__@asyncIterator","url":"classes/_sse_.subscription.html#___asynciterator","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1263,"kind":2048,"name":"pipe","url":"classes/_sse_.subscription.html#pipe","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1264,"kind":2048,"name":"listenerCount","url":"classes/_sse_.subscription.html#listenercount-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"sse\".Subscription"},{"id":1265,"kind":1024,"name":"defaultMaxListeners","url":"classes/_sse_.subscription.html#defaultmaxlisteners","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"sse\".Subscription"},{"id":1266,"kind":2048,"name":"off","url":"classes/_sse_.subscription.html#off","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1267,"kind":2048,"name":"removeAllListeners","url":"classes/_sse_.subscription.html#removealllisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1268,"kind":2048,"name":"setMaxListeners","url":"classes/_sse_.subscription.html#setmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1269,"kind":2048,"name":"getMaxListeners","url":"classes/_sse_.subscription.html#getmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1270,"kind":2048,"name":"listeners","url":"classes/_sse_.subscription.html#listeners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1271,"kind":2048,"name":"rawListeners","url":"classes/_sse_.subscription.html#rawlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1272,"kind":2048,"name":"eventNames","url":"classes/_sse_.subscription.html#eventnames","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1273,"kind":2048,"name":"listenerCount","url":"classes/_sse_.subscription.html#listenercount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"}]}; \ No newline at end of file + typedoc.search.data = {"kinds":{"1":"External module","4":"Enumeration","16":"Enumeration member","32":"Variable","64":"Function","128":"Class","256":"Interface","512":"Constructor","1024":"Property","2048":"Method","65536":"Type literal","262144":"Accessor","2097152":"Object literal","4194304":"Type alias"},"rows":[{"id":0,"kind":1,"name":"\"config\"","url":"modules/_config_.html","classes":"tsd-kind-external-module"},{"id":1,"kind":128,"name":"Config","url":"classes/_config_.config.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"config\""},{"id":2,"kind":1024,"name":"store","url":"classes/_config_.config.html#store","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"config\".Config"},{"id":3,"kind":2048,"name":"initApp","url":"classes/_config_.config.html#initapp","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"config\".Config"},{"id":4,"kind":2048,"name":"getItem","url":"classes/_config_.config.html#getitem","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"config\".Config"},{"id":5,"kind":2048,"name":"hasItem","url":"classes/_config_.config.html#hasitem","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"config\".Config"},{"id":6,"kind":2048,"name":"setItem","url":"classes/_config_.config.html#setitem","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"config\".Config"},{"id":7,"kind":2048,"name":"getConfigFromFile","url":"classes/_config_.config.html#getconfigfromfile","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"config\".Config"},{"id":8,"kind":2048,"name":"getConfigFromObj","url":"classes/_config_.config.html#getconfigfromobj","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"config\".Config"},{"id":9,"kind":32,"name":"config","url":"modules/_config_.html#config-1","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"config\""},{"id":10,"kind":1,"name":"\"exception\"","url":"modules/_exception_.html","classes":"tsd-kind-external-module"},{"id":11,"kind":256,"name":"Exception","url":"interfaces/_exception_.exception.html","classes":"tsd-kind-interface tsd-parent-kind-external-module","parent":"\"exception\""},{"id":12,"kind":1024,"name":"code","url":"interfaces/_exception_.exception.html#code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"exception\".Exception"},{"id":13,"kind":1024,"name":"msg","url":"interfaces/_exception_.exception.html#msg","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"exception\".Exception"},{"id":14,"kind":1024,"name":"errorCode","url":"interfaces/_exception_.exception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"exception\".Exception"},{"id":15,"kind":128,"name":"HttpException","url":"classes/_exception_.httpexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":16,"kind":1024,"name":"code","url":"classes/_exception_.httpexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"exception\".HttpException"},{"id":17,"kind":1024,"name":"msg","url":"classes/_exception_.httpexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"exception\".HttpException"},{"id":18,"kind":1024,"name":"errorCode","url":"classes/_exception_.httpexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"exception\".HttpException"},{"id":19,"kind":1024,"name":"fields","url":"classes/_exception_.httpexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"exception\".HttpException"},{"id":20,"kind":512,"name":"constructor","url":"classes/_exception_.httpexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"exception\".HttpException"},{"id":21,"kind":1024,"name":"name","url":"classes/_exception_.httpexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".HttpException"},{"id":22,"kind":1024,"name":"message","url":"classes/_exception_.httpexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".HttpException"},{"id":23,"kind":1024,"name":"stack","url":"classes/_exception_.httpexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".HttpException"},{"id":24,"kind":1024,"name":"Error","url":"classes/_exception_.httpexception.html#error","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"\"exception\".HttpException"},{"id":25,"kind":128,"name":"Success","url":"classes/_exception_.success.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":26,"kind":1024,"name":"code","url":"classes/_exception_.success.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Success"},{"id":27,"kind":1024,"name":"msg","url":"classes/_exception_.success.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Success"},{"id":28,"kind":1024,"name":"errorCode","url":"classes/_exception_.success.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Success"},{"id":29,"kind":512,"name":"constructor","url":"classes/_exception_.success.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Success"},{"id":30,"kind":1024,"name":"fields","url":"classes/_exception_.success.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Success"},{"id":31,"kind":1024,"name":"name","url":"classes/_exception_.success.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Success"},{"id":32,"kind":1024,"name":"message","url":"classes/_exception_.success.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Success"},{"id":33,"kind":1024,"name":"stack","url":"classes/_exception_.success.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".Success"},{"id":34,"kind":128,"name":"Failed","url":"classes/_exception_.failed.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":35,"kind":1024,"name":"code","url":"classes/_exception_.failed.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Failed"},{"id":36,"kind":1024,"name":"msg","url":"classes/_exception_.failed.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Failed"},{"id":37,"kind":1024,"name":"errorCode","url":"classes/_exception_.failed.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Failed"},{"id":38,"kind":512,"name":"constructor","url":"classes/_exception_.failed.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Failed"},{"id":39,"kind":1024,"name":"fields","url":"classes/_exception_.failed.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Failed"},{"id":40,"kind":1024,"name":"name","url":"classes/_exception_.failed.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Failed"},{"id":41,"kind":1024,"name":"message","url":"classes/_exception_.failed.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Failed"},{"id":42,"kind":1024,"name":"stack","url":"classes/_exception_.failed.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".Failed"},{"id":43,"kind":128,"name":"AuthFailed","url":"classes/_exception_.authfailed.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":44,"kind":1024,"name":"code","url":"classes/_exception_.authfailed.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".AuthFailed"},{"id":45,"kind":1024,"name":"msg","url":"classes/_exception_.authfailed.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".AuthFailed"},{"id":46,"kind":1024,"name":"errorCode","url":"classes/_exception_.authfailed.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".AuthFailed"},{"id":47,"kind":512,"name":"constructor","url":"classes/_exception_.authfailed.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".AuthFailed"},{"id":48,"kind":1024,"name":"fields","url":"classes/_exception_.authfailed.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".AuthFailed"},{"id":49,"kind":1024,"name":"name","url":"classes/_exception_.authfailed.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".AuthFailed"},{"id":50,"kind":1024,"name":"message","url":"classes/_exception_.authfailed.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".AuthFailed"},{"id":51,"kind":1024,"name":"stack","url":"classes/_exception_.authfailed.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".AuthFailed"},{"id":52,"kind":128,"name":"NotFound","url":"classes/_exception_.notfound.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":53,"kind":1024,"name":"code","url":"classes/_exception_.notfound.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".NotFound"},{"id":54,"kind":1024,"name":"msg","url":"classes/_exception_.notfound.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".NotFound"},{"id":55,"kind":1024,"name":"errorCode","url":"classes/_exception_.notfound.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".NotFound"},{"id":56,"kind":512,"name":"constructor","url":"classes/_exception_.notfound.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".NotFound"},{"id":57,"kind":1024,"name":"fields","url":"classes/_exception_.notfound.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".NotFound"},{"id":58,"kind":1024,"name":"name","url":"classes/_exception_.notfound.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".NotFound"},{"id":59,"kind":1024,"name":"message","url":"classes/_exception_.notfound.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".NotFound"},{"id":60,"kind":1024,"name":"stack","url":"classes/_exception_.notfound.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".NotFound"},{"id":61,"kind":128,"name":"ParametersException","url":"classes/_exception_.parametersexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":62,"kind":1024,"name":"code","url":"classes/_exception_.parametersexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ParametersException"},{"id":63,"kind":1024,"name":"msg","url":"classes/_exception_.parametersexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ParametersException"},{"id":64,"kind":1024,"name":"errorCode","url":"classes/_exception_.parametersexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ParametersException"},{"id":65,"kind":512,"name":"constructor","url":"classes/_exception_.parametersexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ParametersException"},{"id":66,"kind":1024,"name":"fields","url":"classes/_exception_.parametersexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".ParametersException"},{"id":67,"kind":1024,"name":"name","url":"classes/_exception_.parametersexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".ParametersException"},{"id":68,"kind":1024,"name":"message","url":"classes/_exception_.parametersexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".ParametersException"},{"id":69,"kind":1024,"name":"stack","url":"classes/_exception_.parametersexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".ParametersException"},{"id":70,"kind":128,"name":"InvalidTokenException","url":"classes/_exception_.invalidtokenexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":71,"kind":1024,"name":"code","url":"classes/_exception_.invalidtokenexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".InvalidTokenException"},{"id":72,"kind":1024,"name":"msg","url":"classes/_exception_.invalidtokenexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".InvalidTokenException"},{"id":73,"kind":1024,"name":"errorCode","url":"classes/_exception_.invalidtokenexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".InvalidTokenException"},{"id":74,"kind":512,"name":"constructor","url":"classes/_exception_.invalidtokenexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".InvalidTokenException"},{"id":75,"kind":1024,"name":"fields","url":"classes/_exception_.invalidtokenexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".InvalidTokenException"},{"id":76,"kind":1024,"name":"name","url":"classes/_exception_.invalidtokenexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".InvalidTokenException"},{"id":77,"kind":1024,"name":"message","url":"classes/_exception_.invalidtokenexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".InvalidTokenException"},{"id":78,"kind":1024,"name":"stack","url":"classes/_exception_.invalidtokenexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".InvalidTokenException"},{"id":79,"kind":128,"name":"ExpiredTokenException","url":"classes/_exception_.expiredtokenexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":80,"kind":1024,"name":"code","url":"classes/_exception_.expiredtokenexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ExpiredTokenException"},{"id":81,"kind":1024,"name":"msg","url":"classes/_exception_.expiredtokenexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ExpiredTokenException"},{"id":82,"kind":1024,"name":"errorCode","url":"classes/_exception_.expiredtokenexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ExpiredTokenException"},{"id":83,"kind":512,"name":"constructor","url":"classes/_exception_.expiredtokenexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ExpiredTokenException"},{"id":84,"kind":1024,"name":"fields","url":"classes/_exception_.expiredtokenexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".ExpiredTokenException"},{"id":85,"kind":1024,"name":"name","url":"classes/_exception_.expiredtokenexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".ExpiredTokenException"},{"id":86,"kind":1024,"name":"message","url":"classes/_exception_.expiredtokenexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".ExpiredTokenException"},{"id":87,"kind":1024,"name":"stack","url":"classes/_exception_.expiredtokenexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".ExpiredTokenException"},{"id":88,"kind":128,"name":"UnknownException","url":"classes/_exception_.unknownexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":89,"kind":1024,"name":"code","url":"classes/_exception_.unknownexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".UnknownException"},{"id":90,"kind":1024,"name":"msg","url":"classes/_exception_.unknownexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".UnknownException"},{"id":91,"kind":1024,"name":"errorCode","url":"classes/_exception_.unknownexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".UnknownException"},{"id":92,"kind":512,"name":"constructor","url":"classes/_exception_.unknownexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".UnknownException"},{"id":93,"kind":1024,"name":"fields","url":"classes/_exception_.unknownexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".UnknownException"},{"id":94,"kind":1024,"name":"name","url":"classes/_exception_.unknownexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".UnknownException"},{"id":95,"kind":1024,"name":"message","url":"classes/_exception_.unknownexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".UnknownException"},{"id":96,"kind":1024,"name":"stack","url":"classes/_exception_.unknownexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".UnknownException"},{"id":97,"kind":128,"name":"RepeatException","url":"classes/_exception_.repeatexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":98,"kind":1024,"name":"code","url":"classes/_exception_.repeatexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RepeatException"},{"id":99,"kind":1024,"name":"msg","url":"classes/_exception_.repeatexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RepeatException"},{"id":100,"kind":1024,"name":"errorCode","url":"classes/_exception_.repeatexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RepeatException"},{"id":101,"kind":512,"name":"constructor","url":"classes/_exception_.repeatexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RepeatException"},{"id":102,"kind":1024,"name":"fields","url":"classes/_exception_.repeatexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".RepeatException"},{"id":103,"kind":1024,"name":"name","url":"classes/_exception_.repeatexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".RepeatException"},{"id":104,"kind":1024,"name":"message","url":"classes/_exception_.repeatexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".RepeatException"},{"id":105,"kind":1024,"name":"stack","url":"classes/_exception_.repeatexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".RepeatException"},{"id":106,"kind":128,"name":"Forbidden","url":"classes/_exception_.forbidden.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":107,"kind":1024,"name":"code","url":"classes/_exception_.forbidden.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Forbidden"},{"id":108,"kind":1024,"name":"msg","url":"classes/_exception_.forbidden.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Forbidden"},{"id":109,"kind":1024,"name":"errorCode","url":"classes/_exception_.forbidden.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Forbidden"},{"id":110,"kind":512,"name":"constructor","url":"classes/_exception_.forbidden.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Forbidden"},{"id":111,"kind":1024,"name":"fields","url":"classes/_exception_.forbidden.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Forbidden"},{"id":112,"kind":1024,"name":"name","url":"classes/_exception_.forbidden.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Forbidden"},{"id":113,"kind":1024,"name":"message","url":"classes/_exception_.forbidden.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Forbidden"},{"id":114,"kind":1024,"name":"stack","url":"classes/_exception_.forbidden.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".Forbidden"},{"id":115,"kind":128,"name":"MethodNotAllowed","url":"classes/_exception_.methodnotallowed.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":116,"kind":1024,"name":"code","url":"classes/_exception_.methodnotallowed.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".MethodNotAllowed"},{"id":117,"kind":1024,"name":"msg","url":"classes/_exception_.methodnotallowed.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".MethodNotAllowed"},{"id":118,"kind":1024,"name":"errorCode","url":"classes/_exception_.methodnotallowed.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".MethodNotAllowed"},{"id":119,"kind":512,"name":"constructor","url":"classes/_exception_.methodnotallowed.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".MethodNotAllowed"},{"id":120,"kind":1024,"name":"fields","url":"classes/_exception_.methodnotallowed.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".MethodNotAllowed"},{"id":121,"kind":1024,"name":"name","url":"classes/_exception_.methodnotallowed.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".MethodNotAllowed"},{"id":122,"kind":1024,"name":"message","url":"classes/_exception_.methodnotallowed.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".MethodNotAllowed"},{"id":123,"kind":1024,"name":"stack","url":"classes/_exception_.methodnotallowed.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".MethodNotAllowed"},{"id":124,"kind":128,"name":"RefreshException","url":"classes/_exception_.refreshexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":125,"kind":1024,"name":"code","url":"classes/_exception_.refreshexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RefreshException"},{"id":126,"kind":1024,"name":"msg","url":"classes/_exception_.refreshexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RefreshException"},{"id":127,"kind":1024,"name":"errorCode","url":"classes/_exception_.refreshexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RefreshException"},{"id":128,"kind":512,"name":"constructor","url":"classes/_exception_.refreshexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RefreshException"},{"id":129,"kind":1024,"name":"fields","url":"classes/_exception_.refreshexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".RefreshException"},{"id":130,"kind":1024,"name":"name","url":"classes/_exception_.refreshexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".RefreshException"},{"id":131,"kind":1024,"name":"message","url":"classes/_exception_.refreshexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".RefreshException"},{"id":132,"kind":1024,"name":"stack","url":"classes/_exception_.refreshexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".RefreshException"},{"id":133,"kind":128,"name":"FileTooLargeException","url":"classes/_exception_.filetoolargeexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":134,"kind":1024,"name":"code","url":"classes/_exception_.filetoolargeexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileTooLargeException"},{"id":135,"kind":1024,"name":"msg","url":"classes/_exception_.filetoolargeexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileTooLargeException"},{"id":136,"kind":1024,"name":"errorCode","url":"classes/_exception_.filetoolargeexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileTooLargeException"},{"id":137,"kind":512,"name":"constructor","url":"classes/_exception_.filetoolargeexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileTooLargeException"},{"id":138,"kind":1024,"name":"fields","url":"classes/_exception_.filetoolargeexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".FileTooLargeException"},{"id":139,"kind":1024,"name":"name","url":"classes/_exception_.filetoolargeexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".FileTooLargeException"},{"id":140,"kind":1024,"name":"message","url":"classes/_exception_.filetoolargeexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".FileTooLargeException"},{"id":141,"kind":1024,"name":"stack","url":"classes/_exception_.filetoolargeexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".FileTooLargeException"},{"id":142,"kind":128,"name":"FileTooManyException","url":"classes/_exception_.filetoomanyexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":143,"kind":1024,"name":"code","url":"classes/_exception_.filetoomanyexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileTooManyException"},{"id":144,"kind":1024,"name":"msg","url":"classes/_exception_.filetoomanyexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileTooManyException"},{"id":145,"kind":1024,"name":"errorCode","url":"classes/_exception_.filetoomanyexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileTooManyException"},{"id":146,"kind":512,"name":"constructor","url":"classes/_exception_.filetoomanyexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileTooManyException"},{"id":147,"kind":1024,"name":"fields","url":"classes/_exception_.filetoomanyexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".FileTooManyException"},{"id":148,"kind":1024,"name":"name","url":"classes/_exception_.filetoomanyexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".FileTooManyException"},{"id":149,"kind":1024,"name":"message","url":"classes/_exception_.filetoomanyexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".FileTooManyException"},{"id":150,"kind":1024,"name":"stack","url":"classes/_exception_.filetoomanyexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".FileTooManyException"},{"id":151,"kind":128,"name":"FileExtensionException","url":"classes/_exception_.fileextensionexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":152,"kind":1024,"name":"code","url":"classes/_exception_.fileextensionexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileExtensionException"},{"id":153,"kind":1024,"name":"msg","url":"classes/_exception_.fileextensionexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileExtensionException"},{"id":154,"kind":1024,"name":"errorCode","url":"classes/_exception_.fileextensionexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileExtensionException"},{"id":155,"kind":512,"name":"constructor","url":"classes/_exception_.fileextensionexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileExtensionException"},{"id":156,"kind":1024,"name":"fields","url":"classes/_exception_.fileextensionexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".FileExtensionException"},{"id":157,"kind":1024,"name":"name","url":"classes/_exception_.fileextensionexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".FileExtensionException"},{"id":158,"kind":1024,"name":"message","url":"classes/_exception_.fileextensionexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".FileExtensionException"},{"id":159,"kind":1024,"name":"stack","url":"classes/_exception_.fileextensionexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".FileExtensionException"},{"id":160,"kind":1,"name":"\"enums\"","url":"modules/_enums_.html","classes":"tsd-kind-external-module"},{"id":161,"kind":4,"name":"UserAdmin","url":"enums/_enums_.useradmin.html","classes":"tsd-kind-enum tsd-parent-kind-external-module","parent":"\"enums\""},{"id":162,"kind":16,"name":"COMMON","url":"enums/_enums_.useradmin.html#common","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"enums\".UserAdmin"},{"id":163,"kind":16,"name":"ADMIN","url":"enums/_enums_.useradmin.html#admin","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"enums\".UserAdmin"},{"id":164,"kind":4,"name":"UserActive","url":"enums/_enums_.useractive.html","classes":"tsd-kind-enum tsd-parent-kind-external-module","parent":"\"enums\""},{"id":165,"kind":16,"name":"ACTIVE","url":"enums/_enums_.useractive.html#active","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"enums\".UserActive"},{"id":166,"kind":16,"name":"NOT_ACTIVE","url":"enums/_enums_.useractive.html#not_active","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"enums\".UserActive"},{"id":167,"kind":4,"name":"TokenType","url":"enums/_enums_.tokentype.html","classes":"tsd-kind-enum tsd-parent-kind-external-module","parent":"\"enums\""},{"id":168,"kind":16,"name":"ACCESS","url":"enums/_enums_.tokentype.html#access","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"enums\".TokenType"},{"id":169,"kind":16,"name":"REFRESH","url":"enums/_enums_.tokentype.html#refresh","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"enums\".TokenType"},{"id":170,"kind":1,"name":"\"jwt\"","url":"modules/_jwt_.html","classes":"tsd-kind-external-module"},{"id":171,"kind":128,"name":"Token","url":"classes/_jwt_.token.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"jwt\""},{"id":172,"kind":1024,"name":"secret","url":"classes/_jwt_.token.html#secret","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":173,"kind":1024,"name":"accessExp","url":"classes/_jwt_.token.html#accessexp","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":174,"kind":1024,"name":"refreshExp","url":"classes/_jwt_.token.html#refreshexp","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":175,"kind":512,"name":"constructor","url":"classes/_jwt_.token.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":176,"kind":2048,"name":"initApp","url":"classes/_jwt_.token.html#initapp","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":177,"kind":2048,"name":"createAccessToken","url":"classes/_jwt_.token.html#createaccesstoken","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":178,"kind":2048,"name":"createRefreshToken","url":"classes/_jwt_.token.html#createrefreshtoken","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":179,"kind":2048,"name":"verifyToken","url":"classes/_jwt_.token.html#verifytoken","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":180,"kind":32,"name":"jwt","url":"modules/_jwt_.html#jwt","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":181,"kind":64,"name":"createAccessToken","url":"modules/_jwt_.html#createaccesstoken","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"jwt\""},{"id":182,"kind":64,"name":"createRefreshToken","url":"modules/_jwt_.html#createrefreshtoken","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"jwt\""},{"id":183,"kind":64,"name":"verifyAccessToken","url":"modules/_jwt_.html#verifyaccesstoken","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"jwt\""},{"id":184,"kind":64,"name":"verifyRefreshToken","url":"modules/_jwt_.html#verifyrefreshtoken","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"jwt\""},{"id":185,"kind":64,"name":"getTokens","url":"modules/_jwt_.html#gettokens","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":186,"kind":64,"name":"parseHeader","url":"modules/_jwt_.html#parseheader","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":187,"kind":64,"name":"checkUserIsActive","url":"modules/_jwt_.html#checkuserisactive","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":188,"kind":64,"name":"loginRequired","url":"modules/_jwt_.html#loginrequired","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":189,"kind":64,"name":"refreshTokenRequired","url":"modules/_jwt_.html#refreshtokenrequired","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":190,"kind":64,"name":"refreshTokenRequiredWithUnifyException","url":"modules/_jwt_.html#refreshtokenrequiredwithunifyexception","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":191,"kind":64,"name":"groupRequired","url":"modules/_jwt_.html#grouprequired","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":192,"kind":64,"name":"adminRequired","url":"modules/_jwt_.html#adminrequired","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":193,"kind":1,"name":"\"extended-validator\"","url":"modules/_extended_validator_.html","classes":"tsd-kind-external-module"},{"id":194,"kind":256,"name":"IsFloatOptions","url":"interfaces/_extended_validator_.isfloatoptions.html","classes":"tsd-kind-interface tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"extended-validator\""},{"id":195,"kind":1024,"name":"min","url":"interfaces/_extended_validator_.isfloatoptions.html#min","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsFloatOptions"},{"id":196,"kind":1024,"name":"max","url":"interfaces/_extended_validator_.isfloatoptions.html#max","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsFloatOptions"},{"id":197,"kind":1024,"name":"gt","url":"interfaces/_extended_validator_.isfloatoptions.html#gt","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsFloatOptions"},{"id":198,"kind":1024,"name":"lt","url":"interfaces/_extended_validator_.isfloatoptions.html#lt","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsFloatOptions"},{"id":199,"kind":256,"name":"IsIntOptions","url":"interfaces/_extended_validator_.isintoptions.html","classes":"tsd-kind-interface tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"extended-validator\""},{"id":200,"kind":1024,"name":"min","url":"interfaces/_extended_validator_.isintoptions.html#min","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsIntOptions"},{"id":201,"kind":1024,"name":"max","url":"interfaces/_extended_validator_.isintoptions.html#max","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsIntOptions"},{"id":202,"kind":1024,"name":"allow_leading_zeroes","url":"interfaces/_extended_validator_.isintoptions.html#allow_leading_zeroes","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsIntOptions"},{"id":203,"kind":1024,"name":"lt","url":"interfaces/_extended_validator_.isintoptions.html#lt","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsIntOptions"},{"id":204,"kind":1024,"name":"gt","url":"interfaces/_extended_validator_.isintoptions.html#gt","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsIntOptions"},{"id":205,"kind":128,"name":"ExtendedValidator","url":"classes/_extended_validator_.extendedvalidator.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"extended-validator\""},{"id":206,"kind":2048,"name":"hasProperty","url":"classes/_extended_validator_.extendedvalidator.html#hasproperty","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":207,"kind":2048,"name":"objPropertyIsNotEmpty","url":"classes/_extended_validator_.extendedvalidator.html#objpropertyisnotempty","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":208,"kind":2048,"name":"objPropertiesIsNotEmpty","url":"classes/_extended_validator_.extendedvalidator.html#objpropertiesisnotempty","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":209,"kind":2048,"name":"toInt","url":"classes/_extended_validator_.extendedvalidator.html#toint","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":210,"kind":2048,"name":"toFloat","url":"classes/_extended_validator_.extendedvalidator.html#tofloat","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":211,"kind":2048,"name":"toBoolean","url":"classes/_extended_validator_.extendedvalidator.html#toboolean","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":212,"kind":2048,"name":"toDate","url":"classes/_extended_validator_.extendedvalidator.html#todate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":213,"kind":2048,"name":"isFloat","url":"classes/_extended_validator_.extendedvalidator.html#isfloat","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":214,"kind":2048,"name":"isFloat2","url":"classes/_extended_validator_.extendedvalidator.html#isfloat2","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":215,"kind":2048,"name":"isInt2","url":"classes/_extended_validator_.extendedvalidator.html#isint2","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":216,"kind":2048,"name":"isInt3","url":"classes/_extended_validator_.extendedvalidator.html#isint3","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":217,"kind":2048,"name":"validate","url":"classes/_extended_validator_.extendedvalidator.html#validate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":218,"kind":2048,"name":"validateOrReject","url":"classes/_extended_validator_.extendedvalidator.html#validateorreject","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":219,"kind":2048,"name":"validateSync","url":"classes/_extended_validator_.extendedvalidator.html#validatesync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":220,"kind":2048,"name":"validateValueByMetadata","url":"classes/_extended_validator_.extendedvalidator.html#validatevaluebymetadata","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":221,"kind":2048,"name":"isDefined","url":"classes/_extended_validator_.extendedvalidator.html#isdefined","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":222,"kind":2048,"name":"equals","url":"classes/_extended_validator_.extendedvalidator.html#equals","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":223,"kind":2048,"name":"notEquals","url":"classes/_extended_validator_.extendedvalidator.html#notequals","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":224,"kind":2048,"name":"isEmpty","url":"classes/_extended_validator_.extendedvalidator.html#isempty","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":225,"kind":2048,"name":"isNotEmpty","url":"classes/_extended_validator_.extendedvalidator.html#isnotempty","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":226,"kind":2048,"name":"isIn","url":"classes/_extended_validator_.extendedvalidator.html#isin","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":227,"kind":2048,"name":"isNotIn","url":"classes/_extended_validator_.extendedvalidator.html#isnotin","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":228,"kind":2048,"name":"isBoolean","url":"classes/_extended_validator_.extendedvalidator.html#isboolean","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":229,"kind":2048,"name":"isDate","url":"classes/_extended_validator_.extendedvalidator.html#isdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":230,"kind":2048,"name":"isString","url":"classes/_extended_validator_.extendedvalidator.html#isstring","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":231,"kind":2048,"name":"isDateString","url":"classes/_extended_validator_.extendedvalidator.html#isdatestring","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":232,"kind":2048,"name":"isArray","url":"classes/_extended_validator_.extendedvalidator.html#isarray","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":233,"kind":2048,"name":"isEnum","url":"classes/_extended_validator_.extendedvalidator.html#isenum","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":234,"kind":2048,"name":"isNumber","url":"classes/_extended_validator_.extendedvalidator.html#isnumber","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":235,"kind":2048,"name":"isInt","url":"classes/_extended_validator_.extendedvalidator.html#isint","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":236,"kind":2048,"name":"isDivisibleBy","url":"classes/_extended_validator_.extendedvalidator.html#isdivisibleby","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":237,"kind":2048,"name":"isPositive","url":"classes/_extended_validator_.extendedvalidator.html#ispositive","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":238,"kind":2048,"name":"isNegative","url":"classes/_extended_validator_.extendedvalidator.html#isnegative","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":239,"kind":2048,"name":"min","url":"classes/_extended_validator_.extendedvalidator.html#min","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":240,"kind":2048,"name":"max","url":"classes/_extended_validator_.extendedvalidator.html#max","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":241,"kind":2048,"name":"minDate","url":"classes/_extended_validator_.extendedvalidator.html#mindate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":242,"kind":2048,"name":"maxDate","url":"classes/_extended_validator_.extendedvalidator.html#maxdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":243,"kind":2048,"name":"isBooleanString","url":"classes/_extended_validator_.extendedvalidator.html#isbooleanstring","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":244,"kind":2048,"name":"isNumberString","url":"classes/_extended_validator_.extendedvalidator.html#isnumberstring","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":245,"kind":2048,"name":"contains","url":"classes/_extended_validator_.extendedvalidator.html#contains","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":246,"kind":2048,"name":"notContains","url":"classes/_extended_validator_.extendedvalidator.html#notcontains","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":247,"kind":2048,"name":"isAlpha","url":"classes/_extended_validator_.extendedvalidator.html#isalpha","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":248,"kind":2048,"name":"isAlphanumeric","url":"classes/_extended_validator_.extendedvalidator.html#isalphanumeric","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":249,"kind":2048,"name":"isAscii","url":"classes/_extended_validator_.extendedvalidator.html#isascii","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":250,"kind":2048,"name":"isBase64","url":"classes/_extended_validator_.extendedvalidator.html#isbase64","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":251,"kind":2048,"name":"isByteLength","url":"classes/_extended_validator_.extendedvalidator.html#isbytelength","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":252,"kind":2048,"name":"isCreditCard","url":"classes/_extended_validator_.extendedvalidator.html#iscreditcard","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":253,"kind":2048,"name":"isCurrency","url":"classes/_extended_validator_.extendedvalidator.html#iscurrency","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":254,"kind":2048,"name":"isEmail","url":"classes/_extended_validator_.extendedvalidator.html#isemail","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":255,"kind":2048,"name":"isFQDN","url":"classes/_extended_validator_.extendedvalidator.html#isfqdn","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":256,"kind":2048,"name":"isFullWidth","url":"classes/_extended_validator_.extendedvalidator.html#isfullwidth","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":257,"kind":2048,"name":"isHalfWidth","url":"classes/_extended_validator_.extendedvalidator.html#ishalfwidth","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":258,"kind":2048,"name":"isVariableWidth","url":"classes/_extended_validator_.extendedvalidator.html#isvariablewidth","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":259,"kind":2048,"name":"isHexColor","url":"classes/_extended_validator_.extendedvalidator.html#ishexcolor","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":260,"kind":2048,"name":"isHexadecimal","url":"classes/_extended_validator_.extendedvalidator.html#ishexadecimal","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":261,"kind":2048,"name":"isIP","url":"classes/_extended_validator_.extendedvalidator.html#isip","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":262,"kind":2048,"name":"isISBN","url":"classes/_extended_validator_.extendedvalidator.html#isisbn","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":263,"kind":2048,"name":"isISIN","url":"classes/_extended_validator_.extendedvalidator.html#isisin","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":264,"kind":2048,"name":"isISO8601","url":"classes/_extended_validator_.extendedvalidator.html#isiso8601","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":265,"kind":2048,"name":"isJSON","url":"classes/_extended_validator_.extendedvalidator.html#isjson","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":266,"kind":2048,"name":"isLowercase","url":"classes/_extended_validator_.extendedvalidator.html#islowercase","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":267,"kind":2048,"name":"isMobilePhone","url":"classes/_extended_validator_.extendedvalidator.html#ismobilephone","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":268,"kind":2048,"name":"isPhoneNumber","url":"classes/_extended_validator_.extendedvalidator.html#isphonenumber","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":269,"kind":2048,"name":"isMongoId","url":"classes/_extended_validator_.extendedvalidator.html#ismongoid","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":270,"kind":2048,"name":"isMultibyte","url":"classes/_extended_validator_.extendedvalidator.html#ismultibyte","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":271,"kind":2048,"name":"isSurrogatePair","url":"classes/_extended_validator_.extendedvalidator.html#issurrogatepair","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":272,"kind":2048,"name":"isURL","url":"classes/_extended_validator_.extendedvalidator.html#isurl","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":273,"kind":2048,"name":"isUUID","url":"classes/_extended_validator_.extendedvalidator.html#isuuid","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":274,"kind":2048,"name":"isUppercase","url":"classes/_extended_validator_.extendedvalidator.html#isuppercase","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":275,"kind":2048,"name":"length","url":"classes/_extended_validator_.extendedvalidator.html#length","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":276,"kind":2048,"name":"minLength","url":"classes/_extended_validator_.extendedvalidator.html#minlength","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":277,"kind":2048,"name":"maxLength","url":"classes/_extended_validator_.extendedvalidator.html#maxlength","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":278,"kind":2048,"name":"matches","url":"classes/_extended_validator_.extendedvalidator.html#matches","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":279,"kind":2048,"name":"isMilitaryTime","url":"classes/_extended_validator_.extendedvalidator.html#ismilitarytime","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":280,"kind":2048,"name":"arrayContains","url":"classes/_extended_validator_.extendedvalidator.html#arraycontains","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":281,"kind":2048,"name":"arrayNotContains","url":"classes/_extended_validator_.extendedvalidator.html#arraynotcontains","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":282,"kind":2048,"name":"arrayNotEmpty","url":"classes/_extended_validator_.extendedvalidator.html#arraynotempty","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":283,"kind":2048,"name":"arrayMinSize","url":"classes/_extended_validator_.extendedvalidator.html#arrayminsize","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":284,"kind":2048,"name":"arrayMaxSize","url":"classes/_extended_validator_.extendedvalidator.html#arraymaxsize","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":285,"kind":2048,"name":"arrayUnique","url":"classes/_extended_validator_.extendedvalidator.html#arrayunique","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":286,"kind":2048,"name":"isInstance","url":"classes/_extended_validator_.extendedvalidator.html#isinstance","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":287,"kind":32,"name":"extendedValidator","url":"modules/_extended_validator_.html#extendedvalidator-1","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"extended-validator\""},{"id":288,"kind":1,"name":"\"util\"","url":"modules/_util_.html","classes":"tsd-kind-external-module"},{"id":289,"kind":256,"name":"ObjOptions","url":"interfaces/_util_.objoptions.html","classes":"tsd-kind-interface tsd-parent-kind-external-module","parent":"\"util\""},{"id":290,"kind":1024,"name":"prefix","url":"interfaces/_util_.objoptions.html#prefix","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"util\".ObjOptions"},{"id":291,"kind":1024,"name":"filter","url":"interfaces/_util_.objoptions.html#filter","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"util\".ObjOptions"},{"id":292,"kind":64,"name":"isUndefined","url":"modules/_util_.html#isundefined","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":293,"kind":64,"name":"isFunction","url":"modules/_util_.html#isfunction","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":294,"kind":64,"name":"isObject","url":"modules/_util_.html#isobject","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":295,"kind":64,"name":"isString","url":"modules/_util_.html#isstring","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":296,"kind":64,"name":"isConstructor","url":"modules/_util_.html#isconstructor","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":297,"kind":64,"name":"validatePath","url":"modules/_util_.html#validatepath","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":298,"kind":64,"name":"isNil","url":"modules/_util_.html#isnil","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":299,"kind":64,"name":"isEmpty","url":"modules/_util_.html#isempty","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":300,"kind":64,"name":"isSymbol","url":"modules/_util_.html#issymbol","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":301,"kind":64,"name":"strVal","url":"modules/_util_.html#strval","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":302,"kind":32,"name":"isNotEmpty","url":"modules/_util_.html#isnotempty","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"util\""},{"id":303,"kind":32,"name":"isNegative","url":"modules/_util_.html#isnegative","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"util\""},{"id":304,"kind":32,"name":"isPositive","url":"modules/_util_.html#ispositive","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"util\""},{"id":305,"kind":64,"name":"assert","url":"modules/_util_.html#assert","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":306,"kind":64,"name":"toHump","url":"modules/_util_.html#tohump","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":307,"kind":64,"name":"toLine","url":"modules/_util_.html#toline","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":308,"kind":64,"name":"findAuthAndModule","url":"modules/_util_.html#findauthandmodule","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":309,"kind":64,"name":"findMetaByAuth","url":"modules/_util_.html#findmetabyauth","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":310,"kind":64,"name":"checkDateFormat","url":"modules/_util_.html#checkdateformat","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":311,"kind":64,"name":"paginate","url":"modules/_util_.html#paginate","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":312,"kind":64,"name":"unsets","url":"modules/_util_.html#unsets","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":313,"kind":64,"name":"decorateProp","url":"modules/_util_.html#decorateprop","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":314,"kind":64,"name":"getAllMethodNames","url":"modules/_util_.html#getallmethodnames","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":315,"kind":64,"name":"getAllFieldNames","url":"modules/_util_.html#getallfieldnames","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":316,"kind":64,"name":"prefixAndFilter","url":"modules/_util_.html#prefixandfilter","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"util\""},{"id":317,"kind":64,"name":"getFiles","url":"modules/_util_.html#getfiles","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":318,"kind":1,"name":"\"db\"","url":"modules/_db_.html","classes":"tsd-kind-external-module"},{"id":319,"kind":32,"name":"database","url":"modules/_db_.html#database","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"db\""},{"id":320,"kind":32,"name":"type","url":"modules/_db_.html#type","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"db\""},{"id":321,"kind":32,"name":"host","url":"modules/_db_.html#host","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"db\""},{"id":322,"kind":32,"name":"port","url":"modules/_db_.html#port","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"db\""},{"id":323,"kind":32,"name":"username","url":"modules/_db_.html#username","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"db\""},{"id":324,"kind":32,"name":"password","url":"modules/_db_.html#password","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"db\""},{"id":325,"kind":32,"name":"logging","url":"modules/_db_.html#logging","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"db\""},{"id":326,"kind":32,"name":"db","url":"modules/_db_.html#db","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"db\""},{"id":327,"kind":1,"name":"\"password-hash\"","url":"modules/_password_hash_.html","classes":"tsd-kind-external-module"},{"id":328,"kind":256,"name":"Option","url":"interfaces/_password_hash_.option.html","classes":"tsd-kind-interface tsd-parent-kind-external-module","parent":"\"password-hash\""},{"id":329,"kind":1024,"name":"algorithm","url":"interfaces/_password_hash_.option.html#algorithm","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"password-hash\".Option"},{"id":330,"kind":1024,"name":"saltLength","url":"interfaces/_password_hash_.option.html#saltlength","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"password-hash\".Option"},{"id":331,"kind":1024,"name":"iterations","url":"interfaces/_password_hash_.option.html#iterations","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"password-hash\".Option"},{"id":332,"kind":32,"name":"saltChars","url":"modules/_password_hash_.html#saltchars","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"password-hash\""},{"id":333,"kind":32,"name":"saltCharsCount","url":"modules/_password_hash_.html#saltcharscount","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"password-hash\""},{"id":334,"kind":64,"name":"generateSalt","url":"modules/_password_hash_.html#generatesalt","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"password-hash\""},{"id":335,"kind":64,"name":"generateHash","url":"modules/_password_hash_.html#generatehash","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"password-hash\""},{"id":336,"kind":64,"name":"generate","url":"modules/_password_hash_.html#generate","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"password-hash\""},{"id":337,"kind":64,"name":"verify","url":"modules/_password_hash_.html#verify","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"password-hash\""},{"id":338,"kind":64,"name":"isHashed","url":"modules/_password_hash_.html#ishashed","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"password-hash\""},{"id":339,"kind":1,"name":"\"interface\"","url":"modules/_interface_.html","classes":"tsd-kind-external-module"},{"id":340,"kind":2097152,"name":"InfoCrudMixin","url":"modules/_interface_.html#infocrudmixin","classes":"tsd-kind-object-literal tsd-parent-kind-external-module","parent":"\"interface\""},{"id":341,"kind":32,"name":"attributes","url":"modules/_interface_.html#infocrudmixin.attributes-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin"},{"id":342,"kind":65536,"name":"__type","url":"modules/_interface_.html#infocrudmixin.attributes-2.__type","classes":"tsd-kind-type-literal tsd-parent-kind-variable tsd-is-not-exported","parent":"\"interface\".InfoCrudMixin.attributes"},{"id":343,"kind":2097152,"name":"options","url":"modules/_interface_.html#infocrudmixin.options-2","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin"},{"id":344,"kind":32,"name":"createdAt","url":"modules/_interface_.html#infocrudmixin.options-2.createdat-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin.options"},{"id":345,"kind":32,"name":"updatedAt","url":"modules/_interface_.html#infocrudmixin.options-2.updatedat-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin.options"},{"id":346,"kind":32,"name":"deletedAt","url":"modules/_interface_.html#infocrudmixin.options-2.deletedat","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin.options"},{"id":347,"kind":32,"name":"paranoid","url":"modules/_interface_.html#infocrudmixin.options-2.paranoid","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin.options"},{"id":348,"kind":2097152,"name":"getterMethods","url":"modules/_interface_.html#infocrudmixin.options-2.gettermethods","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin.options"},{"id":349,"kind":64,"name":"createTime","url":"modules/_interface_.html#infocrudmixin.options-2.gettermethods.createtime","classes":"tsd-kind-function tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin.options.getterMethods"},{"id":350,"kind":2097152,"name":"UserInterface","url":"modules/_interface_.html#userinterface","classes":"tsd-kind-object-literal tsd-parent-kind-external-module","parent":"\"interface\""},{"id":351,"kind":2097152,"name":"attributes","url":"modules/_interface_.html#userinterface.attributes-4","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface"},{"id":352,"kind":2097152,"name":"id","url":"modules/_interface_.html#userinterface.attributes-4.id-4","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes"},{"id":353,"kind":32,"name":"type","url":"modules/_interface_.html#userinterface.attributes-4.id-4.type-26","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.id"},{"id":354,"kind":32,"name":"primaryKey","url":"modules/_interface_.html#userinterface.attributes-4.id-4.primarykey-4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.id"},{"id":355,"kind":32,"name":"autoIncrement","url":"modules/_interface_.html#userinterface.attributes-4.id-4.autoincrement-4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.id"},{"id":356,"kind":2097152,"name":"nickname","url":"modules/_interface_.html#userinterface.attributes-4.nickname","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes"},{"id":357,"kind":32,"name":"type","url":"modules/_interface_.html#userinterface.attributes-4.nickname.type-27","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.nickname"},{"id":358,"kind":32,"name":"allowNull","url":"modules/_interface_.html#userinterface.attributes-4.nickname.allownull-11","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.nickname"},{"id":359,"kind":32,"name":"unique","url":"modules/_interface_.html#userinterface.attributes-4.nickname.unique-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.nickname"},{"id":360,"kind":2097152,"name":"admin","url":"modules/_interface_.html#userinterface.attributes-4.admin","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes"},{"id":361,"kind":32,"name":"type","url":"modules/_interface_.html#userinterface.attributes-4.admin.type-23","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.admin"},{"id":362,"kind":32,"name":"allowNull","url":"modules/_interface_.html#userinterface.attributes-4.admin.allownull-8","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.admin"},{"id":363,"kind":32,"name":"defaultValue","url":"modules/_interface_.html#userinterface.attributes-4.admin.defaultvalue-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.admin"},{"id":364,"kind":2097152,"name":"active","url":"modules/_interface_.html#userinterface.attributes-4.active","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes"},{"id":365,"kind":32,"name":"type","url":"modules/_interface_.html#userinterface.attributes-4.active.type-22","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.active"},{"id":366,"kind":32,"name":"allowNull","url":"modules/_interface_.html#userinterface.attributes-4.active.allownull-7","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.active"},{"id":367,"kind":32,"name":"defaultValue","url":"modules/_interface_.html#userinterface.attributes-4.active.defaultvalue-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.active"},{"id":368,"kind":2097152,"name":"email","url":"modules/_interface_.html#userinterface.attributes-4.email","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes"},{"id":369,"kind":32,"name":"type","url":"modules/_interface_.html#userinterface.attributes-4.email.type-24","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.email"},{"id":370,"kind":32,"name":"unique","url":"modules/_interface_.html#userinterface.attributes-4.email.unique","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.email"},{"id":371,"kind":32,"name":"allowNull","url":"modules/_interface_.html#userinterface.attributes-4.email.allownull-9","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.email"},{"id":372,"kind":2097152,"name":"group_id","url":"modules/_interface_.html#userinterface.attributes-4.group_id-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes"},{"id":373,"kind":32,"name":"type","url":"modules/_interface_.html#userinterface.attributes-4.group_id-1.type-25","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.group_id"},{"id":374,"kind":32,"name":"allowNull","url":"modules/_interface_.html#userinterface.attributes-4.group_id-1.allownull-10","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.group_id"},{"id":375,"kind":2097152,"name":"password","url":"modules/_interface_.html#userinterface.attributes-4.password","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes"},{"id":376,"kind":32,"name":"type","url":"modules/_interface_.html#userinterface.attributes-4.password.type-28","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.password"},{"id":377,"kind":64,"name":"set","url":"modules/_interface_.html#userinterface.attributes-4.password.set","classes":"tsd-kind-function tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.password"},{"id":378,"kind":64,"name":"get","url":"modules/_interface_.html#userinterface.attributes-4.password.get","classes":"tsd-kind-function tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.password"},{"id":379,"kind":32,"name":"options","url":"modules/_interface_.html#userinterface.options-4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface"},{"id":380,"kind":2097152,"name":"AuthInterface","url":"modules/_interface_.html#authinterface","classes":"tsd-kind-object-literal tsd-parent-kind-external-module","parent":"\"interface\""},{"id":381,"kind":2097152,"name":"attributes","url":"modules/_interface_.html#authinterface.attributes","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface"},{"id":382,"kind":2097152,"name":"id","url":"modules/_interface_.html#authinterface.attributes.id","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes"},{"id":383,"kind":32,"name":"type","url":"modules/_interface_.html#authinterface.attributes.id.type-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes.id"},{"id":384,"kind":32,"name":"primaryKey","url":"modules/_interface_.html#authinterface.attributes.id.primarykey","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes.id"},{"id":385,"kind":32,"name":"autoIncrement","url":"modules/_interface_.html#authinterface.attributes.id.autoincrement","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes.id"},{"id":386,"kind":2097152,"name":"group_id","url":"modules/_interface_.html#authinterface.attributes.group_id","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes"},{"id":387,"kind":32,"name":"type","url":"modules/_interface_.html#authinterface.attributes.group_id.type-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes.group_id"},{"id":388,"kind":32,"name":"allowNull","url":"modules/_interface_.html#authinterface.attributes.group_id.allownull","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes.group_id"},{"id":389,"kind":2097152,"name":"auth","url":"modules/_interface_.html#authinterface.attributes.auth","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes"},{"id":390,"kind":32,"name":"type","url":"modules/_interface_.html#authinterface.attributes.auth.type","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes.auth"},{"id":391,"kind":2097152,"name":"module","url":"modules/_interface_.html#authinterface.attributes.module","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes"},{"id":392,"kind":32,"name":"type","url":"modules/_interface_.html#authinterface.attributes.module.type-3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes.module"},{"id":393,"kind":2097152,"name":"options","url":"modules/_interface_.html#authinterface.options","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface"},{"id":394,"kind":32,"name":"tableName","url":"modules/_interface_.html#authinterface.options.tablename","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.options"},{"id":395,"kind":32,"name":"createdAt","url":"modules/_interface_.html#authinterface.options.createdat","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.options"},{"id":396,"kind":32,"name":"updatedAt","url":"modules/_interface_.html#authinterface.options.updatedat","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.options"},{"id":397,"kind":2097152,"name":"GroupInterface","url":"modules/_interface_.html#groupinterface","classes":"tsd-kind-object-literal tsd-parent-kind-external-module","parent":"\"interface\""},{"id":398,"kind":2097152,"name":"attributes","url":"modules/_interface_.html#groupinterface.attributes-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface"},{"id":399,"kind":2097152,"name":"id","url":"modules/_interface_.html#groupinterface.attributes-1.id-2","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes"},{"id":400,"kind":32,"name":"type","url":"modules/_interface_.html#groupinterface.attributes-1.id-2.type-11","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes.id"},{"id":401,"kind":32,"name":"primaryKey","url":"modules/_interface_.html#groupinterface.attributes-1.id-2.primarykey-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes.id"},{"id":402,"kind":32,"name":"autoIncrement","url":"modules/_interface_.html#groupinterface.attributes-1.id-2.autoincrement-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes.id"},{"id":403,"kind":2097152,"name":"name","url":"modules/_interface_.html#groupinterface.attributes-1.name-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes"},{"id":404,"kind":32,"name":"type","url":"modules/_interface_.html#groupinterface.attributes-1.name-1.type-13","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes.name"},{"id":405,"kind":2097152,"name":"info","url":"modules/_interface_.html#groupinterface.attributes-1.info","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes"},{"id":406,"kind":32,"name":"type","url":"modules/_interface_.html#groupinterface.attributes-1.info.type-12","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes.info"},{"id":407,"kind":32,"name":"allowNull","url":"modules/_interface_.html#groupinterface.attributes-1.info.allownull-5","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes.info"},{"id":408,"kind":2097152,"name":"options","url":"modules/_interface_.html#groupinterface.options-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface"},{"id":409,"kind":32,"name":"tableName","url":"modules/_interface_.html#groupinterface.options-1.tablename-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.options"},{"id":410,"kind":32,"name":"createdAt","url":"modules/_interface_.html#groupinterface.options-1.createdat-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.options"},{"id":411,"kind":32,"name":"updatedAt","url":"modules/_interface_.html#groupinterface.options-1.updatedat-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.options"},{"id":412,"kind":2097152,"name":"LogInterface","url":"modules/_interface_.html#loginterface","classes":"tsd-kind-object-literal tsd-parent-kind-external-module","parent":"\"interface\""},{"id":413,"kind":2097152,"name":"attributes","url":"modules/_interface_.html#loginterface.attributes-3","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface"},{"id":414,"kind":2097152,"name":"id","url":"modules/_interface_.html#loginterface.attributes-3.id-3","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":415,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.id-3.type-15","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.id"},{"id":416,"kind":32,"name":"primaryKey","url":"modules/_interface_.html#loginterface.attributes-3.id-3.primarykey-3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.id"},{"id":417,"kind":32,"name":"autoIncrement","url":"modules/_interface_.html#loginterface.attributes-3.id-3.autoincrement-3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.id"},{"id":418,"kind":2097152,"name":"message","url":"modules/_interface_.html#loginterface.attributes-3.message","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":419,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.message.type-16","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.message"},{"id":420,"kind":2097152,"name":"user_id","url":"modules/_interface_.html#loginterface.attributes-3.user_id","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":421,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.user_id.type-20","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.user_id"},{"id":422,"kind":32,"name":"allowNull","url":"modules/_interface_.html#loginterface.attributes-3.user_id.allownull-6","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.user_id"},{"id":423,"kind":2097152,"name":"user_name","url":"modules/_interface_.html#loginterface.attributes-3.user_name","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":424,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.user_name.type-21","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.user_name"},{"id":425,"kind":2097152,"name":"status_code","url":"modules/_interface_.html#loginterface.attributes-3.status_code","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":426,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.status_code.type-19","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.status_code"},{"id":427,"kind":2097152,"name":"method","url":"modules/_interface_.html#loginterface.attributes-3.method","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":428,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.method.type-17","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.method"},{"id":429,"kind":2097152,"name":"path","url":"modules/_interface_.html#loginterface.attributes-3.path-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":430,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.path-1.type-18","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.path"},{"id":431,"kind":2097152,"name":"authority","url":"modules/_interface_.html#loginterface.attributes-3.authority","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":432,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.authority.type-14","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.authority"},{"id":433,"kind":2097152,"name":"options","url":"modules/_interface_.html#loginterface.options-3","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface"},{"id":434,"kind":32,"name":"tableName","url":"modules/_interface_.html#loginterface.options-3.tablename-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.options"},{"id":435,"kind":32,"name":"createdAt","url":"modules/_interface_.html#loginterface.options-3.createdat-3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.options"},{"id":436,"kind":32,"name":"updatedAt","url":"modules/_interface_.html#loginterface.options-3.updatedat-3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.options"},{"id":437,"kind":2097152,"name":"getterMethods","url":"modules/_interface_.html#loginterface.options-3.gettermethods-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.options"},{"id":438,"kind":64,"name":"time","url":"modules/_interface_.html#loginterface.options-3.gettermethods-1.time","classes":"tsd-kind-function tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.options.getterMethods"},{"id":439,"kind":2097152,"name":"FileInterface","url":"modules/_interface_.html#fileinterface","classes":"tsd-kind-object-literal tsd-parent-kind-external-module","parent":"\"interface\""},{"id":440,"kind":2097152,"name":"id","url":"modules/_interface_.html#fileinterface.id-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface"},{"id":441,"kind":32,"name":"type","url":"modules/_interface_.html#fileinterface.id-1.type-5","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.id"},{"id":442,"kind":32,"name":"primaryKey","url":"modules/_interface_.html#fileinterface.id-1.primarykey-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.id"},{"id":443,"kind":32,"name":"autoIncrement","url":"modules/_interface_.html#fileinterface.id-1.autoincrement-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.id"},{"id":444,"kind":2097152,"name":"path","url":"modules/_interface_.html#fileinterface.path","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface"},{"id":445,"kind":32,"name":"type","url":"modules/_interface_.html#fileinterface.path.type-7","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.path"},{"id":446,"kind":32,"name":"allowNull","url":"modules/_interface_.html#fileinterface.path.allownull-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.path"},{"id":447,"kind":2097152,"name":"type","url":"modules/_interface_.html#fileinterface.type-9","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface"},{"id":448,"kind":32,"name":"type","url":"modules/_interface_.html#fileinterface.type-9.type-10","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.type"},{"id":449,"kind":32,"name":"allowNull","url":"modules/_interface_.html#fileinterface.type-9.allownull-4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.type"},{"id":450,"kind":32,"name":"defaultValue","url":"modules/_interface_.html#fileinterface.type-9.defaultvalue","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.type"},{"id":451,"kind":32,"name":"comment","url":"modules/_interface_.html#fileinterface.type-9.comment","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.type"},{"id":452,"kind":2097152,"name":"name","url":"modules/_interface_.html#fileinterface.name","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface"},{"id":453,"kind":32,"name":"type","url":"modules/_interface_.html#fileinterface.name.type-6","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.name"},{"id":454,"kind":32,"name":"allowNull","url":"modules/_interface_.html#fileinterface.name.allownull-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.name"},{"id":455,"kind":2097152,"name":"extension","url":"modules/_interface_.html#fileinterface.extension","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface"},{"id":456,"kind":32,"name":"type","url":"modules/_interface_.html#fileinterface.extension.type-4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.extension"},{"id":457,"kind":2097152,"name":"size","url":"modules/_interface_.html#fileinterface.size","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface"},{"id":458,"kind":32,"name":"type","url":"modules/_interface_.html#fileinterface.size.type-8","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.size"},{"id":459,"kind":32,"name":"allowNull","url":"modules/_interface_.html#fileinterface.size.allownull-3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.size"},{"id":460,"kind":1,"name":"\"extend\"","url":"modules/_extend_.html","classes":"tsd-kind-external-module"},{"id":461,"kind":64,"name":"json","url":"modules/_extend_.html#json","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"extend\""},{"id":462,"kind":64,"name":"transform","url":"modules/_extend_.html#transform","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"extend\""},{"id":463,"kind":64,"name":"success","url":"modules/_extend_.html#success","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"extend\""},{"id":464,"kind":64,"name":"logging","url":"modules/_extend_.html#logging","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"extend\""},{"id":465,"kind":64,"name":"multipart","url":"modules/_extend_.html#multipart","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"extend\""},{"id":466,"kind":64,"name":"checkSingleFileSize","url":"modules/_extend_.html#checksinglefilesize","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"extend\""},{"id":467,"kind":64,"name":"checkTotalFileSize","url":"modules/_extend_.html#checktotalfilesize","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"extend\""},{"id":468,"kind":64,"name":"checkFileNums","url":"modules/_extend_.html#checkfilenums","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"extend\""},{"id":469,"kind":64,"name":"checkFileExtension","url":"modules/_extend_.html#checkfileextension","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"extend\""},{"id":470,"kind":1,"name":"\"plugin\"","url":"modules/_plugin_.html","classes":"tsd-kind-external-module"},{"id":471,"kind":128,"name":"Plugin","url":"classes/_plugin_.plugin.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"plugin\""},{"id":472,"kind":1024,"name":"name","url":"classes/_plugin_.plugin.html#name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"plugin\".Plugin"},{"id":473,"kind":1024,"name":"models","url":"classes/_plugin_.plugin.html#models","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"plugin\".Plugin"},{"id":474,"kind":65536,"name":"__type","url":"classes/_plugin_.plugin.html#models.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"plugin\".Plugin.models"},{"id":475,"kind":1024,"name":"controllers","url":"classes/_plugin_.plugin.html#controllers","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"plugin\".Plugin"},{"id":476,"kind":65536,"name":"__type","url":"classes/_plugin_.plugin.html#controllers.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"plugin\".Plugin.controllers"},{"id":477,"kind":512,"name":"constructor","url":"classes/_plugin_.plugin.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"plugin\".Plugin"},{"id":478,"kind":2048,"name":"addModel","url":"classes/_plugin_.plugin.html#addmodel","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"plugin\".Plugin"},{"id":479,"kind":2048,"name":"getModel","url":"classes/_plugin_.plugin.html#getmodel","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"plugin\".Plugin"},{"id":480,"kind":2048,"name":"addController","url":"classes/_plugin_.plugin.html#addcontroller","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"plugin\".Plugin"},{"id":481,"kind":1,"name":"\"loader\"","url":"modules/_loader_.html","classes":"tsd-kind-external-module"},{"id":482,"kind":128,"name":"Loader","url":"classes/_loader_.loader.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"loader\""},{"id":483,"kind":1024,"name":"mainRouter","url":"classes/_loader_.loader.html#mainrouter","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":484,"kind":1024,"name":"pluginPath","url":"classes/_loader_.loader.html#pluginpath","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":485,"kind":1024,"name":"app","url":"classes/_loader_.loader.html#app","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"loader\".Loader"},{"id":486,"kind":1024,"name":"plugins","url":"classes/_loader_.loader.html#plugins","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":487,"kind":65536,"name":"__type","url":"classes/_loader_.loader.html#plugins.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"loader\".Loader.plugins"},{"id":488,"kind":512,"name":"constructor","url":"classes/_loader_.loader.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":489,"kind":2048,"name":"loadPlugins","url":"classes/_loader_.loader.html#loadplugins","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":490,"kind":2048,"name":"loadPlugin","url":"classes/_loader_.loader.html#loadplugin","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":491,"kind":2048,"name":"loadConfig","url":"classes/_loader_.loader.html#loadconfig","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":492,"kind":2048,"name":"loadMainApi","url":"classes/_loader_.loader.html#loadmainapi","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":493,"kind":1,"name":"\"lin-router\"","url":"modules/_lin_router_.html","classes":"tsd-kind-external-module"},{"id":494,"kind":256,"name":"Meta","url":"interfaces/_lin_router_.meta.html","classes":"tsd-kind-interface tsd-parent-kind-external-module","parent":"\"lin-router\""},{"id":495,"kind":1024,"name":"auth","url":"interfaces/_lin_router_.meta.html#auth","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".Meta"},{"id":496,"kind":1024,"name":"module","url":"interfaces/_lin_router_.meta.html#module","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".Meta"},{"id":497,"kind":1024,"name":"mount","url":"interfaces/_lin_router_.meta.html#mount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".Meta"},{"id":498,"kind":128,"name":"LinRouter","url":"classes/_lin_router_.linrouter.html","classes":"tsd-kind-class tsd-parent-kind-external-module tsd-has-type-parameter","parent":"\"lin-router\""},{"id":499,"kind":2048,"name":"linOption","url":"classes/_lin_router_.linrouter.html#linoption","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":500,"kind":2048,"name":"linHead","url":"classes/_lin_router_.linrouter.html#linhead","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":501,"kind":2048,"name":"linGet","url":"classes/_lin_router_.linrouter.html#linget","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":502,"kind":2048,"name":"linPut","url":"classes/_lin_router_.linrouter.html#linput","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":503,"kind":2048,"name":"linPatch","url":"classes/_lin_router_.linrouter.html#linpatch","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":504,"kind":2048,"name":"linPost","url":"classes/_lin_router_.linrouter.html#linpost","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":505,"kind":2048,"name":"linDelete","url":"classes/_lin_router_.linrouter.html#lindelete","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":506,"kind":256,"name":"IRouterOptions","url":"interfaces/_lin_router_.linrouter.irouteroptions.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":507,"kind":1024,"name":"prefix","url":"interfaces/_lin_router_.linrouter.irouteroptions.html#prefix","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterOptions"},{"id":508,"kind":1024,"name":"methods","url":"interfaces/_lin_router_.linrouter.irouteroptions.html#methods","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterOptions"},{"id":509,"kind":1024,"name":"routerPath","url":"interfaces/_lin_router_.linrouter.irouteroptions.html#routerpath","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterOptions"},{"id":510,"kind":1024,"name":"sensitive","url":"interfaces/_lin_router_.linrouter.irouteroptions.html#sensitive","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterOptions"},{"id":511,"kind":1024,"name":"strict","url":"interfaces/_lin_router_.linrouter.irouteroptions.html#strict","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterOptions"},{"id":512,"kind":256,"name":"IRouterParamContext","url":"interfaces/_lin_router_.linrouter.irouterparamcontext.html","classes":"tsd-kind-interface tsd-parent-kind-class tsd-has-type-parameter","parent":"\"lin-router\".LinRouter"},{"id":513,"kind":1024,"name":"params","url":"interfaces/_lin_router_.linrouter.irouterparamcontext.html#params","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterParamContext"},{"id":514,"kind":1024,"name":"router","url":"interfaces/_lin_router_.linrouter.irouterparamcontext.html#router","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterParamContext"},{"id":515,"kind":1024,"name":"_matchedRoute","url":"interfaces/_lin_router_.linrouter.irouterparamcontext.html#_matchedroute","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterParamContext"},{"id":516,"kind":1024,"name":"_matchedRouteName","url":"interfaces/_lin_router_.linrouter.irouterparamcontext.html#_matchedroutename","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterParamContext"},{"id":517,"kind":256,"name":"IRouterContext","url":"interfaces/_lin_router_.linrouter.iroutercontext.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":518,"kind":256,"name":"IParamMiddleware","url":"interfaces/_lin_router_.linrouter.iparammiddleware.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":519,"kind":256,"name":"IRouterAllowedMethodsOptions","url":"interfaces/_lin_router_.linrouter.irouterallowedmethodsoptions.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":520,"kind":1024,"name":"throw","url":"interfaces/_lin_router_.linrouter.irouterallowedmethodsoptions.html#throw","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterAllowedMethodsOptions"},{"id":521,"kind":1024,"name":"notImplemented","url":"interfaces/_lin_router_.linrouter.irouterallowedmethodsoptions.html#notimplemented","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterAllowedMethodsOptions"},{"id":522,"kind":1024,"name":"methodNotAllowed","url":"interfaces/_lin_router_.linrouter.irouterallowedmethodsoptions.html#methodnotallowed","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterAllowedMethodsOptions"},{"id":523,"kind":256,"name":"ILayerOptions","url":"interfaces/_lin_router_.linrouter.ilayeroptions.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":524,"kind":1024,"name":"name","url":"interfaces/_lin_router_.linrouter.ilayeroptions.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.ILayerOptions"},{"id":525,"kind":1024,"name":"sensitive","url":"interfaces/_lin_router_.linrouter.ilayeroptions.html#sensitive","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.ILayerOptions"},{"id":526,"kind":1024,"name":"strict","url":"interfaces/_lin_router_.linrouter.ilayeroptions.html#strict","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.ILayerOptions"},{"id":527,"kind":256,"name":"IUrlOptionsQuery","url":"interfaces/_lin_router_.linrouter.iurloptionsquery.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":528,"kind":1024,"name":"query","url":"interfaces/_lin_router_.linrouter.iurloptionsquery.html#query","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IUrlOptionsQuery"},{"id":529,"kind":256,"name":"IRoutesMatch","url":"interfaces/_lin_router_.linrouter.iroutesmatch.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":530,"kind":1024,"name":"path","url":"interfaces/_lin_router_.linrouter.iroutesmatch.html#path","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRoutesMatch"},{"id":531,"kind":1024,"name":"pathAndMethod","url":"interfaces/_lin_router_.linrouter.iroutesmatch.html#pathandmethod","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRoutesMatch"},{"id":532,"kind":1024,"name":"route","url":"interfaces/_lin_router_.linrouter.iroutesmatch.html#route","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRoutesMatch"},{"id":533,"kind":128,"name":"ParamName","url":"classes/_lin_router_.linrouter.paramname.html","classes":"tsd-kind-class tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":534,"kind":1024,"name":"asterisk","url":"classes/_lin_router_.linrouter.paramname.html#asterisk","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":535,"kind":1024,"name":"delimiter","url":"classes/_lin_router_.linrouter.paramname.html#delimiter","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":536,"kind":1024,"name":"name","url":"classes/_lin_router_.linrouter.paramname.html#name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":537,"kind":1024,"name":"optional","url":"classes/_lin_router_.linrouter.paramname.html#optional","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":538,"kind":1024,"name":"partial","url":"classes/_lin_router_.linrouter.paramname.html#partial","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":539,"kind":1024,"name":"pattern","url":"classes/_lin_router_.linrouter.paramname.html#pattern","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":540,"kind":1024,"name":"prefix","url":"classes/_lin_router_.linrouter.paramname.html#prefix","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":541,"kind":1024,"name":"repeat","url":"classes/_lin_router_.linrouter.paramname.html#repeat","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":542,"kind":128,"name":"Layer","url":"classes/_lin_router_.linrouter.layer.html","classes":"tsd-kind-class tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":543,"kind":1024,"name":"opts","url":"classes/_lin_router_.linrouter.layer.html#opts","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":544,"kind":1024,"name":"name","url":"classes/_lin_router_.linrouter.layer.html#name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":545,"kind":1024,"name":"methods","url":"classes/_lin_router_.linrouter.layer.html#methods","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":546,"kind":1024,"name":"paramNames","url":"classes/_lin_router_.linrouter.layer.html#paramnames","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":547,"kind":1024,"name":"stack","url":"classes/_lin_router_.linrouter.layer.html#stack","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":548,"kind":1024,"name":"regexp","url":"classes/_lin_router_.linrouter.layer.html#regexp","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":549,"kind":1024,"name":"path","url":"classes/_lin_router_.linrouter.layer.html#path","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":550,"kind":512,"name":"constructor","url":"classes/_lin_router_.linrouter.layer.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":551,"kind":2048,"name":"match","url":"classes/_lin_router_.linrouter.layer.html#match","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":552,"kind":2048,"name":"params","url":"classes/_lin_router_.linrouter.layer.html#params","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":553,"kind":2048,"name":"captures","url":"classes/_lin_router_.linrouter.layer.html#captures","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":554,"kind":2048,"name":"url","url":"classes/_lin_router_.linrouter.layer.html#url","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":555,"kind":2048,"name":"param","url":"classes/_lin_router_.linrouter.layer.html#param","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":556,"kind":2048,"name":"setPrefix","url":"classes/_lin_router_.linrouter.layer.html#setprefix","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":557,"kind":4194304,"name":"RouterContext","url":"classes/_lin_router_.linrouter.html#routercontext","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-has-type-parameter tsd-is-static","parent":"\"lin-router\".LinRouter"},{"id":558,"kind":4194304,"name":"IMiddleware","url":"classes/_lin_router_.linrouter.html#imiddleware","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-has-type-parameter tsd-is-static","parent":"\"lin-router\".LinRouter"},{"id":559,"kind":1024,"name":"params","url":"classes/_lin_router_.linrouter.html#params","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":560,"kind":1024,"name":"stack","url":"classes/_lin_router_.linrouter.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":561,"kind":512,"name":"constructor","url":"classes/_lin_router_.linrouter.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":562,"kind":2048,"name":"use","url":"classes/_lin_router_.linrouter.html#use","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":563,"kind":2048,"name":"get","url":"classes/_lin_router_.linrouter.html#get","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":564,"kind":2048,"name":"post","url":"classes/_lin_router_.linrouter.html#post","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":565,"kind":2048,"name":"put","url":"classes/_lin_router_.linrouter.html#put","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":566,"kind":2048,"name":"link","url":"classes/_lin_router_.linrouter.html#link","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":567,"kind":2048,"name":"unlink","url":"classes/_lin_router_.linrouter.html#unlink","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":568,"kind":2048,"name":"delete","url":"classes/_lin_router_.linrouter.html#delete","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":569,"kind":2048,"name":"del","url":"classes/_lin_router_.linrouter.html#del","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":570,"kind":2048,"name":"head","url":"classes/_lin_router_.linrouter.html#head","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":571,"kind":2048,"name":"options","url":"classes/_lin_router_.linrouter.html#options","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":572,"kind":2048,"name":"patch","url":"classes/_lin_router_.linrouter.html#patch","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":573,"kind":2048,"name":"all","url":"classes/_lin_router_.linrouter.html#all","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":574,"kind":2048,"name":"prefix","url":"classes/_lin_router_.linrouter.html#prefix","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":575,"kind":2048,"name":"routes","url":"classes/_lin_router_.linrouter.html#routes","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":576,"kind":2048,"name":"middleware","url":"classes/_lin_router_.linrouter.html#middleware","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":577,"kind":2048,"name":"allowedMethods","url":"classes/_lin_router_.linrouter.html#allowedmethods","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":578,"kind":2048,"name":"redirect","url":"classes/_lin_router_.linrouter.html#redirect","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":579,"kind":2048,"name":"register","url":"classes/_lin_router_.linrouter.html#register","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":580,"kind":2048,"name":"route","url":"classes/_lin_router_.linrouter.html#route","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":581,"kind":2048,"name":"url","url":"classes/_lin_router_.linrouter.html#url","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":582,"kind":2048,"name":"match","url":"classes/_lin_router_.linrouter.html#match","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":583,"kind":2048,"name":"param","url":"classes/_lin_router_.linrouter.html#param","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":584,"kind":2048,"name":"url","url":"classes/_lin_router_.linrouter.html#url-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"lin-router\".LinRouter"},{"id":585,"kind":1,"name":"\"core\"","url":"modules/_core_.html","classes":"tsd-kind-external-module"},{"id":586,"kind":128,"name":"Lin","url":"classes/_core_.lin.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"core\""},{"id":587,"kind":1024,"name":"manager","url":"classes/_core_.lin.html#manager","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"core\".Lin"},{"id":588,"kind":1024,"name":"app","url":"classes/_core_.lin.html#app","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"core\".Lin"},{"id":589,"kind":2048,"name":"initApp","url":"classes/_core_.lin.html#initapp","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".Lin"},{"id":590,"kind":2048,"name":"applyJwt","url":"classes/_core_.lin.html#applyjwt","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"core\".Lin"},{"id":591,"kind":2048,"name":"applyDB","url":"classes/_core_.lin.html#applydb","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"core\".Lin"},{"id":592,"kind":2048,"name":"applyManager","url":"classes/_core_.lin.html#applymanager","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"core\".Lin"},{"id":593,"kind":2048,"name":"applyDefaultExtends","url":"classes/_core_.lin.html#applydefaultextends","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"core\".Lin"},{"id":594,"kind":2048,"name":"mount","url":"classes/_core_.lin.html#mount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"core\".Lin"},{"id":595,"kind":128,"name":"Manager","url":"classes/_core_.manager.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"core\""},{"id":596,"kind":1024,"name":"loader","url":"classes/_core_.manager.html#loader","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":597,"kind":1024,"name":"userModel","url":"classes/_core_.manager.html#usermodel","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":598,"kind":1024,"name":"groupModel","url":"classes/_core_.manager.html#groupmodel","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":599,"kind":1024,"name":"authModel","url":"classes/_core_.manager.html#authmodel","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":600,"kind":2048,"name":"initApp","url":"classes/_core_.manager.html#initapp","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":601,"kind":262144,"name":"plugins","url":"classes/_core_.manager.html#plugins","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":602,"kind":2048,"name":"verify","url":"classes/_core_.manager.html#verify","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":603,"kind":2048,"name":"findUser","url":"classes/_core_.manager.html#finduser","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":604,"kind":2048,"name":"findGroup","url":"classes/_core_.manager.html#findgroup","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":605,"kind":128,"name":"User","url":"classes/_core_.user.html","classes":"tsd-kind-class tsd-parent-kind-external-module tsd-has-type-parameter","parent":"\"core\""},{"id":606,"kind":1024,"name":"id","url":"classes/_core_.user.html#id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":607,"kind":1024,"name":"nickname","url":"classes/_core_.user.html#nickname","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":608,"kind":1024,"name":"admin","url":"classes/_core_.user.html#admin","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":609,"kind":1024,"name":"active","url":"classes/_core_.user.html#active","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":610,"kind":1024,"name":"email","url":"classes/_core_.user.html#email","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":611,"kind":1024,"name":"group_id","url":"classes/_core_.user.html#group_id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":612,"kind":1024,"name":"password","url":"classes/_core_.user.html#password","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":613,"kind":1024,"name":"create_time","url":"classes/_core_.user.html#create_time","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":614,"kind":1024,"name":"update_time","url":"classes/_core_.user.html#update_time","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":615,"kind":1024,"name":"delete_time","url":"classes/_core_.user.html#delete_time","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":616,"kind":2048,"name":"verify","url":"classes/_core_.user.html#verify","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"\"core\".User"},{"id":617,"kind":2048,"name":"checkPassword","url":"classes/_core_.user.html#checkpassword","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".User"},{"id":618,"kind":2048,"name":"resetPassword","url":"classes/_core_.user.html#resetpassword","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".User"},{"id":619,"kind":2048,"name":"changePassword","url":"classes/_core_.user.html#changepassword","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".User"},{"id":620,"kind":2048,"name":"toJSON","url":"classes/_core_.user.html#tojson","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"core\".User"},{"id":621,"kind":1024,"name":"tableName","url":"classes/_core_.user.html#tablename","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":622,"kind":1024,"name":"primaryKeyAttribute","url":"classes/_core_.user.html#primarykeyattribute","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":623,"kind":1024,"name":"associations","url":"classes/_core_.user.html#associations","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":624,"kind":65536,"name":"__type","url":"classes/_core_.user.html#associations.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".User.associations"},{"id":625,"kind":1024,"name":"options","url":"classes/_core_.user.html#options","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":626,"kind":1024,"name":"rawAttributes","url":"classes/_core_.user.html#rawattributes","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":627,"kind":65536,"name":"__type","url":"classes/_core_.user.html#rawattributes.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".User.rawAttributes"},{"id":628,"kind":1024,"name":"sequelize","url":"classes/_core_.user.html#sequelize-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":629,"kind":2048,"name":"init","url":"classes/_core_.user.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":630,"kind":2048,"name":"removeAttribute","url":"classes/_core_.user.html#removeattribute","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":631,"kind":2048,"name":"sync","url":"classes/_core_.user.html#sync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":632,"kind":2048,"name":"drop","url":"classes/_core_.user.html#drop","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":633,"kind":2048,"name":"schema","url":"classes/_core_.user.html#schema","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":634,"kind":2048,"name":"getTableName","url":"classes/_core_.user.html#gettablename","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":635,"kind":2048,"name":"scope","url":"classes/_core_.user.html#scope","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":636,"kind":2048,"name":"addScope","url":"classes/_core_.user.html#addscope","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":637,"kind":2048,"name":"findAll","url":"classes/_core_.user.html#findall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":638,"kind":2048,"name":"findByPk","url":"classes/_core_.user.html#findbypk","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":639,"kind":2048,"name":"findOne","url":"classes/_core_.user.html#findone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":640,"kind":2048,"name":"aggregate","url":"classes/_core_.user.html#aggregate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":641,"kind":2048,"name":"count","url":"classes/_core_.user.html#count","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":642,"kind":2048,"name":"findAndCountAll","url":"classes/_core_.user.html#findandcountall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":643,"kind":2048,"name":"max","url":"classes/_core_.user.html#max","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":644,"kind":2048,"name":"min","url":"classes/_core_.user.html#min","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":645,"kind":2048,"name":"sum","url":"classes/_core_.user.html#sum","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":646,"kind":2048,"name":"build","url":"classes/_core_.user.html#build","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":647,"kind":2048,"name":"bulkBuild","url":"classes/_core_.user.html#bulkbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":648,"kind":2048,"name":"create","url":"classes/_core_.user.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":649,"kind":2048,"name":"findOrBuild","url":"classes/_core_.user.html#findorbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":650,"kind":2048,"name":"findOrCreate","url":"classes/_core_.user.html#findorcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":651,"kind":2048,"name":"upsert","url":"classes/_core_.user.html#upsert","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":652,"kind":2048,"name":"bulkCreate","url":"classes/_core_.user.html#bulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":653,"kind":2048,"name":"truncate","url":"classes/_core_.user.html#truncate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":654,"kind":2048,"name":"destroy","url":"classes/_core_.user.html#destroy-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":655,"kind":2048,"name":"restore","url":"classes/_core_.user.html#restore-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":656,"kind":2048,"name":"update","url":"classes/_core_.user.html#update-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":657,"kind":2048,"name":"increment","url":"classes/_core_.user.html#increment-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":658,"kind":2048,"name":"describe","url":"classes/_core_.user.html#describe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":659,"kind":2048,"name":"unscoped","url":"classes/_core_.user.html#unscoped","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":660,"kind":2048,"name":"beforeValidate","url":"classes/_core_.user.html#beforevalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":661,"kind":2048,"name":"afterValidate","url":"classes/_core_.user.html#aftervalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":662,"kind":2048,"name":"beforeCreate","url":"classes/_core_.user.html#beforecreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":663,"kind":2048,"name":"afterCreate","url":"classes/_core_.user.html#aftercreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":664,"kind":2048,"name":"beforeDestroy","url":"classes/_core_.user.html#beforedestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":665,"kind":2048,"name":"afterDestroy","url":"classes/_core_.user.html#afterdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":666,"kind":2048,"name":"beforeUpdate","url":"classes/_core_.user.html#beforeupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":667,"kind":2048,"name":"afterUpdate","url":"classes/_core_.user.html#afterupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":668,"kind":2048,"name":"beforeBulkCreate","url":"classes/_core_.user.html#beforebulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":669,"kind":2048,"name":"afterBulkCreate","url":"classes/_core_.user.html#afterbulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":670,"kind":2048,"name":"beforeBulkDestroy","url":"classes/_core_.user.html#beforebulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":671,"kind":2048,"name":"afterBulkDestroy","url":"classes/_core_.user.html#afterbulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":672,"kind":2048,"name":"beforeBulkUpdate","url":"classes/_core_.user.html#beforebulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":673,"kind":2048,"name":"afterBulkUpdate","url":"classes/_core_.user.html#afterbulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":674,"kind":2048,"name":"beforeFind","url":"classes/_core_.user.html#beforefind","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":675,"kind":2048,"name":"beforeCount","url":"classes/_core_.user.html#beforecount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":676,"kind":2048,"name":"beforeFindAfterExpandIncludeAll","url":"classes/_core_.user.html#beforefindafterexpandincludeall","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":677,"kind":2048,"name":"beforeFindAfterOptions","url":"classes/_core_.user.html#beforefindafteroptions","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":678,"kind":2048,"name":"afterFind","url":"classes/_core_.user.html#afterfind","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":679,"kind":2048,"name":"beforeBulkSync","url":"classes/_core_.user.html#beforebulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":680,"kind":2048,"name":"afterBulkSync","url":"classes/_core_.user.html#afterbulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":681,"kind":2048,"name":"beforeSync","url":"classes/_core_.user.html#beforesync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":682,"kind":2048,"name":"afterSync","url":"classes/_core_.user.html#aftersync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":683,"kind":2048,"name":"hasOne","url":"classes/_core_.user.html#hasone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":684,"kind":2048,"name":"belongsTo","url":"classes/_core_.user.html#belongsto","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":685,"kind":2048,"name":"hasMany","url":"classes/_core_.user.html#hasmany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":686,"kind":2048,"name":"belongsToMany","url":"classes/_core_.user.html#belongstomany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":687,"kind":1024,"name":"isNewRecord","url":"classes/_core_.user.html#isnewrecord","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":688,"kind":1024,"name":"sequelize","url":"classes/_core_.user.html#sequelize","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":689,"kind":512,"name":"constructor","url":"classes/_core_.user.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":690,"kind":2048,"name":"where","url":"classes/_core_.user.html#where","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":691,"kind":2048,"name":"getDataValue","url":"classes/_core_.user.html#getdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":692,"kind":2048,"name":"setDataValue","url":"classes/_core_.user.html#setdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":693,"kind":2048,"name":"get","url":"classes/_core_.user.html#get","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":694,"kind":2048,"name":"set","url":"classes/_core_.user.html#set","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":695,"kind":2048,"name":"setAttributes","url":"classes/_core_.user.html#setattributes","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":696,"kind":2048,"name":"changed","url":"classes/_core_.user.html#changed","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":697,"kind":2048,"name":"previous","url":"classes/_core_.user.html#previous","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":698,"kind":2048,"name":"save","url":"classes/_core_.user.html#save","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":699,"kind":2048,"name":"reload","url":"classes/_core_.user.html#reload","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":700,"kind":2048,"name":"validate","url":"classes/_core_.user.html#validate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":701,"kind":2048,"name":"update","url":"classes/_core_.user.html#update","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":702,"kind":2048,"name":"destroy","url":"classes/_core_.user.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":703,"kind":2048,"name":"restore","url":"classes/_core_.user.html#restore","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":704,"kind":2048,"name":"increment","url":"classes/_core_.user.html#increment","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":705,"kind":2048,"name":"decrement","url":"classes/_core_.user.html#decrement","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":706,"kind":2048,"name":"equals","url":"classes/_core_.user.html#equals","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":707,"kind":2048,"name":"equalsOneOf","url":"classes/_core_.user.html#equalsoneof","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":708,"kind":2048,"name":"addHook","url":"classes/_core_.user.html#addhook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":709,"kind":2048,"name":"removeHook","url":"classes/_core_.user.html#removehook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":710,"kind":2048,"name":"hasHook","url":"classes/_core_.user.html#hashook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":711,"kind":2048,"name":"hasHooks","url":"classes/_core_.user.html#hashooks-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":712,"kind":2048,"name":"addHook","url":"classes/_core_.user.html#addhook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":713,"kind":2048,"name":"removeHook","url":"classes/_core_.user.html#removehook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":714,"kind":2048,"name":"hasHook","url":"classes/_core_.user.html#hashook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":715,"kind":2048,"name":"hasHooks","url":"classes/_core_.user.html#hashooks","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":716,"kind":128,"name":"Group","url":"classes/_core_.group.html","classes":"tsd-kind-class tsd-parent-kind-external-module tsd-has-type-parameter","parent":"\"core\""},{"id":717,"kind":1024,"name":"id","url":"classes/_core_.group.html#id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Group"},{"id":718,"kind":1024,"name":"name","url":"classes/_core_.group.html#name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Group"},{"id":719,"kind":1024,"name":"info","url":"classes/_core_.group.html#info","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Group"},{"id":720,"kind":2048,"name":"toJSON","url":"classes/_core_.group.html#tojson","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"core\".Group"},{"id":721,"kind":1024,"name":"tableName","url":"classes/_core_.group.html#tablename","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":722,"kind":1024,"name":"primaryKeyAttribute","url":"classes/_core_.group.html#primarykeyattribute","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":723,"kind":1024,"name":"associations","url":"classes/_core_.group.html#associations","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":724,"kind":65536,"name":"__type","url":"classes/_core_.group.html#associations.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".Group.associations"},{"id":725,"kind":1024,"name":"options","url":"classes/_core_.group.html#options","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":726,"kind":1024,"name":"rawAttributes","url":"classes/_core_.group.html#rawattributes","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":727,"kind":65536,"name":"__type","url":"classes/_core_.group.html#rawattributes.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".Group.rawAttributes"},{"id":728,"kind":1024,"name":"sequelize","url":"classes/_core_.group.html#sequelize-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":729,"kind":2048,"name":"init","url":"classes/_core_.group.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":730,"kind":2048,"name":"removeAttribute","url":"classes/_core_.group.html#removeattribute","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":731,"kind":2048,"name":"sync","url":"classes/_core_.group.html#sync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":732,"kind":2048,"name":"drop","url":"classes/_core_.group.html#drop","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":733,"kind":2048,"name":"schema","url":"classes/_core_.group.html#schema","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":734,"kind":2048,"name":"getTableName","url":"classes/_core_.group.html#gettablename","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":735,"kind":2048,"name":"scope","url":"classes/_core_.group.html#scope","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":736,"kind":2048,"name":"addScope","url":"classes/_core_.group.html#addscope","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":737,"kind":2048,"name":"findAll","url":"classes/_core_.group.html#findall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":738,"kind":2048,"name":"findByPk","url":"classes/_core_.group.html#findbypk","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":739,"kind":2048,"name":"findOne","url":"classes/_core_.group.html#findone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":740,"kind":2048,"name":"aggregate","url":"classes/_core_.group.html#aggregate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":741,"kind":2048,"name":"count","url":"classes/_core_.group.html#count","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":742,"kind":2048,"name":"findAndCountAll","url":"classes/_core_.group.html#findandcountall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":743,"kind":2048,"name":"max","url":"classes/_core_.group.html#max","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":744,"kind":2048,"name":"min","url":"classes/_core_.group.html#min","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":745,"kind":2048,"name":"sum","url":"classes/_core_.group.html#sum","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":746,"kind":2048,"name":"build","url":"classes/_core_.group.html#build","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":747,"kind":2048,"name":"bulkBuild","url":"classes/_core_.group.html#bulkbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":748,"kind":2048,"name":"create","url":"classes/_core_.group.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":749,"kind":2048,"name":"findOrBuild","url":"classes/_core_.group.html#findorbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":750,"kind":2048,"name":"findOrCreate","url":"classes/_core_.group.html#findorcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":751,"kind":2048,"name":"upsert","url":"classes/_core_.group.html#upsert","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":752,"kind":2048,"name":"bulkCreate","url":"classes/_core_.group.html#bulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":753,"kind":2048,"name":"truncate","url":"classes/_core_.group.html#truncate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":754,"kind":2048,"name":"destroy","url":"classes/_core_.group.html#destroy-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":755,"kind":2048,"name":"restore","url":"classes/_core_.group.html#restore-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":756,"kind":2048,"name":"update","url":"classes/_core_.group.html#update-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":757,"kind":2048,"name":"increment","url":"classes/_core_.group.html#increment-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":758,"kind":2048,"name":"describe","url":"classes/_core_.group.html#describe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":759,"kind":2048,"name":"unscoped","url":"classes/_core_.group.html#unscoped","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":760,"kind":2048,"name":"beforeValidate","url":"classes/_core_.group.html#beforevalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":761,"kind":2048,"name":"afterValidate","url":"classes/_core_.group.html#aftervalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":762,"kind":2048,"name":"beforeCreate","url":"classes/_core_.group.html#beforecreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":763,"kind":2048,"name":"afterCreate","url":"classes/_core_.group.html#aftercreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":764,"kind":2048,"name":"beforeDestroy","url":"classes/_core_.group.html#beforedestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":765,"kind":2048,"name":"afterDestroy","url":"classes/_core_.group.html#afterdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":766,"kind":2048,"name":"beforeUpdate","url":"classes/_core_.group.html#beforeupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":767,"kind":2048,"name":"afterUpdate","url":"classes/_core_.group.html#afterupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":768,"kind":2048,"name":"beforeBulkCreate","url":"classes/_core_.group.html#beforebulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":769,"kind":2048,"name":"afterBulkCreate","url":"classes/_core_.group.html#afterbulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":770,"kind":2048,"name":"beforeBulkDestroy","url":"classes/_core_.group.html#beforebulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":771,"kind":2048,"name":"afterBulkDestroy","url":"classes/_core_.group.html#afterbulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":772,"kind":2048,"name":"beforeBulkUpdate","url":"classes/_core_.group.html#beforebulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":773,"kind":2048,"name":"afterBulkUpdate","url":"classes/_core_.group.html#afterbulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":774,"kind":2048,"name":"beforeFind","url":"classes/_core_.group.html#beforefind","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":775,"kind":2048,"name":"beforeCount","url":"classes/_core_.group.html#beforecount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":776,"kind":2048,"name":"beforeFindAfterExpandIncludeAll","url":"classes/_core_.group.html#beforefindafterexpandincludeall","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":777,"kind":2048,"name":"beforeFindAfterOptions","url":"classes/_core_.group.html#beforefindafteroptions","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":778,"kind":2048,"name":"afterFind","url":"classes/_core_.group.html#afterfind","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":779,"kind":2048,"name":"beforeBulkSync","url":"classes/_core_.group.html#beforebulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":780,"kind":2048,"name":"afterBulkSync","url":"classes/_core_.group.html#afterbulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":781,"kind":2048,"name":"beforeSync","url":"classes/_core_.group.html#beforesync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":782,"kind":2048,"name":"afterSync","url":"classes/_core_.group.html#aftersync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":783,"kind":2048,"name":"hasOne","url":"classes/_core_.group.html#hasone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":784,"kind":2048,"name":"belongsTo","url":"classes/_core_.group.html#belongsto","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":785,"kind":2048,"name":"hasMany","url":"classes/_core_.group.html#hasmany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":786,"kind":2048,"name":"belongsToMany","url":"classes/_core_.group.html#belongstomany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":787,"kind":1024,"name":"isNewRecord","url":"classes/_core_.group.html#isnewrecord","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":788,"kind":1024,"name":"sequelize","url":"classes/_core_.group.html#sequelize","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":789,"kind":512,"name":"constructor","url":"classes/_core_.group.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":790,"kind":2048,"name":"where","url":"classes/_core_.group.html#where","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":791,"kind":2048,"name":"getDataValue","url":"classes/_core_.group.html#getdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":792,"kind":2048,"name":"setDataValue","url":"classes/_core_.group.html#setdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":793,"kind":2048,"name":"get","url":"classes/_core_.group.html#get","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":794,"kind":2048,"name":"set","url":"classes/_core_.group.html#set","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":795,"kind":2048,"name":"setAttributes","url":"classes/_core_.group.html#setattributes","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":796,"kind":2048,"name":"changed","url":"classes/_core_.group.html#changed","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":797,"kind":2048,"name":"previous","url":"classes/_core_.group.html#previous","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":798,"kind":2048,"name":"save","url":"classes/_core_.group.html#save","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":799,"kind":2048,"name":"reload","url":"classes/_core_.group.html#reload","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":800,"kind":2048,"name":"validate","url":"classes/_core_.group.html#validate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":801,"kind":2048,"name":"update","url":"classes/_core_.group.html#update","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":802,"kind":2048,"name":"destroy","url":"classes/_core_.group.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":803,"kind":2048,"name":"restore","url":"classes/_core_.group.html#restore","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":804,"kind":2048,"name":"increment","url":"classes/_core_.group.html#increment","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":805,"kind":2048,"name":"decrement","url":"classes/_core_.group.html#decrement","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":806,"kind":2048,"name":"equals","url":"classes/_core_.group.html#equals","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":807,"kind":2048,"name":"equalsOneOf","url":"classes/_core_.group.html#equalsoneof","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":808,"kind":2048,"name":"addHook","url":"classes/_core_.group.html#addhook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":809,"kind":2048,"name":"removeHook","url":"classes/_core_.group.html#removehook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":810,"kind":2048,"name":"hasHook","url":"classes/_core_.group.html#hashook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":811,"kind":2048,"name":"hasHooks","url":"classes/_core_.group.html#hashooks-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":812,"kind":2048,"name":"addHook","url":"classes/_core_.group.html#addhook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":813,"kind":2048,"name":"removeHook","url":"classes/_core_.group.html#removehook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":814,"kind":2048,"name":"hasHook","url":"classes/_core_.group.html#hashook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":815,"kind":2048,"name":"hasHooks","url":"classes/_core_.group.html#hashooks","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":816,"kind":128,"name":"Auth","url":"classes/_core_.auth.html","classes":"tsd-kind-class tsd-parent-kind-external-module tsd-has-type-parameter","parent":"\"core\""},{"id":817,"kind":1024,"name":"id","url":"classes/_core_.auth.html#id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Auth"},{"id":818,"kind":1024,"name":"group_id","url":"classes/_core_.auth.html#group_id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Auth"},{"id":819,"kind":1024,"name":"auth","url":"classes/_core_.auth.html#auth","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Auth"},{"id":820,"kind":1024,"name":"module","url":"classes/_core_.auth.html#module","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Auth"},{"id":821,"kind":2048,"name":"toJSON","url":"classes/_core_.auth.html#tojson","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"core\".Auth"},{"id":822,"kind":1024,"name":"tableName","url":"classes/_core_.auth.html#tablename","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":823,"kind":1024,"name":"primaryKeyAttribute","url":"classes/_core_.auth.html#primarykeyattribute","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":824,"kind":1024,"name":"associations","url":"classes/_core_.auth.html#associations","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":825,"kind":65536,"name":"__type","url":"classes/_core_.auth.html#associations.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".Auth.associations"},{"id":826,"kind":1024,"name":"options","url":"classes/_core_.auth.html#options","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":827,"kind":1024,"name":"rawAttributes","url":"classes/_core_.auth.html#rawattributes","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":828,"kind":65536,"name":"__type","url":"classes/_core_.auth.html#rawattributes.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".Auth.rawAttributes"},{"id":829,"kind":1024,"name":"sequelize","url":"classes/_core_.auth.html#sequelize-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":830,"kind":2048,"name":"init","url":"classes/_core_.auth.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":831,"kind":2048,"name":"removeAttribute","url":"classes/_core_.auth.html#removeattribute","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":832,"kind":2048,"name":"sync","url":"classes/_core_.auth.html#sync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":833,"kind":2048,"name":"drop","url":"classes/_core_.auth.html#drop","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":834,"kind":2048,"name":"schema","url":"classes/_core_.auth.html#schema","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":835,"kind":2048,"name":"getTableName","url":"classes/_core_.auth.html#gettablename","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":836,"kind":2048,"name":"scope","url":"classes/_core_.auth.html#scope","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":837,"kind":2048,"name":"addScope","url":"classes/_core_.auth.html#addscope","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":838,"kind":2048,"name":"findAll","url":"classes/_core_.auth.html#findall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":839,"kind":2048,"name":"findByPk","url":"classes/_core_.auth.html#findbypk","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":840,"kind":2048,"name":"findOne","url":"classes/_core_.auth.html#findone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":841,"kind":2048,"name":"aggregate","url":"classes/_core_.auth.html#aggregate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":842,"kind":2048,"name":"count","url":"classes/_core_.auth.html#count","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":843,"kind":2048,"name":"findAndCountAll","url":"classes/_core_.auth.html#findandcountall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":844,"kind":2048,"name":"max","url":"classes/_core_.auth.html#max","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":845,"kind":2048,"name":"min","url":"classes/_core_.auth.html#min","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":846,"kind":2048,"name":"sum","url":"classes/_core_.auth.html#sum","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":847,"kind":2048,"name":"build","url":"classes/_core_.auth.html#build","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":848,"kind":2048,"name":"bulkBuild","url":"classes/_core_.auth.html#bulkbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":849,"kind":2048,"name":"create","url":"classes/_core_.auth.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":850,"kind":2048,"name":"findOrBuild","url":"classes/_core_.auth.html#findorbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":851,"kind":2048,"name":"findOrCreate","url":"classes/_core_.auth.html#findorcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":852,"kind":2048,"name":"upsert","url":"classes/_core_.auth.html#upsert","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":853,"kind":2048,"name":"bulkCreate","url":"classes/_core_.auth.html#bulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":854,"kind":2048,"name":"truncate","url":"classes/_core_.auth.html#truncate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":855,"kind":2048,"name":"destroy","url":"classes/_core_.auth.html#destroy-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":856,"kind":2048,"name":"restore","url":"classes/_core_.auth.html#restore-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":857,"kind":2048,"name":"update","url":"classes/_core_.auth.html#update-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":858,"kind":2048,"name":"increment","url":"classes/_core_.auth.html#increment-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":859,"kind":2048,"name":"describe","url":"classes/_core_.auth.html#describe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":860,"kind":2048,"name":"unscoped","url":"classes/_core_.auth.html#unscoped","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":861,"kind":2048,"name":"beforeValidate","url":"classes/_core_.auth.html#beforevalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":862,"kind":2048,"name":"afterValidate","url":"classes/_core_.auth.html#aftervalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":863,"kind":2048,"name":"beforeCreate","url":"classes/_core_.auth.html#beforecreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":864,"kind":2048,"name":"afterCreate","url":"classes/_core_.auth.html#aftercreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":865,"kind":2048,"name":"beforeDestroy","url":"classes/_core_.auth.html#beforedestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":866,"kind":2048,"name":"afterDestroy","url":"classes/_core_.auth.html#afterdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":867,"kind":2048,"name":"beforeUpdate","url":"classes/_core_.auth.html#beforeupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":868,"kind":2048,"name":"afterUpdate","url":"classes/_core_.auth.html#afterupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":869,"kind":2048,"name":"beforeBulkCreate","url":"classes/_core_.auth.html#beforebulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":870,"kind":2048,"name":"afterBulkCreate","url":"classes/_core_.auth.html#afterbulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":871,"kind":2048,"name":"beforeBulkDestroy","url":"classes/_core_.auth.html#beforebulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":872,"kind":2048,"name":"afterBulkDestroy","url":"classes/_core_.auth.html#afterbulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":873,"kind":2048,"name":"beforeBulkUpdate","url":"classes/_core_.auth.html#beforebulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":874,"kind":2048,"name":"afterBulkUpdate","url":"classes/_core_.auth.html#afterbulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":875,"kind":2048,"name":"beforeFind","url":"classes/_core_.auth.html#beforefind","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":876,"kind":2048,"name":"beforeCount","url":"classes/_core_.auth.html#beforecount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":877,"kind":2048,"name":"beforeFindAfterExpandIncludeAll","url":"classes/_core_.auth.html#beforefindafterexpandincludeall","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":878,"kind":2048,"name":"beforeFindAfterOptions","url":"classes/_core_.auth.html#beforefindafteroptions","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":879,"kind":2048,"name":"afterFind","url":"classes/_core_.auth.html#afterfind","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":880,"kind":2048,"name":"beforeBulkSync","url":"classes/_core_.auth.html#beforebulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":881,"kind":2048,"name":"afterBulkSync","url":"classes/_core_.auth.html#afterbulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":882,"kind":2048,"name":"beforeSync","url":"classes/_core_.auth.html#beforesync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":883,"kind":2048,"name":"afterSync","url":"classes/_core_.auth.html#aftersync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":884,"kind":2048,"name":"hasOne","url":"classes/_core_.auth.html#hasone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":885,"kind":2048,"name":"belongsTo","url":"classes/_core_.auth.html#belongsto","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":886,"kind":2048,"name":"hasMany","url":"classes/_core_.auth.html#hasmany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":887,"kind":2048,"name":"belongsToMany","url":"classes/_core_.auth.html#belongstomany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":888,"kind":1024,"name":"isNewRecord","url":"classes/_core_.auth.html#isnewrecord","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":889,"kind":1024,"name":"sequelize","url":"classes/_core_.auth.html#sequelize","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":890,"kind":512,"name":"constructor","url":"classes/_core_.auth.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":891,"kind":2048,"name":"where","url":"classes/_core_.auth.html#where","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":892,"kind":2048,"name":"getDataValue","url":"classes/_core_.auth.html#getdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":893,"kind":2048,"name":"setDataValue","url":"classes/_core_.auth.html#setdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":894,"kind":2048,"name":"get","url":"classes/_core_.auth.html#get","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":895,"kind":2048,"name":"set","url":"classes/_core_.auth.html#set","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":896,"kind":2048,"name":"setAttributes","url":"classes/_core_.auth.html#setattributes","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":897,"kind":2048,"name":"changed","url":"classes/_core_.auth.html#changed","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":898,"kind":2048,"name":"previous","url":"classes/_core_.auth.html#previous","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":899,"kind":2048,"name":"save","url":"classes/_core_.auth.html#save","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":900,"kind":2048,"name":"reload","url":"classes/_core_.auth.html#reload","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":901,"kind":2048,"name":"validate","url":"classes/_core_.auth.html#validate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":902,"kind":2048,"name":"update","url":"classes/_core_.auth.html#update","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":903,"kind":2048,"name":"destroy","url":"classes/_core_.auth.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":904,"kind":2048,"name":"restore","url":"classes/_core_.auth.html#restore","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":905,"kind":2048,"name":"increment","url":"classes/_core_.auth.html#increment","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":906,"kind":2048,"name":"decrement","url":"classes/_core_.auth.html#decrement","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":907,"kind":2048,"name":"equals","url":"classes/_core_.auth.html#equals","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":908,"kind":2048,"name":"equalsOneOf","url":"classes/_core_.auth.html#equalsoneof","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":909,"kind":2048,"name":"addHook","url":"classes/_core_.auth.html#addhook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":910,"kind":2048,"name":"removeHook","url":"classes/_core_.auth.html#removehook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":911,"kind":2048,"name":"hasHook","url":"classes/_core_.auth.html#hashook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":912,"kind":2048,"name":"hasHooks","url":"classes/_core_.auth.html#hashooks-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":913,"kind":2048,"name":"addHook","url":"classes/_core_.auth.html#addhook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":914,"kind":2048,"name":"removeHook","url":"classes/_core_.auth.html#removehook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":915,"kind":2048,"name":"hasHook","url":"classes/_core_.auth.html#hashook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":916,"kind":2048,"name":"hasHooks","url":"classes/_core_.auth.html#hashooks","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":917,"kind":256,"name":"LogArgs","url":"interfaces/_core_.logargs.html","classes":"tsd-kind-interface tsd-parent-kind-external-module","parent":"\"core\""},{"id":918,"kind":1024,"name":"message","url":"interfaces/_core_.logargs.html#message","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".LogArgs"},{"id":919,"kind":1024,"name":"user_id","url":"interfaces/_core_.logargs.html#user_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".LogArgs"},{"id":920,"kind":1024,"name":"user_name","url":"interfaces/_core_.logargs.html#user_name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".LogArgs"},{"id":921,"kind":1024,"name":"status_code","url":"interfaces/_core_.logargs.html#status_code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".LogArgs"},{"id":922,"kind":1024,"name":"method","url":"interfaces/_core_.logargs.html#method","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".LogArgs"},{"id":923,"kind":1024,"name":"path","url":"interfaces/_core_.logargs.html#path","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".LogArgs"},{"id":924,"kind":1024,"name":"authority","url":"interfaces/_core_.logargs.html#authority","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".LogArgs"},{"id":925,"kind":128,"name":"Log","url":"classes/_core_.log.html","classes":"tsd-kind-class tsd-parent-kind-external-module tsd-has-type-parameter","parent":"\"core\""},{"id":926,"kind":1024,"name":"id","url":"classes/_core_.log.html#id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":927,"kind":1024,"name":"message","url":"classes/_core_.log.html#message","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":928,"kind":1024,"name":"user_id","url":"classes/_core_.log.html#user_id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":929,"kind":1024,"name":"user_name","url":"classes/_core_.log.html#user_name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":930,"kind":1024,"name":"status_code","url":"classes/_core_.log.html#status_code","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":931,"kind":1024,"name":"method","url":"classes/_core_.log.html#method","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":932,"kind":1024,"name":"path","url":"classes/_core_.log.html#path","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":933,"kind":1024,"name":"authority","url":"classes/_core_.log.html#authority","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":934,"kind":1024,"name":"time","url":"classes/_core_.log.html#time","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":935,"kind":2048,"name":"createLog","url":"classes/_core_.log.html#createlog","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"\"core\".Log"},{"id":936,"kind":2048,"name":"toJSON","url":"classes/_core_.log.html#tojson","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"core\".Log"},{"id":937,"kind":1024,"name":"tableName","url":"classes/_core_.log.html#tablename","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":938,"kind":1024,"name":"primaryKeyAttribute","url":"classes/_core_.log.html#primarykeyattribute","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":939,"kind":1024,"name":"associations","url":"classes/_core_.log.html#associations","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":940,"kind":65536,"name":"__type","url":"classes/_core_.log.html#associations.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".Log.associations"},{"id":941,"kind":1024,"name":"options","url":"classes/_core_.log.html#options","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":942,"kind":1024,"name":"rawAttributes","url":"classes/_core_.log.html#rawattributes","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":943,"kind":65536,"name":"__type","url":"classes/_core_.log.html#rawattributes.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".Log.rawAttributes"},{"id":944,"kind":1024,"name":"sequelize","url":"classes/_core_.log.html#sequelize-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":945,"kind":2048,"name":"init","url":"classes/_core_.log.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":946,"kind":2048,"name":"removeAttribute","url":"classes/_core_.log.html#removeattribute","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":947,"kind":2048,"name":"sync","url":"classes/_core_.log.html#sync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":948,"kind":2048,"name":"drop","url":"classes/_core_.log.html#drop","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":949,"kind":2048,"name":"schema","url":"classes/_core_.log.html#schema","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":950,"kind":2048,"name":"getTableName","url":"classes/_core_.log.html#gettablename","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":951,"kind":2048,"name":"scope","url":"classes/_core_.log.html#scope","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":952,"kind":2048,"name":"addScope","url":"classes/_core_.log.html#addscope","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":953,"kind":2048,"name":"findAll","url":"classes/_core_.log.html#findall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":954,"kind":2048,"name":"findByPk","url":"classes/_core_.log.html#findbypk","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":955,"kind":2048,"name":"findOne","url":"classes/_core_.log.html#findone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":956,"kind":2048,"name":"aggregate","url":"classes/_core_.log.html#aggregate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":957,"kind":2048,"name":"count","url":"classes/_core_.log.html#count","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":958,"kind":2048,"name":"findAndCountAll","url":"classes/_core_.log.html#findandcountall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":959,"kind":2048,"name":"max","url":"classes/_core_.log.html#max","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":960,"kind":2048,"name":"min","url":"classes/_core_.log.html#min","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":961,"kind":2048,"name":"sum","url":"classes/_core_.log.html#sum","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":962,"kind":2048,"name":"build","url":"classes/_core_.log.html#build","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":963,"kind":2048,"name":"bulkBuild","url":"classes/_core_.log.html#bulkbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":964,"kind":2048,"name":"create","url":"classes/_core_.log.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":965,"kind":2048,"name":"findOrBuild","url":"classes/_core_.log.html#findorbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":966,"kind":2048,"name":"findOrCreate","url":"classes/_core_.log.html#findorcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":967,"kind":2048,"name":"upsert","url":"classes/_core_.log.html#upsert","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":968,"kind":2048,"name":"bulkCreate","url":"classes/_core_.log.html#bulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":969,"kind":2048,"name":"truncate","url":"classes/_core_.log.html#truncate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":970,"kind":2048,"name":"destroy","url":"classes/_core_.log.html#destroy-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":971,"kind":2048,"name":"restore","url":"classes/_core_.log.html#restore-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":972,"kind":2048,"name":"update","url":"classes/_core_.log.html#update-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":973,"kind":2048,"name":"increment","url":"classes/_core_.log.html#increment-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":974,"kind":2048,"name":"describe","url":"classes/_core_.log.html#describe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":975,"kind":2048,"name":"unscoped","url":"classes/_core_.log.html#unscoped","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":976,"kind":2048,"name":"beforeValidate","url":"classes/_core_.log.html#beforevalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":977,"kind":2048,"name":"afterValidate","url":"classes/_core_.log.html#aftervalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":978,"kind":2048,"name":"beforeCreate","url":"classes/_core_.log.html#beforecreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":979,"kind":2048,"name":"afterCreate","url":"classes/_core_.log.html#aftercreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":980,"kind":2048,"name":"beforeDestroy","url":"classes/_core_.log.html#beforedestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":981,"kind":2048,"name":"afterDestroy","url":"classes/_core_.log.html#afterdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":982,"kind":2048,"name":"beforeUpdate","url":"classes/_core_.log.html#beforeupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":983,"kind":2048,"name":"afterUpdate","url":"classes/_core_.log.html#afterupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":984,"kind":2048,"name":"beforeBulkCreate","url":"classes/_core_.log.html#beforebulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":985,"kind":2048,"name":"afterBulkCreate","url":"classes/_core_.log.html#afterbulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":986,"kind":2048,"name":"beforeBulkDestroy","url":"classes/_core_.log.html#beforebulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":987,"kind":2048,"name":"afterBulkDestroy","url":"classes/_core_.log.html#afterbulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":988,"kind":2048,"name":"beforeBulkUpdate","url":"classes/_core_.log.html#beforebulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":989,"kind":2048,"name":"afterBulkUpdate","url":"classes/_core_.log.html#afterbulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":990,"kind":2048,"name":"beforeFind","url":"classes/_core_.log.html#beforefind","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":991,"kind":2048,"name":"beforeCount","url":"classes/_core_.log.html#beforecount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":992,"kind":2048,"name":"beforeFindAfterExpandIncludeAll","url":"classes/_core_.log.html#beforefindafterexpandincludeall","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":993,"kind":2048,"name":"beforeFindAfterOptions","url":"classes/_core_.log.html#beforefindafteroptions","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":994,"kind":2048,"name":"afterFind","url":"classes/_core_.log.html#afterfind","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":995,"kind":2048,"name":"beforeBulkSync","url":"classes/_core_.log.html#beforebulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":996,"kind":2048,"name":"afterBulkSync","url":"classes/_core_.log.html#afterbulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":997,"kind":2048,"name":"beforeSync","url":"classes/_core_.log.html#beforesync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":998,"kind":2048,"name":"afterSync","url":"classes/_core_.log.html#aftersync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":999,"kind":2048,"name":"hasOne","url":"classes/_core_.log.html#hasone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1000,"kind":2048,"name":"belongsTo","url":"classes/_core_.log.html#belongsto","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1001,"kind":2048,"name":"hasMany","url":"classes/_core_.log.html#hasmany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1002,"kind":2048,"name":"belongsToMany","url":"classes/_core_.log.html#belongstomany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1003,"kind":1024,"name":"isNewRecord","url":"classes/_core_.log.html#isnewrecord","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1004,"kind":1024,"name":"sequelize","url":"classes/_core_.log.html#sequelize","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1005,"kind":512,"name":"constructor","url":"classes/_core_.log.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1006,"kind":2048,"name":"where","url":"classes/_core_.log.html#where","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1007,"kind":2048,"name":"getDataValue","url":"classes/_core_.log.html#getdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1008,"kind":2048,"name":"setDataValue","url":"classes/_core_.log.html#setdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1009,"kind":2048,"name":"get","url":"classes/_core_.log.html#get","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1010,"kind":2048,"name":"set","url":"classes/_core_.log.html#set","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1011,"kind":2048,"name":"setAttributes","url":"classes/_core_.log.html#setattributes","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1012,"kind":2048,"name":"changed","url":"classes/_core_.log.html#changed","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1013,"kind":2048,"name":"previous","url":"classes/_core_.log.html#previous","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1014,"kind":2048,"name":"save","url":"classes/_core_.log.html#save","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1015,"kind":2048,"name":"reload","url":"classes/_core_.log.html#reload","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1016,"kind":2048,"name":"validate","url":"classes/_core_.log.html#validate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1017,"kind":2048,"name":"update","url":"classes/_core_.log.html#update","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1018,"kind":2048,"name":"destroy","url":"classes/_core_.log.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1019,"kind":2048,"name":"restore","url":"classes/_core_.log.html#restore","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1020,"kind":2048,"name":"increment","url":"classes/_core_.log.html#increment","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1021,"kind":2048,"name":"decrement","url":"classes/_core_.log.html#decrement","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1022,"kind":2048,"name":"equals","url":"classes/_core_.log.html#equals","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1023,"kind":2048,"name":"equalsOneOf","url":"classes/_core_.log.html#equalsoneof","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1024,"kind":2048,"name":"addHook","url":"classes/_core_.log.html#addhook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1025,"kind":2048,"name":"removeHook","url":"classes/_core_.log.html#removehook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1026,"kind":2048,"name":"hasHook","url":"classes/_core_.log.html#hashook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1027,"kind":2048,"name":"hasHooks","url":"classes/_core_.log.html#hashooks-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1028,"kind":2048,"name":"addHook","url":"classes/_core_.log.html#addhook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1029,"kind":2048,"name":"removeHook","url":"classes/_core_.log.html#removehook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1030,"kind":2048,"name":"hasHook","url":"classes/_core_.log.html#hashook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1031,"kind":2048,"name":"hasHooks","url":"classes/_core_.log.html#hashooks","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1032,"kind":256,"name":"FileArgs","url":"interfaces/_core_.fileargs.html","classes":"tsd-kind-interface tsd-parent-kind-external-module","parent":"\"core\""},{"id":1033,"kind":1024,"name":"path","url":"interfaces/_core_.fileargs.html#path","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".FileArgs"},{"id":1034,"kind":1024,"name":"type","url":"interfaces/_core_.fileargs.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".FileArgs"},{"id":1035,"kind":1024,"name":"name","url":"interfaces/_core_.fileargs.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".FileArgs"},{"id":1036,"kind":1024,"name":"extension","url":"interfaces/_core_.fileargs.html#extension","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".FileArgs"},{"id":1037,"kind":1024,"name":"size","url":"interfaces/_core_.fileargs.html#size","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".FileArgs"},{"id":1038,"kind":128,"name":"File","url":"classes/_core_.file.html","classes":"tsd-kind-class tsd-parent-kind-external-module tsd-has-type-parameter","parent":"\"core\""},{"id":1039,"kind":1024,"name":"id","url":"classes/_core_.file.html#id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".File"},{"id":1040,"kind":1024,"name":"path","url":"classes/_core_.file.html#path","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".File"},{"id":1041,"kind":1024,"name":"type","url":"classes/_core_.file.html#type","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".File"},{"id":1042,"kind":1024,"name":"name","url":"classes/_core_.file.html#name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".File"},{"id":1043,"kind":1024,"name":"extension","url":"classes/_core_.file.html#extension","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".File"},{"id":1044,"kind":1024,"name":"size","url":"classes/_core_.file.html#size","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".File"},{"id":1045,"kind":2048,"name":"createRecord","url":"classes/_core_.file.html#createrecord","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"\"core\".File"},{"id":1046,"kind":2048,"name":"toJSON","url":"classes/_core_.file.html#tojson","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"core\".File"},{"id":1047,"kind":1024,"name":"tableName","url":"classes/_core_.file.html#tablename","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1048,"kind":1024,"name":"primaryKeyAttribute","url":"classes/_core_.file.html#primarykeyattribute","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1049,"kind":1024,"name":"associations","url":"classes/_core_.file.html#associations","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1050,"kind":65536,"name":"__type","url":"classes/_core_.file.html#associations.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".File.associations"},{"id":1051,"kind":1024,"name":"options","url":"classes/_core_.file.html#options","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1052,"kind":1024,"name":"rawAttributes","url":"classes/_core_.file.html#rawattributes","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1053,"kind":65536,"name":"__type","url":"classes/_core_.file.html#rawattributes.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".File.rawAttributes"},{"id":1054,"kind":1024,"name":"sequelize","url":"classes/_core_.file.html#sequelize-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1055,"kind":2048,"name":"init","url":"classes/_core_.file.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1056,"kind":2048,"name":"removeAttribute","url":"classes/_core_.file.html#removeattribute","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1057,"kind":2048,"name":"sync","url":"classes/_core_.file.html#sync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1058,"kind":2048,"name":"drop","url":"classes/_core_.file.html#drop","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1059,"kind":2048,"name":"schema","url":"classes/_core_.file.html#schema","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1060,"kind":2048,"name":"getTableName","url":"classes/_core_.file.html#gettablename","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1061,"kind":2048,"name":"scope","url":"classes/_core_.file.html#scope","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1062,"kind":2048,"name":"addScope","url":"classes/_core_.file.html#addscope","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1063,"kind":2048,"name":"findAll","url":"classes/_core_.file.html#findall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1064,"kind":2048,"name":"findByPk","url":"classes/_core_.file.html#findbypk","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1065,"kind":2048,"name":"findOne","url":"classes/_core_.file.html#findone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1066,"kind":2048,"name":"aggregate","url":"classes/_core_.file.html#aggregate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1067,"kind":2048,"name":"count","url":"classes/_core_.file.html#count","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1068,"kind":2048,"name":"findAndCountAll","url":"classes/_core_.file.html#findandcountall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1069,"kind":2048,"name":"max","url":"classes/_core_.file.html#max","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1070,"kind":2048,"name":"min","url":"classes/_core_.file.html#min","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1071,"kind":2048,"name":"sum","url":"classes/_core_.file.html#sum","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1072,"kind":2048,"name":"build","url":"classes/_core_.file.html#build","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1073,"kind":2048,"name":"bulkBuild","url":"classes/_core_.file.html#bulkbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1074,"kind":2048,"name":"create","url":"classes/_core_.file.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1075,"kind":2048,"name":"findOrBuild","url":"classes/_core_.file.html#findorbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1076,"kind":2048,"name":"findOrCreate","url":"classes/_core_.file.html#findorcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1077,"kind":2048,"name":"upsert","url":"classes/_core_.file.html#upsert","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1078,"kind":2048,"name":"bulkCreate","url":"classes/_core_.file.html#bulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1079,"kind":2048,"name":"truncate","url":"classes/_core_.file.html#truncate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1080,"kind":2048,"name":"destroy","url":"classes/_core_.file.html#destroy-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1081,"kind":2048,"name":"restore","url":"classes/_core_.file.html#restore-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1082,"kind":2048,"name":"update","url":"classes/_core_.file.html#update-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1083,"kind":2048,"name":"increment","url":"classes/_core_.file.html#increment-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1084,"kind":2048,"name":"describe","url":"classes/_core_.file.html#describe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1085,"kind":2048,"name":"unscoped","url":"classes/_core_.file.html#unscoped","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1086,"kind":2048,"name":"beforeValidate","url":"classes/_core_.file.html#beforevalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1087,"kind":2048,"name":"afterValidate","url":"classes/_core_.file.html#aftervalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1088,"kind":2048,"name":"beforeCreate","url":"classes/_core_.file.html#beforecreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1089,"kind":2048,"name":"afterCreate","url":"classes/_core_.file.html#aftercreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1090,"kind":2048,"name":"beforeDestroy","url":"classes/_core_.file.html#beforedestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1091,"kind":2048,"name":"afterDestroy","url":"classes/_core_.file.html#afterdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1092,"kind":2048,"name":"beforeUpdate","url":"classes/_core_.file.html#beforeupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1093,"kind":2048,"name":"afterUpdate","url":"classes/_core_.file.html#afterupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1094,"kind":2048,"name":"beforeBulkCreate","url":"classes/_core_.file.html#beforebulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1095,"kind":2048,"name":"afterBulkCreate","url":"classes/_core_.file.html#afterbulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1096,"kind":2048,"name":"beforeBulkDestroy","url":"classes/_core_.file.html#beforebulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1097,"kind":2048,"name":"afterBulkDestroy","url":"classes/_core_.file.html#afterbulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1098,"kind":2048,"name":"beforeBulkUpdate","url":"classes/_core_.file.html#beforebulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1099,"kind":2048,"name":"afterBulkUpdate","url":"classes/_core_.file.html#afterbulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1100,"kind":2048,"name":"beforeFind","url":"classes/_core_.file.html#beforefind","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1101,"kind":2048,"name":"beforeCount","url":"classes/_core_.file.html#beforecount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1102,"kind":2048,"name":"beforeFindAfterExpandIncludeAll","url":"classes/_core_.file.html#beforefindafterexpandincludeall","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1103,"kind":2048,"name":"beforeFindAfterOptions","url":"classes/_core_.file.html#beforefindafteroptions","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1104,"kind":2048,"name":"afterFind","url":"classes/_core_.file.html#afterfind","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1105,"kind":2048,"name":"beforeBulkSync","url":"classes/_core_.file.html#beforebulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1106,"kind":2048,"name":"afterBulkSync","url":"classes/_core_.file.html#afterbulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1107,"kind":2048,"name":"beforeSync","url":"classes/_core_.file.html#beforesync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1108,"kind":2048,"name":"afterSync","url":"classes/_core_.file.html#aftersync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1109,"kind":2048,"name":"hasOne","url":"classes/_core_.file.html#hasone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1110,"kind":2048,"name":"belongsTo","url":"classes/_core_.file.html#belongsto","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1111,"kind":2048,"name":"hasMany","url":"classes/_core_.file.html#hasmany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1112,"kind":2048,"name":"belongsToMany","url":"classes/_core_.file.html#belongstomany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1113,"kind":1024,"name":"isNewRecord","url":"classes/_core_.file.html#isnewrecord","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1114,"kind":1024,"name":"sequelize","url":"classes/_core_.file.html#sequelize","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1115,"kind":512,"name":"constructor","url":"classes/_core_.file.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1116,"kind":2048,"name":"where","url":"classes/_core_.file.html#where","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1117,"kind":2048,"name":"getDataValue","url":"classes/_core_.file.html#getdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1118,"kind":2048,"name":"setDataValue","url":"classes/_core_.file.html#setdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1119,"kind":2048,"name":"get","url":"classes/_core_.file.html#get","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1120,"kind":2048,"name":"set","url":"classes/_core_.file.html#set","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1121,"kind":2048,"name":"setAttributes","url":"classes/_core_.file.html#setattributes","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1122,"kind":2048,"name":"changed","url":"classes/_core_.file.html#changed","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1123,"kind":2048,"name":"previous","url":"classes/_core_.file.html#previous","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1124,"kind":2048,"name":"save","url":"classes/_core_.file.html#save","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1125,"kind":2048,"name":"reload","url":"classes/_core_.file.html#reload","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1126,"kind":2048,"name":"validate","url":"classes/_core_.file.html#validate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1127,"kind":2048,"name":"update","url":"classes/_core_.file.html#update","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1128,"kind":2048,"name":"destroy","url":"classes/_core_.file.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1129,"kind":2048,"name":"restore","url":"classes/_core_.file.html#restore","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1130,"kind":2048,"name":"increment","url":"classes/_core_.file.html#increment","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1131,"kind":2048,"name":"decrement","url":"classes/_core_.file.html#decrement","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1132,"kind":2048,"name":"equals","url":"classes/_core_.file.html#equals","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1133,"kind":2048,"name":"equalsOneOf","url":"classes/_core_.file.html#equalsoneof","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1134,"kind":2048,"name":"addHook","url":"classes/_core_.file.html#addhook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1135,"kind":2048,"name":"removeHook","url":"classes/_core_.file.html#removehook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1136,"kind":2048,"name":"hasHook","url":"classes/_core_.file.html#hashook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1137,"kind":2048,"name":"hasHooks","url":"classes/_core_.file.html#hashooks-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1138,"kind":2048,"name":"addHook","url":"classes/_core_.file.html#addhook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1139,"kind":2048,"name":"removeHook","url":"classes/_core_.file.html#removehook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1140,"kind":2048,"name":"hasHook","url":"classes/_core_.file.html#hashook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1141,"kind":2048,"name":"hasHooks","url":"classes/_core_.file.html#hashooks","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1142,"kind":32,"name":"__version__","url":"modules/_core_.html#__version__","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"core\""},{"id":1143,"kind":32,"name":"routeMetaInfo","url":"modules/_core_.html#routemetainfo","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"core\""},{"id":1144,"kind":32,"name":"disableLoading","url":"modules/_core_.html#disableloading","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"core\""},{"id":1145,"kind":1,"name":"\"factory\"","url":"modules/_factory_.html","classes":"tsd-kind-external-module"},{"id":1146,"kind":64,"name":"modelExtend","url":"modules/_factory_.html#modelextend","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"factory\""},{"id":1147,"kind":1,"name":"\"file\"","url":"modules/_file_.html","classes":"tsd-kind-external-module"},{"id":1148,"kind":128,"name":"Uploader","url":"classes/_file_.uploader.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"file\""},{"id":1149,"kind":1024,"name":"storeDir","url":"classes/_file_.uploader.html#storedir","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"file\".Uploader"},{"id":1150,"kind":512,"name":"constructor","url":"classes/_file_.uploader.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"file\".Uploader"},{"id":1151,"kind":2048,"name":"upload","url":"classes/_file_.uploader.html#upload","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"file\".Uploader"},{"id":1152,"kind":2048,"name":"getStorePath","url":"classes/_file_.uploader.html#getstorepath","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"file\".Uploader"},{"id":1153,"kind":2048,"name":"generateName","url":"classes/_file_.uploader.html#generatename","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"file\".Uploader"},{"id":1154,"kind":2048,"name":"getExactStoreDir","url":"classes/_file_.uploader.html#getexactstoredir","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"file\".Uploader"},{"id":1155,"kind":1,"name":"\"lin-validator\"","url":"modules/_lin_validator_.html","classes":"tsd-kind-external-module"},{"id":1156,"kind":128,"name":"LinValidator","url":"classes/_lin_validator_.linvalidator.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"lin-validator\""},{"id":1157,"kind":1024,"name":"data","url":"classes/_lin_validator_.linvalidator.html#data","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".LinValidator"},{"id":1158,"kind":1024,"name":"parsed","url":"classes/_lin_validator_.linvalidator.html#parsed","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".LinValidator"},{"id":1159,"kind":1024,"name":"errors","url":"classes/_lin_validator_.linvalidator.html#errors","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".LinValidator"},{"id":1160,"kind":1024,"name":"alias","url":"classes/_lin_validator_.linvalidator.html#alias","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".LinValidator"},{"id":1161,"kind":2048,"name":"validate","url":"classes/_lin_validator_.linvalidator.html#validate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-validator\".LinValidator"},{"id":1162,"kind":2048,"name":"replace","url":"classes/_lin_validator_.linvalidator.html#replace","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"lin-validator\".LinValidator"},{"id":1163,"kind":2048,"name":"isOptional","url":"classes/_lin_validator_.linvalidator.html#isoptional","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"lin-validator\".LinValidator"},{"id":1164,"kind":2048,"name":"checkRules","url":"classes/_lin_validator_.linvalidator.html#checkrules","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"lin-validator\".LinValidator"},{"id":1165,"kind":2048,"name":"getValidateFuncKey","url":"classes/_lin_validator_.linvalidator.html#getvalidatefunckey","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"lin-validator\".LinValidator"},{"id":1166,"kind":2048,"name":"get","url":"classes/_lin_validator_.linvalidator.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-validator\".LinValidator"},{"id":1167,"kind":2048,"name":"findInData","url":"classes/_lin_validator_.linvalidator.html#findindata","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"lin-validator\".LinValidator"},{"id":1168,"kind":128,"name":"Rule","url":"classes/_lin_validator_.rule.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"lin-validator\""},{"id":1169,"kind":1024,"name":"options","url":"classes/_lin_validator_.rule.html#options","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1170,"kind":1024,"name":"message","url":"classes/_lin_validator_.rule.html#message","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1171,"kind":1024,"name":"validateFunction","url":"classes/_lin_validator_.rule.html#validatefunction","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1172,"kind":1024,"name":"optional","url":"classes/_lin_validator_.rule.html#optional","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1173,"kind":1024,"name":"parsedValue","url":"classes/_lin_validator_.rule.html#parsedvalue","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1174,"kind":1024,"name":"rawValue","url":"classes/_lin_validator_.rule.html#rawvalue","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1175,"kind":1024,"name":"defaultValue","url":"classes/_lin_validator_.rule.html#defaultvalue","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1176,"kind":512,"name":"constructor","url":"classes/_lin_validator_.rule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1177,"kind":2048,"name":"validate","url":"classes/_lin_validator_.rule.html#validate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1178,"kind":1,"name":"\"log\"","url":"modules/_log_.html","classes":"tsd-kind-external-module"},{"id":1179,"kind":32,"name":"REG_XP","url":"modules/_log_.html#reg_xp","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"log\""},{"id":1180,"kind":64,"name":"logger","url":"modules/_log_.html#logger","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"log\""},{"id":1181,"kind":64,"name":"writeLog","url":"modules/_log_.html#writelog","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"log\""},{"id":1182,"kind":64,"name":"parseTemplate","url":"modules/_log_.html#parsetemplate","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"log\""},{"id":1183,"kind":1,"name":"\"middleware\"","url":"modules/_middleware_.html","classes":"tsd-kind-external-module"},{"id":1184,"kind":64,"name":"error","url":"modules/_middleware_.html#error","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"middleware\""},{"id":1185,"kind":64,"name":"log","url":"modules/_middleware_.html#log","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"middleware\""},{"id":1186,"kind":1,"name":"\"mixin\"","url":"modules/_mixin_.html","classes":"tsd-kind-external-module"},{"id":1187,"kind":128,"name":"JsonMixin","url":"classes/_mixin_.jsonmixin.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"mixin\""},{"id":1188,"kind":1024,"name":"fields","url":"classes/_mixin_.jsonmixin.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"mixin\".JsonMixin"},{"id":1189,"kind":1,"name":"\"index\"","url":"modules/_index_.html","classes":"tsd-kind-external-module"},{"id":1190,"kind":1,"name":"\"sse\"","url":"modules/_sse_.html","classes":"tsd-kind-external-module"},{"id":1191,"kind":128,"name":"SSE","url":"classes/_sse_.sse.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"sse\""},{"id":1192,"kind":512,"name":"constructor","url":"classes/_sse_.sse.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"sse\".SSE"},{"id":1193,"kind":2048,"name":"_transform","url":"classes/_sse_.sse.html#_transform","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"sse\".SSE"},{"id":1194,"kind":2048,"name":"_flush","url":"classes/_sse_.sse.html#_flush","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1195,"kind":1024,"name":"writable","url":"classes/_sse_.sse.html#writable","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1196,"kind":1024,"name":"writableHighWaterMark","url":"classes/_sse_.sse.html#writablehighwatermark","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1197,"kind":1024,"name":"writableLength","url":"classes/_sse_.sse.html#writablelength","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1198,"kind":2048,"name":"_write","url":"classes/_sse_.sse.html#_write","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1199,"kind":2048,"name":"_writev","url":"classes/_sse_.sse.html#_writev","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1200,"kind":2048,"name":"_destroy","url":"classes/_sse_.sse.html#_destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1201,"kind":2048,"name":"_final","url":"classes/_sse_.sse.html#_final","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1202,"kind":2048,"name":"write","url":"classes/_sse_.sse.html#write","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1203,"kind":2048,"name":"setDefaultEncoding","url":"classes/_sse_.sse.html#setdefaultencoding","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1204,"kind":2048,"name":"end","url":"classes/_sse_.sse.html#end","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1205,"kind":2048,"name":"cork","url":"classes/_sse_.sse.html#cork","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1206,"kind":2048,"name":"uncork","url":"classes/_sse_.sse.html#uncork","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1207,"kind":1024,"name":"readable","url":"classes/_sse_.sse.html#readable","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1208,"kind":1024,"name":"readableHighWaterMark","url":"classes/_sse_.sse.html#readablehighwatermark","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1209,"kind":1024,"name":"readableLength","url":"classes/_sse_.sse.html#readablelength","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1210,"kind":2048,"name":"_read","url":"classes/_sse_.sse.html#_read","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1211,"kind":2048,"name":"read","url":"classes/_sse_.sse.html#read","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1212,"kind":2048,"name":"setEncoding","url":"classes/_sse_.sse.html#setencoding","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1213,"kind":2048,"name":"pause","url":"classes/_sse_.sse.html#pause","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1214,"kind":2048,"name":"resume","url":"classes/_sse_.sse.html#resume","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1215,"kind":2048,"name":"isPaused","url":"classes/_sse_.sse.html#ispaused","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1216,"kind":2048,"name":"unpipe","url":"classes/_sse_.sse.html#unpipe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1217,"kind":2048,"name":"unshift","url":"classes/_sse_.sse.html#unshift","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1218,"kind":2048,"name":"wrap","url":"classes/_sse_.sse.html#wrap","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1219,"kind":2048,"name":"push","url":"classes/_sse_.sse.html#push","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1220,"kind":2048,"name":"destroy","url":"classes/_sse_.sse.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1221,"kind":2048,"name":"addListener","url":"classes/_sse_.sse.html#addlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1222,"kind":2048,"name":"emit","url":"classes/_sse_.sse.html#emit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1223,"kind":2048,"name":"on","url":"classes/_sse_.sse.html#on","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1224,"kind":2048,"name":"once","url":"classes/_sse_.sse.html#once","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1225,"kind":2048,"name":"prependListener","url":"classes/_sse_.sse.html#prependlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1226,"kind":2048,"name":"prependOnceListener","url":"classes/_sse_.sse.html#prependoncelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1227,"kind":2048,"name":"removeListener","url":"classes/_sse_.sse.html#removelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1228,"kind":2048,"name":"__@asyncIterator","url":"classes/_sse_.sse.html#___asynciterator","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1229,"kind":2048,"name":"pipe","url":"classes/_sse_.sse.html#pipe","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1230,"kind":2048,"name":"listenerCount","url":"classes/_sse_.sse.html#listenercount-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"sse\".SSE"},{"id":1231,"kind":1024,"name":"defaultMaxListeners","url":"classes/_sse_.sse.html#defaultmaxlisteners","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"sse\".SSE"},{"id":1232,"kind":2048,"name":"off","url":"classes/_sse_.sse.html#off","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1233,"kind":2048,"name":"removeAllListeners","url":"classes/_sse_.sse.html#removealllisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1234,"kind":2048,"name":"setMaxListeners","url":"classes/_sse_.sse.html#setmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1235,"kind":2048,"name":"getMaxListeners","url":"classes/_sse_.sse.html#getmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1236,"kind":2048,"name":"listeners","url":"classes/_sse_.sse.html#listeners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1237,"kind":2048,"name":"rawListeners","url":"classes/_sse_.sse.html#rawlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1238,"kind":2048,"name":"eventNames","url":"classes/_sse_.sse.html#eventnames","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1239,"kind":2048,"name":"listenerCount","url":"classes/_sse_.sse.html#listenercount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1240,"kind":128,"name":"MessageBroker","url":"classes/_sse_.messagebroker.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"sse\""},{"id":1241,"kind":1024,"name":"messages","url":"classes/_sse_.messagebroker.html#messages","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1242,"kind":1024,"name":"retry","url":"classes/_sse_.messagebroker.html#retry","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"sse\".MessageBroker"},{"id":1243,"kind":1024,"name":"buffer","url":"classes/_sse_.messagebroker.html#buffer","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"sse\".MessageBroker"},{"id":1244,"kind":1024,"name":"defaultId","url":"classes/_sse_.messagebroker.html#defaultid","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"sse\".MessageBroker"},{"id":1245,"kind":512,"name":"constructor","url":"classes/_sse_.messagebroker.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1246,"kind":2048,"name":"setRetry","url":"classes/_sse_.messagebroker.html#setretry","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1247,"kind":2048,"name":"setEventId","url":"classes/_sse_.messagebroker.html#seteventid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1248,"kind":2048,"name":"resetEventId","url":"classes/_sse_.messagebroker.html#reseteventid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1249,"kind":2048,"name":"increaseId","url":"classes/_sse_.messagebroker.html#increaseid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1250,"kind":2048,"name":"addMessage","url":"classes/_sse_.messagebroker.html#addmessage","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1251,"kind":2048,"name":"flushBuffer","url":"classes/_sse_.messagebroker.html#flushbuffer","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1252,"kind":2048,"name":"joinBuffer","url":"classes/_sse_.messagebroker.html#joinbuffer","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1253,"kind":2048,"name":"pop","url":"classes/_sse_.messagebroker.html#pop","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1254,"kind":2048,"name":"heartbeat","url":"classes/_sse_.messagebroker.html#heartbeat","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1255,"kind":2048,"name":"existMessage","url":"classes/_sse_.messagebroker.html#existmessage","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1256,"kind":128,"name":"Subscription","url":"classes/_sse_.subscription.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"sse\""},{"id":1257,"kind":1024,"name":"value","url":"classes/_sse_.subscription.html#value","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"sse\".Subscription"},{"id":1258,"kind":512,"name":"constructor","url":"classes/_sse_.subscription.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"sse\".Subscription"},{"id":1259,"kind":2048,"name":"_read","url":"classes/_sse_.subscription.html#_read","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"sse\".Subscription"},{"id":1260,"kind":1024,"name":"readable","url":"classes/_sse_.subscription.html#readable","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1261,"kind":1024,"name":"readableHighWaterMark","url":"classes/_sse_.subscription.html#readablehighwatermark","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1262,"kind":1024,"name":"readableLength","url":"classes/_sse_.subscription.html#readablelength","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1263,"kind":2048,"name":"read","url":"classes/_sse_.subscription.html#read","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1264,"kind":2048,"name":"setEncoding","url":"classes/_sse_.subscription.html#setencoding","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1265,"kind":2048,"name":"pause","url":"classes/_sse_.subscription.html#pause","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1266,"kind":2048,"name":"resume","url":"classes/_sse_.subscription.html#resume","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1267,"kind":2048,"name":"isPaused","url":"classes/_sse_.subscription.html#ispaused","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1268,"kind":2048,"name":"unpipe","url":"classes/_sse_.subscription.html#unpipe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1269,"kind":2048,"name":"unshift","url":"classes/_sse_.subscription.html#unshift","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1270,"kind":2048,"name":"wrap","url":"classes/_sse_.subscription.html#wrap","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1271,"kind":2048,"name":"push","url":"classes/_sse_.subscription.html#push","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1272,"kind":2048,"name":"_destroy","url":"classes/_sse_.subscription.html#_destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1273,"kind":2048,"name":"destroy","url":"classes/_sse_.subscription.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1274,"kind":2048,"name":"addListener","url":"classes/_sse_.subscription.html#addlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1275,"kind":2048,"name":"emit","url":"classes/_sse_.subscription.html#emit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1276,"kind":2048,"name":"on","url":"classes/_sse_.subscription.html#on","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1277,"kind":2048,"name":"once","url":"classes/_sse_.subscription.html#once","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1278,"kind":2048,"name":"prependListener","url":"classes/_sse_.subscription.html#prependlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1279,"kind":2048,"name":"prependOnceListener","url":"classes/_sse_.subscription.html#prependoncelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1280,"kind":2048,"name":"removeListener","url":"classes/_sse_.subscription.html#removelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1281,"kind":2048,"name":"__@asyncIterator","url":"classes/_sse_.subscription.html#___asynciterator","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1282,"kind":2048,"name":"pipe","url":"classes/_sse_.subscription.html#pipe","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1283,"kind":2048,"name":"listenerCount","url":"classes/_sse_.subscription.html#listenercount-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"sse\".Subscription"},{"id":1284,"kind":1024,"name":"defaultMaxListeners","url":"classes/_sse_.subscription.html#defaultmaxlisteners","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"sse\".Subscription"},{"id":1285,"kind":2048,"name":"off","url":"classes/_sse_.subscription.html#off","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1286,"kind":2048,"name":"removeAllListeners","url":"classes/_sse_.subscription.html#removealllisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1287,"kind":2048,"name":"setMaxListeners","url":"classes/_sse_.subscription.html#setmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1288,"kind":2048,"name":"getMaxListeners","url":"classes/_sse_.subscription.html#getmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1289,"kind":2048,"name":"listeners","url":"classes/_sse_.subscription.html#listeners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1290,"kind":2048,"name":"rawListeners","url":"classes/_sse_.subscription.html#rawlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1291,"kind":2048,"name":"eventNames","url":"classes/_sse_.subscription.html#eventnames","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1292,"kind":2048,"name":"listenerCount","url":"classes/_sse_.subscription.html#listenercount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"}]}; \ No newline at end of file diff --git a/docs/classes/_config_.config.html b/docs/classes/_config_.config.html index f56ac67..ea0237d 100644 --- a/docs/classes/_config_.config.html +++ b/docs/classes/_config_.config.html @@ -123,7 +123,7 @@

    Private store

    store: Object
    @@ -145,7 +145,7 @@

    getConfigFromFile

  • @@ -177,7 +177,7 @@

    getConfigFromObj

  • @@ -209,7 +209,7 @@

    getItem

  • @@ -251,7 +251,7 @@

    hasItem

  • @@ -285,7 +285,7 @@

    initApp

  • @@ -316,7 +316,7 @@

    setItem

  • diff --git a/docs/classes/_core_.auth.html b/docs/classes/_core_.auth.html index 2c02e61..67b86df 100644 --- a/docs/classes/_core_.auth.html +++ b/docs/classes/_core_.auth.html @@ -268,7 +268,7 @@

    auth

    auth: string
    @@ -278,7 +278,7 @@

    group_id

    group_id: number
    @@ -288,7 +288,7 @@

    id

    id: number
    @@ -314,7 +314,7 @@

    module

    module: string
    @@ -1305,7 +1305,7 @@

    toJSON

    Returns object

    diff --git a/docs/classes/_core_.file.html b/docs/classes/_core_.file.html index af83b68..dd458a8 100644 --- a/docs/classes/_core_.file.html +++ b/docs/classes/_core_.file.html @@ -272,7 +272,7 @@

    extension

    extension: string
    @@ -282,7 +282,7 @@

    id

    id: number
    @@ -308,7 +308,7 @@

    name

    name: string
    @@ -318,7 +318,7 @@

    path

    path: string
    @@ -344,7 +344,7 @@

    size

    size: number
    @@ -354,7 +354,7 @@

    type

    type: number
    @@ -1329,7 +1329,7 @@

    toJSON

    Returns object

    @@ -4259,7 +4259,7 @@

    Static createRecord

  • Parameters

    diff --git a/docs/classes/_core_.group.html b/docs/classes/_core_.group.html index cf90a7c..fc2815b 100644 --- a/docs/classes/_core_.group.html +++ b/docs/classes/_core_.group.html @@ -267,7 +267,7 @@

    id

    id: number
    @@ -277,7 +277,7 @@

    info

    info: string
    @@ -303,7 +303,7 @@

    name

    name: string
    @@ -1294,7 +1294,7 @@

    toJSON

    Returns object diff --git a/docs/classes/_core_.lin.html b/docs/classes/_core_.lin.html index e18bea8..f3e3cdc 100644 --- a/docs/classes/_core_.lin.html +++ b/docs/classes/_core_.lin.html @@ -117,7 +117,7 @@

    Private app

    app: Application | undefined
    @@ -127,7 +127,7 @@

    Private manager

    manager: Manager | undefined
    @@ -144,7 +144,7 @@

    Private applyDB

  • Parameters

    @@ -170,7 +170,7 @@

    Private applyDefaultE
  • Returns void

    @@ -187,7 +187,7 @@

    Private applyJwt

  • Returns void

    @@ -204,7 +204,7 @@

    Private applyManager

  • Parameters

    @@ -233,7 +233,7 @@

    initApp

  • @@ -294,7 +294,7 @@

    Private mount

  • Returns void

    diff --git a/docs/classes/_core_.log.html b/docs/classes/_core_.log.html index 2d076ad..c2c108b 100644 --- a/docs/classes/_core_.log.html +++ b/docs/classes/_core_.log.html @@ -274,7 +274,7 @@

    authority

    authority: string
    @@ -284,7 +284,7 @@

    id

    id: number
    @@ -310,7 +310,7 @@

    message

    message: string
    @@ -320,7 +320,7 @@

    method

    method: string
    @@ -330,7 +330,7 @@

    path

    path: string
    @@ -356,7 +356,7 @@

    status_code

    status_code: number
    @@ -366,7 +366,7 @@

    time

    time: Date
    @@ -376,7 +376,7 @@

    user_id

    user_id: number
    @@ -386,7 +386,7 @@

    user_name

    user_name: string
    @@ -1361,7 +1361,7 @@

    toJSON

    Returns object

    @@ -4300,7 +4300,7 @@

    Static createLog

  • Parameters

    diff --git a/docs/classes/_core_.manager.html b/docs/classes/_core_.manager.html index d718c3e..9c94058 100644 --- a/docs/classes/_core_.manager.html +++ b/docs/classes/_core_.manager.html @@ -124,7 +124,7 @@

    authModel

    authModel: any
    @@ -134,7 +134,7 @@

    groupModel

    groupModel: any
    @@ -144,7 +144,7 @@

    loader

    loader: Loader | undefined
    @@ -154,7 +154,7 @@

    userModel

    userModel: any
    @@ -171,7 +171,7 @@

    plugins

  • @@ -198,7 +198,7 @@

    findGroup

  • @@ -229,7 +229,7 @@

    findUser

  • @@ -260,7 +260,7 @@

    initApp

  • @@ -315,7 +315,7 @@

    verify

  • diff --git a/docs/classes/_core_.user.html b/docs/classes/_core_.user.html index 13b0c46..149636e 100644 --- a/docs/classes/_core_.user.html +++ b/docs/classes/_core_.user.html @@ -278,7 +278,7 @@

    active

    active: number
    @@ -288,7 +288,7 @@

    admin

    admin: number
    @@ -298,7 +298,7 @@

    create_time

    create_time: Date
    @@ -308,7 +308,7 @@

    delete_time

    delete_time: Date
    @@ -318,7 +318,7 @@

    email

    email: string
    @@ -328,7 +328,7 @@

    group_id

    group_id: number
    @@ -338,7 +338,7 @@

    id

    id: number
    @@ -364,7 +364,7 @@

    nickname

    nickname: string
    @@ -374,7 +374,7 @@

    password

    password: string
    @@ -400,7 +400,7 @@

    update_time

    update_time: Date
    @@ -599,7 +599,7 @@

    changePassword

  • Parameters

    @@ -702,7 +702,7 @@

    checkPassword

  • Parameters

    @@ -1195,7 +1195,7 @@

    resetPassword

  • Parameters

    @@ -1447,7 +1447,7 @@

    toJSON

    Returns object @@ -5826,7 +5826,7 @@

    Static verify

  • Parameters

    diff --git a/docs/classes/_exception_.authfailed.html b/docs/classes/_exception_.authfailed.html index 746083f..19b1397 100644 --- a/docs/classes/_exception_.authfailed.html +++ b/docs/classes/_exception_.authfailed.html @@ -127,7 +127,7 @@

    constructor

    Parameters

    @@ -150,7 +150,7 @@

    code

    @@ -161,7 +161,7 @@

    errorCode

    @@ -172,7 +172,7 @@

    fields

    @@ -194,7 +194,7 @@

    msg

    @@ -338,9 +338,15 @@

    Optional stack

  • Failed
  • +
  • + FileExtensionException +
  • FileTooLargeException
  • +
  • + FileTooManyException +
  • Forbidden
  • diff --git a/docs/classes/_exception_.expiredtokenexception.html b/docs/classes/_exception_.expiredtokenexception.html index 939543a..4264d79 100644 --- a/docs/classes/_exception_.expiredtokenexception.html +++ b/docs/classes/_exception_.expiredtokenexception.html @@ -127,7 +127,7 @@

    constructor

    Parameters

    @@ -150,7 +150,7 @@

    code

    @@ -161,7 +161,7 @@

    errorCode

    @@ -172,7 +172,7 @@

    fields

    @@ -194,7 +194,7 @@

    msg

    @@ -338,9 +338,15 @@

    Optional stack

  • Failed
  • +
  • + FileExtensionException +
  • FileTooLargeException
  • +
  • + FileTooManyException +
  • Forbidden
  • diff --git a/docs/classes/_exception_.failed.html b/docs/classes/_exception_.failed.html index 85d2958..6219cbb 100644 --- a/docs/classes/_exception_.failed.html +++ b/docs/classes/_exception_.failed.html @@ -127,7 +127,7 @@

    constructor

    Parameters

    @@ -150,7 +150,7 @@

    code

    @@ -161,7 +161,7 @@

    errorCode

    @@ -172,7 +172,7 @@

    fields

    @@ -194,7 +194,7 @@

    msg

    @@ -338,9 +338,15 @@

    Optional stack

    • @@ -341,6 +344,9 @@

      Optional stack

    • diff --git a/docs/classes/_exception_.httpexception.html b/docs/classes/_exception_.httpexception.html index 6c975f0..dadd764 100644 --- a/docs/classes/_exception_.httpexception.html +++ b/docs/classes/_exception_.httpexception.html @@ -135,6 +135,12 @@

      Hierarchy

    • FileTooLargeException
    • +
    • + FileTooManyException +
    • +
    • + FileExtensionException +
    @@ -179,7 +185,7 @@

    constructor

  • @@ -211,7 +217,7 @@

    code

    code: number = 500
    @@ -226,7 +232,7 @@

    errorCode

    errorCode: number = 999
    @@ -241,7 +247,7 @@

    fields

    fields: string[] = ['msg', 'errorCode']
    @@ -262,7 +268,7 @@

    msg

    msg: any = "服务器未知错误"
    @@ -391,9 +397,15 @@

    Static Error

  • Failed
  • +
  • + FileExtensionException +
  • FileTooLargeException
  • +
  • + FileTooManyException +
  • Forbidden
  • diff --git a/docs/classes/_exception_.invalidtokenexception.html b/docs/classes/_exception_.invalidtokenexception.html index b0b55d1..43f7c13 100644 --- a/docs/classes/_exception_.invalidtokenexception.html +++ b/docs/classes/_exception_.invalidtokenexception.html @@ -127,7 +127,7 @@

    constructor

    Parameters

    @@ -150,7 +150,7 @@

    code

    @@ -161,7 +161,7 @@

    errorCode

    @@ -172,7 +172,7 @@

    fields

    @@ -194,7 +194,7 @@

    msg

    @@ -308,9 +308,15 @@

    Optional stack

  • Failed
  • +
  • + FileExtensionException +
  • FileTooLargeException
  • +
  • + FileTooManyException +
  • Forbidden
  • diff --git a/docs/classes/_exception_.methodnotallowed.html b/docs/classes/_exception_.methodnotallowed.html index 7882e51..0825f65 100644 --- a/docs/classes/_exception_.methodnotallowed.html +++ b/docs/classes/_exception_.methodnotallowed.html @@ -127,7 +127,7 @@

    constructor

    Parameters

    @@ -150,7 +150,7 @@

    code

    @@ -161,7 +161,7 @@

    errorCode

    @@ -172,7 +172,7 @@

    fields

    @@ -194,7 +194,7 @@

    msg

    @@ -308,9 +308,15 @@

    Optional stack

  • Failed
  • +
  • + FileExtensionException +
  • FileTooLargeException
  • +
  • + FileTooManyException +
  • Forbidden
  • diff --git a/docs/classes/_exception_.notfound.html b/docs/classes/_exception_.notfound.html index cde0a2a..df11000 100644 --- a/docs/classes/_exception_.notfound.html +++ b/docs/classes/_exception_.notfound.html @@ -127,7 +127,7 @@

    constructor

    Parameters

    @@ -150,7 +150,7 @@

    code

    @@ -161,7 +161,7 @@

    errorCode

    @@ -172,7 +172,7 @@

    fields

    @@ -194,7 +194,7 @@

    msg

    @@ -308,9 +308,15 @@

    Optional stack

  • Failed
  • +
  • + FileExtensionException +
  • FileTooLargeException
  • +
  • + FileTooManyException +
  • Forbidden
  • diff --git a/docs/classes/_exception_.parametersexception.html b/docs/classes/_exception_.parametersexception.html index a571e83..4129335 100644 --- a/docs/classes/_exception_.parametersexception.html +++ b/docs/classes/_exception_.parametersexception.html @@ -127,7 +127,7 @@

    constructor

    Parameters

    @@ -150,7 +150,7 @@

    code

    @@ -161,7 +161,7 @@

    errorCode

    @@ -172,7 +172,7 @@

    fields

    @@ -194,7 +194,7 @@

    msg

    @@ -308,9 +308,15 @@

    Optional stack

  • Failed
  • +
  • + FileExtensionException +
  • FileTooLargeException
  • +
  • + FileTooManyException +
  • Forbidden
  • diff --git a/docs/classes/_exception_.refreshexception.html b/docs/classes/_exception_.refreshexception.html index 8fda888..16900c5 100644 --- a/docs/classes/_exception_.refreshexception.html +++ b/docs/classes/_exception_.refreshexception.html @@ -127,7 +127,7 @@

    constructor

    Parameters

    @@ -150,7 +150,7 @@

    code

    @@ -161,7 +161,7 @@

    errorCode

    @@ -172,7 +172,7 @@

    fields

    @@ -194,7 +194,7 @@

    msg

    @@ -308,9 +308,15 @@

    Optional stack

  • Failed
  • +
  • + FileExtensionException +
  • FileTooLargeException
  • +
  • + FileTooManyException +
  • Forbidden
  • diff --git a/docs/classes/_exception_.repeatexception.html b/docs/classes/_exception_.repeatexception.html index 81251fa..5bc23e9 100644 --- a/docs/classes/_exception_.repeatexception.html +++ b/docs/classes/_exception_.repeatexception.html @@ -127,7 +127,7 @@

    constructor

    Parameters

    @@ -150,7 +150,7 @@

    code

    @@ -161,7 +161,7 @@

    errorCode

    @@ -172,7 +172,7 @@

    fields

    @@ -194,7 +194,7 @@

    msg

    @@ -308,9 +308,15 @@

    Optional stack

  • Failed
  • +
  • + FileExtensionException +
  • FileTooLargeException
  • +
  • + FileTooManyException +
  • Forbidden
  • diff --git a/docs/classes/_exception_.success.html b/docs/classes/_exception_.success.html index 59dc5d0..ead1e8c 100644 --- a/docs/classes/_exception_.success.html +++ b/docs/classes/_exception_.success.html @@ -127,7 +127,7 @@

    constructor

    Parameters

    @@ -150,7 +150,7 @@

    code

    @@ -161,7 +161,7 @@

    errorCode

    @@ -172,7 +172,7 @@

    fields

    @@ -194,7 +194,7 @@

    msg

    @@ -308,9 +308,15 @@

    Optional stack

  • Failed
  • +
  • + FileExtensionException +
  • FileTooLargeException
  • +
  • + FileTooManyException +
  • Forbidden
  • diff --git a/docs/classes/_exception_.unknownexception.html b/docs/classes/_exception_.unknownexception.html index a193bfe..0061fce 100644 --- a/docs/classes/_exception_.unknownexception.html +++ b/docs/classes/_exception_.unknownexception.html @@ -127,7 +127,7 @@

    constructor

    Parameters

    @@ -150,7 +150,7 @@

    code

    @@ -161,7 +161,7 @@

    errorCode

    @@ -172,7 +172,7 @@

    fields

    @@ -194,7 +194,7 @@

    msg

    @@ -308,9 +308,15 @@

    Optional stack

  • Failed
  • +
  • + FileExtensionException +
  • FileTooLargeException
  • +
  • + FileTooManyException +
  • Forbidden
  • diff --git a/docs/classes/_extended_validator_.extendedvalidator.html b/docs/classes/_extended_validator_.extendedvalidator.html index 8ab5ba6..580dde7 100644 --- a/docs/classes/_extended_validator_.extendedvalidator.html +++ b/docs/classes/_extended_validator_.extendedvalidator.html @@ -451,7 +451,7 @@

    hasProperty

  • @@ -1038,7 +1038,7 @@

    isFloat

  • @@ -1075,7 +1075,7 @@

    isFloat2

  • @@ -1453,7 +1453,7 @@

    isInt2

  • @@ -1490,7 +1490,7 @@

    isInt3

  • @@ -2445,7 +2445,7 @@

    objPropertiesIsNotEmpty

  • @@ -2479,7 +2479,7 @@

    objPropertyIsNotEmpty

  • @@ -2513,7 +2513,7 @@

    toBoolean

  • @@ -2544,7 +2544,7 @@

    toDate

  • @@ -2575,7 +2575,7 @@

    toFloat

  • @@ -2606,7 +2606,7 @@

    toInt

  • diff --git a/docs/classes/_file_.uploader.html b/docs/classes/_file_.uploader.html index 704aecd..3182aca 100644 --- a/docs/classes/_file_.uploader.html +++ b/docs/classes/_file_.uploader.html @@ -88,43 +88,43 @@

    Hierarchy

    Index

    -
    +

    Constructors

    -
    +

    constructor

    -
    @@ -173,7 +173,7 @@

    pluginPath

    pluginPath: __type
    @@ -183,7 +183,7 @@

    plugins

    plugins: object
    @@ -205,7 +205,7 @@

    loadConfig

  • @@ -239,7 +239,7 @@

    loadMainApi

  • @@ -267,7 +267,7 @@

    loadPlugin

  • @@ -298,7 +298,7 @@

    loadPlugins

  • diff --git a/docs/classes/_mixin_.jsonmixin.html b/docs/classes/_mixin_.jsonmixin.html index c44732a..74af339 100644 --- a/docs/classes/_mixin_.jsonmixin.html +++ b/docs/classes/_mixin_.jsonmixin.html @@ -110,7 +110,7 @@

    Private fields

    fields: string[] | undefined
  • diff --git a/docs/classes/_plugin_.plugin.html b/docs/classes/_plugin_.plugin.html index 8820527..2fb8d20 100644 --- a/docs/classes/_plugin_.plugin.html +++ b/docs/classes/_plugin_.plugin.html @@ -126,7 +126,7 @@

    constructor

  • Parameters

    @@ -148,7 +148,7 @@

    controllers

    controllers: object
    @@ -168,7 +168,7 @@

    models

    models: object
    @@ -188,7 +188,7 @@

    name

    name: string
    @@ -210,7 +210,7 @@

    addController

  • @@ -247,7 +247,7 @@

    addModel

  • @@ -284,7 +284,7 @@

    getModel

  • diff --git a/docs/classes/_sse_.messagebroker.html b/docs/classes/_sse_.messagebroker.html index 335a376..14fc475 100644 --- a/docs/classes/_sse_.messagebroker.html +++ b/docs/classes/_sse_.messagebroker.html @@ -133,7 +133,7 @@

    constructor

  • @@ -165,7 +165,7 @@

    Private buffer

    buffer: string[]
  • @@ -175,7 +175,7 @@

    Private defaultId

    defaultId: number
    @@ -185,7 +185,7 @@

    messages

    messages: string[] = []
    @@ -200,7 +200,7 @@

    Private retry

    retry: number | undefined
    @@ -217,7 +217,7 @@

    addMessage

  • @@ -260,7 +260,7 @@

    existMessage

  • @@ -282,7 +282,7 @@

    flushBuffer

  • @@ -304,7 +304,7 @@

    heartbeat

  • @@ -338,7 +338,7 @@

    increaseId

  • @@ -360,7 +360,7 @@

    joinBuffer

  • @@ -382,7 +382,7 @@

    pop

  • @@ -404,7 +404,7 @@

    resetEventId

  • @@ -426,7 +426,7 @@

    setEventId

  • @@ -457,7 +457,7 @@

    setRetry

  • diff --git a/docs/classes/_sse_.sse.html b/docs/classes/_sse_.sse.html index 88b92a1..d92ef6e 100644 --- a/docs/classes/_sse_.sse.html +++ b/docs/classes/_sse_.sse.html @@ -179,7 +179,7 @@

    constructor

    Parameters

    @@ -440,7 +440,7 @@

    _transform

    Parameters

    diff --git a/docs/classes/_sse_.subscription.html b/docs/classes/_sse_.subscription.html index 7b4547f..7b81a62 100644 --- a/docs/classes/_sse_.subscription.html +++ b/docs/classes/_sse_.subscription.html @@ -159,7 +159,7 @@

    constructor

    Parameters

    @@ -214,7 +214,7 @@

    value

    value: number
    @@ -306,7 +306,7 @@

    _read

    Returns void

    diff --git a/docs/enums/_enums_.tokentype.html b/docs/enums/_enums_.tokentype.html index c742e3a..c856277 100644 --- a/docs/enums/_enums_.tokentype.html +++ b/docs/enums/_enums_.tokentype.html @@ -100,7 +100,7 @@

    ACCESS

    ACCESS: = "access"
    @@ -110,7 +110,7 @@

    REFRESH

    REFRESH: = "refresh"
    diff --git a/docs/enums/_enums_.useractive.html b/docs/enums/_enums_.useractive.html index 2e5ec36..1d8c0ae 100644 --- a/docs/enums/_enums_.useractive.html +++ b/docs/enums/_enums_.useractive.html @@ -100,7 +100,7 @@

    ACTIVE

    ACTIVE: = 1
    @@ -110,7 +110,7 @@

    NOT_ACTIVE

    NOT_ACTIVE: = 2
    diff --git a/docs/enums/_enums_.useradmin.html b/docs/enums/_enums_.useradmin.html index 4e3a2d8..ccc7c22 100644 --- a/docs/enums/_enums_.useradmin.html +++ b/docs/enums/_enums_.useradmin.html @@ -100,7 +100,7 @@

    ADMIN

    ADMIN: = 2
    @@ -110,7 +110,7 @@

    COMMON

    COMMON: = 1
    diff --git a/docs/interfaces/_core_.fileargs.html b/docs/interfaces/_core_.fileargs.html index 8993466..ce80e81 100644 --- a/docs/interfaces/_core_.fileargs.html +++ b/docs/interfaces/_core_.fileargs.html @@ -102,7 +102,7 @@

    Optional extension

    extension: undefined | string
    @@ -112,7 +112,7 @@

    Optional name

    name: undefined | string
    @@ -122,7 +122,7 @@

    Optional path

    path: undefined | string
    @@ -132,7 +132,7 @@

    Optional size

    size: undefined | number
    @@ -142,7 +142,7 @@

    Optional type

    type: undefined | number
    diff --git a/docs/interfaces/_core_.logargs.html b/docs/interfaces/_core_.logargs.html index fa3c0e7..a17e8f2 100644 --- a/docs/interfaces/_core_.logargs.html +++ b/docs/interfaces/_core_.logargs.html @@ -104,7 +104,7 @@

    Optional authority

    authority: undefined | string
    @@ -114,7 +114,7 @@

    Optional message

    message: undefined | string
    @@ -124,7 +124,7 @@

    Optional method

    method: undefined | string
    @@ -134,7 +134,7 @@

    Optional path

    path: undefined | string
    @@ -144,7 +144,7 @@

    Optional status_code

    status_code: undefined | number
    @@ -154,7 +154,7 @@

    Optional user_id

    user_id: undefined | number
    @@ -164,7 +164,7 @@

    Optional user_name

    user_name: undefined | string
    diff --git a/docs/interfaces/_exception_.exception.html b/docs/interfaces/_exception_.exception.html index 3f94778..310e47c 100644 --- a/docs/interfaces/_exception_.exception.html +++ b/docs/interfaces/_exception_.exception.html @@ -107,7 +107,7 @@

    Optional code

    code: undefined | number
    @@ -117,7 +117,7 @@

    Optional errorCode

    errorCode: undefined | number
    @@ -127,7 +127,7 @@

    Optional msg

    msg: any
    @@ -218,9 +218,15 @@

    Optional msg

  • Failed
  • +
  • + FileExtensionException +
  • FileTooLargeException
  • +
  • + FileTooManyException +
  • Forbidden
  • diff --git a/docs/interfaces/_extended_validator_.isfloatoptions.html b/docs/interfaces/_extended_validator_.isfloatoptions.html index e061350..9ba2894 100644 --- a/docs/interfaces/_extended_validator_.isfloatoptions.html +++ b/docs/interfaces/_extended_validator_.isfloatoptions.html @@ -108,7 +108,7 @@

    Optional gt

    gt: undefined | number
    @@ -118,7 +118,7 @@

    Optional lt

    lt: undefined | number
    @@ -128,7 +128,7 @@

    Optional max

    max: undefined | number
    @@ -138,7 +138,7 @@

    Optional min

    min: undefined | number
    diff --git a/docs/interfaces/_extended_validator_.isintoptions.html b/docs/interfaces/_extended_validator_.isintoptions.html index 55427d3..32a3f34 100644 --- a/docs/interfaces/_extended_validator_.isintoptions.html +++ b/docs/interfaces/_extended_validator_.isintoptions.html @@ -109,7 +109,7 @@

    Optional allow_leading_allow_leading_zeroes: undefined | false | true

    @@ -119,7 +119,7 @@

    Optional gt

    gt: undefined | number
    @@ -129,7 +129,7 @@

    Optional lt

    lt: undefined | number
    @@ -139,7 +139,7 @@

    Optional max

    max: undefined | number
    @@ -149,7 +149,7 @@

    Optional min

    min: undefined | number
    diff --git a/docs/interfaces/_lin_router_.meta.html b/docs/interfaces/_lin_router_.meta.html index 70a660d..15745f0 100644 --- a/docs/interfaces/_lin_router_.meta.html +++ b/docs/interfaces/_lin_router_.meta.html @@ -100,7 +100,7 @@

    Optional auth

    auth: undefined | string
    @@ -110,7 +110,7 @@

    Optional module

    module: undefined | string
    @@ -120,7 +120,7 @@

    Optional mount

    mount: undefined | false | true
    diff --git a/docs/interfaces/_password_hash_.option.html b/docs/interfaces/_password_hash_.option.html index 2bdb7e9..d4ac105 100644 --- a/docs/interfaces/_password_hash_.option.html +++ b/docs/interfaces/_password_hash_.option.html @@ -100,7 +100,7 @@

    Optional algorithm

    algorithm: undefined | string
    @@ -110,7 +110,7 @@

    Optional iterations

    iterations: undefined | number
    @@ -120,7 +120,7 @@

    Optional saltLength

    saltLength: undefined | number
    diff --git a/docs/interfaces/_util_.objoptions.html b/docs/interfaces/_util_.objoptions.html index eff8f54..9c94609 100644 --- a/docs/interfaces/_util_.objoptions.html +++ b/docs/interfaces/_util_.objoptions.html @@ -99,7 +99,7 @@

    Optional filter

    filter: undefined | function
    @@ -109,7 +109,7 @@

    Optional prefix

    prefix: undefined | string
    diff --git a/docs/modules/_config_.html b/docs/modules/_config_.html index 43fb05f..2971f34 100644 --- a/docs/modules/_config_.html +++ b/docs/modules/_config_.html @@ -93,7 +93,7 @@

    Const config

    config: Config = new Config()
    diff --git a/docs/modules/_core_.html b/docs/modules/_core_.html index adcd997..311fb64 100644 --- a/docs/modules/_core_.html +++ b/docs/modules/_core_.html @@ -108,7 +108,7 @@

    Const __version__

    __version__: "0.0.1" = "0.0.1"
    @@ -118,7 +118,7 @@

    Const disableLoading

    disableLoading: unique symbol = Symbol('disableLoading')
    @@ -128,7 +128,7 @@

    Const routeMetaInfo

    routeMetaInfo: Map<any, any> = new Map()
    diff --git a/docs/modules/_db_.html b/docs/modules/_db_.html index 560e1e7..5b61606 100644 --- a/docs/modules/_db_.html +++ b/docs/modules/_db_.html @@ -94,7 +94,7 @@

    Const database

    database: any = config.getItem('db.database', 'lin-cms')
    @@ -109,7 +109,7 @@

    Const db

    db: Sequelize = new Sequelize(database, username, password, {host: host,port: port,dialect: type,logging: logging,timezone: '+08:00'})
    @@ -124,7 +124,7 @@

    Const host

    host: any = config.getItem('db.host', 'localhost')
    @@ -139,7 +139,7 @@

    Const logging

    logging: any = config.getItem('db.logging', true)
    @@ -154,7 +154,7 @@

    Const password

    password: any = config.getItem('db.password', '123456')
    @@ -169,7 +169,7 @@

    Const port

    port: any = config.getItem('db.port', 3306)
    @@ -184,7 +184,7 @@

    Const type

    type: any = config.getItem('db.type', 'mysql')
    @@ -199,7 +199,7 @@

    Const username

    username: any = config.getItem('db.username', 'root')
    diff --git a/docs/modules/_exception_.html b/docs/modules/_exception_.html index 995094f..6d00ddc 100644 --- a/docs/modules/_exception_.html +++ b/docs/modules/_exception_.html @@ -76,7 +76,9 @@

    Classes

  • AuthFailed
  • ExpiredTokenException
  • Failed
  • +
  • FileExtensionException
  • FileTooLargeException
  • +
  • FileTooManyException
  • Forbidden
  • HttpException
  • InvalidTokenException
  • @@ -184,9 +186,15 @@

    Interfaces

  • Failed
  • +
  • + FileExtensionException +
  • FileTooLargeException
  • +
  • + FileTooManyException +
  • Forbidden
  • diff --git a/docs/modules/_extend_.html b/docs/modules/_extend_.html index b4cf49b..85e3b8f 100644 --- a/docs/modules/_extend_.html +++ b/docs/modules/_extend_.html @@ -74,6 +74,7 @@

    Index

    Functions

    +
    + +

    checkFileNums

    +
      +
    • checkFileNums(nums: number): boolean
    • +
    +
      +
    • + +

      Parameters

      +
        +
      • +
        nums: number
        +
      • +
      +

      Returns boolean

      +
    • +
    +

    checkSingleFileSize

    @@ -121,7 +145,7 @@

    checkSingleFileSize

  • Parameters

    @@ -144,7 +168,7 @@

    checkTotalFileSize

  • Parameters

    @@ -167,7 +191,7 @@

    Const json

  • @@ -201,7 +225,7 @@

    Const logging

  • @@ -238,7 +262,7 @@

    Const multipart

  • @@ -271,7 +295,7 @@

    Const success

  • @@ -306,7 +330,7 @@

    transform

  • Parameters

    @@ -403,6 +427,9 @@

    Returns void checkFileExtension

  • +
  • + checkFileNums +
  • checkSingleFileSize
  • diff --git a/docs/modules/_extended_validator_.html b/docs/modules/_extended_validator_.html index 9edea09..2d03bdb 100644 --- a/docs/modules/_extended_validator_.html +++ b/docs/modules/_extended_validator_.html @@ -100,7 +100,7 @@

    Const extendedValidator

    extendedValidator: ExtendedValidator = new ExtendedValidator()
    diff --git a/docs/modules/_factory_.html b/docs/modules/_factory_.html index 9f6dffb..e44b9de 100644 --- a/docs/modules/_factory_.html +++ b/docs/modules/_factory_.html @@ -98,7 +98,7 @@

    modelExtend

  • diff --git a/docs/modules/_file_.html b/docs/modules/_file_.html index b7bd9a5..deaccef 100644 --- a/docs/modules/_file_.html +++ b/docs/modules/_file_.html @@ -70,10 +70,10 @@

    External module "file"

    Index

    -
    +

    Classes

    @@ -156,7 +156,7 @@

    Classes

    @@ -194,7 +194,7 @@

    type

    type: IntegerDataTypeConstructor = Sequelize.INTEGER
  • @@ -205,7 +205,7 @@

    module

    module: object
    @@ -214,7 +214,7 @@

    type

    type: StringDataType = Sequelize.STRING({ length: 50 })
    @@ -226,7 +226,7 @@

    options

    options: object
    @@ -235,7 +235,7 @@

    createdAt

    createdAt: boolean = false
    @@ -245,7 +245,7 @@

    tableName

    tableName: string = "lin_auth"
    @@ -255,7 +255,7 @@

    updatedAt

    updatedAt: boolean = false
    @@ -267,7 +267,7 @@

    Const FileInterface

    FileInterface: object
    @@ -281,7 +281,7 @@

    extension

    extension: object
    @@ -290,7 +290,7 @@

    type

    type: StringDataType = Sequelize.STRING(20)
    @@ -301,7 +301,7 @@

    id

    id: object
    @@ -310,7 +310,7 @@

    autoIncrement

    autoIncrement: boolean = true
    @@ -320,7 +320,7 @@

    primaryKey

    primaryKey: boolean = true
    @@ -330,7 +330,7 @@

    type

    type: IntegerDataTypeConstructor = Sequelize.INTEGER
    @@ -341,7 +341,7 @@

    name

    name: object
    @@ -350,7 +350,7 @@

    allowNull

    allowNull: boolean = false
    @@ -360,7 +360,7 @@

    type

    type: StringDataType = Sequelize.STRING(30)
    @@ -371,7 +371,7 @@

    path

    path: object
    @@ -380,7 +380,7 @@

    allowNull

    allowNull: boolean = false
    @@ -390,7 +390,7 @@

    type

    type: StringDataType = Sequelize.STRING({ length: 500 })
    @@ -401,7 +401,7 @@

    size

    size: object
    @@ -410,7 +410,7 @@

    allowNull

    allowNull: boolean = true
    @@ -420,7 +420,7 @@

    type

    type: IntegerDataTypeConstructor = Sequelize.INTEGER
    @@ -431,7 +431,7 @@

    type

    type: object
    @@ -440,7 +440,7 @@

    allowNull

    allowNull: boolean = false
    @@ -450,7 +450,7 @@

    comment

    comment: string = "1 local,其他表示其他地方"
    @@ -460,7 +460,7 @@

    defaultValue

    defaultValue: number = 1
    @@ -470,7 +470,7 @@

    type

    type: TinyIntegerDataTypeConstructor = Sequelize.TINYINT
    @@ -482,7 +482,7 @@

    Const GroupInterface

    GroupInterface: object
    @@ -496,7 +496,7 @@

    attributes

    attributes: object
    @@ -505,7 +505,7 @@

    id

    id: object
    @@ -514,7 +514,7 @@

    autoIncrement

    autoIncrement: boolean = true
    @@ -524,7 +524,7 @@

    primaryKey

    primaryKey: boolean = true
    @@ -534,7 +534,7 @@

    type

    type: IntegerDataTypeConstructor = Sequelize.INTEGER
    @@ -545,7 +545,7 @@

    info

    info: object
    @@ -554,7 +554,7 @@

    allowNull

    allowNull: boolean = true
    @@ -564,7 +564,7 @@

    type

    type: StringDataType = Sequelize.STRING({ length: 255 })
    @@ -575,7 +575,7 @@

    name

    name: object
    @@ -584,7 +584,7 @@

    type

    type: StringDataType = Sequelize.STRING({ length: 60 })
    @@ -596,7 +596,7 @@

    options

    options: object
    @@ -605,7 +605,7 @@

    createdAt

    createdAt: boolean = false
    @@ -615,7 +615,7 @@

    tableName

    tableName: string = "lin_group"
    @@ -625,7 +625,7 @@

    updatedAt

    updatedAt: boolean = false
    @@ -637,7 +637,7 @@

    Const InfoCrudMixin

    InfoCrudMixin: object
    @@ -651,7 +651,7 @@

    attributes

    attributes: object
    @@ -666,7 +666,7 @@

    options

    options: object
    @@ -675,7 +675,7 @@

    createdAt

    createdAt: string = "create_time"
    @@ -685,7 +685,7 @@

    deletedAt

    deletedAt: string = "delete_time"
    @@ -695,7 +695,7 @@

    paranoid

    paranoid: boolean = true
    @@ -705,7 +705,7 @@

    updatedAt

    updatedAt: string = "update_time"
    @@ -715,7 +715,7 @@

    getterMethods

    getterMethods: object
    @@ -728,7 +728,7 @@

    createTime

  • Returns any

    @@ -744,7 +744,7 @@

    Const LogInterface

    LogInterface: object
    @@ -758,7 +758,7 @@

    attributes

    attributes: object
    @@ -767,7 +767,7 @@

    authority

    authority: object
    @@ -776,7 +776,7 @@

    type

    type: StringDataType = Sequelize.STRING(100)
    @@ -787,7 +787,7 @@

    id

    id: object
    @@ -796,7 +796,7 @@

    autoIncrement

    autoIncrement: boolean = true
    @@ -806,7 +806,7 @@

    primaryKey

    primaryKey: boolean = true
    @@ -816,7 +816,7 @@

    type

    type: IntegerDataTypeConstructor = Sequelize.INTEGER
  • @@ -827,7 +827,7 @@

    message

    message: object
    @@ -836,7 +836,7 @@

    type

    type: StringDataType = Sequelize.STRING({ length: 450 })
    @@ -847,7 +847,7 @@

    method

    method: object
    @@ -856,7 +856,7 @@

    type

    type: StringDataType = Sequelize.STRING(20)
    @@ -867,7 +867,7 @@

    path

    path: object
    @@ -876,7 +876,7 @@

    type

    type: StringDataType = Sequelize.STRING(50)
    @@ -887,7 +887,7 @@

    status_code

    status_code: object
    @@ -896,7 +896,7 @@

    type

    type: IntegerDataTypeConstructor = Sequelize.INTEGER
    @@ -907,7 +907,7 @@

    user_id

    user_id: object
    @@ -916,7 +916,7 @@

    allowNull

    allowNull: boolean = false
    @@ -926,7 +926,7 @@

    type

    type: IntegerDataTypeConstructor = Sequelize.INTEGER
    @@ -937,7 +937,7 @@

    user_name

    user_name: object
    @@ -946,7 +946,7 @@

    type

    type: StringDataType = Sequelize.STRING(20)
    @@ -958,7 +958,7 @@

    options

    options: object
    @@ -967,7 +967,7 @@

    createdAt

    createdAt: string = "time"
    @@ -977,7 +977,7 @@

    tableName

    tableName: string = "lin_log"
    @@ -987,7 +987,7 @@

    updatedAt

    updatedAt: boolean = false
    @@ -997,7 +997,7 @@

    getterMethods

    getterMethods: object
    @@ -1010,7 +1010,7 @@

    time

  • Returns any

    @@ -1026,7 +1026,7 @@

    Const UserInterface

    UserInterface: object
    @@ -1040,7 +1040,7 @@

    options

    options: object & object = merge({tableName: 'lin_user',getterMethods: {isAdmin() {// @ts-ignorereturn this.getDataValue('admin') === UserAdmin.ADMIN;},isActive() {// @ts-ignorereturn this.getDataValue('active') === UserActive.ACTIVE;}}},InfoCrudMixin.options)
  • @@ -1050,7 +1050,7 @@

    attributes

    attributes: object
    @@ -1059,7 +1059,7 @@

    active

    active: object
    @@ -1068,7 +1068,7 @@

    allowNull

    allowNull: boolean = false
    @@ -1078,7 +1078,7 @@

    defaultValue

    defaultValue: number = 1
    @@ -1088,7 +1088,7 @@

    type

    type: TinyIntegerDataTypeConstructor = Sequelize.TINYINT
    @@ -1099,7 +1099,7 @@

    admin

    admin: object
    @@ -1108,7 +1108,7 @@

    allowNull

    allowNull: boolean = false
    @@ -1118,7 +1118,7 @@

    defaultValue

    defaultValue: number = 1
    @@ -1128,7 +1128,7 @@

    type

    type: TinyIntegerDataTypeConstructor = Sequelize.TINYINT
    @@ -1139,7 +1139,7 @@

    email

    email: object
    @@ -1148,7 +1148,7 @@

    allowNull

    allowNull: boolean = true
    @@ -1158,7 +1158,7 @@

    type

    type: StringDataType = Sequelize.STRING({ length: 100 })
    @@ -1168,7 +1168,7 @@

    unique

    unique: boolean = true
    @@ -1179,7 +1179,7 @@

    group_id

    group_id: object
    @@ -1188,7 +1188,7 @@

    allowNull

    allowNull: boolean = true
    @@ -1198,7 +1198,7 @@

    type

    type: IntegerDataTypeConstructor = Sequelize.INTEGER
    @@ -1209,7 +1209,7 @@

    id

    id: object
    @@ -1218,7 +1218,7 @@

    autoIncrement

    autoIncrement: boolean = true
    @@ -1228,7 +1228,7 @@

    primaryKey

    primaryKey: boolean = true
    @@ -1238,7 +1238,7 @@

    type

    type: IntegerDataTypeConstructor = Sequelize.INTEGER
    @@ -1249,7 +1249,7 @@

    nickname

    nickname: object
    @@ -1258,7 +1258,7 @@

    allowNull

    allowNull: boolean = false
    @@ -1268,7 +1268,7 @@

    type

    type: StringDataType = Sequelize.STRING({ length: 24 })
    @@ -1278,7 +1278,7 @@

    unique

    unique: boolean = true
    @@ -1289,7 +1289,7 @@

    password

    password: object
    @@ -1298,7 +1298,7 @@

    type

    type: StringDataType = Sequelize.STRING({ length: 100 })
    @@ -1312,7 +1312,7 @@

    get

  • Returns any

    @@ -1329,7 +1329,7 @@

    set

  • Parameters

    diff --git a/docs/modules/_jwt_.html b/docs/modules/_jwt_.html index 5270a5d..d3514e9 100644 --- a/docs/modules/_jwt_.html +++ b/docs/modules/_jwt_.html @@ -110,7 +110,7 @@

    Const jwt

    jwt: Token = new Token(config.getItem('secret'),config.getItem('accessExp'),config.getItem('refreshExp'))
    @@ -132,7 +132,7 @@

    adminRequired

  • @@ -175,7 +175,7 @@

    checkUserIsActive

  • Parameters

    @@ -198,7 +198,7 @@

    createAccessToken

  • @@ -235,7 +235,7 @@

    createRefreshToken

  • @@ -272,7 +272,7 @@

    getTokens

  • @@ -311,7 +311,7 @@

    groupRequired

  • @@ -354,7 +354,7 @@

    loginRequired

  • @@ -397,7 +397,7 @@

    parseHeader

  • @@ -434,7 +434,7 @@

    refreshTokenRequired

  • @@ -477,7 +477,7 @@

    refreshTokenRequiredWithUnifyException

  • @@ -520,7 +520,7 @@

    verifyAccessToken

  • @@ -557,7 +557,7 @@

    verifyRefreshToken

  • diff --git a/docs/modules/_log_.html b/docs/modules/_log_.html index cb22958..ebad2b9 100644 --- a/docs/modules/_log_.html +++ b/docs/modules/_log_.html @@ -95,7 +95,7 @@

    Const REG_XP

    REG_XP: RegExp = /(?<=\{)[^}]*(?=\})/g
    @@ -112,7 +112,7 @@

    Const logger

  • @@ -161,7 +161,7 @@

    parseTemplate

  • @@ -206,7 +206,7 @@

    writeLog

  • Parameters

    diff --git a/docs/modules/_middleware_.html b/docs/modules/_middleware_.html index 5c84993..8d0f2eb 100644 --- a/docs/modules/_middleware_.html +++ b/docs/modules/_middleware_.html @@ -92,7 +92,7 @@

    Const error

  • @@ -123,7 +123,7 @@

    Const log

  • diff --git a/docs/modules/_password_hash_.html b/docs/modules/_password_hash_.html index 3638fb9..d047a18 100644 --- a/docs/modules/_password_hash_.html +++ b/docs/modules/_password_hash_.html @@ -104,7 +104,7 @@

    Let saltChars

    saltChars: string = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"
    @@ -114,7 +114,7 @@

    Let saltCharsCount

    saltCharsCount: number = saltChars.length
    @@ -131,7 +131,7 @@

    Const generate

  • @@ -172,7 +172,7 @@

    generateHash

  • Parameters

    @@ -204,7 +204,7 @@

    generateSalt

  • Parameters

    @@ -227,7 +227,7 @@

    Const isHashed

  • @@ -260,7 +260,7 @@

    Const verify

  • diff --git a/docs/modules/_util_.html b/docs/modules/_util_.html index a790b3e..c1ded05 100644 --- a/docs/modules/_util_.html +++ b/docs/modules/_util_.html @@ -123,7 +123,7 @@

    Const isNegative

    isNegative: isNegative = extendedValidator.isNegative
    @@ -133,7 +133,7 @@

    Const isNotEmpty

    isNotEmpty: isNotEmpty = extendedValidator.isNotEmpty
    @@ -143,7 +143,7 @@

    Const isPositive

    isPositive: isPositive = extendedValidator.isPositive
    @@ -160,7 +160,7 @@

    assert

  • @@ -191,7 +191,7 @@

    checkDateFormat

  • @@ -222,7 +222,7 @@

    decorateProp

  • @@ -292,7 +292,7 @@

    findAuthAndModule

  • @@ -323,7 +323,7 @@

    findMetaByAuth

  • Parameters

    @@ -346,7 +346,7 @@

    getAllFieldNames

  • @@ -401,7 +401,7 @@

    getAllMethodNames

  • @@ -442,7 +442,7 @@

    getFiles

  • @@ -473,7 +473,7 @@

    Const isConstructor

  • Parameters

    @@ -496,7 +496,7 @@

    Const isEmpty

  • Parameters

    @@ -524,7 +524,7 @@

    Const isFunction

  • Parameters

    @@ -547,7 +547,7 @@

    Const isNil

  • Parameters

    @@ -570,7 +570,7 @@

    Const isObject

  • Parameters

    @@ -593,7 +593,7 @@

    Const isString

  • Parameters

    @@ -616,7 +616,7 @@

    Const isSymbol

  • Parameters

    @@ -639,7 +639,7 @@

    Const isUndefined

  • Parameters

    @@ -662,7 +662,7 @@

    paginate

  • Parameters

    @@ -693,7 +693,7 @@

    prefixAndFilter

  • Parameters

    @@ -719,7 +719,7 @@

    Const strVal

  • Parameters

    @@ -742,7 +742,7 @@

    toHump

  • Parameters

    @@ -765,7 +765,7 @@

    toLine

  • Parameters

    @@ -788,7 +788,7 @@

    unsets

  • Parameters

    @@ -814,7 +814,7 @@

    Const validatePath

  • Parameters

    diff --git a/lib/exception.ts b/lib/exception.ts index d9a632e..05699f0 100644 --- a/lib/exception.ts +++ b/lib/exception.ts @@ -376,3 +376,51 @@ export class FileTooLargeException extends HttpException { } } } + +/** + * 文件数量过多 + */ +export class FileTooManyException extends HttpException { + public code = 413; + public msg = '文件数量过多'; + public errorCode = 10120; + + constructor(ex?: Exception) { + super(); + if (ex && ex.code) { + assert(isInteger(ex.code)); + this.code = ex.code; + } + if (ex && ex.msg) { + this.msg = ex.msg; + } + if (ex && ex.errorCode) { + assert(isInteger(ex.errorCode)); + this.errorCode = ex.errorCode; + } + } +} + +/** + * 文件扩展名不符合规范 + */ +export class FileExtensionException extends HttpException { + public code = 401; + public msg = '文件扩展名不符合规范'; + public errorCode = 10130; + + constructor(ex?: Exception) { + super(); + if (ex && ex.code) { + assert(isInteger(ex.code)); + this.code = ex.code; + } + if (ex && ex.msg) { + this.msg = ex.msg; + } + if (ex && ex.errorCode) { + assert(isInteger(ex.errorCode)); + this.errorCode = ex.errorCode; + } + } +} diff --git a/lib/extend.ts b/lib/extend.ts index 01f100c..cd801e6 100644 --- a/lib/extend.ts +++ b/lib/extend.ts @@ -3,7 +3,9 @@ import { HttpException, Success, Exception, - FileTooLargeException + FileTooLargeException, + FileExtensionException, + FileTooManyException } from './exception'; import consola from 'consola'; import { toLine, unsets } from './util'; @@ -128,21 +130,25 @@ export const multipart = (app: Application) => { // console.log('encoding: ' + part.encoding); // console.log('mime: ' + part.mime); // part.readableLength 31492 检查单个文件的大小 - // 超过长度,则跳过该文件 - // 检查extension,失败跳过该文件 - // const ext = extname(part.filename); - if (checkFileExtension(extname(part.filename))) { - if (checkSingleFileSize(part.readableLength)) { - // 计算总大小 - totalSize += part.readableLength; - const tmp = cloneDeep(part); - files.push(tmp); - } + // 超过长度,报错 + // 检查extension,报错 + if (!checkFileExtension(extname(part.filename))) { + throw new FileExtensionException(); } + if (!checkSingleFileSize(part.readableLength)) { + throw new FileTooLargeException(); + } + // 计算总大小 + totalSize += part.readableLength; + const tmp = cloneDeep(part); + files.push(tmp); // 恢复再次接受data part.resume(); } } + if (!checkFileNums(files.length)) { + throw new FileTooManyException(); + } if (!checkTotalFileSize(totalSize)) { throw new FileTooLargeException(); } @@ -163,6 +169,12 @@ function checkTotalFileSize(size: number) { return confSize > size; } +function checkFileNums(nums: number) { + // 默认 10 + const confNums = config.getItem('file_nums', 10); + return confNums > nums; +} + function checkFileExtension(ext: string) { const fileInclude = config.getItem('file_include'); const fileExclude = config.getItem('file_exclude'); diff --git a/lib/file.ts b/lib/file.ts index c220bca..35ee62c 100644 --- a/lib/file.ts +++ b/lib/file.ts @@ -12,7 +12,7 @@ import { config } from './config'; /** * 上传文件类,所有文件上传的基类 */ -class Uploader { +export class Uploader { private storeDir: string | undefined; constructor(storeDir?: string) { this.storeDir = storeDir; From 5b2e5adec7d75dc259a378a71c6c8cfcea869916 Mon Sep 17 00:00:00 2001 From: pedro Date: Mon, 13 May 2019 16:04:03 +0800 Subject: [PATCH 07/15] =?UTF-8?q?feat:=E6=B7=BB=E5=8A=A0limite=E4=B8=AD?= =?UTF-8?q?=E9=97=B4=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/assets/js/search.js | 2 +- docs/classes/_config_.config.html | 17 +- docs/classes/_core_.auth.html | 13 +- docs/classes/_core_.file.html | 19 +- docs/classes/_core_.group.html | 11 +- docs/classes/_core_.lin.html | 19 +- docs/classes/_core_.log.html | 25 +- docs/classes/_core_.manager.html | 21 +- docs/classes/_core_.user.html | 33 +- docs/classes/_exception_.authfailed.html | 16 +- .../_exception_.expiredtokenexception.html | 16 +- docs/classes/_exception_.failed.html | 16 +- .../_exception_.fileextensionexception.html | 16 +- .../_exception_.filetoolargeexception.html | 16 +- .../_exception_.filetoomanyexception.html | 16 +- docs/classes/_exception_.forbidden.html | 18 +- docs/classes/_exception_.httpexception.html | 19 +- .../_exception_.invalidtokenexception.html | 16 +- docs/classes/_exception_.limitexception.html | 460 ++++++++++++++++ .../classes/_exception_.methodnotallowed.html | 16 +- docs/classes/_exception_.notfound.html | 16 +- .../_exception_.parametersexception.html | 16 +- .../classes/_exception_.refreshexception.html | 16 +- docs/classes/_exception_.repeatexception.html | 16 +- docs/classes/_exception_.success.html | 16 +- .../classes/_exception_.unknownexception.html | 16 +- ...extended_validator_.extendedvalidator.html | 25 +- docs/classes/_file_.uploader.html | 19 +- docs/classes/_jwt_.token.html | 19 +- docs/classes/_lin_router_.linrouter.html | 17 +- .../classes/_lin_router_.linrouter.layer.html | 3 + .../_lin_router_.linrouter.paramname.html | 3 + .../classes/_lin_validator_.linvalidator.html | 25 +- docs/classes/_lin_validator_.rule.html | 21 +- docs/classes/_loader_.loader.html | 21 +- docs/classes/_mixin_.jsonmixin.html | 5 +- docs/classes/_plugin_.plugin.html | 17 +- docs/classes/_sse_.messagebroker.html | 33 +- docs/classes/_sse_.sse.html | 7 +- docs/classes/_sse_.subscription.html | 9 +- docs/enums/_enums_.tokentype.html | 7 +- docs/enums/_enums_.useractive.html | 7 +- docs/enums/_enums_.useradmin.html | 7 +- docs/globals.html | 4 + docs/index.html | 3 + docs/interfaces/_core_.fileargs.html | 13 +- docs/interfaces/_core_.logargs.html | 17 +- docs/interfaces/_exception_.exception.html | 12 +- .../_extended_validator_.isfloatoptions.html | 11 +- .../_extended_validator_.isintoptions.html | 13 +- .../_limiter_.ratelimitoptions.html | 490 ++++++++++++++++++ .../_lin_router_.linrouter.ilayeroptions.html | 3 + ...in_router_.linrouter.iparammiddleware.html | 3 + ...inrouter.irouterallowedmethodsoptions.html | 3 + ..._lin_router_.linrouter.iroutercontext.html | 3 + ..._lin_router_.linrouter.irouteroptions.html | 3 + ...router_.linrouter.irouterparamcontext.html | 3 + .../_lin_router_.linrouter.iroutesmatch.html | 3 + ...in_router_.linrouter.iurloptionsquery.html | 3 + docs/interfaces/_lin_router_.meta.html | 9 +- docs/interfaces/_password_hash_.option.html | 9 +- docs/interfaces/_util_.objoptions.html | 10 +- docs/modules/_config_.html | 5 +- docs/modules/_core_.html | 9 +- docs/modules/_db_.html | 19 +- docs/modules/_enums_.html | 3 + docs/modules/_exception_.html | 7 + docs/modules/_extend_.html | 57 +- docs/modules/_extended_validator_.html | 5 +- docs/modules/_factory_.html | 5 +- docs/modules/_file_.html | 3 + docs/modules/_index_.html | 3 + docs/modules/_interface_.html | 241 ++++----- docs/modules/_jwt_.html | 29 +- docs/modules/_limiter_.html | 409 +++++++++++++++ docs/modules/_lin_router_.html | 3 + docs/modules/_lin_validator_.html | 3 + docs/modules/_loader_.html | 3 + docs/modules/_log_.html | 11 +- docs/modules/_middleware_.html | 7 +- docs/modules/_mixin_.html | 3 + docs/modules/_password_hash_.html | 17 +- docs/modules/_plugin_.html | 3 + docs/modules/_sse_.html | 3 + docs/modules/_util_.html | 93 +++- lib/exception.ts | 26 +- lib/extend.ts | 37 +- lib/file.ts | 5 +- lib/limiter.ts | 215 ++++++++ lib/util.ts | 16 + package.json | 2 + 91 files changed, 2491 insertions(+), 492 deletions(-) create mode 100644 docs/classes/_exception_.limitexception.html create mode 100644 docs/interfaces/_limiter_.ratelimitoptions.html create mode 100644 docs/modules/_limiter_.html create mode 100644 lib/limiter.ts diff --git a/docs/assets/js/search.js b/docs/assets/js/search.js index 5c05fa5..9bf4f80 100644 --- a/docs/assets/js/search.js +++ b/docs/assets/js/search.js @@ -1,3 +1,3 @@ var typedoc = typedoc || {}; typedoc.search = typedoc.search || {}; - typedoc.search.data = {"kinds":{"1":"External module","4":"Enumeration","16":"Enumeration member","32":"Variable","64":"Function","128":"Class","256":"Interface","512":"Constructor","1024":"Property","2048":"Method","65536":"Type literal","262144":"Accessor","2097152":"Object literal","4194304":"Type alias"},"rows":[{"id":0,"kind":1,"name":"\"config\"","url":"modules/_config_.html","classes":"tsd-kind-external-module"},{"id":1,"kind":128,"name":"Config","url":"classes/_config_.config.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"config\""},{"id":2,"kind":1024,"name":"store","url":"classes/_config_.config.html#store","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"config\".Config"},{"id":3,"kind":2048,"name":"initApp","url":"classes/_config_.config.html#initapp","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"config\".Config"},{"id":4,"kind":2048,"name":"getItem","url":"classes/_config_.config.html#getitem","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"config\".Config"},{"id":5,"kind":2048,"name":"hasItem","url":"classes/_config_.config.html#hasitem","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"config\".Config"},{"id":6,"kind":2048,"name":"setItem","url":"classes/_config_.config.html#setitem","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"config\".Config"},{"id":7,"kind":2048,"name":"getConfigFromFile","url":"classes/_config_.config.html#getconfigfromfile","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"config\".Config"},{"id":8,"kind":2048,"name":"getConfigFromObj","url":"classes/_config_.config.html#getconfigfromobj","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"config\".Config"},{"id":9,"kind":32,"name":"config","url":"modules/_config_.html#config-1","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"config\""},{"id":10,"kind":1,"name":"\"exception\"","url":"modules/_exception_.html","classes":"tsd-kind-external-module"},{"id":11,"kind":256,"name":"Exception","url":"interfaces/_exception_.exception.html","classes":"tsd-kind-interface tsd-parent-kind-external-module","parent":"\"exception\""},{"id":12,"kind":1024,"name":"code","url":"interfaces/_exception_.exception.html#code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"exception\".Exception"},{"id":13,"kind":1024,"name":"msg","url":"interfaces/_exception_.exception.html#msg","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"exception\".Exception"},{"id":14,"kind":1024,"name":"errorCode","url":"interfaces/_exception_.exception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"exception\".Exception"},{"id":15,"kind":128,"name":"HttpException","url":"classes/_exception_.httpexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":16,"kind":1024,"name":"code","url":"classes/_exception_.httpexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"exception\".HttpException"},{"id":17,"kind":1024,"name":"msg","url":"classes/_exception_.httpexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"exception\".HttpException"},{"id":18,"kind":1024,"name":"errorCode","url":"classes/_exception_.httpexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"exception\".HttpException"},{"id":19,"kind":1024,"name":"fields","url":"classes/_exception_.httpexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"exception\".HttpException"},{"id":20,"kind":512,"name":"constructor","url":"classes/_exception_.httpexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"exception\".HttpException"},{"id":21,"kind":1024,"name":"name","url":"classes/_exception_.httpexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".HttpException"},{"id":22,"kind":1024,"name":"message","url":"classes/_exception_.httpexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".HttpException"},{"id":23,"kind":1024,"name":"stack","url":"classes/_exception_.httpexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".HttpException"},{"id":24,"kind":1024,"name":"Error","url":"classes/_exception_.httpexception.html#error","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"\"exception\".HttpException"},{"id":25,"kind":128,"name":"Success","url":"classes/_exception_.success.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":26,"kind":1024,"name":"code","url":"classes/_exception_.success.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Success"},{"id":27,"kind":1024,"name":"msg","url":"classes/_exception_.success.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Success"},{"id":28,"kind":1024,"name":"errorCode","url":"classes/_exception_.success.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Success"},{"id":29,"kind":512,"name":"constructor","url":"classes/_exception_.success.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Success"},{"id":30,"kind":1024,"name":"fields","url":"classes/_exception_.success.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Success"},{"id":31,"kind":1024,"name":"name","url":"classes/_exception_.success.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Success"},{"id":32,"kind":1024,"name":"message","url":"classes/_exception_.success.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Success"},{"id":33,"kind":1024,"name":"stack","url":"classes/_exception_.success.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".Success"},{"id":34,"kind":128,"name":"Failed","url":"classes/_exception_.failed.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":35,"kind":1024,"name":"code","url":"classes/_exception_.failed.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Failed"},{"id":36,"kind":1024,"name":"msg","url":"classes/_exception_.failed.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Failed"},{"id":37,"kind":1024,"name":"errorCode","url":"classes/_exception_.failed.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Failed"},{"id":38,"kind":512,"name":"constructor","url":"classes/_exception_.failed.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Failed"},{"id":39,"kind":1024,"name":"fields","url":"classes/_exception_.failed.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Failed"},{"id":40,"kind":1024,"name":"name","url":"classes/_exception_.failed.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Failed"},{"id":41,"kind":1024,"name":"message","url":"classes/_exception_.failed.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Failed"},{"id":42,"kind":1024,"name":"stack","url":"classes/_exception_.failed.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".Failed"},{"id":43,"kind":128,"name":"AuthFailed","url":"classes/_exception_.authfailed.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":44,"kind":1024,"name":"code","url":"classes/_exception_.authfailed.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".AuthFailed"},{"id":45,"kind":1024,"name":"msg","url":"classes/_exception_.authfailed.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".AuthFailed"},{"id":46,"kind":1024,"name":"errorCode","url":"classes/_exception_.authfailed.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".AuthFailed"},{"id":47,"kind":512,"name":"constructor","url":"classes/_exception_.authfailed.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".AuthFailed"},{"id":48,"kind":1024,"name":"fields","url":"classes/_exception_.authfailed.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".AuthFailed"},{"id":49,"kind":1024,"name":"name","url":"classes/_exception_.authfailed.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".AuthFailed"},{"id":50,"kind":1024,"name":"message","url":"classes/_exception_.authfailed.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".AuthFailed"},{"id":51,"kind":1024,"name":"stack","url":"classes/_exception_.authfailed.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".AuthFailed"},{"id":52,"kind":128,"name":"NotFound","url":"classes/_exception_.notfound.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":53,"kind":1024,"name":"code","url":"classes/_exception_.notfound.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".NotFound"},{"id":54,"kind":1024,"name":"msg","url":"classes/_exception_.notfound.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".NotFound"},{"id":55,"kind":1024,"name":"errorCode","url":"classes/_exception_.notfound.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".NotFound"},{"id":56,"kind":512,"name":"constructor","url":"classes/_exception_.notfound.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".NotFound"},{"id":57,"kind":1024,"name":"fields","url":"classes/_exception_.notfound.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".NotFound"},{"id":58,"kind":1024,"name":"name","url":"classes/_exception_.notfound.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".NotFound"},{"id":59,"kind":1024,"name":"message","url":"classes/_exception_.notfound.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".NotFound"},{"id":60,"kind":1024,"name":"stack","url":"classes/_exception_.notfound.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".NotFound"},{"id":61,"kind":128,"name":"ParametersException","url":"classes/_exception_.parametersexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":62,"kind":1024,"name":"code","url":"classes/_exception_.parametersexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ParametersException"},{"id":63,"kind":1024,"name":"msg","url":"classes/_exception_.parametersexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ParametersException"},{"id":64,"kind":1024,"name":"errorCode","url":"classes/_exception_.parametersexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ParametersException"},{"id":65,"kind":512,"name":"constructor","url":"classes/_exception_.parametersexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ParametersException"},{"id":66,"kind":1024,"name":"fields","url":"classes/_exception_.parametersexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".ParametersException"},{"id":67,"kind":1024,"name":"name","url":"classes/_exception_.parametersexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".ParametersException"},{"id":68,"kind":1024,"name":"message","url":"classes/_exception_.parametersexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".ParametersException"},{"id":69,"kind":1024,"name":"stack","url":"classes/_exception_.parametersexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".ParametersException"},{"id":70,"kind":128,"name":"InvalidTokenException","url":"classes/_exception_.invalidtokenexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":71,"kind":1024,"name":"code","url":"classes/_exception_.invalidtokenexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".InvalidTokenException"},{"id":72,"kind":1024,"name":"msg","url":"classes/_exception_.invalidtokenexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".InvalidTokenException"},{"id":73,"kind":1024,"name":"errorCode","url":"classes/_exception_.invalidtokenexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".InvalidTokenException"},{"id":74,"kind":512,"name":"constructor","url":"classes/_exception_.invalidtokenexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".InvalidTokenException"},{"id":75,"kind":1024,"name":"fields","url":"classes/_exception_.invalidtokenexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".InvalidTokenException"},{"id":76,"kind":1024,"name":"name","url":"classes/_exception_.invalidtokenexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".InvalidTokenException"},{"id":77,"kind":1024,"name":"message","url":"classes/_exception_.invalidtokenexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".InvalidTokenException"},{"id":78,"kind":1024,"name":"stack","url":"classes/_exception_.invalidtokenexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".InvalidTokenException"},{"id":79,"kind":128,"name":"ExpiredTokenException","url":"classes/_exception_.expiredtokenexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":80,"kind":1024,"name":"code","url":"classes/_exception_.expiredtokenexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ExpiredTokenException"},{"id":81,"kind":1024,"name":"msg","url":"classes/_exception_.expiredtokenexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ExpiredTokenException"},{"id":82,"kind":1024,"name":"errorCode","url":"classes/_exception_.expiredtokenexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ExpiredTokenException"},{"id":83,"kind":512,"name":"constructor","url":"classes/_exception_.expiredtokenexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ExpiredTokenException"},{"id":84,"kind":1024,"name":"fields","url":"classes/_exception_.expiredtokenexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".ExpiredTokenException"},{"id":85,"kind":1024,"name":"name","url":"classes/_exception_.expiredtokenexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".ExpiredTokenException"},{"id":86,"kind":1024,"name":"message","url":"classes/_exception_.expiredtokenexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".ExpiredTokenException"},{"id":87,"kind":1024,"name":"stack","url":"classes/_exception_.expiredtokenexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".ExpiredTokenException"},{"id":88,"kind":128,"name":"UnknownException","url":"classes/_exception_.unknownexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":89,"kind":1024,"name":"code","url":"classes/_exception_.unknownexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".UnknownException"},{"id":90,"kind":1024,"name":"msg","url":"classes/_exception_.unknownexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".UnknownException"},{"id":91,"kind":1024,"name":"errorCode","url":"classes/_exception_.unknownexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".UnknownException"},{"id":92,"kind":512,"name":"constructor","url":"classes/_exception_.unknownexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".UnknownException"},{"id":93,"kind":1024,"name":"fields","url":"classes/_exception_.unknownexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".UnknownException"},{"id":94,"kind":1024,"name":"name","url":"classes/_exception_.unknownexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".UnknownException"},{"id":95,"kind":1024,"name":"message","url":"classes/_exception_.unknownexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".UnknownException"},{"id":96,"kind":1024,"name":"stack","url":"classes/_exception_.unknownexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".UnknownException"},{"id":97,"kind":128,"name":"RepeatException","url":"classes/_exception_.repeatexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":98,"kind":1024,"name":"code","url":"classes/_exception_.repeatexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RepeatException"},{"id":99,"kind":1024,"name":"msg","url":"classes/_exception_.repeatexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RepeatException"},{"id":100,"kind":1024,"name":"errorCode","url":"classes/_exception_.repeatexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RepeatException"},{"id":101,"kind":512,"name":"constructor","url":"classes/_exception_.repeatexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RepeatException"},{"id":102,"kind":1024,"name":"fields","url":"classes/_exception_.repeatexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".RepeatException"},{"id":103,"kind":1024,"name":"name","url":"classes/_exception_.repeatexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".RepeatException"},{"id":104,"kind":1024,"name":"message","url":"classes/_exception_.repeatexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".RepeatException"},{"id":105,"kind":1024,"name":"stack","url":"classes/_exception_.repeatexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".RepeatException"},{"id":106,"kind":128,"name":"Forbidden","url":"classes/_exception_.forbidden.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":107,"kind":1024,"name":"code","url":"classes/_exception_.forbidden.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Forbidden"},{"id":108,"kind":1024,"name":"msg","url":"classes/_exception_.forbidden.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Forbidden"},{"id":109,"kind":1024,"name":"errorCode","url":"classes/_exception_.forbidden.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Forbidden"},{"id":110,"kind":512,"name":"constructor","url":"classes/_exception_.forbidden.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Forbidden"},{"id":111,"kind":1024,"name":"fields","url":"classes/_exception_.forbidden.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Forbidden"},{"id":112,"kind":1024,"name":"name","url":"classes/_exception_.forbidden.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Forbidden"},{"id":113,"kind":1024,"name":"message","url":"classes/_exception_.forbidden.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Forbidden"},{"id":114,"kind":1024,"name":"stack","url":"classes/_exception_.forbidden.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".Forbidden"},{"id":115,"kind":128,"name":"MethodNotAllowed","url":"classes/_exception_.methodnotallowed.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":116,"kind":1024,"name":"code","url":"classes/_exception_.methodnotallowed.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".MethodNotAllowed"},{"id":117,"kind":1024,"name":"msg","url":"classes/_exception_.methodnotallowed.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".MethodNotAllowed"},{"id":118,"kind":1024,"name":"errorCode","url":"classes/_exception_.methodnotallowed.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".MethodNotAllowed"},{"id":119,"kind":512,"name":"constructor","url":"classes/_exception_.methodnotallowed.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".MethodNotAllowed"},{"id":120,"kind":1024,"name":"fields","url":"classes/_exception_.methodnotallowed.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".MethodNotAllowed"},{"id":121,"kind":1024,"name":"name","url":"classes/_exception_.methodnotallowed.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".MethodNotAllowed"},{"id":122,"kind":1024,"name":"message","url":"classes/_exception_.methodnotallowed.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".MethodNotAllowed"},{"id":123,"kind":1024,"name":"stack","url":"classes/_exception_.methodnotallowed.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".MethodNotAllowed"},{"id":124,"kind":128,"name":"RefreshException","url":"classes/_exception_.refreshexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":125,"kind":1024,"name":"code","url":"classes/_exception_.refreshexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RefreshException"},{"id":126,"kind":1024,"name":"msg","url":"classes/_exception_.refreshexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RefreshException"},{"id":127,"kind":1024,"name":"errorCode","url":"classes/_exception_.refreshexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RefreshException"},{"id":128,"kind":512,"name":"constructor","url":"classes/_exception_.refreshexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RefreshException"},{"id":129,"kind":1024,"name":"fields","url":"classes/_exception_.refreshexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".RefreshException"},{"id":130,"kind":1024,"name":"name","url":"classes/_exception_.refreshexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".RefreshException"},{"id":131,"kind":1024,"name":"message","url":"classes/_exception_.refreshexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".RefreshException"},{"id":132,"kind":1024,"name":"stack","url":"classes/_exception_.refreshexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".RefreshException"},{"id":133,"kind":128,"name":"FileTooLargeException","url":"classes/_exception_.filetoolargeexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":134,"kind":1024,"name":"code","url":"classes/_exception_.filetoolargeexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileTooLargeException"},{"id":135,"kind":1024,"name":"msg","url":"classes/_exception_.filetoolargeexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileTooLargeException"},{"id":136,"kind":1024,"name":"errorCode","url":"classes/_exception_.filetoolargeexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileTooLargeException"},{"id":137,"kind":512,"name":"constructor","url":"classes/_exception_.filetoolargeexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileTooLargeException"},{"id":138,"kind":1024,"name":"fields","url":"classes/_exception_.filetoolargeexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".FileTooLargeException"},{"id":139,"kind":1024,"name":"name","url":"classes/_exception_.filetoolargeexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".FileTooLargeException"},{"id":140,"kind":1024,"name":"message","url":"classes/_exception_.filetoolargeexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".FileTooLargeException"},{"id":141,"kind":1024,"name":"stack","url":"classes/_exception_.filetoolargeexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".FileTooLargeException"},{"id":142,"kind":128,"name":"FileTooManyException","url":"classes/_exception_.filetoomanyexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":143,"kind":1024,"name":"code","url":"classes/_exception_.filetoomanyexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileTooManyException"},{"id":144,"kind":1024,"name":"msg","url":"classes/_exception_.filetoomanyexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileTooManyException"},{"id":145,"kind":1024,"name":"errorCode","url":"classes/_exception_.filetoomanyexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileTooManyException"},{"id":146,"kind":512,"name":"constructor","url":"classes/_exception_.filetoomanyexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileTooManyException"},{"id":147,"kind":1024,"name":"fields","url":"classes/_exception_.filetoomanyexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".FileTooManyException"},{"id":148,"kind":1024,"name":"name","url":"classes/_exception_.filetoomanyexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".FileTooManyException"},{"id":149,"kind":1024,"name":"message","url":"classes/_exception_.filetoomanyexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".FileTooManyException"},{"id":150,"kind":1024,"name":"stack","url":"classes/_exception_.filetoomanyexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".FileTooManyException"},{"id":151,"kind":128,"name":"FileExtensionException","url":"classes/_exception_.fileextensionexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":152,"kind":1024,"name":"code","url":"classes/_exception_.fileextensionexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileExtensionException"},{"id":153,"kind":1024,"name":"msg","url":"classes/_exception_.fileextensionexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileExtensionException"},{"id":154,"kind":1024,"name":"errorCode","url":"classes/_exception_.fileextensionexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileExtensionException"},{"id":155,"kind":512,"name":"constructor","url":"classes/_exception_.fileextensionexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileExtensionException"},{"id":156,"kind":1024,"name":"fields","url":"classes/_exception_.fileextensionexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".FileExtensionException"},{"id":157,"kind":1024,"name":"name","url":"classes/_exception_.fileextensionexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".FileExtensionException"},{"id":158,"kind":1024,"name":"message","url":"classes/_exception_.fileextensionexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".FileExtensionException"},{"id":159,"kind":1024,"name":"stack","url":"classes/_exception_.fileextensionexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".FileExtensionException"},{"id":160,"kind":1,"name":"\"enums\"","url":"modules/_enums_.html","classes":"tsd-kind-external-module"},{"id":161,"kind":4,"name":"UserAdmin","url":"enums/_enums_.useradmin.html","classes":"tsd-kind-enum tsd-parent-kind-external-module","parent":"\"enums\""},{"id":162,"kind":16,"name":"COMMON","url":"enums/_enums_.useradmin.html#common","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"enums\".UserAdmin"},{"id":163,"kind":16,"name":"ADMIN","url":"enums/_enums_.useradmin.html#admin","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"enums\".UserAdmin"},{"id":164,"kind":4,"name":"UserActive","url":"enums/_enums_.useractive.html","classes":"tsd-kind-enum tsd-parent-kind-external-module","parent":"\"enums\""},{"id":165,"kind":16,"name":"ACTIVE","url":"enums/_enums_.useractive.html#active","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"enums\".UserActive"},{"id":166,"kind":16,"name":"NOT_ACTIVE","url":"enums/_enums_.useractive.html#not_active","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"enums\".UserActive"},{"id":167,"kind":4,"name":"TokenType","url":"enums/_enums_.tokentype.html","classes":"tsd-kind-enum tsd-parent-kind-external-module","parent":"\"enums\""},{"id":168,"kind":16,"name":"ACCESS","url":"enums/_enums_.tokentype.html#access","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"enums\".TokenType"},{"id":169,"kind":16,"name":"REFRESH","url":"enums/_enums_.tokentype.html#refresh","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"enums\".TokenType"},{"id":170,"kind":1,"name":"\"jwt\"","url":"modules/_jwt_.html","classes":"tsd-kind-external-module"},{"id":171,"kind":128,"name":"Token","url":"classes/_jwt_.token.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"jwt\""},{"id":172,"kind":1024,"name":"secret","url":"classes/_jwt_.token.html#secret","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":173,"kind":1024,"name":"accessExp","url":"classes/_jwt_.token.html#accessexp","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":174,"kind":1024,"name":"refreshExp","url":"classes/_jwt_.token.html#refreshexp","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":175,"kind":512,"name":"constructor","url":"classes/_jwt_.token.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":176,"kind":2048,"name":"initApp","url":"classes/_jwt_.token.html#initapp","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":177,"kind":2048,"name":"createAccessToken","url":"classes/_jwt_.token.html#createaccesstoken","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":178,"kind":2048,"name":"createRefreshToken","url":"classes/_jwt_.token.html#createrefreshtoken","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":179,"kind":2048,"name":"verifyToken","url":"classes/_jwt_.token.html#verifytoken","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":180,"kind":32,"name":"jwt","url":"modules/_jwt_.html#jwt","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":181,"kind":64,"name":"createAccessToken","url":"modules/_jwt_.html#createaccesstoken","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"jwt\""},{"id":182,"kind":64,"name":"createRefreshToken","url":"modules/_jwt_.html#createrefreshtoken","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"jwt\""},{"id":183,"kind":64,"name":"verifyAccessToken","url":"modules/_jwt_.html#verifyaccesstoken","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"jwt\""},{"id":184,"kind":64,"name":"verifyRefreshToken","url":"modules/_jwt_.html#verifyrefreshtoken","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"jwt\""},{"id":185,"kind":64,"name":"getTokens","url":"modules/_jwt_.html#gettokens","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":186,"kind":64,"name":"parseHeader","url":"modules/_jwt_.html#parseheader","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":187,"kind":64,"name":"checkUserIsActive","url":"modules/_jwt_.html#checkuserisactive","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":188,"kind":64,"name":"loginRequired","url":"modules/_jwt_.html#loginrequired","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":189,"kind":64,"name":"refreshTokenRequired","url":"modules/_jwt_.html#refreshtokenrequired","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":190,"kind":64,"name":"refreshTokenRequiredWithUnifyException","url":"modules/_jwt_.html#refreshtokenrequiredwithunifyexception","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":191,"kind":64,"name":"groupRequired","url":"modules/_jwt_.html#grouprequired","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":192,"kind":64,"name":"adminRequired","url":"modules/_jwt_.html#adminrequired","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":193,"kind":1,"name":"\"extended-validator\"","url":"modules/_extended_validator_.html","classes":"tsd-kind-external-module"},{"id":194,"kind":256,"name":"IsFloatOptions","url":"interfaces/_extended_validator_.isfloatoptions.html","classes":"tsd-kind-interface tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"extended-validator\""},{"id":195,"kind":1024,"name":"min","url":"interfaces/_extended_validator_.isfloatoptions.html#min","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsFloatOptions"},{"id":196,"kind":1024,"name":"max","url":"interfaces/_extended_validator_.isfloatoptions.html#max","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsFloatOptions"},{"id":197,"kind":1024,"name":"gt","url":"interfaces/_extended_validator_.isfloatoptions.html#gt","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsFloatOptions"},{"id":198,"kind":1024,"name":"lt","url":"interfaces/_extended_validator_.isfloatoptions.html#lt","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsFloatOptions"},{"id":199,"kind":256,"name":"IsIntOptions","url":"interfaces/_extended_validator_.isintoptions.html","classes":"tsd-kind-interface tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"extended-validator\""},{"id":200,"kind":1024,"name":"min","url":"interfaces/_extended_validator_.isintoptions.html#min","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsIntOptions"},{"id":201,"kind":1024,"name":"max","url":"interfaces/_extended_validator_.isintoptions.html#max","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsIntOptions"},{"id":202,"kind":1024,"name":"allow_leading_zeroes","url":"interfaces/_extended_validator_.isintoptions.html#allow_leading_zeroes","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsIntOptions"},{"id":203,"kind":1024,"name":"lt","url":"interfaces/_extended_validator_.isintoptions.html#lt","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsIntOptions"},{"id":204,"kind":1024,"name":"gt","url":"interfaces/_extended_validator_.isintoptions.html#gt","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsIntOptions"},{"id":205,"kind":128,"name":"ExtendedValidator","url":"classes/_extended_validator_.extendedvalidator.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"extended-validator\""},{"id":206,"kind":2048,"name":"hasProperty","url":"classes/_extended_validator_.extendedvalidator.html#hasproperty","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":207,"kind":2048,"name":"objPropertyIsNotEmpty","url":"classes/_extended_validator_.extendedvalidator.html#objpropertyisnotempty","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":208,"kind":2048,"name":"objPropertiesIsNotEmpty","url":"classes/_extended_validator_.extendedvalidator.html#objpropertiesisnotempty","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":209,"kind":2048,"name":"toInt","url":"classes/_extended_validator_.extendedvalidator.html#toint","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":210,"kind":2048,"name":"toFloat","url":"classes/_extended_validator_.extendedvalidator.html#tofloat","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":211,"kind":2048,"name":"toBoolean","url":"classes/_extended_validator_.extendedvalidator.html#toboolean","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":212,"kind":2048,"name":"toDate","url":"classes/_extended_validator_.extendedvalidator.html#todate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":213,"kind":2048,"name":"isFloat","url":"classes/_extended_validator_.extendedvalidator.html#isfloat","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":214,"kind":2048,"name":"isFloat2","url":"classes/_extended_validator_.extendedvalidator.html#isfloat2","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":215,"kind":2048,"name":"isInt2","url":"classes/_extended_validator_.extendedvalidator.html#isint2","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":216,"kind":2048,"name":"isInt3","url":"classes/_extended_validator_.extendedvalidator.html#isint3","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":217,"kind":2048,"name":"validate","url":"classes/_extended_validator_.extendedvalidator.html#validate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":218,"kind":2048,"name":"validateOrReject","url":"classes/_extended_validator_.extendedvalidator.html#validateorreject","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":219,"kind":2048,"name":"validateSync","url":"classes/_extended_validator_.extendedvalidator.html#validatesync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":220,"kind":2048,"name":"validateValueByMetadata","url":"classes/_extended_validator_.extendedvalidator.html#validatevaluebymetadata","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":221,"kind":2048,"name":"isDefined","url":"classes/_extended_validator_.extendedvalidator.html#isdefined","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":222,"kind":2048,"name":"equals","url":"classes/_extended_validator_.extendedvalidator.html#equals","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":223,"kind":2048,"name":"notEquals","url":"classes/_extended_validator_.extendedvalidator.html#notequals","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":224,"kind":2048,"name":"isEmpty","url":"classes/_extended_validator_.extendedvalidator.html#isempty","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":225,"kind":2048,"name":"isNotEmpty","url":"classes/_extended_validator_.extendedvalidator.html#isnotempty","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":226,"kind":2048,"name":"isIn","url":"classes/_extended_validator_.extendedvalidator.html#isin","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":227,"kind":2048,"name":"isNotIn","url":"classes/_extended_validator_.extendedvalidator.html#isnotin","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":228,"kind":2048,"name":"isBoolean","url":"classes/_extended_validator_.extendedvalidator.html#isboolean","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":229,"kind":2048,"name":"isDate","url":"classes/_extended_validator_.extendedvalidator.html#isdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":230,"kind":2048,"name":"isString","url":"classes/_extended_validator_.extendedvalidator.html#isstring","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":231,"kind":2048,"name":"isDateString","url":"classes/_extended_validator_.extendedvalidator.html#isdatestring","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":232,"kind":2048,"name":"isArray","url":"classes/_extended_validator_.extendedvalidator.html#isarray","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":233,"kind":2048,"name":"isEnum","url":"classes/_extended_validator_.extendedvalidator.html#isenum","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":234,"kind":2048,"name":"isNumber","url":"classes/_extended_validator_.extendedvalidator.html#isnumber","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":235,"kind":2048,"name":"isInt","url":"classes/_extended_validator_.extendedvalidator.html#isint","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":236,"kind":2048,"name":"isDivisibleBy","url":"classes/_extended_validator_.extendedvalidator.html#isdivisibleby","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":237,"kind":2048,"name":"isPositive","url":"classes/_extended_validator_.extendedvalidator.html#ispositive","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":238,"kind":2048,"name":"isNegative","url":"classes/_extended_validator_.extendedvalidator.html#isnegative","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":239,"kind":2048,"name":"min","url":"classes/_extended_validator_.extendedvalidator.html#min","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":240,"kind":2048,"name":"max","url":"classes/_extended_validator_.extendedvalidator.html#max","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":241,"kind":2048,"name":"minDate","url":"classes/_extended_validator_.extendedvalidator.html#mindate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":242,"kind":2048,"name":"maxDate","url":"classes/_extended_validator_.extendedvalidator.html#maxdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":243,"kind":2048,"name":"isBooleanString","url":"classes/_extended_validator_.extendedvalidator.html#isbooleanstring","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":244,"kind":2048,"name":"isNumberString","url":"classes/_extended_validator_.extendedvalidator.html#isnumberstring","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":245,"kind":2048,"name":"contains","url":"classes/_extended_validator_.extendedvalidator.html#contains","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":246,"kind":2048,"name":"notContains","url":"classes/_extended_validator_.extendedvalidator.html#notcontains","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":247,"kind":2048,"name":"isAlpha","url":"classes/_extended_validator_.extendedvalidator.html#isalpha","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":248,"kind":2048,"name":"isAlphanumeric","url":"classes/_extended_validator_.extendedvalidator.html#isalphanumeric","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":249,"kind":2048,"name":"isAscii","url":"classes/_extended_validator_.extendedvalidator.html#isascii","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":250,"kind":2048,"name":"isBase64","url":"classes/_extended_validator_.extendedvalidator.html#isbase64","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":251,"kind":2048,"name":"isByteLength","url":"classes/_extended_validator_.extendedvalidator.html#isbytelength","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":252,"kind":2048,"name":"isCreditCard","url":"classes/_extended_validator_.extendedvalidator.html#iscreditcard","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":253,"kind":2048,"name":"isCurrency","url":"classes/_extended_validator_.extendedvalidator.html#iscurrency","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":254,"kind":2048,"name":"isEmail","url":"classes/_extended_validator_.extendedvalidator.html#isemail","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":255,"kind":2048,"name":"isFQDN","url":"classes/_extended_validator_.extendedvalidator.html#isfqdn","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":256,"kind":2048,"name":"isFullWidth","url":"classes/_extended_validator_.extendedvalidator.html#isfullwidth","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":257,"kind":2048,"name":"isHalfWidth","url":"classes/_extended_validator_.extendedvalidator.html#ishalfwidth","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":258,"kind":2048,"name":"isVariableWidth","url":"classes/_extended_validator_.extendedvalidator.html#isvariablewidth","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":259,"kind":2048,"name":"isHexColor","url":"classes/_extended_validator_.extendedvalidator.html#ishexcolor","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":260,"kind":2048,"name":"isHexadecimal","url":"classes/_extended_validator_.extendedvalidator.html#ishexadecimal","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":261,"kind":2048,"name":"isIP","url":"classes/_extended_validator_.extendedvalidator.html#isip","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":262,"kind":2048,"name":"isISBN","url":"classes/_extended_validator_.extendedvalidator.html#isisbn","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":263,"kind":2048,"name":"isISIN","url":"classes/_extended_validator_.extendedvalidator.html#isisin","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":264,"kind":2048,"name":"isISO8601","url":"classes/_extended_validator_.extendedvalidator.html#isiso8601","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":265,"kind":2048,"name":"isJSON","url":"classes/_extended_validator_.extendedvalidator.html#isjson","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":266,"kind":2048,"name":"isLowercase","url":"classes/_extended_validator_.extendedvalidator.html#islowercase","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":267,"kind":2048,"name":"isMobilePhone","url":"classes/_extended_validator_.extendedvalidator.html#ismobilephone","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":268,"kind":2048,"name":"isPhoneNumber","url":"classes/_extended_validator_.extendedvalidator.html#isphonenumber","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":269,"kind":2048,"name":"isMongoId","url":"classes/_extended_validator_.extendedvalidator.html#ismongoid","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":270,"kind":2048,"name":"isMultibyte","url":"classes/_extended_validator_.extendedvalidator.html#ismultibyte","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":271,"kind":2048,"name":"isSurrogatePair","url":"classes/_extended_validator_.extendedvalidator.html#issurrogatepair","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":272,"kind":2048,"name":"isURL","url":"classes/_extended_validator_.extendedvalidator.html#isurl","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":273,"kind":2048,"name":"isUUID","url":"classes/_extended_validator_.extendedvalidator.html#isuuid","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":274,"kind":2048,"name":"isUppercase","url":"classes/_extended_validator_.extendedvalidator.html#isuppercase","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":275,"kind":2048,"name":"length","url":"classes/_extended_validator_.extendedvalidator.html#length","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":276,"kind":2048,"name":"minLength","url":"classes/_extended_validator_.extendedvalidator.html#minlength","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":277,"kind":2048,"name":"maxLength","url":"classes/_extended_validator_.extendedvalidator.html#maxlength","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":278,"kind":2048,"name":"matches","url":"classes/_extended_validator_.extendedvalidator.html#matches","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":279,"kind":2048,"name":"isMilitaryTime","url":"classes/_extended_validator_.extendedvalidator.html#ismilitarytime","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":280,"kind":2048,"name":"arrayContains","url":"classes/_extended_validator_.extendedvalidator.html#arraycontains","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":281,"kind":2048,"name":"arrayNotContains","url":"classes/_extended_validator_.extendedvalidator.html#arraynotcontains","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":282,"kind":2048,"name":"arrayNotEmpty","url":"classes/_extended_validator_.extendedvalidator.html#arraynotempty","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":283,"kind":2048,"name":"arrayMinSize","url":"classes/_extended_validator_.extendedvalidator.html#arrayminsize","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":284,"kind":2048,"name":"arrayMaxSize","url":"classes/_extended_validator_.extendedvalidator.html#arraymaxsize","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":285,"kind":2048,"name":"arrayUnique","url":"classes/_extended_validator_.extendedvalidator.html#arrayunique","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":286,"kind":2048,"name":"isInstance","url":"classes/_extended_validator_.extendedvalidator.html#isinstance","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":287,"kind":32,"name":"extendedValidator","url":"modules/_extended_validator_.html#extendedvalidator-1","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"extended-validator\""},{"id":288,"kind":1,"name":"\"util\"","url":"modules/_util_.html","classes":"tsd-kind-external-module"},{"id":289,"kind":256,"name":"ObjOptions","url":"interfaces/_util_.objoptions.html","classes":"tsd-kind-interface tsd-parent-kind-external-module","parent":"\"util\""},{"id":290,"kind":1024,"name":"prefix","url":"interfaces/_util_.objoptions.html#prefix","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"util\".ObjOptions"},{"id":291,"kind":1024,"name":"filter","url":"interfaces/_util_.objoptions.html#filter","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"util\".ObjOptions"},{"id":292,"kind":64,"name":"isUndefined","url":"modules/_util_.html#isundefined","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":293,"kind":64,"name":"isFunction","url":"modules/_util_.html#isfunction","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":294,"kind":64,"name":"isObject","url":"modules/_util_.html#isobject","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":295,"kind":64,"name":"isString","url":"modules/_util_.html#isstring","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":296,"kind":64,"name":"isConstructor","url":"modules/_util_.html#isconstructor","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":297,"kind":64,"name":"validatePath","url":"modules/_util_.html#validatepath","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":298,"kind":64,"name":"isNil","url":"modules/_util_.html#isnil","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":299,"kind":64,"name":"isEmpty","url":"modules/_util_.html#isempty","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":300,"kind":64,"name":"isSymbol","url":"modules/_util_.html#issymbol","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":301,"kind":64,"name":"strVal","url":"modules/_util_.html#strval","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":302,"kind":32,"name":"isNotEmpty","url":"modules/_util_.html#isnotempty","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"util\""},{"id":303,"kind":32,"name":"isNegative","url":"modules/_util_.html#isnegative","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"util\""},{"id":304,"kind":32,"name":"isPositive","url":"modules/_util_.html#ispositive","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"util\""},{"id":305,"kind":64,"name":"assert","url":"modules/_util_.html#assert","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":306,"kind":64,"name":"toHump","url":"modules/_util_.html#tohump","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":307,"kind":64,"name":"toLine","url":"modules/_util_.html#toline","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":308,"kind":64,"name":"findAuthAndModule","url":"modules/_util_.html#findauthandmodule","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":309,"kind":64,"name":"findMetaByAuth","url":"modules/_util_.html#findmetabyauth","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":310,"kind":64,"name":"checkDateFormat","url":"modules/_util_.html#checkdateformat","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":311,"kind":64,"name":"paginate","url":"modules/_util_.html#paginate","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":312,"kind":64,"name":"unsets","url":"modules/_util_.html#unsets","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":313,"kind":64,"name":"decorateProp","url":"modules/_util_.html#decorateprop","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":314,"kind":64,"name":"getAllMethodNames","url":"modules/_util_.html#getallmethodnames","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":315,"kind":64,"name":"getAllFieldNames","url":"modules/_util_.html#getallfieldnames","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":316,"kind":64,"name":"prefixAndFilter","url":"modules/_util_.html#prefixandfilter","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"util\""},{"id":317,"kind":64,"name":"getFiles","url":"modules/_util_.html#getfiles","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":318,"kind":1,"name":"\"db\"","url":"modules/_db_.html","classes":"tsd-kind-external-module"},{"id":319,"kind":32,"name":"database","url":"modules/_db_.html#database","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"db\""},{"id":320,"kind":32,"name":"type","url":"modules/_db_.html#type","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"db\""},{"id":321,"kind":32,"name":"host","url":"modules/_db_.html#host","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"db\""},{"id":322,"kind":32,"name":"port","url":"modules/_db_.html#port","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"db\""},{"id":323,"kind":32,"name":"username","url":"modules/_db_.html#username","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"db\""},{"id":324,"kind":32,"name":"password","url":"modules/_db_.html#password","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"db\""},{"id":325,"kind":32,"name":"logging","url":"modules/_db_.html#logging","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"db\""},{"id":326,"kind":32,"name":"db","url":"modules/_db_.html#db","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"db\""},{"id":327,"kind":1,"name":"\"password-hash\"","url":"modules/_password_hash_.html","classes":"tsd-kind-external-module"},{"id":328,"kind":256,"name":"Option","url":"interfaces/_password_hash_.option.html","classes":"tsd-kind-interface tsd-parent-kind-external-module","parent":"\"password-hash\""},{"id":329,"kind":1024,"name":"algorithm","url":"interfaces/_password_hash_.option.html#algorithm","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"password-hash\".Option"},{"id":330,"kind":1024,"name":"saltLength","url":"interfaces/_password_hash_.option.html#saltlength","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"password-hash\".Option"},{"id":331,"kind":1024,"name":"iterations","url":"interfaces/_password_hash_.option.html#iterations","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"password-hash\".Option"},{"id":332,"kind":32,"name":"saltChars","url":"modules/_password_hash_.html#saltchars","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"password-hash\""},{"id":333,"kind":32,"name":"saltCharsCount","url":"modules/_password_hash_.html#saltcharscount","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"password-hash\""},{"id":334,"kind":64,"name":"generateSalt","url":"modules/_password_hash_.html#generatesalt","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"password-hash\""},{"id":335,"kind":64,"name":"generateHash","url":"modules/_password_hash_.html#generatehash","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"password-hash\""},{"id":336,"kind":64,"name":"generate","url":"modules/_password_hash_.html#generate","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"password-hash\""},{"id":337,"kind":64,"name":"verify","url":"modules/_password_hash_.html#verify","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"password-hash\""},{"id":338,"kind":64,"name":"isHashed","url":"modules/_password_hash_.html#ishashed","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"password-hash\""},{"id":339,"kind":1,"name":"\"interface\"","url":"modules/_interface_.html","classes":"tsd-kind-external-module"},{"id":340,"kind":2097152,"name":"InfoCrudMixin","url":"modules/_interface_.html#infocrudmixin","classes":"tsd-kind-object-literal tsd-parent-kind-external-module","parent":"\"interface\""},{"id":341,"kind":32,"name":"attributes","url":"modules/_interface_.html#infocrudmixin.attributes-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin"},{"id":342,"kind":65536,"name":"__type","url":"modules/_interface_.html#infocrudmixin.attributes-2.__type","classes":"tsd-kind-type-literal tsd-parent-kind-variable tsd-is-not-exported","parent":"\"interface\".InfoCrudMixin.attributes"},{"id":343,"kind":2097152,"name":"options","url":"modules/_interface_.html#infocrudmixin.options-2","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin"},{"id":344,"kind":32,"name":"createdAt","url":"modules/_interface_.html#infocrudmixin.options-2.createdat-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin.options"},{"id":345,"kind":32,"name":"updatedAt","url":"modules/_interface_.html#infocrudmixin.options-2.updatedat-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin.options"},{"id":346,"kind":32,"name":"deletedAt","url":"modules/_interface_.html#infocrudmixin.options-2.deletedat","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin.options"},{"id":347,"kind":32,"name":"paranoid","url":"modules/_interface_.html#infocrudmixin.options-2.paranoid","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin.options"},{"id":348,"kind":2097152,"name":"getterMethods","url":"modules/_interface_.html#infocrudmixin.options-2.gettermethods","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin.options"},{"id":349,"kind":64,"name":"createTime","url":"modules/_interface_.html#infocrudmixin.options-2.gettermethods.createtime","classes":"tsd-kind-function tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin.options.getterMethods"},{"id":350,"kind":2097152,"name":"UserInterface","url":"modules/_interface_.html#userinterface","classes":"tsd-kind-object-literal tsd-parent-kind-external-module","parent":"\"interface\""},{"id":351,"kind":2097152,"name":"attributes","url":"modules/_interface_.html#userinterface.attributes-4","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface"},{"id":352,"kind":2097152,"name":"id","url":"modules/_interface_.html#userinterface.attributes-4.id-4","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes"},{"id":353,"kind":32,"name":"type","url":"modules/_interface_.html#userinterface.attributes-4.id-4.type-26","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.id"},{"id":354,"kind":32,"name":"primaryKey","url":"modules/_interface_.html#userinterface.attributes-4.id-4.primarykey-4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.id"},{"id":355,"kind":32,"name":"autoIncrement","url":"modules/_interface_.html#userinterface.attributes-4.id-4.autoincrement-4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.id"},{"id":356,"kind":2097152,"name":"nickname","url":"modules/_interface_.html#userinterface.attributes-4.nickname","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes"},{"id":357,"kind":32,"name":"type","url":"modules/_interface_.html#userinterface.attributes-4.nickname.type-27","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.nickname"},{"id":358,"kind":32,"name":"allowNull","url":"modules/_interface_.html#userinterface.attributes-4.nickname.allownull-11","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.nickname"},{"id":359,"kind":32,"name":"unique","url":"modules/_interface_.html#userinterface.attributes-4.nickname.unique-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.nickname"},{"id":360,"kind":2097152,"name":"admin","url":"modules/_interface_.html#userinterface.attributes-4.admin","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes"},{"id":361,"kind":32,"name":"type","url":"modules/_interface_.html#userinterface.attributes-4.admin.type-23","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.admin"},{"id":362,"kind":32,"name":"allowNull","url":"modules/_interface_.html#userinterface.attributes-4.admin.allownull-8","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.admin"},{"id":363,"kind":32,"name":"defaultValue","url":"modules/_interface_.html#userinterface.attributes-4.admin.defaultvalue-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.admin"},{"id":364,"kind":2097152,"name":"active","url":"modules/_interface_.html#userinterface.attributes-4.active","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes"},{"id":365,"kind":32,"name":"type","url":"modules/_interface_.html#userinterface.attributes-4.active.type-22","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.active"},{"id":366,"kind":32,"name":"allowNull","url":"modules/_interface_.html#userinterface.attributes-4.active.allownull-7","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.active"},{"id":367,"kind":32,"name":"defaultValue","url":"modules/_interface_.html#userinterface.attributes-4.active.defaultvalue-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.active"},{"id":368,"kind":2097152,"name":"email","url":"modules/_interface_.html#userinterface.attributes-4.email","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes"},{"id":369,"kind":32,"name":"type","url":"modules/_interface_.html#userinterface.attributes-4.email.type-24","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.email"},{"id":370,"kind":32,"name":"unique","url":"modules/_interface_.html#userinterface.attributes-4.email.unique","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.email"},{"id":371,"kind":32,"name":"allowNull","url":"modules/_interface_.html#userinterface.attributes-4.email.allownull-9","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.email"},{"id":372,"kind":2097152,"name":"group_id","url":"modules/_interface_.html#userinterface.attributes-4.group_id-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes"},{"id":373,"kind":32,"name":"type","url":"modules/_interface_.html#userinterface.attributes-4.group_id-1.type-25","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.group_id"},{"id":374,"kind":32,"name":"allowNull","url":"modules/_interface_.html#userinterface.attributes-4.group_id-1.allownull-10","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.group_id"},{"id":375,"kind":2097152,"name":"password","url":"modules/_interface_.html#userinterface.attributes-4.password","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes"},{"id":376,"kind":32,"name":"type","url":"modules/_interface_.html#userinterface.attributes-4.password.type-28","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.password"},{"id":377,"kind":64,"name":"set","url":"modules/_interface_.html#userinterface.attributes-4.password.set","classes":"tsd-kind-function tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.password"},{"id":378,"kind":64,"name":"get","url":"modules/_interface_.html#userinterface.attributes-4.password.get","classes":"tsd-kind-function tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.password"},{"id":379,"kind":32,"name":"options","url":"modules/_interface_.html#userinterface.options-4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface"},{"id":380,"kind":2097152,"name":"AuthInterface","url":"modules/_interface_.html#authinterface","classes":"tsd-kind-object-literal tsd-parent-kind-external-module","parent":"\"interface\""},{"id":381,"kind":2097152,"name":"attributes","url":"modules/_interface_.html#authinterface.attributes","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface"},{"id":382,"kind":2097152,"name":"id","url":"modules/_interface_.html#authinterface.attributes.id","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes"},{"id":383,"kind":32,"name":"type","url":"modules/_interface_.html#authinterface.attributes.id.type-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes.id"},{"id":384,"kind":32,"name":"primaryKey","url":"modules/_interface_.html#authinterface.attributes.id.primarykey","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes.id"},{"id":385,"kind":32,"name":"autoIncrement","url":"modules/_interface_.html#authinterface.attributes.id.autoincrement","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes.id"},{"id":386,"kind":2097152,"name":"group_id","url":"modules/_interface_.html#authinterface.attributes.group_id","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes"},{"id":387,"kind":32,"name":"type","url":"modules/_interface_.html#authinterface.attributes.group_id.type-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes.group_id"},{"id":388,"kind":32,"name":"allowNull","url":"modules/_interface_.html#authinterface.attributes.group_id.allownull","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes.group_id"},{"id":389,"kind":2097152,"name":"auth","url":"modules/_interface_.html#authinterface.attributes.auth","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes"},{"id":390,"kind":32,"name":"type","url":"modules/_interface_.html#authinterface.attributes.auth.type","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes.auth"},{"id":391,"kind":2097152,"name":"module","url":"modules/_interface_.html#authinterface.attributes.module","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes"},{"id":392,"kind":32,"name":"type","url":"modules/_interface_.html#authinterface.attributes.module.type-3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes.module"},{"id":393,"kind":2097152,"name":"options","url":"modules/_interface_.html#authinterface.options","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface"},{"id":394,"kind":32,"name":"tableName","url":"modules/_interface_.html#authinterface.options.tablename","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.options"},{"id":395,"kind":32,"name":"createdAt","url":"modules/_interface_.html#authinterface.options.createdat","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.options"},{"id":396,"kind":32,"name":"updatedAt","url":"modules/_interface_.html#authinterface.options.updatedat","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.options"},{"id":397,"kind":2097152,"name":"GroupInterface","url":"modules/_interface_.html#groupinterface","classes":"tsd-kind-object-literal tsd-parent-kind-external-module","parent":"\"interface\""},{"id":398,"kind":2097152,"name":"attributes","url":"modules/_interface_.html#groupinterface.attributes-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface"},{"id":399,"kind":2097152,"name":"id","url":"modules/_interface_.html#groupinterface.attributes-1.id-2","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes"},{"id":400,"kind":32,"name":"type","url":"modules/_interface_.html#groupinterface.attributes-1.id-2.type-11","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes.id"},{"id":401,"kind":32,"name":"primaryKey","url":"modules/_interface_.html#groupinterface.attributes-1.id-2.primarykey-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes.id"},{"id":402,"kind":32,"name":"autoIncrement","url":"modules/_interface_.html#groupinterface.attributes-1.id-2.autoincrement-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes.id"},{"id":403,"kind":2097152,"name":"name","url":"modules/_interface_.html#groupinterface.attributes-1.name-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes"},{"id":404,"kind":32,"name":"type","url":"modules/_interface_.html#groupinterface.attributes-1.name-1.type-13","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes.name"},{"id":405,"kind":2097152,"name":"info","url":"modules/_interface_.html#groupinterface.attributes-1.info","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes"},{"id":406,"kind":32,"name":"type","url":"modules/_interface_.html#groupinterface.attributes-1.info.type-12","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes.info"},{"id":407,"kind":32,"name":"allowNull","url":"modules/_interface_.html#groupinterface.attributes-1.info.allownull-5","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes.info"},{"id":408,"kind":2097152,"name":"options","url":"modules/_interface_.html#groupinterface.options-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface"},{"id":409,"kind":32,"name":"tableName","url":"modules/_interface_.html#groupinterface.options-1.tablename-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.options"},{"id":410,"kind":32,"name":"createdAt","url":"modules/_interface_.html#groupinterface.options-1.createdat-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.options"},{"id":411,"kind":32,"name":"updatedAt","url":"modules/_interface_.html#groupinterface.options-1.updatedat-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.options"},{"id":412,"kind":2097152,"name":"LogInterface","url":"modules/_interface_.html#loginterface","classes":"tsd-kind-object-literal tsd-parent-kind-external-module","parent":"\"interface\""},{"id":413,"kind":2097152,"name":"attributes","url":"modules/_interface_.html#loginterface.attributes-3","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface"},{"id":414,"kind":2097152,"name":"id","url":"modules/_interface_.html#loginterface.attributes-3.id-3","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":415,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.id-3.type-15","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.id"},{"id":416,"kind":32,"name":"primaryKey","url":"modules/_interface_.html#loginterface.attributes-3.id-3.primarykey-3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.id"},{"id":417,"kind":32,"name":"autoIncrement","url":"modules/_interface_.html#loginterface.attributes-3.id-3.autoincrement-3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.id"},{"id":418,"kind":2097152,"name":"message","url":"modules/_interface_.html#loginterface.attributes-3.message","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":419,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.message.type-16","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.message"},{"id":420,"kind":2097152,"name":"user_id","url":"modules/_interface_.html#loginterface.attributes-3.user_id","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":421,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.user_id.type-20","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.user_id"},{"id":422,"kind":32,"name":"allowNull","url":"modules/_interface_.html#loginterface.attributes-3.user_id.allownull-6","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.user_id"},{"id":423,"kind":2097152,"name":"user_name","url":"modules/_interface_.html#loginterface.attributes-3.user_name","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":424,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.user_name.type-21","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.user_name"},{"id":425,"kind":2097152,"name":"status_code","url":"modules/_interface_.html#loginterface.attributes-3.status_code","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":426,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.status_code.type-19","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.status_code"},{"id":427,"kind":2097152,"name":"method","url":"modules/_interface_.html#loginterface.attributes-3.method","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":428,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.method.type-17","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.method"},{"id":429,"kind":2097152,"name":"path","url":"modules/_interface_.html#loginterface.attributes-3.path-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":430,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.path-1.type-18","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.path"},{"id":431,"kind":2097152,"name":"authority","url":"modules/_interface_.html#loginterface.attributes-3.authority","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":432,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.authority.type-14","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.authority"},{"id":433,"kind":2097152,"name":"options","url":"modules/_interface_.html#loginterface.options-3","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface"},{"id":434,"kind":32,"name":"tableName","url":"modules/_interface_.html#loginterface.options-3.tablename-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.options"},{"id":435,"kind":32,"name":"createdAt","url":"modules/_interface_.html#loginterface.options-3.createdat-3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.options"},{"id":436,"kind":32,"name":"updatedAt","url":"modules/_interface_.html#loginterface.options-3.updatedat-3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.options"},{"id":437,"kind":2097152,"name":"getterMethods","url":"modules/_interface_.html#loginterface.options-3.gettermethods-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.options"},{"id":438,"kind":64,"name":"time","url":"modules/_interface_.html#loginterface.options-3.gettermethods-1.time","classes":"tsd-kind-function tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.options.getterMethods"},{"id":439,"kind":2097152,"name":"FileInterface","url":"modules/_interface_.html#fileinterface","classes":"tsd-kind-object-literal tsd-parent-kind-external-module","parent":"\"interface\""},{"id":440,"kind":2097152,"name":"id","url":"modules/_interface_.html#fileinterface.id-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface"},{"id":441,"kind":32,"name":"type","url":"modules/_interface_.html#fileinterface.id-1.type-5","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.id"},{"id":442,"kind":32,"name":"primaryKey","url":"modules/_interface_.html#fileinterface.id-1.primarykey-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.id"},{"id":443,"kind":32,"name":"autoIncrement","url":"modules/_interface_.html#fileinterface.id-1.autoincrement-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.id"},{"id":444,"kind":2097152,"name":"path","url":"modules/_interface_.html#fileinterface.path","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface"},{"id":445,"kind":32,"name":"type","url":"modules/_interface_.html#fileinterface.path.type-7","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.path"},{"id":446,"kind":32,"name":"allowNull","url":"modules/_interface_.html#fileinterface.path.allownull-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.path"},{"id":447,"kind":2097152,"name":"type","url":"modules/_interface_.html#fileinterface.type-9","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface"},{"id":448,"kind":32,"name":"type","url":"modules/_interface_.html#fileinterface.type-9.type-10","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.type"},{"id":449,"kind":32,"name":"allowNull","url":"modules/_interface_.html#fileinterface.type-9.allownull-4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.type"},{"id":450,"kind":32,"name":"defaultValue","url":"modules/_interface_.html#fileinterface.type-9.defaultvalue","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.type"},{"id":451,"kind":32,"name":"comment","url":"modules/_interface_.html#fileinterface.type-9.comment","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.type"},{"id":452,"kind":2097152,"name":"name","url":"modules/_interface_.html#fileinterface.name","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface"},{"id":453,"kind":32,"name":"type","url":"modules/_interface_.html#fileinterface.name.type-6","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.name"},{"id":454,"kind":32,"name":"allowNull","url":"modules/_interface_.html#fileinterface.name.allownull-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.name"},{"id":455,"kind":2097152,"name":"extension","url":"modules/_interface_.html#fileinterface.extension","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface"},{"id":456,"kind":32,"name":"type","url":"modules/_interface_.html#fileinterface.extension.type-4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.extension"},{"id":457,"kind":2097152,"name":"size","url":"modules/_interface_.html#fileinterface.size","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface"},{"id":458,"kind":32,"name":"type","url":"modules/_interface_.html#fileinterface.size.type-8","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.size"},{"id":459,"kind":32,"name":"allowNull","url":"modules/_interface_.html#fileinterface.size.allownull-3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.size"},{"id":460,"kind":1,"name":"\"extend\"","url":"modules/_extend_.html","classes":"tsd-kind-external-module"},{"id":461,"kind":64,"name":"json","url":"modules/_extend_.html#json","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"extend\""},{"id":462,"kind":64,"name":"transform","url":"modules/_extend_.html#transform","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"extend\""},{"id":463,"kind":64,"name":"success","url":"modules/_extend_.html#success","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"extend\""},{"id":464,"kind":64,"name":"logging","url":"modules/_extend_.html#logging","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"extend\""},{"id":465,"kind":64,"name":"multipart","url":"modules/_extend_.html#multipart","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"extend\""},{"id":466,"kind":64,"name":"checkSingleFileSize","url":"modules/_extend_.html#checksinglefilesize","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"extend\""},{"id":467,"kind":64,"name":"checkTotalFileSize","url":"modules/_extend_.html#checktotalfilesize","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"extend\""},{"id":468,"kind":64,"name":"checkFileNums","url":"modules/_extend_.html#checkfilenums","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"extend\""},{"id":469,"kind":64,"name":"checkFileExtension","url":"modules/_extend_.html#checkfileextension","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"extend\""},{"id":470,"kind":1,"name":"\"plugin\"","url":"modules/_plugin_.html","classes":"tsd-kind-external-module"},{"id":471,"kind":128,"name":"Plugin","url":"classes/_plugin_.plugin.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"plugin\""},{"id":472,"kind":1024,"name":"name","url":"classes/_plugin_.plugin.html#name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"plugin\".Plugin"},{"id":473,"kind":1024,"name":"models","url":"classes/_plugin_.plugin.html#models","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"plugin\".Plugin"},{"id":474,"kind":65536,"name":"__type","url":"classes/_plugin_.plugin.html#models.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"plugin\".Plugin.models"},{"id":475,"kind":1024,"name":"controllers","url":"classes/_plugin_.plugin.html#controllers","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"plugin\".Plugin"},{"id":476,"kind":65536,"name":"__type","url":"classes/_plugin_.plugin.html#controllers.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"plugin\".Plugin.controllers"},{"id":477,"kind":512,"name":"constructor","url":"classes/_plugin_.plugin.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"plugin\".Plugin"},{"id":478,"kind":2048,"name":"addModel","url":"classes/_plugin_.plugin.html#addmodel","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"plugin\".Plugin"},{"id":479,"kind":2048,"name":"getModel","url":"classes/_plugin_.plugin.html#getmodel","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"plugin\".Plugin"},{"id":480,"kind":2048,"name":"addController","url":"classes/_plugin_.plugin.html#addcontroller","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"plugin\".Plugin"},{"id":481,"kind":1,"name":"\"loader\"","url":"modules/_loader_.html","classes":"tsd-kind-external-module"},{"id":482,"kind":128,"name":"Loader","url":"classes/_loader_.loader.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"loader\""},{"id":483,"kind":1024,"name":"mainRouter","url":"classes/_loader_.loader.html#mainrouter","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":484,"kind":1024,"name":"pluginPath","url":"classes/_loader_.loader.html#pluginpath","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":485,"kind":1024,"name":"app","url":"classes/_loader_.loader.html#app","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"loader\".Loader"},{"id":486,"kind":1024,"name":"plugins","url":"classes/_loader_.loader.html#plugins","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":487,"kind":65536,"name":"__type","url":"classes/_loader_.loader.html#plugins.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"loader\".Loader.plugins"},{"id":488,"kind":512,"name":"constructor","url":"classes/_loader_.loader.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":489,"kind":2048,"name":"loadPlugins","url":"classes/_loader_.loader.html#loadplugins","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":490,"kind":2048,"name":"loadPlugin","url":"classes/_loader_.loader.html#loadplugin","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":491,"kind":2048,"name":"loadConfig","url":"classes/_loader_.loader.html#loadconfig","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":492,"kind":2048,"name":"loadMainApi","url":"classes/_loader_.loader.html#loadmainapi","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":493,"kind":1,"name":"\"lin-router\"","url":"modules/_lin_router_.html","classes":"tsd-kind-external-module"},{"id":494,"kind":256,"name":"Meta","url":"interfaces/_lin_router_.meta.html","classes":"tsd-kind-interface tsd-parent-kind-external-module","parent":"\"lin-router\""},{"id":495,"kind":1024,"name":"auth","url":"interfaces/_lin_router_.meta.html#auth","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".Meta"},{"id":496,"kind":1024,"name":"module","url":"interfaces/_lin_router_.meta.html#module","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".Meta"},{"id":497,"kind":1024,"name":"mount","url":"interfaces/_lin_router_.meta.html#mount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".Meta"},{"id":498,"kind":128,"name":"LinRouter","url":"classes/_lin_router_.linrouter.html","classes":"tsd-kind-class tsd-parent-kind-external-module tsd-has-type-parameter","parent":"\"lin-router\""},{"id":499,"kind":2048,"name":"linOption","url":"classes/_lin_router_.linrouter.html#linoption","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":500,"kind":2048,"name":"linHead","url":"classes/_lin_router_.linrouter.html#linhead","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":501,"kind":2048,"name":"linGet","url":"classes/_lin_router_.linrouter.html#linget","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":502,"kind":2048,"name":"linPut","url":"classes/_lin_router_.linrouter.html#linput","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":503,"kind":2048,"name":"linPatch","url":"classes/_lin_router_.linrouter.html#linpatch","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":504,"kind":2048,"name":"linPost","url":"classes/_lin_router_.linrouter.html#linpost","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":505,"kind":2048,"name":"linDelete","url":"classes/_lin_router_.linrouter.html#lindelete","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":506,"kind":256,"name":"IRouterOptions","url":"interfaces/_lin_router_.linrouter.irouteroptions.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":507,"kind":1024,"name":"prefix","url":"interfaces/_lin_router_.linrouter.irouteroptions.html#prefix","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterOptions"},{"id":508,"kind":1024,"name":"methods","url":"interfaces/_lin_router_.linrouter.irouteroptions.html#methods","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterOptions"},{"id":509,"kind":1024,"name":"routerPath","url":"interfaces/_lin_router_.linrouter.irouteroptions.html#routerpath","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterOptions"},{"id":510,"kind":1024,"name":"sensitive","url":"interfaces/_lin_router_.linrouter.irouteroptions.html#sensitive","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterOptions"},{"id":511,"kind":1024,"name":"strict","url":"interfaces/_lin_router_.linrouter.irouteroptions.html#strict","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterOptions"},{"id":512,"kind":256,"name":"IRouterParamContext","url":"interfaces/_lin_router_.linrouter.irouterparamcontext.html","classes":"tsd-kind-interface tsd-parent-kind-class tsd-has-type-parameter","parent":"\"lin-router\".LinRouter"},{"id":513,"kind":1024,"name":"params","url":"interfaces/_lin_router_.linrouter.irouterparamcontext.html#params","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterParamContext"},{"id":514,"kind":1024,"name":"router","url":"interfaces/_lin_router_.linrouter.irouterparamcontext.html#router","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterParamContext"},{"id":515,"kind":1024,"name":"_matchedRoute","url":"interfaces/_lin_router_.linrouter.irouterparamcontext.html#_matchedroute","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterParamContext"},{"id":516,"kind":1024,"name":"_matchedRouteName","url":"interfaces/_lin_router_.linrouter.irouterparamcontext.html#_matchedroutename","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterParamContext"},{"id":517,"kind":256,"name":"IRouterContext","url":"interfaces/_lin_router_.linrouter.iroutercontext.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":518,"kind":256,"name":"IParamMiddleware","url":"interfaces/_lin_router_.linrouter.iparammiddleware.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":519,"kind":256,"name":"IRouterAllowedMethodsOptions","url":"interfaces/_lin_router_.linrouter.irouterallowedmethodsoptions.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":520,"kind":1024,"name":"throw","url":"interfaces/_lin_router_.linrouter.irouterallowedmethodsoptions.html#throw","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterAllowedMethodsOptions"},{"id":521,"kind":1024,"name":"notImplemented","url":"interfaces/_lin_router_.linrouter.irouterallowedmethodsoptions.html#notimplemented","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterAllowedMethodsOptions"},{"id":522,"kind":1024,"name":"methodNotAllowed","url":"interfaces/_lin_router_.linrouter.irouterallowedmethodsoptions.html#methodnotallowed","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterAllowedMethodsOptions"},{"id":523,"kind":256,"name":"ILayerOptions","url":"interfaces/_lin_router_.linrouter.ilayeroptions.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":524,"kind":1024,"name":"name","url":"interfaces/_lin_router_.linrouter.ilayeroptions.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.ILayerOptions"},{"id":525,"kind":1024,"name":"sensitive","url":"interfaces/_lin_router_.linrouter.ilayeroptions.html#sensitive","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.ILayerOptions"},{"id":526,"kind":1024,"name":"strict","url":"interfaces/_lin_router_.linrouter.ilayeroptions.html#strict","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.ILayerOptions"},{"id":527,"kind":256,"name":"IUrlOptionsQuery","url":"interfaces/_lin_router_.linrouter.iurloptionsquery.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":528,"kind":1024,"name":"query","url":"interfaces/_lin_router_.linrouter.iurloptionsquery.html#query","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IUrlOptionsQuery"},{"id":529,"kind":256,"name":"IRoutesMatch","url":"interfaces/_lin_router_.linrouter.iroutesmatch.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":530,"kind":1024,"name":"path","url":"interfaces/_lin_router_.linrouter.iroutesmatch.html#path","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRoutesMatch"},{"id":531,"kind":1024,"name":"pathAndMethod","url":"interfaces/_lin_router_.linrouter.iroutesmatch.html#pathandmethod","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRoutesMatch"},{"id":532,"kind":1024,"name":"route","url":"interfaces/_lin_router_.linrouter.iroutesmatch.html#route","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRoutesMatch"},{"id":533,"kind":128,"name":"ParamName","url":"classes/_lin_router_.linrouter.paramname.html","classes":"tsd-kind-class tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":534,"kind":1024,"name":"asterisk","url":"classes/_lin_router_.linrouter.paramname.html#asterisk","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":535,"kind":1024,"name":"delimiter","url":"classes/_lin_router_.linrouter.paramname.html#delimiter","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":536,"kind":1024,"name":"name","url":"classes/_lin_router_.linrouter.paramname.html#name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":537,"kind":1024,"name":"optional","url":"classes/_lin_router_.linrouter.paramname.html#optional","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":538,"kind":1024,"name":"partial","url":"classes/_lin_router_.linrouter.paramname.html#partial","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":539,"kind":1024,"name":"pattern","url":"classes/_lin_router_.linrouter.paramname.html#pattern","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":540,"kind":1024,"name":"prefix","url":"classes/_lin_router_.linrouter.paramname.html#prefix","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":541,"kind":1024,"name":"repeat","url":"classes/_lin_router_.linrouter.paramname.html#repeat","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":542,"kind":128,"name":"Layer","url":"classes/_lin_router_.linrouter.layer.html","classes":"tsd-kind-class tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":543,"kind":1024,"name":"opts","url":"classes/_lin_router_.linrouter.layer.html#opts","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":544,"kind":1024,"name":"name","url":"classes/_lin_router_.linrouter.layer.html#name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":545,"kind":1024,"name":"methods","url":"classes/_lin_router_.linrouter.layer.html#methods","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":546,"kind":1024,"name":"paramNames","url":"classes/_lin_router_.linrouter.layer.html#paramnames","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":547,"kind":1024,"name":"stack","url":"classes/_lin_router_.linrouter.layer.html#stack","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":548,"kind":1024,"name":"regexp","url":"classes/_lin_router_.linrouter.layer.html#regexp","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":549,"kind":1024,"name":"path","url":"classes/_lin_router_.linrouter.layer.html#path","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":550,"kind":512,"name":"constructor","url":"classes/_lin_router_.linrouter.layer.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":551,"kind":2048,"name":"match","url":"classes/_lin_router_.linrouter.layer.html#match","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":552,"kind":2048,"name":"params","url":"classes/_lin_router_.linrouter.layer.html#params","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":553,"kind":2048,"name":"captures","url":"classes/_lin_router_.linrouter.layer.html#captures","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":554,"kind":2048,"name":"url","url":"classes/_lin_router_.linrouter.layer.html#url","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":555,"kind":2048,"name":"param","url":"classes/_lin_router_.linrouter.layer.html#param","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":556,"kind":2048,"name":"setPrefix","url":"classes/_lin_router_.linrouter.layer.html#setprefix","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":557,"kind":4194304,"name":"RouterContext","url":"classes/_lin_router_.linrouter.html#routercontext","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-has-type-parameter tsd-is-static","parent":"\"lin-router\".LinRouter"},{"id":558,"kind":4194304,"name":"IMiddleware","url":"classes/_lin_router_.linrouter.html#imiddleware","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-has-type-parameter tsd-is-static","parent":"\"lin-router\".LinRouter"},{"id":559,"kind":1024,"name":"params","url":"classes/_lin_router_.linrouter.html#params","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":560,"kind":1024,"name":"stack","url":"classes/_lin_router_.linrouter.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":561,"kind":512,"name":"constructor","url":"classes/_lin_router_.linrouter.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":562,"kind":2048,"name":"use","url":"classes/_lin_router_.linrouter.html#use","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":563,"kind":2048,"name":"get","url":"classes/_lin_router_.linrouter.html#get","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":564,"kind":2048,"name":"post","url":"classes/_lin_router_.linrouter.html#post","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":565,"kind":2048,"name":"put","url":"classes/_lin_router_.linrouter.html#put","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":566,"kind":2048,"name":"link","url":"classes/_lin_router_.linrouter.html#link","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":567,"kind":2048,"name":"unlink","url":"classes/_lin_router_.linrouter.html#unlink","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":568,"kind":2048,"name":"delete","url":"classes/_lin_router_.linrouter.html#delete","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":569,"kind":2048,"name":"del","url":"classes/_lin_router_.linrouter.html#del","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":570,"kind":2048,"name":"head","url":"classes/_lin_router_.linrouter.html#head","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":571,"kind":2048,"name":"options","url":"classes/_lin_router_.linrouter.html#options","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":572,"kind":2048,"name":"patch","url":"classes/_lin_router_.linrouter.html#patch","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":573,"kind":2048,"name":"all","url":"classes/_lin_router_.linrouter.html#all","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":574,"kind":2048,"name":"prefix","url":"classes/_lin_router_.linrouter.html#prefix","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":575,"kind":2048,"name":"routes","url":"classes/_lin_router_.linrouter.html#routes","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":576,"kind":2048,"name":"middleware","url":"classes/_lin_router_.linrouter.html#middleware","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":577,"kind":2048,"name":"allowedMethods","url":"classes/_lin_router_.linrouter.html#allowedmethods","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":578,"kind":2048,"name":"redirect","url":"classes/_lin_router_.linrouter.html#redirect","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":579,"kind":2048,"name":"register","url":"classes/_lin_router_.linrouter.html#register","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":580,"kind":2048,"name":"route","url":"classes/_lin_router_.linrouter.html#route","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":581,"kind":2048,"name":"url","url":"classes/_lin_router_.linrouter.html#url","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":582,"kind":2048,"name":"match","url":"classes/_lin_router_.linrouter.html#match","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":583,"kind":2048,"name":"param","url":"classes/_lin_router_.linrouter.html#param","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":584,"kind":2048,"name":"url","url":"classes/_lin_router_.linrouter.html#url-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"lin-router\".LinRouter"},{"id":585,"kind":1,"name":"\"core\"","url":"modules/_core_.html","classes":"tsd-kind-external-module"},{"id":586,"kind":128,"name":"Lin","url":"classes/_core_.lin.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"core\""},{"id":587,"kind":1024,"name":"manager","url":"classes/_core_.lin.html#manager","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"core\".Lin"},{"id":588,"kind":1024,"name":"app","url":"classes/_core_.lin.html#app","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"core\".Lin"},{"id":589,"kind":2048,"name":"initApp","url":"classes/_core_.lin.html#initapp","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".Lin"},{"id":590,"kind":2048,"name":"applyJwt","url":"classes/_core_.lin.html#applyjwt","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"core\".Lin"},{"id":591,"kind":2048,"name":"applyDB","url":"classes/_core_.lin.html#applydb","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"core\".Lin"},{"id":592,"kind":2048,"name":"applyManager","url":"classes/_core_.lin.html#applymanager","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"core\".Lin"},{"id":593,"kind":2048,"name":"applyDefaultExtends","url":"classes/_core_.lin.html#applydefaultextends","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"core\".Lin"},{"id":594,"kind":2048,"name":"mount","url":"classes/_core_.lin.html#mount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"core\".Lin"},{"id":595,"kind":128,"name":"Manager","url":"classes/_core_.manager.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"core\""},{"id":596,"kind":1024,"name":"loader","url":"classes/_core_.manager.html#loader","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":597,"kind":1024,"name":"userModel","url":"classes/_core_.manager.html#usermodel","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":598,"kind":1024,"name":"groupModel","url":"classes/_core_.manager.html#groupmodel","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":599,"kind":1024,"name":"authModel","url":"classes/_core_.manager.html#authmodel","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":600,"kind":2048,"name":"initApp","url":"classes/_core_.manager.html#initapp","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":601,"kind":262144,"name":"plugins","url":"classes/_core_.manager.html#plugins","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":602,"kind":2048,"name":"verify","url":"classes/_core_.manager.html#verify","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":603,"kind":2048,"name":"findUser","url":"classes/_core_.manager.html#finduser","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":604,"kind":2048,"name":"findGroup","url":"classes/_core_.manager.html#findgroup","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":605,"kind":128,"name":"User","url":"classes/_core_.user.html","classes":"tsd-kind-class tsd-parent-kind-external-module tsd-has-type-parameter","parent":"\"core\""},{"id":606,"kind":1024,"name":"id","url":"classes/_core_.user.html#id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":607,"kind":1024,"name":"nickname","url":"classes/_core_.user.html#nickname","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":608,"kind":1024,"name":"admin","url":"classes/_core_.user.html#admin","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":609,"kind":1024,"name":"active","url":"classes/_core_.user.html#active","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":610,"kind":1024,"name":"email","url":"classes/_core_.user.html#email","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":611,"kind":1024,"name":"group_id","url":"classes/_core_.user.html#group_id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":612,"kind":1024,"name":"password","url":"classes/_core_.user.html#password","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":613,"kind":1024,"name":"create_time","url":"classes/_core_.user.html#create_time","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":614,"kind":1024,"name":"update_time","url":"classes/_core_.user.html#update_time","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":615,"kind":1024,"name":"delete_time","url":"classes/_core_.user.html#delete_time","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":616,"kind":2048,"name":"verify","url":"classes/_core_.user.html#verify","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"\"core\".User"},{"id":617,"kind":2048,"name":"checkPassword","url":"classes/_core_.user.html#checkpassword","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".User"},{"id":618,"kind":2048,"name":"resetPassword","url":"classes/_core_.user.html#resetpassword","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".User"},{"id":619,"kind":2048,"name":"changePassword","url":"classes/_core_.user.html#changepassword","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".User"},{"id":620,"kind":2048,"name":"toJSON","url":"classes/_core_.user.html#tojson","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"core\".User"},{"id":621,"kind":1024,"name":"tableName","url":"classes/_core_.user.html#tablename","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":622,"kind":1024,"name":"primaryKeyAttribute","url":"classes/_core_.user.html#primarykeyattribute","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":623,"kind":1024,"name":"associations","url":"classes/_core_.user.html#associations","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":624,"kind":65536,"name":"__type","url":"classes/_core_.user.html#associations.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".User.associations"},{"id":625,"kind":1024,"name":"options","url":"classes/_core_.user.html#options","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":626,"kind":1024,"name":"rawAttributes","url":"classes/_core_.user.html#rawattributes","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":627,"kind":65536,"name":"__type","url":"classes/_core_.user.html#rawattributes.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".User.rawAttributes"},{"id":628,"kind":1024,"name":"sequelize","url":"classes/_core_.user.html#sequelize-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":629,"kind":2048,"name":"init","url":"classes/_core_.user.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":630,"kind":2048,"name":"removeAttribute","url":"classes/_core_.user.html#removeattribute","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":631,"kind":2048,"name":"sync","url":"classes/_core_.user.html#sync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":632,"kind":2048,"name":"drop","url":"classes/_core_.user.html#drop","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":633,"kind":2048,"name":"schema","url":"classes/_core_.user.html#schema","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":634,"kind":2048,"name":"getTableName","url":"classes/_core_.user.html#gettablename","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":635,"kind":2048,"name":"scope","url":"classes/_core_.user.html#scope","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":636,"kind":2048,"name":"addScope","url":"classes/_core_.user.html#addscope","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":637,"kind":2048,"name":"findAll","url":"classes/_core_.user.html#findall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":638,"kind":2048,"name":"findByPk","url":"classes/_core_.user.html#findbypk","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":639,"kind":2048,"name":"findOne","url":"classes/_core_.user.html#findone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":640,"kind":2048,"name":"aggregate","url":"classes/_core_.user.html#aggregate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":641,"kind":2048,"name":"count","url":"classes/_core_.user.html#count","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":642,"kind":2048,"name":"findAndCountAll","url":"classes/_core_.user.html#findandcountall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":643,"kind":2048,"name":"max","url":"classes/_core_.user.html#max","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":644,"kind":2048,"name":"min","url":"classes/_core_.user.html#min","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":645,"kind":2048,"name":"sum","url":"classes/_core_.user.html#sum","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":646,"kind":2048,"name":"build","url":"classes/_core_.user.html#build","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":647,"kind":2048,"name":"bulkBuild","url":"classes/_core_.user.html#bulkbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":648,"kind":2048,"name":"create","url":"classes/_core_.user.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":649,"kind":2048,"name":"findOrBuild","url":"classes/_core_.user.html#findorbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":650,"kind":2048,"name":"findOrCreate","url":"classes/_core_.user.html#findorcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":651,"kind":2048,"name":"upsert","url":"classes/_core_.user.html#upsert","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":652,"kind":2048,"name":"bulkCreate","url":"classes/_core_.user.html#bulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":653,"kind":2048,"name":"truncate","url":"classes/_core_.user.html#truncate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":654,"kind":2048,"name":"destroy","url":"classes/_core_.user.html#destroy-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":655,"kind":2048,"name":"restore","url":"classes/_core_.user.html#restore-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":656,"kind":2048,"name":"update","url":"classes/_core_.user.html#update-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":657,"kind":2048,"name":"increment","url":"classes/_core_.user.html#increment-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":658,"kind":2048,"name":"describe","url":"classes/_core_.user.html#describe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":659,"kind":2048,"name":"unscoped","url":"classes/_core_.user.html#unscoped","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":660,"kind":2048,"name":"beforeValidate","url":"classes/_core_.user.html#beforevalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":661,"kind":2048,"name":"afterValidate","url":"classes/_core_.user.html#aftervalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":662,"kind":2048,"name":"beforeCreate","url":"classes/_core_.user.html#beforecreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":663,"kind":2048,"name":"afterCreate","url":"classes/_core_.user.html#aftercreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":664,"kind":2048,"name":"beforeDestroy","url":"classes/_core_.user.html#beforedestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":665,"kind":2048,"name":"afterDestroy","url":"classes/_core_.user.html#afterdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":666,"kind":2048,"name":"beforeUpdate","url":"classes/_core_.user.html#beforeupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":667,"kind":2048,"name":"afterUpdate","url":"classes/_core_.user.html#afterupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":668,"kind":2048,"name":"beforeBulkCreate","url":"classes/_core_.user.html#beforebulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":669,"kind":2048,"name":"afterBulkCreate","url":"classes/_core_.user.html#afterbulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":670,"kind":2048,"name":"beforeBulkDestroy","url":"classes/_core_.user.html#beforebulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":671,"kind":2048,"name":"afterBulkDestroy","url":"classes/_core_.user.html#afterbulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":672,"kind":2048,"name":"beforeBulkUpdate","url":"classes/_core_.user.html#beforebulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":673,"kind":2048,"name":"afterBulkUpdate","url":"classes/_core_.user.html#afterbulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":674,"kind":2048,"name":"beforeFind","url":"classes/_core_.user.html#beforefind","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":675,"kind":2048,"name":"beforeCount","url":"classes/_core_.user.html#beforecount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":676,"kind":2048,"name":"beforeFindAfterExpandIncludeAll","url":"classes/_core_.user.html#beforefindafterexpandincludeall","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":677,"kind":2048,"name":"beforeFindAfterOptions","url":"classes/_core_.user.html#beforefindafteroptions","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":678,"kind":2048,"name":"afterFind","url":"classes/_core_.user.html#afterfind","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":679,"kind":2048,"name":"beforeBulkSync","url":"classes/_core_.user.html#beforebulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":680,"kind":2048,"name":"afterBulkSync","url":"classes/_core_.user.html#afterbulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":681,"kind":2048,"name":"beforeSync","url":"classes/_core_.user.html#beforesync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":682,"kind":2048,"name":"afterSync","url":"classes/_core_.user.html#aftersync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":683,"kind":2048,"name":"hasOne","url":"classes/_core_.user.html#hasone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":684,"kind":2048,"name":"belongsTo","url":"classes/_core_.user.html#belongsto","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":685,"kind":2048,"name":"hasMany","url":"classes/_core_.user.html#hasmany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":686,"kind":2048,"name":"belongsToMany","url":"classes/_core_.user.html#belongstomany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":687,"kind":1024,"name":"isNewRecord","url":"classes/_core_.user.html#isnewrecord","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":688,"kind":1024,"name":"sequelize","url":"classes/_core_.user.html#sequelize","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":689,"kind":512,"name":"constructor","url":"classes/_core_.user.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":690,"kind":2048,"name":"where","url":"classes/_core_.user.html#where","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":691,"kind":2048,"name":"getDataValue","url":"classes/_core_.user.html#getdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":692,"kind":2048,"name":"setDataValue","url":"classes/_core_.user.html#setdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":693,"kind":2048,"name":"get","url":"classes/_core_.user.html#get","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":694,"kind":2048,"name":"set","url":"classes/_core_.user.html#set","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":695,"kind":2048,"name":"setAttributes","url":"classes/_core_.user.html#setattributes","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":696,"kind":2048,"name":"changed","url":"classes/_core_.user.html#changed","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":697,"kind":2048,"name":"previous","url":"classes/_core_.user.html#previous","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":698,"kind":2048,"name":"save","url":"classes/_core_.user.html#save","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":699,"kind":2048,"name":"reload","url":"classes/_core_.user.html#reload","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":700,"kind":2048,"name":"validate","url":"classes/_core_.user.html#validate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":701,"kind":2048,"name":"update","url":"classes/_core_.user.html#update","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":702,"kind":2048,"name":"destroy","url":"classes/_core_.user.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":703,"kind":2048,"name":"restore","url":"classes/_core_.user.html#restore","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":704,"kind":2048,"name":"increment","url":"classes/_core_.user.html#increment","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":705,"kind":2048,"name":"decrement","url":"classes/_core_.user.html#decrement","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":706,"kind":2048,"name":"equals","url":"classes/_core_.user.html#equals","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":707,"kind":2048,"name":"equalsOneOf","url":"classes/_core_.user.html#equalsoneof","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":708,"kind":2048,"name":"addHook","url":"classes/_core_.user.html#addhook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":709,"kind":2048,"name":"removeHook","url":"classes/_core_.user.html#removehook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":710,"kind":2048,"name":"hasHook","url":"classes/_core_.user.html#hashook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":711,"kind":2048,"name":"hasHooks","url":"classes/_core_.user.html#hashooks-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":712,"kind":2048,"name":"addHook","url":"classes/_core_.user.html#addhook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":713,"kind":2048,"name":"removeHook","url":"classes/_core_.user.html#removehook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":714,"kind":2048,"name":"hasHook","url":"classes/_core_.user.html#hashook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":715,"kind":2048,"name":"hasHooks","url":"classes/_core_.user.html#hashooks","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":716,"kind":128,"name":"Group","url":"classes/_core_.group.html","classes":"tsd-kind-class tsd-parent-kind-external-module tsd-has-type-parameter","parent":"\"core\""},{"id":717,"kind":1024,"name":"id","url":"classes/_core_.group.html#id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Group"},{"id":718,"kind":1024,"name":"name","url":"classes/_core_.group.html#name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Group"},{"id":719,"kind":1024,"name":"info","url":"classes/_core_.group.html#info","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Group"},{"id":720,"kind":2048,"name":"toJSON","url":"classes/_core_.group.html#tojson","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"core\".Group"},{"id":721,"kind":1024,"name":"tableName","url":"classes/_core_.group.html#tablename","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":722,"kind":1024,"name":"primaryKeyAttribute","url":"classes/_core_.group.html#primarykeyattribute","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":723,"kind":1024,"name":"associations","url":"classes/_core_.group.html#associations","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":724,"kind":65536,"name":"__type","url":"classes/_core_.group.html#associations.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".Group.associations"},{"id":725,"kind":1024,"name":"options","url":"classes/_core_.group.html#options","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":726,"kind":1024,"name":"rawAttributes","url":"classes/_core_.group.html#rawattributes","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":727,"kind":65536,"name":"__type","url":"classes/_core_.group.html#rawattributes.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".Group.rawAttributes"},{"id":728,"kind":1024,"name":"sequelize","url":"classes/_core_.group.html#sequelize-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":729,"kind":2048,"name":"init","url":"classes/_core_.group.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":730,"kind":2048,"name":"removeAttribute","url":"classes/_core_.group.html#removeattribute","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":731,"kind":2048,"name":"sync","url":"classes/_core_.group.html#sync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":732,"kind":2048,"name":"drop","url":"classes/_core_.group.html#drop","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":733,"kind":2048,"name":"schema","url":"classes/_core_.group.html#schema","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":734,"kind":2048,"name":"getTableName","url":"classes/_core_.group.html#gettablename","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":735,"kind":2048,"name":"scope","url":"classes/_core_.group.html#scope","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":736,"kind":2048,"name":"addScope","url":"classes/_core_.group.html#addscope","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":737,"kind":2048,"name":"findAll","url":"classes/_core_.group.html#findall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":738,"kind":2048,"name":"findByPk","url":"classes/_core_.group.html#findbypk","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":739,"kind":2048,"name":"findOne","url":"classes/_core_.group.html#findone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":740,"kind":2048,"name":"aggregate","url":"classes/_core_.group.html#aggregate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":741,"kind":2048,"name":"count","url":"classes/_core_.group.html#count","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":742,"kind":2048,"name":"findAndCountAll","url":"classes/_core_.group.html#findandcountall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":743,"kind":2048,"name":"max","url":"classes/_core_.group.html#max","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":744,"kind":2048,"name":"min","url":"classes/_core_.group.html#min","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":745,"kind":2048,"name":"sum","url":"classes/_core_.group.html#sum","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":746,"kind":2048,"name":"build","url":"classes/_core_.group.html#build","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":747,"kind":2048,"name":"bulkBuild","url":"classes/_core_.group.html#bulkbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":748,"kind":2048,"name":"create","url":"classes/_core_.group.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":749,"kind":2048,"name":"findOrBuild","url":"classes/_core_.group.html#findorbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":750,"kind":2048,"name":"findOrCreate","url":"classes/_core_.group.html#findorcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":751,"kind":2048,"name":"upsert","url":"classes/_core_.group.html#upsert","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":752,"kind":2048,"name":"bulkCreate","url":"classes/_core_.group.html#bulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":753,"kind":2048,"name":"truncate","url":"classes/_core_.group.html#truncate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":754,"kind":2048,"name":"destroy","url":"classes/_core_.group.html#destroy-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":755,"kind":2048,"name":"restore","url":"classes/_core_.group.html#restore-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":756,"kind":2048,"name":"update","url":"classes/_core_.group.html#update-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":757,"kind":2048,"name":"increment","url":"classes/_core_.group.html#increment-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":758,"kind":2048,"name":"describe","url":"classes/_core_.group.html#describe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":759,"kind":2048,"name":"unscoped","url":"classes/_core_.group.html#unscoped","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":760,"kind":2048,"name":"beforeValidate","url":"classes/_core_.group.html#beforevalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":761,"kind":2048,"name":"afterValidate","url":"classes/_core_.group.html#aftervalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":762,"kind":2048,"name":"beforeCreate","url":"classes/_core_.group.html#beforecreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":763,"kind":2048,"name":"afterCreate","url":"classes/_core_.group.html#aftercreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":764,"kind":2048,"name":"beforeDestroy","url":"classes/_core_.group.html#beforedestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":765,"kind":2048,"name":"afterDestroy","url":"classes/_core_.group.html#afterdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":766,"kind":2048,"name":"beforeUpdate","url":"classes/_core_.group.html#beforeupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":767,"kind":2048,"name":"afterUpdate","url":"classes/_core_.group.html#afterupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":768,"kind":2048,"name":"beforeBulkCreate","url":"classes/_core_.group.html#beforebulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":769,"kind":2048,"name":"afterBulkCreate","url":"classes/_core_.group.html#afterbulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":770,"kind":2048,"name":"beforeBulkDestroy","url":"classes/_core_.group.html#beforebulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":771,"kind":2048,"name":"afterBulkDestroy","url":"classes/_core_.group.html#afterbulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":772,"kind":2048,"name":"beforeBulkUpdate","url":"classes/_core_.group.html#beforebulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":773,"kind":2048,"name":"afterBulkUpdate","url":"classes/_core_.group.html#afterbulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":774,"kind":2048,"name":"beforeFind","url":"classes/_core_.group.html#beforefind","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":775,"kind":2048,"name":"beforeCount","url":"classes/_core_.group.html#beforecount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":776,"kind":2048,"name":"beforeFindAfterExpandIncludeAll","url":"classes/_core_.group.html#beforefindafterexpandincludeall","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":777,"kind":2048,"name":"beforeFindAfterOptions","url":"classes/_core_.group.html#beforefindafteroptions","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":778,"kind":2048,"name":"afterFind","url":"classes/_core_.group.html#afterfind","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":779,"kind":2048,"name":"beforeBulkSync","url":"classes/_core_.group.html#beforebulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":780,"kind":2048,"name":"afterBulkSync","url":"classes/_core_.group.html#afterbulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":781,"kind":2048,"name":"beforeSync","url":"classes/_core_.group.html#beforesync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":782,"kind":2048,"name":"afterSync","url":"classes/_core_.group.html#aftersync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":783,"kind":2048,"name":"hasOne","url":"classes/_core_.group.html#hasone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":784,"kind":2048,"name":"belongsTo","url":"classes/_core_.group.html#belongsto","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":785,"kind":2048,"name":"hasMany","url":"classes/_core_.group.html#hasmany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":786,"kind":2048,"name":"belongsToMany","url":"classes/_core_.group.html#belongstomany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":787,"kind":1024,"name":"isNewRecord","url":"classes/_core_.group.html#isnewrecord","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":788,"kind":1024,"name":"sequelize","url":"classes/_core_.group.html#sequelize","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":789,"kind":512,"name":"constructor","url":"classes/_core_.group.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":790,"kind":2048,"name":"where","url":"classes/_core_.group.html#where","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":791,"kind":2048,"name":"getDataValue","url":"classes/_core_.group.html#getdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":792,"kind":2048,"name":"setDataValue","url":"classes/_core_.group.html#setdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":793,"kind":2048,"name":"get","url":"classes/_core_.group.html#get","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":794,"kind":2048,"name":"set","url":"classes/_core_.group.html#set","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":795,"kind":2048,"name":"setAttributes","url":"classes/_core_.group.html#setattributes","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":796,"kind":2048,"name":"changed","url":"classes/_core_.group.html#changed","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":797,"kind":2048,"name":"previous","url":"classes/_core_.group.html#previous","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":798,"kind":2048,"name":"save","url":"classes/_core_.group.html#save","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":799,"kind":2048,"name":"reload","url":"classes/_core_.group.html#reload","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":800,"kind":2048,"name":"validate","url":"classes/_core_.group.html#validate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":801,"kind":2048,"name":"update","url":"classes/_core_.group.html#update","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":802,"kind":2048,"name":"destroy","url":"classes/_core_.group.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":803,"kind":2048,"name":"restore","url":"classes/_core_.group.html#restore","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":804,"kind":2048,"name":"increment","url":"classes/_core_.group.html#increment","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":805,"kind":2048,"name":"decrement","url":"classes/_core_.group.html#decrement","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":806,"kind":2048,"name":"equals","url":"classes/_core_.group.html#equals","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":807,"kind":2048,"name":"equalsOneOf","url":"classes/_core_.group.html#equalsoneof","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":808,"kind":2048,"name":"addHook","url":"classes/_core_.group.html#addhook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":809,"kind":2048,"name":"removeHook","url":"classes/_core_.group.html#removehook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":810,"kind":2048,"name":"hasHook","url":"classes/_core_.group.html#hashook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":811,"kind":2048,"name":"hasHooks","url":"classes/_core_.group.html#hashooks-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":812,"kind":2048,"name":"addHook","url":"classes/_core_.group.html#addhook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":813,"kind":2048,"name":"removeHook","url":"classes/_core_.group.html#removehook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":814,"kind":2048,"name":"hasHook","url":"classes/_core_.group.html#hashook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":815,"kind":2048,"name":"hasHooks","url":"classes/_core_.group.html#hashooks","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":816,"kind":128,"name":"Auth","url":"classes/_core_.auth.html","classes":"tsd-kind-class tsd-parent-kind-external-module tsd-has-type-parameter","parent":"\"core\""},{"id":817,"kind":1024,"name":"id","url":"classes/_core_.auth.html#id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Auth"},{"id":818,"kind":1024,"name":"group_id","url":"classes/_core_.auth.html#group_id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Auth"},{"id":819,"kind":1024,"name":"auth","url":"classes/_core_.auth.html#auth","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Auth"},{"id":820,"kind":1024,"name":"module","url":"classes/_core_.auth.html#module","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Auth"},{"id":821,"kind":2048,"name":"toJSON","url":"classes/_core_.auth.html#tojson","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"core\".Auth"},{"id":822,"kind":1024,"name":"tableName","url":"classes/_core_.auth.html#tablename","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":823,"kind":1024,"name":"primaryKeyAttribute","url":"classes/_core_.auth.html#primarykeyattribute","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":824,"kind":1024,"name":"associations","url":"classes/_core_.auth.html#associations","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":825,"kind":65536,"name":"__type","url":"classes/_core_.auth.html#associations.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".Auth.associations"},{"id":826,"kind":1024,"name":"options","url":"classes/_core_.auth.html#options","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":827,"kind":1024,"name":"rawAttributes","url":"classes/_core_.auth.html#rawattributes","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":828,"kind":65536,"name":"__type","url":"classes/_core_.auth.html#rawattributes.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".Auth.rawAttributes"},{"id":829,"kind":1024,"name":"sequelize","url":"classes/_core_.auth.html#sequelize-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":830,"kind":2048,"name":"init","url":"classes/_core_.auth.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":831,"kind":2048,"name":"removeAttribute","url":"classes/_core_.auth.html#removeattribute","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":832,"kind":2048,"name":"sync","url":"classes/_core_.auth.html#sync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":833,"kind":2048,"name":"drop","url":"classes/_core_.auth.html#drop","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":834,"kind":2048,"name":"schema","url":"classes/_core_.auth.html#schema","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":835,"kind":2048,"name":"getTableName","url":"classes/_core_.auth.html#gettablename","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":836,"kind":2048,"name":"scope","url":"classes/_core_.auth.html#scope","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":837,"kind":2048,"name":"addScope","url":"classes/_core_.auth.html#addscope","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":838,"kind":2048,"name":"findAll","url":"classes/_core_.auth.html#findall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":839,"kind":2048,"name":"findByPk","url":"classes/_core_.auth.html#findbypk","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":840,"kind":2048,"name":"findOne","url":"classes/_core_.auth.html#findone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":841,"kind":2048,"name":"aggregate","url":"classes/_core_.auth.html#aggregate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":842,"kind":2048,"name":"count","url":"classes/_core_.auth.html#count","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":843,"kind":2048,"name":"findAndCountAll","url":"classes/_core_.auth.html#findandcountall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":844,"kind":2048,"name":"max","url":"classes/_core_.auth.html#max","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":845,"kind":2048,"name":"min","url":"classes/_core_.auth.html#min","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":846,"kind":2048,"name":"sum","url":"classes/_core_.auth.html#sum","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":847,"kind":2048,"name":"build","url":"classes/_core_.auth.html#build","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":848,"kind":2048,"name":"bulkBuild","url":"classes/_core_.auth.html#bulkbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":849,"kind":2048,"name":"create","url":"classes/_core_.auth.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":850,"kind":2048,"name":"findOrBuild","url":"classes/_core_.auth.html#findorbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":851,"kind":2048,"name":"findOrCreate","url":"classes/_core_.auth.html#findorcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":852,"kind":2048,"name":"upsert","url":"classes/_core_.auth.html#upsert","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":853,"kind":2048,"name":"bulkCreate","url":"classes/_core_.auth.html#bulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":854,"kind":2048,"name":"truncate","url":"classes/_core_.auth.html#truncate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":855,"kind":2048,"name":"destroy","url":"classes/_core_.auth.html#destroy-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":856,"kind":2048,"name":"restore","url":"classes/_core_.auth.html#restore-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":857,"kind":2048,"name":"update","url":"classes/_core_.auth.html#update-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":858,"kind":2048,"name":"increment","url":"classes/_core_.auth.html#increment-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":859,"kind":2048,"name":"describe","url":"classes/_core_.auth.html#describe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":860,"kind":2048,"name":"unscoped","url":"classes/_core_.auth.html#unscoped","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":861,"kind":2048,"name":"beforeValidate","url":"classes/_core_.auth.html#beforevalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":862,"kind":2048,"name":"afterValidate","url":"classes/_core_.auth.html#aftervalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":863,"kind":2048,"name":"beforeCreate","url":"classes/_core_.auth.html#beforecreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":864,"kind":2048,"name":"afterCreate","url":"classes/_core_.auth.html#aftercreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":865,"kind":2048,"name":"beforeDestroy","url":"classes/_core_.auth.html#beforedestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":866,"kind":2048,"name":"afterDestroy","url":"classes/_core_.auth.html#afterdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":867,"kind":2048,"name":"beforeUpdate","url":"classes/_core_.auth.html#beforeupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":868,"kind":2048,"name":"afterUpdate","url":"classes/_core_.auth.html#afterupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":869,"kind":2048,"name":"beforeBulkCreate","url":"classes/_core_.auth.html#beforebulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":870,"kind":2048,"name":"afterBulkCreate","url":"classes/_core_.auth.html#afterbulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":871,"kind":2048,"name":"beforeBulkDestroy","url":"classes/_core_.auth.html#beforebulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":872,"kind":2048,"name":"afterBulkDestroy","url":"classes/_core_.auth.html#afterbulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":873,"kind":2048,"name":"beforeBulkUpdate","url":"classes/_core_.auth.html#beforebulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":874,"kind":2048,"name":"afterBulkUpdate","url":"classes/_core_.auth.html#afterbulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":875,"kind":2048,"name":"beforeFind","url":"classes/_core_.auth.html#beforefind","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":876,"kind":2048,"name":"beforeCount","url":"classes/_core_.auth.html#beforecount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":877,"kind":2048,"name":"beforeFindAfterExpandIncludeAll","url":"classes/_core_.auth.html#beforefindafterexpandincludeall","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":878,"kind":2048,"name":"beforeFindAfterOptions","url":"classes/_core_.auth.html#beforefindafteroptions","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":879,"kind":2048,"name":"afterFind","url":"classes/_core_.auth.html#afterfind","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":880,"kind":2048,"name":"beforeBulkSync","url":"classes/_core_.auth.html#beforebulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":881,"kind":2048,"name":"afterBulkSync","url":"classes/_core_.auth.html#afterbulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":882,"kind":2048,"name":"beforeSync","url":"classes/_core_.auth.html#beforesync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":883,"kind":2048,"name":"afterSync","url":"classes/_core_.auth.html#aftersync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":884,"kind":2048,"name":"hasOne","url":"classes/_core_.auth.html#hasone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":885,"kind":2048,"name":"belongsTo","url":"classes/_core_.auth.html#belongsto","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":886,"kind":2048,"name":"hasMany","url":"classes/_core_.auth.html#hasmany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":887,"kind":2048,"name":"belongsToMany","url":"classes/_core_.auth.html#belongstomany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":888,"kind":1024,"name":"isNewRecord","url":"classes/_core_.auth.html#isnewrecord","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":889,"kind":1024,"name":"sequelize","url":"classes/_core_.auth.html#sequelize","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":890,"kind":512,"name":"constructor","url":"classes/_core_.auth.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":891,"kind":2048,"name":"where","url":"classes/_core_.auth.html#where","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":892,"kind":2048,"name":"getDataValue","url":"classes/_core_.auth.html#getdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":893,"kind":2048,"name":"setDataValue","url":"classes/_core_.auth.html#setdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":894,"kind":2048,"name":"get","url":"classes/_core_.auth.html#get","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":895,"kind":2048,"name":"set","url":"classes/_core_.auth.html#set","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":896,"kind":2048,"name":"setAttributes","url":"classes/_core_.auth.html#setattributes","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":897,"kind":2048,"name":"changed","url":"classes/_core_.auth.html#changed","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":898,"kind":2048,"name":"previous","url":"classes/_core_.auth.html#previous","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":899,"kind":2048,"name":"save","url":"classes/_core_.auth.html#save","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":900,"kind":2048,"name":"reload","url":"classes/_core_.auth.html#reload","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":901,"kind":2048,"name":"validate","url":"classes/_core_.auth.html#validate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":902,"kind":2048,"name":"update","url":"classes/_core_.auth.html#update","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":903,"kind":2048,"name":"destroy","url":"classes/_core_.auth.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":904,"kind":2048,"name":"restore","url":"classes/_core_.auth.html#restore","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":905,"kind":2048,"name":"increment","url":"classes/_core_.auth.html#increment","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":906,"kind":2048,"name":"decrement","url":"classes/_core_.auth.html#decrement","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":907,"kind":2048,"name":"equals","url":"classes/_core_.auth.html#equals","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":908,"kind":2048,"name":"equalsOneOf","url":"classes/_core_.auth.html#equalsoneof","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":909,"kind":2048,"name":"addHook","url":"classes/_core_.auth.html#addhook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":910,"kind":2048,"name":"removeHook","url":"classes/_core_.auth.html#removehook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":911,"kind":2048,"name":"hasHook","url":"classes/_core_.auth.html#hashook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":912,"kind":2048,"name":"hasHooks","url":"classes/_core_.auth.html#hashooks-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":913,"kind":2048,"name":"addHook","url":"classes/_core_.auth.html#addhook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":914,"kind":2048,"name":"removeHook","url":"classes/_core_.auth.html#removehook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":915,"kind":2048,"name":"hasHook","url":"classes/_core_.auth.html#hashook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":916,"kind":2048,"name":"hasHooks","url":"classes/_core_.auth.html#hashooks","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":917,"kind":256,"name":"LogArgs","url":"interfaces/_core_.logargs.html","classes":"tsd-kind-interface tsd-parent-kind-external-module","parent":"\"core\""},{"id":918,"kind":1024,"name":"message","url":"interfaces/_core_.logargs.html#message","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".LogArgs"},{"id":919,"kind":1024,"name":"user_id","url":"interfaces/_core_.logargs.html#user_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".LogArgs"},{"id":920,"kind":1024,"name":"user_name","url":"interfaces/_core_.logargs.html#user_name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".LogArgs"},{"id":921,"kind":1024,"name":"status_code","url":"interfaces/_core_.logargs.html#status_code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".LogArgs"},{"id":922,"kind":1024,"name":"method","url":"interfaces/_core_.logargs.html#method","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".LogArgs"},{"id":923,"kind":1024,"name":"path","url":"interfaces/_core_.logargs.html#path","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".LogArgs"},{"id":924,"kind":1024,"name":"authority","url":"interfaces/_core_.logargs.html#authority","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".LogArgs"},{"id":925,"kind":128,"name":"Log","url":"classes/_core_.log.html","classes":"tsd-kind-class tsd-parent-kind-external-module tsd-has-type-parameter","parent":"\"core\""},{"id":926,"kind":1024,"name":"id","url":"classes/_core_.log.html#id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":927,"kind":1024,"name":"message","url":"classes/_core_.log.html#message","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":928,"kind":1024,"name":"user_id","url":"classes/_core_.log.html#user_id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":929,"kind":1024,"name":"user_name","url":"classes/_core_.log.html#user_name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":930,"kind":1024,"name":"status_code","url":"classes/_core_.log.html#status_code","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":931,"kind":1024,"name":"method","url":"classes/_core_.log.html#method","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":932,"kind":1024,"name":"path","url":"classes/_core_.log.html#path","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":933,"kind":1024,"name":"authority","url":"classes/_core_.log.html#authority","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":934,"kind":1024,"name":"time","url":"classes/_core_.log.html#time","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":935,"kind":2048,"name":"createLog","url":"classes/_core_.log.html#createlog","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"\"core\".Log"},{"id":936,"kind":2048,"name":"toJSON","url":"classes/_core_.log.html#tojson","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"core\".Log"},{"id":937,"kind":1024,"name":"tableName","url":"classes/_core_.log.html#tablename","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":938,"kind":1024,"name":"primaryKeyAttribute","url":"classes/_core_.log.html#primarykeyattribute","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":939,"kind":1024,"name":"associations","url":"classes/_core_.log.html#associations","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":940,"kind":65536,"name":"__type","url":"classes/_core_.log.html#associations.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".Log.associations"},{"id":941,"kind":1024,"name":"options","url":"classes/_core_.log.html#options","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":942,"kind":1024,"name":"rawAttributes","url":"classes/_core_.log.html#rawattributes","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":943,"kind":65536,"name":"__type","url":"classes/_core_.log.html#rawattributes.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".Log.rawAttributes"},{"id":944,"kind":1024,"name":"sequelize","url":"classes/_core_.log.html#sequelize-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":945,"kind":2048,"name":"init","url":"classes/_core_.log.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":946,"kind":2048,"name":"removeAttribute","url":"classes/_core_.log.html#removeattribute","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":947,"kind":2048,"name":"sync","url":"classes/_core_.log.html#sync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":948,"kind":2048,"name":"drop","url":"classes/_core_.log.html#drop","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":949,"kind":2048,"name":"schema","url":"classes/_core_.log.html#schema","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":950,"kind":2048,"name":"getTableName","url":"classes/_core_.log.html#gettablename","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":951,"kind":2048,"name":"scope","url":"classes/_core_.log.html#scope","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":952,"kind":2048,"name":"addScope","url":"classes/_core_.log.html#addscope","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":953,"kind":2048,"name":"findAll","url":"classes/_core_.log.html#findall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":954,"kind":2048,"name":"findByPk","url":"classes/_core_.log.html#findbypk","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":955,"kind":2048,"name":"findOne","url":"classes/_core_.log.html#findone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":956,"kind":2048,"name":"aggregate","url":"classes/_core_.log.html#aggregate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":957,"kind":2048,"name":"count","url":"classes/_core_.log.html#count","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":958,"kind":2048,"name":"findAndCountAll","url":"classes/_core_.log.html#findandcountall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":959,"kind":2048,"name":"max","url":"classes/_core_.log.html#max","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":960,"kind":2048,"name":"min","url":"classes/_core_.log.html#min","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":961,"kind":2048,"name":"sum","url":"classes/_core_.log.html#sum","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":962,"kind":2048,"name":"build","url":"classes/_core_.log.html#build","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":963,"kind":2048,"name":"bulkBuild","url":"classes/_core_.log.html#bulkbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":964,"kind":2048,"name":"create","url":"classes/_core_.log.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":965,"kind":2048,"name":"findOrBuild","url":"classes/_core_.log.html#findorbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":966,"kind":2048,"name":"findOrCreate","url":"classes/_core_.log.html#findorcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":967,"kind":2048,"name":"upsert","url":"classes/_core_.log.html#upsert","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":968,"kind":2048,"name":"bulkCreate","url":"classes/_core_.log.html#bulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":969,"kind":2048,"name":"truncate","url":"classes/_core_.log.html#truncate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":970,"kind":2048,"name":"destroy","url":"classes/_core_.log.html#destroy-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":971,"kind":2048,"name":"restore","url":"classes/_core_.log.html#restore-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":972,"kind":2048,"name":"update","url":"classes/_core_.log.html#update-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":973,"kind":2048,"name":"increment","url":"classes/_core_.log.html#increment-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":974,"kind":2048,"name":"describe","url":"classes/_core_.log.html#describe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":975,"kind":2048,"name":"unscoped","url":"classes/_core_.log.html#unscoped","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":976,"kind":2048,"name":"beforeValidate","url":"classes/_core_.log.html#beforevalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":977,"kind":2048,"name":"afterValidate","url":"classes/_core_.log.html#aftervalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":978,"kind":2048,"name":"beforeCreate","url":"classes/_core_.log.html#beforecreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":979,"kind":2048,"name":"afterCreate","url":"classes/_core_.log.html#aftercreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":980,"kind":2048,"name":"beforeDestroy","url":"classes/_core_.log.html#beforedestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":981,"kind":2048,"name":"afterDestroy","url":"classes/_core_.log.html#afterdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":982,"kind":2048,"name":"beforeUpdate","url":"classes/_core_.log.html#beforeupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":983,"kind":2048,"name":"afterUpdate","url":"classes/_core_.log.html#afterupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":984,"kind":2048,"name":"beforeBulkCreate","url":"classes/_core_.log.html#beforebulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":985,"kind":2048,"name":"afterBulkCreate","url":"classes/_core_.log.html#afterbulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":986,"kind":2048,"name":"beforeBulkDestroy","url":"classes/_core_.log.html#beforebulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":987,"kind":2048,"name":"afterBulkDestroy","url":"classes/_core_.log.html#afterbulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":988,"kind":2048,"name":"beforeBulkUpdate","url":"classes/_core_.log.html#beforebulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":989,"kind":2048,"name":"afterBulkUpdate","url":"classes/_core_.log.html#afterbulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":990,"kind":2048,"name":"beforeFind","url":"classes/_core_.log.html#beforefind","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":991,"kind":2048,"name":"beforeCount","url":"classes/_core_.log.html#beforecount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":992,"kind":2048,"name":"beforeFindAfterExpandIncludeAll","url":"classes/_core_.log.html#beforefindafterexpandincludeall","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":993,"kind":2048,"name":"beforeFindAfterOptions","url":"classes/_core_.log.html#beforefindafteroptions","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":994,"kind":2048,"name":"afterFind","url":"classes/_core_.log.html#afterfind","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":995,"kind":2048,"name":"beforeBulkSync","url":"classes/_core_.log.html#beforebulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":996,"kind":2048,"name":"afterBulkSync","url":"classes/_core_.log.html#afterbulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":997,"kind":2048,"name":"beforeSync","url":"classes/_core_.log.html#beforesync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":998,"kind":2048,"name":"afterSync","url":"classes/_core_.log.html#aftersync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":999,"kind":2048,"name":"hasOne","url":"classes/_core_.log.html#hasone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1000,"kind":2048,"name":"belongsTo","url":"classes/_core_.log.html#belongsto","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1001,"kind":2048,"name":"hasMany","url":"classes/_core_.log.html#hasmany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1002,"kind":2048,"name":"belongsToMany","url":"classes/_core_.log.html#belongstomany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1003,"kind":1024,"name":"isNewRecord","url":"classes/_core_.log.html#isnewrecord","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1004,"kind":1024,"name":"sequelize","url":"classes/_core_.log.html#sequelize","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1005,"kind":512,"name":"constructor","url":"classes/_core_.log.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1006,"kind":2048,"name":"where","url":"classes/_core_.log.html#where","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1007,"kind":2048,"name":"getDataValue","url":"classes/_core_.log.html#getdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1008,"kind":2048,"name":"setDataValue","url":"classes/_core_.log.html#setdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1009,"kind":2048,"name":"get","url":"classes/_core_.log.html#get","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1010,"kind":2048,"name":"set","url":"classes/_core_.log.html#set","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1011,"kind":2048,"name":"setAttributes","url":"classes/_core_.log.html#setattributes","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1012,"kind":2048,"name":"changed","url":"classes/_core_.log.html#changed","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1013,"kind":2048,"name":"previous","url":"classes/_core_.log.html#previous","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1014,"kind":2048,"name":"save","url":"classes/_core_.log.html#save","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1015,"kind":2048,"name":"reload","url":"classes/_core_.log.html#reload","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1016,"kind":2048,"name":"validate","url":"classes/_core_.log.html#validate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1017,"kind":2048,"name":"update","url":"classes/_core_.log.html#update","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1018,"kind":2048,"name":"destroy","url":"classes/_core_.log.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1019,"kind":2048,"name":"restore","url":"classes/_core_.log.html#restore","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1020,"kind":2048,"name":"increment","url":"classes/_core_.log.html#increment","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1021,"kind":2048,"name":"decrement","url":"classes/_core_.log.html#decrement","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1022,"kind":2048,"name":"equals","url":"classes/_core_.log.html#equals","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1023,"kind":2048,"name":"equalsOneOf","url":"classes/_core_.log.html#equalsoneof","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1024,"kind":2048,"name":"addHook","url":"classes/_core_.log.html#addhook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1025,"kind":2048,"name":"removeHook","url":"classes/_core_.log.html#removehook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1026,"kind":2048,"name":"hasHook","url":"classes/_core_.log.html#hashook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1027,"kind":2048,"name":"hasHooks","url":"classes/_core_.log.html#hashooks-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1028,"kind":2048,"name":"addHook","url":"classes/_core_.log.html#addhook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1029,"kind":2048,"name":"removeHook","url":"classes/_core_.log.html#removehook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1030,"kind":2048,"name":"hasHook","url":"classes/_core_.log.html#hashook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1031,"kind":2048,"name":"hasHooks","url":"classes/_core_.log.html#hashooks","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1032,"kind":256,"name":"FileArgs","url":"interfaces/_core_.fileargs.html","classes":"tsd-kind-interface tsd-parent-kind-external-module","parent":"\"core\""},{"id":1033,"kind":1024,"name":"path","url":"interfaces/_core_.fileargs.html#path","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".FileArgs"},{"id":1034,"kind":1024,"name":"type","url":"interfaces/_core_.fileargs.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".FileArgs"},{"id":1035,"kind":1024,"name":"name","url":"interfaces/_core_.fileargs.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".FileArgs"},{"id":1036,"kind":1024,"name":"extension","url":"interfaces/_core_.fileargs.html#extension","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".FileArgs"},{"id":1037,"kind":1024,"name":"size","url":"interfaces/_core_.fileargs.html#size","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".FileArgs"},{"id":1038,"kind":128,"name":"File","url":"classes/_core_.file.html","classes":"tsd-kind-class tsd-parent-kind-external-module tsd-has-type-parameter","parent":"\"core\""},{"id":1039,"kind":1024,"name":"id","url":"classes/_core_.file.html#id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".File"},{"id":1040,"kind":1024,"name":"path","url":"classes/_core_.file.html#path","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".File"},{"id":1041,"kind":1024,"name":"type","url":"classes/_core_.file.html#type","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".File"},{"id":1042,"kind":1024,"name":"name","url":"classes/_core_.file.html#name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".File"},{"id":1043,"kind":1024,"name":"extension","url":"classes/_core_.file.html#extension","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".File"},{"id":1044,"kind":1024,"name":"size","url":"classes/_core_.file.html#size","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".File"},{"id":1045,"kind":2048,"name":"createRecord","url":"classes/_core_.file.html#createrecord","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"\"core\".File"},{"id":1046,"kind":2048,"name":"toJSON","url":"classes/_core_.file.html#tojson","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"core\".File"},{"id":1047,"kind":1024,"name":"tableName","url":"classes/_core_.file.html#tablename","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1048,"kind":1024,"name":"primaryKeyAttribute","url":"classes/_core_.file.html#primarykeyattribute","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1049,"kind":1024,"name":"associations","url":"classes/_core_.file.html#associations","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1050,"kind":65536,"name":"__type","url":"classes/_core_.file.html#associations.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".File.associations"},{"id":1051,"kind":1024,"name":"options","url":"classes/_core_.file.html#options","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1052,"kind":1024,"name":"rawAttributes","url":"classes/_core_.file.html#rawattributes","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1053,"kind":65536,"name":"__type","url":"classes/_core_.file.html#rawattributes.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".File.rawAttributes"},{"id":1054,"kind":1024,"name":"sequelize","url":"classes/_core_.file.html#sequelize-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1055,"kind":2048,"name":"init","url":"classes/_core_.file.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1056,"kind":2048,"name":"removeAttribute","url":"classes/_core_.file.html#removeattribute","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1057,"kind":2048,"name":"sync","url":"classes/_core_.file.html#sync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1058,"kind":2048,"name":"drop","url":"classes/_core_.file.html#drop","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1059,"kind":2048,"name":"schema","url":"classes/_core_.file.html#schema","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1060,"kind":2048,"name":"getTableName","url":"classes/_core_.file.html#gettablename","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1061,"kind":2048,"name":"scope","url":"classes/_core_.file.html#scope","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1062,"kind":2048,"name":"addScope","url":"classes/_core_.file.html#addscope","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1063,"kind":2048,"name":"findAll","url":"classes/_core_.file.html#findall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1064,"kind":2048,"name":"findByPk","url":"classes/_core_.file.html#findbypk","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1065,"kind":2048,"name":"findOne","url":"classes/_core_.file.html#findone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1066,"kind":2048,"name":"aggregate","url":"classes/_core_.file.html#aggregate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1067,"kind":2048,"name":"count","url":"classes/_core_.file.html#count","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1068,"kind":2048,"name":"findAndCountAll","url":"classes/_core_.file.html#findandcountall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1069,"kind":2048,"name":"max","url":"classes/_core_.file.html#max","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1070,"kind":2048,"name":"min","url":"classes/_core_.file.html#min","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1071,"kind":2048,"name":"sum","url":"classes/_core_.file.html#sum","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1072,"kind":2048,"name":"build","url":"classes/_core_.file.html#build","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1073,"kind":2048,"name":"bulkBuild","url":"classes/_core_.file.html#bulkbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1074,"kind":2048,"name":"create","url":"classes/_core_.file.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1075,"kind":2048,"name":"findOrBuild","url":"classes/_core_.file.html#findorbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1076,"kind":2048,"name":"findOrCreate","url":"classes/_core_.file.html#findorcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1077,"kind":2048,"name":"upsert","url":"classes/_core_.file.html#upsert","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1078,"kind":2048,"name":"bulkCreate","url":"classes/_core_.file.html#bulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1079,"kind":2048,"name":"truncate","url":"classes/_core_.file.html#truncate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1080,"kind":2048,"name":"destroy","url":"classes/_core_.file.html#destroy-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1081,"kind":2048,"name":"restore","url":"classes/_core_.file.html#restore-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1082,"kind":2048,"name":"update","url":"classes/_core_.file.html#update-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1083,"kind":2048,"name":"increment","url":"classes/_core_.file.html#increment-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1084,"kind":2048,"name":"describe","url":"classes/_core_.file.html#describe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1085,"kind":2048,"name":"unscoped","url":"classes/_core_.file.html#unscoped","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1086,"kind":2048,"name":"beforeValidate","url":"classes/_core_.file.html#beforevalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1087,"kind":2048,"name":"afterValidate","url":"classes/_core_.file.html#aftervalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1088,"kind":2048,"name":"beforeCreate","url":"classes/_core_.file.html#beforecreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1089,"kind":2048,"name":"afterCreate","url":"classes/_core_.file.html#aftercreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1090,"kind":2048,"name":"beforeDestroy","url":"classes/_core_.file.html#beforedestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1091,"kind":2048,"name":"afterDestroy","url":"classes/_core_.file.html#afterdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1092,"kind":2048,"name":"beforeUpdate","url":"classes/_core_.file.html#beforeupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1093,"kind":2048,"name":"afterUpdate","url":"classes/_core_.file.html#afterupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1094,"kind":2048,"name":"beforeBulkCreate","url":"classes/_core_.file.html#beforebulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1095,"kind":2048,"name":"afterBulkCreate","url":"classes/_core_.file.html#afterbulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1096,"kind":2048,"name":"beforeBulkDestroy","url":"classes/_core_.file.html#beforebulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1097,"kind":2048,"name":"afterBulkDestroy","url":"classes/_core_.file.html#afterbulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1098,"kind":2048,"name":"beforeBulkUpdate","url":"classes/_core_.file.html#beforebulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1099,"kind":2048,"name":"afterBulkUpdate","url":"classes/_core_.file.html#afterbulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1100,"kind":2048,"name":"beforeFind","url":"classes/_core_.file.html#beforefind","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1101,"kind":2048,"name":"beforeCount","url":"classes/_core_.file.html#beforecount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1102,"kind":2048,"name":"beforeFindAfterExpandIncludeAll","url":"classes/_core_.file.html#beforefindafterexpandincludeall","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1103,"kind":2048,"name":"beforeFindAfterOptions","url":"classes/_core_.file.html#beforefindafteroptions","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1104,"kind":2048,"name":"afterFind","url":"classes/_core_.file.html#afterfind","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1105,"kind":2048,"name":"beforeBulkSync","url":"classes/_core_.file.html#beforebulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1106,"kind":2048,"name":"afterBulkSync","url":"classes/_core_.file.html#afterbulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1107,"kind":2048,"name":"beforeSync","url":"classes/_core_.file.html#beforesync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1108,"kind":2048,"name":"afterSync","url":"classes/_core_.file.html#aftersync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1109,"kind":2048,"name":"hasOne","url":"classes/_core_.file.html#hasone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1110,"kind":2048,"name":"belongsTo","url":"classes/_core_.file.html#belongsto","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1111,"kind":2048,"name":"hasMany","url":"classes/_core_.file.html#hasmany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1112,"kind":2048,"name":"belongsToMany","url":"classes/_core_.file.html#belongstomany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1113,"kind":1024,"name":"isNewRecord","url":"classes/_core_.file.html#isnewrecord","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1114,"kind":1024,"name":"sequelize","url":"classes/_core_.file.html#sequelize","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1115,"kind":512,"name":"constructor","url":"classes/_core_.file.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1116,"kind":2048,"name":"where","url":"classes/_core_.file.html#where","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1117,"kind":2048,"name":"getDataValue","url":"classes/_core_.file.html#getdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1118,"kind":2048,"name":"setDataValue","url":"classes/_core_.file.html#setdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1119,"kind":2048,"name":"get","url":"classes/_core_.file.html#get","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1120,"kind":2048,"name":"set","url":"classes/_core_.file.html#set","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1121,"kind":2048,"name":"setAttributes","url":"classes/_core_.file.html#setattributes","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1122,"kind":2048,"name":"changed","url":"classes/_core_.file.html#changed","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1123,"kind":2048,"name":"previous","url":"classes/_core_.file.html#previous","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1124,"kind":2048,"name":"save","url":"classes/_core_.file.html#save","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1125,"kind":2048,"name":"reload","url":"classes/_core_.file.html#reload","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1126,"kind":2048,"name":"validate","url":"classes/_core_.file.html#validate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1127,"kind":2048,"name":"update","url":"classes/_core_.file.html#update","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1128,"kind":2048,"name":"destroy","url":"classes/_core_.file.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1129,"kind":2048,"name":"restore","url":"classes/_core_.file.html#restore","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1130,"kind":2048,"name":"increment","url":"classes/_core_.file.html#increment","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1131,"kind":2048,"name":"decrement","url":"classes/_core_.file.html#decrement","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1132,"kind":2048,"name":"equals","url":"classes/_core_.file.html#equals","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1133,"kind":2048,"name":"equalsOneOf","url":"classes/_core_.file.html#equalsoneof","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1134,"kind":2048,"name":"addHook","url":"classes/_core_.file.html#addhook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1135,"kind":2048,"name":"removeHook","url":"classes/_core_.file.html#removehook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1136,"kind":2048,"name":"hasHook","url":"classes/_core_.file.html#hashook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1137,"kind":2048,"name":"hasHooks","url":"classes/_core_.file.html#hashooks-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1138,"kind":2048,"name":"addHook","url":"classes/_core_.file.html#addhook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1139,"kind":2048,"name":"removeHook","url":"classes/_core_.file.html#removehook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1140,"kind":2048,"name":"hasHook","url":"classes/_core_.file.html#hashook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1141,"kind":2048,"name":"hasHooks","url":"classes/_core_.file.html#hashooks","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1142,"kind":32,"name":"__version__","url":"modules/_core_.html#__version__","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"core\""},{"id":1143,"kind":32,"name":"routeMetaInfo","url":"modules/_core_.html#routemetainfo","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"core\""},{"id":1144,"kind":32,"name":"disableLoading","url":"modules/_core_.html#disableloading","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"core\""},{"id":1145,"kind":1,"name":"\"factory\"","url":"modules/_factory_.html","classes":"tsd-kind-external-module"},{"id":1146,"kind":64,"name":"modelExtend","url":"modules/_factory_.html#modelextend","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"factory\""},{"id":1147,"kind":1,"name":"\"file\"","url":"modules/_file_.html","classes":"tsd-kind-external-module"},{"id":1148,"kind":128,"name":"Uploader","url":"classes/_file_.uploader.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"file\""},{"id":1149,"kind":1024,"name":"storeDir","url":"classes/_file_.uploader.html#storedir","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"file\".Uploader"},{"id":1150,"kind":512,"name":"constructor","url":"classes/_file_.uploader.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"file\".Uploader"},{"id":1151,"kind":2048,"name":"upload","url":"classes/_file_.uploader.html#upload","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"file\".Uploader"},{"id":1152,"kind":2048,"name":"getStorePath","url":"classes/_file_.uploader.html#getstorepath","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"file\".Uploader"},{"id":1153,"kind":2048,"name":"generateName","url":"classes/_file_.uploader.html#generatename","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"file\".Uploader"},{"id":1154,"kind":2048,"name":"getExactStoreDir","url":"classes/_file_.uploader.html#getexactstoredir","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"file\".Uploader"},{"id":1155,"kind":1,"name":"\"lin-validator\"","url":"modules/_lin_validator_.html","classes":"tsd-kind-external-module"},{"id":1156,"kind":128,"name":"LinValidator","url":"classes/_lin_validator_.linvalidator.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"lin-validator\""},{"id":1157,"kind":1024,"name":"data","url":"classes/_lin_validator_.linvalidator.html#data","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".LinValidator"},{"id":1158,"kind":1024,"name":"parsed","url":"classes/_lin_validator_.linvalidator.html#parsed","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".LinValidator"},{"id":1159,"kind":1024,"name":"errors","url":"classes/_lin_validator_.linvalidator.html#errors","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".LinValidator"},{"id":1160,"kind":1024,"name":"alias","url":"classes/_lin_validator_.linvalidator.html#alias","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".LinValidator"},{"id":1161,"kind":2048,"name":"validate","url":"classes/_lin_validator_.linvalidator.html#validate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-validator\".LinValidator"},{"id":1162,"kind":2048,"name":"replace","url":"classes/_lin_validator_.linvalidator.html#replace","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"lin-validator\".LinValidator"},{"id":1163,"kind":2048,"name":"isOptional","url":"classes/_lin_validator_.linvalidator.html#isoptional","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"lin-validator\".LinValidator"},{"id":1164,"kind":2048,"name":"checkRules","url":"classes/_lin_validator_.linvalidator.html#checkrules","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"lin-validator\".LinValidator"},{"id":1165,"kind":2048,"name":"getValidateFuncKey","url":"classes/_lin_validator_.linvalidator.html#getvalidatefunckey","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"lin-validator\".LinValidator"},{"id":1166,"kind":2048,"name":"get","url":"classes/_lin_validator_.linvalidator.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-validator\".LinValidator"},{"id":1167,"kind":2048,"name":"findInData","url":"classes/_lin_validator_.linvalidator.html#findindata","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"lin-validator\".LinValidator"},{"id":1168,"kind":128,"name":"Rule","url":"classes/_lin_validator_.rule.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"lin-validator\""},{"id":1169,"kind":1024,"name":"options","url":"classes/_lin_validator_.rule.html#options","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1170,"kind":1024,"name":"message","url":"classes/_lin_validator_.rule.html#message","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1171,"kind":1024,"name":"validateFunction","url":"classes/_lin_validator_.rule.html#validatefunction","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1172,"kind":1024,"name":"optional","url":"classes/_lin_validator_.rule.html#optional","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1173,"kind":1024,"name":"parsedValue","url":"classes/_lin_validator_.rule.html#parsedvalue","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1174,"kind":1024,"name":"rawValue","url":"classes/_lin_validator_.rule.html#rawvalue","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1175,"kind":1024,"name":"defaultValue","url":"classes/_lin_validator_.rule.html#defaultvalue","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1176,"kind":512,"name":"constructor","url":"classes/_lin_validator_.rule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1177,"kind":2048,"name":"validate","url":"classes/_lin_validator_.rule.html#validate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1178,"kind":1,"name":"\"log\"","url":"modules/_log_.html","classes":"tsd-kind-external-module"},{"id":1179,"kind":32,"name":"REG_XP","url":"modules/_log_.html#reg_xp","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"log\""},{"id":1180,"kind":64,"name":"logger","url":"modules/_log_.html#logger","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"log\""},{"id":1181,"kind":64,"name":"writeLog","url":"modules/_log_.html#writelog","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"log\""},{"id":1182,"kind":64,"name":"parseTemplate","url":"modules/_log_.html#parsetemplate","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"log\""},{"id":1183,"kind":1,"name":"\"middleware\"","url":"modules/_middleware_.html","classes":"tsd-kind-external-module"},{"id":1184,"kind":64,"name":"error","url":"modules/_middleware_.html#error","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"middleware\""},{"id":1185,"kind":64,"name":"log","url":"modules/_middleware_.html#log","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"middleware\""},{"id":1186,"kind":1,"name":"\"mixin\"","url":"modules/_mixin_.html","classes":"tsd-kind-external-module"},{"id":1187,"kind":128,"name":"JsonMixin","url":"classes/_mixin_.jsonmixin.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"mixin\""},{"id":1188,"kind":1024,"name":"fields","url":"classes/_mixin_.jsonmixin.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"mixin\".JsonMixin"},{"id":1189,"kind":1,"name":"\"index\"","url":"modules/_index_.html","classes":"tsd-kind-external-module"},{"id":1190,"kind":1,"name":"\"sse\"","url":"modules/_sse_.html","classes":"tsd-kind-external-module"},{"id":1191,"kind":128,"name":"SSE","url":"classes/_sse_.sse.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"sse\""},{"id":1192,"kind":512,"name":"constructor","url":"classes/_sse_.sse.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"sse\".SSE"},{"id":1193,"kind":2048,"name":"_transform","url":"classes/_sse_.sse.html#_transform","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"sse\".SSE"},{"id":1194,"kind":2048,"name":"_flush","url":"classes/_sse_.sse.html#_flush","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1195,"kind":1024,"name":"writable","url":"classes/_sse_.sse.html#writable","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1196,"kind":1024,"name":"writableHighWaterMark","url":"classes/_sse_.sse.html#writablehighwatermark","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1197,"kind":1024,"name":"writableLength","url":"classes/_sse_.sse.html#writablelength","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1198,"kind":2048,"name":"_write","url":"classes/_sse_.sse.html#_write","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1199,"kind":2048,"name":"_writev","url":"classes/_sse_.sse.html#_writev","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1200,"kind":2048,"name":"_destroy","url":"classes/_sse_.sse.html#_destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1201,"kind":2048,"name":"_final","url":"classes/_sse_.sse.html#_final","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1202,"kind":2048,"name":"write","url":"classes/_sse_.sse.html#write","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1203,"kind":2048,"name":"setDefaultEncoding","url":"classes/_sse_.sse.html#setdefaultencoding","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1204,"kind":2048,"name":"end","url":"classes/_sse_.sse.html#end","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1205,"kind":2048,"name":"cork","url":"classes/_sse_.sse.html#cork","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1206,"kind":2048,"name":"uncork","url":"classes/_sse_.sse.html#uncork","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1207,"kind":1024,"name":"readable","url":"classes/_sse_.sse.html#readable","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1208,"kind":1024,"name":"readableHighWaterMark","url":"classes/_sse_.sse.html#readablehighwatermark","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1209,"kind":1024,"name":"readableLength","url":"classes/_sse_.sse.html#readablelength","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1210,"kind":2048,"name":"_read","url":"classes/_sse_.sse.html#_read","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1211,"kind":2048,"name":"read","url":"classes/_sse_.sse.html#read","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1212,"kind":2048,"name":"setEncoding","url":"classes/_sse_.sse.html#setencoding","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1213,"kind":2048,"name":"pause","url":"classes/_sse_.sse.html#pause","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1214,"kind":2048,"name":"resume","url":"classes/_sse_.sse.html#resume","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1215,"kind":2048,"name":"isPaused","url":"classes/_sse_.sse.html#ispaused","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1216,"kind":2048,"name":"unpipe","url":"classes/_sse_.sse.html#unpipe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1217,"kind":2048,"name":"unshift","url":"classes/_sse_.sse.html#unshift","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1218,"kind":2048,"name":"wrap","url":"classes/_sse_.sse.html#wrap","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1219,"kind":2048,"name":"push","url":"classes/_sse_.sse.html#push","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1220,"kind":2048,"name":"destroy","url":"classes/_sse_.sse.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1221,"kind":2048,"name":"addListener","url":"classes/_sse_.sse.html#addlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1222,"kind":2048,"name":"emit","url":"classes/_sse_.sse.html#emit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1223,"kind":2048,"name":"on","url":"classes/_sse_.sse.html#on","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1224,"kind":2048,"name":"once","url":"classes/_sse_.sse.html#once","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1225,"kind":2048,"name":"prependListener","url":"classes/_sse_.sse.html#prependlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1226,"kind":2048,"name":"prependOnceListener","url":"classes/_sse_.sse.html#prependoncelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1227,"kind":2048,"name":"removeListener","url":"classes/_sse_.sse.html#removelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1228,"kind":2048,"name":"__@asyncIterator","url":"classes/_sse_.sse.html#___asynciterator","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1229,"kind":2048,"name":"pipe","url":"classes/_sse_.sse.html#pipe","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1230,"kind":2048,"name":"listenerCount","url":"classes/_sse_.sse.html#listenercount-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"sse\".SSE"},{"id":1231,"kind":1024,"name":"defaultMaxListeners","url":"classes/_sse_.sse.html#defaultmaxlisteners","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"sse\".SSE"},{"id":1232,"kind":2048,"name":"off","url":"classes/_sse_.sse.html#off","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1233,"kind":2048,"name":"removeAllListeners","url":"classes/_sse_.sse.html#removealllisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1234,"kind":2048,"name":"setMaxListeners","url":"classes/_sse_.sse.html#setmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1235,"kind":2048,"name":"getMaxListeners","url":"classes/_sse_.sse.html#getmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1236,"kind":2048,"name":"listeners","url":"classes/_sse_.sse.html#listeners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1237,"kind":2048,"name":"rawListeners","url":"classes/_sse_.sse.html#rawlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1238,"kind":2048,"name":"eventNames","url":"classes/_sse_.sse.html#eventnames","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1239,"kind":2048,"name":"listenerCount","url":"classes/_sse_.sse.html#listenercount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1240,"kind":128,"name":"MessageBroker","url":"classes/_sse_.messagebroker.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"sse\""},{"id":1241,"kind":1024,"name":"messages","url":"classes/_sse_.messagebroker.html#messages","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1242,"kind":1024,"name":"retry","url":"classes/_sse_.messagebroker.html#retry","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"sse\".MessageBroker"},{"id":1243,"kind":1024,"name":"buffer","url":"classes/_sse_.messagebroker.html#buffer","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"sse\".MessageBroker"},{"id":1244,"kind":1024,"name":"defaultId","url":"classes/_sse_.messagebroker.html#defaultid","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"sse\".MessageBroker"},{"id":1245,"kind":512,"name":"constructor","url":"classes/_sse_.messagebroker.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1246,"kind":2048,"name":"setRetry","url":"classes/_sse_.messagebroker.html#setretry","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1247,"kind":2048,"name":"setEventId","url":"classes/_sse_.messagebroker.html#seteventid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1248,"kind":2048,"name":"resetEventId","url":"classes/_sse_.messagebroker.html#reseteventid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1249,"kind":2048,"name":"increaseId","url":"classes/_sse_.messagebroker.html#increaseid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1250,"kind":2048,"name":"addMessage","url":"classes/_sse_.messagebroker.html#addmessage","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1251,"kind":2048,"name":"flushBuffer","url":"classes/_sse_.messagebroker.html#flushbuffer","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1252,"kind":2048,"name":"joinBuffer","url":"classes/_sse_.messagebroker.html#joinbuffer","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1253,"kind":2048,"name":"pop","url":"classes/_sse_.messagebroker.html#pop","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1254,"kind":2048,"name":"heartbeat","url":"classes/_sse_.messagebroker.html#heartbeat","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1255,"kind":2048,"name":"existMessage","url":"classes/_sse_.messagebroker.html#existmessage","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1256,"kind":128,"name":"Subscription","url":"classes/_sse_.subscription.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"sse\""},{"id":1257,"kind":1024,"name":"value","url":"classes/_sse_.subscription.html#value","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"sse\".Subscription"},{"id":1258,"kind":512,"name":"constructor","url":"classes/_sse_.subscription.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"sse\".Subscription"},{"id":1259,"kind":2048,"name":"_read","url":"classes/_sse_.subscription.html#_read","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"sse\".Subscription"},{"id":1260,"kind":1024,"name":"readable","url":"classes/_sse_.subscription.html#readable","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1261,"kind":1024,"name":"readableHighWaterMark","url":"classes/_sse_.subscription.html#readablehighwatermark","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1262,"kind":1024,"name":"readableLength","url":"classes/_sse_.subscription.html#readablelength","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1263,"kind":2048,"name":"read","url":"classes/_sse_.subscription.html#read","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1264,"kind":2048,"name":"setEncoding","url":"classes/_sse_.subscription.html#setencoding","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1265,"kind":2048,"name":"pause","url":"classes/_sse_.subscription.html#pause","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1266,"kind":2048,"name":"resume","url":"classes/_sse_.subscription.html#resume","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1267,"kind":2048,"name":"isPaused","url":"classes/_sse_.subscription.html#ispaused","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1268,"kind":2048,"name":"unpipe","url":"classes/_sse_.subscription.html#unpipe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1269,"kind":2048,"name":"unshift","url":"classes/_sse_.subscription.html#unshift","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1270,"kind":2048,"name":"wrap","url":"classes/_sse_.subscription.html#wrap","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1271,"kind":2048,"name":"push","url":"classes/_sse_.subscription.html#push","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1272,"kind":2048,"name":"_destroy","url":"classes/_sse_.subscription.html#_destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1273,"kind":2048,"name":"destroy","url":"classes/_sse_.subscription.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1274,"kind":2048,"name":"addListener","url":"classes/_sse_.subscription.html#addlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1275,"kind":2048,"name":"emit","url":"classes/_sse_.subscription.html#emit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1276,"kind":2048,"name":"on","url":"classes/_sse_.subscription.html#on","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1277,"kind":2048,"name":"once","url":"classes/_sse_.subscription.html#once","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1278,"kind":2048,"name":"prependListener","url":"classes/_sse_.subscription.html#prependlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1279,"kind":2048,"name":"prependOnceListener","url":"classes/_sse_.subscription.html#prependoncelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1280,"kind":2048,"name":"removeListener","url":"classes/_sse_.subscription.html#removelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1281,"kind":2048,"name":"__@asyncIterator","url":"classes/_sse_.subscription.html#___asynciterator","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1282,"kind":2048,"name":"pipe","url":"classes/_sse_.subscription.html#pipe","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1283,"kind":2048,"name":"listenerCount","url":"classes/_sse_.subscription.html#listenercount-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"sse\".Subscription"},{"id":1284,"kind":1024,"name":"defaultMaxListeners","url":"classes/_sse_.subscription.html#defaultmaxlisteners","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"sse\".Subscription"},{"id":1285,"kind":2048,"name":"off","url":"classes/_sse_.subscription.html#off","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1286,"kind":2048,"name":"removeAllListeners","url":"classes/_sse_.subscription.html#removealllisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1287,"kind":2048,"name":"setMaxListeners","url":"classes/_sse_.subscription.html#setmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1288,"kind":2048,"name":"getMaxListeners","url":"classes/_sse_.subscription.html#getmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1289,"kind":2048,"name":"listeners","url":"classes/_sse_.subscription.html#listeners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1290,"kind":2048,"name":"rawListeners","url":"classes/_sse_.subscription.html#rawlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1291,"kind":2048,"name":"eventNames","url":"classes/_sse_.subscription.html#eventnames","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1292,"kind":2048,"name":"listenerCount","url":"classes/_sse_.subscription.html#listenercount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"}]}; \ No newline at end of file + typedoc.search.data = {"kinds":{"1":"External module","4":"Enumeration","16":"Enumeration member","32":"Variable","64":"Function","128":"Class","256":"Interface","512":"Constructor","1024":"Property","2048":"Method","65536":"Type literal","262144":"Accessor","2097152":"Object literal","4194304":"Type alias"},"rows":[{"id":0,"kind":1,"name":"\"config\"","url":"modules/_config_.html","classes":"tsd-kind-external-module"},{"id":1,"kind":128,"name":"Config","url":"classes/_config_.config.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"config\""},{"id":2,"kind":1024,"name":"store","url":"classes/_config_.config.html#store","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"config\".Config"},{"id":3,"kind":2048,"name":"initApp","url":"classes/_config_.config.html#initapp","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"config\".Config"},{"id":4,"kind":2048,"name":"getItem","url":"classes/_config_.config.html#getitem","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"config\".Config"},{"id":5,"kind":2048,"name":"hasItem","url":"classes/_config_.config.html#hasitem","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"config\".Config"},{"id":6,"kind":2048,"name":"setItem","url":"classes/_config_.config.html#setitem","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"config\".Config"},{"id":7,"kind":2048,"name":"getConfigFromFile","url":"classes/_config_.config.html#getconfigfromfile","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"config\".Config"},{"id":8,"kind":2048,"name":"getConfigFromObj","url":"classes/_config_.config.html#getconfigfromobj","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"config\".Config"},{"id":9,"kind":32,"name":"config","url":"modules/_config_.html#config-1","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"config\""},{"id":10,"kind":1,"name":"\"exception\"","url":"modules/_exception_.html","classes":"tsd-kind-external-module"},{"id":11,"kind":256,"name":"Exception","url":"interfaces/_exception_.exception.html","classes":"tsd-kind-interface tsd-parent-kind-external-module","parent":"\"exception\""},{"id":12,"kind":1024,"name":"code","url":"interfaces/_exception_.exception.html#code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"exception\".Exception"},{"id":13,"kind":1024,"name":"msg","url":"interfaces/_exception_.exception.html#msg","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"exception\".Exception"},{"id":14,"kind":1024,"name":"errorCode","url":"interfaces/_exception_.exception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"exception\".Exception"},{"id":15,"kind":128,"name":"HttpException","url":"classes/_exception_.httpexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":16,"kind":1024,"name":"code","url":"classes/_exception_.httpexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"exception\".HttpException"},{"id":17,"kind":1024,"name":"msg","url":"classes/_exception_.httpexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"exception\".HttpException"},{"id":18,"kind":1024,"name":"errorCode","url":"classes/_exception_.httpexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"exception\".HttpException"},{"id":19,"kind":1024,"name":"fields","url":"classes/_exception_.httpexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"exception\".HttpException"},{"id":20,"kind":512,"name":"constructor","url":"classes/_exception_.httpexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"exception\".HttpException"},{"id":21,"kind":1024,"name":"name","url":"classes/_exception_.httpexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".HttpException"},{"id":22,"kind":1024,"name":"message","url":"classes/_exception_.httpexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".HttpException"},{"id":23,"kind":1024,"name":"stack","url":"classes/_exception_.httpexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".HttpException"},{"id":24,"kind":1024,"name":"Error","url":"classes/_exception_.httpexception.html#error","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"\"exception\".HttpException"},{"id":25,"kind":128,"name":"Success","url":"classes/_exception_.success.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":26,"kind":1024,"name":"code","url":"classes/_exception_.success.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Success"},{"id":27,"kind":1024,"name":"msg","url":"classes/_exception_.success.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Success"},{"id":28,"kind":1024,"name":"errorCode","url":"classes/_exception_.success.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Success"},{"id":29,"kind":512,"name":"constructor","url":"classes/_exception_.success.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Success"},{"id":30,"kind":1024,"name":"fields","url":"classes/_exception_.success.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Success"},{"id":31,"kind":1024,"name":"name","url":"classes/_exception_.success.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Success"},{"id":32,"kind":1024,"name":"message","url":"classes/_exception_.success.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Success"},{"id":33,"kind":1024,"name":"stack","url":"classes/_exception_.success.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".Success"},{"id":34,"kind":128,"name":"Failed","url":"classes/_exception_.failed.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":35,"kind":1024,"name":"code","url":"classes/_exception_.failed.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Failed"},{"id":36,"kind":1024,"name":"msg","url":"classes/_exception_.failed.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Failed"},{"id":37,"kind":1024,"name":"errorCode","url":"classes/_exception_.failed.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Failed"},{"id":38,"kind":512,"name":"constructor","url":"classes/_exception_.failed.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Failed"},{"id":39,"kind":1024,"name":"fields","url":"classes/_exception_.failed.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Failed"},{"id":40,"kind":1024,"name":"name","url":"classes/_exception_.failed.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Failed"},{"id":41,"kind":1024,"name":"message","url":"classes/_exception_.failed.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Failed"},{"id":42,"kind":1024,"name":"stack","url":"classes/_exception_.failed.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".Failed"},{"id":43,"kind":128,"name":"AuthFailed","url":"classes/_exception_.authfailed.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":44,"kind":1024,"name":"code","url":"classes/_exception_.authfailed.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".AuthFailed"},{"id":45,"kind":1024,"name":"msg","url":"classes/_exception_.authfailed.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".AuthFailed"},{"id":46,"kind":1024,"name":"errorCode","url":"classes/_exception_.authfailed.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".AuthFailed"},{"id":47,"kind":512,"name":"constructor","url":"classes/_exception_.authfailed.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".AuthFailed"},{"id":48,"kind":1024,"name":"fields","url":"classes/_exception_.authfailed.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".AuthFailed"},{"id":49,"kind":1024,"name":"name","url":"classes/_exception_.authfailed.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".AuthFailed"},{"id":50,"kind":1024,"name":"message","url":"classes/_exception_.authfailed.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".AuthFailed"},{"id":51,"kind":1024,"name":"stack","url":"classes/_exception_.authfailed.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".AuthFailed"},{"id":52,"kind":128,"name":"NotFound","url":"classes/_exception_.notfound.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":53,"kind":1024,"name":"code","url":"classes/_exception_.notfound.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".NotFound"},{"id":54,"kind":1024,"name":"msg","url":"classes/_exception_.notfound.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".NotFound"},{"id":55,"kind":1024,"name":"errorCode","url":"classes/_exception_.notfound.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".NotFound"},{"id":56,"kind":512,"name":"constructor","url":"classes/_exception_.notfound.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".NotFound"},{"id":57,"kind":1024,"name":"fields","url":"classes/_exception_.notfound.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".NotFound"},{"id":58,"kind":1024,"name":"name","url":"classes/_exception_.notfound.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".NotFound"},{"id":59,"kind":1024,"name":"message","url":"classes/_exception_.notfound.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".NotFound"},{"id":60,"kind":1024,"name":"stack","url":"classes/_exception_.notfound.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".NotFound"},{"id":61,"kind":128,"name":"ParametersException","url":"classes/_exception_.parametersexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":62,"kind":1024,"name":"code","url":"classes/_exception_.parametersexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ParametersException"},{"id":63,"kind":1024,"name":"msg","url":"classes/_exception_.parametersexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ParametersException"},{"id":64,"kind":1024,"name":"errorCode","url":"classes/_exception_.parametersexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ParametersException"},{"id":65,"kind":512,"name":"constructor","url":"classes/_exception_.parametersexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ParametersException"},{"id":66,"kind":1024,"name":"fields","url":"classes/_exception_.parametersexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".ParametersException"},{"id":67,"kind":1024,"name":"name","url":"classes/_exception_.parametersexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".ParametersException"},{"id":68,"kind":1024,"name":"message","url":"classes/_exception_.parametersexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".ParametersException"},{"id":69,"kind":1024,"name":"stack","url":"classes/_exception_.parametersexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".ParametersException"},{"id":70,"kind":128,"name":"InvalidTokenException","url":"classes/_exception_.invalidtokenexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":71,"kind":1024,"name":"code","url":"classes/_exception_.invalidtokenexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".InvalidTokenException"},{"id":72,"kind":1024,"name":"msg","url":"classes/_exception_.invalidtokenexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".InvalidTokenException"},{"id":73,"kind":1024,"name":"errorCode","url":"classes/_exception_.invalidtokenexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".InvalidTokenException"},{"id":74,"kind":512,"name":"constructor","url":"classes/_exception_.invalidtokenexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".InvalidTokenException"},{"id":75,"kind":1024,"name":"fields","url":"classes/_exception_.invalidtokenexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".InvalidTokenException"},{"id":76,"kind":1024,"name":"name","url":"classes/_exception_.invalidtokenexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".InvalidTokenException"},{"id":77,"kind":1024,"name":"message","url":"classes/_exception_.invalidtokenexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".InvalidTokenException"},{"id":78,"kind":1024,"name":"stack","url":"classes/_exception_.invalidtokenexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".InvalidTokenException"},{"id":79,"kind":128,"name":"ExpiredTokenException","url":"classes/_exception_.expiredtokenexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":80,"kind":1024,"name":"code","url":"classes/_exception_.expiredtokenexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ExpiredTokenException"},{"id":81,"kind":1024,"name":"msg","url":"classes/_exception_.expiredtokenexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ExpiredTokenException"},{"id":82,"kind":1024,"name":"errorCode","url":"classes/_exception_.expiredtokenexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ExpiredTokenException"},{"id":83,"kind":512,"name":"constructor","url":"classes/_exception_.expiredtokenexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ExpiredTokenException"},{"id":84,"kind":1024,"name":"fields","url":"classes/_exception_.expiredtokenexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".ExpiredTokenException"},{"id":85,"kind":1024,"name":"name","url":"classes/_exception_.expiredtokenexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".ExpiredTokenException"},{"id":86,"kind":1024,"name":"message","url":"classes/_exception_.expiredtokenexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".ExpiredTokenException"},{"id":87,"kind":1024,"name":"stack","url":"classes/_exception_.expiredtokenexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".ExpiredTokenException"},{"id":88,"kind":128,"name":"UnknownException","url":"classes/_exception_.unknownexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":89,"kind":1024,"name":"code","url":"classes/_exception_.unknownexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".UnknownException"},{"id":90,"kind":1024,"name":"msg","url":"classes/_exception_.unknownexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".UnknownException"},{"id":91,"kind":1024,"name":"errorCode","url":"classes/_exception_.unknownexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".UnknownException"},{"id":92,"kind":512,"name":"constructor","url":"classes/_exception_.unknownexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".UnknownException"},{"id":93,"kind":1024,"name":"fields","url":"classes/_exception_.unknownexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".UnknownException"},{"id":94,"kind":1024,"name":"name","url":"classes/_exception_.unknownexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".UnknownException"},{"id":95,"kind":1024,"name":"message","url":"classes/_exception_.unknownexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".UnknownException"},{"id":96,"kind":1024,"name":"stack","url":"classes/_exception_.unknownexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".UnknownException"},{"id":97,"kind":128,"name":"RepeatException","url":"classes/_exception_.repeatexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":98,"kind":1024,"name":"code","url":"classes/_exception_.repeatexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RepeatException"},{"id":99,"kind":1024,"name":"msg","url":"classes/_exception_.repeatexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RepeatException"},{"id":100,"kind":1024,"name":"errorCode","url":"classes/_exception_.repeatexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RepeatException"},{"id":101,"kind":512,"name":"constructor","url":"classes/_exception_.repeatexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RepeatException"},{"id":102,"kind":1024,"name":"fields","url":"classes/_exception_.repeatexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".RepeatException"},{"id":103,"kind":1024,"name":"name","url":"classes/_exception_.repeatexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".RepeatException"},{"id":104,"kind":1024,"name":"message","url":"classes/_exception_.repeatexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".RepeatException"},{"id":105,"kind":1024,"name":"stack","url":"classes/_exception_.repeatexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".RepeatException"},{"id":106,"kind":128,"name":"Forbidden","url":"classes/_exception_.forbidden.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":107,"kind":1024,"name":"code","url":"classes/_exception_.forbidden.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Forbidden"},{"id":108,"kind":1024,"name":"msg","url":"classes/_exception_.forbidden.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Forbidden"},{"id":109,"kind":1024,"name":"errorCode","url":"classes/_exception_.forbidden.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Forbidden"},{"id":110,"kind":512,"name":"constructor","url":"classes/_exception_.forbidden.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Forbidden"},{"id":111,"kind":1024,"name":"fields","url":"classes/_exception_.forbidden.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Forbidden"},{"id":112,"kind":1024,"name":"name","url":"classes/_exception_.forbidden.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Forbidden"},{"id":113,"kind":1024,"name":"message","url":"classes/_exception_.forbidden.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Forbidden"},{"id":114,"kind":1024,"name":"stack","url":"classes/_exception_.forbidden.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".Forbidden"},{"id":115,"kind":128,"name":"MethodNotAllowed","url":"classes/_exception_.methodnotallowed.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":116,"kind":1024,"name":"code","url":"classes/_exception_.methodnotallowed.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".MethodNotAllowed"},{"id":117,"kind":1024,"name":"msg","url":"classes/_exception_.methodnotallowed.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".MethodNotAllowed"},{"id":118,"kind":1024,"name":"errorCode","url":"classes/_exception_.methodnotallowed.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".MethodNotAllowed"},{"id":119,"kind":512,"name":"constructor","url":"classes/_exception_.methodnotallowed.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".MethodNotAllowed"},{"id":120,"kind":1024,"name":"fields","url":"classes/_exception_.methodnotallowed.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".MethodNotAllowed"},{"id":121,"kind":1024,"name":"name","url":"classes/_exception_.methodnotallowed.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".MethodNotAllowed"},{"id":122,"kind":1024,"name":"message","url":"classes/_exception_.methodnotallowed.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".MethodNotAllowed"},{"id":123,"kind":1024,"name":"stack","url":"classes/_exception_.methodnotallowed.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".MethodNotAllowed"},{"id":124,"kind":128,"name":"RefreshException","url":"classes/_exception_.refreshexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":125,"kind":1024,"name":"code","url":"classes/_exception_.refreshexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RefreshException"},{"id":126,"kind":1024,"name":"msg","url":"classes/_exception_.refreshexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RefreshException"},{"id":127,"kind":1024,"name":"errorCode","url":"classes/_exception_.refreshexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RefreshException"},{"id":128,"kind":512,"name":"constructor","url":"classes/_exception_.refreshexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RefreshException"},{"id":129,"kind":1024,"name":"fields","url":"classes/_exception_.refreshexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".RefreshException"},{"id":130,"kind":1024,"name":"name","url":"classes/_exception_.refreshexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".RefreshException"},{"id":131,"kind":1024,"name":"message","url":"classes/_exception_.refreshexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".RefreshException"},{"id":132,"kind":1024,"name":"stack","url":"classes/_exception_.refreshexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".RefreshException"},{"id":133,"kind":128,"name":"FileTooLargeException","url":"classes/_exception_.filetoolargeexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":134,"kind":1024,"name":"code","url":"classes/_exception_.filetoolargeexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileTooLargeException"},{"id":135,"kind":1024,"name":"msg","url":"classes/_exception_.filetoolargeexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileTooLargeException"},{"id":136,"kind":1024,"name":"errorCode","url":"classes/_exception_.filetoolargeexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileTooLargeException"},{"id":137,"kind":512,"name":"constructor","url":"classes/_exception_.filetoolargeexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileTooLargeException"},{"id":138,"kind":1024,"name":"fields","url":"classes/_exception_.filetoolargeexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".FileTooLargeException"},{"id":139,"kind":1024,"name":"name","url":"classes/_exception_.filetoolargeexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".FileTooLargeException"},{"id":140,"kind":1024,"name":"message","url":"classes/_exception_.filetoolargeexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".FileTooLargeException"},{"id":141,"kind":1024,"name":"stack","url":"classes/_exception_.filetoolargeexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".FileTooLargeException"},{"id":142,"kind":128,"name":"FileTooManyException","url":"classes/_exception_.filetoomanyexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":143,"kind":1024,"name":"code","url":"classes/_exception_.filetoomanyexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileTooManyException"},{"id":144,"kind":1024,"name":"msg","url":"classes/_exception_.filetoomanyexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileTooManyException"},{"id":145,"kind":1024,"name":"errorCode","url":"classes/_exception_.filetoomanyexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileTooManyException"},{"id":146,"kind":512,"name":"constructor","url":"classes/_exception_.filetoomanyexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileTooManyException"},{"id":147,"kind":1024,"name":"fields","url":"classes/_exception_.filetoomanyexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".FileTooManyException"},{"id":148,"kind":1024,"name":"name","url":"classes/_exception_.filetoomanyexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".FileTooManyException"},{"id":149,"kind":1024,"name":"message","url":"classes/_exception_.filetoomanyexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".FileTooManyException"},{"id":150,"kind":1024,"name":"stack","url":"classes/_exception_.filetoomanyexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".FileTooManyException"},{"id":151,"kind":128,"name":"FileExtensionException","url":"classes/_exception_.fileextensionexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":152,"kind":1024,"name":"code","url":"classes/_exception_.fileextensionexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileExtensionException"},{"id":153,"kind":1024,"name":"msg","url":"classes/_exception_.fileextensionexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileExtensionException"},{"id":154,"kind":1024,"name":"errorCode","url":"classes/_exception_.fileextensionexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileExtensionException"},{"id":155,"kind":512,"name":"constructor","url":"classes/_exception_.fileextensionexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileExtensionException"},{"id":156,"kind":1024,"name":"fields","url":"classes/_exception_.fileextensionexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".FileExtensionException"},{"id":157,"kind":1024,"name":"name","url":"classes/_exception_.fileextensionexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".FileExtensionException"},{"id":158,"kind":1024,"name":"message","url":"classes/_exception_.fileextensionexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".FileExtensionException"},{"id":159,"kind":1024,"name":"stack","url":"classes/_exception_.fileextensionexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".FileExtensionException"},{"id":160,"kind":128,"name":"LimitException","url":"classes/_exception_.limitexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":161,"kind":1024,"name":"code","url":"classes/_exception_.limitexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".LimitException"},{"id":162,"kind":1024,"name":"msg","url":"classes/_exception_.limitexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".LimitException"},{"id":163,"kind":1024,"name":"errorCode","url":"classes/_exception_.limitexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".LimitException"},{"id":164,"kind":512,"name":"constructor","url":"classes/_exception_.limitexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".LimitException"},{"id":165,"kind":1024,"name":"fields","url":"classes/_exception_.limitexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".LimitException"},{"id":166,"kind":1024,"name":"name","url":"classes/_exception_.limitexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".LimitException"},{"id":167,"kind":1024,"name":"message","url":"classes/_exception_.limitexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".LimitException"},{"id":168,"kind":1024,"name":"stack","url":"classes/_exception_.limitexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".LimitException"},{"id":169,"kind":1,"name":"\"enums\"","url":"modules/_enums_.html","classes":"tsd-kind-external-module"},{"id":170,"kind":4,"name":"UserAdmin","url":"enums/_enums_.useradmin.html","classes":"tsd-kind-enum tsd-parent-kind-external-module","parent":"\"enums\""},{"id":171,"kind":16,"name":"COMMON","url":"enums/_enums_.useradmin.html#common","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"enums\".UserAdmin"},{"id":172,"kind":16,"name":"ADMIN","url":"enums/_enums_.useradmin.html#admin","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"enums\".UserAdmin"},{"id":173,"kind":4,"name":"UserActive","url":"enums/_enums_.useractive.html","classes":"tsd-kind-enum tsd-parent-kind-external-module","parent":"\"enums\""},{"id":174,"kind":16,"name":"ACTIVE","url":"enums/_enums_.useractive.html#active","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"enums\".UserActive"},{"id":175,"kind":16,"name":"NOT_ACTIVE","url":"enums/_enums_.useractive.html#not_active","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"enums\".UserActive"},{"id":176,"kind":4,"name":"TokenType","url":"enums/_enums_.tokentype.html","classes":"tsd-kind-enum tsd-parent-kind-external-module","parent":"\"enums\""},{"id":177,"kind":16,"name":"ACCESS","url":"enums/_enums_.tokentype.html#access","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"enums\".TokenType"},{"id":178,"kind":16,"name":"REFRESH","url":"enums/_enums_.tokentype.html#refresh","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"enums\".TokenType"},{"id":179,"kind":1,"name":"\"jwt\"","url":"modules/_jwt_.html","classes":"tsd-kind-external-module"},{"id":180,"kind":128,"name":"Token","url":"classes/_jwt_.token.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"jwt\""},{"id":181,"kind":1024,"name":"secret","url":"classes/_jwt_.token.html#secret","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":182,"kind":1024,"name":"accessExp","url":"classes/_jwt_.token.html#accessexp","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":183,"kind":1024,"name":"refreshExp","url":"classes/_jwt_.token.html#refreshexp","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":184,"kind":512,"name":"constructor","url":"classes/_jwt_.token.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":185,"kind":2048,"name":"initApp","url":"classes/_jwt_.token.html#initapp","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":186,"kind":2048,"name":"createAccessToken","url":"classes/_jwt_.token.html#createaccesstoken","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":187,"kind":2048,"name":"createRefreshToken","url":"classes/_jwt_.token.html#createrefreshtoken","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":188,"kind":2048,"name":"verifyToken","url":"classes/_jwt_.token.html#verifytoken","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":189,"kind":32,"name":"jwt","url":"modules/_jwt_.html#jwt","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":190,"kind":64,"name":"createAccessToken","url":"modules/_jwt_.html#createaccesstoken","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"jwt\""},{"id":191,"kind":64,"name":"createRefreshToken","url":"modules/_jwt_.html#createrefreshtoken","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"jwt\""},{"id":192,"kind":64,"name":"verifyAccessToken","url":"modules/_jwt_.html#verifyaccesstoken","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"jwt\""},{"id":193,"kind":64,"name":"verifyRefreshToken","url":"modules/_jwt_.html#verifyrefreshtoken","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"jwt\""},{"id":194,"kind":64,"name":"getTokens","url":"modules/_jwt_.html#gettokens","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":195,"kind":64,"name":"parseHeader","url":"modules/_jwt_.html#parseheader","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":196,"kind":64,"name":"checkUserIsActive","url":"modules/_jwt_.html#checkuserisactive","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":197,"kind":64,"name":"loginRequired","url":"modules/_jwt_.html#loginrequired","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":198,"kind":64,"name":"refreshTokenRequired","url":"modules/_jwt_.html#refreshtokenrequired","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":199,"kind":64,"name":"refreshTokenRequiredWithUnifyException","url":"modules/_jwt_.html#refreshtokenrequiredwithunifyexception","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":200,"kind":64,"name":"groupRequired","url":"modules/_jwt_.html#grouprequired","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":201,"kind":64,"name":"adminRequired","url":"modules/_jwt_.html#adminrequired","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":202,"kind":1,"name":"\"extended-validator\"","url":"modules/_extended_validator_.html","classes":"tsd-kind-external-module"},{"id":203,"kind":256,"name":"IsFloatOptions","url":"interfaces/_extended_validator_.isfloatoptions.html","classes":"tsd-kind-interface tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"extended-validator\""},{"id":204,"kind":1024,"name":"min","url":"interfaces/_extended_validator_.isfloatoptions.html#min","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsFloatOptions"},{"id":205,"kind":1024,"name":"max","url":"interfaces/_extended_validator_.isfloatoptions.html#max","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsFloatOptions"},{"id":206,"kind":1024,"name":"gt","url":"interfaces/_extended_validator_.isfloatoptions.html#gt","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsFloatOptions"},{"id":207,"kind":1024,"name":"lt","url":"interfaces/_extended_validator_.isfloatoptions.html#lt","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsFloatOptions"},{"id":208,"kind":256,"name":"IsIntOptions","url":"interfaces/_extended_validator_.isintoptions.html","classes":"tsd-kind-interface tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"extended-validator\""},{"id":209,"kind":1024,"name":"min","url":"interfaces/_extended_validator_.isintoptions.html#min","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsIntOptions"},{"id":210,"kind":1024,"name":"max","url":"interfaces/_extended_validator_.isintoptions.html#max","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsIntOptions"},{"id":211,"kind":1024,"name":"allow_leading_zeroes","url":"interfaces/_extended_validator_.isintoptions.html#allow_leading_zeroes","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsIntOptions"},{"id":212,"kind":1024,"name":"lt","url":"interfaces/_extended_validator_.isintoptions.html#lt","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsIntOptions"},{"id":213,"kind":1024,"name":"gt","url":"interfaces/_extended_validator_.isintoptions.html#gt","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsIntOptions"},{"id":214,"kind":128,"name":"ExtendedValidator","url":"classes/_extended_validator_.extendedvalidator.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"extended-validator\""},{"id":215,"kind":2048,"name":"hasProperty","url":"classes/_extended_validator_.extendedvalidator.html#hasproperty","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":216,"kind":2048,"name":"objPropertyIsNotEmpty","url":"classes/_extended_validator_.extendedvalidator.html#objpropertyisnotempty","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":217,"kind":2048,"name":"objPropertiesIsNotEmpty","url":"classes/_extended_validator_.extendedvalidator.html#objpropertiesisnotempty","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":218,"kind":2048,"name":"toInt","url":"classes/_extended_validator_.extendedvalidator.html#toint","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":219,"kind":2048,"name":"toFloat","url":"classes/_extended_validator_.extendedvalidator.html#tofloat","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":220,"kind":2048,"name":"toBoolean","url":"classes/_extended_validator_.extendedvalidator.html#toboolean","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":221,"kind":2048,"name":"toDate","url":"classes/_extended_validator_.extendedvalidator.html#todate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":222,"kind":2048,"name":"isFloat","url":"classes/_extended_validator_.extendedvalidator.html#isfloat","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":223,"kind":2048,"name":"isFloat2","url":"classes/_extended_validator_.extendedvalidator.html#isfloat2","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":224,"kind":2048,"name":"isInt2","url":"classes/_extended_validator_.extendedvalidator.html#isint2","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":225,"kind":2048,"name":"isInt3","url":"classes/_extended_validator_.extendedvalidator.html#isint3","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":226,"kind":2048,"name":"validate","url":"classes/_extended_validator_.extendedvalidator.html#validate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":227,"kind":2048,"name":"validateOrReject","url":"classes/_extended_validator_.extendedvalidator.html#validateorreject","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":228,"kind":2048,"name":"validateSync","url":"classes/_extended_validator_.extendedvalidator.html#validatesync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":229,"kind":2048,"name":"validateValueByMetadata","url":"classes/_extended_validator_.extendedvalidator.html#validatevaluebymetadata","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":230,"kind":2048,"name":"isDefined","url":"classes/_extended_validator_.extendedvalidator.html#isdefined","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":231,"kind":2048,"name":"equals","url":"classes/_extended_validator_.extendedvalidator.html#equals","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":232,"kind":2048,"name":"notEquals","url":"classes/_extended_validator_.extendedvalidator.html#notequals","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":233,"kind":2048,"name":"isEmpty","url":"classes/_extended_validator_.extendedvalidator.html#isempty","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":234,"kind":2048,"name":"isNotEmpty","url":"classes/_extended_validator_.extendedvalidator.html#isnotempty","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":235,"kind":2048,"name":"isIn","url":"classes/_extended_validator_.extendedvalidator.html#isin","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":236,"kind":2048,"name":"isNotIn","url":"classes/_extended_validator_.extendedvalidator.html#isnotin","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":237,"kind":2048,"name":"isBoolean","url":"classes/_extended_validator_.extendedvalidator.html#isboolean","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":238,"kind":2048,"name":"isDate","url":"classes/_extended_validator_.extendedvalidator.html#isdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":239,"kind":2048,"name":"isString","url":"classes/_extended_validator_.extendedvalidator.html#isstring","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":240,"kind":2048,"name":"isDateString","url":"classes/_extended_validator_.extendedvalidator.html#isdatestring","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":241,"kind":2048,"name":"isArray","url":"classes/_extended_validator_.extendedvalidator.html#isarray","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":242,"kind":2048,"name":"isEnum","url":"classes/_extended_validator_.extendedvalidator.html#isenum","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":243,"kind":2048,"name":"isNumber","url":"classes/_extended_validator_.extendedvalidator.html#isnumber","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":244,"kind":2048,"name":"isInt","url":"classes/_extended_validator_.extendedvalidator.html#isint","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":245,"kind":2048,"name":"isDivisibleBy","url":"classes/_extended_validator_.extendedvalidator.html#isdivisibleby","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":246,"kind":2048,"name":"isPositive","url":"classes/_extended_validator_.extendedvalidator.html#ispositive","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":247,"kind":2048,"name":"isNegative","url":"classes/_extended_validator_.extendedvalidator.html#isnegative","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":248,"kind":2048,"name":"min","url":"classes/_extended_validator_.extendedvalidator.html#min","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":249,"kind":2048,"name":"max","url":"classes/_extended_validator_.extendedvalidator.html#max","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":250,"kind":2048,"name":"minDate","url":"classes/_extended_validator_.extendedvalidator.html#mindate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":251,"kind":2048,"name":"maxDate","url":"classes/_extended_validator_.extendedvalidator.html#maxdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":252,"kind":2048,"name":"isBooleanString","url":"classes/_extended_validator_.extendedvalidator.html#isbooleanstring","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":253,"kind":2048,"name":"isNumberString","url":"classes/_extended_validator_.extendedvalidator.html#isnumberstring","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":254,"kind":2048,"name":"contains","url":"classes/_extended_validator_.extendedvalidator.html#contains","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":255,"kind":2048,"name":"notContains","url":"classes/_extended_validator_.extendedvalidator.html#notcontains","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":256,"kind":2048,"name":"isAlpha","url":"classes/_extended_validator_.extendedvalidator.html#isalpha","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":257,"kind":2048,"name":"isAlphanumeric","url":"classes/_extended_validator_.extendedvalidator.html#isalphanumeric","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":258,"kind":2048,"name":"isAscii","url":"classes/_extended_validator_.extendedvalidator.html#isascii","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":259,"kind":2048,"name":"isBase64","url":"classes/_extended_validator_.extendedvalidator.html#isbase64","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":260,"kind":2048,"name":"isByteLength","url":"classes/_extended_validator_.extendedvalidator.html#isbytelength","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":261,"kind":2048,"name":"isCreditCard","url":"classes/_extended_validator_.extendedvalidator.html#iscreditcard","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":262,"kind":2048,"name":"isCurrency","url":"classes/_extended_validator_.extendedvalidator.html#iscurrency","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":263,"kind":2048,"name":"isEmail","url":"classes/_extended_validator_.extendedvalidator.html#isemail","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":264,"kind":2048,"name":"isFQDN","url":"classes/_extended_validator_.extendedvalidator.html#isfqdn","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":265,"kind":2048,"name":"isFullWidth","url":"classes/_extended_validator_.extendedvalidator.html#isfullwidth","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":266,"kind":2048,"name":"isHalfWidth","url":"classes/_extended_validator_.extendedvalidator.html#ishalfwidth","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":267,"kind":2048,"name":"isVariableWidth","url":"classes/_extended_validator_.extendedvalidator.html#isvariablewidth","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":268,"kind":2048,"name":"isHexColor","url":"classes/_extended_validator_.extendedvalidator.html#ishexcolor","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":269,"kind":2048,"name":"isHexadecimal","url":"classes/_extended_validator_.extendedvalidator.html#ishexadecimal","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":270,"kind":2048,"name":"isIP","url":"classes/_extended_validator_.extendedvalidator.html#isip","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":271,"kind":2048,"name":"isISBN","url":"classes/_extended_validator_.extendedvalidator.html#isisbn","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":272,"kind":2048,"name":"isISIN","url":"classes/_extended_validator_.extendedvalidator.html#isisin","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":273,"kind":2048,"name":"isISO8601","url":"classes/_extended_validator_.extendedvalidator.html#isiso8601","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":274,"kind":2048,"name":"isJSON","url":"classes/_extended_validator_.extendedvalidator.html#isjson","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":275,"kind":2048,"name":"isLowercase","url":"classes/_extended_validator_.extendedvalidator.html#islowercase","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":276,"kind":2048,"name":"isMobilePhone","url":"classes/_extended_validator_.extendedvalidator.html#ismobilephone","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":277,"kind":2048,"name":"isPhoneNumber","url":"classes/_extended_validator_.extendedvalidator.html#isphonenumber","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":278,"kind":2048,"name":"isMongoId","url":"classes/_extended_validator_.extendedvalidator.html#ismongoid","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":279,"kind":2048,"name":"isMultibyte","url":"classes/_extended_validator_.extendedvalidator.html#ismultibyte","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":280,"kind":2048,"name":"isSurrogatePair","url":"classes/_extended_validator_.extendedvalidator.html#issurrogatepair","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":281,"kind":2048,"name":"isURL","url":"classes/_extended_validator_.extendedvalidator.html#isurl","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":282,"kind":2048,"name":"isUUID","url":"classes/_extended_validator_.extendedvalidator.html#isuuid","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":283,"kind":2048,"name":"isUppercase","url":"classes/_extended_validator_.extendedvalidator.html#isuppercase","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":284,"kind":2048,"name":"length","url":"classes/_extended_validator_.extendedvalidator.html#length","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":285,"kind":2048,"name":"minLength","url":"classes/_extended_validator_.extendedvalidator.html#minlength","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":286,"kind":2048,"name":"maxLength","url":"classes/_extended_validator_.extendedvalidator.html#maxlength","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":287,"kind":2048,"name":"matches","url":"classes/_extended_validator_.extendedvalidator.html#matches","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":288,"kind":2048,"name":"isMilitaryTime","url":"classes/_extended_validator_.extendedvalidator.html#ismilitarytime","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":289,"kind":2048,"name":"arrayContains","url":"classes/_extended_validator_.extendedvalidator.html#arraycontains","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":290,"kind":2048,"name":"arrayNotContains","url":"classes/_extended_validator_.extendedvalidator.html#arraynotcontains","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":291,"kind":2048,"name":"arrayNotEmpty","url":"classes/_extended_validator_.extendedvalidator.html#arraynotempty","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":292,"kind":2048,"name":"arrayMinSize","url":"classes/_extended_validator_.extendedvalidator.html#arrayminsize","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":293,"kind":2048,"name":"arrayMaxSize","url":"classes/_extended_validator_.extendedvalidator.html#arraymaxsize","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":294,"kind":2048,"name":"arrayUnique","url":"classes/_extended_validator_.extendedvalidator.html#arrayunique","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":295,"kind":2048,"name":"isInstance","url":"classes/_extended_validator_.extendedvalidator.html#isinstance","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":296,"kind":32,"name":"extendedValidator","url":"modules/_extended_validator_.html#extendedvalidator-1","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"extended-validator\""},{"id":297,"kind":1,"name":"\"util\"","url":"modules/_util_.html","classes":"tsd-kind-external-module"},{"id":298,"kind":256,"name":"ObjOptions","url":"interfaces/_util_.objoptions.html","classes":"tsd-kind-interface tsd-parent-kind-external-module","parent":"\"util\""},{"id":299,"kind":1024,"name":"prefix","url":"interfaces/_util_.objoptions.html#prefix","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"util\".ObjOptions"},{"id":300,"kind":1024,"name":"filter","url":"interfaces/_util_.objoptions.html#filter","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"util\".ObjOptions"},{"id":301,"kind":64,"name":"isUndefined","url":"modules/_util_.html#isundefined","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":302,"kind":64,"name":"isFunction","url":"modules/_util_.html#isfunction","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":303,"kind":64,"name":"isObject","url":"modules/_util_.html#isobject","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":304,"kind":64,"name":"isString","url":"modules/_util_.html#isstring","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":305,"kind":64,"name":"isConstructor","url":"modules/_util_.html#isconstructor","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":306,"kind":64,"name":"validatePath","url":"modules/_util_.html#validatepath","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":307,"kind":64,"name":"isNil","url":"modules/_util_.html#isnil","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":308,"kind":64,"name":"isEmpty","url":"modules/_util_.html#isempty","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":309,"kind":64,"name":"isSymbol","url":"modules/_util_.html#issymbol","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":310,"kind":64,"name":"strVal","url":"modules/_util_.html#strval","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":311,"kind":32,"name":"isNotEmpty","url":"modules/_util_.html#isnotempty","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"util\""},{"id":312,"kind":32,"name":"isNegative","url":"modules/_util_.html#isnegative","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"util\""},{"id":313,"kind":32,"name":"isPositive","url":"modules/_util_.html#ispositive","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"util\""},{"id":314,"kind":64,"name":"assert","url":"modules/_util_.html#assert","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":315,"kind":64,"name":"toHump","url":"modules/_util_.html#tohump","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":316,"kind":64,"name":"toLine","url":"modules/_util_.html#toline","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":317,"kind":64,"name":"findAuthAndModule","url":"modules/_util_.html#findauthandmodule","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":318,"kind":64,"name":"findMetaByAuth","url":"modules/_util_.html#findmetabyauth","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":319,"kind":64,"name":"checkDateFormat","url":"modules/_util_.html#checkdateformat","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":320,"kind":64,"name":"paginate","url":"modules/_util_.html#paginate","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":321,"kind":64,"name":"unsets","url":"modules/_util_.html#unsets","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":322,"kind":64,"name":"decorateProp","url":"modules/_util_.html#decorateprop","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":323,"kind":64,"name":"getAllMethodNames","url":"modules/_util_.html#getallmethodnames","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":324,"kind":64,"name":"getAllFieldNames","url":"modules/_util_.html#getallfieldnames","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":325,"kind":64,"name":"prefixAndFilter","url":"modules/_util_.html#prefixandfilter","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"util\""},{"id":326,"kind":64,"name":"getFiles","url":"modules/_util_.html#getfiles","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":327,"kind":64,"name":"mkdirsSync","url":"modules/_util_.html#mkdirssync","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":328,"kind":1,"name":"\"db\"","url":"modules/_db_.html","classes":"tsd-kind-external-module"},{"id":329,"kind":32,"name":"database","url":"modules/_db_.html#database","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"db\""},{"id":330,"kind":32,"name":"type","url":"modules/_db_.html#type","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"db\""},{"id":331,"kind":32,"name":"host","url":"modules/_db_.html#host","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"db\""},{"id":332,"kind":32,"name":"port","url":"modules/_db_.html#port","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"db\""},{"id":333,"kind":32,"name":"username","url":"modules/_db_.html#username","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"db\""},{"id":334,"kind":32,"name":"password","url":"modules/_db_.html#password","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"db\""},{"id":335,"kind":32,"name":"logging","url":"modules/_db_.html#logging","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"db\""},{"id":336,"kind":32,"name":"db","url":"modules/_db_.html#db","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"db\""},{"id":337,"kind":1,"name":"\"password-hash\"","url":"modules/_password_hash_.html","classes":"tsd-kind-external-module"},{"id":338,"kind":256,"name":"Option","url":"interfaces/_password_hash_.option.html","classes":"tsd-kind-interface tsd-parent-kind-external-module","parent":"\"password-hash\""},{"id":339,"kind":1024,"name":"algorithm","url":"interfaces/_password_hash_.option.html#algorithm","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"password-hash\".Option"},{"id":340,"kind":1024,"name":"saltLength","url":"interfaces/_password_hash_.option.html#saltlength","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"password-hash\".Option"},{"id":341,"kind":1024,"name":"iterations","url":"interfaces/_password_hash_.option.html#iterations","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"password-hash\".Option"},{"id":342,"kind":32,"name":"saltChars","url":"modules/_password_hash_.html#saltchars","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"password-hash\""},{"id":343,"kind":32,"name":"saltCharsCount","url":"modules/_password_hash_.html#saltcharscount","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"password-hash\""},{"id":344,"kind":64,"name":"generateSalt","url":"modules/_password_hash_.html#generatesalt","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"password-hash\""},{"id":345,"kind":64,"name":"generateHash","url":"modules/_password_hash_.html#generatehash","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"password-hash\""},{"id":346,"kind":64,"name":"generate","url":"modules/_password_hash_.html#generate","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"password-hash\""},{"id":347,"kind":64,"name":"verify","url":"modules/_password_hash_.html#verify","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"password-hash\""},{"id":348,"kind":64,"name":"isHashed","url":"modules/_password_hash_.html#ishashed","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"password-hash\""},{"id":349,"kind":1,"name":"\"interface\"","url":"modules/_interface_.html","classes":"tsd-kind-external-module"},{"id":350,"kind":2097152,"name":"InfoCrudMixin","url":"modules/_interface_.html#infocrudmixin","classes":"tsd-kind-object-literal tsd-parent-kind-external-module","parent":"\"interface\""},{"id":351,"kind":32,"name":"attributes","url":"modules/_interface_.html#infocrudmixin.attributes-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin"},{"id":352,"kind":65536,"name":"__type","url":"modules/_interface_.html#infocrudmixin.attributes-2.__type","classes":"tsd-kind-type-literal tsd-parent-kind-variable tsd-is-not-exported","parent":"\"interface\".InfoCrudMixin.attributes"},{"id":353,"kind":2097152,"name":"options","url":"modules/_interface_.html#infocrudmixin.options-2","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin"},{"id":354,"kind":32,"name":"createdAt","url":"modules/_interface_.html#infocrudmixin.options-2.createdat-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin.options"},{"id":355,"kind":32,"name":"updatedAt","url":"modules/_interface_.html#infocrudmixin.options-2.updatedat-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin.options"},{"id":356,"kind":32,"name":"deletedAt","url":"modules/_interface_.html#infocrudmixin.options-2.deletedat","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin.options"},{"id":357,"kind":32,"name":"paranoid","url":"modules/_interface_.html#infocrudmixin.options-2.paranoid","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin.options"},{"id":358,"kind":2097152,"name":"getterMethods","url":"modules/_interface_.html#infocrudmixin.options-2.gettermethods","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin.options"},{"id":359,"kind":64,"name":"createTime","url":"modules/_interface_.html#infocrudmixin.options-2.gettermethods.createtime","classes":"tsd-kind-function tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin.options.getterMethods"},{"id":360,"kind":2097152,"name":"UserInterface","url":"modules/_interface_.html#userinterface","classes":"tsd-kind-object-literal tsd-parent-kind-external-module","parent":"\"interface\""},{"id":361,"kind":2097152,"name":"attributes","url":"modules/_interface_.html#userinterface.attributes-4","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface"},{"id":362,"kind":2097152,"name":"id","url":"modules/_interface_.html#userinterface.attributes-4.id-4","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes"},{"id":363,"kind":32,"name":"type","url":"modules/_interface_.html#userinterface.attributes-4.id-4.type-26","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.id"},{"id":364,"kind":32,"name":"primaryKey","url":"modules/_interface_.html#userinterface.attributes-4.id-4.primarykey-4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.id"},{"id":365,"kind":32,"name":"autoIncrement","url":"modules/_interface_.html#userinterface.attributes-4.id-4.autoincrement-4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.id"},{"id":366,"kind":2097152,"name":"nickname","url":"modules/_interface_.html#userinterface.attributes-4.nickname","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes"},{"id":367,"kind":32,"name":"type","url":"modules/_interface_.html#userinterface.attributes-4.nickname.type-27","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.nickname"},{"id":368,"kind":32,"name":"allowNull","url":"modules/_interface_.html#userinterface.attributes-4.nickname.allownull-11","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.nickname"},{"id":369,"kind":32,"name":"unique","url":"modules/_interface_.html#userinterface.attributes-4.nickname.unique-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.nickname"},{"id":370,"kind":2097152,"name":"admin","url":"modules/_interface_.html#userinterface.attributes-4.admin","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes"},{"id":371,"kind":32,"name":"type","url":"modules/_interface_.html#userinterface.attributes-4.admin.type-23","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.admin"},{"id":372,"kind":32,"name":"allowNull","url":"modules/_interface_.html#userinterface.attributes-4.admin.allownull-8","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.admin"},{"id":373,"kind":32,"name":"defaultValue","url":"modules/_interface_.html#userinterface.attributes-4.admin.defaultvalue-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.admin"},{"id":374,"kind":2097152,"name":"active","url":"modules/_interface_.html#userinterface.attributes-4.active","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes"},{"id":375,"kind":32,"name":"type","url":"modules/_interface_.html#userinterface.attributes-4.active.type-22","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.active"},{"id":376,"kind":32,"name":"allowNull","url":"modules/_interface_.html#userinterface.attributes-4.active.allownull-7","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.active"},{"id":377,"kind":32,"name":"defaultValue","url":"modules/_interface_.html#userinterface.attributes-4.active.defaultvalue-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.active"},{"id":378,"kind":2097152,"name":"email","url":"modules/_interface_.html#userinterface.attributes-4.email","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes"},{"id":379,"kind":32,"name":"type","url":"modules/_interface_.html#userinterface.attributes-4.email.type-24","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.email"},{"id":380,"kind":32,"name":"unique","url":"modules/_interface_.html#userinterface.attributes-4.email.unique","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.email"},{"id":381,"kind":32,"name":"allowNull","url":"modules/_interface_.html#userinterface.attributes-4.email.allownull-9","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.email"},{"id":382,"kind":2097152,"name":"group_id","url":"modules/_interface_.html#userinterface.attributes-4.group_id-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes"},{"id":383,"kind":32,"name":"type","url":"modules/_interface_.html#userinterface.attributes-4.group_id-1.type-25","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.group_id"},{"id":384,"kind":32,"name":"allowNull","url":"modules/_interface_.html#userinterface.attributes-4.group_id-1.allownull-10","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.group_id"},{"id":385,"kind":2097152,"name":"password","url":"modules/_interface_.html#userinterface.attributes-4.password","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes"},{"id":386,"kind":32,"name":"type","url":"modules/_interface_.html#userinterface.attributes-4.password.type-28","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.password"},{"id":387,"kind":64,"name":"set","url":"modules/_interface_.html#userinterface.attributes-4.password.set","classes":"tsd-kind-function tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.password"},{"id":388,"kind":64,"name":"get","url":"modules/_interface_.html#userinterface.attributes-4.password.get","classes":"tsd-kind-function tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.password"},{"id":389,"kind":32,"name":"options","url":"modules/_interface_.html#userinterface.options-4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface"},{"id":390,"kind":2097152,"name":"AuthInterface","url":"modules/_interface_.html#authinterface","classes":"tsd-kind-object-literal tsd-parent-kind-external-module","parent":"\"interface\""},{"id":391,"kind":2097152,"name":"attributes","url":"modules/_interface_.html#authinterface.attributes","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface"},{"id":392,"kind":2097152,"name":"id","url":"modules/_interface_.html#authinterface.attributes.id","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes"},{"id":393,"kind":32,"name":"type","url":"modules/_interface_.html#authinterface.attributes.id.type-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes.id"},{"id":394,"kind":32,"name":"primaryKey","url":"modules/_interface_.html#authinterface.attributes.id.primarykey","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes.id"},{"id":395,"kind":32,"name":"autoIncrement","url":"modules/_interface_.html#authinterface.attributes.id.autoincrement","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes.id"},{"id":396,"kind":2097152,"name":"group_id","url":"modules/_interface_.html#authinterface.attributes.group_id","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes"},{"id":397,"kind":32,"name":"type","url":"modules/_interface_.html#authinterface.attributes.group_id.type-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes.group_id"},{"id":398,"kind":32,"name":"allowNull","url":"modules/_interface_.html#authinterface.attributes.group_id.allownull","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes.group_id"},{"id":399,"kind":2097152,"name":"auth","url":"modules/_interface_.html#authinterface.attributes.auth","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes"},{"id":400,"kind":32,"name":"type","url":"modules/_interface_.html#authinterface.attributes.auth.type","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes.auth"},{"id":401,"kind":2097152,"name":"module","url":"modules/_interface_.html#authinterface.attributes.module","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes"},{"id":402,"kind":32,"name":"type","url":"modules/_interface_.html#authinterface.attributes.module.type-3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes.module"},{"id":403,"kind":2097152,"name":"options","url":"modules/_interface_.html#authinterface.options","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface"},{"id":404,"kind":32,"name":"tableName","url":"modules/_interface_.html#authinterface.options.tablename","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.options"},{"id":405,"kind":32,"name":"createdAt","url":"modules/_interface_.html#authinterface.options.createdat","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.options"},{"id":406,"kind":32,"name":"updatedAt","url":"modules/_interface_.html#authinterface.options.updatedat","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.options"},{"id":407,"kind":2097152,"name":"GroupInterface","url":"modules/_interface_.html#groupinterface","classes":"tsd-kind-object-literal tsd-parent-kind-external-module","parent":"\"interface\""},{"id":408,"kind":2097152,"name":"attributes","url":"modules/_interface_.html#groupinterface.attributes-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface"},{"id":409,"kind":2097152,"name":"id","url":"modules/_interface_.html#groupinterface.attributes-1.id-2","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes"},{"id":410,"kind":32,"name":"type","url":"modules/_interface_.html#groupinterface.attributes-1.id-2.type-11","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes.id"},{"id":411,"kind":32,"name":"primaryKey","url":"modules/_interface_.html#groupinterface.attributes-1.id-2.primarykey-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes.id"},{"id":412,"kind":32,"name":"autoIncrement","url":"modules/_interface_.html#groupinterface.attributes-1.id-2.autoincrement-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes.id"},{"id":413,"kind":2097152,"name":"name","url":"modules/_interface_.html#groupinterface.attributes-1.name-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes"},{"id":414,"kind":32,"name":"type","url":"modules/_interface_.html#groupinterface.attributes-1.name-1.type-13","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes.name"},{"id":415,"kind":2097152,"name":"info","url":"modules/_interface_.html#groupinterface.attributes-1.info","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes"},{"id":416,"kind":32,"name":"type","url":"modules/_interface_.html#groupinterface.attributes-1.info.type-12","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes.info"},{"id":417,"kind":32,"name":"allowNull","url":"modules/_interface_.html#groupinterface.attributes-1.info.allownull-5","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes.info"},{"id":418,"kind":2097152,"name":"options","url":"modules/_interface_.html#groupinterface.options-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface"},{"id":419,"kind":32,"name":"tableName","url":"modules/_interface_.html#groupinterface.options-1.tablename-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.options"},{"id":420,"kind":32,"name":"createdAt","url":"modules/_interface_.html#groupinterface.options-1.createdat-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.options"},{"id":421,"kind":32,"name":"updatedAt","url":"modules/_interface_.html#groupinterface.options-1.updatedat-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.options"},{"id":422,"kind":2097152,"name":"LogInterface","url":"modules/_interface_.html#loginterface","classes":"tsd-kind-object-literal tsd-parent-kind-external-module","parent":"\"interface\""},{"id":423,"kind":2097152,"name":"attributes","url":"modules/_interface_.html#loginterface.attributes-3","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface"},{"id":424,"kind":2097152,"name":"id","url":"modules/_interface_.html#loginterface.attributes-3.id-3","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":425,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.id-3.type-15","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.id"},{"id":426,"kind":32,"name":"primaryKey","url":"modules/_interface_.html#loginterface.attributes-3.id-3.primarykey-3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.id"},{"id":427,"kind":32,"name":"autoIncrement","url":"modules/_interface_.html#loginterface.attributes-3.id-3.autoincrement-3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.id"},{"id":428,"kind":2097152,"name":"message","url":"modules/_interface_.html#loginterface.attributes-3.message","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":429,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.message.type-16","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.message"},{"id":430,"kind":2097152,"name":"user_id","url":"modules/_interface_.html#loginterface.attributes-3.user_id","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":431,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.user_id.type-20","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.user_id"},{"id":432,"kind":32,"name":"allowNull","url":"modules/_interface_.html#loginterface.attributes-3.user_id.allownull-6","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.user_id"},{"id":433,"kind":2097152,"name":"user_name","url":"modules/_interface_.html#loginterface.attributes-3.user_name","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":434,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.user_name.type-21","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.user_name"},{"id":435,"kind":2097152,"name":"status_code","url":"modules/_interface_.html#loginterface.attributes-3.status_code","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":436,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.status_code.type-19","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.status_code"},{"id":437,"kind":2097152,"name":"method","url":"modules/_interface_.html#loginterface.attributes-3.method","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":438,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.method.type-17","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.method"},{"id":439,"kind":2097152,"name":"path","url":"modules/_interface_.html#loginterface.attributes-3.path-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":440,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.path-1.type-18","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.path"},{"id":441,"kind":2097152,"name":"authority","url":"modules/_interface_.html#loginterface.attributes-3.authority","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":442,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.authority.type-14","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.authority"},{"id":443,"kind":2097152,"name":"options","url":"modules/_interface_.html#loginterface.options-3","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface"},{"id":444,"kind":32,"name":"tableName","url":"modules/_interface_.html#loginterface.options-3.tablename-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.options"},{"id":445,"kind":32,"name":"createdAt","url":"modules/_interface_.html#loginterface.options-3.createdat-3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.options"},{"id":446,"kind":32,"name":"updatedAt","url":"modules/_interface_.html#loginterface.options-3.updatedat-3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.options"},{"id":447,"kind":2097152,"name":"getterMethods","url":"modules/_interface_.html#loginterface.options-3.gettermethods-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.options"},{"id":448,"kind":64,"name":"time","url":"modules/_interface_.html#loginterface.options-3.gettermethods-1.time","classes":"tsd-kind-function tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.options.getterMethods"},{"id":449,"kind":2097152,"name":"FileInterface","url":"modules/_interface_.html#fileinterface","classes":"tsd-kind-object-literal tsd-parent-kind-external-module","parent":"\"interface\""},{"id":450,"kind":2097152,"name":"id","url":"modules/_interface_.html#fileinterface.id-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface"},{"id":451,"kind":32,"name":"type","url":"modules/_interface_.html#fileinterface.id-1.type-5","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.id"},{"id":452,"kind":32,"name":"primaryKey","url":"modules/_interface_.html#fileinterface.id-1.primarykey-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.id"},{"id":453,"kind":32,"name":"autoIncrement","url":"modules/_interface_.html#fileinterface.id-1.autoincrement-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.id"},{"id":454,"kind":2097152,"name":"path","url":"modules/_interface_.html#fileinterface.path","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface"},{"id":455,"kind":32,"name":"type","url":"modules/_interface_.html#fileinterface.path.type-7","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.path"},{"id":456,"kind":32,"name":"allowNull","url":"modules/_interface_.html#fileinterface.path.allownull-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.path"},{"id":457,"kind":2097152,"name":"type","url":"modules/_interface_.html#fileinterface.type-9","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface"},{"id":458,"kind":32,"name":"type","url":"modules/_interface_.html#fileinterface.type-9.type-10","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.type"},{"id":459,"kind":32,"name":"allowNull","url":"modules/_interface_.html#fileinterface.type-9.allownull-4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.type"},{"id":460,"kind":32,"name":"defaultValue","url":"modules/_interface_.html#fileinterface.type-9.defaultvalue","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.type"},{"id":461,"kind":32,"name":"comment","url":"modules/_interface_.html#fileinterface.type-9.comment","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.type"},{"id":462,"kind":2097152,"name":"name","url":"modules/_interface_.html#fileinterface.name","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface"},{"id":463,"kind":32,"name":"type","url":"modules/_interface_.html#fileinterface.name.type-6","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.name"},{"id":464,"kind":32,"name":"allowNull","url":"modules/_interface_.html#fileinterface.name.allownull-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.name"},{"id":465,"kind":2097152,"name":"extension","url":"modules/_interface_.html#fileinterface.extension","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface"},{"id":466,"kind":32,"name":"type","url":"modules/_interface_.html#fileinterface.extension.type-4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.extension"},{"id":467,"kind":2097152,"name":"size","url":"modules/_interface_.html#fileinterface.size","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface"},{"id":468,"kind":32,"name":"type","url":"modules/_interface_.html#fileinterface.size.type-8","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.size"},{"id":469,"kind":32,"name":"allowNull","url":"modules/_interface_.html#fileinterface.size.allownull-3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.size"},{"id":470,"kind":1,"name":"\"extend\"","url":"modules/_extend_.html","classes":"tsd-kind-external-module"},{"id":471,"kind":64,"name":"json","url":"modules/_extend_.html#json","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"extend\""},{"id":472,"kind":64,"name":"transform","url":"modules/_extend_.html#transform","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"extend\""},{"id":473,"kind":64,"name":"success","url":"modules/_extend_.html#success","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"extend\""},{"id":474,"kind":64,"name":"logging","url":"modules/_extend_.html#logging","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"extend\""},{"id":475,"kind":64,"name":"multipart","url":"modules/_extend_.html#multipart","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"extend\""},{"id":476,"kind":64,"name":"checkSingleFileSize","url":"modules/_extend_.html#checksinglefilesize","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"extend\""},{"id":477,"kind":64,"name":"checkTotalFileSize","url":"modules/_extend_.html#checktotalfilesize","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"extend\""},{"id":478,"kind":64,"name":"checkFileNums","url":"modules/_extend_.html#checkfilenums","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"extend\""},{"id":479,"kind":64,"name":"checkFileExtension","url":"modules/_extend_.html#checkfileextension","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"extend\""},{"id":480,"kind":1,"name":"\"plugin\"","url":"modules/_plugin_.html","classes":"tsd-kind-external-module"},{"id":481,"kind":128,"name":"Plugin","url":"classes/_plugin_.plugin.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"plugin\""},{"id":482,"kind":1024,"name":"name","url":"classes/_plugin_.plugin.html#name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"plugin\".Plugin"},{"id":483,"kind":1024,"name":"models","url":"classes/_plugin_.plugin.html#models","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"plugin\".Plugin"},{"id":484,"kind":65536,"name":"__type","url":"classes/_plugin_.plugin.html#models.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"plugin\".Plugin.models"},{"id":485,"kind":1024,"name":"controllers","url":"classes/_plugin_.plugin.html#controllers","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"plugin\".Plugin"},{"id":486,"kind":65536,"name":"__type","url":"classes/_plugin_.plugin.html#controllers.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"plugin\".Plugin.controllers"},{"id":487,"kind":512,"name":"constructor","url":"classes/_plugin_.plugin.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"plugin\".Plugin"},{"id":488,"kind":2048,"name":"addModel","url":"classes/_plugin_.plugin.html#addmodel","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"plugin\".Plugin"},{"id":489,"kind":2048,"name":"getModel","url":"classes/_plugin_.plugin.html#getmodel","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"plugin\".Plugin"},{"id":490,"kind":2048,"name":"addController","url":"classes/_plugin_.plugin.html#addcontroller","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"plugin\".Plugin"},{"id":491,"kind":1,"name":"\"loader\"","url":"modules/_loader_.html","classes":"tsd-kind-external-module"},{"id":492,"kind":128,"name":"Loader","url":"classes/_loader_.loader.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"loader\""},{"id":493,"kind":1024,"name":"mainRouter","url":"classes/_loader_.loader.html#mainrouter","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":494,"kind":1024,"name":"pluginPath","url":"classes/_loader_.loader.html#pluginpath","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":495,"kind":1024,"name":"app","url":"classes/_loader_.loader.html#app","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"loader\".Loader"},{"id":496,"kind":1024,"name":"plugins","url":"classes/_loader_.loader.html#plugins","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":497,"kind":65536,"name":"__type","url":"classes/_loader_.loader.html#plugins.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"loader\".Loader.plugins"},{"id":498,"kind":512,"name":"constructor","url":"classes/_loader_.loader.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":499,"kind":2048,"name":"loadPlugins","url":"classes/_loader_.loader.html#loadplugins","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":500,"kind":2048,"name":"loadPlugin","url":"classes/_loader_.loader.html#loadplugin","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":501,"kind":2048,"name":"loadConfig","url":"classes/_loader_.loader.html#loadconfig","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":502,"kind":2048,"name":"loadMainApi","url":"classes/_loader_.loader.html#loadmainapi","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":503,"kind":1,"name":"\"lin-router\"","url":"modules/_lin_router_.html","classes":"tsd-kind-external-module"},{"id":504,"kind":256,"name":"Meta","url":"interfaces/_lin_router_.meta.html","classes":"tsd-kind-interface tsd-parent-kind-external-module","parent":"\"lin-router\""},{"id":505,"kind":1024,"name":"auth","url":"interfaces/_lin_router_.meta.html#auth","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".Meta"},{"id":506,"kind":1024,"name":"module","url":"interfaces/_lin_router_.meta.html#module","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".Meta"},{"id":507,"kind":1024,"name":"mount","url":"interfaces/_lin_router_.meta.html#mount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".Meta"},{"id":508,"kind":128,"name":"LinRouter","url":"classes/_lin_router_.linrouter.html","classes":"tsd-kind-class tsd-parent-kind-external-module tsd-has-type-parameter","parent":"\"lin-router\""},{"id":509,"kind":2048,"name":"linOption","url":"classes/_lin_router_.linrouter.html#linoption","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":510,"kind":2048,"name":"linHead","url":"classes/_lin_router_.linrouter.html#linhead","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":511,"kind":2048,"name":"linGet","url":"classes/_lin_router_.linrouter.html#linget","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":512,"kind":2048,"name":"linPut","url":"classes/_lin_router_.linrouter.html#linput","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":513,"kind":2048,"name":"linPatch","url":"classes/_lin_router_.linrouter.html#linpatch","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":514,"kind":2048,"name":"linPost","url":"classes/_lin_router_.linrouter.html#linpost","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":515,"kind":2048,"name":"linDelete","url":"classes/_lin_router_.linrouter.html#lindelete","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":516,"kind":256,"name":"IRouterOptions","url":"interfaces/_lin_router_.linrouter.irouteroptions.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":517,"kind":1024,"name":"prefix","url":"interfaces/_lin_router_.linrouter.irouteroptions.html#prefix","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterOptions"},{"id":518,"kind":1024,"name":"methods","url":"interfaces/_lin_router_.linrouter.irouteroptions.html#methods","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterOptions"},{"id":519,"kind":1024,"name":"routerPath","url":"interfaces/_lin_router_.linrouter.irouteroptions.html#routerpath","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterOptions"},{"id":520,"kind":1024,"name":"sensitive","url":"interfaces/_lin_router_.linrouter.irouteroptions.html#sensitive","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterOptions"},{"id":521,"kind":1024,"name":"strict","url":"interfaces/_lin_router_.linrouter.irouteroptions.html#strict","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterOptions"},{"id":522,"kind":256,"name":"IRouterParamContext","url":"interfaces/_lin_router_.linrouter.irouterparamcontext.html","classes":"tsd-kind-interface tsd-parent-kind-class tsd-has-type-parameter","parent":"\"lin-router\".LinRouter"},{"id":523,"kind":1024,"name":"params","url":"interfaces/_lin_router_.linrouter.irouterparamcontext.html#params","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterParamContext"},{"id":524,"kind":1024,"name":"router","url":"interfaces/_lin_router_.linrouter.irouterparamcontext.html#router","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterParamContext"},{"id":525,"kind":1024,"name":"_matchedRoute","url":"interfaces/_lin_router_.linrouter.irouterparamcontext.html#_matchedroute","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterParamContext"},{"id":526,"kind":1024,"name":"_matchedRouteName","url":"interfaces/_lin_router_.linrouter.irouterparamcontext.html#_matchedroutename","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterParamContext"},{"id":527,"kind":256,"name":"IRouterContext","url":"interfaces/_lin_router_.linrouter.iroutercontext.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":528,"kind":256,"name":"IParamMiddleware","url":"interfaces/_lin_router_.linrouter.iparammiddleware.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":529,"kind":256,"name":"IRouterAllowedMethodsOptions","url":"interfaces/_lin_router_.linrouter.irouterallowedmethodsoptions.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":530,"kind":1024,"name":"throw","url":"interfaces/_lin_router_.linrouter.irouterallowedmethodsoptions.html#throw","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterAllowedMethodsOptions"},{"id":531,"kind":1024,"name":"notImplemented","url":"interfaces/_lin_router_.linrouter.irouterallowedmethodsoptions.html#notimplemented","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterAllowedMethodsOptions"},{"id":532,"kind":1024,"name":"methodNotAllowed","url":"interfaces/_lin_router_.linrouter.irouterallowedmethodsoptions.html#methodnotallowed","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterAllowedMethodsOptions"},{"id":533,"kind":256,"name":"ILayerOptions","url":"interfaces/_lin_router_.linrouter.ilayeroptions.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":534,"kind":1024,"name":"name","url":"interfaces/_lin_router_.linrouter.ilayeroptions.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.ILayerOptions"},{"id":535,"kind":1024,"name":"sensitive","url":"interfaces/_lin_router_.linrouter.ilayeroptions.html#sensitive","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.ILayerOptions"},{"id":536,"kind":1024,"name":"strict","url":"interfaces/_lin_router_.linrouter.ilayeroptions.html#strict","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.ILayerOptions"},{"id":537,"kind":256,"name":"IUrlOptionsQuery","url":"interfaces/_lin_router_.linrouter.iurloptionsquery.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":538,"kind":1024,"name":"query","url":"interfaces/_lin_router_.linrouter.iurloptionsquery.html#query","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IUrlOptionsQuery"},{"id":539,"kind":256,"name":"IRoutesMatch","url":"interfaces/_lin_router_.linrouter.iroutesmatch.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":540,"kind":1024,"name":"path","url":"interfaces/_lin_router_.linrouter.iroutesmatch.html#path","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRoutesMatch"},{"id":541,"kind":1024,"name":"pathAndMethod","url":"interfaces/_lin_router_.linrouter.iroutesmatch.html#pathandmethod","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRoutesMatch"},{"id":542,"kind":1024,"name":"route","url":"interfaces/_lin_router_.linrouter.iroutesmatch.html#route","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRoutesMatch"},{"id":543,"kind":128,"name":"ParamName","url":"classes/_lin_router_.linrouter.paramname.html","classes":"tsd-kind-class tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":544,"kind":1024,"name":"asterisk","url":"classes/_lin_router_.linrouter.paramname.html#asterisk","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":545,"kind":1024,"name":"delimiter","url":"classes/_lin_router_.linrouter.paramname.html#delimiter","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":546,"kind":1024,"name":"name","url":"classes/_lin_router_.linrouter.paramname.html#name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":547,"kind":1024,"name":"optional","url":"classes/_lin_router_.linrouter.paramname.html#optional","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":548,"kind":1024,"name":"partial","url":"classes/_lin_router_.linrouter.paramname.html#partial","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":549,"kind":1024,"name":"pattern","url":"classes/_lin_router_.linrouter.paramname.html#pattern","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":550,"kind":1024,"name":"prefix","url":"classes/_lin_router_.linrouter.paramname.html#prefix","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":551,"kind":1024,"name":"repeat","url":"classes/_lin_router_.linrouter.paramname.html#repeat","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":552,"kind":128,"name":"Layer","url":"classes/_lin_router_.linrouter.layer.html","classes":"tsd-kind-class tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":553,"kind":1024,"name":"opts","url":"classes/_lin_router_.linrouter.layer.html#opts","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":554,"kind":1024,"name":"name","url":"classes/_lin_router_.linrouter.layer.html#name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":555,"kind":1024,"name":"methods","url":"classes/_lin_router_.linrouter.layer.html#methods","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":556,"kind":1024,"name":"paramNames","url":"classes/_lin_router_.linrouter.layer.html#paramnames","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":557,"kind":1024,"name":"stack","url":"classes/_lin_router_.linrouter.layer.html#stack","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":558,"kind":1024,"name":"regexp","url":"classes/_lin_router_.linrouter.layer.html#regexp","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":559,"kind":1024,"name":"path","url":"classes/_lin_router_.linrouter.layer.html#path","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":560,"kind":512,"name":"constructor","url":"classes/_lin_router_.linrouter.layer.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":561,"kind":2048,"name":"match","url":"classes/_lin_router_.linrouter.layer.html#match","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":562,"kind":2048,"name":"params","url":"classes/_lin_router_.linrouter.layer.html#params","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":563,"kind":2048,"name":"captures","url":"classes/_lin_router_.linrouter.layer.html#captures","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":564,"kind":2048,"name":"url","url":"classes/_lin_router_.linrouter.layer.html#url","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":565,"kind":2048,"name":"param","url":"classes/_lin_router_.linrouter.layer.html#param","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":566,"kind":2048,"name":"setPrefix","url":"classes/_lin_router_.linrouter.layer.html#setprefix","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":567,"kind":4194304,"name":"RouterContext","url":"classes/_lin_router_.linrouter.html#routercontext","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-has-type-parameter tsd-is-static","parent":"\"lin-router\".LinRouter"},{"id":568,"kind":4194304,"name":"IMiddleware","url":"classes/_lin_router_.linrouter.html#imiddleware","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-has-type-parameter tsd-is-static","parent":"\"lin-router\".LinRouter"},{"id":569,"kind":1024,"name":"params","url":"classes/_lin_router_.linrouter.html#params","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":570,"kind":1024,"name":"stack","url":"classes/_lin_router_.linrouter.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":571,"kind":512,"name":"constructor","url":"classes/_lin_router_.linrouter.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":572,"kind":2048,"name":"use","url":"classes/_lin_router_.linrouter.html#use","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":573,"kind":2048,"name":"get","url":"classes/_lin_router_.linrouter.html#get","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":574,"kind":2048,"name":"post","url":"classes/_lin_router_.linrouter.html#post","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":575,"kind":2048,"name":"put","url":"classes/_lin_router_.linrouter.html#put","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":576,"kind":2048,"name":"link","url":"classes/_lin_router_.linrouter.html#link","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":577,"kind":2048,"name":"unlink","url":"classes/_lin_router_.linrouter.html#unlink","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":578,"kind":2048,"name":"delete","url":"classes/_lin_router_.linrouter.html#delete","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":579,"kind":2048,"name":"del","url":"classes/_lin_router_.linrouter.html#del","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":580,"kind":2048,"name":"head","url":"classes/_lin_router_.linrouter.html#head","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":581,"kind":2048,"name":"options","url":"classes/_lin_router_.linrouter.html#options","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":582,"kind":2048,"name":"patch","url":"classes/_lin_router_.linrouter.html#patch","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":583,"kind":2048,"name":"all","url":"classes/_lin_router_.linrouter.html#all","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":584,"kind":2048,"name":"prefix","url":"classes/_lin_router_.linrouter.html#prefix","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":585,"kind":2048,"name":"routes","url":"classes/_lin_router_.linrouter.html#routes","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":586,"kind":2048,"name":"middleware","url":"classes/_lin_router_.linrouter.html#middleware","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":587,"kind":2048,"name":"allowedMethods","url":"classes/_lin_router_.linrouter.html#allowedmethods","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":588,"kind":2048,"name":"redirect","url":"classes/_lin_router_.linrouter.html#redirect","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":589,"kind":2048,"name":"register","url":"classes/_lin_router_.linrouter.html#register","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":590,"kind":2048,"name":"route","url":"classes/_lin_router_.linrouter.html#route","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":591,"kind":2048,"name":"url","url":"classes/_lin_router_.linrouter.html#url","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":592,"kind":2048,"name":"match","url":"classes/_lin_router_.linrouter.html#match","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":593,"kind":2048,"name":"param","url":"classes/_lin_router_.linrouter.html#param","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":594,"kind":2048,"name":"url","url":"classes/_lin_router_.linrouter.html#url-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"lin-router\".LinRouter"},{"id":595,"kind":1,"name":"\"core\"","url":"modules/_core_.html","classes":"tsd-kind-external-module"},{"id":596,"kind":128,"name":"Lin","url":"classes/_core_.lin.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"core\""},{"id":597,"kind":1024,"name":"manager","url":"classes/_core_.lin.html#manager","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"core\".Lin"},{"id":598,"kind":1024,"name":"app","url":"classes/_core_.lin.html#app","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"core\".Lin"},{"id":599,"kind":2048,"name":"initApp","url":"classes/_core_.lin.html#initapp","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".Lin"},{"id":600,"kind":2048,"name":"applyJwt","url":"classes/_core_.lin.html#applyjwt","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"core\".Lin"},{"id":601,"kind":2048,"name":"applyDB","url":"classes/_core_.lin.html#applydb","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"core\".Lin"},{"id":602,"kind":2048,"name":"applyManager","url":"classes/_core_.lin.html#applymanager","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"core\".Lin"},{"id":603,"kind":2048,"name":"applyDefaultExtends","url":"classes/_core_.lin.html#applydefaultextends","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"core\".Lin"},{"id":604,"kind":2048,"name":"mount","url":"classes/_core_.lin.html#mount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"core\".Lin"},{"id":605,"kind":128,"name":"Manager","url":"classes/_core_.manager.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"core\""},{"id":606,"kind":1024,"name":"loader","url":"classes/_core_.manager.html#loader","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":607,"kind":1024,"name":"userModel","url":"classes/_core_.manager.html#usermodel","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":608,"kind":1024,"name":"groupModel","url":"classes/_core_.manager.html#groupmodel","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":609,"kind":1024,"name":"authModel","url":"classes/_core_.manager.html#authmodel","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":610,"kind":2048,"name":"initApp","url":"classes/_core_.manager.html#initapp","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":611,"kind":262144,"name":"plugins","url":"classes/_core_.manager.html#plugins","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":612,"kind":2048,"name":"verify","url":"classes/_core_.manager.html#verify","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":613,"kind":2048,"name":"findUser","url":"classes/_core_.manager.html#finduser","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":614,"kind":2048,"name":"findGroup","url":"classes/_core_.manager.html#findgroup","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":615,"kind":128,"name":"User","url":"classes/_core_.user.html","classes":"tsd-kind-class tsd-parent-kind-external-module tsd-has-type-parameter","parent":"\"core\""},{"id":616,"kind":1024,"name":"id","url":"classes/_core_.user.html#id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":617,"kind":1024,"name":"nickname","url":"classes/_core_.user.html#nickname","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":618,"kind":1024,"name":"admin","url":"classes/_core_.user.html#admin","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":619,"kind":1024,"name":"active","url":"classes/_core_.user.html#active","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":620,"kind":1024,"name":"email","url":"classes/_core_.user.html#email","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":621,"kind":1024,"name":"group_id","url":"classes/_core_.user.html#group_id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":622,"kind":1024,"name":"password","url":"classes/_core_.user.html#password","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":623,"kind":1024,"name":"create_time","url":"classes/_core_.user.html#create_time","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":624,"kind":1024,"name":"update_time","url":"classes/_core_.user.html#update_time","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":625,"kind":1024,"name":"delete_time","url":"classes/_core_.user.html#delete_time","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":626,"kind":2048,"name":"verify","url":"classes/_core_.user.html#verify","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"\"core\".User"},{"id":627,"kind":2048,"name":"checkPassword","url":"classes/_core_.user.html#checkpassword","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".User"},{"id":628,"kind":2048,"name":"resetPassword","url":"classes/_core_.user.html#resetpassword","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".User"},{"id":629,"kind":2048,"name":"changePassword","url":"classes/_core_.user.html#changepassword","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".User"},{"id":630,"kind":2048,"name":"toJSON","url":"classes/_core_.user.html#tojson","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"core\".User"},{"id":631,"kind":1024,"name":"tableName","url":"classes/_core_.user.html#tablename","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":632,"kind":1024,"name":"primaryKeyAttribute","url":"classes/_core_.user.html#primarykeyattribute","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":633,"kind":1024,"name":"associations","url":"classes/_core_.user.html#associations","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":634,"kind":65536,"name":"__type","url":"classes/_core_.user.html#associations.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".User.associations"},{"id":635,"kind":1024,"name":"options","url":"classes/_core_.user.html#options","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":636,"kind":1024,"name":"rawAttributes","url":"classes/_core_.user.html#rawattributes","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":637,"kind":65536,"name":"__type","url":"classes/_core_.user.html#rawattributes.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".User.rawAttributes"},{"id":638,"kind":1024,"name":"sequelize","url":"classes/_core_.user.html#sequelize-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":639,"kind":2048,"name":"init","url":"classes/_core_.user.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":640,"kind":2048,"name":"removeAttribute","url":"classes/_core_.user.html#removeattribute","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":641,"kind":2048,"name":"sync","url":"classes/_core_.user.html#sync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":642,"kind":2048,"name":"drop","url":"classes/_core_.user.html#drop","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":643,"kind":2048,"name":"schema","url":"classes/_core_.user.html#schema","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":644,"kind":2048,"name":"getTableName","url":"classes/_core_.user.html#gettablename","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":645,"kind":2048,"name":"scope","url":"classes/_core_.user.html#scope","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":646,"kind":2048,"name":"addScope","url":"classes/_core_.user.html#addscope","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":647,"kind":2048,"name":"findAll","url":"classes/_core_.user.html#findall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":648,"kind":2048,"name":"findByPk","url":"classes/_core_.user.html#findbypk","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":649,"kind":2048,"name":"findOne","url":"classes/_core_.user.html#findone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":650,"kind":2048,"name":"aggregate","url":"classes/_core_.user.html#aggregate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":651,"kind":2048,"name":"count","url":"classes/_core_.user.html#count","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":652,"kind":2048,"name":"findAndCountAll","url":"classes/_core_.user.html#findandcountall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":653,"kind":2048,"name":"max","url":"classes/_core_.user.html#max","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":654,"kind":2048,"name":"min","url":"classes/_core_.user.html#min","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":655,"kind":2048,"name":"sum","url":"classes/_core_.user.html#sum","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":656,"kind":2048,"name":"build","url":"classes/_core_.user.html#build","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":657,"kind":2048,"name":"bulkBuild","url":"classes/_core_.user.html#bulkbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":658,"kind":2048,"name":"create","url":"classes/_core_.user.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":659,"kind":2048,"name":"findOrBuild","url":"classes/_core_.user.html#findorbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":660,"kind":2048,"name":"findOrCreate","url":"classes/_core_.user.html#findorcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":661,"kind":2048,"name":"upsert","url":"classes/_core_.user.html#upsert","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":662,"kind":2048,"name":"bulkCreate","url":"classes/_core_.user.html#bulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":663,"kind":2048,"name":"truncate","url":"classes/_core_.user.html#truncate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":664,"kind":2048,"name":"destroy","url":"classes/_core_.user.html#destroy-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":665,"kind":2048,"name":"restore","url":"classes/_core_.user.html#restore-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":666,"kind":2048,"name":"update","url":"classes/_core_.user.html#update-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":667,"kind":2048,"name":"increment","url":"classes/_core_.user.html#increment-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":668,"kind":2048,"name":"describe","url":"classes/_core_.user.html#describe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":669,"kind":2048,"name":"unscoped","url":"classes/_core_.user.html#unscoped","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":670,"kind":2048,"name":"beforeValidate","url":"classes/_core_.user.html#beforevalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":671,"kind":2048,"name":"afterValidate","url":"classes/_core_.user.html#aftervalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":672,"kind":2048,"name":"beforeCreate","url":"classes/_core_.user.html#beforecreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":673,"kind":2048,"name":"afterCreate","url":"classes/_core_.user.html#aftercreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":674,"kind":2048,"name":"beforeDestroy","url":"classes/_core_.user.html#beforedestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":675,"kind":2048,"name":"afterDestroy","url":"classes/_core_.user.html#afterdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":676,"kind":2048,"name":"beforeUpdate","url":"classes/_core_.user.html#beforeupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":677,"kind":2048,"name":"afterUpdate","url":"classes/_core_.user.html#afterupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":678,"kind":2048,"name":"beforeBulkCreate","url":"classes/_core_.user.html#beforebulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":679,"kind":2048,"name":"afterBulkCreate","url":"classes/_core_.user.html#afterbulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":680,"kind":2048,"name":"beforeBulkDestroy","url":"classes/_core_.user.html#beforebulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":681,"kind":2048,"name":"afterBulkDestroy","url":"classes/_core_.user.html#afterbulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":682,"kind":2048,"name":"beforeBulkUpdate","url":"classes/_core_.user.html#beforebulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":683,"kind":2048,"name":"afterBulkUpdate","url":"classes/_core_.user.html#afterbulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":684,"kind":2048,"name":"beforeFind","url":"classes/_core_.user.html#beforefind","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":685,"kind":2048,"name":"beforeCount","url":"classes/_core_.user.html#beforecount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":686,"kind":2048,"name":"beforeFindAfterExpandIncludeAll","url":"classes/_core_.user.html#beforefindafterexpandincludeall","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":687,"kind":2048,"name":"beforeFindAfterOptions","url":"classes/_core_.user.html#beforefindafteroptions","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":688,"kind":2048,"name":"afterFind","url":"classes/_core_.user.html#afterfind","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":689,"kind":2048,"name":"beforeBulkSync","url":"classes/_core_.user.html#beforebulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":690,"kind":2048,"name":"afterBulkSync","url":"classes/_core_.user.html#afterbulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":691,"kind":2048,"name":"beforeSync","url":"classes/_core_.user.html#beforesync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":692,"kind":2048,"name":"afterSync","url":"classes/_core_.user.html#aftersync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":693,"kind":2048,"name":"hasOne","url":"classes/_core_.user.html#hasone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":694,"kind":2048,"name":"belongsTo","url":"classes/_core_.user.html#belongsto","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":695,"kind":2048,"name":"hasMany","url":"classes/_core_.user.html#hasmany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":696,"kind":2048,"name":"belongsToMany","url":"classes/_core_.user.html#belongstomany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":697,"kind":1024,"name":"isNewRecord","url":"classes/_core_.user.html#isnewrecord","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":698,"kind":1024,"name":"sequelize","url":"classes/_core_.user.html#sequelize","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":699,"kind":512,"name":"constructor","url":"classes/_core_.user.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":700,"kind":2048,"name":"where","url":"classes/_core_.user.html#where","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":701,"kind":2048,"name":"getDataValue","url":"classes/_core_.user.html#getdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":702,"kind":2048,"name":"setDataValue","url":"classes/_core_.user.html#setdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":703,"kind":2048,"name":"get","url":"classes/_core_.user.html#get","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":704,"kind":2048,"name":"set","url":"classes/_core_.user.html#set","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":705,"kind":2048,"name":"setAttributes","url":"classes/_core_.user.html#setattributes","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":706,"kind":2048,"name":"changed","url":"classes/_core_.user.html#changed","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":707,"kind":2048,"name":"previous","url":"classes/_core_.user.html#previous","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":708,"kind":2048,"name":"save","url":"classes/_core_.user.html#save","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":709,"kind":2048,"name":"reload","url":"classes/_core_.user.html#reload","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":710,"kind":2048,"name":"validate","url":"classes/_core_.user.html#validate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":711,"kind":2048,"name":"update","url":"classes/_core_.user.html#update","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":712,"kind":2048,"name":"destroy","url":"classes/_core_.user.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":713,"kind":2048,"name":"restore","url":"classes/_core_.user.html#restore","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":714,"kind":2048,"name":"increment","url":"classes/_core_.user.html#increment","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":715,"kind":2048,"name":"decrement","url":"classes/_core_.user.html#decrement","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":716,"kind":2048,"name":"equals","url":"classes/_core_.user.html#equals","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":717,"kind":2048,"name":"equalsOneOf","url":"classes/_core_.user.html#equalsoneof","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":718,"kind":2048,"name":"addHook","url":"classes/_core_.user.html#addhook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":719,"kind":2048,"name":"removeHook","url":"classes/_core_.user.html#removehook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":720,"kind":2048,"name":"hasHook","url":"classes/_core_.user.html#hashook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":721,"kind":2048,"name":"hasHooks","url":"classes/_core_.user.html#hashooks-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":722,"kind":2048,"name":"addHook","url":"classes/_core_.user.html#addhook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":723,"kind":2048,"name":"removeHook","url":"classes/_core_.user.html#removehook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":724,"kind":2048,"name":"hasHook","url":"classes/_core_.user.html#hashook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":725,"kind":2048,"name":"hasHooks","url":"classes/_core_.user.html#hashooks","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":726,"kind":128,"name":"Group","url":"classes/_core_.group.html","classes":"tsd-kind-class tsd-parent-kind-external-module tsd-has-type-parameter","parent":"\"core\""},{"id":727,"kind":1024,"name":"id","url":"classes/_core_.group.html#id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Group"},{"id":728,"kind":1024,"name":"name","url":"classes/_core_.group.html#name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Group"},{"id":729,"kind":1024,"name":"info","url":"classes/_core_.group.html#info","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Group"},{"id":730,"kind":2048,"name":"toJSON","url":"classes/_core_.group.html#tojson","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"core\".Group"},{"id":731,"kind":1024,"name":"tableName","url":"classes/_core_.group.html#tablename","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":732,"kind":1024,"name":"primaryKeyAttribute","url":"classes/_core_.group.html#primarykeyattribute","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":733,"kind":1024,"name":"associations","url":"classes/_core_.group.html#associations","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":734,"kind":65536,"name":"__type","url":"classes/_core_.group.html#associations.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".Group.associations"},{"id":735,"kind":1024,"name":"options","url":"classes/_core_.group.html#options","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":736,"kind":1024,"name":"rawAttributes","url":"classes/_core_.group.html#rawattributes","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":737,"kind":65536,"name":"__type","url":"classes/_core_.group.html#rawattributes.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".Group.rawAttributes"},{"id":738,"kind":1024,"name":"sequelize","url":"classes/_core_.group.html#sequelize-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":739,"kind":2048,"name":"init","url":"classes/_core_.group.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":740,"kind":2048,"name":"removeAttribute","url":"classes/_core_.group.html#removeattribute","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":741,"kind":2048,"name":"sync","url":"classes/_core_.group.html#sync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":742,"kind":2048,"name":"drop","url":"classes/_core_.group.html#drop","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":743,"kind":2048,"name":"schema","url":"classes/_core_.group.html#schema","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":744,"kind":2048,"name":"getTableName","url":"classes/_core_.group.html#gettablename","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":745,"kind":2048,"name":"scope","url":"classes/_core_.group.html#scope","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":746,"kind":2048,"name":"addScope","url":"classes/_core_.group.html#addscope","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":747,"kind":2048,"name":"findAll","url":"classes/_core_.group.html#findall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":748,"kind":2048,"name":"findByPk","url":"classes/_core_.group.html#findbypk","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":749,"kind":2048,"name":"findOne","url":"classes/_core_.group.html#findone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":750,"kind":2048,"name":"aggregate","url":"classes/_core_.group.html#aggregate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":751,"kind":2048,"name":"count","url":"classes/_core_.group.html#count","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":752,"kind":2048,"name":"findAndCountAll","url":"classes/_core_.group.html#findandcountall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":753,"kind":2048,"name":"max","url":"classes/_core_.group.html#max","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":754,"kind":2048,"name":"min","url":"classes/_core_.group.html#min","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":755,"kind":2048,"name":"sum","url":"classes/_core_.group.html#sum","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":756,"kind":2048,"name":"build","url":"classes/_core_.group.html#build","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":757,"kind":2048,"name":"bulkBuild","url":"classes/_core_.group.html#bulkbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":758,"kind":2048,"name":"create","url":"classes/_core_.group.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":759,"kind":2048,"name":"findOrBuild","url":"classes/_core_.group.html#findorbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":760,"kind":2048,"name":"findOrCreate","url":"classes/_core_.group.html#findorcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":761,"kind":2048,"name":"upsert","url":"classes/_core_.group.html#upsert","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":762,"kind":2048,"name":"bulkCreate","url":"classes/_core_.group.html#bulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":763,"kind":2048,"name":"truncate","url":"classes/_core_.group.html#truncate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":764,"kind":2048,"name":"destroy","url":"classes/_core_.group.html#destroy-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":765,"kind":2048,"name":"restore","url":"classes/_core_.group.html#restore-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":766,"kind":2048,"name":"update","url":"classes/_core_.group.html#update-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":767,"kind":2048,"name":"increment","url":"classes/_core_.group.html#increment-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":768,"kind":2048,"name":"describe","url":"classes/_core_.group.html#describe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":769,"kind":2048,"name":"unscoped","url":"classes/_core_.group.html#unscoped","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":770,"kind":2048,"name":"beforeValidate","url":"classes/_core_.group.html#beforevalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":771,"kind":2048,"name":"afterValidate","url":"classes/_core_.group.html#aftervalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":772,"kind":2048,"name":"beforeCreate","url":"classes/_core_.group.html#beforecreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":773,"kind":2048,"name":"afterCreate","url":"classes/_core_.group.html#aftercreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":774,"kind":2048,"name":"beforeDestroy","url":"classes/_core_.group.html#beforedestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":775,"kind":2048,"name":"afterDestroy","url":"classes/_core_.group.html#afterdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":776,"kind":2048,"name":"beforeUpdate","url":"classes/_core_.group.html#beforeupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":777,"kind":2048,"name":"afterUpdate","url":"classes/_core_.group.html#afterupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":778,"kind":2048,"name":"beforeBulkCreate","url":"classes/_core_.group.html#beforebulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":779,"kind":2048,"name":"afterBulkCreate","url":"classes/_core_.group.html#afterbulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":780,"kind":2048,"name":"beforeBulkDestroy","url":"classes/_core_.group.html#beforebulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":781,"kind":2048,"name":"afterBulkDestroy","url":"classes/_core_.group.html#afterbulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":782,"kind":2048,"name":"beforeBulkUpdate","url":"classes/_core_.group.html#beforebulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":783,"kind":2048,"name":"afterBulkUpdate","url":"classes/_core_.group.html#afterbulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":784,"kind":2048,"name":"beforeFind","url":"classes/_core_.group.html#beforefind","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":785,"kind":2048,"name":"beforeCount","url":"classes/_core_.group.html#beforecount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":786,"kind":2048,"name":"beforeFindAfterExpandIncludeAll","url":"classes/_core_.group.html#beforefindafterexpandincludeall","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":787,"kind":2048,"name":"beforeFindAfterOptions","url":"classes/_core_.group.html#beforefindafteroptions","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":788,"kind":2048,"name":"afterFind","url":"classes/_core_.group.html#afterfind","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":789,"kind":2048,"name":"beforeBulkSync","url":"classes/_core_.group.html#beforebulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":790,"kind":2048,"name":"afterBulkSync","url":"classes/_core_.group.html#afterbulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":791,"kind":2048,"name":"beforeSync","url":"classes/_core_.group.html#beforesync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":792,"kind":2048,"name":"afterSync","url":"classes/_core_.group.html#aftersync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":793,"kind":2048,"name":"hasOne","url":"classes/_core_.group.html#hasone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":794,"kind":2048,"name":"belongsTo","url":"classes/_core_.group.html#belongsto","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":795,"kind":2048,"name":"hasMany","url":"classes/_core_.group.html#hasmany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":796,"kind":2048,"name":"belongsToMany","url":"classes/_core_.group.html#belongstomany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":797,"kind":1024,"name":"isNewRecord","url":"classes/_core_.group.html#isnewrecord","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":798,"kind":1024,"name":"sequelize","url":"classes/_core_.group.html#sequelize","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":799,"kind":512,"name":"constructor","url":"classes/_core_.group.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":800,"kind":2048,"name":"where","url":"classes/_core_.group.html#where","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":801,"kind":2048,"name":"getDataValue","url":"classes/_core_.group.html#getdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":802,"kind":2048,"name":"setDataValue","url":"classes/_core_.group.html#setdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":803,"kind":2048,"name":"get","url":"classes/_core_.group.html#get","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":804,"kind":2048,"name":"set","url":"classes/_core_.group.html#set","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":805,"kind":2048,"name":"setAttributes","url":"classes/_core_.group.html#setattributes","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":806,"kind":2048,"name":"changed","url":"classes/_core_.group.html#changed","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":807,"kind":2048,"name":"previous","url":"classes/_core_.group.html#previous","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":808,"kind":2048,"name":"save","url":"classes/_core_.group.html#save","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":809,"kind":2048,"name":"reload","url":"classes/_core_.group.html#reload","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":810,"kind":2048,"name":"validate","url":"classes/_core_.group.html#validate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":811,"kind":2048,"name":"update","url":"classes/_core_.group.html#update","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":812,"kind":2048,"name":"destroy","url":"classes/_core_.group.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":813,"kind":2048,"name":"restore","url":"classes/_core_.group.html#restore","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":814,"kind":2048,"name":"increment","url":"classes/_core_.group.html#increment","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":815,"kind":2048,"name":"decrement","url":"classes/_core_.group.html#decrement","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":816,"kind":2048,"name":"equals","url":"classes/_core_.group.html#equals","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":817,"kind":2048,"name":"equalsOneOf","url":"classes/_core_.group.html#equalsoneof","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":818,"kind":2048,"name":"addHook","url":"classes/_core_.group.html#addhook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":819,"kind":2048,"name":"removeHook","url":"classes/_core_.group.html#removehook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":820,"kind":2048,"name":"hasHook","url":"classes/_core_.group.html#hashook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":821,"kind":2048,"name":"hasHooks","url":"classes/_core_.group.html#hashooks-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":822,"kind":2048,"name":"addHook","url":"classes/_core_.group.html#addhook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":823,"kind":2048,"name":"removeHook","url":"classes/_core_.group.html#removehook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":824,"kind":2048,"name":"hasHook","url":"classes/_core_.group.html#hashook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":825,"kind":2048,"name":"hasHooks","url":"classes/_core_.group.html#hashooks","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":826,"kind":128,"name":"Auth","url":"classes/_core_.auth.html","classes":"tsd-kind-class tsd-parent-kind-external-module tsd-has-type-parameter","parent":"\"core\""},{"id":827,"kind":1024,"name":"id","url":"classes/_core_.auth.html#id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Auth"},{"id":828,"kind":1024,"name":"group_id","url":"classes/_core_.auth.html#group_id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Auth"},{"id":829,"kind":1024,"name":"auth","url":"classes/_core_.auth.html#auth","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Auth"},{"id":830,"kind":1024,"name":"module","url":"classes/_core_.auth.html#module","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Auth"},{"id":831,"kind":2048,"name":"toJSON","url":"classes/_core_.auth.html#tojson","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"core\".Auth"},{"id":832,"kind":1024,"name":"tableName","url":"classes/_core_.auth.html#tablename","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":833,"kind":1024,"name":"primaryKeyAttribute","url":"classes/_core_.auth.html#primarykeyattribute","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":834,"kind":1024,"name":"associations","url":"classes/_core_.auth.html#associations","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":835,"kind":65536,"name":"__type","url":"classes/_core_.auth.html#associations.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".Auth.associations"},{"id":836,"kind":1024,"name":"options","url":"classes/_core_.auth.html#options","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":837,"kind":1024,"name":"rawAttributes","url":"classes/_core_.auth.html#rawattributes","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":838,"kind":65536,"name":"__type","url":"classes/_core_.auth.html#rawattributes.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".Auth.rawAttributes"},{"id":839,"kind":1024,"name":"sequelize","url":"classes/_core_.auth.html#sequelize-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":840,"kind":2048,"name":"init","url":"classes/_core_.auth.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":841,"kind":2048,"name":"removeAttribute","url":"classes/_core_.auth.html#removeattribute","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":842,"kind":2048,"name":"sync","url":"classes/_core_.auth.html#sync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":843,"kind":2048,"name":"drop","url":"classes/_core_.auth.html#drop","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":844,"kind":2048,"name":"schema","url":"classes/_core_.auth.html#schema","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":845,"kind":2048,"name":"getTableName","url":"classes/_core_.auth.html#gettablename","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":846,"kind":2048,"name":"scope","url":"classes/_core_.auth.html#scope","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":847,"kind":2048,"name":"addScope","url":"classes/_core_.auth.html#addscope","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":848,"kind":2048,"name":"findAll","url":"classes/_core_.auth.html#findall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":849,"kind":2048,"name":"findByPk","url":"classes/_core_.auth.html#findbypk","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":850,"kind":2048,"name":"findOne","url":"classes/_core_.auth.html#findone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":851,"kind":2048,"name":"aggregate","url":"classes/_core_.auth.html#aggregate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":852,"kind":2048,"name":"count","url":"classes/_core_.auth.html#count","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":853,"kind":2048,"name":"findAndCountAll","url":"classes/_core_.auth.html#findandcountall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":854,"kind":2048,"name":"max","url":"classes/_core_.auth.html#max","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":855,"kind":2048,"name":"min","url":"classes/_core_.auth.html#min","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":856,"kind":2048,"name":"sum","url":"classes/_core_.auth.html#sum","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":857,"kind":2048,"name":"build","url":"classes/_core_.auth.html#build","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":858,"kind":2048,"name":"bulkBuild","url":"classes/_core_.auth.html#bulkbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":859,"kind":2048,"name":"create","url":"classes/_core_.auth.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":860,"kind":2048,"name":"findOrBuild","url":"classes/_core_.auth.html#findorbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":861,"kind":2048,"name":"findOrCreate","url":"classes/_core_.auth.html#findorcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":862,"kind":2048,"name":"upsert","url":"classes/_core_.auth.html#upsert","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":863,"kind":2048,"name":"bulkCreate","url":"classes/_core_.auth.html#bulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":864,"kind":2048,"name":"truncate","url":"classes/_core_.auth.html#truncate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":865,"kind":2048,"name":"destroy","url":"classes/_core_.auth.html#destroy-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":866,"kind":2048,"name":"restore","url":"classes/_core_.auth.html#restore-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":867,"kind":2048,"name":"update","url":"classes/_core_.auth.html#update-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":868,"kind":2048,"name":"increment","url":"classes/_core_.auth.html#increment-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":869,"kind":2048,"name":"describe","url":"classes/_core_.auth.html#describe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":870,"kind":2048,"name":"unscoped","url":"classes/_core_.auth.html#unscoped","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":871,"kind":2048,"name":"beforeValidate","url":"classes/_core_.auth.html#beforevalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":872,"kind":2048,"name":"afterValidate","url":"classes/_core_.auth.html#aftervalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":873,"kind":2048,"name":"beforeCreate","url":"classes/_core_.auth.html#beforecreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":874,"kind":2048,"name":"afterCreate","url":"classes/_core_.auth.html#aftercreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":875,"kind":2048,"name":"beforeDestroy","url":"classes/_core_.auth.html#beforedestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":876,"kind":2048,"name":"afterDestroy","url":"classes/_core_.auth.html#afterdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":877,"kind":2048,"name":"beforeUpdate","url":"classes/_core_.auth.html#beforeupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":878,"kind":2048,"name":"afterUpdate","url":"classes/_core_.auth.html#afterupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":879,"kind":2048,"name":"beforeBulkCreate","url":"classes/_core_.auth.html#beforebulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":880,"kind":2048,"name":"afterBulkCreate","url":"classes/_core_.auth.html#afterbulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":881,"kind":2048,"name":"beforeBulkDestroy","url":"classes/_core_.auth.html#beforebulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":882,"kind":2048,"name":"afterBulkDestroy","url":"classes/_core_.auth.html#afterbulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":883,"kind":2048,"name":"beforeBulkUpdate","url":"classes/_core_.auth.html#beforebulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":884,"kind":2048,"name":"afterBulkUpdate","url":"classes/_core_.auth.html#afterbulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":885,"kind":2048,"name":"beforeFind","url":"classes/_core_.auth.html#beforefind","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":886,"kind":2048,"name":"beforeCount","url":"classes/_core_.auth.html#beforecount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":887,"kind":2048,"name":"beforeFindAfterExpandIncludeAll","url":"classes/_core_.auth.html#beforefindafterexpandincludeall","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":888,"kind":2048,"name":"beforeFindAfterOptions","url":"classes/_core_.auth.html#beforefindafteroptions","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":889,"kind":2048,"name":"afterFind","url":"classes/_core_.auth.html#afterfind","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":890,"kind":2048,"name":"beforeBulkSync","url":"classes/_core_.auth.html#beforebulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":891,"kind":2048,"name":"afterBulkSync","url":"classes/_core_.auth.html#afterbulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":892,"kind":2048,"name":"beforeSync","url":"classes/_core_.auth.html#beforesync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":893,"kind":2048,"name":"afterSync","url":"classes/_core_.auth.html#aftersync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":894,"kind":2048,"name":"hasOne","url":"classes/_core_.auth.html#hasone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":895,"kind":2048,"name":"belongsTo","url":"classes/_core_.auth.html#belongsto","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":896,"kind":2048,"name":"hasMany","url":"classes/_core_.auth.html#hasmany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":897,"kind":2048,"name":"belongsToMany","url":"classes/_core_.auth.html#belongstomany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":898,"kind":1024,"name":"isNewRecord","url":"classes/_core_.auth.html#isnewrecord","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":899,"kind":1024,"name":"sequelize","url":"classes/_core_.auth.html#sequelize","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":900,"kind":512,"name":"constructor","url":"classes/_core_.auth.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":901,"kind":2048,"name":"where","url":"classes/_core_.auth.html#where","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":902,"kind":2048,"name":"getDataValue","url":"classes/_core_.auth.html#getdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":903,"kind":2048,"name":"setDataValue","url":"classes/_core_.auth.html#setdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":904,"kind":2048,"name":"get","url":"classes/_core_.auth.html#get","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":905,"kind":2048,"name":"set","url":"classes/_core_.auth.html#set","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":906,"kind":2048,"name":"setAttributes","url":"classes/_core_.auth.html#setattributes","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":907,"kind":2048,"name":"changed","url":"classes/_core_.auth.html#changed","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":908,"kind":2048,"name":"previous","url":"classes/_core_.auth.html#previous","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":909,"kind":2048,"name":"save","url":"classes/_core_.auth.html#save","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":910,"kind":2048,"name":"reload","url":"classes/_core_.auth.html#reload","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":911,"kind":2048,"name":"validate","url":"classes/_core_.auth.html#validate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":912,"kind":2048,"name":"update","url":"classes/_core_.auth.html#update","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":913,"kind":2048,"name":"destroy","url":"classes/_core_.auth.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":914,"kind":2048,"name":"restore","url":"classes/_core_.auth.html#restore","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":915,"kind":2048,"name":"increment","url":"classes/_core_.auth.html#increment","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":916,"kind":2048,"name":"decrement","url":"classes/_core_.auth.html#decrement","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":917,"kind":2048,"name":"equals","url":"classes/_core_.auth.html#equals","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":918,"kind":2048,"name":"equalsOneOf","url":"classes/_core_.auth.html#equalsoneof","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":919,"kind":2048,"name":"addHook","url":"classes/_core_.auth.html#addhook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":920,"kind":2048,"name":"removeHook","url":"classes/_core_.auth.html#removehook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":921,"kind":2048,"name":"hasHook","url":"classes/_core_.auth.html#hashook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":922,"kind":2048,"name":"hasHooks","url":"classes/_core_.auth.html#hashooks-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":923,"kind":2048,"name":"addHook","url":"classes/_core_.auth.html#addhook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":924,"kind":2048,"name":"removeHook","url":"classes/_core_.auth.html#removehook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":925,"kind":2048,"name":"hasHook","url":"classes/_core_.auth.html#hashook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":926,"kind":2048,"name":"hasHooks","url":"classes/_core_.auth.html#hashooks","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":927,"kind":256,"name":"LogArgs","url":"interfaces/_core_.logargs.html","classes":"tsd-kind-interface tsd-parent-kind-external-module","parent":"\"core\""},{"id":928,"kind":1024,"name":"message","url":"interfaces/_core_.logargs.html#message","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".LogArgs"},{"id":929,"kind":1024,"name":"user_id","url":"interfaces/_core_.logargs.html#user_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".LogArgs"},{"id":930,"kind":1024,"name":"user_name","url":"interfaces/_core_.logargs.html#user_name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".LogArgs"},{"id":931,"kind":1024,"name":"status_code","url":"interfaces/_core_.logargs.html#status_code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".LogArgs"},{"id":932,"kind":1024,"name":"method","url":"interfaces/_core_.logargs.html#method","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".LogArgs"},{"id":933,"kind":1024,"name":"path","url":"interfaces/_core_.logargs.html#path","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".LogArgs"},{"id":934,"kind":1024,"name":"authority","url":"interfaces/_core_.logargs.html#authority","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".LogArgs"},{"id":935,"kind":128,"name":"Log","url":"classes/_core_.log.html","classes":"tsd-kind-class tsd-parent-kind-external-module tsd-has-type-parameter","parent":"\"core\""},{"id":936,"kind":1024,"name":"id","url":"classes/_core_.log.html#id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":937,"kind":1024,"name":"message","url":"classes/_core_.log.html#message","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":938,"kind":1024,"name":"user_id","url":"classes/_core_.log.html#user_id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":939,"kind":1024,"name":"user_name","url":"classes/_core_.log.html#user_name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":940,"kind":1024,"name":"status_code","url":"classes/_core_.log.html#status_code","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":941,"kind":1024,"name":"method","url":"classes/_core_.log.html#method","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":942,"kind":1024,"name":"path","url":"classes/_core_.log.html#path","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":943,"kind":1024,"name":"authority","url":"classes/_core_.log.html#authority","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":944,"kind":1024,"name":"time","url":"classes/_core_.log.html#time","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":945,"kind":2048,"name":"createLog","url":"classes/_core_.log.html#createlog","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"\"core\".Log"},{"id":946,"kind":2048,"name":"toJSON","url":"classes/_core_.log.html#tojson","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"core\".Log"},{"id":947,"kind":1024,"name":"tableName","url":"classes/_core_.log.html#tablename","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":948,"kind":1024,"name":"primaryKeyAttribute","url":"classes/_core_.log.html#primarykeyattribute","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":949,"kind":1024,"name":"associations","url":"classes/_core_.log.html#associations","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":950,"kind":65536,"name":"__type","url":"classes/_core_.log.html#associations.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".Log.associations"},{"id":951,"kind":1024,"name":"options","url":"classes/_core_.log.html#options","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":952,"kind":1024,"name":"rawAttributes","url":"classes/_core_.log.html#rawattributes","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":953,"kind":65536,"name":"__type","url":"classes/_core_.log.html#rawattributes.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".Log.rawAttributes"},{"id":954,"kind":1024,"name":"sequelize","url":"classes/_core_.log.html#sequelize-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":955,"kind":2048,"name":"init","url":"classes/_core_.log.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":956,"kind":2048,"name":"removeAttribute","url":"classes/_core_.log.html#removeattribute","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":957,"kind":2048,"name":"sync","url":"classes/_core_.log.html#sync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":958,"kind":2048,"name":"drop","url":"classes/_core_.log.html#drop","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":959,"kind":2048,"name":"schema","url":"classes/_core_.log.html#schema","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":960,"kind":2048,"name":"getTableName","url":"classes/_core_.log.html#gettablename","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":961,"kind":2048,"name":"scope","url":"classes/_core_.log.html#scope","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":962,"kind":2048,"name":"addScope","url":"classes/_core_.log.html#addscope","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":963,"kind":2048,"name":"findAll","url":"classes/_core_.log.html#findall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":964,"kind":2048,"name":"findByPk","url":"classes/_core_.log.html#findbypk","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":965,"kind":2048,"name":"findOne","url":"classes/_core_.log.html#findone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":966,"kind":2048,"name":"aggregate","url":"classes/_core_.log.html#aggregate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":967,"kind":2048,"name":"count","url":"classes/_core_.log.html#count","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":968,"kind":2048,"name":"findAndCountAll","url":"classes/_core_.log.html#findandcountall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":969,"kind":2048,"name":"max","url":"classes/_core_.log.html#max","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":970,"kind":2048,"name":"min","url":"classes/_core_.log.html#min","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":971,"kind":2048,"name":"sum","url":"classes/_core_.log.html#sum","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":972,"kind":2048,"name":"build","url":"classes/_core_.log.html#build","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":973,"kind":2048,"name":"bulkBuild","url":"classes/_core_.log.html#bulkbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":974,"kind":2048,"name":"create","url":"classes/_core_.log.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":975,"kind":2048,"name":"findOrBuild","url":"classes/_core_.log.html#findorbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":976,"kind":2048,"name":"findOrCreate","url":"classes/_core_.log.html#findorcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":977,"kind":2048,"name":"upsert","url":"classes/_core_.log.html#upsert","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":978,"kind":2048,"name":"bulkCreate","url":"classes/_core_.log.html#bulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":979,"kind":2048,"name":"truncate","url":"classes/_core_.log.html#truncate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":980,"kind":2048,"name":"destroy","url":"classes/_core_.log.html#destroy-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":981,"kind":2048,"name":"restore","url":"classes/_core_.log.html#restore-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":982,"kind":2048,"name":"update","url":"classes/_core_.log.html#update-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":983,"kind":2048,"name":"increment","url":"classes/_core_.log.html#increment-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":984,"kind":2048,"name":"describe","url":"classes/_core_.log.html#describe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":985,"kind":2048,"name":"unscoped","url":"classes/_core_.log.html#unscoped","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":986,"kind":2048,"name":"beforeValidate","url":"classes/_core_.log.html#beforevalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":987,"kind":2048,"name":"afterValidate","url":"classes/_core_.log.html#aftervalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":988,"kind":2048,"name":"beforeCreate","url":"classes/_core_.log.html#beforecreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":989,"kind":2048,"name":"afterCreate","url":"classes/_core_.log.html#aftercreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":990,"kind":2048,"name":"beforeDestroy","url":"classes/_core_.log.html#beforedestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":991,"kind":2048,"name":"afterDestroy","url":"classes/_core_.log.html#afterdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":992,"kind":2048,"name":"beforeUpdate","url":"classes/_core_.log.html#beforeupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":993,"kind":2048,"name":"afterUpdate","url":"classes/_core_.log.html#afterupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":994,"kind":2048,"name":"beforeBulkCreate","url":"classes/_core_.log.html#beforebulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":995,"kind":2048,"name":"afterBulkCreate","url":"classes/_core_.log.html#afterbulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":996,"kind":2048,"name":"beforeBulkDestroy","url":"classes/_core_.log.html#beforebulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":997,"kind":2048,"name":"afterBulkDestroy","url":"classes/_core_.log.html#afterbulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":998,"kind":2048,"name":"beforeBulkUpdate","url":"classes/_core_.log.html#beforebulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":999,"kind":2048,"name":"afterBulkUpdate","url":"classes/_core_.log.html#afterbulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1000,"kind":2048,"name":"beforeFind","url":"classes/_core_.log.html#beforefind","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1001,"kind":2048,"name":"beforeCount","url":"classes/_core_.log.html#beforecount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1002,"kind":2048,"name":"beforeFindAfterExpandIncludeAll","url":"classes/_core_.log.html#beforefindafterexpandincludeall","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1003,"kind":2048,"name":"beforeFindAfterOptions","url":"classes/_core_.log.html#beforefindafteroptions","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1004,"kind":2048,"name":"afterFind","url":"classes/_core_.log.html#afterfind","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1005,"kind":2048,"name":"beforeBulkSync","url":"classes/_core_.log.html#beforebulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1006,"kind":2048,"name":"afterBulkSync","url":"classes/_core_.log.html#afterbulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1007,"kind":2048,"name":"beforeSync","url":"classes/_core_.log.html#beforesync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1008,"kind":2048,"name":"afterSync","url":"classes/_core_.log.html#aftersync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1009,"kind":2048,"name":"hasOne","url":"classes/_core_.log.html#hasone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1010,"kind":2048,"name":"belongsTo","url":"classes/_core_.log.html#belongsto","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1011,"kind":2048,"name":"hasMany","url":"classes/_core_.log.html#hasmany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1012,"kind":2048,"name":"belongsToMany","url":"classes/_core_.log.html#belongstomany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1013,"kind":1024,"name":"isNewRecord","url":"classes/_core_.log.html#isnewrecord","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1014,"kind":1024,"name":"sequelize","url":"classes/_core_.log.html#sequelize","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1015,"kind":512,"name":"constructor","url":"classes/_core_.log.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1016,"kind":2048,"name":"where","url":"classes/_core_.log.html#where","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1017,"kind":2048,"name":"getDataValue","url":"classes/_core_.log.html#getdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1018,"kind":2048,"name":"setDataValue","url":"classes/_core_.log.html#setdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1019,"kind":2048,"name":"get","url":"classes/_core_.log.html#get","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1020,"kind":2048,"name":"set","url":"classes/_core_.log.html#set","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1021,"kind":2048,"name":"setAttributes","url":"classes/_core_.log.html#setattributes","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1022,"kind":2048,"name":"changed","url":"classes/_core_.log.html#changed","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1023,"kind":2048,"name":"previous","url":"classes/_core_.log.html#previous","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1024,"kind":2048,"name":"save","url":"classes/_core_.log.html#save","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1025,"kind":2048,"name":"reload","url":"classes/_core_.log.html#reload","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1026,"kind":2048,"name":"validate","url":"classes/_core_.log.html#validate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1027,"kind":2048,"name":"update","url":"classes/_core_.log.html#update","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1028,"kind":2048,"name":"destroy","url":"classes/_core_.log.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1029,"kind":2048,"name":"restore","url":"classes/_core_.log.html#restore","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1030,"kind":2048,"name":"increment","url":"classes/_core_.log.html#increment","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1031,"kind":2048,"name":"decrement","url":"classes/_core_.log.html#decrement","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1032,"kind":2048,"name":"equals","url":"classes/_core_.log.html#equals","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1033,"kind":2048,"name":"equalsOneOf","url":"classes/_core_.log.html#equalsoneof","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1034,"kind":2048,"name":"addHook","url":"classes/_core_.log.html#addhook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1035,"kind":2048,"name":"removeHook","url":"classes/_core_.log.html#removehook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1036,"kind":2048,"name":"hasHook","url":"classes/_core_.log.html#hashook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1037,"kind":2048,"name":"hasHooks","url":"classes/_core_.log.html#hashooks-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1038,"kind":2048,"name":"addHook","url":"classes/_core_.log.html#addhook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1039,"kind":2048,"name":"removeHook","url":"classes/_core_.log.html#removehook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1040,"kind":2048,"name":"hasHook","url":"classes/_core_.log.html#hashook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1041,"kind":2048,"name":"hasHooks","url":"classes/_core_.log.html#hashooks","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1042,"kind":256,"name":"FileArgs","url":"interfaces/_core_.fileargs.html","classes":"tsd-kind-interface tsd-parent-kind-external-module","parent":"\"core\""},{"id":1043,"kind":1024,"name":"path","url":"interfaces/_core_.fileargs.html#path","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".FileArgs"},{"id":1044,"kind":1024,"name":"type","url":"interfaces/_core_.fileargs.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".FileArgs"},{"id":1045,"kind":1024,"name":"name","url":"interfaces/_core_.fileargs.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".FileArgs"},{"id":1046,"kind":1024,"name":"extension","url":"interfaces/_core_.fileargs.html#extension","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".FileArgs"},{"id":1047,"kind":1024,"name":"size","url":"interfaces/_core_.fileargs.html#size","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".FileArgs"},{"id":1048,"kind":128,"name":"File","url":"classes/_core_.file.html","classes":"tsd-kind-class tsd-parent-kind-external-module tsd-has-type-parameter","parent":"\"core\""},{"id":1049,"kind":1024,"name":"id","url":"classes/_core_.file.html#id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".File"},{"id":1050,"kind":1024,"name":"path","url":"classes/_core_.file.html#path","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".File"},{"id":1051,"kind":1024,"name":"type","url":"classes/_core_.file.html#type","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".File"},{"id":1052,"kind":1024,"name":"name","url":"classes/_core_.file.html#name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".File"},{"id":1053,"kind":1024,"name":"extension","url":"classes/_core_.file.html#extension","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".File"},{"id":1054,"kind":1024,"name":"size","url":"classes/_core_.file.html#size","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".File"},{"id":1055,"kind":2048,"name":"createRecord","url":"classes/_core_.file.html#createrecord","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"\"core\".File"},{"id":1056,"kind":2048,"name":"toJSON","url":"classes/_core_.file.html#tojson","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"core\".File"},{"id":1057,"kind":1024,"name":"tableName","url":"classes/_core_.file.html#tablename","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1058,"kind":1024,"name":"primaryKeyAttribute","url":"classes/_core_.file.html#primarykeyattribute","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1059,"kind":1024,"name":"associations","url":"classes/_core_.file.html#associations","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1060,"kind":65536,"name":"__type","url":"classes/_core_.file.html#associations.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".File.associations"},{"id":1061,"kind":1024,"name":"options","url":"classes/_core_.file.html#options","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1062,"kind":1024,"name":"rawAttributes","url":"classes/_core_.file.html#rawattributes","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1063,"kind":65536,"name":"__type","url":"classes/_core_.file.html#rawattributes.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".File.rawAttributes"},{"id":1064,"kind":1024,"name":"sequelize","url":"classes/_core_.file.html#sequelize-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1065,"kind":2048,"name":"init","url":"classes/_core_.file.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1066,"kind":2048,"name":"removeAttribute","url":"classes/_core_.file.html#removeattribute","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1067,"kind":2048,"name":"sync","url":"classes/_core_.file.html#sync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1068,"kind":2048,"name":"drop","url":"classes/_core_.file.html#drop","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1069,"kind":2048,"name":"schema","url":"classes/_core_.file.html#schema","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1070,"kind":2048,"name":"getTableName","url":"classes/_core_.file.html#gettablename","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1071,"kind":2048,"name":"scope","url":"classes/_core_.file.html#scope","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1072,"kind":2048,"name":"addScope","url":"classes/_core_.file.html#addscope","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1073,"kind":2048,"name":"findAll","url":"classes/_core_.file.html#findall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1074,"kind":2048,"name":"findByPk","url":"classes/_core_.file.html#findbypk","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1075,"kind":2048,"name":"findOne","url":"classes/_core_.file.html#findone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1076,"kind":2048,"name":"aggregate","url":"classes/_core_.file.html#aggregate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1077,"kind":2048,"name":"count","url":"classes/_core_.file.html#count","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1078,"kind":2048,"name":"findAndCountAll","url":"classes/_core_.file.html#findandcountall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1079,"kind":2048,"name":"max","url":"classes/_core_.file.html#max","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1080,"kind":2048,"name":"min","url":"classes/_core_.file.html#min","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1081,"kind":2048,"name":"sum","url":"classes/_core_.file.html#sum","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1082,"kind":2048,"name":"build","url":"classes/_core_.file.html#build","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1083,"kind":2048,"name":"bulkBuild","url":"classes/_core_.file.html#bulkbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1084,"kind":2048,"name":"create","url":"classes/_core_.file.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1085,"kind":2048,"name":"findOrBuild","url":"classes/_core_.file.html#findorbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1086,"kind":2048,"name":"findOrCreate","url":"classes/_core_.file.html#findorcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1087,"kind":2048,"name":"upsert","url":"classes/_core_.file.html#upsert","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1088,"kind":2048,"name":"bulkCreate","url":"classes/_core_.file.html#bulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1089,"kind":2048,"name":"truncate","url":"classes/_core_.file.html#truncate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1090,"kind":2048,"name":"destroy","url":"classes/_core_.file.html#destroy-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1091,"kind":2048,"name":"restore","url":"classes/_core_.file.html#restore-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1092,"kind":2048,"name":"update","url":"classes/_core_.file.html#update-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1093,"kind":2048,"name":"increment","url":"classes/_core_.file.html#increment-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1094,"kind":2048,"name":"describe","url":"classes/_core_.file.html#describe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1095,"kind":2048,"name":"unscoped","url":"classes/_core_.file.html#unscoped","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1096,"kind":2048,"name":"beforeValidate","url":"classes/_core_.file.html#beforevalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1097,"kind":2048,"name":"afterValidate","url":"classes/_core_.file.html#aftervalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1098,"kind":2048,"name":"beforeCreate","url":"classes/_core_.file.html#beforecreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1099,"kind":2048,"name":"afterCreate","url":"classes/_core_.file.html#aftercreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1100,"kind":2048,"name":"beforeDestroy","url":"classes/_core_.file.html#beforedestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1101,"kind":2048,"name":"afterDestroy","url":"classes/_core_.file.html#afterdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1102,"kind":2048,"name":"beforeUpdate","url":"classes/_core_.file.html#beforeupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1103,"kind":2048,"name":"afterUpdate","url":"classes/_core_.file.html#afterupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1104,"kind":2048,"name":"beforeBulkCreate","url":"classes/_core_.file.html#beforebulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1105,"kind":2048,"name":"afterBulkCreate","url":"classes/_core_.file.html#afterbulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1106,"kind":2048,"name":"beforeBulkDestroy","url":"classes/_core_.file.html#beforebulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1107,"kind":2048,"name":"afterBulkDestroy","url":"classes/_core_.file.html#afterbulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1108,"kind":2048,"name":"beforeBulkUpdate","url":"classes/_core_.file.html#beforebulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1109,"kind":2048,"name":"afterBulkUpdate","url":"classes/_core_.file.html#afterbulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1110,"kind":2048,"name":"beforeFind","url":"classes/_core_.file.html#beforefind","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1111,"kind":2048,"name":"beforeCount","url":"classes/_core_.file.html#beforecount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1112,"kind":2048,"name":"beforeFindAfterExpandIncludeAll","url":"classes/_core_.file.html#beforefindafterexpandincludeall","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1113,"kind":2048,"name":"beforeFindAfterOptions","url":"classes/_core_.file.html#beforefindafteroptions","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1114,"kind":2048,"name":"afterFind","url":"classes/_core_.file.html#afterfind","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1115,"kind":2048,"name":"beforeBulkSync","url":"classes/_core_.file.html#beforebulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1116,"kind":2048,"name":"afterBulkSync","url":"classes/_core_.file.html#afterbulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1117,"kind":2048,"name":"beforeSync","url":"classes/_core_.file.html#beforesync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1118,"kind":2048,"name":"afterSync","url":"classes/_core_.file.html#aftersync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1119,"kind":2048,"name":"hasOne","url":"classes/_core_.file.html#hasone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1120,"kind":2048,"name":"belongsTo","url":"classes/_core_.file.html#belongsto","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1121,"kind":2048,"name":"hasMany","url":"classes/_core_.file.html#hasmany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1122,"kind":2048,"name":"belongsToMany","url":"classes/_core_.file.html#belongstomany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1123,"kind":1024,"name":"isNewRecord","url":"classes/_core_.file.html#isnewrecord","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1124,"kind":1024,"name":"sequelize","url":"classes/_core_.file.html#sequelize","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1125,"kind":512,"name":"constructor","url":"classes/_core_.file.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1126,"kind":2048,"name":"where","url":"classes/_core_.file.html#where","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1127,"kind":2048,"name":"getDataValue","url":"classes/_core_.file.html#getdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1128,"kind":2048,"name":"setDataValue","url":"classes/_core_.file.html#setdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1129,"kind":2048,"name":"get","url":"classes/_core_.file.html#get","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1130,"kind":2048,"name":"set","url":"classes/_core_.file.html#set","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1131,"kind":2048,"name":"setAttributes","url":"classes/_core_.file.html#setattributes","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1132,"kind":2048,"name":"changed","url":"classes/_core_.file.html#changed","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1133,"kind":2048,"name":"previous","url":"classes/_core_.file.html#previous","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1134,"kind":2048,"name":"save","url":"classes/_core_.file.html#save","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1135,"kind":2048,"name":"reload","url":"classes/_core_.file.html#reload","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1136,"kind":2048,"name":"validate","url":"classes/_core_.file.html#validate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1137,"kind":2048,"name":"update","url":"classes/_core_.file.html#update","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1138,"kind":2048,"name":"destroy","url":"classes/_core_.file.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1139,"kind":2048,"name":"restore","url":"classes/_core_.file.html#restore","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1140,"kind":2048,"name":"increment","url":"classes/_core_.file.html#increment","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1141,"kind":2048,"name":"decrement","url":"classes/_core_.file.html#decrement","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1142,"kind":2048,"name":"equals","url":"classes/_core_.file.html#equals","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1143,"kind":2048,"name":"equalsOneOf","url":"classes/_core_.file.html#equalsoneof","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1144,"kind":2048,"name":"addHook","url":"classes/_core_.file.html#addhook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1145,"kind":2048,"name":"removeHook","url":"classes/_core_.file.html#removehook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1146,"kind":2048,"name":"hasHook","url":"classes/_core_.file.html#hashook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1147,"kind":2048,"name":"hasHooks","url":"classes/_core_.file.html#hashooks-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1148,"kind":2048,"name":"addHook","url":"classes/_core_.file.html#addhook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1149,"kind":2048,"name":"removeHook","url":"classes/_core_.file.html#removehook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1150,"kind":2048,"name":"hasHook","url":"classes/_core_.file.html#hashook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1151,"kind":2048,"name":"hasHooks","url":"classes/_core_.file.html#hashooks","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1152,"kind":32,"name":"__version__","url":"modules/_core_.html#__version__","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"core\""},{"id":1153,"kind":32,"name":"routeMetaInfo","url":"modules/_core_.html#routemetainfo","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"core\""},{"id":1154,"kind":32,"name":"disableLoading","url":"modules/_core_.html#disableloading","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"core\""},{"id":1155,"kind":1,"name":"\"factory\"","url":"modules/_factory_.html","classes":"tsd-kind-external-module"},{"id":1156,"kind":64,"name":"modelExtend","url":"modules/_factory_.html#modelextend","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"factory\""},{"id":1157,"kind":1,"name":"\"file\"","url":"modules/_file_.html","classes":"tsd-kind-external-module"},{"id":1158,"kind":128,"name":"Uploader","url":"classes/_file_.uploader.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"file\""},{"id":1159,"kind":1024,"name":"storeDir","url":"classes/_file_.uploader.html#storedir","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"file\".Uploader"},{"id":1160,"kind":512,"name":"constructor","url":"classes/_file_.uploader.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"file\".Uploader"},{"id":1161,"kind":2048,"name":"upload","url":"classes/_file_.uploader.html#upload","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"file\".Uploader"},{"id":1162,"kind":2048,"name":"getStorePath","url":"classes/_file_.uploader.html#getstorepath","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"file\".Uploader"},{"id":1163,"kind":2048,"name":"generateName","url":"classes/_file_.uploader.html#generatename","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"file\".Uploader"},{"id":1164,"kind":2048,"name":"getExactStoreDir","url":"classes/_file_.uploader.html#getexactstoredir","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"file\".Uploader"},{"id":1165,"kind":1,"name":"\"lin-validator\"","url":"modules/_lin_validator_.html","classes":"tsd-kind-external-module"},{"id":1166,"kind":128,"name":"LinValidator","url":"classes/_lin_validator_.linvalidator.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"lin-validator\""},{"id":1167,"kind":1024,"name":"data","url":"classes/_lin_validator_.linvalidator.html#data","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".LinValidator"},{"id":1168,"kind":1024,"name":"parsed","url":"classes/_lin_validator_.linvalidator.html#parsed","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".LinValidator"},{"id":1169,"kind":1024,"name":"errors","url":"classes/_lin_validator_.linvalidator.html#errors","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".LinValidator"},{"id":1170,"kind":1024,"name":"alias","url":"classes/_lin_validator_.linvalidator.html#alias","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".LinValidator"},{"id":1171,"kind":2048,"name":"validate","url":"classes/_lin_validator_.linvalidator.html#validate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-validator\".LinValidator"},{"id":1172,"kind":2048,"name":"replace","url":"classes/_lin_validator_.linvalidator.html#replace","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"lin-validator\".LinValidator"},{"id":1173,"kind":2048,"name":"isOptional","url":"classes/_lin_validator_.linvalidator.html#isoptional","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"lin-validator\".LinValidator"},{"id":1174,"kind":2048,"name":"checkRules","url":"classes/_lin_validator_.linvalidator.html#checkrules","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"lin-validator\".LinValidator"},{"id":1175,"kind":2048,"name":"getValidateFuncKey","url":"classes/_lin_validator_.linvalidator.html#getvalidatefunckey","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"lin-validator\".LinValidator"},{"id":1176,"kind":2048,"name":"get","url":"classes/_lin_validator_.linvalidator.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-validator\".LinValidator"},{"id":1177,"kind":2048,"name":"findInData","url":"classes/_lin_validator_.linvalidator.html#findindata","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"lin-validator\".LinValidator"},{"id":1178,"kind":128,"name":"Rule","url":"classes/_lin_validator_.rule.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"lin-validator\""},{"id":1179,"kind":1024,"name":"options","url":"classes/_lin_validator_.rule.html#options","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1180,"kind":1024,"name":"message","url":"classes/_lin_validator_.rule.html#message","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1181,"kind":1024,"name":"validateFunction","url":"classes/_lin_validator_.rule.html#validatefunction","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1182,"kind":1024,"name":"optional","url":"classes/_lin_validator_.rule.html#optional","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1183,"kind":1024,"name":"parsedValue","url":"classes/_lin_validator_.rule.html#parsedvalue","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1184,"kind":1024,"name":"rawValue","url":"classes/_lin_validator_.rule.html#rawvalue","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1185,"kind":1024,"name":"defaultValue","url":"classes/_lin_validator_.rule.html#defaultvalue","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1186,"kind":512,"name":"constructor","url":"classes/_lin_validator_.rule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1187,"kind":2048,"name":"validate","url":"classes/_lin_validator_.rule.html#validate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1188,"kind":1,"name":"\"log\"","url":"modules/_log_.html","classes":"tsd-kind-external-module"},{"id":1189,"kind":32,"name":"REG_XP","url":"modules/_log_.html#reg_xp","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"log\""},{"id":1190,"kind":64,"name":"logger","url":"modules/_log_.html#logger","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"log\""},{"id":1191,"kind":64,"name":"writeLog","url":"modules/_log_.html#writelog","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"log\""},{"id":1192,"kind":64,"name":"parseTemplate","url":"modules/_log_.html#parsetemplate","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"log\""},{"id":1193,"kind":1,"name":"\"middleware\"","url":"modules/_middleware_.html","classes":"tsd-kind-external-module"},{"id":1194,"kind":64,"name":"error","url":"modules/_middleware_.html#error","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"middleware\""},{"id":1195,"kind":64,"name":"log","url":"modules/_middleware_.html#log","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"middleware\""},{"id":1196,"kind":1,"name":"\"mixin\"","url":"modules/_mixin_.html","classes":"tsd-kind-external-module"},{"id":1197,"kind":128,"name":"JsonMixin","url":"classes/_mixin_.jsonmixin.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"mixin\""},{"id":1198,"kind":1024,"name":"fields","url":"classes/_mixin_.jsonmixin.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"mixin\".JsonMixin"},{"id":1199,"kind":1,"name":"\"index\"","url":"modules/_index_.html","classes":"tsd-kind-external-module"},{"id":1200,"kind":1,"name":"\"limiter\"","url":"modules/_limiter_.html","classes":"tsd-kind-external-module"},{"id":1201,"kind":256,"name":"RatelimitOptions","url":"interfaces/_limiter_.ratelimitoptions.html","classes":"tsd-kind-interface tsd-parent-kind-external-module","parent":"\"limiter\""},{"id":1202,"kind":1024,"name":"db","url":"interfaces/_limiter_.ratelimitoptions.html#db","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"limiter\".RatelimitOptions"},{"id":1203,"kind":1024,"name":"duration","url":"interfaces/_limiter_.ratelimitoptions.html#duration","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"limiter\".RatelimitOptions"},{"id":1204,"kind":1024,"name":"max","url":"interfaces/_limiter_.ratelimitoptions.html#max","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"limiter\".RatelimitOptions"},{"id":1205,"kind":1024,"name":"id","url":"interfaces/_limiter_.ratelimitoptions.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"limiter\".RatelimitOptions"},{"id":1206,"kind":1024,"name":"prefix","url":"interfaces/_limiter_.ratelimitoptions.html#prefix","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"limiter\".RatelimitOptions"},{"id":1207,"kind":1024,"name":"endpoint","url":"interfaces/_limiter_.ratelimitoptions.html#endpoint","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"limiter\".RatelimitOptions"},{"id":1208,"kind":1024,"name":"whitelist","url":"interfaces/_limiter_.ratelimitoptions.html#whitelist","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"limiter\".RatelimitOptions"},{"id":1209,"kind":1024,"name":"blacklist","url":"interfaces/_limiter_.ratelimitoptions.html#blacklist","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"limiter\".RatelimitOptions"},{"id":1210,"kind":1024,"name":"throw","url":"interfaces/_limiter_.ratelimitoptions.html#throw","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"limiter\".RatelimitOptions"},{"id":1211,"kind":1024,"name":"errorMessage","url":"interfaces/_limiter_.ratelimitoptions.html#errormessage","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"limiter\".RatelimitOptions"},{"id":1212,"kind":1024,"name":"headers","url":"interfaces/_limiter_.ratelimitoptions.html#headers","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"limiter\".RatelimitOptions"},{"id":1213,"kind":1024,"name":"logging","url":"interfaces/_limiter_.ratelimitoptions.html#logging","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"limiter\".RatelimitOptions"},{"id":1214,"kind":64,"name":"find","url":"modules/_limiter_.html#find","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"limiter\""},{"id":1215,"kind":64,"name":"pttl","url":"modules/_limiter_.html#pttl","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"limiter\""},{"id":1216,"kind":4194304,"name":"RatelimitExpires","url":"modules/_limiter_.html#ratelimitexpires","classes":"tsd-kind-type-alias tsd-parent-kind-external-module","parent":"\"limiter\""},{"id":1217,"kind":65536,"name":"__type","url":"modules/_limiter_.html#ratelimitexpires.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias tsd-is-not-exported","parent":"\"limiter\".RatelimitExpires"},{"id":1218,"kind":64,"name":"ratelimit","url":"modules/_limiter_.html#ratelimit","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"limiter\""},{"id":1219,"kind":1,"name":"\"sse\"","url":"modules/_sse_.html","classes":"tsd-kind-external-module"},{"id":1220,"kind":128,"name":"SSE","url":"classes/_sse_.sse.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"sse\""},{"id":1221,"kind":512,"name":"constructor","url":"classes/_sse_.sse.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"sse\".SSE"},{"id":1222,"kind":2048,"name":"_transform","url":"classes/_sse_.sse.html#_transform","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"sse\".SSE"},{"id":1223,"kind":2048,"name":"_flush","url":"classes/_sse_.sse.html#_flush","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1224,"kind":1024,"name":"writable","url":"classes/_sse_.sse.html#writable","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1225,"kind":1024,"name":"writableHighWaterMark","url":"classes/_sse_.sse.html#writablehighwatermark","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1226,"kind":1024,"name":"writableLength","url":"classes/_sse_.sse.html#writablelength","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1227,"kind":2048,"name":"_write","url":"classes/_sse_.sse.html#_write","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1228,"kind":2048,"name":"_writev","url":"classes/_sse_.sse.html#_writev","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1229,"kind":2048,"name":"_destroy","url":"classes/_sse_.sse.html#_destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1230,"kind":2048,"name":"_final","url":"classes/_sse_.sse.html#_final","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1231,"kind":2048,"name":"write","url":"classes/_sse_.sse.html#write","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1232,"kind":2048,"name":"setDefaultEncoding","url":"classes/_sse_.sse.html#setdefaultencoding","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1233,"kind":2048,"name":"end","url":"classes/_sse_.sse.html#end","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1234,"kind":2048,"name":"cork","url":"classes/_sse_.sse.html#cork","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1235,"kind":2048,"name":"uncork","url":"classes/_sse_.sse.html#uncork","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1236,"kind":1024,"name":"readable","url":"classes/_sse_.sse.html#readable","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1237,"kind":1024,"name":"readableHighWaterMark","url":"classes/_sse_.sse.html#readablehighwatermark","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1238,"kind":1024,"name":"readableLength","url":"classes/_sse_.sse.html#readablelength","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1239,"kind":2048,"name":"_read","url":"classes/_sse_.sse.html#_read","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1240,"kind":2048,"name":"read","url":"classes/_sse_.sse.html#read","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1241,"kind":2048,"name":"setEncoding","url":"classes/_sse_.sse.html#setencoding","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1242,"kind":2048,"name":"pause","url":"classes/_sse_.sse.html#pause","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1243,"kind":2048,"name":"resume","url":"classes/_sse_.sse.html#resume","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1244,"kind":2048,"name":"isPaused","url":"classes/_sse_.sse.html#ispaused","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1245,"kind":2048,"name":"unpipe","url":"classes/_sse_.sse.html#unpipe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1246,"kind":2048,"name":"unshift","url":"classes/_sse_.sse.html#unshift","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1247,"kind":2048,"name":"wrap","url":"classes/_sse_.sse.html#wrap","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1248,"kind":2048,"name":"push","url":"classes/_sse_.sse.html#push","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1249,"kind":2048,"name":"destroy","url":"classes/_sse_.sse.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1250,"kind":2048,"name":"addListener","url":"classes/_sse_.sse.html#addlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1251,"kind":2048,"name":"emit","url":"classes/_sse_.sse.html#emit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1252,"kind":2048,"name":"on","url":"classes/_sse_.sse.html#on","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1253,"kind":2048,"name":"once","url":"classes/_sse_.sse.html#once","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1254,"kind":2048,"name":"prependListener","url":"classes/_sse_.sse.html#prependlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1255,"kind":2048,"name":"prependOnceListener","url":"classes/_sse_.sse.html#prependoncelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1256,"kind":2048,"name":"removeListener","url":"classes/_sse_.sse.html#removelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1257,"kind":2048,"name":"__@asyncIterator","url":"classes/_sse_.sse.html#___asynciterator","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1258,"kind":2048,"name":"pipe","url":"classes/_sse_.sse.html#pipe","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1259,"kind":2048,"name":"listenerCount","url":"classes/_sse_.sse.html#listenercount-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"sse\".SSE"},{"id":1260,"kind":1024,"name":"defaultMaxListeners","url":"classes/_sse_.sse.html#defaultmaxlisteners","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"sse\".SSE"},{"id":1261,"kind":2048,"name":"off","url":"classes/_sse_.sse.html#off","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1262,"kind":2048,"name":"removeAllListeners","url":"classes/_sse_.sse.html#removealllisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1263,"kind":2048,"name":"setMaxListeners","url":"classes/_sse_.sse.html#setmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1264,"kind":2048,"name":"getMaxListeners","url":"classes/_sse_.sse.html#getmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1265,"kind":2048,"name":"listeners","url":"classes/_sse_.sse.html#listeners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1266,"kind":2048,"name":"rawListeners","url":"classes/_sse_.sse.html#rawlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1267,"kind":2048,"name":"eventNames","url":"classes/_sse_.sse.html#eventnames","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1268,"kind":2048,"name":"listenerCount","url":"classes/_sse_.sse.html#listenercount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1269,"kind":128,"name":"MessageBroker","url":"classes/_sse_.messagebroker.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"sse\""},{"id":1270,"kind":1024,"name":"messages","url":"classes/_sse_.messagebroker.html#messages","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1271,"kind":1024,"name":"retry","url":"classes/_sse_.messagebroker.html#retry","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"sse\".MessageBroker"},{"id":1272,"kind":1024,"name":"buffer","url":"classes/_sse_.messagebroker.html#buffer","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"sse\".MessageBroker"},{"id":1273,"kind":1024,"name":"defaultId","url":"classes/_sse_.messagebroker.html#defaultid","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"sse\".MessageBroker"},{"id":1274,"kind":512,"name":"constructor","url":"classes/_sse_.messagebroker.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1275,"kind":2048,"name":"setRetry","url":"classes/_sse_.messagebroker.html#setretry","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1276,"kind":2048,"name":"setEventId","url":"classes/_sse_.messagebroker.html#seteventid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1277,"kind":2048,"name":"resetEventId","url":"classes/_sse_.messagebroker.html#reseteventid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1278,"kind":2048,"name":"increaseId","url":"classes/_sse_.messagebroker.html#increaseid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1279,"kind":2048,"name":"addMessage","url":"classes/_sse_.messagebroker.html#addmessage","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1280,"kind":2048,"name":"flushBuffer","url":"classes/_sse_.messagebroker.html#flushbuffer","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1281,"kind":2048,"name":"joinBuffer","url":"classes/_sse_.messagebroker.html#joinbuffer","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1282,"kind":2048,"name":"pop","url":"classes/_sse_.messagebroker.html#pop","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1283,"kind":2048,"name":"heartbeat","url":"classes/_sse_.messagebroker.html#heartbeat","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1284,"kind":2048,"name":"existMessage","url":"classes/_sse_.messagebroker.html#existmessage","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1285,"kind":128,"name":"Subscription","url":"classes/_sse_.subscription.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"sse\""},{"id":1286,"kind":1024,"name":"value","url":"classes/_sse_.subscription.html#value","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"sse\".Subscription"},{"id":1287,"kind":512,"name":"constructor","url":"classes/_sse_.subscription.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"sse\".Subscription"},{"id":1288,"kind":2048,"name":"_read","url":"classes/_sse_.subscription.html#_read","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"sse\".Subscription"},{"id":1289,"kind":1024,"name":"readable","url":"classes/_sse_.subscription.html#readable","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1290,"kind":1024,"name":"readableHighWaterMark","url":"classes/_sse_.subscription.html#readablehighwatermark","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1291,"kind":1024,"name":"readableLength","url":"classes/_sse_.subscription.html#readablelength","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1292,"kind":2048,"name":"read","url":"classes/_sse_.subscription.html#read","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1293,"kind":2048,"name":"setEncoding","url":"classes/_sse_.subscription.html#setencoding","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1294,"kind":2048,"name":"pause","url":"classes/_sse_.subscription.html#pause","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1295,"kind":2048,"name":"resume","url":"classes/_sse_.subscription.html#resume","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1296,"kind":2048,"name":"isPaused","url":"classes/_sse_.subscription.html#ispaused","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1297,"kind":2048,"name":"unpipe","url":"classes/_sse_.subscription.html#unpipe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1298,"kind":2048,"name":"unshift","url":"classes/_sse_.subscription.html#unshift","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1299,"kind":2048,"name":"wrap","url":"classes/_sse_.subscription.html#wrap","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1300,"kind":2048,"name":"push","url":"classes/_sse_.subscription.html#push","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1301,"kind":2048,"name":"_destroy","url":"classes/_sse_.subscription.html#_destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1302,"kind":2048,"name":"destroy","url":"classes/_sse_.subscription.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1303,"kind":2048,"name":"addListener","url":"classes/_sse_.subscription.html#addlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1304,"kind":2048,"name":"emit","url":"classes/_sse_.subscription.html#emit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1305,"kind":2048,"name":"on","url":"classes/_sse_.subscription.html#on","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1306,"kind":2048,"name":"once","url":"classes/_sse_.subscription.html#once","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1307,"kind":2048,"name":"prependListener","url":"classes/_sse_.subscription.html#prependlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1308,"kind":2048,"name":"prependOnceListener","url":"classes/_sse_.subscription.html#prependoncelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1309,"kind":2048,"name":"removeListener","url":"classes/_sse_.subscription.html#removelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1310,"kind":2048,"name":"__@asyncIterator","url":"classes/_sse_.subscription.html#___asynciterator","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1311,"kind":2048,"name":"pipe","url":"classes/_sse_.subscription.html#pipe","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1312,"kind":2048,"name":"listenerCount","url":"classes/_sse_.subscription.html#listenercount-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"sse\".Subscription"},{"id":1313,"kind":1024,"name":"defaultMaxListeners","url":"classes/_sse_.subscription.html#defaultmaxlisteners","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"sse\".Subscription"},{"id":1314,"kind":2048,"name":"off","url":"classes/_sse_.subscription.html#off","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1315,"kind":2048,"name":"removeAllListeners","url":"classes/_sse_.subscription.html#removealllisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1316,"kind":2048,"name":"setMaxListeners","url":"classes/_sse_.subscription.html#setmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1317,"kind":2048,"name":"getMaxListeners","url":"classes/_sse_.subscription.html#getmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1318,"kind":2048,"name":"listeners","url":"classes/_sse_.subscription.html#listeners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1319,"kind":2048,"name":"rawListeners","url":"classes/_sse_.subscription.html#rawlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1320,"kind":2048,"name":"eventNames","url":"classes/_sse_.subscription.html#eventnames","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1321,"kind":2048,"name":"listenerCount","url":"classes/_sse_.subscription.html#listenercount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"}]}; \ No newline at end of file diff --git a/docs/classes/_config_.config.html b/docs/classes/_config_.config.html index ea0237d..4e94139 100644 --- a/docs/classes/_config_.config.html +++ b/docs/classes/_config_.config.html @@ -123,7 +123,7 @@

    Private store

    store: Object
    @@ -145,7 +145,7 @@

    getConfigFromFile

  • @@ -177,7 +177,7 @@

    getConfigFromObj

  • @@ -209,7 +209,7 @@

    getItem

  • @@ -251,7 +251,7 @@

    hasItem

  • @@ -285,7 +285,7 @@

    initApp

  • @@ -316,7 +316,7 @@

    setItem

  • @@ -390,6 +390,9 @@

    Returns void "jwt"

  • +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/classes/_core_.auth.html b/docs/classes/_core_.auth.html index 67b86df..588aa87 100644 --- a/docs/classes/_core_.auth.html +++ b/docs/classes/_core_.auth.html @@ -268,7 +268,7 @@

    auth

    auth: string
    @@ -278,7 +278,7 @@

    group_id

    group_id: number
    @@ -288,7 +288,7 @@

    id

    id: number
    @@ -314,7 +314,7 @@

    module

    module: string
    @@ -1305,7 +1305,7 @@

    toJSON

    Returns object

    @@ -5727,6 +5727,9 @@

    Returns Promise "jwt" +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/classes/_core_.file.html b/docs/classes/_core_.file.html index dd458a8..f2ca801 100644 --- a/docs/classes/_core_.file.html +++ b/docs/classes/_core_.file.html @@ -272,7 +272,7 @@

    extension

    extension: string
    @@ -282,7 +282,7 @@

    id

    id: number
    @@ -308,7 +308,7 @@

    name

    name: string
    @@ -318,7 +318,7 @@

    path

    path: string
    @@ -344,7 +344,7 @@

    size

    size: number
    @@ -354,7 +354,7 @@

    type

    type: number
    @@ -1329,7 +1329,7 @@

    toJSON

    Returns object

    @@ -4259,7 +4259,7 @@

    Static createRecord

  • Parameters

    @@ -5783,6 +5783,9 @@

    Returns Promise "jwt"

  • +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/classes/_core_.group.html b/docs/classes/_core_.group.html index fc2815b..1d33bf0 100644 --- a/docs/classes/_core_.group.html +++ b/docs/classes/_core_.group.html @@ -267,7 +267,7 @@

    id

    id: number
    @@ -277,7 +277,7 @@

    info

    info: string
    @@ -303,7 +303,7 @@

    name

    name: string
    @@ -1294,7 +1294,7 @@

    toJSON

    Returns object @@ -5705,6 +5705,9 @@

    Returns Promise "jwt" +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/classes/_core_.lin.html b/docs/classes/_core_.lin.html index f3e3cdc..0e0bda0 100644 --- a/docs/classes/_core_.lin.html +++ b/docs/classes/_core_.lin.html @@ -117,7 +117,7 @@

    Private app

    app: Application | undefined
    @@ -127,7 +127,7 @@

    Private manager

    manager: Manager | undefined
    @@ -144,7 +144,7 @@

    Private applyDB

  • Parameters

    @@ -170,7 +170,7 @@

    Private applyDefaultE
  • Returns void

    @@ -187,7 +187,7 @@

    Private applyJwt

  • Returns void

    @@ -204,7 +204,7 @@

    Private applyManager

  • Parameters

    @@ -233,7 +233,7 @@

    initApp

  • @@ -294,7 +294,7 @@

    Private mount

  • Returns void

    @@ -345,6 +345,9 @@

    Returns void "jwt"

  • +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/classes/_core_.log.html b/docs/classes/_core_.log.html index c2c108b..e5ada81 100644 --- a/docs/classes/_core_.log.html +++ b/docs/classes/_core_.log.html @@ -274,7 +274,7 @@

    authority

    authority: string
    @@ -284,7 +284,7 @@

    id

    id: number
    @@ -310,7 +310,7 @@

    message

    message: string
    @@ -320,7 +320,7 @@

    method

    method: string
    @@ -330,7 +330,7 @@

    path

    path: string
    @@ -356,7 +356,7 @@

    status_code

    status_code: number
    @@ -366,7 +366,7 @@

    time

    time: Date
    @@ -376,7 +376,7 @@

    user_id

    user_id: number
    @@ -386,7 +386,7 @@

    user_name

    user_name: string
    @@ -1361,7 +1361,7 @@

    toJSON

    Returns object

    @@ -4300,7 +4300,7 @@

    Static createLog

  • Parameters

    @@ -5824,6 +5824,9 @@

    Returns Promise "jwt"

  • +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/classes/_core_.manager.html b/docs/classes/_core_.manager.html index 9c94058..8db0dc9 100644 --- a/docs/classes/_core_.manager.html +++ b/docs/classes/_core_.manager.html @@ -124,7 +124,7 @@

    authModel

    authModel: any
    @@ -134,7 +134,7 @@

    groupModel

    groupModel: any
    @@ -144,7 +144,7 @@

    loader

    loader: Loader | undefined
    @@ -154,7 +154,7 @@

    userModel

    userModel: any
    @@ -171,7 +171,7 @@

    plugins

  • @@ -198,7 +198,7 @@

    findGroup

  • @@ -229,7 +229,7 @@

    findUser

  • @@ -260,7 +260,7 @@

    initApp

  • @@ -315,7 +315,7 @@

    verify

  • @@ -386,6 +386,9 @@

    Returns any "jwt"

  • +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/classes/_core_.user.html b/docs/classes/_core_.user.html index 149636e..bd895e6 100644 --- a/docs/classes/_core_.user.html +++ b/docs/classes/_core_.user.html @@ -278,7 +278,7 @@

    active

    active: number
    @@ -288,7 +288,7 @@

    admin

    admin: number
    @@ -298,7 +298,7 @@

    create_time

    create_time: Date
    @@ -308,7 +308,7 @@

    delete_time

    delete_time: Date
    @@ -318,7 +318,7 @@

    email

    email: string
    @@ -328,7 +328,7 @@

    group_id

    group_id: number
    @@ -338,7 +338,7 @@

    id

    id: number
    @@ -364,7 +364,7 @@

    nickname

    nickname: string
    @@ -374,7 +374,7 @@

    password

    password: string
    @@ -400,7 +400,7 @@

    update_time

    update_time: Date
    @@ -599,7 +599,7 @@

    changePassword

  • Parameters

    @@ -702,7 +702,7 @@

    checkPassword

  • Parameters

    @@ -1195,7 +1195,7 @@

    resetPassword

  • Parameters

    @@ -1447,7 +1447,7 @@

    toJSON

    Returns object @@ -5826,7 +5826,7 @@

    Static verify

  • Parameters

    @@ -5886,6 +5886,9 @@

    Returns Promise "jwt"

  • +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/classes/_exception_.authfailed.html b/docs/classes/_exception_.authfailed.html index 19b1397..8e51e1e 100644 --- a/docs/classes/_exception_.authfailed.html +++ b/docs/classes/_exception_.authfailed.html @@ -127,7 +127,7 @@

    constructor

    Parameters

    @@ -150,7 +150,7 @@

    code

    @@ -161,7 +161,7 @@

    errorCode

    @@ -172,7 +172,7 @@

    fields

    @@ -194,7 +194,7 @@

    msg

    @@ -265,6 +265,9 @@

    Optional stack

  • "jwt"
  • +
  • + "limiter" +
  • "lin-router"
  • @@ -356,6 +359,9 @@

    Optional stack

  • InvalidTokenException
  • +
  • + LimitException +
  • MethodNotAllowed
  • diff --git a/docs/classes/_exception_.expiredtokenexception.html b/docs/classes/_exception_.expiredtokenexception.html index 4264d79..5ba3e76 100644 --- a/docs/classes/_exception_.expiredtokenexception.html +++ b/docs/classes/_exception_.expiredtokenexception.html @@ -127,7 +127,7 @@

    constructor

    Parameters

    @@ -150,7 +150,7 @@

    code

    @@ -161,7 +161,7 @@

    errorCode

    @@ -172,7 +172,7 @@

    fields

    @@ -194,7 +194,7 @@

    msg

    @@ -265,6 +265,9 @@

    Optional stack

  • "jwt"
  • +
  • + "limiter" +
  • "lin-router"
  • @@ -356,6 +359,9 @@

    Optional stack

  • InvalidTokenException
  • +
  • + LimitException +
  • MethodNotAllowed
  • diff --git a/docs/classes/_exception_.failed.html b/docs/classes/_exception_.failed.html index 6219cbb..2267755 100644 --- a/docs/classes/_exception_.failed.html +++ b/docs/classes/_exception_.failed.html @@ -127,7 +127,7 @@

    constructor

    Parameters

    @@ -150,7 +150,7 @@

    code

    @@ -161,7 +161,7 @@

    errorCode

    @@ -172,7 +172,7 @@

    fields

    @@ -194,7 +194,7 @@

    msg

    @@ -265,6 +265,9 @@

    Optional stack

  • "jwt"
  • +
  • + "limiter" +
  • "lin-router"
  • @@ -356,6 +359,9 @@

    Optional stack

  • InvalidTokenException
  • +
  • + LimitException +
  • MethodNotAllowed
  • diff --git a/docs/classes/_exception_.fileextensionexception.html b/docs/classes/_exception_.fileextensionexception.html index 6a6c617..8c9498d 100644 --- a/docs/classes/_exception_.fileextensionexception.html +++ b/docs/classes/_exception_.fileextensionexception.html @@ -127,7 +127,7 @@

    constructor

    Parameters

    @@ -150,7 +150,7 @@

    code

    @@ -161,7 +161,7 @@

    errorCode

    @@ -172,7 +172,7 @@

    fields

    @@ -194,7 +194,7 @@

    msg

    @@ -265,6 +265,9 @@

    Optional stack

  • "jwt"
  • +
  • + "limiter" +
  • "lin-router"
  • @@ -356,6 +359,9 @@

    Optional stack

  • InvalidTokenException
  • +
  • + LimitException +
  • MethodNotAllowed
  • diff --git a/docs/classes/_exception_.filetoolargeexception.html b/docs/classes/_exception_.filetoolargeexception.html index bdb15f2..6eb9d1a 100644 --- a/docs/classes/_exception_.filetoolargeexception.html +++ b/docs/classes/_exception_.filetoolargeexception.html @@ -127,7 +127,7 @@

    constructor

    Parameters

    @@ -150,7 +150,7 @@

    code

    @@ -161,7 +161,7 @@

    errorCode

    @@ -172,7 +172,7 @@

    fields

    @@ -194,7 +194,7 @@

    msg

    @@ -265,6 +265,9 @@

    Optional stack

  • "jwt"
  • +
  • + "limiter" +
  • "lin-router"
  • @@ -356,6 +359,9 @@

    Optional stack

  • InvalidTokenException
  • +
  • + LimitException +
  • MethodNotAllowed
  • diff --git a/docs/classes/_exception_.filetoomanyexception.html b/docs/classes/_exception_.filetoomanyexception.html index 71389e1..e08215a 100644 --- a/docs/classes/_exception_.filetoomanyexception.html +++ b/docs/classes/_exception_.filetoomanyexception.html @@ -127,7 +127,7 @@

    constructor

    Parameters

    @@ -150,7 +150,7 @@

    code

    @@ -161,7 +161,7 @@

    errorCode

    @@ -172,7 +172,7 @@

    fields

    @@ -194,7 +194,7 @@

    msg

    @@ -265,6 +265,9 @@

    Optional stack

  • "jwt"
  • +
  • + "limiter" +
  • "lin-router"
  • @@ -356,6 +359,9 @@

    Optional stack

  • InvalidTokenException
  • +
  • + LimitException +
  • MethodNotAllowed
  • diff --git a/docs/classes/_exception_.forbidden.html b/docs/classes/_exception_.forbidden.html index 335d5ab..d53eb21 100644 --- a/docs/classes/_exception_.forbidden.html +++ b/docs/classes/_exception_.forbidden.html @@ -127,7 +127,7 @@

    constructor

    Parameters

    @@ -146,11 +146,11 @@

    Properties

    code

    -
    code: number = 401
    +
    code: number = 403
    @@ -161,7 +161,7 @@

    errorCode

    @@ -172,7 +172,7 @@

    fields

    @@ -194,7 +194,7 @@

    msg

    @@ -265,6 +265,9 @@

    Optional stack

  • "jwt"
  • +
  • + "limiter" +
  • "lin-router"
  • @@ -356,6 +359,9 @@

    Optional stack

  • InvalidTokenException
  • +
  • + LimitException +
  • MethodNotAllowed
  • diff --git a/docs/classes/_exception_.httpexception.html b/docs/classes/_exception_.httpexception.html index dadd764..5b1356c 100644 --- a/docs/classes/_exception_.httpexception.html +++ b/docs/classes/_exception_.httpexception.html @@ -141,6 +141,9 @@

    Hierarchy

  • FileExtensionException
  • +
  • + LimitException +
  • @@ -185,7 +188,7 @@

    constructor

  • @@ -217,7 +220,7 @@

    code

    code: number = 500
    @@ -232,7 +235,7 @@

    errorCode

    errorCode: number = 999
    @@ -247,7 +250,7 @@

    fields

    fields: string[] = ['msg', 'errorCode']
    @@ -268,7 +271,7 @@

    msg

    msg: any = "服务器未知错误"
    @@ -354,6 +357,9 @@

    Static Error

  • "jwt"
  • +
  • + "limiter" +
  • "lin-router"
  • @@ -448,6 +454,9 @@

    Static Error

  • InvalidTokenException
  • +
  • + LimitException +
  • MethodNotAllowed
  • diff --git a/docs/classes/_exception_.invalidtokenexception.html b/docs/classes/_exception_.invalidtokenexception.html index 43f7c13..161df10 100644 --- a/docs/classes/_exception_.invalidtokenexception.html +++ b/docs/classes/_exception_.invalidtokenexception.html @@ -127,7 +127,7 @@

    constructor

    Parameters

    @@ -150,7 +150,7 @@

    code

    @@ -161,7 +161,7 @@

    errorCode

    @@ -172,7 +172,7 @@

    fields

    @@ -194,7 +194,7 @@

    msg

    @@ -265,6 +265,9 @@

    Optional stack

  • "jwt"
  • +
  • + "limiter" +
  • "lin-router"
  • @@ -356,6 +359,9 @@

    Optional stack

    @@ -309,6 +309,9 @@

    Returns void "jwt" +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/classes/_jwt_.token.html b/docs/classes/_jwt_.token.html index 4430530..0210de1 100644 --- a/docs/classes/_jwt_.token.html +++ b/docs/classes/_jwt_.token.html @@ -131,7 +131,7 @@

    constructor

  • @@ -179,7 +179,7 @@

    accessExp

    accessExp: number = 60 * 60
    @@ -194,7 +194,7 @@

    refreshExp

    refreshExp: number = 60 * 60 * 24 * 30 * 3
    @@ -209,7 +209,7 @@

    secret

    secret: string | undefined
    @@ -231,7 +231,7 @@

    createAccessToken

  • @@ -262,7 +262,7 @@

    createRefreshToken

  • @@ -293,7 +293,7 @@

    initApp

  • @@ -330,7 +330,7 @@

    verifyToken

  • @@ -397,6 +397,9 @@

    Returns any "jwt"

  • +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/classes/_lin_router_.linrouter.html b/docs/classes/_lin_router_.linrouter.html index 99908f0..cf5a1ad 100644 --- a/docs/classes/_lin_router_.linrouter.html +++ b/docs/classes/_lin_router_.linrouter.html @@ -902,7 +902,7 @@

    linDelete

  • Parameters

    @@ -934,7 +934,7 @@

    linGet

  • Parameters

    @@ -966,7 +966,7 @@

    linHead

  • Parameters

    @@ -998,7 +998,7 @@

    linOption

  • Parameters

    @@ -1030,7 +1030,7 @@

    linPatch

  • Parameters

    @@ -1062,7 +1062,7 @@

    linPost

  • Parameters

    @@ -1094,7 +1094,7 @@

    linPut

  • Parameters

    @@ -2282,6 +2282,9 @@

    Returns string "jwt"

  • +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/classes/_lin_router_.linrouter.layer.html b/docs/classes/_lin_router_.linrouter.layer.html index ea7464a..59c5f0f 100644 --- a/docs/classes/_lin_router_.linrouter.layer.html +++ b/docs/classes/_lin_router_.linrouter.layer.html @@ -471,6 +471,9 @@

    Returns string "jwt" +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/classes/_lin_router_.linrouter.paramname.html b/docs/classes/_lin_router_.linrouter.paramname.html index 66d27d1..f9479fb 100644 --- a/docs/classes/_lin_router_.linrouter.paramname.html +++ b/docs/classes/_lin_router_.linrouter.paramname.html @@ -226,6 +226,9 @@

    repeat

  • "jwt"
  • +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/classes/_lin_validator_.linvalidator.html b/docs/classes/_lin_validator_.linvalidator.html index 524c910..4814460 100644 --- a/docs/classes/_lin_validator_.linvalidator.html +++ b/docs/classes/_lin_validator_.linvalidator.html @@ -121,7 +121,7 @@

    alias

    alias: any
    @@ -136,7 +136,7 @@

    data

    data: any
    @@ -151,7 +151,7 @@

    errors

    errors: any[] = []
    @@ -166,7 +166,7 @@

    parsed

    parsed: any
    @@ -188,7 +188,7 @@

    Private checkRules

  • Returns Promise<boolean>

    @@ -205,7 +205,7 @@

    Private findInData

  • Parameters

    @@ -228,7 +228,7 @@

    get

  • @@ -265,7 +265,7 @@

    Private getValidateFu
  • @@ -296,7 +296,7 @@

    Private isOptional

  • Parameters

    @@ -319,7 +319,7 @@

    Private replace

  • Parameters

    @@ -342,7 +342,7 @@

    validate

  • @@ -413,6 +413,9 @@

    Returns Promise "jwt"

  • +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/classes/_lin_validator_.rule.html b/docs/classes/_lin_validator_.rule.html index 0a45161..80f240f 100644 --- a/docs/classes/_lin_validator_.rule.html +++ b/docs/classes/_lin_validator_.rule.html @@ -127,7 +127,7 @@

    constructor

  • Parameters

    @@ -155,7 +155,7 @@

    defaultValue

    defaultValue: any
    @@ -165,7 +165,7 @@

    message

    message: string
    @@ -175,7 +175,7 @@

    optional

    optional: boolean = false
    @@ -185,7 +185,7 @@

    options

    options: any
    @@ -195,7 +195,7 @@

    parsedValue

    parsedValue: any
    @@ -205,7 +205,7 @@

    rawValue

    rawValue: any
    @@ -215,7 +215,7 @@

    validateFunction

    validateFunction: string | Function
    @@ -232,7 +232,7 @@

    validate

  • Parameters

    @@ -289,6 +289,9 @@

    Returns any "jwt"

  • +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/classes/_loader_.loader.html b/docs/classes/_loader_.loader.html index 428a248..0085ec0 100644 --- a/docs/classes/_loader_.loader.html +++ b/docs/classes/_loader_.loader.html @@ -128,7 +128,7 @@

    constructor

  • Parameters

    @@ -153,7 +153,7 @@

    Private app

    app: Application
    @@ -163,7 +163,7 @@

    mainRouter

    mainRouter: Router | undefined
    @@ -173,7 +173,7 @@

    pluginPath

    pluginPath: __type
    @@ -183,7 +183,7 @@

    plugins

    plugins: object
    @@ -205,7 +205,7 @@

    loadConfig

  • @@ -239,7 +239,7 @@

    loadMainApi

  • @@ -267,7 +267,7 @@

    loadPlugin

  • @@ -298,7 +298,7 @@

    loadPlugins

  • @@ -354,6 +354,9 @@

    Returns void "jwt"

  • +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/classes/_mixin_.jsonmixin.html b/docs/classes/_mixin_.jsonmixin.html index 74af339..e1598e8 100644 --- a/docs/classes/_mixin_.jsonmixin.html +++ b/docs/classes/_mixin_.jsonmixin.html @@ -110,7 +110,7 @@

    Private fields

    fields: string[] | undefined
    @@ -158,6 +158,9 @@

    Private fields

  • "jwt"
  • +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/classes/_plugin_.plugin.html b/docs/classes/_plugin_.plugin.html index 2fb8d20..c71501a 100644 --- a/docs/classes/_plugin_.plugin.html +++ b/docs/classes/_plugin_.plugin.html @@ -126,7 +126,7 @@

    constructor

  • Parameters

    @@ -148,7 +148,7 @@

    controllers

    controllers: object
    @@ -168,7 +168,7 @@

    models

    models: object
    @@ -188,7 +188,7 @@

    name

    name: string
    @@ -210,7 +210,7 @@

    addController

  • @@ -247,7 +247,7 @@

    addModel

  • @@ -284,7 +284,7 @@

    getModel

  • @@ -349,6 +349,9 @@

    Returns any "jwt"

  • +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/classes/_sse_.messagebroker.html b/docs/classes/_sse_.messagebroker.html index 14fc475..c1c8f09 100644 --- a/docs/classes/_sse_.messagebroker.html +++ b/docs/classes/_sse_.messagebroker.html @@ -133,7 +133,7 @@

    constructor

  • @@ -165,7 +165,7 @@

    Private buffer

    buffer: string[]
    @@ -175,7 +175,7 @@

    Private defaultId

    defaultId: number
    @@ -185,7 +185,7 @@

    messages

    messages: string[] = []
    @@ -200,7 +200,7 @@

    Private retry

    retry: number | undefined
    @@ -217,7 +217,7 @@

    addMessage

  • @@ -260,7 +260,7 @@

    existMessage

  • @@ -282,7 +282,7 @@

    flushBuffer

  • @@ -304,7 +304,7 @@

    heartbeat

  • @@ -338,7 +338,7 @@

    increaseId

  • @@ -360,7 +360,7 @@

    joinBuffer

  • @@ -382,7 +382,7 @@

    pop

  • @@ -404,7 +404,7 @@

    resetEventId

  • @@ -426,7 +426,7 @@

    setEventId

  • @@ -457,7 +457,7 @@

    setRetry

  • @@ -522,6 +522,9 @@

    Returns void "jwt"

  • +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/classes/_sse_.sse.html b/docs/classes/_sse_.sse.html index d92ef6e..90f813a 100644 --- a/docs/classes/_sse_.sse.html +++ b/docs/classes/_sse_.sse.html @@ -179,7 +179,7 @@

    constructor

    Parameters

    @@ -440,7 +440,7 @@

    _transform

    Parameters

    @@ -2711,6 +2711,9 @@

    Returns number "jwt" +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/classes/_sse_.subscription.html b/docs/classes/_sse_.subscription.html index 7b81a62..5e50c00 100644 --- a/docs/classes/_sse_.subscription.html +++ b/docs/classes/_sse_.subscription.html @@ -159,7 +159,7 @@

    constructor

    Parameters

    @@ -214,7 +214,7 @@

    value

    value: number
    @@ -306,7 +306,7 @@

    _read

    Returns void

    @@ -2298,6 +2298,9 @@

    Returns number "jwt" +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/enums/_enums_.tokentype.html b/docs/enums/_enums_.tokentype.html index c856277..16e0b04 100644 --- a/docs/enums/_enums_.tokentype.html +++ b/docs/enums/_enums_.tokentype.html @@ -100,7 +100,7 @@

    ACCESS

    ACCESS: = "access"
    @@ -110,7 +110,7 @@

    REFRESH

    REFRESH: = "refresh"
    @@ -158,6 +158,9 @@

    REFRESH

  • "jwt"
  • +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/enums/_enums_.useractive.html b/docs/enums/_enums_.useractive.html index 1d8c0ae..58e732e 100644 --- a/docs/enums/_enums_.useractive.html +++ b/docs/enums/_enums_.useractive.html @@ -100,7 +100,7 @@

    ACTIVE

    ACTIVE: = 1
    @@ -110,7 +110,7 @@

    NOT_ACTIVE

    NOT_ACTIVE: = 2
    @@ -158,6 +158,9 @@

    NOT_ACTIVE

  • "jwt"
  • +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/enums/_enums_.useradmin.html b/docs/enums/_enums_.useradmin.html index ccc7c22..f59808e 100644 --- a/docs/enums/_enums_.useradmin.html +++ b/docs/enums/_enums_.useradmin.html @@ -100,7 +100,7 @@

    ADMIN

    ADMIN: = 2
    @@ -110,7 +110,7 @@

    COMMON

    COMMON: = 1
    @@ -158,6 +158,9 @@

    COMMON

  • "jwt"
  • +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/globals.html b/docs/globals.html index 98bb8ce..6a63568 100644 --- a/docs/globals.html +++ b/docs/globals.html @@ -82,6 +82,7 @@

    External modules

  • "index"
  • "interface"
  • "jwt"
  • +
  • "limiter"
  • "lin-router"
  • "lin-validator"
  • "loader"
  • @@ -140,6 +141,9 @@

    External modules

  • "jwt"
  • +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/index.html b/docs/index.html index edce02b..c13d66f 100644 --- a/docs/index.html +++ b/docs/index.html @@ -188,6 +188,9 @@

    完善的文档

  • "jwt"
  • +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/interfaces/_core_.fileargs.html b/docs/interfaces/_core_.fileargs.html index ce80e81..ae5759c 100644 --- a/docs/interfaces/_core_.fileargs.html +++ b/docs/interfaces/_core_.fileargs.html @@ -102,7 +102,7 @@

    Optional extension

    extension: undefined | string
    @@ -112,7 +112,7 @@

    Optional name

    name: undefined | string
    @@ -122,7 +122,7 @@

    Optional path

    path: undefined | string
    @@ -132,7 +132,7 @@

    Optional size

    size: undefined | number
    @@ -142,7 +142,7 @@

    Optional type

    type: undefined | number
    @@ -190,6 +190,9 @@

    Optional type

  • "jwt"
  • +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/interfaces/_core_.logargs.html b/docs/interfaces/_core_.logargs.html index a17e8f2..44c6d6c 100644 --- a/docs/interfaces/_core_.logargs.html +++ b/docs/interfaces/_core_.logargs.html @@ -104,7 +104,7 @@

    Optional authority

    authority: undefined | string
    @@ -114,7 +114,7 @@

    Optional message

    message: undefined | string
    @@ -124,7 +124,7 @@

    Optional method

    method: undefined | string
    @@ -134,7 +134,7 @@

    Optional path

    path: undefined | string
    @@ -144,7 +144,7 @@

    Optional status_code

    status_code: undefined | number
    @@ -154,7 +154,7 @@

    Optional user_id

    user_id: undefined | number
    @@ -164,7 +164,7 @@

    Optional user_name

    user_name: undefined | string
    @@ -212,6 +212,9 @@

    Optional user_name

  • "jwt"
  • +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/interfaces/_exception_.exception.html b/docs/interfaces/_exception_.exception.html index 310e47c..0f61248 100644 --- a/docs/interfaces/_exception_.exception.html +++ b/docs/interfaces/_exception_.exception.html @@ -107,7 +107,7 @@

    Optional code

    code: undefined | number
    @@ -117,7 +117,7 @@

    Optional errorCode

    errorCode: undefined | number
    @@ -127,7 +127,7 @@

    Optional msg

    msg: any
    @@ -175,6 +175,9 @@

    Optional msg

  • "jwt"
  • +
  • + "limiter" +
  • "lin-router"
  • @@ -236,6 +239,9 @@

    Optional msg

  • InvalidTokenException
  • +
  • + LimitException +
  • MethodNotAllowed
  • diff --git a/docs/interfaces/_extended_validator_.isfloatoptions.html b/docs/interfaces/_extended_validator_.isfloatoptions.html index 9ba2894..d29bb5a 100644 --- a/docs/interfaces/_extended_validator_.isfloatoptions.html +++ b/docs/interfaces/_extended_validator_.isfloatoptions.html @@ -108,7 +108,7 @@

    Optional gt

    gt: undefined | number
    @@ -118,7 +118,7 @@

    Optional lt

    lt: undefined | number
    @@ -128,7 +128,7 @@

    Optional max

    max: undefined | number
    @@ -138,7 +138,7 @@

    Optional min

    min: undefined | number
    @@ -186,6 +186,9 @@

    Optional min

  • "jwt"
  • +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/interfaces/_extended_validator_.isintoptions.html b/docs/interfaces/_extended_validator_.isintoptions.html index 32a3f34..e50af45 100644 --- a/docs/interfaces/_extended_validator_.isintoptions.html +++ b/docs/interfaces/_extended_validator_.isintoptions.html @@ -109,7 +109,7 @@

    Optional allow_leading_allow_leading_zeroes: undefined | false | true

    @@ -119,7 +119,7 @@

    Optional gt

    gt: undefined | number
    @@ -129,7 +129,7 @@

    Optional lt

    lt: undefined | number
    @@ -139,7 +139,7 @@

    Optional max

    max: undefined | number
    @@ -149,7 +149,7 @@

    Optional min

    min: undefined | number
    @@ -197,6 +197,9 @@

    Optional min

  • "jwt"
  • +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/interfaces/_limiter_.ratelimitoptions.html b/docs/interfaces/_limiter_.ratelimitoptions.html new file mode 100644 index 0000000..cd9bd07 --- /dev/null +++ b/docs/interfaces/_limiter_.ratelimitoptions.html @@ -0,0 +1,490 @@ + + + + + + RatelimitOptions | lin-mizar + + + + + +
    +
    +
    +
    + +
    +
    + Options +
    +
    + All +
      +
    • Public
    • +
    • Public/Protected
    • +
    • All
    • +
    +
    + + + + + + +
    +
    + Menu +
    +
    +
    +
    +
    +
    + +

    Interface RatelimitOptions

    +
    +
    +
    +
    +
    +
    +
    +

    Hierarchy

    +
      +
    • + RatelimitOptions +
    • +
    +
    +
    +

    Index

    +
    +
    +
    +

    Properties

    + +
    +
    +
    +
    +
    +

    Properties

    +
    + +

    Optional blacklist

    +
    blacklist: string[]
    + +
    +
    +

    array of ids to blacklist

    +
    +
    +
    +
    + +

    db

    +
    db: any
    + +
    +
    +

    database connection

    +
    +
    +
    +
    + +

    Optional duration

    +
    duration: undefined | number
    + +
    +
    +

    limit duration in milliseconds [1 hour]

    +
    +
    +
    +
    + +

    Optional endpoint

    +
    endpoint: undefined | string
    + +
    +
    +

    special key for indentify

    +
    +
    +
    +
    + +

    Optional errorMessage

    +
    errorMessage: string | RatelimitExpires
    + +
    +
    +

    error returned as the body of the response

    +
    +
    +
    +
    + +

    Optional headers

    +
    headers: undefined | object
    + +
    +
    +

    custom header names

    +
    +
    +
    +
    + +

    Optional id

    +
    id: undefined | function
    + +
    +
    +

    id to compare requests default: ip

    +
    +
    +
    +
    + +

    Optional logging

    +
    logging: undefined | false | true
    + +
    +
    + +

    Optional max

    +
    max: undefined | number
    + +
    +
    +

    max requests per 'id' default: 2500

    +
    +
    +
    +
    + +

    Optional prefix

    +
    prefix: undefined | string
    + +
    +
    +

    redis key prefix default: "limit"

    +
    +
    +
    +
    + +

    Optional throw

    +
    throw: undefined | false | true
    + +
    +
    +

    throw on rate limit exceeded default: false

    +
    +
    +
    +
    + +

    Optional whitelist

    +
    whitelist: string[]
    + +
    +
    +

    array of ids to whitelist

    +
    +
    +
    +
    +
    + +
    +
    +
    +
    +

    Legend

    +
    +
      +
    • Module
    • +
    • Object literal
    • +
    • Variable
    • +
    • Function
    • +
    • Function with type parameter
    • +
    • Index signature
    • +
    • Type alias
    • +
    +
      +
    • Enumeration
    • +
    • Enumeration member
    • +
    • Property
    • +
    • Method
    • +
    +
      +
    • Interface
    • +
    • Interface with type parameter
    • +
    • Constructor
    • +
    • Property
    • +
    • Method
    • +
    • Index signature
    • +
    +
      +
    • Class
    • +
    • Class with type parameter
    • +
    • Constructor
    • +
    • Property
    • +
    • Method
    • +
    • Accessor
    • +
    • Index signature
    • +
    +
      +
    • Inherited constructor
    • +
    • Inherited property
    • +
    • Inherited method
    • +
    • Inherited accessor
    • +
    +
      +
    • Protected property
    • +
    • Protected method
    • +
    • Protected accessor
    • +
    +
      +
    • Private property
    • +
    • Private method
    • +
    • Private accessor
    • +
    +
      +
    • Static property
    • +
    • Static method
    • +
    +
    +
    +
    +
    +

    Generated using TypeDoc

    +
    +
    + + + + \ No newline at end of file diff --git a/docs/interfaces/_lin_router_.linrouter.ilayeroptions.html b/docs/interfaces/_lin_router_.linrouter.ilayeroptions.html index 3813eac..fd6b980 100644 --- a/docs/interfaces/_lin_router_.linrouter.ilayeroptions.html +++ b/docs/interfaces/_lin_router_.linrouter.ilayeroptions.html @@ -171,6 +171,9 @@

    Optional strict

  • "jwt"
  • +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/interfaces/_lin_router_.linrouter.iparammiddleware.html b/docs/interfaces/_lin_router_.linrouter.iparammiddleware.html index aeb8787..564cdc0 100644 --- a/docs/interfaces/_lin_router_.linrouter.iparammiddleware.html +++ b/docs/interfaces/_lin_router_.linrouter.iparammiddleware.html @@ -163,6 +163,9 @@

    Returns any "jwt" +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/interfaces/_lin_router_.linrouter.irouterallowedmethodsoptions.html b/docs/interfaces/_lin_router_.linrouter.irouterallowedmethodsoptions.html index 7b8a502..f773e5e 100644 --- a/docs/interfaces/_lin_router_.linrouter.irouterallowedmethodsoptions.html +++ b/docs/interfaces/_lin_router_.linrouter.irouterallowedmethodsoptions.html @@ -186,6 +186,9 @@

    Optional throw

  • "jwt"
  • +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/interfaces/_lin_router_.linrouter.iroutercontext.html b/docs/interfaces/_lin_router_.linrouter.iroutercontext.html index 8d5072b..2149520 100644 --- a/docs/interfaces/_lin_router_.linrouter.iroutercontext.html +++ b/docs/interfaces/_lin_router_.linrouter.iroutercontext.html @@ -123,6 +123,9 @@

    Hierarchy

  • "jwt"
  • +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/interfaces/_lin_router_.linrouter.irouteroptions.html b/docs/interfaces/_lin_router_.linrouter.irouteroptions.html index ce22538..8b24360 100644 --- a/docs/interfaces/_lin_router_.linrouter.irouteroptions.html +++ b/docs/interfaces/_lin_router_.linrouter.irouteroptions.html @@ -215,6 +215,9 @@

    Optional strict

  • "jwt"
  • +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/interfaces/_lin_router_.linrouter.irouterparamcontext.html b/docs/interfaces/_lin_router_.linrouter.irouterparamcontext.html index 4101e6b..557a526 100644 --- a/docs/interfaces/_lin_router_.linrouter.irouterparamcontext.html +++ b/docs/interfaces/_lin_router_.linrouter.irouterparamcontext.html @@ -208,6 +208,9 @@

    router

  • "jwt"
  • +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/interfaces/_lin_router_.linrouter.iroutesmatch.html b/docs/interfaces/_lin_router_.linrouter.iroutesmatch.html index 18ea9c7..800390b 100644 --- a/docs/interfaces/_lin_router_.linrouter.iroutesmatch.html +++ b/docs/interfaces/_lin_router_.linrouter.iroutesmatch.html @@ -171,6 +171,9 @@

    route

  • "jwt"
  • +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/interfaces/_lin_router_.linrouter.iurloptionsquery.html b/docs/interfaces/_lin_router_.linrouter.iurloptionsquery.html index e19ec6b..d44d428 100644 --- a/docs/interfaces/_lin_router_.linrouter.iurloptionsquery.html +++ b/docs/interfaces/_lin_router_.linrouter.iurloptionsquery.html @@ -149,6 +149,9 @@

    query

  • "jwt"
  • +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/interfaces/_lin_router_.meta.html b/docs/interfaces/_lin_router_.meta.html index 15745f0..823c400 100644 --- a/docs/interfaces/_lin_router_.meta.html +++ b/docs/interfaces/_lin_router_.meta.html @@ -100,7 +100,7 @@

    Optional auth

    auth: undefined | string
    @@ -110,7 +110,7 @@

    Optional module

    module: undefined | string
    @@ -120,7 +120,7 @@

    Optional mount

    mount: undefined | false | true
    @@ -168,6 +168,9 @@

    Optional mount

  • "jwt"
  • +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/interfaces/_password_hash_.option.html b/docs/interfaces/_password_hash_.option.html index d4ac105..b254dc7 100644 --- a/docs/interfaces/_password_hash_.option.html +++ b/docs/interfaces/_password_hash_.option.html @@ -100,7 +100,7 @@

    Optional algorithm

    algorithm: undefined | string
    @@ -110,7 +110,7 @@

    Optional iterations

    iterations: undefined | number
    @@ -120,7 +120,7 @@

    Optional saltLength

    saltLength: undefined | number
    @@ -168,6 +168,9 @@

    Optional saltLength

  • "jwt"
  • +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/interfaces/_util_.objoptions.html b/docs/interfaces/_util_.objoptions.html index 9c94609..d623eb8 100644 --- a/docs/interfaces/_util_.objoptions.html +++ b/docs/interfaces/_util_.objoptions.html @@ -99,7 +99,7 @@

    Optional filter

    filter: undefined | function
    @@ -109,7 +109,7 @@

    Optional prefix

    prefix: undefined | string
    @@ -157,6 +157,9 @@

    Optional prefix

  • "jwt"
  • +
  • + "limiter" +
  • "lin-router"
  • @@ -263,6 +266,9 @@

    Optional prefix

  • isUndefined
  • +
  • + mkdirsSync +
  • paginate
  • diff --git a/docs/modules/_config_.html b/docs/modules/_config_.html index 2971f34..a11b692 100644 --- a/docs/modules/_config_.html +++ b/docs/modules/_config_.html @@ -93,7 +93,7 @@

    Const config

    config: Config = new Config()
    @@ -146,6 +146,9 @@

    Const config

  • "jwt"
  • +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/modules/_core_.html b/docs/modules/_core_.html index 311fb64..9579bcf 100644 --- a/docs/modules/_core_.html +++ b/docs/modules/_core_.html @@ -108,7 +108,7 @@

    Const __version__

    __version__: "0.0.1" = "0.0.1"
    @@ -118,7 +118,7 @@

    Const disableLoading

    disableLoading: unique symbol = Symbol('disableLoading')
    @@ -128,7 +128,7 @@

    Const routeMetaInfo

    routeMetaInfo: Map<any, any> = new Map()
    @@ -176,6 +176,9 @@

    Const routeMetaInfo

    "jwt" +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/modules/_db_.html b/docs/modules/_db_.html index 5b61606..88ac237 100644 --- a/docs/modules/_db_.html +++ b/docs/modules/_db_.html @@ -94,7 +94,7 @@

    Const database

    database: any = config.getItem('db.database', 'lin-cms')
    @@ -109,7 +109,7 @@

    Const db

    db: Sequelize = new Sequelize(database, username, password, {host: host,port: port,dialect: type,logging: logging,timezone: '+08:00'})
    @@ -124,7 +124,7 @@

    Const host

    host: any = config.getItem('db.host', 'localhost')
    @@ -139,7 +139,7 @@

    Const logging

    logging: any = config.getItem('db.logging', true)
    @@ -154,7 +154,7 @@

    Const password

    password: any = config.getItem('db.password', '123456')
    @@ -169,7 +169,7 @@

    Const port

    port: any = config.getItem('db.port', 3306)
    @@ -184,7 +184,7 @@

    Const type

    type: any = config.getItem('db.type', 'mysql')
    @@ -199,7 +199,7 @@

    Const username

    username: any = config.getItem('db.username', 'root')
    @@ -252,6 +252,9 @@

    Const username

  • "jwt"
  • +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/modules/_enums_.html b/docs/modules/_enums_.html index 292a6c2..f51a465 100644 --- a/docs/modules/_enums_.html +++ b/docs/modules/_enums_.html @@ -131,6 +131,9 @@

    Enumerations

  • "jwt"
  • +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/modules/_exception_.html b/docs/modules/_exception_.html index 6d00ddc..5c9e37d 100644 --- a/docs/modules/_exception_.html +++ b/docs/modules/_exception_.html @@ -82,6 +82,7 @@

    Classes

  • Forbidden
  • HttpException
  • InvalidTokenException
  • +
  • LimitException
  • MethodNotAllowed
  • NotFound
  • ParametersException
  • @@ -143,6 +144,9 @@

    Interfaces

  • "jwt"
  • +
  • + "limiter" +
  • "lin-router"
  • @@ -204,6 +208,9 @@

    Interfaces

  • InvalidTokenException
  • +
  • + LimitException +
  • MethodNotAllowed
  • diff --git a/docs/modules/_extend_.html b/docs/modules/_extend_.html index 85e3b8f..a8b36a4 100644 --- a/docs/modules/_extend_.html +++ b/docs/modules/_extend_.html @@ -99,7 +99,7 @@

    checkFileExtension

  • Parameters

    @@ -116,13 +116,13 @@

    Returns boolean

    checkFileNums

      -
    • checkFileNums(nums: number): boolean
    • +
    • checkFileNums(nums: number): object
    -

    Returns boolean

    +

    Returns object

    +
      +
    • +
      conf: any
      +
    • +
    • +
      valid: boolean
      +
    • +

  • @@ -139,13 +147,13 @@

    Returns boolean

    checkSingleFileSize

      -
    • checkSingleFileSize(size: number): boolean
    • +
    • checkSingleFileSize(size: number): object
    -

    Returns boolean

    +

    Returns object

    +
      +
    • +
      conf: any
      +
    • +
    • +
      valid: boolean
      +
    • +
    @@ -162,13 +178,13 @@

    Returns boolean

    checkTotalFileSize

      -
    • checkTotalFileSize(size: number): boolean
    • +
    • checkTotalFileSize(size: number): object
    -

    Returns boolean

    +

    Returns object

    +
      +
    • +
      conf: any
      +
    • +
    • +
      valid: boolean
      +
    • +
    @@ -191,7 +215,7 @@

    Const json

  • @@ -225,7 +249,7 @@

    Const logging

  • @@ -262,7 +286,7 @@

    Const multipart

  • @@ -295,7 +319,7 @@

    Const success

  • @@ -330,7 +354,7 @@

    transform

  • Parameters

    @@ -390,6 +414,9 @@

    Returns void "jwt"

  • +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/modules/_extended_validator_.html b/docs/modules/_extended_validator_.html index 2d03bdb..d44e1a9 100644 --- a/docs/modules/_extended_validator_.html +++ b/docs/modules/_extended_validator_.html @@ -100,7 +100,7 @@

    Const extendedValidator

    extendedValidator: ExtendedValidator = new ExtendedValidator()
    @@ -153,6 +153,9 @@

    Const extendedValidator

  • "jwt"
  • +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/modules/_factory_.html b/docs/modules/_factory_.html index e44b9de..0c040ac 100644 --- a/docs/modules/_factory_.html +++ b/docs/modules/_factory_.html @@ -98,7 +98,7 @@

    modelExtend

  • @@ -186,6 +186,9 @@

    Returns model "jwt"

  • +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/modules/_file_.html b/docs/modules/_file_.html index deaccef..e32104d 100644 --- a/docs/modules/_file_.html +++ b/docs/modules/_file_.html @@ -122,6 +122,9 @@

    Classes

  • "jwt"
  • +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/modules/_index_.html b/docs/modules/_index_.html index 62b617f..a6f0bfe 100644 --- a/docs/modules/_index_.html +++ b/docs/modules/_index_.html @@ -109,6 +109,9 @@

    External module "index"

  • "jwt"
  • +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/modules/_interface_.html b/docs/modules/_interface_.html index 5ca4d64..be28ffd 100644 --- a/docs/modules/_interface_.html +++ b/docs/modules/_interface_.html @@ -92,7 +92,7 @@

    Const AuthInterface

    AuthInterface: object
    @@ -106,7 +106,7 @@

    attributes

    attributes: object
    @@ -115,7 +115,7 @@

    auth

    auth: object
    @@ -124,7 +124,7 @@

    type

    type: StringDataType = Sequelize.STRING({ length: 60 })
    @@ -135,7 +135,7 @@

    group_id

    group_id: object
    @@ -144,7 +144,7 @@

    allowNull

    allowNull: boolean = true
    @@ -154,7 +154,7 @@

    type

    type: IntegerDataTypeConstructor = Sequelize.INTEGER
    @@ -165,7 +165,7 @@

    id

    id: object
    @@ -174,7 +174,7 @@

    autoIncrement

    autoIncrement: boolean = true
    @@ -184,7 +184,7 @@

    primaryKey

    primaryKey: boolean = true
    @@ -194,7 +194,7 @@

    type

    type: IntegerDataTypeConstructor = Sequelize.INTEGER
    @@ -205,7 +205,7 @@

    module

    module: object
    @@ -214,7 +214,7 @@

    type

    type: StringDataType = Sequelize.STRING({ length: 50 })
    @@ -226,7 +226,7 @@

    options

    options: object
    @@ -235,7 +235,7 @@

    createdAt

    createdAt: boolean = false
    @@ -245,7 +245,7 @@

    tableName

    tableName: string = "lin_auth"
    @@ -255,7 +255,7 @@

    updatedAt

    updatedAt: boolean = false
    @@ -267,7 +267,7 @@

    Const FileInterface

    FileInterface: object
    @@ -281,7 +281,7 @@

    extension

    extension: object
    @@ -290,7 +290,7 @@

    type

    type: StringDataType = Sequelize.STRING(20)
    @@ -301,7 +301,7 @@

    id

    id: object
    @@ -310,7 +310,7 @@

    autoIncrement

    autoIncrement: boolean = true
    @@ -320,7 +320,7 @@

    primaryKey

    primaryKey: boolean = true
    @@ -330,7 +330,7 @@

    type

    type: IntegerDataTypeConstructor = Sequelize.INTEGER
    @@ -341,7 +341,7 @@

    name

    name: object
    @@ -350,7 +350,7 @@

    allowNull

    allowNull: boolean = false
    @@ -360,7 +360,7 @@

    type

    type: StringDataType = Sequelize.STRING(30)
    @@ -371,7 +371,7 @@

    path

    path: object
    @@ -380,7 +380,7 @@

    allowNull

    allowNull: boolean = false
    @@ -390,7 +390,7 @@

    type

    type: StringDataType = Sequelize.STRING({ length: 500 })
    @@ -401,7 +401,7 @@

    size

    size: object
    @@ -410,7 +410,7 @@

    allowNull

    allowNull: boolean = true
    @@ -420,7 +420,7 @@

    type

    type: IntegerDataTypeConstructor = Sequelize.INTEGER
    @@ -431,7 +431,7 @@

    type

    type: object
    @@ -440,7 +440,7 @@

    allowNull

    allowNull: boolean = false
    @@ -450,7 +450,7 @@

    comment

    comment: string = "1 local,其他表示其他地方"
    @@ -460,7 +460,7 @@

    defaultValue

    defaultValue: number = 1
    @@ -470,7 +470,7 @@

    type

    type: TinyIntegerDataTypeConstructor = Sequelize.TINYINT
    @@ -482,7 +482,7 @@

    Const GroupInterface

    GroupInterface: object
    @@ -496,7 +496,7 @@

    attributes

    attributes: object
    @@ -505,7 +505,7 @@

    id

    id: object
    @@ -514,7 +514,7 @@

    autoIncrement

    autoIncrement: boolean = true
    @@ -524,7 +524,7 @@

    primaryKey

    primaryKey: boolean = true
    @@ -534,7 +534,7 @@

    type

    type: IntegerDataTypeConstructor = Sequelize.INTEGER
    @@ -545,7 +545,7 @@

    info

    info: object
    @@ -554,7 +554,7 @@

    allowNull

    allowNull: boolean = true
    @@ -564,7 +564,7 @@

    type

    type: StringDataType = Sequelize.STRING({ length: 255 })
    @@ -575,7 +575,7 @@

    name

    name: object
    @@ -584,7 +584,7 @@

    type

    type: StringDataType = Sequelize.STRING({ length: 60 })
    @@ -596,7 +596,7 @@

    options

    options: object
    @@ -605,7 +605,7 @@

    createdAt

    createdAt: boolean = false
    @@ -615,7 +615,7 @@

    tableName

    tableName: string = "lin_group"
    @@ -625,7 +625,7 @@

    updatedAt

    updatedAt: boolean = false
    @@ -637,7 +637,7 @@

    Const InfoCrudMixin

    InfoCrudMixin: object
    @@ -651,7 +651,7 @@

    attributes

    attributes: object
    @@ -666,7 +666,7 @@

    options

    options: object
    @@ -675,7 +675,7 @@

    createdAt

    createdAt: string = "create_time"
    @@ -685,7 +685,7 @@

    deletedAt

    deletedAt: string = "delete_time"
    @@ -695,7 +695,7 @@

    paranoid

    paranoid: boolean = true
    @@ -705,7 +705,7 @@

    updatedAt

    updatedAt: string = "update_time"
    @@ -715,7 +715,7 @@

    getterMethods

    getterMethods: object
    @@ -728,7 +728,7 @@

    createTime

  • Returns any

    @@ -744,7 +744,7 @@

    Const LogInterface

    LogInterface: object
    @@ -758,7 +758,7 @@

    attributes

    attributes: object
    @@ -767,7 +767,7 @@

    authority

    authority: object
    @@ -776,7 +776,7 @@

    type

    type: StringDataType = Sequelize.STRING(100)
    @@ -787,7 +787,7 @@

    id

    id: object
    @@ -796,7 +796,7 @@

    autoIncrement

    autoIncrement: boolean = true
    @@ -806,7 +806,7 @@

    primaryKey

    primaryKey: boolean = true
    @@ -816,7 +816,7 @@

    type

    type: IntegerDataTypeConstructor = Sequelize.INTEGER
  • @@ -827,7 +827,7 @@

    message

    message: object
    @@ -836,7 +836,7 @@

    type

    type: StringDataType = Sequelize.STRING({ length: 450 })
    @@ -847,7 +847,7 @@

    method

    method: object
    @@ -856,7 +856,7 @@

    type

    type: StringDataType = Sequelize.STRING(20)
    @@ -867,7 +867,7 @@

    path

    path: object
    @@ -876,7 +876,7 @@

    type

    type: StringDataType = Sequelize.STRING(50)
    @@ -887,7 +887,7 @@

    status_code

    status_code: object
    @@ -896,7 +896,7 @@

    type

    type: IntegerDataTypeConstructor = Sequelize.INTEGER
    @@ -907,7 +907,7 @@

    user_id

    user_id: object
    @@ -916,7 +916,7 @@

    allowNull

    allowNull: boolean = false
    @@ -926,7 +926,7 @@

    type

    type: IntegerDataTypeConstructor = Sequelize.INTEGER
    @@ -937,7 +937,7 @@

    user_name

    user_name: object
    @@ -946,7 +946,7 @@

    type

    type: StringDataType = Sequelize.STRING(20)
    @@ -958,7 +958,7 @@

    options

    options: object
    @@ -967,7 +967,7 @@

    createdAt

    createdAt: string = "time"
    @@ -977,7 +977,7 @@

    tableName

    tableName: string = "lin_log"
    @@ -987,7 +987,7 @@

    updatedAt

    updatedAt: boolean = false
    @@ -997,7 +997,7 @@

    getterMethods

    getterMethods: object
    @@ -1010,7 +1010,7 @@

    time

  • Returns any

    @@ -1026,7 +1026,7 @@

    Const UserInterface

    UserInterface: object
    @@ -1040,7 +1040,7 @@

    options

    options: object & object = merge({tableName: 'lin_user',getterMethods: {isAdmin() {// @ts-ignorereturn this.getDataValue('admin') === UserAdmin.ADMIN;},isActive() {// @ts-ignorereturn this.getDataValue('active') === UserActive.ACTIVE;}}},InfoCrudMixin.options)
  • @@ -1050,7 +1050,7 @@

    attributes

    attributes: object
    @@ -1059,7 +1059,7 @@

    active

    active: object
    @@ -1068,7 +1068,7 @@

    allowNull

    allowNull: boolean = false
    @@ -1078,7 +1078,7 @@

    defaultValue

    defaultValue: number = 1
    @@ -1088,7 +1088,7 @@

    type

    type: TinyIntegerDataTypeConstructor = Sequelize.TINYINT
    @@ -1099,7 +1099,7 @@

    admin

    admin: object
    @@ -1108,7 +1108,7 @@

    allowNull

    allowNull: boolean = false
    @@ -1118,7 +1118,7 @@

    defaultValue

    defaultValue: number = 1
    @@ -1128,7 +1128,7 @@

    type

    type: TinyIntegerDataTypeConstructor = Sequelize.TINYINT
    @@ -1139,7 +1139,7 @@

    email

    email: object
    @@ -1148,7 +1148,7 @@

    allowNull

    allowNull: boolean = true
    @@ -1158,7 +1158,7 @@

    type

    type: StringDataType = Sequelize.STRING({ length: 100 })
    @@ -1168,7 +1168,7 @@

    unique

    unique: boolean = true
    @@ -1179,7 +1179,7 @@

    group_id

    group_id: object
    @@ -1188,7 +1188,7 @@

    allowNull

    allowNull: boolean = true
    @@ -1198,7 +1198,7 @@

    type

    type: IntegerDataTypeConstructor = Sequelize.INTEGER
    @@ -1209,7 +1209,7 @@

    id

    id: object
    @@ -1218,7 +1218,7 @@

    autoIncrement

    autoIncrement: boolean = true
    @@ -1228,7 +1228,7 @@

    primaryKey

    primaryKey: boolean = true
    @@ -1238,7 +1238,7 @@

    type

    type: IntegerDataTypeConstructor = Sequelize.INTEGER
    @@ -1249,7 +1249,7 @@

    nickname

    nickname: object
    @@ -1258,7 +1258,7 @@

    allowNull

    allowNull: boolean = false
    @@ -1268,7 +1268,7 @@

    type

    type: StringDataType = Sequelize.STRING({ length: 24 })
    @@ -1278,7 +1278,7 @@

    unique

    unique: boolean = true
    @@ -1289,7 +1289,7 @@

    password

    password: object
    @@ -1298,7 +1298,7 @@

    type

    type: StringDataType = Sequelize.STRING({ length: 100 })
    @@ -1312,7 +1312,7 @@

    get

  • Returns any

    @@ -1329,7 +1329,7 @@

    set

  • Parameters

    @@ -1389,6 +1389,9 @@

    Returns void "jwt"

  • +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/modules/_jwt_.html b/docs/modules/_jwt_.html index d3514e9..a08b3fa 100644 --- a/docs/modules/_jwt_.html +++ b/docs/modules/_jwt_.html @@ -110,7 +110,7 @@

    Const jwt

    jwt: Token = new Token(config.getItem('secret'),config.getItem('accessExp'),config.getItem('refreshExp'))
    @@ -132,7 +132,7 @@

    adminRequired

  • @@ -175,7 +175,7 @@

    checkUserIsActive

  • Parameters

    @@ -198,7 +198,7 @@

    createAccessToken

  • @@ -235,7 +235,7 @@

    createRefreshToken

  • @@ -272,7 +272,7 @@

    getTokens

  • @@ -311,7 +311,7 @@

    groupRequired

  • @@ -354,7 +354,7 @@

    loginRequired

  • @@ -397,7 +397,7 @@

    parseHeader

  • @@ -434,7 +434,7 @@

    refreshTokenRequired

  • @@ -477,7 +477,7 @@

    refreshTokenRequiredWithUnifyException

  • @@ -520,7 +520,7 @@

    verifyAccessToken

  • @@ -557,7 +557,7 @@

    verifyRefreshToken

  • @@ -628,6 +628,9 @@

    Returns any "jwt"

  • +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/modules/_limiter_.html b/docs/modules/_limiter_.html new file mode 100644 index 0000000..4f34a0a --- /dev/null +++ b/docs/modules/_limiter_.html @@ -0,0 +1,409 @@ + + + + + + "limiter" | lin-mizar + + + + + +
    +
    +
    +
    + +
    +
    + Options +
    +
    + All +
      +
    • Public
    • +
    • Public/Protected
    • +
    • All
    • +
    +
    + + + + + + +
    +
    + Menu +
    +
    +
    +
    +
    +
    + +

    External module "limiter"

    +
    +
    +
    +
    +
    +
    +
    +

    Index

    +
    +
    +
    +

    Interfaces

    + +
    +
    +

    Type aliases

    + +
    +
    +

    Functions

    + +
    +
    +
    +
    +
    +

    Type aliases

    +
    + +

    RatelimitExpires

    +
    RatelimitExpires: function
    + +
    +
    +

    returned body when error

    +
    +
    +
    +

    Type declaration

    +
      +
    • +
        +
      • (expires: number, url: string): any
      • +
      +
        +
      • +

        Parameters

        +
          +
        • +
          expires: number
          +
        • +
        • +
          url: string
          +
        • +
        +

        Returns any

        +
      • +
      +
    • +
    +
    +
    +
    +
    +

    Functions

    +
    + +

    find

    +
      +
    • find(db: RedisClient, p: string): Promise<string>
    • +
    +
      +
    • + +
      +
      +

      find p in redis

      +
      +
      +

      Parameters

      +
        +
      • +
        db: RedisClient
        +
        +

        redis client

        +
        +
      • +
      • +
        p: string
        +
        +

        key

        +
        +
      • +
      +

      Returns Promise<string>

      +
    • +
    +
    +
    + +

    pttl

    +
      +
    • pttl(db: RedisClient, p: string): Promise<number>
    • +
    +
      +
    • + +
      +
      +

      get expire time in redis for p

      +
      +
      +

      Parameters

      +
        +
      • +
        db: RedisClient
        +
        +

        redis client

        +
        +
      • +
      • +
        p: string
        +
        +

        key

        +
        +
      • +
      +

      Returns Promise<number>

      +
    • +
    +
    +
    + +

    ratelimit

    + +
      +
    • + +
      +
      +

      Initialize ratelimit middleware with the given opts

      +
      +
      +

      Parameters

      + +

      Returns (Anonymous function)

      +
    • +
    +
    +
    +
    + +
    +
    +
    +
    +

    Legend

    +
    +
      +
    • Module
    • +
    • Object literal
    • +
    • Variable
    • +
    • Function
    • +
    • Function with type parameter
    • +
    • Index signature
    • +
    • Type alias
    • +
    +
      +
    • Enumeration
    • +
    • Enumeration member
    • +
    • Property
    • +
    • Method
    • +
    +
      +
    • Interface
    • +
    • Interface with type parameter
    • +
    • Constructor
    • +
    • Property
    • +
    • Method
    • +
    • Index signature
    • +
    +
      +
    • Class
    • +
    • Class with type parameter
    • +
    • Constructor
    • +
    • Property
    • +
    • Method
    • +
    • Accessor
    • +
    • Index signature
    • +
    +
      +
    • Inherited constructor
    • +
    • Inherited property
    • +
    • Inherited method
    • +
    • Inherited accessor
    • +
    +
      +
    • Protected property
    • +
    • Protected method
    • +
    • Protected accessor
    • +
    +
      +
    • Private property
    • +
    • Private method
    • +
    • Private accessor
    • +
    +
      +
    • Static property
    • +
    • Static method
    • +
    +
    +
    +
    +
    +

    Generated using TypeDoc

    +
    +
    + + + + \ No newline at end of file diff --git a/docs/modules/_lin_router_.html b/docs/modules/_lin_router_.html index 05c4d5e..ffb2d25 100644 --- a/docs/modules/_lin_router_.html +++ b/docs/modules/_lin_router_.html @@ -128,6 +128,9 @@

    Interfaces

  • "jwt"
  • +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/modules/_lin_validator_.html b/docs/modules/_lin_validator_.html index b8bcf0d..1220569 100644 --- a/docs/modules/_lin_validator_.html +++ b/docs/modules/_lin_validator_.html @@ -123,6 +123,9 @@

    Classes

  • "jwt"
  • +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/modules/_loader_.html b/docs/modules/_loader_.html index 9ec0164..d37f665 100644 --- a/docs/modules/_loader_.html +++ b/docs/modules/_loader_.html @@ -122,6 +122,9 @@

    Classes

  • "jwt"
  • +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/modules/_log_.html b/docs/modules/_log_.html index ebad2b9..3b6c239 100644 --- a/docs/modules/_log_.html +++ b/docs/modules/_log_.html @@ -95,7 +95,7 @@

    Const REG_XP

    REG_XP: RegExp = /(?<=\{)[^}]*(?=\})/g
    @@ -112,7 +112,7 @@

    Const logger

  • @@ -161,7 +161,7 @@

    parseTemplate

  • @@ -206,7 +206,7 @@

    writeLog

  • Parameters

    @@ -266,6 +266,9 @@

    Returns void "jwt"

  • +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/modules/_middleware_.html b/docs/modules/_middleware_.html index 8d0f2eb..28bb05f 100644 --- a/docs/modules/_middleware_.html +++ b/docs/modules/_middleware_.html @@ -92,7 +92,7 @@

    Const error

  • @@ -123,7 +123,7 @@

    Const log

  • @@ -200,6 +200,9 @@

    Returns Promise "jwt"

  • +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/modules/_mixin_.html b/docs/modules/_mixin_.html index 221c5ed..98479f6 100644 --- a/docs/modules/_mixin_.html +++ b/docs/modules/_mixin_.html @@ -122,6 +122,9 @@

    Classes

  • "jwt"
  • +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/modules/_password_hash_.html b/docs/modules/_password_hash_.html index d047a18..ea9a7ce 100644 --- a/docs/modules/_password_hash_.html +++ b/docs/modules/_password_hash_.html @@ -104,7 +104,7 @@

    Let saltChars

    saltChars: string = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"
    @@ -114,7 +114,7 @@

    Let saltCharsCount

    saltCharsCount: number = saltChars.length
    @@ -131,7 +131,7 @@

    Const generate

  • @@ -172,7 +172,7 @@

    generateHash

  • Parameters

    @@ -204,7 +204,7 @@

    generateSalt

  • Parameters

    @@ -227,7 +227,7 @@

    Const isHashed

  • @@ -260,7 +260,7 @@

    Const verify

  • @@ -335,6 +335,9 @@

    Returns boolean "jwt"

  • +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/modules/_plugin_.html b/docs/modules/_plugin_.html index 9013fdc..1870d6d 100644 --- a/docs/modules/_plugin_.html +++ b/docs/modules/_plugin_.html @@ -122,6 +122,9 @@

    Classes

  • "jwt"
  • +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/modules/_sse_.html b/docs/modules/_sse_.html index 0665e6f..8b62312 100644 --- a/docs/modules/_sse_.html +++ b/docs/modules/_sse_.html @@ -124,6 +124,9 @@

    Classes

  • "jwt"
  • +
  • + "limiter" +
  • "lin-router"
  • diff --git a/docs/modules/_util_.html b/docs/modules/_util_.html index c1ded05..096906f 100644 --- a/docs/modules/_util_.html +++ b/docs/modules/_util_.html @@ -103,6 +103,7 @@

    Functions

  • isString
  • isSymbol
  • isUndefined
  • +
  • mkdirsSync
  • paginate
  • prefixAndFilter
  • strVal
  • @@ -123,7 +124,7 @@

    Const isNegative

    isNegative: isNegative = extendedValidator.isNegative
    @@ -133,7 +134,7 @@

    Const isNotEmpty

    isNotEmpty: isNotEmpty = extendedValidator.isNotEmpty
    @@ -143,7 +144,7 @@

    Const isPositive

    isPositive: isPositive = extendedValidator.isPositive
    @@ -160,7 +161,7 @@

    assert

  • @@ -191,7 +192,7 @@

    checkDateFormat

  • @@ -222,7 +223,7 @@

    decorateProp

  • @@ -292,7 +293,7 @@

    findAuthAndModule

  • @@ -323,7 +324,7 @@

    findMetaByAuth

  • Parameters

    @@ -346,7 +347,7 @@

    getAllFieldNames

  • @@ -401,7 +402,7 @@

    getAllMethodNames

  • @@ -442,7 +443,7 @@

    getFiles

  • @@ -473,7 +474,7 @@

    Const isConstructor

  • Parameters

    @@ -496,7 +497,7 @@

    Const isEmpty

  • Parameters

    @@ -524,7 +525,7 @@

    Const isFunction

  • Parameters

    @@ -547,7 +548,7 @@

    Const isNil

  • Parameters

    @@ -570,7 +571,7 @@

    Const isObject

  • Parameters

    @@ -593,7 +594,7 @@

    Const isString

  • Parameters

    @@ -616,7 +617,7 @@

    Const isSymbol

  • Parameters

    @@ -639,7 +640,7 @@

    Const isUndefined

  • Parameters

    @@ -652,6 +653,40 @@

    Returns boolean +
    + +

    mkdirsSync

    +
      +
    • mkdirsSync(dirname: string): undefined | true
    • +
    +
      +
    • + +
      +
      +

      递归创建目录 同步方法

      +
      +
      +

      Parameters

      +
        +
      • +
        dirname: string
        +
        +

        目录

        +
        +
      • +
      +

      Returns undefined + | + true +

      +
    • +
    +

    paginate

    @@ -662,7 +697,7 @@

    paginate

  • Parameters

    @@ -693,7 +728,7 @@

    prefixAndFilter

  • Parameters

    @@ -719,7 +754,7 @@

    Const strVal

  • Parameters

    @@ -742,7 +777,7 @@

    toHump

  • Parameters

    @@ -765,7 +800,7 @@

    toLine

  • Parameters

    @@ -788,7 +823,7 @@

    unsets

  • Parameters

    @@ -814,7 +849,7 @@

    Const validatePath

  • Parameters

    @@ -871,6 +906,9 @@

    Returns string "jwt"

  • +
  • + "limiter" +
  • "lin-router"
  • @@ -965,6 +1003,9 @@

    Returns string isUndefined

  • +
  • + mkdirsSync +
  • paginate
  • diff --git a/lib/exception.ts b/lib/exception.ts index 05699f0..f71c4a5 100644 --- a/lib/exception.ts +++ b/lib/exception.ts @@ -285,7 +285,7 @@ export class RepeatException extends HttpException { * 不可操作 */ export class Forbidden extends HttpException { - public code = 401; + public code = 403; public msg = '不可操作'; public errorCode = 10070; @@ -424,3 +424,27 @@ export class FileExtensionException extends HttpException { } } } + +/** + * 请求过于频繁,请稍后重试 + */ +export class LimitException extends HttpException { + public code = 401; + public msg = '请求过于频繁,请稍后重试'; + public errorCode = 10140; + + constructor(ex?: Exception) { + super(); + if (ex && ex.code) { + assert(isInteger(ex.code)); + this.code = ex.code; + } + if (ex && ex.msg) { + this.msg = ex.msg; + } + if (ex && ex.errorCode) { + assert(isInteger(ex.errorCode)); + this.errorCode = ex.errorCode; + } + } +} diff --git a/lib/extend.ts b/lib/extend.ts index cd801e6..fc0a188 100644 --- a/lib/extend.ts +++ b/lib/extend.ts @@ -132,11 +132,15 @@ export const multipart = (app: Application) => { // part.readableLength 31492 检查单个文件的大小 // 超过长度,报错 // 检查extension,报错 - if (!checkFileExtension(extname(part.filename))) { - throw new FileExtensionException(); + const ext = extname(part.filename); + if (!checkFileExtension(ext)) { + throw new FileExtensionException({ msg: `不支持类型为${ext}的文件` }); } - if (!checkSingleFileSize(part.readableLength)) { - throw new FileTooLargeException(); + const { valid, conf } = checkSingleFileSize(part.readableLength); + if (!valid) { + throw new FileTooLargeException({ + msg: `文件单个大小不能超过${conf}b` + }); } // 计算总大小 totalSize += part.readableLength; @@ -146,11 +150,13 @@ export const multipart = (app: Application) => { part.resume(); } } - if (!checkFileNums(files.length)) { - throw new FileTooManyException(); + const { valid, conf } = checkFileNums(files.length); + if (!valid) { + throw new FileTooManyException({ msg: `上传文件数量不能超过${conf}` }); } - if (!checkTotalFileSize(totalSize)) { - throw new FileTooLargeException(); + const { valid: valid1, conf: conf1 } = checkTotalFileSize(totalSize); + if (!valid1) { + throw new FileTooLargeException({ msg: `总文件体积不能超过${conf1}` }); } return files; }; @@ -160,19 +166,28 @@ function checkSingleFileSize(size: number) { // file_include,file_exclude,file_single_limit,file_total_limit,file_store_dir // 默认 2M const confSize = config.getItem('file_single_limit', 1024 * 1024 * 2); - return confSize > size; + return { + valid: confSize > size, + conf: confSize + }; } function checkTotalFileSize(size: number) { // 默认 20M const confSize = config.getItem('file_total_limit', 1024 * 1024 * 20); - return confSize > size; + return { + valid: confSize > size, + conf: confSize + }; } function checkFileNums(nums: number) { // 默认 10 const confNums = config.getItem('file_nums', 10); - return confNums > nums; + return { + valid: confNums > nums, + conf: confNums + }; } function checkFileExtension(ext: string) { diff --git a/lib/file.ts b/lib/file.ts index 35ee62c..ba1c69a 100644 --- a/lib/file.ts +++ b/lib/file.ts @@ -8,6 +8,7 @@ import dayjs from 'dayjs'; import path from 'path'; import fs from 'fs'; import { config } from './config'; +import { mkdirsSync } from './util'; /** * 上传文件类,所有文件上传的基类 @@ -20,7 +21,7 @@ export class Uploader { /** * 处理文件流Stream */ - public upload(files: any[]) { + public async upload(files: any[]) { throw new Error('you must overload this method'); } @@ -33,7 +34,7 @@ export class Uploader { const dir = this.getExactStoreDir(); const exists = fs.existsSync(dir); if (!exists) { - fs.mkdirSync(dir); + mkdirsSync(dir); } return path.join(dir, filename2); } diff --git a/lib/limiter.ts b/lib/limiter.ts new file mode 100644 index 0000000..b43d473 --- /dev/null +++ b/lib/limiter.ts @@ -0,0 +1,215 @@ +/** + * inspired by koa-simple-ratelimit + * @see https://github.com/scttcper/koa-simple-ratelimit + */ +import ms from 'ms'; +import { RedisClient } from 'redis'; +import { Forbidden, LimitException } from './exception'; + +/** + * find p in redis + * @param db redis client + * @param p key + */ +function find(db: RedisClient, p: string): Promise { + return new Promise((resolve, reject) => { + db.get(p, (err, reply) => { + if (err) { + reject(err); + } + resolve(reply); + }); + }); +} + +/** + * get expire time in redis for p + * @param db redis client + * @param p key + */ +function pttl(db: RedisClient, p: string): Promise { + return new Promise((resolve, reject) => { + db.pttl(p, (err, reply) => { + if (err) { + reject(err); + } + resolve(reply); + }); + }); +} + +/** + * returned body when error + */ +export type RatelimitExpires = (expires: number, url: string) => any; + +export interface RatelimitOptions { + /** + * database connection + */ + db: any; + /** + * limit duration in milliseconds [1 hour] + */ + duration?: number; + /** + * max requests per 'id' default: 2500 + */ + max?: number; + /** + * id to compare requests default: ip + */ + id?: (ctx: any) => any; + /** + * redis key prefix default: "limit" + */ + prefix?: string; + + /** + * special key for indentify + */ + endpoint?: string; + /** + * array of ids to whitelist + */ + whitelist?: string[]; + /** + * array of ids to blacklist + */ + blacklist?: string[]; + /** + * throw on rate limit exceeded default: false + */ + throw?: boolean; + /** + * error returned as the body of the response + */ + errorMessage?: string | RatelimitExpires; + /** + * custom header names + */ + headers?: { + /** + * remaining number of requests default: 'X-RateLimit-Remaining' + */ + remaining?: string; + /** + * reset timestamp default: 'X-RateLimit-Reset' + */ + reset?: string; + /** + * total number of requests default: 'X-RateLimit-Limit' + */ + total?: string; + }; + logging?: boolean; +} + +/** + * Initialize ratelimit middleware with the given `opts` + */ +export function ratelimit(options: RatelimitOptions) { + const opts: Required = { + max: 2500, + duration: 3600000, + throw: false, + prefix: 'limit', + endpoint: '', + id: (ctx: any) => ctx.ip, + whitelist: [], + blacklist: [], + headers: { + remaining: 'X-RateLimit-Remaining', + reset: 'X-RateLimit-Reset', + total: 'X-RateLimit-Limit' + }, + errorMessage: (exp: number, url: string) => { + return { + error_code: 10140, + msg: `请求过于频繁,请在${ms(exp, { long: true })}后重试`, + url: url + }; + }, + logging: true, + ...options + }; + const { + remaining = 'X-RateLimit-Remaining', + reset = 'X-RateLimit-Reset', + total = 'X-RateLimit-Limit' + } = opts.headers || {}; + + return async function(ctx, next) { + const id = opts.id(ctx); + + if (id === false) { + return next(); + } + + // Whitelist + if (opts.whitelist && opts.whitelist.includes(id)) { + return next(); + } + + // Blacklist + if (opts.blacklist && opts.blacklist.includes(id)) { + throw new Forbidden({ msg: '您的访问被禁止' }); + } + const endpoint = opts.endpoint ? opts.endpoint : ''; + const prefix = opts.prefix ? opts.prefix : 'limit'; + const name = `${prefix}:${endpoint}:${id}:count`; + const cur = await find(opts.db, name); + const n = Math.floor(Number(cur)); + let t = Date.now(); + t += opts.duration; + t = new Date(t).getTime() / 1000 || 0; + + const headers = { + [remaining]: opts.max - 1, + [reset]: t, + [total]: opts.max + }; + ctx.set(headers); + + // Not existing in redis + // tslint:disable-next-line: strict-type-predicates + if (cur === null) { + opts.db.set(name, opts.max - 1, 'PX', opts.duration, 'NX'); + opts.logging && + ctx.logger.info('remaining %s/%s %s', opts.max - 1, opts.max, id); + return next(); + } + + const expires = await pttl(opts.db, name); + if (n - 1 >= 0) { + // Existing in redis + opts.db.decr(name); + ctx.set(remaining, n - 1); + opts.logging && + ctx.logger.info('remaining %s/%s %s', n - 1, opts.max, id); + return next(); + } + + if (expires < 0) { + opts.logging && ctx.logger.info(`${name} is stuck. Resetting.`); + opts.db.set(name, opts.max - 1, 'PX', opts.duration, 'NX'); + return next(); + } + + // User maxed + opts.logging && + ctx.logger.info('remaining %s/%s %s', remaining, opts.max, id); + ctx.set(remaining, n); + ctx.set('Retry-After', t); + // 没有被next,则报错 + ctx.status = 429; + if (typeof opts.errorMessage === 'function') { + ctx.body = opts.errorMessage(expires, ctx.req.url); + } else { + ctx.body = opts.errorMessage; + } + if (opts.throw) { + throw new LimitException(); + } + }; +} diff --git a/lib/util.ts b/lib/util.ts index 968f366..0c9d760 100644 --- a/lib/util.ts +++ b/lib/util.ts @@ -1,5 +1,6 @@ import { IRouterContext } from 'koa-router'; import fs from 'fs'; +import path from 'path'; import { routeMetaInfo } from './core'; import { get, unset } from 'lodash'; import { config } from './config'; @@ -254,3 +255,18 @@ export function getFiles(dir: string) { } return res; } + +/** + * 递归创建目录 同步方法 + * @param dirname 目录 + */ +export function mkdirsSync(dirname: string) { + if (fs.existsSync(dirname)) { + return true; + } else { + if (mkdirsSync(path.dirname(dirname))) { + fs.mkdirSync(dirname); + return true; + } + } +} diff --git a/package.json b/package.json index 4c1614c..a5824eb 100644 --- a/package.json +++ b/package.json @@ -40,9 +40,11 @@ "@types/koa-bodyparser": "^4.2.2", "@types/koa-router": "^7.0.39", "@types/lodash": "^4.14.122", + "@types/redis": "^2.8.12", "@types/sequelize": "^4.27.39", "@types/uuid": "^3.4.4", "jest": "^24.3.1", + "redis": "^2.8.0", "ts-jest": "^24.0.0", "ts-node": "^8.0.3", "tslint": "^5.13.1", From ddee5a870fde0027ba4e3d7f1557408c6b671cc8 Mon Sep 17 00:00:00 2001 From: pedro Date: Mon, 13 May 2019 22:21:10 +0800 Subject: [PATCH 08/15] =?UTF-8?q?feat:=E6=B7=BB=E5=8A=A0mulpart=E9=85=8D?= =?UTF-8?q?=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/extend.ts | 64 +++++++++++++++++++++++++++++++++------------------ lib/jwt.ts | 2 ++ 2 files changed, 43 insertions(+), 23 deletions(-) diff --git a/lib/extend.ts b/lib/extend.ts index fc0a188..d45f60c 100644 --- a/lib/extend.ts +++ b/lib/extend.ts @@ -93,18 +93,27 @@ export const logging = (app: Application) => { app.context.logger = consola; }; +export interface MulOpts { + autoFields?: boolean; + singleLimit?: number; + totalLimit?: number; + fileNums?: number; + include?: string[]; + exclude?: string[]; +} + /** * 解析上传文件 * @param app app实例 */ export const multipart = (app: Application) => { - app.context.multipart = async function(autoFields = false) { + app.context.multipart = async function(opts?: MulOpts) { // multipart/form-data if (!this.is('multipart')) { throw new Error('Content-Type must be multipart/*'); } // field指表单中的非文件 - const parts = parse(this, { autoFields: autoFields }); + const parts = parse(this, { autoFields: opts && opts.autoFields }); let part; let totalSize = 0; const files: any[] = []; @@ -112,10 +121,6 @@ export const multipart = (app: Application) => { while ((part = await parts()) != null) { if (part.length) { // arrays are busboy fields - // console.log('field: ' + part[0]); - // console.log('value: ' + part[1]); - // console.log('valueTruncated: ' + part[2]); - // console.log('fieldnameTruncated: ' + part[3]); } else { if (!part.filename) { // user click `upload` before choose a file, @@ -125,18 +130,20 @@ export const multipart = (app: Application) => { continue; } // otherwise, it's a stream - // console.log('field: ' + part.fieldname); - // console.log('filename: ' + part.filename); - // console.log('encoding: ' + part.encoding); - // console.log('mime: ' + part.mime); + // part.fieldname, part.filename, part.encoding, part.mime // part.readableLength 31492 检查单个文件的大小 // 超过长度,报错 // 检查extension,报错 const ext = extname(part.filename); - if (!checkFileExtension(ext)) { + if ( + !checkFileExtension(ext, opts && opts.include, opts && opts.exclude) + ) { throw new FileExtensionException({ msg: `不支持类型为${ext}的文件` }); } - const { valid, conf } = checkSingleFileSize(part.readableLength); + const { valid, conf } = checkSingleFileSize( + part.readableLength, + opts && opts.singleLimit + ); if (!valid) { throw new FileTooLargeException({ msg: `文件单个大小不能超过${conf}b` @@ -150,11 +157,14 @@ export const multipart = (app: Application) => { part.resume(); } } - const { valid, conf } = checkFileNums(files.length); + const { valid, conf } = checkFileNums(files.length, opts && opts.fileNums); if (!valid) { throw new FileTooManyException({ msg: `上传文件数量不能超过${conf}` }); } - const { valid: valid1, conf: conf1 } = checkTotalFileSize(totalSize); + const { valid: valid1, conf: conf1 } = checkTotalFileSize( + totalSize, + opts && opts.totalLimit + ); if (!valid1) { throw new FileTooLargeException({ msg: `总文件体积不能超过${conf1}` }); } @@ -162,37 +172,45 @@ export const multipart = (app: Application) => { }; }; -function checkSingleFileSize(size: number) { +function checkSingleFileSize(size: number, singleLimit?: number) { // file_include,file_exclude,file_single_limit,file_total_limit,file_store_dir // 默认 2M - const confSize = config.getItem('file_single_limit', 1024 * 1024 * 2); + const confSize = singleLimit + ? singleLimit + : config.getItem('file.singleLimit', 1024 * 1024 * 2); return { valid: confSize > size, conf: confSize }; } -function checkTotalFileSize(size: number) { +function checkTotalFileSize(size: number, totalLimit?: number) { // 默认 20M - const confSize = config.getItem('file_total_limit', 1024 * 1024 * 20); + const confSize = totalLimit + ? totalLimit + : config.getItem('file.totalLimit', 1024 * 1024 * 20); return { valid: confSize > size, conf: confSize }; } -function checkFileNums(nums: number) { +function checkFileNums(nums: number, fileNums?: number) { // 默认 10 - const confNums = config.getItem('file_nums', 10); + const confNums = fileNums ? fileNums : config.getItem('file.nums', 10); return { valid: confNums > nums, conf: confNums }; } -function checkFileExtension(ext: string) { - const fileInclude = config.getItem('file_include'); - const fileExclude = config.getItem('file_exclude'); +function checkFileExtension( + ext: string, + include?: string[], + exclude?: string[] +) { + const fileInclude = include ? include : config.getItem('file.include'); + const fileExclude = exclude ? exclude : config.getItem('file.exclude'); // 如果两者都有取fileInclude,有一者则用一者 if (fileInclude && fileExclude) { if (!Array.isArray(fileInclude)) { diff --git a/lib/jwt.ts b/lib/jwt.ts index 65bc2d8..bf3ed3b 100644 --- a/lib/jwt.ts +++ b/lib/jwt.ts @@ -85,6 +85,7 @@ export class Token { { exp: exp, identity: identity, + scope: 'lin', type: TokenType.ACCESS }, this.secret @@ -104,6 +105,7 @@ export class Token { { exp: exp, identity: identity, + scope: 'lin', type: TokenType.REFRESH }, this.secret From 49be42d33e79770ddc7cb56f41267d3df6ae79d2 Mon Sep 17 00:00:00 2001 From: pedro Date: Wed, 15 May 2019 10:44:42 +0800 Subject: [PATCH 09/15] =?UTF-8?q?feat:=E6=B7=BB=E5=8A=A0=E4=BB=A4=E7=89=8C?= =?UTF-8?q?=E7=9A=84=E4=BD=9C=E7=94=A8=E5=9F=9F=E5=88=A4=E6=96=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/jwt.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/jwt.ts b/lib/jwt.ts index bf3ed3b..ca18e4b 100644 --- a/lib/jwt.ts +++ b/lib/jwt.ts @@ -277,6 +277,9 @@ async function parseHeader(ctx: RouterContext, type = TokenType.ACCESS) { if (!get(obj, 'type') || get(obj, 'type') !== type) { ctx.throw(new AuthFailed({ msg: '请使用正确类型的令牌' })); } + if (!get(obj, 'scope') || get(obj, 'scope') !== 'lin') { + ctx.throw(new AuthFailed({ msg: '请使用正确作用域的令牌' })); + } const user = await ctx.manager.userModel.findByPk(get(obj, 'identity')); if (!user) { ctx.throw(new NotFound({ msg: '用户不存在' })); From 519b037ac55e145d9f613f9081243e15576a4b08 Mon Sep 17 00:00:00 2001 From: pedro Date: Sun, 19 May 2019 16:28:04 +0800 Subject: [PATCH 10/15] =?UTF-8?q?feat:=E4=BC=98=E5=8C=96=E6=96=87=E4=BB=B6?= =?UTF-8?q?=E4=B8=8A=E4=BC=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/core.ts | 10 +++++++--- lib/file.ts | 41 +++++++++++++++++++++++++++++++++-------- lib/interface.ts | 17 +++++++++++++++-- 3 files changed, 55 insertions(+), 13 deletions(-) diff --git a/lib/core.ts b/lib/core.ts index 6901cfd..038d71d 100644 --- a/lib/core.ts +++ b/lib/core.ts @@ -425,6 +425,7 @@ export interface FileArgs { name?: string; extension?: string; size?: number; + md5?: string; } /** @@ -438,10 +439,12 @@ export class File extends Model { public name!: string; public extension!: string; public size!: number; + public md5!: string; - static createRecord(args?: FileArgs, commit?: boolean) { + static async createRecord(args?: FileArgs, commit?: boolean) { const record = File.build(args as any); - commit && record.save(); + // tslint:disable-next-line: await-promise + commit && (await record.save()); return record; } @@ -452,7 +455,8 @@ export class File extends Model { type: this.type, name: this.name, extension: this.extension, - size: this.size + size: this.size, + md5: this.md5 }; return origin; } diff --git a/lib/file.ts b/lib/file.ts index ba1c69a..12dee70 100644 --- a/lib/file.ts +++ b/lib/file.ts @@ -1,11 +1,12 @@ /** * 文件上传相关 - * file_include,file_exclude,file_single_limit,file_total_limit,file_store_dir - * id,path,type,name,extension,size + * file_include,file_exclude,file_single_limit,file_total_limit,file_store_dir,siteDomain + * id,path,type,name,extension,size,md5 */ import uuid from 'uuid'; import dayjs from 'dayjs'; import path from 'path'; +import crypto from 'crypto'; import fs from 'fs'; import { config } from './config'; import { mkdirsSync } from './util'; @@ -31,12 +32,17 @@ export class Uploader { */ public getStorePath(filename: string) { const filename2 = this.generateName(filename); - const dir = this.getExactStoreDir(); + const formatDay = this.getFormatDay(); + const dir = this.getExactStoreDir(formatDay); const exists = fs.existsSync(dir); if (!exists) { mkdirsSync(dir); } - return path.join(dir, filename2); + return { + absolutePath: path.join(dir, filename2), + relativePath: `${formatDay}/${filename2}`, + realName: filename2 + }; } /** @@ -51,12 +57,31 @@ export class Uploader { /** * 获得确切的保存路径 */ - public getExactStoreDir() { - let storeDir = config.getItem('file_store_dir', 'assets'); + public getExactStoreDir(formatDay: string) { + let storeDir = config.getItem('file.storeDir'); + if (!storeDir) { + throw new Error('storeDir must not be undefined'); + } this.storeDir && (storeDir = this.storeDir); const extrat = path.isAbsolute(storeDir) - ? path.join(storeDir, dayjs().format('YYYY/MM/DD')) - : path.join(process.cwd(), storeDir, dayjs().format('YYYY/MM/DD')); + ? path.join(storeDir, formatDay) + : path.join(process.cwd(), storeDir, formatDay); return extrat; } + + /** + * getFormatDay + */ + public getFormatDay() { + return dayjs().format('YYYY/MM/DD'); + } + + /** + * 生成图片的md5 + */ + public generateMd5(data: any) { + const buf = data.readableBuffer._getBuffer(data.readableLength); + const md5 = crypto.createHash('md5'); + return md5.update(buf).digest('hex'); + } } diff --git a/lib/interface.ts b/lib/interface.ts index ff506ef..d392c70 100644 --- a/lib/interface.ts +++ b/lib/interface.ts @@ -38,6 +38,11 @@ export const UserInterface = { allowNull: false, unique: true }, + avatar: { + // 用户默认生成图像,为null + type: Sequelize.STRING({ length: 500 }), + comment: '头像url' + }, admin: { type: Sequelize.TINYINT, allowNull: false, @@ -206,14 +211,22 @@ export const FileInterface = { comment: '1 local,其他表示其他地方' }, name: { - type: Sequelize.STRING(30), + type: Sequelize.STRING(100), allowNull: false }, extension: { - type: Sequelize.STRING(20) + type: Sequelize.STRING(50) }, size: { type: Sequelize.INTEGER, allowNull: true + }, + // 建立索引,方便搜索 + // 域名配置 + md5: { + type: Sequelize.STRING(40), + allowNull: true, + unique: true, + comment: '图片md5值,防止上传重复图片' } }; From 6683d6f5e7a9bfd5ff6a8831d557b5dbb1caabde Mon Sep 17 00:00:00 2001 From: pedro Date: Mon, 20 May 2019 09:17:20 +0800 Subject: [PATCH 11/15] =?UTF-8?q?feat:=E6=B7=BB=E5=8A=A0avatar=E5=88=B0use?= =?UTF-8?q?r=E7=9A=84json=E5=BA=8F=E5=88=97=E5=8C=96=E4=B8=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/core.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/core.ts b/lib/core.ts index 038d71d..e4d7a41 100644 --- a/lib/core.ts +++ b/lib/core.ts @@ -211,6 +211,7 @@ export class User extends Model { public admin!: number; public active!: number; public email!: string; + public avatar!: string; // tslint:disable-next-line:variable-name public group_id!: number; public password!: string; @@ -260,6 +261,7 @@ export class User extends Model { admin: this.admin, active: this.active, email: this.email, + avatar: this.avatar, group_id: this.group_id, // @ts-ignore create_time: this.createTime From 93584aa30a4b8b3b427db8fafa00408ce5cdfdd0 Mon Sep 17 00:00:00 2001 From: pedro Date: Tue, 28 May 2019 22:00:22 +0800 Subject: [PATCH 12/15] =?UTF-8?q?feat:=E6=B7=BB=E5=8A=A0=E6=97=A5=E5=BF=97?= =?UTF-8?q?=E6=96=87=E4=BB=B6=E4=B9=A6=E5=86=99=E7=B1=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/extend.ts | 20 ++++ lib/{ => limit}/limiter.ts | 2 +- lib/logger/file.ts | 213 +++++++++++++++++++++++++++++++++++++ package.json | 7 +- 4 files changed, 238 insertions(+), 4 deletions(-) rename lib/{ => limit}/limiter.ts (98%) create mode 100644 lib/logger/file.ts diff --git a/lib/extend.ts b/lib/extend.ts index d45f60c..5711283 100644 --- a/lib/extend.ts +++ b/lib/extend.ts @@ -15,6 +15,12 @@ import parse from 'co-busboy'; import sendToWormhole from 'stream-wormhole'; import { extname } from 'path'; +import { Logger, FileTransport, ConsoleTransport } from 'egg-logger'; + +// const Logger = require('egg-logger').Logger; +// const FileTransport = require('egg-logger').FileTransport; +// const ConsoleTransport = require('egg-logger').ConsoleTransport; + /** * json序列化扩展 * @@ -90,6 +96,20 @@ export const success = (app: Application) => { * @param app app实例 */ export const logging = (app: Application) => { + const logger = new Logger(); + logger.set( + 'file', + new FileTransport({ + file: '/path/to/file', + level: 'INFO' + }) + ); + logger.set( + 'console', + new ConsoleTransport({ + level: 'DEBUG' + }) + ); app.context.logger = consola; }; diff --git a/lib/limiter.ts b/lib/limit/limiter.ts similarity index 98% rename from lib/limiter.ts rename to lib/limit/limiter.ts index b43d473..207ffb8 100644 --- a/lib/limiter.ts +++ b/lib/limit/limiter.ts @@ -4,7 +4,7 @@ */ import ms from 'ms'; import { RedisClient } from 'redis'; -import { Forbidden, LimitException } from './exception'; +import { Forbidden, LimitException } from '../exception'; /** * find p in redis diff --git a/lib/logger/file.ts b/lib/logger/file.ts new file mode 100644 index 0000000..e1c28b3 --- /dev/null +++ b/lib/logger/file.ts @@ -0,0 +1,213 @@ +'use strict'; + +import fs from 'fs'; +import path from 'path'; +import assert from 'assert'; +import mkdirp from 'mkdirp'; +import utility from 'utility'; +import dayjs from 'dayjs'; + +const depd = require('depd')('egg-logger'); +const utils = require('egg-logger/lib/util'); + +import { Transport } from 'egg-logger'; + +/** + * output log into file {@link Transport}。 + */ +class FileTransport extends Transport { + _stream: fs.WriteStream | null; + options: any; + logCount: number = 1; + /** + * @constructor + * @param {Object} options + * - {String} file - file path + * - {String} [level = INFO] - log level + */ + constructor(options) { + super(options); + assert(this.options.dir, 'should pass options.dir'); + + this._stream = null; + this.logCount = 1; + this.reload(); + } + + get defaults() { + // @ts-ignore + return utils.assign(super.defaults, { + file: null, + level: 'INFO' + }); + } + + /** + * reload file stream + */ + reload() { + this._closeStream(); + this._stream = this._createStream(); + } + + /** + * output log, see {@link Transport#log} + * @param {String} level - log level + * @param {Array} args - all arguments + * @param {Object} meta - meta information + */ + log(level, args, meta) { + // 根据日期 + // 每一天 + const filename = this.checkIsPresent(); + // 为false,则文件名需要更新 + // 存在,则判断是否溢出 + if (filename) { + const overflow = this.checkSizeOverflow(filename); + // 如果溢出,logCount ++ , reload + if (overflow) { + this.logCount += 1; + this.reload(); + } + } else { + this.logCount = 1; + this.reload(); + } + + if (!this.writable) { + const err = new Error(`${this.options.file} log stream had been closed`); + console.error(err.stack); + return; + } + const buf = super.log(level, args, meta); + // @ts-ignore + if (buf.length) { + this._write(buf); + } + } + + /** + * 检查当前的日志文件是否为当天 + */ + checkIsPresent() { + // 检查前面的日志 + // 2019-05-29.1.log + const filename = this.getPresentFilename(); + const exist = fs.existsSync(filename); + if (exist) { + return filename; + } else { + return false; + } + } + + getPresentFilename() { + const dir: string = path.isAbsolute(this.options.dir) + ? this.options.dir + : path.join(process.cwd(), this.options.dir); + const today = dayjs().format('YYYY-MM-DD'); + const filename = path.join(dir, `${today}.${this.logCount}.log`); + return filename; + } + + checkSizeOverflow(filename: string) { + // sizeLimit 一定得传进来 + const limit: number = this.options.sizeLimit; + const status = fs.statSync(filename); + // 是否溢出 + return status.size > limit; + } + + /** + * close stream + */ + close() { + this._closeStream(); + } + + /** + * @deprecated + */ + end() { + depd('transport.end() is deprecated, use transport.close()'); + this.close(); + } + + /** + * write stream directly + * @param {Buffer|String} buf - log content + * @private + */ + _write(buf) { + this._stream!.write(buf); + } + + /** + * transport is writable + * @return {Boolean} writable + */ + get writable() { + return ( + this._stream && + // @ts-ignore + !this._stream.closed && + this._stream.writable && + // @ts-ignore + !this._stream.destroyed + ); + } + + /** + * create stream + * @return {Stream} return writeStream + * @private + */ + _createStream() { + // 获得文件名 + const filename = this.getPresentFilename(); + // 获得文件夹名 + const dirp = path.dirname(filename); + // 创建文件夹 + if (!fs.existsSync(dirp)) { + mkdirp.sync(dirp); + } + const stream = fs.createWriteStream(filename, { flags: 'a' }); + + const onError = err => { + console.error( + '%s ERROR %s [logger] [%s] %s', + utility.logDate(','), + process.pid, + filename, + err.stack + ); + this.reload(); + console.warn( + '%s WARN %s [logger] [%s] reloaded', + utility.logDate(','), + process.pid, + filename + ); + }; + // only listen error once because stream will reload after error + stream.once('error', onError); + // @ts-ignore + stream._onError = onError; + return stream; + } + + /** + * close stream + * @private + */ + _closeStream() { + if (this._stream) { + this._stream.end(); + // @ts-ignore + this._stream.removeListener('error', this._stream._onError); + this._stream = null; + } + } +} + +module.exports = FileTransport; diff --git a/package.json b/package.json index a5824eb..07f4536 100644 --- a/package.json +++ b/package.json @@ -17,8 +17,10 @@ "license": "MIT", "dependencies": { "class-validator": "^0.9.1", + "co-busboy": "^1.4.0", "consola": "^2.5.6", "dayjs": "^1.8.9", + "egg-logger": "^2.4.1", "is-async-function": "^1.2.3", "jsonwebtoken": "^8.5.0", "koa": "^2.7.0", @@ -27,10 +29,9 @@ "mysql2": "^1.6.5", "mz-modules": "^2.1.0", "sequelize": "^5.3.5", + "stream-wormhole": "^1.1.0", "tslib": "^1.9.3", - "uuid": "^3.3.2", - "co-busboy": "^1.4.0", - "stream-wormhole": "^1.1.0" + "uuid": "^3.3.2" }, "devDependencies": { "@types/consola": "^1.0.0", From 81c0a18a639cffbf0427f6c7c01985bf53891d74 Mon Sep 17 00:00:00 2001 From: pedro Date: Wed, 29 May 2019 21:53:31 +0800 Subject: [PATCH 13/15] =?UTF-8?q?feat:=E5=AE=8C=E5=96=84=E6=97=A5=E5=BF=97?= =?UTF-8?q?=E8=AE=B0=E5=BD=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 3 ++- .npmignore | 3 ++- example/logger.js | 32 ++++++++++++++++++++++++++++++++ lib/extend.ts | 28 ++++++++++++++-------------- lib/logger/file.ts | 7 +++---- 5 files changed, 53 insertions(+), 20 deletions(-) create mode 100644 example/logger.js diff --git a/.gitignore b/.gitignore index fe19541..7d4623a 100644 --- a/.gitignore +++ b/.gitignore @@ -16,4 +16,5 @@ dist learn tokens.json abandon -lin/ \ No newline at end of file +lin/ +log \ No newline at end of file diff --git a/.npmignore b/.npmignore index 049a02f..d348261 100644 --- a/.npmignore +++ b/.npmignore @@ -18,4 +18,5 @@ learn abandon bin example -docs \ No newline at end of file +docs +log \ No newline at end of file diff --git a/example/logger.js b/example/logger.js new file mode 100644 index 0000000..8730e62 --- /dev/null +++ b/example/logger.js @@ -0,0 +1,32 @@ +const Logger = require('egg-logger').Logger; +const ConsoleTransport = require('egg-logger').ConsoleTransport; + +const { FileTransport } = require('../lin/logger/file'); + +const logger = new Logger(); +logger.set( + 'file', + new FileTransport({ + dir: 'log', + sizeLimit: 1024 * 5, + level: 'INFO' + }) +); +logger.set( + 'console', + new ConsoleTransport({ + level: 'DEBUG' + }) +); + +logger.debug('debug foo'); // only output to stdout +logger.info('info foo'); + +// for (let i = 0; i < 1000; i++) {} + +setInterval(() => { + logger.info('loop'); +}, 100); + +logger.warn('warn foo'); +logger.error(new Error('error foo')); diff --git a/lib/extend.ts b/lib/extend.ts index 5711283..31c6616 100644 --- a/lib/extend.ts +++ b/lib/extend.ts @@ -96,20 +96,20 @@ export const success = (app: Application) => { * @param app app实例 */ export const logging = (app: Application) => { - const logger = new Logger(); - logger.set( - 'file', - new FileTransport({ - file: '/path/to/file', - level: 'INFO' - }) - ); - logger.set( - 'console', - new ConsoleTransport({ - level: 'DEBUG' - }) - ); + // const logger = new Logger(); + // logger.set( + // 'file', + // new FileTransport({ + // file: '/path/to/file', + // level: 'INFO' + // }) + // ); + // logger.set( + // 'console', + // new ConsoleTransport({ + // level: 'DEBUG' + // }) + // ); app.context.logger = consola; }; diff --git a/lib/logger/file.ts b/lib/logger/file.ts index e1c28b3..f617097 100644 --- a/lib/logger/file.ts +++ b/lib/logger/file.ts @@ -8,14 +8,14 @@ import utility from 'utility'; import dayjs from 'dayjs'; const depd = require('depd')('egg-logger'); -const utils = require('egg-logger/lib/util'); +const utils = require('egg-logger/lib/utils'); import { Transport } from 'egg-logger'; /** * output log into file {@link Transport}。 */ -class FileTransport extends Transport { +export class FileTransport extends Transport { _stream: fs.WriteStream | null; options: any; logCount: number = 1; @@ -28,6 +28,7 @@ class FileTransport extends Transport { constructor(options) { super(options); assert(this.options.dir, 'should pass options.dir'); + assert(this.options.sizeLimit, 'should pass options.sizeLimit'); this._stream = null; this.logCount = 1; @@ -209,5 +210,3 @@ class FileTransport extends Transport { } } } - -module.exports = FileTransport; From 81b49937a46db43b88f0b4f2da9a9a22dda9871e Mon Sep 17 00:00:00 2001 From: pedro Date: Thu, 30 May 2019 12:58:06 +0800 Subject: [PATCH 14/15] =?UTF-8?q?fix:=E4=BF=AE=E5=A4=8D=E6=96=87=E4=BB=B6?= =?UTF-8?q?=E4=B8=8A=E4=BC=A0=E7=9A=84=E7=8E=AF=E5=A2=83bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/extend.ts | 5 +++-- lib/file.ts | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/lib/extend.ts b/lib/extend.ts index 31c6616..ffb538e 100644 --- a/lib/extend.ts +++ b/lib/extend.ts @@ -151,6 +151,7 @@ export const multipart = (app: Application) => { } // otherwise, it's a stream // part.fieldname, part.filename, part.encoding, part.mime + // _readableState.length // part.readableLength 31492 检查单个文件的大小 // 超过长度,报错 // 检查extension,报错 @@ -161,7 +162,7 @@ export const multipart = (app: Application) => { throw new FileExtensionException({ msg: `不支持类型为${ext}的文件` }); } const { valid, conf } = checkSingleFileSize( - part.readableLength, + part._readableState.length, opts && opts.singleLimit ); if (!valid) { @@ -170,7 +171,7 @@ export const multipart = (app: Application) => { }); } // 计算总大小 - totalSize += part.readableLength; + totalSize += part._readableState.length; const tmp = cloneDeep(part); files.push(tmp); // 恢复再次接受data diff --git a/lib/file.ts b/lib/file.ts index 12dee70..ac0ab21 100644 --- a/lib/file.ts +++ b/lib/file.ts @@ -80,7 +80,7 @@ export class Uploader { * 生成图片的md5 */ public generateMd5(data: any) { - const buf = data.readableBuffer._getBuffer(data.readableLength); + const buf = data._readableState.buffer.head.data; const md5 = crypto.createHash('md5'); return md5.update(buf).digest('hex'); } From c1de5b13e37f766d0be3d1cad98f94803715c8a6 Mon Sep 17 00:00:00 2001 From: pedro Date: Sun, 2 Jun 2019 22:56:54 +0800 Subject: [PATCH 15/15] =?UTF-8?q?feat:=E6=B7=BB=E5=8A=A0update=5Ftime?= =?UTF-8?q?=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/assets/js/search.js | 2 +- docs/classes/_config_.config.html | 19 +- docs/classes/_core_.auth.html | 15 +- docs/classes/_core_.file.html | 42 +- docs/classes/_core_.group.html | 13 +- docs/classes/_core_.lin.html | 21 +- docs/classes/_core_.log.html | 27 +- docs/classes/_core_.manager.html | 23 +- docs/classes/_core_.user.html | 49 +- docs/classes/_exception_.authfailed.html | 15 +- .../_exception_.expiredtokenexception.html | 15 +- docs/classes/_exception_.failed.html | 15 +- .../_exception_.fileextensionexception.html | 15 +- .../_exception_.filetoolargeexception.html | 15 +- .../_exception_.filetoomanyexception.html | 15 +- docs/classes/_exception_.forbidden.html | 15 +- docs/classes/_exception_.httpexception.html | 15 +- .../_exception_.invalidtokenexception.html | 15 +- docs/classes/_exception_.limitexception.html | 15 +- .../classes/_exception_.methodnotallowed.html | 15 +- docs/classes/_exception_.notfound.html | 15 +- .../_exception_.parametersexception.html | 15 +- .../classes/_exception_.refreshexception.html | 15 +- docs/classes/_exception_.repeatexception.html | 15 +- docs/classes/_exception_.success.html | 15 +- .../classes/_exception_.unknownexception.html | 15 +- ...extended_validator_.extendedvalidator.html | 27 +- docs/classes/_file_.uploader.html | 98 ++- docs/classes/_jwt_.token.html | 21 +- docs/classes/_lin_router_.linrouter.html | 19 +- .../classes/_lin_router_.linrouter.layer.html | 5 +- .../_lin_router_.linrouter.paramname.html | 5 +- .../classes/_lin_validator_.linvalidator.html | 27 +- docs/classes/_lin_validator_.rule.html | 23 +- docs/classes/_loader_.loader.html | 23 +- docs/classes/_logger_file_.filetransport.html | 820 ++++++++++++++++++ docs/classes/_mixin_.jsonmixin.html | 7 +- docs/classes/_plugin_.plugin.html | 19 +- docs/classes/_sse_.messagebroker.html | 35 +- docs/classes/_sse_.sse.html | 9 +- docs/classes/_sse_.subscription.html | 11 +- docs/enums/_enums_.tokentype.html | 9 +- docs/enums/_enums_.useractive.html | 9 +- docs/enums/_enums_.useradmin.html | 9 +- docs/globals.html | 8 +- docs/index.html | 5 +- docs/interfaces/_core_.fileargs.html | 29 +- docs/interfaces/_core_.logargs.html | 19 +- docs/interfaces/_exception_.exception.html | 11 +- docs/interfaces/_extend_.mulopts.html | 369 ++++++++ .../_extended_validator_.isfloatoptions.html | 13 +- .../_extended_validator_.isintoptions.html | 15 +- ... => _limit_limiter_.ratelimitoptions.html} | 93 +- .../_lin_router_.linrouter.ilayeroptions.html | 5 +- ...in_router_.linrouter.iparammiddleware.html | 5 +- ...inrouter.irouterallowedmethodsoptions.html | 5 +- ..._lin_router_.linrouter.iroutercontext.html | 5 +- ..._lin_router_.linrouter.irouteroptions.html | 5 +- ...router_.linrouter.irouterparamcontext.html | 5 +- .../_lin_router_.linrouter.iroutesmatch.html | 5 +- ...in_router_.linrouter.iurloptionsquery.html | 5 +- docs/interfaces/_lin_router_.meta.html | 11 +- docs/interfaces/_password_hash_.option.html | 11 +- docs/interfaces/_util_.objoptions.html | 9 +- docs/modules/_config_.html | 7 +- docs/modules/_core_.html | 11 +- docs/modules/_db_.html | 21 +- docs/modules/_enums_.html | 5 +- docs/modules/_exception_.html | 5 +- docs/modules/_extend_.html | 55 +- docs/modules/_extended_validator_.html | 7 +- docs/modules/_factory_.html | 7 +- docs/modules/_file_.html | 5 +- docs/modules/_index_.html | 5 +- docs/modules/_interface_.html | 420 +++++---- docs/modules/_jwt_.html | 31 +- .../{_limiter_.html => _limit_limiter_.html} | 43 +- docs/modules/_lin_router_.html | 5 +- docs/modules/_lin_validator_.html | 5 +- docs/modules/_loader_.html | 5 +- docs/modules/_log_.html | 13 +- docs/modules/_logger_file_.html | 275 ++++++ docs/modules/_middleware_.html | 9 +- docs/modules/_mixin_.html | 5 +- docs/modules/_password_hash_.html | 19 +- docs/modules/_plugin_.html | 5 +- docs/modules/_sse_.html | 5 +- docs/modules/_util_.html | 59 +- lib/core.ts | 4 +- lib/interface.ts | 4 + package.json | 2 +- 91 files changed, 2638 insertions(+), 674 deletions(-) create mode 100644 docs/classes/_logger_file_.filetransport.html create mode 100644 docs/interfaces/_extend_.mulopts.html rename docs/interfaces/{_limiter_.ratelimitoptions.html => _limit_limiter_.ratelimitoptions.html} (80%) rename docs/modules/{_limiter_.html => _limit_limiter_.html} (88%) create mode 100644 docs/modules/_logger_file_.html diff --git a/docs/assets/js/search.js b/docs/assets/js/search.js index 9bf4f80..6813ca8 100644 --- a/docs/assets/js/search.js +++ b/docs/assets/js/search.js @@ -1,3 +1,3 @@ var typedoc = typedoc || {}; typedoc.search = typedoc.search || {}; - typedoc.search.data = {"kinds":{"1":"External module","4":"Enumeration","16":"Enumeration member","32":"Variable","64":"Function","128":"Class","256":"Interface","512":"Constructor","1024":"Property","2048":"Method","65536":"Type literal","262144":"Accessor","2097152":"Object literal","4194304":"Type alias"},"rows":[{"id":0,"kind":1,"name":"\"config\"","url":"modules/_config_.html","classes":"tsd-kind-external-module"},{"id":1,"kind":128,"name":"Config","url":"classes/_config_.config.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"config\""},{"id":2,"kind":1024,"name":"store","url":"classes/_config_.config.html#store","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"config\".Config"},{"id":3,"kind":2048,"name":"initApp","url":"classes/_config_.config.html#initapp","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"config\".Config"},{"id":4,"kind":2048,"name":"getItem","url":"classes/_config_.config.html#getitem","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"config\".Config"},{"id":5,"kind":2048,"name":"hasItem","url":"classes/_config_.config.html#hasitem","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"config\".Config"},{"id":6,"kind":2048,"name":"setItem","url":"classes/_config_.config.html#setitem","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"config\".Config"},{"id":7,"kind":2048,"name":"getConfigFromFile","url":"classes/_config_.config.html#getconfigfromfile","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"config\".Config"},{"id":8,"kind":2048,"name":"getConfigFromObj","url":"classes/_config_.config.html#getconfigfromobj","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"config\".Config"},{"id":9,"kind":32,"name":"config","url":"modules/_config_.html#config-1","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"config\""},{"id":10,"kind":1,"name":"\"exception\"","url":"modules/_exception_.html","classes":"tsd-kind-external-module"},{"id":11,"kind":256,"name":"Exception","url":"interfaces/_exception_.exception.html","classes":"tsd-kind-interface tsd-parent-kind-external-module","parent":"\"exception\""},{"id":12,"kind":1024,"name":"code","url":"interfaces/_exception_.exception.html#code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"exception\".Exception"},{"id":13,"kind":1024,"name":"msg","url":"interfaces/_exception_.exception.html#msg","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"exception\".Exception"},{"id":14,"kind":1024,"name":"errorCode","url":"interfaces/_exception_.exception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"exception\".Exception"},{"id":15,"kind":128,"name":"HttpException","url":"classes/_exception_.httpexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":16,"kind":1024,"name":"code","url":"classes/_exception_.httpexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"exception\".HttpException"},{"id":17,"kind":1024,"name":"msg","url":"classes/_exception_.httpexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"exception\".HttpException"},{"id":18,"kind":1024,"name":"errorCode","url":"classes/_exception_.httpexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"exception\".HttpException"},{"id":19,"kind":1024,"name":"fields","url":"classes/_exception_.httpexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"exception\".HttpException"},{"id":20,"kind":512,"name":"constructor","url":"classes/_exception_.httpexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"exception\".HttpException"},{"id":21,"kind":1024,"name":"name","url":"classes/_exception_.httpexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".HttpException"},{"id":22,"kind":1024,"name":"message","url":"classes/_exception_.httpexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".HttpException"},{"id":23,"kind":1024,"name":"stack","url":"classes/_exception_.httpexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".HttpException"},{"id":24,"kind":1024,"name":"Error","url":"classes/_exception_.httpexception.html#error","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"\"exception\".HttpException"},{"id":25,"kind":128,"name":"Success","url":"classes/_exception_.success.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":26,"kind":1024,"name":"code","url":"classes/_exception_.success.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Success"},{"id":27,"kind":1024,"name":"msg","url":"classes/_exception_.success.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Success"},{"id":28,"kind":1024,"name":"errorCode","url":"classes/_exception_.success.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Success"},{"id":29,"kind":512,"name":"constructor","url":"classes/_exception_.success.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Success"},{"id":30,"kind":1024,"name":"fields","url":"classes/_exception_.success.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Success"},{"id":31,"kind":1024,"name":"name","url":"classes/_exception_.success.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Success"},{"id":32,"kind":1024,"name":"message","url":"classes/_exception_.success.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Success"},{"id":33,"kind":1024,"name":"stack","url":"classes/_exception_.success.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".Success"},{"id":34,"kind":128,"name":"Failed","url":"classes/_exception_.failed.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":35,"kind":1024,"name":"code","url":"classes/_exception_.failed.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Failed"},{"id":36,"kind":1024,"name":"msg","url":"classes/_exception_.failed.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Failed"},{"id":37,"kind":1024,"name":"errorCode","url":"classes/_exception_.failed.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Failed"},{"id":38,"kind":512,"name":"constructor","url":"classes/_exception_.failed.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Failed"},{"id":39,"kind":1024,"name":"fields","url":"classes/_exception_.failed.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Failed"},{"id":40,"kind":1024,"name":"name","url":"classes/_exception_.failed.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Failed"},{"id":41,"kind":1024,"name":"message","url":"classes/_exception_.failed.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Failed"},{"id":42,"kind":1024,"name":"stack","url":"classes/_exception_.failed.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".Failed"},{"id":43,"kind":128,"name":"AuthFailed","url":"classes/_exception_.authfailed.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":44,"kind":1024,"name":"code","url":"classes/_exception_.authfailed.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".AuthFailed"},{"id":45,"kind":1024,"name":"msg","url":"classes/_exception_.authfailed.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".AuthFailed"},{"id":46,"kind":1024,"name":"errorCode","url":"classes/_exception_.authfailed.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".AuthFailed"},{"id":47,"kind":512,"name":"constructor","url":"classes/_exception_.authfailed.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".AuthFailed"},{"id":48,"kind":1024,"name":"fields","url":"classes/_exception_.authfailed.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".AuthFailed"},{"id":49,"kind":1024,"name":"name","url":"classes/_exception_.authfailed.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".AuthFailed"},{"id":50,"kind":1024,"name":"message","url":"classes/_exception_.authfailed.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".AuthFailed"},{"id":51,"kind":1024,"name":"stack","url":"classes/_exception_.authfailed.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".AuthFailed"},{"id":52,"kind":128,"name":"NotFound","url":"classes/_exception_.notfound.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":53,"kind":1024,"name":"code","url":"classes/_exception_.notfound.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".NotFound"},{"id":54,"kind":1024,"name":"msg","url":"classes/_exception_.notfound.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".NotFound"},{"id":55,"kind":1024,"name":"errorCode","url":"classes/_exception_.notfound.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".NotFound"},{"id":56,"kind":512,"name":"constructor","url":"classes/_exception_.notfound.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".NotFound"},{"id":57,"kind":1024,"name":"fields","url":"classes/_exception_.notfound.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".NotFound"},{"id":58,"kind":1024,"name":"name","url":"classes/_exception_.notfound.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".NotFound"},{"id":59,"kind":1024,"name":"message","url":"classes/_exception_.notfound.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".NotFound"},{"id":60,"kind":1024,"name":"stack","url":"classes/_exception_.notfound.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".NotFound"},{"id":61,"kind":128,"name":"ParametersException","url":"classes/_exception_.parametersexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":62,"kind":1024,"name":"code","url":"classes/_exception_.parametersexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ParametersException"},{"id":63,"kind":1024,"name":"msg","url":"classes/_exception_.parametersexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ParametersException"},{"id":64,"kind":1024,"name":"errorCode","url":"classes/_exception_.parametersexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ParametersException"},{"id":65,"kind":512,"name":"constructor","url":"classes/_exception_.parametersexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ParametersException"},{"id":66,"kind":1024,"name":"fields","url":"classes/_exception_.parametersexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".ParametersException"},{"id":67,"kind":1024,"name":"name","url":"classes/_exception_.parametersexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".ParametersException"},{"id":68,"kind":1024,"name":"message","url":"classes/_exception_.parametersexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".ParametersException"},{"id":69,"kind":1024,"name":"stack","url":"classes/_exception_.parametersexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".ParametersException"},{"id":70,"kind":128,"name":"InvalidTokenException","url":"classes/_exception_.invalidtokenexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":71,"kind":1024,"name":"code","url":"classes/_exception_.invalidtokenexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".InvalidTokenException"},{"id":72,"kind":1024,"name":"msg","url":"classes/_exception_.invalidtokenexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".InvalidTokenException"},{"id":73,"kind":1024,"name":"errorCode","url":"classes/_exception_.invalidtokenexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".InvalidTokenException"},{"id":74,"kind":512,"name":"constructor","url":"classes/_exception_.invalidtokenexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".InvalidTokenException"},{"id":75,"kind":1024,"name":"fields","url":"classes/_exception_.invalidtokenexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".InvalidTokenException"},{"id":76,"kind":1024,"name":"name","url":"classes/_exception_.invalidtokenexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".InvalidTokenException"},{"id":77,"kind":1024,"name":"message","url":"classes/_exception_.invalidtokenexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".InvalidTokenException"},{"id":78,"kind":1024,"name":"stack","url":"classes/_exception_.invalidtokenexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".InvalidTokenException"},{"id":79,"kind":128,"name":"ExpiredTokenException","url":"classes/_exception_.expiredtokenexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":80,"kind":1024,"name":"code","url":"classes/_exception_.expiredtokenexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ExpiredTokenException"},{"id":81,"kind":1024,"name":"msg","url":"classes/_exception_.expiredtokenexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ExpiredTokenException"},{"id":82,"kind":1024,"name":"errorCode","url":"classes/_exception_.expiredtokenexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ExpiredTokenException"},{"id":83,"kind":512,"name":"constructor","url":"classes/_exception_.expiredtokenexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ExpiredTokenException"},{"id":84,"kind":1024,"name":"fields","url":"classes/_exception_.expiredtokenexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".ExpiredTokenException"},{"id":85,"kind":1024,"name":"name","url":"classes/_exception_.expiredtokenexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".ExpiredTokenException"},{"id":86,"kind":1024,"name":"message","url":"classes/_exception_.expiredtokenexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".ExpiredTokenException"},{"id":87,"kind":1024,"name":"stack","url":"classes/_exception_.expiredtokenexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".ExpiredTokenException"},{"id":88,"kind":128,"name":"UnknownException","url":"classes/_exception_.unknownexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":89,"kind":1024,"name":"code","url":"classes/_exception_.unknownexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".UnknownException"},{"id":90,"kind":1024,"name":"msg","url":"classes/_exception_.unknownexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".UnknownException"},{"id":91,"kind":1024,"name":"errorCode","url":"classes/_exception_.unknownexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".UnknownException"},{"id":92,"kind":512,"name":"constructor","url":"classes/_exception_.unknownexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".UnknownException"},{"id":93,"kind":1024,"name":"fields","url":"classes/_exception_.unknownexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".UnknownException"},{"id":94,"kind":1024,"name":"name","url":"classes/_exception_.unknownexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".UnknownException"},{"id":95,"kind":1024,"name":"message","url":"classes/_exception_.unknownexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".UnknownException"},{"id":96,"kind":1024,"name":"stack","url":"classes/_exception_.unknownexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".UnknownException"},{"id":97,"kind":128,"name":"RepeatException","url":"classes/_exception_.repeatexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":98,"kind":1024,"name":"code","url":"classes/_exception_.repeatexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RepeatException"},{"id":99,"kind":1024,"name":"msg","url":"classes/_exception_.repeatexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RepeatException"},{"id":100,"kind":1024,"name":"errorCode","url":"classes/_exception_.repeatexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RepeatException"},{"id":101,"kind":512,"name":"constructor","url":"classes/_exception_.repeatexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RepeatException"},{"id":102,"kind":1024,"name":"fields","url":"classes/_exception_.repeatexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".RepeatException"},{"id":103,"kind":1024,"name":"name","url":"classes/_exception_.repeatexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".RepeatException"},{"id":104,"kind":1024,"name":"message","url":"classes/_exception_.repeatexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".RepeatException"},{"id":105,"kind":1024,"name":"stack","url":"classes/_exception_.repeatexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".RepeatException"},{"id":106,"kind":128,"name":"Forbidden","url":"classes/_exception_.forbidden.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":107,"kind":1024,"name":"code","url":"classes/_exception_.forbidden.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Forbidden"},{"id":108,"kind":1024,"name":"msg","url":"classes/_exception_.forbidden.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Forbidden"},{"id":109,"kind":1024,"name":"errorCode","url":"classes/_exception_.forbidden.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Forbidden"},{"id":110,"kind":512,"name":"constructor","url":"classes/_exception_.forbidden.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Forbidden"},{"id":111,"kind":1024,"name":"fields","url":"classes/_exception_.forbidden.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Forbidden"},{"id":112,"kind":1024,"name":"name","url":"classes/_exception_.forbidden.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Forbidden"},{"id":113,"kind":1024,"name":"message","url":"classes/_exception_.forbidden.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Forbidden"},{"id":114,"kind":1024,"name":"stack","url":"classes/_exception_.forbidden.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".Forbidden"},{"id":115,"kind":128,"name":"MethodNotAllowed","url":"classes/_exception_.methodnotallowed.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":116,"kind":1024,"name":"code","url":"classes/_exception_.methodnotallowed.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".MethodNotAllowed"},{"id":117,"kind":1024,"name":"msg","url":"classes/_exception_.methodnotallowed.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".MethodNotAllowed"},{"id":118,"kind":1024,"name":"errorCode","url":"classes/_exception_.methodnotallowed.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".MethodNotAllowed"},{"id":119,"kind":512,"name":"constructor","url":"classes/_exception_.methodnotallowed.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".MethodNotAllowed"},{"id":120,"kind":1024,"name":"fields","url":"classes/_exception_.methodnotallowed.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".MethodNotAllowed"},{"id":121,"kind":1024,"name":"name","url":"classes/_exception_.methodnotallowed.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".MethodNotAllowed"},{"id":122,"kind":1024,"name":"message","url":"classes/_exception_.methodnotallowed.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".MethodNotAllowed"},{"id":123,"kind":1024,"name":"stack","url":"classes/_exception_.methodnotallowed.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".MethodNotAllowed"},{"id":124,"kind":128,"name":"RefreshException","url":"classes/_exception_.refreshexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":125,"kind":1024,"name":"code","url":"classes/_exception_.refreshexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RefreshException"},{"id":126,"kind":1024,"name":"msg","url":"classes/_exception_.refreshexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RefreshException"},{"id":127,"kind":1024,"name":"errorCode","url":"classes/_exception_.refreshexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RefreshException"},{"id":128,"kind":512,"name":"constructor","url":"classes/_exception_.refreshexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RefreshException"},{"id":129,"kind":1024,"name":"fields","url":"classes/_exception_.refreshexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".RefreshException"},{"id":130,"kind":1024,"name":"name","url":"classes/_exception_.refreshexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".RefreshException"},{"id":131,"kind":1024,"name":"message","url":"classes/_exception_.refreshexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".RefreshException"},{"id":132,"kind":1024,"name":"stack","url":"classes/_exception_.refreshexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".RefreshException"},{"id":133,"kind":128,"name":"FileTooLargeException","url":"classes/_exception_.filetoolargeexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":134,"kind":1024,"name":"code","url":"classes/_exception_.filetoolargeexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileTooLargeException"},{"id":135,"kind":1024,"name":"msg","url":"classes/_exception_.filetoolargeexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileTooLargeException"},{"id":136,"kind":1024,"name":"errorCode","url":"classes/_exception_.filetoolargeexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileTooLargeException"},{"id":137,"kind":512,"name":"constructor","url":"classes/_exception_.filetoolargeexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileTooLargeException"},{"id":138,"kind":1024,"name":"fields","url":"classes/_exception_.filetoolargeexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".FileTooLargeException"},{"id":139,"kind":1024,"name":"name","url":"classes/_exception_.filetoolargeexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".FileTooLargeException"},{"id":140,"kind":1024,"name":"message","url":"classes/_exception_.filetoolargeexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".FileTooLargeException"},{"id":141,"kind":1024,"name":"stack","url":"classes/_exception_.filetoolargeexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".FileTooLargeException"},{"id":142,"kind":128,"name":"FileTooManyException","url":"classes/_exception_.filetoomanyexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":143,"kind":1024,"name":"code","url":"classes/_exception_.filetoomanyexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileTooManyException"},{"id":144,"kind":1024,"name":"msg","url":"classes/_exception_.filetoomanyexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileTooManyException"},{"id":145,"kind":1024,"name":"errorCode","url":"classes/_exception_.filetoomanyexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileTooManyException"},{"id":146,"kind":512,"name":"constructor","url":"classes/_exception_.filetoomanyexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileTooManyException"},{"id":147,"kind":1024,"name":"fields","url":"classes/_exception_.filetoomanyexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".FileTooManyException"},{"id":148,"kind":1024,"name":"name","url":"classes/_exception_.filetoomanyexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".FileTooManyException"},{"id":149,"kind":1024,"name":"message","url":"classes/_exception_.filetoomanyexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".FileTooManyException"},{"id":150,"kind":1024,"name":"stack","url":"classes/_exception_.filetoomanyexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".FileTooManyException"},{"id":151,"kind":128,"name":"FileExtensionException","url":"classes/_exception_.fileextensionexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":152,"kind":1024,"name":"code","url":"classes/_exception_.fileextensionexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileExtensionException"},{"id":153,"kind":1024,"name":"msg","url":"classes/_exception_.fileextensionexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileExtensionException"},{"id":154,"kind":1024,"name":"errorCode","url":"classes/_exception_.fileextensionexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileExtensionException"},{"id":155,"kind":512,"name":"constructor","url":"classes/_exception_.fileextensionexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileExtensionException"},{"id":156,"kind":1024,"name":"fields","url":"classes/_exception_.fileextensionexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".FileExtensionException"},{"id":157,"kind":1024,"name":"name","url":"classes/_exception_.fileextensionexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".FileExtensionException"},{"id":158,"kind":1024,"name":"message","url":"classes/_exception_.fileextensionexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".FileExtensionException"},{"id":159,"kind":1024,"name":"stack","url":"classes/_exception_.fileextensionexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".FileExtensionException"},{"id":160,"kind":128,"name":"LimitException","url":"classes/_exception_.limitexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":161,"kind":1024,"name":"code","url":"classes/_exception_.limitexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".LimitException"},{"id":162,"kind":1024,"name":"msg","url":"classes/_exception_.limitexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".LimitException"},{"id":163,"kind":1024,"name":"errorCode","url":"classes/_exception_.limitexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".LimitException"},{"id":164,"kind":512,"name":"constructor","url":"classes/_exception_.limitexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".LimitException"},{"id":165,"kind":1024,"name":"fields","url":"classes/_exception_.limitexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".LimitException"},{"id":166,"kind":1024,"name":"name","url":"classes/_exception_.limitexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".LimitException"},{"id":167,"kind":1024,"name":"message","url":"classes/_exception_.limitexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".LimitException"},{"id":168,"kind":1024,"name":"stack","url":"classes/_exception_.limitexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".LimitException"},{"id":169,"kind":1,"name":"\"enums\"","url":"modules/_enums_.html","classes":"tsd-kind-external-module"},{"id":170,"kind":4,"name":"UserAdmin","url":"enums/_enums_.useradmin.html","classes":"tsd-kind-enum tsd-parent-kind-external-module","parent":"\"enums\""},{"id":171,"kind":16,"name":"COMMON","url":"enums/_enums_.useradmin.html#common","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"enums\".UserAdmin"},{"id":172,"kind":16,"name":"ADMIN","url":"enums/_enums_.useradmin.html#admin","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"enums\".UserAdmin"},{"id":173,"kind":4,"name":"UserActive","url":"enums/_enums_.useractive.html","classes":"tsd-kind-enum tsd-parent-kind-external-module","parent":"\"enums\""},{"id":174,"kind":16,"name":"ACTIVE","url":"enums/_enums_.useractive.html#active","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"enums\".UserActive"},{"id":175,"kind":16,"name":"NOT_ACTIVE","url":"enums/_enums_.useractive.html#not_active","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"enums\".UserActive"},{"id":176,"kind":4,"name":"TokenType","url":"enums/_enums_.tokentype.html","classes":"tsd-kind-enum tsd-parent-kind-external-module","parent":"\"enums\""},{"id":177,"kind":16,"name":"ACCESS","url":"enums/_enums_.tokentype.html#access","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"enums\".TokenType"},{"id":178,"kind":16,"name":"REFRESH","url":"enums/_enums_.tokentype.html#refresh","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"enums\".TokenType"},{"id":179,"kind":1,"name":"\"jwt\"","url":"modules/_jwt_.html","classes":"tsd-kind-external-module"},{"id":180,"kind":128,"name":"Token","url":"classes/_jwt_.token.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"jwt\""},{"id":181,"kind":1024,"name":"secret","url":"classes/_jwt_.token.html#secret","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":182,"kind":1024,"name":"accessExp","url":"classes/_jwt_.token.html#accessexp","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":183,"kind":1024,"name":"refreshExp","url":"classes/_jwt_.token.html#refreshexp","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":184,"kind":512,"name":"constructor","url":"classes/_jwt_.token.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":185,"kind":2048,"name":"initApp","url":"classes/_jwt_.token.html#initapp","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":186,"kind":2048,"name":"createAccessToken","url":"classes/_jwt_.token.html#createaccesstoken","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":187,"kind":2048,"name":"createRefreshToken","url":"classes/_jwt_.token.html#createrefreshtoken","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":188,"kind":2048,"name":"verifyToken","url":"classes/_jwt_.token.html#verifytoken","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":189,"kind":32,"name":"jwt","url":"modules/_jwt_.html#jwt","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":190,"kind":64,"name":"createAccessToken","url":"modules/_jwt_.html#createaccesstoken","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"jwt\""},{"id":191,"kind":64,"name":"createRefreshToken","url":"modules/_jwt_.html#createrefreshtoken","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"jwt\""},{"id":192,"kind":64,"name":"verifyAccessToken","url":"modules/_jwt_.html#verifyaccesstoken","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"jwt\""},{"id":193,"kind":64,"name":"verifyRefreshToken","url":"modules/_jwt_.html#verifyrefreshtoken","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"jwt\""},{"id":194,"kind":64,"name":"getTokens","url":"modules/_jwt_.html#gettokens","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":195,"kind":64,"name":"parseHeader","url":"modules/_jwt_.html#parseheader","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":196,"kind":64,"name":"checkUserIsActive","url":"modules/_jwt_.html#checkuserisactive","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":197,"kind":64,"name":"loginRequired","url":"modules/_jwt_.html#loginrequired","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":198,"kind":64,"name":"refreshTokenRequired","url":"modules/_jwt_.html#refreshtokenrequired","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":199,"kind":64,"name":"refreshTokenRequiredWithUnifyException","url":"modules/_jwt_.html#refreshtokenrequiredwithunifyexception","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":200,"kind":64,"name":"groupRequired","url":"modules/_jwt_.html#grouprequired","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":201,"kind":64,"name":"adminRequired","url":"modules/_jwt_.html#adminrequired","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":202,"kind":1,"name":"\"extended-validator\"","url":"modules/_extended_validator_.html","classes":"tsd-kind-external-module"},{"id":203,"kind":256,"name":"IsFloatOptions","url":"interfaces/_extended_validator_.isfloatoptions.html","classes":"tsd-kind-interface tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"extended-validator\""},{"id":204,"kind":1024,"name":"min","url":"interfaces/_extended_validator_.isfloatoptions.html#min","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsFloatOptions"},{"id":205,"kind":1024,"name":"max","url":"interfaces/_extended_validator_.isfloatoptions.html#max","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsFloatOptions"},{"id":206,"kind":1024,"name":"gt","url":"interfaces/_extended_validator_.isfloatoptions.html#gt","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsFloatOptions"},{"id":207,"kind":1024,"name":"lt","url":"interfaces/_extended_validator_.isfloatoptions.html#lt","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsFloatOptions"},{"id":208,"kind":256,"name":"IsIntOptions","url":"interfaces/_extended_validator_.isintoptions.html","classes":"tsd-kind-interface tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"extended-validator\""},{"id":209,"kind":1024,"name":"min","url":"interfaces/_extended_validator_.isintoptions.html#min","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsIntOptions"},{"id":210,"kind":1024,"name":"max","url":"interfaces/_extended_validator_.isintoptions.html#max","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsIntOptions"},{"id":211,"kind":1024,"name":"allow_leading_zeroes","url":"interfaces/_extended_validator_.isintoptions.html#allow_leading_zeroes","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsIntOptions"},{"id":212,"kind":1024,"name":"lt","url":"interfaces/_extended_validator_.isintoptions.html#lt","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsIntOptions"},{"id":213,"kind":1024,"name":"gt","url":"interfaces/_extended_validator_.isintoptions.html#gt","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsIntOptions"},{"id":214,"kind":128,"name":"ExtendedValidator","url":"classes/_extended_validator_.extendedvalidator.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"extended-validator\""},{"id":215,"kind":2048,"name":"hasProperty","url":"classes/_extended_validator_.extendedvalidator.html#hasproperty","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":216,"kind":2048,"name":"objPropertyIsNotEmpty","url":"classes/_extended_validator_.extendedvalidator.html#objpropertyisnotempty","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":217,"kind":2048,"name":"objPropertiesIsNotEmpty","url":"classes/_extended_validator_.extendedvalidator.html#objpropertiesisnotempty","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":218,"kind":2048,"name":"toInt","url":"classes/_extended_validator_.extendedvalidator.html#toint","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":219,"kind":2048,"name":"toFloat","url":"classes/_extended_validator_.extendedvalidator.html#tofloat","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":220,"kind":2048,"name":"toBoolean","url":"classes/_extended_validator_.extendedvalidator.html#toboolean","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":221,"kind":2048,"name":"toDate","url":"classes/_extended_validator_.extendedvalidator.html#todate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":222,"kind":2048,"name":"isFloat","url":"classes/_extended_validator_.extendedvalidator.html#isfloat","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":223,"kind":2048,"name":"isFloat2","url":"classes/_extended_validator_.extendedvalidator.html#isfloat2","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":224,"kind":2048,"name":"isInt2","url":"classes/_extended_validator_.extendedvalidator.html#isint2","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":225,"kind":2048,"name":"isInt3","url":"classes/_extended_validator_.extendedvalidator.html#isint3","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":226,"kind":2048,"name":"validate","url":"classes/_extended_validator_.extendedvalidator.html#validate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":227,"kind":2048,"name":"validateOrReject","url":"classes/_extended_validator_.extendedvalidator.html#validateorreject","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":228,"kind":2048,"name":"validateSync","url":"classes/_extended_validator_.extendedvalidator.html#validatesync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":229,"kind":2048,"name":"validateValueByMetadata","url":"classes/_extended_validator_.extendedvalidator.html#validatevaluebymetadata","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":230,"kind":2048,"name":"isDefined","url":"classes/_extended_validator_.extendedvalidator.html#isdefined","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":231,"kind":2048,"name":"equals","url":"classes/_extended_validator_.extendedvalidator.html#equals","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":232,"kind":2048,"name":"notEquals","url":"classes/_extended_validator_.extendedvalidator.html#notequals","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":233,"kind":2048,"name":"isEmpty","url":"classes/_extended_validator_.extendedvalidator.html#isempty","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":234,"kind":2048,"name":"isNotEmpty","url":"classes/_extended_validator_.extendedvalidator.html#isnotempty","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":235,"kind":2048,"name":"isIn","url":"classes/_extended_validator_.extendedvalidator.html#isin","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":236,"kind":2048,"name":"isNotIn","url":"classes/_extended_validator_.extendedvalidator.html#isnotin","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":237,"kind":2048,"name":"isBoolean","url":"classes/_extended_validator_.extendedvalidator.html#isboolean","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":238,"kind":2048,"name":"isDate","url":"classes/_extended_validator_.extendedvalidator.html#isdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":239,"kind":2048,"name":"isString","url":"classes/_extended_validator_.extendedvalidator.html#isstring","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":240,"kind":2048,"name":"isDateString","url":"classes/_extended_validator_.extendedvalidator.html#isdatestring","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":241,"kind":2048,"name":"isArray","url":"classes/_extended_validator_.extendedvalidator.html#isarray","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":242,"kind":2048,"name":"isEnum","url":"classes/_extended_validator_.extendedvalidator.html#isenum","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":243,"kind":2048,"name":"isNumber","url":"classes/_extended_validator_.extendedvalidator.html#isnumber","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":244,"kind":2048,"name":"isInt","url":"classes/_extended_validator_.extendedvalidator.html#isint","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":245,"kind":2048,"name":"isDivisibleBy","url":"classes/_extended_validator_.extendedvalidator.html#isdivisibleby","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":246,"kind":2048,"name":"isPositive","url":"classes/_extended_validator_.extendedvalidator.html#ispositive","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":247,"kind":2048,"name":"isNegative","url":"classes/_extended_validator_.extendedvalidator.html#isnegative","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":248,"kind":2048,"name":"min","url":"classes/_extended_validator_.extendedvalidator.html#min","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":249,"kind":2048,"name":"max","url":"classes/_extended_validator_.extendedvalidator.html#max","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":250,"kind":2048,"name":"minDate","url":"classes/_extended_validator_.extendedvalidator.html#mindate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":251,"kind":2048,"name":"maxDate","url":"classes/_extended_validator_.extendedvalidator.html#maxdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":252,"kind":2048,"name":"isBooleanString","url":"classes/_extended_validator_.extendedvalidator.html#isbooleanstring","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":253,"kind":2048,"name":"isNumberString","url":"classes/_extended_validator_.extendedvalidator.html#isnumberstring","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":254,"kind":2048,"name":"contains","url":"classes/_extended_validator_.extendedvalidator.html#contains","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":255,"kind":2048,"name":"notContains","url":"classes/_extended_validator_.extendedvalidator.html#notcontains","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":256,"kind":2048,"name":"isAlpha","url":"classes/_extended_validator_.extendedvalidator.html#isalpha","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":257,"kind":2048,"name":"isAlphanumeric","url":"classes/_extended_validator_.extendedvalidator.html#isalphanumeric","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":258,"kind":2048,"name":"isAscii","url":"classes/_extended_validator_.extendedvalidator.html#isascii","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":259,"kind":2048,"name":"isBase64","url":"classes/_extended_validator_.extendedvalidator.html#isbase64","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":260,"kind":2048,"name":"isByteLength","url":"classes/_extended_validator_.extendedvalidator.html#isbytelength","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":261,"kind":2048,"name":"isCreditCard","url":"classes/_extended_validator_.extendedvalidator.html#iscreditcard","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":262,"kind":2048,"name":"isCurrency","url":"classes/_extended_validator_.extendedvalidator.html#iscurrency","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":263,"kind":2048,"name":"isEmail","url":"classes/_extended_validator_.extendedvalidator.html#isemail","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":264,"kind":2048,"name":"isFQDN","url":"classes/_extended_validator_.extendedvalidator.html#isfqdn","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":265,"kind":2048,"name":"isFullWidth","url":"classes/_extended_validator_.extendedvalidator.html#isfullwidth","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":266,"kind":2048,"name":"isHalfWidth","url":"classes/_extended_validator_.extendedvalidator.html#ishalfwidth","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":267,"kind":2048,"name":"isVariableWidth","url":"classes/_extended_validator_.extendedvalidator.html#isvariablewidth","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":268,"kind":2048,"name":"isHexColor","url":"classes/_extended_validator_.extendedvalidator.html#ishexcolor","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":269,"kind":2048,"name":"isHexadecimal","url":"classes/_extended_validator_.extendedvalidator.html#ishexadecimal","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":270,"kind":2048,"name":"isIP","url":"classes/_extended_validator_.extendedvalidator.html#isip","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":271,"kind":2048,"name":"isISBN","url":"classes/_extended_validator_.extendedvalidator.html#isisbn","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":272,"kind":2048,"name":"isISIN","url":"classes/_extended_validator_.extendedvalidator.html#isisin","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":273,"kind":2048,"name":"isISO8601","url":"classes/_extended_validator_.extendedvalidator.html#isiso8601","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":274,"kind":2048,"name":"isJSON","url":"classes/_extended_validator_.extendedvalidator.html#isjson","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":275,"kind":2048,"name":"isLowercase","url":"classes/_extended_validator_.extendedvalidator.html#islowercase","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":276,"kind":2048,"name":"isMobilePhone","url":"classes/_extended_validator_.extendedvalidator.html#ismobilephone","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":277,"kind":2048,"name":"isPhoneNumber","url":"classes/_extended_validator_.extendedvalidator.html#isphonenumber","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":278,"kind":2048,"name":"isMongoId","url":"classes/_extended_validator_.extendedvalidator.html#ismongoid","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":279,"kind":2048,"name":"isMultibyte","url":"classes/_extended_validator_.extendedvalidator.html#ismultibyte","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":280,"kind":2048,"name":"isSurrogatePair","url":"classes/_extended_validator_.extendedvalidator.html#issurrogatepair","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":281,"kind":2048,"name":"isURL","url":"classes/_extended_validator_.extendedvalidator.html#isurl","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":282,"kind":2048,"name":"isUUID","url":"classes/_extended_validator_.extendedvalidator.html#isuuid","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":283,"kind":2048,"name":"isUppercase","url":"classes/_extended_validator_.extendedvalidator.html#isuppercase","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":284,"kind":2048,"name":"length","url":"classes/_extended_validator_.extendedvalidator.html#length","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":285,"kind":2048,"name":"minLength","url":"classes/_extended_validator_.extendedvalidator.html#minlength","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":286,"kind":2048,"name":"maxLength","url":"classes/_extended_validator_.extendedvalidator.html#maxlength","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":287,"kind":2048,"name":"matches","url":"classes/_extended_validator_.extendedvalidator.html#matches","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":288,"kind":2048,"name":"isMilitaryTime","url":"classes/_extended_validator_.extendedvalidator.html#ismilitarytime","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":289,"kind":2048,"name":"arrayContains","url":"classes/_extended_validator_.extendedvalidator.html#arraycontains","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":290,"kind":2048,"name":"arrayNotContains","url":"classes/_extended_validator_.extendedvalidator.html#arraynotcontains","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":291,"kind":2048,"name":"arrayNotEmpty","url":"classes/_extended_validator_.extendedvalidator.html#arraynotempty","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":292,"kind":2048,"name":"arrayMinSize","url":"classes/_extended_validator_.extendedvalidator.html#arrayminsize","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":293,"kind":2048,"name":"arrayMaxSize","url":"classes/_extended_validator_.extendedvalidator.html#arraymaxsize","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":294,"kind":2048,"name":"arrayUnique","url":"classes/_extended_validator_.extendedvalidator.html#arrayunique","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":295,"kind":2048,"name":"isInstance","url":"classes/_extended_validator_.extendedvalidator.html#isinstance","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":296,"kind":32,"name":"extendedValidator","url":"modules/_extended_validator_.html#extendedvalidator-1","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"extended-validator\""},{"id":297,"kind":1,"name":"\"util\"","url":"modules/_util_.html","classes":"tsd-kind-external-module"},{"id":298,"kind":256,"name":"ObjOptions","url":"interfaces/_util_.objoptions.html","classes":"tsd-kind-interface tsd-parent-kind-external-module","parent":"\"util\""},{"id":299,"kind":1024,"name":"prefix","url":"interfaces/_util_.objoptions.html#prefix","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"util\".ObjOptions"},{"id":300,"kind":1024,"name":"filter","url":"interfaces/_util_.objoptions.html#filter","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"util\".ObjOptions"},{"id":301,"kind":64,"name":"isUndefined","url":"modules/_util_.html#isundefined","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":302,"kind":64,"name":"isFunction","url":"modules/_util_.html#isfunction","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":303,"kind":64,"name":"isObject","url":"modules/_util_.html#isobject","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":304,"kind":64,"name":"isString","url":"modules/_util_.html#isstring","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":305,"kind":64,"name":"isConstructor","url":"modules/_util_.html#isconstructor","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":306,"kind":64,"name":"validatePath","url":"modules/_util_.html#validatepath","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":307,"kind":64,"name":"isNil","url":"modules/_util_.html#isnil","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":308,"kind":64,"name":"isEmpty","url":"modules/_util_.html#isempty","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":309,"kind":64,"name":"isSymbol","url":"modules/_util_.html#issymbol","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":310,"kind":64,"name":"strVal","url":"modules/_util_.html#strval","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":311,"kind":32,"name":"isNotEmpty","url":"modules/_util_.html#isnotempty","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"util\""},{"id":312,"kind":32,"name":"isNegative","url":"modules/_util_.html#isnegative","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"util\""},{"id":313,"kind":32,"name":"isPositive","url":"modules/_util_.html#ispositive","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"util\""},{"id":314,"kind":64,"name":"assert","url":"modules/_util_.html#assert","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":315,"kind":64,"name":"toHump","url":"modules/_util_.html#tohump","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":316,"kind":64,"name":"toLine","url":"modules/_util_.html#toline","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":317,"kind":64,"name":"findAuthAndModule","url":"modules/_util_.html#findauthandmodule","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":318,"kind":64,"name":"findMetaByAuth","url":"modules/_util_.html#findmetabyauth","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":319,"kind":64,"name":"checkDateFormat","url":"modules/_util_.html#checkdateformat","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":320,"kind":64,"name":"paginate","url":"modules/_util_.html#paginate","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":321,"kind":64,"name":"unsets","url":"modules/_util_.html#unsets","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":322,"kind":64,"name":"decorateProp","url":"modules/_util_.html#decorateprop","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":323,"kind":64,"name":"getAllMethodNames","url":"modules/_util_.html#getallmethodnames","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":324,"kind":64,"name":"getAllFieldNames","url":"modules/_util_.html#getallfieldnames","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":325,"kind":64,"name":"prefixAndFilter","url":"modules/_util_.html#prefixandfilter","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"util\""},{"id":326,"kind":64,"name":"getFiles","url":"modules/_util_.html#getfiles","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":327,"kind":64,"name":"mkdirsSync","url":"modules/_util_.html#mkdirssync","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":328,"kind":1,"name":"\"db\"","url":"modules/_db_.html","classes":"tsd-kind-external-module"},{"id":329,"kind":32,"name":"database","url":"modules/_db_.html#database","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"db\""},{"id":330,"kind":32,"name":"type","url":"modules/_db_.html#type","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"db\""},{"id":331,"kind":32,"name":"host","url":"modules/_db_.html#host","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"db\""},{"id":332,"kind":32,"name":"port","url":"modules/_db_.html#port","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"db\""},{"id":333,"kind":32,"name":"username","url":"modules/_db_.html#username","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"db\""},{"id":334,"kind":32,"name":"password","url":"modules/_db_.html#password","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"db\""},{"id":335,"kind":32,"name":"logging","url":"modules/_db_.html#logging","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"db\""},{"id":336,"kind":32,"name":"db","url":"modules/_db_.html#db","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"db\""},{"id":337,"kind":1,"name":"\"password-hash\"","url":"modules/_password_hash_.html","classes":"tsd-kind-external-module"},{"id":338,"kind":256,"name":"Option","url":"interfaces/_password_hash_.option.html","classes":"tsd-kind-interface tsd-parent-kind-external-module","parent":"\"password-hash\""},{"id":339,"kind":1024,"name":"algorithm","url":"interfaces/_password_hash_.option.html#algorithm","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"password-hash\".Option"},{"id":340,"kind":1024,"name":"saltLength","url":"interfaces/_password_hash_.option.html#saltlength","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"password-hash\".Option"},{"id":341,"kind":1024,"name":"iterations","url":"interfaces/_password_hash_.option.html#iterations","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"password-hash\".Option"},{"id":342,"kind":32,"name":"saltChars","url":"modules/_password_hash_.html#saltchars","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"password-hash\""},{"id":343,"kind":32,"name":"saltCharsCount","url":"modules/_password_hash_.html#saltcharscount","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"password-hash\""},{"id":344,"kind":64,"name":"generateSalt","url":"modules/_password_hash_.html#generatesalt","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"password-hash\""},{"id":345,"kind":64,"name":"generateHash","url":"modules/_password_hash_.html#generatehash","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"password-hash\""},{"id":346,"kind":64,"name":"generate","url":"modules/_password_hash_.html#generate","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"password-hash\""},{"id":347,"kind":64,"name":"verify","url":"modules/_password_hash_.html#verify","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"password-hash\""},{"id":348,"kind":64,"name":"isHashed","url":"modules/_password_hash_.html#ishashed","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"password-hash\""},{"id":349,"kind":1,"name":"\"interface\"","url":"modules/_interface_.html","classes":"tsd-kind-external-module"},{"id":350,"kind":2097152,"name":"InfoCrudMixin","url":"modules/_interface_.html#infocrudmixin","classes":"tsd-kind-object-literal tsd-parent-kind-external-module","parent":"\"interface\""},{"id":351,"kind":32,"name":"attributes","url":"modules/_interface_.html#infocrudmixin.attributes-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin"},{"id":352,"kind":65536,"name":"__type","url":"modules/_interface_.html#infocrudmixin.attributes-2.__type","classes":"tsd-kind-type-literal tsd-parent-kind-variable tsd-is-not-exported","parent":"\"interface\".InfoCrudMixin.attributes"},{"id":353,"kind":2097152,"name":"options","url":"modules/_interface_.html#infocrudmixin.options-2","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin"},{"id":354,"kind":32,"name":"createdAt","url":"modules/_interface_.html#infocrudmixin.options-2.createdat-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin.options"},{"id":355,"kind":32,"name":"updatedAt","url":"modules/_interface_.html#infocrudmixin.options-2.updatedat-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin.options"},{"id":356,"kind":32,"name":"deletedAt","url":"modules/_interface_.html#infocrudmixin.options-2.deletedat","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin.options"},{"id":357,"kind":32,"name":"paranoid","url":"modules/_interface_.html#infocrudmixin.options-2.paranoid","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin.options"},{"id":358,"kind":2097152,"name":"getterMethods","url":"modules/_interface_.html#infocrudmixin.options-2.gettermethods","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin.options"},{"id":359,"kind":64,"name":"createTime","url":"modules/_interface_.html#infocrudmixin.options-2.gettermethods.createtime","classes":"tsd-kind-function tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin.options.getterMethods"},{"id":360,"kind":2097152,"name":"UserInterface","url":"modules/_interface_.html#userinterface","classes":"tsd-kind-object-literal tsd-parent-kind-external-module","parent":"\"interface\""},{"id":361,"kind":2097152,"name":"attributes","url":"modules/_interface_.html#userinterface.attributes-4","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface"},{"id":362,"kind":2097152,"name":"id","url":"modules/_interface_.html#userinterface.attributes-4.id-4","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes"},{"id":363,"kind":32,"name":"type","url":"modules/_interface_.html#userinterface.attributes-4.id-4.type-26","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.id"},{"id":364,"kind":32,"name":"primaryKey","url":"modules/_interface_.html#userinterface.attributes-4.id-4.primarykey-4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.id"},{"id":365,"kind":32,"name":"autoIncrement","url":"modules/_interface_.html#userinterface.attributes-4.id-4.autoincrement-4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.id"},{"id":366,"kind":2097152,"name":"nickname","url":"modules/_interface_.html#userinterface.attributes-4.nickname","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes"},{"id":367,"kind":32,"name":"type","url":"modules/_interface_.html#userinterface.attributes-4.nickname.type-27","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.nickname"},{"id":368,"kind":32,"name":"allowNull","url":"modules/_interface_.html#userinterface.attributes-4.nickname.allownull-11","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.nickname"},{"id":369,"kind":32,"name":"unique","url":"modules/_interface_.html#userinterface.attributes-4.nickname.unique-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.nickname"},{"id":370,"kind":2097152,"name":"admin","url":"modules/_interface_.html#userinterface.attributes-4.admin","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes"},{"id":371,"kind":32,"name":"type","url":"modules/_interface_.html#userinterface.attributes-4.admin.type-23","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.admin"},{"id":372,"kind":32,"name":"allowNull","url":"modules/_interface_.html#userinterface.attributes-4.admin.allownull-8","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.admin"},{"id":373,"kind":32,"name":"defaultValue","url":"modules/_interface_.html#userinterface.attributes-4.admin.defaultvalue-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.admin"},{"id":374,"kind":2097152,"name":"active","url":"modules/_interface_.html#userinterface.attributes-4.active","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes"},{"id":375,"kind":32,"name":"type","url":"modules/_interface_.html#userinterface.attributes-4.active.type-22","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.active"},{"id":376,"kind":32,"name":"allowNull","url":"modules/_interface_.html#userinterface.attributes-4.active.allownull-7","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.active"},{"id":377,"kind":32,"name":"defaultValue","url":"modules/_interface_.html#userinterface.attributes-4.active.defaultvalue-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.active"},{"id":378,"kind":2097152,"name":"email","url":"modules/_interface_.html#userinterface.attributes-4.email","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes"},{"id":379,"kind":32,"name":"type","url":"modules/_interface_.html#userinterface.attributes-4.email.type-24","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.email"},{"id":380,"kind":32,"name":"unique","url":"modules/_interface_.html#userinterface.attributes-4.email.unique","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.email"},{"id":381,"kind":32,"name":"allowNull","url":"modules/_interface_.html#userinterface.attributes-4.email.allownull-9","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.email"},{"id":382,"kind":2097152,"name":"group_id","url":"modules/_interface_.html#userinterface.attributes-4.group_id-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes"},{"id":383,"kind":32,"name":"type","url":"modules/_interface_.html#userinterface.attributes-4.group_id-1.type-25","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.group_id"},{"id":384,"kind":32,"name":"allowNull","url":"modules/_interface_.html#userinterface.attributes-4.group_id-1.allownull-10","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.group_id"},{"id":385,"kind":2097152,"name":"password","url":"modules/_interface_.html#userinterface.attributes-4.password","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes"},{"id":386,"kind":32,"name":"type","url":"modules/_interface_.html#userinterface.attributes-4.password.type-28","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.password"},{"id":387,"kind":64,"name":"set","url":"modules/_interface_.html#userinterface.attributes-4.password.set","classes":"tsd-kind-function tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.password"},{"id":388,"kind":64,"name":"get","url":"modules/_interface_.html#userinterface.attributes-4.password.get","classes":"tsd-kind-function tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.password"},{"id":389,"kind":32,"name":"options","url":"modules/_interface_.html#userinterface.options-4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface"},{"id":390,"kind":2097152,"name":"AuthInterface","url":"modules/_interface_.html#authinterface","classes":"tsd-kind-object-literal tsd-parent-kind-external-module","parent":"\"interface\""},{"id":391,"kind":2097152,"name":"attributes","url":"modules/_interface_.html#authinterface.attributes","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface"},{"id":392,"kind":2097152,"name":"id","url":"modules/_interface_.html#authinterface.attributes.id","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes"},{"id":393,"kind":32,"name":"type","url":"modules/_interface_.html#authinterface.attributes.id.type-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes.id"},{"id":394,"kind":32,"name":"primaryKey","url":"modules/_interface_.html#authinterface.attributes.id.primarykey","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes.id"},{"id":395,"kind":32,"name":"autoIncrement","url":"modules/_interface_.html#authinterface.attributes.id.autoincrement","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes.id"},{"id":396,"kind":2097152,"name":"group_id","url":"modules/_interface_.html#authinterface.attributes.group_id","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes"},{"id":397,"kind":32,"name":"type","url":"modules/_interface_.html#authinterface.attributes.group_id.type-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes.group_id"},{"id":398,"kind":32,"name":"allowNull","url":"modules/_interface_.html#authinterface.attributes.group_id.allownull","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes.group_id"},{"id":399,"kind":2097152,"name":"auth","url":"modules/_interface_.html#authinterface.attributes.auth","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes"},{"id":400,"kind":32,"name":"type","url":"modules/_interface_.html#authinterface.attributes.auth.type","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes.auth"},{"id":401,"kind":2097152,"name":"module","url":"modules/_interface_.html#authinterface.attributes.module","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes"},{"id":402,"kind":32,"name":"type","url":"modules/_interface_.html#authinterface.attributes.module.type-3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes.module"},{"id":403,"kind":2097152,"name":"options","url":"modules/_interface_.html#authinterface.options","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface"},{"id":404,"kind":32,"name":"tableName","url":"modules/_interface_.html#authinterface.options.tablename","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.options"},{"id":405,"kind":32,"name":"createdAt","url":"modules/_interface_.html#authinterface.options.createdat","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.options"},{"id":406,"kind":32,"name":"updatedAt","url":"modules/_interface_.html#authinterface.options.updatedat","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.options"},{"id":407,"kind":2097152,"name":"GroupInterface","url":"modules/_interface_.html#groupinterface","classes":"tsd-kind-object-literal tsd-parent-kind-external-module","parent":"\"interface\""},{"id":408,"kind":2097152,"name":"attributes","url":"modules/_interface_.html#groupinterface.attributes-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface"},{"id":409,"kind":2097152,"name":"id","url":"modules/_interface_.html#groupinterface.attributes-1.id-2","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes"},{"id":410,"kind":32,"name":"type","url":"modules/_interface_.html#groupinterface.attributes-1.id-2.type-11","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes.id"},{"id":411,"kind":32,"name":"primaryKey","url":"modules/_interface_.html#groupinterface.attributes-1.id-2.primarykey-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes.id"},{"id":412,"kind":32,"name":"autoIncrement","url":"modules/_interface_.html#groupinterface.attributes-1.id-2.autoincrement-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes.id"},{"id":413,"kind":2097152,"name":"name","url":"modules/_interface_.html#groupinterface.attributes-1.name-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes"},{"id":414,"kind":32,"name":"type","url":"modules/_interface_.html#groupinterface.attributes-1.name-1.type-13","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes.name"},{"id":415,"kind":2097152,"name":"info","url":"modules/_interface_.html#groupinterface.attributes-1.info","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes"},{"id":416,"kind":32,"name":"type","url":"modules/_interface_.html#groupinterface.attributes-1.info.type-12","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes.info"},{"id":417,"kind":32,"name":"allowNull","url":"modules/_interface_.html#groupinterface.attributes-1.info.allownull-5","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes.info"},{"id":418,"kind":2097152,"name":"options","url":"modules/_interface_.html#groupinterface.options-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface"},{"id":419,"kind":32,"name":"tableName","url":"modules/_interface_.html#groupinterface.options-1.tablename-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.options"},{"id":420,"kind":32,"name":"createdAt","url":"modules/_interface_.html#groupinterface.options-1.createdat-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.options"},{"id":421,"kind":32,"name":"updatedAt","url":"modules/_interface_.html#groupinterface.options-1.updatedat-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.options"},{"id":422,"kind":2097152,"name":"LogInterface","url":"modules/_interface_.html#loginterface","classes":"tsd-kind-object-literal tsd-parent-kind-external-module","parent":"\"interface\""},{"id":423,"kind":2097152,"name":"attributes","url":"modules/_interface_.html#loginterface.attributes-3","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface"},{"id":424,"kind":2097152,"name":"id","url":"modules/_interface_.html#loginterface.attributes-3.id-3","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":425,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.id-3.type-15","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.id"},{"id":426,"kind":32,"name":"primaryKey","url":"modules/_interface_.html#loginterface.attributes-3.id-3.primarykey-3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.id"},{"id":427,"kind":32,"name":"autoIncrement","url":"modules/_interface_.html#loginterface.attributes-3.id-3.autoincrement-3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.id"},{"id":428,"kind":2097152,"name":"message","url":"modules/_interface_.html#loginterface.attributes-3.message","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":429,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.message.type-16","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.message"},{"id":430,"kind":2097152,"name":"user_id","url":"modules/_interface_.html#loginterface.attributes-3.user_id","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":431,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.user_id.type-20","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.user_id"},{"id":432,"kind":32,"name":"allowNull","url":"modules/_interface_.html#loginterface.attributes-3.user_id.allownull-6","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.user_id"},{"id":433,"kind":2097152,"name":"user_name","url":"modules/_interface_.html#loginterface.attributes-3.user_name","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":434,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.user_name.type-21","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.user_name"},{"id":435,"kind":2097152,"name":"status_code","url":"modules/_interface_.html#loginterface.attributes-3.status_code","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":436,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.status_code.type-19","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.status_code"},{"id":437,"kind":2097152,"name":"method","url":"modules/_interface_.html#loginterface.attributes-3.method","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":438,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.method.type-17","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.method"},{"id":439,"kind":2097152,"name":"path","url":"modules/_interface_.html#loginterface.attributes-3.path-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":440,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.path-1.type-18","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.path"},{"id":441,"kind":2097152,"name":"authority","url":"modules/_interface_.html#loginterface.attributes-3.authority","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":442,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.authority.type-14","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.authority"},{"id":443,"kind":2097152,"name":"options","url":"modules/_interface_.html#loginterface.options-3","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface"},{"id":444,"kind":32,"name":"tableName","url":"modules/_interface_.html#loginterface.options-3.tablename-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.options"},{"id":445,"kind":32,"name":"createdAt","url":"modules/_interface_.html#loginterface.options-3.createdat-3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.options"},{"id":446,"kind":32,"name":"updatedAt","url":"modules/_interface_.html#loginterface.options-3.updatedat-3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.options"},{"id":447,"kind":2097152,"name":"getterMethods","url":"modules/_interface_.html#loginterface.options-3.gettermethods-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.options"},{"id":448,"kind":64,"name":"time","url":"modules/_interface_.html#loginterface.options-3.gettermethods-1.time","classes":"tsd-kind-function tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.options.getterMethods"},{"id":449,"kind":2097152,"name":"FileInterface","url":"modules/_interface_.html#fileinterface","classes":"tsd-kind-object-literal tsd-parent-kind-external-module","parent":"\"interface\""},{"id":450,"kind":2097152,"name":"id","url":"modules/_interface_.html#fileinterface.id-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface"},{"id":451,"kind":32,"name":"type","url":"modules/_interface_.html#fileinterface.id-1.type-5","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.id"},{"id":452,"kind":32,"name":"primaryKey","url":"modules/_interface_.html#fileinterface.id-1.primarykey-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.id"},{"id":453,"kind":32,"name":"autoIncrement","url":"modules/_interface_.html#fileinterface.id-1.autoincrement-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.id"},{"id":454,"kind":2097152,"name":"path","url":"modules/_interface_.html#fileinterface.path","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface"},{"id":455,"kind":32,"name":"type","url":"modules/_interface_.html#fileinterface.path.type-7","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.path"},{"id":456,"kind":32,"name":"allowNull","url":"modules/_interface_.html#fileinterface.path.allownull-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.path"},{"id":457,"kind":2097152,"name":"type","url":"modules/_interface_.html#fileinterface.type-9","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface"},{"id":458,"kind":32,"name":"type","url":"modules/_interface_.html#fileinterface.type-9.type-10","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.type"},{"id":459,"kind":32,"name":"allowNull","url":"modules/_interface_.html#fileinterface.type-9.allownull-4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.type"},{"id":460,"kind":32,"name":"defaultValue","url":"modules/_interface_.html#fileinterface.type-9.defaultvalue","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.type"},{"id":461,"kind":32,"name":"comment","url":"modules/_interface_.html#fileinterface.type-9.comment","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.type"},{"id":462,"kind":2097152,"name":"name","url":"modules/_interface_.html#fileinterface.name","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface"},{"id":463,"kind":32,"name":"type","url":"modules/_interface_.html#fileinterface.name.type-6","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.name"},{"id":464,"kind":32,"name":"allowNull","url":"modules/_interface_.html#fileinterface.name.allownull-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.name"},{"id":465,"kind":2097152,"name":"extension","url":"modules/_interface_.html#fileinterface.extension","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface"},{"id":466,"kind":32,"name":"type","url":"modules/_interface_.html#fileinterface.extension.type-4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.extension"},{"id":467,"kind":2097152,"name":"size","url":"modules/_interface_.html#fileinterface.size","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface"},{"id":468,"kind":32,"name":"type","url":"modules/_interface_.html#fileinterface.size.type-8","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.size"},{"id":469,"kind":32,"name":"allowNull","url":"modules/_interface_.html#fileinterface.size.allownull-3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.size"},{"id":470,"kind":1,"name":"\"extend\"","url":"modules/_extend_.html","classes":"tsd-kind-external-module"},{"id":471,"kind":64,"name":"json","url":"modules/_extend_.html#json","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"extend\""},{"id":472,"kind":64,"name":"transform","url":"modules/_extend_.html#transform","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"extend\""},{"id":473,"kind":64,"name":"success","url":"modules/_extend_.html#success","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"extend\""},{"id":474,"kind":64,"name":"logging","url":"modules/_extend_.html#logging","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"extend\""},{"id":475,"kind":64,"name":"multipart","url":"modules/_extend_.html#multipart","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"extend\""},{"id":476,"kind":64,"name":"checkSingleFileSize","url":"modules/_extend_.html#checksinglefilesize","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"extend\""},{"id":477,"kind":64,"name":"checkTotalFileSize","url":"modules/_extend_.html#checktotalfilesize","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"extend\""},{"id":478,"kind":64,"name":"checkFileNums","url":"modules/_extend_.html#checkfilenums","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"extend\""},{"id":479,"kind":64,"name":"checkFileExtension","url":"modules/_extend_.html#checkfileextension","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"extend\""},{"id":480,"kind":1,"name":"\"plugin\"","url":"modules/_plugin_.html","classes":"tsd-kind-external-module"},{"id":481,"kind":128,"name":"Plugin","url":"classes/_plugin_.plugin.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"plugin\""},{"id":482,"kind":1024,"name":"name","url":"classes/_plugin_.plugin.html#name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"plugin\".Plugin"},{"id":483,"kind":1024,"name":"models","url":"classes/_plugin_.plugin.html#models","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"plugin\".Plugin"},{"id":484,"kind":65536,"name":"__type","url":"classes/_plugin_.plugin.html#models.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"plugin\".Plugin.models"},{"id":485,"kind":1024,"name":"controllers","url":"classes/_plugin_.plugin.html#controllers","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"plugin\".Plugin"},{"id":486,"kind":65536,"name":"__type","url":"classes/_plugin_.plugin.html#controllers.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"plugin\".Plugin.controllers"},{"id":487,"kind":512,"name":"constructor","url":"classes/_plugin_.plugin.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"plugin\".Plugin"},{"id":488,"kind":2048,"name":"addModel","url":"classes/_plugin_.plugin.html#addmodel","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"plugin\".Plugin"},{"id":489,"kind":2048,"name":"getModel","url":"classes/_plugin_.plugin.html#getmodel","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"plugin\".Plugin"},{"id":490,"kind":2048,"name":"addController","url":"classes/_plugin_.plugin.html#addcontroller","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"plugin\".Plugin"},{"id":491,"kind":1,"name":"\"loader\"","url":"modules/_loader_.html","classes":"tsd-kind-external-module"},{"id":492,"kind":128,"name":"Loader","url":"classes/_loader_.loader.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"loader\""},{"id":493,"kind":1024,"name":"mainRouter","url":"classes/_loader_.loader.html#mainrouter","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":494,"kind":1024,"name":"pluginPath","url":"classes/_loader_.loader.html#pluginpath","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":495,"kind":1024,"name":"app","url":"classes/_loader_.loader.html#app","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"loader\".Loader"},{"id":496,"kind":1024,"name":"plugins","url":"classes/_loader_.loader.html#plugins","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":497,"kind":65536,"name":"__type","url":"classes/_loader_.loader.html#plugins.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"loader\".Loader.plugins"},{"id":498,"kind":512,"name":"constructor","url":"classes/_loader_.loader.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":499,"kind":2048,"name":"loadPlugins","url":"classes/_loader_.loader.html#loadplugins","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":500,"kind":2048,"name":"loadPlugin","url":"classes/_loader_.loader.html#loadplugin","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":501,"kind":2048,"name":"loadConfig","url":"classes/_loader_.loader.html#loadconfig","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":502,"kind":2048,"name":"loadMainApi","url":"classes/_loader_.loader.html#loadmainapi","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":503,"kind":1,"name":"\"lin-router\"","url":"modules/_lin_router_.html","classes":"tsd-kind-external-module"},{"id":504,"kind":256,"name":"Meta","url":"interfaces/_lin_router_.meta.html","classes":"tsd-kind-interface tsd-parent-kind-external-module","parent":"\"lin-router\""},{"id":505,"kind":1024,"name":"auth","url":"interfaces/_lin_router_.meta.html#auth","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".Meta"},{"id":506,"kind":1024,"name":"module","url":"interfaces/_lin_router_.meta.html#module","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".Meta"},{"id":507,"kind":1024,"name":"mount","url":"interfaces/_lin_router_.meta.html#mount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".Meta"},{"id":508,"kind":128,"name":"LinRouter","url":"classes/_lin_router_.linrouter.html","classes":"tsd-kind-class tsd-parent-kind-external-module tsd-has-type-parameter","parent":"\"lin-router\""},{"id":509,"kind":2048,"name":"linOption","url":"classes/_lin_router_.linrouter.html#linoption","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":510,"kind":2048,"name":"linHead","url":"classes/_lin_router_.linrouter.html#linhead","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":511,"kind":2048,"name":"linGet","url":"classes/_lin_router_.linrouter.html#linget","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":512,"kind":2048,"name":"linPut","url":"classes/_lin_router_.linrouter.html#linput","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":513,"kind":2048,"name":"linPatch","url":"classes/_lin_router_.linrouter.html#linpatch","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":514,"kind":2048,"name":"linPost","url":"classes/_lin_router_.linrouter.html#linpost","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":515,"kind":2048,"name":"linDelete","url":"classes/_lin_router_.linrouter.html#lindelete","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":516,"kind":256,"name":"IRouterOptions","url":"interfaces/_lin_router_.linrouter.irouteroptions.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":517,"kind":1024,"name":"prefix","url":"interfaces/_lin_router_.linrouter.irouteroptions.html#prefix","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterOptions"},{"id":518,"kind":1024,"name":"methods","url":"interfaces/_lin_router_.linrouter.irouteroptions.html#methods","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterOptions"},{"id":519,"kind":1024,"name":"routerPath","url":"interfaces/_lin_router_.linrouter.irouteroptions.html#routerpath","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterOptions"},{"id":520,"kind":1024,"name":"sensitive","url":"interfaces/_lin_router_.linrouter.irouteroptions.html#sensitive","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterOptions"},{"id":521,"kind":1024,"name":"strict","url":"interfaces/_lin_router_.linrouter.irouteroptions.html#strict","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterOptions"},{"id":522,"kind":256,"name":"IRouterParamContext","url":"interfaces/_lin_router_.linrouter.irouterparamcontext.html","classes":"tsd-kind-interface tsd-parent-kind-class tsd-has-type-parameter","parent":"\"lin-router\".LinRouter"},{"id":523,"kind":1024,"name":"params","url":"interfaces/_lin_router_.linrouter.irouterparamcontext.html#params","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterParamContext"},{"id":524,"kind":1024,"name":"router","url":"interfaces/_lin_router_.linrouter.irouterparamcontext.html#router","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterParamContext"},{"id":525,"kind":1024,"name":"_matchedRoute","url":"interfaces/_lin_router_.linrouter.irouterparamcontext.html#_matchedroute","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterParamContext"},{"id":526,"kind":1024,"name":"_matchedRouteName","url":"interfaces/_lin_router_.linrouter.irouterparamcontext.html#_matchedroutename","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterParamContext"},{"id":527,"kind":256,"name":"IRouterContext","url":"interfaces/_lin_router_.linrouter.iroutercontext.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":528,"kind":256,"name":"IParamMiddleware","url":"interfaces/_lin_router_.linrouter.iparammiddleware.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":529,"kind":256,"name":"IRouterAllowedMethodsOptions","url":"interfaces/_lin_router_.linrouter.irouterallowedmethodsoptions.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":530,"kind":1024,"name":"throw","url":"interfaces/_lin_router_.linrouter.irouterallowedmethodsoptions.html#throw","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterAllowedMethodsOptions"},{"id":531,"kind":1024,"name":"notImplemented","url":"interfaces/_lin_router_.linrouter.irouterallowedmethodsoptions.html#notimplemented","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterAllowedMethodsOptions"},{"id":532,"kind":1024,"name":"methodNotAllowed","url":"interfaces/_lin_router_.linrouter.irouterallowedmethodsoptions.html#methodnotallowed","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterAllowedMethodsOptions"},{"id":533,"kind":256,"name":"ILayerOptions","url":"interfaces/_lin_router_.linrouter.ilayeroptions.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":534,"kind":1024,"name":"name","url":"interfaces/_lin_router_.linrouter.ilayeroptions.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.ILayerOptions"},{"id":535,"kind":1024,"name":"sensitive","url":"interfaces/_lin_router_.linrouter.ilayeroptions.html#sensitive","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.ILayerOptions"},{"id":536,"kind":1024,"name":"strict","url":"interfaces/_lin_router_.linrouter.ilayeroptions.html#strict","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.ILayerOptions"},{"id":537,"kind":256,"name":"IUrlOptionsQuery","url":"interfaces/_lin_router_.linrouter.iurloptionsquery.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":538,"kind":1024,"name":"query","url":"interfaces/_lin_router_.linrouter.iurloptionsquery.html#query","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IUrlOptionsQuery"},{"id":539,"kind":256,"name":"IRoutesMatch","url":"interfaces/_lin_router_.linrouter.iroutesmatch.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":540,"kind":1024,"name":"path","url":"interfaces/_lin_router_.linrouter.iroutesmatch.html#path","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRoutesMatch"},{"id":541,"kind":1024,"name":"pathAndMethod","url":"interfaces/_lin_router_.linrouter.iroutesmatch.html#pathandmethod","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRoutesMatch"},{"id":542,"kind":1024,"name":"route","url":"interfaces/_lin_router_.linrouter.iroutesmatch.html#route","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRoutesMatch"},{"id":543,"kind":128,"name":"ParamName","url":"classes/_lin_router_.linrouter.paramname.html","classes":"tsd-kind-class tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":544,"kind":1024,"name":"asterisk","url":"classes/_lin_router_.linrouter.paramname.html#asterisk","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":545,"kind":1024,"name":"delimiter","url":"classes/_lin_router_.linrouter.paramname.html#delimiter","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":546,"kind":1024,"name":"name","url":"classes/_lin_router_.linrouter.paramname.html#name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":547,"kind":1024,"name":"optional","url":"classes/_lin_router_.linrouter.paramname.html#optional","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":548,"kind":1024,"name":"partial","url":"classes/_lin_router_.linrouter.paramname.html#partial","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":549,"kind":1024,"name":"pattern","url":"classes/_lin_router_.linrouter.paramname.html#pattern","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":550,"kind":1024,"name":"prefix","url":"classes/_lin_router_.linrouter.paramname.html#prefix","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":551,"kind":1024,"name":"repeat","url":"classes/_lin_router_.linrouter.paramname.html#repeat","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":552,"kind":128,"name":"Layer","url":"classes/_lin_router_.linrouter.layer.html","classes":"tsd-kind-class tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":553,"kind":1024,"name":"opts","url":"classes/_lin_router_.linrouter.layer.html#opts","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":554,"kind":1024,"name":"name","url":"classes/_lin_router_.linrouter.layer.html#name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":555,"kind":1024,"name":"methods","url":"classes/_lin_router_.linrouter.layer.html#methods","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":556,"kind":1024,"name":"paramNames","url":"classes/_lin_router_.linrouter.layer.html#paramnames","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":557,"kind":1024,"name":"stack","url":"classes/_lin_router_.linrouter.layer.html#stack","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":558,"kind":1024,"name":"regexp","url":"classes/_lin_router_.linrouter.layer.html#regexp","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":559,"kind":1024,"name":"path","url":"classes/_lin_router_.linrouter.layer.html#path","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":560,"kind":512,"name":"constructor","url":"classes/_lin_router_.linrouter.layer.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":561,"kind":2048,"name":"match","url":"classes/_lin_router_.linrouter.layer.html#match","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":562,"kind":2048,"name":"params","url":"classes/_lin_router_.linrouter.layer.html#params","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":563,"kind":2048,"name":"captures","url":"classes/_lin_router_.linrouter.layer.html#captures","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":564,"kind":2048,"name":"url","url":"classes/_lin_router_.linrouter.layer.html#url","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":565,"kind":2048,"name":"param","url":"classes/_lin_router_.linrouter.layer.html#param","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":566,"kind":2048,"name":"setPrefix","url":"classes/_lin_router_.linrouter.layer.html#setprefix","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":567,"kind":4194304,"name":"RouterContext","url":"classes/_lin_router_.linrouter.html#routercontext","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-has-type-parameter tsd-is-static","parent":"\"lin-router\".LinRouter"},{"id":568,"kind":4194304,"name":"IMiddleware","url":"classes/_lin_router_.linrouter.html#imiddleware","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-has-type-parameter tsd-is-static","parent":"\"lin-router\".LinRouter"},{"id":569,"kind":1024,"name":"params","url":"classes/_lin_router_.linrouter.html#params","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":570,"kind":1024,"name":"stack","url":"classes/_lin_router_.linrouter.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":571,"kind":512,"name":"constructor","url":"classes/_lin_router_.linrouter.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":572,"kind":2048,"name":"use","url":"classes/_lin_router_.linrouter.html#use","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":573,"kind":2048,"name":"get","url":"classes/_lin_router_.linrouter.html#get","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":574,"kind":2048,"name":"post","url":"classes/_lin_router_.linrouter.html#post","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":575,"kind":2048,"name":"put","url":"classes/_lin_router_.linrouter.html#put","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":576,"kind":2048,"name":"link","url":"classes/_lin_router_.linrouter.html#link","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":577,"kind":2048,"name":"unlink","url":"classes/_lin_router_.linrouter.html#unlink","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":578,"kind":2048,"name":"delete","url":"classes/_lin_router_.linrouter.html#delete","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":579,"kind":2048,"name":"del","url":"classes/_lin_router_.linrouter.html#del","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":580,"kind":2048,"name":"head","url":"classes/_lin_router_.linrouter.html#head","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":581,"kind":2048,"name":"options","url":"classes/_lin_router_.linrouter.html#options","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":582,"kind":2048,"name":"patch","url":"classes/_lin_router_.linrouter.html#patch","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":583,"kind":2048,"name":"all","url":"classes/_lin_router_.linrouter.html#all","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":584,"kind":2048,"name":"prefix","url":"classes/_lin_router_.linrouter.html#prefix","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":585,"kind":2048,"name":"routes","url":"classes/_lin_router_.linrouter.html#routes","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":586,"kind":2048,"name":"middleware","url":"classes/_lin_router_.linrouter.html#middleware","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":587,"kind":2048,"name":"allowedMethods","url":"classes/_lin_router_.linrouter.html#allowedmethods","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":588,"kind":2048,"name":"redirect","url":"classes/_lin_router_.linrouter.html#redirect","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":589,"kind":2048,"name":"register","url":"classes/_lin_router_.linrouter.html#register","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":590,"kind":2048,"name":"route","url":"classes/_lin_router_.linrouter.html#route","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":591,"kind":2048,"name":"url","url":"classes/_lin_router_.linrouter.html#url","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":592,"kind":2048,"name":"match","url":"classes/_lin_router_.linrouter.html#match","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":593,"kind":2048,"name":"param","url":"classes/_lin_router_.linrouter.html#param","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":594,"kind":2048,"name":"url","url":"classes/_lin_router_.linrouter.html#url-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"lin-router\".LinRouter"},{"id":595,"kind":1,"name":"\"core\"","url":"modules/_core_.html","classes":"tsd-kind-external-module"},{"id":596,"kind":128,"name":"Lin","url":"classes/_core_.lin.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"core\""},{"id":597,"kind":1024,"name":"manager","url":"classes/_core_.lin.html#manager","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"core\".Lin"},{"id":598,"kind":1024,"name":"app","url":"classes/_core_.lin.html#app","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"core\".Lin"},{"id":599,"kind":2048,"name":"initApp","url":"classes/_core_.lin.html#initapp","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".Lin"},{"id":600,"kind":2048,"name":"applyJwt","url":"classes/_core_.lin.html#applyjwt","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"core\".Lin"},{"id":601,"kind":2048,"name":"applyDB","url":"classes/_core_.lin.html#applydb","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"core\".Lin"},{"id":602,"kind":2048,"name":"applyManager","url":"classes/_core_.lin.html#applymanager","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"core\".Lin"},{"id":603,"kind":2048,"name":"applyDefaultExtends","url":"classes/_core_.lin.html#applydefaultextends","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"core\".Lin"},{"id":604,"kind":2048,"name":"mount","url":"classes/_core_.lin.html#mount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"core\".Lin"},{"id":605,"kind":128,"name":"Manager","url":"classes/_core_.manager.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"core\""},{"id":606,"kind":1024,"name":"loader","url":"classes/_core_.manager.html#loader","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":607,"kind":1024,"name":"userModel","url":"classes/_core_.manager.html#usermodel","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":608,"kind":1024,"name":"groupModel","url":"classes/_core_.manager.html#groupmodel","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":609,"kind":1024,"name":"authModel","url":"classes/_core_.manager.html#authmodel","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":610,"kind":2048,"name":"initApp","url":"classes/_core_.manager.html#initapp","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":611,"kind":262144,"name":"plugins","url":"classes/_core_.manager.html#plugins","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":612,"kind":2048,"name":"verify","url":"classes/_core_.manager.html#verify","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":613,"kind":2048,"name":"findUser","url":"classes/_core_.manager.html#finduser","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":614,"kind":2048,"name":"findGroup","url":"classes/_core_.manager.html#findgroup","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":615,"kind":128,"name":"User","url":"classes/_core_.user.html","classes":"tsd-kind-class tsd-parent-kind-external-module tsd-has-type-parameter","parent":"\"core\""},{"id":616,"kind":1024,"name":"id","url":"classes/_core_.user.html#id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":617,"kind":1024,"name":"nickname","url":"classes/_core_.user.html#nickname","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":618,"kind":1024,"name":"admin","url":"classes/_core_.user.html#admin","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":619,"kind":1024,"name":"active","url":"classes/_core_.user.html#active","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":620,"kind":1024,"name":"email","url":"classes/_core_.user.html#email","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":621,"kind":1024,"name":"group_id","url":"classes/_core_.user.html#group_id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":622,"kind":1024,"name":"password","url":"classes/_core_.user.html#password","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":623,"kind":1024,"name":"create_time","url":"classes/_core_.user.html#create_time","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":624,"kind":1024,"name":"update_time","url":"classes/_core_.user.html#update_time","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":625,"kind":1024,"name":"delete_time","url":"classes/_core_.user.html#delete_time","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":626,"kind":2048,"name":"verify","url":"classes/_core_.user.html#verify","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"\"core\".User"},{"id":627,"kind":2048,"name":"checkPassword","url":"classes/_core_.user.html#checkpassword","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".User"},{"id":628,"kind":2048,"name":"resetPassword","url":"classes/_core_.user.html#resetpassword","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".User"},{"id":629,"kind":2048,"name":"changePassword","url":"classes/_core_.user.html#changepassword","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".User"},{"id":630,"kind":2048,"name":"toJSON","url":"classes/_core_.user.html#tojson","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"core\".User"},{"id":631,"kind":1024,"name":"tableName","url":"classes/_core_.user.html#tablename","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":632,"kind":1024,"name":"primaryKeyAttribute","url":"classes/_core_.user.html#primarykeyattribute","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":633,"kind":1024,"name":"associations","url":"classes/_core_.user.html#associations","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":634,"kind":65536,"name":"__type","url":"classes/_core_.user.html#associations.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".User.associations"},{"id":635,"kind":1024,"name":"options","url":"classes/_core_.user.html#options","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":636,"kind":1024,"name":"rawAttributes","url":"classes/_core_.user.html#rawattributes","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":637,"kind":65536,"name":"__type","url":"classes/_core_.user.html#rawattributes.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".User.rawAttributes"},{"id":638,"kind":1024,"name":"sequelize","url":"classes/_core_.user.html#sequelize-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":639,"kind":2048,"name":"init","url":"classes/_core_.user.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":640,"kind":2048,"name":"removeAttribute","url":"classes/_core_.user.html#removeattribute","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":641,"kind":2048,"name":"sync","url":"classes/_core_.user.html#sync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":642,"kind":2048,"name":"drop","url":"classes/_core_.user.html#drop","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":643,"kind":2048,"name":"schema","url":"classes/_core_.user.html#schema","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":644,"kind":2048,"name":"getTableName","url":"classes/_core_.user.html#gettablename","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":645,"kind":2048,"name":"scope","url":"classes/_core_.user.html#scope","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":646,"kind":2048,"name":"addScope","url":"classes/_core_.user.html#addscope","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":647,"kind":2048,"name":"findAll","url":"classes/_core_.user.html#findall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":648,"kind":2048,"name":"findByPk","url":"classes/_core_.user.html#findbypk","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":649,"kind":2048,"name":"findOne","url":"classes/_core_.user.html#findone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":650,"kind":2048,"name":"aggregate","url":"classes/_core_.user.html#aggregate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":651,"kind":2048,"name":"count","url":"classes/_core_.user.html#count","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":652,"kind":2048,"name":"findAndCountAll","url":"classes/_core_.user.html#findandcountall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":653,"kind":2048,"name":"max","url":"classes/_core_.user.html#max","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":654,"kind":2048,"name":"min","url":"classes/_core_.user.html#min","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":655,"kind":2048,"name":"sum","url":"classes/_core_.user.html#sum","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":656,"kind":2048,"name":"build","url":"classes/_core_.user.html#build","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":657,"kind":2048,"name":"bulkBuild","url":"classes/_core_.user.html#bulkbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":658,"kind":2048,"name":"create","url":"classes/_core_.user.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":659,"kind":2048,"name":"findOrBuild","url":"classes/_core_.user.html#findorbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":660,"kind":2048,"name":"findOrCreate","url":"classes/_core_.user.html#findorcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":661,"kind":2048,"name":"upsert","url":"classes/_core_.user.html#upsert","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":662,"kind":2048,"name":"bulkCreate","url":"classes/_core_.user.html#bulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":663,"kind":2048,"name":"truncate","url":"classes/_core_.user.html#truncate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":664,"kind":2048,"name":"destroy","url":"classes/_core_.user.html#destroy-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":665,"kind":2048,"name":"restore","url":"classes/_core_.user.html#restore-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":666,"kind":2048,"name":"update","url":"classes/_core_.user.html#update-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":667,"kind":2048,"name":"increment","url":"classes/_core_.user.html#increment-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":668,"kind":2048,"name":"describe","url":"classes/_core_.user.html#describe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":669,"kind":2048,"name":"unscoped","url":"classes/_core_.user.html#unscoped","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":670,"kind":2048,"name":"beforeValidate","url":"classes/_core_.user.html#beforevalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":671,"kind":2048,"name":"afterValidate","url":"classes/_core_.user.html#aftervalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":672,"kind":2048,"name":"beforeCreate","url":"classes/_core_.user.html#beforecreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":673,"kind":2048,"name":"afterCreate","url":"classes/_core_.user.html#aftercreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":674,"kind":2048,"name":"beforeDestroy","url":"classes/_core_.user.html#beforedestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":675,"kind":2048,"name":"afterDestroy","url":"classes/_core_.user.html#afterdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":676,"kind":2048,"name":"beforeUpdate","url":"classes/_core_.user.html#beforeupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":677,"kind":2048,"name":"afterUpdate","url":"classes/_core_.user.html#afterupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":678,"kind":2048,"name":"beforeBulkCreate","url":"classes/_core_.user.html#beforebulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":679,"kind":2048,"name":"afterBulkCreate","url":"classes/_core_.user.html#afterbulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":680,"kind":2048,"name":"beforeBulkDestroy","url":"classes/_core_.user.html#beforebulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":681,"kind":2048,"name":"afterBulkDestroy","url":"classes/_core_.user.html#afterbulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":682,"kind":2048,"name":"beforeBulkUpdate","url":"classes/_core_.user.html#beforebulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":683,"kind":2048,"name":"afterBulkUpdate","url":"classes/_core_.user.html#afterbulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":684,"kind":2048,"name":"beforeFind","url":"classes/_core_.user.html#beforefind","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":685,"kind":2048,"name":"beforeCount","url":"classes/_core_.user.html#beforecount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":686,"kind":2048,"name":"beforeFindAfterExpandIncludeAll","url":"classes/_core_.user.html#beforefindafterexpandincludeall","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":687,"kind":2048,"name":"beforeFindAfterOptions","url":"classes/_core_.user.html#beforefindafteroptions","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":688,"kind":2048,"name":"afterFind","url":"classes/_core_.user.html#afterfind","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":689,"kind":2048,"name":"beforeBulkSync","url":"classes/_core_.user.html#beforebulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":690,"kind":2048,"name":"afterBulkSync","url":"classes/_core_.user.html#afterbulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":691,"kind":2048,"name":"beforeSync","url":"classes/_core_.user.html#beforesync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":692,"kind":2048,"name":"afterSync","url":"classes/_core_.user.html#aftersync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":693,"kind":2048,"name":"hasOne","url":"classes/_core_.user.html#hasone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":694,"kind":2048,"name":"belongsTo","url":"classes/_core_.user.html#belongsto","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":695,"kind":2048,"name":"hasMany","url":"classes/_core_.user.html#hasmany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":696,"kind":2048,"name":"belongsToMany","url":"classes/_core_.user.html#belongstomany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":697,"kind":1024,"name":"isNewRecord","url":"classes/_core_.user.html#isnewrecord","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":698,"kind":1024,"name":"sequelize","url":"classes/_core_.user.html#sequelize","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":699,"kind":512,"name":"constructor","url":"classes/_core_.user.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":700,"kind":2048,"name":"where","url":"classes/_core_.user.html#where","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":701,"kind":2048,"name":"getDataValue","url":"classes/_core_.user.html#getdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":702,"kind":2048,"name":"setDataValue","url":"classes/_core_.user.html#setdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":703,"kind":2048,"name":"get","url":"classes/_core_.user.html#get","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":704,"kind":2048,"name":"set","url":"classes/_core_.user.html#set","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":705,"kind":2048,"name":"setAttributes","url":"classes/_core_.user.html#setattributes","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":706,"kind":2048,"name":"changed","url":"classes/_core_.user.html#changed","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":707,"kind":2048,"name":"previous","url":"classes/_core_.user.html#previous","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":708,"kind":2048,"name":"save","url":"classes/_core_.user.html#save","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":709,"kind":2048,"name":"reload","url":"classes/_core_.user.html#reload","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":710,"kind":2048,"name":"validate","url":"classes/_core_.user.html#validate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":711,"kind":2048,"name":"update","url":"classes/_core_.user.html#update","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":712,"kind":2048,"name":"destroy","url":"classes/_core_.user.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":713,"kind":2048,"name":"restore","url":"classes/_core_.user.html#restore","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":714,"kind":2048,"name":"increment","url":"classes/_core_.user.html#increment","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":715,"kind":2048,"name":"decrement","url":"classes/_core_.user.html#decrement","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":716,"kind":2048,"name":"equals","url":"classes/_core_.user.html#equals","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":717,"kind":2048,"name":"equalsOneOf","url":"classes/_core_.user.html#equalsoneof","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":718,"kind":2048,"name":"addHook","url":"classes/_core_.user.html#addhook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":719,"kind":2048,"name":"removeHook","url":"classes/_core_.user.html#removehook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":720,"kind":2048,"name":"hasHook","url":"classes/_core_.user.html#hashook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":721,"kind":2048,"name":"hasHooks","url":"classes/_core_.user.html#hashooks-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":722,"kind":2048,"name":"addHook","url":"classes/_core_.user.html#addhook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":723,"kind":2048,"name":"removeHook","url":"classes/_core_.user.html#removehook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":724,"kind":2048,"name":"hasHook","url":"classes/_core_.user.html#hashook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":725,"kind":2048,"name":"hasHooks","url":"classes/_core_.user.html#hashooks","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":726,"kind":128,"name":"Group","url":"classes/_core_.group.html","classes":"tsd-kind-class tsd-parent-kind-external-module tsd-has-type-parameter","parent":"\"core\""},{"id":727,"kind":1024,"name":"id","url":"classes/_core_.group.html#id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Group"},{"id":728,"kind":1024,"name":"name","url":"classes/_core_.group.html#name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Group"},{"id":729,"kind":1024,"name":"info","url":"classes/_core_.group.html#info","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Group"},{"id":730,"kind":2048,"name":"toJSON","url":"classes/_core_.group.html#tojson","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"core\".Group"},{"id":731,"kind":1024,"name":"tableName","url":"classes/_core_.group.html#tablename","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":732,"kind":1024,"name":"primaryKeyAttribute","url":"classes/_core_.group.html#primarykeyattribute","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":733,"kind":1024,"name":"associations","url":"classes/_core_.group.html#associations","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":734,"kind":65536,"name":"__type","url":"classes/_core_.group.html#associations.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".Group.associations"},{"id":735,"kind":1024,"name":"options","url":"classes/_core_.group.html#options","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":736,"kind":1024,"name":"rawAttributes","url":"classes/_core_.group.html#rawattributes","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":737,"kind":65536,"name":"__type","url":"classes/_core_.group.html#rawattributes.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".Group.rawAttributes"},{"id":738,"kind":1024,"name":"sequelize","url":"classes/_core_.group.html#sequelize-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":739,"kind":2048,"name":"init","url":"classes/_core_.group.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":740,"kind":2048,"name":"removeAttribute","url":"classes/_core_.group.html#removeattribute","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":741,"kind":2048,"name":"sync","url":"classes/_core_.group.html#sync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":742,"kind":2048,"name":"drop","url":"classes/_core_.group.html#drop","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":743,"kind":2048,"name":"schema","url":"classes/_core_.group.html#schema","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":744,"kind":2048,"name":"getTableName","url":"classes/_core_.group.html#gettablename","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":745,"kind":2048,"name":"scope","url":"classes/_core_.group.html#scope","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":746,"kind":2048,"name":"addScope","url":"classes/_core_.group.html#addscope","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":747,"kind":2048,"name":"findAll","url":"classes/_core_.group.html#findall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":748,"kind":2048,"name":"findByPk","url":"classes/_core_.group.html#findbypk","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":749,"kind":2048,"name":"findOne","url":"classes/_core_.group.html#findone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":750,"kind":2048,"name":"aggregate","url":"classes/_core_.group.html#aggregate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":751,"kind":2048,"name":"count","url":"classes/_core_.group.html#count","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":752,"kind":2048,"name":"findAndCountAll","url":"classes/_core_.group.html#findandcountall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":753,"kind":2048,"name":"max","url":"classes/_core_.group.html#max","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":754,"kind":2048,"name":"min","url":"classes/_core_.group.html#min","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":755,"kind":2048,"name":"sum","url":"classes/_core_.group.html#sum","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":756,"kind":2048,"name":"build","url":"classes/_core_.group.html#build","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":757,"kind":2048,"name":"bulkBuild","url":"classes/_core_.group.html#bulkbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":758,"kind":2048,"name":"create","url":"classes/_core_.group.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":759,"kind":2048,"name":"findOrBuild","url":"classes/_core_.group.html#findorbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":760,"kind":2048,"name":"findOrCreate","url":"classes/_core_.group.html#findorcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":761,"kind":2048,"name":"upsert","url":"classes/_core_.group.html#upsert","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":762,"kind":2048,"name":"bulkCreate","url":"classes/_core_.group.html#bulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":763,"kind":2048,"name":"truncate","url":"classes/_core_.group.html#truncate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":764,"kind":2048,"name":"destroy","url":"classes/_core_.group.html#destroy-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":765,"kind":2048,"name":"restore","url":"classes/_core_.group.html#restore-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":766,"kind":2048,"name":"update","url":"classes/_core_.group.html#update-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":767,"kind":2048,"name":"increment","url":"classes/_core_.group.html#increment-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":768,"kind":2048,"name":"describe","url":"classes/_core_.group.html#describe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":769,"kind":2048,"name":"unscoped","url":"classes/_core_.group.html#unscoped","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":770,"kind":2048,"name":"beforeValidate","url":"classes/_core_.group.html#beforevalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":771,"kind":2048,"name":"afterValidate","url":"classes/_core_.group.html#aftervalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":772,"kind":2048,"name":"beforeCreate","url":"classes/_core_.group.html#beforecreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":773,"kind":2048,"name":"afterCreate","url":"classes/_core_.group.html#aftercreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":774,"kind":2048,"name":"beforeDestroy","url":"classes/_core_.group.html#beforedestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":775,"kind":2048,"name":"afterDestroy","url":"classes/_core_.group.html#afterdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":776,"kind":2048,"name":"beforeUpdate","url":"classes/_core_.group.html#beforeupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":777,"kind":2048,"name":"afterUpdate","url":"classes/_core_.group.html#afterupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":778,"kind":2048,"name":"beforeBulkCreate","url":"classes/_core_.group.html#beforebulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":779,"kind":2048,"name":"afterBulkCreate","url":"classes/_core_.group.html#afterbulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":780,"kind":2048,"name":"beforeBulkDestroy","url":"classes/_core_.group.html#beforebulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":781,"kind":2048,"name":"afterBulkDestroy","url":"classes/_core_.group.html#afterbulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":782,"kind":2048,"name":"beforeBulkUpdate","url":"classes/_core_.group.html#beforebulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":783,"kind":2048,"name":"afterBulkUpdate","url":"classes/_core_.group.html#afterbulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":784,"kind":2048,"name":"beforeFind","url":"classes/_core_.group.html#beforefind","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":785,"kind":2048,"name":"beforeCount","url":"classes/_core_.group.html#beforecount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":786,"kind":2048,"name":"beforeFindAfterExpandIncludeAll","url":"classes/_core_.group.html#beforefindafterexpandincludeall","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":787,"kind":2048,"name":"beforeFindAfterOptions","url":"classes/_core_.group.html#beforefindafteroptions","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":788,"kind":2048,"name":"afterFind","url":"classes/_core_.group.html#afterfind","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":789,"kind":2048,"name":"beforeBulkSync","url":"classes/_core_.group.html#beforebulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":790,"kind":2048,"name":"afterBulkSync","url":"classes/_core_.group.html#afterbulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":791,"kind":2048,"name":"beforeSync","url":"classes/_core_.group.html#beforesync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":792,"kind":2048,"name":"afterSync","url":"classes/_core_.group.html#aftersync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":793,"kind":2048,"name":"hasOne","url":"classes/_core_.group.html#hasone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":794,"kind":2048,"name":"belongsTo","url":"classes/_core_.group.html#belongsto","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":795,"kind":2048,"name":"hasMany","url":"classes/_core_.group.html#hasmany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":796,"kind":2048,"name":"belongsToMany","url":"classes/_core_.group.html#belongstomany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":797,"kind":1024,"name":"isNewRecord","url":"classes/_core_.group.html#isnewrecord","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":798,"kind":1024,"name":"sequelize","url":"classes/_core_.group.html#sequelize","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":799,"kind":512,"name":"constructor","url":"classes/_core_.group.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":800,"kind":2048,"name":"where","url":"classes/_core_.group.html#where","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":801,"kind":2048,"name":"getDataValue","url":"classes/_core_.group.html#getdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":802,"kind":2048,"name":"setDataValue","url":"classes/_core_.group.html#setdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":803,"kind":2048,"name":"get","url":"classes/_core_.group.html#get","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":804,"kind":2048,"name":"set","url":"classes/_core_.group.html#set","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":805,"kind":2048,"name":"setAttributes","url":"classes/_core_.group.html#setattributes","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":806,"kind":2048,"name":"changed","url":"classes/_core_.group.html#changed","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":807,"kind":2048,"name":"previous","url":"classes/_core_.group.html#previous","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":808,"kind":2048,"name":"save","url":"classes/_core_.group.html#save","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":809,"kind":2048,"name":"reload","url":"classes/_core_.group.html#reload","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":810,"kind":2048,"name":"validate","url":"classes/_core_.group.html#validate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":811,"kind":2048,"name":"update","url":"classes/_core_.group.html#update","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":812,"kind":2048,"name":"destroy","url":"classes/_core_.group.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":813,"kind":2048,"name":"restore","url":"classes/_core_.group.html#restore","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":814,"kind":2048,"name":"increment","url":"classes/_core_.group.html#increment","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":815,"kind":2048,"name":"decrement","url":"classes/_core_.group.html#decrement","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":816,"kind":2048,"name":"equals","url":"classes/_core_.group.html#equals","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":817,"kind":2048,"name":"equalsOneOf","url":"classes/_core_.group.html#equalsoneof","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":818,"kind":2048,"name":"addHook","url":"classes/_core_.group.html#addhook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":819,"kind":2048,"name":"removeHook","url":"classes/_core_.group.html#removehook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":820,"kind":2048,"name":"hasHook","url":"classes/_core_.group.html#hashook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":821,"kind":2048,"name":"hasHooks","url":"classes/_core_.group.html#hashooks-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":822,"kind":2048,"name":"addHook","url":"classes/_core_.group.html#addhook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":823,"kind":2048,"name":"removeHook","url":"classes/_core_.group.html#removehook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":824,"kind":2048,"name":"hasHook","url":"classes/_core_.group.html#hashook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":825,"kind":2048,"name":"hasHooks","url":"classes/_core_.group.html#hashooks","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":826,"kind":128,"name":"Auth","url":"classes/_core_.auth.html","classes":"tsd-kind-class tsd-parent-kind-external-module tsd-has-type-parameter","parent":"\"core\""},{"id":827,"kind":1024,"name":"id","url":"classes/_core_.auth.html#id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Auth"},{"id":828,"kind":1024,"name":"group_id","url":"classes/_core_.auth.html#group_id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Auth"},{"id":829,"kind":1024,"name":"auth","url":"classes/_core_.auth.html#auth","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Auth"},{"id":830,"kind":1024,"name":"module","url":"classes/_core_.auth.html#module","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Auth"},{"id":831,"kind":2048,"name":"toJSON","url":"classes/_core_.auth.html#tojson","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"core\".Auth"},{"id":832,"kind":1024,"name":"tableName","url":"classes/_core_.auth.html#tablename","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":833,"kind":1024,"name":"primaryKeyAttribute","url":"classes/_core_.auth.html#primarykeyattribute","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":834,"kind":1024,"name":"associations","url":"classes/_core_.auth.html#associations","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":835,"kind":65536,"name":"__type","url":"classes/_core_.auth.html#associations.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".Auth.associations"},{"id":836,"kind":1024,"name":"options","url":"classes/_core_.auth.html#options","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":837,"kind":1024,"name":"rawAttributes","url":"classes/_core_.auth.html#rawattributes","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":838,"kind":65536,"name":"__type","url":"classes/_core_.auth.html#rawattributes.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".Auth.rawAttributes"},{"id":839,"kind":1024,"name":"sequelize","url":"classes/_core_.auth.html#sequelize-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":840,"kind":2048,"name":"init","url":"classes/_core_.auth.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":841,"kind":2048,"name":"removeAttribute","url":"classes/_core_.auth.html#removeattribute","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":842,"kind":2048,"name":"sync","url":"classes/_core_.auth.html#sync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":843,"kind":2048,"name":"drop","url":"classes/_core_.auth.html#drop","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":844,"kind":2048,"name":"schema","url":"classes/_core_.auth.html#schema","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":845,"kind":2048,"name":"getTableName","url":"classes/_core_.auth.html#gettablename","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":846,"kind":2048,"name":"scope","url":"classes/_core_.auth.html#scope","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":847,"kind":2048,"name":"addScope","url":"classes/_core_.auth.html#addscope","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":848,"kind":2048,"name":"findAll","url":"classes/_core_.auth.html#findall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":849,"kind":2048,"name":"findByPk","url":"classes/_core_.auth.html#findbypk","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":850,"kind":2048,"name":"findOne","url":"classes/_core_.auth.html#findone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":851,"kind":2048,"name":"aggregate","url":"classes/_core_.auth.html#aggregate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":852,"kind":2048,"name":"count","url":"classes/_core_.auth.html#count","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":853,"kind":2048,"name":"findAndCountAll","url":"classes/_core_.auth.html#findandcountall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":854,"kind":2048,"name":"max","url":"classes/_core_.auth.html#max","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":855,"kind":2048,"name":"min","url":"classes/_core_.auth.html#min","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":856,"kind":2048,"name":"sum","url":"classes/_core_.auth.html#sum","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":857,"kind":2048,"name":"build","url":"classes/_core_.auth.html#build","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":858,"kind":2048,"name":"bulkBuild","url":"classes/_core_.auth.html#bulkbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":859,"kind":2048,"name":"create","url":"classes/_core_.auth.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":860,"kind":2048,"name":"findOrBuild","url":"classes/_core_.auth.html#findorbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":861,"kind":2048,"name":"findOrCreate","url":"classes/_core_.auth.html#findorcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":862,"kind":2048,"name":"upsert","url":"classes/_core_.auth.html#upsert","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":863,"kind":2048,"name":"bulkCreate","url":"classes/_core_.auth.html#bulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":864,"kind":2048,"name":"truncate","url":"classes/_core_.auth.html#truncate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":865,"kind":2048,"name":"destroy","url":"classes/_core_.auth.html#destroy-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":866,"kind":2048,"name":"restore","url":"classes/_core_.auth.html#restore-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":867,"kind":2048,"name":"update","url":"classes/_core_.auth.html#update-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":868,"kind":2048,"name":"increment","url":"classes/_core_.auth.html#increment-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":869,"kind":2048,"name":"describe","url":"classes/_core_.auth.html#describe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":870,"kind":2048,"name":"unscoped","url":"classes/_core_.auth.html#unscoped","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":871,"kind":2048,"name":"beforeValidate","url":"classes/_core_.auth.html#beforevalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":872,"kind":2048,"name":"afterValidate","url":"classes/_core_.auth.html#aftervalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":873,"kind":2048,"name":"beforeCreate","url":"classes/_core_.auth.html#beforecreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":874,"kind":2048,"name":"afterCreate","url":"classes/_core_.auth.html#aftercreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":875,"kind":2048,"name":"beforeDestroy","url":"classes/_core_.auth.html#beforedestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":876,"kind":2048,"name":"afterDestroy","url":"classes/_core_.auth.html#afterdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":877,"kind":2048,"name":"beforeUpdate","url":"classes/_core_.auth.html#beforeupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":878,"kind":2048,"name":"afterUpdate","url":"classes/_core_.auth.html#afterupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":879,"kind":2048,"name":"beforeBulkCreate","url":"classes/_core_.auth.html#beforebulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":880,"kind":2048,"name":"afterBulkCreate","url":"classes/_core_.auth.html#afterbulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":881,"kind":2048,"name":"beforeBulkDestroy","url":"classes/_core_.auth.html#beforebulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":882,"kind":2048,"name":"afterBulkDestroy","url":"classes/_core_.auth.html#afterbulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":883,"kind":2048,"name":"beforeBulkUpdate","url":"classes/_core_.auth.html#beforebulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":884,"kind":2048,"name":"afterBulkUpdate","url":"classes/_core_.auth.html#afterbulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":885,"kind":2048,"name":"beforeFind","url":"classes/_core_.auth.html#beforefind","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":886,"kind":2048,"name":"beforeCount","url":"classes/_core_.auth.html#beforecount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":887,"kind":2048,"name":"beforeFindAfterExpandIncludeAll","url":"classes/_core_.auth.html#beforefindafterexpandincludeall","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":888,"kind":2048,"name":"beforeFindAfterOptions","url":"classes/_core_.auth.html#beforefindafteroptions","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":889,"kind":2048,"name":"afterFind","url":"classes/_core_.auth.html#afterfind","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":890,"kind":2048,"name":"beforeBulkSync","url":"classes/_core_.auth.html#beforebulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":891,"kind":2048,"name":"afterBulkSync","url":"classes/_core_.auth.html#afterbulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":892,"kind":2048,"name":"beforeSync","url":"classes/_core_.auth.html#beforesync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":893,"kind":2048,"name":"afterSync","url":"classes/_core_.auth.html#aftersync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":894,"kind":2048,"name":"hasOne","url":"classes/_core_.auth.html#hasone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":895,"kind":2048,"name":"belongsTo","url":"classes/_core_.auth.html#belongsto","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":896,"kind":2048,"name":"hasMany","url":"classes/_core_.auth.html#hasmany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":897,"kind":2048,"name":"belongsToMany","url":"classes/_core_.auth.html#belongstomany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":898,"kind":1024,"name":"isNewRecord","url":"classes/_core_.auth.html#isnewrecord","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":899,"kind":1024,"name":"sequelize","url":"classes/_core_.auth.html#sequelize","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":900,"kind":512,"name":"constructor","url":"classes/_core_.auth.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":901,"kind":2048,"name":"where","url":"classes/_core_.auth.html#where","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":902,"kind":2048,"name":"getDataValue","url":"classes/_core_.auth.html#getdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":903,"kind":2048,"name":"setDataValue","url":"classes/_core_.auth.html#setdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":904,"kind":2048,"name":"get","url":"classes/_core_.auth.html#get","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":905,"kind":2048,"name":"set","url":"classes/_core_.auth.html#set","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":906,"kind":2048,"name":"setAttributes","url":"classes/_core_.auth.html#setattributes","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":907,"kind":2048,"name":"changed","url":"classes/_core_.auth.html#changed","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":908,"kind":2048,"name":"previous","url":"classes/_core_.auth.html#previous","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":909,"kind":2048,"name":"save","url":"classes/_core_.auth.html#save","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":910,"kind":2048,"name":"reload","url":"classes/_core_.auth.html#reload","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":911,"kind":2048,"name":"validate","url":"classes/_core_.auth.html#validate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":912,"kind":2048,"name":"update","url":"classes/_core_.auth.html#update","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":913,"kind":2048,"name":"destroy","url":"classes/_core_.auth.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":914,"kind":2048,"name":"restore","url":"classes/_core_.auth.html#restore","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":915,"kind":2048,"name":"increment","url":"classes/_core_.auth.html#increment","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":916,"kind":2048,"name":"decrement","url":"classes/_core_.auth.html#decrement","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":917,"kind":2048,"name":"equals","url":"classes/_core_.auth.html#equals","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":918,"kind":2048,"name":"equalsOneOf","url":"classes/_core_.auth.html#equalsoneof","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":919,"kind":2048,"name":"addHook","url":"classes/_core_.auth.html#addhook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":920,"kind":2048,"name":"removeHook","url":"classes/_core_.auth.html#removehook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":921,"kind":2048,"name":"hasHook","url":"classes/_core_.auth.html#hashook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":922,"kind":2048,"name":"hasHooks","url":"classes/_core_.auth.html#hashooks-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":923,"kind":2048,"name":"addHook","url":"classes/_core_.auth.html#addhook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":924,"kind":2048,"name":"removeHook","url":"classes/_core_.auth.html#removehook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":925,"kind":2048,"name":"hasHook","url":"classes/_core_.auth.html#hashook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":926,"kind":2048,"name":"hasHooks","url":"classes/_core_.auth.html#hashooks","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":927,"kind":256,"name":"LogArgs","url":"interfaces/_core_.logargs.html","classes":"tsd-kind-interface tsd-parent-kind-external-module","parent":"\"core\""},{"id":928,"kind":1024,"name":"message","url":"interfaces/_core_.logargs.html#message","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".LogArgs"},{"id":929,"kind":1024,"name":"user_id","url":"interfaces/_core_.logargs.html#user_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".LogArgs"},{"id":930,"kind":1024,"name":"user_name","url":"interfaces/_core_.logargs.html#user_name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".LogArgs"},{"id":931,"kind":1024,"name":"status_code","url":"interfaces/_core_.logargs.html#status_code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".LogArgs"},{"id":932,"kind":1024,"name":"method","url":"interfaces/_core_.logargs.html#method","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".LogArgs"},{"id":933,"kind":1024,"name":"path","url":"interfaces/_core_.logargs.html#path","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".LogArgs"},{"id":934,"kind":1024,"name":"authority","url":"interfaces/_core_.logargs.html#authority","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".LogArgs"},{"id":935,"kind":128,"name":"Log","url":"classes/_core_.log.html","classes":"tsd-kind-class tsd-parent-kind-external-module tsd-has-type-parameter","parent":"\"core\""},{"id":936,"kind":1024,"name":"id","url":"classes/_core_.log.html#id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":937,"kind":1024,"name":"message","url":"classes/_core_.log.html#message","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":938,"kind":1024,"name":"user_id","url":"classes/_core_.log.html#user_id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":939,"kind":1024,"name":"user_name","url":"classes/_core_.log.html#user_name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":940,"kind":1024,"name":"status_code","url":"classes/_core_.log.html#status_code","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":941,"kind":1024,"name":"method","url":"classes/_core_.log.html#method","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":942,"kind":1024,"name":"path","url":"classes/_core_.log.html#path","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":943,"kind":1024,"name":"authority","url":"classes/_core_.log.html#authority","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":944,"kind":1024,"name":"time","url":"classes/_core_.log.html#time","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":945,"kind":2048,"name":"createLog","url":"classes/_core_.log.html#createlog","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"\"core\".Log"},{"id":946,"kind":2048,"name":"toJSON","url":"classes/_core_.log.html#tojson","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"core\".Log"},{"id":947,"kind":1024,"name":"tableName","url":"classes/_core_.log.html#tablename","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":948,"kind":1024,"name":"primaryKeyAttribute","url":"classes/_core_.log.html#primarykeyattribute","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":949,"kind":1024,"name":"associations","url":"classes/_core_.log.html#associations","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":950,"kind":65536,"name":"__type","url":"classes/_core_.log.html#associations.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".Log.associations"},{"id":951,"kind":1024,"name":"options","url":"classes/_core_.log.html#options","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":952,"kind":1024,"name":"rawAttributes","url":"classes/_core_.log.html#rawattributes","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":953,"kind":65536,"name":"__type","url":"classes/_core_.log.html#rawattributes.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".Log.rawAttributes"},{"id":954,"kind":1024,"name":"sequelize","url":"classes/_core_.log.html#sequelize-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":955,"kind":2048,"name":"init","url":"classes/_core_.log.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":956,"kind":2048,"name":"removeAttribute","url":"classes/_core_.log.html#removeattribute","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":957,"kind":2048,"name":"sync","url":"classes/_core_.log.html#sync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":958,"kind":2048,"name":"drop","url":"classes/_core_.log.html#drop","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":959,"kind":2048,"name":"schema","url":"classes/_core_.log.html#schema","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":960,"kind":2048,"name":"getTableName","url":"classes/_core_.log.html#gettablename","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":961,"kind":2048,"name":"scope","url":"classes/_core_.log.html#scope","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":962,"kind":2048,"name":"addScope","url":"classes/_core_.log.html#addscope","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":963,"kind":2048,"name":"findAll","url":"classes/_core_.log.html#findall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":964,"kind":2048,"name":"findByPk","url":"classes/_core_.log.html#findbypk","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":965,"kind":2048,"name":"findOne","url":"classes/_core_.log.html#findone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":966,"kind":2048,"name":"aggregate","url":"classes/_core_.log.html#aggregate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":967,"kind":2048,"name":"count","url":"classes/_core_.log.html#count","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":968,"kind":2048,"name":"findAndCountAll","url":"classes/_core_.log.html#findandcountall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":969,"kind":2048,"name":"max","url":"classes/_core_.log.html#max","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":970,"kind":2048,"name":"min","url":"classes/_core_.log.html#min","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":971,"kind":2048,"name":"sum","url":"classes/_core_.log.html#sum","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":972,"kind":2048,"name":"build","url":"classes/_core_.log.html#build","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":973,"kind":2048,"name":"bulkBuild","url":"classes/_core_.log.html#bulkbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":974,"kind":2048,"name":"create","url":"classes/_core_.log.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":975,"kind":2048,"name":"findOrBuild","url":"classes/_core_.log.html#findorbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":976,"kind":2048,"name":"findOrCreate","url":"classes/_core_.log.html#findorcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":977,"kind":2048,"name":"upsert","url":"classes/_core_.log.html#upsert","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":978,"kind":2048,"name":"bulkCreate","url":"classes/_core_.log.html#bulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":979,"kind":2048,"name":"truncate","url":"classes/_core_.log.html#truncate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":980,"kind":2048,"name":"destroy","url":"classes/_core_.log.html#destroy-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":981,"kind":2048,"name":"restore","url":"classes/_core_.log.html#restore-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":982,"kind":2048,"name":"update","url":"classes/_core_.log.html#update-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":983,"kind":2048,"name":"increment","url":"classes/_core_.log.html#increment-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":984,"kind":2048,"name":"describe","url":"classes/_core_.log.html#describe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":985,"kind":2048,"name":"unscoped","url":"classes/_core_.log.html#unscoped","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":986,"kind":2048,"name":"beforeValidate","url":"classes/_core_.log.html#beforevalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":987,"kind":2048,"name":"afterValidate","url":"classes/_core_.log.html#aftervalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":988,"kind":2048,"name":"beforeCreate","url":"classes/_core_.log.html#beforecreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":989,"kind":2048,"name":"afterCreate","url":"classes/_core_.log.html#aftercreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":990,"kind":2048,"name":"beforeDestroy","url":"classes/_core_.log.html#beforedestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":991,"kind":2048,"name":"afterDestroy","url":"classes/_core_.log.html#afterdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":992,"kind":2048,"name":"beforeUpdate","url":"classes/_core_.log.html#beforeupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":993,"kind":2048,"name":"afterUpdate","url":"classes/_core_.log.html#afterupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":994,"kind":2048,"name":"beforeBulkCreate","url":"classes/_core_.log.html#beforebulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":995,"kind":2048,"name":"afterBulkCreate","url":"classes/_core_.log.html#afterbulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":996,"kind":2048,"name":"beforeBulkDestroy","url":"classes/_core_.log.html#beforebulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":997,"kind":2048,"name":"afterBulkDestroy","url":"classes/_core_.log.html#afterbulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":998,"kind":2048,"name":"beforeBulkUpdate","url":"classes/_core_.log.html#beforebulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":999,"kind":2048,"name":"afterBulkUpdate","url":"classes/_core_.log.html#afterbulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1000,"kind":2048,"name":"beforeFind","url":"classes/_core_.log.html#beforefind","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1001,"kind":2048,"name":"beforeCount","url":"classes/_core_.log.html#beforecount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1002,"kind":2048,"name":"beforeFindAfterExpandIncludeAll","url":"classes/_core_.log.html#beforefindafterexpandincludeall","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1003,"kind":2048,"name":"beforeFindAfterOptions","url":"classes/_core_.log.html#beforefindafteroptions","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1004,"kind":2048,"name":"afterFind","url":"classes/_core_.log.html#afterfind","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1005,"kind":2048,"name":"beforeBulkSync","url":"classes/_core_.log.html#beforebulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1006,"kind":2048,"name":"afterBulkSync","url":"classes/_core_.log.html#afterbulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1007,"kind":2048,"name":"beforeSync","url":"classes/_core_.log.html#beforesync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1008,"kind":2048,"name":"afterSync","url":"classes/_core_.log.html#aftersync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1009,"kind":2048,"name":"hasOne","url":"classes/_core_.log.html#hasone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1010,"kind":2048,"name":"belongsTo","url":"classes/_core_.log.html#belongsto","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1011,"kind":2048,"name":"hasMany","url":"classes/_core_.log.html#hasmany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1012,"kind":2048,"name":"belongsToMany","url":"classes/_core_.log.html#belongstomany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1013,"kind":1024,"name":"isNewRecord","url":"classes/_core_.log.html#isnewrecord","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1014,"kind":1024,"name":"sequelize","url":"classes/_core_.log.html#sequelize","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1015,"kind":512,"name":"constructor","url":"classes/_core_.log.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1016,"kind":2048,"name":"where","url":"classes/_core_.log.html#where","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1017,"kind":2048,"name":"getDataValue","url":"classes/_core_.log.html#getdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1018,"kind":2048,"name":"setDataValue","url":"classes/_core_.log.html#setdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1019,"kind":2048,"name":"get","url":"classes/_core_.log.html#get","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1020,"kind":2048,"name":"set","url":"classes/_core_.log.html#set","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1021,"kind":2048,"name":"setAttributes","url":"classes/_core_.log.html#setattributes","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1022,"kind":2048,"name":"changed","url":"classes/_core_.log.html#changed","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1023,"kind":2048,"name":"previous","url":"classes/_core_.log.html#previous","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1024,"kind":2048,"name":"save","url":"classes/_core_.log.html#save","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1025,"kind":2048,"name":"reload","url":"classes/_core_.log.html#reload","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1026,"kind":2048,"name":"validate","url":"classes/_core_.log.html#validate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1027,"kind":2048,"name":"update","url":"classes/_core_.log.html#update","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1028,"kind":2048,"name":"destroy","url":"classes/_core_.log.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1029,"kind":2048,"name":"restore","url":"classes/_core_.log.html#restore","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1030,"kind":2048,"name":"increment","url":"classes/_core_.log.html#increment","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1031,"kind":2048,"name":"decrement","url":"classes/_core_.log.html#decrement","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1032,"kind":2048,"name":"equals","url":"classes/_core_.log.html#equals","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1033,"kind":2048,"name":"equalsOneOf","url":"classes/_core_.log.html#equalsoneof","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1034,"kind":2048,"name":"addHook","url":"classes/_core_.log.html#addhook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1035,"kind":2048,"name":"removeHook","url":"classes/_core_.log.html#removehook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1036,"kind":2048,"name":"hasHook","url":"classes/_core_.log.html#hashook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1037,"kind":2048,"name":"hasHooks","url":"classes/_core_.log.html#hashooks-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1038,"kind":2048,"name":"addHook","url":"classes/_core_.log.html#addhook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1039,"kind":2048,"name":"removeHook","url":"classes/_core_.log.html#removehook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1040,"kind":2048,"name":"hasHook","url":"classes/_core_.log.html#hashook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1041,"kind":2048,"name":"hasHooks","url":"classes/_core_.log.html#hashooks","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1042,"kind":256,"name":"FileArgs","url":"interfaces/_core_.fileargs.html","classes":"tsd-kind-interface tsd-parent-kind-external-module","parent":"\"core\""},{"id":1043,"kind":1024,"name":"path","url":"interfaces/_core_.fileargs.html#path","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".FileArgs"},{"id":1044,"kind":1024,"name":"type","url":"interfaces/_core_.fileargs.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".FileArgs"},{"id":1045,"kind":1024,"name":"name","url":"interfaces/_core_.fileargs.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".FileArgs"},{"id":1046,"kind":1024,"name":"extension","url":"interfaces/_core_.fileargs.html#extension","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".FileArgs"},{"id":1047,"kind":1024,"name":"size","url":"interfaces/_core_.fileargs.html#size","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".FileArgs"},{"id":1048,"kind":128,"name":"File","url":"classes/_core_.file.html","classes":"tsd-kind-class tsd-parent-kind-external-module tsd-has-type-parameter","parent":"\"core\""},{"id":1049,"kind":1024,"name":"id","url":"classes/_core_.file.html#id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".File"},{"id":1050,"kind":1024,"name":"path","url":"classes/_core_.file.html#path","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".File"},{"id":1051,"kind":1024,"name":"type","url":"classes/_core_.file.html#type","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".File"},{"id":1052,"kind":1024,"name":"name","url":"classes/_core_.file.html#name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".File"},{"id":1053,"kind":1024,"name":"extension","url":"classes/_core_.file.html#extension","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".File"},{"id":1054,"kind":1024,"name":"size","url":"classes/_core_.file.html#size","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".File"},{"id":1055,"kind":2048,"name":"createRecord","url":"classes/_core_.file.html#createrecord","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"\"core\".File"},{"id":1056,"kind":2048,"name":"toJSON","url":"classes/_core_.file.html#tojson","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"core\".File"},{"id":1057,"kind":1024,"name":"tableName","url":"classes/_core_.file.html#tablename","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1058,"kind":1024,"name":"primaryKeyAttribute","url":"classes/_core_.file.html#primarykeyattribute","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1059,"kind":1024,"name":"associations","url":"classes/_core_.file.html#associations","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1060,"kind":65536,"name":"__type","url":"classes/_core_.file.html#associations.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".File.associations"},{"id":1061,"kind":1024,"name":"options","url":"classes/_core_.file.html#options","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1062,"kind":1024,"name":"rawAttributes","url":"classes/_core_.file.html#rawattributes","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1063,"kind":65536,"name":"__type","url":"classes/_core_.file.html#rawattributes.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".File.rawAttributes"},{"id":1064,"kind":1024,"name":"sequelize","url":"classes/_core_.file.html#sequelize-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1065,"kind":2048,"name":"init","url":"classes/_core_.file.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1066,"kind":2048,"name":"removeAttribute","url":"classes/_core_.file.html#removeattribute","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1067,"kind":2048,"name":"sync","url":"classes/_core_.file.html#sync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1068,"kind":2048,"name":"drop","url":"classes/_core_.file.html#drop","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1069,"kind":2048,"name":"schema","url":"classes/_core_.file.html#schema","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1070,"kind":2048,"name":"getTableName","url":"classes/_core_.file.html#gettablename","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1071,"kind":2048,"name":"scope","url":"classes/_core_.file.html#scope","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1072,"kind":2048,"name":"addScope","url":"classes/_core_.file.html#addscope","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1073,"kind":2048,"name":"findAll","url":"classes/_core_.file.html#findall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1074,"kind":2048,"name":"findByPk","url":"classes/_core_.file.html#findbypk","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1075,"kind":2048,"name":"findOne","url":"classes/_core_.file.html#findone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1076,"kind":2048,"name":"aggregate","url":"classes/_core_.file.html#aggregate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1077,"kind":2048,"name":"count","url":"classes/_core_.file.html#count","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1078,"kind":2048,"name":"findAndCountAll","url":"classes/_core_.file.html#findandcountall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1079,"kind":2048,"name":"max","url":"classes/_core_.file.html#max","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1080,"kind":2048,"name":"min","url":"classes/_core_.file.html#min","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1081,"kind":2048,"name":"sum","url":"classes/_core_.file.html#sum","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1082,"kind":2048,"name":"build","url":"classes/_core_.file.html#build","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1083,"kind":2048,"name":"bulkBuild","url":"classes/_core_.file.html#bulkbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1084,"kind":2048,"name":"create","url":"classes/_core_.file.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1085,"kind":2048,"name":"findOrBuild","url":"classes/_core_.file.html#findorbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1086,"kind":2048,"name":"findOrCreate","url":"classes/_core_.file.html#findorcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1087,"kind":2048,"name":"upsert","url":"classes/_core_.file.html#upsert","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1088,"kind":2048,"name":"bulkCreate","url":"classes/_core_.file.html#bulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1089,"kind":2048,"name":"truncate","url":"classes/_core_.file.html#truncate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1090,"kind":2048,"name":"destroy","url":"classes/_core_.file.html#destroy-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1091,"kind":2048,"name":"restore","url":"classes/_core_.file.html#restore-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1092,"kind":2048,"name":"update","url":"classes/_core_.file.html#update-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1093,"kind":2048,"name":"increment","url":"classes/_core_.file.html#increment-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1094,"kind":2048,"name":"describe","url":"classes/_core_.file.html#describe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1095,"kind":2048,"name":"unscoped","url":"classes/_core_.file.html#unscoped","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1096,"kind":2048,"name":"beforeValidate","url":"classes/_core_.file.html#beforevalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1097,"kind":2048,"name":"afterValidate","url":"classes/_core_.file.html#aftervalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1098,"kind":2048,"name":"beforeCreate","url":"classes/_core_.file.html#beforecreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1099,"kind":2048,"name":"afterCreate","url":"classes/_core_.file.html#aftercreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1100,"kind":2048,"name":"beforeDestroy","url":"classes/_core_.file.html#beforedestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1101,"kind":2048,"name":"afterDestroy","url":"classes/_core_.file.html#afterdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1102,"kind":2048,"name":"beforeUpdate","url":"classes/_core_.file.html#beforeupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1103,"kind":2048,"name":"afterUpdate","url":"classes/_core_.file.html#afterupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1104,"kind":2048,"name":"beforeBulkCreate","url":"classes/_core_.file.html#beforebulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1105,"kind":2048,"name":"afterBulkCreate","url":"classes/_core_.file.html#afterbulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1106,"kind":2048,"name":"beforeBulkDestroy","url":"classes/_core_.file.html#beforebulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1107,"kind":2048,"name":"afterBulkDestroy","url":"classes/_core_.file.html#afterbulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1108,"kind":2048,"name":"beforeBulkUpdate","url":"classes/_core_.file.html#beforebulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1109,"kind":2048,"name":"afterBulkUpdate","url":"classes/_core_.file.html#afterbulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1110,"kind":2048,"name":"beforeFind","url":"classes/_core_.file.html#beforefind","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1111,"kind":2048,"name":"beforeCount","url":"classes/_core_.file.html#beforecount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1112,"kind":2048,"name":"beforeFindAfterExpandIncludeAll","url":"classes/_core_.file.html#beforefindafterexpandincludeall","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1113,"kind":2048,"name":"beforeFindAfterOptions","url":"classes/_core_.file.html#beforefindafteroptions","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1114,"kind":2048,"name":"afterFind","url":"classes/_core_.file.html#afterfind","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1115,"kind":2048,"name":"beforeBulkSync","url":"classes/_core_.file.html#beforebulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1116,"kind":2048,"name":"afterBulkSync","url":"classes/_core_.file.html#afterbulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1117,"kind":2048,"name":"beforeSync","url":"classes/_core_.file.html#beforesync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1118,"kind":2048,"name":"afterSync","url":"classes/_core_.file.html#aftersync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1119,"kind":2048,"name":"hasOne","url":"classes/_core_.file.html#hasone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1120,"kind":2048,"name":"belongsTo","url":"classes/_core_.file.html#belongsto","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1121,"kind":2048,"name":"hasMany","url":"classes/_core_.file.html#hasmany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1122,"kind":2048,"name":"belongsToMany","url":"classes/_core_.file.html#belongstomany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1123,"kind":1024,"name":"isNewRecord","url":"classes/_core_.file.html#isnewrecord","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1124,"kind":1024,"name":"sequelize","url":"classes/_core_.file.html#sequelize","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1125,"kind":512,"name":"constructor","url":"classes/_core_.file.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1126,"kind":2048,"name":"where","url":"classes/_core_.file.html#where","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1127,"kind":2048,"name":"getDataValue","url":"classes/_core_.file.html#getdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1128,"kind":2048,"name":"setDataValue","url":"classes/_core_.file.html#setdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1129,"kind":2048,"name":"get","url":"classes/_core_.file.html#get","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1130,"kind":2048,"name":"set","url":"classes/_core_.file.html#set","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1131,"kind":2048,"name":"setAttributes","url":"classes/_core_.file.html#setattributes","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1132,"kind":2048,"name":"changed","url":"classes/_core_.file.html#changed","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1133,"kind":2048,"name":"previous","url":"classes/_core_.file.html#previous","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1134,"kind":2048,"name":"save","url":"classes/_core_.file.html#save","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1135,"kind":2048,"name":"reload","url":"classes/_core_.file.html#reload","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1136,"kind":2048,"name":"validate","url":"classes/_core_.file.html#validate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1137,"kind":2048,"name":"update","url":"classes/_core_.file.html#update","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1138,"kind":2048,"name":"destroy","url":"classes/_core_.file.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1139,"kind":2048,"name":"restore","url":"classes/_core_.file.html#restore","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1140,"kind":2048,"name":"increment","url":"classes/_core_.file.html#increment","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1141,"kind":2048,"name":"decrement","url":"classes/_core_.file.html#decrement","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1142,"kind":2048,"name":"equals","url":"classes/_core_.file.html#equals","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1143,"kind":2048,"name":"equalsOneOf","url":"classes/_core_.file.html#equalsoneof","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1144,"kind":2048,"name":"addHook","url":"classes/_core_.file.html#addhook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1145,"kind":2048,"name":"removeHook","url":"classes/_core_.file.html#removehook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1146,"kind":2048,"name":"hasHook","url":"classes/_core_.file.html#hashook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1147,"kind":2048,"name":"hasHooks","url":"classes/_core_.file.html#hashooks-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1148,"kind":2048,"name":"addHook","url":"classes/_core_.file.html#addhook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1149,"kind":2048,"name":"removeHook","url":"classes/_core_.file.html#removehook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1150,"kind":2048,"name":"hasHook","url":"classes/_core_.file.html#hashook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1151,"kind":2048,"name":"hasHooks","url":"classes/_core_.file.html#hashooks","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1152,"kind":32,"name":"__version__","url":"modules/_core_.html#__version__","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"core\""},{"id":1153,"kind":32,"name":"routeMetaInfo","url":"modules/_core_.html#routemetainfo","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"core\""},{"id":1154,"kind":32,"name":"disableLoading","url":"modules/_core_.html#disableloading","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"core\""},{"id":1155,"kind":1,"name":"\"factory\"","url":"modules/_factory_.html","classes":"tsd-kind-external-module"},{"id":1156,"kind":64,"name":"modelExtend","url":"modules/_factory_.html#modelextend","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"factory\""},{"id":1157,"kind":1,"name":"\"file\"","url":"modules/_file_.html","classes":"tsd-kind-external-module"},{"id":1158,"kind":128,"name":"Uploader","url":"classes/_file_.uploader.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"file\""},{"id":1159,"kind":1024,"name":"storeDir","url":"classes/_file_.uploader.html#storedir","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"file\".Uploader"},{"id":1160,"kind":512,"name":"constructor","url":"classes/_file_.uploader.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"file\".Uploader"},{"id":1161,"kind":2048,"name":"upload","url":"classes/_file_.uploader.html#upload","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"file\".Uploader"},{"id":1162,"kind":2048,"name":"getStorePath","url":"classes/_file_.uploader.html#getstorepath","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"file\".Uploader"},{"id":1163,"kind":2048,"name":"generateName","url":"classes/_file_.uploader.html#generatename","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"file\".Uploader"},{"id":1164,"kind":2048,"name":"getExactStoreDir","url":"classes/_file_.uploader.html#getexactstoredir","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"file\".Uploader"},{"id":1165,"kind":1,"name":"\"lin-validator\"","url":"modules/_lin_validator_.html","classes":"tsd-kind-external-module"},{"id":1166,"kind":128,"name":"LinValidator","url":"classes/_lin_validator_.linvalidator.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"lin-validator\""},{"id":1167,"kind":1024,"name":"data","url":"classes/_lin_validator_.linvalidator.html#data","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".LinValidator"},{"id":1168,"kind":1024,"name":"parsed","url":"classes/_lin_validator_.linvalidator.html#parsed","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".LinValidator"},{"id":1169,"kind":1024,"name":"errors","url":"classes/_lin_validator_.linvalidator.html#errors","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".LinValidator"},{"id":1170,"kind":1024,"name":"alias","url":"classes/_lin_validator_.linvalidator.html#alias","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".LinValidator"},{"id":1171,"kind":2048,"name":"validate","url":"classes/_lin_validator_.linvalidator.html#validate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-validator\".LinValidator"},{"id":1172,"kind":2048,"name":"replace","url":"classes/_lin_validator_.linvalidator.html#replace","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"lin-validator\".LinValidator"},{"id":1173,"kind":2048,"name":"isOptional","url":"classes/_lin_validator_.linvalidator.html#isoptional","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"lin-validator\".LinValidator"},{"id":1174,"kind":2048,"name":"checkRules","url":"classes/_lin_validator_.linvalidator.html#checkrules","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"lin-validator\".LinValidator"},{"id":1175,"kind":2048,"name":"getValidateFuncKey","url":"classes/_lin_validator_.linvalidator.html#getvalidatefunckey","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"lin-validator\".LinValidator"},{"id":1176,"kind":2048,"name":"get","url":"classes/_lin_validator_.linvalidator.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-validator\".LinValidator"},{"id":1177,"kind":2048,"name":"findInData","url":"classes/_lin_validator_.linvalidator.html#findindata","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"lin-validator\".LinValidator"},{"id":1178,"kind":128,"name":"Rule","url":"classes/_lin_validator_.rule.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"lin-validator\""},{"id":1179,"kind":1024,"name":"options","url":"classes/_lin_validator_.rule.html#options","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1180,"kind":1024,"name":"message","url":"classes/_lin_validator_.rule.html#message","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1181,"kind":1024,"name":"validateFunction","url":"classes/_lin_validator_.rule.html#validatefunction","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1182,"kind":1024,"name":"optional","url":"classes/_lin_validator_.rule.html#optional","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1183,"kind":1024,"name":"parsedValue","url":"classes/_lin_validator_.rule.html#parsedvalue","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1184,"kind":1024,"name":"rawValue","url":"classes/_lin_validator_.rule.html#rawvalue","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1185,"kind":1024,"name":"defaultValue","url":"classes/_lin_validator_.rule.html#defaultvalue","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1186,"kind":512,"name":"constructor","url":"classes/_lin_validator_.rule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1187,"kind":2048,"name":"validate","url":"classes/_lin_validator_.rule.html#validate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1188,"kind":1,"name":"\"log\"","url":"modules/_log_.html","classes":"tsd-kind-external-module"},{"id":1189,"kind":32,"name":"REG_XP","url":"modules/_log_.html#reg_xp","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"log\""},{"id":1190,"kind":64,"name":"logger","url":"modules/_log_.html#logger","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"log\""},{"id":1191,"kind":64,"name":"writeLog","url":"modules/_log_.html#writelog","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"log\""},{"id":1192,"kind":64,"name":"parseTemplate","url":"modules/_log_.html#parsetemplate","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"log\""},{"id":1193,"kind":1,"name":"\"middleware\"","url":"modules/_middleware_.html","classes":"tsd-kind-external-module"},{"id":1194,"kind":64,"name":"error","url":"modules/_middleware_.html#error","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"middleware\""},{"id":1195,"kind":64,"name":"log","url":"modules/_middleware_.html#log","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"middleware\""},{"id":1196,"kind":1,"name":"\"mixin\"","url":"modules/_mixin_.html","classes":"tsd-kind-external-module"},{"id":1197,"kind":128,"name":"JsonMixin","url":"classes/_mixin_.jsonmixin.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"mixin\""},{"id":1198,"kind":1024,"name":"fields","url":"classes/_mixin_.jsonmixin.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"mixin\".JsonMixin"},{"id":1199,"kind":1,"name":"\"index\"","url":"modules/_index_.html","classes":"tsd-kind-external-module"},{"id":1200,"kind":1,"name":"\"limiter\"","url":"modules/_limiter_.html","classes":"tsd-kind-external-module"},{"id":1201,"kind":256,"name":"RatelimitOptions","url":"interfaces/_limiter_.ratelimitoptions.html","classes":"tsd-kind-interface tsd-parent-kind-external-module","parent":"\"limiter\""},{"id":1202,"kind":1024,"name":"db","url":"interfaces/_limiter_.ratelimitoptions.html#db","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"limiter\".RatelimitOptions"},{"id":1203,"kind":1024,"name":"duration","url":"interfaces/_limiter_.ratelimitoptions.html#duration","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"limiter\".RatelimitOptions"},{"id":1204,"kind":1024,"name":"max","url":"interfaces/_limiter_.ratelimitoptions.html#max","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"limiter\".RatelimitOptions"},{"id":1205,"kind":1024,"name":"id","url":"interfaces/_limiter_.ratelimitoptions.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"limiter\".RatelimitOptions"},{"id":1206,"kind":1024,"name":"prefix","url":"interfaces/_limiter_.ratelimitoptions.html#prefix","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"limiter\".RatelimitOptions"},{"id":1207,"kind":1024,"name":"endpoint","url":"interfaces/_limiter_.ratelimitoptions.html#endpoint","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"limiter\".RatelimitOptions"},{"id":1208,"kind":1024,"name":"whitelist","url":"interfaces/_limiter_.ratelimitoptions.html#whitelist","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"limiter\".RatelimitOptions"},{"id":1209,"kind":1024,"name":"blacklist","url":"interfaces/_limiter_.ratelimitoptions.html#blacklist","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"limiter\".RatelimitOptions"},{"id":1210,"kind":1024,"name":"throw","url":"interfaces/_limiter_.ratelimitoptions.html#throw","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"limiter\".RatelimitOptions"},{"id":1211,"kind":1024,"name":"errorMessage","url":"interfaces/_limiter_.ratelimitoptions.html#errormessage","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"limiter\".RatelimitOptions"},{"id":1212,"kind":1024,"name":"headers","url":"interfaces/_limiter_.ratelimitoptions.html#headers","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"limiter\".RatelimitOptions"},{"id":1213,"kind":1024,"name":"logging","url":"interfaces/_limiter_.ratelimitoptions.html#logging","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"limiter\".RatelimitOptions"},{"id":1214,"kind":64,"name":"find","url":"modules/_limiter_.html#find","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"limiter\""},{"id":1215,"kind":64,"name":"pttl","url":"modules/_limiter_.html#pttl","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"limiter\""},{"id":1216,"kind":4194304,"name":"RatelimitExpires","url":"modules/_limiter_.html#ratelimitexpires","classes":"tsd-kind-type-alias tsd-parent-kind-external-module","parent":"\"limiter\""},{"id":1217,"kind":65536,"name":"__type","url":"modules/_limiter_.html#ratelimitexpires.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias tsd-is-not-exported","parent":"\"limiter\".RatelimitExpires"},{"id":1218,"kind":64,"name":"ratelimit","url":"modules/_limiter_.html#ratelimit","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"limiter\""},{"id":1219,"kind":1,"name":"\"sse\"","url":"modules/_sse_.html","classes":"tsd-kind-external-module"},{"id":1220,"kind":128,"name":"SSE","url":"classes/_sse_.sse.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"sse\""},{"id":1221,"kind":512,"name":"constructor","url":"classes/_sse_.sse.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"sse\".SSE"},{"id":1222,"kind":2048,"name":"_transform","url":"classes/_sse_.sse.html#_transform","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"sse\".SSE"},{"id":1223,"kind":2048,"name":"_flush","url":"classes/_sse_.sse.html#_flush","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1224,"kind":1024,"name":"writable","url":"classes/_sse_.sse.html#writable","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1225,"kind":1024,"name":"writableHighWaterMark","url":"classes/_sse_.sse.html#writablehighwatermark","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1226,"kind":1024,"name":"writableLength","url":"classes/_sse_.sse.html#writablelength","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1227,"kind":2048,"name":"_write","url":"classes/_sse_.sse.html#_write","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1228,"kind":2048,"name":"_writev","url":"classes/_sse_.sse.html#_writev","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1229,"kind":2048,"name":"_destroy","url":"classes/_sse_.sse.html#_destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1230,"kind":2048,"name":"_final","url":"classes/_sse_.sse.html#_final","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1231,"kind":2048,"name":"write","url":"classes/_sse_.sse.html#write","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1232,"kind":2048,"name":"setDefaultEncoding","url":"classes/_sse_.sse.html#setdefaultencoding","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1233,"kind":2048,"name":"end","url":"classes/_sse_.sse.html#end","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1234,"kind":2048,"name":"cork","url":"classes/_sse_.sse.html#cork","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1235,"kind":2048,"name":"uncork","url":"classes/_sse_.sse.html#uncork","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1236,"kind":1024,"name":"readable","url":"classes/_sse_.sse.html#readable","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1237,"kind":1024,"name":"readableHighWaterMark","url":"classes/_sse_.sse.html#readablehighwatermark","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1238,"kind":1024,"name":"readableLength","url":"classes/_sse_.sse.html#readablelength","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1239,"kind":2048,"name":"_read","url":"classes/_sse_.sse.html#_read","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1240,"kind":2048,"name":"read","url":"classes/_sse_.sse.html#read","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1241,"kind":2048,"name":"setEncoding","url":"classes/_sse_.sse.html#setencoding","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1242,"kind":2048,"name":"pause","url":"classes/_sse_.sse.html#pause","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1243,"kind":2048,"name":"resume","url":"classes/_sse_.sse.html#resume","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1244,"kind":2048,"name":"isPaused","url":"classes/_sse_.sse.html#ispaused","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1245,"kind":2048,"name":"unpipe","url":"classes/_sse_.sse.html#unpipe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1246,"kind":2048,"name":"unshift","url":"classes/_sse_.sse.html#unshift","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1247,"kind":2048,"name":"wrap","url":"classes/_sse_.sse.html#wrap","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1248,"kind":2048,"name":"push","url":"classes/_sse_.sse.html#push","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1249,"kind":2048,"name":"destroy","url":"classes/_sse_.sse.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1250,"kind":2048,"name":"addListener","url":"classes/_sse_.sse.html#addlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1251,"kind":2048,"name":"emit","url":"classes/_sse_.sse.html#emit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1252,"kind":2048,"name":"on","url":"classes/_sse_.sse.html#on","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1253,"kind":2048,"name":"once","url":"classes/_sse_.sse.html#once","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1254,"kind":2048,"name":"prependListener","url":"classes/_sse_.sse.html#prependlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1255,"kind":2048,"name":"prependOnceListener","url":"classes/_sse_.sse.html#prependoncelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1256,"kind":2048,"name":"removeListener","url":"classes/_sse_.sse.html#removelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1257,"kind":2048,"name":"__@asyncIterator","url":"classes/_sse_.sse.html#___asynciterator","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1258,"kind":2048,"name":"pipe","url":"classes/_sse_.sse.html#pipe","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1259,"kind":2048,"name":"listenerCount","url":"classes/_sse_.sse.html#listenercount-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"sse\".SSE"},{"id":1260,"kind":1024,"name":"defaultMaxListeners","url":"classes/_sse_.sse.html#defaultmaxlisteners","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"sse\".SSE"},{"id":1261,"kind":2048,"name":"off","url":"classes/_sse_.sse.html#off","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1262,"kind":2048,"name":"removeAllListeners","url":"classes/_sse_.sse.html#removealllisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1263,"kind":2048,"name":"setMaxListeners","url":"classes/_sse_.sse.html#setmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1264,"kind":2048,"name":"getMaxListeners","url":"classes/_sse_.sse.html#getmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1265,"kind":2048,"name":"listeners","url":"classes/_sse_.sse.html#listeners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1266,"kind":2048,"name":"rawListeners","url":"classes/_sse_.sse.html#rawlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1267,"kind":2048,"name":"eventNames","url":"classes/_sse_.sse.html#eventnames","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1268,"kind":2048,"name":"listenerCount","url":"classes/_sse_.sse.html#listenercount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1269,"kind":128,"name":"MessageBroker","url":"classes/_sse_.messagebroker.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"sse\""},{"id":1270,"kind":1024,"name":"messages","url":"classes/_sse_.messagebroker.html#messages","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1271,"kind":1024,"name":"retry","url":"classes/_sse_.messagebroker.html#retry","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"sse\".MessageBroker"},{"id":1272,"kind":1024,"name":"buffer","url":"classes/_sse_.messagebroker.html#buffer","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"sse\".MessageBroker"},{"id":1273,"kind":1024,"name":"defaultId","url":"classes/_sse_.messagebroker.html#defaultid","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"sse\".MessageBroker"},{"id":1274,"kind":512,"name":"constructor","url":"classes/_sse_.messagebroker.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1275,"kind":2048,"name":"setRetry","url":"classes/_sse_.messagebroker.html#setretry","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1276,"kind":2048,"name":"setEventId","url":"classes/_sse_.messagebroker.html#seteventid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1277,"kind":2048,"name":"resetEventId","url":"classes/_sse_.messagebroker.html#reseteventid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1278,"kind":2048,"name":"increaseId","url":"classes/_sse_.messagebroker.html#increaseid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1279,"kind":2048,"name":"addMessage","url":"classes/_sse_.messagebroker.html#addmessage","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1280,"kind":2048,"name":"flushBuffer","url":"classes/_sse_.messagebroker.html#flushbuffer","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1281,"kind":2048,"name":"joinBuffer","url":"classes/_sse_.messagebroker.html#joinbuffer","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1282,"kind":2048,"name":"pop","url":"classes/_sse_.messagebroker.html#pop","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1283,"kind":2048,"name":"heartbeat","url":"classes/_sse_.messagebroker.html#heartbeat","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1284,"kind":2048,"name":"existMessage","url":"classes/_sse_.messagebroker.html#existmessage","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1285,"kind":128,"name":"Subscription","url":"classes/_sse_.subscription.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"sse\""},{"id":1286,"kind":1024,"name":"value","url":"classes/_sse_.subscription.html#value","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"sse\".Subscription"},{"id":1287,"kind":512,"name":"constructor","url":"classes/_sse_.subscription.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"sse\".Subscription"},{"id":1288,"kind":2048,"name":"_read","url":"classes/_sse_.subscription.html#_read","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"sse\".Subscription"},{"id":1289,"kind":1024,"name":"readable","url":"classes/_sse_.subscription.html#readable","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1290,"kind":1024,"name":"readableHighWaterMark","url":"classes/_sse_.subscription.html#readablehighwatermark","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1291,"kind":1024,"name":"readableLength","url":"classes/_sse_.subscription.html#readablelength","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1292,"kind":2048,"name":"read","url":"classes/_sse_.subscription.html#read","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1293,"kind":2048,"name":"setEncoding","url":"classes/_sse_.subscription.html#setencoding","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1294,"kind":2048,"name":"pause","url":"classes/_sse_.subscription.html#pause","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1295,"kind":2048,"name":"resume","url":"classes/_sse_.subscription.html#resume","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1296,"kind":2048,"name":"isPaused","url":"classes/_sse_.subscription.html#ispaused","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1297,"kind":2048,"name":"unpipe","url":"classes/_sse_.subscription.html#unpipe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1298,"kind":2048,"name":"unshift","url":"classes/_sse_.subscription.html#unshift","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1299,"kind":2048,"name":"wrap","url":"classes/_sse_.subscription.html#wrap","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1300,"kind":2048,"name":"push","url":"classes/_sse_.subscription.html#push","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1301,"kind":2048,"name":"_destroy","url":"classes/_sse_.subscription.html#_destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1302,"kind":2048,"name":"destroy","url":"classes/_sse_.subscription.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1303,"kind":2048,"name":"addListener","url":"classes/_sse_.subscription.html#addlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1304,"kind":2048,"name":"emit","url":"classes/_sse_.subscription.html#emit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1305,"kind":2048,"name":"on","url":"classes/_sse_.subscription.html#on","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1306,"kind":2048,"name":"once","url":"classes/_sse_.subscription.html#once","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1307,"kind":2048,"name":"prependListener","url":"classes/_sse_.subscription.html#prependlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1308,"kind":2048,"name":"prependOnceListener","url":"classes/_sse_.subscription.html#prependoncelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1309,"kind":2048,"name":"removeListener","url":"classes/_sse_.subscription.html#removelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1310,"kind":2048,"name":"__@asyncIterator","url":"classes/_sse_.subscription.html#___asynciterator","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1311,"kind":2048,"name":"pipe","url":"classes/_sse_.subscription.html#pipe","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1312,"kind":2048,"name":"listenerCount","url":"classes/_sse_.subscription.html#listenercount-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"sse\".Subscription"},{"id":1313,"kind":1024,"name":"defaultMaxListeners","url":"classes/_sse_.subscription.html#defaultmaxlisteners","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"sse\".Subscription"},{"id":1314,"kind":2048,"name":"off","url":"classes/_sse_.subscription.html#off","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1315,"kind":2048,"name":"removeAllListeners","url":"classes/_sse_.subscription.html#removealllisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1316,"kind":2048,"name":"setMaxListeners","url":"classes/_sse_.subscription.html#setmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1317,"kind":2048,"name":"getMaxListeners","url":"classes/_sse_.subscription.html#getmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1318,"kind":2048,"name":"listeners","url":"classes/_sse_.subscription.html#listeners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1319,"kind":2048,"name":"rawListeners","url":"classes/_sse_.subscription.html#rawlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1320,"kind":2048,"name":"eventNames","url":"classes/_sse_.subscription.html#eventnames","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1321,"kind":2048,"name":"listenerCount","url":"classes/_sse_.subscription.html#listenercount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"}]}; \ No newline at end of file + typedoc.search.data = {"kinds":{"1":"External module","4":"Enumeration","16":"Enumeration member","32":"Variable","64":"Function","128":"Class","256":"Interface","512":"Constructor","1024":"Property","2048":"Method","65536":"Type literal","262144":"Accessor","2097152":"Object literal","4194304":"Type alias"},"rows":[{"id":0,"kind":1,"name":"\"config\"","url":"modules/_config_.html","classes":"tsd-kind-external-module"},{"id":1,"kind":128,"name":"Config","url":"classes/_config_.config.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"config\""},{"id":2,"kind":1024,"name":"store","url":"classes/_config_.config.html#store","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"config\".Config"},{"id":3,"kind":2048,"name":"initApp","url":"classes/_config_.config.html#initapp","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"config\".Config"},{"id":4,"kind":2048,"name":"getItem","url":"classes/_config_.config.html#getitem","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"config\".Config"},{"id":5,"kind":2048,"name":"hasItem","url":"classes/_config_.config.html#hasitem","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"config\".Config"},{"id":6,"kind":2048,"name":"setItem","url":"classes/_config_.config.html#setitem","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"config\".Config"},{"id":7,"kind":2048,"name":"getConfigFromFile","url":"classes/_config_.config.html#getconfigfromfile","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"config\".Config"},{"id":8,"kind":2048,"name":"getConfigFromObj","url":"classes/_config_.config.html#getconfigfromobj","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"config\".Config"},{"id":9,"kind":32,"name":"config","url":"modules/_config_.html#config-1","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"config\""},{"id":10,"kind":1,"name":"\"exception\"","url":"modules/_exception_.html","classes":"tsd-kind-external-module"},{"id":11,"kind":256,"name":"Exception","url":"interfaces/_exception_.exception.html","classes":"tsd-kind-interface tsd-parent-kind-external-module","parent":"\"exception\""},{"id":12,"kind":1024,"name":"code","url":"interfaces/_exception_.exception.html#code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"exception\".Exception"},{"id":13,"kind":1024,"name":"msg","url":"interfaces/_exception_.exception.html#msg","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"exception\".Exception"},{"id":14,"kind":1024,"name":"errorCode","url":"interfaces/_exception_.exception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"exception\".Exception"},{"id":15,"kind":128,"name":"HttpException","url":"classes/_exception_.httpexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":16,"kind":1024,"name":"code","url":"classes/_exception_.httpexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"exception\".HttpException"},{"id":17,"kind":1024,"name":"msg","url":"classes/_exception_.httpexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"exception\".HttpException"},{"id":18,"kind":1024,"name":"errorCode","url":"classes/_exception_.httpexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"exception\".HttpException"},{"id":19,"kind":1024,"name":"fields","url":"classes/_exception_.httpexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"exception\".HttpException"},{"id":20,"kind":512,"name":"constructor","url":"classes/_exception_.httpexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"exception\".HttpException"},{"id":21,"kind":1024,"name":"name","url":"classes/_exception_.httpexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".HttpException"},{"id":22,"kind":1024,"name":"message","url":"classes/_exception_.httpexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".HttpException"},{"id":23,"kind":1024,"name":"stack","url":"classes/_exception_.httpexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".HttpException"},{"id":24,"kind":1024,"name":"Error","url":"classes/_exception_.httpexception.html#error","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"\"exception\".HttpException"},{"id":25,"kind":128,"name":"Success","url":"classes/_exception_.success.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":26,"kind":1024,"name":"code","url":"classes/_exception_.success.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Success"},{"id":27,"kind":1024,"name":"msg","url":"classes/_exception_.success.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Success"},{"id":28,"kind":1024,"name":"errorCode","url":"classes/_exception_.success.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Success"},{"id":29,"kind":512,"name":"constructor","url":"classes/_exception_.success.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Success"},{"id":30,"kind":1024,"name":"fields","url":"classes/_exception_.success.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Success"},{"id":31,"kind":1024,"name":"name","url":"classes/_exception_.success.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Success"},{"id":32,"kind":1024,"name":"message","url":"classes/_exception_.success.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Success"},{"id":33,"kind":1024,"name":"stack","url":"classes/_exception_.success.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".Success"},{"id":34,"kind":128,"name":"Failed","url":"classes/_exception_.failed.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":35,"kind":1024,"name":"code","url":"classes/_exception_.failed.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Failed"},{"id":36,"kind":1024,"name":"msg","url":"classes/_exception_.failed.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Failed"},{"id":37,"kind":1024,"name":"errorCode","url":"classes/_exception_.failed.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Failed"},{"id":38,"kind":512,"name":"constructor","url":"classes/_exception_.failed.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Failed"},{"id":39,"kind":1024,"name":"fields","url":"classes/_exception_.failed.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Failed"},{"id":40,"kind":1024,"name":"name","url":"classes/_exception_.failed.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Failed"},{"id":41,"kind":1024,"name":"message","url":"classes/_exception_.failed.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Failed"},{"id":42,"kind":1024,"name":"stack","url":"classes/_exception_.failed.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".Failed"},{"id":43,"kind":128,"name":"AuthFailed","url":"classes/_exception_.authfailed.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":44,"kind":1024,"name":"code","url":"classes/_exception_.authfailed.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".AuthFailed"},{"id":45,"kind":1024,"name":"msg","url":"classes/_exception_.authfailed.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".AuthFailed"},{"id":46,"kind":1024,"name":"errorCode","url":"classes/_exception_.authfailed.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".AuthFailed"},{"id":47,"kind":512,"name":"constructor","url":"classes/_exception_.authfailed.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".AuthFailed"},{"id":48,"kind":1024,"name":"fields","url":"classes/_exception_.authfailed.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".AuthFailed"},{"id":49,"kind":1024,"name":"name","url":"classes/_exception_.authfailed.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".AuthFailed"},{"id":50,"kind":1024,"name":"message","url":"classes/_exception_.authfailed.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".AuthFailed"},{"id":51,"kind":1024,"name":"stack","url":"classes/_exception_.authfailed.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".AuthFailed"},{"id":52,"kind":128,"name":"NotFound","url":"classes/_exception_.notfound.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":53,"kind":1024,"name":"code","url":"classes/_exception_.notfound.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".NotFound"},{"id":54,"kind":1024,"name":"msg","url":"classes/_exception_.notfound.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".NotFound"},{"id":55,"kind":1024,"name":"errorCode","url":"classes/_exception_.notfound.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".NotFound"},{"id":56,"kind":512,"name":"constructor","url":"classes/_exception_.notfound.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".NotFound"},{"id":57,"kind":1024,"name":"fields","url":"classes/_exception_.notfound.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".NotFound"},{"id":58,"kind":1024,"name":"name","url":"classes/_exception_.notfound.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".NotFound"},{"id":59,"kind":1024,"name":"message","url":"classes/_exception_.notfound.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".NotFound"},{"id":60,"kind":1024,"name":"stack","url":"classes/_exception_.notfound.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".NotFound"},{"id":61,"kind":128,"name":"ParametersException","url":"classes/_exception_.parametersexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":62,"kind":1024,"name":"code","url":"classes/_exception_.parametersexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ParametersException"},{"id":63,"kind":1024,"name":"msg","url":"classes/_exception_.parametersexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ParametersException"},{"id":64,"kind":1024,"name":"errorCode","url":"classes/_exception_.parametersexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ParametersException"},{"id":65,"kind":512,"name":"constructor","url":"classes/_exception_.parametersexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ParametersException"},{"id":66,"kind":1024,"name":"fields","url":"classes/_exception_.parametersexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".ParametersException"},{"id":67,"kind":1024,"name":"name","url":"classes/_exception_.parametersexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".ParametersException"},{"id":68,"kind":1024,"name":"message","url":"classes/_exception_.parametersexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".ParametersException"},{"id":69,"kind":1024,"name":"stack","url":"classes/_exception_.parametersexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".ParametersException"},{"id":70,"kind":128,"name":"InvalidTokenException","url":"classes/_exception_.invalidtokenexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":71,"kind":1024,"name":"code","url":"classes/_exception_.invalidtokenexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".InvalidTokenException"},{"id":72,"kind":1024,"name":"msg","url":"classes/_exception_.invalidtokenexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".InvalidTokenException"},{"id":73,"kind":1024,"name":"errorCode","url":"classes/_exception_.invalidtokenexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".InvalidTokenException"},{"id":74,"kind":512,"name":"constructor","url":"classes/_exception_.invalidtokenexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".InvalidTokenException"},{"id":75,"kind":1024,"name":"fields","url":"classes/_exception_.invalidtokenexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".InvalidTokenException"},{"id":76,"kind":1024,"name":"name","url":"classes/_exception_.invalidtokenexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".InvalidTokenException"},{"id":77,"kind":1024,"name":"message","url":"classes/_exception_.invalidtokenexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".InvalidTokenException"},{"id":78,"kind":1024,"name":"stack","url":"classes/_exception_.invalidtokenexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".InvalidTokenException"},{"id":79,"kind":128,"name":"ExpiredTokenException","url":"classes/_exception_.expiredtokenexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":80,"kind":1024,"name":"code","url":"classes/_exception_.expiredtokenexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ExpiredTokenException"},{"id":81,"kind":1024,"name":"msg","url":"classes/_exception_.expiredtokenexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ExpiredTokenException"},{"id":82,"kind":1024,"name":"errorCode","url":"classes/_exception_.expiredtokenexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ExpiredTokenException"},{"id":83,"kind":512,"name":"constructor","url":"classes/_exception_.expiredtokenexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".ExpiredTokenException"},{"id":84,"kind":1024,"name":"fields","url":"classes/_exception_.expiredtokenexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".ExpiredTokenException"},{"id":85,"kind":1024,"name":"name","url":"classes/_exception_.expiredtokenexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".ExpiredTokenException"},{"id":86,"kind":1024,"name":"message","url":"classes/_exception_.expiredtokenexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".ExpiredTokenException"},{"id":87,"kind":1024,"name":"stack","url":"classes/_exception_.expiredtokenexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".ExpiredTokenException"},{"id":88,"kind":128,"name":"UnknownException","url":"classes/_exception_.unknownexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":89,"kind":1024,"name":"code","url":"classes/_exception_.unknownexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".UnknownException"},{"id":90,"kind":1024,"name":"msg","url":"classes/_exception_.unknownexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".UnknownException"},{"id":91,"kind":1024,"name":"errorCode","url":"classes/_exception_.unknownexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".UnknownException"},{"id":92,"kind":512,"name":"constructor","url":"classes/_exception_.unknownexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".UnknownException"},{"id":93,"kind":1024,"name":"fields","url":"classes/_exception_.unknownexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".UnknownException"},{"id":94,"kind":1024,"name":"name","url":"classes/_exception_.unknownexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".UnknownException"},{"id":95,"kind":1024,"name":"message","url":"classes/_exception_.unknownexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".UnknownException"},{"id":96,"kind":1024,"name":"stack","url":"classes/_exception_.unknownexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".UnknownException"},{"id":97,"kind":128,"name":"RepeatException","url":"classes/_exception_.repeatexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":98,"kind":1024,"name":"code","url":"classes/_exception_.repeatexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RepeatException"},{"id":99,"kind":1024,"name":"msg","url":"classes/_exception_.repeatexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RepeatException"},{"id":100,"kind":1024,"name":"errorCode","url":"classes/_exception_.repeatexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RepeatException"},{"id":101,"kind":512,"name":"constructor","url":"classes/_exception_.repeatexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RepeatException"},{"id":102,"kind":1024,"name":"fields","url":"classes/_exception_.repeatexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".RepeatException"},{"id":103,"kind":1024,"name":"name","url":"classes/_exception_.repeatexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".RepeatException"},{"id":104,"kind":1024,"name":"message","url":"classes/_exception_.repeatexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".RepeatException"},{"id":105,"kind":1024,"name":"stack","url":"classes/_exception_.repeatexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".RepeatException"},{"id":106,"kind":128,"name":"Forbidden","url":"classes/_exception_.forbidden.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":107,"kind":1024,"name":"code","url":"classes/_exception_.forbidden.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Forbidden"},{"id":108,"kind":1024,"name":"msg","url":"classes/_exception_.forbidden.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Forbidden"},{"id":109,"kind":1024,"name":"errorCode","url":"classes/_exception_.forbidden.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Forbidden"},{"id":110,"kind":512,"name":"constructor","url":"classes/_exception_.forbidden.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".Forbidden"},{"id":111,"kind":1024,"name":"fields","url":"classes/_exception_.forbidden.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Forbidden"},{"id":112,"kind":1024,"name":"name","url":"classes/_exception_.forbidden.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Forbidden"},{"id":113,"kind":1024,"name":"message","url":"classes/_exception_.forbidden.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".Forbidden"},{"id":114,"kind":1024,"name":"stack","url":"classes/_exception_.forbidden.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".Forbidden"},{"id":115,"kind":128,"name":"MethodNotAllowed","url":"classes/_exception_.methodnotallowed.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":116,"kind":1024,"name":"code","url":"classes/_exception_.methodnotallowed.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".MethodNotAllowed"},{"id":117,"kind":1024,"name":"msg","url":"classes/_exception_.methodnotallowed.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".MethodNotAllowed"},{"id":118,"kind":1024,"name":"errorCode","url":"classes/_exception_.methodnotallowed.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".MethodNotAllowed"},{"id":119,"kind":512,"name":"constructor","url":"classes/_exception_.methodnotallowed.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".MethodNotAllowed"},{"id":120,"kind":1024,"name":"fields","url":"classes/_exception_.methodnotallowed.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".MethodNotAllowed"},{"id":121,"kind":1024,"name":"name","url":"classes/_exception_.methodnotallowed.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".MethodNotAllowed"},{"id":122,"kind":1024,"name":"message","url":"classes/_exception_.methodnotallowed.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".MethodNotAllowed"},{"id":123,"kind":1024,"name":"stack","url":"classes/_exception_.methodnotallowed.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".MethodNotAllowed"},{"id":124,"kind":128,"name":"RefreshException","url":"classes/_exception_.refreshexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":125,"kind":1024,"name":"code","url":"classes/_exception_.refreshexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RefreshException"},{"id":126,"kind":1024,"name":"msg","url":"classes/_exception_.refreshexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RefreshException"},{"id":127,"kind":1024,"name":"errorCode","url":"classes/_exception_.refreshexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RefreshException"},{"id":128,"kind":512,"name":"constructor","url":"classes/_exception_.refreshexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".RefreshException"},{"id":129,"kind":1024,"name":"fields","url":"classes/_exception_.refreshexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".RefreshException"},{"id":130,"kind":1024,"name":"name","url":"classes/_exception_.refreshexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".RefreshException"},{"id":131,"kind":1024,"name":"message","url":"classes/_exception_.refreshexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".RefreshException"},{"id":132,"kind":1024,"name":"stack","url":"classes/_exception_.refreshexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".RefreshException"},{"id":133,"kind":128,"name":"FileTooLargeException","url":"classes/_exception_.filetoolargeexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":134,"kind":1024,"name":"code","url":"classes/_exception_.filetoolargeexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileTooLargeException"},{"id":135,"kind":1024,"name":"msg","url":"classes/_exception_.filetoolargeexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileTooLargeException"},{"id":136,"kind":1024,"name":"errorCode","url":"classes/_exception_.filetoolargeexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileTooLargeException"},{"id":137,"kind":512,"name":"constructor","url":"classes/_exception_.filetoolargeexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileTooLargeException"},{"id":138,"kind":1024,"name":"fields","url":"classes/_exception_.filetoolargeexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".FileTooLargeException"},{"id":139,"kind":1024,"name":"name","url":"classes/_exception_.filetoolargeexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".FileTooLargeException"},{"id":140,"kind":1024,"name":"message","url":"classes/_exception_.filetoolargeexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".FileTooLargeException"},{"id":141,"kind":1024,"name":"stack","url":"classes/_exception_.filetoolargeexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".FileTooLargeException"},{"id":142,"kind":128,"name":"FileTooManyException","url":"classes/_exception_.filetoomanyexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":143,"kind":1024,"name":"code","url":"classes/_exception_.filetoomanyexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileTooManyException"},{"id":144,"kind":1024,"name":"msg","url":"classes/_exception_.filetoomanyexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileTooManyException"},{"id":145,"kind":1024,"name":"errorCode","url":"classes/_exception_.filetoomanyexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileTooManyException"},{"id":146,"kind":512,"name":"constructor","url":"classes/_exception_.filetoomanyexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileTooManyException"},{"id":147,"kind":1024,"name":"fields","url":"classes/_exception_.filetoomanyexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".FileTooManyException"},{"id":148,"kind":1024,"name":"name","url":"classes/_exception_.filetoomanyexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".FileTooManyException"},{"id":149,"kind":1024,"name":"message","url":"classes/_exception_.filetoomanyexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".FileTooManyException"},{"id":150,"kind":1024,"name":"stack","url":"classes/_exception_.filetoomanyexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".FileTooManyException"},{"id":151,"kind":128,"name":"FileExtensionException","url":"classes/_exception_.fileextensionexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":152,"kind":1024,"name":"code","url":"classes/_exception_.fileextensionexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileExtensionException"},{"id":153,"kind":1024,"name":"msg","url":"classes/_exception_.fileextensionexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileExtensionException"},{"id":154,"kind":1024,"name":"errorCode","url":"classes/_exception_.fileextensionexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileExtensionException"},{"id":155,"kind":512,"name":"constructor","url":"classes/_exception_.fileextensionexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".FileExtensionException"},{"id":156,"kind":1024,"name":"fields","url":"classes/_exception_.fileextensionexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".FileExtensionException"},{"id":157,"kind":1024,"name":"name","url":"classes/_exception_.fileextensionexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".FileExtensionException"},{"id":158,"kind":1024,"name":"message","url":"classes/_exception_.fileextensionexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".FileExtensionException"},{"id":159,"kind":1024,"name":"stack","url":"classes/_exception_.fileextensionexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".FileExtensionException"},{"id":160,"kind":128,"name":"LimitException","url":"classes/_exception_.limitexception.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"exception\""},{"id":161,"kind":1024,"name":"code","url":"classes/_exception_.limitexception.html#code","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".LimitException"},{"id":162,"kind":1024,"name":"msg","url":"classes/_exception_.limitexception.html#msg","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".LimitException"},{"id":163,"kind":1024,"name":"errorCode","url":"classes/_exception_.limitexception.html#errorcode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".LimitException"},{"id":164,"kind":512,"name":"constructor","url":"classes/_exception_.limitexception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"exception\".LimitException"},{"id":165,"kind":1024,"name":"fields","url":"classes/_exception_.limitexception.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".LimitException"},{"id":166,"kind":1024,"name":"name","url":"classes/_exception_.limitexception.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".LimitException"},{"id":167,"kind":1024,"name":"message","url":"classes/_exception_.limitexception.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"exception\".LimitException"},{"id":168,"kind":1024,"name":"stack","url":"classes/_exception_.limitexception.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"exception\".LimitException"},{"id":169,"kind":1,"name":"\"enums\"","url":"modules/_enums_.html","classes":"tsd-kind-external-module"},{"id":170,"kind":4,"name":"UserAdmin","url":"enums/_enums_.useradmin.html","classes":"tsd-kind-enum tsd-parent-kind-external-module","parent":"\"enums\""},{"id":171,"kind":16,"name":"COMMON","url":"enums/_enums_.useradmin.html#common","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"enums\".UserAdmin"},{"id":172,"kind":16,"name":"ADMIN","url":"enums/_enums_.useradmin.html#admin","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"enums\".UserAdmin"},{"id":173,"kind":4,"name":"UserActive","url":"enums/_enums_.useractive.html","classes":"tsd-kind-enum tsd-parent-kind-external-module","parent":"\"enums\""},{"id":174,"kind":16,"name":"ACTIVE","url":"enums/_enums_.useractive.html#active","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"enums\".UserActive"},{"id":175,"kind":16,"name":"NOT_ACTIVE","url":"enums/_enums_.useractive.html#not_active","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"enums\".UserActive"},{"id":176,"kind":4,"name":"TokenType","url":"enums/_enums_.tokentype.html","classes":"tsd-kind-enum tsd-parent-kind-external-module","parent":"\"enums\""},{"id":177,"kind":16,"name":"ACCESS","url":"enums/_enums_.tokentype.html#access","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"enums\".TokenType"},{"id":178,"kind":16,"name":"REFRESH","url":"enums/_enums_.tokentype.html#refresh","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"enums\".TokenType"},{"id":179,"kind":1,"name":"\"jwt\"","url":"modules/_jwt_.html","classes":"tsd-kind-external-module"},{"id":180,"kind":128,"name":"Token","url":"classes/_jwt_.token.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"jwt\""},{"id":181,"kind":1024,"name":"secret","url":"classes/_jwt_.token.html#secret","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":182,"kind":1024,"name":"accessExp","url":"classes/_jwt_.token.html#accessexp","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":183,"kind":1024,"name":"refreshExp","url":"classes/_jwt_.token.html#refreshexp","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":184,"kind":512,"name":"constructor","url":"classes/_jwt_.token.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":185,"kind":2048,"name":"initApp","url":"classes/_jwt_.token.html#initapp","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":186,"kind":2048,"name":"createAccessToken","url":"classes/_jwt_.token.html#createaccesstoken","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":187,"kind":2048,"name":"createRefreshToken","url":"classes/_jwt_.token.html#createrefreshtoken","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":188,"kind":2048,"name":"verifyToken","url":"classes/_jwt_.token.html#verifytoken","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"jwt\".Token"},{"id":189,"kind":32,"name":"jwt","url":"modules/_jwt_.html#jwt","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":190,"kind":64,"name":"createAccessToken","url":"modules/_jwt_.html#createaccesstoken","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"jwt\""},{"id":191,"kind":64,"name":"createRefreshToken","url":"modules/_jwt_.html#createrefreshtoken","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"jwt\""},{"id":192,"kind":64,"name":"verifyAccessToken","url":"modules/_jwt_.html#verifyaccesstoken","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"jwt\""},{"id":193,"kind":64,"name":"verifyRefreshToken","url":"modules/_jwt_.html#verifyrefreshtoken","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"jwt\""},{"id":194,"kind":64,"name":"getTokens","url":"modules/_jwt_.html#gettokens","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":195,"kind":64,"name":"parseHeader","url":"modules/_jwt_.html#parseheader","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":196,"kind":64,"name":"checkUserIsActive","url":"modules/_jwt_.html#checkuserisactive","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":197,"kind":64,"name":"loginRequired","url":"modules/_jwt_.html#loginrequired","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":198,"kind":64,"name":"refreshTokenRequired","url":"modules/_jwt_.html#refreshtokenrequired","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":199,"kind":64,"name":"refreshTokenRequiredWithUnifyException","url":"modules/_jwt_.html#refreshtokenrequiredwithunifyexception","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":200,"kind":64,"name":"groupRequired","url":"modules/_jwt_.html#grouprequired","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":201,"kind":64,"name":"adminRequired","url":"modules/_jwt_.html#adminrequired","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"jwt\""},{"id":202,"kind":1,"name":"\"extended-validator\"","url":"modules/_extended_validator_.html","classes":"tsd-kind-external-module"},{"id":203,"kind":256,"name":"IsFloatOptions","url":"interfaces/_extended_validator_.isfloatoptions.html","classes":"tsd-kind-interface tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"extended-validator\""},{"id":204,"kind":1024,"name":"min","url":"interfaces/_extended_validator_.isfloatoptions.html#min","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsFloatOptions"},{"id":205,"kind":1024,"name":"max","url":"interfaces/_extended_validator_.isfloatoptions.html#max","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsFloatOptions"},{"id":206,"kind":1024,"name":"gt","url":"interfaces/_extended_validator_.isfloatoptions.html#gt","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsFloatOptions"},{"id":207,"kind":1024,"name":"lt","url":"interfaces/_extended_validator_.isfloatoptions.html#lt","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsFloatOptions"},{"id":208,"kind":256,"name":"IsIntOptions","url":"interfaces/_extended_validator_.isintoptions.html","classes":"tsd-kind-interface tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"extended-validator\""},{"id":209,"kind":1024,"name":"min","url":"interfaces/_extended_validator_.isintoptions.html#min","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsIntOptions"},{"id":210,"kind":1024,"name":"max","url":"interfaces/_extended_validator_.isintoptions.html#max","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsIntOptions"},{"id":211,"kind":1024,"name":"allow_leading_zeroes","url":"interfaces/_extended_validator_.isintoptions.html#allow_leading_zeroes","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsIntOptions"},{"id":212,"kind":1024,"name":"lt","url":"interfaces/_extended_validator_.isintoptions.html#lt","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsIntOptions"},{"id":213,"kind":1024,"name":"gt","url":"interfaces/_extended_validator_.isintoptions.html#gt","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"extended-validator\".IsIntOptions"},{"id":214,"kind":128,"name":"ExtendedValidator","url":"classes/_extended_validator_.extendedvalidator.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"extended-validator\""},{"id":215,"kind":2048,"name":"hasProperty","url":"classes/_extended_validator_.extendedvalidator.html#hasproperty","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":216,"kind":2048,"name":"objPropertyIsNotEmpty","url":"classes/_extended_validator_.extendedvalidator.html#objpropertyisnotempty","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":217,"kind":2048,"name":"objPropertiesIsNotEmpty","url":"classes/_extended_validator_.extendedvalidator.html#objpropertiesisnotempty","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":218,"kind":2048,"name":"toInt","url":"classes/_extended_validator_.extendedvalidator.html#toint","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":219,"kind":2048,"name":"toFloat","url":"classes/_extended_validator_.extendedvalidator.html#tofloat","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":220,"kind":2048,"name":"toBoolean","url":"classes/_extended_validator_.extendedvalidator.html#toboolean","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":221,"kind":2048,"name":"toDate","url":"classes/_extended_validator_.extendedvalidator.html#todate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":222,"kind":2048,"name":"isFloat","url":"classes/_extended_validator_.extendedvalidator.html#isfloat","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":223,"kind":2048,"name":"isFloat2","url":"classes/_extended_validator_.extendedvalidator.html#isfloat2","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":224,"kind":2048,"name":"isInt2","url":"classes/_extended_validator_.extendedvalidator.html#isint2","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":225,"kind":2048,"name":"isInt3","url":"classes/_extended_validator_.extendedvalidator.html#isint3","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"extended-validator\".ExtendedValidator"},{"id":226,"kind":2048,"name":"validate","url":"classes/_extended_validator_.extendedvalidator.html#validate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":227,"kind":2048,"name":"validateOrReject","url":"classes/_extended_validator_.extendedvalidator.html#validateorreject","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":228,"kind":2048,"name":"validateSync","url":"classes/_extended_validator_.extendedvalidator.html#validatesync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":229,"kind":2048,"name":"validateValueByMetadata","url":"classes/_extended_validator_.extendedvalidator.html#validatevaluebymetadata","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":230,"kind":2048,"name":"isDefined","url":"classes/_extended_validator_.extendedvalidator.html#isdefined","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":231,"kind":2048,"name":"equals","url":"classes/_extended_validator_.extendedvalidator.html#equals","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":232,"kind":2048,"name":"notEquals","url":"classes/_extended_validator_.extendedvalidator.html#notequals","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":233,"kind":2048,"name":"isEmpty","url":"classes/_extended_validator_.extendedvalidator.html#isempty","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":234,"kind":2048,"name":"isNotEmpty","url":"classes/_extended_validator_.extendedvalidator.html#isnotempty","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":235,"kind":2048,"name":"isIn","url":"classes/_extended_validator_.extendedvalidator.html#isin","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":236,"kind":2048,"name":"isNotIn","url":"classes/_extended_validator_.extendedvalidator.html#isnotin","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":237,"kind":2048,"name":"isBoolean","url":"classes/_extended_validator_.extendedvalidator.html#isboolean","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":238,"kind":2048,"name":"isDate","url":"classes/_extended_validator_.extendedvalidator.html#isdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":239,"kind":2048,"name":"isString","url":"classes/_extended_validator_.extendedvalidator.html#isstring","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":240,"kind":2048,"name":"isDateString","url":"classes/_extended_validator_.extendedvalidator.html#isdatestring","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":241,"kind":2048,"name":"isArray","url":"classes/_extended_validator_.extendedvalidator.html#isarray","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":242,"kind":2048,"name":"isEnum","url":"classes/_extended_validator_.extendedvalidator.html#isenum","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":243,"kind":2048,"name":"isNumber","url":"classes/_extended_validator_.extendedvalidator.html#isnumber","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":244,"kind":2048,"name":"isInt","url":"classes/_extended_validator_.extendedvalidator.html#isint","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":245,"kind":2048,"name":"isDivisibleBy","url":"classes/_extended_validator_.extendedvalidator.html#isdivisibleby","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":246,"kind":2048,"name":"isPositive","url":"classes/_extended_validator_.extendedvalidator.html#ispositive","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":247,"kind":2048,"name":"isNegative","url":"classes/_extended_validator_.extendedvalidator.html#isnegative","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":248,"kind":2048,"name":"min","url":"classes/_extended_validator_.extendedvalidator.html#min","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":249,"kind":2048,"name":"max","url":"classes/_extended_validator_.extendedvalidator.html#max","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":250,"kind":2048,"name":"minDate","url":"classes/_extended_validator_.extendedvalidator.html#mindate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":251,"kind":2048,"name":"maxDate","url":"classes/_extended_validator_.extendedvalidator.html#maxdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":252,"kind":2048,"name":"isBooleanString","url":"classes/_extended_validator_.extendedvalidator.html#isbooleanstring","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":253,"kind":2048,"name":"isNumberString","url":"classes/_extended_validator_.extendedvalidator.html#isnumberstring","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":254,"kind":2048,"name":"contains","url":"classes/_extended_validator_.extendedvalidator.html#contains","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":255,"kind":2048,"name":"notContains","url":"classes/_extended_validator_.extendedvalidator.html#notcontains","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":256,"kind":2048,"name":"isAlpha","url":"classes/_extended_validator_.extendedvalidator.html#isalpha","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":257,"kind":2048,"name":"isAlphanumeric","url":"classes/_extended_validator_.extendedvalidator.html#isalphanumeric","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":258,"kind":2048,"name":"isAscii","url":"classes/_extended_validator_.extendedvalidator.html#isascii","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":259,"kind":2048,"name":"isBase64","url":"classes/_extended_validator_.extendedvalidator.html#isbase64","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":260,"kind":2048,"name":"isByteLength","url":"classes/_extended_validator_.extendedvalidator.html#isbytelength","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":261,"kind":2048,"name":"isCreditCard","url":"classes/_extended_validator_.extendedvalidator.html#iscreditcard","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":262,"kind":2048,"name":"isCurrency","url":"classes/_extended_validator_.extendedvalidator.html#iscurrency","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":263,"kind":2048,"name":"isEmail","url":"classes/_extended_validator_.extendedvalidator.html#isemail","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":264,"kind":2048,"name":"isFQDN","url":"classes/_extended_validator_.extendedvalidator.html#isfqdn","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":265,"kind":2048,"name":"isFullWidth","url":"classes/_extended_validator_.extendedvalidator.html#isfullwidth","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":266,"kind":2048,"name":"isHalfWidth","url":"classes/_extended_validator_.extendedvalidator.html#ishalfwidth","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":267,"kind":2048,"name":"isVariableWidth","url":"classes/_extended_validator_.extendedvalidator.html#isvariablewidth","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":268,"kind":2048,"name":"isHexColor","url":"classes/_extended_validator_.extendedvalidator.html#ishexcolor","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":269,"kind":2048,"name":"isHexadecimal","url":"classes/_extended_validator_.extendedvalidator.html#ishexadecimal","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":270,"kind":2048,"name":"isIP","url":"classes/_extended_validator_.extendedvalidator.html#isip","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":271,"kind":2048,"name":"isISBN","url":"classes/_extended_validator_.extendedvalidator.html#isisbn","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":272,"kind":2048,"name":"isISIN","url":"classes/_extended_validator_.extendedvalidator.html#isisin","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":273,"kind":2048,"name":"isISO8601","url":"classes/_extended_validator_.extendedvalidator.html#isiso8601","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":274,"kind":2048,"name":"isJSON","url":"classes/_extended_validator_.extendedvalidator.html#isjson","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":275,"kind":2048,"name":"isLowercase","url":"classes/_extended_validator_.extendedvalidator.html#islowercase","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":276,"kind":2048,"name":"isMobilePhone","url":"classes/_extended_validator_.extendedvalidator.html#ismobilephone","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":277,"kind":2048,"name":"isPhoneNumber","url":"classes/_extended_validator_.extendedvalidator.html#isphonenumber","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":278,"kind":2048,"name":"isMongoId","url":"classes/_extended_validator_.extendedvalidator.html#ismongoid","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":279,"kind":2048,"name":"isMultibyte","url":"classes/_extended_validator_.extendedvalidator.html#ismultibyte","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":280,"kind":2048,"name":"isSurrogatePair","url":"classes/_extended_validator_.extendedvalidator.html#issurrogatepair","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":281,"kind":2048,"name":"isURL","url":"classes/_extended_validator_.extendedvalidator.html#isurl","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":282,"kind":2048,"name":"isUUID","url":"classes/_extended_validator_.extendedvalidator.html#isuuid","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":283,"kind":2048,"name":"isUppercase","url":"classes/_extended_validator_.extendedvalidator.html#isuppercase","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":284,"kind":2048,"name":"length","url":"classes/_extended_validator_.extendedvalidator.html#length","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":285,"kind":2048,"name":"minLength","url":"classes/_extended_validator_.extendedvalidator.html#minlength","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":286,"kind":2048,"name":"maxLength","url":"classes/_extended_validator_.extendedvalidator.html#maxlength","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":287,"kind":2048,"name":"matches","url":"classes/_extended_validator_.extendedvalidator.html#matches","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":288,"kind":2048,"name":"isMilitaryTime","url":"classes/_extended_validator_.extendedvalidator.html#ismilitarytime","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":289,"kind":2048,"name":"arrayContains","url":"classes/_extended_validator_.extendedvalidator.html#arraycontains","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":290,"kind":2048,"name":"arrayNotContains","url":"classes/_extended_validator_.extendedvalidator.html#arraynotcontains","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":291,"kind":2048,"name":"arrayNotEmpty","url":"classes/_extended_validator_.extendedvalidator.html#arraynotempty","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":292,"kind":2048,"name":"arrayMinSize","url":"classes/_extended_validator_.extendedvalidator.html#arrayminsize","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":293,"kind":2048,"name":"arrayMaxSize","url":"classes/_extended_validator_.extendedvalidator.html#arraymaxsize","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":294,"kind":2048,"name":"arrayUnique","url":"classes/_extended_validator_.extendedvalidator.html#arrayunique","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":295,"kind":2048,"name":"isInstance","url":"classes/_extended_validator_.extendedvalidator.html#isinstance","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"extended-validator\".ExtendedValidator"},{"id":296,"kind":32,"name":"extendedValidator","url":"modules/_extended_validator_.html#extendedvalidator-1","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"extended-validator\""},{"id":297,"kind":1,"name":"\"util\"","url":"modules/_util_.html","classes":"tsd-kind-external-module"},{"id":298,"kind":256,"name":"ObjOptions","url":"interfaces/_util_.objoptions.html","classes":"tsd-kind-interface tsd-parent-kind-external-module","parent":"\"util\""},{"id":299,"kind":1024,"name":"prefix","url":"interfaces/_util_.objoptions.html#prefix","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"util\".ObjOptions"},{"id":300,"kind":1024,"name":"filter","url":"interfaces/_util_.objoptions.html#filter","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"util\".ObjOptions"},{"id":301,"kind":64,"name":"isUndefined","url":"modules/_util_.html#isundefined","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":302,"kind":64,"name":"isFunction","url":"modules/_util_.html#isfunction","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":303,"kind":64,"name":"isObject","url":"modules/_util_.html#isobject","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":304,"kind":64,"name":"isString","url":"modules/_util_.html#isstring","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":305,"kind":64,"name":"isConstructor","url":"modules/_util_.html#isconstructor","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":306,"kind":64,"name":"validatePath","url":"modules/_util_.html#validatepath","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":307,"kind":64,"name":"isNil","url":"modules/_util_.html#isnil","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":308,"kind":64,"name":"isEmpty","url":"modules/_util_.html#isempty","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":309,"kind":64,"name":"isSymbol","url":"modules/_util_.html#issymbol","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":310,"kind":64,"name":"strVal","url":"modules/_util_.html#strval","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":311,"kind":32,"name":"isNotEmpty","url":"modules/_util_.html#isnotempty","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"util\""},{"id":312,"kind":32,"name":"isNegative","url":"modules/_util_.html#isnegative","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"util\""},{"id":313,"kind":32,"name":"isPositive","url":"modules/_util_.html#ispositive","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"util\""},{"id":314,"kind":64,"name":"assert","url":"modules/_util_.html#assert","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":315,"kind":64,"name":"toHump","url":"modules/_util_.html#tohump","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":316,"kind":64,"name":"toLine","url":"modules/_util_.html#toline","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":317,"kind":64,"name":"findAuthAndModule","url":"modules/_util_.html#findauthandmodule","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":318,"kind":64,"name":"findMetaByAuth","url":"modules/_util_.html#findmetabyauth","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":319,"kind":64,"name":"checkDateFormat","url":"modules/_util_.html#checkdateformat","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":320,"kind":64,"name":"paginate","url":"modules/_util_.html#paginate","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":321,"kind":64,"name":"unsets","url":"modules/_util_.html#unsets","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":322,"kind":64,"name":"decorateProp","url":"modules/_util_.html#decorateprop","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":323,"kind":64,"name":"getAllMethodNames","url":"modules/_util_.html#getallmethodnames","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":324,"kind":64,"name":"getAllFieldNames","url":"modules/_util_.html#getallfieldnames","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":325,"kind":64,"name":"prefixAndFilter","url":"modules/_util_.html#prefixandfilter","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"util\""},{"id":326,"kind":64,"name":"getFiles","url":"modules/_util_.html#getfiles","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":327,"kind":64,"name":"mkdirsSync","url":"modules/_util_.html#mkdirssync","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"util\""},{"id":328,"kind":1,"name":"\"db\"","url":"modules/_db_.html","classes":"tsd-kind-external-module"},{"id":329,"kind":32,"name":"database","url":"modules/_db_.html#database","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"db\""},{"id":330,"kind":32,"name":"type","url":"modules/_db_.html#type","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"db\""},{"id":331,"kind":32,"name":"host","url":"modules/_db_.html#host","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"db\""},{"id":332,"kind":32,"name":"port","url":"modules/_db_.html#port","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"db\""},{"id":333,"kind":32,"name":"username","url":"modules/_db_.html#username","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"db\""},{"id":334,"kind":32,"name":"password","url":"modules/_db_.html#password","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"db\""},{"id":335,"kind":32,"name":"logging","url":"modules/_db_.html#logging","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"db\""},{"id":336,"kind":32,"name":"db","url":"modules/_db_.html#db","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"db\""},{"id":337,"kind":1,"name":"\"password-hash\"","url":"modules/_password_hash_.html","classes":"tsd-kind-external-module"},{"id":338,"kind":256,"name":"Option","url":"interfaces/_password_hash_.option.html","classes":"tsd-kind-interface tsd-parent-kind-external-module","parent":"\"password-hash\""},{"id":339,"kind":1024,"name":"algorithm","url":"interfaces/_password_hash_.option.html#algorithm","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"password-hash\".Option"},{"id":340,"kind":1024,"name":"saltLength","url":"interfaces/_password_hash_.option.html#saltlength","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"password-hash\".Option"},{"id":341,"kind":1024,"name":"iterations","url":"interfaces/_password_hash_.option.html#iterations","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"password-hash\".Option"},{"id":342,"kind":32,"name":"saltChars","url":"modules/_password_hash_.html#saltchars","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"password-hash\""},{"id":343,"kind":32,"name":"saltCharsCount","url":"modules/_password_hash_.html#saltcharscount","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"password-hash\""},{"id":344,"kind":64,"name":"generateSalt","url":"modules/_password_hash_.html#generatesalt","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"password-hash\""},{"id":345,"kind":64,"name":"generateHash","url":"modules/_password_hash_.html#generatehash","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"password-hash\""},{"id":346,"kind":64,"name":"generate","url":"modules/_password_hash_.html#generate","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"password-hash\""},{"id":347,"kind":64,"name":"verify","url":"modules/_password_hash_.html#verify","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"password-hash\""},{"id":348,"kind":64,"name":"isHashed","url":"modules/_password_hash_.html#ishashed","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"password-hash\""},{"id":349,"kind":1,"name":"\"interface\"","url":"modules/_interface_.html","classes":"tsd-kind-external-module"},{"id":350,"kind":2097152,"name":"InfoCrudMixin","url":"modules/_interface_.html#infocrudmixin","classes":"tsd-kind-object-literal tsd-parent-kind-external-module","parent":"\"interface\""},{"id":351,"kind":32,"name":"attributes","url":"modules/_interface_.html#infocrudmixin.attributes-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin"},{"id":352,"kind":65536,"name":"__type","url":"modules/_interface_.html#infocrudmixin.attributes-2.__type","classes":"tsd-kind-type-literal tsd-parent-kind-variable tsd-is-not-exported","parent":"\"interface\".InfoCrudMixin.attributes"},{"id":353,"kind":2097152,"name":"options","url":"modules/_interface_.html#infocrudmixin.options-2","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin"},{"id":354,"kind":32,"name":"createdAt","url":"modules/_interface_.html#infocrudmixin.options-2.createdat-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin.options"},{"id":355,"kind":32,"name":"updatedAt","url":"modules/_interface_.html#infocrudmixin.options-2.updatedat-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin.options"},{"id":356,"kind":32,"name":"deletedAt","url":"modules/_interface_.html#infocrudmixin.options-2.deletedat","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin.options"},{"id":357,"kind":32,"name":"paranoid","url":"modules/_interface_.html#infocrudmixin.options-2.paranoid","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin.options"},{"id":358,"kind":2097152,"name":"getterMethods","url":"modules/_interface_.html#infocrudmixin.options-2.gettermethods","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin.options"},{"id":359,"kind":64,"name":"createTime","url":"modules/_interface_.html#infocrudmixin.options-2.gettermethods.createtime","classes":"tsd-kind-function tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin.options.getterMethods"},{"id":360,"kind":64,"name":"updateTime","url":"modules/_interface_.html#infocrudmixin.options-2.gettermethods.updatetime","classes":"tsd-kind-function tsd-parent-kind-object-literal","parent":"\"interface\".InfoCrudMixin.options.getterMethods"},{"id":361,"kind":2097152,"name":"UserInterface","url":"modules/_interface_.html#userinterface","classes":"tsd-kind-object-literal tsd-parent-kind-external-module","parent":"\"interface\""},{"id":362,"kind":2097152,"name":"attributes","url":"modules/_interface_.html#userinterface.attributes-4","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface"},{"id":363,"kind":2097152,"name":"id","url":"modules/_interface_.html#userinterface.attributes-4.id-4","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes"},{"id":364,"kind":32,"name":"type","url":"modules/_interface_.html#userinterface.attributes-4.id-4.type-28","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.id"},{"id":365,"kind":32,"name":"primaryKey","url":"modules/_interface_.html#userinterface.attributes-4.id-4.primarykey-4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.id"},{"id":366,"kind":32,"name":"autoIncrement","url":"modules/_interface_.html#userinterface.attributes-4.id-4.autoincrement-4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.id"},{"id":367,"kind":2097152,"name":"nickname","url":"modules/_interface_.html#userinterface.attributes-4.nickname","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes"},{"id":368,"kind":32,"name":"type","url":"modules/_interface_.html#userinterface.attributes-4.nickname.type-29","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.nickname"},{"id":369,"kind":32,"name":"allowNull","url":"modules/_interface_.html#userinterface.attributes-4.nickname.allownull-12","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.nickname"},{"id":370,"kind":32,"name":"unique","url":"modules/_interface_.html#userinterface.attributes-4.nickname.unique-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.nickname"},{"id":371,"kind":2097152,"name":"avatar","url":"modules/_interface_.html#userinterface.attributes-4.avatar","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes"},{"id":372,"kind":32,"name":"type","url":"modules/_interface_.html#userinterface.attributes-4.avatar.type-25","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.avatar"},{"id":373,"kind":32,"name":"comment","url":"modules/_interface_.html#userinterface.attributes-4.avatar.comment-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.avatar"},{"id":374,"kind":2097152,"name":"admin","url":"modules/_interface_.html#userinterface.attributes-4.admin","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes"},{"id":375,"kind":32,"name":"type","url":"modules/_interface_.html#userinterface.attributes-4.admin.type-24","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.admin"},{"id":376,"kind":32,"name":"allowNull","url":"modules/_interface_.html#userinterface.attributes-4.admin.allownull-9","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.admin"},{"id":377,"kind":32,"name":"defaultValue","url":"modules/_interface_.html#userinterface.attributes-4.admin.defaultvalue-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.admin"},{"id":378,"kind":2097152,"name":"active","url":"modules/_interface_.html#userinterface.attributes-4.active","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes"},{"id":379,"kind":32,"name":"type","url":"modules/_interface_.html#userinterface.attributes-4.active.type-23","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.active"},{"id":380,"kind":32,"name":"allowNull","url":"modules/_interface_.html#userinterface.attributes-4.active.allownull-8","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.active"},{"id":381,"kind":32,"name":"defaultValue","url":"modules/_interface_.html#userinterface.attributes-4.active.defaultvalue-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.active"},{"id":382,"kind":2097152,"name":"email","url":"modules/_interface_.html#userinterface.attributes-4.email","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes"},{"id":383,"kind":32,"name":"type","url":"modules/_interface_.html#userinterface.attributes-4.email.type-26","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.email"},{"id":384,"kind":32,"name":"unique","url":"modules/_interface_.html#userinterface.attributes-4.email.unique-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.email"},{"id":385,"kind":32,"name":"allowNull","url":"modules/_interface_.html#userinterface.attributes-4.email.allownull-10","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.email"},{"id":386,"kind":2097152,"name":"group_id","url":"modules/_interface_.html#userinterface.attributes-4.group_id-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes"},{"id":387,"kind":32,"name":"type","url":"modules/_interface_.html#userinterface.attributes-4.group_id-1.type-27","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.group_id"},{"id":388,"kind":32,"name":"allowNull","url":"modules/_interface_.html#userinterface.attributes-4.group_id-1.allownull-11","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.group_id"},{"id":389,"kind":2097152,"name":"password","url":"modules/_interface_.html#userinterface.attributes-4.password","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes"},{"id":390,"kind":32,"name":"type","url":"modules/_interface_.html#userinterface.attributes-4.password.type-30","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.password"},{"id":391,"kind":64,"name":"set","url":"modules/_interface_.html#userinterface.attributes-4.password.set","classes":"tsd-kind-function tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.password"},{"id":392,"kind":64,"name":"get","url":"modules/_interface_.html#userinterface.attributes-4.password.get","classes":"tsd-kind-function tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface.attributes.password"},{"id":393,"kind":32,"name":"options","url":"modules/_interface_.html#userinterface.options-4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".UserInterface"},{"id":394,"kind":2097152,"name":"AuthInterface","url":"modules/_interface_.html#authinterface","classes":"tsd-kind-object-literal tsd-parent-kind-external-module","parent":"\"interface\""},{"id":395,"kind":2097152,"name":"attributes","url":"modules/_interface_.html#authinterface.attributes","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface"},{"id":396,"kind":2097152,"name":"id","url":"modules/_interface_.html#authinterface.attributes.id","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes"},{"id":397,"kind":32,"name":"type","url":"modules/_interface_.html#authinterface.attributes.id.type-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes.id"},{"id":398,"kind":32,"name":"primaryKey","url":"modules/_interface_.html#authinterface.attributes.id.primarykey","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes.id"},{"id":399,"kind":32,"name":"autoIncrement","url":"modules/_interface_.html#authinterface.attributes.id.autoincrement","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes.id"},{"id":400,"kind":2097152,"name":"group_id","url":"modules/_interface_.html#authinterface.attributes.group_id","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes"},{"id":401,"kind":32,"name":"type","url":"modules/_interface_.html#authinterface.attributes.group_id.type-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes.group_id"},{"id":402,"kind":32,"name":"allowNull","url":"modules/_interface_.html#authinterface.attributes.group_id.allownull","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes.group_id"},{"id":403,"kind":2097152,"name":"auth","url":"modules/_interface_.html#authinterface.attributes.auth","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes"},{"id":404,"kind":32,"name":"type","url":"modules/_interface_.html#authinterface.attributes.auth.type","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes.auth"},{"id":405,"kind":2097152,"name":"module","url":"modules/_interface_.html#authinterface.attributes.module","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes"},{"id":406,"kind":32,"name":"type","url":"modules/_interface_.html#authinterface.attributes.module.type-3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.attributes.module"},{"id":407,"kind":2097152,"name":"options","url":"modules/_interface_.html#authinterface.options","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface"},{"id":408,"kind":32,"name":"tableName","url":"modules/_interface_.html#authinterface.options.tablename","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.options"},{"id":409,"kind":32,"name":"createdAt","url":"modules/_interface_.html#authinterface.options.createdat","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.options"},{"id":410,"kind":32,"name":"updatedAt","url":"modules/_interface_.html#authinterface.options.updatedat","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".AuthInterface.options"},{"id":411,"kind":2097152,"name":"GroupInterface","url":"modules/_interface_.html#groupinterface","classes":"tsd-kind-object-literal tsd-parent-kind-external-module","parent":"\"interface\""},{"id":412,"kind":2097152,"name":"attributes","url":"modules/_interface_.html#groupinterface.attributes-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface"},{"id":413,"kind":2097152,"name":"id","url":"modules/_interface_.html#groupinterface.attributes-1.id-2","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes"},{"id":414,"kind":32,"name":"type","url":"modules/_interface_.html#groupinterface.attributes-1.id-2.type-12","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes.id"},{"id":415,"kind":32,"name":"primaryKey","url":"modules/_interface_.html#groupinterface.attributes-1.id-2.primarykey-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes.id"},{"id":416,"kind":32,"name":"autoIncrement","url":"modules/_interface_.html#groupinterface.attributes-1.id-2.autoincrement-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes.id"},{"id":417,"kind":2097152,"name":"name","url":"modules/_interface_.html#groupinterface.attributes-1.name-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes"},{"id":418,"kind":32,"name":"type","url":"modules/_interface_.html#groupinterface.attributes-1.name-1.type-14","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes.name"},{"id":419,"kind":2097152,"name":"info","url":"modules/_interface_.html#groupinterface.attributes-1.info","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes"},{"id":420,"kind":32,"name":"type","url":"modules/_interface_.html#groupinterface.attributes-1.info.type-13","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes.info"},{"id":421,"kind":32,"name":"allowNull","url":"modules/_interface_.html#groupinterface.attributes-1.info.allownull-6","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.attributes.info"},{"id":422,"kind":2097152,"name":"options","url":"modules/_interface_.html#groupinterface.options-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface"},{"id":423,"kind":32,"name":"tableName","url":"modules/_interface_.html#groupinterface.options-1.tablename-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.options"},{"id":424,"kind":32,"name":"createdAt","url":"modules/_interface_.html#groupinterface.options-1.createdat-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.options"},{"id":425,"kind":32,"name":"updatedAt","url":"modules/_interface_.html#groupinterface.options-1.updatedat-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".GroupInterface.options"},{"id":426,"kind":2097152,"name":"LogInterface","url":"modules/_interface_.html#loginterface","classes":"tsd-kind-object-literal tsd-parent-kind-external-module","parent":"\"interface\""},{"id":427,"kind":2097152,"name":"attributes","url":"modules/_interface_.html#loginterface.attributes-3","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface"},{"id":428,"kind":2097152,"name":"id","url":"modules/_interface_.html#loginterface.attributes-3.id-3","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":429,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.id-3.type-16","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.id"},{"id":430,"kind":32,"name":"primaryKey","url":"modules/_interface_.html#loginterface.attributes-3.id-3.primarykey-3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.id"},{"id":431,"kind":32,"name":"autoIncrement","url":"modules/_interface_.html#loginterface.attributes-3.id-3.autoincrement-3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.id"},{"id":432,"kind":2097152,"name":"message","url":"modules/_interface_.html#loginterface.attributes-3.message","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":433,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.message.type-17","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.message"},{"id":434,"kind":2097152,"name":"user_id","url":"modules/_interface_.html#loginterface.attributes-3.user_id","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":435,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.user_id.type-21","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.user_id"},{"id":436,"kind":32,"name":"allowNull","url":"modules/_interface_.html#loginterface.attributes-3.user_id.allownull-7","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.user_id"},{"id":437,"kind":2097152,"name":"user_name","url":"modules/_interface_.html#loginterface.attributes-3.user_name","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":438,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.user_name.type-22","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.user_name"},{"id":439,"kind":2097152,"name":"status_code","url":"modules/_interface_.html#loginterface.attributes-3.status_code","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":440,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.status_code.type-20","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.status_code"},{"id":441,"kind":2097152,"name":"method","url":"modules/_interface_.html#loginterface.attributes-3.method","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":442,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.method.type-18","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.method"},{"id":443,"kind":2097152,"name":"path","url":"modules/_interface_.html#loginterface.attributes-3.path-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":444,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.path-1.type-19","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.path"},{"id":445,"kind":2097152,"name":"authority","url":"modules/_interface_.html#loginterface.attributes-3.authority","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes"},{"id":446,"kind":32,"name":"type","url":"modules/_interface_.html#loginterface.attributes-3.authority.type-15","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.attributes.authority"},{"id":447,"kind":2097152,"name":"options","url":"modules/_interface_.html#loginterface.options-3","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface"},{"id":448,"kind":32,"name":"tableName","url":"modules/_interface_.html#loginterface.options-3.tablename-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.options"},{"id":449,"kind":32,"name":"createdAt","url":"modules/_interface_.html#loginterface.options-3.createdat-3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.options"},{"id":450,"kind":32,"name":"updatedAt","url":"modules/_interface_.html#loginterface.options-3.updatedat-3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.options"},{"id":451,"kind":2097152,"name":"getterMethods","url":"modules/_interface_.html#loginterface.options-3.gettermethods-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.options"},{"id":452,"kind":64,"name":"time","url":"modules/_interface_.html#loginterface.options-3.gettermethods-1.time","classes":"tsd-kind-function tsd-parent-kind-object-literal","parent":"\"interface\".LogInterface.options.getterMethods"},{"id":453,"kind":2097152,"name":"FileInterface","url":"modules/_interface_.html#fileinterface","classes":"tsd-kind-object-literal tsd-parent-kind-external-module","parent":"\"interface\""},{"id":454,"kind":2097152,"name":"id","url":"modules/_interface_.html#fileinterface.id-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface"},{"id":455,"kind":32,"name":"type","url":"modules/_interface_.html#fileinterface.id-1.type-5","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.id"},{"id":456,"kind":32,"name":"primaryKey","url":"modules/_interface_.html#fileinterface.id-1.primarykey-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.id"},{"id":457,"kind":32,"name":"autoIncrement","url":"modules/_interface_.html#fileinterface.id-1.autoincrement-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.id"},{"id":458,"kind":2097152,"name":"path","url":"modules/_interface_.html#fileinterface.path","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface"},{"id":459,"kind":32,"name":"type","url":"modules/_interface_.html#fileinterface.path.type-8","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.path"},{"id":460,"kind":32,"name":"allowNull","url":"modules/_interface_.html#fileinterface.path.allownull-3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.path"},{"id":461,"kind":2097152,"name":"type","url":"modules/_interface_.html#fileinterface.type-10","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface"},{"id":462,"kind":32,"name":"type","url":"modules/_interface_.html#fileinterface.type-10.type-11","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.type"},{"id":463,"kind":32,"name":"allowNull","url":"modules/_interface_.html#fileinterface.type-10.allownull-5","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.type"},{"id":464,"kind":32,"name":"defaultValue","url":"modules/_interface_.html#fileinterface.type-10.defaultvalue","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.type"},{"id":465,"kind":32,"name":"comment","url":"modules/_interface_.html#fileinterface.type-10.comment-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.type"},{"id":466,"kind":2097152,"name":"name","url":"modules/_interface_.html#fileinterface.name","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface"},{"id":467,"kind":32,"name":"type","url":"modules/_interface_.html#fileinterface.name.type-7","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.name"},{"id":468,"kind":32,"name":"allowNull","url":"modules/_interface_.html#fileinterface.name.allownull-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.name"},{"id":469,"kind":2097152,"name":"extension","url":"modules/_interface_.html#fileinterface.extension","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface"},{"id":470,"kind":32,"name":"type","url":"modules/_interface_.html#fileinterface.extension.type-4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.extension"},{"id":471,"kind":2097152,"name":"size","url":"modules/_interface_.html#fileinterface.size","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface"},{"id":472,"kind":32,"name":"type","url":"modules/_interface_.html#fileinterface.size.type-9","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.size"},{"id":473,"kind":32,"name":"allowNull","url":"modules/_interface_.html#fileinterface.size.allownull-4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.size"},{"id":474,"kind":2097152,"name":"md5","url":"modules/_interface_.html#fileinterface.md5","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface"},{"id":475,"kind":32,"name":"type","url":"modules/_interface_.html#fileinterface.md5.type-6","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.md5"},{"id":476,"kind":32,"name":"allowNull","url":"modules/_interface_.html#fileinterface.md5.allownull-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.md5"},{"id":477,"kind":32,"name":"unique","url":"modules/_interface_.html#fileinterface.md5.unique","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.md5"},{"id":478,"kind":32,"name":"comment","url":"modules/_interface_.html#fileinterface.md5.comment","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"interface\".FileInterface.md5"},{"id":479,"kind":1,"name":"\"extend\"","url":"modules/_extend_.html","classes":"tsd-kind-external-module"},{"id":480,"kind":256,"name":"MulOpts","url":"interfaces/_extend_.mulopts.html","classes":"tsd-kind-interface tsd-parent-kind-external-module","parent":"\"extend\""},{"id":481,"kind":1024,"name":"autoFields","url":"interfaces/_extend_.mulopts.html#autofields","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"extend\".MulOpts"},{"id":482,"kind":1024,"name":"singleLimit","url":"interfaces/_extend_.mulopts.html#singlelimit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"extend\".MulOpts"},{"id":483,"kind":1024,"name":"totalLimit","url":"interfaces/_extend_.mulopts.html#totallimit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"extend\".MulOpts"},{"id":484,"kind":1024,"name":"fileNums","url":"interfaces/_extend_.mulopts.html#filenums","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"extend\".MulOpts"},{"id":485,"kind":1024,"name":"include","url":"interfaces/_extend_.mulopts.html#include","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"extend\".MulOpts"},{"id":486,"kind":1024,"name":"exclude","url":"interfaces/_extend_.mulopts.html#exclude","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"extend\".MulOpts"},{"id":487,"kind":64,"name":"json","url":"modules/_extend_.html#json","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"extend\""},{"id":488,"kind":64,"name":"transform","url":"modules/_extend_.html#transform","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"extend\""},{"id":489,"kind":64,"name":"success","url":"modules/_extend_.html#success","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"extend\""},{"id":490,"kind":64,"name":"logging","url":"modules/_extend_.html#logging","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"extend\""},{"id":491,"kind":64,"name":"multipart","url":"modules/_extend_.html#multipart","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"extend\""},{"id":492,"kind":64,"name":"checkSingleFileSize","url":"modules/_extend_.html#checksinglefilesize","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"extend\""},{"id":493,"kind":64,"name":"checkTotalFileSize","url":"modules/_extend_.html#checktotalfilesize","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"extend\""},{"id":494,"kind":64,"name":"checkFileNums","url":"modules/_extend_.html#checkfilenums","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"extend\""},{"id":495,"kind":64,"name":"checkFileExtension","url":"modules/_extend_.html#checkfileextension","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"extend\""},{"id":496,"kind":1,"name":"\"plugin\"","url":"modules/_plugin_.html","classes":"tsd-kind-external-module"},{"id":497,"kind":128,"name":"Plugin","url":"classes/_plugin_.plugin.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"plugin\""},{"id":498,"kind":1024,"name":"name","url":"classes/_plugin_.plugin.html#name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"plugin\".Plugin"},{"id":499,"kind":1024,"name":"models","url":"classes/_plugin_.plugin.html#models","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"plugin\".Plugin"},{"id":500,"kind":65536,"name":"__type","url":"classes/_plugin_.plugin.html#models.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"plugin\".Plugin.models"},{"id":501,"kind":1024,"name":"controllers","url":"classes/_plugin_.plugin.html#controllers","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"plugin\".Plugin"},{"id":502,"kind":65536,"name":"__type","url":"classes/_plugin_.plugin.html#controllers.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"plugin\".Plugin.controllers"},{"id":503,"kind":512,"name":"constructor","url":"classes/_plugin_.plugin.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"plugin\".Plugin"},{"id":504,"kind":2048,"name":"addModel","url":"classes/_plugin_.plugin.html#addmodel","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"plugin\".Plugin"},{"id":505,"kind":2048,"name":"getModel","url":"classes/_plugin_.plugin.html#getmodel","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"plugin\".Plugin"},{"id":506,"kind":2048,"name":"addController","url":"classes/_plugin_.plugin.html#addcontroller","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"plugin\".Plugin"},{"id":507,"kind":1,"name":"\"loader\"","url":"modules/_loader_.html","classes":"tsd-kind-external-module"},{"id":508,"kind":128,"name":"Loader","url":"classes/_loader_.loader.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"loader\""},{"id":509,"kind":1024,"name":"mainRouter","url":"classes/_loader_.loader.html#mainrouter","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":510,"kind":1024,"name":"pluginPath","url":"classes/_loader_.loader.html#pluginpath","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":511,"kind":1024,"name":"app","url":"classes/_loader_.loader.html#app","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"loader\".Loader"},{"id":512,"kind":1024,"name":"plugins","url":"classes/_loader_.loader.html#plugins","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":513,"kind":65536,"name":"__type","url":"classes/_loader_.loader.html#plugins.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"loader\".Loader.plugins"},{"id":514,"kind":512,"name":"constructor","url":"classes/_loader_.loader.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":515,"kind":2048,"name":"loadPlugins","url":"classes/_loader_.loader.html#loadplugins","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":516,"kind":2048,"name":"loadPlugin","url":"classes/_loader_.loader.html#loadplugin","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":517,"kind":2048,"name":"loadConfig","url":"classes/_loader_.loader.html#loadconfig","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":518,"kind":2048,"name":"loadMainApi","url":"classes/_loader_.loader.html#loadmainapi","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"loader\".Loader"},{"id":519,"kind":1,"name":"\"lin-router\"","url":"modules/_lin_router_.html","classes":"tsd-kind-external-module"},{"id":520,"kind":256,"name":"Meta","url":"interfaces/_lin_router_.meta.html","classes":"tsd-kind-interface tsd-parent-kind-external-module","parent":"\"lin-router\""},{"id":521,"kind":1024,"name":"auth","url":"interfaces/_lin_router_.meta.html#auth","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".Meta"},{"id":522,"kind":1024,"name":"module","url":"interfaces/_lin_router_.meta.html#module","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".Meta"},{"id":523,"kind":1024,"name":"mount","url":"interfaces/_lin_router_.meta.html#mount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".Meta"},{"id":524,"kind":128,"name":"LinRouter","url":"classes/_lin_router_.linrouter.html","classes":"tsd-kind-class tsd-parent-kind-external-module tsd-has-type-parameter","parent":"\"lin-router\""},{"id":525,"kind":2048,"name":"linOption","url":"classes/_lin_router_.linrouter.html#linoption","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":526,"kind":2048,"name":"linHead","url":"classes/_lin_router_.linrouter.html#linhead","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":527,"kind":2048,"name":"linGet","url":"classes/_lin_router_.linrouter.html#linget","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":528,"kind":2048,"name":"linPut","url":"classes/_lin_router_.linrouter.html#linput","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":529,"kind":2048,"name":"linPatch","url":"classes/_lin_router_.linrouter.html#linpatch","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":530,"kind":2048,"name":"linPost","url":"classes/_lin_router_.linrouter.html#linpost","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":531,"kind":2048,"name":"linDelete","url":"classes/_lin_router_.linrouter.html#lindelete","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":532,"kind":256,"name":"IRouterOptions","url":"interfaces/_lin_router_.linrouter.irouteroptions.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":533,"kind":1024,"name":"prefix","url":"interfaces/_lin_router_.linrouter.irouteroptions.html#prefix","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterOptions"},{"id":534,"kind":1024,"name":"methods","url":"interfaces/_lin_router_.linrouter.irouteroptions.html#methods","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterOptions"},{"id":535,"kind":1024,"name":"routerPath","url":"interfaces/_lin_router_.linrouter.irouteroptions.html#routerpath","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterOptions"},{"id":536,"kind":1024,"name":"sensitive","url":"interfaces/_lin_router_.linrouter.irouteroptions.html#sensitive","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterOptions"},{"id":537,"kind":1024,"name":"strict","url":"interfaces/_lin_router_.linrouter.irouteroptions.html#strict","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterOptions"},{"id":538,"kind":256,"name":"IRouterParamContext","url":"interfaces/_lin_router_.linrouter.irouterparamcontext.html","classes":"tsd-kind-interface tsd-parent-kind-class tsd-has-type-parameter","parent":"\"lin-router\".LinRouter"},{"id":539,"kind":1024,"name":"params","url":"interfaces/_lin_router_.linrouter.irouterparamcontext.html#params","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterParamContext"},{"id":540,"kind":1024,"name":"router","url":"interfaces/_lin_router_.linrouter.irouterparamcontext.html#router","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterParamContext"},{"id":541,"kind":1024,"name":"_matchedRoute","url":"interfaces/_lin_router_.linrouter.irouterparamcontext.html#_matchedroute","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterParamContext"},{"id":542,"kind":1024,"name":"_matchedRouteName","url":"interfaces/_lin_router_.linrouter.irouterparamcontext.html#_matchedroutename","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterParamContext"},{"id":543,"kind":256,"name":"IRouterContext","url":"interfaces/_lin_router_.linrouter.iroutercontext.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":544,"kind":256,"name":"IParamMiddleware","url":"interfaces/_lin_router_.linrouter.iparammiddleware.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":545,"kind":256,"name":"IRouterAllowedMethodsOptions","url":"interfaces/_lin_router_.linrouter.irouterallowedmethodsoptions.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":546,"kind":1024,"name":"throw","url":"interfaces/_lin_router_.linrouter.irouterallowedmethodsoptions.html#throw","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterAllowedMethodsOptions"},{"id":547,"kind":1024,"name":"notImplemented","url":"interfaces/_lin_router_.linrouter.irouterallowedmethodsoptions.html#notimplemented","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterAllowedMethodsOptions"},{"id":548,"kind":1024,"name":"methodNotAllowed","url":"interfaces/_lin_router_.linrouter.irouterallowedmethodsoptions.html#methodnotallowed","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRouterAllowedMethodsOptions"},{"id":549,"kind":256,"name":"ILayerOptions","url":"interfaces/_lin_router_.linrouter.ilayeroptions.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":550,"kind":1024,"name":"name","url":"interfaces/_lin_router_.linrouter.ilayeroptions.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.ILayerOptions"},{"id":551,"kind":1024,"name":"sensitive","url":"interfaces/_lin_router_.linrouter.ilayeroptions.html#sensitive","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.ILayerOptions"},{"id":552,"kind":1024,"name":"strict","url":"interfaces/_lin_router_.linrouter.ilayeroptions.html#strict","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.ILayerOptions"},{"id":553,"kind":256,"name":"IUrlOptionsQuery","url":"interfaces/_lin_router_.linrouter.iurloptionsquery.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":554,"kind":1024,"name":"query","url":"interfaces/_lin_router_.linrouter.iurloptionsquery.html#query","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IUrlOptionsQuery"},{"id":555,"kind":256,"name":"IRoutesMatch","url":"interfaces/_lin_router_.linrouter.iroutesmatch.html","classes":"tsd-kind-interface tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":556,"kind":1024,"name":"path","url":"interfaces/_lin_router_.linrouter.iroutesmatch.html#path","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRoutesMatch"},{"id":557,"kind":1024,"name":"pathAndMethod","url":"interfaces/_lin_router_.linrouter.iroutesmatch.html#pathandmethod","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRoutesMatch"},{"id":558,"kind":1024,"name":"route","url":"interfaces/_lin_router_.linrouter.iroutesmatch.html#route","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"lin-router\".LinRouter.IRoutesMatch"},{"id":559,"kind":128,"name":"ParamName","url":"classes/_lin_router_.linrouter.paramname.html","classes":"tsd-kind-class tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":560,"kind":1024,"name":"asterisk","url":"classes/_lin_router_.linrouter.paramname.html#asterisk","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":561,"kind":1024,"name":"delimiter","url":"classes/_lin_router_.linrouter.paramname.html#delimiter","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":562,"kind":1024,"name":"name","url":"classes/_lin_router_.linrouter.paramname.html#name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":563,"kind":1024,"name":"optional","url":"classes/_lin_router_.linrouter.paramname.html#optional","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":564,"kind":1024,"name":"partial","url":"classes/_lin_router_.linrouter.paramname.html#partial","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":565,"kind":1024,"name":"pattern","url":"classes/_lin_router_.linrouter.paramname.html#pattern","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":566,"kind":1024,"name":"prefix","url":"classes/_lin_router_.linrouter.paramname.html#prefix","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":567,"kind":1024,"name":"repeat","url":"classes/_lin_router_.linrouter.paramname.html#repeat","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.ParamName"},{"id":568,"kind":128,"name":"Layer","url":"classes/_lin_router_.linrouter.layer.html","classes":"tsd-kind-class tsd-parent-kind-class","parent":"\"lin-router\".LinRouter"},{"id":569,"kind":1024,"name":"opts","url":"classes/_lin_router_.linrouter.layer.html#opts","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":570,"kind":1024,"name":"name","url":"classes/_lin_router_.linrouter.layer.html#name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":571,"kind":1024,"name":"methods","url":"classes/_lin_router_.linrouter.layer.html#methods","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":572,"kind":1024,"name":"paramNames","url":"classes/_lin_router_.linrouter.layer.html#paramnames","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":573,"kind":1024,"name":"stack","url":"classes/_lin_router_.linrouter.layer.html#stack","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":574,"kind":1024,"name":"regexp","url":"classes/_lin_router_.linrouter.layer.html#regexp","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":575,"kind":1024,"name":"path","url":"classes/_lin_router_.linrouter.layer.html#path","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":576,"kind":512,"name":"constructor","url":"classes/_lin_router_.linrouter.layer.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":577,"kind":2048,"name":"match","url":"classes/_lin_router_.linrouter.layer.html#match","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":578,"kind":2048,"name":"params","url":"classes/_lin_router_.linrouter.layer.html#params","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":579,"kind":2048,"name":"captures","url":"classes/_lin_router_.linrouter.layer.html#captures","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":580,"kind":2048,"name":"url","url":"classes/_lin_router_.linrouter.layer.html#url","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":581,"kind":2048,"name":"param","url":"classes/_lin_router_.linrouter.layer.html#param","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":582,"kind":2048,"name":"setPrefix","url":"classes/_lin_router_.linrouter.layer.html#setprefix","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-router\".LinRouter.Layer"},{"id":583,"kind":4194304,"name":"RouterContext","url":"classes/_lin_router_.linrouter.html#routercontext","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-has-type-parameter tsd-is-static","parent":"\"lin-router\".LinRouter"},{"id":584,"kind":4194304,"name":"IMiddleware","url":"classes/_lin_router_.linrouter.html#imiddleware","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-has-type-parameter tsd-is-static","parent":"\"lin-router\".LinRouter"},{"id":585,"kind":1024,"name":"params","url":"classes/_lin_router_.linrouter.html#params","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":586,"kind":1024,"name":"stack","url":"classes/_lin_router_.linrouter.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":587,"kind":512,"name":"constructor","url":"classes/_lin_router_.linrouter.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":588,"kind":2048,"name":"use","url":"classes/_lin_router_.linrouter.html#use","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":589,"kind":2048,"name":"get","url":"classes/_lin_router_.linrouter.html#get","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":590,"kind":2048,"name":"post","url":"classes/_lin_router_.linrouter.html#post","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":591,"kind":2048,"name":"put","url":"classes/_lin_router_.linrouter.html#put","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":592,"kind":2048,"name":"link","url":"classes/_lin_router_.linrouter.html#link","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":593,"kind":2048,"name":"unlink","url":"classes/_lin_router_.linrouter.html#unlink","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":594,"kind":2048,"name":"delete","url":"classes/_lin_router_.linrouter.html#delete","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":595,"kind":2048,"name":"del","url":"classes/_lin_router_.linrouter.html#del","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":596,"kind":2048,"name":"head","url":"classes/_lin_router_.linrouter.html#head","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":597,"kind":2048,"name":"options","url":"classes/_lin_router_.linrouter.html#options","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":598,"kind":2048,"name":"patch","url":"classes/_lin_router_.linrouter.html#patch","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":599,"kind":2048,"name":"all","url":"classes/_lin_router_.linrouter.html#all","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":600,"kind":2048,"name":"prefix","url":"classes/_lin_router_.linrouter.html#prefix","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":601,"kind":2048,"name":"routes","url":"classes/_lin_router_.linrouter.html#routes","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":602,"kind":2048,"name":"middleware","url":"classes/_lin_router_.linrouter.html#middleware","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":603,"kind":2048,"name":"allowedMethods","url":"classes/_lin_router_.linrouter.html#allowedmethods","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":604,"kind":2048,"name":"redirect","url":"classes/_lin_router_.linrouter.html#redirect","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":605,"kind":2048,"name":"register","url":"classes/_lin_router_.linrouter.html#register","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":606,"kind":2048,"name":"route","url":"classes/_lin_router_.linrouter.html#route","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":607,"kind":2048,"name":"url","url":"classes/_lin_router_.linrouter.html#url","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":608,"kind":2048,"name":"match","url":"classes/_lin_router_.linrouter.html#match","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":609,"kind":2048,"name":"param","url":"classes/_lin_router_.linrouter.html#param","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"lin-router\".LinRouter"},{"id":610,"kind":2048,"name":"url","url":"classes/_lin_router_.linrouter.html#url-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"lin-router\".LinRouter"},{"id":611,"kind":1,"name":"\"core\"","url":"modules/_core_.html","classes":"tsd-kind-external-module"},{"id":612,"kind":128,"name":"Lin","url":"classes/_core_.lin.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"core\""},{"id":613,"kind":1024,"name":"manager","url":"classes/_core_.lin.html#manager","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"core\".Lin"},{"id":614,"kind":1024,"name":"app","url":"classes/_core_.lin.html#app","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"core\".Lin"},{"id":615,"kind":2048,"name":"initApp","url":"classes/_core_.lin.html#initapp","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".Lin"},{"id":616,"kind":2048,"name":"applyJwt","url":"classes/_core_.lin.html#applyjwt","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"core\".Lin"},{"id":617,"kind":2048,"name":"applyDB","url":"classes/_core_.lin.html#applydb","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"core\".Lin"},{"id":618,"kind":2048,"name":"applyManager","url":"classes/_core_.lin.html#applymanager","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"core\".Lin"},{"id":619,"kind":2048,"name":"applyDefaultExtends","url":"classes/_core_.lin.html#applydefaultextends","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"core\".Lin"},{"id":620,"kind":2048,"name":"mount","url":"classes/_core_.lin.html#mount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"core\".Lin"},{"id":621,"kind":128,"name":"Manager","url":"classes/_core_.manager.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"core\""},{"id":622,"kind":1024,"name":"loader","url":"classes/_core_.manager.html#loader","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":623,"kind":1024,"name":"userModel","url":"classes/_core_.manager.html#usermodel","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":624,"kind":1024,"name":"groupModel","url":"classes/_core_.manager.html#groupmodel","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":625,"kind":1024,"name":"authModel","url":"classes/_core_.manager.html#authmodel","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":626,"kind":2048,"name":"initApp","url":"classes/_core_.manager.html#initapp","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":627,"kind":262144,"name":"plugins","url":"classes/_core_.manager.html#plugins","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":628,"kind":2048,"name":"verify","url":"classes/_core_.manager.html#verify","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":629,"kind":2048,"name":"findUser","url":"classes/_core_.manager.html#finduser","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":630,"kind":2048,"name":"findGroup","url":"classes/_core_.manager.html#findgroup","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".Manager"},{"id":631,"kind":128,"name":"User","url":"classes/_core_.user.html","classes":"tsd-kind-class tsd-parent-kind-external-module tsd-has-type-parameter","parent":"\"core\""},{"id":632,"kind":1024,"name":"id","url":"classes/_core_.user.html#id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":633,"kind":1024,"name":"nickname","url":"classes/_core_.user.html#nickname","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":634,"kind":1024,"name":"admin","url":"classes/_core_.user.html#admin","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":635,"kind":1024,"name":"active","url":"classes/_core_.user.html#active","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":636,"kind":1024,"name":"email","url":"classes/_core_.user.html#email","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":637,"kind":1024,"name":"avatar","url":"classes/_core_.user.html#avatar","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":638,"kind":1024,"name":"group_id","url":"classes/_core_.user.html#group_id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":639,"kind":1024,"name":"password","url":"classes/_core_.user.html#password","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":640,"kind":1024,"name":"create_time","url":"classes/_core_.user.html#create_time","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":641,"kind":1024,"name":"update_time","url":"classes/_core_.user.html#update_time","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":642,"kind":1024,"name":"delete_time","url":"classes/_core_.user.html#delete_time","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".User"},{"id":643,"kind":2048,"name":"verify","url":"classes/_core_.user.html#verify","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"\"core\".User"},{"id":644,"kind":2048,"name":"checkPassword","url":"classes/_core_.user.html#checkpassword","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".User"},{"id":645,"kind":2048,"name":"resetPassword","url":"classes/_core_.user.html#resetpassword","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".User"},{"id":646,"kind":2048,"name":"changePassword","url":"classes/_core_.user.html#changepassword","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"core\".User"},{"id":647,"kind":2048,"name":"toJSON","url":"classes/_core_.user.html#tojson","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"core\".User"},{"id":648,"kind":1024,"name":"tableName","url":"classes/_core_.user.html#tablename","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":649,"kind":1024,"name":"primaryKeyAttribute","url":"classes/_core_.user.html#primarykeyattribute","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":650,"kind":1024,"name":"associations","url":"classes/_core_.user.html#associations","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":651,"kind":65536,"name":"__type","url":"classes/_core_.user.html#associations.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".User.associations"},{"id":652,"kind":1024,"name":"options","url":"classes/_core_.user.html#options","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":653,"kind":1024,"name":"rawAttributes","url":"classes/_core_.user.html#rawattributes","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":654,"kind":65536,"name":"__type","url":"classes/_core_.user.html#rawattributes.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".User.rawAttributes"},{"id":655,"kind":1024,"name":"sequelize","url":"classes/_core_.user.html#sequelize-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":656,"kind":2048,"name":"init","url":"classes/_core_.user.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":657,"kind":2048,"name":"removeAttribute","url":"classes/_core_.user.html#removeattribute","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":658,"kind":2048,"name":"sync","url":"classes/_core_.user.html#sync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":659,"kind":2048,"name":"drop","url":"classes/_core_.user.html#drop","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":660,"kind":2048,"name":"schema","url":"classes/_core_.user.html#schema","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":661,"kind":2048,"name":"getTableName","url":"classes/_core_.user.html#gettablename","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":662,"kind":2048,"name":"scope","url":"classes/_core_.user.html#scope","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":663,"kind":2048,"name":"addScope","url":"classes/_core_.user.html#addscope","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":664,"kind":2048,"name":"findAll","url":"classes/_core_.user.html#findall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":665,"kind":2048,"name":"findByPk","url":"classes/_core_.user.html#findbypk","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":666,"kind":2048,"name":"findOne","url":"classes/_core_.user.html#findone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":667,"kind":2048,"name":"aggregate","url":"classes/_core_.user.html#aggregate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":668,"kind":2048,"name":"count","url":"classes/_core_.user.html#count","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":669,"kind":2048,"name":"findAndCountAll","url":"classes/_core_.user.html#findandcountall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":670,"kind":2048,"name":"max","url":"classes/_core_.user.html#max","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":671,"kind":2048,"name":"min","url":"classes/_core_.user.html#min","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":672,"kind":2048,"name":"sum","url":"classes/_core_.user.html#sum","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":673,"kind":2048,"name":"build","url":"classes/_core_.user.html#build","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":674,"kind":2048,"name":"bulkBuild","url":"classes/_core_.user.html#bulkbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":675,"kind":2048,"name":"create","url":"classes/_core_.user.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":676,"kind":2048,"name":"findOrBuild","url":"classes/_core_.user.html#findorbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":677,"kind":2048,"name":"findOrCreate","url":"classes/_core_.user.html#findorcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":678,"kind":2048,"name":"upsert","url":"classes/_core_.user.html#upsert","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":679,"kind":2048,"name":"bulkCreate","url":"classes/_core_.user.html#bulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":680,"kind":2048,"name":"truncate","url":"classes/_core_.user.html#truncate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":681,"kind":2048,"name":"destroy","url":"classes/_core_.user.html#destroy-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":682,"kind":2048,"name":"restore","url":"classes/_core_.user.html#restore-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":683,"kind":2048,"name":"update","url":"classes/_core_.user.html#update-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":684,"kind":2048,"name":"increment","url":"classes/_core_.user.html#increment-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":685,"kind":2048,"name":"describe","url":"classes/_core_.user.html#describe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":686,"kind":2048,"name":"unscoped","url":"classes/_core_.user.html#unscoped","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":687,"kind":2048,"name":"beforeValidate","url":"classes/_core_.user.html#beforevalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":688,"kind":2048,"name":"afterValidate","url":"classes/_core_.user.html#aftervalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":689,"kind":2048,"name":"beforeCreate","url":"classes/_core_.user.html#beforecreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":690,"kind":2048,"name":"afterCreate","url":"classes/_core_.user.html#aftercreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":691,"kind":2048,"name":"beforeDestroy","url":"classes/_core_.user.html#beforedestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":692,"kind":2048,"name":"afterDestroy","url":"classes/_core_.user.html#afterdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":693,"kind":2048,"name":"beforeUpdate","url":"classes/_core_.user.html#beforeupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":694,"kind":2048,"name":"afterUpdate","url":"classes/_core_.user.html#afterupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":695,"kind":2048,"name":"beforeBulkCreate","url":"classes/_core_.user.html#beforebulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":696,"kind":2048,"name":"afterBulkCreate","url":"classes/_core_.user.html#afterbulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":697,"kind":2048,"name":"beforeBulkDestroy","url":"classes/_core_.user.html#beforebulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":698,"kind":2048,"name":"afterBulkDestroy","url":"classes/_core_.user.html#afterbulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":699,"kind":2048,"name":"beforeBulkUpdate","url":"classes/_core_.user.html#beforebulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":700,"kind":2048,"name":"afterBulkUpdate","url":"classes/_core_.user.html#afterbulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":701,"kind":2048,"name":"beforeFind","url":"classes/_core_.user.html#beforefind","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":702,"kind":2048,"name":"beforeCount","url":"classes/_core_.user.html#beforecount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":703,"kind":2048,"name":"beforeFindAfterExpandIncludeAll","url":"classes/_core_.user.html#beforefindafterexpandincludeall","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":704,"kind":2048,"name":"beforeFindAfterOptions","url":"classes/_core_.user.html#beforefindafteroptions","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":705,"kind":2048,"name":"afterFind","url":"classes/_core_.user.html#afterfind","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":706,"kind":2048,"name":"beforeBulkSync","url":"classes/_core_.user.html#beforebulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":707,"kind":2048,"name":"afterBulkSync","url":"classes/_core_.user.html#afterbulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":708,"kind":2048,"name":"beforeSync","url":"classes/_core_.user.html#beforesync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":709,"kind":2048,"name":"afterSync","url":"classes/_core_.user.html#aftersync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":710,"kind":2048,"name":"hasOne","url":"classes/_core_.user.html#hasone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":711,"kind":2048,"name":"belongsTo","url":"classes/_core_.user.html#belongsto","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":712,"kind":2048,"name":"hasMany","url":"classes/_core_.user.html#hasmany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":713,"kind":2048,"name":"belongsToMany","url":"classes/_core_.user.html#belongstomany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":714,"kind":1024,"name":"isNewRecord","url":"classes/_core_.user.html#isnewrecord","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":715,"kind":1024,"name":"sequelize","url":"classes/_core_.user.html#sequelize","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":716,"kind":512,"name":"constructor","url":"classes/_core_.user.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":717,"kind":2048,"name":"where","url":"classes/_core_.user.html#where","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":718,"kind":2048,"name":"getDataValue","url":"classes/_core_.user.html#getdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":719,"kind":2048,"name":"setDataValue","url":"classes/_core_.user.html#setdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":720,"kind":2048,"name":"get","url":"classes/_core_.user.html#get","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":721,"kind":2048,"name":"set","url":"classes/_core_.user.html#set","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":722,"kind":2048,"name":"setAttributes","url":"classes/_core_.user.html#setattributes","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":723,"kind":2048,"name":"changed","url":"classes/_core_.user.html#changed","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":724,"kind":2048,"name":"previous","url":"classes/_core_.user.html#previous","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":725,"kind":2048,"name":"save","url":"classes/_core_.user.html#save","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":726,"kind":2048,"name":"reload","url":"classes/_core_.user.html#reload","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":727,"kind":2048,"name":"validate","url":"classes/_core_.user.html#validate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":728,"kind":2048,"name":"update","url":"classes/_core_.user.html#update","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":729,"kind":2048,"name":"destroy","url":"classes/_core_.user.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":730,"kind":2048,"name":"restore","url":"classes/_core_.user.html#restore","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":731,"kind":2048,"name":"increment","url":"classes/_core_.user.html#increment","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":732,"kind":2048,"name":"decrement","url":"classes/_core_.user.html#decrement","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":733,"kind":2048,"name":"equals","url":"classes/_core_.user.html#equals","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":734,"kind":2048,"name":"equalsOneOf","url":"classes/_core_.user.html#equalsoneof","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".User"},{"id":735,"kind":2048,"name":"addHook","url":"classes/_core_.user.html#addhook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":736,"kind":2048,"name":"removeHook","url":"classes/_core_.user.html#removehook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":737,"kind":2048,"name":"hasHook","url":"classes/_core_.user.html#hashook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":738,"kind":2048,"name":"hasHooks","url":"classes/_core_.user.html#hashooks-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".User"},{"id":739,"kind":2048,"name":"addHook","url":"classes/_core_.user.html#addhook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":740,"kind":2048,"name":"removeHook","url":"classes/_core_.user.html#removehook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":741,"kind":2048,"name":"hasHook","url":"classes/_core_.user.html#hashook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":742,"kind":2048,"name":"hasHooks","url":"classes/_core_.user.html#hashooks","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".User"},{"id":743,"kind":128,"name":"Group","url":"classes/_core_.group.html","classes":"tsd-kind-class tsd-parent-kind-external-module tsd-has-type-parameter","parent":"\"core\""},{"id":744,"kind":1024,"name":"id","url":"classes/_core_.group.html#id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Group"},{"id":745,"kind":1024,"name":"name","url":"classes/_core_.group.html#name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Group"},{"id":746,"kind":1024,"name":"info","url":"classes/_core_.group.html#info","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Group"},{"id":747,"kind":2048,"name":"toJSON","url":"classes/_core_.group.html#tojson","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"core\".Group"},{"id":748,"kind":1024,"name":"tableName","url":"classes/_core_.group.html#tablename","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":749,"kind":1024,"name":"primaryKeyAttribute","url":"classes/_core_.group.html#primarykeyattribute","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":750,"kind":1024,"name":"associations","url":"classes/_core_.group.html#associations","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":751,"kind":65536,"name":"__type","url":"classes/_core_.group.html#associations.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".Group.associations"},{"id":752,"kind":1024,"name":"options","url":"classes/_core_.group.html#options","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":753,"kind":1024,"name":"rawAttributes","url":"classes/_core_.group.html#rawattributes","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":754,"kind":65536,"name":"__type","url":"classes/_core_.group.html#rawattributes.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".Group.rawAttributes"},{"id":755,"kind":1024,"name":"sequelize","url":"classes/_core_.group.html#sequelize-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":756,"kind":2048,"name":"init","url":"classes/_core_.group.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":757,"kind":2048,"name":"removeAttribute","url":"classes/_core_.group.html#removeattribute","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":758,"kind":2048,"name":"sync","url":"classes/_core_.group.html#sync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":759,"kind":2048,"name":"drop","url":"classes/_core_.group.html#drop","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":760,"kind":2048,"name":"schema","url":"classes/_core_.group.html#schema","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":761,"kind":2048,"name":"getTableName","url":"classes/_core_.group.html#gettablename","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":762,"kind":2048,"name":"scope","url":"classes/_core_.group.html#scope","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":763,"kind":2048,"name":"addScope","url":"classes/_core_.group.html#addscope","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":764,"kind":2048,"name":"findAll","url":"classes/_core_.group.html#findall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":765,"kind":2048,"name":"findByPk","url":"classes/_core_.group.html#findbypk","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":766,"kind":2048,"name":"findOne","url":"classes/_core_.group.html#findone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":767,"kind":2048,"name":"aggregate","url":"classes/_core_.group.html#aggregate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":768,"kind":2048,"name":"count","url":"classes/_core_.group.html#count","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":769,"kind":2048,"name":"findAndCountAll","url":"classes/_core_.group.html#findandcountall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":770,"kind":2048,"name":"max","url":"classes/_core_.group.html#max","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":771,"kind":2048,"name":"min","url":"classes/_core_.group.html#min","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":772,"kind":2048,"name":"sum","url":"classes/_core_.group.html#sum","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":773,"kind":2048,"name":"build","url":"classes/_core_.group.html#build","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":774,"kind":2048,"name":"bulkBuild","url":"classes/_core_.group.html#bulkbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":775,"kind":2048,"name":"create","url":"classes/_core_.group.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":776,"kind":2048,"name":"findOrBuild","url":"classes/_core_.group.html#findorbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":777,"kind":2048,"name":"findOrCreate","url":"classes/_core_.group.html#findorcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":778,"kind":2048,"name":"upsert","url":"classes/_core_.group.html#upsert","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":779,"kind":2048,"name":"bulkCreate","url":"classes/_core_.group.html#bulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":780,"kind":2048,"name":"truncate","url":"classes/_core_.group.html#truncate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":781,"kind":2048,"name":"destroy","url":"classes/_core_.group.html#destroy-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":782,"kind":2048,"name":"restore","url":"classes/_core_.group.html#restore-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":783,"kind":2048,"name":"update","url":"classes/_core_.group.html#update-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":784,"kind":2048,"name":"increment","url":"classes/_core_.group.html#increment-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":785,"kind":2048,"name":"describe","url":"classes/_core_.group.html#describe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":786,"kind":2048,"name":"unscoped","url":"classes/_core_.group.html#unscoped","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":787,"kind":2048,"name":"beforeValidate","url":"classes/_core_.group.html#beforevalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":788,"kind":2048,"name":"afterValidate","url":"classes/_core_.group.html#aftervalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":789,"kind":2048,"name":"beforeCreate","url":"classes/_core_.group.html#beforecreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":790,"kind":2048,"name":"afterCreate","url":"classes/_core_.group.html#aftercreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":791,"kind":2048,"name":"beforeDestroy","url":"classes/_core_.group.html#beforedestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":792,"kind":2048,"name":"afterDestroy","url":"classes/_core_.group.html#afterdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":793,"kind":2048,"name":"beforeUpdate","url":"classes/_core_.group.html#beforeupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":794,"kind":2048,"name":"afterUpdate","url":"classes/_core_.group.html#afterupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":795,"kind":2048,"name":"beforeBulkCreate","url":"classes/_core_.group.html#beforebulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":796,"kind":2048,"name":"afterBulkCreate","url":"classes/_core_.group.html#afterbulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":797,"kind":2048,"name":"beforeBulkDestroy","url":"classes/_core_.group.html#beforebulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":798,"kind":2048,"name":"afterBulkDestroy","url":"classes/_core_.group.html#afterbulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":799,"kind":2048,"name":"beforeBulkUpdate","url":"classes/_core_.group.html#beforebulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":800,"kind":2048,"name":"afterBulkUpdate","url":"classes/_core_.group.html#afterbulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":801,"kind":2048,"name":"beforeFind","url":"classes/_core_.group.html#beforefind","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":802,"kind":2048,"name":"beforeCount","url":"classes/_core_.group.html#beforecount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":803,"kind":2048,"name":"beforeFindAfterExpandIncludeAll","url":"classes/_core_.group.html#beforefindafterexpandincludeall","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":804,"kind":2048,"name":"beforeFindAfterOptions","url":"classes/_core_.group.html#beforefindafteroptions","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":805,"kind":2048,"name":"afterFind","url":"classes/_core_.group.html#afterfind","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":806,"kind":2048,"name":"beforeBulkSync","url":"classes/_core_.group.html#beforebulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":807,"kind":2048,"name":"afterBulkSync","url":"classes/_core_.group.html#afterbulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":808,"kind":2048,"name":"beforeSync","url":"classes/_core_.group.html#beforesync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":809,"kind":2048,"name":"afterSync","url":"classes/_core_.group.html#aftersync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":810,"kind":2048,"name":"hasOne","url":"classes/_core_.group.html#hasone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":811,"kind":2048,"name":"belongsTo","url":"classes/_core_.group.html#belongsto","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":812,"kind":2048,"name":"hasMany","url":"classes/_core_.group.html#hasmany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":813,"kind":2048,"name":"belongsToMany","url":"classes/_core_.group.html#belongstomany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":814,"kind":1024,"name":"isNewRecord","url":"classes/_core_.group.html#isnewrecord","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":815,"kind":1024,"name":"sequelize","url":"classes/_core_.group.html#sequelize","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":816,"kind":512,"name":"constructor","url":"classes/_core_.group.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":817,"kind":2048,"name":"where","url":"classes/_core_.group.html#where","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":818,"kind":2048,"name":"getDataValue","url":"classes/_core_.group.html#getdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":819,"kind":2048,"name":"setDataValue","url":"classes/_core_.group.html#setdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":820,"kind":2048,"name":"get","url":"classes/_core_.group.html#get","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":821,"kind":2048,"name":"set","url":"classes/_core_.group.html#set","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":822,"kind":2048,"name":"setAttributes","url":"classes/_core_.group.html#setattributes","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":823,"kind":2048,"name":"changed","url":"classes/_core_.group.html#changed","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":824,"kind":2048,"name":"previous","url":"classes/_core_.group.html#previous","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":825,"kind":2048,"name":"save","url":"classes/_core_.group.html#save","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":826,"kind":2048,"name":"reload","url":"classes/_core_.group.html#reload","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":827,"kind":2048,"name":"validate","url":"classes/_core_.group.html#validate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":828,"kind":2048,"name":"update","url":"classes/_core_.group.html#update","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":829,"kind":2048,"name":"destroy","url":"classes/_core_.group.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":830,"kind":2048,"name":"restore","url":"classes/_core_.group.html#restore","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":831,"kind":2048,"name":"increment","url":"classes/_core_.group.html#increment","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":832,"kind":2048,"name":"decrement","url":"classes/_core_.group.html#decrement","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":833,"kind":2048,"name":"equals","url":"classes/_core_.group.html#equals","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":834,"kind":2048,"name":"equalsOneOf","url":"classes/_core_.group.html#equalsoneof","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Group"},{"id":835,"kind":2048,"name":"addHook","url":"classes/_core_.group.html#addhook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":836,"kind":2048,"name":"removeHook","url":"classes/_core_.group.html#removehook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":837,"kind":2048,"name":"hasHook","url":"classes/_core_.group.html#hashook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":838,"kind":2048,"name":"hasHooks","url":"classes/_core_.group.html#hashooks-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Group"},{"id":839,"kind":2048,"name":"addHook","url":"classes/_core_.group.html#addhook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":840,"kind":2048,"name":"removeHook","url":"classes/_core_.group.html#removehook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":841,"kind":2048,"name":"hasHook","url":"classes/_core_.group.html#hashook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":842,"kind":2048,"name":"hasHooks","url":"classes/_core_.group.html#hashooks","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Group"},{"id":843,"kind":128,"name":"Auth","url":"classes/_core_.auth.html","classes":"tsd-kind-class tsd-parent-kind-external-module tsd-has-type-parameter","parent":"\"core\""},{"id":844,"kind":1024,"name":"id","url":"classes/_core_.auth.html#id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Auth"},{"id":845,"kind":1024,"name":"group_id","url":"classes/_core_.auth.html#group_id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Auth"},{"id":846,"kind":1024,"name":"auth","url":"classes/_core_.auth.html#auth","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Auth"},{"id":847,"kind":1024,"name":"module","url":"classes/_core_.auth.html#module","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Auth"},{"id":848,"kind":2048,"name":"toJSON","url":"classes/_core_.auth.html#tojson","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"core\".Auth"},{"id":849,"kind":1024,"name":"tableName","url":"classes/_core_.auth.html#tablename","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":850,"kind":1024,"name":"primaryKeyAttribute","url":"classes/_core_.auth.html#primarykeyattribute","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":851,"kind":1024,"name":"associations","url":"classes/_core_.auth.html#associations","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":852,"kind":65536,"name":"__type","url":"classes/_core_.auth.html#associations.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".Auth.associations"},{"id":853,"kind":1024,"name":"options","url":"classes/_core_.auth.html#options","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":854,"kind":1024,"name":"rawAttributes","url":"classes/_core_.auth.html#rawattributes","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":855,"kind":65536,"name":"__type","url":"classes/_core_.auth.html#rawattributes.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".Auth.rawAttributes"},{"id":856,"kind":1024,"name":"sequelize","url":"classes/_core_.auth.html#sequelize-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":857,"kind":2048,"name":"init","url":"classes/_core_.auth.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":858,"kind":2048,"name":"removeAttribute","url":"classes/_core_.auth.html#removeattribute","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":859,"kind":2048,"name":"sync","url":"classes/_core_.auth.html#sync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":860,"kind":2048,"name":"drop","url":"classes/_core_.auth.html#drop","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":861,"kind":2048,"name":"schema","url":"classes/_core_.auth.html#schema","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":862,"kind":2048,"name":"getTableName","url":"classes/_core_.auth.html#gettablename","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":863,"kind":2048,"name":"scope","url":"classes/_core_.auth.html#scope","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":864,"kind":2048,"name":"addScope","url":"classes/_core_.auth.html#addscope","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":865,"kind":2048,"name":"findAll","url":"classes/_core_.auth.html#findall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":866,"kind":2048,"name":"findByPk","url":"classes/_core_.auth.html#findbypk","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":867,"kind":2048,"name":"findOne","url":"classes/_core_.auth.html#findone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":868,"kind":2048,"name":"aggregate","url":"classes/_core_.auth.html#aggregate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":869,"kind":2048,"name":"count","url":"classes/_core_.auth.html#count","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":870,"kind":2048,"name":"findAndCountAll","url":"classes/_core_.auth.html#findandcountall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":871,"kind":2048,"name":"max","url":"classes/_core_.auth.html#max","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":872,"kind":2048,"name":"min","url":"classes/_core_.auth.html#min","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":873,"kind":2048,"name":"sum","url":"classes/_core_.auth.html#sum","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":874,"kind":2048,"name":"build","url":"classes/_core_.auth.html#build","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":875,"kind":2048,"name":"bulkBuild","url":"classes/_core_.auth.html#bulkbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":876,"kind":2048,"name":"create","url":"classes/_core_.auth.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":877,"kind":2048,"name":"findOrBuild","url":"classes/_core_.auth.html#findorbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":878,"kind":2048,"name":"findOrCreate","url":"classes/_core_.auth.html#findorcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":879,"kind":2048,"name":"upsert","url":"classes/_core_.auth.html#upsert","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":880,"kind":2048,"name":"bulkCreate","url":"classes/_core_.auth.html#bulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":881,"kind":2048,"name":"truncate","url":"classes/_core_.auth.html#truncate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":882,"kind":2048,"name":"destroy","url":"classes/_core_.auth.html#destroy-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":883,"kind":2048,"name":"restore","url":"classes/_core_.auth.html#restore-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":884,"kind":2048,"name":"update","url":"classes/_core_.auth.html#update-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":885,"kind":2048,"name":"increment","url":"classes/_core_.auth.html#increment-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":886,"kind":2048,"name":"describe","url":"classes/_core_.auth.html#describe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":887,"kind":2048,"name":"unscoped","url":"classes/_core_.auth.html#unscoped","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":888,"kind":2048,"name":"beforeValidate","url":"classes/_core_.auth.html#beforevalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":889,"kind":2048,"name":"afterValidate","url":"classes/_core_.auth.html#aftervalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":890,"kind":2048,"name":"beforeCreate","url":"classes/_core_.auth.html#beforecreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":891,"kind":2048,"name":"afterCreate","url":"classes/_core_.auth.html#aftercreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":892,"kind":2048,"name":"beforeDestroy","url":"classes/_core_.auth.html#beforedestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":893,"kind":2048,"name":"afterDestroy","url":"classes/_core_.auth.html#afterdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":894,"kind":2048,"name":"beforeUpdate","url":"classes/_core_.auth.html#beforeupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":895,"kind":2048,"name":"afterUpdate","url":"classes/_core_.auth.html#afterupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":896,"kind":2048,"name":"beforeBulkCreate","url":"classes/_core_.auth.html#beforebulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":897,"kind":2048,"name":"afterBulkCreate","url":"classes/_core_.auth.html#afterbulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":898,"kind":2048,"name":"beforeBulkDestroy","url":"classes/_core_.auth.html#beforebulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":899,"kind":2048,"name":"afterBulkDestroy","url":"classes/_core_.auth.html#afterbulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":900,"kind":2048,"name":"beforeBulkUpdate","url":"classes/_core_.auth.html#beforebulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":901,"kind":2048,"name":"afterBulkUpdate","url":"classes/_core_.auth.html#afterbulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":902,"kind":2048,"name":"beforeFind","url":"classes/_core_.auth.html#beforefind","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":903,"kind":2048,"name":"beforeCount","url":"classes/_core_.auth.html#beforecount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":904,"kind":2048,"name":"beforeFindAfterExpandIncludeAll","url":"classes/_core_.auth.html#beforefindafterexpandincludeall","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":905,"kind":2048,"name":"beforeFindAfterOptions","url":"classes/_core_.auth.html#beforefindafteroptions","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":906,"kind":2048,"name":"afterFind","url":"classes/_core_.auth.html#afterfind","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":907,"kind":2048,"name":"beforeBulkSync","url":"classes/_core_.auth.html#beforebulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":908,"kind":2048,"name":"afterBulkSync","url":"classes/_core_.auth.html#afterbulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":909,"kind":2048,"name":"beforeSync","url":"classes/_core_.auth.html#beforesync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":910,"kind":2048,"name":"afterSync","url":"classes/_core_.auth.html#aftersync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":911,"kind":2048,"name":"hasOne","url":"classes/_core_.auth.html#hasone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":912,"kind":2048,"name":"belongsTo","url":"classes/_core_.auth.html#belongsto","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":913,"kind":2048,"name":"hasMany","url":"classes/_core_.auth.html#hasmany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":914,"kind":2048,"name":"belongsToMany","url":"classes/_core_.auth.html#belongstomany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":915,"kind":1024,"name":"isNewRecord","url":"classes/_core_.auth.html#isnewrecord","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":916,"kind":1024,"name":"sequelize","url":"classes/_core_.auth.html#sequelize","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":917,"kind":512,"name":"constructor","url":"classes/_core_.auth.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":918,"kind":2048,"name":"where","url":"classes/_core_.auth.html#where","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":919,"kind":2048,"name":"getDataValue","url":"classes/_core_.auth.html#getdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":920,"kind":2048,"name":"setDataValue","url":"classes/_core_.auth.html#setdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":921,"kind":2048,"name":"get","url":"classes/_core_.auth.html#get","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":922,"kind":2048,"name":"set","url":"classes/_core_.auth.html#set","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":923,"kind":2048,"name":"setAttributes","url":"classes/_core_.auth.html#setattributes","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":924,"kind":2048,"name":"changed","url":"classes/_core_.auth.html#changed","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":925,"kind":2048,"name":"previous","url":"classes/_core_.auth.html#previous","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":926,"kind":2048,"name":"save","url":"classes/_core_.auth.html#save","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":927,"kind":2048,"name":"reload","url":"classes/_core_.auth.html#reload","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":928,"kind":2048,"name":"validate","url":"classes/_core_.auth.html#validate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":929,"kind":2048,"name":"update","url":"classes/_core_.auth.html#update","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":930,"kind":2048,"name":"destroy","url":"classes/_core_.auth.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":931,"kind":2048,"name":"restore","url":"classes/_core_.auth.html#restore","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":932,"kind":2048,"name":"increment","url":"classes/_core_.auth.html#increment","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":933,"kind":2048,"name":"decrement","url":"classes/_core_.auth.html#decrement","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":934,"kind":2048,"name":"equals","url":"classes/_core_.auth.html#equals","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":935,"kind":2048,"name":"equalsOneOf","url":"classes/_core_.auth.html#equalsoneof","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Auth"},{"id":936,"kind":2048,"name":"addHook","url":"classes/_core_.auth.html#addhook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":937,"kind":2048,"name":"removeHook","url":"classes/_core_.auth.html#removehook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":938,"kind":2048,"name":"hasHook","url":"classes/_core_.auth.html#hashook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":939,"kind":2048,"name":"hasHooks","url":"classes/_core_.auth.html#hashooks-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Auth"},{"id":940,"kind":2048,"name":"addHook","url":"classes/_core_.auth.html#addhook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":941,"kind":2048,"name":"removeHook","url":"classes/_core_.auth.html#removehook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":942,"kind":2048,"name":"hasHook","url":"classes/_core_.auth.html#hashook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":943,"kind":2048,"name":"hasHooks","url":"classes/_core_.auth.html#hashooks","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Auth"},{"id":944,"kind":256,"name":"LogArgs","url":"interfaces/_core_.logargs.html","classes":"tsd-kind-interface tsd-parent-kind-external-module","parent":"\"core\""},{"id":945,"kind":1024,"name":"message","url":"interfaces/_core_.logargs.html#message","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".LogArgs"},{"id":946,"kind":1024,"name":"user_id","url":"interfaces/_core_.logargs.html#user_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".LogArgs"},{"id":947,"kind":1024,"name":"user_name","url":"interfaces/_core_.logargs.html#user_name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".LogArgs"},{"id":948,"kind":1024,"name":"status_code","url":"interfaces/_core_.logargs.html#status_code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".LogArgs"},{"id":949,"kind":1024,"name":"method","url":"interfaces/_core_.logargs.html#method","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".LogArgs"},{"id":950,"kind":1024,"name":"path","url":"interfaces/_core_.logargs.html#path","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".LogArgs"},{"id":951,"kind":1024,"name":"authority","url":"interfaces/_core_.logargs.html#authority","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".LogArgs"},{"id":952,"kind":128,"name":"Log","url":"classes/_core_.log.html","classes":"tsd-kind-class tsd-parent-kind-external-module tsd-has-type-parameter","parent":"\"core\""},{"id":953,"kind":1024,"name":"id","url":"classes/_core_.log.html#id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":954,"kind":1024,"name":"message","url":"classes/_core_.log.html#message","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":955,"kind":1024,"name":"user_id","url":"classes/_core_.log.html#user_id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":956,"kind":1024,"name":"user_name","url":"classes/_core_.log.html#user_name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":957,"kind":1024,"name":"status_code","url":"classes/_core_.log.html#status_code","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":958,"kind":1024,"name":"method","url":"classes/_core_.log.html#method","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":959,"kind":1024,"name":"path","url":"classes/_core_.log.html#path","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":960,"kind":1024,"name":"authority","url":"classes/_core_.log.html#authority","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":961,"kind":1024,"name":"time","url":"classes/_core_.log.html#time","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".Log"},{"id":962,"kind":2048,"name":"createLog","url":"classes/_core_.log.html#createlog","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"\"core\".Log"},{"id":963,"kind":2048,"name":"toJSON","url":"classes/_core_.log.html#tojson","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"core\".Log"},{"id":964,"kind":1024,"name":"tableName","url":"classes/_core_.log.html#tablename","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":965,"kind":1024,"name":"primaryKeyAttribute","url":"classes/_core_.log.html#primarykeyattribute","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":966,"kind":1024,"name":"associations","url":"classes/_core_.log.html#associations","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":967,"kind":65536,"name":"__type","url":"classes/_core_.log.html#associations.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".Log.associations"},{"id":968,"kind":1024,"name":"options","url":"classes/_core_.log.html#options","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":969,"kind":1024,"name":"rawAttributes","url":"classes/_core_.log.html#rawattributes","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":970,"kind":65536,"name":"__type","url":"classes/_core_.log.html#rawattributes.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".Log.rawAttributes"},{"id":971,"kind":1024,"name":"sequelize","url":"classes/_core_.log.html#sequelize-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":972,"kind":2048,"name":"init","url":"classes/_core_.log.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":973,"kind":2048,"name":"removeAttribute","url":"classes/_core_.log.html#removeattribute","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":974,"kind":2048,"name":"sync","url":"classes/_core_.log.html#sync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":975,"kind":2048,"name":"drop","url":"classes/_core_.log.html#drop","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":976,"kind":2048,"name":"schema","url":"classes/_core_.log.html#schema","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":977,"kind":2048,"name":"getTableName","url":"classes/_core_.log.html#gettablename","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":978,"kind":2048,"name":"scope","url":"classes/_core_.log.html#scope","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":979,"kind":2048,"name":"addScope","url":"classes/_core_.log.html#addscope","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":980,"kind":2048,"name":"findAll","url":"classes/_core_.log.html#findall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":981,"kind":2048,"name":"findByPk","url":"classes/_core_.log.html#findbypk","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":982,"kind":2048,"name":"findOne","url":"classes/_core_.log.html#findone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":983,"kind":2048,"name":"aggregate","url":"classes/_core_.log.html#aggregate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":984,"kind":2048,"name":"count","url":"classes/_core_.log.html#count","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":985,"kind":2048,"name":"findAndCountAll","url":"classes/_core_.log.html#findandcountall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":986,"kind":2048,"name":"max","url":"classes/_core_.log.html#max","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":987,"kind":2048,"name":"min","url":"classes/_core_.log.html#min","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":988,"kind":2048,"name":"sum","url":"classes/_core_.log.html#sum","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":989,"kind":2048,"name":"build","url":"classes/_core_.log.html#build","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":990,"kind":2048,"name":"bulkBuild","url":"classes/_core_.log.html#bulkbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":991,"kind":2048,"name":"create","url":"classes/_core_.log.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":992,"kind":2048,"name":"findOrBuild","url":"classes/_core_.log.html#findorbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":993,"kind":2048,"name":"findOrCreate","url":"classes/_core_.log.html#findorcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":994,"kind":2048,"name":"upsert","url":"classes/_core_.log.html#upsert","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":995,"kind":2048,"name":"bulkCreate","url":"classes/_core_.log.html#bulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":996,"kind":2048,"name":"truncate","url":"classes/_core_.log.html#truncate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":997,"kind":2048,"name":"destroy","url":"classes/_core_.log.html#destroy-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":998,"kind":2048,"name":"restore","url":"classes/_core_.log.html#restore-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":999,"kind":2048,"name":"update","url":"classes/_core_.log.html#update-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1000,"kind":2048,"name":"increment","url":"classes/_core_.log.html#increment-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1001,"kind":2048,"name":"describe","url":"classes/_core_.log.html#describe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1002,"kind":2048,"name":"unscoped","url":"classes/_core_.log.html#unscoped","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1003,"kind":2048,"name":"beforeValidate","url":"classes/_core_.log.html#beforevalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1004,"kind":2048,"name":"afterValidate","url":"classes/_core_.log.html#aftervalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1005,"kind":2048,"name":"beforeCreate","url":"classes/_core_.log.html#beforecreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1006,"kind":2048,"name":"afterCreate","url":"classes/_core_.log.html#aftercreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1007,"kind":2048,"name":"beforeDestroy","url":"classes/_core_.log.html#beforedestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1008,"kind":2048,"name":"afterDestroy","url":"classes/_core_.log.html#afterdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1009,"kind":2048,"name":"beforeUpdate","url":"classes/_core_.log.html#beforeupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1010,"kind":2048,"name":"afterUpdate","url":"classes/_core_.log.html#afterupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1011,"kind":2048,"name":"beforeBulkCreate","url":"classes/_core_.log.html#beforebulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1012,"kind":2048,"name":"afterBulkCreate","url":"classes/_core_.log.html#afterbulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1013,"kind":2048,"name":"beforeBulkDestroy","url":"classes/_core_.log.html#beforebulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1014,"kind":2048,"name":"afterBulkDestroy","url":"classes/_core_.log.html#afterbulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1015,"kind":2048,"name":"beforeBulkUpdate","url":"classes/_core_.log.html#beforebulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1016,"kind":2048,"name":"afterBulkUpdate","url":"classes/_core_.log.html#afterbulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1017,"kind":2048,"name":"beforeFind","url":"classes/_core_.log.html#beforefind","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1018,"kind":2048,"name":"beforeCount","url":"classes/_core_.log.html#beforecount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1019,"kind":2048,"name":"beforeFindAfterExpandIncludeAll","url":"classes/_core_.log.html#beforefindafterexpandincludeall","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1020,"kind":2048,"name":"beforeFindAfterOptions","url":"classes/_core_.log.html#beforefindafteroptions","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1021,"kind":2048,"name":"afterFind","url":"classes/_core_.log.html#afterfind","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1022,"kind":2048,"name":"beforeBulkSync","url":"classes/_core_.log.html#beforebulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1023,"kind":2048,"name":"afterBulkSync","url":"classes/_core_.log.html#afterbulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1024,"kind":2048,"name":"beforeSync","url":"classes/_core_.log.html#beforesync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1025,"kind":2048,"name":"afterSync","url":"classes/_core_.log.html#aftersync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1026,"kind":2048,"name":"hasOne","url":"classes/_core_.log.html#hasone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1027,"kind":2048,"name":"belongsTo","url":"classes/_core_.log.html#belongsto","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1028,"kind":2048,"name":"hasMany","url":"classes/_core_.log.html#hasmany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1029,"kind":2048,"name":"belongsToMany","url":"classes/_core_.log.html#belongstomany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1030,"kind":1024,"name":"isNewRecord","url":"classes/_core_.log.html#isnewrecord","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1031,"kind":1024,"name":"sequelize","url":"classes/_core_.log.html#sequelize","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1032,"kind":512,"name":"constructor","url":"classes/_core_.log.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1033,"kind":2048,"name":"where","url":"classes/_core_.log.html#where","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1034,"kind":2048,"name":"getDataValue","url":"classes/_core_.log.html#getdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1035,"kind":2048,"name":"setDataValue","url":"classes/_core_.log.html#setdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1036,"kind":2048,"name":"get","url":"classes/_core_.log.html#get","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1037,"kind":2048,"name":"set","url":"classes/_core_.log.html#set","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1038,"kind":2048,"name":"setAttributes","url":"classes/_core_.log.html#setattributes","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1039,"kind":2048,"name":"changed","url":"classes/_core_.log.html#changed","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1040,"kind":2048,"name":"previous","url":"classes/_core_.log.html#previous","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1041,"kind":2048,"name":"save","url":"classes/_core_.log.html#save","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1042,"kind":2048,"name":"reload","url":"classes/_core_.log.html#reload","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1043,"kind":2048,"name":"validate","url":"classes/_core_.log.html#validate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1044,"kind":2048,"name":"update","url":"classes/_core_.log.html#update","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1045,"kind":2048,"name":"destroy","url":"classes/_core_.log.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1046,"kind":2048,"name":"restore","url":"classes/_core_.log.html#restore","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1047,"kind":2048,"name":"increment","url":"classes/_core_.log.html#increment","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1048,"kind":2048,"name":"decrement","url":"classes/_core_.log.html#decrement","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1049,"kind":2048,"name":"equals","url":"classes/_core_.log.html#equals","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1050,"kind":2048,"name":"equalsOneOf","url":"classes/_core_.log.html#equalsoneof","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".Log"},{"id":1051,"kind":2048,"name":"addHook","url":"classes/_core_.log.html#addhook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1052,"kind":2048,"name":"removeHook","url":"classes/_core_.log.html#removehook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1053,"kind":2048,"name":"hasHook","url":"classes/_core_.log.html#hashook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1054,"kind":2048,"name":"hasHooks","url":"classes/_core_.log.html#hashooks-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".Log"},{"id":1055,"kind":2048,"name":"addHook","url":"classes/_core_.log.html#addhook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1056,"kind":2048,"name":"removeHook","url":"classes/_core_.log.html#removehook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1057,"kind":2048,"name":"hasHook","url":"classes/_core_.log.html#hashook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1058,"kind":2048,"name":"hasHooks","url":"classes/_core_.log.html#hashooks","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".Log"},{"id":1059,"kind":256,"name":"FileArgs","url":"interfaces/_core_.fileargs.html","classes":"tsd-kind-interface tsd-parent-kind-external-module","parent":"\"core\""},{"id":1060,"kind":1024,"name":"path","url":"interfaces/_core_.fileargs.html#path","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".FileArgs"},{"id":1061,"kind":1024,"name":"type","url":"interfaces/_core_.fileargs.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".FileArgs"},{"id":1062,"kind":1024,"name":"name","url":"interfaces/_core_.fileargs.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".FileArgs"},{"id":1063,"kind":1024,"name":"extension","url":"interfaces/_core_.fileargs.html#extension","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".FileArgs"},{"id":1064,"kind":1024,"name":"size","url":"interfaces/_core_.fileargs.html#size","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".FileArgs"},{"id":1065,"kind":1024,"name":"md5","url":"interfaces/_core_.fileargs.html#md5","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"core\".FileArgs"},{"id":1066,"kind":128,"name":"File","url":"classes/_core_.file.html","classes":"tsd-kind-class tsd-parent-kind-external-module tsd-has-type-parameter","parent":"\"core\""},{"id":1067,"kind":1024,"name":"id","url":"classes/_core_.file.html#id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".File"},{"id":1068,"kind":1024,"name":"path","url":"classes/_core_.file.html#path","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".File"},{"id":1069,"kind":1024,"name":"type","url":"classes/_core_.file.html#type","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".File"},{"id":1070,"kind":1024,"name":"name","url":"classes/_core_.file.html#name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".File"},{"id":1071,"kind":1024,"name":"extension","url":"classes/_core_.file.html#extension","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".File"},{"id":1072,"kind":1024,"name":"size","url":"classes/_core_.file.html#size","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".File"},{"id":1073,"kind":1024,"name":"md5","url":"classes/_core_.file.html#md5","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"core\".File"},{"id":1074,"kind":2048,"name":"createRecord","url":"classes/_core_.file.html#createrecord","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"\"core\".File"},{"id":1075,"kind":2048,"name":"toJSON","url":"classes/_core_.file.html#tojson","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"core\".File"},{"id":1076,"kind":1024,"name":"tableName","url":"classes/_core_.file.html#tablename","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1077,"kind":1024,"name":"primaryKeyAttribute","url":"classes/_core_.file.html#primarykeyattribute","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1078,"kind":1024,"name":"associations","url":"classes/_core_.file.html#associations","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1079,"kind":65536,"name":"__type","url":"classes/_core_.file.html#associations.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".File.associations"},{"id":1080,"kind":1024,"name":"options","url":"classes/_core_.file.html#options","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1081,"kind":1024,"name":"rawAttributes","url":"classes/_core_.file.html#rawattributes","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1082,"kind":65536,"name":"__type","url":"classes/_core_.file.html#rawattributes.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"\"core\".File.rawAttributes"},{"id":1083,"kind":1024,"name":"sequelize","url":"classes/_core_.file.html#sequelize-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1084,"kind":2048,"name":"init","url":"classes/_core_.file.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1085,"kind":2048,"name":"removeAttribute","url":"classes/_core_.file.html#removeattribute","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1086,"kind":2048,"name":"sync","url":"classes/_core_.file.html#sync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1087,"kind":2048,"name":"drop","url":"classes/_core_.file.html#drop","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1088,"kind":2048,"name":"schema","url":"classes/_core_.file.html#schema","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1089,"kind":2048,"name":"getTableName","url":"classes/_core_.file.html#gettablename","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1090,"kind":2048,"name":"scope","url":"classes/_core_.file.html#scope","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1091,"kind":2048,"name":"addScope","url":"classes/_core_.file.html#addscope","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1092,"kind":2048,"name":"findAll","url":"classes/_core_.file.html#findall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1093,"kind":2048,"name":"findByPk","url":"classes/_core_.file.html#findbypk","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1094,"kind":2048,"name":"findOne","url":"classes/_core_.file.html#findone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1095,"kind":2048,"name":"aggregate","url":"classes/_core_.file.html#aggregate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1096,"kind":2048,"name":"count","url":"classes/_core_.file.html#count","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1097,"kind":2048,"name":"findAndCountAll","url":"classes/_core_.file.html#findandcountall","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1098,"kind":2048,"name":"max","url":"classes/_core_.file.html#max","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1099,"kind":2048,"name":"min","url":"classes/_core_.file.html#min","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1100,"kind":2048,"name":"sum","url":"classes/_core_.file.html#sum","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1101,"kind":2048,"name":"build","url":"classes/_core_.file.html#build","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1102,"kind":2048,"name":"bulkBuild","url":"classes/_core_.file.html#bulkbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1103,"kind":2048,"name":"create","url":"classes/_core_.file.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1104,"kind":2048,"name":"findOrBuild","url":"classes/_core_.file.html#findorbuild","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1105,"kind":2048,"name":"findOrCreate","url":"classes/_core_.file.html#findorcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1106,"kind":2048,"name":"upsert","url":"classes/_core_.file.html#upsert","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1107,"kind":2048,"name":"bulkCreate","url":"classes/_core_.file.html#bulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1108,"kind":2048,"name":"truncate","url":"classes/_core_.file.html#truncate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1109,"kind":2048,"name":"destroy","url":"classes/_core_.file.html#destroy-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1110,"kind":2048,"name":"restore","url":"classes/_core_.file.html#restore-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1111,"kind":2048,"name":"update","url":"classes/_core_.file.html#update-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1112,"kind":2048,"name":"increment","url":"classes/_core_.file.html#increment-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1113,"kind":2048,"name":"describe","url":"classes/_core_.file.html#describe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1114,"kind":2048,"name":"unscoped","url":"classes/_core_.file.html#unscoped","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1115,"kind":2048,"name":"beforeValidate","url":"classes/_core_.file.html#beforevalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1116,"kind":2048,"name":"afterValidate","url":"classes/_core_.file.html#aftervalidate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1117,"kind":2048,"name":"beforeCreate","url":"classes/_core_.file.html#beforecreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1118,"kind":2048,"name":"afterCreate","url":"classes/_core_.file.html#aftercreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1119,"kind":2048,"name":"beforeDestroy","url":"classes/_core_.file.html#beforedestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1120,"kind":2048,"name":"afterDestroy","url":"classes/_core_.file.html#afterdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1121,"kind":2048,"name":"beforeUpdate","url":"classes/_core_.file.html#beforeupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1122,"kind":2048,"name":"afterUpdate","url":"classes/_core_.file.html#afterupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1123,"kind":2048,"name":"beforeBulkCreate","url":"classes/_core_.file.html#beforebulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1124,"kind":2048,"name":"afterBulkCreate","url":"classes/_core_.file.html#afterbulkcreate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1125,"kind":2048,"name":"beforeBulkDestroy","url":"classes/_core_.file.html#beforebulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1126,"kind":2048,"name":"afterBulkDestroy","url":"classes/_core_.file.html#afterbulkdestroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1127,"kind":2048,"name":"beforeBulkUpdate","url":"classes/_core_.file.html#beforebulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1128,"kind":2048,"name":"afterBulkUpdate","url":"classes/_core_.file.html#afterbulkupdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1129,"kind":2048,"name":"beforeFind","url":"classes/_core_.file.html#beforefind","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1130,"kind":2048,"name":"beforeCount","url":"classes/_core_.file.html#beforecount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1131,"kind":2048,"name":"beforeFindAfterExpandIncludeAll","url":"classes/_core_.file.html#beforefindafterexpandincludeall","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1132,"kind":2048,"name":"beforeFindAfterOptions","url":"classes/_core_.file.html#beforefindafteroptions","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1133,"kind":2048,"name":"afterFind","url":"classes/_core_.file.html#afterfind","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1134,"kind":2048,"name":"beforeBulkSync","url":"classes/_core_.file.html#beforebulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1135,"kind":2048,"name":"afterBulkSync","url":"classes/_core_.file.html#afterbulksync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1136,"kind":2048,"name":"beforeSync","url":"classes/_core_.file.html#beforesync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1137,"kind":2048,"name":"afterSync","url":"classes/_core_.file.html#aftersync","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1138,"kind":2048,"name":"hasOne","url":"classes/_core_.file.html#hasone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1139,"kind":2048,"name":"belongsTo","url":"classes/_core_.file.html#belongsto","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1140,"kind":2048,"name":"hasMany","url":"classes/_core_.file.html#hasmany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1141,"kind":2048,"name":"belongsToMany","url":"classes/_core_.file.html#belongstomany","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1142,"kind":1024,"name":"isNewRecord","url":"classes/_core_.file.html#isnewrecord","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1143,"kind":1024,"name":"sequelize","url":"classes/_core_.file.html#sequelize","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1144,"kind":512,"name":"constructor","url":"classes/_core_.file.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1145,"kind":2048,"name":"where","url":"classes/_core_.file.html#where","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1146,"kind":2048,"name":"getDataValue","url":"classes/_core_.file.html#getdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1147,"kind":2048,"name":"setDataValue","url":"classes/_core_.file.html#setdatavalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1148,"kind":2048,"name":"get","url":"classes/_core_.file.html#get","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1149,"kind":2048,"name":"set","url":"classes/_core_.file.html#set","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1150,"kind":2048,"name":"setAttributes","url":"classes/_core_.file.html#setattributes","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1151,"kind":2048,"name":"changed","url":"classes/_core_.file.html#changed","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1152,"kind":2048,"name":"previous","url":"classes/_core_.file.html#previous","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1153,"kind":2048,"name":"save","url":"classes/_core_.file.html#save","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1154,"kind":2048,"name":"reload","url":"classes/_core_.file.html#reload","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1155,"kind":2048,"name":"validate","url":"classes/_core_.file.html#validate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1156,"kind":2048,"name":"update","url":"classes/_core_.file.html#update","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1157,"kind":2048,"name":"destroy","url":"classes/_core_.file.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1158,"kind":2048,"name":"restore","url":"classes/_core_.file.html#restore","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1159,"kind":2048,"name":"increment","url":"classes/_core_.file.html#increment","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1160,"kind":2048,"name":"decrement","url":"classes/_core_.file.html#decrement","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1161,"kind":2048,"name":"equals","url":"classes/_core_.file.html#equals","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1162,"kind":2048,"name":"equalsOneOf","url":"classes/_core_.file.html#equalsoneof","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"core\".File"},{"id":1163,"kind":2048,"name":"addHook","url":"classes/_core_.file.html#addhook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1164,"kind":2048,"name":"removeHook","url":"classes/_core_.file.html#removehook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1165,"kind":2048,"name":"hasHook","url":"classes/_core_.file.html#hashook-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1166,"kind":2048,"name":"hasHooks","url":"classes/_core_.file.html#hashooks-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"\"core\".File"},{"id":1167,"kind":2048,"name":"addHook","url":"classes/_core_.file.html#addhook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1168,"kind":2048,"name":"removeHook","url":"classes/_core_.file.html#removehook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1169,"kind":2048,"name":"hasHook","url":"classes/_core_.file.html#hashook","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1170,"kind":2048,"name":"hasHooks","url":"classes/_core_.file.html#hashooks","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"core\".File"},{"id":1171,"kind":32,"name":"__version__","url":"modules/_core_.html#__version__","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"core\""},{"id":1172,"kind":32,"name":"routeMetaInfo","url":"modules/_core_.html#routemetainfo","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"core\""},{"id":1173,"kind":32,"name":"disableLoading","url":"modules/_core_.html#disableloading","classes":"tsd-kind-variable tsd-parent-kind-external-module","parent":"\"core\""},{"id":1174,"kind":1,"name":"\"factory\"","url":"modules/_factory_.html","classes":"tsd-kind-external-module"},{"id":1175,"kind":64,"name":"modelExtend","url":"modules/_factory_.html#modelextend","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"factory\""},{"id":1176,"kind":1,"name":"\"file\"","url":"modules/_file_.html","classes":"tsd-kind-external-module"},{"id":1177,"kind":128,"name":"Uploader","url":"classes/_file_.uploader.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"file\""},{"id":1178,"kind":1024,"name":"storeDir","url":"classes/_file_.uploader.html#storedir","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"file\".Uploader"},{"id":1179,"kind":512,"name":"constructor","url":"classes/_file_.uploader.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"file\".Uploader"},{"id":1180,"kind":2048,"name":"upload","url":"classes/_file_.uploader.html#upload","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"file\".Uploader"},{"id":1181,"kind":2048,"name":"getStorePath","url":"classes/_file_.uploader.html#getstorepath","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"file\".Uploader"},{"id":1182,"kind":2048,"name":"generateName","url":"classes/_file_.uploader.html#generatename","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"file\".Uploader"},{"id":1183,"kind":2048,"name":"getExactStoreDir","url":"classes/_file_.uploader.html#getexactstoredir","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"file\".Uploader"},{"id":1184,"kind":2048,"name":"getFormatDay","url":"classes/_file_.uploader.html#getformatday","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"file\".Uploader"},{"id":1185,"kind":2048,"name":"generateMd5","url":"classes/_file_.uploader.html#generatemd5","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"file\".Uploader"},{"id":1186,"kind":1,"name":"\"lin-validator\"","url":"modules/_lin_validator_.html","classes":"tsd-kind-external-module"},{"id":1187,"kind":128,"name":"LinValidator","url":"classes/_lin_validator_.linvalidator.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"lin-validator\""},{"id":1188,"kind":1024,"name":"data","url":"classes/_lin_validator_.linvalidator.html#data","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".LinValidator"},{"id":1189,"kind":1024,"name":"parsed","url":"classes/_lin_validator_.linvalidator.html#parsed","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".LinValidator"},{"id":1190,"kind":1024,"name":"errors","url":"classes/_lin_validator_.linvalidator.html#errors","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".LinValidator"},{"id":1191,"kind":1024,"name":"alias","url":"classes/_lin_validator_.linvalidator.html#alias","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".LinValidator"},{"id":1192,"kind":2048,"name":"validate","url":"classes/_lin_validator_.linvalidator.html#validate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-validator\".LinValidator"},{"id":1193,"kind":2048,"name":"replace","url":"classes/_lin_validator_.linvalidator.html#replace","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"lin-validator\".LinValidator"},{"id":1194,"kind":2048,"name":"isOptional","url":"classes/_lin_validator_.linvalidator.html#isoptional","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"lin-validator\".LinValidator"},{"id":1195,"kind":2048,"name":"checkRules","url":"classes/_lin_validator_.linvalidator.html#checkrules","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"lin-validator\".LinValidator"},{"id":1196,"kind":2048,"name":"getValidateFuncKey","url":"classes/_lin_validator_.linvalidator.html#getvalidatefunckey","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"lin-validator\".LinValidator"},{"id":1197,"kind":2048,"name":"get","url":"classes/_lin_validator_.linvalidator.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-validator\".LinValidator"},{"id":1198,"kind":2048,"name":"findInData","url":"classes/_lin_validator_.linvalidator.html#findindata","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"lin-validator\".LinValidator"},{"id":1199,"kind":128,"name":"Rule","url":"classes/_lin_validator_.rule.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"lin-validator\""},{"id":1200,"kind":1024,"name":"options","url":"classes/_lin_validator_.rule.html#options","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1201,"kind":1024,"name":"message","url":"classes/_lin_validator_.rule.html#message","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1202,"kind":1024,"name":"validateFunction","url":"classes/_lin_validator_.rule.html#validatefunction","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1203,"kind":1024,"name":"optional","url":"classes/_lin_validator_.rule.html#optional","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1204,"kind":1024,"name":"parsedValue","url":"classes/_lin_validator_.rule.html#parsedvalue","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1205,"kind":1024,"name":"rawValue","url":"classes/_lin_validator_.rule.html#rawvalue","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1206,"kind":1024,"name":"defaultValue","url":"classes/_lin_validator_.rule.html#defaultvalue","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1207,"kind":512,"name":"constructor","url":"classes/_lin_validator_.rule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1208,"kind":2048,"name":"validate","url":"classes/_lin_validator_.rule.html#validate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"lin-validator\".Rule"},{"id":1209,"kind":1,"name":"\"log\"","url":"modules/_log_.html","classes":"tsd-kind-external-module"},{"id":1210,"kind":32,"name":"REG_XP","url":"modules/_log_.html#reg_xp","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"log\""},{"id":1211,"kind":64,"name":"logger","url":"modules/_log_.html#logger","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"log\""},{"id":1212,"kind":64,"name":"writeLog","url":"modules/_log_.html#writelog","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"log\""},{"id":1213,"kind":64,"name":"parseTemplate","url":"modules/_log_.html#parsetemplate","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"log\""},{"id":1214,"kind":1,"name":"\"middleware\"","url":"modules/_middleware_.html","classes":"tsd-kind-external-module"},{"id":1215,"kind":64,"name":"error","url":"modules/_middleware_.html#error","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"middleware\""},{"id":1216,"kind":64,"name":"log","url":"modules/_middleware_.html#log","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"middleware\""},{"id":1217,"kind":1,"name":"\"mixin\"","url":"modules/_mixin_.html","classes":"tsd-kind-external-module"},{"id":1218,"kind":128,"name":"JsonMixin","url":"classes/_mixin_.jsonmixin.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"mixin\""},{"id":1219,"kind":1024,"name":"fields","url":"classes/_mixin_.jsonmixin.html#fields","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"mixin\".JsonMixin"},{"id":1220,"kind":1,"name":"\"index\"","url":"modules/_index_.html","classes":"tsd-kind-external-module"},{"id":1221,"kind":1,"name":"\"limit/limiter\"","url":"modules/_limit_limiter_.html","classes":"tsd-kind-external-module"},{"id":1222,"kind":256,"name":"RatelimitOptions","url":"interfaces/_limit_limiter_.ratelimitoptions.html","classes":"tsd-kind-interface tsd-parent-kind-external-module","parent":"\"limit/limiter\""},{"id":1223,"kind":1024,"name":"db","url":"interfaces/_limit_limiter_.ratelimitoptions.html#db","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"limit/limiter\".RatelimitOptions"},{"id":1224,"kind":1024,"name":"duration","url":"interfaces/_limit_limiter_.ratelimitoptions.html#duration","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"limit/limiter\".RatelimitOptions"},{"id":1225,"kind":1024,"name":"max","url":"interfaces/_limit_limiter_.ratelimitoptions.html#max","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"limit/limiter\".RatelimitOptions"},{"id":1226,"kind":1024,"name":"id","url":"interfaces/_limit_limiter_.ratelimitoptions.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"limit/limiter\".RatelimitOptions"},{"id":1227,"kind":1024,"name":"prefix","url":"interfaces/_limit_limiter_.ratelimitoptions.html#prefix","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"limit/limiter\".RatelimitOptions"},{"id":1228,"kind":1024,"name":"endpoint","url":"interfaces/_limit_limiter_.ratelimitoptions.html#endpoint","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"limit/limiter\".RatelimitOptions"},{"id":1229,"kind":1024,"name":"whitelist","url":"interfaces/_limit_limiter_.ratelimitoptions.html#whitelist","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"limit/limiter\".RatelimitOptions"},{"id":1230,"kind":1024,"name":"blacklist","url":"interfaces/_limit_limiter_.ratelimitoptions.html#blacklist","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"limit/limiter\".RatelimitOptions"},{"id":1231,"kind":1024,"name":"throw","url":"interfaces/_limit_limiter_.ratelimitoptions.html#throw","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"limit/limiter\".RatelimitOptions"},{"id":1232,"kind":1024,"name":"errorMessage","url":"interfaces/_limit_limiter_.ratelimitoptions.html#errormessage","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"limit/limiter\".RatelimitOptions"},{"id":1233,"kind":1024,"name":"headers","url":"interfaces/_limit_limiter_.ratelimitoptions.html#headers","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"limit/limiter\".RatelimitOptions"},{"id":1234,"kind":1024,"name":"logging","url":"interfaces/_limit_limiter_.ratelimitoptions.html#logging","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"\"limit/limiter\".RatelimitOptions"},{"id":1235,"kind":64,"name":"find","url":"modules/_limit_limiter_.html#find","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"limit/limiter\""},{"id":1236,"kind":64,"name":"pttl","url":"modules/_limit_limiter_.html#pttl","classes":"tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"limit/limiter\""},{"id":1237,"kind":4194304,"name":"RatelimitExpires","url":"modules/_limit_limiter_.html#ratelimitexpires","classes":"tsd-kind-type-alias tsd-parent-kind-external-module","parent":"\"limit/limiter\""},{"id":1238,"kind":65536,"name":"__type","url":"modules/_limit_limiter_.html#ratelimitexpires.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias tsd-is-not-exported","parent":"\"limit/limiter\".RatelimitExpires"},{"id":1239,"kind":64,"name":"ratelimit","url":"modules/_limit_limiter_.html#ratelimit","classes":"tsd-kind-function tsd-parent-kind-external-module","parent":"\"limit/limiter\""},{"id":1240,"kind":1,"name":"\"logger/file\"","url":"modules/_logger_file_.html","classes":"tsd-kind-external-module"},{"id":1241,"kind":128,"name":"FileTransport","url":"classes/_logger_file_.filetransport.html","classes":"tsd-kind-class tsd-parent-kind-external-module tsd-has-type-parameter","parent":"\"logger/file\""},{"id":1242,"kind":1024,"name":"_stream","url":"classes/_logger_file_.filetransport.html#_stream","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"logger/file\".FileTransport"},{"id":1243,"kind":1024,"name":"options","url":"classes/_logger_file_.filetransport.html#options","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"logger/file\".FileTransport"},{"id":1244,"kind":1024,"name":"logCount","url":"classes/_logger_file_.filetransport.html#logcount","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"logger/file\".FileTransport"},{"id":1245,"kind":512,"name":"constructor","url":"classes/_logger_file_.filetransport.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"logger/file\".FileTransport"},{"id":1246,"kind":262144,"name":"defaults","url":"classes/_logger_file_.filetransport.html#defaults","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"\"logger/file\".FileTransport"},{"id":1247,"kind":2048,"name":"reload","url":"classes/_logger_file_.filetransport.html#reload","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"logger/file\".FileTransport"},{"id":1248,"kind":2048,"name":"log","url":"classes/_logger_file_.filetransport.html#log","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"logger/file\".FileTransport"},{"id":1249,"kind":2048,"name":"checkIsPresent","url":"classes/_logger_file_.filetransport.html#checkispresent","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"logger/file\".FileTransport"},{"id":1250,"kind":2048,"name":"getPresentFilename","url":"classes/_logger_file_.filetransport.html#getpresentfilename","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"logger/file\".FileTransport"},{"id":1251,"kind":2048,"name":"checkSizeOverflow","url":"classes/_logger_file_.filetransport.html#checksizeoverflow","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"logger/file\".FileTransport"},{"id":1252,"kind":2048,"name":"close","url":"classes/_logger_file_.filetransport.html#close","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"logger/file\".FileTransport"},{"id":1253,"kind":2048,"name":"end","url":"classes/_logger_file_.filetransport.html#end","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"logger/file\".FileTransport"},{"id":1254,"kind":2048,"name":"_write","url":"classes/_logger_file_.filetransport.html#_write","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"logger/file\".FileTransport"},{"id":1255,"kind":262144,"name":"writable","url":"classes/_logger_file_.filetransport.html#writable","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"\"logger/file\".FileTransport"},{"id":1256,"kind":2048,"name":"_createStream","url":"classes/_logger_file_.filetransport.html#_createstream","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"logger/file\".FileTransport"},{"id":1257,"kind":2048,"name":"_closeStream","url":"classes/_logger_file_.filetransport.html#_closestream","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"\"logger/file\".FileTransport"},{"id":1258,"kind":1024,"name":"enabled","url":"classes/_logger_file_.filetransport.html#enabled","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"logger/file\".FileTransport"},{"id":1259,"kind":1024,"name":"level","url":"classes/_logger_file_.filetransport.html#level","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"logger/file\".FileTransport"},{"id":1260,"kind":2048,"name":"enable","url":"classes/_logger_file_.filetransport.html#enable","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"logger/file\".FileTransport"},{"id":1261,"kind":2048,"name":"shouldLog","url":"classes/_logger_file_.filetransport.html#shouldlog","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"logger/file\".FileTransport"},{"id":1262,"kind":32,"name":"depd","url":"modules/_logger_file_.html#depd","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"logger/file\""},{"id":1263,"kind":32,"name":"utils","url":"modules/_logger_file_.html#utils","classes":"tsd-kind-variable tsd-parent-kind-external-module tsd-is-not-exported","parent":"\"logger/file\""},{"id":1264,"kind":1,"name":"\"sse\"","url":"modules/_sse_.html","classes":"tsd-kind-external-module"},{"id":1265,"kind":128,"name":"SSE","url":"classes/_sse_.sse.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"sse\""},{"id":1266,"kind":512,"name":"constructor","url":"classes/_sse_.sse.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"sse\".SSE"},{"id":1267,"kind":2048,"name":"_transform","url":"classes/_sse_.sse.html#_transform","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"sse\".SSE"},{"id":1268,"kind":2048,"name":"_flush","url":"classes/_sse_.sse.html#_flush","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1269,"kind":1024,"name":"writable","url":"classes/_sse_.sse.html#writable","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1270,"kind":1024,"name":"writableHighWaterMark","url":"classes/_sse_.sse.html#writablehighwatermark","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1271,"kind":1024,"name":"writableLength","url":"classes/_sse_.sse.html#writablelength","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1272,"kind":2048,"name":"_write","url":"classes/_sse_.sse.html#_write","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1273,"kind":2048,"name":"_writev","url":"classes/_sse_.sse.html#_writev","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1274,"kind":2048,"name":"_destroy","url":"classes/_sse_.sse.html#_destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1275,"kind":2048,"name":"_final","url":"classes/_sse_.sse.html#_final","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1276,"kind":2048,"name":"write","url":"classes/_sse_.sse.html#write","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1277,"kind":2048,"name":"setDefaultEncoding","url":"classes/_sse_.sse.html#setdefaultencoding","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1278,"kind":2048,"name":"end","url":"classes/_sse_.sse.html#end","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1279,"kind":2048,"name":"cork","url":"classes/_sse_.sse.html#cork","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1280,"kind":2048,"name":"uncork","url":"classes/_sse_.sse.html#uncork","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1281,"kind":1024,"name":"readable","url":"classes/_sse_.sse.html#readable","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1282,"kind":1024,"name":"readableHighWaterMark","url":"classes/_sse_.sse.html#readablehighwatermark","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1283,"kind":1024,"name":"readableLength","url":"classes/_sse_.sse.html#readablelength","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1284,"kind":2048,"name":"_read","url":"classes/_sse_.sse.html#_read","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1285,"kind":2048,"name":"read","url":"classes/_sse_.sse.html#read","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1286,"kind":2048,"name":"setEncoding","url":"classes/_sse_.sse.html#setencoding","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1287,"kind":2048,"name":"pause","url":"classes/_sse_.sse.html#pause","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1288,"kind":2048,"name":"resume","url":"classes/_sse_.sse.html#resume","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1289,"kind":2048,"name":"isPaused","url":"classes/_sse_.sse.html#ispaused","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1290,"kind":2048,"name":"unpipe","url":"classes/_sse_.sse.html#unpipe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1291,"kind":2048,"name":"unshift","url":"classes/_sse_.sse.html#unshift","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1292,"kind":2048,"name":"wrap","url":"classes/_sse_.sse.html#wrap","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1293,"kind":2048,"name":"push","url":"classes/_sse_.sse.html#push","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1294,"kind":2048,"name":"destroy","url":"classes/_sse_.sse.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1295,"kind":2048,"name":"addListener","url":"classes/_sse_.sse.html#addlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1296,"kind":2048,"name":"emit","url":"classes/_sse_.sse.html#emit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1297,"kind":2048,"name":"on","url":"classes/_sse_.sse.html#on","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1298,"kind":2048,"name":"once","url":"classes/_sse_.sse.html#once","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1299,"kind":2048,"name":"prependListener","url":"classes/_sse_.sse.html#prependlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1300,"kind":2048,"name":"prependOnceListener","url":"classes/_sse_.sse.html#prependoncelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1301,"kind":2048,"name":"removeListener","url":"classes/_sse_.sse.html#removelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1302,"kind":2048,"name":"__@asyncIterator","url":"classes/_sse_.sse.html#___asynciterator","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1303,"kind":2048,"name":"pipe","url":"classes/_sse_.sse.html#pipe","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1304,"kind":2048,"name":"listenerCount","url":"classes/_sse_.sse.html#listenercount-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"sse\".SSE"},{"id":1305,"kind":1024,"name":"defaultMaxListeners","url":"classes/_sse_.sse.html#defaultmaxlisteners","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"sse\".SSE"},{"id":1306,"kind":2048,"name":"off","url":"classes/_sse_.sse.html#off","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1307,"kind":2048,"name":"removeAllListeners","url":"classes/_sse_.sse.html#removealllisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1308,"kind":2048,"name":"setMaxListeners","url":"classes/_sse_.sse.html#setmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1309,"kind":2048,"name":"getMaxListeners","url":"classes/_sse_.sse.html#getmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1310,"kind":2048,"name":"listeners","url":"classes/_sse_.sse.html#listeners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1311,"kind":2048,"name":"rawListeners","url":"classes/_sse_.sse.html#rawlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1312,"kind":2048,"name":"eventNames","url":"classes/_sse_.sse.html#eventnames","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1313,"kind":2048,"name":"listenerCount","url":"classes/_sse_.sse.html#listenercount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".SSE"},{"id":1314,"kind":128,"name":"MessageBroker","url":"classes/_sse_.messagebroker.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"sse\""},{"id":1315,"kind":1024,"name":"messages","url":"classes/_sse_.messagebroker.html#messages","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1316,"kind":1024,"name":"retry","url":"classes/_sse_.messagebroker.html#retry","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"sse\".MessageBroker"},{"id":1317,"kind":1024,"name":"buffer","url":"classes/_sse_.messagebroker.html#buffer","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"sse\".MessageBroker"},{"id":1318,"kind":1024,"name":"defaultId","url":"classes/_sse_.messagebroker.html#defaultid","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"\"sse\".MessageBroker"},{"id":1319,"kind":512,"name":"constructor","url":"classes/_sse_.messagebroker.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1320,"kind":2048,"name":"setRetry","url":"classes/_sse_.messagebroker.html#setretry","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1321,"kind":2048,"name":"setEventId","url":"classes/_sse_.messagebroker.html#seteventid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1322,"kind":2048,"name":"resetEventId","url":"classes/_sse_.messagebroker.html#reseteventid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1323,"kind":2048,"name":"increaseId","url":"classes/_sse_.messagebroker.html#increaseid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1324,"kind":2048,"name":"addMessage","url":"classes/_sse_.messagebroker.html#addmessage","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1325,"kind":2048,"name":"flushBuffer","url":"classes/_sse_.messagebroker.html#flushbuffer","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1326,"kind":2048,"name":"joinBuffer","url":"classes/_sse_.messagebroker.html#joinbuffer","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1327,"kind":2048,"name":"pop","url":"classes/_sse_.messagebroker.html#pop","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1328,"kind":2048,"name":"heartbeat","url":"classes/_sse_.messagebroker.html#heartbeat","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1329,"kind":2048,"name":"existMessage","url":"classes/_sse_.messagebroker.html#existmessage","classes":"tsd-kind-method tsd-parent-kind-class","parent":"\"sse\".MessageBroker"},{"id":1330,"kind":128,"name":"Subscription","url":"classes/_sse_.subscription.html","classes":"tsd-kind-class tsd-parent-kind-external-module","parent":"\"sse\""},{"id":1331,"kind":1024,"name":"value","url":"classes/_sse_.subscription.html#value","classes":"tsd-kind-property tsd-parent-kind-class","parent":"\"sse\".Subscription"},{"id":1332,"kind":512,"name":"constructor","url":"classes/_sse_.subscription.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"\"sse\".Subscription"},{"id":1333,"kind":2048,"name":"_read","url":"classes/_sse_.subscription.html#_read","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"sse\".Subscription"},{"id":1334,"kind":1024,"name":"readable","url":"classes/_sse_.subscription.html#readable","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1335,"kind":1024,"name":"readableHighWaterMark","url":"classes/_sse_.subscription.html#readablehighwatermark","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1336,"kind":1024,"name":"readableLength","url":"classes/_sse_.subscription.html#readablelength","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1337,"kind":2048,"name":"read","url":"classes/_sse_.subscription.html#read","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1338,"kind":2048,"name":"setEncoding","url":"classes/_sse_.subscription.html#setencoding","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1339,"kind":2048,"name":"pause","url":"classes/_sse_.subscription.html#pause","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1340,"kind":2048,"name":"resume","url":"classes/_sse_.subscription.html#resume","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1341,"kind":2048,"name":"isPaused","url":"classes/_sse_.subscription.html#ispaused","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1342,"kind":2048,"name":"unpipe","url":"classes/_sse_.subscription.html#unpipe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1343,"kind":2048,"name":"unshift","url":"classes/_sse_.subscription.html#unshift","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1344,"kind":2048,"name":"wrap","url":"classes/_sse_.subscription.html#wrap","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1345,"kind":2048,"name":"push","url":"classes/_sse_.subscription.html#push","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1346,"kind":2048,"name":"_destroy","url":"classes/_sse_.subscription.html#_destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1347,"kind":2048,"name":"destroy","url":"classes/_sse_.subscription.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1348,"kind":2048,"name":"addListener","url":"classes/_sse_.subscription.html#addlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1349,"kind":2048,"name":"emit","url":"classes/_sse_.subscription.html#emit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1350,"kind":2048,"name":"on","url":"classes/_sse_.subscription.html#on","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1351,"kind":2048,"name":"once","url":"classes/_sse_.subscription.html#once","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1352,"kind":2048,"name":"prependListener","url":"classes/_sse_.subscription.html#prependlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1353,"kind":2048,"name":"prependOnceListener","url":"classes/_sse_.subscription.html#prependoncelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1354,"kind":2048,"name":"removeListener","url":"classes/_sse_.subscription.html#removelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1355,"kind":2048,"name":"__@asyncIterator","url":"classes/_sse_.subscription.html#___asynciterator","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1356,"kind":2048,"name":"pipe","url":"classes/_sse_.subscription.html#pipe","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1357,"kind":2048,"name":"listenerCount","url":"classes/_sse_.subscription.html#listenercount-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"sse\".Subscription"},{"id":1358,"kind":1024,"name":"defaultMaxListeners","url":"classes/_sse_.subscription.html#defaultmaxlisteners","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"sse\".Subscription"},{"id":1359,"kind":2048,"name":"off","url":"classes/_sse_.subscription.html#off","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1360,"kind":2048,"name":"removeAllListeners","url":"classes/_sse_.subscription.html#removealllisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1361,"kind":2048,"name":"setMaxListeners","url":"classes/_sse_.subscription.html#setmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1362,"kind":2048,"name":"getMaxListeners","url":"classes/_sse_.subscription.html#getmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1363,"kind":2048,"name":"listeners","url":"classes/_sse_.subscription.html#listeners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1364,"kind":2048,"name":"rawListeners","url":"classes/_sse_.subscription.html#rawlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1365,"kind":2048,"name":"eventNames","url":"classes/_sse_.subscription.html#eventnames","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"},{"id":1366,"kind":2048,"name":"listenerCount","url":"classes/_sse_.subscription.html#listenercount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"\"sse\".Subscription"}]}; \ No newline at end of file diff --git a/docs/classes/_config_.config.html b/docs/classes/_config_.config.html index 4e94139..83fec5a 100644 --- a/docs/classes/_config_.config.html +++ b/docs/classes/_config_.config.html @@ -123,7 +123,7 @@

    Private store

    store: Object
    @@ -145,7 +145,7 @@

    getConfigFromFile

  • @@ -177,7 +177,7 @@

    getConfigFromObj

  • @@ -209,7 +209,7 @@

    getItem

  • @@ -251,7 +251,7 @@

    hasItem

  • @@ -285,7 +285,7 @@

    initApp

  • @@ -316,7 +316,7 @@

    setItem

  • @@ -391,7 +391,7 @@

    Returns void"jwt"

  • - "limiter" + "limit/limiter"
  • "lin-router" @@ -405,6 +405,9 @@

    Returns void "log"

  • +
  • + "logger/file" +
  • "middleware"
  • diff --git a/docs/classes/_core_.auth.html b/docs/classes/_core_.auth.html index 588aa87..5dd9842 100644 --- a/docs/classes/_core_.auth.html +++ b/docs/classes/_core_.auth.html @@ -268,7 +268,7 @@

    auth

    auth: string
    @@ -278,7 +278,7 @@

    group_id

    group_id: number
    @@ -288,7 +288,7 @@

    id

    id: number
    @@ -314,7 +314,7 @@

    module

    module: string
    @@ -1305,7 +1305,7 @@

    toJSON

    Returns object

    @@ -5728,7 +5728,7 @@

    Returns Promise"jwt"
  • - "limiter" + "limit/limiter"
  • "lin-router" @@ -5742,6 +5742,9 @@

    Returns Promise "log"

  • +
  • + "logger/file" +
  • "middleware"
  • diff --git a/docs/classes/_core_.file.html b/docs/classes/_core_.file.html index f2ca801..b8eeffb 100644 --- a/docs/classes/_core_.file.html +++ b/docs/classes/_core_.file.html @@ -117,6 +117,7 @@

    Properties

  • extension
  • id
  • isNewRecord
  • +
  • md5
  • name
  • path
  • sequelize
  • @@ -272,7 +273,7 @@

    extension

    extension: string
    @@ -282,7 +283,7 @@

    id

    id: number
    @@ -302,13 +303,23 @@

    isNewRecord

    +
    + +

    md5

    +
    md5: string
    + +

    name

    name: string
    @@ -318,7 +329,7 @@

    path

    path: string
    @@ -344,7 +355,7 @@

    size

    size: number
    @@ -354,7 +365,7 @@

    type

    type: number
    @@ -1329,7 +1340,7 @@

    toJSON

    Returns object

    @@ -1340,6 +1351,9 @@
    extension:
    id: number
    +
  • +
    md5: string
    +
  • name: string
  • @@ -4253,13 +4267,13 @@

    Returns Promise

    Static createRecord

      -
    • createRecord(args?: FileArgs, commit?: undefined | false | true): File
    • +
    • createRecord(args?: FileArgs, commit?: undefined | false | true): Promise<File>
    -

    Returns File

    +

    Returns Promise<File>

    @@ -5784,7 +5798,7 @@

    Returns Promise"jwt"
  • - "limiter" + "limit/limiter"
  • "lin-router" @@ -5798,6 +5812,9 @@

    Returns Promise "log"

  • +
  • + "logger/file" +
  • "middleware"
  • @@ -5840,6 +5857,9 @@

    Returns Promise isNewRecord +
  • + md5 +
  • name
  • diff --git a/docs/classes/_core_.group.html b/docs/classes/_core_.group.html index 1d33bf0..a5057b5 100644 --- a/docs/classes/_core_.group.html +++ b/docs/classes/_core_.group.html @@ -267,7 +267,7 @@

    id

    id: number
    @@ -277,7 +277,7 @@

    info

    info: string
    @@ -303,7 +303,7 @@

    name

    name: string
    @@ -1294,7 +1294,7 @@

    toJSON

    Returns object @@ -5706,7 +5706,7 @@

    Returns Promise"jwt"
  • - "limiter" + "limit/limiter"
  • "lin-router" @@ -5720,6 +5720,9 @@

    Returns Promise "log"

  • +
  • + "logger/file" +
  • "middleware"
  • diff --git a/docs/classes/_core_.lin.html b/docs/classes/_core_.lin.html index 0e0bda0..12198b9 100644 --- a/docs/classes/_core_.lin.html +++ b/docs/classes/_core_.lin.html @@ -117,7 +117,7 @@

    Private app

    app: Application | undefined
    @@ -127,7 +127,7 @@

    Private manager

    manager: Manager | undefined
    @@ -144,7 +144,7 @@

    Private applyDB

  • Parameters

    @@ -170,7 +170,7 @@

    Private applyDefaultE
  • Returns void

    @@ -187,7 +187,7 @@

    Private applyJwt

  • Returns void

    @@ -204,7 +204,7 @@

    Private applyManager

  • Parameters

    @@ -233,7 +233,7 @@

    initApp

  • @@ -294,7 +294,7 @@

    Private mount

  • Returns void

    @@ -346,7 +346,7 @@

    Returns void"jwt"

  • - "limiter" + "limit/limiter"
  • "lin-router" @@ -360,6 +360,9 @@

    Returns void "log"

  • +
  • + "logger/file" +
  • "middleware"
  • diff --git a/docs/classes/_core_.log.html b/docs/classes/_core_.log.html index e5ada81..36a8591 100644 --- a/docs/classes/_core_.log.html +++ b/docs/classes/_core_.log.html @@ -274,7 +274,7 @@

    authority

    authority: string
    @@ -284,7 +284,7 @@

    id

    id: number
    @@ -310,7 +310,7 @@

    message

    message: string
    @@ -320,7 +320,7 @@

    method

    method: string
    @@ -330,7 +330,7 @@

    path

    path: string
    @@ -356,7 +356,7 @@

    status_code

    status_code: number
    @@ -366,7 +366,7 @@

    time

    time: Date
    @@ -376,7 +376,7 @@

    user_id

    user_id: number
    @@ -386,7 +386,7 @@

    user_name

    user_name: string
    @@ -1361,7 +1361,7 @@

    toJSON

    Returns object

    @@ -4300,7 +4300,7 @@

    Static createLog

  • Parameters

    @@ -5825,7 +5825,7 @@

    Returns Promise"jwt"

  • - "limiter" + "limit/limiter"
  • "lin-router" @@ -5839,6 +5839,9 @@

    Returns Promise "log"

  • +
  • + "logger/file" +
  • "middleware"
  • diff --git a/docs/classes/_core_.manager.html b/docs/classes/_core_.manager.html index 8db0dc9..a20b1d7 100644 --- a/docs/classes/_core_.manager.html +++ b/docs/classes/_core_.manager.html @@ -124,7 +124,7 @@

    authModel

    authModel: any
    @@ -134,7 +134,7 @@

    groupModel

    groupModel: any
    @@ -144,7 +144,7 @@

    loader

    loader: Loader | undefined
    @@ -154,7 +154,7 @@

    userModel

    userModel: any
    @@ -171,7 +171,7 @@

    plugins

  • @@ -198,7 +198,7 @@

    findGroup

  • @@ -229,7 +229,7 @@

    findUser

  • @@ -260,7 +260,7 @@

    initApp

  • @@ -315,7 +315,7 @@

    verify

  • @@ -387,7 +387,7 @@

    Returns any"jwt"

  • - "limiter" + "limit/limiter"
  • "lin-router" @@ -401,6 +401,9 @@

    Returns any "log"

  • +
  • + "logger/file" +
  • "middleware"
  • diff --git a/docs/classes/_core_.user.html b/docs/classes/_core_.user.html index bd895e6..f4bcabb 100644 --- a/docs/classes/_core_.user.html +++ b/docs/classes/_core_.user.html @@ -115,6 +115,7 @@

    Properties

    + +
    + +

    getFormatDay

    +
      +
    • getFormatDay(): string
    • +
    +
      +
    • + +
      +
      +

      getFormatDay

      +
      +

      Returns string

    @@ -210,13 +268,13 @@

    Returns string

    getStorePath

      -
    • getStorePath(filename: string): string
    • +
    • getStorePath(filename: string): object
    -

    Returns string

    +

    Returns object

    +
      +
    • +
      absolutePath: string
      +
    • +
    • +
      realName: string
      +
    • +
    • +
      relativePath: string
      +
    • +

    @@ -247,7 +316,7 @@

    upload

  • @@ -310,7 +379,7 @@

    Returns Promise"jwt"

  • - "limiter" + "limit/limiter"
  • "lin-router" @@ -324,6 +393,9 @@

    Returns Promise "log"

  • +
  • + "logger/file" +
  • "middleware"
  • @@ -357,12 +429,18 @@

    Returns Promise storeDir +
  • + generateMd5 +
  • generateName
  • getExactStoreDir
  • +
  • + getFormatDay +
  • getStorePath
  • diff --git a/docs/classes/_jwt_.token.html b/docs/classes/_jwt_.token.html index 0210de1..ff76a3f 100644 --- a/docs/classes/_jwt_.token.html +++ b/docs/classes/_jwt_.token.html @@ -131,7 +131,7 @@

    constructor

  • @@ -179,7 +179,7 @@

    accessExp

    accessExp: number = 60 * 60
    @@ -194,7 +194,7 @@

    refreshExp

    refreshExp: number = 60 * 60 * 24 * 30 * 3
    @@ -209,7 +209,7 @@

    secret

    secret: string | undefined
    @@ -231,7 +231,7 @@

    createAccessToken

  • @@ -262,7 +262,7 @@

    createRefreshToken

  • @@ -293,7 +293,7 @@

    initApp

  • @@ -330,7 +330,7 @@

    verifyToken

  • @@ -398,7 +398,7 @@

    Returns any"jwt"

  • - "limiter" + "limit/limiter"
  • "lin-router" @@ -412,6 +412,9 @@

    Returns any "log"

  • +
  • + "logger/file" +
  • "middleware"
  • diff --git a/docs/classes/_lin_router_.linrouter.html b/docs/classes/_lin_router_.linrouter.html index cf5a1ad..b325639 100644 --- a/docs/classes/_lin_router_.linrouter.html +++ b/docs/classes/_lin_router_.linrouter.html @@ -902,7 +902,7 @@

    linDelete

  • Parameters

    @@ -934,7 +934,7 @@

    linGet

  • Parameters

    @@ -966,7 +966,7 @@

    linHead

  • Parameters

    @@ -998,7 +998,7 @@

    linOption

  • Parameters

    @@ -1030,7 +1030,7 @@

    linPatch

  • Parameters

    @@ -1062,7 +1062,7 @@

    linPost

  • Parameters

    @@ -1094,7 +1094,7 @@

    linPut

  • Parameters

    @@ -2283,7 +2283,7 @@

    Returns string"jwt"

  • - "limiter" + "limit/limiter"
  • "lin-router" @@ -2297,6 +2297,9 @@

    Returns string "log"

  • +
  • + "logger/file" +
  • "middleware"
  • diff --git a/docs/classes/_lin_router_.linrouter.layer.html b/docs/classes/_lin_router_.linrouter.layer.html index 59c5f0f..d224b70 100644 --- a/docs/classes/_lin_router_.linrouter.layer.html +++ b/docs/classes/_lin_router_.linrouter.layer.html @@ -472,7 +472,7 @@

    Returns string"jwt"
  • - "limiter" + "limit/limiter"
  • "lin-router" @@ -486,6 +486,9 @@

    Returns string "log"

  • +
  • + "logger/file" +
  • "middleware"
  • diff --git a/docs/classes/_lin_router_.linrouter.paramname.html b/docs/classes/_lin_router_.linrouter.paramname.html index f9479fb..5517ffb 100644 --- a/docs/classes/_lin_router_.linrouter.paramname.html +++ b/docs/classes/_lin_router_.linrouter.paramname.html @@ -227,7 +227,7 @@

    repeat

    "jwt"
  • - "limiter" + "limit/limiter"
  • "lin-router" @@ -241,6 +241,9 @@

    repeat

  • "log"
  • +
  • + "logger/file" +
  • "middleware"
  • diff --git a/docs/classes/_lin_validator_.linvalidator.html b/docs/classes/_lin_validator_.linvalidator.html index 4814460..6c26e05 100644 --- a/docs/classes/_lin_validator_.linvalidator.html +++ b/docs/classes/_lin_validator_.linvalidator.html @@ -121,7 +121,7 @@

    alias

    alias: any
    @@ -136,7 +136,7 @@

    data

    data: any
    @@ -151,7 +151,7 @@

    errors

    errors: any[] = []
    @@ -166,7 +166,7 @@

    parsed

    parsed: any
    @@ -188,7 +188,7 @@

    Private checkRules

  • Returns Promise<boolean>

    @@ -205,7 +205,7 @@

    Private findInData

  • Parameters

    @@ -228,7 +228,7 @@

    get

  • @@ -265,7 +265,7 @@

    Private getValidateFu
  • @@ -296,7 +296,7 @@

    Private isOptional

  • Parameters

    @@ -319,7 +319,7 @@

    Private replace

  • Parameters

    @@ -342,7 +342,7 @@

    validate

  • @@ -414,7 +414,7 @@

    Returns Promise"jwt"

  • - "limiter" + "limit/limiter"
  • "lin-router" @@ -428,6 +428,9 @@

    Returns Promise "log"

  • +
  • + "logger/file" +
  • "middleware"
  • diff --git a/docs/classes/_lin_validator_.rule.html b/docs/classes/_lin_validator_.rule.html index 80f240f..2efe80d 100644 --- a/docs/classes/_lin_validator_.rule.html +++ b/docs/classes/_lin_validator_.rule.html @@ -127,7 +127,7 @@

    constructor

  • Parameters

    @@ -155,7 +155,7 @@

    defaultValue

    defaultValue: any
    @@ -165,7 +165,7 @@

    message

    message: string
    @@ -175,7 +175,7 @@

    optional

    optional: boolean = false
    @@ -185,7 +185,7 @@

    options

    options: any
    @@ -195,7 +195,7 @@

    parsedValue

    parsedValue: any
    @@ -205,7 +205,7 @@

    rawValue

    rawValue: any
    @@ -215,7 +215,7 @@

    validateFunction

    validateFunction: string | Function
    @@ -232,7 +232,7 @@

    validate

  • Parameters

    @@ -290,7 +290,7 @@

    Returns any"jwt"

  • - "limiter" + "limit/limiter"
  • "lin-router" @@ -304,6 +304,9 @@

    Returns any "log"

  • +
  • + "logger/file" +
  • "middleware"
  • diff --git a/docs/classes/_loader_.loader.html b/docs/classes/_loader_.loader.html index 0085ec0..4161836 100644 --- a/docs/classes/_loader_.loader.html +++ b/docs/classes/_loader_.loader.html @@ -128,7 +128,7 @@

    constructor

  • Parameters

    @@ -153,7 +153,7 @@

    Private app

    app: Application
    @@ -163,7 +163,7 @@

    mainRouter

    mainRouter: Router | undefined
    @@ -173,7 +173,7 @@

    pluginPath

    pluginPath: __type
    @@ -183,7 +183,7 @@

    plugins

    plugins: object
    @@ -205,7 +205,7 @@

    loadConfig

  • @@ -239,7 +239,7 @@

    loadMainApi

  • @@ -267,7 +267,7 @@

    loadPlugin

  • @@ -298,7 +298,7 @@

    loadPlugins

  • @@ -355,7 +355,7 @@

    Returns void"jwt"

  • - "limiter" + "limit/limiter"
  • "lin-router" @@ -369,6 +369,9 @@

    Returns void "log"

  • +
  • + "logger/file" +
  • "middleware"
  • diff --git a/docs/classes/_logger_file_.filetransport.html b/docs/classes/_logger_file_.filetransport.html new file mode 100644 index 0000000..b8103ba --- /dev/null +++ b/docs/classes/_logger_file_.filetransport.html @@ -0,0 +1,820 @@ + + + + + + FileTransport | lin-mizar + + + + + +
    +
    +
    +
    + +
    +
    + Options +
    +
    + All +
      +
    • Public
    • +
    • Public/Protected
    • +
    • All
    • +
    +
    + + + + + + +
    +
    + Menu +
    +
    +
    +
    +
    +
    + +

    Class FileTransport<T>

    +
    +
    +
    +
    +
    +
    +
    +
    +
    +

    output log into file {@link Transport}。

    +
    +
    +
    +
    +

    Type parameters

    +
      +
    • +

      T: TransportOptions

      +
    • +
    +
    +
    +

    Hierarchy

    +
      +
    • + Transport +
        +
      • + FileTransport +
      • +
      +
    • +
    +
    +
    +

    Index

    +
    +
    +
    +

    Constructors

    + +
    +
    +

    Properties

    + +
    +
    +

    Accessors

    + +
    +
    +

    Methods

    + +
    +
    +
    +
    +
    +

    Constructors

    +
    + +

    constructor

    + +
      +
    • + +
      +
      +
      constructor
      +
      +
      +
      +

      Parameters

      +
        +
      • +
        options: any
        +
        +
        +
          +
        • {String} file - file path
        • +
        • {String} [level = INFO] - log level
        • +
        +
        +
        +
      • +
      +

      Returns FileTransport

      +
    • +
    +
    +
    +
    +

    Properties

    +
    + +

    _stream

    +
    _stream: WriteStream | null
    + +
    +
    + +

    enabled

    +
    enabled: boolean
    + +
    +
    + +

    level

    +
    level: LoggerLevel
    + +
    +
    + +

    logCount

    +
    logCount: number = 1
    + +
    +
    + +

    options

    +
    options: any
    + +
    +
    +
    +

    Accessors

    +
    + +

    defaults

    +
      +
    • get defaults(): any
    • +
    + +
    +
    + +

    writable

    +
      +
    • get writable(): null | false | true
    • +
    +
      +
    • + +
      +
      +

      transport is writable

      +
      +
      +

      Returns null + | + false + | + true +

      +

      writable

      +
    • +
    +
    +
    +
    +

    Methods

    +
    + +

    Private _closeStream

    +
      +
    • _closeStream(): void
    • +
    + +
    +
    + +

    Private _createStream

    +
      +
    • _createStream(): WriteStream
    • +
    +
      +
    • + +
      +
      +

      create stream

      +
      +
      +

      Returns WriteStream

      +

      return writeStream

      +
    • +
    +
    +
    + +

    Private _write

    +
      +
    • _write(buf: any): void
    • +
    +
      +
    • + +
      +
      +

      write stream directly

      +
      +
      +

      Parameters

      +
        +
      • +
        buf: any
        +
        +

        log content

        +
        +
      • +
      +

      Returns void

      +
    • +
    +
    +
    + +

    checkIsPresent

    +
      +
    • checkIsPresent(): string | false
    • +
    +
      +
    • + +
      +
      +

      检查当前的日志文件是否为当天

      +
      +
      +

      Returns string + | + false +

      +
    • +
    +
    +
    + +

    checkSizeOverflow

    +
      +
    • checkSizeOverflow(filename: string): boolean
    • +
    +
      +
    • + +

      Parameters

      +
        +
      • +
        filename: string
        +
      • +
      +

      Returns boolean

      +
    • +
    +
    +
    + +

    close

    +
      +
    • close(): void
    • +
    +
      +
    • + +
      +
      +

      close stream

      +
      +
      +

      Returns void

      +
    • +
    +
    +
    + +

    enable

    +
      +
    • enable(): void
    • +
    +
      +
    • + +

      Returns void

      +
    • +
    +
    +
    + +

    end

    +
      +
    • end(): void
    • +
    +
      +
    • + +
      +
      +
      deprecated
      +
      +
      +
      +

      Returns void

      +
    • +
    +
    +
    + +

    getPresentFilename

    +
      +
    • getPresentFilename(): string
    • +
    + +
    +
    + +

    log

    +
      +
    • log(level: any, args: any, meta: any): void
    • +
    +
      +
    • + +
      +
      +

      output log, see {@link Transport#log}

      +
      +
      +

      Parameters

      +
        +
      • +
        level: any
        +
        +

        log level

        +
        +
      • +
      • +
        args: any
        +
        +

        all arguments

        +
        +
      • +
      • +
        meta: any
        +
        +

        meta information

        +
        +
      • +
      +

      Returns void

      +
    • +
    +
    +
    + +

    reload

    +
      +
    • reload(): void
    • +
    +
      +
    • + +
      +
      +

      reload file stream

      +
      +
      +

      Returns void

      +
    • +
    +
    +
    + +

    shouldLog

    +
      +
    • shouldLog(level: LoggerLevel): boolean
    • +
    +
      +
    • + +

      Parameters

      +
        +
      • +
        level: LoggerLevel
        +
      • +
      +

      Returns boolean

      +
    • +
    +
    +
    +
    + +
    +
    +
    +
    +

    Legend

    +
    +
      +
    • Module
    • +
    • Object literal
    • +
    • Variable
    • +
    • Function
    • +
    • Function with type parameter
    • +
    • Index signature
    • +
    • Type alias
    • +
    +
      +
    • Enumeration
    • +
    • Enumeration member
    • +
    • Property
    • +
    • Method
    • +
    +
      +
    • Interface
    • +
    • Interface with type parameter
    • +
    • Constructor
    • +
    • Property
    • +
    • Method
    • +
    • Index signature
    • +
    +
      +
    • Class
    • +
    • Class with type parameter
    • +
    • Constructor
    • +
    • Property
    • +
    • Method
    • +
    • Accessor
    • +
    • Index signature
    • +
    +
      +
    • Inherited constructor
    • +
    • Inherited property
    • +
    • Inherited method
    • +
    • Inherited accessor
    • +
    +
      +
    • Protected property
    • +
    • Protected method
    • +
    • Protected accessor
    • +
    +
      +
    • Private property
    • +
    • Private method
    • +
    • Private accessor
    • +
    +
      +
    • Static property
    • +
    • Static method
    • +
    +
    +
    +
    +
    +

    Generated using TypeDoc

    +
    +
    + + + + \ No newline at end of file diff --git a/docs/classes/_mixin_.jsonmixin.html b/docs/classes/_mixin_.jsonmixin.html index e1598e8..a077b09 100644 --- a/docs/classes/_mixin_.jsonmixin.html +++ b/docs/classes/_mixin_.jsonmixin.html @@ -110,7 +110,7 @@

    Private fields

    fields: string[] | undefined
    @@ -159,7 +159,7 @@

    Private fields

    "jwt"
  • - "limiter" + "limit/limiter"
  • "lin-router" @@ -173,6 +173,9 @@

    Private fields

  • "log"
  • +
  • + "logger/file" +
  • "middleware"
  • diff --git a/docs/classes/_plugin_.plugin.html b/docs/classes/_plugin_.plugin.html index c71501a..cdf8933 100644 --- a/docs/classes/_plugin_.plugin.html +++ b/docs/classes/_plugin_.plugin.html @@ -126,7 +126,7 @@

    constructor

  • Parameters

    @@ -148,7 +148,7 @@

    controllers

    controllers: object
    @@ -168,7 +168,7 @@

    models

    models: object
    @@ -188,7 +188,7 @@

    name

    name: string
    @@ -210,7 +210,7 @@

    addController

  • @@ -247,7 +247,7 @@

    addModel

  • @@ -284,7 +284,7 @@

    getModel

  • @@ -350,7 +350,7 @@

    Returns any"jwt"

  • - "limiter" + "limit/limiter"
  • "lin-router" @@ -364,6 +364,9 @@

    Returns any "log"

  • +
  • + "logger/file" +
  • "middleware"
  • diff --git a/docs/classes/_sse_.messagebroker.html b/docs/classes/_sse_.messagebroker.html index c1c8f09..d74e08c 100644 --- a/docs/classes/_sse_.messagebroker.html +++ b/docs/classes/_sse_.messagebroker.html @@ -133,7 +133,7 @@

    constructor

  • @@ -165,7 +165,7 @@

    Private buffer

    buffer: string[]
    @@ -175,7 +175,7 @@

    Private defaultId

    defaultId: number
    @@ -185,7 +185,7 @@

    messages

    messages: string[] = []
    @@ -200,7 +200,7 @@

    Private retry

    retry: number | undefined
    @@ -217,7 +217,7 @@

    addMessage

  • @@ -260,7 +260,7 @@

    existMessage

  • @@ -282,7 +282,7 @@

    flushBuffer

  • @@ -304,7 +304,7 @@

    heartbeat

  • @@ -338,7 +338,7 @@

    increaseId

  • @@ -360,7 +360,7 @@

    joinBuffer

  • @@ -382,7 +382,7 @@

    pop

  • @@ -404,7 +404,7 @@

    resetEventId

  • @@ -426,7 +426,7 @@

    setEventId

  • @@ -457,7 +457,7 @@

    setRetry

  • @@ -523,7 +523,7 @@

    Returns void"jwt"

  • - "limiter" + "limit/limiter"
  • "lin-router" @@ -537,6 +537,9 @@

    Returns void "log"

  • +
  • + "logger/file" +
  • "middleware"
  • diff --git a/docs/classes/_sse_.sse.html b/docs/classes/_sse_.sse.html index 90f813a..26bf402 100644 --- a/docs/classes/_sse_.sse.html +++ b/docs/classes/_sse_.sse.html @@ -179,7 +179,7 @@

    constructor

    Parameters

    @@ -440,7 +440,7 @@

    _transform

    Parameters

    @@ -2712,7 +2712,7 @@

    Returns number"jwt"
  • - "limiter" + "limit/limiter"
  • "lin-router" @@ -2726,6 +2726,9 @@

    Returns number "log"

  • +
  • + "logger/file" +
  • "middleware"
  • diff --git a/docs/classes/_sse_.subscription.html b/docs/classes/_sse_.subscription.html index 5e50c00..a3c81bf 100644 --- a/docs/classes/_sse_.subscription.html +++ b/docs/classes/_sse_.subscription.html @@ -159,7 +159,7 @@

    constructor

    Parameters

    @@ -214,7 +214,7 @@

    value

    value: number
    @@ -306,7 +306,7 @@

    _read

    Returns void

    @@ -2299,7 +2299,7 @@

    Returns number"jwt"
  • - "limiter" + "limit/limiter"
  • "lin-router" @@ -2313,6 +2313,9 @@

    Returns number "log"

  • +
  • + "logger/file" +
  • "middleware"
  • diff --git a/docs/enums/_enums_.tokentype.html b/docs/enums/_enums_.tokentype.html index 16e0b04..c290e22 100644 --- a/docs/enums/_enums_.tokentype.html +++ b/docs/enums/_enums_.tokentype.html @@ -100,7 +100,7 @@

    ACCESS

    ACCESS: = "access"
    @@ -110,7 +110,7 @@

    REFRESH

    REFRESH: = "refresh"
    @@ -159,7 +159,7 @@

    REFRESH

    "jwt"
  • - "limiter" + "limit/limiter"
  • "lin-router" @@ -173,6 +173,9 @@

    REFRESH

  • "log"
  • +
  • + "logger/file" +
  • "middleware"
  • diff --git a/docs/enums/_enums_.useractive.html b/docs/enums/_enums_.useractive.html index 58e732e..fb02f1a 100644 --- a/docs/enums/_enums_.useractive.html +++ b/docs/enums/_enums_.useractive.html @@ -100,7 +100,7 @@

    ACTIVE

    ACTIVE: = 1
    @@ -110,7 +110,7 @@

    NOT_ACTIVE

    NOT_ACTIVE: = 2
    @@ -159,7 +159,7 @@

    NOT_ACTIVE

    "jwt"
  • - "limiter" + "limit/limiter"
  • "lin-router" @@ -173,6 +173,9 @@

    NOT_ACTIVE

  • "log"
  • +
  • + "logger/file" +
  • "middleware"
  • diff --git a/docs/enums/_enums_.useradmin.html b/docs/enums/_enums_.useradmin.html index f59808e..35e13b2 100644 --- a/docs/enums/_enums_.useradmin.html +++ b/docs/enums/_enums_.useradmin.html @@ -100,7 +100,7 @@

    ADMIN

    ADMIN: = 2
    @@ -110,7 +110,7 @@

    COMMON

    COMMON: = 1
    @@ -159,7 +159,7 @@

    COMMON

    "jwt"
  • - "limiter" + "limit/limiter"
  • "lin-router" @@ -173,6 +173,9 @@

    COMMON

  • "log"
  • +
  • + "logger/file" +
  • "middleware"
  • diff --git a/docs/globals.html b/docs/globals.html index 6a63568..1cc8162 100644 --- a/docs/globals.html +++ b/docs/globals.html @@ -82,11 +82,12 @@

    External modules

  • "index"
  • "interface"
  • "jwt"
  • -
  • "limiter"
  • +
  • "limit/limiter"
  • "lin-router"
  • "lin-validator"
  • "loader"
  • "log"
  • +
  • "logger/file"
  • "middleware"
  • "mixin"
  • "password-hash"
  • @@ -142,7 +143,7 @@

    External modules

    "jwt"
  • - "limiter" + "limit/limiter"
  • "lin-router" @@ -156,6 +157,9 @@

    External modules

  • "log"
  • +
  • + "logger/file" +
  • "middleware"
  • diff --git a/docs/index.html b/docs/index.html index c13d66f..a76c276 100644 --- a/docs/index.html +++ b/docs/index.html @@ -189,7 +189,7 @@

    完善的文档

    "jwt"
  • - "limiter" + "limit/limiter"
  • "lin-router" @@ -203,6 +203,9 @@

    完善的文档

  • "log"
  • +
  • + "logger/file" +
  • "middleware"
  • diff --git a/docs/interfaces/_core_.fileargs.html b/docs/interfaces/_core_.fileargs.html index ae5759c..4b40f4f 100644 --- a/docs/interfaces/_core_.fileargs.html +++ b/docs/interfaces/_core_.fileargs.html @@ -85,6 +85,7 @@

    Index

    Properties

    @@ -119,7 +119,7 @@

    Optional gt

    gt: undefined | number
    @@ -129,7 +129,7 @@

    Optional lt

    lt: undefined | number
    @@ -139,7 +139,7 @@

    Optional max

    max: undefined | number
    @@ -149,7 +149,7 @@

    Optional min

    min: undefined | number
    @@ -198,7 +198,7 @@

    Optional min

    "jwt"
  • - "limiter" + "limit/limiter"
  • "lin-router" @@ -212,6 +212,9 @@

    Optional min

  • "log"
  • +
  • + "logger/file" +
  • "middleware"
  • diff --git a/docs/interfaces/_limiter_.ratelimitoptions.html b/docs/interfaces/_limit_limiter_.ratelimitoptions.html similarity index 80% rename from docs/interfaces/_limiter_.ratelimitoptions.html rename to docs/interfaces/_limit_limiter_.ratelimitoptions.html index cd9bd07..ccb82dc 100644 --- a/docs/interfaces/_limiter_.ratelimitoptions.html +++ b/docs/interfaces/_limit_limiter_.ratelimitoptions.html @@ -56,10 +56,10 @@ Globals
  • - "limiter" + "limit/limiter"
  • - RatelimitOptions + RatelimitOptions
  • Interface RatelimitOptions

    @@ -84,18 +84,18 @@

    Index

    Properties

    @@ -109,7 +109,7 @@

    Optional blacklist

    blacklist: string[]
    @@ -124,7 +124,7 @@

    db

    db: any
    @@ -139,7 +139,7 @@

    Optional duration

    duration: undefined | number
    @@ -154,7 +154,7 @@

    Optional endpoint

    endpoint: undefined | string
    @@ -166,10 +166,10 @@

    Optional endpoint

    Optional errorMessage

    -
    errorMessage: string | RatelimitExpires
    +
    errorMessage: string | RatelimitExpires
    @@ -184,7 +184,7 @@

    Optional headers

    headers: undefined | object
    @@ -199,7 +199,7 @@

    Optional id

    id: undefined | function
    @@ -214,7 +214,7 @@

    Optional logging

    logging: undefined | false | true
    @@ -224,7 +224,7 @@

    Optional max

    max: undefined | number
    @@ -239,7 +239,7 @@

    Optional prefix

    prefix: undefined | string
    @@ -254,7 +254,7 @@

    Optional throw

    throw: undefined | false | true
    @@ -269,7 +269,7 @@

    Optional whitelist

    whitelist: string[]
    @@ -323,7 +323,7 @@

    Optional whitelist

    "jwt"
  • - "limiter" + "limit/limiter"
  • "lin-router" @@ -337,6 +337,9 @@

    Optional whitelist

  • "log"
  • +
  • + "logger/file" +
  • "middleware"
  • @@ -362,59 +365,59 @@

    Optional whitelist

    diff --git a/docs/interfaces/_lin_router_.linrouter.ilayeroptions.html b/docs/interfaces/_lin_router_.linrouter.ilayeroptions.html index fd6b980..4ef4da7 100644 --- a/docs/interfaces/_lin_router_.linrouter.ilayeroptions.html +++ b/docs/interfaces/_lin_router_.linrouter.ilayeroptions.html @@ -172,7 +172,7 @@

    Optional strict

    "jwt"
  • - "limiter" + "limit/limiter"
  • "lin-router" @@ -186,6 +186,9 @@

    Optional strict

  • "log"
  • +
  • + "logger/file" +
  • "middleware"
  • diff --git a/docs/interfaces/_lin_router_.linrouter.iparammiddleware.html b/docs/interfaces/_lin_router_.linrouter.iparammiddleware.html index 564cdc0..c59e62a 100644 --- a/docs/interfaces/_lin_router_.linrouter.iparammiddleware.html +++ b/docs/interfaces/_lin_router_.linrouter.iparammiddleware.html @@ -164,7 +164,7 @@

    Returns any"jwt"
  • - "limiter" + "limit/limiter"
  • "lin-router" @@ -178,6 +178,9 @@

    Returns any "log"

  • +
  • + "logger/file" +
  • "middleware"
  • diff --git a/docs/interfaces/_lin_router_.linrouter.irouterallowedmethodsoptions.html b/docs/interfaces/_lin_router_.linrouter.irouterallowedmethodsoptions.html index f773e5e..e8248de 100644 --- a/docs/interfaces/_lin_router_.linrouter.irouterallowedmethodsoptions.html +++ b/docs/interfaces/_lin_router_.linrouter.irouterallowedmethodsoptions.html @@ -187,7 +187,7 @@

    Optional throw

    "jwt"
  • - "limiter" + "limit/limiter"
  • "lin-router" @@ -201,6 +201,9 @@

    Optional throw

  • "log"
  • +
  • + "logger/file" +
  • "middleware"
  • diff --git a/docs/interfaces/_lin_router_.linrouter.iroutercontext.html b/docs/interfaces/_lin_router_.linrouter.iroutercontext.html index 2149520..6d883c9 100644 --- a/docs/interfaces/_lin_router_.linrouter.iroutercontext.html +++ b/docs/interfaces/_lin_router_.linrouter.iroutercontext.html @@ -124,7 +124,7 @@

    Hierarchy

    "jwt"
  • - "limiter" + "limit/limiter"
  • "lin-router" @@ -138,6 +138,9 @@

    Hierarchy

  • "log"
  • +
  • + "logger/file" +
  • "middleware"
  • diff --git a/docs/interfaces/_lin_router_.linrouter.irouteroptions.html b/docs/interfaces/_lin_router_.linrouter.irouteroptions.html index 8b24360..d7afabd 100644 --- a/docs/interfaces/_lin_router_.linrouter.irouteroptions.html +++ b/docs/interfaces/_lin_router_.linrouter.irouteroptions.html @@ -216,7 +216,7 @@

    Optional strict

    "jwt"
  • - "limiter" + "limit/limiter"
  • "lin-router" @@ -230,6 +230,9 @@

    Optional strict

  • "log"
  • +
  • + "logger/file" +
  • "middleware"
  • diff --git a/docs/interfaces/_lin_router_.linrouter.irouterparamcontext.html b/docs/interfaces/_lin_router_.linrouter.irouterparamcontext.html index 557a526..ea06838 100644 --- a/docs/interfaces/_lin_router_.linrouter.irouterparamcontext.html +++ b/docs/interfaces/_lin_router_.linrouter.irouterparamcontext.html @@ -209,7 +209,7 @@

    router

    "jwt"
  • - "limiter" + "limit/limiter"
  • "lin-router" @@ -223,6 +223,9 @@

    router

  • "log"
  • +
  • + "logger/file" +
  • "middleware"
  • diff --git a/docs/interfaces/_lin_router_.linrouter.iroutesmatch.html b/docs/interfaces/_lin_router_.linrouter.iroutesmatch.html index 800390b..371aa38 100644 --- a/docs/interfaces/_lin_router_.linrouter.iroutesmatch.html +++ b/docs/interfaces/_lin_router_.linrouter.iroutesmatch.html @@ -172,7 +172,7 @@

    route

    "jwt"
  • - "limiter" + "limit/limiter"
  • "lin-router" @@ -186,6 +186,9 @@

    route

  • "log"
  • +
  • + "logger/file" +
  • "middleware"
  • diff --git a/docs/interfaces/_lin_router_.linrouter.iurloptionsquery.html b/docs/interfaces/_lin_router_.linrouter.iurloptionsquery.html index d44d428..d6a343d 100644 --- a/docs/interfaces/_lin_router_.linrouter.iurloptionsquery.html +++ b/docs/interfaces/_lin_router_.linrouter.iurloptionsquery.html @@ -150,7 +150,7 @@

    query

    "jwt"
  • - "limiter" + "limit/limiter"
  • "lin-router" @@ -164,6 +164,9 @@

    query

  • "log"
  • +
  • + "logger/file" +
  • "middleware"
  • diff --git a/docs/interfaces/_lin_router_.meta.html b/docs/interfaces/_lin_router_.meta.html index 823c400..a7c02cf 100644 --- a/docs/interfaces/_lin_router_.meta.html +++ b/docs/interfaces/_lin_router_.meta.html @@ -100,7 +100,7 @@

    Optional auth

    auth: undefined | string
    @@ -110,7 +110,7 @@

    Optional module

    module: undefined | string
    @@ -120,7 +120,7 @@

    Optional mount

    mount: undefined | false | true
    @@ -169,7 +169,7 @@

    Optional mount

    "jwt"
  • - "limiter" + "limit/limiter"
  • "lin-router" @@ -183,6 +183,9 @@

    Optional mount

  • "log"
  • +
  • + "logger/file" +
  • "middleware"
  • diff --git a/docs/interfaces/_password_hash_.option.html b/docs/interfaces/_password_hash_.option.html index b254dc7..5264a7f 100644 --- a/docs/interfaces/_password_hash_.option.html +++ b/docs/interfaces/_password_hash_.option.html @@ -100,7 +100,7 @@

    Optional algorithm

    algorithm: undefined | string
    @@ -110,7 +110,7 @@

    Optional iterations

    iterations: undefined | number
    @@ -120,7 +120,7 @@

    Optional saltLength

    saltLength: undefined | number
    @@ -169,7 +169,7 @@

    Optional saltLength

    "jwt"
  • - "limiter" + "limit/limiter"
  • "lin-router" @@ -183,6 +183,9 @@

    Optional saltLength

  • "log"
  • +
  • + "logger/file" +
  • "middleware"
  • diff --git a/docs/interfaces/_util_.objoptions.html b/docs/interfaces/_util_.objoptions.html index d623eb8..b04516d 100644 --- a/docs/interfaces/_util_.objoptions.html +++ b/docs/interfaces/_util_.objoptions.html @@ -99,7 +99,7 @@

    Optional filter

    filter: undefined | function
    @@ -109,7 +109,7 @@

    Optional prefix

    prefix: undefined | string
    @@ -158,7 +158,7 @@

    Optional prefix

    "jwt"
  • - "limiter" + "limit/limiter"
  • "lin-router" @@ -172,6 +172,9 @@

    Optional prefix

  • "log"
  • +
  • + "logger/file" +
  • "middleware"
  • diff --git a/docs/modules/_config_.html b/docs/modules/_config_.html index a11b692..3fe4fa9 100644 --- a/docs/modules/_config_.html +++ b/docs/modules/_config_.html @@ -93,7 +93,7 @@

    Const config

    config: Config = new Config()
    @@ -147,7 +147,7 @@

    Const config

    "jwt"
  • - "limiter" + "limit/limiter"
  • "lin-router" @@ -161,6 +161,9 @@

    Const config

  • "log"
  • +
  • + "logger/file" +
  • "middleware"
  • diff --git a/docs/modules/_core_.html b/docs/modules/_core_.html index 9579bcf..a4cebdf 100644 --- a/docs/modules/_core_.html +++ b/docs/modules/_core_.html @@ -108,7 +108,7 @@

    Const __version__

    __version__: "0.0.1" = "0.0.1"
    @@ -118,7 +118,7 @@

    Const disableLoading

    disableLoading: unique symbol = Symbol('disableLoading')
    @@ -128,7 +128,7 @@

    Const routeMetaInfo

    routeMetaInfo: Map<any, any> = new Map()
    @@ -177,7 +177,7 @@

    Const routeMetaInfo

    "jwt"
  • - "limiter" + "limit/limiter"
  • "lin-router" @@ -191,6 +191,9 @@

    Const routeMetaInfo

    "log"
  • +
  • + "logger/file" +
  • "middleware"
  • diff --git a/docs/modules/_db_.html b/docs/modules/_db_.html index 88ac237..c4ed135 100644 --- a/docs/modules/_db_.html +++ b/docs/modules/_db_.html @@ -94,7 +94,7 @@

    Const database

    database: any = config.getItem('db.database', 'lin-cms')
    @@ -109,7 +109,7 @@

    Const db

    db: Sequelize = new Sequelize(database, username, password, {host: host,port: port,dialect: type,logging: logging,timezone: '+08:00'})
    @@ -124,7 +124,7 @@

    Const host

    host: any = config.getItem('db.host', 'localhost')
    @@ -139,7 +139,7 @@

    Const logging

    logging: any = config.getItem('db.logging', true)
    @@ -154,7 +154,7 @@

    Const password

    password: any = config.getItem('db.password', '123456')
    @@ -169,7 +169,7 @@

    Const port

    port: any = config.getItem('db.port', 3306)
    @@ -184,7 +184,7 @@

    Const type

    type: any = config.getItem('db.type', 'mysql')
    @@ -199,7 +199,7 @@

    Const username

    username: any = config.getItem('db.username', 'root')
    @@ -253,7 +253,7 @@

    Const username

    "jwt"
  • - "limiter" + "limit/limiter"
  • "lin-router" @@ -267,6 +267,9 @@

    Const username

  • "log"
  • +
  • + "logger/file" +
  • "middleware"
  • diff --git a/docs/modules/_enums_.html b/docs/modules/_enums_.html index f51a465..39fd008 100644 --- a/docs/modules/_enums_.html +++ b/docs/modules/_enums_.html @@ -132,7 +132,7 @@

    Enumerations

    "jwt"
  • - "limiter" + "limit/limiter"
  • "lin-router" @@ -146,6 +146,9 @@

    Enumerations

  • "log"
  • +
  • + "logger/file" +
  • "middleware"
  • diff --git a/docs/modules/_exception_.html b/docs/modules/_exception_.html index 5c9e37d..e127425 100644 --- a/docs/modules/_exception_.html +++ b/docs/modules/_exception_.html @@ -145,7 +145,7 @@

    Interfaces

    "jwt"
  • - "limiter" + "limit/limiter"
  • "lin-router" @@ -159,6 +159,9 @@

    Interfaces

  • "log"
  • +
  • + "logger/file" +
  • "middleware"
  • diff --git a/docs/modules/_extend_.html b/docs/modules/_extend_.html index a8b36a4..94186ac 100644 --- a/docs/modules/_extend_.html +++ b/docs/modules/_extend_.html @@ -70,6 +70,12 @@

    External module "extend"

    Index

    +
    +

    Interfaces

    + +

    Functions

    @@ -194,7 +194,7 @@

    type

    type: IntegerDataTypeConstructor = Sequelize.INTEGER
    @@ -205,7 +205,7 @@

    module

    module: object
    @@ -214,7 +214,7 @@

    type

    type: StringDataType = Sequelize.STRING({ length: 50 })
    @@ -226,7 +226,7 @@

    options

    options: object
    @@ -235,7 +235,7 @@

    createdAt

    createdAt: boolean = false
    @@ -245,7 +245,7 @@

    tableName

    tableName: string = "lin_auth"
    @@ -255,7 +255,7 @@

    updatedAt

    updatedAt: boolean = false
    @@ -267,7 +267,7 @@

    Const FileInterface

    FileInterface: object
    @@ -281,16 +281,16 @@

    extension

    extension: object

    type

    -
    type: StringDataType = Sequelize.STRING(20)
    +
    type: StringDataType = Sequelize.STRING(50)
    @@ -301,7 +301,7 @@

    id

    id: object
    @@ -310,7 +310,7 @@

    autoIncrement

    autoIncrement: boolean = true
    @@ -320,7 +320,7 @@

    primaryKey

    primaryKey: boolean = true
    @@ -330,7 +330,57 @@

    type

    type: IntegerDataTypeConstructor = Sequelize.INTEGER
    + + +
    + +

    md5

    +
    md5: object
    + +
    + +

    allowNull

    +
    allowNull: boolean = true
    + +
    +
    + +

    comment

    +
    comment: string = "图片md5值,防止上传重复图片"
    + +
    +
    + +

    type

    +
    type: StringDataType = Sequelize.STRING(40)
    + +
    +
    + +

    unique

    +
    unique: boolean = true
    +
    @@ -341,26 +391,26 @@

    name

    name: object
    - +

    allowNull

    allowNull: boolean = false
    - +

    type

    -
    type: StringDataType = Sequelize.STRING(30)
    +
    type: StringDataType = Sequelize.STRING(100)
    @@ -371,26 +421,26 @@

    path

    path: object
    - +

    allowNull

    allowNull: boolean = false
    - +

    type

    type: StringDataType = Sequelize.STRING({ length: 500 })
    @@ -401,76 +451,76 @@

    size

    size: object
    - +

    allowNull

    allowNull: boolean = true
    - +

    type

    type: IntegerDataTypeConstructor = Sequelize.INTEGER
    - +

    type

    type: object
    - +

    allowNull

    allowNull: boolean = false
    - +

    comment

    comment: string = "1 local,其他表示其他地方"
    - +

    defaultValue

    defaultValue: number = 1
    - +

    type

    type: TinyIntegerDataTypeConstructor = Sequelize.TINYINT
    @@ -482,7 +532,7 @@

    Const GroupInterface

    GroupInterface: object
    @@ -496,7 +546,7 @@

    attributes

    attributes: object
    @@ -505,7 +555,7 @@

    id

    id: object
    @@ -514,7 +564,7 @@

    autoIncrement

    autoIncrement: boolean = true
    @@ -524,17 +574,17 @@

    primaryKey

    primaryKey: boolean = true
    - +

    type

    type: IntegerDataTypeConstructor = Sequelize.INTEGER
    @@ -545,26 +595,26 @@

    info

    info: object
    - +

    allowNull

    allowNull: boolean = true
    - +

    type

    type: StringDataType = Sequelize.STRING({ length: 255 })
    @@ -575,16 +625,16 @@

    name

    name: object
    - +

    type

    type: StringDataType = Sequelize.STRING({ length: 60 })
    @@ -596,7 +646,7 @@

    options

    options: object
    @@ -605,7 +655,7 @@

    createdAt

    createdAt: boolean = false
    @@ -615,7 +665,7 @@

    tableName

    tableName: string = "lin_group"
    @@ -625,7 +675,7 @@

    updatedAt

    updatedAt: boolean = false
    @@ -637,7 +687,7 @@

    Const InfoCrudMixin

    InfoCrudMixin: object
    @@ -651,7 +701,7 @@

    attributes

    attributes: object
    @@ -666,7 +716,7 @@

    options

    options: object
    @@ -675,7 +725,7 @@

    createdAt

    createdAt: string = "create_time"
    @@ -685,7 +735,7 @@

    deletedAt

    deletedAt: string = "delete_time"
    @@ -695,7 +745,7 @@

    paranoid

    paranoid: boolean = true
    @@ -705,7 +755,7 @@

    updatedAt

    updatedAt: string = "update_time"
    @@ -715,7 +765,7 @@

    getterMethods

    getterMethods: object
    @@ -728,7 +778,24 @@

    createTime

  • +

    Returns any

    +
  • + +
    +
    + +

    updateTime

    +
      +
    • updateTime(): any
    • +
    +
    @@ -987,7 +1054,7 @@

    updatedAt

    updatedAt: boolean = false
    @@ -997,7 +1064,7 @@

    getterMethods

    getterMethods: object
    @@ -1010,7 +1077,7 @@

    time

  • Returns any

    @@ -1026,7 +1093,7 @@

    Const UserInterface

    UserInterface: object
    @@ -1040,7 +1107,7 @@

    options

    options: object & object = merge({tableName: 'lin_user',getterMethods: {isAdmin() {// @ts-ignorereturn this.getDataValue('admin') === UserAdmin.ADMIN;},isActive() {// @ts-ignorereturn this.getDataValue('active') === UserActive.ACTIVE;}}},InfoCrudMixin.options)
  • @@ -1050,7 +1117,7 @@

    attributes

    attributes: object
    @@ -1059,16 +1126,16 @@

    active

    active: object
    - +

    allowNull

    allowNull: boolean = false
    @@ -1078,17 +1145,17 @@

    defaultValue

    defaultValue: number = 1
    - +

    type

    type: TinyIntegerDataTypeConstructor = Sequelize.TINYINT
    @@ -1099,16 +1166,16 @@

    admin

    admin: object
    - +

    allowNull

    allowNull: boolean = false
    @@ -1118,17 +1185,47 @@

    defaultValue

    defaultValue: number = 1
    - +

    type

    type: TinyIntegerDataTypeConstructor = Sequelize.TINYINT
    +
    + +
    + +

    avatar

    +
    avatar: object
    + +
    + +

    comment

    +
    comment: string = "头像url"
    + +
    +
    + +

    type

    +
    type: StringDataType = Sequelize.STRING({ length: 500 })
    +
    @@ -1139,36 +1236,36 @@

    email

    email: object
    - +

    allowNull

    allowNull: boolean = true
    - +

    type

    type: StringDataType = Sequelize.STRING({ length: 100 })
    - +

    unique

    unique: boolean = true
    @@ -1179,26 +1276,26 @@

    group_id

    group_id: object
    - +

    allowNull

    allowNull: boolean = true
    - +

    type

    type: IntegerDataTypeConstructor = Sequelize.INTEGER
    @@ -1209,7 +1306,7 @@

    id

    id: object
    @@ -1218,7 +1315,7 @@

    autoIncrement

    autoIncrement: boolean = true
    @@ -1228,17 +1325,17 @@

    primaryKey

    primaryKey: boolean = true
    - +

    type

    type: IntegerDataTypeConstructor = Sequelize.INTEGER
    @@ -1249,36 +1346,36 @@

    nickname

    nickname: object
    - +

    allowNull

    allowNull: boolean = false
    - +

    type

    type: StringDataType = Sequelize.STRING({ length: 24 })
    - +

    unique

    unique: boolean = true
    @@ -1289,16 +1386,16 @@

    password

    password: object
    - +

    type

    type: StringDataType = Sequelize.STRING({ length: 100 })
    @@ -1312,7 +1409,7 @@

    get

  • Returns any

    @@ -1329,7 +1426,7 @@

    set

  • Parameters

    @@ -1390,7 +1487,7 @@

    Returns void"jwt"

  • - "limiter" + "limit/limiter"
  • "lin-router" @@ -1404,6 +1501,9 @@

    Returns void "log"

  • +
  • + "logger/file" +
  • "middleware"
  • diff --git a/docs/modules/_jwt_.html b/docs/modules/_jwt_.html index a08b3fa..a3a369f 100644 --- a/docs/modules/_jwt_.html +++ b/docs/modules/_jwt_.html @@ -110,7 +110,7 @@

    Const jwt

    jwt: Token = new Token(config.getItem('secret'),config.getItem('accessExp'),config.getItem('refreshExp'))
    @@ -132,7 +132,7 @@

    adminRequired

  • @@ -175,7 +175,7 @@

    checkUserIsActive

  • Parameters

    @@ -198,7 +198,7 @@

    createAccessToken

  • @@ -235,7 +235,7 @@

    createRefreshToken

  • @@ -272,7 +272,7 @@

    getTokens

  • @@ -311,7 +311,7 @@

    groupRequired

  • @@ -354,7 +354,7 @@

    loginRequired

  • @@ -397,7 +397,7 @@

    parseHeader

  • @@ -434,7 +434,7 @@

    refreshTokenRequired

  • @@ -477,7 +477,7 @@

    refreshTokenRequiredWithUnifyException

  • @@ -520,7 +520,7 @@

    verifyAccessToken

  • @@ -557,7 +557,7 @@

    verifyRefreshToken

  • @@ -629,7 +629,7 @@

    Returns any"jwt"

  • - "limiter" + "limit/limiter"
  • "lin-router" @@ -643,6 +643,9 @@

    Returns any "log"

  • +
  • + "logger/file" +
  • "middleware"
  • diff --git a/docs/modules/_limiter_.html b/docs/modules/_limit_limiter_.html similarity index 88% rename from docs/modules/_limiter_.html rename to docs/modules/_limit_limiter_.html index 4f34a0a..3b822f3 100644 --- a/docs/modules/_limiter_.html +++ b/docs/modules/_limit_limiter_.html @@ -3,7 +3,7 @@ - "limiter" | lin-mizar + "limit/limiter" | lin-mizar @@ -56,10 +56,10 @@ Globals
  • - "limiter" + "limit/limiter"
  • -

    External module "limiter"

    +

    External module "limit/limiter"

    @@ -73,21 +73,21 @@

    Index

    Interfaces

    Type aliases

    Functions

    @@ -101,7 +101,7 @@

    RatelimitExpires

    RatelimitExpires: function
    @@ -147,7 +147,7 @@

    find

  • @@ -184,7 +184,7 @@

    pttl

  • @@ -215,13 +215,13 @@

    Returns Promise

    ratelimit