google-apis-dialogflow_v3beta1 0.57.0 → 0.59.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: f9714b06a753a3bc7aa849aeab4bf0de5b26caf04bb0e3128adfd5062831d6f4
4
- data.tar.gz: 55c6226c030617f55b2c4afb7afd1f484387e93b367fb2a8fc898f18b5191bd3
3
+ metadata.gz: 95a46986a34dc1a491e6104a528e1c03541da25742ce89198f7eb8704c4410f8
4
+ data.tar.gz: ae7566f8beff9489cf15202b05e322ad14478c7651a520500855d28361140b75
5
5
  SHA512:
6
- metadata.gz: 9ff0619382273a85914259d933e99fb261d3de4c70c07cf650510bf773e056923d68909bf327b0d9bad11e31c4756bba9ed7490d958ab6d633cde3458bc14acb
7
- data.tar.gz: 297961e819068f38e001cd325486ba2f04aab7774a03ee38ee83207c5721fa08e480b35994f83fcc903af1ef7862f28d8db860c57608347b22228373cde5dcc6
6
+ metadata.gz: '09326b57f06e084766a12dafc553c08da639541699e9473f12dcf5da1d8f7ded7ab442e2f9f58e067612b41e203f6209be0960b215132d82f544821a7f689ff1'
7
+ data.tar.gz: c91d6ff7a3e8847b89da19d2638746390da1f882d8c48a519f7a36f54079bbc5a61cdfd720ec3e8589085abf92d06259fb9079fa3326b842125f9a9cf15b9674
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-dialogflow_v3beta1
2
2
 
3
+ ### v0.59.0 (2023-05-28)
4
+
5
+ * Regenerated from discovery document revision 20230522
6
+
7
+ ### v0.58.0 (2023-05-21)
8
+
9
+ * Regenerated from discovery document revision 20230516
10
+
3
11
  ### v0.57.0 (2023-05-07)
4
12
 
5
13
  * Regenerated from discovery document revision 20230501
@@ -2421,7 +2421,8 @@ module Google
2421
2421
  class GoogleCloudDialogflowCxV3TestRunDifference
2422
2422
  include Google::Apis::Core::Hashable
2423
2423
 
2424
- # A description of the diff, showing the actual output vs expected output.
2424
+ # A human readable description of the diff, showing the actual output vs
2425
+ # expected output.
2425
2426
  # Corresponds to the JSON property `description`
2426
2427
  # @return [String]
2427
2428
  attr_accessor :description
@@ -2573,6 +2574,18 @@ module Google
2573
2574
  attr_accessor :reached_end_page
2574
2575
  alias_method :reached_end_page?, :reached_end_page
2575
2576
 
2577
+ # Sentiment magnitude of the user utterance if [sentiment](https://cloud.google.
2578
+ # com/dialogflow/cx/docs/concept/sentiment) was enabled.
2579
+ # Corresponds to the JSON property `sentimentMagnitude`
2580
+ # @return [Float]
2581
+ attr_accessor :sentiment_magnitude
2582
+
2583
+ # Sentiment score of the user utterance if [sentiment](https://cloud.google.com/
2584
+ # dialogflow/cx/docs/concept/sentiment) was enabled.
2585
+ # Corresponds to the JSON property `sentimentScore`
2586
+ # @return [Float]
2587
+ attr_accessor :sentiment_score
2588
+
2576
2589
  # Whether user was specifically asking for a live agent.
2577
2590
  # Corresponds to the JSON property `userEscalated`
2578
2591
  # @return [Boolean]
@@ -2596,6 +2609,8 @@ module Google
2596
2609
  @no_match = args[:no_match] if args.key?(:no_match)
2597
2610
  @no_user_input = args[:no_user_input] if args.key?(:no_user_input)
2598
2611
  @reached_end_page = args[:reached_end_page] if args.key?(:reached_end_page)
2612
+ @sentiment_magnitude = args[:sentiment_magnitude] if args.key?(:sentiment_magnitude)
2613
+ @sentiment_score = args[:sentiment_score] if args.key?(:sentiment_score)
2599
2614
  @user_escalated = args[:user_escalated] if args.key?(:user_escalated)
2600
2615
  @webhook_statuses = args[:webhook_statuses] if args.key?(:webhook_statuses)
2601
2616
  end
@@ -2694,11 +2709,30 @@ module Google
2694
2709
  # @return [Array<String>]
2695
2710
  attr_accessor :allowed_ca_certs
2696
2711
 
2712
+ # Optional. HTTP method for the flexible webhook calls. Standard webhook always
2713
+ # uses POST.
2714
+ # Corresponds to the JSON property `httpMethod`
2715
+ # @return [String]
2716
+ attr_accessor :http_method
2717
+
2718
+ # Optional. Maps the values extracted from specific fields of the flexible
2719
+ # webhook response into session parameters. - Key: session parameter name -
2720
+ # Value: field path in the webhook response
2721
+ # Corresponds to the JSON property `parameterMapping`
2722
+ # @return [Hash<String,String>]
2723
+ attr_accessor :parameter_mapping
2724
+
2697
2725
  # The password for HTTP Basic authentication.
2698
2726
  # Corresponds to the JSON property `password`
2699
2727
  # @return [String]
2700
2728
  attr_accessor :password
2701
2729
 
2730
+ # Optional. Defines a custom JSON object as request body to send to flexible
2731
+ # webhook.
2732
+ # Corresponds to the JSON property `requestBody`
2733
+ # @return [String]
2734
+ attr_accessor :request_body
2735
+
2702
2736
  # The HTTP request headers to send together with webhook requests.
2703
2737
  # Corresponds to the JSON property `requestHeaders`
2704
2738
  # @return [Hash<String,String>]
@@ -2715,6 +2749,11 @@ module Google
2715
2749
  # @return [String]
2716
2750
  attr_accessor :username
2717
2751
 
2752
+ # Optional. Type of the webhook.
2753
+ # Corresponds to the JSON property `webhookType`
2754
+ # @return [String]
2755
+ attr_accessor :webhook_type
2756
+
2718
2757
  def initialize(**args)
2719
2758
  update!(**args)
2720
2759
  end
@@ -2722,10 +2761,14 @@ module Google
2722
2761
  # Update properties of this object
2723
2762
  def update!(**args)
2724
2763
  @allowed_ca_certs = args[:allowed_ca_certs] if args.key?(:allowed_ca_certs)
2764
+ @http_method = args[:http_method] if args.key?(:http_method)
2765
+ @parameter_mapping = args[:parameter_mapping] if args.key?(:parameter_mapping)
2725
2766
  @password = args[:password] if args.key?(:password)
2767
+ @request_body = args[:request_body] if args.key?(:request_body)
2726
2768
  @request_headers = args[:request_headers] if args.key?(:request_headers)
2727
2769
  @uri = args[:uri] if args.key?(:uri)
2728
2770
  @username = args[:username] if args.key?(:username)
2771
+ @webhook_type = args[:webhook_type] if args.key?(:webhook_type)
2729
2772
  end
2730
2773
  end
2731
2774
 
@@ -8515,7 +8558,8 @@ module Google
8515
8558
  class GoogleCloudDialogflowCxV3beta1TestRunDifference
8516
8559
  include Google::Apis::Core::Hashable
8517
8560
 
8518
- # A description of the diff, showing the actual output vs expected output.
8561
+ # A human readable description of the diff, showing the actual output vs
8562
+ # expected output.
8519
8563
  # Corresponds to the JSON property `description`
8520
8564
  # @return [String]
8521
8565
  attr_accessor :description
@@ -8968,6 +9012,18 @@ module Google
8968
9012
  attr_accessor :reached_end_page
8969
9013
  alias_method :reached_end_page?, :reached_end_page
8970
9014
 
9015
+ # Sentiment magnitude of the user utterance if [sentiment](https://cloud.google.
9016
+ # com/dialogflow/cx/docs/concept/sentiment) was enabled.
9017
+ # Corresponds to the JSON property `sentimentMagnitude`
9018
+ # @return [Float]
9019
+ attr_accessor :sentiment_magnitude
9020
+
9021
+ # Sentiment score of the user utterance if [sentiment](https://cloud.google.com/
9022
+ # dialogflow/cx/docs/concept/sentiment) was enabled.
9023
+ # Corresponds to the JSON property `sentimentScore`
9024
+ # @return [Float]
9025
+ attr_accessor :sentiment_score
9026
+
8971
9027
  # Whether user was specifically asking for a live agent.
8972
9028
  # Corresponds to the JSON property `userEscalated`
8973
9029
  # @return [Boolean]
@@ -8991,6 +9047,8 @@ module Google
8991
9047
  @no_match = args[:no_match] if args.key?(:no_match)
8992
9048
  @no_user_input = args[:no_user_input] if args.key?(:no_user_input)
8993
9049
  @reached_end_page = args[:reached_end_page] if args.key?(:reached_end_page)
9050
+ @sentiment_magnitude = args[:sentiment_magnitude] if args.key?(:sentiment_magnitude)
9051
+ @sentiment_score = args[:sentiment_score] if args.key?(:sentiment_score)
8994
9052
  @user_escalated = args[:user_escalated] if args.key?(:user_escalated)
8995
9053
  @webhook_statuses = args[:webhook_statuses] if args.key?(:webhook_statuses)
8996
9054
  end
@@ -9332,11 +9390,30 @@ module Google
9332
9390
  # @return [Array<String>]
9333
9391
  attr_accessor :allowed_ca_certs
9334
9392
 
9393
+ # Optional. HTTP method for the flexible webhook calls. Standard webhook always
9394
+ # uses POST.
9395
+ # Corresponds to the JSON property `httpMethod`
9396
+ # @return [String]
9397
+ attr_accessor :http_method
9398
+
9399
+ # Optional. Maps the values extracted from specific fields of the flexible
9400
+ # webhook response into session parameters. - Key: session parameter name -
9401
+ # Value: field path in the webhook response
9402
+ # Corresponds to the JSON property `parameterMapping`
9403
+ # @return [Hash<String,String>]
9404
+ attr_accessor :parameter_mapping
9405
+
9335
9406
  # The password for HTTP Basic authentication.
9336
9407
  # Corresponds to the JSON property `password`
9337
9408
  # @return [String]
9338
9409
  attr_accessor :password
9339
9410
 
9411
+ # Optional. Defines a custom JSON object as request body to send to flexible
9412
+ # webhook.
9413
+ # Corresponds to the JSON property `requestBody`
9414
+ # @return [String]
9415
+ attr_accessor :request_body
9416
+
9340
9417
  # The HTTP request headers to send together with webhook requests.
9341
9418
  # Corresponds to the JSON property `requestHeaders`
9342
9419
  # @return [Hash<String,String>]
@@ -9353,6 +9430,11 @@ module Google
9353
9430
  # @return [String]
9354
9431
  attr_accessor :username
9355
9432
 
9433
+ # Optional. Type of the webhook.
9434
+ # Corresponds to the JSON property `webhookType`
9435
+ # @return [String]
9436
+ attr_accessor :webhook_type
9437
+
9356
9438
  def initialize(**args)
9357
9439
  update!(**args)
9358
9440
  end
@@ -9360,10 +9442,14 @@ module Google
9360
9442
  # Update properties of this object
9361
9443
  def update!(**args)
9362
9444
  @allowed_ca_certs = args[:allowed_ca_certs] if args.key?(:allowed_ca_certs)
9445
+ @http_method = args[:http_method] if args.key?(:http_method)
9446
+ @parameter_mapping = args[:parameter_mapping] if args.key?(:parameter_mapping)
9363
9447
  @password = args[:password] if args.key?(:password)
9448
+ @request_body = args[:request_body] if args.key?(:request_body)
9364
9449
  @request_headers = args[:request_headers] if args.key?(:request_headers)
9365
9450
  @uri = args[:uri] if args.key?(:uri)
9366
9451
  @username = args[:username] if args.key?(:username)
9452
+ @webhook_type = args[:webhook_type] if args.key?(:webhook_type)
9367
9453
  end
9368
9454
  end
9369
9455
 
@@ -12955,6 +13041,38 @@ module Google
12955
13041
  end
12956
13042
  end
12957
13043
 
13044
+ # Represents a Dialogflow assist answer.
13045
+ class GoogleCloudDialogflowV2beta1DialogflowAssistAnswer
13046
+ include Google::Apis::Core::Hashable
13047
+
13048
+ # The name of answer record, in the format of "projects//locations//
13049
+ # answerRecords/"
13050
+ # Corresponds to the JSON property `answerRecord`
13051
+ # @return [String]
13052
+ attr_accessor :answer_record
13053
+
13054
+ # Represents an intent suggestion.
13055
+ # Corresponds to the JSON property `intentSuggestion`
13056
+ # @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1IntentSuggestion]
13057
+ attr_accessor :intent_suggestion
13058
+
13059
+ # Represents the result of conversational query or event processing.
13060
+ # Corresponds to the JSON property `queryResult`
13061
+ # @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1QueryResult]
13062
+ attr_accessor :query_result
13063
+
13064
+ def initialize(**args)
13065
+ update!(**args)
13066
+ end
13067
+
13068
+ # Update properties of this object
13069
+ def update!(**args)
13070
+ @answer_record = args[:answer_record] if args.key?(:answer_record)
13071
+ @intent_suggestion = args[:intent_suggestion] if args.key?(:intent_suggestion)
13072
+ @query_result = args[:query_result] if args.key?(:query_result)
13073
+ end
13074
+ end
13075
+
12958
13076
  # Each intent parameter has a type, called the entity type, which dictates
12959
13077
  # exactly how data from an end-user expression is extracted. Dialogflow provides
12960
13078
  # predefined system entities that can match many common types of data. For
@@ -14904,6 +15022,39 @@ module Google
14904
15022
  end
14905
15023
  end
14906
15024
 
15025
+ # Represents an intent suggestion.
15026
+ class GoogleCloudDialogflowV2beta1IntentSuggestion
15027
+ include Google::Apis::Core::Hashable
15028
+
15029
+ # Human readable description for better understanding an intent like its scope,
15030
+ # content, result etc. Maximum character limit: 140 characters.
15031
+ # Corresponds to the JSON property `description`
15032
+ # @return [String]
15033
+ attr_accessor :description
15034
+
15035
+ # The display name of the intent.
15036
+ # Corresponds to the JSON property `displayName`
15037
+ # @return [String]
15038
+ attr_accessor :display_name
15039
+
15040
+ # The unique identifier of this intent. Format: `projects//locations//agent/
15041
+ # intents/`.
15042
+ # Corresponds to the JSON property `intentV2`
15043
+ # @return [String]
15044
+ attr_accessor :intent_v2
15045
+
15046
+ def initialize(**args)
15047
+ update!(**args)
15048
+ end
15049
+
15050
+ # Update properties of this object
15051
+ def update!(**args)
15052
+ @description = args[:description] if args.key?(:description)
15053
+ @display_name = args[:display_name] if args.key?(:display_name)
15054
+ @intent_v2 = args[:intent_v2] if args.key?(:intent_v2)
15055
+ end
15056
+ end
15057
+
14907
15058
  # Represents an example that the agent is trained on.
14908
15059
  class GoogleCloudDialogflowV2beta1IntentTrainingPhrase
14909
15060
  include Google::Apis::Core::Hashable
@@ -15626,6 +15777,42 @@ module Google
15626
15777
  end
15627
15778
  end
15628
15779
 
15780
+ # The response message for Participants.SuggestDialogflowAssists.
15781
+ class GoogleCloudDialogflowV2beta1SuggestDialogflowAssistsResponse
15782
+ include Google::Apis::Core::Hashable
15783
+
15784
+ # Number of messages prior to and including latest_message to compile the
15785
+ # suggestion. It may be smaller than the SuggestDialogflowAssistsRequest.
15786
+ # context_size field in the request if there aren't that many messages in the
15787
+ # conversation.
15788
+ # Corresponds to the JSON property `contextSize`
15789
+ # @return [Fixnum]
15790
+ attr_accessor :context_size
15791
+
15792
+ # Output only. Multiple reply options provided by Dialogflow assist service. The
15793
+ # order is based on the rank of the model prediction.
15794
+ # Corresponds to the JSON property `dialogflowAssistAnswers`
15795
+ # @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1DialogflowAssistAnswer>]
15796
+ attr_accessor :dialogflow_assist_answers
15797
+
15798
+ # The name of the latest conversation message used to suggest answer. Format: `
15799
+ # projects//locations//conversations//messages/`.
15800
+ # Corresponds to the JSON property `latestMessage`
15801
+ # @return [String]
15802
+ attr_accessor :latest_message
15803
+
15804
+ def initialize(**args)
15805
+ update!(**args)
15806
+ end
15807
+
15808
+ # Update properties of this object
15809
+ def update!(**args)
15810
+ @context_size = args[:context_size] if args.key?(:context_size)
15811
+ @dialogflow_assist_answers = args[:dialogflow_assist_answers] if args.key?(:dialogflow_assist_answers)
15812
+ @latest_message = args[:latest_message] if args.key?(:latest_message)
15813
+ end
15814
+ end
15815
+
15629
15816
  # The request message for Participants.SuggestFaqAnswers.
15630
15817
  class GoogleCloudDialogflowV2beta1SuggestFaqAnswersResponse
15631
15818
  include Google::Apis::Core::Hashable
@@ -15717,6 +15904,11 @@ module Google
15717
15904
  # @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1SuggestArticlesResponse]
15718
15905
  attr_accessor :suggest_articles_response
15719
15906
 
15907
+ # The response message for Participants.SuggestDialogflowAssists.
15908
+ # Corresponds to the JSON property `suggestDialogflowAssistsResponse`
15909
+ # @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1SuggestDialogflowAssistsResponse]
15910
+ attr_accessor :suggest_dialogflow_assists_response
15911
+
15720
15912
  # The request message for Participants.SuggestFaqAnswers.
15721
15913
  # Corresponds to the JSON property `suggestFaqAnswersResponse`
15722
15914
  # @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1SuggestFaqAnswersResponse]
@@ -15735,6 +15927,7 @@ module Google
15735
15927
  def update!(**args)
15736
15928
  @error = args[:error] if args.key?(:error)
15737
15929
  @suggest_articles_response = args[:suggest_articles_response] if args.key?(:suggest_articles_response)
15930
+ @suggest_dialogflow_assists_response = args[:suggest_dialogflow_assists_response] if args.key?(:suggest_dialogflow_assists_response)
15738
15931
  @suggest_faq_answers_response = args[:suggest_faq_answers_response] if args.key?(:suggest_faq_answers_response)
15739
15932
  @suggest_smart_replies_response = args[:suggest_smart_replies_response] if args.key?(:suggest_smart_replies_response)
15740
15933
  end
@@ -16067,6 +16260,18 @@ module Google
16067
16260
  attr_accessor :reached_end_page
16068
16261
  alias_method :reached_end_page?, :reached_end_page
16069
16262
 
16263
+ # Sentiment magnitude of the user utterance if [sentiment](https://cloud.google.
16264
+ # com/dialogflow/cx/docs/concept/sentiment) was enabled.
16265
+ # Corresponds to the JSON property `sentimentMagnitude`
16266
+ # @return [Float]
16267
+ attr_accessor :sentiment_magnitude
16268
+
16269
+ # Sentiment score of the user utterance if [sentiment](https://cloud.google.com/
16270
+ # dialogflow/cx/docs/concept/sentiment) was enabled.
16271
+ # Corresponds to the JSON property `sentimentScore`
16272
+ # @return [Float]
16273
+ attr_accessor :sentiment_score
16274
+
16070
16275
  # Whether agent has triggered the event corresponding to user abandoning the
16071
16276
  # conversation.
16072
16277
  # Corresponds to the JSON property `triggeredAbandonmentEvent`
@@ -16097,6 +16302,8 @@ module Google
16097
16302
  @no_match = args[:no_match] if args.key?(:no_match)
16098
16303
  @no_user_input = args[:no_user_input] if args.key?(:no_user_input)
16099
16304
  @reached_end_page = args[:reached_end_page] if args.key?(:reached_end_page)
16305
+ @sentiment_magnitude = args[:sentiment_magnitude] if args.key?(:sentiment_magnitude)
16306
+ @sentiment_score = args[:sentiment_score] if args.key?(:sentiment_score)
16100
16307
  @triggered_abandonment_event = args[:triggered_abandonment_event] if args.key?(:triggered_abandonment_event)
16101
16308
  @user_escalated = args[:user_escalated] if args.key?(:user_escalated)
16102
16309
  @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.57.0"
19
+ GEM_VERSION = "0.59.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 = "20230501"
25
+ REVISION = "20230522"
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.57.0
4
+ version: 0.59.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-14 00:00:00.000000000 Z
11
+ date: 2023-05-28 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.57.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3beta1/v0.59.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: []