mirror of
https://github.com/vastxie/99AI.git
synced 2025-11-12 11:43:42 +08:00
v2.6.0
This commit is contained in:
20
dist/modules/midjourney/midjourney.entity.js
vendored
20
dist/modules/midjourney/midjourney.entity.js
vendored
@@ -38,10 +38,6 @@ __decorate([
|
||||
(0, typeorm_1.Column)({ comment: '垫图图片 + 绘画描述词 + 额外参数 = 完整的prompt', type: 'text' }),
|
||||
__metadata("design:type", String)
|
||||
], MidjourneyEntity.prototype, "fullPrompt", void 0);
|
||||
__decorate([
|
||||
(0, typeorm_1.Column)({ comment: '随机产生的绘画ID用于拿取比对结果' }),
|
||||
__metadata("design:type", String)
|
||||
], MidjourneyEntity.prototype, "randomDrawId", void 0);
|
||||
__decorate([
|
||||
(0, typeorm_1.Column)({ comment: '当前绘制任务的进度', nullable: true }),
|
||||
__metadata("design:type", Number)
|
||||
@@ -56,7 +52,7 @@ __decorate([
|
||||
], MidjourneyEntity.prototype, "status", void 0);
|
||||
__decorate([
|
||||
(0, typeorm_1.Column)({ comment: 'mj绘画的动作、绘图、放大、变换、图生图' }),
|
||||
__metadata("design:type", Number)
|
||||
__metadata("design:type", String)
|
||||
], MidjourneyEntity.prototype, "action", void 0);
|
||||
__decorate([
|
||||
(0, typeorm_1.Column)({ comment: '一组图片的第几张、放大或者变换的时候需要使用', nullable: true }),
|
||||
@@ -66,18 +62,22 @@ __decorate([
|
||||
(0, typeorm_1.Column)({ comment: '是否推荐0: 默认不推荐 1: 推荐', nullable: true, default: 0 }),
|
||||
__metadata("design:type", Number)
|
||||
], MidjourneyEntity.prototype, "rec", void 0);
|
||||
__decorate([
|
||||
(0, typeorm_1.Column)({ comment: '对图片操作的', nullable: true }),
|
||||
__metadata("design:type", String)
|
||||
], MidjourneyEntity.prototype, "customId", void 0);
|
||||
__decorate([
|
||||
(0, typeorm_1.Column)({ comment: '绘画的ID每条不一样', nullable: true }),
|
||||
__metadata("design:type", String)
|
||||
], MidjourneyEntity.prototype, "message_id", void 0);
|
||||
], MidjourneyEntity.prototype, "drawId", void 0);
|
||||
__decorate([
|
||||
(0, typeorm_1.Column)({ comment: '对图片放大或者变体的ID', nullable: true }),
|
||||
(0, typeorm_1.Column)({ comment: '图片链接', nullable: true, type: 'text' }),
|
||||
__metadata("design:type", String)
|
||||
], MidjourneyEntity.prototype, "custom_id", void 0);
|
||||
], MidjourneyEntity.prototype, "drawUrl", void 0);
|
||||
__decorate([
|
||||
(0, typeorm_1.Column)({ comment: '图片信息尺寸', nullable: true, type: 'text' }),
|
||||
(0, typeorm_1.Column)({ comment: '图片比例', nullable: true, type: 'text' }),
|
||||
__metadata("design:type", String)
|
||||
], MidjourneyEntity.prototype, "fileInfo", void 0);
|
||||
], MidjourneyEntity.prototype, "drawRatio", void 0);
|
||||
__decorate([
|
||||
(0, typeorm_1.Column)({ comment: '扩展参数', nullable: true, type: 'text' }),
|
||||
__metadata("design:type", String)
|
||||
|
||||
Reference in New Issue
Block a user