fleet-python 0.2.39__tar.gz → 0.2.40__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {fleet_python-0.2.39 → fleet_python-0.2.40}/PKG-INFO +1 -1
- {fleet_python-0.2.39 → fleet_python-0.2.40}/fleet/_async/tasks.py +0 -5
- {fleet_python-0.2.39 → fleet_python-0.2.40}/fleet/tasks.py +0 -5
- {fleet_python-0.2.39 → fleet_python-0.2.40}/fleet_python.egg-info/PKG-INFO +1 -1
- {fleet_python-0.2.39 → fleet_python-0.2.40}/pyproject.toml +1 -1
- {fleet_python-0.2.39 → fleet_python-0.2.40}/LICENSE +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/README.md +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/examples/diff_example.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/examples/dsl_example.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/examples/example.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/examples/exampleResume.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/examples/example_account.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/examples/example_action_log.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/examples/example_client.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/examples/example_mcp_anthropic.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/examples/example_mcp_openai.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/examples/example_sync.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/examples/example_task.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/examples/example_tasks.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/examples/example_verifier.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/examples/gemini_example.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/examples/json_tasks_example.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/examples/nova_act_example.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/examples/openai_example.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/examples/openai_simple_example.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/examples/query_builder_example.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/examples/quickstart.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/examples/test_cdp_logging.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/fleet/__init__.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/fleet/_async/__init__.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/fleet/_async/base.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/fleet/_async/client.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/fleet/_async/env/__init__.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/fleet/_async/env/client.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/fleet/_async/exceptions.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/fleet/_async/global_client.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/fleet/_async/instance/__init__.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/fleet/_async/instance/base.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/fleet/_async/instance/client.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/fleet/_async/models.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/fleet/_async/resources/__init__.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/fleet/_async/resources/base.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/fleet/_async/resources/browser.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/fleet/_async/resources/mcp.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/fleet/_async/resources/sqlite.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/fleet/_async/verifiers/__init__.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/fleet/_async/verifiers/bundler.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/fleet/_async/verifiers/verifier.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/fleet/base.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/fleet/client.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/fleet/config.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/fleet/env/__init__.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/fleet/env/client.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/fleet/exceptions.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/fleet/global_client.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/fleet/instance/__init__.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/fleet/instance/base.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/fleet/instance/client.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/fleet/instance/models.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/fleet/models.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/fleet/resources/__init__.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/fleet/resources/base.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/fleet/resources/browser.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/fleet/resources/mcp.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/fleet/resources/sqlite.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/fleet/types.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/fleet/verifiers/__init__.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/fleet/verifiers/bundler.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/fleet/verifiers/code.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/fleet/verifiers/db.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/fleet/verifiers/decorator.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/fleet/verifiers/parse.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/fleet/verifiers/sql_differ.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/fleet/verifiers/verifier.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/fleet_python.egg-info/SOURCES.txt +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/fleet_python.egg-info/dependency_links.txt +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/fleet_python.egg-info/requires.txt +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/fleet_python.egg-info/top_level.txt +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/scripts/fix_sync_imports.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/scripts/unasync.py +0 -0
- {fleet_python-0.2.39 → fleet_python-0.2.40}/setup.cfg +0 -0
|
@@ -36,11 +36,6 @@ class Task(BaseModel):
|
|
|
36
36
|
|
|
37
37
|
@validator("key")
|
|
38
38
|
def validate_key_format(cls, v):
|
|
39
|
-
"""Validate key follows kebab-case format."""
|
|
40
|
-
if not re.match(r"^[a-z0-9]+(-[a-z0-9]+)*$", v):
|
|
41
|
-
raise ValueError(
|
|
42
|
-
f"Invalid task key format: {v}. Must follow kebab-case format."
|
|
43
|
-
)
|
|
44
39
|
return v
|
|
45
40
|
|
|
46
41
|
@validator("created_at", pre=True, always=True)
|
|
@@ -37,11 +37,6 @@ class Task(BaseModel):
|
|
|
37
37
|
|
|
38
38
|
@validator("key")
|
|
39
39
|
def validate_key_format(cls, v):
|
|
40
|
-
"""Validate key follows kebab-case format."""
|
|
41
|
-
if not re.match(r"^[a-z0-9]+(-[a-z0-9]+)*$", v):
|
|
42
|
-
raise ValueError(
|
|
43
|
-
f"Invalid task key format: {v}. Must follow kebab-case format."
|
|
44
|
-
)
|
|
45
40
|
return v
|
|
46
41
|
|
|
47
42
|
@validator("created_at", pre=True, always=True)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|