Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions src/apify/_configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -334,6 +334,15 @@ class Configuration(CrawleeConfiguration):
),
] = None

user_is_paying: Annotated[
bool,
Field(
alias='apify_user_is_paying',
description='True if the user calling the Actor is paying user',
),
BeforeValidator(lambda val: False if val == '' else val),
] = False

web_server_port: Annotated[
int,
Field(
Expand Down
8 changes: 4 additions & 4 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.