clhq-postgres-module 1.1.0-alpha.102 → 1.1.0-alpha.104

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.
@@ -16,7 +16,7 @@ const selectedUrl = pgSessionPoolerUrl || pgPoolerUrl;
16
16
  console.log('🔍 PostgreSQL Connection Debug:');
17
17
  console.log(' PG_SESSION_POOLER_URL:', pgSessionPoolerUrl ? '✅ SET' : '❌ NOT SET');
18
18
  console.log(' PG_POOLER_URL:', pgPoolerUrl ? '✅ SET' : '❌ NOT SET');
19
- console.log(' Selected URL:', selectedUrl ? selectedUrl.substring(0, 60) + '...' : '❌ NONE');
19
+ console.log(' Selected URL:', selectedUrl ? '✅ SET (password masked)' : '❌ NONE');
20
20
  const allEntities = [
21
21
  entities_1.User,
22
22
  entities_1.UserProfile,
@@ -34,6 +34,8 @@ const allEntities = [
34
34
  entities_1.PaymentTransaction,
35
35
  entities_1.StripeWebhookEvent,
36
36
  entities_1.CreditTransaction,
37
+ entities_1.CreditAllocation,
38
+ entities_1.CreditConsumptionLog,
37
39
  entities_1.RewardRule,
38
40
  entities_1.ReferralEvent,
39
41
  entities_1.AIUsage,
@@ -42,6 +44,8 @@ const allEntities = [
42
44
  entities_1.VideoTranscode,
43
45
  entities_1.VideoRender,
44
46
  entities_1.VideoSubtitle,
47
+ entities_1.VideoFilmstrip,
48
+ entities_1.AudioWaveform,
45
49
  ];
46
50
  let PostgresModule = class PostgresModule {
47
51
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clhq-postgres-module",
3
- "version": "1.1.0-alpha.102",
3
+ "version": "1.1.0-alpha.104",
4
4
  "description": "PostgreSQL module using TypeORM for Clippy",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -36,6 +36,8 @@
36
36
  "db:migrate:014": "npx ts-node scripts/run-migrations.ts 014",
37
37
  "db:migrate:015": "npx ts-node scripts/run-migrations.ts 015",
38
38
  "db:migrate:016": "npx ts-node scripts/run-migrations.ts 016",
39
+ "db:migrate:017": "npx ts-node scripts/run-migrations.ts 017",
40
+ "db:migrate:018": "npx ts-node scripts/run-migrations.ts 018",
39
41
  "db:verify": "env-cmd -f ../../.env.dev npx ts-node scripts/verify-tables.ts",
40
42
  "db:test": "env-cmd -f ../../.env.dev npx ts-node scripts/test-connections.ts",
41
43
  "db:sync": "env-cmd -f ../../.env.dev npm run typeorm schema:sync -- -d src/config/data-source.ts",