lakutata 2.0.57 → 2.0.59
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 -0
- package/com/database.d.ts +2 -2
- package/com/database.mjs +2 -0
- package/decorator/orm.cjs +88 -86
- package/decorator/orm.d.ts +74 -50
- package/decorator/orm.mjs +46 -44
- package/orm.cjs +112 -1075
- package/orm.d.ts +5 -5
- package/orm.mjs +17 -1015
- package/package.json +1 -1
- package/provider/database.cjs +2 -0
- package/provider/database.d.ts +2 -2
- package/provider/database.mjs +2 -0
- package/src/components/Database.cjs +2 -0
- package/src/components/Database.mjs +2 -0
- package/src/decorators/orm/AfterInsert.cjs +7 -27
- package/src/decorators/orm/AfterInsert.mjs +6 -28
- package/src/decorators/orm/AfterLoad.cjs +7 -27
- package/src/decorators/orm/AfterLoad.mjs +6 -28
- package/src/decorators/orm/AfterRecover.cjs +7 -27
- package/src/decorators/orm/AfterRecover.mjs +6 -28
- package/src/decorators/orm/AfterRemove.cjs +7 -27
- package/src/decorators/orm/AfterRemove.mjs +6 -28
- package/src/decorators/orm/AfterSoftRemove.cjs +7 -27
- package/src/decorators/orm/AfterSoftRemove.mjs +6 -28
- package/src/decorators/orm/AfterUpdate.cjs +7 -27
- package/src/decorators/orm/AfterUpdate.mjs +6 -28
- package/src/decorators/orm/BeforeInsert.cjs +7 -27
- package/src/decorators/orm/BeforeInsert.mjs +6 -28
- package/src/decorators/orm/BeforeRecover.cjs +7 -27
- package/src/decorators/orm/BeforeRecover.mjs +6 -28
- package/src/decorators/orm/BeforeRemove.cjs +7 -27
- package/src/decorators/orm/BeforeRemove.mjs +6 -28
- package/src/decorators/orm/BeforeSoftRemove.cjs +7 -27
- package/src/decorators/orm/BeforeSoftRemove.mjs +6 -28
- package/src/decorators/orm/BeforeUpdate.cjs +7 -27
- package/src/decorators/orm/BeforeUpdate.mjs +6 -28
- package/src/decorators/orm/Check.cjs +7 -30
- package/src/decorators/orm/Check.mjs +6 -31
- package/src/decorators/orm/ChildEntity.cjs +7 -30
- package/src/decorators/orm/ChildEntity.mjs +6 -31
- package/src/decorators/orm/Column.cjs +7 -62
- package/src/decorators/orm/Column.mjs +6 -63
- package/src/decorators/orm/CreateDateColumn.cjs +7 -26
- package/src/decorators/orm/CreateDateColumn.mjs +6 -27
- package/src/decorators/orm/DeleteDateColumn.cjs +7 -26
- package/src/decorators/orm/DeleteDateColumn.mjs +6 -27
- package/src/decorators/orm/Entity.cjs +7 -36
- package/src/decorators/orm/Entity.mjs +6 -37
- package/src/decorators/orm/EventSubscriber.cjs +7 -23
- package/src/decorators/orm/EventSubscriber.mjs +6 -24
- package/src/decorators/orm/Exclusion.cjs +7 -30
- package/src/decorators/orm/Exclusion.mjs +6 -31
- package/src/decorators/orm/Generated.cjs +7 -25
- package/src/decorators/orm/Generated.mjs +6 -26
- package/src/decorators/orm/Index.cjs +7 -42
- package/src/decorators/orm/Index.mjs +6 -43
- package/src/decorators/orm/JoinColumn.cjs +7 -30
- package/src/decorators/orm/JoinColumn.mjs +6 -31
- package/src/decorators/orm/JoinTable.cjs +7 -31
- package/src/decorators/orm/JoinTable.mjs +6 -32
- package/src/decorators/orm/ManyToMany.cjs +7 -43
- package/src/decorators/orm/ManyToMany.mjs +6 -44
- package/src/decorators/orm/ManyToOne.cjs +7 -43
- package/src/decorators/orm/ManyToOne.mjs +6 -44
- package/src/decorators/orm/ObjectIdColumn.cjs +7 -29
- package/src/decorators/orm/ObjectIdColumn.mjs +6 -30
- package/src/decorators/orm/OneToMany.cjs +7 -35
- package/src/decorators/orm/OneToMany.mjs +6 -36
- package/src/decorators/orm/OneToOne.cjs +7 -43
- package/src/decorators/orm/OneToOne.mjs +6 -44
- package/src/decorators/orm/PrimaryColumn.cjs +7 -50
- package/src/decorators/orm/PrimaryColumn.mjs +6 -51
- package/src/decorators/orm/PrimaryGeneratedColumn.cjs +7 -55
- package/src/decorators/orm/PrimaryGeneratedColumn.mjs +6 -56
- package/src/decorators/orm/RelationId.cjs +7 -27
- package/src/decorators/orm/RelationId.mjs +6 -28
- package/src/decorators/orm/TableInheritance.cjs +7 -27
- package/src/decorators/orm/TableInheritance.mjs +6 -28
- package/src/decorators/orm/Tree.cjs +7 -25
- package/src/decorators/orm/Tree.mjs +6 -26
- package/src/decorators/orm/TreeChildren.cjs +7 -32
- package/src/decorators/orm/TreeChildren.mjs +6 -33
- package/src/decorators/orm/TreeLevelColumn.cjs +7 -26
- package/src/decorators/orm/TreeLevelColumn.mjs +6 -27
- package/src/decorators/orm/TreeParent.cjs +7 -32
- package/src/decorators/orm/TreeParent.mjs +6 -33
- package/src/decorators/orm/Unique.cjs +7 -45
- package/src/decorators/orm/Unique.mjs +6 -46
- package/src/decorators/orm/UpdateDateColumn.cjs +7 -26
- package/src/decorators/orm/UpdateDateColumn.mjs +6 -27
- package/src/decorators/orm/VersionColumn.cjs +7 -26
- package/src/decorators/orm/VersionColumn.mjs +6 -27
- package/src/decorators/orm/ViewColumn.cjs +7 -26
- package/src/decorators/orm/ViewColumn.mjs +6 -27
- package/src/decorators/orm/ViewEntity.cjs +7 -35
- package/src/decorators/orm/ViewEntity.mjs +6 -36
- package/src/decorators/orm/VirtualColumn.cjs +7 -43
- package/src/decorators/orm/VirtualColumn.mjs +6 -44
- package/src/lib/base/abstracts/Exception.cjs +7 -6
- package/src/lib/base/abstracts/Exception.mjs +1 -0
- package/src/providers/Database.cjs +2 -0
- package/src/providers/Database.mjs +2 -0
- package/vendor/Package.122.cjs +19932 -14856
- package/vendor/Package.122.mjs +32675 -27699
- package/vendor/Package.19.cjs +184 -195
- package/vendor/Package.19.mjs +176 -187
- package/vendor/Package.6.cjs +1 -1
- package/vendor/Package.6.mjs +1 -1
- package/vendor/TypeDef.4.d.ts +347 -181
- package/vendor/TypeDef.7.d.ts +1 -0
package/vendor/TypeDef.4.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import './TypeDef.2.js';
|
|
2
2
|
import { ReadStream } from 'fs';
|
|
3
|
-
import { ConnectionOptions as ConnectionOptions$1, TLSSocketOptions, TLSSocket, TlsOptions } from 'tls';
|
|
4
|
-
import { TcpNetConnectOpts, Socket } from 'net';
|
|
5
3
|
import { SrvRecord } from 'dns';
|
|
4
|
+
import { TcpNetConnectOpts, Socket } from 'net';
|
|
5
|
+
import { ConnectionOptions as ConnectionOptions$1, TLSSocketOptions, TLSSocket, TlsOptions } from 'tls';
|
|
6
6
|
import { EventEmitter } from 'events';
|
|
7
7
|
import { Readable } from 'stream';
|
|
8
8
|
|
|
@@ -456,8 +456,8 @@ type WithPrecisionColumnType = "float" | "double" | "dec" | "decimal" | "smallde
|
|
|
456
456
|
/**
|
|
457
457
|
* Column types where column length is used.
|
|
458
458
|
*/
|
|
459
|
-
type WithLengthColumnType = "character varying" | "varying character" | "char varying" | "nvarchar" | "national varchar" | "character" | "native character" | "varchar" | "char" | "nchar" | "national char" | "varchar2" | "nvarchar2" | "alphanum" | "shorttext" | "raw" | "binary" | "varbinary" | "string";
|
|
460
|
-
type
|
|
459
|
+
type WithLengthColumnType = "character varying" | "varying character" | "char varying" | "nvarchar" | "national varchar" | "character" | "native character" | "varchar" | "char" | "nchar" | "national char" | "varchar2" | "nvarchar2" | "alphanum" | "shorttext" | "raw" | "binary" | "varbinary" | "string" | "vector" | "halfvec" | "half_vector" | "real_vector";
|
|
460
|
+
type UnsignedColumnType = "tinyint" | "smallint" | "mediumint" | "int" | "integer" | "bigint";
|
|
461
461
|
/**
|
|
462
462
|
* All other regular column types.
|
|
463
463
|
*/
|
|
@@ -465,7 +465,7 @@ type SimpleColumnType = "simple-array" | "simple-json" | "simple-enum" | "int2"
|
|
|
465
465
|
/**
|
|
466
466
|
* Any column type column can be.
|
|
467
467
|
*/
|
|
468
|
-
type ColumnType = WithPrecisionColumnType | WithLengthColumnType |
|
|
468
|
+
type ColumnType = WithPrecisionColumnType | WithLengthColumnType | UnsignedColumnType | SpatialColumnType | SimpleColumnType | BooleanConstructor | DateConstructor | NumberConstructor | StringConstructor;
|
|
469
469
|
|
|
470
470
|
/**
|
|
471
471
|
* Interface for objects that deal with (un)marshalling data.
|
|
@@ -558,6 +558,9 @@ interface ColumnOptions extends ColumnCommonOptions {
|
|
|
558
558
|
/**
|
|
559
559
|
* Column type's display width. Used only on some column types in MySQL.
|
|
560
560
|
* For example, INT(4) specifies an INT with a display width of four digits.
|
|
561
|
+
* @deprecated No longer supported in newer MySQL versions, will be removed
|
|
562
|
+
* from TypeORM in an upcoming version. Use a character column and the
|
|
563
|
+
* `LPAD` function as suggested by MySQL
|
|
561
564
|
*/
|
|
562
565
|
width?: number;
|
|
563
566
|
/**
|
|
@@ -625,6 +628,9 @@ interface ColumnOptions extends ColumnCommonOptions {
|
|
|
625
628
|
/**
|
|
626
629
|
* Puts ZEROFILL attribute on to numeric column. Works only for MySQL.
|
|
627
630
|
* If you specify ZEROFILL for a numeric column, MySQL automatically adds the UNSIGNED attribute to this column
|
|
631
|
+
* @deprecated No longer supported in newer MySQL versions, will be removed
|
|
632
|
+
* from TypeORM in an upcoming version. Use a character column and the
|
|
633
|
+
* `LPAD` function as suggested by MySQL
|
|
628
634
|
*/
|
|
629
635
|
zerofill?: boolean;
|
|
630
636
|
/**
|
|
@@ -692,6 +698,12 @@ interface ColumnOptions extends ColumnCommonOptions {
|
|
|
692
698
|
* SRID (Spatial Reference ID (EPSG code))
|
|
693
699
|
*/
|
|
694
700
|
srid?: number;
|
|
701
|
+
/**
|
|
702
|
+
* Query to be used to populate the column data. This query is used when generating the relational db script.
|
|
703
|
+
* The query function is called with the current entities alias either defined by the Entity Decorator or automatically
|
|
704
|
+
* @See https://typeorm.io/decorator-reference#virtualcolumn for more details.
|
|
705
|
+
*/
|
|
706
|
+
query?: (alias: string) => string;
|
|
695
707
|
}
|
|
696
708
|
|
|
697
709
|
/**
|
|
@@ -1903,13 +1915,13 @@ declare class ColumnMetadata {
|
|
|
1903
1915
|
/**
|
|
1904
1916
|
* Indicates if column is a virtual property. Virtual properties are not mapped to the entity.
|
|
1905
1917
|
* This property is used in tandem the virtual column decorator.
|
|
1906
|
-
* @See https://typeorm.io/decorator-reference
|
|
1918
|
+
* @See https://typeorm.io/docs/Help/decorator-reference/#virtualcolumn for more details.
|
|
1907
1919
|
*/
|
|
1908
1920
|
isVirtualProperty: boolean;
|
|
1909
1921
|
/**
|
|
1910
1922
|
* Query to be used to populate the column data. This query is used when generating the relational db script.
|
|
1911
1923
|
* The query function is called with the current entities alias either defined by the Entity Decorator or automatically
|
|
1912
|
-
* @See https://typeorm.io/decorator-reference
|
|
1924
|
+
* @See https://typeorm.io/docs/Help/decorator-reference/#virtualcolumn for more details.
|
|
1913
1925
|
*/
|
|
1914
1926
|
query?: (alias: string) => string;
|
|
1915
1927
|
/**
|
|
@@ -2000,7 +2012,7 @@ declare class ColumnMetadata {
|
|
|
2000
2012
|
/**
|
|
2001
2013
|
* Creates entity id map from the given entity ids array.
|
|
2002
2014
|
*/
|
|
2003
|
-
createValueMap(value: any, useDatabaseName?: boolean):
|
|
2015
|
+
createValueMap(value: any, useDatabaseName?: boolean): ObjectLiteral;
|
|
2004
2016
|
/**
|
|
2005
2017
|
* Extracts column value and returns its column name with this value in a literal object.
|
|
2006
2018
|
* If column is in embedded (or recursive embedded) it returns complex literal object.
|
|
@@ -2432,6 +2444,10 @@ interface EntitySchemaColumnOptions extends SpatialColumnOptions {
|
|
|
2432
2444
|
* Indicates if this column is a treeLevel column.
|
|
2433
2445
|
*/
|
|
2434
2446
|
treeLevel?: boolean;
|
|
2447
|
+
/**
|
|
2448
|
+
* Indicates if this column is a virtualProperty column.
|
|
2449
|
+
*/
|
|
2450
|
+
virtualProperty?: boolean;
|
|
2435
2451
|
/**
|
|
2436
2452
|
* Column type. Must be one of the value from the ColumnTypes class.
|
|
2437
2453
|
*/
|
|
@@ -2573,6 +2589,12 @@ interface EntitySchemaColumnOptions extends SpatialColumnOptions {
|
|
|
2573
2589
|
* Foreign key options of this column.
|
|
2574
2590
|
*/
|
|
2575
2591
|
foreignKey?: EntitySchemaColumnForeignKeyOptions;
|
|
2592
|
+
/**
|
|
2593
|
+
* Query to be used to populate the column data. This query is used when generating the relational db script.
|
|
2594
|
+
* The query function is called with the current entities alias either defined by the Entity Decorator or automatically
|
|
2595
|
+
* @See https://typeorm.io/decorator-reference#virtualcolumn for more details.
|
|
2596
|
+
*/
|
|
2597
|
+
query?: (alias: string) => string;
|
|
2576
2598
|
}
|
|
2577
2599
|
|
|
2578
2600
|
/**
|
|
@@ -3216,6 +3238,24 @@ interface BaseDataSourceOptions {
|
|
|
3216
3238
|
* Allows automatic isolation of where clauses
|
|
3217
3239
|
*/
|
|
3218
3240
|
readonly isolateWhereStatements?: boolean;
|
|
3241
|
+
/**
|
|
3242
|
+
* Controls how null and undefined values are handled in find operations.
|
|
3243
|
+
*/
|
|
3244
|
+
readonly invalidWhereValuesBehavior?: {
|
|
3245
|
+
/**
|
|
3246
|
+
* How to handle null values in where conditions.
|
|
3247
|
+
* - 'ignore': Skip null properties (default)
|
|
3248
|
+
* - 'sql-null': Transform null to SQL NULL
|
|
3249
|
+
* - 'throw': Throw an error when null is encountered
|
|
3250
|
+
*/
|
|
3251
|
+
readonly null?: "ignore" | "sql-null" | "throw";
|
|
3252
|
+
/**
|
|
3253
|
+
* How to handle undefined values in where conditions.
|
|
3254
|
+
* - 'ignore': Skip undefined properties (default)
|
|
3255
|
+
* - 'throw': Throw an error when undefined is encountered
|
|
3256
|
+
*/
|
|
3257
|
+
readonly undefined?: "ignore" | "throw";
|
|
3258
|
+
};
|
|
3219
3259
|
}
|
|
3220
3260
|
|
|
3221
3261
|
type ReplicationMode = "master" | "slave";
|
|
@@ -3320,7 +3360,7 @@ declare class TableForeignKey {
|
|
|
3320
3360
|
static create(metadata: ForeignKeyMetadata, driver: Driver): TableForeignKey;
|
|
3321
3361
|
}
|
|
3322
3362
|
|
|
3323
|
-
type UpsertType = "on-conflict-do-update" | "on-duplicate-key-update" | "primary-key";
|
|
3363
|
+
type UpsertType = "on-conflict-do-update" | "on-duplicate-key-update" | "primary-key" | "merge-into";
|
|
3324
3364
|
|
|
3325
3365
|
type ReturningType = "insert" | "update" | "delete";
|
|
3326
3366
|
/**
|
|
@@ -3770,11 +3810,6 @@ declare interface BinaryExtendedLegacy {
|
|
|
3770
3810
|
}
|
|
3771
3811
|
/** @public */
|
|
3772
3812
|
declare type BinarySequence = Uint8Array | number[];
|
|
3773
|
-
declare namespace BSON {
|
|
3774
|
-
export { setInternalBufferSize, serialize, serializeWithBufferAndIndex, deserialize, calculateObjectSize, deserializeStream, LongWithoutOverridesClass, Code, BSONSymbol, DBRef, Binary, ObjectId, UUID, Long, Timestamp, Double, Int32, MinKey, MaxKey, BSONRegExp, Decimal128, BSONValue, BSONError, BSONVersionError, BSONRuntimeError, BSONType, EJSON };
|
|
3775
|
-
export type { UUIDExtended, BinaryExtended, BinaryExtendedLegacy, BinarySequence, CodeExtended, DBRefLike, Decimal128Extended, DoubleExtended, EJSONOptions, Int32Extended, LongExtended, MaxKeyExtended, MinKeyExtended, ObjectIdExtended, ObjectIdLike, BSONRegExpExtended, BSONRegExpExtendedLegacy, BSONSymbolExtended, LongWithoutOverrides, TimestampExtended, TimestampOverrides, SerializeOptions, DeserializeOptions, Document, CalculateObjectSizeOptions };
|
|
3776
|
-
}
|
|
3777
|
-
|
|
3778
3813
|
/**
|
|
3779
3814
|
* @public
|
|
3780
3815
|
* @category Error
|
|
@@ -4761,6 +4796,81 @@ declare type UUIDExtended = {
|
|
|
4761
4796
|
$uuid: string;
|
|
4762
4797
|
};
|
|
4763
4798
|
|
|
4799
|
+
type bson_typings_d_BSONError = BSONError;
|
|
4800
|
+
declare const bson_typings_d_BSONError: typeof BSONError;
|
|
4801
|
+
type bson_typings_d_BSONRegExp = BSONRegExp;
|
|
4802
|
+
declare const bson_typings_d_BSONRegExp: typeof BSONRegExp;
|
|
4803
|
+
type bson_typings_d_BSONRegExpExtended = BSONRegExpExtended;
|
|
4804
|
+
type bson_typings_d_BSONRegExpExtendedLegacy = BSONRegExpExtendedLegacy;
|
|
4805
|
+
type bson_typings_d_BSONRuntimeError = BSONRuntimeError;
|
|
4806
|
+
declare const bson_typings_d_BSONRuntimeError: typeof BSONRuntimeError;
|
|
4807
|
+
type bson_typings_d_BSONSymbol = BSONSymbol;
|
|
4808
|
+
declare const bson_typings_d_BSONSymbol: typeof BSONSymbol;
|
|
4809
|
+
type bson_typings_d_BSONSymbolExtended = BSONSymbolExtended;
|
|
4810
|
+
type bson_typings_d_BSONType = BSONType;
|
|
4811
|
+
type bson_typings_d_BSONValue = BSONValue;
|
|
4812
|
+
declare const bson_typings_d_BSONValue: typeof BSONValue;
|
|
4813
|
+
type bson_typings_d_BSONVersionError = BSONVersionError;
|
|
4814
|
+
declare const bson_typings_d_BSONVersionError: typeof BSONVersionError;
|
|
4815
|
+
type bson_typings_d_Binary = Binary;
|
|
4816
|
+
declare const bson_typings_d_Binary: typeof Binary;
|
|
4817
|
+
type bson_typings_d_BinaryExtended = BinaryExtended;
|
|
4818
|
+
type bson_typings_d_BinaryExtendedLegacy = BinaryExtendedLegacy;
|
|
4819
|
+
type bson_typings_d_BinarySequence = BinarySequence;
|
|
4820
|
+
type bson_typings_d_CalculateObjectSizeOptions = CalculateObjectSizeOptions;
|
|
4821
|
+
type bson_typings_d_Code = Code;
|
|
4822
|
+
declare const bson_typings_d_Code: typeof Code;
|
|
4823
|
+
type bson_typings_d_CodeExtended = CodeExtended;
|
|
4824
|
+
type bson_typings_d_DBRef = DBRef;
|
|
4825
|
+
declare const bson_typings_d_DBRef: typeof DBRef;
|
|
4826
|
+
type bson_typings_d_DBRefLike = DBRefLike;
|
|
4827
|
+
type bson_typings_d_Decimal128 = Decimal128;
|
|
4828
|
+
declare const bson_typings_d_Decimal128: typeof Decimal128;
|
|
4829
|
+
type bson_typings_d_Decimal128Extended = Decimal128Extended;
|
|
4830
|
+
type bson_typings_d_DeserializeOptions = DeserializeOptions;
|
|
4831
|
+
type bson_typings_d_Document = Document;
|
|
4832
|
+
type bson_typings_d_Double = Double;
|
|
4833
|
+
declare const bson_typings_d_Double: typeof Double;
|
|
4834
|
+
type bson_typings_d_DoubleExtended = DoubleExtended;
|
|
4835
|
+
declare const bson_typings_d_EJSON: typeof EJSON;
|
|
4836
|
+
type bson_typings_d_EJSONOptions = EJSONOptions;
|
|
4837
|
+
type bson_typings_d_Int32 = Int32;
|
|
4838
|
+
declare const bson_typings_d_Int32: typeof Int32;
|
|
4839
|
+
type bson_typings_d_Int32Extended = Int32Extended;
|
|
4840
|
+
type bson_typings_d_Long = Long;
|
|
4841
|
+
declare const bson_typings_d_Long: typeof Long;
|
|
4842
|
+
type bson_typings_d_LongExtended = LongExtended;
|
|
4843
|
+
type bson_typings_d_LongWithoutOverrides = LongWithoutOverrides;
|
|
4844
|
+
declare const bson_typings_d_LongWithoutOverridesClass: typeof LongWithoutOverridesClass;
|
|
4845
|
+
type bson_typings_d_MaxKey = MaxKey;
|
|
4846
|
+
declare const bson_typings_d_MaxKey: typeof MaxKey;
|
|
4847
|
+
type bson_typings_d_MaxKeyExtended = MaxKeyExtended;
|
|
4848
|
+
type bson_typings_d_MinKey = MinKey;
|
|
4849
|
+
declare const bson_typings_d_MinKey: typeof MinKey;
|
|
4850
|
+
type bson_typings_d_MinKeyExtended = MinKeyExtended;
|
|
4851
|
+
type bson_typings_d_ObjectId = ObjectId;
|
|
4852
|
+
declare const bson_typings_d_ObjectId: typeof ObjectId;
|
|
4853
|
+
type bson_typings_d_ObjectIdExtended = ObjectIdExtended;
|
|
4854
|
+
type bson_typings_d_ObjectIdLike = ObjectIdLike;
|
|
4855
|
+
type bson_typings_d_SerializeOptions = SerializeOptions;
|
|
4856
|
+
type bson_typings_d_Timestamp = Timestamp;
|
|
4857
|
+
declare const bson_typings_d_Timestamp: typeof Timestamp;
|
|
4858
|
+
type bson_typings_d_TimestampExtended = TimestampExtended;
|
|
4859
|
+
type bson_typings_d_TimestampOverrides = TimestampOverrides;
|
|
4860
|
+
type bson_typings_d_UUID = UUID;
|
|
4861
|
+
declare const bson_typings_d_UUID: typeof UUID;
|
|
4862
|
+
type bson_typings_d_UUIDExtended = UUIDExtended;
|
|
4863
|
+
declare const bson_typings_d_calculateObjectSize: typeof calculateObjectSize;
|
|
4864
|
+
declare const bson_typings_d_deserialize: typeof deserialize;
|
|
4865
|
+
declare const bson_typings_d_deserializeStream: typeof deserializeStream;
|
|
4866
|
+
declare const bson_typings_d_serialize: typeof serialize;
|
|
4867
|
+
declare const bson_typings_d_serializeWithBufferAndIndex: typeof serializeWithBufferAndIndex;
|
|
4868
|
+
declare const bson_typings_d_setInternalBufferSize: typeof setInternalBufferSize;
|
|
4869
|
+
declare namespace bson_typings_d {
|
|
4870
|
+
export { bson_typings_d_BSONError as BSONError, bson_typings_d_BSONRegExp as BSONRegExp, bson_typings_d_BSONRuntimeError as BSONRuntimeError, bson_typings_d_BSONSymbol as BSONSymbol, bson_typings_d_BSONValue as BSONValue, bson_typings_d_BSONVersionError as BSONVersionError, bson_typings_d_Binary as Binary, bson_typings_d_Code as Code, bson_typings_d_DBRef as DBRef, bson_typings_d_Decimal128 as Decimal128, bson_typings_d_Double as Double, bson_typings_d_EJSON as EJSON, bson_typings_d_Int32 as Int32, bson_typings_d_Long as Long, bson_typings_d_LongWithoutOverridesClass as LongWithoutOverridesClass, bson_typings_d_MaxKey as MaxKey, bson_typings_d_MinKey as MinKey, bson_typings_d_ObjectId as ObjectId, bson_typings_d_Timestamp as Timestamp, bson_typings_d_UUID as UUID, bson_typings_d_calculateObjectSize as calculateObjectSize, bson_typings_d_deserialize as deserialize, bson_typings_d_deserializeStream as deserializeStream, bson_typings_d_serialize as serialize, bson_typings_d_serializeWithBufferAndIndex as serializeWithBufferAndIndex, bson_typings_d_setInternalBufferSize as setInternalBufferSize };
|
|
4871
|
+
export type { bson_typings_d_BSONRegExpExtended as BSONRegExpExtended, bson_typings_d_BSONRegExpExtendedLegacy as BSONRegExpExtendedLegacy, bson_typings_d_BSONSymbolExtended as BSONSymbolExtended, bson_typings_d_BSONType as BSONType, bson_typings_d_BinaryExtended as BinaryExtended, bson_typings_d_BinaryExtendedLegacy as BinaryExtendedLegacy, bson_typings_d_BinarySequence as BinarySequence, bson_typings_d_CalculateObjectSizeOptions as CalculateObjectSizeOptions, bson_typings_d_CodeExtended as CodeExtended, bson_typings_d_DBRefLike as DBRefLike, bson_typings_d_Decimal128Extended as Decimal128Extended, bson_typings_d_DeserializeOptions as DeserializeOptions, bson_typings_d_Document as Document, bson_typings_d_DoubleExtended as DoubleExtended, bson_typings_d_EJSONOptions as EJSONOptions, bson_typings_d_Int32Extended as Int32Extended, bson_typings_d_LongExtended as LongExtended, bson_typings_d_LongWithoutOverrides as LongWithoutOverrides, bson_typings_d_MaxKeyExtended as MaxKeyExtended, bson_typings_d_MinKeyExtended as MinKeyExtended, bson_typings_d_ObjectIdExtended as ObjectIdExtended, bson_typings_d_ObjectIdLike as ObjectIdLike, bson_typings_d_SerializeOptions as SerializeOptions, bson_typings_d_TimestampExtended as TimestampExtended, bson_typings_d_TimestampOverrides as TimestampOverrides, bson_typings_d_UUIDExtended as UUIDExtended };
|
|
4872
|
+
}
|
|
4873
|
+
|
|
4764
4874
|
/** @public */
|
|
4765
4875
|
declare abstract class AbstractCursor<TSchema = any, CursorEvents extends AbstractCursorEvents = AbstractCursorEvents> extends TypedEventEmitter<CursorEvents> {
|
|
4766
4876
|
/** @event */
|
|
@@ -5208,8 +5318,8 @@ declare interface AuthMechanismProperties extends Document {
|
|
|
5208
5318
|
PROVIDER_NAME?: "aws";
|
|
5209
5319
|
}
|
|
5210
5320
|
/** @public */
|
|
5211
|
-
declare
|
|
5212
|
-
|
|
5321
|
+
declare class AutoEncrypter {
|
|
5322
|
+
constructor(client: MongoClient, options: AutoEncryptionOptions);
|
|
5213
5323
|
init(cb: Callback): void;
|
|
5214
5324
|
teardown(force: boolean, callback: Callback): void;
|
|
5215
5325
|
encrypt(ns: string, cmd: Document, options: any, callback: Callback<Document>): void;
|
|
@@ -10466,7 +10576,7 @@ interface SaveOptions {
|
|
|
10466
10576
|
* Flag to determine whether the entity that is being persisted
|
|
10467
10577
|
* should be reloaded during the persistence operation.
|
|
10468
10578
|
*
|
|
10469
|
-
* It will work only on databases which
|
|
10579
|
+
* It will work only on databases which do not support RETURNING / OUTPUT statement.
|
|
10470
10580
|
* Enabled by default.
|
|
10471
10581
|
*/
|
|
10472
10582
|
reload?: boolean;
|
|
@@ -12427,6 +12537,142 @@ declare class PlainObjectToNewEntityTransformer {
|
|
|
12427
12537
|
|
|
12428
12538
|
type IsolationLevel = "READ UNCOMMITTED" | "READ COMMITTED" | "REPEATABLE READ" | "SERIALIZABLE";
|
|
12429
12539
|
|
|
12540
|
+
/**
|
|
12541
|
+
* Query Builders can implement this interface to support where expression
|
|
12542
|
+
*/
|
|
12543
|
+
interface WhereExpressionBuilder {
|
|
12544
|
+
/**
|
|
12545
|
+
* Sets WHERE condition in the query builder.
|
|
12546
|
+
* If you had previously WHERE expression defined,
|
|
12547
|
+
* calling this function will override previously set WHERE conditions.
|
|
12548
|
+
* Additionally you can add parameters used in where expression.
|
|
12549
|
+
*/
|
|
12550
|
+
where(where: string, parameters?: ObjectLiteral): this;
|
|
12551
|
+
/**
|
|
12552
|
+
* Sets WHERE condition in the query builder.
|
|
12553
|
+
* If you had previously WHERE expression defined,
|
|
12554
|
+
* calling this function will override previously set WHERE conditions.
|
|
12555
|
+
* Additionally you can add parameters used in where expression.
|
|
12556
|
+
*/
|
|
12557
|
+
where(where: Brackets, parameters?: ObjectLiteral): this;
|
|
12558
|
+
/**
|
|
12559
|
+
* Sets WHERE condition in the query builder.
|
|
12560
|
+
* If you had previously WHERE expression defined,
|
|
12561
|
+
* calling this function will override previously set WHERE conditions.
|
|
12562
|
+
* Additionally you can add parameters used in where expression.
|
|
12563
|
+
*/
|
|
12564
|
+
where(where: ObjectLiteral, parameters?: ObjectLiteral): this;
|
|
12565
|
+
/**
|
|
12566
|
+
* Sets WHERE condition in the query builder.
|
|
12567
|
+
* If you had previously WHERE expression defined,
|
|
12568
|
+
* calling this function will override previously set WHERE conditions.
|
|
12569
|
+
* Additionally you can add parameters used in where expression.
|
|
12570
|
+
*/
|
|
12571
|
+
where(where: ObjectLiteral[], parameters?: ObjectLiteral): this;
|
|
12572
|
+
/**
|
|
12573
|
+
* Sets WHERE condition in the query builder.
|
|
12574
|
+
* If you had previously WHERE expression defined,
|
|
12575
|
+
* calling this function will override previously set WHERE conditions.
|
|
12576
|
+
* Additionally you can add parameters used in where expression.
|
|
12577
|
+
*/
|
|
12578
|
+
where(subQuery: (qb: this) => string, parameters?: ObjectLiteral): this;
|
|
12579
|
+
/**
|
|
12580
|
+
* Adds new AND WHERE condition in the query builder.
|
|
12581
|
+
* Additionally you can add parameters used in where expression.
|
|
12582
|
+
*/
|
|
12583
|
+
andWhere(where: string, parameters?: ObjectLiteral): this;
|
|
12584
|
+
/**
|
|
12585
|
+
* Adds new AND WHERE condition in the query builder.
|
|
12586
|
+
* Additionally you can add parameters used in where expression.
|
|
12587
|
+
*/
|
|
12588
|
+
andWhere(where: Brackets, parameters?: ObjectLiteral): this;
|
|
12589
|
+
/**
|
|
12590
|
+
* Adds new AND WHERE condition in the query builder.
|
|
12591
|
+
* Additionally you can add parameters used in where expression.
|
|
12592
|
+
*/
|
|
12593
|
+
andWhere(where: ObjectLiteral, parameters?: ObjectLiteral): this;
|
|
12594
|
+
/**
|
|
12595
|
+
* Adds new AND WHERE condition in the query builder.
|
|
12596
|
+
* Additionally you can add parameters used in where expression.
|
|
12597
|
+
*/
|
|
12598
|
+
andWhere(where: ObjectLiteral[], parameters?: ObjectLiteral): this;
|
|
12599
|
+
/**
|
|
12600
|
+
* Adds new AND WHERE condition in the query builder.
|
|
12601
|
+
* Additionally you can add parameters used in where expression.
|
|
12602
|
+
*/
|
|
12603
|
+
andWhere(subQuery: (qb: this) => string, parameters?: ObjectLiteral): this;
|
|
12604
|
+
/**
|
|
12605
|
+
* Adds new OR WHERE condition in the query builder.
|
|
12606
|
+
* Additionally you can add parameters used in where expression.
|
|
12607
|
+
*/
|
|
12608
|
+
orWhere(where: string, parameters?: ObjectLiteral): this;
|
|
12609
|
+
/**
|
|
12610
|
+
* Adds new OR WHERE condition in the query builder.
|
|
12611
|
+
* Additionally you can add parameters used in where expression.
|
|
12612
|
+
*/
|
|
12613
|
+
orWhere(where: Brackets, parameters?: ObjectLiteral): this;
|
|
12614
|
+
/**
|
|
12615
|
+
* Adds new OR WHERE condition in the query builder.
|
|
12616
|
+
* Additionally you can add parameters used in where expression.
|
|
12617
|
+
*/
|
|
12618
|
+
orWhere(where: ObjectLiteral, parameters?: ObjectLiteral): this;
|
|
12619
|
+
/**
|
|
12620
|
+
* Adds new OR WHERE condition in the query builder.
|
|
12621
|
+
* Additionally you can add parameters used in where expression.
|
|
12622
|
+
*/
|
|
12623
|
+
orWhere(where: ObjectLiteral[], parameters?: ObjectLiteral): this;
|
|
12624
|
+
/**
|
|
12625
|
+
* Adds new OR WHERE condition in the query builder.
|
|
12626
|
+
* Additionally you can add parameters used in where expression.
|
|
12627
|
+
*/
|
|
12628
|
+
orWhere(subQuery: (qb: this) => string, parameters?: ObjectLiteral): this;
|
|
12629
|
+
/**
|
|
12630
|
+
* Sets WHERE condition in the query builder with a condition for the given ids.
|
|
12631
|
+
* If you had previously WHERE expression defined,
|
|
12632
|
+
* calling this function will override previously set WHERE conditions.
|
|
12633
|
+
*
|
|
12634
|
+
* Ids are mixed.
|
|
12635
|
+
* It means if you have single primary key you can pass a simple id values, for example [1, 2, 3].
|
|
12636
|
+
* If you have multiple primary keys you need to pass object with property names and values specified,
|
|
12637
|
+
* for example [{ firstId: 1, secondId: 2 }, { firstId: 2, secondId: 3 }, ...]
|
|
12638
|
+
*/
|
|
12639
|
+
whereInIds(ids: any | any[]): this;
|
|
12640
|
+
/**
|
|
12641
|
+
* Adds new AND WHERE with conditions for the given ids.
|
|
12642
|
+
*
|
|
12643
|
+
* Ids are mixed.
|
|
12644
|
+
* It means if you have single primary key you can pass a simple id values, for example [1, 2, 3].
|
|
12645
|
+
* If you have multiple primary keys you need to pass object with property names and values specified,
|
|
12646
|
+
* for example [{ firstId: 1, secondId: 2 }, { firstId: 2, secondId: 3 }, ...]
|
|
12647
|
+
*/
|
|
12648
|
+
andWhereInIds(ids: any | any[]): this;
|
|
12649
|
+
/**
|
|
12650
|
+
* Adds new OR WHERE with conditions for the given ids.
|
|
12651
|
+
*
|
|
12652
|
+
* Ids are mixed.
|
|
12653
|
+
* It means if you have single primary key you can pass a simple id values, for example [1, 2, 3].
|
|
12654
|
+
* If you have multiple primary keys you need to pass object with property names and values specified,
|
|
12655
|
+
* for example [{ firstId: 1, secondId: 2 }, { firstId: 2, secondId: 3 }, ...]
|
|
12656
|
+
*/
|
|
12657
|
+
orWhereInIds(ids: any | any[]): this;
|
|
12658
|
+
}
|
|
12659
|
+
|
|
12660
|
+
/**
|
|
12661
|
+
* Syntax sugar.
|
|
12662
|
+
* Allows to use brackets in WHERE expressions for better syntax.
|
|
12663
|
+
*/
|
|
12664
|
+
declare class Brackets {
|
|
12665
|
+
readonly "@instanceof": symbol;
|
|
12666
|
+
/**
|
|
12667
|
+
* WHERE expression that will be taken into brackets.
|
|
12668
|
+
*/
|
|
12669
|
+
whereFactory: (qb: WhereExpressionBuilder) => any;
|
|
12670
|
+
/**
|
|
12671
|
+
* Given WHERE query builder that will build a WHERE expression that will be taken into brackets.
|
|
12672
|
+
*/
|
|
12673
|
+
constructor(whereFactory: (qb: WhereExpressionBuilder) => any);
|
|
12674
|
+
}
|
|
12675
|
+
|
|
12430
12676
|
type InsertOrUpdateOptions = {
|
|
12431
12677
|
/**
|
|
12432
12678
|
* If true, postgres will skip the update if no values would be changed (reduces writes)
|
|
@@ -12437,6 +12683,10 @@ type InsertOrUpdateOptions = {
|
|
|
12437
12683
|
*/
|
|
12438
12684
|
indexPredicate?: string;
|
|
12439
12685
|
upsertType?: UpsertType;
|
|
12686
|
+
overwriteCondition?: {
|
|
12687
|
+
where: string | Brackets | ObjectLiteral | ObjectLiteral[];
|
|
12688
|
+
parameters?: ObjectLiteral;
|
|
12689
|
+
};
|
|
12440
12690
|
};
|
|
12441
12691
|
|
|
12442
12692
|
/**
|
|
@@ -12507,7 +12757,7 @@ declare class EntityManager {
|
|
|
12507
12757
|
/**
|
|
12508
12758
|
* Executes raw SQL query and returns raw database results.
|
|
12509
12759
|
*
|
|
12510
|
-
* @see [Official docs](https://typeorm.io/entity-manager-api) for examples.
|
|
12760
|
+
* @see [Official docs](https://typeorm.io/docs/Working%20with%20Entity%20Manager/entity-manager-api/) for examples.
|
|
12511
12761
|
*/
|
|
12512
12762
|
query<T = any>(query: string, parameters?: any[]): Promise<T>;
|
|
12513
12763
|
/**
|
|
@@ -12697,7 +12947,7 @@ declare class EntityManager {
|
|
|
12697
12947
|
/**
|
|
12698
12948
|
* Restores entities by a given condition(s).
|
|
12699
12949
|
* Unlike save method executes a primitive operation without cascades, relations and other operations included.
|
|
12700
|
-
* Executes fast and efficient
|
|
12950
|
+
* Executes fast and efficient UPDATE query.
|
|
12701
12951
|
* Does not check if entity exist in the database.
|
|
12702
12952
|
* Condition(s) cannot be empty.
|
|
12703
12953
|
*/
|
|
@@ -13034,14 +13284,14 @@ declare class Repository<Entity extends ObjectLiteral> {
|
|
|
13034
13284
|
/**
|
|
13035
13285
|
* Records the delete date of entities by a given criteria.
|
|
13036
13286
|
* Unlike save method executes a primitive operation without cascades, relations and other operations included.
|
|
13037
|
-
* Executes fast and efficient
|
|
13287
|
+
* Executes fast and efficient UPDATE query.
|
|
13038
13288
|
* Does not check if entity exist in the database.
|
|
13039
13289
|
*/
|
|
13040
13290
|
softDelete(criteria: string | string[] | number | number[] | Date | Date[] | ObjectId | ObjectId[] | FindOptionsWhere<Entity> | FindOptionsWhere<Entity>[]): Promise<UpdateResult>;
|
|
13041
13291
|
/**
|
|
13042
13292
|
* Restores entities by a given criteria.
|
|
13043
13293
|
* Unlike save method executes a primitive operation without cascades, relations and other operations included.
|
|
13044
|
-
* Executes fast and efficient
|
|
13294
|
+
* Executes fast and efficient UPDATE query.
|
|
13045
13295
|
* Does not check if entity exist in the database.
|
|
13046
13296
|
*/
|
|
13047
13297
|
restore(criteria: string | string[] | number | number[] | Date | Date[] | ObjectId | ObjectId[] | FindOptionsWhere<Entity> | FindOptionsWhere<Entity>[]): Promise<UpdateResult>;
|
|
@@ -14374,13 +14624,13 @@ interface MongoConnectionOptions extends BaseDataSourceOptions {
|
|
|
14374
14624
|
readonly socketTimeoutMS?: number;
|
|
14375
14625
|
/**
|
|
14376
14626
|
* @deprecated A boolean to enable or disables TLS/SSL for the connection.
|
|
14377
|
-
* (The ssl option is equivalent to the tls option.)
|
|
14627
|
+
* (The ssl option is equivalent to the {@link tls} option.)
|
|
14378
14628
|
*/
|
|
14379
14629
|
readonly ssl?: boolean;
|
|
14380
14630
|
/**
|
|
14381
14631
|
* @deprecated SSL Root Certificate file path.
|
|
14382
14632
|
*
|
|
14383
|
-
* Will be removed in the next major version. Please use tlsCAFile instead.
|
|
14633
|
+
* Will be removed in the next major version. Please use {@link tlsCAFile} instead.
|
|
14384
14634
|
*/
|
|
14385
14635
|
readonly sslCA?: string;
|
|
14386
14636
|
/**
|
|
@@ -14392,25 +14642,25 @@ interface MongoConnectionOptions extends BaseDataSourceOptions {
|
|
|
14392
14642
|
/**
|
|
14393
14643
|
* @deprecated SSL Certificate file path.
|
|
14394
14644
|
*
|
|
14395
|
-
* Will be removed in the next major version. Please use tlsCertificateKeyFile instead.
|
|
14645
|
+
* Will be removed in the next major version. Please use {@link tlsCertificateKeyFile} instead.
|
|
14396
14646
|
*/
|
|
14397
14647
|
readonly sslCert?: string;
|
|
14398
14648
|
/**
|
|
14399
14649
|
* @deprecated SSL Key file file path.
|
|
14400
14650
|
*
|
|
14401
|
-
* Will be removed in the next major version. Please use tlsCertificateKeyFile instead.
|
|
14651
|
+
* Will be removed in the next major version. Please use {@link tlsCertificateKeyFile} instead.
|
|
14402
14652
|
*/
|
|
14403
14653
|
readonly sslKey?: string;
|
|
14404
14654
|
/**
|
|
14405
14655
|
* @deprecated SSL Certificate pass phrase.
|
|
14406
14656
|
*
|
|
14407
|
-
* Will be removed in the next major version. Please use tlsCertificateKeyFilePassword instead.
|
|
14657
|
+
* Will be removed in the next major version. Please use {@link tlsCertificateKeyFilePassword} instead.
|
|
14408
14658
|
*/
|
|
14409
14659
|
readonly sslPass?: string;
|
|
14410
14660
|
/**
|
|
14411
14661
|
* @deprecated Validate mongod server certificate against Certificate Authority
|
|
14412
14662
|
*
|
|
14413
|
-
* Will be removed in the next major version. Please use tlsAllowInvalidCertificates instead.
|
|
14663
|
+
* Will be removed in the next major version. Please use {@link tlsAllowInvalidCertificates} instead.
|
|
14414
14664
|
*/
|
|
14415
14665
|
readonly sslValidate?: boolean;
|
|
14416
14666
|
/**
|
|
@@ -14430,13 +14680,13 @@ interface MongoConnectionOptions extends BaseDataSourceOptions {
|
|
|
14430
14680
|
*/
|
|
14431
14681
|
readonly tlsCertificateKeyFile?: string;
|
|
14432
14682
|
/**
|
|
14433
|
-
* Specifies the password to de-crypt the tlsCertificateKeyFile.
|
|
14683
|
+
* Specifies the password to de-crypt the {@link tlsCertificateKeyFile}.
|
|
14434
14684
|
*/
|
|
14435
14685
|
readonly tlsCertificateKeyFilePassword?: string;
|
|
14436
14686
|
/**
|
|
14437
14687
|
* @deprecated The write concern w value
|
|
14438
14688
|
*
|
|
14439
|
-
* Please use the
|
|
14689
|
+
* Please use the {@link writeConcern} option instead
|
|
14440
14690
|
*/
|
|
14441
14691
|
readonly w?: string | number;
|
|
14442
14692
|
/**
|
|
@@ -14447,7 +14697,7 @@ interface MongoConnectionOptions extends BaseDataSourceOptions {
|
|
|
14447
14697
|
/**
|
|
14448
14698
|
* @deprecated The write concern timeout
|
|
14449
14699
|
*
|
|
14450
|
-
* Please use the
|
|
14700
|
+
* Please use the {@link writeConcern} option instead
|
|
14451
14701
|
*/
|
|
14452
14702
|
readonly wtimeoutMS?: number;
|
|
14453
14703
|
}
|
|
@@ -14740,40 +14990,66 @@ interface SapConnectionOptions extends BaseDataSourceOptions, SapConnectionCrede
|
|
|
14740
14990
|
readonly schema?: string;
|
|
14741
14991
|
/**
|
|
14742
14992
|
* The driver objects
|
|
14743
|
-
* This defaults to require("
|
|
14993
|
+
* This defaults to require("@sap/hana-client")
|
|
14744
14994
|
*/
|
|
14745
14995
|
readonly driver?: any;
|
|
14746
14996
|
/**
|
|
14747
|
-
*
|
|
14748
|
-
* This defaults to require("@sap/hana-client")
|
|
14997
|
+
* @deprecated Use {@link driver} instead.
|
|
14749
14998
|
*/
|
|
14750
14999
|
readonly hanaClientDriver?: any;
|
|
14751
15000
|
/**
|
|
14752
15001
|
* Pool options.
|
|
14753
15002
|
*/
|
|
14754
15003
|
readonly pool?: {
|
|
15004
|
+
/**
|
|
15005
|
+
* Maximum number of open connections created by the pool, each of which
|
|
15006
|
+
* may be in the pool waiting to be reused or may no longer be in the
|
|
15007
|
+
* pool and actively being used (default: 10).
|
|
15008
|
+
*/
|
|
15009
|
+
readonly maxConnectedOrPooled?: number;
|
|
15010
|
+
/**
|
|
15011
|
+
* Defines the maximum time, in seconds, that connections are allowed to
|
|
15012
|
+
* remain in the pool before being marked for eviction (default: 30).
|
|
15013
|
+
*/
|
|
15014
|
+
readonly maxPooledIdleTime?: number;
|
|
15015
|
+
/**
|
|
15016
|
+
* Determines whether or not the pooled connection should be tested for
|
|
15017
|
+
* viability before being reused (default: false).
|
|
15018
|
+
*/
|
|
15019
|
+
readonly pingCheck?: boolean;
|
|
15020
|
+
/**
|
|
15021
|
+
* Maximum number of connections allowed to be in the pool, waiting to
|
|
15022
|
+
* be reused (default: 0, no limit).
|
|
15023
|
+
*/
|
|
15024
|
+
readonly poolCapacity?: number;
|
|
14755
15025
|
/**
|
|
14756
15026
|
* Max number of connections.
|
|
15027
|
+
* @deprecated Use {@link maxConnectedOrPooled} instead.
|
|
14757
15028
|
*/
|
|
14758
15029
|
readonly max?: number;
|
|
14759
15030
|
/**
|
|
14760
15031
|
* Minimum number of connections.
|
|
15032
|
+
* @deprecated Obsolete, no alternative exists.
|
|
14761
15033
|
*/
|
|
14762
15034
|
readonly min?: number;
|
|
14763
15035
|
/**
|
|
14764
|
-
* Maximum number of waiting requests allowed.
|
|
15036
|
+
* Maximum number of waiting requests allowed.
|
|
15037
|
+
* @deprecated Obsolete, no alternative exists.
|
|
14765
15038
|
*/
|
|
14766
15039
|
readonly maxWaitingRequests?: number;
|
|
14767
15040
|
/**
|
|
14768
|
-
* Max milliseconds a request will wait for a resource before timing out.
|
|
15041
|
+
* Max milliseconds a request will wait for a resource before timing out.
|
|
15042
|
+
* @deprecated Obsolete, no alternative exists.
|
|
14769
15043
|
*/
|
|
14770
15044
|
readonly requestTimeout?: number;
|
|
14771
15045
|
/**
|
|
14772
|
-
* How often to run resource timeout checks.
|
|
15046
|
+
* How often to run resource timeout checks.
|
|
15047
|
+
* @deprecated Obsolete, no alternative exists.
|
|
14773
15048
|
*/
|
|
14774
15049
|
readonly checkInterval?: number;
|
|
14775
15050
|
/**
|
|
14776
|
-
* Idle timeout
|
|
15051
|
+
* Idle timeout (in milliseconds).
|
|
15052
|
+
* @deprecated Use {@link maxPooledIdleTime} (in seconds) instead .
|
|
14777
15053
|
*/
|
|
14778
15054
|
readonly idleTimeout?: number;
|
|
14779
15055
|
/**
|
|
@@ -14782,7 +15058,6 @@ interface SapConnectionOptions extends BaseDataSourceOptions, SapConnectionCrede
|
|
|
14782
15058
|
*/
|
|
14783
15059
|
readonly poolErrorHandler?: (err: any) => any;
|
|
14784
15060
|
};
|
|
14785
|
-
readonly poolSize?: never;
|
|
14786
15061
|
}
|
|
14787
15062
|
|
|
14788
15063
|
/**
|
|
@@ -14940,6 +15215,19 @@ interface SpannerConnectionCredentialsOptions {
|
|
|
14940
15215
|
* Database host port.
|
|
14941
15216
|
*/
|
|
14942
15217
|
readonly databaseId?: string;
|
|
15218
|
+
/**
|
|
15219
|
+
* Object containing client_email and private_key properties, or the external account client options. Cannot be used with apiKey.
|
|
15220
|
+
*/
|
|
15221
|
+
readonly credentials?: {
|
|
15222
|
+
/**
|
|
15223
|
+
* Client email connection credentials (Optional)
|
|
15224
|
+
*/
|
|
15225
|
+
readonly client_email: string;
|
|
15226
|
+
/**
|
|
15227
|
+
* Private key connection credentials (Optional)
|
|
15228
|
+
*/
|
|
15229
|
+
readonly private_key: string;
|
|
15230
|
+
};
|
|
14943
15231
|
}
|
|
14944
15232
|
|
|
14945
15233
|
/**
|
|
@@ -15015,11 +15303,6 @@ interface SpannerConnectionOptions extends BaseConnectionOptions, SpannerConnect
|
|
|
15015
15303
|
* (Default: false)
|
|
15016
15304
|
*/
|
|
15017
15305
|
readonly multipleStatements?: boolean;
|
|
15018
|
-
/**
|
|
15019
|
-
* Use spatial functions like GeomFromText and AsText which are removed in MySQL 8.
|
|
15020
|
-
* (Default: true)
|
|
15021
|
-
*/
|
|
15022
|
-
readonly legacySpatialSupport?: boolean;
|
|
15023
15306
|
/**
|
|
15024
15307
|
* List of connection flags to use other than the default ones. It is also possible to blacklist default ones.
|
|
15025
15308
|
* For more information, check https://github.com/mysqljs/mysql#connection-flags.
|
|
@@ -15797,6 +16080,7 @@ declare class QueryExpressionMap {
|
|
|
15797
16080
|
skipUpdateIfNoValuesChanged?: boolean;
|
|
15798
16081
|
indexPredicate?: string;
|
|
15799
16082
|
upsertType?: UpsertType;
|
|
16083
|
+
overwriteCondition?: WhereClause[];
|
|
15800
16084
|
};
|
|
15801
16085
|
/**
|
|
15802
16086
|
* JOIN queries.
|
|
@@ -16021,142 +16305,6 @@ declare class QueryExpressionMap {
|
|
|
16021
16305
|
clone(): QueryExpressionMap;
|
|
16022
16306
|
}
|
|
16023
16307
|
|
|
16024
|
-
/**
|
|
16025
|
-
* Syntax sugar.
|
|
16026
|
-
* Allows to use brackets in WHERE expressions for better syntax.
|
|
16027
|
-
*/
|
|
16028
|
-
declare class Brackets {
|
|
16029
|
-
readonly "@instanceof": symbol;
|
|
16030
|
-
/**
|
|
16031
|
-
* WHERE expression that will be taken into brackets.
|
|
16032
|
-
*/
|
|
16033
|
-
whereFactory: (qb: WhereExpressionBuilder) => any;
|
|
16034
|
-
/**
|
|
16035
|
-
* Given WHERE query builder that will build a WHERE expression that will be taken into brackets.
|
|
16036
|
-
*/
|
|
16037
|
-
constructor(whereFactory: (qb: WhereExpressionBuilder) => any);
|
|
16038
|
-
}
|
|
16039
|
-
|
|
16040
|
-
/**
|
|
16041
|
-
* Query Builders can implement this interface to support where expression
|
|
16042
|
-
*/
|
|
16043
|
-
interface WhereExpressionBuilder {
|
|
16044
|
-
/**
|
|
16045
|
-
* Sets WHERE condition in the query builder.
|
|
16046
|
-
* If you had previously WHERE expression defined,
|
|
16047
|
-
* calling this function will override previously set WHERE conditions.
|
|
16048
|
-
* Additionally you can add parameters used in where expression.
|
|
16049
|
-
*/
|
|
16050
|
-
where(where: string, parameters?: ObjectLiteral): this;
|
|
16051
|
-
/**
|
|
16052
|
-
* Sets WHERE condition in the query builder.
|
|
16053
|
-
* If you had previously WHERE expression defined,
|
|
16054
|
-
* calling this function will override previously set WHERE conditions.
|
|
16055
|
-
* Additionally you can add parameters used in where expression.
|
|
16056
|
-
*/
|
|
16057
|
-
where(where: Brackets, parameters?: ObjectLiteral): this;
|
|
16058
|
-
/**
|
|
16059
|
-
* Sets WHERE condition in the query builder.
|
|
16060
|
-
* If you had previously WHERE expression defined,
|
|
16061
|
-
* calling this function will override previously set WHERE conditions.
|
|
16062
|
-
* Additionally you can add parameters used in where expression.
|
|
16063
|
-
*/
|
|
16064
|
-
where(where: ObjectLiteral, parameters?: ObjectLiteral): this;
|
|
16065
|
-
/**
|
|
16066
|
-
* Sets WHERE condition in the query builder.
|
|
16067
|
-
* If you had previously WHERE expression defined,
|
|
16068
|
-
* calling this function will override previously set WHERE conditions.
|
|
16069
|
-
* Additionally you can add parameters used in where expression.
|
|
16070
|
-
*/
|
|
16071
|
-
where(where: ObjectLiteral[], parameters?: ObjectLiteral): this;
|
|
16072
|
-
/**
|
|
16073
|
-
* Sets WHERE condition in the query builder.
|
|
16074
|
-
* If you had previously WHERE expression defined,
|
|
16075
|
-
* calling this function will override previously set WHERE conditions.
|
|
16076
|
-
* Additionally you can add parameters used in where expression.
|
|
16077
|
-
*/
|
|
16078
|
-
where(subQuery: (qb: this) => string, parameters?: ObjectLiteral): this;
|
|
16079
|
-
/**
|
|
16080
|
-
* Adds new AND WHERE condition in the query builder.
|
|
16081
|
-
* Additionally you can add parameters used in where expression.
|
|
16082
|
-
*/
|
|
16083
|
-
andWhere(where: string, parameters?: ObjectLiteral): this;
|
|
16084
|
-
/**
|
|
16085
|
-
* Adds new AND WHERE condition in the query builder.
|
|
16086
|
-
* Additionally you can add parameters used in where expression.
|
|
16087
|
-
*/
|
|
16088
|
-
andWhere(where: Brackets, parameters?: ObjectLiteral): this;
|
|
16089
|
-
/**
|
|
16090
|
-
* Adds new AND WHERE condition in the query builder.
|
|
16091
|
-
* Additionally you can add parameters used in where expression.
|
|
16092
|
-
*/
|
|
16093
|
-
andWhere(where: ObjectLiteral, parameters?: ObjectLiteral): this;
|
|
16094
|
-
/**
|
|
16095
|
-
* Adds new AND WHERE condition in the query builder.
|
|
16096
|
-
* Additionally you can add parameters used in where expression.
|
|
16097
|
-
*/
|
|
16098
|
-
andWhere(where: ObjectLiteral[], parameters?: ObjectLiteral): this;
|
|
16099
|
-
/**
|
|
16100
|
-
* Adds new AND WHERE condition in the query builder.
|
|
16101
|
-
* Additionally you can add parameters used in where expression.
|
|
16102
|
-
*/
|
|
16103
|
-
andWhere(subQuery: (qb: this) => string, parameters?: ObjectLiteral): this;
|
|
16104
|
-
/**
|
|
16105
|
-
* Adds new OR WHERE condition in the query builder.
|
|
16106
|
-
* Additionally you can add parameters used in where expression.
|
|
16107
|
-
*/
|
|
16108
|
-
orWhere(where: string, parameters?: ObjectLiteral): this;
|
|
16109
|
-
/**
|
|
16110
|
-
* Adds new OR WHERE condition in the query builder.
|
|
16111
|
-
* Additionally you can add parameters used in where expression.
|
|
16112
|
-
*/
|
|
16113
|
-
orWhere(where: Brackets, parameters?: ObjectLiteral): this;
|
|
16114
|
-
/**
|
|
16115
|
-
* Adds new OR WHERE condition in the query builder.
|
|
16116
|
-
* Additionally you can add parameters used in where expression.
|
|
16117
|
-
*/
|
|
16118
|
-
orWhere(where: ObjectLiteral, parameters?: ObjectLiteral): this;
|
|
16119
|
-
/**
|
|
16120
|
-
* Adds new OR WHERE condition in the query builder.
|
|
16121
|
-
* Additionally you can add parameters used in where expression.
|
|
16122
|
-
*/
|
|
16123
|
-
orWhere(where: ObjectLiteral[], parameters?: ObjectLiteral): this;
|
|
16124
|
-
/**
|
|
16125
|
-
* Adds new OR WHERE condition in the query builder.
|
|
16126
|
-
* Additionally you can add parameters used in where expression.
|
|
16127
|
-
*/
|
|
16128
|
-
orWhere(subQuery: (qb: this) => string, parameters?: ObjectLiteral): this;
|
|
16129
|
-
/**
|
|
16130
|
-
* Sets WHERE condition in the query builder with a condition for the given ids.
|
|
16131
|
-
* If you had previously WHERE expression defined,
|
|
16132
|
-
* calling this function will override previously set WHERE conditions.
|
|
16133
|
-
*
|
|
16134
|
-
* Ids are mixed.
|
|
16135
|
-
* It means if you have single primary key you can pass a simple id values, for example [1, 2, 3].
|
|
16136
|
-
* If you have multiple primary keys you need to pass object with property names and values specified,
|
|
16137
|
-
* for example [{ firstId: 1, secondId: 2 }, { firstId: 2, secondId: 3 }, ...]
|
|
16138
|
-
*/
|
|
16139
|
-
whereInIds(ids: any | any[]): this;
|
|
16140
|
-
/**
|
|
16141
|
-
* Adds new AND WHERE with conditions for the given ids.
|
|
16142
|
-
*
|
|
16143
|
-
* Ids are mixed.
|
|
16144
|
-
* It means if you have single primary key you can pass a simple id values, for example [1, 2, 3].
|
|
16145
|
-
* If you have multiple primary keys you need to pass object with property names and values specified,
|
|
16146
|
-
* for example [{ firstId: 1, secondId: 2 }, { firstId: 2, secondId: 3 }, ...]
|
|
16147
|
-
*/
|
|
16148
|
-
andWhereInIds(ids: any | any[]): this;
|
|
16149
|
-
/**
|
|
16150
|
-
* Adds new OR WHERE with conditions for the given ids.
|
|
16151
|
-
*
|
|
16152
|
-
* Ids are mixed.
|
|
16153
|
-
* It means if you have single primary key you can pass a simple id values, for example [1, 2, 3].
|
|
16154
|
-
* If you have multiple primary keys you need to pass object with property names and values specified,
|
|
16155
|
-
* for example [{ firstId: 1, secondId: 2 }, { firstId: 2, secondId: 3 }, ...]
|
|
16156
|
-
*/
|
|
16157
|
-
orWhereInIds(ids: any | any[]): this;
|
|
16158
|
-
}
|
|
16159
|
-
|
|
16160
16308
|
/**
|
|
16161
16309
|
* Allows to build complex sql queries in a fashion way and execute those queries.
|
|
16162
16310
|
*/
|
|
@@ -16615,6 +16763,23 @@ declare class InsertQueryBuilder<Entity extends ObjectLiteral> extends QueryBuil
|
|
|
16615
16763
|
* @param column
|
|
16616
16764
|
*/
|
|
16617
16765
|
protected isOverridingAutoIncrementBehavior(column: ColumnMetadata): boolean;
|
|
16766
|
+
/**
|
|
16767
|
+
* Creates MERGE express used to perform insert query.
|
|
16768
|
+
*/
|
|
16769
|
+
protected createMergeExpression(): string;
|
|
16770
|
+
/**
|
|
16771
|
+
* Creates list of values needs to be inserted in the VALUES expression.
|
|
16772
|
+
*/
|
|
16773
|
+
protected createMergeIntoSourceExpression(mergeSourceAlias: string): string;
|
|
16774
|
+
/**
|
|
16775
|
+
* Creates list of values needs to be inserted in the VALUES expression.
|
|
16776
|
+
*/
|
|
16777
|
+
protected createMergeIntoInsertValuesExpression(mergeSourceAlias: string): string;
|
|
16778
|
+
/**
|
|
16779
|
+
* Create upsert search condition expression.
|
|
16780
|
+
*/
|
|
16781
|
+
protected createUpsertConditionExpression(): string;
|
|
16782
|
+
protected createColumnValueExpression(valueSets: ObjectLiteral[], valueSetIndex: number, column: ColumnMetadata): string;
|
|
16618
16783
|
}
|
|
16619
16784
|
|
|
16620
16785
|
/**
|
|
@@ -17526,6 +17691,7 @@ declare class SelectQueryBuilder<Entity extends ObjectLiteral> extends QueryBuil
|
|
|
17526
17691
|
* This method is useful to build pagination.
|
|
17527
17692
|
*/
|
|
17528
17693
|
getManyAndCount(): Promise<[Entity[], number]>;
|
|
17694
|
+
private lazyCount;
|
|
17529
17695
|
/**
|
|
17530
17696
|
* Executes built SQL query and returns raw data stream.
|
|
17531
17697
|
*/
|
|
@@ -19215,5 +19381,5 @@ interface QueryResultCache {
|
|
|
19215
19381
|
remove(identifiers: string[], queryRunner?: QueryRunner): Promise<void>;
|
|
19216
19382
|
}
|
|
19217
19383
|
|
|
19218
|
-
export { EntityManager as E, Migration as M, Repository as R, SelectQueryBuilder as S, TreeRepository as T, DataSource as a, MongoEntityManager as a2, SqljsEntityManager as a3, ColumnMetadata as a4, RelationMetadata as a5, FindOperator as a7, EqualOperator as a8, UpdateQueryBuilder as aA, SoftDeleteQueryBuilder as aB, RelationQueryBuilder as aC, Brackets as aD, NotBrackets as aE, Query as aF, TableCheck as aG, TableColumn as aH, TableExclusion as aI, TableForeignKey as aJ, TableIndex as aK, TableUnique as aL, View as aM, InsertResult as an, ObjectId as ao, UpdateResult as aq, DeleteResult as as, Table as au, SqlInMemory as aw, InsertQueryBuilder as ay, DeleteQueryBuilder as az,
|
|
19219
|
-
export type { RelationCountMetadataArgs as $,
|
|
19384
|
+
export { EntityManager as E, Migration as M, Repository as R, SelectQueryBuilder as S, TreeRepository as T, DataSource as a, MongoEntityManager as a2, SqljsEntityManager as a3, ColumnMetadata as a4, RelationMetadata as a5, FindOperator as a7, EqualOperator as a8, UpdateQueryBuilder as aA, SoftDeleteQueryBuilder as aB, RelationQueryBuilder as aC, Brackets as aD, NotBrackets as aE, Query as aF, TableCheck as aG, TableColumn as aH, TableExclusion as aI, TableForeignKey as aJ, TableIndex as aK, TableUnique as aL, View as aM, InsertResult as an, ObjectId as ao, UpdateResult as aq, DeleteResult as as, Table as au, SqlInMemory as aw, InsertQueryBuilder as ay, DeleteQueryBuilder as az, MinKey as b$, Binary as bO, BSONRegExp as bP, BSONSymbol as bQ, BSONType as bR, Code as bS, DBRef as bT, Decimal128 as bU, deserialize as bV, Double as bX, Int32 as bY, Long as bZ, MaxKey as b_, QueryBuilder as bc, QueryResult as bd, EntitySchemaEmbeddedColumnOptions as be, EntitySchemaOptions as bf, serialize as c0, Timestamp as c1, AbstractCursor as c2, Admin as c8, ClientSession as cZ, AggregationCursor as ca, AuthMechanism as ci, AutoEncrypter as ck, AutoEncryptionLoggerLevel as cl, Batch as co, BatchType as cp, BulkOperationBase as ct, BulkWriteResult as cw, CancellationToken as cy, ChangeStream as cz, EntityMetadata as d, Collection as d4, CommandFailedEvent as d9, CURSOR_FLAGS as dD, Db as dG, ExplainVerbosity as d_, CommandStartedEvent as db, CommandSucceededEvent as dc, Compressor as de, ConnectionCheckedInEvent as dh, ConnectionCheckedOutEvent as di, ConnectionCheckOutFailedEvent as dj, ConnectionCheckOutStartedEvent as dk, ConnectionClosedEvent as dl, ConnectionCreatedEvent as dm, ConnectionPoolClearedEvent as dq, ConnectionPoolClosedEvent as dr, ConnectionPoolCreatedEvent as ds, ConnectionPoolMonitoringEvent as du, ConnectionPoolReadyEvent as dw, ConnectionReadyEvent as dx, MongoDBNamespace as e$, FindCursor as e3, FindOperators as e7, LEGAL_TCP_SOCKET_OPTIONS as eD, LEGAL_TLS_SOCKET_OPTIONS as eE, ListCollectionsCursor as eF, ListIndexesCursor as eJ, MONGO_CLIENT_EVENTS as eN, MongoAPIError as eO, MongoAWSError as eP, MongoBatchReExecutionError as eQ, MongoBulkWriteError as eR, MongoChangeStreamError as eS, MongoClient as eT, MongoCompatibilityError as eW, MongoCredentials as eX, MongoCursorExhaustedError as eZ, MongoCursorInUseError as e_, GridFSBucket as eb, GridFSBucketReadStream as ee, GridFSBucketWriteStream as eh, GSSAPICanonicalizationValue as el, HostAddress as eo, MongoRepository as f, MongoDecompressionError as f0, MongoDriverError as f1, MongoError as f2, MongoErrorLabel as f3, MongoExpiredSessionError as f4, MongoGridFSChunkError as f5, MongoGridFSStreamError as f6, MongoInvalidArgumentError as f7, MongoKerberosError as f8, MongoMissingCredentialsError as f9, OrderedBulkOperation as fI, ProfilingLevel as fK, ReadConcern as fR, ReadConcernLevel as fS, ReadPreference as fU, ReadPreferenceMode as fY, MongoMissingDependencyError as fa, MongoNetworkError as fb, MongoNetworkTimeoutError as fd, MongoNotConnectedError as fe, MongoParseError as fg, MongoRuntimeError as fh, MongoServerClosedError as fi, MongoServerError as fj, MongoServerSelectionError as fk, MongoSystemError as fl, MongoTailableCursorError as fm, MongoTopologyClosedError as fn, MongoTransactionError as fo, MongoUnexpectedServerResponseError as fp, MongoWriteConcernError as fq, ReturnDocument as g5, TopologyClosedEvent as gF, TopologyDescription as gG, TopologyDescriptionChangedEvent as gH, TopologyOpeningEvent as gK, TopologyType as gL, Transaction as gN, TypedEventEmitter as gP, UnorderedBulkOperation as gQ, ServerApiVersion as gc, ServerCapabilities as gd, ServerClosedEvent as ge, ServerDescription as gf, ServerDescriptionChangedEvent as gg, ServerHeartbeatFailedEvent as gi, ServerHeartbeatStartedEvent as gj, ServerHeartbeatSucceededEvent as gk, ServerOpeningEvent as gl, ServerSession as gm, ServerType as go, StreamDescription as gu, WriteConcern as h2, WriteConcernError as h3, WriteError as h7, bson_typings_d as h8, EntitySchema as j };
|
|
19385
|
+
export type { RelationCountMetadataArgs as $, PropertyTypeFactory as A, OnUpdateType as B, ColumnOptions as C, DataSourceOptions as D, TableMetadataArgs as F, TreeMetadataArgs as G, IndexMetadataArgs as H, IsolationLevel as I, JoinColumnOptions as J, UniqueMetadataArgs as K, CheckMetadataArgs as L, NamingStrategyInterface as N, ObjectLiteral as O, PrimaryGeneratedColumnType as P, QueryResultCache as Q, UnsignedColumnType as U, ValueTransformer as V, WithLengthColumnType as W, ExclusionMetadataArgs as X, ColumnMetadataArgs as Y, RelationMetadataArgs as Z, EntityListenerMetadataArgs as _, CordovaConnectionOptions as a$, RelationIdMetadataArgs as a0, EmbeddedMetadataArgs as a1, DatabaseType as a6, FindOneOptions as a9, QueryResultCacheOptions as aN, MysqlConnectionOptions as aO, MysqlConnectionCredentialsOptions as aP, PostgresConnectionOptions as aQ, PostgresConnectionCredentialsOptions as aR, CockroachConnectionOptions as aS, CockroachConnectionCredentialsOptions as aT, SqliteConnectionOptions as aU, SqlServerConnectionOptions as aV, SqlServerConnectionCredentialsOptions as aW, SapConnectionOptions as aX, SapConnectionCredentialsOptions as aY, OracleConnectionOptions as aZ, OracleConnectionCredentialsOptions as a_, FindManyOptions as aa, FindTreeOptions as ab, Logger as ac, LoggerOptions as ad, LogLevel as ae, LogMessageType as af, LogMessage as ag, PrepareLogMessagesOptions as ah, FileLoggerOptions as ai, SaveOptions as aj, RemoveOptions as ak, DeepPartial as al, QueryDeepPartialEntity as am, FindOptionsWhere as ap, UpsertOptions as ar, PickKeysByType as at, SchemaBuilder as av, TableColumnOptions as ax, Driver as b, NativescriptConnectionOptions as b0, ReactNativeConnectionOptions as b1, SqljsConnectionOptions as b2, MongoConnectionOptions as b3, AuroraMysqlConnectionOptions as b4, AuroraMysqlConnectionCredentialsOptions as b5, AuroraPostgresConnectionOptions as b6, ExpoConnectionOptions as b7, BetterSqlite3ConnectionOptions as b8, CapacitorConnectionOptions as b9, FindOptionsRelationByString as bA, FindOptionsSelectProperty as bB, FindOptionsSelect as bC, FindOptionsSelectByString as bD, FindOptionsWhereProperty as bE, JoinOptions as bF, LogMessageFormat as bG, TableCheckOptions as bH, TableExclusionOptions as bI, TableForeignKeyOptions as bJ, TableIndexOptions as bK, TableOptions as bL, TableUniqueOptions as bM, ViewOptions as bN, Document as bW, SpannerConnectionOptions as ba, SpannerConnectionCredentialsOptions as bb, WhereExpressionBuilder as bg, MigrationInterface as bh, InsertEvent as bi, LoadEvent as bj, UpdateEvent as bk, RemoveEvent as bl, SoftRemoveEvent as bm, RecoverEvent as bn, TransactionCommitEvent as bo, TransactionRollbackEvent as bp, TransactionStartEvent as bq, EntitySchemaColumnOptions as br, EntitySchemaIndexOptions as bs, EntitySchemaRelationOptions as bt, FindOperatorType as bu, FindOptionsOrderProperty as bv, FindOptionsOrder as bw, FindOptionsOrderValue as bx, FindOptionsRelationsProperty as by, FindOptionsRelations as bz, EntitySubscriberInterface as c, ClientSessionOptions as c$, AbstractCursorEvents as c3, AbstractCursorOptions as c4, AcceptedFields as c5, AddToSetOperators as c6, AddUserOptions as c7, AggregateOptions as c9, ChangeStreamCollModDocument as cA, ChangeStreamCreateDocument as cB, ChangeStreamCreateIndexDocument as cC, ChangeStreamDeleteDocument as cD, ChangeStreamDocument as cE, ChangeStreamDocumentCollectionUUID as cF, ChangeStreamDocumentCommon as cG, ChangeStreamDocumentKey as cH, ChangeStreamDocumentOperationDescription as cI, ChangeStreamDropDatabaseDocument as cJ, ChangeStreamDropDocument as cK, ChangeStreamDropIndexDocument as cL, ChangeStreamEvents as cM, ChangeStreamInsertDocument as cN, ChangeStreamInvalidateDocument as cO, ChangeStreamNameSpace as cP, ChangeStreamOptions as cQ, ChangeStreamRefineCollectionShardKeyDocument as cR, ChangeStreamRenameDocument as cS, ChangeStreamReplaceDocument as cT, ChangeStreamReshardCollectionDocument as cU, ChangeStreamShardCollectionDocument as cV, ChangeStreamUpdateDocument as cW, ClientMetadata as cX, ClientMetadataOptions as cY, ClientSessionEvents as c_, AggregationCursorOptions as cb, AlternativeType as cc, AnyBulkWriteOperation as cd, AnyError as ce, ArrayElement as cf, ArrayOperator as cg, Auth as ch, AuthMechanismProperties as cj, AutoEncryptionOptions as cm, AutoEncryptionTlsOptions as cn, BitwiseFilter as cq, BSONSerializeOptions as cr, BSONTypeAlias as cs, BulkWriteOperationError as cu, BulkWriteOptions as cv, Callback as cx, ExplainVerbosityLike as d$, CloseOptions as d0, ClusteredCollectionOptions as d1, ClusterTime as d2, CollationOptions as d3, CollectionInfo as d5, CollectionOptions as d6, CollStats as d7, CollStatsOptions as d8, CountOptions as dA, CreateCollectionOptions as dB, CreateIndexesOptions as dC, CursorFlag as dE, CursorStreamOptions as dF, DbOptions as dH, DbStatsOptions as dI, DeleteManyModel as dJ, DeleteOneModel as dK, DeleteOptions as dL, DeleteStatement as dM, DistinctOptions as dN, DriverInfo as dO, DropCollectionOptions as dP, DropDatabaseOptions as dQ, DropIndexesOptions as dR, EndSessionOptions as dS, EnhancedOmit as dT, ErrorDescription as dU, EstimatedDocumentCountOptions as dV, EvalOptions as dW, EventEmitterWithState as dX, EventsDescription as dY, ExplainOptions as dZ, CommandOperationOptions as da, CommonEvents as dd, CompressorName as df, Condition as dg, ConnectionEvents as dn, ConnectionOptions as dp, ConnectionPoolEvents as dt, ConnectionPoolOptions as dv, ConnectOptions as dy, CountDocumentsOptions as dz, EntityTarget as e, Filter as e0, FilterOperations as e1, FilterOperators as e2, FindOneAndDeleteOptions as e4, FindOneAndReplaceOptions as e5, FindOneAndUpdateOptions as e6, FindOptions as e8, Flatten as e9, Join as eA, KeysOfAType as eB, KeysOfOtherType as eC, ListCollectionsOptions as eG, ListDatabasesOptions as eH, ListDatabasesResult as eI, ListIndexesOptions as eK, MatchKeysAndValues as eL, ModifyResult as eM, MongoClientEvents as eU, MongoClientOptions as eV, MongoCredentialsOptions as eY, GenericListener as ea, GridFSBucketEvents as ec, GridFSBucketOptions as ed, GridFSBucketReadStreamOptions as ef, GridFSBucketReadStreamOptionsWithRevision as eg, GridFSBucketWriteStreamOptions as ei, GridFSChunk as ej, GridFSFile as ek, HedgeOptions as em, Hint as en, IndexDescription as ep, IndexDirection as eq, IndexInformationOptions as er, IndexSpecification as es, InferIdType as et, InsertManyResult as eu, InsertOneModel as ev, InsertOneOptions as ew, InsertOneResult as ex, IntegerType as ey, IsAny as ez, RemoveUserOptions as f$, OIDCRequestFunction as fA, OIDCRequestTokenResult as fB, OneOrMore as fC, OnlyFieldsOfType as fD, OperationOptions as fE, OperationTime as fF, OptionalId as fG, OptionalUnlessRequiredId as fH, PkFactory as fJ, ProfilingLevelOptions as fL, PropertyType as fM, ProxyOptions as fN, PullAllOperator as fO, PullOperator as fP, PushOperator as fQ, ReadConcernLike as fT, ReadPreferenceFromOptions as fV, ReadPreferenceLike as fW, ReadPreferenceLikeOptions as fX, ReadPreferenceOptions as fZ, RegExpOrString as f_, MongoNetworkErrorOptions as fc, MongoOptions as ff, MonitorEvents as fr, MonitorOptions as fs, NestedPaths as ft, NestedPathsOfType as fu, NonObjectIdLikeDocument as fv, NotAcceptedFields as fw, NumericType as fx, OIDCMechanismServerStep1 as fy, OIDCRefreshFunction as fz, QueryRunner as g, WithoutId as g$, RenameOptions as g0, ReplaceOneModel as g1, ReplaceOptions as g2, ResumeOptions as g3, ResumeToken as g4, RoleSpecification as g6, RootFilterOperators as g7, RunCommandOptions as g8, SchemaMember as g9, SupportedSocketOptions as gA, SupportedTLSConnectionOptions as gB, SupportedTLSSocketOptions as gC, TagSet as gD, TimeSeriesCollectionOptions as gE, TopologyDescriptionOptions as gI, TopologyEvents as gJ, TopologyVersion as gM, TransactionOptions as gO, UpdateDescription as gR, UpdateFilter as gS, UpdateManyModel as gT, UpdateOneModel as gU, UpdateOptions as gV, UpdateStatement as gW, ValidateCollectionOptions as gX, W as gY, WiredTigerData as gZ, WithId as g_, SelectServerOptions as ga, ServerApi as gb, ServerEvents as gh, ServerSessionId as gn, SetFields as gp, SetProfilingLevelOptions as gq, Sort as gr, SortDirection as gs, Stream as gt, StreamDescriptionOptions as gv, StrictFilter as gw, StrictMatchKeysAndValues as gx, StrictUpdateFilter as gy, SupportedNodeConnectionOptions as gz, ReplicationMode as h, WithSessionCallback as h0, WithTransactionCallback as h1, WriteConcernErrorData as h4, WriteConcernOptions as h5, WriteConcernSettings as h6, Position as h9, Point as ha, LineString as hb, Polygon as hc, MultiPoint as hd, MultiLineString as he, MultiPolygon as hf, GeometryCollection as hg, Geometry as hh, Geography as hi, Feature as hj, FeatureCollection as hk, GeoJSON as hl, MixedList as i, OrderByCondition as k, SimpleColumnType as l, ColumnCommonOptions as m, SpatialColumnType as n, SpatialColumnOptions as o, WithPrecisionColumnType as p, ColumnType as q, JoinTableOptions as r, JoinTableMultipleColumnsOptions as s, ObjectType as t, RelationOptions as u, OnDeleteType as v, TreeType as w, ClosureTreeOptions as x, DeferrableType as y, RelationTypeInFunction as z };
|