@josephyan/qingflow-cli 0.2.0-beta.63 → 0.2.0-beta.65
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 +2 -2
- package/package.json +1 -1
- package/pyproject.toml +1 -1
- package/src/qingflow_mcp/builder_facade/models.py +5 -0
- package/src/qingflow_mcp/builder_facade/service.py +560 -26
- package/src/qingflow_mcp/cli/commands/builder.py +4 -0
- package/src/qingflow_mcp/server_app_builder.py +4 -0
- package/src/qingflow_mcp/solution/compiler/icon_utils.py +71 -0
- package/src/qingflow_mcp/tools/ai_builder_tools.py +36 -2
- package/src/qingflow_mcp/tools/custom_button_tools.py +2 -0
package/README.md
CHANGED
|
@@ -3,13 +3,13 @@
|
|
|
3
3
|
Install:
|
|
4
4
|
|
|
5
5
|
```bash
|
|
6
|
-
npm install @josephyan/qingflow-cli@0.2.0-beta.
|
|
6
|
+
npm install @josephyan/qingflow-cli@0.2.0-beta.65
|
|
7
7
|
```
|
|
8
8
|
|
|
9
9
|
Run:
|
|
10
10
|
|
|
11
11
|
```bash
|
|
12
|
-
npx -y -p @josephyan/qingflow-cli@0.2.0-beta.
|
|
12
|
+
npx -y -p @josephyan/qingflow-cli@0.2.0-beta.65 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": "0.2.0-beta.
|
|
3
|
+
"version": "0.2.0-beta.65",
|
|
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
|
@@ -639,6 +639,7 @@ class CustomButtonPatch(StrictModel):
|
|
|
639
639
|
background_color: str = Field(validation_alias=AliasChoices("background_color", "backgroundColor"))
|
|
640
640
|
text_color: str = Field(validation_alias=AliasChoices("text_color", "textColor"))
|
|
641
641
|
button_icon: str = Field(validation_alias=AliasChoices("button_icon", "buttonIcon"))
|
|
642
|
+
icon_color: str | None = Field(default=None, validation_alias=AliasChoices("icon_color", "iconColor"))
|
|
642
643
|
trigger_action: PublicButtonTriggerAction = Field(validation_alias=AliasChoices("trigger_action", "triggerAction"))
|
|
643
644
|
trigger_link_url: str | None = Field(default=None, validation_alias=AliasChoices("trigger_link_url", "triggerLinkUrl"))
|
|
644
645
|
trigger_add_data_config: CustomButtonAddDataConfigPatch | None = Field(
|
|
@@ -678,6 +679,7 @@ class ViewButtonBindingPatch(StrictModel):
|
|
|
678
679
|
button_id: int = Field(validation_alias=AliasChoices("button_id", "buttonId", "id"))
|
|
679
680
|
button_text: str | None = Field(default=None, validation_alias=AliasChoices("button_text", "buttonText"))
|
|
680
681
|
button_icon: str | None = Field(default=None, validation_alias=AliasChoices("button_icon", "buttonIcon"))
|
|
682
|
+
icon_color: str | None = Field(default=None, validation_alias=AliasChoices("icon_color", "iconColor"))
|
|
681
683
|
background_color: str | None = Field(default=None, validation_alias=AliasChoices("background_color", "backgroundColor"))
|
|
682
684
|
text_color: str | None = Field(default=None, validation_alias=AliasChoices("text_color", "textColor"))
|
|
683
685
|
trigger_action: str | None = Field(default=None, validation_alias=AliasChoices("trigger_action", "triggerAction"))
|
|
@@ -994,6 +996,7 @@ FieldPatch.model_rebuild()
|
|
|
994
996
|
class AppReadSummaryResponse(StrictModel):
|
|
995
997
|
app_key: str
|
|
996
998
|
title: str | None = None
|
|
999
|
+
app_icon: str | None = None
|
|
997
1000
|
tag_ids: list[int] = Field(default_factory=list)
|
|
998
1001
|
publish_status: int | None = None
|
|
999
1002
|
field_count: int = 0
|
|
@@ -1051,6 +1054,8 @@ class SchemaPlanRequest(StrictModel):
|
|
|
1051
1054
|
app_key: str = ""
|
|
1052
1055
|
package_tag_id: int | None = None
|
|
1053
1056
|
app_name: str = Field(default="", validation_alias=AliasChoices("app_name", "app_title", "title"))
|
|
1057
|
+
icon: str | None = None
|
|
1058
|
+
color: str | None = None
|
|
1054
1059
|
create_if_missing: bool = False
|
|
1055
1060
|
add_fields: list[FieldPatch] = Field(default_factory=list)
|
|
1056
1061
|
update_fields: list[FieldUpdatePatch] = Field(default_factory=list)
|