Skip to content

Commit 23b60bd

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: googleapis/googleapis-gen@86f1d59 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiODZmMWQ1OWE3NDllODA3NWIzNDVjZTE1NzMwMDE5ZGQxNTI4ZjI4OCJ9 feat: Support REST transport PiperOrigin-RevId: 511900156 Source-Link: googleapis/googleapis@8310e03 Source-Link: googleapis/googleapis-gen@13b8eb1 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiMTNiOGViMTZiZGI5OGE5YTcxZWE0MjE3MTBkZDE3YzQzODM0MzMwMCJ9 chore: Update gapic-generator-python to v1.8.5 PiperOrigin-RevId: 511892190 Source-Link: googleapis/googleapis@a45d9c0 Source-Link: googleapis/googleapis-gen@1907294 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: googleapis/googleapis-gen@9adddda 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: googleapis/googleapis-gen@88ee501 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiODhlZTUwMTU2NjdkNzE2NDJlOGU5Y2Y5YzZlNjA1YTM4MmVlMzk0YyJ9 feat: enable "rest" transport in Python for services supporting numeric enums PiperOrigin-RevId: 508143576 Source-Link: googleapis/googleapis@7a702a9 Source-Link: googleapis/googleapis-gen@6ad1279 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 76cf3fd commit 23b60bd

196 files changed

Lines changed: 123659 additions & 3557 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
240 KB
Binary file not shown.
Binary file not shown.

packages/google-cloud-dialogflow-cx/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",

packages/google-cloud-dialogflow-cx/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)