feat: run by user id, schedule id, api id

This commit is contained in:
karishmas6
2024-10-21 18:29:26 +05:30
parent bda63a14bc
commit 5491a2ac60

View File

@@ -20,6 +20,9 @@ interface RunAttributes {
interpreterSettings: InterpreterSettings; interpreterSettings: InterpreterSettings;
log: string; log: string;
runId: string; runId: string;
runByUserId?: string;
runByScheduleId?: string;
runByAPI?: string;
serializableOutput: Record<string, any[]>; serializableOutput: Record<string, any[]>;
binaryOutput: Record<string, string>; binaryOutput: Record<string, string>;
} }
@@ -38,6 +41,9 @@ class Run extends Model<RunAttributes, RunCreationAttributes> implements RunAttr
public interpreterSettings!: InterpreterSettings; public interpreterSettings!: InterpreterSettings;
public log!: string; public log!: string;
public runId!: string; public runId!: string;
public runByUserId!: string;
public runByScheduleId!: string;
public runByAPI!: string;
public serializableOutput!: Record<string, any[]>; public serializableOutput!: Record<string, any[]>;
public binaryOutput!: Record<string, any>; public binaryOutput!: Record<string, any>;
} }
@@ -93,6 +99,18 @@ Run.init(
type: DataTypes.UUID, type: DataTypes.UUID,
allowNull: false, allowNull: false,
}, },
runByUserId: {
type: DataTypes.UUID,
allowNull: true,
},
runByScheduleId: {
type: DataTypes.UUID,
allowNull: true,
},
runByAPI: {
type: DataTypes.STRING(255),
allowNull: true,
},
serializableOutput: { serializableOutput: {
type: DataTypes.JSONB, type: DataTypes.JSONB,
allowNull: true, allowNull: true,