From 9b2931e2d44ec8aab7a5dcdc7096d5a3bb96c4cc Mon Sep 17 00:00:00 2001 From: Dan Lynch Date: Fri, 5 Jun 2026 06:10:34 +0000 Subject: [PATCH] feat: add inflection-db to PGPM module map and export required extensions Add 'inflection-db' -> '@pgpm/inflection-db' to PGPM_MODULE_MAP so pgpm can resolve and install the module. Add 'inflection-db' to DB_REQUIRED_EXTENSIONS so database exports include the extension. --- pgpm/core/src/modules/modules.ts | 1 + pgpm/export/src/export-utils.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/pgpm/core/src/modules/modules.ts b/pgpm/core/src/modules/modules.ts index 9c1223ec1..a4a1dd90e 100644 --- a/pgpm/core/src/modules/modules.ts +++ b/pgpm/core/src/modules/modules.ts @@ -15,6 +15,7 @@ export const PGPM_MODULE_MAP: Record = { 'metaschema-schema': '@pgpm/metaschema-schema', 'services': '@pgpm/services', 'pgpm-inflection': '@pgpm/inflection', + 'inflection-db': '@pgpm/inflection-db', 'pgpm-jwt-claims': '@pgpm/jwt-claims', 'pgpm-stamps': '@pgpm/stamps', 'pgpm-totp': '@pgpm/totp', diff --git a/pgpm/export/src/export-utils.ts b/pgpm/export/src/export-utils.ts index 0371c0aa9..8a8b39233 100644 --- a/pgpm/export/src/export-utils.ts +++ b/pgpm/export/src/export-utils.ts @@ -30,6 +30,7 @@ export const DB_REQUIRED_EXTENSIONS = [ 'ltree', 'metaschema-schema', 'pgpm-inflection', + 'inflection-db', 'pgpm-uuid', 'pgpm-utils', 'pgpm-database-jobs',