@mikro-orm/better-sqlite 6.4.17-dev.10 → 6.4.17-dev.100
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/README.md +1 -2
- package/index.mjs +16 -0
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -11,7 +11,6 @@ TypeScript ORM for Node.js based on Data Mapper, [Unit of Work](https://mikro-or
|
|
|
11
11
|
[](https://discord.gg/w8bjxFHS7X)
|
|
12
12
|
[](https://www.npmjs.com/package/@mikro-orm/core)
|
|
13
13
|
[](https://coveralls.io/r/mikro-orm/mikro-orm?branch=master)
|
|
14
|
-
[](https://codeclimate.com/github/mikro-orm/mikro-orm/maintainability)
|
|
15
14
|
[](https://github.com/mikro-orm/mikro-orm/actions?workflow=tests)
|
|
16
15
|
|
|
17
16
|
## 🤔 Unit of What?
|
|
@@ -141,7 +140,7 @@ There is also auto-generated [CHANGELOG.md](CHANGELOG.md) file based on commit m
|
|
|
141
140
|
- [Composite and Foreign Keys as Primary Key](https://mikro-orm.io/docs/composite-keys)
|
|
142
141
|
- [Filters](https://mikro-orm.io/docs/filters)
|
|
143
142
|
- [Using `QueryBuilder`](https://mikro-orm.io/docs/query-builder)
|
|
144
|
-
- [
|
|
143
|
+
- [Populating relations](https://mikro-orm.io/docs/populating-relations)
|
|
145
144
|
- [Property Validation](https://mikro-orm.io/docs/property-validation)
|
|
146
145
|
- [Lifecycle Hooks](https://mikro-orm.io/docs/events#hooks)
|
|
147
146
|
- [Vanilla JS Support](https://mikro-orm.io/docs/usage-with-js)
|
package/index.mjs
CHANGED
|
@@ -72,6 +72,7 @@ export const DriverException = mod.DriverException;
|
|
|
72
72
|
export const EagerProps = mod.EagerProps;
|
|
73
73
|
export const Embeddable = mod.Embeddable;
|
|
74
74
|
export const Embedded = mod.Embedded;
|
|
75
|
+
export const EmbeddedOptionsBuilder = mod.EmbeddedOptionsBuilder;
|
|
75
76
|
export const EnsureRequestContext = mod.EnsureRequestContext;
|
|
76
77
|
export const Entity = mod.Entity;
|
|
77
78
|
export const EntityAssigner = mod.EntityAssigner;
|
|
@@ -92,6 +93,7 @@ export const EntityTransformer = mod.EntityTransformer;
|
|
|
92
93
|
export const EntityValidator = mod.EntityValidator;
|
|
93
94
|
export const Enum = mod.Enum;
|
|
94
95
|
export const EnumArrayType = mod.EnumArrayType;
|
|
96
|
+
export const EnumOptionsBuilder = mod.EnumOptionsBuilder;
|
|
95
97
|
export const EnumType = mod.EnumType;
|
|
96
98
|
export const EventManager = mod.EventManager;
|
|
97
99
|
export const EventType = mod.EventType;
|
|
@@ -123,7 +125,9 @@ export const LoadStrategy = mod.LoadStrategy;
|
|
|
123
125
|
export const LockMode = mod.LockMode;
|
|
124
126
|
export const LockWaitTimeoutException = mod.LockWaitTimeoutException;
|
|
125
127
|
export const ManyToMany = mod.ManyToMany;
|
|
128
|
+
export const ManyToManyOptionsBuilder = mod.ManyToManyOptionsBuilder;
|
|
126
129
|
export const ManyToOne = mod.ManyToOne;
|
|
130
|
+
export const ManyToOneOptionsBuilder = mod.ManyToOneOptionsBuilder;
|
|
127
131
|
export const MariaDbKnexDialect = mod.MariaDbKnexDialect;
|
|
128
132
|
export const MediumIntType = mod.MediumIntType;
|
|
129
133
|
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;
|
|
@@ -224,12 +236,16 @@ export const compareBuffers = mod.compareBuffers;
|
|
|
224
236
|
export const compareObjects = mod.compareObjects;
|
|
225
237
|
export const createSqlFunction = mod.createSqlFunction;
|
|
226
238
|
export const defineConfig = mod.defineConfig;
|
|
239
|
+
export const defineEntity = mod.defineEntity;
|
|
227
240
|
export const equals = mod.equals;
|
|
241
|
+
export const expandDotPaths = mod.expandDotPaths;
|
|
242
|
+
export const getLoadingStrategy = mod.getLoadingStrategy;
|
|
228
243
|
export const getOnConflictFields = mod.getOnConflictFields;
|
|
229
244
|
export const getOnConflictReturningFields = mod.getOnConflictReturningFields;
|
|
230
245
|
export const helper = mod.helper;
|
|
231
246
|
export const knex = mod.knex;
|
|
232
247
|
export const parseJsonSafe = mod.parseJsonSafe;
|
|
248
|
+
export const quote = mod.quote;
|
|
233
249
|
export const raw = mod.raw;
|
|
234
250
|
export const ref = mod.ref;
|
|
235
251
|
export const rel = mod.rel;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mikro-orm/better-sqlite",
|
|
3
|
-
"version": "6.4.17-dev.
|
|
3
|
+
"version": "6.4.17-dev.100",
|
|
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,15 +58,15 @@
|
|
|
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.100",
|
|
62
62
|
"better-sqlite3": "11.10.0",
|
|
63
|
-
"fs-extra": "11.3.
|
|
63
|
+
"fs-extra": "11.3.1",
|
|
64
64
|
"sqlstring-sqlite": "0.1.1"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
67
|
"@mikro-orm/core": "^6.4.16"
|
|
68
68
|
},
|
|
69
69
|
"peerDependencies": {
|
|
70
|
-
"@mikro-orm/core": "6.4.17-dev.
|
|
70
|
+
"@mikro-orm/core": "6.4.17-dev.100"
|
|
71
71
|
}
|
|
72
72
|
}
|