From 7793fc27fa3baa97e932a727fe073844b1171e6a Mon Sep 17 00:00:00 2001 From: Jan Buchar Date: Thu, 20 Mar 2025 15:08:56 +0100 Subject: [PATCH 1/2] fix: Add CLI origin --- src/apify_shared/consts.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/apify_shared/consts.py b/src/apify_shared/consts.py index a0aa8a0..de80ef8 100644 --- a/src/apify_shared/consts.py +++ b/src/apify_shared/consts.py @@ -270,6 +270,8 @@ class MetaOrigin(str, Enum): ACTOR = 'ACTOR' #: Job started via Actor standby STANDBY = 'STANDBY' + #: Job started via Apify CLI + CLI = 'CLI' INTEGER_ENV_VARS_TYPE = Literal[ From 9f189161ae1c1142ca10f57529374bc0c0981a5a Mon Sep 17 00:00:00 2001 From: Jan Buchar Date: Thu, 20 Mar 2025 15:11:10 +0100 Subject: [PATCH 2/2] version nonsense --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 26d7e54..4728488 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "apify_shared" -version = "1.3.1" +version = "1.3.2" description = "Tools and constants shared across Apify projects." readme = "README.md" license = { text = "Apache Software License" }