applied-cli 0.5.60__tar.gz → 0.5.61__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.
- {applied_cli-0.5.60 → applied_cli-0.5.61}/PKG-INFO +1 -1
- {applied_cli-0.5.60 → applied_cli-0.5.61}/applied_cli/__init__.py +1 -1
- {applied_cli-0.5.60 → applied_cli-0.5.61}/applied_cli/client.py +5 -3
- {applied_cli-0.5.60 → applied_cli-0.5.61}/applied_cli.egg-info/PKG-INFO +1 -1
- {applied_cli-0.5.60 → applied_cli-0.5.61}/pyproject.toml +1 -1
- {applied_cli-0.5.60 → applied_cli-0.5.61}/README.md +0 -0
- {applied_cli-0.5.60 → applied_cli-0.5.61}/applied_cli/agent_scoped_flows.py +0 -0
- {applied_cli-0.5.60 → applied_cli-0.5.61}/applied_cli/cli.py +0 -0
- {applied_cli-0.5.60 → applied_cli-0.5.61}/applied_cli/conversation_lookup.py +0 -0
- {applied_cli-0.5.60 → applied_cli-0.5.61}/applied_cli/conversations.py +0 -0
- {applied_cli-0.5.60 → applied_cli-0.5.61}/applied_cli/credentials.py +0 -0
- {applied_cli-0.5.60 → applied_cli-0.5.61}/applied_cli/flow_helpers.py +0 -0
- {applied_cli-0.5.60 → applied_cli-0.5.61}/applied_cli/formatters.py +0 -0
- {applied_cli-0.5.60 → applied_cli-0.5.61}/applied_cli/tools.py +0 -0
- {applied_cli-0.5.60 → applied_cli-0.5.61}/applied_cli.egg-info/SOURCES.txt +0 -0
- {applied_cli-0.5.60 → applied_cli-0.5.61}/applied_cli.egg-info/dependency_links.txt +0 -0
- {applied_cli-0.5.60 → applied_cli-0.5.61}/applied_cli.egg-info/entry_points.txt +0 -0
- {applied_cli-0.5.60 → applied_cli-0.5.61}/applied_cli.egg-info/requires.txt +0 -0
- {applied_cli-0.5.60 → applied_cli-0.5.61}/applied_cli.egg-info/top_level.txt +0 -0
- {applied_cli-0.5.60 → applied_cli-0.5.61}/setup.cfg +0 -0
- {applied_cli-0.5.60 → applied_cli-0.5.61}/tests/test_agent_scoped_flows.py +0 -0
- {applied_cli-0.5.60 → applied_cli-0.5.61}/tests/test_audit_tools.py +0 -0
- {applied_cli-0.5.60 → applied_cli-0.5.61}/tests/test_benchmark_scenario_tools.py +0 -0
- {applied_cli-0.5.60 → applied_cli-0.5.61}/tests/test_cli.py +0 -0
- {applied_cli-0.5.60 → applied_cli-0.5.61}/tests/test_client.py +0 -0
- {applied_cli-0.5.60 → applied_cli-0.5.61}/tests/test_conversation_tools.py +0 -0
- {applied_cli-0.5.60 → applied_cli-0.5.61}/tests/test_flow_tools.py +0 -0
|
@@ -574,11 +574,13 @@ class AppliedClient:
|
|
|
574
574
|
comments: str | None = None,
|
|
575
575
|
) -> dict:
|
|
576
576
|
"""Create a topic or intent (property choice)."""
|
|
577
|
-
body: dict[str, Any] = {
|
|
577
|
+
body: dict[str, Any] = {
|
|
578
|
+
"name": name,
|
|
579
|
+
"field_id": None,
|
|
580
|
+
"color": color or "blue",
|
|
581
|
+
}
|
|
578
582
|
if parent_id:
|
|
579
583
|
body["parent_choice_id"] = parent_id
|
|
580
|
-
if color:
|
|
581
|
-
body["color"] = color
|
|
582
584
|
if description:
|
|
583
585
|
body["description"] = description
|
|
584
586
|
if comments:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|