google-apis-dialogflow_v3 0.121.0 → 0.122.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: 4bcead5c44059742c177cfd9ac12d4ff2f146cbbe9e6bc2f03513efc9bb2fa66
|
|
4
|
+
data.tar.gz: 1649ed40fd38a57afd37e440c74a1d3b398ac7102a89badd0702211eb1f6ac37
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7829404b48646a4cf9492e30d76352ebba89b5945e7716c86a795e08c7f89df3f354be047549922aa92bd091d3bbfe1765e7bc8e118d20575cbf195c17b4b0ae
|
|
7
|
+
data.tar.gz: a8e6f3426a3f138d17912bdc50a024d5f0fa058ede9ccd5da1147805024dadd5c583ae4ec2ae1fc429ea5cea333e92a64799e56cc5dd8f50af0479d90b19779f
|
data/CHANGELOG.md
CHANGED
|
@@ -15659,6 +15659,11 @@ module Google
|
|
|
15659
15659
|
# @return [String]
|
|
15660
15660
|
attr_accessor :answer_text
|
|
15661
15661
|
|
|
15662
|
+
#
|
|
15663
|
+
# Corresponds to the JSON property `eventSource`
|
|
15664
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswerEventSource]
|
|
15665
|
+
attr_accessor :event_source
|
|
15666
|
+
|
|
15662
15667
|
#
|
|
15663
15668
|
# Corresponds to the JSON property `faqSource`
|
|
15664
15669
|
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswerFaqSource]
|
|
@@ -15669,6 +15674,11 @@ module Google
|
|
|
15669
15674
|
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswerGenerativeSource]
|
|
15670
15675
|
attr_accessor :generative_source
|
|
15671
15676
|
|
|
15677
|
+
#
|
|
15678
|
+
# Corresponds to the JSON property `playbookSource`
|
|
15679
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswerGenerativeSource]
|
|
15680
|
+
attr_accessor :playbook_source
|
|
15681
|
+
|
|
15672
15682
|
def initialize(**args)
|
|
15673
15683
|
update!(**args)
|
|
15674
15684
|
end
|
|
@@ -15676,8 +15686,35 @@ module Google
|
|
|
15676
15686
|
# Update properties of this object
|
|
15677
15687
|
def update!(**args)
|
|
15678
15688
|
@answer_text = args[:answer_text] if args.key?(:answer_text)
|
|
15689
|
+
@event_source = args[:event_source] if args.key?(:event_source)
|
|
15679
15690
|
@faq_source = args[:faq_source] if args.key?(:faq_source)
|
|
15680
15691
|
@generative_source = args[:generative_source] if args.key?(:generative_source)
|
|
15692
|
+
@playbook_source = args[:playbook_source] if args.key?(:playbook_source)
|
|
15693
|
+
end
|
|
15694
|
+
end
|
|
15695
|
+
|
|
15696
|
+
#
|
|
15697
|
+
class GoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswerEventSource
|
|
15698
|
+
include Google::Apis::Core::Hashable
|
|
15699
|
+
|
|
15700
|
+
#
|
|
15701
|
+
# Corresponds to the JSON property `event`
|
|
15702
|
+
# @return [String]
|
|
15703
|
+
attr_accessor :event
|
|
15704
|
+
|
|
15705
|
+
#
|
|
15706
|
+
# Corresponds to the JSON property `snippets`
|
|
15707
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswerGenerativeSource]
|
|
15708
|
+
attr_accessor :snippets
|
|
15709
|
+
|
|
15710
|
+
def initialize(**args)
|
|
15711
|
+
update!(**args)
|
|
15712
|
+
end
|
|
15713
|
+
|
|
15714
|
+
# Update properties of this object
|
|
15715
|
+
def update!(**args)
|
|
15716
|
+
@event = args[:event] if args.key?(:event)
|
|
15717
|
+
@snippets = args[:snippets] if args.key?(:snippets)
|
|
15681
15718
|
end
|
|
15682
15719
|
end
|
|
15683
15720
|
|
|
@@ -19806,6 +19843,11 @@ module Google
|
|
|
19806
19843
|
# @return [String]
|
|
19807
19844
|
attr_accessor :answer_text
|
|
19808
19845
|
|
|
19846
|
+
#
|
|
19847
|
+
# Corresponds to the JSON property `eventSource`
|
|
19848
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswerEventSource]
|
|
19849
|
+
attr_accessor :event_source
|
|
19850
|
+
|
|
19809
19851
|
#
|
|
19810
19852
|
# Corresponds to the JSON property `faqSource`
|
|
19811
19853
|
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswerFaqSource]
|
|
@@ -19816,6 +19858,11 @@ module Google
|
|
|
19816
19858
|
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswerGenerativeSource]
|
|
19817
19859
|
attr_accessor :generative_source
|
|
19818
19860
|
|
|
19861
|
+
#
|
|
19862
|
+
# Corresponds to the JSON property `playbookSource`
|
|
19863
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswerGenerativeSource]
|
|
19864
|
+
attr_accessor :playbook_source
|
|
19865
|
+
|
|
19819
19866
|
def initialize(**args)
|
|
19820
19867
|
update!(**args)
|
|
19821
19868
|
end
|
|
@@ -19823,8 +19870,35 @@ module Google
|
|
|
19823
19870
|
# Update properties of this object
|
|
19824
19871
|
def update!(**args)
|
|
19825
19872
|
@answer_text = args[:answer_text] if args.key?(:answer_text)
|
|
19873
|
+
@event_source = args[:event_source] if args.key?(:event_source)
|
|
19826
19874
|
@faq_source = args[:faq_source] if args.key?(:faq_source)
|
|
19827
19875
|
@generative_source = args[:generative_source] if args.key?(:generative_source)
|
|
19876
|
+
@playbook_source = args[:playbook_source] if args.key?(:playbook_source)
|
|
19877
|
+
end
|
|
19878
|
+
end
|
|
19879
|
+
|
|
19880
|
+
#
|
|
19881
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswerEventSource
|
|
19882
|
+
include Google::Apis::Core::Hashable
|
|
19883
|
+
|
|
19884
|
+
#
|
|
19885
|
+
# Corresponds to the JSON property `event`
|
|
19886
|
+
# @return [String]
|
|
19887
|
+
attr_accessor :event
|
|
19888
|
+
|
|
19889
|
+
#
|
|
19890
|
+
# Corresponds to the JSON property `snippets`
|
|
19891
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswerGenerativeSource]
|
|
19892
|
+
attr_accessor :snippets
|
|
19893
|
+
|
|
19894
|
+
def initialize(**args)
|
|
19895
|
+
update!(**args)
|
|
19896
|
+
end
|
|
19897
|
+
|
|
19898
|
+
# Update properties of this object
|
|
19899
|
+
def update!(**args)
|
|
19900
|
+
@event = args[:event] if args.key?(:event)
|
|
19901
|
+
@snippets = args[:snippets] if args.key?(:snippets)
|
|
19828
19902
|
end
|
|
19829
19903
|
end
|
|
19830
19904
|
|
|
@@ -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.122.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260426"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -2944,6 +2944,12 @@ module Google
|
|
|
2944
2944
|
include Google::Apis::Core::JsonObjectSupport
|
|
2945
2945
|
end
|
|
2946
2946
|
|
|
2947
|
+
class GoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswerEventSource
|
|
2948
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2949
|
+
|
|
2950
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
2951
|
+
end
|
|
2952
|
+
|
|
2947
2953
|
class GoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswerFaqSource
|
|
2948
2954
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2949
2955
|
|
|
@@ -3676,6 +3682,12 @@ module Google
|
|
|
3676
3682
|
include Google::Apis::Core::JsonObjectSupport
|
|
3677
3683
|
end
|
|
3678
3684
|
|
|
3685
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswerEventSource
|
|
3686
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3687
|
+
|
|
3688
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
3689
|
+
end
|
|
3690
|
+
|
|
3679
3691
|
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswerFaqSource
|
|
3680
3692
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3681
3693
|
|
|
@@ -8910,10 +8922,23 @@ module Google
|
|
|
8910
8922
|
# @private
|
|
8911
8923
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
8912
8924
|
property :answer_text, as: 'answerText'
|
|
8925
|
+
property :event_source, as: 'eventSource', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswerEventSource, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswerEventSource::Representation
|
|
8926
|
+
|
|
8913
8927
|
property :faq_source, as: 'faqSource', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswerFaqSource, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswerFaqSource::Representation
|
|
8914
8928
|
|
|
8915
8929
|
property :generative_source, as: 'generativeSource', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswerGenerativeSource, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswerGenerativeSource::Representation
|
|
8916
8930
|
|
|
8931
|
+
property :playbook_source, as: 'playbookSource', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswerGenerativeSource, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswerGenerativeSource::Representation
|
|
8932
|
+
|
|
8933
|
+
end
|
|
8934
|
+
end
|
|
8935
|
+
|
|
8936
|
+
class GoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswerEventSource
|
|
8937
|
+
# @private
|
|
8938
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
8939
|
+
property :event, as: 'event'
|
|
8940
|
+
property :snippets, as: 'snippets', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswerGenerativeSource, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswerGenerativeSource::Representation
|
|
8941
|
+
|
|
8917
8942
|
end
|
|
8918
8943
|
end
|
|
8919
8944
|
|
|
@@ -10194,10 +10219,23 @@ module Google
|
|
|
10194
10219
|
# @private
|
|
10195
10220
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
10196
10221
|
property :answer_text, as: 'answerText'
|
|
10222
|
+
property :event_source, as: 'eventSource', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswerEventSource, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswerEventSource::Representation
|
|
10223
|
+
|
|
10197
10224
|
property :faq_source, as: 'faqSource', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswerFaqSource, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswerFaqSource::Representation
|
|
10198
10225
|
|
|
10199
10226
|
property :generative_source, as: 'generativeSource', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswerGenerativeSource, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswerGenerativeSource::Representation
|
|
10200
10227
|
|
|
10228
|
+
property :playbook_source, as: 'playbookSource', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswerGenerativeSource, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswerGenerativeSource::Representation
|
|
10229
|
+
|
|
10230
|
+
end
|
|
10231
|
+
end
|
|
10232
|
+
|
|
10233
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswerEventSource
|
|
10234
|
+
# @private
|
|
10235
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
10236
|
+
property :event, as: 'event'
|
|
10237
|
+
property :snippets, as: 'snippets', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswerGenerativeSource, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswerGenerativeSource::Representation
|
|
10238
|
+
|
|
10201
10239
|
end
|
|
10202
10240
|
end
|
|
10203
10241
|
|
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.122.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.122.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:
|