lakutata 2.0.64 → 2.0.65
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/com/cacher.d.ts +4 -4
- package/com/database.d.ts +2 -2
- package/com/docker.d.ts +5 -5
- package/com/docker.mjs +1 -1
- package/com/entrypoint.d.ts +2 -2
- package/com/logger.d.ts +1 -1
- package/com/logger.mjs +1 -1
- package/com/monitor.d.ts +2 -2
- package/decorator/asst.d.ts +1 -1
- package/decorator/ctrl.d.ts +4 -4
- package/decorator/di.d.ts +3 -3
- package/decorator/dto.d.ts +3 -3
- package/decorator/orm.d.ts +2 -2
- package/decorator/orm.mjs +1 -1
- package/helper.d.ts +1 -1
- package/helper.mjs +2 -2
- package/lakutata.d.ts +10 -10
- package/lakutata.mjs +2 -2
- package/orm.d.ts +3 -3
- package/orm.mjs +15 -15
- package/package.json +1 -1
- package/provider/database.d.ts +2 -2
- package/provider/passwordHash.d.ts +1 -1
- package/src/components/Database.mjs +2 -2
- package/src/components/Logger.mjs +1 -1
- package/src/components/cacher/Cacher.mjs +10 -10
- package/src/components/cacher/adapters/CreateFileCacheAdapter.mjs +3 -3
- package/src/components/cacher/adapters/CreateMemcacheCacheAdapter.mjs +1 -1
- package/src/components/cacher/adapters/CreateMongoCacheAdapter.mjs +1 -1
- package/src/components/cacher/adapters/CreateMysqlCacheAdapter.mjs +1 -1
- package/src/components/cacher/adapters/CreatePostgresCacheAdapter.mjs +1 -1
- package/src/components/cacher/adapters/CreateRedisCacheAdapter.mjs +21 -21
- package/src/components/cacher/adapters/CreateSqliteCacheAdapter.mjs +8 -8
- package/src/components/cacher/options/FileCacheOptions.mjs +2 -2
- package/src/components/cacher/options/MemcacheCacheOptions.mjs +2 -2
- package/src/components/cacher/options/MongoCacheOptions.mjs +2 -2
- package/src/components/cacher/options/MysqlCacheOptions.mjs +2 -2
- package/src/components/cacher/options/PostgresCacheOptions.mjs +2 -2
- package/src/components/cacher/options/RedisCacheOptions.mjs +2 -2
- package/src/components/cacher/options/SqliteCacheOptions.mjs +2 -2
- package/src/components/docker/Docker.mjs +5 -5
- package/src/components/docker/lib/DockerContainer.mjs +3 -3
- package/src/components/docker/lib/DockerContainerTTY.mjs +1 -1
- package/src/components/docker/lib/DockerImage.mjs +2 -2
- package/src/components/docker/options/DockerPruneOptions.mjs +2 -2
- package/src/components/docker/options/auth/DockerAuthOptions.mjs +2 -2
- package/src/components/docker/options/container/ContainerCommitOptions.mjs +2 -2
- package/src/components/docker/options/container/ContainerCreateTTYOptions.mjs +2 -2
- package/src/components/docker/options/container/ContainerExecOptions.mjs +2 -2
- package/src/components/docker/options/container/ContainerExportDirectoryOptions.mjs +2 -2
- package/src/components/docker/options/container/ContainerKillOptions.mjs +2 -2
- package/src/components/docker/options/container/ContainerLogsOptions.mjs +2 -2
- package/src/components/docker/options/container/ContainerRemoveOptions.mjs +2 -2
- package/src/components/docker/options/container/ContainerSettingOptions.mjs +2 -2
- package/src/components/docker/options/container/ContainerStopOptions.mjs +2 -2
- package/src/components/docker/options/container/ContainerTTYConsoleSizeOptions.mjs +2 -2
- package/src/components/docker/options/image/ImageBuildOptions.mjs +2 -2
- package/src/components/docker/options/image/ImageExportOptions.mjs +2 -2
- package/src/components/docker/options/image/ImageImportOptions.mjs +2 -2
- package/src/components/docker/options/image/ImagePullOptions.mjs +2 -2
- package/src/components/docker/options/image/ImagePushOptions.mjs +2 -2
- package/src/components/docker/options/image/ImageRemoveOptions.mjs +2 -2
- package/src/components/docker/options/image/ImageTagOptions.mjs +2 -2
- package/src/components/docker/options/network/NetworkCreateOptions.mjs +2 -2
- package/src/components/entrypoint/Entrypoint.mjs +3 -3
- package/src/components/entrypoint/lib/AccessControl.mjs +21 -21
- package/src/components/entrypoint/lib/AccessControlRule.mjs +2 -2
- package/src/components/entrypoint/lib/Controller.mjs +3 -3
- package/src/components/monitor/AliveMonitor.mjs +2 -2
- package/src/components/monitor/CpuMonitor.mjs +1 -1
- package/src/components/monitor/HttpRequestMonitor.mjs +14 -14
- package/src/components/monitor/MemoryMonitor.mjs +1 -1
- package/src/decorators/di/Configurable.mjs +1 -1
- package/src/decorators/dto/Expect.mjs +1 -1
- package/src/decorators/dto/IndexSignature.mjs +1 -1
- package/src/decorators/orm/AfterInsert.mjs +1 -1
- package/src/decorators/orm/AfterLoad.mjs +1 -1
- package/src/decorators/orm/AfterRecover.mjs +1 -1
- package/src/decorators/orm/AfterRemove.mjs +1 -1
- package/src/decorators/orm/AfterSoftRemove.mjs +1 -1
- package/src/decorators/orm/AfterUpdate.mjs +1 -1
- package/src/decorators/orm/BeforeInsert.mjs +1 -1
- package/src/decorators/orm/BeforeRecover.mjs +1 -1
- package/src/decorators/orm/BeforeRemove.mjs +1 -1
- package/src/decorators/orm/BeforeSoftRemove.mjs +1 -1
- package/src/decorators/orm/BeforeUpdate.mjs +1 -1
- package/src/decorators/orm/Check.mjs +1 -1
- package/src/decorators/orm/ChildEntity.mjs +1 -1
- package/src/decorators/orm/Column.mjs +1 -1
- package/src/decorators/orm/CreateDateColumn.mjs +1 -1
- package/src/decorators/orm/DeleteDateColumn.mjs +1 -1
- package/src/decorators/orm/Entity.mjs +1 -1
- package/src/decorators/orm/EventSubscriber.mjs +1 -1
- package/src/decorators/orm/Exclusion.mjs +1 -1
- package/src/decorators/orm/Generated.mjs +1 -1
- package/src/decorators/orm/Index.mjs +1 -1
- package/src/decorators/orm/JoinColumn.mjs +1 -1
- package/src/decorators/orm/JoinTable.mjs +1 -1
- package/src/decorators/orm/ManyToMany.mjs +1 -1
- package/src/decorators/orm/ManyToOne.mjs +1 -1
- package/src/decorators/orm/ObjectIdColumn.mjs +1 -1
- package/src/decorators/orm/OneToMany.mjs +1 -1
- package/src/decorators/orm/OneToOne.mjs +1 -1
- package/src/decorators/orm/PrimaryColumn.mjs +1 -1
- package/src/decorators/orm/PrimaryGeneratedColumn.mjs +1 -1
- package/src/decorators/orm/RelationId.mjs +1 -1
- package/src/decorators/orm/TableInheritance.mjs +1 -1
- package/src/decorators/orm/Tree.mjs +1 -1
- package/src/decorators/orm/TreeChildren.mjs +1 -1
- package/src/decorators/orm/TreeLevelColumn.mjs +1 -1
- package/src/decorators/orm/TreeParent.mjs +1 -1
- package/src/decorators/orm/Unique.mjs +1 -1
- package/src/decorators/orm/UpdateDateColumn.mjs +1 -1
- package/src/decorators/orm/VersionColumn.mjs +1 -1
- package/src/decorators/orm/ViewColumn.mjs +1 -1
- package/src/decorators/orm/ViewEntity.mjs +1 -1
- package/src/decorators/orm/VirtualColumn.mjs +1 -1
- package/src/lib/base/BaseObject.mjs +1 -1
- package/src/lib/base/Context.mjs +10 -10
- package/src/lib/base/EventEmitter.mjs +1 -1
- package/src/lib/base/internal/ActionOptions.mjs +2 -2
- package/src/lib/base/internal/BasicInfo.mjs +10 -10
- package/src/lib/base/internal/DataValidator.mjs +2 -2
- package/src/lib/base/internal/FlexibleDTO.mjs +2 -2
- package/src/lib/base/internal/MethodValidation.mjs +1 -1
- package/src/lib/base/internal/ModuleConfigLoader.mjs +1 -1
- package/src/lib/base/internal/ObjectConfiguration.mjs +1 -1
- package/src/lib/base/internal/ObjectSchemaValidation.mjs +1 -1
- package/src/lib/base/internal/ObjectType.mjs +1 -1
- package/src/lib/base/internal/PatternManager.mjs +1 -1
- package/src/lib/base/internal/StringifyPattern.mjs +1 -1
- package/src/lib/context/CLIContext.mjs +5 -5
- package/src/lib/context/HTTPContext.mjs +2 -2
- package/src/lib/context/ServiceContext.mjs +2 -2
- package/src/lib/core/Application.mjs +10 -10
- package/src/lib/core/Component.mjs +2 -2
- package/src/lib/core/Container.mjs +1 -1
- package/src/lib/core/DTO.mjs +1 -1
- package/src/lib/core/Module.mjs +2 -2
- package/src/lib/core/Provider.mjs +5 -5
- package/src/lib/core/Time.mjs +1 -1
- package/src/lib/helpers/Glob.mjs +1 -1
- package/src/lib/helpers/IsGlobString.mjs +1 -1
- package/src/lib/helpers/IsHtml.mjs +5 -5
- package/src/lib/helpers/IsSymbol.mjs +1 -1
- package/src/lib/helpers/IsXML.mjs +1 -1
- package/src/lib/helpers/MD5.mjs +1 -1
- package/src/lib/helpers/ObjectHash.mjs +1 -1
- package/src/lib/helpers/RandomString.mjs +1 -1
- package/src/lib/helpers/SHA1.mjs +3 -3
- package/src/lib/helpers/SHA256.mjs +3 -3
- package/src/lib/helpers/SortArray.mjs +14 -14
- package/src/lib/helpers/Statistics.mjs +59 -59
- package/src/lib/helpers/URLBuilder.mjs +34 -34
- package/src/lib/ioc/Errors.mjs +8 -8
- package/src/lib/ioc/ListModules.mjs +2 -2
- package/src/lib/ioc/Utils.mjs +1 -1
- package/src/lib/validation/VLD.mjs +1 -1
- package/src/options/ApplicationOptions.mjs +2 -2
- package/src/options/LoadAnonymousObjectOptions.mjs +3 -3
- package/src/options/LoadNamedObjectOptions.mjs +3 -3
- package/src/options/LoadObjectOptions.mjs +1 -1
- package/src/options/ModuleLoadObjectsOptions.mjs +3 -3
- package/src/options/ModuleOptions.mjs +3 -3
- package/src/options/OverridableNamedObjectOptions.mjs +2 -2
- package/src/options/OverridableObjectOptions.mjs +3 -3
- package/src/providers/Database.mjs +2 -2
- package/src/providers/PasswordHash.mjs +19 -19
- package/vendor/Package.1.mjs +1 -1
- package/vendor/Package.12.mjs +5 -5
- package/vendor/Package.122.mjs +4380 -4380
- package/vendor/Package.13.mjs +4 -4
- package/vendor/Package.132.mjs +1 -1
- package/vendor/Package.16.mjs +1 -1
- package/vendor/Package.17.mjs +5 -5
- package/vendor/Package.19.cjs +195 -184
- package/vendor/Package.19.mjs +194 -183
- package/vendor/Package.2.mjs +114 -114
- package/vendor/Package.3.mjs +30 -30
- package/vendor/Package.4.mjs +1 -1
- package/vendor/Package.5.mjs +1 -1
- package/vendor/Package.6.mjs +3 -3
- package/vendor/Package.610.mjs +1 -1
- package/vendor/Package.611.mjs +11 -11
- package/vendor/Package.62.mjs +148 -148
- package/vendor/Package.63.mjs +43 -43
- package/vendor/Package.64.mjs +1 -1
- package/vendor/Package.65.mjs +3 -3
- package/vendor/Package.66.mjs +1 -1
- package/vendor/Package.67.mjs +1 -1
- package/vendor/Package.68.mjs +1 -1
- package/vendor/Package.7.mjs +1 -1
- package/vendor/Package.9.mjs +36 -36
- package/vendor/TypeDef.internal.1.d.ts +1 -1
- package/vendor/TypeDef.internal.10.d.ts +1 -1
- package/vendor/TypeDef.internal.11.d.ts +2 -2
- package/vendor/TypeDef.internal.12.d.ts +2 -2
- package/vendor/TypeDef.internal.13.d.ts +6 -6
- package/vendor/TypeDef.internal.3.d.ts +3 -3
- package/vendor/TypeDef.internal.4.d.ts +2 -2
- package/vendor/TypeDef.internal.5.d.ts +2 -2
- package/vendor/TypeDef.internal.6.d.ts +2 -2
- package/vendor/TypeDef.internal.7.d.ts +1 -1
- package/vendor/TypeDef.internal.8.d.ts +1 -1
- package/vendor/TypeDef.internal.9.d.ts +1 -1
package/com/cacher.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import '../vendor/TypeDef.internal.2.js';
|
|
2
2
|
import EventEmitter from 'node:events';
|
|
3
|
-
import { DTO } from '../vendor/TypeDef.internal.5.js';
|
|
4
|
-
import { Component } from '../vendor/TypeDef.internal.3.js';
|
|
5
|
-
import { ComponentOptionsBuilder } from '../vendor/TypeDef.internal.6.js';
|
|
6
|
-
import { Exception } from '../vendor/TypeDef.internal.7.js';
|
|
3
|
+
import { D as DTO } from '../vendor/TypeDef.internal.5.js';
|
|
4
|
+
import { C as Component } from '../vendor/TypeDef.internal.3.js';
|
|
5
|
+
import { C as ComponentOptionsBuilder } from '../vendor/TypeDef.internal.6.js';
|
|
6
|
+
import { E as Exception } from '../vendor/TypeDef.internal.7.js';
|
|
7
7
|
|
|
8
8
|
type EventListener = (...arguments_: any[]) => void;
|
|
9
9
|
declare class EventManager {
|
package/com/database.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import '../vendor/TypeDef.internal.2.js';
|
|
2
|
-
import { Component } from '../vendor/TypeDef.internal.3.js';
|
|
3
|
-
import { DataSourceOptions, DataSource, Driver, EntityManager, NamingStrategyInterface, EntitySubscriberInterface, EntityMetadata, EntityTarget, QueryResultCache, Migration, ObjectLiteral, Repository, TreeRepository, MongoRepository, IsolationLevel, QueryRunner, SelectQueryBuilder, ReplicationMode } from '../vendor/TypeDef.internal.4.js';
|
|
2
|
+
import { C as Component } from '../vendor/TypeDef.internal.3.js';
|
|
3
|
+
import { D as DataSourceOptions, a as DataSource, b as Driver, E as EntityManager, N as NamingStrategyInterface, c as EntitySubscriberInterface, d as EntityMetadata, e as EntityTarget, Q as QueryResultCache, M as Migration, O as ObjectLiteral, R as Repository, T as TreeRepository, f as MongoRepository, I as IsolationLevel, g as QueryRunner, S as SelectQueryBuilder, h as ReplicationMode } from '../vendor/TypeDef.internal.4.js';
|
|
4
4
|
import '../vendor/TypeDef.internal.5.js';
|
|
5
5
|
import 'fs';
|
|
6
6
|
import 'dns';
|
package/com/docker.d.ts
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
2
|
import '../vendor/TypeDef.internal.2.js';
|
|
3
|
-
import { Provider, Component } from '../vendor/TypeDef.internal.3.js';
|
|
3
|
+
import { P as Provider, C as Component } from '../vendor/TypeDef.internal.3.js';
|
|
4
4
|
import { ClientRequest, IncomingMessage, Agent, OutgoingHttpHeaders, RequestOptions } from 'http';
|
|
5
5
|
import { Socket } from 'net';
|
|
6
6
|
import * as stream from 'stream';
|
|
7
7
|
import stream__default, { Duplex, Readable, DuplexOptions } from 'stream';
|
|
8
8
|
import * as events from 'events';
|
|
9
|
-
import { Time } from '../vendor/TypeDef.internal.1.js';
|
|
10
|
-
import { DTO } from '../vendor/TypeDef.internal.5.js';
|
|
9
|
+
import { T as Time } from '../vendor/TypeDef.internal.1.js';
|
|
10
|
+
import { D as DTO } from '../vendor/TypeDef.internal.5.js';
|
|
11
11
|
import { Logger } from './logger.js';
|
|
12
12
|
import { Writable } from 'node:stream';
|
|
13
|
-
import { ComponentOptionsBuilder } from '../vendor/TypeDef.internal.6.js';
|
|
14
|
-
import { Exception } from '../vendor/TypeDef.internal.7.js';
|
|
13
|
+
import { C as ComponentOptionsBuilder } from '../vendor/TypeDef.internal.6.js';
|
|
14
|
+
import { E as Exception } from '../vendor/TypeDef.internal.7.js';
|
|
15
15
|
|
|
16
16
|
interface Prompt {
|
|
17
17
|
prompt: string;
|
package/com/docker.mjs
CHANGED
|
@@ -6,7 +6,7 @@ export { BuildDockerConnectionOptions, BuildDockerHttpConnectionOptions, BuildDo
|
|
|
6
6
|
|
|
7
7
|
export { DockerContainer } from "../src/components/docker/lib/DockerContainer.mjs";
|
|
8
8
|
|
|
9
|
-
export { DockerContainerTTY } from "../vendor/Package.19.mjs";
|
|
9
|
+
export { D as DockerContainerTTY } from "../vendor/Package.19.mjs";
|
|
10
10
|
|
|
11
11
|
export { DockerImage } from "../src/components/docker/lib/DockerImage.mjs";
|
|
12
12
|
|
package/com/entrypoint.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import '../vendor/TypeDef.internal.2.js';
|
|
2
|
-
export { AccessControlRule, AccessControlRuleHandler, ActionGroupInfo, BaseActionInfo, BaseContext, BuildCLIEntrypoint, BuildEntrypoints, BuildHTTPEntrypoint, BuildServiceEntrypoint, CLIActionInfo, CLIContext, CLIEntrypoint, CLIEntrypointHandler, CLIMap, ContextType, Controller, ControllerProperty, Entrypoint, EntrypointActions, EntrypointDestroyer, EntrypointDestroyerRegistrar, EntrypointOptions, HTTPActionInfo, HTTPContext, HTTPEntrypoint, HTTPEntrypointHandler, HTTPRouteMap, ServiceActionInfo, ServiceContext, ServiceEntrypoint, ServiceEntrypointHandler } from '../vendor/TypeDef.internal.13.js';
|
|
3
|
-
import { Exception } from '../vendor/TypeDef.internal.7.js';
|
|
2
|
+
export { y as AccessControlRule, x as AccessControlRuleHandler, A as ActionGroupInfo, B as BaseActionInfo, r as BaseContext, l as BuildCLIEntrypoint, o as BuildEntrypoints, m as BuildHTTPEntrypoint, n as BuildServiceEntrypoint, j as CLIActionInfo, s as CLIContext, C as CLIEntrypoint, c as CLIEntrypointHandler, a as CLIMap, q as ContextType, w as Controller, v as ControllerProperty, p as Entrypoint, k as EntrypointActions, E as EntrypointDestroyer, f as EntrypointDestroyerRegistrar, g as EntrypointOptions, h as HTTPActionInfo, t as HTTPContext, H as HTTPEntrypoint, d as HTTPEntrypointHandler, b as HTTPRouteMap, i as ServiceActionInfo, u as ServiceContext, S as ServiceEntrypoint, e as ServiceEntrypointHandler } from '../vendor/TypeDef.internal.13.js';
|
|
3
|
+
import { E as Exception } from '../vendor/TypeDef.internal.7.js';
|
|
4
4
|
import '../vendor/TypeDef.internal.3.js';
|
|
5
5
|
import '../vendor/TypeDef.internal.5.js';
|
|
6
6
|
import '../vendor/TypeDef.internal.10.js';
|
package/com/logger.d.ts
CHANGED
package/com/logger.mjs
CHANGED
package/com/monitor.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Component } from '../vendor/TypeDef.internal.3.js';
|
|
2
|
-
import { ComponentOptionsBuilder } from '../vendor/TypeDef.internal.6.js';
|
|
1
|
+
import { C as Component } from '../vendor/TypeDef.internal.3.js';
|
|
2
|
+
import { C as ComponentOptionsBuilder } from '../vendor/TypeDef.internal.6.js';
|
|
3
3
|
import { IntervalHistogram, EventLoopUtilization, PerformanceObserver } from 'node:perf_hooks';
|
|
4
4
|
import '../vendor/TypeDef.internal.5.js';
|
|
5
5
|
import '../vendor/TypeDef.internal.2.js';
|
package/decorator/asst.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import '../vendor/TypeDef.internal.2.js';
|
|
2
|
-
import { MethodDecorator } from '../vendor/TypeDef.internal.8.js';
|
|
2
|
+
import { M as MethodDecorator } from '../vendor/TypeDef.internal.8.js';
|
|
3
3
|
|
|
4
4
|
type BeforeFunction<ClassPrototype extends Object, Method extends (...args: any[]) => unknown> = (this: ClassPrototype, ...args: Parameters<Method>) => Promise<Parameters<Method> | void> | Parameters<Method> | void;
|
|
5
5
|
type AfterFunction<ClassPrototype extends Object, Method extends (...args: any[]) => unknown> = (this: ClassPrototype, result: Awaited<ReturnType<Method>>) => Promise<ReturnType<Method> | void> | ReturnType<Method> | void;
|
package/decorator/ctrl.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import '../vendor/TypeDef.internal.2.js';
|
|
2
|
-
import { BaseContext, AccessControlRuleHandler, Controller, ControllerProperty, CLIContext, HTTPContext, ServiceContext } from '../vendor/TypeDef.internal.13.js';
|
|
3
|
-
import { MethodDecorator } from '../vendor/TypeDef.internal.8.js';
|
|
4
|
-
import { DTO } from '../vendor/TypeDef.internal.5.js';
|
|
5
|
-
import { ActionPattern } from '../vendor/TypeDef.internal.10.js';
|
|
2
|
+
import { r as BaseContext, x as AccessControlRuleHandler, w as Controller, v as ControllerProperty, s as CLIContext, t as HTTPContext, u as ServiceContext } from '../vendor/TypeDef.internal.13.js';
|
|
3
|
+
import { M as MethodDecorator } from '../vendor/TypeDef.internal.8.js';
|
|
4
|
+
import { D as DTO } from '../vendor/TypeDef.internal.5.js';
|
|
5
|
+
import { A as ActionPattern } from '../vendor/TypeDef.internal.10.js';
|
|
6
6
|
import '../vendor/TypeDef.internal.3.js';
|
|
7
7
|
import 'node:http';
|
|
8
8
|
import '../vendor/TypeDef.internal.7.js';
|
package/decorator/di.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import '../vendor/TypeDef.internal.2.js';
|
|
2
|
-
import { BaseObject, LifetimeType, IBaseObjectConstructor } from '../vendor/TypeDef.internal.3.js';
|
|
3
|
-
import { ClassDecorator, PropertyDecorator } from '../vendor/TypeDef.internal.11.js';
|
|
4
|
-
import { Schema } from '../vendor/TypeDef.internal.5.js';
|
|
2
|
+
import { B as BaseObject, L as LifetimeType, I as IBaseObjectConstructor } from '../vendor/TypeDef.internal.3.js';
|
|
3
|
+
import { C as ClassDecorator, P as PropertyDecorator } from '../vendor/TypeDef.internal.11.js';
|
|
4
|
+
import { S as Schema } from '../vendor/TypeDef.internal.5.js';
|
|
5
5
|
import '../vendor/TypeDef.internal.9.js';
|
|
6
6
|
|
|
7
7
|
/**
|
package/decorator/dto.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import '../vendor/TypeDef.internal.2.js';
|
|
2
|
-
import { DTO, Schema } from '../vendor/TypeDef.internal.5.js';
|
|
3
|
-
import { ClassDecorator, PropertyDecorator } from '../vendor/TypeDef.internal.11.js';
|
|
4
|
-
import { MethodDecorator } from '../vendor/TypeDef.internal.8.js';
|
|
2
|
+
import { D as DTO, S as Schema } from '../vendor/TypeDef.internal.5.js';
|
|
3
|
+
import { C as ClassDecorator, P as PropertyDecorator } from '../vendor/TypeDef.internal.11.js';
|
|
4
|
+
import { M as MethodDecorator } from '../vendor/TypeDef.internal.8.js';
|
|
5
5
|
import '../vendor/TypeDef.internal.9.js';
|
|
6
6
|
|
|
7
7
|
/**
|
package/decorator/orm.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import '../vendor/TypeDef.internal.2.js';
|
|
2
|
-
import { ColumnOptions, SimpleColumnType, ColumnCommonOptions, SpatialColumnType, SpatialColumnOptions, WithLengthColumnType, UnsignedColumnType, WithPrecisionColumnType, PrimaryGeneratedColumnType, ColumnType, ValueTransformer, JoinColumnOptions, JoinTableOptions, JoinTableMultipleColumnsOptions, ObjectType, RelationOptions, SelectQueryBuilder, DataSource, OnDeleteType, TreeType, ClosureTreeOptions, DeferrableType } from '../vendor/TypeDef.internal.4.js';
|
|
3
|
-
import { EntityOptions, IndexOptions } from '../vendor/TypeDef.internal.12.js';
|
|
2
|
+
import { C as ColumnOptions, l as SimpleColumnType, m as ColumnCommonOptions, n as SpatialColumnType, o as SpatialColumnOptions, W as WithLengthColumnType, U as UnsignedColumnType, p as WithPrecisionColumnType, P as PrimaryGeneratedColumnType, q as ColumnType, V as ValueTransformer, J as JoinColumnOptions, r as JoinTableOptions, s as JoinTableMultipleColumnsOptions, t as ObjectType, u as RelationOptions, S as SelectQueryBuilder, a as DataSource, v as OnDeleteType, w as TreeType, x as ClosureTreeOptions, y as DeferrableType } from '../vendor/TypeDef.internal.4.js';
|
|
3
|
+
import { E as EntityOptions, I as IndexOptions } from '../vendor/TypeDef.internal.12.js';
|
|
4
4
|
import 'fs';
|
|
5
5
|
import 'dns';
|
|
6
6
|
import 'net';
|
package/decorator/orm.mjs
CHANGED
|
@@ -84,7 +84,7 @@ import "../src/decorators/orm/ViewEntity.mjs";
|
|
|
84
84
|
|
|
85
85
|
import "../src/decorators/orm/VirtualColumn.mjs";
|
|
86
86
|
|
|
87
|
-
export {
|
|
87
|
+
export { b as AfterInsert, c as AfterLoad, A as AfterRecover, a as AfterRemove, d as AfterSoftRemove, e as AfterUpdate, B as BeforeInsert, f as BeforeRecover, g as BeforeRemove, h as BeforeSoftRemove, i as BeforeUpdate, C as Check, j as ChildEntity, k as Column, l as CreateDateColumn, D as DeleteDateColumn, E as Entity, m as EventSubscriber, n as Exclusion, G as Generated, I as Index, J as JoinColumn, o as JoinTable, M as ManyToMany, p as ManyToOne, O as ObjectIdColumn, q as OneToMany, s as OneToOne, P as PrimaryColumn, t as PrimaryGeneratedColumn, R as RelationId, T as TableInheritance, u as Tree, v as TreeChildren, w as TreeLevelColumn, x as TreeParent, U as Unique, y as UpdateDateColumn, V as VersionColumn, z as ViewColumn, F as ViewEntity, H as VirtualColumn } from "../vendor/Package.122.mjs";
|
|
88
88
|
|
|
89
89
|
import "../vendor/Package.5.mjs";
|
|
90
90
|
|
package/helper.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
2
|
import './vendor/TypeDef.internal.2.js';
|
|
3
3
|
import { PathLike } from 'fs';
|
|
4
|
-
import { IConstructor } from './vendor/TypeDef.internal.9.js';
|
|
4
|
+
import { I as IConstructor } from './vendor/TypeDef.internal.9.js';
|
|
5
5
|
import { PathLike as PathLike$1, Dirent, Stats } from 'node:fs';
|
|
6
6
|
import { ReadableOptions, Readable } from 'node:stream';
|
|
7
7
|
import { win32, posix } from 'node:path';
|
package/helper.mjs
CHANGED
|
@@ -18,7 +18,7 @@ export { IsEmptyObject } from "./src/lib/helpers/IsEmptyObject.mjs";
|
|
|
18
18
|
|
|
19
19
|
export { IsExists } from "./src/lib/helpers/IsExists.mjs";
|
|
20
20
|
|
|
21
|
-
export { IsGlobString } from "./vendor/Package.9.mjs";
|
|
21
|
+
export { I as IsGlobString } from "./vendor/Package.9.mjs";
|
|
22
22
|
|
|
23
23
|
export { IsHtml } from "./src/lib/helpers/IsHtml.mjs";
|
|
24
24
|
|
|
@@ -28,7 +28,7 @@ export { IsPromise } from "./src/lib/helpers/IsPromise.mjs";
|
|
|
28
28
|
|
|
29
29
|
export { IsPromiseLike } from "./src/lib/helpers/IsPromiseLike.mjs";
|
|
30
30
|
|
|
31
|
-
export { IsSymbol } from "./vendor/Package.2.mjs";
|
|
31
|
+
export { I as IsSymbol } from "./vendor/Package.2.mjs";
|
|
32
32
|
|
|
33
33
|
export { IsXML } from "./src/lib/helpers/IsXML.mjs";
|
|
34
34
|
|
package/lakutata.d.ts
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import './vendor/TypeDef.internal.2.js';
|
|
2
|
-
import { Exception } from './vendor/TypeDef.internal.7.js';
|
|
3
|
-
export { DTO, JSONSchema } from './vendor/TypeDef.internal.5.js';
|
|
4
|
-
export { Time } from './vendor/TypeDef.internal.1.js';
|
|
5
|
-
import {
|
|
6
|
-
export { Component, Container, IBaseObjectConstructor, LoadAnonymousObjectOptions, LoadNamedObjectOptions, ModuleLoadObjectsOptions, OverridableNamedObjectOptions, OverridableObjectOptions } from './vendor/TypeDef.internal.3.js';
|
|
2
|
+
import { E as Exception } from './vendor/TypeDef.internal.7.js';
|
|
3
|
+
export { D as DTO, J as JSONSchema } from './vendor/TypeDef.internal.5.js';
|
|
4
|
+
export { T as Time } from './vendor/TypeDef.internal.1.js';
|
|
5
|
+
import { b as ModuleOptions$1, c as ModuleConfigLoader, d as LoadObjectOptions, B as BaseObject, e as ConstructorOptions, f as event, g as ListenerFn, E as EventAndListener, M as Module, P as Provider } from './vendor/TypeDef.internal.3.js';
|
|
6
|
+
export { C as Component, a as Container, I as IBaseObjectConstructor, h as LoadAnonymousObjectOptions, i as LoadNamedObjectOptions, j as ModuleLoadObjectsOptions, O as OverridableNamedObjectOptions, k as OverridableObjectOptions } from './vendor/TypeDef.internal.3.js';
|
|
7
7
|
import { Logger } from './com/logger.js';
|
|
8
|
-
export { ActionPattern, IPatRun } from './vendor/TypeDef.internal.10.js';
|
|
9
|
-
export { ClassDecorator, PropertyDecorator } from './vendor/TypeDef.internal.11.js';
|
|
10
|
-
export { MethodDecorator } from './vendor/TypeDef.internal.8.js';
|
|
11
|
-
export { BaseComponentOptions, ComponentOptions, ComponentOptionsBuilder } from './vendor/TypeDef.internal.6.js';
|
|
12
|
-
export { IConstructor } from './vendor/TypeDef.internal.9.js';
|
|
8
|
+
export { A as ActionPattern, I as IPatRun } from './vendor/TypeDef.internal.10.js';
|
|
9
|
+
export { C as ClassDecorator, P as PropertyDecorator } from './vendor/TypeDef.internal.11.js';
|
|
10
|
+
export { M as MethodDecorator } from './vendor/TypeDef.internal.8.js';
|
|
11
|
+
export { B as BaseComponentOptions, a as ComponentOptions, C as ComponentOptionsBuilder } from './vendor/TypeDef.internal.6.js';
|
|
12
|
+
export { I as IConstructor } from './vendor/TypeDef.internal.9.js';
|
|
13
13
|
|
|
14
14
|
declare class ApplicationOptions extends ModuleOptions$1 {
|
|
15
15
|
/**
|
package/lakutata.mjs
CHANGED
|
@@ -2,11 +2,11 @@ import "./vendor/Package.4.mjs";
|
|
|
2
2
|
|
|
3
3
|
export { Exception } from "./src/lib/base/abstracts/Exception.mjs";
|
|
4
4
|
|
|
5
|
-
export { DTO } from "./vendor/Package.2.mjs";
|
|
5
|
+
export { D as DTO } from "./vendor/Package.2.mjs";
|
|
6
6
|
|
|
7
7
|
export { Time } from "./src/lib/core/Time.mjs";
|
|
8
8
|
|
|
9
|
-
export { BaseObject, Container, LoadObjectOptions } from "./vendor/Package.3.mjs";
|
|
9
|
+
export { B as BaseObject, C as Container, L as LoadObjectOptions } from "./vendor/Package.3.mjs";
|
|
10
10
|
|
|
11
11
|
export { Provider } from "./src/lib/core/Provider.mjs";
|
|
12
12
|
|
package/orm.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import './vendor/TypeDef.internal.2.js';
|
|
2
|
-
import { ColumnOptions, EntityTarget, RelationTypeInFunction, PropertyTypeFactory, OnDeleteType, OnUpdateType, DeferrableType, TableMetadataArgs, TreeMetadataArgs, IndexMetadataArgs, UniqueMetadataArgs, CheckMetadataArgs, ExclusionMetadataArgs, ColumnMetadataArgs, RelationMetadataArgs, EntityListenerMetadataArgs, RelationCountMetadataArgs, RelationIdMetadataArgs, EmbeddedMetadataArgs, DataSource, DataSourceOptions, EntityManager, MongoEntityManager, SqljsEntityManager, ObjectLiteral, Repository, TreeRepository, ObjectType, MongoRepository, SelectQueryBuilder, ColumnMetadata, RelationMetadata, EntityMetadata, Driver, ColumnType, DatabaseType, Migration, FindOperator, EqualOperator, FindOneOptions, FindManyOptions, FindTreeOptions, Logger, LoggerOptions, QueryRunner, LogLevel, LogMessageType, LogMessage, PrepareLogMessagesOptions, FileLoggerOptions, SaveOptions, RemoveOptions, DeepPartial, QueryDeepPartialEntity, InsertResult, ObjectId, FindOptionsWhere, UpdateResult, UpsertOptions, DeleteResult, PickKeysByType, NamingStrategyInterface, Table, SchemaBuilder, SqlInMemory, TableColumnOptions, InsertQueryBuilder, DeleteQueryBuilder, UpdateQueryBuilder, SoftDeleteQueryBuilder, RelationQueryBuilder, Brackets, NotBrackets, EntitySchema, Query, TableCheck, TableColumn, TableExclusion, TableForeignKey, TableIndex, TableUnique, View } from './vendor/TypeDef.internal.4.js';
|
|
3
|
-
export { AbstractCursor, AbstractCursorEvents, AbstractCursorOptions, AcceptedFields, AddToSetOperators, AddUserOptions, Admin, AggregateOptions, AggregationCursor, AggregationCursorOptions, AlternativeType, AnyBulkWriteOperation, AnyError, ArrayElement, ArrayOperator, AuroraMysqlConnectionCredentialsOptions, AuroraMysqlConnectionOptions, AuroraPostgresConnectionOptions, Auth, AuthMechanism, AuthMechanismProperties, AutoEncrypter, AutoEncryptionLoggerLevel, AutoEncryptionOptions, AutoEncryptionTlsOptions, bson_typings_d as BSON, BSONRegExp, BSONSerializeOptions, BSONSymbol, BSONType, BSONTypeAlias, Batch, BatchType, BetterSqlite3ConnectionOptions, Binary, BitwiseFilter, BulkOperationBase, BulkWriteOperationError, BulkWriteOptions, BulkWriteResult, CURSOR_FLAGS, Callback, CancellationToken, CapacitorConnectionOptions, ChangeStream, ChangeStreamCollModDocument, ChangeStreamCreateDocument, ChangeStreamCreateIndexDocument, ChangeStreamDeleteDocument, ChangeStreamDocument, ChangeStreamDocumentCollectionUUID, ChangeStreamDocumentCommon, ChangeStreamDocumentKey, ChangeStreamDocumentOperationDescription, ChangeStreamDropDatabaseDocument, ChangeStreamDropDocument, ChangeStreamDropIndexDocument, ChangeStreamEvents, ChangeStreamInsertDocument, ChangeStreamInvalidateDocument, ChangeStreamNameSpace, ChangeStreamOptions, ChangeStreamRefineCollectionShardKeyDocument, ChangeStreamRenameDocument, ChangeStreamReplaceDocument, ChangeStreamReshardCollectionDocument, ChangeStreamShardCollectionDocument, ChangeStreamUpdateDocument, ClientMetadata, ClientMetadataOptions, ClientSession, ClientSessionEvents, ClientSessionOptions, CloseOptions, ClusterTime, ClusteredCollectionOptions, CockroachConnectionCredentialsOptions, CockroachConnectionOptions, Code, CollStats, CollStatsOptions, CollationOptions, Collection, CollectionInfo, CollectionOptions, CommandFailedEvent, CommandOperationOptions, CommandStartedEvent, CommandSucceededEvent, CommonEvents, Compressor, CompressorName, Condition, ConnectOptions, ConnectionCheckOutFailedEvent, ConnectionCheckOutStartedEvent, ConnectionCheckedInEvent, ConnectionCheckedOutEvent, ConnectionClosedEvent, ConnectionCreatedEvent, ConnectionEvents, ConnectionOptions, ConnectionPoolClearedEvent, ConnectionPoolClosedEvent, ConnectionPoolCreatedEvent, ConnectionPoolEvents, ConnectionPoolMonitoringEvent, ConnectionPoolOptions, ConnectionPoolReadyEvent, ConnectionReadyEvent, CordovaConnectionOptions, CountDocumentsOptions, CountOptions, CreateCollectionOptions, CreateIndexesOptions, CursorFlag, CursorStreamOptions, DBRef, Db, DbOptions, DbStatsOptions, Decimal128, DeleteManyModel, DeleteOneModel, DeleteOptions, DeleteStatement, DistinctOptions, Document, Double, DriverInfo, DropCollectionOptions, DropDatabaseOptions, DropIndexesOptions, EndSessionOptions, EnhancedOmit, EntitySchemaColumnOptions, EntitySchemaEmbeddedColumnOptions, EntitySchemaIndexOptions, EntitySchemaOptions, EntitySchemaRelationOptions, EntitySubscriberInterface, ErrorDescription, EstimatedDocumentCountOptions, EvalOptions, EventEmitterWithState, EventsDescription, ExplainOptions, ExplainVerbosity, ExplainVerbosityLike, ExpoConnectionOptions, Feature, FeatureCollection, Filter, FilterOperations, FilterOperators, FindCursor, FindOneAndDeleteOptions, FindOneAndReplaceOptions, FindOneAndUpdateOptions, FindOperatorType, FindOperators, FindOptions, FindOptionsOrder, FindOptionsOrderProperty, FindOptionsOrderValue, FindOptionsRelationByString, FindOptionsRelations, FindOptionsRelationsProperty, FindOptionsSelect, FindOptionsSelectByString, FindOptionsSelectProperty, FindOptionsWhereProperty, Flatten, GSSAPICanonicalizationValue, GenericListener, GeoJSON, Geography, Geometry, GeometryCollection, GridFSBucket, GridFSBucketEvents, GridFSBucketOptions, GridFSBucketReadStream, GridFSBucketReadStreamOptions, GridFSBucketReadStreamOptionsWithRevision, GridFSBucketWriteStream, GridFSBucketWriteStreamOptions, GridFSChunk, GridFSFile, HedgeOptions, Hint, HostAddress, IndexDescription, IndexDirection, IndexInformationOptions, IndexSpecification, InferIdType, InsertEvent, InsertManyResult, InsertOneModel, InsertOneOptions, InsertOneResult, Int32, IntegerType, IsAny, IsolationLevel, Join, JoinColumnOptions, JoinOptions, JoinTableOptions, KeysOfAType, KeysOfOtherType, LEGAL_TCP_SOCKET_OPTIONS, LEGAL_TLS_SOCKET_OPTIONS, LineString, ListCollectionsCursor, ListCollectionsOptions, ListDatabasesOptions, ListDatabasesResult, ListIndexesCursor, ListIndexesOptions, LoadEvent, LogMessageFormat, Long, MONGO_CLIENT_EVENTS, MatchKeysAndValues, MaxKey, MigrationInterface, MinKey, MixedList, ModifyResult, MongoAPIError, MongoAWSError, MongoBatchReExecutionError, MongoBulkWriteError, MongoChangeStreamError, MongoClient, MongoClientEvents, MongoClientOptions, MongoCompatibilityError, MongoConnectionOptions, MongoCredentials, MongoCredentialsOptions, MongoCursorExhaustedError, MongoCursorInUseError, MongoDBNamespace, MongoDecompressionError, MongoDriverError, MongoError, MongoErrorLabel, MongoExpiredSessionError, MongoGridFSChunkError, MongoGridFSStreamError, MongoInvalidArgumentError, MongoKerberosError, MongoMissingCredentialsError, MongoMissingDependencyError, MongoNetworkError, MongoNetworkErrorOptions, MongoNetworkTimeoutError, MongoNotConnectedError, MongoOptions, MongoParseError, MongoRuntimeError, MongoServerClosedError, MongoServerError, MongoServerSelectionError, MongoSystemError, MongoTailableCursorError, MongoTopologyClosedError, MongoTransactionError, MongoUnexpectedServerResponseError, MongoWriteConcernError, MonitorEvents, MonitorOptions, MultiLineString, MultiPoint, MultiPolygon, MysqlConnectionCredentialsOptions, MysqlConnectionOptions, NativescriptConnectionOptions, NestedPaths, NestedPathsOfType, NonObjectIdLikeDocument, NotAcceptedFields, NumericType, OIDCMechanismServerStep1, OIDCRefreshFunction, OIDCRequestFunction, OIDCRequestTokenResult, OneOrMore, OnlyFieldsOfType, OperationOptions, OperationTime, OptionalId, OptionalUnlessRequiredId, OracleConnectionCredentialsOptions, OracleConnectionOptions, OrderByCondition, OrderedBulkOperation, PkFactory, Point, Polygon, Position, PostgresConnectionCredentialsOptions, PostgresConnectionOptions, ProfilingLevel, ProfilingLevelOptions, PropertyType, ProxyOptions, PullAllOperator, PullOperator, PushOperator, QueryBuilder, QueryResult, QueryResultCache, QueryResultCacheOptions, ReactNativeConnectionOptions, ReadConcern, ReadConcernLevel, ReadConcernLike, ReadPreference, ReadPreferenceFromOptions, ReadPreferenceLike, ReadPreferenceLikeOptions, ReadPreferenceMode, ReadPreferenceOptions, RecoverEvent, RegExpOrString, RelationOptions, RemoveEvent, RemoveUserOptions, RenameOptions, ReplaceOneModel, ReplaceOptions, ReplicationMode, ResumeOptions, ResumeToken, ReturnDocument, RoleSpecification, RootFilterOperators, RunCommandOptions, SapConnectionCredentialsOptions, SapConnectionOptions, SchemaMember, SelectServerOptions, ServerApi, ServerApiVersion, ServerCapabilities, ServerClosedEvent, ServerDescription, ServerDescriptionChangedEvent, ServerEvents, ServerHeartbeatFailedEvent, ServerHeartbeatStartedEvent, ServerHeartbeatSucceededEvent, ServerOpeningEvent, ServerSession, ServerSessionId, ServerType, SetFields, SetProfilingLevelOptions, SoftRemoveEvent, Sort, SortDirection, SpannerConnectionCredentialsOptions, SpannerConnectionOptions, SqlServerConnectionCredentialsOptions, SqlServerConnectionOptions, SqliteConnectionOptions, SqljsConnectionOptions, Stream, StreamDescription, StreamDescriptionOptions, StrictFilter, StrictMatchKeysAndValues, StrictUpdateFilter, SupportedNodeConnectionOptions, SupportedSocketOptions, SupportedTLSConnectionOptions, SupportedTLSSocketOptions, TableCheckOptions, TableExclusionOptions, TableForeignKeyOptions, TableIndexOptions, TableOptions, TableUniqueOptions, TagSet, TimeSeriesCollectionOptions, Timestamp, TopologyClosedEvent, TopologyDescription, TopologyDescriptionChangedEvent, TopologyDescriptionOptions, TopologyEvents, TopologyOpeningEvent, TopologyType, TopologyVersion, Transaction, TransactionCommitEvent, TransactionOptions, TransactionRollbackEvent, TransactionStartEvent, TypedEventEmitter, UnorderedBulkOperation, UpdateDescription, UpdateEvent, UpdateFilter, UpdateManyModel, UpdateOneModel, UpdateOptions, UpdateStatement, ValidateCollectionOptions, ValueTransformer, ViewOptions, W, WhereExpressionBuilder, WiredTigerData, WithId, WithSessionCallback, WithTransactionCallback, WithoutId, WriteConcern, WriteConcernError, WriteConcernErrorData, WriteConcernOptions, WriteConcernSettings, WriteError, deserialize, serialize } from './vendor/TypeDef.internal.4.js';
|
|
4
|
-
export { EntityOptions, IndexOptions } from './vendor/TypeDef.internal.12.js';
|
|
2
|
+
import { C as ColumnOptions, e as EntityTarget, z as RelationTypeInFunction, A as PropertyTypeFactory, v as OnDeleteType, B as OnUpdateType, y as DeferrableType, F as TableMetadataArgs, G as TreeMetadataArgs, H as IndexMetadataArgs, K as UniqueMetadataArgs, L as CheckMetadataArgs, X as ExclusionMetadataArgs, Y as ColumnMetadataArgs, Z as RelationMetadataArgs, _ as EntityListenerMetadataArgs, $ as RelationCountMetadataArgs, a0 as RelationIdMetadataArgs, a1 as EmbeddedMetadataArgs, a as DataSource, D as DataSourceOptions, E as EntityManager, a2 as MongoEntityManager, a3 as SqljsEntityManager, O as ObjectLiteral, R as Repository, T as TreeRepository, t as ObjectType, f as MongoRepository, S as SelectQueryBuilder, a4 as ColumnMetadata, a5 as RelationMetadata, d as EntityMetadata, b as Driver, q as ColumnType, a6 as DatabaseType, M as Migration, a7 as FindOperator, a8 as EqualOperator, a9 as FindOneOptions, aa as FindManyOptions, ab as FindTreeOptions, ac as Logger, ad as LoggerOptions, g as QueryRunner, ae as LogLevel, af as LogMessageType, ag as LogMessage, ah as PrepareLogMessagesOptions, ai as FileLoggerOptions, aj as SaveOptions, ak as RemoveOptions, al as DeepPartial, am as QueryDeepPartialEntity, an as InsertResult, ao as ObjectId, ap as FindOptionsWhere, aq as UpdateResult, ar as UpsertOptions, as as DeleteResult, at as PickKeysByType, N as NamingStrategyInterface, au as Table, av as SchemaBuilder, aw as SqlInMemory, ax as TableColumnOptions, ay as InsertQueryBuilder, az as DeleteQueryBuilder, aA as UpdateQueryBuilder, aB as SoftDeleteQueryBuilder, aC as RelationQueryBuilder, aD as Brackets, aE as NotBrackets, j as EntitySchema, aF as Query, aG as TableCheck, aH as TableColumn, aI as TableExclusion, aJ as TableForeignKey, aK as TableIndex, aL as TableUnique, aM as View } from './vendor/TypeDef.internal.4.js';
|
|
3
|
+
export { c2 as AbstractCursor, c3 as AbstractCursorEvents, c4 as AbstractCursorOptions, c5 as AcceptedFields, c6 as AddToSetOperators, c7 as AddUserOptions, c8 as Admin, c9 as AggregateOptions, ca as AggregationCursor, cb as AggregationCursorOptions, cc as AlternativeType, cd as AnyBulkWriteOperation, ce as AnyError, cf as ArrayElement, cg as ArrayOperator, b5 as AuroraMysqlConnectionCredentialsOptions, b4 as AuroraMysqlConnectionOptions, b6 as AuroraPostgresConnectionOptions, ch as Auth, ci as AuthMechanism, cj as AuthMechanismProperties, ck as AutoEncrypter, cl as AutoEncryptionLoggerLevel, cm as AutoEncryptionOptions, cn as AutoEncryptionTlsOptions, h8 as BSON, bP as BSONRegExp, cr as BSONSerializeOptions, bQ as BSONSymbol, bR as BSONType, cs as BSONTypeAlias, co as Batch, cp as BatchType, b8 as BetterSqlite3ConnectionOptions, bO as Binary, cq as BitwiseFilter, ct as BulkOperationBase, cu as BulkWriteOperationError, cv as BulkWriteOptions, cw as BulkWriteResult, dD as CURSOR_FLAGS, cx as Callback, cy as CancellationToken, b9 as CapacitorConnectionOptions, cz as ChangeStream, cA as ChangeStreamCollModDocument, cB as ChangeStreamCreateDocument, cC as ChangeStreamCreateIndexDocument, cD as ChangeStreamDeleteDocument, cE as ChangeStreamDocument, cF as ChangeStreamDocumentCollectionUUID, cG as ChangeStreamDocumentCommon, cH as ChangeStreamDocumentKey, cI as ChangeStreamDocumentOperationDescription, cJ as ChangeStreamDropDatabaseDocument, cK as ChangeStreamDropDocument, cL as ChangeStreamDropIndexDocument, cM as ChangeStreamEvents, cN as ChangeStreamInsertDocument, cO as ChangeStreamInvalidateDocument, cP as ChangeStreamNameSpace, cQ as ChangeStreamOptions, cR as ChangeStreamRefineCollectionShardKeyDocument, cS as ChangeStreamRenameDocument, cT as ChangeStreamReplaceDocument, cU as ChangeStreamReshardCollectionDocument, cV as ChangeStreamShardCollectionDocument, cW as ChangeStreamUpdateDocument, cX as ClientMetadata, cY as ClientMetadataOptions, cZ as ClientSession, c_ as ClientSessionEvents, c$ as ClientSessionOptions, d0 as CloseOptions, d2 as ClusterTime, d1 as ClusteredCollectionOptions, aT as CockroachConnectionCredentialsOptions, aS as CockroachConnectionOptions, bS as Code, d7 as CollStats, d8 as CollStatsOptions, d3 as CollationOptions, d4 as Collection, d5 as CollectionInfo, d6 as CollectionOptions, d9 as CommandFailedEvent, da as CommandOperationOptions, db as CommandStartedEvent, dc as CommandSucceededEvent, dd as CommonEvents, de as Compressor, df as CompressorName, dg as Condition, dy as ConnectOptions, dj as ConnectionCheckOutFailedEvent, dk as ConnectionCheckOutStartedEvent, dh as ConnectionCheckedInEvent, di as ConnectionCheckedOutEvent, dl as ConnectionClosedEvent, dm as ConnectionCreatedEvent, dn as ConnectionEvents, dp as ConnectionOptions, dq as ConnectionPoolClearedEvent, dr as ConnectionPoolClosedEvent, ds as ConnectionPoolCreatedEvent, dt as ConnectionPoolEvents, du as ConnectionPoolMonitoringEvent, dv as ConnectionPoolOptions, dw as ConnectionPoolReadyEvent, dx as ConnectionReadyEvent, a$ as CordovaConnectionOptions, dz as CountDocumentsOptions, dA as CountOptions, dB as CreateCollectionOptions, dC as CreateIndexesOptions, dE as CursorFlag, dF as CursorStreamOptions, bT as DBRef, dG as Db, dH as DbOptions, dI as DbStatsOptions, bU as Decimal128, dJ as DeleteManyModel, dK as DeleteOneModel, dL as DeleteOptions, dM as DeleteStatement, dN as DistinctOptions, bW as Document, bX as Double, dO as DriverInfo, dP as DropCollectionOptions, dQ as DropDatabaseOptions, dR as DropIndexesOptions, dS as EndSessionOptions, dT as EnhancedOmit, br as EntitySchemaColumnOptions, be as EntitySchemaEmbeddedColumnOptions, bs as EntitySchemaIndexOptions, bf as EntitySchemaOptions, bt as EntitySchemaRelationOptions, c as EntitySubscriberInterface, dU as ErrorDescription, dV as EstimatedDocumentCountOptions, dW as EvalOptions, dX as EventEmitterWithState, dY as EventsDescription, dZ as ExplainOptions, d_ as ExplainVerbosity, d$ as ExplainVerbosityLike, b7 as ExpoConnectionOptions, hj as Feature, hk as FeatureCollection, e0 as Filter, e1 as FilterOperations, e2 as FilterOperators, e3 as FindCursor, e4 as FindOneAndDeleteOptions, e5 as FindOneAndReplaceOptions, e6 as FindOneAndUpdateOptions, bu as FindOperatorType, e7 as FindOperators, e8 as FindOptions, bw as FindOptionsOrder, bv as FindOptionsOrderProperty, bx as FindOptionsOrderValue, bA as FindOptionsRelationByString, bz as FindOptionsRelations, by as FindOptionsRelationsProperty, bC as FindOptionsSelect, bD as FindOptionsSelectByString, bB as FindOptionsSelectProperty, bE as FindOptionsWhereProperty, e9 as Flatten, el as GSSAPICanonicalizationValue, ea as GenericListener, hl as GeoJSON, hi as Geography, hh as Geometry, hg as GeometryCollection, eb as GridFSBucket, ec as GridFSBucketEvents, ed as GridFSBucketOptions, ee as GridFSBucketReadStream, ef as GridFSBucketReadStreamOptions, eg as GridFSBucketReadStreamOptionsWithRevision, eh as GridFSBucketWriteStream, ei as GridFSBucketWriteStreamOptions, ej as GridFSChunk, ek as GridFSFile, em as HedgeOptions, en as Hint, eo as HostAddress, ep as IndexDescription, eq as IndexDirection, er as IndexInformationOptions, es as IndexSpecification, et as InferIdType, bi as InsertEvent, eu as InsertManyResult, ev as InsertOneModel, ew as InsertOneOptions, ex as InsertOneResult, bY as Int32, ey as IntegerType, ez as IsAny, I as IsolationLevel, eA as Join, J as JoinColumnOptions, bF as JoinOptions, r as JoinTableOptions, eB as KeysOfAType, eC as KeysOfOtherType, eD as LEGAL_TCP_SOCKET_OPTIONS, eE as LEGAL_TLS_SOCKET_OPTIONS, hb as LineString, eF as ListCollectionsCursor, eG as ListCollectionsOptions, eH as ListDatabasesOptions, eI as ListDatabasesResult, eJ as ListIndexesCursor, eK as ListIndexesOptions, bj as LoadEvent, bG as LogMessageFormat, bZ as Long, eN as MONGO_CLIENT_EVENTS, eL as MatchKeysAndValues, b_ as MaxKey, bh as MigrationInterface, b$ as MinKey, i as MixedList, eM as ModifyResult, eO as MongoAPIError, eP as MongoAWSError, eQ as MongoBatchReExecutionError, eR as MongoBulkWriteError, eS as MongoChangeStreamError, eT as MongoClient, eU as MongoClientEvents, eV as MongoClientOptions, eW as MongoCompatibilityError, b3 as MongoConnectionOptions, eX as MongoCredentials, eY as MongoCredentialsOptions, eZ as MongoCursorExhaustedError, e_ as MongoCursorInUseError, e$ as MongoDBNamespace, f0 as MongoDecompressionError, f1 as MongoDriverError, f2 as MongoError, f3 as MongoErrorLabel, f4 as MongoExpiredSessionError, f5 as MongoGridFSChunkError, f6 as MongoGridFSStreamError, f7 as MongoInvalidArgumentError, f8 as MongoKerberosError, f9 as MongoMissingCredentialsError, fa as MongoMissingDependencyError, fb as MongoNetworkError, fc as MongoNetworkErrorOptions, fd as MongoNetworkTimeoutError, fe as MongoNotConnectedError, ff as MongoOptions, fg as MongoParseError, fh as MongoRuntimeError, fi as MongoServerClosedError, fj as MongoServerError, fk as MongoServerSelectionError, fl as MongoSystemError, fm as MongoTailableCursorError, fn as MongoTopologyClosedError, fo as MongoTransactionError, fp as MongoUnexpectedServerResponseError, fq as MongoWriteConcernError, fr as MonitorEvents, fs as MonitorOptions, he as MultiLineString, hd as MultiPoint, hf as MultiPolygon, aP as MysqlConnectionCredentialsOptions, aO as MysqlConnectionOptions, b0 as NativescriptConnectionOptions, ft as NestedPaths, fu as NestedPathsOfType, fv as NonObjectIdLikeDocument, fw as NotAcceptedFields, fx as NumericType, fy as OIDCMechanismServerStep1, fz as OIDCRefreshFunction, fA as OIDCRequestFunction, fB as OIDCRequestTokenResult, fC as OneOrMore, fD as OnlyFieldsOfType, fE as OperationOptions, fF as OperationTime, fG as OptionalId, fH as OptionalUnlessRequiredId, a_ as OracleConnectionCredentialsOptions, aZ as OracleConnectionOptions, k as OrderByCondition, fI as OrderedBulkOperation, fJ as PkFactory, ha as Point, hc as Polygon, h9 as Position, aR as PostgresConnectionCredentialsOptions, aQ as PostgresConnectionOptions, fK as ProfilingLevel, fL as ProfilingLevelOptions, fM as PropertyType, fN as ProxyOptions, fO as PullAllOperator, fP as PullOperator, fQ as PushOperator, bc as QueryBuilder, bd as QueryResult, Q as QueryResultCache, aN as QueryResultCacheOptions, b1 as ReactNativeConnectionOptions, fR as ReadConcern, fS as ReadConcernLevel, fT as ReadConcernLike, fU as ReadPreference, fV as ReadPreferenceFromOptions, fW as ReadPreferenceLike, fX as ReadPreferenceLikeOptions, fY as ReadPreferenceMode, fZ as ReadPreferenceOptions, bn as RecoverEvent, f_ as RegExpOrString, u as RelationOptions, bl as RemoveEvent, f$ as RemoveUserOptions, g0 as RenameOptions, g1 as ReplaceOneModel, g2 as ReplaceOptions, h as ReplicationMode, g3 as ResumeOptions, g4 as ResumeToken, g5 as ReturnDocument, g6 as RoleSpecification, g7 as RootFilterOperators, g8 as RunCommandOptions, aY as SapConnectionCredentialsOptions, aX as SapConnectionOptions, g9 as SchemaMember, ga as SelectServerOptions, gb as ServerApi, gc as ServerApiVersion, gd as ServerCapabilities, ge as ServerClosedEvent, gf as ServerDescription, gg as ServerDescriptionChangedEvent, gh as ServerEvents, gi as ServerHeartbeatFailedEvent, gj as ServerHeartbeatStartedEvent, gk as ServerHeartbeatSucceededEvent, gl as ServerOpeningEvent, gm as ServerSession, gn as ServerSessionId, go as ServerType, gp as SetFields, gq as SetProfilingLevelOptions, bm as SoftRemoveEvent, gr as Sort, gs as SortDirection, bb as SpannerConnectionCredentialsOptions, ba as SpannerConnectionOptions, aW as SqlServerConnectionCredentialsOptions, aV as SqlServerConnectionOptions, aU as SqliteConnectionOptions, b2 as SqljsConnectionOptions, gt as Stream, gu as StreamDescription, gv as StreamDescriptionOptions, gw as StrictFilter, gx as StrictMatchKeysAndValues, gy as StrictUpdateFilter, gz as SupportedNodeConnectionOptions, gA as SupportedSocketOptions, gB as SupportedTLSConnectionOptions, gC as SupportedTLSSocketOptions, bH as TableCheckOptions, bI as TableExclusionOptions, bJ as TableForeignKeyOptions, bK as TableIndexOptions, bL as TableOptions, bM as TableUniqueOptions, gD as TagSet, gE as TimeSeriesCollectionOptions, c1 as Timestamp, gF as TopologyClosedEvent, gG as TopologyDescription, gH as TopologyDescriptionChangedEvent, gI as TopologyDescriptionOptions, gJ as TopologyEvents, gK as TopologyOpeningEvent, gL as TopologyType, gM as TopologyVersion, gN as Transaction, bo as TransactionCommitEvent, gO as TransactionOptions, bp as TransactionRollbackEvent, bq as TransactionStartEvent, gP as TypedEventEmitter, gQ as UnorderedBulkOperation, gR as UpdateDescription, bk as UpdateEvent, gS as UpdateFilter, gT as UpdateManyModel, gU as UpdateOneModel, gV as UpdateOptions, gW as UpdateStatement, gX as ValidateCollectionOptions, V as ValueTransformer, bN as ViewOptions, gY as W, bg as WhereExpressionBuilder, gZ as WiredTigerData, g_ as WithId, h0 as WithSessionCallback, h1 as WithTransactionCallback, g$ as WithoutId, h2 as WriteConcern, h3 as WriteConcernError, h4 as WriteConcernErrorData, h5 as WriteConcernOptions, h6 as WriteConcernSettings, h7 as WriteError, bV as deserialize, c0 as serialize } from './vendor/TypeDef.internal.4.js';
|
|
4
|
+
export { E as EntityOptions, I as IndexOptions } from './vendor/TypeDef.internal.12.js';
|
|
5
5
|
import 'fs';
|
|
6
6
|
import 'dns';
|
|
7
7
|
import 'net';
|
package/orm.mjs
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import "./vendor/Package.4.mjs";
|
|
2
2
|
|
|
3
|
-
import {
|
|
3
|
+
import { g as a } from "./vendor/Package.5.mjs";
|
|
4
4
|
|
|
5
|
-
import {
|
|
5
|
+
import { K as e, L as s, N as r, Q as o } from "./vendor/Package.122.mjs";
|
|
6
6
|
|
|
7
|
-
export {
|
|
7
|
+
export { aC as AbstractLogger, aD as AdvancedConsoleLogger, ah as And, ai as Any, aj as ArrayContainedBy, ak as ArrayContains, al as ArrayOverlap, aI as BaseEntity, am as Between, a0 as Brackets, S as ConnectionOptionsReader, a8 as DefaultNamingStrategy, Y as DeleteQueryBuilder, a4 as DeleteResult, aG as EntityMetadata, aa as EntitySchema, ab as EntitySchemaEmbeddedColumnOptions, ac as EntitySchemaOptions, an as Equal, az as EqualOperator, aF as FileLogger, aA as FindOperator, aB as FindOptionsUtils, as as ILike, ao as In, Z as InsertQueryBuilder, a2 as InsertResult, ad as InstanceChecker, ap as IsNull, ay as JsonContains, a9 as LegacyOracleNamingStrategy, aq as LessThan, ar as LessThanOrEqual, at as Like, a6 as Migration, a7 as MigrationExecutor, aK as MongoRepository, au as MoreThan, av as MoreThanOrEqual, aS as MssqlParameter, aw as Not, a1 as NotBrackets, W as QueryBuilder, a5 as QueryResult, ax as Raw, $ as RelationQueryBuilder, aH as Repository, X as SelectQueryBuilder, aE as SimpleConsoleLogger, aR as Table, aL as TableCheck, aM as TableColumn, aN as TableExclusion, aO as TableForeignKey, aP as TableIndex, aQ as TableUnique, aJ as TreeRepository, ae as TreeRepositoryUtils, _ as UpdateQueryBuilder, a3 as UpdateResult, ag as getFromContainer, af as useContainer } from "./vendor/Package.122.mjs";
|
|
8
8
|
|
|
9
|
-
import {
|
|
9
|
+
import { D as t } from "./vendor/Package.12.mjs";
|
|
10
10
|
|
|
11
11
|
import "./vendor/Package.13.mjs";
|
|
12
12
|
|
|
@@ -70,24 +70,24 @@ import "node:stream";
|
|
|
70
70
|
|
|
71
71
|
import "node:string_decoder";
|
|
72
72
|
|
|
73
|
-
var n =
|
|
73
|
+
var n = e();
|
|
74
74
|
|
|
75
|
-
const i =
|
|
75
|
+
const i = a(n);
|
|
76
76
|
|
|
77
|
-
var
|
|
77
|
+
var m = s();
|
|
78
78
|
|
|
79
|
-
const
|
|
79
|
+
const p = a(m);
|
|
80
80
|
|
|
81
|
-
var
|
|
81
|
+
var d = r();
|
|
82
82
|
|
|
83
|
-
const
|
|
83
|
+
const l = a(d);
|
|
84
84
|
|
|
85
|
-
var
|
|
85
|
+
var c = o();
|
|
86
86
|
|
|
87
|
-
const
|
|
87
|
+
const g = a(c);
|
|
88
88
|
|
|
89
|
-
const
|
|
89
|
+
const u = t.DataSource;
|
|
90
90
|
|
|
91
|
-
const
|
|
91
|
+
const y = c.MongoEntityManager;
|
|
92
92
|
|
|
93
|
-
export {
|
|
93
|
+
export { u as DataSource, y as MongoEntityManager };
|
package/package.json
CHANGED
package/provider/database.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import '../vendor/TypeDef.internal.2.js';
|
|
2
|
-
import { DataSourceOptions, MixedList, EntitySchema, DataSource, Driver, EntityManager, NamingStrategyInterface, EntitySubscriberInterface, EntityMetadata, EntityTarget, QueryResultCache, Migration, ObjectLiteral, Repository, TreeRepository, MongoRepository, IsolationLevel, QueryRunner, SelectQueryBuilder, ReplicationMode } from '../vendor/TypeDef.internal.4.js';
|
|
3
|
-
import { Provider } from '../vendor/TypeDef.internal.3.js';
|
|
2
|
+
import { D as DataSourceOptions, i as MixedList, j as EntitySchema, a as DataSource, b as Driver, E as EntityManager, N as NamingStrategyInterface, c as EntitySubscriberInterface, d as EntityMetadata, e as EntityTarget, Q as QueryResultCache, M as Migration, O as ObjectLiteral, R as Repository, T as TreeRepository, f as MongoRepository, I as IsolationLevel, g as QueryRunner, S as SelectQueryBuilder, h as ReplicationMode } from '../vendor/TypeDef.internal.4.js';
|
|
3
|
+
import { P as Provider } from '../vendor/TypeDef.internal.3.js';
|
|
4
4
|
import 'fs';
|
|
5
5
|
import 'dns';
|
|
6
6
|
import 'net';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { _ as t, a as e } from "../../vendor/Package.1.mjs";
|
|
2
2
|
|
|
3
3
|
import { Configurable as r } from "../decorators/di/Configurable.mjs";
|
|
4
4
|
|
|
@@ -6,7 +6,7 @@ import { Component as i } from "../lib/core/Component.mjs";
|
|
|
6
6
|
|
|
7
7
|
import { Singleton as o } from "../decorators/di/Lifetime.mjs";
|
|
8
8
|
|
|
9
|
-
import {
|
|
9
|
+
import { D as a } from "../../vendor/Package.12.mjs";
|
|
10
10
|
|
|
11
11
|
import "../lib/base/internal/ObjectConfiguration.mjs";
|
|
12
12
|
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { _ as e, a as t } from "../../../vendor/Package.1.mjs";
|
|
2
2
|
|
|
3
3
|
import r from "events";
|
|
4
4
|
|
|
5
|
-
import {
|
|
5
|
+
import { K as s } from "../../../vendor/Package.66.mjs";
|
|
6
6
|
|
|
7
7
|
import { Component as o } from "../../lib/core/Component.mjs";
|
|
8
8
|
|
|
@@ -24,7 +24,7 @@ import { CreatePostgresCacheAdapter as h } from "./adapters/CreatePostgresCacheA
|
|
|
24
24
|
|
|
25
25
|
import { CreateMysqlCacheAdapter as d } from "./adapters/CreateMysqlCacheAdapter.mjs";
|
|
26
26
|
|
|
27
|
-
import {
|
|
27
|
+
import { D as u } from "../../../vendor/Package.2.mjs";
|
|
28
28
|
|
|
29
29
|
import { FileCacheOptions as y } from "./options/FileCacheOptions.mjs";
|
|
30
30
|
|
|
@@ -276,15 +276,15 @@ function T(e) {
|
|
|
276
276
|
return e !== null && typeof e === "object" && !Array.isArray(e);
|
|
277
277
|
}
|
|
278
278
|
|
|
279
|
-
function
|
|
279
|
+
function _(e, ...t) {
|
|
280
280
|
return typeof e === "function" ? e(...t) : e;
|
|
281
281
|
}
|
|
282
282
|
|
|
283
|
-
function
|
|
283
|
+
function D(e, t) {
|
|
284
284
|
return typeof e === "number" && typeof t === "number" ? e < t : false;
|
|
285
285
|
}
|
|
286
286
|
|
|
287
|
-
var
|
|
287
|
+
var E = class {
|
|
288
288
|
opts;
|
|
289
289
|
namespace;
|
|
290
290
|
_cache;
|
|
@@ -332,7 +332,7 @@ var B = class {
|
|
|
332
332
|
}
|
|
333
333
|
};
|
|
334
334
|
|
|
335
|
-
var
|
|
335
|
+
var B = e => {
|
|
336
336
|
const t = new r;
|
|
337
337
|
const o = new s;
|
|
338
338
|
o.serialize = void 0;
|
|
@@ -555,7 +555,7 @@ var D = e => {
|
|
|
555
555
|
ttl: o,
|
|
556
556
|
refreshThreshold: a
|
|
557
557
|
};
|
|
558
|
-
const f = t =>
|
|
558
|
+
const f = t => _(d, t) ?? e?.ttl;
|
|
559
559
|
for (;l < i.length; l++) {
|
|
560
560
|
try {
|
|
561
561
|
const e = await i[l].get(r, {
|
|
@@ -580,7 +580,7 @@ var D = e => {
|
|
|
580
580
|
expires: Date.now() + t
|
|
581
581
|
} : e;
|
|
582
582
|
}
|
|
583
|
-
const j =
|
|
583
|
+
const j = D(h, _(u, c) ?? e?.refreshThreshold);
|
|
584
584
|
if (j) {
|
|
585
585
|
L(`+++${n}__${r}`, s).then((async s => {
|
|
586
586
|
try {
|
|
@@ -678,7 +678,7 @@ class Cacher extends o {
|
|
|
678
678
|
}
|
|
679
679
|
})));
|
|
680
680
|
const r = t.filter((e => !!e));
|
|
681
|
-
this.cache =
|
|
681
|
+
this.cache = B({
|
|
682
682
|
stores: r.length ? r : undefined,
|
|
683
683
|
ttl: this.ttl,
|
|
684
684
|
refreshThreshold: this.refreshThreshold,
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { i as e } from "../../../../vendor/Package.66.mjs";
|
|
2
2
|
|
|
3
|
-
import {
|
|
3
|
+
import { c as t, g as n } from "../../../../vendor/Package.5.mjs";
|
|
4
4
|
|
|
5
|
-
import {
|
|
5
|
+
import { r } from "../../../../vendor/Package.13.mjs";
|
|
6
6
|
|
|
7
7
|
import "../../../../vendor/Package.8.mjs";
|
|
8
8
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { i as e } from "../../../../vendor/Package.66.mjs";
|
|
2
2
|
|
|
3
|
-
import { IsDriverPackageInstalled as
|
|
3
|
+
import { IsDriverPackageInstalled as a } from "../lib/IsDriverPackageInstalled.mjs";
|
|
4
4
|
|
|
5
5
|
import "buffer";
|
|
6
6
|
|
|
@@ -26,32 +26,32 @@ import "../../../lib/base/internal/CamelCase.mjs";
|
|
|
26
26
|
|
|
27
27
|
import "../../../lib/helpers/NoCase.mjs";
|
|
28
28
|
|
|
29
|
-
async function
|
|
30
|
-
|
|
29
|
+
async function r(r) {
|
|
30
|
+
a("redis");
|
|
31
31
|
const t = (await import("../../../../vendor/Package.67.mjs")).default;
|
|
32
32
|
return new e({
|
|
33
33
|
store: new t({
|
|
34
|
-
username:
|
|
35
|
-
password:
|
|
36
|
-
database:
|
|
34
|
+
username: r.username,
|
|
35
|
+
password: r.password,
|
|
36
|
+
database: r.database,
|
|
37
37
|
socket: {
|
|
38
|
-
host:
|
|
39
|
-
port:
|
|
40
|
-
tls:
|
|
41
|
-
keepAlive:
|
|
42
|
-
reconnectStrategy:
|
|
38
|
+
host: r.host,
|
|
39
|
+
port: r.port,
|
|
40
|
+
tls: r.tls,
|
|
41
|
+
keepAlive: r.keepAlive,
|
|
42
|
+
reconnectStrategy: r.reconnect ? 10 : false
|
|
43
43
|
}
|
|
44
44
|
}, {
|
|
45
|
-
namespace:
|
|
46
|
-
keyPrefixSeparator:
|
|
47
|
-
clearBatchSize:
|
|
48
|
-
useUnlink:
|
|
49
|
-
noNamespaceAffectsAll:
|
|
50
|
-
connectionTimeout:
|
|
51
|
-
throwOnConnectError:
|
|
45
|
+
namespace: r.namespace,
|
|
46
|
+
keyPrefixSeparator: r.keyPrefixSeparator,
|
|
47
|
+
clearBatchSize: r.clearBatchSize,
|
|
48
|
+
useUnlink: r.useUnlink,
|
|
49
|
+
noNamespaceAffectsAll: r.noNamespaceAffectsAll,
|
|
50
|
+
connectionTimeout: r.connectTimeout,
|
|
51
|
+
throwOnConnectError: r.throwOnConnectError
|
|
52
52
|
}),
|
|
53
|
-
namespace:
|
|
53
|
+
namespace: r.namespace
|
|
54
54
|
});
|
|
55
55
|
}
|
|
56
56
|
|
|
57
|
-
export {
|
|
57
|
+
export { r as CreateRedisCacheAdapter };
|