google-cloud-dialogflow-v2 0.13.0 → 0.15.1
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/README.md +1 -1
- data/lib/google/cloud/dialogflow/v2/agents/client.rb +18 -0
- data/lib/google/cloud/dialogflow/v2/answer_record_pb.rb +0 -1
- data/lib/google/cloud/dialogflow/v2/audio_config_pb.rb +0 -2
- data/lib/google/cloud/dialogflow/v2/conversation_dataset_pb.rb +92 -0
- data/lib/google/cloud/dialogflow/v2/conversation_dataset_services_pb.rb +81 -0
- data/lib/google/cloud/dialogflow/v2/conversation_datasets/client.rb +849 -0
- data/lib/google/cloud/dialogflow/v2/conversation_datasets/credentials.rb +52 -0
- data/lib/google/cloud/dialogflow/v2/conversation_datasets/operations.rb +767 -0
- data/lib/google/cloud/dialogflow/v2/conversation_datasets/paths.rb +69 -0
- data/lib/google/cloud/dialogflow/v2/conversation_datasets.rb +53 -0
- data/lib/google/cloud/dialogflow/v2/conversation_event_pb.rb +0 -1
- data/lib/google/cloud/dialogflow/v2/conversation_model_pb.rb +205 -0
- data/lib/google/cloud/dialogflow/v2/conversation_model_services_pb.rb +98 -0
- data/lib/google/cloud/dialogflow/v2/conversation_models/client.rb +1257 -0
- data/lib/google/cloud/dialogflow/v2/conversation_models/credentials.rb +52 -0
- data/lib/google/cloud/dialogflow/v2/conversation_models/operations.rb +767 -0
- data/lib/google/cloud/dialogflow/v2/conversation_models/paths.rb +179 -0
- data/lib/google/cloud/dialogflow/v2/conversation_models.rb +50 -0
- data/lib/google/cloud/dialogflow/v2/conversation_pb.rb +0 -1
- data/lib/google/cloud/dialogflow/v2/conversation_profile_pb.rb +31 -1
- data/lib/google/cloud/dialogflow/v2/conversation_profile_services_pb.rb +27 -0
- data/lib/google/cloud/dialogflow/v2/conversation_profiles/client.rb +250 -0
- data/lib/google/cloud/dialogflow/v2/conversation_profiles/operations.rb +767 -0
- data/lib/google/cloud/dialogflow/v2/conversation_profiles/paths.rb +31 -9
- data/lib/google/cloud/dialogflow/v2/conversation_profiles.rb +1 -0
- data/lib/google/cloud/dialogflow/v2/document_pb.rb +38 -0
- data/lib/google/cloud/dialogflow/v2/document_services_pb.rb +11 -0
- data/lib/google/cloud/dialogflow/v2/documents/client.rb +123 -0
- data/lib/google/cloud/dialogflow/v2/gcs_pb.rb +4 -1
- data/lib/google/cloud/dialogflow/v2/human_agent_assistant_event_pb.rb +0 -1
- data/lib/google/cloud/dialogflow/v2/intent_pb.rb +0 -2
- data/lib/google/cloud/dialogflow/v2/participant_pb.rb +22 -3
- data/lib/google/cloud/dialogflow/v2/participant_services_pb.rb +3 -0
- data/lib/google/cloud/dialogflow/v2/participants/client.rb +113 -4
- data/lib/google/cloud/dialogflow/v2/session_pb.rb +0 -1
- data/lib/google/cloud/dialogflow/v2/validation_result_pb.rb +0 -1
- data/lib/google/cloud/dialogflow/v2/version.rb +1 -1
- data/lib/google/cloud/dialogflow/v2/webhook_pb.rb +0 -1
- data/lib/google/cloud/dialogflow/v2.rb +4 -0
- data/proto_docs/google/cloud/dialogflow/v2/agent.rb +18 -0
- data/proto_docs/google/cloud/dialogflow/v2/conversation_dataset.rb +211 -0
- data/proto_docs/google/cloud/dialogflow/v2/conversation_model.rb +522 -0
- data/proto_docs/google/cloud/dialogflow/v2/conversation_profile.rb +100 -2
- data/proto_docs/google/cloud/dialogflow/v2/document.rb +104 -0
- data/proto_docs/google/cloud/dialogflow/v2/gcs.rb +11 -0
- data/proto_docs/google/cloud/dialogflow/v2/participant.rb +88 -6
- data/proto_docs/google/cloud/dialogflow/v2/session.rb +5 -0
- metadata +20 -3
@@ -88,6 +88,9 @@ module Google
|
|
88
88
|
# key-value pairs. Suggested use cases include storing a document's title,
|
89
89
|
# an external URL distinct from the document's content_uri, etc.
|
90
90
|
# The max size of a `key` or a `value` of the metadata is 1024 bytes.
|
91
|
+
# @!attribute [r] state
|
92
|
+
# @return [::Google::Cloud::Dialogflow::V2::Document::State]
|
93
|
+
# Output only. The current state of the document.
|
91
94
|
class Document
|
92
95
|
include ::Google::Protobuf::MessageExts
|
93
96
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -136,6 +139,30 @@ module Google
|
|
136
139
|
# The entire document content as a whole can be used for query results.
|
137
140
|
# Only for Contact Center Solutions on Dialogflow.
|
138
141
|
ARTICLE_SUGGESTION = 3
|
142
|
+
|
143
|
+
# The document contains agent-facing Smart Reply entries.
|
144
|
+
AGENT_FACING_SMART_REPLY = 4
|
145
|
+
end
|
146
|
+
|
147
|
+
# Possible states of the document
|
148
|
+
module State
|
149
|
+
# The document state is unspecified.
|
150
|
+
STATE_UNSPECIFIED = 0
|
151
|
+
|
152
|
+
# The document creation is in progress.
|
153
|
+
CREATING = 1
|
154
|
+
|
155
|
+
# The document is active and ready to use.
|
156
|
+
ACTIVE = 2
|
157
|
+
|
158
|
+
# The document updation is in progress.
|
159
|
+
UPDATING = 3
|
160
|
+
|
161
|
+
# The document is reloading.
|
162
|
+
RELOADING = 4
|
163
|
+
|
164
|
+
# The document deletion is in progress.
|
165
|
+
DELETING = 5
|
139
166
|
end
|
140
167
|
end
|
141
168
|
|
@@ -218,6 +245,68 @@ module Google
|
|
218
245
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
219
246
|
end
|
220
247
|
|
248
|
+
# Request message for {::Google::Cloud::Dialogflow::V2::Documents::Client#import_documents Documents.ImportDocuments}.
|
249
|
+
# @!attribute [rw] parent
|
250
|
+
# @return [::String]
|
251
|
+
# Required. The knowledge base to import documents into.
|
252
|
+
# Format: `projects/<Project ID>/locations/<Location
|
253
|
+
# ID>/knowledgeBases/<Knowledge Base ID>`.
|
254
|
+
# @!attribute [rw] gcs_source
|
255
|
+
# @return [::Google::Cloud::Dialogflow::V2::GcsSources]
|
256
|
+
# The Google Cloud Storage location for the documents.
|
257
|
+
# The path can include a wildcard.
|
258
|
+
#
|
259
|
+
# These URIs may have the forms
|
260
|
+
# `gs://<bucket-name>/<object-name>`.
|
261
|
+
# `gs://<bucket-name>/<object-path>/*.<extension>`.
|
262
|
+
# @!attribute [rw] document_template
|
263
|
+
# @return [::Google::Cloud::Dialogflow::V2::ImportDocumentTemplate]
|
264
|
+
# Required. Document template used for importing all the documents.
|
265
|
+
# @!attribute [rw] import_gcs_custom_metadata
|
266
|
+
# @return [::Boolean]
|
267
|
+
# Whether to import custom metadata from Google Cloud Storage.
|
268
|
+
# Only valid when the document source is Google Cloud Storage URI.
|
269
|
+
class ImportDocumentsRequest
|
270
|
+
include ::Google::Protobuf::MessageExts
|
271
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
272
|
+
end
|
273
|
+
|
274
|
+
# The template used for importing documents.
|
275
|
+
# @!attribute [rw] mime_type
|
276
|
+
# @return [::String]
|
277
|
+
# Required. The MIME type of the document.
|
278
|
+
# @!attribute [rw] knowledge_types
|
279
|
+
# @return [::Array<::Google::Cloud::Dialogflow::V2::Document::KnowledgeType>]
|
280
|
+
# Required. The knowledge type of document content.
|
281
|
+
# @!attribute [rw] metadata
|
282
|
+
# @return [::Google::Protobuf::Map{::String => ::String}]
|
283
|
+
# Metadata for the document. The metadata supports arbitrary
|
284
|
+
# key-value pairs. Suggested use cases include storing a document's title,
|
285
|
+
# an external URL distinct from the document's content_uri, etc.
|
286
|
+
# The max size of a `key` or a `value` of the metadata is 1024 bytes.
|
287
|
+
class ImportDocumentTemplate
|
288
|
+
include ::Google::Protobuf::MessageExts
|
289
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
290
|
+
|
291
|
+
# @!attribute [rw] key
|
292
|
+
# @return [::String]
|
293
|
+
# @!attribute [rw] value
|
294
|
+
# @return [::String]
|
295
|
+
class MetadataEntry
|
296
|
+
include ::Google::Protobuf::MessageExts
|
297
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
298
|
+
end
|
299
|
+
end
|
300
|
+
|
301
|
+
# Response message for {::Google::Cloud::Dialogflow::V2::Documents::Client#import_documents Documents.ImportDocuments}.
|
302
|
+
# @!attribute [rw] warnings
|
303
|
+
# @return [::Array<::Google::Rpc::Status>]
|
304
|
+
# Includes details about skipped documents or any other warnings.
|
305
|
+
class ImportDocumentsResponse
|
306
|
+
include ::Google::Protobuf::MessageExts
|
307
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
308
|
+
end
|
309
|
+
|
221
310
|
# Request message for {::Google::Cloud::Dialogflow::V2::Documents::Client#delete_document Documents.DeleteDocument}.
|
222
311
|
# @!attribute [rw] name
|
223
312
|
# @return [::String]
|
@@ -291,10 +380,25 @@ module Google
|
|
291
380
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
292
381
|
end
|
293
382
|
|
383
|
+
# Metadata related to the Export Data Operations (e.g. ExportDocument).
|
384
|
+
# @!attribute [rw] exported_gcs_destination
|
385
|
+
# @return [::Google::Cloud::Dialogflow::V2::GcsDestination]
|
386
|
+
# Cloud Storage file path of the exported data.
|
387
|
+
class ExportOperationMetadata
|
388
|
+
include ::Google::Protobuf::MessageExts
|
389
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
390
|
+
end
|
391
|
+
|
294
392
|
# Metadata in google::longrunning::Operation for Knowledge operations.
|
295
393
|
# @!attribute [r] state
|
296
394
|
# @return [::Google::Cloud::Dialogflow::V2::KnowledgeOperationMetadata::State]
|
297
395
|
# Output only. The current state of this operation.
|
396
|
+
# @!attribute [rw] knowledge_base
|
397
|
+
# @return [::String]
|
398
|
+
# The name of the knowledge base interacted with during the operation.
|
399
|
+
# @!attribute [rw] export_operation_metadata
|
400
|
+
# @return [::Google::Cloud::Dialogflow::V2::ExportOperationMetadata]
|
401
|
+
# Metadata for the Export Data Operation such as the destination of export.
|
298
402
|
class KnowledgeOperationMetadata
|
299
403
|
include ::Google::Protobuf::MessageExts
|
300
404
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -21,6 +21,17 @@ module Google
|
|
21
21
|
module Cloud
|
22
22
|
module Dialogflow
|
23
23
|
module V2
|
24
|
+
# Google Cloud Storage location for the inputs.
|
25
|
+
# @!attribute [rw] uris
|
26
|
+
# @return [::Array<::String>]
|
27
|
+
# Required. Google Cloud Storage URIs for the inputs. A URI is of the form:
|
28
|
+
# gs://bucket/object-prefix-or-name
|
29
|
+
# Whether a prefix or name is used depends on the use case.
|
30
|
+
class GcsSources
|
31
|
+
include ::Google::Protobuf::MessageExts
|
32
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
33
|
+
end
|
34
|
+
|
24
35
|
# Google Cloud Storage location for the output.
|
25
36
|
# @!attribute [rw] uri
|
26
37
|
# @return [::String]
|
@@ -87,7 +87,7 @@ module Google
|
|
87
87
|
# Represents a message posted into a conversation.
|
88
88
|
# @!attribute [rw] name
|
89
89
|
# @return [::String]
|
90
|
-
# The unique identifier of the message.
|
90
|
+
# Optional. The unique identifier of the message.
|
91
91
|
# Format: `projects/<Project ID>/locations/<Location
|
92
92
|
# ID>/conversations/<Conversation ID>/messages/<Message ID>`.
|
93
93
|
# @!attribute [rw] content
|
@@ -106,10 +106,16 @@ module Google
|
|
106
106
|
# Output only. The role of the participant.
|
107
107
|
# @!attribute [r] create_time
|
108
108
|
# @return [::Google::Protobuf::Timestamp]
|
109
|
-
# Output only. The time when the message was created.
|
109
|
+
# Output only. The time when the message was created in Contact Center AI.
|
110
|
+
# @!attribute [rw] send_time
|
111
|
+
# @return [::Google::Protobuf::Timestamp]
|
112
|
+
# Optional. The time when the message was sent.
|
110
113
|
# @!attribute [r] message_annotation
|
111
114
|
# @return [::Google::Cloud::Dialogflow::V2::MessageAnnotation]
|
112
115
|
# Output only. The annotation for the message.
|
116
|
+
# @!attribute [r] sentiment_analysis
|
117
|
+
# @return [::Google::Cloud::Dialogflow::V2::SentimentAnalysisResult]
|
118
|
+
# Output only. The sentiment analysis result for the message.
|
113
119
|
class Message
|
114
120
|
include ::Google::Protobuf::MessageExts
|
115
121
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -282,14 +288,14 @@ module Google
|
|
282
288
|
# ID>/conversations/<Conversation ID>/participants/<Participant ID>`.
|
283
289
|
# @!attribute [rw] latest_message
|
284
290
|
# @return [::String]
|
285
|
-
# The name of the latest conversation message to compile suggestion
|
291
|
+
# Optional. The name of the latest conversation message to compile suggestion
|
286
292
|
# for. If empty, it will be the latest message of the conversation.
|
287
293
|
#
|
288
294
|
# Format: `projects/<Project ID>/locations/<Location
|
289
295
|
# ID>/conversations/<Conversation ID>/messages/<Message ID>`.
|
290
296
|
# @!attribute [rw] context_size
|
291
297
|
# @return [::Integer]
|
292
|
-
# Max number of messages prior to and including
|
298
|
+
# Optional. Max number of messages prior to and including
|
293
299
|
# {::Google::Cloud::Dialogflow::V2::SuggestArticlesRequest#latest_message latest_message} to use as context
|
294
300
|
# when compiling the suggestion. By default 20 and at most 50.
|
295
301
|
# @!attribute [rw] assist_query_params
|
@@ -331,14 +337,14 @@ module Google
|
|
331
337
|
# ID>/conversations/<Conversation ID>/participants/<Participant ID>`.
|
332
338
|
# @!attribute [rw] latest_message
|
333
339
|
# @return [::String]
|
334
|
-
# The name of the latest conversation message to compile suggestion
|
340
|
+
# Optional. The name of the latest conversation message to compile suggestion
|
335
341
|
# for. If empty, it will be the latest message of the conversation.
|
336
342
|
#
|
337
343
|
# Format: `projects/<Project ID>/locations/<Location
|
338
344
|
# ID>/conversations/<Conversation ID>/messages/<Message ID>`.
|
339
345
|
# @!attribute [rw] context_size
|
340
346
|
# @return [::Integer]
|
341
|
-
# Max number of messages prior to and including
|
347
|
+
# Optional. Max number of messages prior to and including
|
342
348
|
# [latest_message] to use as context when compiling the
|
343
349
|
# suggestion. By default 20 and at most 50.
|
344
350
|
# @!attribute [rw] assist_query_params
|
@@ -372,6 +378,59 @@ module Google
|
|
372
378
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
373
379
|
end
|
374
380
|
|
381
|
+
# The request message for {::Google::Cloud::Dialogflow::V2::Participants::Client#suggest_smart_replies Participants.SuggestSmartReplies}.
|
382
|
+
# @!attribute [rw] parent
|
383
|
+
# @return [::String]
|
384
|
+
# Required. The name of the participant to fetch suggestion for.
|
385
|
+
# Format: `projects/<Project ID>/locations/<Location
|
386
|
+
# ID>/conversations/<Conversation ID>/participants/<Participant ID>`.
|
387
|
+
# @!attribute [rw] current_text_input
|
388
|
+
# @return [::Google::Cloud::Dialogflow::V2::TextInput]
|
389
|
+
# The current natural language text segment to compile suggestion
|
390
|
+
# for. This provides a way for user to get follow up smart reply suggestion
|
391
|
+
# after a smart reply selection, without sending a text message.
|
392
|
+
# @!attribute [rw] latest_message
|
393
|
+
# @return [::String]
|
394
|
+
# The name of the latest conversation message to compile suggestion
|
395
|
+
# for. If empty, it will be the latest message of the conversation.
|
396
|
+
#
|
397
|
+
# Format: `projects/<Project ID>/locations/<Location
|
398
|
+
# ID>/conversations/<Conversation ID>/messages/<Message ID>`.
|
399
|
+
# @!attribute [rw] context_size
|
400
|
+
# @return [::Integer]
|
401
|
+
# Max number of messages prior to and including
|
402
|
+
# [latest_message] to use as context when compiling the
|
403
|
+
# suggestion. By default 20 and at most 50.
|
404
|
+
class SuggestSmartRepliesRequest
|
405
|
+
include ::Google::Protobuf::MessageExts
|
406
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
407
|
+
end
|
408
|
+
|
409
|
+
# The response message for {::Google::Cloud::Dialogflow::V2::Participants::Client#suggest_smart_replies Participants.SuggestSmartReplies}.
|
410
|
+
# @!attribute [r] smart_reply_answers
|
411
|
+
# @return [::Array<::Google::Cloud::Dialogflow::V2::SmartReplyAnswer>]
|
412
|
+
# Output only. Multiple reply options provided by smart reply service. The
|
413
|
+
# order is based on the rank of the model prediction.
|
414
|
+
# The maximum number of the returned replies is set in SmartReplyConfig.
|
415
|
+
# @!attribute [rw] latest_message
|
416
|
+
# @return [::String]
|
417
|
+
# The name of the latest conversation message used to compile
|
418
|
+
# suggestion for.
|
419
|
+
#
|
420
|
+
# Format: `projects/<Project ID>/locations/<Location
|
421
|
+
# ID>/conversations/<Conversation ID>/messages/<Message ID>`.
|
422
|
+
# @!attribute [rw] context_size
|
423
|
+
# @return [::Integer]
|
424
|
+
# Number of messages prior to and including
|
425
|
+
# {::Google::Cloud::Dialogflow::V2::SuggestSmartRepliesResponse#latest_message latest_message} to compile the
|
426
|
+
# suggestion. It may be smaller than the
|
427
|
+
# {::Google::Cloud::Dialogflow::V2::SuggestSmartRepliesRequest#context_size SuggestSmartRepliesRequest.context_size} field in the request if there
|
428
|
+
# aren't that many messages in the conversation.
|
429
|
+
class SuggestSmartRepliesResponse
|
430
|
+
include ::Google::Protobuf::MessageExts
|
431
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
432
|
+
end
|
433
|
+
|
375
434
|
# Represents the natural language speech audio to be played to the end user.
|
376
435
|
# @!attribute [rw] config
|
377
436
|
# @return [::Google::Cloud::Dialogflow::V2::OutputAudioConfig]
|
@@ -496,6 +555,26 @@ module Google
|
|
496
555
|
end
|
497
556
|
end
|
498
557
|
|
558
|
+
# Represents a smart reply answer.
|
559
|
+
# @!attribute [rw] reply
|
560
|
+
# @return [::String]
|
561
|
+
# The content of the reply.
|
562
|
+
# @!attribute [rw] confidence
|
563
|
+
# @return [::Float]
|
564
|
+
# Smart reply confidence.
|
565
|
+
# The system's confidence score that this reply is a good match for
|
566
|
+
# this conversation, as a value from 0.0 (completely uncertain) to 1.0
|
567
|
+
# (completely certain).
|
568
|
+
# @!attribute [rw] answer_record
|
569
|
+
# @return [::String]
|
570
|
+
# The name of answer record, in the format of
|
571
|
+
# "projects/<Project ID>/locations/<Location ID>/answerRecords/<Answer Record
|
572
|
+
# ID>"
|
573
|
+
class SmartReplyAnswer
|
574
|
+
include ::Google::Protobuf::MessageExts
|
575
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
576
|
+
end
|
577
|
+
|
499
578
|
# One response of different type of suggestion response which is used in
|
500
579
|
# the response of {::Google::Cloud::Dialogflow::V2::Participants::Client#analyze_content Participants.AnalyzeContent} and
|
501
580
|
# {::Google::Cloud::Dialogflow::V2::Participants::Client#analyze_content Participants.AnalyzeContent}, as well as {::Google::Cloud::Dialogflow::V2::HumanAgentAssistantEvent HumanAgentAssistantEvent}.
|
@@ -508,6 +587,9 @@ module Google
|
|
508
587
|
# @!attribute [rw] suggest_faq_answers_response
|
509
588
|
# @return [::Google::Cloud::Dialogflow::V2::SuggestFaqAnswersResponse]
|
510
589
|
# SuggestFaqAnswersResponse if request is for FAQ_ANSWER.
|
590
|
+
# @!attribute [rw] suggest_smart_replies_response
|
591
|
+
# @return [::Google::Cloud::Dialogflow::V2::SuggestSmartRepliesResponse]
|
592
|
+
# SuggestSmartRepliesResponse if request is for SMART_REPLY.
|
511
593
|
class SuggestionResult
|
512
594
|
include ::Google::Protobuf::MessageExts
|
513
595
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -589,6 +589,11 @@ module Google
|
|
589
589
|
# Support](https://cloud.google.com/dialogflow/docs/reference/language)
|
590
590
|
# for a list of the currently supported language codes. Note that queries in
|
591
591
|
# the same session do not necessarily need to specify the same language.
|
592
|
+
#
|
593
|
+
# This field is ignored when used in the context of a
|
594
|
+
# {::Google::Cloud::Dialogflow::V2::WebhookResponse#followup_event_input WebhookResponse.followup_event_input} field,
|
595
|
+
# because the language was already defined in the originating detect
|
596
|
+
# intent request.
|
592
597
|
class EventInput
|
593
598
|
include ::Google::Protobuf::MessageExts
|
594
599
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-dialogflow-v2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.15.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-03-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|
@@ -195,13 +195,28 @@ files:
|
|
195
195
|
- lib/google/cloud/dialogflow/v2/contexts/client.rb
|
196
196
|
- lib/google/cloud/dialogflow/v2/contexts/credentials.rb
|
197
197
|
- lib/google/cloud/dialogflow/v2/contexts/paths.rb
|
198
|
+
- lib/google/cloud/dialogflow/v2/conversation_dataset_pb.rb
|
199
|
+
- lib/google/cloud/dialogflow/v2/conversation_dataset_services_pb.rb
|
200
|
+
- lib/google/cloud/dialogflow/v2/conversation_datasets.rb
|
201
|
+
- lib/google/cloud/dialogflow/v2/conversation_datasets/client.rb
|
202
|
+
- lib/google/cloud/dialogflow/v2/conversation_datasets/credentials.rb
|
203
|
+
- lib/google/cloud/dialogflow/v2/conversation_datasets/operations.rb
|
204
|
+
- lib/google/cloud/dialogflow/v2/conversation_datasets/paths.rb
|
198
205
|
- lib/google/cloud/dialogflow/v2/conversation_event_pb.rb
|
206
|
+
- lib/google/cloud/dialogflow/v2/conversation_model_pb.rb
|
207
|
+
- lib/google/cloud/dialogflow/v2/conversation_model_services_pb.rb
|
208
|
+
- lib/google/cloud/dialogflow/v2/conversation_models.rb
|
209
|
+
- lib/google/cloud/dialogflow/v2/conversation_models/client.rb
|
210
|
+
- lib/google/cloud/dialogflow/v2/conversation_models/credentials.rb
|
211
|
+
- lib/google/cloud/dialogflow/v2/conversation_models/operations.rb
|
212
|
+
- lib/google/cloud/dialogflow/v2/conversation_models/paths.rb
|
199
213
|
- lib/google/cloud/dialogflow/v2/conversation_pb.rb
|
200
214
|
- lib/google/cloud/dialogflow/v2/conversation_profile_pb.rb
|
201
215
|
- lib/google/cloud/dialogflow/v2/conversation_profile_services_pb.rb
|
202
216
|
- lib/google/cloud/dialogflow/v2/conversation_profiles.rb
|
203
217
|
- lib/google/cloud/dialogflow/v2/conversation_profiles/client.rb
|
204
218
|
- lib/google/cloud/dialogflow/v2/conversation_profiles/credentials.rb
|
219
|
+
- lib/google/cloud/dialogflow/v2/conversation_profiles/operations.rb
|
205
220
|
- lib/google/cloud/dialogflow/v2/conversation_profiles/paths.rb
|
206
221
|
- lib/google/cloud/dialogflow/v2/conversation_services_pb.rb
|
207
222
|
- lib/google/cloud/dialogflow/v2/conversations.rb
|
@@ -284,7 +299,9 @@ files:
|
|
284
299
|
- proto_docs/google/cloud/dialogflow/v2/audio_config.rb
|
285
300
|
- proto_docs/google/cloud/dialogflow/v2/context.rb
|
286
301
|
- proto_docs/google/cloud/dialogflow/v2/conversation.rb
|
302
|
+
- proto_docs/google/cloud/dialogflow/v2/conversation_dataset.rb
|
287
303
|
- proto_docs/google/cloud/dialogflow/v2/conversation_event.rb
|
304
|
+
- proto_docs/google/cloud/dialogflow/v2/conversation_model.rb
|
288
305
|
- proto_docs/google/cloud/dialogflow/v2/conversation_profile.rb
|
289
306
|
- proto_docs/google/cloud/dialogflow/v2/document.rb
|
290
307
|
- proto_docs/google/cloud/dialogflow/v2/entity_type.rb
|
@@ -328,7 +345,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
328
345
|
- !ruby/object:Gem::Version
|
329
346
|
version: '0'
|
330
347
|
requirements: []
|
331
|
-
rubygems_version: 3.3.
|
348
|
+
rubygems_version: 3.3.5
|
332
349
|
signing_key:
|
333
350
|
specification_version: 4
|
334
351
|
summary: API Client library for the Dialogflow V2 API
|