Skip to content

Commit 0da682f

Browse files
authored
fix: Add STANDBY option to MetaOrigin enum (#30)
1 parent 796cc3e commit 0da682f

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## [1.3.1](../../releases/tag/v1.3.1) - 2025-03-07
4+
5+
### Added
6+
7+
- Added STANDBY option to origin enum in actor run model
8+
39
## [1.3.0](../../releases/tag/v1.3.0) - 2025-03-04
410

511
### Removed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "apify_shared"
3-
version = "1.3.0"
3+
version = "1.3.1"
44
description = "Tools and constants shared across Apify projects."
55
readme = "README.md"
66
license = { text = "Apache Software License" }

src/apify_shared/consts.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -268,6 +268,8 @@ class MetaOrigin(str, Enum):
268268
WEBHOOK = 'WEBHOOK'
269269
#: Job started by another actor run
270270
ACTOR = 'ACTOR'
271+
#: Job started via Actor standby
272+
STANDBY = 'STANDBY'
271273

272274

273275
INTEGER_ENV_VARS_TYPE = Literal[

0 commit comments

Comments
 (0)