google-apis-dialogflow_v2 0.46.0 → 0.48.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 183b9884c595f1dd2a5fa23e49f9e80235301b6fd7955b3f8f57986dda60cad7
|
4
|
+
data.tar.gz: e88b5d449ba24c4e468423fe9503ab536f1dd3bb024d0b3608784e07a0dc01bf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 19a18f785daee87d3a491efb18ecef0714dca5f76d1e958fb1a07a7939b71b465aada4dbd2e68b70c82a0eb06aa2b18b33751bebd6a1644088317d416b444dc3
|
7
|
+
data.tar.gz: 735f0a6ff30c651d72248b6608f0151f4d5246a08dff4d24df9bbb3ac81ddcae022e6e48ff067fab72eae7db2f3c8640ec6ddc2977a76cf4d3490169a5af14eb
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-dialogflow_v2
|
2
2
|
|
3
|
+
### v0.48.0 (2022-11-13)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20221109
|
6
|
+
|
7
|
+
### v0.47.0 (2022-10-31)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20221026
|
10
|
+
|
3
11
|
### v0.46.0 (2022-10-20)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20221017
|
@@ -6464,6 +6464,12 @@ module Google
|
|
6464
6464
|
# @return [String]
|
6465
6465
|
attr_accessor :automated_agent_reply_type
|
6466
6466
|
|
6467
|
+
# The unique identifier of the current Dialogflow CX conversation page. Format: `
|
6468
|
+
# projects//locations//agents//flows//pages/`.
|
6469
|
+
# Corresponds to the JSON property `cxCurrentPage`
|
6470
|
+
# @return [String]
|
6471
|
+
attr_accessor :cx_current_page
|
6472
|
+
|
6467
6473
|
# The message returned from the DetectIntent method.
|
6468
6474
|
# Corresponds to the JSON property `detectIntentResponse`
|
6469
6475
|
# @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2DetectIntentResponse]
|
@@ -6477,6 +6483,7 @@ module Google
|
|
6477
6483
|
def update!(**args)
|
6478
6484
|
@allow_cancellation = args[:allow_cancellation] if args.key?(:allow_cancellation)
|
6479
6485
|
@automated_agent_reply_type = args[:automated_agent_reply_type] if args.key?(:automated_agent_reply_type)
|
6486
|
+
@cx_current_page = args[:cx_current_page] if args.key?(:cx_current_page)
|
6480
6487
|
@detect_intent_response = args[:detect_intent_response] if args.key?(:detect_intent_response)
|
6481
6488
|
end
|
6482
6489
|
end
|
@@ -11396,6 +11403,22 @@ module Google
|
|
11396
11403
|
# @return [String]
|
11397
11404
|
attr_accessor :name
|
11398
11405
|
|
11406
|
+
# Optional. Obfuscated user id that should be associated with the created
|
11407
|
+
# participant. You can specify a user id as follows: 1. If you set this field in
|
11408
|
+
# CreateParticipantRequest or UpdateParticipantRequest, Dialogflow adds the
|
11409
|
+
# obfuscated user id with the participant. 2. If you set this field in
|
11410
|
+
# AnalyzeContent or StreamingAnalyzeContent, Dialogflow will update Participant.
|
11411
|
+
# obfuscated_external_user_id. Dialogflow returns an error if you try to add a
|
11412
|
+
# user id for a non-END_USER participant. Dialogflow uses this user id for
|
11413
|
+
# billing and measurement purposes. For example, Dialogflow determines whether a
|
11414
|
+
# user in one conversation returned in a later conversation. Note: * Please
|
11415
|
+
# never pass raw user ids to Dialogflow. Always obfuscate your user id first. *
|
11416
|
+
# Dialogflow only accepts a UTF-8 encoded string, e.g., a hex digest of a hash
|
11417
|
+
# function like SHA-512. * The length of the user id must be <= 256 characters.
|
11418
|
+
# Corresponds to the JSON property `obfuscatedExternalUserId`
|
11419
|
+
# @return [String]
|
11420
|
+
attr_accessor :obfuscated_external_user_id
|
11421
|
+
|
11399
11422
|
# Immutable. The role this participant plays in the conversation. This field
|
11400
11423
|
# must be set during participant creation and is then immutable.
|
11401
11424
|
# Corresponds to the JSON property `role`
|
@@ -11417,6 +11440,7 @@ module Google
|
|
11417
11440
|
def update!(**args)
|
11418
11441
|
@documents_metadata_filters = args[:documents_metadata_filters] if args.key?(:documents_metadata_filters)
|
11419
11442
|
@name = args[:name] if args.key?(:name)
|
11443
|
+
@obfuscated_external_user_id = args[:obfuscated_external_user_id] if args.key?(:obfuscated_external_user_id)
|
11420
11444
|
@role = args[:role] if args.key?(:role)
|
11421
11445
|
@sip_recording_media_label = args[:sip_recording_media_label] if args.key?(:sip_recording_media_label)
|
11422
11446
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DialogflowV2
|
18
18
|
# Version of the google-apis-dialogflow_v2 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.48.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.11.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20221109"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -4507,6 +4507,7 @@ module Google
|
|
4507
4507
|
class Representation < Google::Apis::Core::JsonRepresentation
|
4508
4508
|
property :allow_cancellation, as: 'allowCancellation'
|
4509
4509
|
property :automated_agent_reply_type, as: 'automatedAgentReplyType'
|
4510
|
+
property :cx_current_page, as: 'cxCurrentPage'
|
4510
4511
|
property :detect_intent_response, as: 'detectIntentResponse', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2DetectIntentResponse, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2DetectIntentResponse::Representation
|
4511
4512
|
|
4512
4513
|
end
|
@@ -5904,6 +5905,7 @@ module Google
|
|
5904
5905
|
class Representation < Google::Apis::Core::JsonRepresentation
|
5905
5906
|
hash :documents_metadata_filters, as: 'documentsMetadataFilters'
|
5906
5907
|
property :name, as: 'name'
|
5908
|
+
property :obfuscated_external_user_id, as: 'obfuscatedExternalUserId'
|
5907
5909
|
property :role, as: 'role'
|
5908
5910
|
property :sip_recording_media_label, as: 'sipRecordingMediaLabel'
|
5909
5911
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-dialogflow_v2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.48.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-11-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2/v0.48.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|