google-apis-dialogflow_v2 0.84.0 → 0.86.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: 51eeec463b44ff170bfe02ecd3ef98d0459d88393d818bb5473f1d780127a251
4
- data.tar.gz: 24d812fdf511718b5b26d367ab239dab4a8be160b0b2ec2590d68745a9b0b677
3
+ metadata.gz: 144c169278908a1d71b0e7219ab37c4aa725616db626b8b29c4136b3ba73c451
4
+ data.tar.gz: d06c56fc1f71c4aa0f9dfad541c83e89609ecf39ca6464d7214aee4f473a9deb
5
5
  SHA512:
6
- metadata.gz: 663a648e8e62d7c18fbe8f0ef29e717d798a2a97bdc2eb8bd0d853fd0bb449fd39cc895b3135031b71ca0bed3a476968aa30e362bfec54eb0440ed337b671c2d
7
- data.tar.gz: 9c419b86591439a1c31c0438f20ecef29c16959ca8e0b13d1ae106ffe67b1b742642f35c4aba0878c4b602a74a6d7a7ffdd2ffd51e60b91e4c96851954d1be81
6
+ metadata.gz: a07ea4983aa41f08d7756f4671b27b76d0221fa4965d4ba66ac15ec4929df0a075af13f891d603637a3fbc2e07ad6fac2f1029e83ab0695ec83cdfe1a8bc3d44
7
+ data.tar.gz: 42234abeb9f206cc75e8583bb0170d76dfe09f0fde419887b66e4b807ab8856bf8de6fa974fbdee7e9b2695a83c69c8045b74a88f9f2c4f55c6e0ae25a72f3df
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-dialogflow_v2
2
2
 
3
+ ### v0.86.0 (2024-05-12)
4
+
5
+ * Regenerated from discovery document revision 20240507
6
+
7
+ ### v0.85.0 (2024-04-21)
8
+
9
+ * Regenerated from discovery document revision 20240417
10
+
3
11
  ### v0.84.0 (2024-03-17)
4
12
 
5
13
  * Regenerated from discovery document revision 20240311
@@ -81,11 +81,21 @@ module Google
81
81
  attr_accessor :enabled
82
82
  alias_method :enabled?, :enabled
83
83
 
84
+ # Endpoint timeout setting for matching dtmf input to regex.
85
+ # Corresponds to the JSON property `endpointingTimeoutDuration`
86
+ # @return [String]
87
+ attr_accessor :endpointing_timeout_duration
88
+
84
89
  # The digit that terminates a DTMF digit sequence.
85
90
  # Corresponds to the JSON property `finishDigit`
86
91
  # @return [String]
87
92
  attr_accessor :finish_digit
88
93
 
94
+ # Interdigit timeout setting for matching dtmf input to regex.
95
+ # Corresponds to the JSON property `interdigitTimeoutDuration`
96
+ # @return [String]
97
+ attr_accessor :interdigit_timeout_duration
98
+
89
99
  # Max length of DTMF digits.
90
100
  # Corresponds to the JSON property `maxDigits`
91
101
  # @return [Fixnum]
@@ -98,7 +108,9 @@ module Google
98
108
  # Update properties of this object
99
109
  def update!(**args)
100
110
  @enabled = args[:enabled] if args.key?(:enabled)
111
+ @endpointing_timeout_duration = args[:endpointing_timeout_duration] if args.key?(:endpointing_timeout_duration)
101
112
  @finish_digit = args[:finish_digit] if args.key?(:finish_digit)
113
+ @interdigit_timeout_duration = args[:interdigit_timeout_duration] if args.key?(:interdigit_timeout_duration)
102
114
  @max_digits = args[:max_digits] if args.key?(:max_digits)
103
115
  end
104
116
  end
@@ -2074,6 +2086,37 @@ module Google
2074
2086
  end
2075
2087
  end
2076
2088
 
2089
+ # Represents the language information of the request.
2090
+ class GoogleCloudDialogflowCxV3LanguageInfo
2091
+ include Google::Apis::Core::Hashable
2092
+
2093
+ # The confidence score of the detected language between 0 and 1.
2094
+ # Corresponds to the JSON property `confidenceScore`
2095
+ # @return [Float]
2096
+ attr_accessor :confidence_score
2097
+
2098
+ # The language code specified in the original request.
2099
+ # Corresponds to the JSON property `inputLanguageCode`
2100
+ # @return [String]
2101
+ attr_accessor :input_language_code
2102
+
2103
+ # The language code detected for this request based on the user conversation.
2104
+ # Corresponds to the JSON property `resolvedLanguageCode`
2105
+ # @return [String]
2106
+ attr_accessor :resolved_language_code
2107
+
2108
+ def initialize(**args)
2109
+ update!(**args)
2110
+ end
2111
+
2112
+ # Update properties of this object
2113
+ def update!(**args)
2114
+ @confidence_score = args[:confidence_score] if args.key?(:confidence_score)
2115
+ @input_language_code = args[:input_language_code] if args.key?(:input_language_code)
2116
+ @resolved_language_code = args[:resolved_language_code] if args.key?(:resolved_language_code)
2117
+ end
2118
+ end
2119
+
2077
2120
  # A Dialogflow CX conversation (session) can be described and visualized as a
2078
2121
  # state machine. The states of a CX session are represented by pages. For each
2079
2122
  # flow, you define many pages, where your combined pages can handle a complete
@@ -3525,6 +3568,11 @@ module Google
3525
3568
  # @return [String]
3526
3569
  attr_accessor :language_code
3527
3570
 
3571
+ # Represents the language information of the request.
3572
+ # Corresponds to the JSON property `languageInfo`
3573
+ # @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3LanguageInfo]
3574
+ attr_accessor :language_info
3575
+
3528
3576
  # The list of rich message responses to present to the user. Webhook can choose
3529
3577
  # to append or replace this list in WebhookResponse.fulfillment_response;
3530
3578
  # Corresponds to the JSON property `messages`
@@ -3586,6 +3634,7 @@ module Google
3586
3634
  @fulfillment_info = args[:fulfillment_info] if args.key?(:fulfillment_info)
3587
3635
  @intent_info = args[:intent_info] if args.key?(:intent_info)
3588
3636
  @language_code = args[:language_code] if args.key?(:language_code)
3637
+ @language_info = args[:language_info] if args.key?(:language_info)
3589
3638
  @messages = args[:messages] if args.key?(:messages)
3590
3639
  @page_info = args[:page_info] if args.key?(:page_info)
3591
3640
  @payload = args[:payload] if args.key?(:payload)
@@ -3878,11 +3927,21 @@ module Google
3878
3927
  attr_accessor :enabled
3879
3928
  alias_method :enabled?, :enabled
3880
3929
 
3930
+ # Endpoint timeout setting for matching dtmf input to regex.
3931
+ # Corresponds to the JSON property `endpointingTimeoutDuration`
3932
+ # @return [String]
3933
+ attr_accessor :endpointing_timeout_duration
3934
+
3881
3935
  # The digit that terminates a DTMF digit sequence.
3882
3936
  # Corresponds to the JSON property `finishDigit`
3883
3937
  # @return [String]
3884
3938
  attr_accessor :finish_digit
3885
3939
 
3940
+ # Interdigit timeout setting for matching dtmf input to regex.
3941
+ # Corresponds to the JSON property `interdigitTimeoutDuration`
3942
+ # @return [String]
3943
+ attr_accessor :interdigit_timeout_duration
3944
+
3886
3945
  # Max length of DTMF digits.
3887
3946
  # Corresponds to the JSON property `maxDigits`
3888
3947
  # @return [Fixnum]
@@ -3895,7 +3954,9 @@ module Google
3895
3954
  # Update properties of this object
3896
3955
  def update!(**args)
3897
3956
  @enabled = args[:enabled] if args.key?(:enabled)
3957
+ @endpointing_timeout_duration = args[:endpointing_timeout_duration] if args.key?(:endpointing_timeout_duration)
3898
3958
  @finish_digit = args[:finish_digit] if args.key?(:finish_digit)
3959
+ @interdigit_timeout_duration = args[:interdigit_timeout_duration] if args.key?(:interdigit_timeout_duration)
3899
3960
  @max_digits = args[:max_digits] if args.key?(:max_digits)
3900
3961
  end
3901
3962
  end
@@ -5871,6 +5932,37 @@ module Google
5871
5932
  end
5872
5933
  end
5873
5934
 
5935
+ # Represents the language information of the request.
5936
+ class GoogleCloudDialogflowCxV3beta1LanguageInfo
5937
+ include Google::Apis::Core::Hashable
5938
+
5939
+ # The confidence score of the detected language between 0 and 1.
5940
+ # Corresponds to the JSON property `confidenceScore`
5941
+ # @return [Float]
5942
+ attr_accessor :confidence_score
5943
+
5944
+ # The language code specified in the original request.
5945
+ # Corresponds to the JSON property `inputLanguageCode`
5946
+ # @return [String]
5947
+ attr_accessor :input_language_code
5948
+
5949
+ # The language code detected for this request based on the user conversation.
5950
+ # Corresponds to the JSON property `resolvedLanguageCode`
5951
+ # @return [String]
5952
+ attr_accessor :resolved_language_code
5953
+
5954
+ def initialize(**args)
5955
+ update!(**args)
5956
+ end
5957
+
5958
+ # Update properties of this object
5959
+ def update!(**args)
5960
+ @confidence_score = args[:confidence_score] if args.key?(:confidence_score)
5961
+ @input_language_code = args[:input_language_code] if args.key?(:input_language_code)
5962
+ @resolved_language_code = args[:resolved_language_code] if args.key?(:resolved_language_code)
5963
+ end
5964
+ end
5965
+
5874
5966
  # A Dialogflow CX conversation (session) can be described and visualized as a
5875
5967
  # state machine. The states of a CX session are represented by pages. For each
5876
5968
  # flow, you define many pages, where your combined pages can handle a complete
@@ -7316,6 +7408,11 @@ module Google
7316
7408
  # @return [String]
7317
7409
  attr_accessor :language_code
7318
7410
 
7411
+ # Represents the language information of the request.
7412
+ # Corresponds to the JSON property `languageInfo`
7413
+ # @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1LanguageInfo]
7414
+ attr_accessor :language_info
7415
+
7319
7416
  # The list of rich message responses to present to the user. Webhook can choose
7320
7417
  # to append or replace this list in WebhookResponse.fulfillment_response;
7321
7418
  # Corresponds to the JSON property `messages`
@@ -7377,6 +7474,7 @@ module Google
7377
7474
  @fulfillment_info = args[:fulfillment_info] if args.key?(:fulfillment_info)
7378
7475
  @intent_info = args[:intent_info] if args.key?(:intent_info)
7379
7476
  @language_code = args[:language_code] if args.key?(:language_code)
7477
+ @language_info = args[:language_info] if args.key?(:language_info)
7380
7478
  @messages = args[:messages] if args.key?(:messages)
7381
7479
  @page_info = args[:page_info] if args.key?(:page_info)
7382
7480
  @payload = args[:payload] if args.key?(:payload)
@@ -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.84.0"
19
+ GEM_VERSION = "0.86.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.14.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240311"
25
+ REVISION = "20240507"
26
26
  end
27
27
  end
28
28
  end
@@ -400,6 +400,12 @@ module Google
400
400
  include Google::Apis::Core::JsonObjectSupport
401
401
  end
402
402
 
403
+ class GoogleCloudDialogflowCxV3LanguageInfo
404
+ class Representation < Google::Apis::Core::JsonRepresentation; end
405
+
406
+ include Google::Apis::Core::JsonObjectSupport
407
+ end
408
+
403
409
  class GoogleCloudDialogflowCxV3Page
404
410
  class Representation < Google::Apis::Core::JsonRepresentation; end
405
411
 
@@ -1036,6 +1042,12 @@ module Google
1036
1042
  include Google::Apis::Core::JsonObjectSupport
1037
1043
  end
1038
1044
 
1045
+ class GoogleCloudDialogflowCxV3beta1LanguageInfo
1046
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1047
+
1048
+ include Google::Apis::Core::JsonObjectSupport
1049
+ end
1050
+
1039
1051
  class GoogleCloudDialogflowCxV3beta1Page
1040
1052
  class Representation < Google::Apis::Core::JsonRepresentation; end
1041
1053
 
@@ -3166,7 +3178,9 @@ module Google
3166
3178
  # @private
3167
3179
  class Representation < Google::Apis::Core::JsonRepresentation
3168
3180
  property :enabled, as: 'enabled'
3181
+ property :endpointing_timeout_duration, as: 'endpointingTimeoutDuration'
3169
3182
  property :finish_digit, as: 'finishDigit'
3183
+ property :interdigit_timeout_duration, as: 'interdigitTimeoutDuration'
3170
3184
  property :max_digits, as: 'maxDigits'
3171
3185
  end
3172
3186
  end
@@ -3727,6 +3741,15 @@ module Google
3727
3741
  end
3728
3742
  end
3729
3743
 
3744
+ class GoogleCloudDialogflowCxV3LanguageInfo
3745
+ # @private
3746
+ class Representation < Google::Apis::Core::JsonRepresentation
3747
+ property :confidence_score, as: 'confidenceScore'
3748
+ property :input_language_code, as: 'inputLanguageCode'
3749
+ property :resolved_language_code, as: 'resolvedLanguageCode'
3750
+ end
3751
+ end
3752
+
3730
3753
  class GoogleCloudDialogflowCxV3Page
3731
3754
  # @private
3732
3755
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4106,6 +4129,8 @@ module Google
4106
4129
  property :intent_info, as: 'intentInfo', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3WebhookRequestIntentInfo, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3WebhookRequestIntentInfo::Representation
4107
4130
 
4108
4131
  property :language_code, as: 'languageCode'
4132
+ property :language_info, as: 'languageInfo', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3LanguageInfo, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3LanguageInfo::Representation
4133
+
4109
4134
  collection :messages, as: 'messages', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3ResponseMessage, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3ResponseMessage::Representation
4110
4135
 
4111
4136
  property :page_info, as: 'pageInfo', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3PageInfo, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3PageInfo::Representation
@@ -4207,7 +4232,9 @@ module Google
4207
4232
  # @private
4208
4233
  class Representation < Google::Apis::Core::JsonRepresentation
4209
4234
  property :enabled, as: 'enabled'
4235
+ property :endpointing_timeout_duration, as: 'endpointingTimeoutDuration'
4210
4236
  property :finish_digit, as: 'finishDigit'
4237
+ property :interdigit_timeout_duration, as: 'interdigitTimeoutDuration'
4211
4238
  property :max_digits, as: 'maxDigits'
4212
4239
  end
4213
4240
  end
@@ -4768,6 +4795,15 @@ module Google
4768
4795
  end
4769
4796
  end
4770
4797
 
4798
+ class GoogleCloudDialogflowCxV3beta1LanguageInfo
4799
+ # @private
4800
+ class Representation < Google::Apis::Core::JsonRepresentation
4801
+ property :confidence_score, as: 'confidenceScore'
4802
+ property :input_language_code, as: 'inputLanguageCode'
4803
+ property :resolved_language_code, as: 'resolvedLanguageCode'
4804
+ end
4805
+ end
4806
+
4771
4807
  class GoogleCloudDialogflowCxV3beta1Page
4772
4808
  # @private
4773
4809
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -5146,6 +5182,8 @@ module Google
5146
5182
  property :intent_info, as: 'intentInfo', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1WebhookRequestIntentInfo, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1WebhookRequestIntentInfo::Representation
5147
5183
 
5148
5184
  property :language_code, as: 'languageCode'
5185
+ property :language_info, as: 'languageInfo', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1LanguageInfo, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1LanguageInfo::Representation
5186
+
5149
5187
  collection :messages, as: 'messages', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1ResponseMessage, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1ResponseMessage::Representation
5150
5188
 
5151
5189
  property :page_info, as: 'pageInfo', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1PageInfo, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1PageInfo::Representation
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.84.0
4
+ version: 0.86.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: 2024-03-17 00:00:00.000000000 Z
11
+ date: 2024-05-12 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.84.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2/v0.86.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: []