clhq-postgres-module 1.1.0-alpha.103 → 1.1.0-alpha.105
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/dist/postgres.module.js +4 -0
- package/package.json +3 -1
package/dist/postgres.module.js
CHANGED
|
@@ -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.
|
|
3
|
+
"version": "1.1.0-alpha.105",
|
|
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",
|