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.
@@ -34,6 +34,7 @@ Thumbs.db
34
34
  *.pid
35
35
  .licos
36
36
  .tmp
37
+ .playwright-cli
37
38
 
38
39
  /tmp
39
40
  tools/android-sdk-cache/*.zip
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: licos-platform-cli
3
- Version: 0.2.6
3
+ Version: 0.2.7
4
4
  Summary: LICOS platform CLI
5
5
  Requires-Python: >=3.10
6
- Requires-Dist: licos-platform-sdk>=0.2.5
6
+ Requires-Dist: licos-platform-sdk>=0.2.6
@@ -4,11 +4,11 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "licos-platform-cli"
7
- version = "0.2.6"
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.5",
11
+ "licos-platform-sdk>=0.2.6",
12
12
  ]
13
13
 
14
14
  [project.scripts]
@@ -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": "LICOS_RUNTIME_TOKEN", "description": "Runtime authorization token. Preferred over LICOS_USER_TOKEN."},
13
- {"name": "LICOS_USER_TOKEN", "description": "Fallback user token for development/runtime compatibility."},
14
- {"name": "LICOS_PROJECT_ID / AGENT_PROJECT_ID", "description": "Current project ID."},
15
- {"name": "LICOS_WORKSPACE_ID / AGENT_WORKSPACE_ID", "description": "Current workspace ID, forwarded as X-Workspace-Id."},
16
- {"name": "LICOS_USER_ID / AGENT_USER_ID", "description": "Current user ID, forwarded as X-User-Id."},
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 = {