@josephyan/qingflow-cli 1.1.5 → 1.1.6

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.
package/README.md CHANGED
@@ -3,13 +3,13 @@
3
3
  Install:
4
4
 
5
5
  ```bash
6
- npm install @josephyan/qingflow-cli@1.1.5
6
+ npm install @josephyan/qingflow-cli@1.1.6
7
7
  ```
8
8
 
9
9
  Run:
10
10
 
11
11
  ```bash
12
- npx -y -p @josephyan/qingflow-cli@1.1.5 qingflow
12
+ npx -y -p @josephyan/qingflow-cli@1.1.6 qingflow
13
13
  ```
14
14
 
15
15
  Environment:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@josephyan/qingflow-cli",
3
- "version": "1.1.5",
3
+ "version": "1.1.6",
4
4
  "description": "Human-friendly Qingflow command line interface for auth, record operations, import, tasks, and stable builder flows.",
5
5
  "license": "MIT",
6
6
  "type": "module",
package/pyproject.toml CHANGED
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "qingflow-mcp"
7
- version = "1.1.5"
7
+ version = "1.1.6"
8
8
  description = "User-authenticated MCP server for Qingflow"
9
9
  readme = "README.md"
10
10
  license = "MIT"
@@ -5967,6 +5967,26 @@ class AiBuilderFacade:
5967
5967
  result["message"] = "read app view config"
5968
5968
  return result
5969
5969
 
5970
+ def _load_view_summaries_for_builder(self, *, profile: str, app_key: str) -> tuple[list[dict[str, Any]], list[dict[str, Any]]]:
5971
+ views, views_unavailable, views_read_error = self._load_views_result(
5972
+ profile=profile,
5973
+ app_key=app_key,
5974
+ tolerate_404=True,
5975
+ tolerate_permission_restricted=True,
5976
+ include_error=True,
5977
+ )
5978
+ summaries, config_read_errors = _summarize_views_with_config(self.views, profile=profile, views=views)
5979
+ if views_unavailable and views_read_error is not None:
5980
+ config_read_errors = [
5981
+ {
5982
+ "resource": "views",
5983
+ "phase": "view_list",
5984
+ "transport_error": _transport_error_payload(views_read_error),
5985
+ },
5986
+ *config_read_errors,
5987
+ ]
5988
+ return summaries, config_read_errors
5989
+
5970
5990
  def app_get_flow(self, *, profile: str, app_key: str) -> JSONObject:
5971
5991
  result = self.app_read_flow_summary(profile=profile, app_key=app_key)
5972
5992
  if result.get("status") == "success":