google-apis-dialogflow_v3beta1 0.57.0 → 0.58.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 06bd377f91cca611554ae0969aae042a35275c87d3f8957cd772e72fe0653787
|
4
|
+
data.tar.gz: 20ef5ebd0b2f18f163c0184523b3e82a869f8e98183c9686456ec858f794bd21
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d920944ba164c97524a311706c7f093c811a083cb2970f7fb0c3504c9804a0beb859fd423352df9cdfccbf9e0b04a60199aa0429c456044ccfedd5ef8216b23e
|
7
|
+
data.tar.gz: 2a1d6664375b63b18cc31603caf712fc2bad1c2aa9f795a8357e0340a055b5ac987d7543e526d99067b1f13571054108001f0fc895873e8f928aab4cb4d2ef34
|
data/CHANGELOG.md
CHANGED
@@ -2573,6 +2573,18 @@ module Google
|
|
2573
2573
|
attr_accessor :reached_end_page
|
2574
2574
|
alias_method :reached_end_page?, :reached_end_page
|
2575
2575
|
|
2576
|
+
# Sentiment magnitude of the user utterance if [sentiment](https://cloud.google.
|
2577
|
+
# com/dialogflow/cx/docs/concept/sentiment) was enabled.
|
2578
|
+
# Corresponds to the JSON property `sentimentMagnitude`
|
2579
|
+
# @return [Float]
|
2580
|
+
attr_accessor :sentiment_magnitude
|
2581
|
+
|
2582
|
+
# Sentiment score of the user utterance if [sentiment](https://cloud.google.com/
|
2583
|
+
# dialogflow/cx/docs/concept/sentiment) was enabled.
|
2584
|
+
# Corresponds to the JSON property `sentimentScore`
|
2585
|
+
# @return [Float]
|
2586
|
+
attr_accessor :sentiment_score
|
2587
|
+
|
2576
2588
|
# Whether user was specifically asking for a live agent.
|
2577
2589
|
# Corresponds to the JSON property `userEscalated`
|
2578
2590
|
# @return [Boolean]
|
@@ -2596,6 +2608,8 @@ module Google
|
|
2596
2608
|
@no_match = args[:no_match] if args.key?(:no_match)
|
2597
2609
|
@no_user_input = args[:no_user_input] if args.key?(:no_user_input)
|
2598
2610
|
@reached_end_page = args[:reached_end_page] if args.key?(:reached_end_page)
|
2611
|
+
@sentiment_magnitude = args[:sentiment_magnitude] if args.key?(:sentiment_magnitude)
|
2612
|
+
@sentiment_score = args[:sentiment_score] if args.key?(:sentiment_score)
|
2599
2613
|
@user_escalated = args[:user_escalated] if args.key?(:user_escalated)
|
2600
2614
|
@webhook_statuses = args[:webhook_statuses] if args.key?(:webhook_statuses)
|
2601
2615
|
end
|
@@ -2694,11 +2708,30 @@ module Google
|
|
2694
2708
|
# @return [Array<String>]
|
2695
2709
|
attr_accessor :allowed_ca_certs
|
2696
2710
|
|
2711
|
+
# Optional. HTTP method for the flexible webhook calls. Standard webhook always
|
2712
|
+
# uses POST.
|
2713
|
+
# Corresponds to the JSON property `httpMethod`
|
2714
|
+
# @return [String]
|
2715
|
+
attr_accessor :http_method
|
2716
|
+
|
2717
|
+
# Optional. Maps the values extracted from specific fields of the flexible
|
2718
|
+
# webhook response into session parameters. - Key: session parameter name -
|
2719
|
+
# Value: field path in the webhook response
|
2720
|
+
# Corresponds to the JSON property `parameterMapping`
|
2721
|
+
# @return [Hash<String,String>]
|
2722
|
+
attr_accessor :parameter_mapping
|
2723
|
+
|
2697
2724
|
# The password for HTTP Basic authentication.
|
2698
2725
|
# Corresponds to the JSON property `password`
|
2699
2726
|
# @return [String]
|
2700
2727
|
attr_accessor :password
|
2701
2728
|
|
2729
|
+
# Optional. Defines a custom JSON object as request body to send to flexible
|
2730
|
+
# webhook.
|
2731
|
+
# Corresponds to the JSON property `requestBody`
|
2732
|
+
# @return [String]
|
2733
|
+
attr_accessor :request_body
|
2734
|
+
|
2702
2735
|
# The HTTP request headers to send together with webhook requests.
|
2703
2736
|
# Corresponds to the JSON property `requestHeaders`
|
2704
2737
|
# @return [Hash<String,String>]
|
@@ -2715,6 +2748,11 @@ module Google
|
|
2715
2748
|
# @return [String]
|
2716
2749
|
attr_accessor :username
|
2717
2750
|
|
2751
|
+
# Optional. Type of the webhook.
|
2752
|
+
# Corresponds to the JSON property `webhookType`
|
2753
|
+
# @return [String]
|
2754
|
+
attr_accessor :webhook_type
|
2755
|
+
|
2718
2756
|
def initialize(**args)
|
2719
2757
|
update!(**args)
|
2720
2758
|
end
|
@@ -2722,10 +2760,14 @@ module Google
|
|
2722
2760
|
# Update properties of this object
|
2723
2761
|
def update!(**args)
|
2724
2762
|
@allowed_ca_certs = args[:allowed_ca_certs] if args.key?(:allowed_ca_certs)
|
2763
|
+
@http_method = args[:http_method] if args.key?(:http_method)
|
2764
|
+
@parameter_mapping = args[:parameter_mapping] if args.key?(:parameter_mapping)
|
2725
2765
|
@password = args[:password] if args.key?(:password)
|
2766
|
+
@request_body = args[:request_body] if args.key?(:request_body)
|
2726
2767
|
@request_headers = args[:request_headers] if args.key?(:request_headers)
|
2727
2768
|
@uri = args[:uri] if args.key?(:uri)
|
2728
2769
|
@username = args[:username] if args.key?(:username)
|
2770
|
+
@webhook_type = args[:webhook_type] if args.key?(:webhook_type)
|
2729
2771
|
end
|
2730
2772
|
end
|
2731
2773
|
|
@@ -8968,6 +9010,18 @@ module Google
|
|
8968
9010
|
attr_accessor :reached_end_page
|
8969
9011
|
alias_method :reached_end_page?, :reached_end_page
|
8970
9012
|
|
9013
|
+
# Sentiment magnitude of the user utterance if [sentiment](https://cloud.google.
|
9014
|
+
# com/dialogflow/cx/docs/concept/sentiment) was enabled.
|
9015
|
+
# Corresponds to the JSON property `sentimentMagnitude`
|
9016
|
+
# @return [Float]
|
9017
|
+
attr_accessor :sentiment_magnitude
|
9018
|
+
|
9019
|
+
# Sentiment score of the user utterance if [sentiment](https://cloud.google.com/
|
9020
|
+
# dialogflow/cx/docs/concept/sentiment) was enabled.
|
9021
|
+
# Corresponds to the JSON property `sentimentScore`
|
9022
|
+
# @return [Float]
|
9023
|
+
attr_accessor :sentiment_score
|
9024
|
+
|
8971
9025
|
# Whether user was specifically asking for a live agent.
|
8972
9026
|
# Corresponds to the JSON property `userEscalated`
|
8973
9027
|
# @return [Boolean]
|
@@ -8991,6 +9045,8 @@ module Google
|
|
8991
9045
|
@no_match = args[:no_match] if args.key?(:no_match)
|
8992
9046
|
@no_user_input = args[:no_user_input] if args.key?(:no_user_input)
|
8993
9047
|
@reached_end_page = args[:reached_end_page] if args.key?(:reached_end_page)
|
9048
|
+
@sentiment_magnitude = args[:sentiment_magnitude] if args.key?(:sentiment_magnitude)
|
9049
|
+
@sentiment_score = args[:sentiment_score] if args.key?(:sentiment_score)
|
8994
9050
|
@user_escalated = args[:user_escalated] if args.key?(:user_escalated)
|
8995
9051
|
@webhook_statuses = args[:webhook_statuses] if args.key?(:webhook_statuses)
|
8996
9052
|
end
|
@@ -9332,11 +9388,30 @@ module Google
|
|
9332
9388
|
# @return [Array<String>]
|
9333
9389
|
attr_accessor :allowed_ca_certs
|
9334
9390
|
|
9391
|
+
# Optional. HTTP method for the flexible webhook calls. Standard webhook always
|
9392
|
+
# uses POST.
|
9393
|
+
# Corresponds to the JSON property `httpMethod`
|
9394
|
+
# @return [String]
|
9395
|
+
attr_accessor :http_method
|
9396
|
+
|
9397
|
+
# Optional. Maps the values extracted from specific fields of the flexible
|
9398
|
+
# webhook response into session parameters. - Key: session parameter name -
|
9399
|
+
# Value: field path in the webhook response
|
9400
|
+
# Corresponds to the JSON property `parameterMapping`
|
9401
|
+
# @return [Hash<String,String>]
|
9402
|
+
attr_accessor :parameter_mapping
|
9403
|
+
|
9335
9404
|
# The password for HTTP Basic authentication.
|
9336
9405
|
# Corresponds to the JSON property `password`
|
9337
9406
|
# @return [String]
|
9338
9407
|
attr_accessor :password
|
9339
9408
|
|
9409
|
+
# Optional. Defines a custom JSON object as request body to send to flexible
|
9410
|
+
# webhook.
|
9411
|
+
# Corresponds to the JSON property `requestBody`
|
9412
|
+
# @return [String]
|
9413
|
+
attr_accessor :request_body
|
9414
|
+
|
9340
9415
|
# The HTTP request headers to send together with webhook requests.
|
9341
9416
|
# Corresponds to the JSON property `requestHeaders`
|
9342
9417
|
# @return [Hash<String,String>]
|
@@ -9353,6 +9428,11 @@ module Google
|
|
9353
9428
|
# @return [String]
|
9354
9429
|
attr_accessor :username
|
9355
9430
|
|
9431
|
+
# Optional. Type of the webhook.
|
9432
|
+
# Corresponds to the JSON property `webhookType`
|
9433
|
+
# @return [String]
|
9434
|
+
attr_accessor :webhook_type
|
9435
|
+
|
9356
9436
|
def initialize(**args)
|
9357
9437
|
update!(**args)
|
9358
9438
|
end
|
@@ -9360,10 +9440,14 @@ module Google
|
|
9360
9440
|
# Update properties of this object
|
9361
9441
|
def update!(**args)
|
9362
9442
|
@allowed_ca_certs = args[:allowed_ca_certs] if args.key?(:allowed_ca_certs)
|
9443
|
+
@http_method = args[:http_method] if args.key?(:http_method)
|
9444
|
+
@parameter_mapping = args[:parameter_mapping] if args.key?(:parameter_mapping)
|
9363
9445
|
@password = args[:password] if args.key?(:password)
|
9446
|
+
@request_body = args[:request_body] if args.key?(:request_body)
|
9364
9447
|
@request_headers = args[:request_headers] if args.key?(:request_headers)
|
9365
9448
|
@uri = args[:uri] if args.key?(:uri)
|
9366
9449
|
@username = args[:username] if args.key?(:username)
|
9450
|
+
@webhook_type = args[:webhook_type] if args.key?(:webhook_type)
|
9367
9451
|
end
|
9368
9452
|
end
|
9369
9453
|
|
@@ -12955,6 +13039,38 @@ module Google
|
|
12955
13039
|
end
|
12956
13040
|
end
|
12957
13041
|
|
13042
|
+
# Represents a Dialogflow assist answer.
|
13043
|
+
class GoogleCloudDialogflowV2beta1DialogflowAssistAnswer
|
13044
|
+
include Google::Apis::Core::Hashable
|
13045
|
+
|
13046
|
+
# The name of answer record, in the format of "projects//locations//
|
13047
|
+
# answerRecords/"
|
13048
|
+
# Corresponds to the JSON property `answerRecord`
|
13049
|
+
# @return [String]
|
13050
|
+
attr_accessor :answer_record
|
13051
|
+
|
13052
|
+
# Represents an intent suggestion.
|
13053
|
+
# Corresponds to the JSON property `intentSuggestion`
|
13054
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1IntentSuggestion]
|
13055
|
+
attr_accessor :intent_suggestion
|
13056
|
+
|
13057
|
+
# Represents the result of conversational query or event processing.
|
13058
|
+
# Corresponds to the JSON property `queryResult`
|
13059
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1QueryResult]
|
13060
|
+
attr_accessor :query_result
|
13061
|
+
|
13062
|
+
def initialize(**args)
|
13063
|
+
update!(**args)
|
13064
|
+
end
|
13065
|
+
|
13066
|
+
# Update properties of this object
|
13067
|
+
def update!(**args)
|
13068
|
+
@answer_record = args[:answer_record] if args.key?(:answer_record)
|
13069
|
+
@intent_suggestion = args[:intent_suggestion] if args.key?(:intent_suggestion)
|
13070
|
+
@query_result = args[:query_result] if args.key?(:query_result)
|
13071
|
+
end
|
13072
|
+
end
|
13073
|
+
|
12958
13074
|
# Each intent parameter has a type, called the entity type, which dictates
|
12959
13075
|
# exactly how data from an end-user expression is extracted. Dialogflow provides
|
12960
13076
|
# predefined system entities that can match many common types of data. For
|
@@ -14904,6 +15020,39 @@ module Google
|
|
14904
15020
|
end
|
14905
15021
|
end
|
14906
15022
|
|
15023
|
+
# Represents an intent suggestion.
|
15024
|
+
class GoogleCloudDialogflowV2beta1IntentSuggestion
|
15025
|
+
include Google::Apis::Core::Hashable
|
15026
|
+
|
15027
|
+
# Human readable description for better understanding an intent like its scope,
|
15028
|
+
# content, result etc. Maximum character limit: 140 characters.
|
15029
|
+
# Corresponds to the JSON property `description`
|
15030
|
+
# @return [String]
|
15031
|
+
attr_accessor :description
|
15032
|
+
|
15033
|
+
# The display name of the intent.
|
15034
|
+
# Corresponds to the JSON property `displayName`
|
15035
|
+
# @return [String]
|
15036
|
+
attr_accessor :display_name
|
15037
|
+
|
15038
|
+
# The unique identifier of this intent. Format: `projects//locations//agent/
|
15039
|
+
# intents/`.
|
15040
|
+
# Corresponds to the JSON property `intentV2`
|
15041
|
+
# @return [String]
|
15042
|
+
attr_accessor :intent_v2
|
15043
|
+
|
15044
|
+
def initialize(**args)
|
15045
|
+
update!(**args)
|
15046
|
+
end
|
15047
|
+
|
15048
|
+
# Update properties of this object
|
15049
|
+
def update!(**args)
|
15050
|
+
@description = args[:description] if args.key?(:description)
|
15051
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
15052
|
+
@intent_v2 = args[:intent_v2] if args.key?(:intent_v2)
|
15053
|
+
end
|
15054
|
+
end
|
15055
|
+
|
14907
15056
|
# Represents an example that the agent is trained on.
|
14908
15057
|
class GoogleCloudDialogflowV2beta1IntentTrainingPhrase
|
14909
15058
|
include Google::Apis::Core::Hashable
|
@@ -15626,6 +15775,42 @@ module Google
|
|
15626
15775
|
end
|
15627
15776
|
end
|
15628
15777
|
|
15778
|
+
# The response message for Participants.SuggestDialogflowAssists.
|
15779
|
+
class GoogleCloudDialogflowV2beta1SuggestDialogflowAssistsResponse
|
15780
|
+
include Google::Apis::Core::Hashable
|
15781
|
+
|
15782
|
+
# Number of messages prior to and including latest_message to compile the
|
15783
|
+
# suggestion. It may be smaller than the SuggestDialogflowAssistsRequest.
|
15784
|
+
# context_size field in the request if there aren't that many messages in the
|
15785
|
+
# conversation.
|
15786
|
+
# Corresponds to the JSON property `contextSize`
|
15787
|
+
# @return [Fixnum]
|
15788
|
+
attr_accessor :context_size
|
15789
|
+
|
15790
|
+
# Output only. Multiple reply options provided by Dialogflow assist service. The
|
15791
|
+
# order is based on the rank of the model prediction.
|
15792
|
+
# Corresponds to the JSON property `dialogflowAssistAnswers`
|
15793
|
+
# @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1DialogflowAssistAnswer>]
|
15794
|
+
attr_accessor :dialogflow_assist_answers
|
15795
|
+
|
15796
|
+
# The name of the latest conversation message used to suggest answer. Format: `
|
15797
|
+
# projects//locations//conversations//messages/`.
|
15798
|
+
# Corresponds to the JSON property `latestMessage`
|
15799
|
+
# @return [String]
|
15800
|
+
attr_accessor :latest_message
|
15801
|
+
|
15802
|
+
def initialize(**args)
|
15803
|
+
update!(**args)
|
15804
|
+
end
|
15805
|
+
|
15806
|
+
# Update properties of this object
|
15807
|
+
def update!(**args)
|
15808
|
+
@context_size = args[:context_size] if args.key?(:context_size)
|
15809
|
+
@dialogflow_assist_answers = args[:dialogflow_assist_answers] if args.key?(:dialogflow_assist_answers)
|
15810
|
+
@latest_message = args[:latest_message] if args.key?(:latest_message)
|
15811
|
+
end
|
15812
|
+
end
|
15813
|
+
|
15629
15814
|
# The request message for Participants.SuggestFaqAnswers.
|
15630
15815
|
class GoogleCloudDialogflowV2beta1SuggestFaqAnswersResponse
|
15631
15816
|
include Google::Apis::Core::Hashable
|
@@ -15717,6 +15902,11 @@ module Google
|
|
15717
15902
|
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1SuggestArticlesResponse]
|
15718
15903
|
attr_accessor :suggest_articles_response
|
15719
15904
|
|
15905
|
+
# The response message for Participants.SuggestDialogflowAssists.
|
15906
|
+
# Corresponds to the JSON property `suggestDialogflowAssistsResponse`
|
15907
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1SuggestDialogflowAssistsResponse]
|
15908
|
+
attr_accessor :suggest_dialogflow_assists_response
|
15909
|
+
|
15720
15910
|
# The request message for Participants.SuggestFaqAnswers.
|
15721
15911
|
# Corresponds to the JSON property `suggestFaqAnswersResponse`
|
15722
15912
|
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1SuggestFaqAnswersResponse]
|
@@ -15735,6 +15925,7 @@ module Google
|
|
15735
15925
|
def update!(**args)
|
15736
15926
|
@error = args[:error] if args.key?(:error)
|
15737
15927
|
@suggest_articles_response = args[:suggest_articles_response] if args.key?(:suggest_articles_response)
|
15928
|
+
@suggest_dialogflow_assists_response = args[:suggest_dialogflow_assists_response] if args.key?(:suggest_dialogflow_assists_response)
|
15738
15929
|
@suggest_faq_answers_response = args[:suggest_faq_answers_response] if args.key?(:suggest_faq_answers_response)
|
15739
15930
|
@suggest_smart_replies_response = args[:suggest_smart_replies_response] if args.key?(:suggest_smart_replies_response)
|
15740
15931
|
end
|
@@ -16067,6 +16258,18 @@ module Google
|
|
16067
16258
|
attr_accessor :reached_end_page
|
16068
16259
|
alias_method :reached_end_page?, :reached_end_page
|
16069
16260
|
|
16261
|
+
# Sentiment magnitude of the user utterance if [sentiment](https://cloud.google.
|
16262
|
+
# com/dialogflow/cx/docs/concept/sentiment) was enabled.
|
16263
|
+
# Corresponds to the JSON property `sentimentMagnitude`
|
16264
|
+
# @return [Float]
|
16265
|
+
attr_accessor :sentiment_magnitude
|
16266
|
+
|
16267
|
+
# Sentiment score of the user utterance if [sentiment](https://cloud.google.com/
|
16268
|
+
# dialogflow/cx/docs/concept/sentiment) was enabled.
|
16269
|
+
# Corresponds to the JSON property `sentimentScore`
|
16270
|
+
# @return [Float]
|
16271
|
+
attr_accessor :sentiment_score
|
16272
|
+
|
16070
16273
|
# Whether agent has triggered the event corresponding to user abandoning the
|
16071
16274
|
# conversation.
|
16072
16275
|
# Corresponds to the JSON property `triggeredAbandonmentEvent`
|
@@ -16097,6 +16300,8 @@ module Google
|
|
16097
16300
|
@no_match = args[:no_match] if args.key?(:no_match)
|
16098
16301
|
@no_user_input = args[:no_user_input] if args.key?(:no_user_input)
|
16099
16302
|
@reached_end_page = args[:reached_end_page] if args.key?(:reached_end_page)
|
16303
|
+
@sentiment_magnitude = args[:sentiment_magnitude] if args.key?(:sentiment_magnitude)
|
16304
|
+
@sentiment_score = args[:sentiment_score] if args.key?(:sentiment_score)
|
16100
16305
|
@triggered_abandonment_event = args[:triggered_abandonment_event] if args.key?(:triggered_abandonment_event)
|
16101
16306
|
@user_escalated = args[:user_escalated] if args.key?(:user_escalated)
|
16102
16307
|
@webhook_statuses = args[:webhook_statuses] if args.key?(:webhook_statuses)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DialogflowV3beta1
|
18
18
|
# Version of the google-apis-dialogflow_v3beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.58.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230516"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -2122,6 +2122,12 @@ module Google
|
|
2122
2122
|
include Google::Apis::Core::JsonObjectSupport
|
2123
2123
|
end
|
2124
2124
|
|
2125
|
+
class GoogleCloudDialogflowV2beta1DialogflowAssistAnswer
|
2126
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2127
|
+
|
2128
|
+
include Google::Apis::Core::JsonObjectSupport
|
2129
|
+
end
|
2130
|
+
|
2125
2131
|
class GoogleCloudDialogflowV2beta1EntityType
|
2126
2132
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2127
2133
|
|
@@ -2446,6 +2452,12 @@ module Google
|
|
2446
2452
|
include Google::Apis::Core::JsonObjectSupport
|
2447
2453
|
end
|
2448
2454
|
|
2455
|
+
class GoogleCloudDialogflowV2beta1IntentSuggestion
|
2456
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2457
|
+
|
2458
|
+
include Google::Apis::Core::JsonObjectSupport
|
2459
|
+
end
|
2460
|
+
|
2449
2461
|
class GoogleCloudDialogflowV2beta1IntentTrainingPhrase
|
2450
2462
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2451
2463
|
|
@@ -2536,6 +2548,12 @@ module Google
|
|
2536
2548
|
include Google::Apis::Core::JsonObjectSupport
|
2537
2549
|
end
|
2538
2550
|
|
2551
|
+
class GoogleCloudDialogflowV2beta1SuggestDialogflowAssistsResponse
|
2552
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2553
|
+
|
2554
|
+
include Google::Apis::Core::JsonObjectSupport
|
2555
|
+
end
|
2556
|
+
|
2539
2557
|
class GoogleCloudDialogflowV2beta1SuggestFaqAnswersResponse
|
2540
2558
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2541
2559
|
|
@@ -3369,6 +3387,8 @@ module Google
|
|
3369
3387
|
property :no_match, as: 'noMatch'
|
3370
3388
|
property :no_user_input, as: 'noUserInput'
|
3371
3389
|
property :reached_end_page, as: 'reachedEndPage'
|
3390
|
+
property :sentiment_magnitude, as: 'sentimentMagnitude'
|
3391
|
+
property :sentiment_score, as: 'sentimentScore'
|
3372
3392
|
property :user_escalated, as: 'userEscalated'
|
3373
3393
|
collection :webhook_statuses, as: 'webhookStatuses'
|
3374
3394
|
end
|
@@ -3400,10 +3420,14 @@ module Google
|
|
3400
3420
|
# @private
|
3401
3421
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3402
3422
|
collection :allowed_ca_certs, as: 'allowedCaCerts'
|
3423
|
+
property :http_method, as: 'httpMethod'
|
3424
|
+
hash :parameter_mapping, as: 'parameterMapping'
|
3403
3425
|
property :password, as: 'password'
|
3426
|
+
property :request_body, as: 'requestBody'
|
3404
3427
|
hash :request_headers, as: 'requestHeaders'
|
3405
3428
|
property :uri, as: 'uri'
|
3406
3429
|
property :username, as: 'username'
|
3430
|
+
property :webhook_type, as: 'webhookType'
|
3407
3431
|
end
|
3408
3432
|
end
|
3409
3433
|
|
@@ -5098,6 +5122,8 @@ module Google
|
|
5098
5122
|
property :no_match, as: 'noMatch'
|
5099
5123
|
property :no_user_input, as: 'noUserInput'
|
5100
5124
|
property :reached_end_page, as: 'reachedEndPage'
|
5125
|
+
property :sentiment_magnitude, as: 'sentimentMagnitude'
|
5126
|
+
property :sentiment_score, as: 'sentimentScore'
|
5101
5127
|
property :user_escalated, as: 'userEscalated'
|
5102
5128
|
collection :webhook_statuses, as: 'webhookStatuses'
|
5103
5129
|
end
|
@@ -5202,10 +5228,14 @@ module Google
|
|
5202
5228
|
# @private
|
5203
5229
|
class Representation < Google::Apis::Core::JsonRepresentation
|
5204
5230
|
collection :allowed_ca_certs, as: 'allowedCaCerts'
|
5231
|
+
property :http_method, as: 'httpMethod'
|
5232
|
+
hash :parameter_mapping, as: 'parameterMapping'
|
5205
5233
|
property :password, as: 'password'
|
5234
|
+
property :request_body, as: 'requestBody'
|
5206
5235
|
hash :request_headers, as: 'requestHeaders'
|
5207
5236
|
property :uri, as: 'uri'
|
5208
5237
|
property :username, as: 'username'
|
5238
|
+
property :webhook_type, as: 'webhookType'
|
5209
5239
|
end
|
5210
5240
|
end
|
5211
5241
|
|
@@ -6182,6 +6212,17 @@ module Google
|
|
6182
6212
|
end
|
6183
6213
|
end
|
6184
6214
|
|
6215
|
+
class GoogleCloudDialogflowV2beta1DialogflowAssistAnswer
|
6216
|
+
# @private
|
6217
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
6218
|
+
property :answer_record, as: 'answerRecord'
|
6219
|
+
property :intent_suggestion, as: 'intentSuggestion', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1IntentSuggestion, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1IntentSuggestion::Representation
|
6220
|
+
|
6221
|
+
property :query_result, as: 'queryResult', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1QueryResult, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1QueryResult::Representation
|
6222
|
+
|
6223
|
+
end
|
6224
|
+
end
|
6225
|
+
|
6185
6226
|
class GoogleCloudDialogflowV2beta1EntityType
|
6186
6227
|
# @private
|
6187
6228
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -6741,6 +6782,15 @@ module Google
|
|
6741
6782
|
end
|
6742
6783
|
end
|
6743
6784
|
|
6785
|
+
class GoogleCloudDialogflowV2beta1IntentSuggestion
|
6786
|
+
# @private
|
6787
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
6788
|
+
property :description, as: 'description'
|
6789
|
+
property :display_name, as: 'displayName'
|
6790
|
+
property :intent_v2, as: 'intentV2'
|
6791
|
+
end
|
6792
|
+
end
|
6793
|
+
|
6744
6794
|
class GoogleCloudDialogflowV2beta1IntentTrainingPhrase
|
6745
6795
|
# @private
|
6746
6796
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -6909,6 +6959,16 @@ module Google
|
|
6909
6959
|
end
|
6910
6960
|
end
|
6911
6961
|
|
6962
|
+
class GoogleCloudDialogflowV2beta1SuggestDialogflowAssistsResponse
|
6963
|
+
# @private
|
6964
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
6965
|
+
property :context_size, as: 'contextSize'
|
6966
|
+
collection :dialogflow_assist_answers, as: 'dialogflowAssistAnswers', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1DialogflowAssistAnswer, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1DialogflowAssistAnswer::Representation
|
6967
|
+
|
6968
|
+
property :latest_message, as: 'latestMessage'
|
6969
|
+
end
|
6970
|
+
end
|
6971
|
+
|
6912
6972
|
class GoogleCloudDialogflowV2beta1SuggestFaqAnswersResponse
|
6913
6973
|
# @private
|
6914
6974
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -6936,6 +6996,8 @@ module Google
|
|
6936
6996
|
|
6937
6997
|
property :suggest_articles_response, as: 'suggestArticlesResponse', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1SuggestArticlesResponse, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1SuggestArticlesResponse::Representation
|
6938
6998
|
|
6999
|
+
property :suggest_dialogflow_assists_response, as: 'suggestDialogflowAssistsResponse', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1SuggestDialogflowAssistsResponse, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1SuggestDialogflowAssistsResponse::Representation
|
7000
|
+
|
6939
7001
|
property :suggest_faq_answers_response, as: 'suggestFaqAnswersResponse', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1SuggestFaqAnswersResponse, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1SuggestFaqAnswersResponse::Representation
|
6940
7002
|
|
6941
7003
|
property :suggest_smart_replies_response, as: 'suggestSmartRepliesResponse', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1SuggestSmartRepliesResponse, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1SuggestSmartRepliesResponse::Representation
|
@@ -7040,6 +7102,8 @@ module Google
|
|
7040
7102
|
property :no_match, as: 'noMatch'
|
7041
7103
|
property :no_user_input, as: 'noUserInput'
|
7042
7104
|
property :reached_end_page, as: 'reachedEndPage'
|
7105
|
+
property :sentiment_magnitude, as: 'sentimentMagnitude'
|
7106
|
+
property :sentiment_score, as: 'sentimentScore'
|
7043
7107
|
property :triggered_abandonment_event, as: 'triggeredAbandonmentEvent'
|
7044
7108
|
property :user_escalated, as: 'userEscalated'
|
7045
7109
|
collection :webhook_statuses, as: 'webhookStatuses'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-dialogflow_v3beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.58.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: 2023-05-
|
11
|
+
date: 2023-05-21 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_v3beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3beta1/v0.58.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3beta1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|