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

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.
@@ -38,6 +38,9 @@ export declare class EditorProject {
38
38
  isTemplate: boolean;
39
39
  isFavorite: boolean;
40
40
  thumbnailUrl: string;
41
+ thumbnailWebpUrl: string;
42
+ thumbnailPngUrl: string;
43
+ previewVideoUrl: string;
41
44
  collaboratorIds: string[];
42
45
  tags: string[];
43
46
  templateCategory: string;
@@ -121,6 +121,18 @@ __decorate([
121
121
  (0, typeorm_1.Column)({ name: 'thumbnail_url', type: 'text', nullable: true }),
122
122
  __metadata("design:type", String)
123
123
  ], EditorProject.prototype, "thumbnailUrl", void 0);
124
+ __decorate([
125
+ (0, typeorm_1.Column)({ name: 'thumbnail_webp_url', type: 'text', nullable: true }),
126
+ __metadata("design:type", String)
127
+ ], EditorProject.prototype, "thumbnailWebpUrl", void 0);
128
+ __decorate([
129
+ (0, typeorm_1.Column)({ name: 'thumbnail_png_url', type: 'text', nullable: true }),
130
+ __metadata("design:type", String)
131
+ ], EditorProject.prototype, "thumbnailPngUrl", void 0);
132
+ __decorate([
133
+ (0, typeorm_1.Column)({ name: 'preview_video_url', type: 'text', nullable: true }),
134
+ __metadata("design:type", String)
135
+ ], EditorProject.prototype, "previewVideoUrl", void 0);
124
136
  __decorate([
125
137
  (0, typeorm_1.Column)({ name: 'collaborator_ids', type: 'jsonb', nullable: true }),
126
138
  __metadata("design:type", Array)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clhq-postgres-module",
3
- "version": "1.1.0-alpha.136",
3
+ "version": "1.1.0-alpha.137",
4
4
  "description": "PostgreSQL module using TypeORM for Clippy",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",