From 0c9dff66e29857cde5cc5a07f6f96fabc6967702 Mon Sep 17 00:00:00 2001 From: stepskop Date: Mon, 21 Jul 2025 17:48:36 +0200 Subject: [PATCH 1/2] chore: add env var to the list --- 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 5b466dd..5457917 100644 --- a/src/apify_shared/consts.py +++ b/src/apify_shared/consts.py @@ -171,6 +171,8 @@ class ApifyEnvVars(str, Enum): TOKEN = 'APIFY_TOKEN' #: USER_ID USER_ID = 'APIFY_USER_ID' + #: USER_IS_PAYING + USER_IS_PAYING = 'APIFY_USER_IS_PAYING' #: WORKFLOW_KEY WORKFLOW_KEY = 'APIFY_WORKFLOW_KEY' From 2ef7c1e8e8a0749de15c2dd485b4c853c8f6499e Mon Sep 17 00:00:00 2001 From: stepskop Date: Tue, 22 Jul 2025 14:12:44 +0200 Subject: [PATCH 2/2] chore: add env var to the list --- src/apify_shared/consts.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/apify_shared/consts.py b/src/apify_shared/consts.py index 5457917..ea76927 100644 --- a/src/apify_shared/consts.py +++ b/src/apify_shared/consts.py @@ -309,6 +309,7 @@ class MetaOrigin(str, Enum): ApifyEnvVars.IS_AT_HOME, ApifyEnvVars.PERSIST_STORAGE, ApifyEnvVars.PURGE_ON_START, + ApifyEnvVars.USER_IS_PAYING, ] BOOL_ENV_VARS: list[BOOL_ENV_VARS_TYPE] = list(get_args(BOOL_ENV_VARS_TYPE))