From 61c7bfae6034d3cfcc46cffc1ae72330a83c6e66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Trunk=C3=A1t?= Date: Thu, 27 Oct 2022 15:14:40 +0200 Subject: [PATCH] feat(consts): Adding new META_ORIGINS for jobs initiated by another actor or webhook --- packages/consts/src/consts.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/consts/src/consts.ts b/packages/consts/src/consts.ts index d544ed3e9..5494f2f24 100644 --- a/packages/consts/src/consts.ts +++ b/packages/consts/src/consts.ts @@ -69,6 +69,8 @@ export const META_ORIGINS = { API: 'API', // Job started through API SCHEDULER: 'SCHEDULER', // Job started through Scheduler TEST: 'TEST', // Job started through test actor page + WEBHOOK: 'WEBHOOK', // Job started by the webhook + ACTOR: 'ACTOR', // Job started by another actor run } as const; /**