UNPKG

n8n

Version:

n8n Workflow Automation Tool

51 lines 2.63 kB
"use strict"; var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) { var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc); else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r; return c > 3 && r && Object.defineProperty(target, key, r), r; }; var __metadata = (this && this.__metadata) || function (k, v) { if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v); }; Object.defineProperty(exports, "__esModule", { value: true }); exports.InstanceAiRunSnapshot = void 0; const db_1 = require("@n8n/db"); const typeorm_1 = require("@n8n/typeorm"); let InstanceAiRunSnapshot = class InstanceAiRunSnapshot extends db_1.WithTimestamps { }; exports.InstanceAiRunSnapshot = InstanceAiRunSnapshot; __decorate([ (0, typeorm_1.PrimaryColumn)('uuid'), __metadata("design:type", String) ], InstanceAiRunSnapshot.prototype, "threadId", void 0); __decorate([ (0, typeorm_1.PrimaryColumn)({ type: 'varchar', length: 36 }), __metadata("design:type", String) ], InstanceAiRunSnapshot.prototype, "runId", void 0); __decorate([ (0, typeorm_1.Column)({ type: 'varchar', length: 36, nullable: true }), __metadata("design:type", Object) ], InstanceAiRunSnapshot.prototype, "messageGroupId", void 0); __decorate([ (0, typeorm_1.Column)({ type: 'simple-json', nullable: true }), __metadata("design:type", Object) ], InstanceAiRunSnapshot.prototype, "runIds", void 0); __decorate([ (0, typeorm_1.Column)({ type: 'text' }), __metadata("design:type", String) ], InstanceAiRunSnapshot.prototype, "tree", void 0); __decorate([ (0, typeorm_1.Column)({ type: 'varchar', length: 36, nullable: true }), __metadata("design:type", Object) ], InstanceAiRunSnapshot.prototype, "langsmithRunId", void 0); __decorate([ (0, typeorm_1.Column)({ type: 'varchar', length: 36, nullable: true }), __metadata("design:type", Object) ], InstanceAiRunSnapshot.prototype, "langsmithTraceId", void 0); exports.InstanceAiRunSnapshot = InstanceAiRunSnapshot = __decorate([ (0, typeorm_1.Entity)({ name: 'instance_ai_run_snapshots' }), (0, typeorm_1.Index)(['threadId', 'messageGroupId']), (0, typeorm_1.Index)(['threadId', 'createdAt']) ], InstanceAiRunSnapshot); //# sourceMappingURL=instance-ai-run-snapshot.entity.js.map