google-apis-dialogflow_v3beta1 0.119.0 → 0.120.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: 5f17a7e9063632501b5122b93d3a65b977e6af07602da04e0bd7838078eacb9d
|
|
4
|
+
data.tar.gz: fe527108ffcadf73922f9d314bd89e6299ff20c14c96bb4eef0caca4a409a7ad
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2a856f45c65372a2ff1a3bd17ad43a86be792a86ea87d4a196164425302c664f35c7d297e88a8c0f6c5a28c7a8c29866dbea9736af3ac7d3cb28f89fcdbe7a58
|
|
7
|
+
data.tar.gz: f722dee23d6f213fa8a113f8beeaa8720fa1fdc987012c984e0a31c93a561b63097508d71a2c2a3fbb09643615d292738a18e09b9190139feadc65949ebdfef2
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Release history for google-apis-dialogflow_v3beta1
|
|
2
2
|
|
|
3
|
+
### v0.120.0 (2026-06-14)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260604
|
|
6
|
+
* Regenerated using generator version 0.19.0
|
|
7
|
+
|
|
3
8
|
### v0.119.0 (2026-05-24)
|
|
4
9
|
|
|
5
10
|
* Regenerated from discovery document revision 20260518
|
data/OVERVIEW.md
CHANGED
|
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/dialogflow/) may provide gu
|
|
|
83
83
|
|
|
84
84
|
## Supported Ruby versions
|
|
85
85
|
|
|
86
|
-
This library is supported on Ruby 3.
|
|
86
|
+
This library is supported on Ruby 3.2+.
|
|
87
87
|
|
|
88
88
|
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
|
|
89
89
|
|
|
@@ -17073,6 +17073,25 @@ module Google
|
|
|
17073
17073
|
end
|
|
17074
17074
|
end
|
|
17075
17075
|
|
|
17076
|
+
#
|
|
17077
|
+
class GoogleCloudDialogflowV2KnowledgeAssistAnswerAdditionalSuggestedQueryResult
|
|
17078
|
+
include Google::Apis::Core::Hashable
|
|
17079
|
+
|
|
17080
|
+
#
|
|
17081
|
+
# Corresponds to the JSON property `suggestedQuery`
|
|
17082
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuery]
|
|
17083
|
+
attr_accessor :suggested_query
|
|
17084
|
+
|
|
17085
|
+
def initialize(**args)
|
|
17086
|
+
update!(**args)
|
|
17087
|
+
end
|
|
17088
|
+
|
|
17089
|
+
# Update properties of this object
|
|
17090
|
+
def update!(**args)
|
|
17091
|
+
@suggested_query = args[:suggested_query] if args.key?(:suggested_query)
|
|
17092
|
+
end
|
|
17093
|
+
end
|
|
17094
|
+
|
|
17076
17095
|
#
|
|
17077
17096
|
class GoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswer
|
|
17078
17097
|
include Google::Apis::Core::Hashable
|
|
@@ -17225,6 +17244,11 @@ module Google
|
|
|
17225
17244
|
# @return [String]
|
|
17226
17245
|
attr_accessor :query_text
|
|
17227
17246
|
|
|
17247
|
+
#
|
|
17248
|
+
# Corresponds to the JSON property `searchContexts`
|
|
17249
|
+
# @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuerySearchContext>]
|
|
17250
|
+
attr_accessor :search_contexts
|
|
17251
|
+
|
|
17228
17252
|
def initialize(**args)
|
|
17229
17253
|
update!(**args)
|
|
17230
17254
|
end
|
|
@@ -17232,6 +17256,32 @@ module Google
|
|
|
17232
17256
|
# Update properties of this object
|
|
17233
17257
|
def update!(**args)
|
|
17234
17258
|
@query_text = args[:query_text] if args.key?(:query_text)
|
|
17259
|
+
@search_contexts = args[:search_contexts] if args.key?(:search_contexts)
|
|
17260
|
+
end
|
|
17261
|
+
end
|
|
17262
|
+
|
|
17263
|
+
#
|
|
17264
|
+
class GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuerySearchContext
|
|
17265
|
+
include Google::Apis::Core::Hashable
|
|
17266
|
+
|
|
17267
|
+
#
|
|
17268
|
+
# Corresponds to the JSON property `key`
|
|
17269
|
+
# @return [String]
|
|
17270
|
+
attr_accessor :key
|
|
17271
|
+
|
|
17272
|
+
#
|
|
17273
|
+
# Corresponds to the JSON property `value`
|
|
17274
|
+
# @return [String]
|
|
17275
|
+
attr_accessor :value
|
|
17276
|
+
|
|
17277
|
+
def initialize(**args)
|
|
17278
|
+
update!(**args)
|
|
17279
|
+
end
|
|
17280
|
+
|
|
17281
|
+
# Update properties of this object
|
|
17282
|
+
def update!(**args)
|
|
17283
|
+
@key = args[:key] if args.key?(:key)
|
|
17284
|
+
@value = args[:value] if args.key?(:value)
|
|
17235
17285
|
end
|
|
17236
17286
|
end
|
|
17237
17287
|
|
|
@@ -18107,6 +18157,11 @@ module Google
|
|
|
18107
18157
|
class GoogleCloudDialogflowV2SuggestKnowledgeAssistResponse
|
|
18108
18158
|
include Google::Apis::Core::Hashable
|
|
18109
18159
|
|
|
18160
|
+
#
|
|
18161
|
+
# Corresponds to the JSON property `additionalSuggestedQueryResults`
|
|
18162
|
+
# @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2KnowledgeAssistAnswerAdditionalSuggestedQueryResult>]
|
|
18163
|
+
attr_accessor :additional_suggested_query_results
|
|
18164
|
+
|
|
18110
18165
|
#
|
|
18111
18166
|
# Corresponds to the JSON property `contextSize`
|
|
18112
18167
|
# @return [Fixnum]
|
|
@@ -18128,6 +18183,7 @@ module Google
|
|
|
18128
18183
|
|
|
18129
18184
|
# Update properties of this object
|
|
18130
18185
|
def update!(**args)
|
|
18186
|
+
@additional_suggested_query_results = args[:additional_suggested_query_results] if args.key?(:additional_suggested_query_results)
|
|
18131
18187
|
@context_size = args[:context_size] if args.key?(:context_size)
|
|
18132
18188
|
@knowledge_assist_answer = args[:knowledge_assist_answer] if args.key?(:knowledge_assist_answer)
|
|
18133
18189
|
@latest_message = args[:latest_message] if args.key?(:latest_message)
|
|
@@ -21300,6 +21356,25 @@ module Google
|
|
|
21300
21356
|
end
|
|
21301
21357
|
end
|
|
21302
21358
|
|
|
21359
|
+
#
|
|
21360
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerAdditionalSuggestedQueryResult
|
|
21361
|
+
include Google::Apis::Core::Hashable
|
|
21362
|
+
|
|
21363
|
+
#
|
|
21364
|
+
# Corresponds to the JSON property `suggestedQuery`
|
|
21365
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuery]
|
|
21366
|
+
attr_accessor :suggested_query
|
|
21367
|
+
|
|
21368
|
+
def initialize(**args)
|
|
21369
|
+
update!(**args)
|
|
21370
|
+
end
|
|
21371
|
+
|
|
21372
|
+
# Update properties of this object
|
|
21373
|
+
def update!(**args)
|
|
21374
|
+
@suggested_query = args[:suggested_query] if args.key?(:suggested_query)
|
|
21375
|
+
end
|
|
21376
|
+
end
|
|
21377
|
+
|
|
21303
21378
|
#
|
|
21304
21379
|
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswer
|
|
21305
21380
|
include Google::Apis::Core::Hashable
|
|
@@ -21452,6 +21527,11 @@ module Google
|
|
|
21452
21527
|
# @return [String]
|
|
21453
21528
|
attr_accessor :query_text
|
|
21454
21529
|
|
|
21530
|
+
#
|
|
21531
|
+
# Corresponds to the JSON property `searchContexts`
|
|
21532
|
+
# @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuerySearchContext>]
|
|
21533
|
+
attr_accessor :search_contexts
|
|
21534
|
+
|
|
21455
21535
|
def initialize(**args)
|
|
21456
21536
|
update!(**args)
|
|
21457
21537
|
end
|
|
@@ -21459,6 +21539,32 @@ module Google
|
|
|
21459
21539
|
# Update properties of this object
|
|
21460
21540
|
def update!(**args)
|
|
21461
21541
|
@query_text = args[:query_text] if args.key?(:query_text)
|
|
21542
|
+
@search_contexts = args[:search_contexts] if args.key?(:search_contexts)
|
|
21543
|
+
end
|
|
21544
|
+
end
|
|
21545
|
+
|
|
21546
|
+
#
|
|
21547
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuerySearchContext
|
|
21548
|
+
include Google::Apis::Core::Hashable
|
|
21549
|
+
|
|
21550
|
+
#
|
|
21551
|
+
# Corresponds to the JSON property `key`
|
|
21552
|
+
# @return [String]
|
|
21553
|
+
attr_accessor :key
|
|
21554
|
+
|
|
21555
|
+
#
|
|
21556
|
+
# Corresponds to the JSON property `value`
|
|
21557
|
+
# @return [String]
|
|
21558
|
+
attr_accessor :value
|
|
21559
|
+
|
|
21560
|
+
def initialize(**args)
|
|
21561
|
+
update!(**args)
|
|
21562
|
+
end
|
|
21563
|
+
|
|
21564
|
+
# Update properties of this object
|
|
21565
|
+
def update!(**args)
|
|
21566
|
+
@key = args[:key] if args.key?(:key)
|
|
21567
|
+
@value = args[:value] if args.key?(:value)
|
|
21462
21568
|
end
|
|
21463
21569
|
end
|
|
21464
21570
|
|
|
@@ -22547,6 +22653,11 @@ module Google
|
|
|
22547
22653
|
class GoogleCloudDialogflowV2beta1SuggestKnowledgeAssistResponse
|
|
22548
22654
|
include Google::Apis::Core::Hashable
|
|
22549
22655
|
|
|
22656
|
+
#
|
|
22657
|
+
# Corresponds to the JSON property `additionalSuggestedQueryResults`
|
|
22658
|
+
# @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerAdditionalSuggestedQueryResult>]
|
|
22659
|
+
attr_accessor :additional_suggested_query_results
|
|
22660
|
+
|
|
22550
22661
|
#
|
|
22551
22662
|
# Corresponds to the JSON property `contextSize`
|
|
22552
22663
|
# @return [Fixnum]
|
|
@@ -22568,6 +22679,7 @@ module Google
|
|
|
22568
22679
|
|
|
22569
22680
|
# Update properties of this object
|
|
22570
22681
|
def update!(**args)
|
|
22682
|
+
@additional_suggested_query_results = args[:additional_suggested_query_results] if args.key?(:additional_suggested_query_results)
|
|
22571
22683
|
@context_size = args[:context_size] if args.key?(:context_size)
|
|
22572
22684
|
@knowledge_assist_answer = args[:knowledge_assist_answer] if args.key?(:knowledge_assist_answer)
|
|
22573
22685
|
@latest_message = args[:latest_message] if args.key?(:latest_message)
|
|
@@ -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.120.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260604"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -3160,6 +3160,12 @@ module Google
|
|
|
3160
3160
|
include Google::Apis::Core::JsonObjectSupport
|
|
3161
3161
|
end
|
|
3162
3162
|
|
|
3163
|
+
class GoogleCloudDialogflowV2KnowledgeAssistAnswerAdditionalSuggestedQueryResult
|
|
3164
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3165
|
+
|
|
3166
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
3167
|
+
end
|
|
3168
|
+
|
|
3163
3169
|
class GoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswer
|
|
3164
3170
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3165
3171
|
|
|
@@ -3196,6 +3202,12 @@ module Google
|
|
|
3196
3202
|
include Google::Apis::Core::JsonObjectSupport
|
|
3197
3203
|
end
|
|
3198
3204
|
|
|
3205
|
+
class GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuerySearchContext
|
|
3206
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3207
|
+
|
|
3208
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
3209
|
+
end
|
|
3210
|
+
|
|
3199
3211
|
class GoogleCloudDialogflowV2KnowledgeAssistDebugInfo
|
|
3200
3212
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3201
3213
|
|
|
@@ -3904,6 +3916,12 @@ module Google
|
|
|
3904
3916
|
include Google::Apis::Core::JsonObjectSupport
|
|
3905
3917
|
end
|
|
3906
3918
|
|
|
3919
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerAdditionalSuggestedQueryResult
|
|
3920
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3921
|
+
|
|
3922
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
3923
|
+
end
|
|
3924
|
+
|
|
3907
3925
|
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswer
|
|
3908
3926
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3909
3927
|
|
|
@@ -3940,6 +3958,12 @@ module Google
|
|
|
3940
3958
|
include Google::Apis::Core::JsonObjectSupport
|
|
3941
3959
|
end
|
|
3942
3960
|
|
|
3961
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuerySearchContext
|
|
3962
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3963
|
+
|
|
3964
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
3965
|
+
end
|
|
3966
|
+
|
|
3943
3967
|
class GoogleCloudDialogflowV2beta1KnowledgeAssistDebugInfo
|
|
3944
3968
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3945
3969
|
|
|
@@ -9576,6 +9600,14 @@ module Google
|
|
|
9576
9600
|
end
|
|
9577
9601
|
end
|
|
9578
9602
|
|
|
9603
|
+
class GoogleCloudDialogflowV2KnowledgeAssistAnswerAdditionalSuggestedQueryResult
|
|
9604
|
+
# @private
|
|
9605
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
9606
|
+
property :suggested_query, as: 'suggestedQuery', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuery, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuery::Representation
|
|
9607
|
+
|
|
9608
|
+
end
|
|
9609
|
+
end
|
|
9610
|
+
|
|
9579
9611
|
class GoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswer
|
|
9580
9612
|
# @private
|
|
9581
9613
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -9629,6 +9661,16 @@ module Google
|
|
|
9629
9661
|
# @private
|
|
9630
9662
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
9631
9663
|
property :query_text, as: 'queryText'
|
|
9664
|
+
collection :search_contexts, as: 'searchContexts', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuerySearchContext, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuerySearchContext::Representation
|
|
9665
|
+
|
|
9666
|
+
end
|
|
9667
|
+
end
|
|
9668
|
+
|
|
9669
|
+
class GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuerySearchContext
|
|
9670
|
+
# @private
|
|
9671
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
9672
|
+
property :key, as: 'key'
|
|
9673
|
+
property :value, as: 'value'
|
|
9632
9674
|
end
|
|
9633
9675
|
end
|
|
9634
9676
|
|
|
@@ -9871,6 +9913,8 @@ module Google
|
|
|
9871
9913
|
class GoogleCloudDialogflowV2SuggestKnowledgeAssistResponse
|
|
9872
9914
|
# @private
|
|
9873
9915
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
9916
|
+
collection :additional_suggested_query_results, as: 'additionalSuggestedQueryResults', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2KnowledgeAssistAnswerAdditionalSuggestedQueryResult, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2KnowledgeAssistAnswerAdditionalSuggestedQueryResult::Representation
|
|
9917
|
+
|
|
9874
9918
|
property :context_size, as: 'contextSize'
|
|
9875
9919
|
property :knowledge_assist_answer, as: 'knowledgeAssistAnswer', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2KnowledgeAssistAnswer, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2KnowledgeAssistAnswer::Representation
|
|
9876
9920
|
|
|
@@ -10885,6 +10929,14 @@ module Google
|
|
|
10885
10929
|
end
|
|
10886
10930
|
end
|
|
10887
10931
|
|
|
10932
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerAdditionalSuggestedQueryResult
|
|
10933
|
+
# @private
|
|
10934
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
10935
|
+
property :suggested_query, as: 'suggestedQuery', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuery, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuery::Representation
|
|
10936
|
+
|
|
10937
|
+
end
|
|
10938
|
+
end
|
|
10939
|
+
|
|
10888
10940
|
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswer
|
|
10889
10941
|
# @private
|
|
10890
10942
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -10938,6 +10990,16 @@ module Google
|
|
|
10938
10990
|
# @private
|
|
10939
10991
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
10940
10992
|
property :query_text, as: 'queryText'
|
|
10993
|
+
collection :search_contexts, as: 'searchContexts', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuerySearchContext, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuerySearchContext::Representation
|
|
10994
|
+
|
|
10995
|
+
end
|
|
10996
|
+
end
|
|
10997
|
+
|
|
10998
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuerySearchContext
|
|
10999
|
+
# @private
|
|
11000
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
11001
|
+
property :key, as: 'key'
|
|
11002
|
+
property :value, as: 'value'
|
|
10941
11003
|
end
|
|
10942
11004
|
end
|
|
10943
11005
|
|
|
@@ -11252,6 +11314,8 @@ module Google
|
|
|
11252
11314
|
class GoogleCloudDialogflowV2beta1SuggestKnowledgeAssistResponse
|
|
11253
11315
|
# @private
|
|
11254
11316
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
11317
|
+
collection :additional_suggested_query_results, as: 'additionalSuggestedQueryResults', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerAdditionalSuggestedQueryResult, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerAdditionalSuggestedQueryResult::Representation
|
|
11318
|
+
|
|
11255
11319
|
property :context_size, as: 'contextSize'
|
|
11256
11320
|
property :knowledge_assist_answer, as: 'knowledgeAssistAnswer', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswer, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswer::Representation
|
|
11257
11321
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.120.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3beta1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3beta1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3beta1/v0.120.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3beta1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|
|
@@ -66,7 +66,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
66
66
|
requirements:
|
|
67
67
|
- - ">="
|
|
68
68
|
- !ruby/object:Gem::Version
|
|
69
|
-
version: '3.
|
|
69
|
+
version: '3.2'
|
|
70
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
71
71
|
requirements:
|
|
72
72
|
- - ">="
|