google-apis-dialogflow_v2beta1 0.83.0 → 0.85.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: 0453a35fab40c1340d7627c4fb82c80deac20f2eba22af60d542845c493f379d
4
- data.tar.gz: 634070f930757a852b354d2eb3fac663867bb7b4d0132d441d0b07852b34cccd
3
+ metadata.gz: 62df67def340eb10347193e6712cbfc97f2009b10c7a634ca2537f18e0485dbd
4
+ data.tar.gz: cb5f3d25cf9867d7bc5d48cb18f1e4e22934b94849225355532cb29517641c8a
5
5
  SHA512:
6
- metadata.gz: 9d9ab330c0cb18aea647b4314606be8d2401d9869439c639933ed8471564a938764a5ed7edaee09be267470c1e81551d0cd22106ed88b9f328bfc3ffa1b3325a
7
- data.tar.gz: '087d4dd3c7cc2e1ec3f56933f786dbe23992a5236f78130cea04132ca137e3d2079c5a692fc955564cd05a385cbdcf9cd7c01e5cfc13079acc450c1404c5d7e9'
6
+ metadata.gz: b179dddc46636ed0484a3f8f467299ec0bc1106e61d84f6646c52488b8568b117a48acbc871a3d0eb4c542cb00d6f6cd4c0f3916e44ac4f5bd9db33cf6166443
7
+ data.tar.gz: 35afac537e4aa954165dfbed44469d6979ee81807984eedfd3c17f9a3c5e00eb39bdcc107d9cffe1657f40cf79b9c1ac33658dbf62ddfd224a971a288ec5a34a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-dialogflow_v2beta1
2
2
 
3
+ ### v0.85.0 (2024-05-19)
4
+
5
+ * Regenerated from discovery document revision 20240507
6
+ * Regenerated using generator version 0.15.0
7
+
8
+ ### v0.84.0 (2024-04-21)
9
+
10
+ * Regenerated from discovery document revision 20240417
11
+
3
12
  ### v0.83.0 (2024-03-17)
4
13
 
5
14
  * 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::DialogflowV2beta1::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::DialogflowV2beta1::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 DialogflowV2beta1
18
18
  # Version of the google-apis-dialogflow_v2beta1 gem
19
- GEM_VERSION = "0.83.0"
19
+ GEM_VERSION = "0.85.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.14.0"
22
+ GENERATOR_VERSION = "0.15.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
 
@@ -3184,7 +3196,9 @@ module Google
3184
3196
  # @private
3185
3197
  class Representation < Google::Apis::Core::JsonRepresentation
3186
3198
  property :enabled, as: 'enabled'
3199
+ property :endpointing_timeout_duration, as: 'endpointingTimeoutDuration'
3187
3200
  property :finish_digit, as: 'finishDigit'
3201
+ property :interdigit_timeout_duration, as: 'interdigitTimeoutDuration'
3188
3202
  property :max_digits, as: 'maxDigits'
3189
3203
  end
3190
3204
  end
@@ -3745,6 +3759,15 @@ module Google
3745
3759
  end
3746
3760
  end
3747
3761
 
3762
+ class GoogleCloudDialogflowCxV3LanguageInfo
3763
+ # @private
3764
+ class Representation < Google::Apis::Core::JsonRepresentation
3765
+ property :confidence_score, as: 'confidenceScore'
3766
+ property :input_language_code, as: 'inputLanguageCode'
3767
+ property :resolved_language_code, as: 'resolvedLanguageCode'
3768
+ end
3769
+ end
3770
+
3748
3771
  class GoogleCloudDialogflowCxV3Page
3749
3772
  # @private
3750
3773
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4124,6 +4147,8 @@ module Google
4124
4147
  property :intent_info, as: 'intentInfo', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3WebhookRequestIntentInfo, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3WebhookRequestIntentInfo::Representation
4125
4148
 
4126
4149
  property :language_code, as: 'languageCode'
4150
+ property :language_info, as: 'languageInfo', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3LanguageInfo, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3LanguageInfo::Representation
4151
+
4127
4152
  collection :messages, as: 'messages', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3ResponseMessage, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3ResponseMessage::Representation
4128
4153
 
4129
4154
  property :page_info, as: 'pageInfo', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3PageInfo, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3PageInfo::Representation
@@ -4225,7 +4250,9 @@ module Google
4225
4250
  # @private
4226
4251
  class Representation < Google::Apis::Core::JsonRepresentation
4227
4252
  property :enabled, as: 'enabled'
4253
+ property :endpointing_timeout_duration, as: 'endpointingTimeoutDuration'
4228
4254
  property :finish_digit, as: 'finishDigit'
4255
+ property :interdigit_timeout_duration, as: 'interdigitTimeoutDuration'
4229
4256
  property :max_digits, as: 'maxDigits'
4230
4257
  end
4231
4258
  end
@@ -4786,6 +4813,15 @@ module Google
4786
4813
  end
4787
4814
  end
4788
4815
 
4816
+ class GoogleCloudDialogflowCxV3beta1LanguageInfo
4817
+ # @private
4818
+ class Representation < Google::Apis::Core::JsonRepresentation
4819
+ property :confidence_score, as: 'confidenceScore'
4820
+ property :input_language_code, as: 'inputLanguageCode'
4821
+ property :resolved_language_code, as: 'resolvedLanguageCode'
4822
+ end
4823
+ end
4824
+
4789
4825
  class GoogleCloudDialogflowCxV3beta1Page
4790
4826
  # @private
4791
4827
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -5164,6 +5200,8 @@ module Google
5164
5200
  property :intent_info, as: 'intentInfo', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1WebhookRequestIntentInfo, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1WebhookRequestIntentInfo::Representation
5165
5201
 
5166
5202
  property :language_code, as: 'languageCode'
5203
+ property :language_info, as: 'languageInfo', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1LanguageInfo, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1LanguageInfo::Representation
5204
+
5167
5205
  collection :messages, as: 'messages', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1ResponseMessage, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1ResponseMessage::Representation
5168
5206
 
5169
5207
  property :page_info, as: 'pageInfo', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1PageInfo, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1PageInfo::Representation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dialogflow_v2beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.83.0
4
+ version: 0.85.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-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.14.0
19
+ version: 0.15.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.14.0
29
+ version: 0.15.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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_v2beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2beta1/v0.83.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2beta1/v0.85.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2beta1
63
63
  post_install_message:
64
64
  rdoc_options: []