@mikro-orm/mssql 6.1.13-dev.32 → 6.1.13-dev.34

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 +7 -0
  2. package/package.json +3 -3
package/index.mjs CHANGED
@@ -118,6 +118,7 @@ export const LockMode = mod.LockMode;
118
118
  export const LockWaitTimeoutException = mod.LockWaitTimeoutException;
119
119
  export const ManyToMany = mod.ManyToMany;
120
120
  export const ManyToOne = mod.ManyToOne;
121
+ export const MariaDbKnexDialect = mod.MariaDbKnexDialect;
121
122
  export const MediumIntType = mod.MediumIntType;
122
123
  export const MemoryCacheAdapter = mod.MemoryCacheAdapter;
123
124
  export const MetadataDiscovery = mod.MetadataDiscovery;
@@ -134,6 +135,11 @@ export const MsSqlExceptionConverter = mod.MsSqlExceptionConverter;
134
135
  export const MsSqlKnexDialect = mod.MsSqlKnexDialect;
135
136
  export const MsSqlPlatform = mod.MsSqlPlatform;
136
137
  export const MsSqlSchemaHelper = mod.MsSqlSchemaHelper;
138
+ export const MySqlConnection = mod.MySqlConnection;
139
+ export const MySqlExceptionConverter = mod.MySqlExceptionConverter;
140
+ export const MySqlKnexDialect = mod.MySqlKnexDialect;
141
+ export const MySqlPlatform = mod.MySqlPlatform;
142
+ export const MySqlSchemaHelper = mod.MySqlSchemaHelper;
137
143
  export const NodeState = mod.NodeState;
138
144
  export const NonUniqueFieldNameException = mod.NonUniqueFieldNameException;
139
145
  export const NotFoundError = mod.NotFoundError;
@@ -153,6 +159,7 @@ export const PlainObject = mod.PlainObject;
153
159
  export const Platform = mod.Platform;
154
160
  export const PopulateHint = mod.PopulateHint;
155
161
  export const PopulatePath = mod.PopulatePath;
162
+ export const PostgreSqlKnexDialect = mod.PostgreSqlKnexDialect;
156
163
  export const PrimaryKey = mod.PrimaryKey;
157
164
  export const PrimaryKeyProp = mod.PrimaryKeyProp;
158
165
  export const Property = mod.Property;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mikro-orm/mssql",
3
- "version": "6.1.13-dev.32",
3
+ "version": "6.1.13-dev.34",
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",
@@ -55,7 +55,7 @@
55
55
  "access": "public"
56
56
  },
57
57
  "dependencies": {
58
- "@mikro-orm/knex": "6.1.13-dev.32",
58
+ "@mikro-orm/knex": "6.1.13-dev.34",
59
59
  "tedious": "18.1.0",
60
60
  "tsqlstring": "1.0.1"
61
61
  },
@@ -63,6 +63,6 @@
63
63
  "@mikro-orm/core": "^6.1.12"
64
64
  },
65
65
  "peerDependencies": {
66
- "@mikro-orm/core": "6.1.13-dev.32"
66
+ "@mikro-orm/core": "6.1.13-dev.34"
67
67
  }
68
68
  }