@mikro-orm/postgresql 6.4.17-dev.95 → 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.
Files changed (2) hide show
  1. package/index.mjs +9 -0
  2. 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;
@@ -119,7 +121,9 @@ export const LoadStrategy = mod.LoadStrategy;
119
121
  export const LockMode = mod.LockMode;
120
122
  export const LockWaitTimeoutException = mod.LockWaitTimeoutException;
121
123
  export const ManyToMany = mod.ManyToMany;
124
+ export const ManyToManyOptionsBuilder = mod.ManyToManyOptionsBuilder;
122
125
  export const ManyToOne = mod.ManyToOne;
126
+ export const ManyToOneOptionsBuilder = mod.ManyToOneOptionsBuilder;
123
127
  export const MariaDbKnexDialect = mod.MariaDbKnexDialect;
124
128
  export const MediumIntType = mod.MediumIntType;
125
129
  export const MemoryCacheAdapter = mod.MemoryCacheAdapter;
@@ -149,7 +153,10 @@ export const ObjectHydrator = mod.ObjectHydrator;
149
153
  export const OnInit = mod.OnInit;
150
154
  export const OnLoad = mod.OnLoad;
151
155
  export const OneToMany = mod.OneToMany;
156
+ export const OneToManyOptionsBuilder = mod.OneToManyOptionsBuilder;
157
+ export const OneToManyOptionsBuilderOnlyMappedBy = mod.OneToManyOptionsBuilderOnlyMappedBy;
152
158
  export const OneToOne = mod.OneToOne;
159
+ export const OneToOneOptionsBuilder = mod.OneToOneOptionsBuilder;
153
160
  export const OptimisticLockError = mod.OptimisticLockError;
154
161
  export const OptionalProps = mod.OptionalProps;
155
162
  export const PlainObject = mod.PlainObject;
@@ -165,6 +172,7 @@ export const PostgreSqlSchemaHelper = mod.PostgreSqlSchemaHelper;
165
172
  export const PrimaryKey = mod.PrimaryKey;
166
173
  export const PrimaryKeyProp = mod.PrimaryKeyProp;
167
174
  export const Property = mod.Property;
175
+ export const PropertyOptionsBuilder = mod.PropertyOptionsBuilder;
168
176
  export const QueryBuilder = mod.QueryBuilder;
169
177
  export const QueryBuilderHelper = mod.QueryBuilderHelper;
170
178
  export const QueryFlag = mod.QueryFlag;
@@ -178,6 +186,7 @@ export const ReadOnlyException = mod.ReadOnlyException;
178
186
  export const Ref = mod.Ref;
179
187
  export const Reference = mod.Reference;
180
188
  export const ReferenceKind = mod.ReferenceKind;
189
+ export const ReferenceOptionsBuilder = mod.ReferenceOptionsBuilder;
181
190
  export const ReflectMetadataProvider = mod.ReflectMetadataProvider;
182
191
  export const RequestContext = mod.RequestContext;
183
192
  export const SCALAR_TYPES = mod.SCALAR_TYPES;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mikro-orm/postgresql",
3
- "version": "6.4.17-dev.95",
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.95",
61
+ "@mikro-orm/knex": "6.4.17-dev.96",
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.4.16"
69
69
  },
70
70
  "peerDependencies": {
71
- "@mikro-orm/core": "6.4.17-dev.95"
71
+ "@mikro-orm/core": "6.4.17-dev.96"
72
72
  }
73
73
  }