@spytecgps/nova-orm 1.2.14 → 1.2.15-rc2

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.
@@ -31,6 +31,10 @@ export interface NovaDataSourceConfig {
31
31
  * Logging options.
32
32
  */
33
33
  logging?: LoggerOptions;
34
+ /**
35
+ * Replication configuration.
36
+ */
37
+ replicationMode?: ReplicationMode;
34
38
  }
35
39
  interface SafeQuery3Options {
36
40
  tag?: string;
@@ -0,0 +1,5 @@
1
+ import { ValueTransformer } from 'typeorm';
2
+ /**
3
+ * A reusable transformer to serialize and deserialize UUID values.
4
+ */
5
+ export declare const UUIDTransformer: ValueTransformer;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spytecgps/nova-orm",
3
- "version": "1.2.14",
3
+ "version": "1.2.15-rc2",
4
4
  "description": "ORM with PlanetScale",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -32,7 +32,8 @@
32
32
  "dayjs": "^1.11.11",
33
33
  "mysql2": "^3.2.3",
34
34
  "reflect-metadata": "^0.1.13",
35
- "typeorm": "0.3.19"
35
+ "typeorm": "0.3.19",
36
+ "uuid": "^11.0.3"
36
37
  },
37
38
  "scripts": {
38
39
  "prepare": "npm run build",