@mikro-orm/mssql 6.4.17-dev.94 → 6.4.17-dev.96
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/index.mjs +12 -0
- package/package.json +3 -3
package/index.mjs
CHANGED
|
@@ -67,6 +67,7 @@ export const DriverException = mod.DriverException;
|
|
|
67
67
|
export const EagerProps = mod.EagerProps;
|
|
68
68
|
export const Embeddable = mod.Embeddable;
|
|
69
69
|
export const Embedded = mod.Embedded;
|
|
70
|
+
export const EmbeddedOptionsBuilder = mod.EmbeddedOptionsBuilder;
|
|
70
71
|
export const EnsureRequestContext = mod.EnsureRequestContext;
|
|
71
72
|
export const Entity = mod.Entity;
|
|
72
73
|
export const EntityAssigner = mod.EntityAssigner;
|
|
@@ -87,6 +88,7 @@ export const EntityTransformer = mod.EntityTransformer;
|
|
|
87
88
|
export const EntityValidator = mod.EntityValidator;
|
|
88
89
|
export const Enum = mod.Enum;
|
|
89
90
|
export const EnumArrayType = mod.EnumArrayType;
|
|
91
|
+
export const EnumOptionsBuilder = mod.EnumOptionsBuilder;
|
|
90
92
|
export const EnumType = mod.EnumType;
|
|
91
93
|
export const EventManager = mod.EventManager;
|
|
92
94
|
export const EventType = mod.EventType;
|
|
@@ -118,7 +120,9 @@ export const LoadStrategy = mod.LoadStrategy;
|
|
|
118
120
|
export const LockMode = mod.LockMode;
|
|
119
121
|
export const LockWaitTimeoutException = mod.LockWaitTimeoutException;
|
|
120
122
|
export const ManyToMany = mod.ManyToMany;
|
|
123
|
+
export const ManyToManyOptionsBuilder = mod.ManyToManyOptionsBuilder;
|
|
121
124
|
export const ManyToOne = mod.ManyToOne;
|
|
125
|
+
export const ManyToOneOptionsBuilder = mod.ManyToOneOptionsBuilder;
|
|
122
126
|
export const MariaDbKnexDialect = mod.MariaDbKnexDialect;
|
|
123
127
|
export const MediumIntType = mod.MediumIntType;
|
|
124
128
|
export const MemoryCacheAdapter = mod.MemoryCacheAdapter;
|
|
@@ -153,7 +157,10 @@ export const ObjectHydrator = mod.ObjectHydrator;
|
|
|
153
157
|
export const OnInit = mod.OnInit;
|
|
154
158
|
export const OnLoad = mod.OnLoad;
|
|
155
159
|
export const OneToMany = mod.OneToMany;
|
|
160
|
+
export const OneToManyOptionsBuilder = mod.OneToManyOptionsBuilder;
|
|
161
|
+
export const OneToManyOptionsBuilderOnlyMappedBy = mod.OneToManyOptionsBuilderOnlyMappedBy;
|
|
156
162
|
export const OneToOne = mod.OneToOne;
|
|
163
|
+
export const OneToOneOptionsBuilder = mod.OneToOneOptionsBuilder;
|
|
157
164
|
export const OptimisticLockError = mod.OptimisticLockError;
|
|
158
165
|
export const OptionalProps = mod.OptionalProps;
|
|
159
166
|
export const PlainObject = mod.PlainObject;
|
|
@@ -164,6 +171,7 @@ export const PostgreSqlKnexDialect = mod.PostgreSqlKnexDialect;
|
|
|
164
171
|
export const PrimaryKey = mod.PrimaryKey;
|
|
165
172
|
export const PrimaryKeyProp = mod.PrimaryKeyProp;
|
|
166
173
|
export const Property = mod.Property;
|
|
174
|
+
export const PropertyOptionsBuilder = mod.PropertyOptionsBuilder;
|
|
167
175
|
export const QueryBuilder = mod.QueryBuilder;
|
|
168
176
|
export const QueryBuilderHelper = mod.QueryBuilderHelper;
|
|
169
177
|
export const QueryFlag = mod.QueryFlag;
|
|
@@ -177,6 +185,7 @@ export const ReadOnlyException = mod.ReadOnlyException;
|
|
|
177
185
|
export const Ref = mod.Ref;
|
|
178
186
|
export const Reference = mod.Reference;
|
|
179
187
|
export const ReferenceKind = mod.ReferenceKind;
|
|
188
|
+
export const ReferenceOptionsBuilder = mod.ReferenceOptionsBuilder;
|
|
180
189
|
export const ReflectMetadataProvider = mod.ReflectMetadataProvider;
|
|
181
190
|
export const RequestContext = mod.RequestContext;
|
|
182
191
|
export const SCALAR_TYPES = mod.SCALAR_TYPES;
|
|
@@ -204,6 +213,9 @@ export const TimeType = mod.TimeType;
|
|
|
204
213
|
export const TinyIntType = mod.TinyIntType;
|
|
205
214
|
export const TransactionContext = mod.TransactionContext;
|
|
206
215
|
export const TransactionEventBroadcaster = mod.TransactionEventBroadcaster;
|
|
216
|
+
export const TransactionManager = mod.TransactionManager;
|
|
217
|
+
export const TransactionPropagation = mod.TransactionPropagation;
|
|
218
|
+
export const TransactionStateError = mod.TransactionStateError;
|
|
207
219
|
export const Transactional = mod.Transactional;
|
|
208
220
|
export const Type = mod.Type;
|
|
209
221
|
export const Uint8ArrayType = mod.Uint8ArrayType;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mikro-orm/mssql",
|
|
3
|
-
"version": "6.4.17-dev.
|
|
3
|
+
"version": "6.4.17-dev.96",
|
|
4
4
|
"description": "TypeScript ORM for Node.js based on Data Mapper, Unit of Work and Identity Map patterns. Supports MongoDB, MySQL, PostgreSQL and SQLite databases as well as usage with vanilla JavaScript.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"module": "index.mjs",
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"access": "public"
|
|
59
59
|
},
|
|
60
60
|
"dependencies": {
|
|
61
|
-
"@mikro-orm/knex": "6.4.17-dev.
|
|
61
|
+
"@mikro-orm/knex": "6.4.17-dev.96",
|
|
62
62
|
"tedious": "19.0.0",
|
|
63
63
|
"tsqlstring": "1.0.1"
|
|
64
64
|
},
|
|
@@ -66,6 +66,6 @@
|
|
|
66
66
|
"@mikro-orm/core": "^6.4.16"
|
|
67
67
|
},
|
|
68
68
|
"peerDependencies": {
|
|
69
|
-
"@mikro-orm/core": "6.4.17-dev.
|
|
69
|
+
"@mikro-orm/core": "6.4.17-dev.96"
|
|
70
70
|
}
|
|
71
71
|
}
|