@memberjunction/connector-postgresql 1.0.0 → 1.0.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.
@@ -20,12 +20,18 @@ import '@memberjunction/external-data-source-postgres';
20
20
  *
21
21
  * Requires @memberjunction/* >= 5.46.0 (the EDS-consuming connector heart + the PostgresExternalDriver driver).
22
22
  */
23
+ // Primary key follows the catalog convention (className == npm package name;
24
+ // see scripts/build-connectors-catalog.mjs) — instance discovery reports the
25
+ // package name, so the legacy bare key never matched in the catalog. The
26
+ // legacy alias stays registered so pre-migration tenant Integration rows
27
+ // keep resolving.
23
28
  let PostgresConnector = class PostgresConnector extends BaseSqlExternalDataSourceConnector {
24
29
  get IntegrationName() {
25
30
  return 'PostgreSQL';
26
31
  }
27
32
  };
28
33
  PostgresConnector = __decorate([
34
+ RegisterClass(BaseIntegrationConnector, '@memberjunction/connector-postgresql'),
29
35
  RegisterClass(BaseIntegrationConnector, 'PostgresConnector')
30
36
  ], PostgresConnector);
31
37
  export { PostgresConnector };
@@ -1 +1 @@
1
- {"version":3,"file":"PostgresConnector.js","sourceRoot":"","sources":["../src/PostgresConnector.ts"],"names":[],"mappings":";;;;;;AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,wBAAwB,CAAC;AACvD,OAAO,EAAE,wBAAwB,EAAE,MAAM,oCAAoC,CAAC;AAC9E,OAAO,EAAE,kCAAkC,EAAE,MAAM,wCAAwC,CAAC;AAC5F,uGAAuG;AACvG,yFAAyF;AACzF,OAAO,+CAA+C,CAAC;AAEvD;;;;;;;;;GASG;AAEI,IAAM,iBAAiB,GAAvB,MAAM,iBAAkB,SAAQ,kCAAkC;IACrE,IAAoB,eAAe;QAC/B,OAAO,YAAY,CAAC;IACxB,CAAC;CACJ,CAAA;AAJY,iBAAiB;IAD7B,aAAa,CAAC,wBAAwB,EAAE,mBAAmB,CAAC;GAChD,iBAAiB,CAI7B"}
1
+ {"version":3,"file":"PostgresConnector.js","sourceRoot":"","sources":["../src/PostgresConnector.ts"],"names":[],"mappings":";;;;;;AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,wBAAwB,CAAC;AACvD,OAAO,EAAE,wBAAwB,EAAE,MAAM,oCAAoC,CAAC;AAC9E,OAAO,EAAE,kCAAkC,EAAE,MAAM,wCAAwC,CAAC;AAC5F,uGAAuG;AACvG,yFAAyF;AACzF,OAAO,+CAA+C,CAAC;AAEvD;;;;;;;;;GASG;AACH,6EAA6E;AAC7E,6EAA6E;AAC7E,yEAAyE;AACzE,yEAAyE;AACzE,kBAAkB;AAGX,IAAM,iBAAiB,GAAvB,MAAM,iBAAkB,SAAQ,kCAAkC;IACrE,IAAoB,eAAe;QAC/B,OAAO,YAAY,CAAC;IACxB,CAAC;CACJ,CAAA;AAJY,iBAAiB;IAF7B,aAAa,CAAC,wBAAwB,EAAE,sCAAsC,CAAC;IAC/E,aAAa,CAAC,wBAAwB,EAAE,mBAAmB,CAAC;GAChD,iBAAiB,CAI7B"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@memberjunction/connector-postgresql",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "MemberJunction PostgreSQL connector (External Data Source ingestion).",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -13,7 +13,7 @@
13
13
  "test": "vitest run --passWithNoTests"
14
14
  },
15
15
  "author": "MemberJunction.com",
16
- "license": "ISC",
16
+ "license": "BUSL-1.1",
17
17
  "peerDependencies": {
18
18
  "@memberjunction/core": ">=5.46.0 <6.0.0",
19
19
  "@memberjunction/core-entities": ">=5.46.0 <6.0.0",