This repository was archived by the owner on Jan 6, 2024. It is now read-only.

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed
Original file line numberDiff line numberDiff line change
@@ -1200,6 +1200,8 @@ class MatchIntentRequest(proto.Message):
12001200
The parameters of this query.
12011201
query_input (google.cloud.dialogflowcx_v3beta1.types.QueryInput):
12021202
Required. The input specification.
1203+
persist_parameter_changes (bool):
1204+
Persist session parameter changes from ``query_params``.
12031205
"""
12041206

12051207
session: str = proto.Field(
@@ -1216,6 +1218,10 @@ class MatchIntentRequest(proto.Message):
12161218
number=3,
12171219
message="QueryInput",
12181220
)
1221+
persist_parameter_changes: bool = proto.Field(
1222+
proto.BOOL,
1223+
number=5,
1224+
)
12191225

12201226

12211227
class MatchIntentResponse(proto.Message):
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
],
99
"language": "PYTHON",
1010
"name": "google-cloud-dialogflow-cx",
11-
"version": "1.19.0"
11+
"version": "0.1.0"
1212
},
1313
"snippets": [
1414
{
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
],
99
"language": "PYTHON",
1010
"name": "google-cloud-dialogflow-cx",
11-
"version": "1.19.0"
11+
"version": "0.1.0"
1212
},
1313
"snippets": [
1414
{
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ class dialogflowcxCallTransformer(cst.CSTTransformer):
113113
'list_webhooks': ('parent', 'page_size', 'page_token', ),
114114
'load_version': ('name', 'allow_override_agent_resources', ),
115115
'lookup_environment_history': ('name', 'page_size', 'page_token', ),
116-
'match_intent': ('session', 'query_input', 'query_params', ),
116+
'match_intent': ('session', 'query_input', 'query_params', 'persist_parameter_changes', ),
117117
'restore_agent': ('name', 'agent_uri', 'agent_content', 'restore_option', ),
118118
'run_continuous_test': ('environment', ),
119119
'run_test_case': ('name', 'environment', ),

0 commit comments

Comments
 (0)