@pgpmjs/export 0.20.2 → 0.21.0

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.
@@ -26,6 +26,7 @@ export const DB_REQUIRED_EXTENSIONS = [
26
26
  'ltree',
27
27
  'metaschema-schema',
28
28
  'pgpm-inflection',
29
+ 'inflection-db',
29
30
  'pgpm-uuid',
30
31
  'pgpm-utils',
31
32
  'pgpm-database-jobs',
package/export-utils.d.ts CHANGED
@@ -4,7 +4,7 @@ import { PgpmPackage } from '@pgpmjs/core';
4
4
  * Required extensions for database schema exports.
5
5
  * Includes native PostgreSQL extensions and pgpm modules.
6
6
  */
7
- export declare const DB_REQUIRED_EXTENSIONS: readonly ["plpgsql", "uuid-ossp", "citext", "pgcrypto", "btree_gin", "btree_gist", "pg_textsearch", "pg_trgm", "postgis", "hstore", "vector", "ltree", "metaschema-schema", "pgpm-inflection", "pgpm-uuid", "pgpm-utils", "pgpm-database-jobs", "pgpm-jwt-claims", "pgpm-stamps", "pgpm-base32", "pgpm-totp", "pgpm-types", "pgpm-ltree-helpers", "pgpm-partman"];
7
+ export declare const DB_REQUIRED_EXTENSIONS: readonly ["plpgsql", "uuid-ossp", "citext", "pgcrypto", "btree_gin", "btree_gist", "pg_textsearch", "pg_trgm", "postgis", "hstore", "vector", "ltree", "metaschema-schema", "pgpm-inflection", "inflection-db", "pgpm-uuid", "pgpm-utils", "pgpm-database-jobs", "pgpm-jwt-claims", "pgpm-stamps", "pgpm-base32", "pgpm-totp", "pgpm-types", "pgpm-ltree-helpers", "pgpm-partman"];
8
8
  /**
9
9
  * Map PostgreSQL data types to FieldType values.
10
10
  * Uses udt_name from information_schema which gives the base type name.
package/export-utils.js CHANGED
@@ -32,6 +32,7 @@ exports.DB_REQUIRED_EXTENSIONS = [
32
32
  'ltree',
33
33
  'metaschema-schema',
34
34
  'pgpm-inflection',
35
+ 'inflection-db',
35
36
  'pgpm-uuid',
36
37
  'pgpm-utils',
37
38
  'pgpm-database-jobs',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pgpmjs/export",
3
- "version": "0.20.2",
3
+ "version": "0.21.0",
4
4
  "author": "Constructive <developers@constructive.io>",
5
5
  "description": "PGPM export tools for SQL and GraphQL database migration extraction",
6
6
  "main": "index.js",
@@ -41,11 +41,11 @@
41
41
  "@pgsql/types": "^17.6.2",
42
42
  "@types/pg": "^8.20.0",
43
43
  "makage": "^0.3.0",
44
- "pgsql-test": "^4.16.0"
44
+ "pgsql-test": "^4.16.1"
45
45
  },
46
46
  "dependencies": {
47
- "@pgpmjs/core": "^6.21.0",
48
- "@pgpmjs/migrate-client": "^0.15.1",
47
+ "@pgpmjs/core": "^6.22.0",
48
+ "@pgpmjs/migrate-client": "^0.15.2",
49
49
  "@pgpmjs/types": "^2.29.0",
50
50
  "csv-to-pg": "^3.18.0",
51
51
  "glob": "^13.0.6",
@@ -55,5 +55,5 @@
55
55
  "pg-cache": "^3.12.0",
56
56
  "pg-env": "^1.16.0"
57
57
  },
58
- "gitHead": "8a39d7f293a1128aed84a3bc6a7a79c32d27759d"
58
+ "gitHead": "12515d72a1c3db748a317157770e7aec4db34c34"
59
59
  }