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

Commit acfd1a1

Browse files
feat: Added persist_parameter_changes field from query_params to MatchIntentRequest (#502)
* feat: Added persist_parameter_changes field from `query_params` to MatchIntentRequest PiperOrigin-RevId: 512734924 Source-Link: googleapis/googleapis@7483cdc Source-Link: https://github.com/googleapis/googleapis-gen/commit/86f1d59a749e8075b345ce15730019dd1528f288 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiODZmMWQ1OWE3NDllODA3NWIzNDVjZTE1NzMwMDE5ZGQxNTI4ZjI4OCJ9 feat: Support REST transport PiperOrigin-RevId: 511900156 Source-Link: googleapis/googleapis@8310e03 Source-Link: https://github.com/googleapis/googleapis-gen/commit/13b8eb16bdb98a9a71ea421710dd17c438343300 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiMTNiOGViMTZiZGI5OGE5YTcxZWE0MjE3MTBkZDE3YzQzODM0MzMwMCJ9 chore: Update gapic-generator-python to v1.8.5 PiperOrigin-RevId: 511892190 Source-Link: googleapis/googleapis@a45d9c0 Source-Link: https://github.com/googleapis/googleapis-gen/commit/1907294b1d8365ea24f8c5f2e059a64124c4ed3b Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiMTkwNzI5NGIxZDgzNjVlYTI0ZjhjNWYyZTA1OWE2NDEyNGM0ZWQzYiJ9 feat: added gcs.proto. added support for GcsDestination and TextToSpeechSettings feat!: Remove [REQUIRED] for VersionConfig docs: add more meaningful comments PiperOrigin-RevId: 511306725 Source-Link: googleapis/googleapis@57673de Source-Link: https://github.com/googleapis/googleapis-gen/commit/9adddda268e1b131d6dfcb934f8b34f78489bf08 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiOWFkZGRkYTI2OGUxYjEzMWQ2ZGZjYjkzNGY4YjM0Zjc4NDg5YmYwOCJ9 feat: added gcs.proto. added support for GcsDestination and TextToSpeechSettings. feat!: Remove [REQUIRED] for VersionConfig docs: add more meaningful comments PiperOrigin-RevId: 510257108 Source-Link: googleapis/googleapis@140334b Source-Link: https://github.com/googleapis/googleapis-gen/commit/88ee5015667d71642e8e9cf9c6e605a382ee394c Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiODhlZTUwMTU2NjdkNzE2NDJlOGU5Y2Y5YzZlNjA1YTM4MmVlMzk0YyJ9 feat: enable "rest" transport in Python for services supporting numeric enums PiperOrigin-RevId: 508143576 Source-Link: googleapis/googleapis@7a702a9 Source-Link: https://github.com/googleapis/googleapis-gen/commit/6ad1279c0e7aa787ac6b66c9fd4a210692edffcd Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiNmFkMTI3OWMwZTdhYTc4N2FjNmI2NmM5ZmQ0YTIxMDY5MmVkZmZjZCJ9 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent 199a9e6 commit acfd1a1

File tree

196 files changed

+123659
-3557
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

196 files changed

+123659
-3557
lines changed

dialogflow-cx-v3-py.tar.gz

240 KB
Binary file not shown.

dialogflow-cx-v3beta1-py.tar.gz

176 KB
Binary file not shown.

google/cloud/dialogflowcx/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@
102102
from google.cloud.dialogflowcx_v3.types.audio_config import OutputAudioConfig
103103
from google.cloud.dialogflowcx_v3.types.audio_config import SpeechWordInfo
104104
from google.cloud.dialogflowcx_v3.types.audio_config import SynthesizeSpeechConfig
105+
from google.cloud.dialogflowcx_v3.types.audio_config import TextToSpeechSettings
105106
from google.cloud.dialogflowcx_v3.types.audio_config import VoiceSelectionParams
106107
from google.cloud.dialogflowcx_v3.types.audio_config import AudioEncoding
107108
from google.cloud.dialogflowcx_v3.types.audio_config import OutputAudioEncoding
@@ -178,6 +179,7 @@
178179
from google.cloud.dialogflowcx_v3.types.flow import UpdateFlowRequest
179180
from google.cloud.dialogflowcx_v3.types.flow import ValidateFlowRequest
180181
from google.cloud.dialogflowcx_v3.types.fulfillment import Fulfillment
182+
from google.cloud.dialogflowcx_v3.types.gcs import GcsDestination
181183
from google.cloud.dialogflowcx_v3.types.intent import CreateIntentRequest
182184
from google.cloud.dialogflowcx_v3.types.intent import DeleteIntentRequest
183185
from google.cloud.dialogflowcx_v3.types.intent import GetIntentRequest
@@ -386,6 +388,7 @@
386388
"OutputAudioConfig",
387389
"SpeechWordInfo",
388390
"SynthesizeSpeechConfig",
391+
"TextToSpeechSettings",
389392
"VoiceSelectionParams",
390393
"AudioEncoding",
391394
"OutputAudioEncoding",
@@ -454,6 +457,7 @@
454457
"UpdateFlowRequest",
455458
"ValidateFlowRequest",
456459
"Fulfillment",
460+
"GcsDestination",
457461
"CreateIntentRequest",
458462
"DeleteIntentRequest",
459463
"GetIntentRequest",

google/cloud/dialogflowcx_v3/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@
7070
from .types.audio_config import OutputAudioConfig
7171
from .types.audio_config import SpeechWordInfo
7272
from .types.audio_config import SynthesizeSpeechConfig
73+
from .types.audio_config import TextToSpeechSettings
7374
from .types.audio_config import VoiceSelectionParams
7475
from .types.audio_config import AudioEncoding
7576
from .types.audio_config import OutputAudioEncoding
@@ -138,6 +139,7 @@
138139
from .types.flow import UpdateFlowRequest
139140
from .types.flow import ValidateFlowRequest
140141
from .types.fulfillment import Fulfillment
142+
from .types.gcs import GcsDestination
141143
from .types.intent import CreateIntentRequest
142144
from .types.intent import DeleteIntentRequest
143145
from .types.intent import GetIntentRequest
@@ -347,6 +349,7 @@
347349
"FulfillIntentRequest",
348350
"FulfillIntentResponse",
349351
"Fulfillment",
352+
"GcsDestination",
350353
"GetAgentRequest",
351354
"GetAgentValidationResultRequest",
352355
"GetChangelogRequest",
@@ -462,6 +465,7 @@
462465
"TestResult",
463466
"TestRunDifference",
464467
"TextInput",
468+
"TextToSpeechSettings",
465469
"TrainFlowRequest",
466470
"TransitionCoverage",
467471
"TransitionRoute",

0 commit comments

Comments
 (0)