@spytecgps/nova-orm 1.3.10 → 1.3.11-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.
package/dist/reps.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ import * as Repositories from './repositories';
2
+ export { Repositories };
@@ -1,12 +1,6 @@
1
1
  /// <reference types="node" />
2
2
  /// <reference types="node" />
3
- import * as Entities from './entities';
4
- import { NovaDataSource, NovaDataSourceConfig } from './novaDataSource';
5
- import * as Repositories from './repositories';
6
- import * as Types from './types';
7
- import * as Enums from './types/enums';
8
- import { ConsoleLogger } from './utils/consoleLogger';
9
- declare const Utils: {
3
+ export declare const Utils: {
10
4
  uuidStringToBinaryBuffer: (uuidString: string) => Buffer;
11
5
  binaryBufferToUuidString: (buffer: Buffer) => string;
12
6
  getRandomBoolean: () => boolean;
@@ -23,4 +17,3 @@ declare const Utils: {
23
17
  now: () => Date;
24
18
  addMonthsToNow: (months: number) => Date;
25
19
  };
26
- export { Entities, Repositories, Enums, Types, Utils, ConsoleLogger, NovaDataSourceConfig, NovaDataSource, };
package/package.json CHANGED
@@ -1,12 +1,13 @@
1
1
  {
2
2
  "name": "@spytecgps/nova-orm",
3
- "version": "1.3.10",
3
+ "version": "1.3.11-rc2",
4
4
  "description": "ORM with PlanetScale",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
7
7
  "devDependencies": {
8
8
  "@rollup/plugin-commonjs": "^23.0.2",
9
9
  "@rollup/plugin-json": "^6.1.0",
10
+ "@rollup/plugin-multi-entry": "^6.0.1",
10
11
  "@rollup/plugin-node-resolve": "^15.0.1",
11
12
  "@rollup/plugin-terser": "^0.4.4",
12
13
  "@rollup/plugin-typescript": "^9.0.2",
@@ -59,4 +60,4 @@
59
60
  "files": [
60
61
  "dist/**/*"
61
62
  ]
62
- }
63
+ }