clhq-postgres-module 1.1.0-alpha.134 → 1.1.0-alpha.136

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.
@@ -103,11 +103,11 @@ __decorate([
103
103
  __metadata("design:type", Date)
104
104
  ], CreditConsumptionLog.prototype, "completedAt", void 0);
105
105
  __decorate([
106
- (0, typeorm_1.Column)({ type: 'text', nullable: true }),
106
+ (0, typeorm_1.Column)({ name: 'result_url', type: 'text', nullable: true }),
107
107
  __metadata("design:type", String)
108
108
  ], CreditConsumptionLog.prototype, "resultUrl", void 0);
109
109
  __decorate([
110
- (0, typeorm_1.Column)({ type: 'text', nullable: true }),
110
+ (0, typeorm_1.Column)({ name: 'error_message', type: 'text', nullable: true }),
111
111
  __metadata("design:type", String)
112
112
  ], CreditConsumptionLog.prototype, "errorMessage", void 0);
113
113
  __decorate([
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clhq-postgres-module",
3
- "version": "1.1.0-alpha.134",
3
+ "version": "1.1.0-alpha.136",
4
4
  "description": "PostgreSQL module using TypeORM for Clippy",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -41,6 +41,8 @@
41
41
  "db:migrate:019": "npx ts-node scripts/run-migrations.ts 019",
42
42
  "db:migrate:020": "npx ts-node scripts/run-migrations.ts 020",
43
43
  "db:migrate:metadata": "npx ts-node scripts/run-migrations.ts 019 && npx ts-node scripts/run-migrations.ts 020",
44
+ "db:migrate:031": "npx ts-node scripts/run-migrations.ts 031",
45
+ "db:migrate:webp": "npx ts-node scripts/run-migrations.ts 031",
44
46
  "db:verify": "env-cmd -f ../../.env.dev npx ts-node scripts/verify-tables.ts",
45
47
  "db:test": "env-cmd -f ../../.env.dev npx ts-node scripts/test-connections.ts",
46
48
  "db:sync": "env-cmd -f ../../.env.dev npm run typeorm schema:sync -- -d src/config/data-source.ts",