@mikro-orm/postgresql 6.5.9-dev.1 → 6.5.9-dev.2

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
@@ -68,7 +68,6 @@ export const DriverException = mod.DriverException;
68
68
  export const EagerProps = mod.EagerProps;
69
69
  export const Embeddable = mod.Embeddable;
70
70
  export const Embedded = mod.Embedded;
71
- export const EmbeddedOptionsBuilder = mod.EmbeddedOptionsBuilder;
72
71
  export const EnsureRequestContext = mod.EnsureRequestContext;
73
72
  export const Entity = mod.Entity;
74
73
  export const EntityAssigner = mod.EntityAssigner;
@@ -89,7 +88,6 @@ export const EntityTransformer = mod.EntityTransformer;
89
88
  export const EntityValidator = mod.EntityValidator;
90
89
  export const Enum = mod.Enum;
91
90
  export const EnumArrayType = mod.EnumArrayType;
92
- export const EnumOptionsBuilder = mod.EnumOptionsBuilder;
93
91
  export const EnumType = mod.EnumType;
94
92
  export const EventManager = mod.EventManager;
95
93
  export const EventType = mod.EventType;
@@ -123,9 +121,7 @@ export const LoadStrategy = mod.LoadStrategy;
123
121
  export const LockMode = mod.LockMode;
124
122
  export const LockWaitTimeoutException = mod.LockWaitTimeoutException;
125
123
  export const ManyToMany = mod.ManyToMany;
126
- export const ManyToManyOptionsBuilder = mod.ManyToManyOptionsBuilder;
127
124
  export const ManyToOne = mod.ManyToOne;
128
- export const ManyToOneOptionsBuilder = mod.ManyToOneOptionsBuilder;
129
125
  export const MariaDbKnexDialect = mod.MariaDbKnexDialect;
130
126
  export const MediumIntType = mod.MediumIntType;
131
127
  export const MemoryCacheAdapter = mod.MemoryCacheAdapter;
@@ -155,10 +151,8 @@ export const ObjectHydrator = mod.ObjectHydrator;
155
151
  export const OnInit = mod.OnInit;
156
152
  export const OnLoad = mod.OnLoad;
157
153
  export const OneToMany = mod.OneToMany;
158
- export const OneToManyOptionsBuilder = mod.OneToManyOptionsBuilder;
159
154
  export const OneToManyOptionsBuilderOnlyMappedBy = mod.OneToManyOptionsBuilderOnlyMappedBy;
160
155
  export const OneToOne = mod.OneToOne;
161
- export const OneToOneOptionsBuilder = mod.OneToOneOptionsBuilder;
162
156
  export const Opt = mod.Opt;
163
157
  export const OptimisticLockError = mod.OptimisticLockError;
164
158
  export const OptionalProps = mod.OptionalProps;
@@ -175,7 +169,6 @@ export const PostgreSqlSchemaHelper = mod.PostgreSqlSchemaHelper;
175
169
  export const PrimaryKey = mod.PrimaryKey;
176
170
  export const PrimaryKeyProp = mod.PrimaryKeyProp;
177
171
  export const Property = mod.Property;
178
- export const PropertyOptionsBuilder = mod.PropertyOptionsBuilder;
179
172
  export const QueryBuilder = mod.QueryBuilder;
180
173
  export const QueryBuilderHelper = mod.QueryBuilderHelper;
181
174
  export const QueryFlag = mod.QueryFlag;
@@ -189,7 +182,6 @@ export const ReadOnlyException = mod.ReadOnlyException;
189
182
  export const Ref = mod.Ref;
190
183
  export const Reference = mod.Reference;
191
184
  export const ReferenceKind = mod.ReferenceKind;
192
- export const ReferenceOptionsBuilder = mod.ReferenceOptionsBuilder;
193
185
  export const ReflectMetadataProvider = mod.ReflectMetadataProvider;
194
186
  export const RequestContext = mod.RequestContext;
195
187
  export const RequiredNullable = mod.RequiredNullable;
@@ -228,6 +220,7 @@ export const UnderscoreNamingStrategy = mod.UnderscoreNamingStrategy;
228
220
  export const Unique = mod.Unique;
229
221
  export const UniqueConstraintViolationException = mod.UniqueConstraintViolationException;
230
222
  export const UnitOfWork = mod.UnitOfWork;
223
+ export const UniversalPropertyOptionsBuilder = mod.UniversalPropertyOptionsBuilder;
231
224
  export const UnknownType = mod.UnknownType;
232
225
  export const Utils = mod.Utils;
233
226
  export const UuidType = mod.UuidType;
@@ -250,6 +243,7 @@ export const getOnConflictReturningFields = mod.getOnConflictReturningFields;
250
243
  export const getWhereCondition = mod.getWhereCondition;
251
244
  export const helper = mod.helper;
252
245
  export const knex = mod.knex;
246
+ export const p = mod.p;
253
247
  export const parseJsonSafe = mod.parseJsonSafe;
254
248
  export const quote = mod.quote;
255
249
  export const raw = mod.raw;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mikro-orm/postgresql",
3
- "version": "6.5.9-dev.1",
3
+ "version": "6.5.9-dev.2",
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.2",
62
62
  "pg": "8.16.3",
63
63
  "postgres-array": "3.0.4",
64
64
  "postgres-date": "2.1.0",
@@ -68,6 +68,6 @@
68
68
  "@mikro-orm/core": "^6.5.8"
69
69
  },
70
70
  "peerDependencies": {
71
- "@mikro-orm/core": "6.5.9-dev.1"
71
+ "@mikro-orm/core": "6.5.9-dev.2"
72
72
  }
73
73
  }