diff --git a/pyproject.toml b/pyproject.toml index a1210b2..ef8b2dc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "maxun" -version = "0.0.5" +version = "0.0.7" description = "Python SDK for Maxun - web automation and data extraction" requires-python = ">=3.8" license = { text = "MIT" } diff --git a/types.py b/types.py index 644b353..ae3e2ce 100644 --- a/types.py +++ b/types.py @@ -7,7 +7,7 @@ RobotType = Literal["extract", "scrape", "crawl", "search"] RobotMode = Literal["normal", "bulk"] -Format = Literal["markdown", "html", "screenshot-visible", "screenshot-fullpage"] +Format = Literal["markdown", "html", "text", "links", "screenshot-visible", "screenshot-fullpage"] RunStatus = Literal["running", "queued", "success", "failed", "aborting", "aborted"] TimeUnit = Literal["MINUTES", "HOURS", "DAYS", "WEEKS", "MONTHS"] CrawlMode = Literal["domain", "subdomain", "path"]