licos-platform-cli 0.2.6__tar.gz → 0.2.7__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.
- {licos_platform_cli-0.2.6 → licos_platform_cli-0.2.7}/.gitignore +1 -0
- {licos_platform_cli-0.2.6 → licos_platform_cli-0.2.7}/PKG-INFO +2 -2
- {licos_platform_cli-0.2.6 → licos_platform_cli-0.2.7}/pyproject.toml +2 -2
- {licos_platform_cli-0.2.6 → licos_platform_cli-0.2.7}/src/licos_platform_cli/help_commands.py +7 -9
- {licos_platform_cli-0.2.6 → licos_platform_cli-0.2.7}/src/licos_platform_cli/__init__.py +0 -0
- {licos_platform_cli-0.2.6 → licos_platform_cli-0.2.7}/src/licos_platform_cli/database_commands.py +0 -0
- {licos_platform_cli-0.2.6 → licos_platform_cli-0.2.7}/src/licos_platform_cli/main.py +0 -0
- {licos_platform_cli-0.2.6 → licos_platform_cli-0.2.7}/src/licos_platform_cli/storage_commands.py +0 -0
- {licos_platform_cli-0.2.6 → licos_platform_cli-0.2.7}/tests/test_cli.py +0 -0
|
@@ -4,11 +4,11 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "licos-platform-cli"
|
|
7
|
-
version = "0.2.
|
|
7
|
+
version = "0.2.7"
|
|
8
8
|
description = "LICOS platform CLI"
|
|
9
9
|
requires-python = ">=3.10"
|
|
10
10
|
dependencies = [
|
|
11
|
-
"licos-platform-sdk>=0.2.
|
|
11
|
+
"licos-platform-sdk>=0.2.6",
|
|
12
12
|
]
|
|
13
13
|
|
|
14
14
|
[project.scripts]
|
{licos_platform_cli-0.2.6 → licos_platform_cli-0.2.7}/src/licos_platform_cli/help_commands.py
RENAMED
|
@@ -7,15 +7,13 @@ from typing import Any, Callable
|
|
|
7
7
|
Handler = Callable[[argparse.Namespace], Any]
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
RUNTIME_ENV = [
|
|
11
|
-
{"name": "LICOS_PLATFORM_API_BASE_URL", "description": "Platform API base URL; /api/v1 suffix is optional."},
|
|
12
|
-
{"name": "
|
|
13
|
-
{"name": "
|
|
14
|
-
{"name": "
|
|
15
|
-
{"name": "
|
|
16
|
-
|
|
17
|
-
{"name": "LICOS_PROJECT_ENV", "description": "Project environment. prod/production/release maps to prod; otherwise dev."},
|
|
18
|
-
]
|
|
10
|
+
RUNTIME_ENV = [
|
|
11
|
+
{"name": "LICOS_PLATFORM_API_BASE_URL", "description": "Platform API base URL; /api/v1 suffix is optional."},
|
|
12
|
+
{"name": "LICOS_PROJECT_ID / AGENT_PROJECT_ID", "description": "Current project ID."},
|
|
13
|
+
{"name": "LICOS_WORKSPACE_ID / AGENT_WORKSPACE_ID", "description": "Current workspace ID, forwarded as X-Workspace-Id."},
|
|
14
|
+
{"name": "LICOS_USER_ID / AGENT_USER_ID", "description": "Owner user ID, forwarded as X-User-Id."},
|
|
15
|
+
{"name": "LICOS_PROJECT_ENV", "description": "Project environment. prod/production/release maps to prod; otherwise dev."},
|
|
16
|
+
]
|
|
19
17
|
|
|
20
18
|
|
|
21
19
|
STORAGE_HELP = {
|
|
File without changes
|
{licos_platform_cli-0.2.6 → licos_platform_cli-0.2.7}/src/licos_platform_cli/database_commands.py
RENAMED
|
File without changes
|
|
File without changes
|
{licos_platform_cli-0.2.6 → licos_platform_cli-0.2.7}/src/licos_platform_cli/storage_commands.py
RENAMED
|
File without changes
|
|
File without changes
|