lakutata 2.0.1 → 2.0.3
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/database.cjs +2 -2
- package/com/database.d.ts +4 -4
- package/com/database.mjs +2 -2
- package/com/docker.cjs +1 -1
- package/com/docker.d.ts +5 -4
- package/com/docker.mjs +1 -1
- package/com/entrypoint.cjs +13 -11
- package/com/entrypoint.d.ts +13 -8
- package/com/entrypoint.mjs +2 -2
- package/com/logger.d.ts +3 -3
- package/decorator/asst.d.ts +2 -2
- package/decorator/ctrl.d.ts +5 -5
- package/decorator/di.d.ts +5 -5
- package/decorator/dto.d.ts +5 -5
- package/decorator/orm.cjs +2 -2
- package/decorator/orm.d.ts +3 -3
- package/decorator/orm.mjs +2 -2
- package/helper.cjs +42 -26
- package/helper.d.ts +24 -3
- package/helper.mjs +11 -1
- package/lakutata.cjs +16 -18
- package/lakutata.d.ts +12 -16
- package/lakutata.mjs +2 -2
- package/orm.cjs +2 -2
- package/orm.d.ts +4 -4
- package/orm.mjs +32 -32
- package/package.json +1 -1
- package/src/components/Database.cjs +2 -2
- package/src/components/Database.mjs +2 -2
- package/src/components/docker/ConnectionOptionsBuilder.cjs +1 -1
- package/src/components/docker/ConnectionOptionsBuilder.mjs +1 -1
- package/src/components/docker/Docker.cjs +1 -1
- package/src/components/docker/Docker.mjs +1 -1
- package/src/components/docker/lib/DockerContainer.cjs +1 -1
- package/src/components/docker/lib/DockerContainer.mjs +1 -1
- package/src/components/docker/lib/DockerContainerTTY.cjs +1 -1
- package/src/components/docker/lib/DockerContainerTTY.mjs +1 -1
- package/src/components/entrypoint/Entrypoint.cjs +1 -1
- package/src/components/entrypoint/Entrypoint.mjs +1 -1
- package/src/components/entrypoint/exceptions/ControllerActionNotFoundException.cjs +34 -0
- package/src/components/entrypoint/exceptions/ControllerActionNotFoundException.mjs +28 -0
- package/src/decorators/orm/AfterInsert.cjs +2 -2
- package/src/decorators/orm/AfterInsert.mjs +2 -2
- package/src/decorators/orm/AfterLoad.cjs +2 -2
- package/src/decorators/orm/AfterLoad.mjs +2 -2
- package/src/decorators/orm/AfterRecover.cjs +2 -2
- package/src/decorators/orm/AfterRecover.mjs +2 -2
- package/src/decorators/orm/AfterRemove.cjs +2 -2
- package/src/decorators/orm/AfterRemove.mjs +2 -2
- package/src/decorators/orm/AfterSoftRemove.cjs +2 -2
- package/src/decorators/orm/AfterSoftRemove.mjs +2 -2
- package/src/decorators/orm/AfterUpdate.cjs +2 -2
- package/src/decorators/orm/AfterUpdate.mjs +2 -2
- package/src/decorators/orm/BeforeInsert.cjs +2 -2
- package/src/decorators/orm/BeforeInsert.mjs +2 -2
- package/src/decorators/orm/BeforeRecover.cjs +2 -2
- package/src/decorators/orm/BeforeRecover.mjs +2 -2
- package/src/decorators/orm/BeforeRemove.cjs +2 -2
- package/src/decorators/orm/BeforeRemove.mjs +2 -2
- package/src/decorators/orm/BeforeSoftRemove.cjs +2 -2
- package/src/decorators/orm/BeforeSoftRemove.mjs +2 -2
- package/src/decorators/orm/BeforeUpdate.cjs +2 -2
- package/src/decorators/orm/BeforeUpdate.mjs +2 -2
- package/src/decorators/orm/Check.cjs +2 -2
- package/src/decorators/orm/Check.mjs +2 -2
- package/src/decorators/orm/ChildEntity.cjs +2 -2
- package/src/decorators/orm/ChildEntity.mjs +2 -2
- package/src/decorators/orm/Column.cjs +2 -2
- package/src/decorators/orm/Column.mjs +4 -4
- package/src/decorators/orm/CreateDateColumn.cjs +2 -2
- package/src/decorators/orm/CreateDateColumn.mjs +2 -2
- package/src/decorators/orm/DeleteDateColumn.cjs +2 -2
- package/src/decorators/orm/DeleteDateColumn.mjs +2 -2
- package/src/decorators/orm/Entity.cjs +2 -2
- package/src/decorators/orm/Entity.mjs +2 -2
- package/src/decorators/orm/EventSubscriber.cjs +2 -2
- package/src/decorators/orm/EventSubscriber.mjs +2 -2
- package/src/decorators/orm/Exclusion.cjs +2 -2
- package/src/decorators/orm/Exclusion.mjs +2 -2
- package/src/decorators/orm/Generated.cjs +2 -2
- package/src/decorators/orm/Generated.mjs +2 -2
- package/src/decorators/orm/Index.cjs +2 -2
- package/src/decorators/orm/Index.mjs +2 -2
- package/src/decorators/orm/JoinColumn.cjs +2 -2
- package/src/decorators/orm/JoinColumn.mjs +2 -2
- package/src/decorators/orm/JoinTable.cjs +2 -2
- package/src/decorators/orm/JoinTable.mjs +2 -2
- package/src/decorators/orm/ManyToMany.cjs +2 -2
- package/src/decorators/orm/ManyToMany.mjs +2 -2
- package/src/decorators/orm/ManyToOne.cjs +2 -2
- package/src/decorators/orm/ManyToOne.mjs +2 -2
- package/src/decorators/orm/ObjectIdColumn.cjs +2 -2
- package/src/decorators/orm/ObjectIdColumn.mjs +2 -2
- package/src/decorators/orm/OneToMany.cjs +2 -2
- package/src/decorators/orm/OneToMany.mjs +2 -2
- package/src/decorators/orm/OneToOne.cjs +2 -2
- package/src/decorators/orm/OneToOne.mjs +2 -2
- package/src/decorators/orm/PrimaryColumn.cjs +2 -2
- package/src/decorators/orm/PrimaryColumn.mjs +4 -4
- package/src/decorators/orm/PrimaryGeneratedColumn.cjs +2 -2
- package/src/decorators/orm/PrimaryGeneratedColumn.mjs +2 -2
- package/src/decorators/orm/RelationId.cjs +2 -2
- package/src/decorators/orm/RelationId.mjs +2 -2
- package/src/decorators/orm/TableInheritance.cjs +2 -2
- package/src/decorators/orm/TableInheritance.mjs +2 -2
- package/src/decorators/orm/Tree.cjs +2 -2
- package/src/decorators/orm/Tree.mjs +2 -2
- package/src/decorators/orm/TreeChildren.cjs +2 -2
- package/src/decorators/orm/TreeChildren.mjs +2 -2
- package/src/decorators/orm/TreeLevelColumn.cjs +2 -2
- package/src/decorators/orm/TreeLevelColumn.mjs +2 -2
- package/src/decorators/orm/TreeParent.cjs +2 -2
- package/src/decorators/orm/TreeParent.mjs +2 -2
- package/src/decorators/orm/Unique.cjs +2 -2
- package/src/decorators/orm/Unique.mjs +2 -2
- package/src/decorators/orm/UpdateDateColumn.cjs +2 -2
- package/src/decorators/orm/UpdateDateColumn.mjs +2 -2
- package/src/decorators/orm/VersionColumn.cjs +2 -2
- package/src/decorators/orm/VersionColumn.mjs +2 -2
- package/src/decorators/orm/ViewColumn.cjs +2 -2
- package/src/decorators/orm/ViewColumn.mjs +2 -2
- package/src/decorators/orm/ViewEntity.cjs +2 -2
- package/src/decorators/orm/ViewEntity.mjs +2 -2
- package/src/decorators/orm/VirtualColumn.cjs +2 -2
- package/src/decorators/orm/VirtualColumn.mjs +2 -2
- package/src/lib/core/Application.cjs +1 -1
- package/src/lib/core/Application.mjs +1 -1
- package/src/lib/helpers/Glob.cjs +1 -1
- package/src/lib/helpers/Glob.mjs +1 -1
- package/src/lib/helpers/MD5.cjs +22 -0
- package/src/lib/helpers/MD5.mjs +16 -0
- package/src/lib/helpers/SHA1.cjs +22 -0
- package/src/lib/helpers/SHA1.mjs +16 -0
- package/src/lib/helpers/SHA256.cjs +22 -0
- package/src/lib/helpers/SHA256.mjs +16 -0
- package/vendor/Package.14.cjs +2 -2
- package/vendor/Package.14.mjs +19 -21
- package/vendor/Package.16.cjs +1 -1
- package/vendor/Package.16.mjs +1 -1
- package/vendor/Package.72.cjs +4118 -174
- package/vendor/Package.72.mjs +4128 -174
- package/vendor/Package.73.cjs +173 -735
- package/vendor/Package.73.mjs +174 -728
- package/vendor/Package.74.cjs +784 -0
- package/vendor/Package.74.mjs +772 -0
- package/vendor/TypeDef.1.d.ts +274 -489
- package/vendor/TypeDef.10.d.ts +5 -6
- package/vendor/TypeDef.11.d.ts +4 -104
- package/vendor/TypeDef.12.d.ts +96 -60
- package/vendor/TypeDef.13.d.ts +71 -0
- package/vendor/TypeDef.2.d.ts +489 -948
- package/vendor/TypeDef.3.d.ts +662 -18813
- package/vendor/TypeDef.4.d.ts +18176 -3169
- package/vendor/TypeDef.5.d.ts +4093 -12
- package/vendor/TypeDef.6.d.ts +11 -2
- package/vendor/TypeDef.7.d.ts +20 -2
- package/vendor/TypeDef.8.d.ts +2 -5
- package/vendor/TypeDef.9.d.ts +2 -294
- package/src/exceptions/ControllerActionNotFoundException.cjs +0 -34
- package/src/exceptions/ControllerActionNotFoundException.mjs +0 -28
package/lakutata.d.ts
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import './vendor/TypeDef.
|
|
2
|
-
import { E as Exception } from './vendor/TypeDef.
|
|
3
|
-
export {
|
|
4
|
-
export {
|
|
5
|
-
import { a as ModuleOptions, b as ModuleConfigLoader, c as LoadObjectOptions, B as BaseObject, e as event, d as ListenerFn, E as EventAndListener, f as ConstructorOptions, M as Module } from './vendor/TypeDef.
|
|
6
|
-
export { C as Component, g as Container, I as IBaseObjectConstructor, h as LoadAnonymousObjectOptions, i as LoadNamedObjectOptions, j as ModuleLoadObjectsOptions, O as OverridableNamedObjectOptions, k as OverridableObjectOptions, P as Provider } from './vendor/TypeDef.
|
|
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 { a as ModuleOptions, b as ModuleConfigLoader, c as LoadObjectOptions, B as BaseObject, e as event, d as ListenerFn, E as EventAndListener, f as ConstructorOptions, M as Module } from './vendor/TypeDef.3.js';
|
|
6
|
+
export { C as Component, g as Container, I as IBaseObjectConstructor, h as LoadAnonymousObjectOptions, i as LoadNamedObjectOptions, j as ModuleLoadObjectsOptions, O as OverridableNamedObjectOptions, k as OverridableObjectOptions, P as Provider } from './vendor/TypeDef.3.js';
|
|
7
7
|
import { Logger } from './com/logger.js';
|
|
8
|
-
export { A as ActionPattern } from './vendor/TypeDef.
|
|
9
|
-
export { C as ClassDecorator, P as PropertyDecorator } from './vendor/TypeDef.
|
|
10
|
-
export { M as MethodDecorator } from './vendor/TypeDef.
|
|
11
|
-
export { I as IConstructor } from './vendor/TypeDef.
|
|
12
|
-
export { I as IPatRun } from './vendor/TypeDef.
|
|
8
|
+
export { A as ActionPattern } from './vendor/TypeDef.8.js';
|
|
9
|
+
export { C as ClassDecorator, P as PropertyDecorator } from './vendor/TypeDef.11.js';
|
|
10
|
+
export { M as MethodDecorator } from './vendor/TypeDef.9.js';
|
|
11
|
+
export { I as IConstructor } from './vendor/TypeDef.10.js';
|
|
12
|
+
export { I as IPatRun } from './vendor/TypeDef.6.js';
|
|
13
13
|
|
|
14
14
|
declare class ApplicationOptions extends ModuleOptions {
|
|
15
15
|
/**
|
|
@@ -422,10 +422,6 @@ declare class InvalidValueException extends Exception {
|
|
|
422
422
|
errno: string | number;
|
|
423
423
|
}
|
|
424
424
|
|
|
425
|
-
declare class ControllerActionNotFoundException extends Exception {
|
|
426
|
-
errno: string | number;
|
|
427
|
-
}
|
|
428
|
-
|
|
429
425
|
declare class DestroyRuntimeContainerException extends Exception {
|
|
430
426
|
errno: string | number;
|
|
431
427
|
}
|
|
@@ -448,4 +444,4 @@ declare class MethodNotFoundException extends Exception {
|
|
|
448
444
|
|
|
449
445
|
type ParameterDecorator<ClassPrototype> = (target: ClassPrototype, propertyKey: string | symbol, parameterIndex: number) => void;
|
|
450
446
|
|
|
451
|
-
export { AliasExistsException, AliasNotFoundException, Application, ApplicationOptions, BaseObject,
|
|
447
|
+
export { AliasExistsException, AliasNotFoundException, Application, ApplicationOptions, BaseObject, DependencyInjectionException, DestroyRuntimeContainerException, Exception, InvalidActionPatternDepthException, InvalidAliasNameException, InvalidAssistantFunctionTypeException, InvalidMethodAcceptException, InvalidMethodReturnException, InvalidObjectTypeException, InvalidValueException, LifetimeLockedException, LoadObjectOptions, MethodNotFoundException, Module, ModuleOptions, OverridableObjectTargetConfigNotFoundException, type ParameterDecorator };
|
package/lakutata.mjs
CHANGED
|
@@ -48,8 +48,6 @@ export { InvalidMethodReturnException } from "./src/exceptions/dto/InvalidMethod
|
|
|
48
48
|
|
|
49
49
|
export { InvalidValueException } from "./src/exceptions/dto/InvalidValueException.mjs";
|
|
50
50
|
|
|
51
|
-
export { ControllerActionNotFoundException } from "./src/exceptions/ControllerActionNotFoundException.mjs";
|
|
52
|
-
|
|
53
51
|
export { DestroyRuntimeContainerException } from "./src/exceptions/DestroyRuntimeContainerException.mjs";
|
|
54
52
|
|
|
55
53
|
export { InvalidActionPatternDepthException } from "./src/exceptions/InvalidActionPatternDepthException.mjs";
|
|
@@ -244,6 +242,8 @@ import "node:http";
|
|
|
244
242
|
|
|
245
243
|
import "./src/lib/context/ServiceContext.mjs";
|
|
246
244
|
|
|
245
|
+
import "./src/components/entrypoint/exceptions/ControllerActionNotFoundException.mjs";
|
|
246
|
+
|
|
247
247
|
import "./src/lib/helpers/GetObjectPropertyPaths.mjs";
|
|
248
248
|
|
|
249
249
|
import "./src/lib/helpers/UniqueArray.mjs";
|
package/orm.cjs
CHANGED
|
@@ -32,7 +32,7 @@ require("./vendor/Package.11.cjs");
|
|
|
32
32
|
|
|
33
33
|
require("crypto");
|
|
34
34
|
|
|
35
|
-
require("./vendor/Package.
|
|
35
|
+
require("./vendor/Package.74.cjs");
|
|
36
36
|
|
|
37
37
|
require("./vendor/Package.13.cjs");
|
|
38
38
|
|
|
@@ -50,7 +50,7 @@ require("url");
|
|
|
50
50
|
|
|
51
51
|
require("util");
|
|
52
52
|
|
|
53
|
-
require("./vendor/Package.
|
|
53
|
+
require("./vendor/Package.73.cjs");
|
|
54
54
|
|
|
55
55
|
require("fs/promises");
|
|
56
56
|
|
package/orm.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import './vendor/TypeDef.
|
|
2
|
-
import { C as ColumnOptions, e as EntityTarget, y as TableMetadataArgs, z as TreeMetadataArgs, A as IndexMetadataArgs, U as UniqueMetadataArgs, B as CheckMetadataArgs, F as ExclusionMetadataArgs, G as ColumnMetadataArgs, H as RelationMetadataArgs, K as EntityListenerMetadataArgs, L as RelationCountMetadataArgs, X as RelationIdMetadataArgs, Y as EmbeddedMetadataArgs, a as DataSource, D as DataSourceOptions, E as EntityManager, Z as MongoEntityManager, _ as SqljsEntityManager, O as ObjectLiteral, R as Repository, T as TreeRepository, s as ObjectType, f as MongoRepository, S as SelectQueryBuilder, $ as ColumnMetadata, a0 as RelationMetadata, d as EntityMetadata, b as Driver, p as ColumnType, a1 as DatabaseType, M as Migration, a2 as FindOperator, a3 as EqualOperator, a4 as FindOneOptions, a5 as FindManyOptions, a6 as FindTreeOptions, a7 as Logger, a8 as LoggerOptions, g as QueryRunner, a9 as LogLevel, aa as LogMessageType, ab as LogMessage, ac as PrepareLogMessagesOptions, ad as FileLoggerOptions, ae as SaveOptions, af as RemoveOptions, ag as DeepPartial, ah as QueryDeepPartialEntity, ai as InsertResult, aj as ObjectId, ak as FindOptionsWhere, al as UpdateResult, am as UpsertOptions, an as DeleteResult, ao as PickKeysByType, N as NamingStrategyInterface, ap as Table, aq as SchemaBuilder, ar as SqlInMemory, as as TableColumnOptions, at as InsertQueryBuilder, au as DeleteQueryBuilder, av as UpdateQueryBuilder, aw as SoftDeleteQueryBuilder, ax as RelationQueryBuilder, ay as Brackets, az as NotBrackets, aA as EntitySchema, aB as Query, aC as TableCheck, aD as TableColumn, aE as TableExclusion, aF as TableForeignKey, aG as TableIndex, aH as TableUnique, aI as View } from './vendor/TypeDef.
|
|
3
|
-
export { bC as AbstractCursor, bD as AbstractCursorEvents, bE as AbstractCursorOptions, bF as AcceptedFields, bG as AddToSetOperators, bH as AddUserOptions, bI as Admin, bJ as AggregateOptions, bK as AggregationCursor, bL as AggregationCursorOptions, bM as AlternativeType, bN as AnyBulkWriteOperation, bO as AnyError, bP as ArrayElement, bQ as ArrayOperator, bR as Auth, bS as AuthMechanism, bT as AuthMechanismProperties, bU as AutoEncrypter, bV as AutoEncryptionLoggerLevel, bW as AutoEncryptionOptions, bX as AutoEncryptionTlsOptions, bm as BSON, bn as BSONRegExp, b$ as BSONSerializeOptions, bo as BSONSymbol, bp as BSONType, c0 as BSONTypeAlias, bY as Batch, bZ as BatchType, bl as Binary, b_ as BitwiseFilter, c1 as BulkOperationBase, c2 as BulkWriteOperationError, c3 as BulkWriteOptions, c4 as BulkWriteResult, da as CURSOR_FLAGS, c5 as Callback, c6 as CancellationToken, c7 as ChangeStream, c8 as ChangeStreamCollModDocument, c9 as ChangeStreamCreateDocument, ca as ChangeStreamCreateIndexDocument, cb as ChangeStreamDeleteDocument, cc as ChangeStreamDocument, cd as ChangeStreamDocumentCollectionUUID, ce as ChangeStreamDocumentCommon, cf as ChangeStreamDocumentKey, cg as ChangeStreamDocumentOperationDescription, ch as ChangeStreamDropDatabaseDocument, ci as ChangeStreamDropDocument, cj as ChangeStreamDropIndexDocument, ck as ChangeStreamEvents, cl as ChangeStreamInsertDocument, cm as ChangeStreamInvalidateDocument, cn as ChangeStreamNameSpace, co as ChangeStreamOptions, cp as ChangeStreamRefineCollectionShardKeyDocument, cq as ChangeStreamRenameDocument, cr as ChangeStreamReplaceDocument, cs as ChangeStreamReshardCollectionDocument, ct as ChangeStreamShardCollectionDocument, cu as ChangeStreamUpdateDocument, cv as ClientMetadata, cw as ClientMetadataOptions, cx as ClientSession, cy as ClientSessionEvents, cz as ClientSessionOptions, cA as CloseOptions, cC as ClusterTime, cB as ClusteredCollectionOptions, bq as Code, cH as CollStats, cI as CollStatsOptions, cD as CollationOptions, cE as Collection, cF as CollectionInfo, cG as CollectionOptions, cJ as CommandFailedEvent, cK as CommandOperationOptions, cL as CommandStartedEvent, cM as CommandSucceededEvent, cN as CommonEvents, cO as Compressor, cP as CompressorName, cQ as Condition, d5 as ConnectOptions, cT as ConnectionCheckOutFailedEvent, cU as ConnectionCheckOutStartedEvent, cR as ConnectionCheckedInEvent, cS as ConnectionCheckedOutEvent, cV as ConnectionClosedEvent, cW as ConnectionCreatedEvent, cX as ConnectionEvents, cY as ConnectionOptions, cZ as ConnectionPoolClearedEvent, c_ as ConnectionPoolClosedEvent, c$ as ConnectionPoolCreatedEvent, d0 as ConnectionPoolEvents, d1 as ConnectionPoolMonitoringEvent, d2 as ConnectionPoolOptions, d3 as ConnectionPoolReadyEvent, d4 as ConnectionReadyEvent, d6 as CountDocumentsOptions, d7 as CountOptions, d8 as CreateCollectionOptions, d9 as CreateIndexesOptions, db as CursorFlag, dc as CursorStreamOptions, br as DBRef, dd as Db, de as DbOptions, df as DbStatsOptions, bs as Decimal128, dg as DeleteManyModel, dh as DeleteOneModel, di as DeleteOptions, dj as DeleteStatement, dk as DistinctOptions, bu as Document, bv as Double, dl as DriverInfo, dm as DropCollectionOptions, dn as DropDatabaseOptions, dp as DropIndexesOptions, dq as EndSessionOptions, dr as EnhancedOmit, aZ as EntitySchemaColumnOptions, aM as EntitySchemaEmbeddedColumnOptions, a_ as EntitySchemaIndexOptions, aN as EntitySchemaOptions, a$ as EntitySchemaRelationOptions, c as EntitySubscriberInterface, ds as ErrorDescription, dt as EstimatedDocumentCountOptions, du as EvalOptions, dv as EventEmitterWithState, dw as EventsDescription, dx as ExplainOptions, dy as ExplainVerbosity, dz as ExplainVerbosityLike, gR as Feature, gS as FeatureCollection, dA as Filter, dB as FilterOperations, dC as FilterOperators, dD as FindCursor, dE as FindOneAndDeleteOptions, dF as FindOneAndReplaceOptions, dG as FindOneAndUpdateOptions, b1 as FindOperatorType, dH as FindOperators, dI as FindOptions, b3 as FindOptionsOrder, b2 as FindOptionsOrderProperty, b4 as FindOptionsOrderValue, b7 as FindOptionsRelationByString, b6 as FindOptionsRelations, b5 as FindOptionsRelationsProperty, b9 as FindOptionsSelect, ba as FindOptionsSelectByString, b8 as FindOptionsSelectProperty, bb as FindOptionsWhereProperty, dJ as Flatten, dV as GSSAPICanonicalizationValue, dK as GenericListener, gT as GeoJSON, gQ as Geography, gP as Geometry, gO as GeometryCollection, dL as GridFSBucket, dM as GridFSBucketEvents, dN as GridFSBucketOptions, dO as GridFSBucketReadStream, dP as GridFSBucketReadStreamOptions, dQ as GridFSBucketReadStreamOptionsWithRevision, dR as GridFSBucketWriteStream, dS as GridFSBucketWriteStreamOptions, dT as GridFSChunk, dU as GridFSFile, dW as HedgeOptions, dX as Hint, dY as HostAddress, dZ as IndexDescription, d_ as IndexDirection, d$ as IndexInformationOptions, e0 as IndexSpecification, e1 as InferIdType, aQ as InsertEvent, e2 as InsertManyResult, e3 as InsertOneModel, e4 as InsertOneOptions, e5 as InsertOneResult, bw as Int32, e6 as IntegerType, e7 as IsAny, I as IsolationLevel, e8 as Join, J as JoinColumnOptions, bc as JoinOptions, q as JoinTableOptions, e9 as KeysOfAType, ea as KeysOfOtherType, eb as LEGAL_TCP_SOCKET_OPTIONS, ec as LEGAL_TLS_SOCKET_OPTIONS, gJ as LineString, ed as ListCollectionsCursor, ee as ListCollectionsOptions, ef as ListDatabasesOptions, eg as ListDatabasesResult, eh as ListIndexesCursor, ei as ListIndexesOptions, aR as LoadEvent, bd as LogMessageFormat, bx as Long, el as MONGO_CLIENT_EVENTS, ej as MatchKeysAndValues, by as MaxKey, aP as MigrationInterface, bz as MinKey, b0 as MixedList, ek as ModifyResult, em as MongoAPIError, en as MongoAWSError, eo as MongoBatchReExecutionError, ep as MongoBulkWriteError, eq as MongoChangeStreamError, er as MongoClient, es as MongoClientEvents, et as MongoClientOptions, eu as MongoCompatibilityError, ev as MongoCredentials, ew as MongoCredentialsOptions, ex as MongoCursorExhaustedError, ey as MongoCursorInUseError, ez as MongoDBNamespace, eA as MongoDecompressionError, eB as MongoDriverError, eC as MongoError, eD as MongoErrorLabel, eE as MongoExpiredSessionError, eF as MongoGridFSChunkError, eG as MongoGridFSStreamError, eH as MongoInvalidArgumentError, eI as MongoKerberosError, eJ as MongoMissingCredentialsError, eK as MongoMissingDependencyError, eL as MongoNetworkError, eM as MongoNetworkErrorOptions, eN as MongoNetworkTimeoutError, eO as MongoNotConnectedError, eP as MongoOptions, eQ as MongoParseError, eR as MongoRuntimeError, eS as MongoServerClosedError, eT as MongoServerError, eU as MongoServerSelectionError, eV as MongoSystemError, eW as MongoTailableCursorError, eX as MongoTopologyClosedError, eY as MongoTransactionError, eZ as MongoUnexpectedServerResponseError, e_ as MongoWriteConcernError, e$ as MonitorEvents, f0 as MonitorOptions, gM as MultiLineString, gL as MultiPoint, gN as MultiPolygon, f1 as NestedPaths, f2 as NestedPathsOfType, f3 as NonObjectIdLikeDocument, f4 as NotAcceptedFields, f5 as NumericType, f6 as OIDCMechanismServerStep1, f7 as OIDCRefreshFunction, f8 as OIDCRequestFunction, f9 as OIDCRequestTokenResult, fa as OneOrMore, fb as OnlyFieldsOfType, fc as OperationOptions, fd as OperationTime, fe as OptionalId, ff as OptionalUnlessRequiredId, i as OrderByCondition, fg as OrderedBulkOperation, fh as PkFactory, gI as Point, gK as Polygon, fi as ProfilingLevel, fj as ProfilingLevelOptions, fk as PropertyType, fl as ProxyOptions, fm as PullAllOperator, fn as PullOperator, fo as PushOperator, aK as QueryBuilder, aL as QueryResult, Q as QueryResultCache, aJ as QueryResultCacheOptions, fp as ReadConcern, fq as ReadConcernLevel, fr as ReadConcernLike, fs as ReadPreference, ft as ReadPreferenceFromOptions, fu as ReadPreferenceLike, fv as ReadPreferenceLikeOptions, fw as ReadPreferenceMode, fx as ReadPreferenceOptions, aV as RecoverEvent, fy as RegExpOrString, t as RelationOptions, aT as RemoveEvent, fz as RemoveUserOptions, fA as RenameOptions, fB as ReplaceOneModel, fC as ReplaceOptions, h as ReplicationMode, fD as ResumeOptions, fE as ResumeToken, fF as ReturnDocument, fG as RoleSpecification, fH as RootFilterOperators, fI as RunCommandOptions, fJ as SchemaMember, fK as SelectServerOptions, fL as ServerApi, fM as ServerApiVersion, fN as ServerCapabilities, fO as ServerClosedEvent, fP as ServerDescription, fQ as ServerDescriptionChangedEvent, fR as ServerEvents, fS as ServerHeartbeatFailedEvent, fT as ServerHeartbeatStartedEvent, fU as ServerHeartbeatSucceededEvent, fV as ServerOpeningEvent, fW as ServerSession, fX as ServerSessionId, fY as ServerType, fZ as SetFields, f_ as SetProfilingLevelOptions, aU as SoftRemoveEvent, f$ as Sort, g0 as SortDirection, g1 as Stream, g2 as StreamDescription, g3 as StreamDescriptionOptions, g4 as StrictFilter, g5 as StrictMatchKeysAndValues, g6 as StrictUpdateFilter, g7 as SupportedNodeConnectionOptions, g8 as SupportedSocketOptions, g9 as SupportedTLSConnectionOptions, ga as SupportedTLSSocketOptions, be as TableCheckOptions, bf as TableExclusionOptions, bg as TableForeignKeyOptions, bh as TableIndexOptions, bi as TableOptions, bj as TableUniqueOptions, gb as TagSet, gc as TimeSeriesCollectionOptions, bB as Timestamp, gd as TopologyClosedEvent, ge as TopologyDescription, gf as TopologyDescriptionChangedEvent, gg as TopologyDescriptionOptions, gh as TopologyEvents, gi as TopologyOpeningEvent, gj as TopologyType, gk as TopologyVersion, gl as Transaction, aW as TransactionCommitEvent, gm as TransactionOptions, aX as TransactionRollbackEvent, aY as TransactionStartEvent, gn as TypedEventEmitter, go as UnorderedBulkOperation, gp as UpdateDescription, aS as UpdateEvent, gq as UpdateFilter, gr as UpdateManyModel, gs as UpdateOneModel, gt as UpdateOptions, gu as UpdateStatement, gv as ValidateCollectionOptions, V as ValueTransformer, bk as ViewOptions, gw as W, aO as WhereExpressionBuilder, gx as WiredTigerData, gy as WithId, gA as WithSessionCallback, gB as WithTransactionCallback, gz as WithoutId, gC as WriteConcern, gD as WriteConcernError, gE as WriteConcernErrorData, gF as WriteConcernOptions, gG as WriteConcernSettings, gH as WriteError, bt as deserialize, bA as serialize } from './vendor/TypeDef.3.js';
|
|
4
|
-
export { E as EntityOptions, I as IndexOptions } from './vendor/TypeDef.
|
|
1
|
+
import './vendor/TypeDef.2.js';
|
|
2
|
+
import { C as ColumnOptions, e as EntityTarget, y as TableMetadataArgs, z as TreeMetadataArgs, A as IndexMetadataArgs, U as UniqueMetadataArgs, B as CheckMetadataArgs, F as ExclusionMetadataArgs, G as ColumnMetadataArgs, H as RelationMetadataArgs, K as EntityListenerMetadataArgs, L as RelationCountMetadataArgs, X as RelationIdMetadataArgs, Y as EmbeddedMetadataArgs, a as DataSource, D as DataSourceOptions, E as EntityManager, Z as MongoEntityManager, _ as SqljsEntityManager, O as ObjectLiteral, R as Repository, T as TreeRepository, s as ObjectType, f as MongoRepository, S as SelectQueryBuilder, $ as ColumnMetadata, a0 as RelationMetadata, d as EntityMetadata, b as Driver, p as ColumnType, a1 as DatabaseType, M as Migration, a2 as FindOperator, a3 as EqualOperator, a4 as FindOneOptions, a5 as FindManyOptions, a6 as FindTreeOptions, a7 as Logger, a8 as LoggerOptions, g as QueryRunner, a9 as LogLevel, aa as LogMessageType, ab as LogMessage, ac as PrepareLogMessagesOptions, ad as FileLoggerOptions, ae as SaveOptions, af as RemoveOptions, ag as DeepPartial, ah as QueryDeepPartialEntity, ai as InsertResult, aj as ObjectId, ak as FindOptionsWhere, al as UpdateResult, am as UpsertOptions, an as DeleteResult, ao as PickKeysByType, N as NamingStrategyInterface, ap as Table, aq as SchemaBuilder, ar as SqlInMemory, as as TableColumnOptions, at as InsertQueryBuilder, au as DeleteQueryBuilder, av as UpdateQueryBuilder, aw as SoftDeleteQueryBuilder, ax as RelationQueryBuilder, ay as Brackets, az as NotBrackets, aA as EntitySchema, aB as Query, aC as TableCheck, aD as TableColumn, aE as TableExclusion, aF as TableForeignKey, aG as TableIndex, aH as TableUnique, aI as View } from './vendor/TypeDef.4.js';
|
|
3
|
+
export { bC as AbstractCursor, bD as AbstractCursorEvents, bE as AbstractCursorOptions, bF as AcceptedFields, bG as AddToSetOperators, bH as AddUserOptions, bI as Admin, bJ as AggregateOptions, bK as AggregationCursor, bL as AggregationCursorOptions, bM as AlternativeType, bN as AnyBulkWriteOperation, bO as AnyError, bP as ArrayElement, bQ as ArrayOperator, bR as Auth, bS as AuthMechanism, bT as AuthMechanismProperties, bU as AutoEncrypter, bV as AutoEncryptionLoggerLevel, bW as AutoEncryptionOptions, bX as AutoEncryptionTlsOptions, bm as BSON, bn as BSONRegExp, b$ as BSONSerializeOptions, bo as BSONSymbol, bp as BSONType, c0 as BSONTypeAlias, bY as Batch, bZ as BatchType, bl as Binary, b_ as BitwiseFilter, c1 as BulkOperationBase, c2 as BulkWriteOperationError, c3 as BulkWriteOptions, c4 as BulkWriteResult, da as CURSOR_FLAGS, c5 as Callback, c6 as CancellationToken, c7 as ChangeStream, c8 as ChangeStreamCollModDocument, c9 as ChangeStreamCreateDocument, ca as ChangeStreamCreateIndexDocument, cb as ChangeStreamDeleteDocument, cc as ChangeStreamDocument, cd as ChangeStreamDocumentCollectionUUID, ce as ChangeStreamDocumentCommon, cf as ChangeStreamDocumentKey, cg as ChangeStreamDocumentOperationDescription, ch as ChangeStreamDropDatabaseDocument, ci as ChangeStreamDropDocument, cj as ChangeStreamDropIndexDocument, ck as ChangeStreamEvents, cl as ChangeStreamInsertDocument, cm as ChangeStreamInvalidateDocument, cn as ChangeStreamNameSpace, co as ChangeStreamOptions, cp as ChangeStreamRefineCollectionShardKeyDocument, cq as ChangeStreamRenameDocument, cr as ChangeStreamReplaceDocument, cs as ChangeStreamReshardCollectionDocument, ct as ChangeStreamShardCollectionDocument, cu as ChangeStreamUpdateDocument, cv as ClientMetadata, cw as ClientMetadataOptions, cx as ClientSession, cy as ClientSessionEvents, cz as ClientSessionOptions, cA as CloseOptions, cC as ClusterTime, cB as ClusteredCollectionOptions, bq as Code, cH as CollStats, cI as CollStatsOptions, cD as CollationOptions, cE as Collection, cF as CollectionInfo, cG as CollectionOptions, cJ as CommandFailedEvent, cK as CommandOperationOptions, cL as CommandStartedEvent, cM as CommandSucceededEvent, cN as CommonEvents, cO as Compressor, cP as CompressorName, cQ as Condition, d5 as ConnectOptions, cT as ConnectionCheckOutFailedEvent, cU as ConnectionCheckOutStartedEvent, cR as ConnectionCheckedInEvent, cS as ConnectionCheckedOutEvent, cV as ConnectionClosedEvent, cW as ConnectionCreatedEvent, cX as ConnectionEvents, cY as ConnectionOptions, cZ as ConnectionPoolClearedEvent, c_ as ConnectionPoolClosedEvent, c$ as ConnectionPoolCreatedEvent, d0 as ConnectionPoolEvents, d1 as ConnectionPoolMonitoringEvent, d2 as ConnectionPoolOptions, d3 as ConnectionPoolReadyEvent, d4 as ConnectionReadyEvent, d6 as CountDocumentsOptions, d7 as CountOptions, d8 as CreateCollectionOptions, d9 as CreateIndexesOptions, db as CursorFlag, dc as CursorStreamOptions, br as DBRef, dd as Db, de as DbOptions, df as DbStatsOptions, bs as Decimal128, dg as DeleteManyModel, dh as DeleteOneModel, di as DeleteOptions, dj as DeleteStatement, dk as DistinctOptions, bu as Document, bv as Double, dl as DriverInfo, dm as DropCollectionOptions, dn as DropDatabaseOptions, dp as DropIndexesOptions, dq as EndSessionOptions, dr as EnhancedOmit, aZ as EntitySchemaColumnOptions, aM as EntitySchemaEmbeddedColumnOptions, a_ as EntitySchemaIndexOptions, aN as EntitySchemaOptions, a$ as EntitySchemaRelationOptions, c as EntitySubscriberInterface, ds as ErrorDescription, dt as EstimatedDocumentCountOptions, du as EvalOptions, dv as EventEmitterWithState, dw as EventsDescription, dx as ExplainOptions, dy as ExplainVerbosity, dz as ExplainVerbosityLike, gR as Feature, gS as FeatureCollection, dA as Filter, dB as FilterOperations, dC as FilterOperators, dD as FindCursor, dE as FindOneAndDeleteOptions, dF as FindOneAndReplaceOptions, dG as FindOneAndUpdateOptions, b1 as FindOperatorType, dH as FindOperators, dI as FindOptions, b3 as FindOptionsOrder, b2 as FindOptionsOrderProperty, b4 as FindOptionsOrderValue, b7 as FindOptionsRelationByString, b6 as FindOptionsRelations, b5 as FindOptionsRelationsProperty, b9 as FindOptionsSelect, ba as FindOptionsSelectByString, b8 as FindOptionsSelectProperty, bb as FindOptionsWhereProperty, dJ as Flatten, dV as GSSAPICanonicalizationValue, dK as GenericListener, gT as GeoJSON, gQ as Geography, gP as Geometry, gO as GeometryCollection, dL as GridFSBucket, dM as GridFSBucketEvents, dN as GridFSBucketOptions, dO as GridFSBucketReadStream, dP as GridFSBucketReadStreamOptions, dQ as GridFSBucketReadStreamOptionsWithRevision, dR as GridFSBucketWriteStream, dS as GridFSBucketWriteStreamOptions, dT as GridFSChunk, dU as GridFSFile, dW as HedgeOptions, dX as Hint, dY as HostAddress, dZ as IndexDescription, d_ as IndexDirection, d$ as IndexInformationOptions, e0 as IndexSpecification, e1 as InferIdType, aQ as InsertEvent, e2 as InsertManyResult, e3 as InsertOneModel, e4 as InsertOneOptions, e5 as InsertOneResult, bw as Int32, e6 as IntegerType, e7 as IsAny, I as IsolationLevel, e8 as Join, J as JoinColumnOptions, bc as JoinOptions, q as JoinTableOptions, e9 as KeysOfAType, ea as KeysOfOtherType, eb as LEGAL_TCP_SOCKET_OPTIONS, ec as LEGAL_TLS_SOCKET_OPTIONS, gJ as LineString, ed as ListCollectionsCursor, ee as ListCollectionsOptions, ef as ListDatabasesOptions, eg as ListDatabasesResult, eh as ListIndexesCursor, ei as ListIndexesOptions, aR as LoadEvent, bd as LogMessageFormat, bx as Long, el as MONGO_CLIENT_EVENTS, ej as MatchKeysAndValues, by as MaxKey, aP as MigrationInterface, bz as MinKey, b0 as MixedList, ek as ModifyResult, em as MongoAPIError, en as MongoAWSError, eo as MongoBatchReExecutionError, ep as MongoBulkWriteError, eq as MongoChangeStreamError, er as MongoClient, es as MongoClientEvents, et as MongoClientOptions, eu as MongoCompatibilityError, ev as MongoCredentials, ew as MongoCredentialsOptions, ex as MongoCursorExhaustedError, ey as MongoCursorInUseError, ez as MongoDBNamespace, eA as MongoDecompressionError, eB as MongoDriverError, eC as MongoError, eD as MongoErrorLabel, eE as MongoExpiredSessionError, eF as MongoGridFSChunkError, eG as MongoGridFSStreamError, eH as MongoInvalidArgumentError, eI as MongoKerberosError, eJ as MongoMissingCredentialsError, eK as MongoMissingDependencyError, eL as MongoNetworkError, eM as MongoNetworkErrorOptions, eN as MongoNetworkTimeoutError, eO as MongoNotConnectedError, eP as MongoOptions, eQ as MongoParseError, eR as MongoRuntimeError, eS as MongoServerClosedError, eT as MongoServerError, eU as MongoServerSelectionError, eV as MongoSystemError, eW as MongoTailableCursorError, eX as MongoTopologyClosedError, eY as MongoTransactionError, eZ as MongoUnexpectedServerResponseError, e_ as MongoWriteConcernError, e$ as MonitorEvents, f0 as MonitorOptions, gM as MultiLineString, gL as MultiPoint, gN as MultiPolygon, f1 as NestedPaths, f2 as NestedPathsOfType, f3 as NonObjectIdLikeDocument, f4 as NotAcceptedFields, f5 as NumericType, f6 as OIDCMechanismServerStep1, f7 as OIDCRefreshFunction, f8 as OIDCRequestFunction, f9 as OIDCRequestTokenResult, fa as OneOrMore, fb as OnlyFieldsOfType, fc as OperationOptions, fd as OperationTime, fe as OptionalId, ff as OptionalUnlessRequiredId, i as OrderByCondition, fg as OrderedBulkOperation, fh as PkFactory, gI as Point, gK as Polygon, fi as ProfilingLevel, fj as ProfilingLevelOptions, fk as PropertyType, fl as ProxyOptions, fm as PullAllOperator, fn as PullOperator, fo as PushOperator, aK as QueryBuilder, aL as QueryResult, Q as QueryResultCache, aJ as QueryResultCacheOptions, fp as ReadConcern, fq as ReadConcernLevel, fr as ReadConcernLike, fs as ReadPreference, ft as ReadPreferenceFromOptions, fu as ReadPreferenceLike, fv as ReadPreferenceLikeOptions, fw as ReadPreferenceMode, fx as ReadPreferenceOptions, aV as RecoverEvent, fy as RegExpOrString, t as RelationOptions, aT as RemoveEvent, fz as RemoveUserOptions, fA as RenameOptions, fB as ReplaceOneModel, fC as ReplaceOptions, h as ReplicationMode, fD as ResumeOptions, fE as ResumeToken, fF as ReturnDocument, fG as RoleSpecification, fH as RootFilterOperators, fI as RunCommandOptions, fJ as SchemaMember, fK as SelectServerOptions, fL as ServerApi, fM as ServerApiVersion, fN as ServerCapabilities, fO as ServerClosedEvent, fP as ServerDescription, fQ as ServerDescriptionChangedEvent, fR as ServerEvents, fS as ServerHeartbeatFailedEvent, fT as ServerHeartbeatStartedEvent, fU as ServerHeartbeatSucceededEvent, fV as ServerOpeningEvent, fW as ServerSession, fX as ServerSessionId, fY as ServerType, fZ as SetFields, f_ as SetProfilingLevelOptions, aU as SoftRemoveEvent, f$ as Sort, g0 as SortDirection, g1 as Stream, g2 as StreamDescription, g3 as StreamDescriptionOptions, g4 as StrictFilter, g5 as StrictMatchKeysAndValues, g6 as StrictUpdateFilter, g7 as SupportedNodeConnectionOptions, g8 as SupportedSocketOptions, g9 as SupportedTLSConnectionOptions, ga as SupportedTLSSocketOptions, be as TableCheckOptions, bf as TableExclusionOptions, bg as TableForeignKeyOptions, bh as TableIndexOptions, bi as TableOptions, bj as TableUniqueOptions, gb as TagSet, gc as TimeSeriesCollectionOptions, bB as Timestamp, gd as TopologyClosedEvent, ge as TopologyDescription, gf as TopologyDescriptionChangedEvent, gg as TopologyDescriptionOptions, gh as TopologyEvents, gi as TopologyOpeningEvent, gj as TopologyType, gk as TopologyVersion, gl as Transaction, aW as TransactionCommitEvent, gm as TransactionOptions, aX as TransactionRollbackEvent, aY as TransactionStartEvent, gn as TypedEventEmitter, go as UnorderedBulkOperation, gp as UpdateDescription, aS as UpdateEvent, gq as UpdateFilter, gr as UpdateManyModel, gs as UpdateOneModel, gt as UpdateOptions, gu as UpdateStatement, gv as ValidateCollectionOptions, V as ValueTransformer, bk as ViewOptions, gw as W, aO as WhereExpressionBuilder, gx as WiredTigerData, gy as WithId, gA as WithSessionCallback, gB as WithTransactionCallback, gz as WithoutId, gC as WriteConcern, gD as WriteConcernError, gE as WriteConcernErrorData, gF as WriteConcernOptions, gG as WriteConcernSettings, gH as WriteError, bt as deserialize, bA as serialize } from './vendor/TypeDef.4.js';
|
|
4
|
+
export { E as EntityOptions, I as IndexOptions } from './vendor/TypeDef.12.js';
|
|
5
5
|
import 'fs';
|
|
6
6
|
import 'tls';
|
|
7
7
|
import 'net';
|
package/orm.mjs
CHANGED
|
@@ -2,11 +2,11 @@ import "./vendor/Package.4.mjs";
|
|
|
2
2
|
|
|
3
3
|
import { g as e } from "./vendor/Package.5.mjs";
|
|
4
4
|
|
|
5
|
-
import { r, F as a, c, d, O
|
|
5
|
+
import { r, F as a, b as c, c as d, O, P as _, B as b, d as P, R as E, D as R, e as B } from "./vendor/Package.14.mjs";
|
|
6
6
|
|
|
7
|
-
export { A as AbstractLogger, w as AdvancedConsoleLogger, i as Brackets,
|
|
7
|
+
export { A as AbstractLogger, w as AdvancedConsoleLogger, i as Brackets, f as ConnectionOptionsReader, o as DefaultNamingStrategy, g as DeleteQueryBuilder, l as DeleteResult, z as EntityMetadata, y as FileLogger, t as FindOperator, v as FindOptionsUtils, s as In, I as InsertQueryBuilder, j as InsertResult, p as InstanceChecker, M as Migration, n as MigrationExecutor, J as MongoRepository, Z as MssqlParameter, Q as QueryBuilder, m as QueryResult, h as RelationQueryBuilder, G as Repository, S as SelectQueryBuilder, x as SimpleConsoleLogger, Y as Table, K as TableCheck, L as TableColumn, N as TableExclusion, V as TableForeignKey, W as TableIndex, X as TableUnique, H as TreeRepository, T as TreeRepositoryUtils, U as UpdateQueryBuilder, k as UpdateResult, q as getFromContainer, u as useContainer } from "./vendor/Package.14.mjs";
|
|
8
8
|
|
|
9
|
-
import { D as
|
|
9
|
+
import { D as F } from "./vendor/Package.15.mjs";
|
|
10
10
|
|
|
11
11
|
import "./vendor/Package.8.mjs";
|
|
12
12
|
|
|
@@ -28,7 +28,7 @@ import "./vendor/Package.11.mjs";
|
|
|
28
28
|
|
|
29
29
|
import "crypto";
|
|
30
30
|
|
|
31
|
-
import "./vendor/Package.
|
|
31
|
+
import "./vendor/Package.74.mjs";
|
|
32
32
|
|
|
33
33
|
import "./vendor/Package.13.mjs";
|
|
34
34
|
|
|
@@ -46,13 +46,13 @@ import "url";
|
|
|
46
46
|
|
|
47
47
|
import "util";
|
|
48
48
|
|
|
49
|
-
import "./vendor/Package.
|
|
49
|
+
import "./vendor/Package.73.mjs";
|
|
50
50
|
|
|
51
51
|
import "fs/promises";
|
|
52
52
|
|
|
53
|
-
var
|
|
53
|
+
var C = r();
|
|
54
54
|
|
|
55
|
-
const D = e(
|
|
55
|
+
const D = e(C);
|
|
56
56
|
|
|
57
57
|
var $ = {};
|
|
58
58
|
|
|
@@ -194,15 +194,15 @@ function ge(e) {
|
|
|
194
194
|
|
|
195
195
|
me = Oe.Any = ge;
|
|
196
196
|
|
|
197
|
-
var
|
|
197
|
+
var be = {};
|
|
198
198
|
|
|
199
199
|
"use strict";
|
|
200
200
|
|
|
201
|
-
Object.defineProperty(
|
|
201
|
+
Object.defineProperty(be, "__esModule", {
|
|
202
202
|
value: true
|
|
203
203
|
});
|
|
204
204
|
|
|
205
|
-
var
|
|
205
|
+
var he = be.ArrayContainedBy = void 0;
|
|
206
206
|
|
|
207
207
|
const je = a;
|
|
208
208
|
|
|
@@ -210,7 +210,7 @@ function Pe(e) {
|
|
|
210
210
|
return new je.FindOperator("arrayContainedBy", e);
|
|
211
211
|
}
|
|
212
212
|
|
|
213
|
-
|
|
213
|
+
he = be.ArrayContainedBy = Pe;
|
|
214
214
|
|
|
215
215
|
var Me = {};
|
|
216
216
|
|
|
@@ -443,21 +443,21 @@ var _t = mt.Not = void 0;
|
|
|
443
443
|
|
|
444
444
|
const gt = a;
|
|
445
445
|
|
|
446
|
-
function
|
|
446
|
+
function bt(e) {
|
|
447
447
|
return new gt.FindOperator("not", e);
|
|
448
448
|
}
|
|
449
449
|
|
|
450
|
-
_t = mt.Not =
|
|
450
|
+
_t = mt.Not = bt;
|
|
451
451
|
|
|
452
|
-
var
|
|
452
|
+
var ht = {};
|
|
453
453
|
|
|
454
454
|
"use strict";
|
|
455
455
|
|
|
456
|
-
Object.defineProperty(
|
|
456
|
+
Object.defineProperty(ht, "__esModule", {
|
|
457
457
|
value: true
|
|
458
458
|
});
|
|
459
459
|
|
|
460
|
-
var jt =
|
|
460
|
+
var jt = ht.Raw = void 0;
|
|
461
461
|
|
|
462
462
|
const Pt = a;
|
|
463
463
|
|
|
@@ -468,7 +468,7 @@ function Mt(e, t) {
|
|
|
468
468
|
return new Pt.FindOperator("raw", [], true, true, e, t);
|
|
469
469
|
}
|
|
470
470
|
|
|
471
|
-
jt =
|
|
471
|
+
jt = ht.Raw = Mt;
|
|
472
472
|
|
|
473
473
|
var Et = {};
|
|
474
474
|
|
|
@@ -602,7 +602,7 @@ Object.defineProperty(zt, "__esModule", {
|
|
|
602
602
|
|
|
603
603
|
var Zt = zt.BaseEntity = void 0;
|
|
604
604
|
|
|
605
|
-
const Jt =
|
|
605
|
+
const Jt = O;
|
|
606
606
|
|
|
607
607
|
class BaseEntity {
|
|
608
608
|
hasId() {
|
|
@@ -950,7 +950,7 @@ var or = ar.BSON = void 0;
|
|
|
950
950
|
return t.serialize;
|
|
951
951
|
}
|
|
952
952
|
});
|
|
953
|
-
const r =
|
|
953
|
+
const r = _;
|
|
954
954
|
})(nr);
|
|
955
955
|
|
|
956
956
|
const ir = e(nr);
|
|
@@ -989,7 +989,7 @@ Object.defineProperty(lr, "__esModule", {
|
|
|
989
989
|
|
|
990
990
|
var yr = lr.NotBrackets = void 0;
|
|
991
991
|
|
|
992
|
-
const pr =
|
|
992
|
+
const pr = b;
|
|
993
993
|
|
|
994
994
|
class NotBrackets extends pr.Brackets {
|
|
995
995
|
constructor() {
|
|
@@ -1000,7 +1000,7 @@ class NotBrackets extends pr.Brackets {
|
|
|
1000
1000
|
|
|
1001
1001
|
yr = lr.NotBrackets = NotBrackets;
|
|
1002
1002
|
|
|
1003
|
-
var vr =
|
|
1003
|
+
var vr = P();
|
|
1004
1004
|
|
|
1005
1005
|
const fr = e(vr);
|
|
1006
1006
|
|
|
@@ -1014,11 +1014,11 @@ Object.defineProperty(Or, "__esModule", {
|
|
|
1014
1014
|
|
|
1015
1015
|
var mr = Or.LegacyOracleNamingStrategy = void 0;
|
|
1016
1016
|
|
|
1017
|
-
const _r =
|
|
1017
|
+
const _r = E;
|
|
1018
1018
|
|
|
1019
|
-
const gr =
|
|
1019
|
+
const gr = R;
|
|
1020
1020
|
|
|
1021
|
-
const
|
|
1021
|
+
const br = B;
|
|
1022
1022
|
|
|
1023
1023
|
class LegacyOracleNamingStrategy extends gr.DefaultNamingStrategy {
|
|
1024
1024
|
constructor(e = "hash") {
|
|
@@ -1034,12 +1034,12 @@ class LegacyOracleNamingStrategy extends gr.DefaultNamingStrategy {
|
|
|
1034
1034
|
} else if (this.shortenStrategy === "hash") {
|
|
1035
1035
|
return this.hashIdentifier(s, this.DEFAULT_COLUMN_PREFIX);
|
|
1036
1036
|
} else {
|
|
1037
|
-
throw new
|
|
1037
|
+
throw new br.TypeORMError(`Invalid shortenStrategy`);
|
|
1038
1038
|
}
|
|
1039
1039
|
}
|
|
1040
1040
|
hashIdentifier(e, t) {
|
|
1041
1041
|
if (t.length >= this.IDENTIFIER_MAX_SIZE) {
|
|
1042
|
-
throw new
|
|
1042
|
+
throw new br.TypeORMError(`Prefix must be shorter than IDENTIFIER_MAX_SIZE`);
|
|
1043
1043
|
}
|
|
1044
1044
|
return t + _r.RandomGenerator.sha1(e).substring(0, this.IDENTIFIER_MAX_SIZE - t.length);
|
|
1045
1045
|
}
|
|
@@ -1054,15 +1054,15 @@ class LegacyOracleNamingStrategy extends gr.DefaultNamingStrategy {
|
|
|
1054
1054
|
|
|
1055
1055
|
mr = Or.LegacyOracleNamingStrategy = LegacyOracleNamingStrategy;
|
|
1056
1056
|
|
|
1057
|
-
var
|
|
1057
|
+
var hr = {};
|
|
1058
1058
|
|
|
1059
1059
|
"use strict";
|
|
1060
1060
|
|
|
1061
|
-
Object.defineProperty(
|
|
1061
|
+
Object.defineProperty(hr, "__esModule", {
|
|
1062
1062
|
value: true
|
|
1063
1063
|
});
|
|
1064
1064
|
|
|
1065
|
-
var jr =
|
|
1065
|
+
var jr = hr.EntitySchema = void 0;
|
|
1066
1066
|
|
|
1067
1067
|
class EntitySchema {
|
|
1068
1068
|
constructor(e) {
|
|
@@ -1071,7 +1071,7 @@ class EntitySchema {
|
|
|
1071
1071
|
}
|
|
1072
1072
|
}
|
|
1073
1073
|
|
|
1074
|
-
jr =
|
|
1074
|
+
jr = hr.EntitySchema = EntitySchema;
|
|
1075
1075
|
|
|
1076
1076
|
var Pr = {};
|
|
1077
1077
|
|
|
@@ -1101,8 +1101,8 @@ class EntitySchemaOptions {}
|
|
|
1101
1101
|
|
|
1102
1102
|
Rr = Er.EntitySchemaOptions = EntitySchemaOptions;
|
|
1103
1103
|
|
|
1104
|
-
const Br =
|
|
1104
|
+
const Br = F.DataSource;
|
|
1105
1105
|
|
|
1106
1106
|
const Ir = vr.MongoEntityManager;
|
|
1107
1107
|
|
|
1108
|
-
export { pe as And, me as Any,
|
|
1108
|
+
export { pe as And, me as Any, he as ArrayContainedBy, Ee as ArrayContains, Se as ArrayOverlap, Zt as BaseEntity, we as Between, Br as DataSource, jr as EntitySchema, Mr as EntitySchemaEmbeddedColumnOptions, Rr as EntitySchemaOptions, xe as Equal, De as EqualOperator, rt as ILike, Ke as IsNull, Rt as JsonContains, mr as LegacyOracleNamingStrategy, Ge as LessThan, Ye as LessThanOrEqual, ot as Like, Ir as MongoEntityManager, dt as MoreThan, vt as MoreThanOrEqual, _t as Not, yr as NotBrackets, jt as Raw };
|
package/package.json
CHANGED
|
@@ -162,7 +162,7 @@ require("../../vendor/Package.11.cjs");
|
|
|
162
162
|
|
|
163
163
|
require("crypto");
|
|
164
164
|
|
|
165
|
-
require("../../vendor/Package.
|
|
165
|
+
require("../../vendor/Package.74.cjs");
|
|
166
166
|
|
|
167
167
|
require("../../vendor/Package.13.cjs");
|
|
168
168
|
|
|
@@ -174,7 +174,7 @@ require("tty");
|
|
|
174
174
|
|
|
175
175
|
require("string_decoder");
|
|
176
176
|
|
|
177
|
-
require("../../vendor/Package.
|
|
177
|
+
require("../../vendor/Package.73.cjs");
|
|
178
178
|
|
|
179
179
|
require("fs/promises");
|
|
180
180
|
|
|
@@ -156,7 +156,7 @@ import "../../vendor/Package.11.mjs";
|
|
|
156
156
|
|
|
157
157
|
import "crypto";
|
|
158
158
|
|
|
159
|
-
import "../../vendor/Package.
|
|
159
|
+
import "../../vendor/Package.74.mjs";
|
|
160
160
|
|
|
161
161
|
import "../../vendor/Package.13.mjs";
|
|
162
162
|
|
|
@@ -168,7 +168,7 @@ import "tty";
|
|
|
168
168
|
|
|
169
169
|
import "string_decoder";
|
|
170
170
|
|
|
171
|
-
import "../../vendor/Package.
|
|
171
|
+
import "../../vendor/Package.73.mjs";
|
|
172
172
|
|
|
173
173
|
import "fs/promises";
|
|
174
174
|
|
|
@@ -18,7 +18,7 @@ const i = require("./lib/Controller.cjs");
|
|
|
18
18
|
|
|
19
19
|
const s = require("../../lib/helpers/As.cjs");
|
|
20
20
|
|
|
21
|
-
const a = require("
|
|
21
|
+
const a = require("./exceptions/ControllerActionNotFoundException.cjs");
|
|
22
22
|
|
|
23
23
|
const c = require("../../exceptions/DestroyRuntimeContainerException.cjs");
|
|
24
24
|
|
|
@@ -12,7 +12,7 @@ import { Controller as a } from "./lib/Controller.mjs";
|
|
|
12
12
|
|
|
13
13
|
import { As as c } from "../../lib/helpers/As.mjs";
|
|
14
14
|
|
|
15
|
-
import { ControllerActionNotFoundException as l } from "
|
|
15
|
+
import { ControllerActionNotFoundException as l } from "./exceptions/ControllerActionNotFoundException.mjs";
|
|
16
16
|
|
|
17
17
|
import { DestroyRuntimeContainerException as p } from "../../exceptions/DestroyRuntimeContainerException.mjs";
|
|
18
18
|
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, Symbol.toStringTag, {
|
|
4
|
+
value: "Module"
|
|
5
|
+
});
|
|
6
|
+
|
|
7
|
+
const e = require("../../../lib/base/abstracts/Exception.cjs");
|
|
8
|
+
|
|
9
|
+
require("../../../lib/base/internal/BasicInfo.cjs");
|
|
10
|
+
|
|
11
|
+
require("../../../lib/helpers/As.cjs");
|
|
12
|
+
|
|
13
|
+
require("../../../../vendor/Package.7.cjs");
|
|
14
|
+
|
|
15
|
+
require("../../../../vendor/Package.5.cjs");
|
|
16
|
+
|
|
17
|
+
require("../../../../vendor/Package.8.cjs");
|
|
18
|
+
|
|
19
|
+
require("../../../lib/base/internal/ThrowWarning.cjs");
|
|
20
|
+
|
|
21
|
+
require("../../../lib/helpers/Templating.cjs");
|
|
22
|
+
|
|
23
|
+
require("../../../lib/base/internal/CamelCase.cjs");
|
|
24
|
+
|
|
25
|
+
require("../../../lib/helpers/NoCase.cjs");
|
|
26
|
+
|
|
27
|
+
class ControllerActionNotFoundException extends e.Exception {
|
|
28
|
+
constructor() {
|
|
29
|
+
super(...arguments);
|
|
30
|
+
this.errno = "E_CONTROLLER_ACTION_NOT_FOUND";
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
exports.ControllerActionNotFoundException = ControllerActionNotFoundException;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { Exception as o } from "../../../lib/base/abstracts/Exception.mjs";
|
|
2
|
+
|
|
3
|
+
import "../../../lib/base/internal/BasicInfo.mjs";
|
|
4
|
+
|
|
5
|
+
import "../../../lib/helpers/As.mjs";
|
|
6
|
+
|
|
7
|
+
import "../../../../vendor/Package.7.mjs";
|
|
8
|
+
|
|
9
|
+
import "../../../../vendor/Package.5.mjs";
|
|
10
|
+
|
|
11
|
+
import "../../../../vendor/Package.8.mjs";
|
|
12
|
+
|
|
13
|
+
import "../../../lib/base/internal/ThrowWarning.mjs";
|
|
14
|
+
|
|
15
|
+
import "../../../lib/helpers/Templating.mjs";
|
|
16
|
+
|
|
17
|
+
import "../../../lib/base/internal/CamelCase.mjs";
|
|
18
|
+
|
|
19
|
+
import "../../../lib/helpers/NoCase.mjs";
|
|
20
|
+
|
|
21
|
+
class ControllerActionNotFoundException extends o {
|
|
22
|
+
constructor() {
|
|
23
|
+
super(...arguments);
|
|
24
|
+
this.errno = "E_CONTROLLER_ACTION_NOT_FOUND";
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
export { ControllerActionNotFoundException };
|
|
@@ -28,7 +28,7 @@ require("../../../vendor/Package.11.cjs");
|
|
|
28
28
|
|
|
29
29
|
require("crypto");
|
|
30
30
|
|
|
31
|
-
require("../../../vendor/Package.
|
|
31
|
+
require("../../../vendor/Package.74.cjs");
|
|
32
32
|
|
|
33
33
|
require("../../../vendor/Package.13.cjs");
|
|
34
34
|
|
|
@@ -46,7 +46,7 @@ require("url");
|
|
|
46
46
|
|
|
47
47
|
require("util");
|
|
48
48
|
|
|
49
|
-
require("../../../vendor/Package.
|
|
49
|
+
require("../../../vendor/Package.73.cjs");
|
|
50
50
|
|
|
51
51
|
require("fs/promises");
|
|
52
52
|
|
|
@@ -22,7 +22,7 @@ import "../../../vendor/Package.11.mjs";
|
|
|
22
22
|
|
|
23
23
|
import "crypto";
|
|
24
24
|
|
|
25
|
-
import "../../../vendor/Package.
|
|
25
|
+
import "../../../vendor/Package.74.mjs";
|
|
26
26
|
|
|
27
27
|
import "../../../vendor/Package.13.mjs";
|
|
28
28
|
|
|
@@ -40,7 +40,7 @@ import "url";
|
|
|
40
40
|
|
|
41
41
|
import "util";
|
|
42
42
|
|
|
43
|
-
import "../../../vendor/Package.
|
|
43
|
+
import "../../../vendor/Package.73.mjs";
|
|
44
44
|
|
|
45
45
|
import "fs/promises";
|
|
46
46
|
|
|
@@ -28,7 +28,7 @@ require("../../../vendor/Package.11.cjs");
|
|
|
28
28
|
|
|
29
29
|
require("crypto");
|
|
30
30
|
|
|
31
|
-
require("../../../vendor/Package.
|
|
31
|
+
require("../../../vendor/Package.74.cjs");
|
|
32
32
|
|
|
33
33
|
require("../../../vendor/Package.13.cjs");
|
|
34
34
|
|
|
@@ -46,7 +46,7 @@ require("url");
|
|
|
46
46
|
|
|
47
47
|
require("util");
|
|
48
48
|
|
|
49
|
-
require("../../../vendor/Package.
|
|
49
|
+
require("../../../vendor/Package.73.cjs");
|
|
50
50
|
|
|
51
51
|
require("fs/promises");
|
|
52
52
|
|
|
@@ -22,7 +22,7 @@ import "../../../vendor/Package.11.mjs";
|
|
|
22
22
|
|
|
23
23
|
import "crypto";
|
|
24
24
|
|
|
25
|
-
import "../../../vendor/Package.
|
|
25
|
+
import "../../../vendor/Package.74.mjs";
|
|
26
26
|
|
|
27
27
|
import "../../../vendor/Package.13.mjs";
|
|
28
28
|
|
|
@@ -40,7 +40,7 @@ import "url";
|
|
|
40
40
|
|
|
41
41
|
import "util";
|
|
42
42
|
|
|
43
|
-
import "../../../vendor/Package.
|
|
43
|
+
import "../../../vendor/Package.73.mjs";
|
|
44
44
|
|
|
45
45
|
import "fs/promises";
|
|
46
46
|
|