@mikro-orm/better-sqlite 6.5.9-dev.1 → 6.5.9-dev.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.
Files changed (2) hide show
  1. package/index.mjs +2 -8
  2. package/package.json +3 -3
package/index.mjs CHANGED
@@ -73,7 +73,6 @@ export const DriverException = mod.DriverException;
73
73
  export const EagerProps = mod.EagerProps;
74
74
  export const Embeddable = mod.Embeddable;
75
75
  export const Embedded = mod.Embedded;
76
- export const EmbeddedOptionsBuilder = mod.EmbeddedOptionsBuilder;
77
76
  export const EnsureRequestContext = mod.EnsureRequestContext;
78
77
  export const Entity = mod.Entity;
79
78
  export const EntityAssigner = mod.EntityAssigner;
@@ -94,7 +93,6 @@ export const EntityTransformer = mod.EntityTransformer;
94
93
  export const EntityValidator = mod.EntityValidator;
95
94
  export const Enum = mod.Enum;
96
95
  export const EnumArrayType = mod.EnumArrayType;
97
- export const EnumOptionsBuilder = mod.EnumOptionsBuilder;
98
96
  export const EnumType = mod.EnumType;
99
97
  export const EventManager = mod.EventManager;
100
98
  export const EventType = mod.EventType;
@@ -127,9 +125,7 @@ export const LoadStrategy = mod.LoadStrategy;
127
125
  export const LockMode = mod.LockMode;
128
126
  export const LockWaitTimeoutException = mod.LockWaitTimeoutException;
129
127
  export const ManyToMany = mod.ManyToMany;
130
- export const ManyToManyOptionsBuilder = mod.ManyToManyOptionsBuilder;
131
128
  export const ManyToOne = mod.ManyToOne;
132
- export const ManyToOneOptionsBuilder = mod.ManyToOneOptionsBuilder;
133
129
  export const MariaDbKnexDialect = mod.MariaDbKnexDialect;
134
130
  export const MediumIntType = mod.MediumIntType;
135
131
  export const MemoryCacheAdapter = mod.MemoryCacheAdapter;
@@ -159,10 +155,8 @@ export const ObjectHydrator = mod.ObjectHydrator;
159
155
  export const OnInit = mod.OnInit;
160
156
  export const OnLoad = mod.OnLoad;
161
157
  export const OneToMany = mod.OneToMany;
162
- export const OneToManyOptionsBuilder = mod.OneToManyOptionsBuilder;
163
158
  export const OneToManyOptionsBuilderOnlyMappedBy = mod.OneToManyOptionsBuilderOnlyMappedBy;
164
159
  export const OneToOne = mod.OneToOne;
165
- export const OneToOneOptionsBuilder = mod.OneToOneOptionsBuilder;
166
160
  export const Opt = mod.Opt;
167
161
  export const OptimisticLockError = mod.OptimisticLockError;
168
162
  export const OptionalProps = mod.OptionalProps;
@@ -174,7 +168,6 @@ export const PostgreSqlKnexDialect = mod.PostgreSqlKnexDialect;
174
168
  export const PrimaryKey = mod.PrimaryKey;
175
169
  export const PrimaryKeyProp = mod.PrimaryKeyProp;
176
170
  export const Property = mod.Property;
177
- export const PropertyOptionsBuilder = mod.PropertyOptionsBuilder;
178
171
  export const QueryBuilder = mod.QueryBuilder;
179
172
  export const QueryBuilderHelper = mod.QueryBuilderHelper;
180
173
  export const QueryFlag = mod.QueryFlag;
@@ -188,7 +181,6 @@ export const ReadOnlyException = mod.ReadOnlyException;
188
181
  export const Ref = mod.Ref;
189
182
  export const Reference = mod.Reference;
190
183
  export const ReferenceKind = mod.ReferenceKind;
191
- export const ReferenceOptionsBuilder = mod.ReferenceOptionsBuilder;
192
184
  export const ReflectMetadataProvider = mod.ReflectMetadataProvider;
193
185
  export const RequestContext = mod.RequestContext;
194
186
  export const RequiredNullable = mod.RequiredNullable;
@@ -227,6 +219,7 @@ export const UnderscoreNamingStrategy = mod.UnderscoreNamingStrategy;
227
219
  export const Unique = mod.Unique;
228
220
  export const UniqueConstraintViolationException = mod.UniqueConstraintViolationException;
229
221
  export const UnitOfWork = mod.UnitOfWork;
222
+ export const UniversalPropertyOptionsBuilder = mod.UniversalPropertyOptionsBuilder;
230
223
  export const UnknownType = mod.UnknownType;
231
224
  export const Utils = mod.Utils;
232
225
  export const UuidType = mod.UuidType;
@@ -249,6 +242,7 @@ export const getOnConflictReturningFields = mod.getOnConflictReturningFields;
249
242
  export const getWhereCondition = mod.getWhereCondition;
250
243
  export const helper = mod.helper;
251
244
  export const knex = mod.knex;
245
+ export const p = mod.p;
252
246
  export const parseJsonSafe = mod.parseJsonSafe;
253
247
  export const quote = mod.quote;
254
248
  export const raw = mod.raw;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mikro-orm/better-sqlite",
3
- "version": "6.5.9-dev.1",
3
+ "version": "6.5.9-dev.3",
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.5.9-dev.1",
61
+ "@mikro-orm/knex": "6.5.9-dev.3",
62
62
  "better-sqlite3": "11.10.0",
63
63
  "fs-extra": "11.3.2",
64
64
  "sqlstring-sqlite": "0.1.1"
@@ -67,6 +67,6 @@
67
67
  "@mikro-orm/core": "^6.5.8"
68
68
  },
69
69
  "peerDependencies": {
70
- "@mikro-orm/core": "6.5.9-dev.1"
70
+ "@mikro-orm/core": "6.5.9-dev.3"
71
71
  }
72
72
  }