licos-platform-cli 0.2.3__tar.gz → 0.2.5__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.
@@ -33,17 +33,19 @@ Thumbs.db
33
33
  *.log
34
34
  *.pid
35
35
  .licos
36
+ .tmp
36
37
 
37
38
  /tmp
38
39
 
39
- /Docs/hermes-agent
40
- /Docs/OpenCode
41
- /Docs/平台API
42
-
43
40
  *.codex-*
44
41
 
45
42
  dist
46
-
47
- project-20260423_130440
48
- projects-20260425_workflow
49
- coze-skills
43
+ logs
44
+
45
+ Docs/coze-skills
46
+ Docs/hermes-agent
47
+ Docs/OpenCode
48
+ Docs/平台API
49
+ Docs/project-20260423_130440
50
+ Docs/projects-20260425_workflow
51
+ Docs/superpowers
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: licos-platform-cli
3
- Version: 0.2.3
3
+ Version: 0.2.5
4
4
  Summary: LICOS platform CLI
5
5
  Requires-Python: >=3.10
6
- Requires-Dist: licos-platform-sdk>=0.2.2
6
+ Requires-Dist: licos-platform-sdk>=0.2.4
@@ -4,11 +4,11 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "licos-platform-cli"
7
- version = "0.2.3"
7
+ version = "0.2.5"
8
8
  description = "LICOS platform CLI"
9
9
  requires-python = ">=3.10"
10
10
  dependencies = [
11
- "licos-platform-sdk>=0.2.2",
11
+ "licos-platform-sdk>=0.2.4",
12
12
  ]
13
13
 
14
14
  [project.scripts]
@@ -75,7 +75,7 @@ STORAGE_HELP = {
75
75
  "example": "licos-platform storage delete-folder folder-id",
76
76
  },
77
77
  "upload-file": {
78
- "description": "Upload a local file, bytes are sent as multipart form data, and the returned file object must be used.",
78
+ "description": "Upload a local file up to 20 MiB, bytes are sent as multipart form data, and the returned file object must be used.",
79
79
  "parameters": [
80
80
  {"name": "file", "required": True, "description": "Local file path."},
81
81
  {"name": "--folder-id", "required": False, "description": "Target folder ID. Omit for root."},
@@ -128,7 +128,7 @@ STORAGE_HELP = {
128
128
  DATABASE_HELP = {
129
129
  "topic": "database",
130
130
  "description": "Runtime database data-plane helpers for structured data CRUD, filtering, pagination, aggregation, transactions, and RPC.",
131
- "runtime": [*RUNTIME_ENV, {"name": "LICOS_DATABASE_ENVIRONMENT", "description": "Optional database environment override: dev or prod."}],
131
+ "runtime": RUNTIME_ENV,
132
132
  "rules": [
133
133
  "Use SDK from server/runtime code; do not call from browser bundles.",
134
134
  "Do not ask for database host, port, username, password, or direct database URL.",
@@ -280,4 +280,3 @@ def add_help_parser(subparsers: argparse._SubParsersAction[argparse.ArgumentPars
280
280
  help_parser.add_argument("topic", nargs="?", choices=sorted(HELP_TOPICS), help="Help topic")
281
281
  help_parser.add_argument("command", nargs="?", help="Optional command name inside the topic")
282
282
  _set_handler(help_parser, _cmd_help)
283
-
@@ -68,6 +68,7 @@ class PlatformCliTests(unittest.TestCase):
68
68
  self.assertIn("python", payload["sdk"])
69
69
  self.assertIn("node", payload["sdk"])
70
70
  self.assertIn("eq", payload["filters"]["operators"])
71
+ self.assertNotIn("LICOS_DATABASE_ENVIRONMENT", {item["name"] for item in payload["runtime"]})
71
72
 
72
73
  def test_storage_files_wraps_sdk_and_outputs_json(self) -> None:
73
74
  with mock.patch.object(storage_commands.storage, "list_files", return_value=[{"id": "file-1"}]) as list_files: