clhq-postgres-module 1.1.0-alpha.129 → 1.1.0-alpha.130

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.
@@ -59,7 +59,13 @@ __decorate([
59
59
  __metadata("design:type", Boolean)
60
60
  ], EditorProject.prototype, "timelineCompressed", void 0);
61
61
  __decorate([
62
- (0, typeorm_1.Column)({ name: 'duration', type: 'integer', default: 0 }),
62
+ (0, typeorm_1.Column)({
63
+ name: 'duration',
64
+ type: 'decimal',
65
+ precision: 10,
66
+ scale: 2,
67
+ default: 0,
68
+ }),
63
69
  __metadata("design:type", Number)
64
70
  ], EditorProject.prototype, "duration", void 0);
65
71
  __decorate([
@@ -75,7 +81,12 @@ __decorate([
75
81
  __metadata("design:type", Number)
76
82
  ], EditorProject.prototype, "resolutionHeight", void 0);
77
83
  __decorate([
78
- (0, typeorm_1.Column)({ name: 'background_color', type: 'varchar', length: 50, default: '#000000' }),
84
+ (0, typeorm_1.Column)({
85
+ name: 'background_color',
86
+ type: 'varchar',
87
+ length: 50,
88
+ default: '#000000',
89
+ }),
79
90
  __metadata("design:type", String)
80
91
  ], EditorProject.prototype, "backgroundColor", void 0);
81
92
  __decorate([
@@ -119,7 +130,12 @@ __decorate([
119
130
  __metadata("design:type", Array)
120
131
  ], EditorProject.prototype, "tags", void 0);
121
132
  __decorate([
122
- (0, typeorm_1.Column)({ name: 'template_category', type: 'varchar', length: 100, nullable: true }),
133
+ (0, typeorm_1.Column)({
134
+ name: 'template_category',
135
+ type: 'varchar',
136
+ length: 100,
137
+ nullable: true,
138
+ }),
123
139
  __metadata("design:type", String)
124
140
  ], EditorProject.prototype, "templateCategory", void 0);
125
141
  __decorate([
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clhq-postgres-module",
3
- "version": "1.1.0-alpha.129",
3
+ "version": "1.1.0-alpha.130",
4
4
  "description": "PostgreSQL module using TypeORM for Clippy",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",