da064d5e88
- supports isTool and timeout settings in defineLogicFunction in apps and in setting tabs definition - compute for all toolInputSchema for logic funciton, in settings and in code steps <img width="991" height="802" alt="image" src="https://github.com/user-attachments/assets/05dc1221-cac9-45a3-87b0-3b13161446fd" />
89 lines
2.4 KiB
TypeScript
89 lines
2.4 KiB
TypeScript
import {
|
|
Check,
|
|
Column,
|
|
CreateDateColumn,
|
|
DeleteDateColumn,
|
|
Entity,
|
|
Index,
|
|
PrimaryGeneratedColumn,
|
|
UpdateDateColumn,
|
|
} from 'typeorm';
|
|
import {
|
|
CronTriggerSettings,
|
|
DatabaseEventTriggerSettings,
|
|
HttpRouteTriggerSettings,
|
|
} from 'twenty-shared/application';
|
|
import { type InputJsonSchema } from 'twenty-shared/logic-function';
|
|
|
|
import { SyncableEntity } from 'src/engine/workspace-manager/types/syncable-entity.interface';
|
|
import { type JsonbProperty } from 'src/engine/workspace-manager/workspace-migration/universal-flat-entity/types/jsonb-property.type';
|
|
|
|
const DEFAULT_LOGIC_FUNCTION_TIMEOUT_SECONDS = 300; // 5 minutes
|
|
|
|
export enum LogicFunctionRuntime {
|
|
NODE18 = 'nodejs18.x',
|
|
NODE22 = 'nodejs22.x',
|
|
}
|
|
|
|
@Entity('logicFunction')
|
|
@Index('IDX_LOGIC_FUNCTION_ID_DELETED_AT', ['id', 'deletedAt'])
|
|
export class LogicFunctionEntity
|
|
extends SyncableEntity
|
|
implements Required<LogicFunctionEntity>
|
|
{
|
|
@PrimaryGeneratedColumn('uuid')
|
|
id: string;
|
|
|
|
@Column({ nullable: false })
|
|
name: string;
|
|
|
|
@Column({ nullable: false })
|
|
sourceHandlerPath: string;
|
|
|
|
@Column({ nullable: false })
|
|
builtHandlerPath: string;
|
|
|
|
@Column({ nullable: false })
|
|
handlerName: string;
|
|
|
|
@Column({ nullable: true, type: 'varchar' })
|
|
description: string | null;
|
|
|
|
@Column({ nullable: false, default: LogicFunctionRuntime.NODE22 })
|
|
runtime: LogicFunctionRuntime;
|
|
|
|
@Column({ nullable: false, default: DEFAULT_LOGIC_FUNCTION_TIMEOUT_SECONDS })
|
|
@Check(`"timeoutSeconds" >= 1 AND "timeoutSeconds" <= 900`)
|
|
timeoutSeconds: number;
|
|
|
|
@Column({ nullable: true, type: 'text' })
|
|
checksum: string | null;
|
|
|
|
@Column({ nullable: true, type: 'jsonb' })
|
|
toolInputSchema: JsonbProperty<InputJsonSchema> | null;
|
|
|
|
@Column({ nullable: false, default: false })
|
|
isTool: boolean;
|
|
|
|
@Column({ nullable: false, type: 'boolean', default: true })
|
|
isBuildUpToDate: boolean;
|
|
|
|
@Column({ nullable: true, type: 'jsonb' })
|
|
cronTriggerSettings: JsonbProperty<CronTriggerSettings> | null;
|
|
|
|
@Column({ nullable: true, type: 'jsonb' })
|
|
databaseEventTriggerSettings: JsonbProperty<DatabaseEventTriggerSettings> | null;
|
|
|
|
@Column({ nullable: true, type: 'jsonb' })
|
|
httpRouteTriggerSettings: JsonbProperty<HttpRouteTriggerSettings> | null;
|
|
|
|
@CreateDateColumn({ type: 'timestamptz' })
|
|
createdAt: Date;
|
|
|
|
@UpdateDateColumn({ type: 'timestamptz' })
|
|
updatedAt: Date;
|
|
|
|
@DeleteDateColumn({ type: 'timestamptz' })
|
|
deletedAt: Date | null;
|
|
}
|