타입 변경

This commit is contained in:
2025-09-15 10:53:33 +09:00
parent af08b67331
commit dbad9bbc0c
2 changed files with 15 additions and 15 deletions

View File

@@ -424,14 +424,14 @@ export class EventTriggerService {
await this.executeUpdateAction(
action.targetTable,
targetData,
null // 액션별 조건은 이미 평가했으므로 WHERE 조건은 null
undefined // 액션별 조건은 이미 평가했으므로 WHERE 조건은 undefined
);
break;
case "delete":
await this.executeDeleteAction(
action.targetTable,
targetData,
null // 액션별 조건은 이미 평가했으므로 WHERE 조건은 null
undefined // 액션별 조건은 이미 평가했으므로 WHERE 조건은 undefined
);
break;
case "upsert":