xenfra 0.4.0__tar.gz → 0.4.1__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.
- {xenfra-0.4.0 → xenfra-0.4.1}/PKG-INFO +1 -1
- {xenfra-0.4.0 → xenfra-0.4.1}/pyproject.toml +1 -1
- {xenfra-0.4.0 → xenfra-0.4.1}/src/xenfra/commands/deployments.py +2 -2
- {xenfra-0.4.0 → xenfra-0.4.1}/README.md +0 -0
- {xenfra-0.4.0 → xenfra-0.4.1}/src/xenfra/__init__.py +0 -0
- {xenfra-0.4.0 → xenfra-0.4.1}/src/xenfra/commands/__init__.py +0 -0
- {xenfra-0.4.0 → xenfra-0.4.1}/src/xenfra/commands/auth.py +0 -0
- {xenfra-0.4.0 → xenfra-0.4.1}/src/xenfra/commands/auth_device.py +0 -0
- {xenfra-0.4.0 → xenfra-0.4.1}/src/xenfra/commands/intelligence.py +0 -0
- {xenfra-0.4.0 → xenfra-0.4.1}/src/xenfra/commands/projects.py +0 -0
- {xenfra-0.4.0 → xenfra-0.4.1}/src/xenfra/commands/security_cmd.py +0 -0
- {xenfra-0.4.0 → xenfra-0.4.1}/src/xenfra/main.py +0 -0
- {xenfra-0.4.0 → xenfra-0.4.1}/src/xenfra/utils/__init__.py +0 -0
- {xenfra-0.4.0 → xenfra-0.4.1}/src/xenfra/utils/auth.py +0 -0
- {xenfra-0.4.0 → xenfra-0.4.1}/src/xenfra/utils/codebase.py +0 -0
- {xenfra-0.4.0 → xenfra-0.4.1}/src/xenfra/utils/config.py +0 -0
- {xenfra-0.4.0 → xenfra-0.4.1}/src/xenfra/utils/errors.py +0 -0
- {xenfra-0.4.0 → xenfra-0.4.1}/src/xenfra/utils/security.py +0 -0
- {xenfra-0.4.0 → xenfra-0.4.1}/src/xenfra/utils/validation.py +0 -0
|
@@ -65,7 +65,7 @@ def show_patch_preview(patch_data: dict):
|
|
|
65
65
|
console.print()
|
|
66
66
|
|
|
67
67
|
|
|
68
|
-
def _stream_deployment(client: XenfraClient, project_name: str, git_repo: str, branch: str, framework: str, region: str,
|
|
68
|
+
def _stream_deployment(client: XenfraClient, project_name: str, git_repo: str, branch: str, framework: str, region: str, size_slug: str, is_dockerized: bool = True):
|
|
69
69
|
"""
|
|
70
70
|
Creates deployment with real-time SSE streaming (no polling needed).
|
|
71
71
|
|
|
@@ -89,7 +89,7 @@ def _stream_deployment(client: XenfraClient, project_name: str, git_repo: str, b
|
|
|
89
89
|
branch=branch,
|
|
90
90
|
framework=framework,
|
|
91
91
|
region=region,
|
|
92
|
-
size_slug=
|
|
92
|
+
size_slug=size_slug,
|
|
93
93
|
is_dockerized=is_dockerized,
|
|
94
94
|
):
|
|
95
95
|
event_type = event.get("event", "message")
|
|
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
|