Skip to content
This repository has been archived by the owner on Dec 17, 2023. It is now read-only.

Commit

Permalink
Merge branch 'main' into parthea-patch-3
Browse files Browse the repository at this point in the history
  • Loading branch information
parthea authored Aug 11, 2023
2 parents c5599f5 + 64b674a commit d1c0e6f
Show file tree
Hide file tree
Showing 7 changed files with 38 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "2.23.2"
".": "2.23.3"
}
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@

[1]: https://pypi.org/project/dialogflow/#history

## [2.23.3](https://github.com/googleapis/python-dialogflow/compare/v2.23.2...v2.23.3) (2023-08-03)


### Documentation

* Minor formatting ([#658](https://github.com/googleapis/python-dialogflow/issues/658)) ([4a2c65c](https://github.com/googleapis/python-dialogflow/commit/4a2c65c8114a3d1375ceabe9bba74ad7031d7f6d))
* Minor formatting ([#664](https://github.com/googleapis/python-dialogflow/issues/664)) ([466e6dd](https://github.com/googleapis/python-dialogflow/commit/466e6ddfceb74a2621234203f55e7da45cd9c78e))

## [2.23.2](https://github.com/googleapis/python-dialogflow/compare/v2.23.1...v2.23.2) (2023-07-10)


Expand Down
2 changes: 1 addition & 1 deletion google/cloud/dialogflow/gapic_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
__version__ = "2.23.2" # {x-release-please-version}
__version__ = "2.23.3" # {x-release-please-version}
2 changes: 1 addition & 1 deletion google/cloud/dialogflow_v2/gapic_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
__version__ = "2.23.2" # {x-release-please-version}
__version__ = "2.23.3" # {x-release-please-version}
16 changes: 16 additions & 0 deletions google/cloud/dialogflow_v2/types/conversation.py
Original file line number Diff line number Diff line change
Expand Up @@ -500,6 +500,10 @@ class Summary(proto.Message):
"projects/<Project ID>/answerRecords/<Answer
Record ID>".
baseline_model_version (str):
The baseline model version used to generate
this summary. It is empty if a baseline model
was not used to generate this summary.
"""

text: str = proto.Field(
Expand All @@ -515,6 +519,10 @@ class Summary(proto.Message):
proto.STRING,
number=3,
)
baseline_model_version: str = proto.Field(
proto.STRING,
number=5,
)

summary: Summary = proto.Field(
proto.MESSAGE,
Expand Down Expand Up @@ -637,6 +645,10 @@ class Summary(proto.Message):
sections. The key is the section's name and the
value is the section's content. There is no
specific format for the key or value.
baseline_model_version (str):
The baseline model version used to generate
this summary. It is empty if a baseline model
was not used to generate this summary.
"""

text: str = proto.Field(
Expand All @@ -648,6 +660,10 @@ class Summary(proto.Message):
proto.STRING,
number=2,
)
baseline_model_version: str = proto.Field(
proto.STRING,
number=4,
)

summary: Summary = proto.Field(
proto.MESSAGE,
Expand Down
10 changes: 10 additions & 0 deletions google/cloud/dialogflow_v2/types/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,12 @@ class QueryParameters(proto.Message):
"User-Agent", "Accept-Encoding",
"If-Modified-Since", "If-None-Match",
"X-Forwarded-For", etc.
platform (str):
The platform of the virtual agent response messages.
If not empty, only emits messages from this platform in the
response. Valid values are the enum names of
[platform][google.cloud.dialogflow.v2.Intent.Message.platform].
"""

time_zone: str = proto.Field(
Expand Down Expand Up @@ -287,6 +293,10 @@ class QueryParameters(proto.Message):
proto.STRING,
number=14,
)
platform: str = proto.Field(
proto.STRING,
number=18,
)


class QueryInput(proto.Message):
Expand Down
2 changes: 1 addition & 1 deletion google/cloud/dialogflow_v2beta1/gapic_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
__version__ = "2.23.2" # {x-release-please-version}
__version__ = "2.23.3" # {x-release-please-version}

0 comments on commit d1c0e6f

Please sign in to comment.