@mikro-orm/knex 6.4.17-dev.95 → 6.4.17-dev.97
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 +9 -0
- package/package.json +2 -2
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;
|
|
@@ -148,7 +152,10 @@ export const ObjectHydrator = mod.ObjectHydrator;
|
|
|
148
152
|
export const OnInit = mod.OnInit;
|
|
149
153
|
export const OnLoad = mod.OnLoad;
|
|
150
154
|
export const OneToMany = mod.OneToMany;
|
|
155
|
+
export const OneToManyOptionsBuilder = mod.OneToManyOptionsBuilder;
|
|
156
|
+
export const OneToManyOptionsBuilderOnlyMappedBy = mod.OneToManyOptionsBuilderOnlyMappedBy;
|
|
151
157
|
export const OneToOne = mod.OneToOne;
|
|
158
|
+
export const OneToOneOptionsBuilder = mod.OneToOneOptionsBuilder;
|
|
152
159
|
export const OptimisticLockError = mod.OptimisticLockError;
|
|
153
160
|
export const OptionalProps = mod.OptionalProps;
|
|
154
161
|
export const PlainObject = mod.PlainObject;
|
|
@@ -159,6 +166,7 @@ export const PostgreSqlKnexDialect = mod.PostgreSqlKnexDialect;
|
|
|
159
166
|
export const PrimaryKey = mod.PrimaryKey;
|
|
160
167
|
export const PrimaryKeyProp = mod.PrimaryKeyProp;
|
|
161
168
|
export const Property = mod.Property;
|
|
169
|
+
export const PropertyOptionsBuilder = mod.PropertyOptionsBuilder;
|
|
162
170
|
export const QueryBuilder = mod.QueryBuilder;
|
|
163
171
|
export const QueryBuilderHelper = mod.QueryBuilderHelper;
|
|
164
172
|
export const QueryFlag = mod.QueryFlag;
|
|
@@ -172,6 +180,7 @@ export const ReadOnlyException = mod.ReadOnlyException;
|
|
|
172
180
|
export const Ref = mod.Ref;
|
|
173
181
|
export const Reference = mod.Reference;
|
|
174
182
|
export const ReferenceKind = mod.ReferenceKind;
|
|
183
|
+
export const ReferenceOptionsBuilder = mod.ReferenceOptionsBuilder;
|
|
175
184
|
export const ReflectMetadataProvider = mod.ReflectMetadataProvider;
|
|
176
185
|
export const RequestContext = mod.RequestContext;
|
|
177
186
|
export const SCALAR_TYPES = mod.SCALAR_TYPES;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mikro-orm/knex",
|
|
3
|
-
"version": "6.4.17-dev.
|
|
3
|
+
"version": "6.4.17-dev.97",
|
|
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",
|
|
@@ -66,7 +66,7 @@
|
|
|
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.97",
|
|
70
70
|
"better-sqlite3": "*",
|
|
71
71
|
"libsql": "*",
|
|
72
72
|
"mariadb": "*"
|