@pgpmjs/export 0.21.0 → 0.21.2

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/README.md CHANGED
@@ -79,6 +79,17 @@ Common issues and solutions for pgpm, PostgreSQL, and testing.
79
79
 
80
80
  * [constructive-skills](https://github.com/constructive-io/constructive-skills): **📖 Platform documentation and AI agent skills** — feature catalog, blueprint reference, SDK guides (i18n, billing, limits, events, uploads, security, entities, search, AI), and deployment guides.
81
81
 
82
+ Install skills for AI coding agents:
83
+
84
+ ```bash
85
+ # All platform skills (security, blueprints, codegen, billing, etc.)
86
+ npx skills add constructive-io/constructive-skills
87
+
88
+ # Individual repo skills (pgpm, testing, CLI, search, etc.)
89
+ npx skills add https://github.com/constructive-io/constructive --skill pgpm
90
+ npx skills add https://github.com/constructive-io/constructive --skill constructive-testing
91
+ ```
92
+
82
93
  ## Credits
83
94
 
84
95
  **🛠 Built by the [Constructive](https://constructive.io) team — creators of modular Postgres tooling for secure, composable backends. If you like our work, contribute on [GitHub](https://github.com/constructive-io).**
@@ -26,7 +26,6 @@ export const DB_REQUIRED_EXTENSIONS = [
26
26
  'ltree',
27
27
  'metaschema-schema',
28
28
  'pgpm-inflection',
29
- 'inflection-db',
30
29
  'pgpm-uuid',
31
30
  'pgpm-utils',
32
31
  '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", "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"];
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"];
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,7 +32,6 @@ exports.DB_REQUIRED_EXTENSIONS = [
32
32
  'ltree',
33
33
  'metaschema-schema',
34
34
  'pgpm-inflection',
35
- 'inflection-db',
36
35
  'pgpm-uuid',
37
36
  'pgpm-utils',
38
37
  'pgpm-database-jobs',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pgpmjs/export",
3
- "version": "0.21.0",
3
+ "version": "0.21.2",
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.1"
44
+ "pgsql-test": "^4.16.3"
45
45
  },
46
46
  "dependencies": {
47
- "@pgpmjs/core": "^6.22.0",
48
- "@pgpmjs/migrate-client": "^0.15.2",
47
+ "@pgpmjs/core": "^6.23.0",
48
+ "@pgpmjs/migrate-client": "^0.15.4",
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": "12515d72a1c3db748a317157770e7aec4db34c34"
58
+ "gitHead": "30fdaaacfc61f86b3e466f0c4c3768550fd77a55"
59
59
  }