google-apis-dialogflow_v3 0.123.0 → 0.124.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/OVERVIEW.md +1 -1
- data/lib/google/apis/dialogflow_v3/classes.rb +112 -0
- data/lib/google/apis/dialogflow_v3/gem_version.rb +3 -3
- data/lib/google/apis/dialogflow_v3/representations.rb +64 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cd1576993f8a09b289004bf58889e9d79e36f3e86ac7cd92e26bd22e920b0535
|
|
4
|
+
data.tar.gz: d16ad16e19616537278ee00fef9a61cbda7b37c65f74c67b678cb5f8242e7f99
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 10ac0a195400db450ac827858478265ff32eca0a7fcc96c9f02f06f9c55afa2bbcebd296d441855b061cfed4bc523e1dc9439ca675d4ba113aaa4ed94786771d
|
|
7
|
+
data.tar.gz: 0f3d173a04bdc74b18ad1129359ca1e19ca04b78ece68818e245aa506678e50cfed3e21bd650168894bccb2b527961c1789cd88b4823ea9e6e8b744b75c51824
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Release history for google-apis-dialogflow_v3
|
|
2
2
|
|
|
3
|
+
### v0.124.0 (2026-06-14)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260604
|
|
6
|
+
* Regenerated using generator version 0.19.0
|
|
7
|
+
|
|
3
8
|
### v0.123.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
|
|
|
@@ -15650,6 +15650,25 @@ module Google
|
|
|
15650
15650
|
end
|
|
15651
15651
|
end
|
|
15652
15652
|
|
|
15653
|
+
#
|
|
15654
|
+
class GoogleCloudDialogflowV2KnowledgeAssistAnswerAdditionalSuggestedQueryResult
|
|
15655
|
+
include Google::Apis::Core::Hashable
|
|
15656
|
+
|
|
15657
|
+
#
|
|
15658
|
+
# Corresponds to the JSON property `suggestedQuery`
|
|
15659
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuery]
|
|
15660
|
+
attr_accessor :suggested_query
|
|
15661
|
+
|
|
15662
|
+
def initialize(**args)
|
|
15663
|
+
update!(**args)
|
|
15664
|
+
end
|
|
15665
|
+
|
|
15666
|
+
# Update properties of this object
|
|
15667
|
+
def update!(**args)
|
|
15668
|
+
@suggested_query = args[:suggested_query] if args.key?(:suggested_query)
|
|
15669
|
+
end
|
|
15670
|
+
end
|
|
15671
|
+
|
|
15653
15672
|
#
|
|
15654
15673
|
class GoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswer
|
|
15655
15674
|
include Google::Apis::Core::Hashable
|
|
@@ -15802,6 +15821,11 @@ module Google
|
|
|
15802
15821
|
# @return [String]
|
|
15803
15822
|
attr_accessor :query_text
|
|
15804
15823
|
|
|
15824
|
+
#
|
|
15825
|
+
# Corresponds to the JSON property `searchContexts`
|
|
15826
|
+
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuerySearchContext>]
|
|
15827
|
+
attr_accessor :search_contexts
|
|
15828
|
+
|
|
15805
15829
|
def initialize(**args)
|
|
15806
15830
|
update!(**args)
|
|
15807
15831
|
end
|
|
@@ -15809,6 +15833,32 @@ module Google
|
|
|
15809
15833
|
# Update properties of this object
|
|
15810
15834
|
def update!(**args)
|
|
15811
15835
|
@query_text = args[:query_text] if args.key?(:query_text)
|
|
15836
|
+
@search_contexts = args[:search_contexts] if args.key?(:search_contexts)
|
|
15837
|
+
end
|
|
15838
|
+
end
|
|
15839
|
+
|
|
15840
|
+
#
|
|
15841
|
+
class GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuerySearchContext
|
|
15842
|
+
include Google::Apis::Core::Hashable
|
|
15843
|
+
|
|
15844
|
+
#
|
|
15845
|
+
# Corresponds to the JSON property `key`
|
|
15846
|
+
# @return [String]
|
|
15847
|
+
attr_accessor :key
|
|
15848
|
+
|
|
15849
|
+
#
|
|
15850
|
+
# Corresponds to the JSON property `value`
|
|
15851
|
+
# @return [String]
|
|
15852
|
+
attr_accessor :value
|
|
15853
|
+
|
|
15854
|
+
def initialize(**args)
|
|
15855
|
+
update!(**args)
|
|
15856
|
+
end
|
|
15857
|
+
|
|
15858
|
+
# Update properties of this object
|
|
15859
|
+
def update!(**args)
|
|
15860
|
+
@key = args[:key] if args.key?(:key)
|
|
15861
|
+
@value = args[:value] if args.key?(:value)
|
|
15812
15862
|
end
|
|
15813
15863
|
end
|
|
15814
15864
|
|
|
@@ -16684,6 +16734,11 @@ module Google
|
|
|
16684
16734
|
class GoogleCloudDialogflowV2SuggestKnowledgeAssistResponse
|
|
16685
16735
|
include Google::Apis::Core::Hashable
|
|
16686
16736
|
|
|
16737
|
+
#
|
|
16738
|
+
# Corresponds to the JSON property `additionalSuggestedQueryResults`
|
|
16739
|
+
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowV2KnowledgeAssistAnswerAdditionalSuggestedQueryResult>]
|
|
16740
|
+
attr_accessor :additional_suggested_query_results
|
|
16741
|
+
|
|
16687
16742
|
#
|
|
16688
16743
|
# Corresponds to the JSON property `contextSize`
|
|
16689
16744
|
# @return [Fixnum]
|
|
@@ -16705,6 +16760,7 @@ module Google
|
|
|
16705
16760
|
|
|
16706
16761
|
# Update properties of this object
|
|
16707
16762
|
def update!(**args)
|
|
16763
|
+
@additional_suggested_query_results = args[:additional_suggested_query_results] if args.key?(:additional_suggested_query_results)
|
|
16708
16764
|
@context_size = args[:context_size] if args.key?(:context_size)
|
|
16709
16765
|
@knowledge_assist_answer = args[:knowledge_assist_answer] if args.key?(:knowledge_assist_answer)
|
|
16710
16766
|
@latest_message = args[:latest_message] if args.key?(:latest_message)
|
|
@@ -19877,6 +19933,25 @@ module Google
|
|
|
19877
19933
|
end
|
|
19878
19934
|
end
|
|
19879
19935
|
|
|
19936
|
+
#
|
|
19937
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerAdditionalSuggestedQueryResult
|
|
19938
|
+
include Google::Apis::Core::Hashable
|
|
19939
|
+
|
|
19940
|
+
#
|
|
19941
|
+
# Corresponds to the JSON property `suggestedQuery`
|
|
19942
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuery]
|
|
19943
|
+
attr_accessor :suggested_query
|
|
19944
|
+
|
|
19945
|
+
def initialize(**args)
|
|
19946
|
+
update!(**args)
|
|
19947
|
+
end
|
|
19948
|
+
|
|
19949
|
+
# Update properties of this object
|
|
19950
|
+
def update!(**args)
|
|
19951
|
+
@suggested_query = args[:suggested_query] if args.key?(:suggested_query)
|
|
19952
|
+
end
|
|
19953
|
+
end
|
|
19954
|
+
|
|
19880
19955
|
#
|
|
19881
19956
|
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswer
|
|
19882
19957
|
include Google::Apis::Core::Hashable
|
|
@@ -20029,6 +20104,11 @@ module Google
|
|
|
20029
20104
|
# @return [String]
|
|
20030
20105
|
attr_accessor :query_text
|
|
20031
20106
|
|
|
20107
|
+
#
|
|
20108
|
+
# Corresponds to the JSON property `searchContexts`
|
|
20109
|
+
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuerySearchContext>]
|
|
20110
|
+
attr_accessor :search_contexts
|
|
20111
|
+
|
|
20032
20112
|
def initialize(**args)
|
|
20033
20113
|
update!(**args)
|
|
20034
20114
|
end
|
|
@@ -20036,6 +20116,32 @@ module Google
|
|
|
20036
20116
|
# Update properties of this object
|
|
20037
20117
|
def update!(**args)
|
|
20038
20118
|
@query_text = args[:query_text] if args.key?(:query_text)
|
|
20119
|
+
@search_contexts = args[:search_contexts] if args.key?(:search_contexts)
|
|
20120
|
+
end
|
|
20121
|
+
end
|
|
20122
|
+
|
|
20123
|
+
#
|
|
20124
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuerySearchContext
|
|
20125
|
+
include Google::Apis::Core::Hashable
|
|
20126
|
+
|
|
20127
|
+
#
|
|
20128
|
+
# Corresponds to the JSON property `key`
|
|
20129
|
+
# @return [String]
|
|
20130
|
+
attr_accessor :key
|
|
20131
|
+
|
|
20132
|
+
#
|
|
20133
|
+
# Corresponds to the JSON property `value`
|
|
20134
|
+
# @return [String]
|
|
20135
|
+
attr_accessor :value
|
|
20136
|
+
|
|
20137
|
+
def initialize(**args)
|
|
20138
|
+
update!(**args)
|
|
20139
|
+
end
|
|
20140
|
+
|
|
20141
|
+
# Update properties of this object
|
|
20142
|
+
def update!(**args)
|
|
20143
|
+
@key = args[:key] if args.key?(:key)
|
|
20144
|
+
@value = args[:value] if args.key?(:value)
|
|
20039
20145
|
end
|
|
20040
20146
|
end
|
|
20041
20147
|
|
|
@@ -21124,6 +21230,11 @@ module Google
|
|
|
21124
21230
|
class GoogleCloudDialogflowV2beta1SuggestKnowledgeAssistResponse
|
|
21125
21231
|
include Google::Apis::Core::Hashable
|
|
21126
21232
|
|
|
21233
|
+
#
|
|
21234
|
+
# Corresponds to the JSON property `additionalSuggestedQueryResults`
|
|
21235
|
+
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerAdditionalSuggestedQueryResult>]
|
|
21236
|
+
attr_accessor :additional_suggested_query_results
|
|
21237
|
+
|
|
21127
21238
|
#
|
|
21128
21239
|
# Corresponds to the JSON property `contextSize`
|
|
21129
21240
|
# @return [Fixnum]
|
|
@@ -21145,6 +21256,7 @@ module Google
|
|
|
21145
21256
|
|
|
21146
21257
|
# Update properties of this object
|
|
21147
21258
|
def update!(**args)
|
|
21259
|
+
@additional_suggested_query_results = args[:additional_suggested_query_results] if args.key?(:additional_suggested_query_results)
|
|
21148
21260
|
@context_size = args[:context_size] if args.key?(:context_size)
|
|
21149
21261
|
@knowledge_assist_answer = args[:knowledge_assist_answer] if args.key?(:knowledge_assist_answer)
|
|
21150
21262
|
@latest_message = args[:latest_message] if args.key?(:latest_message)
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module DialogflowV3
|
|
18
18
|
# Version of the google-apis-dialogflow_v3 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.124.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
|
|
@@ -2938,6 +2938,12 @@ module Google
|
|
|
2938
2938
|
include Google::Apis::Core::JsonObjectSupport
|
|
2939
2939
|
end
|
|
2940
2940
|
|
|
2941
|
+
class GoogleCloudDialogflowV2KnowledgeAssistAnswerAdditionalSuggestedQueryResult
|
|
2942
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2943
|
+
|
|
2944
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
2945
|
+
end
|
|
2946
|
+
|
|
2941
2947
|
class GoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswer
|
|
2942
2948
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2943
2949
|
|
|
@@ -2974,6 +2980,12 @@ module Google
|
|
|
2974
2980
|
include Google::Apis::Core::JsonObjectSupport
|
|
2975
2981
|
end
|
|
2976
2982
|
|
|
2983
|
+
class GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuerySearchContext
|
|
2984
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2985
|
+
|
|
2986
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
2987
|
+
end
|
|
2988
|
+
|
|
2977
2989
|
class GoogleCloudDialogflowV2KnowledgeAssistDebugInfo
|
|
2978
2990
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2979
2991
|
|
|
@@ -3682,6 +3694,12 @@ module Google
|
|
|
3682
3694
|
include Google::Apis::Core::JsonObjectSupport
|
|
3683
3695
|
end
|
|
3684
3696
|
|
|
3697
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerAdditionalSuggestedQueryResult
|
|
3698
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3699
|
+
|
|
3700
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
3701
|
+
end
|
|
3702
|
+
|
|
3685
3703
|
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswer
|
|
3686
3704
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3687
3705
|
|
|
@@ -3718,6 +3736,12 @@ module Google
|
|
|
3718
3736
|
include Google::Apis::Core::JsonObjectSupport
|
|
3719
3737
|
end
|
|
3720
3738
|
|
|
3739
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuerySearchContext
|
|
3740
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3741
|
+
|
|
3742
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
3743
|
+
end
|
|
3744
|
+
|
|
3721
3745
|
class GoogleCloudDialogflowV2beta1KnowledgeAssistDebugInfo
|
|
3722
3746
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3723
3747
|
|
|
@@ -8930,6 +8954,14 @@ module Google
|
|
|
8930
8954
|
end
|
|
8931
8955
|
end
|
|
8932
8956
|
|
|
8957
|
+
class GoogleCloudDialogflowV2KnowledgeAssistAnswerAdditionalSuggestedQueryResult
|
|
8958
|
+
# @private
|
|
8959
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
8960
|
+
property :suggested_query, as: 'suggestedQuery', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuery, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuery::Representation
|
|
8961
|
+
|
|
8962
|
+
end
|
|
8963
|
+
end
|
|
8964
|
+
|
|
8933
8965
|
class GoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswer
|
|
8934
8966
|
# @private
|
|
8935
8967
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -8983,6 +9015,16 @@ module Google
|
|
|
8983
9015
|
# @private
|
|
8984
9016
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
8985
9017
|
property :query_text, as: 'queryText'
|
|
9018
|
+
collection :search_contexts, as: 'searchContexts', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuerySearchContext, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuerySearchContext::Representation
|
|
9019
|
+
|
|
9020
|
+
end
|
|
9021
|
+
end
|
|
9022
|
+
|
|
9023
|
+
class GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuerySearchContext
|
|
9024
|
+
# @private
|
|
9025
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
9026
|
+
property :key, as: 'key'
|
|
9027
|
+
property :value, as: 'value'
|
|
8986
9028
|
end
|
|
8987
9029
|
end
|
|
8988
9030
|
|
|
@@ -9225,6 +9267,8 @@ module Google
|
|
|
9225
9267
|
class GoogleCloudDialogflowV2SuggestKnowledgeAssistResponse
|
|
9226
9268
|
# @private
|
|
9227
9269
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
9270
|
+
collection :additional_suggested_query_results, as: 'additionalSuggestedQueryResults', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2KnowledgeAssistAnswerAdditionalSuggestedQueryResult, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2KnowledgeAssistAnswerAdditionalSuggestedQueryResult::Representation
|
|
9271
|
+
|
|
9228
9272
|
property :context_size, as: 'contextSize'
|
|
9229
9273
|
property :knowledge_assist_answer, as: 'knowledgeAssistAnswer', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2KnowledgeAssistAnswer, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2KnowledgeAssistAnswer::Representation
|
|
9230
9274
|
|
|
@@ -10239,6 +10283,14 @@ module Google
|
|
|
10239
10283
|
end
|
|
10240
10284
|
end
|
|
10241
10285
|
|
|
10286
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerAdditionalSuggestedQueryResult
|
|
10287
|
+
# @private
|
|
10288
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
10289
|
+
property :suggested_query, as: 'suggestedQuery', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuery, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuery::Representation
|
|
10290
|
+
|
|
10291
|
+
end
|
|
10292
|
+
end
|
|
10293
|
+
|
|
10242
10294
|
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswer
|
|
10243
10295
|
# @private
|
|
10244
10296
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -10292,6 +10344,16 @@ module Google
|
|
|
10292
10344
|
# @private
|
|
10293
10345
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
10294
10346
|
property :query_text, as: 'queryText'
|
|
10347
|
+
collection :search_contexts, as: 'searchContexts', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuerySearchContext, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuerySearchContext::Representation
|
|
10348
|
+
|
|
10349
|
+
end
|
|
10350
|
+
end
|
|
10351
|
+
|
|
10352
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuerySearchContext
|
|
10353
|
+
# @private
|
|
10354
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
10355
|
+
property :key, as: 'key'
|
|
10356
|
+
property :value, as: 'value'
|
|
10295
10357
|
end
|
|
10296
10358
|
end
|
|
10297
10359
|
|
|
@@ -10606,6 +10668,8 @@ module Google
|
|
|
10606
10668
|
class GoogleCloudDialogflowV2beta1SuggestKnowledgeAssistResponse
|
|
10607
10669
|
# @private
|
|
10608
10670
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
10671
|
+
collection :additional_suggested_query_results, as: 'additionalSuggestedQueryResults', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerAdditionalSuggestedQueryResult, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerAdditionalSuggestedQueryResult::Representation
|
|
10672
|
+
|
|
10609
10673
|
property :context_size, as: 'contextSize'
|
|
10610
10674
|
property :knowledge_assist_answer, as: 'knowledgeAssistAnswer', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswer, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswer::Representation
|
|
10611
10675
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-dialogflow_v3
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.124.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_v3/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.124.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3
|
|
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
|
- - ">="
|