@juit/pgproxy-utils 1.0.8 → 1.0.10

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.
@@ -1,4 +1,3 @@
1
- /// <reference types="node" />
2
1
  /** Create a test database name from a prefix and some randomness */
3
2
  export declare function testdb(prefix?: string): string;
4
3
  /**
package/dist/extract.d.ts CHANGED
@@ -1,4 +1,3 @@
1
- /// <reference types="node" />
2
1
  import '@juit/pgproxy-client-psql';
3
2
  import type { Schema } from './index';
4
3
  /**
package/dist/migrate.d.ts CHANGED
@@ -1,4 +1,3 @@
1
- /// <reference types="node" />
2
1
  export type MigrationOptions = {
3
2
  /** The directory where migrations SQL files reside (default: `./sql`) */
4
3
  migrations?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juit/pgproxy-utils",
3
- "version": "1.0.8",
3
+ "version": "1.0.10",
4
4
  "main": "./dist/index.cjs",
5
5
  "module": "./dist/index.mjs",
6
6
  "types": "./dist/index.d.ts",
@@ -43,9 +43,9 @@
43
43
  "src/"
44
44
  ],
45
45
  "dependencies": {
46
- "@juit/pgproxy-client": "1.0.8",
47
- "@juit/pgproxy-persister": "1.0.8",
48
- "@juit/pgproxy-types": "1.0.8",
49
- "@plugjs/plug": "^0.5.27"
46
+ "@juit/pgproxy-client": "1.0.10",
47
+ "@juit/pgproxy-persister": "1.0.10",
48
+ "@juit/pgproxy-types": "1.0.10",
49
+ "@plugjs/plug": "^0.5.29"
50
50
  }
51
51
  }