lakutata 2.0.59 → 2.0.61
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 +5 -5
- package/com/database.d.ts +4 -4
- package/com/docker.d.ts +6 -6
- package/com/entrypoint.d.ts +6 -6
- package/com/logger.d.ts +3 -3
- package/com/monitor.d.ts +4 -4
- package/decorator/asst.d.ts +2 -2
- package/decorator/ctrl.d.ts +7 -7
- package/decorator/di.d.ts +5 -5
- package/decorator/dto.d.ts +5 -5
- package/decorator/orm.d.ts +3 -3
- package/helper.d.ts +2 -2
- package/lakutata.d.ts +11 -11
- package/orm.d.ts +4 -4
- package/package.json +1 -1
- package/provider/database.d.ts +4 -4
- package/provider/passwordHash.d.ts +3 -3
- package/vendor/Package.19.cjs +195 -184
- package/vendor/Package.19.mjs +187 -176
- package/vendor/{TypeDef.1.d.ts → TypeDef.internal.1.d.ts} +4 -2
- package/vendor/{TypeDef.10.d.ts → TypeDef.internal.10.d.ts} +3 -1
- package/vendor/TypeDef.internal.11.d.ts +9 -0
- package/vendor/{TypeDef.12.d.ts → TypeDef.internal.12.d.ts} +4 -2
- package/vendor/{TypeDef.13.d.ts → TypeDef.internal.13.d.ts} +8 -6
- package/vendor/{TypeDef.2.d.ts → TypeDef.internal.2.d.ts} +2 -0
- package/vendor/{TypeDef.3.d.ts → TypeDef.internal.3.d.ts} +6 -4
- package/vendor/{TypeDef.4.d.ts → TypeDef.internal.4.d.ts} +5 -3
- package/vendor/{TypeDef.5.d.ts → TypeDef.internal.5.d.ts} +5 -3
- package/vendor/TypeDef.internal.6.d.ts +12 -0
- package/vendor/{TypeDef.7.d.ts → TypeDef.internal.7.d.ts} +3 -1
- package/vendor/{TypeDef.8.d.ts → TypeDef.internal.8.d.ts} +3 -1
- package/vendor/TypeDef.internal.9.d.ts +8 -0
- package/vendor/TypeDef.11.d.ts +0 -7
- package/vendor/TypeDef.6.d.ts +0 -10
- package/vendor/TypeDef.9.d.ts +0 -6
package/com/cacher.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import '../vendor/TypeDef.2.js';
|
|
1
|
+
import '../vendor/TypeDef.internal.2.js';
|
|
2
2
|
import EventEmitter from 'node:events';
|
|
3
|
-
import { D as DTO } from '../vendor/TypeDef.5.js';
|
|
4
|
-
import { C as Component } from '../vendor/TypeDef.3.js';
|
|
5
|
-
import { C as ComponentOptionsBuilder } from '../vendor/TypeDef.6.js';
|
|
6
|
-
import { E as Exception } from '../vendor/TypeDef.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,7 +1,7 @@
|
|
|
1
|
-
import '../vendor/TypeDef.2.js';
|
|
2
|
-
import { C as Component } from '../vendor/TypeDef.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.4.js';
|
|
4
|
-
import '../vendor/TypeDef.5.js';
|
|
1
|
+
import '../vendor/TypeDef.internal.2.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
|
+
import '../vendor/TypeDef.internal.5.js';
|
|
5
5
|
import 'fs';
|
|
6
6
|
import 'dns';
|
|
7
7
|
import 'net';
|
package/com/docker.d.ts
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
|
-
import '../vendor/TypeDef.2.js';
|
|
3
|
-
import { P as Provider, C as Component } from '../vendor/TypeDef.3.js';
|
|
2
|
+
import '../vendor/TypeDef.internal.2.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 { T as Time } from '../vendor/TypeDef.1.js';
|
|
10
|
-
import { D as DTO } from '../vendor/TypeDef.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 { C as ComponentOptionsBuilder } from '../vendor/TypeDef.6.js';
|
|
14
|
-
import { E as Exception } from '../vendor/TypeDef.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/entrypoint.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import '../vendor/TypeDef.2.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.13.js';
|
|
3
|
-
import { E as Exception } from '../vendor/TypeDef.7.js';
|
|
4
|
-
import '../vendor/TypeDef.3.js';
|
|
5
|
-
import '../vendor/TypeDef.5.js';
|
|
6
|
-
import '../vendor/TypeDef.10.js';
|
|
1
|
+
import '../vendor/TypeDef.internal.2.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
|
+
import '../vendor/TypeDef.internal.3.js';
|
|
5
|
+
import '../vendor/TypeDef.internal.5.js';
|
|
6
|
+
import '../vendor/TypeDef.internal.10.js';
|
|
7
7
|
import 'node:http';
|
|
8
8
|
|
|
9
9
|
declare class AccessDenyException extends Exception {
|
package/com/logger.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import '../vendor/TypeDef.2.js';
|
|
2
|
-
import { C as Component } from '../vendor/TypeDef.3.js';
|
|
3
|
-
import '../vendor/TypeDef.5.js';
|
|
1
|
+
import '../vendor/TypeDef.internal.2.js';
|
|
2
|
+
import { C as Component } from '../vendor/TypeDef.internal.3.js';
|
|
3
|
+
import '../vendor/TypeDef.internal.5.js';
|
|
4
4
|
|
|
5
5
|
/**
|
|
6
6
|
* Logger component
|
package/com/monitor.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { C as Component } from '../vendor/TypeDef.3.js';
|
|
2
|
-
import { C as ComponentOptionsBuilder } from '../vendor/TypeDef.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
|
-
import '../vendor/TypeDef.5.js';
|
|
5
|
-
import '../vendor/TypeDef.2.js';
|
|
4
|
+
import '../vendor/TypeDef.internal.5.js';
|
|
5
|
+
import '../vendor/TypeDef.internal.2.js';
|
|
6
6
|
|
|
7
7
|
declare const buildAliveMonitorOptions: ComponentOptionsBuilder<{
|
|
8
8
|
port: number;
|
package/decorator/asst.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import '../vendor/TypeDef.2.js';
|
|
2
|
-
import { M as MethodDecorator } from '../vendor/TypeDef.8.js';
|
|
1
|
+
import '../vendor/TypeDef.internal.2.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,11 +1,11 @@
|
|
|
1
|
-
import '../vendor/TypeDef.2.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.13.js';
|
|
3
|
-
import { M as MethodDecorator } from '../vendor/TypeDef.8.js';
|
|
4
|
-
import { D as DTO } from '../vendor/TypeDef.5.js';
|
|
5
|
-
import { A as ActionPattern } from '../vendor/TypeDef.10.js';
|
|
6
|
-
import '../vendor/TypeDef.3.js';
|
|
1
|
+
import '../vendor/TypeDef.internal.2.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
|
+
import '../vendor/TypeDef.internal.3.js';
|
|
7
7
|
import 'node:http';
|
|
8
|
-
import '../vendor/TypeDef.7.js';
|
|
8
|
+
import '../vendor/TypeDef.internal.7.js';
|
|
9
9
|
|
|
10
10
|
declare class ActionOptions<T extends BaseContext<Record<string, any>>> extends DTO {
|
|
11
11
|
/**
|
package/decorator/di.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import '../vendor/TypeDef.2.js';
|
|
2
|
-
import { B as BaseObject, L as LifetimeType, I as IBaseObjectConstructor } from '../vendor/TypeDef.3.js';
|
|
3
|
-
import { C as ClassDecorator, P as PropertyDecorator } from '../vendor/TypeDef.11.js';
|
|
4
|
-
import { S as Schema } from '../vendor/TypeDef.5.js';
|
|
5
|
-
import '../vendor/TypeDef.9.js';
|
|
1
|
+
import '../vendor/TypeDef.internal.2.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
|
+
import '../vendor/TypeDef.internal.9.js';
|
|
6
6
|
|
|
7
7
|
/**
|
|
8
8
|
* Class Decorator
|
package/decorator/dto.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import '../vendor/TypeDef.2.js';
|
|
2
|
-
import { D as DTO, S as Schema } from '../vendor/TypeDef.5.js';
|
|
3
|
-
import { C as ClassDecorator, P as PropertyDecorator } from '../vendor/TypeDef.11.js';
|
|
4
|
-
import { M as MethodDecorator } from '../vendor/TypeDef.8.js';
|
|
5
|
-
import '../vendor/TypeDef.9.js';
|
|
1
|
+
import '../vendor/TypeDef.internal.2.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
|
+
import '../vendor/TypeDef.internal.9.js';
|
|
6
6
|
|
|
7
7
|
/**
|
|
8
8
|
* Class Decorator
|
package/decorator/orm.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import '../vendor/TypeDef.2.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.4.js';
|
|
3
|
-
import { E as EntityOptions, I as IndexOptions } from '../vendor/TypeDef.12.js';
|
|
1
|
+
import '../vendor/TypeDef.internal.2.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/helper.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
|
-
import './vendor/TypeDef.2.js';
|
|
2
|
+
import './vendor/TypeDef.internal.2.js';
|
|
3
3
|
import { PathLike } from 'fs';
|
|
4
|
-
import { I as IConstructor } from './vendor/TypeDef.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/lakutata.d.ts
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import './vendor/TypeDef.2.js';
|
|
2
|
-
import { E as Exception } from './vendor/TypeDef.7.js';
|
|
3
|
-
export { D as DTO, J as JSONSchema } from './vendor/TypeDef.5.js';
|
|
4
|
-
export { T as Time } from './vendor/TypeDef.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.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.3.js';
|
|
1
|
+
import './vendor/TypeDef.internal.2.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 { A as ActionPattern, I as IPatRun } from './vendor/TypeDef.10.js';
|
|
9
|
-
export { C as ClassDecorator, P as PropertyDecorator } from './vendor/TypeDef.11.js';
|
|
10
|
-
export { M as MethodDecorator } from './vendor/TypeDef.8.js';
|
|
11
|
-
export { B as BaseComponentOptions, a as ComponentOptions, C as ComponentOptionsBuilder } from './vendor/TypeDef.6.js';
|
|
12
|
-
export { I as IConstructor } from './vendor/TypeDef.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/orm.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import './vendor/TypeDef.2.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.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.4.js';
|
|
4
|
-
export { E as EntityOptions, I as IndexOptions } from './vendor/TypeDef.12.js';
|
|
1
|
+
import './vendor/TypeDef.internal.2.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/package.json
CHANGED
package/provider/database.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import '../vendor/TypeDef.2.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.4.js';
|
|
3
|
-
import { P as Provider } from '../vendor/TypeDef.3.js';
|
|
1
|
+
import '../vendor/TypeDef.internal.2.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';
|
|
7
7
|
import 'tls';
|
|
8
8
|
import 'events';
|
|
9
9
|
import 'stream';
|
|
10
|
-
import '../vendor/TypeDef.5.js';
|
|
10
|
+
import '../vendor/TypeDef.internal.5.js';
|
|
11
11
|
|
|
12
12
|
/**
|
|
13
13
|
* Build database provider connection options
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import '../vendor/TypeDef.2.js';
|
|
2
|
-
import { P as Provider } from '../vendor/TypeDef.3.js';
|
|
3
|
-
import '../vendor/TypeDef.5.js';
|
|
1
|
+
import '../vendor/TypeDef.internal.2.js';
|
|
2
|
+
import { P as Provider } from '../vendor/TypeDef.internal.3.js';
|
|
3
|
+
import '../vendor/TypeDef.internal.5.js';
|
|
4
4
|
|
|
5
5
|
declare class PasswordHash extends Provider {
|
|
6
6
|
#private;
|