google-apis-dialogflow_v3 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: 6eec05bd3d15af923df1aa8b6eafc89294f67f4ebadffad42a7ee4dd0b85fa94
|
|
4
|
+
data.tar.gz: 27a8aa9abb5b4c2d38e62f3d8090c0aee523104a20db535831388fb0b6d3fc37
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 34a3fa2900ba53c02f31e36cea9bf12f5623dc780487ff8ed6f6d82bcc98d5badcd5aff6f15cfd69f819a6b867c40ac460320573a4d95f8f7e8ee4b8110ab046
|
|
7
|
+
data.tar.gz: 592c996d083c867c90f26709d0e8f2a000ef2921d5603d4337b4d61f538edecb3b8dc16c25b7ddfe0b72df5c97d9beb92b64c5a0b2feac2bdfc5f8084f4747e8
|
data/CHANGELOG.md
CHANGED
|
@@ -3077,6 +3077,31 @@ module Google
|
|
|
3077
3077
|
end
|
|
3078
3078
|
end
|
|
3079
3079
|
|
|
3080
|
+
#
|
|
3081
|
+
class GoogleCloudDialogflowCxV3FlowTraceMetadata
|
|
3082
|
+
include Google::Apis::Core::Hashable
|
|
3083
|
+
|
|
3084
|
+
#
|
|
3085
|
+
# Corresponds to the JSON property `displayName`
|
|
3086
|
+
# @return [String]
|
|
3087
|
+
attr_accessor :display_name
|
|
3088
|
+
|
|
3089
|
+
#
|
|
3090
|
+
# Corresponds to the JSON property `flow`
|
|
3091
|
+
# @return [String]
|
|
3092
|
+
attr_accessor :flow
|
|
3093
|
+
|
|
3094
|
+
def initialize(**args)
|
|
3095
|
+
update!(**args)
|
|
3096
|
+
end
|
|
3097
|
+
|
|
3098
|
+
# Update properties of this object
|
|
3099
|
+
def update!(**args)
|
|
3100
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
|
3101
|
+
@flow = args[:flow] if args.key?(:flow)
|
|
3102
|
+
end
|
|
3103
|
+
end
|
|
3104
|
+
|
|
3080
3105
|
#
|
|
3081
3106
|
class GoogleCloudDialogflowCxV3FlowTransition
|
|
3082
3107
|
include Google::Apis::Core::Hashable
|
|
@@ -4373,6 +4398,11 @@ module Google
|
|
|
4373
4398
|
# @return [String]
|
|
4374
4399
|
attr_accessor :display_name
|
|
4375
4400
|
|
|
4401
|
+
#
|
|
4402
|
+
# Corresponds to the JSON property `dtmfPattern`
|
|
4403
|
+
# @return [String]
|
|
4404
|
+
attr_accessor :dtmf_pattern
|
|
4405
|
+
|
|
4376
4406
|
#
|
|
4377
4407
|
# Corresponds to the JSON property `isFallback`
|
|
4378
4408
|
# @return [Boolean]
|
|
@@ -4412,6 +4442,7 @@ module Google
|
|
|
4412
4442
|
def update!(**args)
|
|
4413
4443
|
@description = args[:description] if args.key?(:description)
|
|
4414
4444
|
@display_name = args[:display_name] if args.key?(:display_name)
|
|
4445
|
+
@dtmf_pattern = args[:dtmf_pattern] if args.key?(:dtmf_pattern)
|
|
4415
4446
|
@is_fallback = args[:is_fallback] if args.key?(:is_fallback)
|
|
4416
4447
|
@labels = args[:labels] if args.key?(:labels)
|
|
4417
4448
|
@name = args[:name] if args.key?(:name)
|
|
@@ -5999,6 +6030,31 @@ module Google
|
|
|
5999
6030
|
end
|
|
6000
6031
|
end
|
|
6001
6032
|
|
|
6033
|
+
#
|
|
6034
|
+
class GoogleCloudDialogflowCxV3PlaybookTraceMetadata
|
|
6035
|
+
include Google::Apis::Core::Hashable
|
|
6036
|
+
|
|
6037
|
+
#
|
|
6038
|
+
# Corresponds to the JSON property `displayName`
|
|
6039
|
+
# @return [String]
|
|
6040
|
+
attr_accessor :display_name
|
|
6041
|
+
|
|
6042
|
+
#
|
|
6043
|
+
# Corresponds to the JSON property `playbook`
|
|
6044
|
+
# @return [String]
|
|
6045
|
+
attr_accessor :playbook
|
|
6046
|
+
|
|
6047
|
+
def initialize(**args)
|
|
6048
|
+
update!(**args)
|
|
6049
|
+
end
|
|
6050
|
+
|
|
6051
|
+
# Update properties of this object
|
|
6052
|
+
def update!(**args)
|
|
6053
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
|
6054
|
+
@playbook = args[:playbook] if args.key?(:playbook)
|
|
6055
|
+
end
|
|
6056
|
+
end
|
|
6057
|
+
|
|
6002
6058
|
#
|
|
6003
6059
|
class GoogleCloudDialogflowCxV3PlaybookTransition
|
|
6004
6060
|
include Google::Apis::Core::Hashable
|
|
@@ -6326,6 +6382,11 @@ module Google
|
|
|
6326
6382
|
# @return [String]
|
|
6327
6383
|
attr_accessor :text
|
|
6328
6384
|
|
|
6385
|
+
#
|
|
6386
|
+
# Corresponds to the JSON property `traceBlocks`
|
|
6387
|
+
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TraceBlock>]
|
|
6388
|
+
attr_accessor :trace_blocks
|
|
6389
|
+
|
|
6329
6390
|
#
|
|
6330
6391
|
# Corresponds to the JSON property `transcript`
|
|
6331
6392
|
# @return [String]
|
|
@@ -6372,6 +6433,7 @@ module Google
|
|
|
6372
6433
|
@response_messages = args[:response_messages] if args.key?(:response_messages)
|
|
6373
6434
|
@sentiment_analysis_result = args[:sentiment_analysis_result] if args.key?(:sentiment_analysis_result)
|
|
6374
6435
|
@text = args[:text] if args.key?(:text)
|
|
6436
|
+
@trace_blocks = args[:trace_blocks] if args.key?(:trace_blocks)
|
|
6375
6437
|
@transcript = args[:transcript] if args.key?(:transcript)
|
|
6376
6438
|
@trigger_event = args[:trigger_event] if args.key?(:trigger_event)
|
|
6377
6439
|
@trigger_intent = args[:trigger_intent] if args.key?(:trigger_intent)
|
|
@@ -7413,6 +7475,25 @@ module Google
|
|
|
7413
7475
|
end
|
|
7414
7476
|
end
|
|
7415
7477
|
|
|
7478
|
+
#
|
|
7479
|
+
class GoogleCloudDialogflowCxV3SpeechProcessingMetadata
|
|
7480
|
+
include Google::Apis::Core::Hashable
|
|
7481
|
+
|
|
7482
|
+
#
|
|
7483
|
+
# Corresponds to the JSON property `displayName`
|
|
7484
|
+
# @return [String]
|
|
7485
|
+
attr_accessor :display_name
|
|
7486
|
+
|
|
7487
|
+
def initialize(**args)
|
|
7488
|
+
update!(**args)
|
|
7489
|
+
end
|
|
7490
|
+
|
|
7491
|
+
# Update properties of this object
|
|
7492
|
+
def update!(**args)
|
|
7493
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
|
7494
|
+
end
|
|
7495
|
+
end
|
|
7496
|
+
|
|
7416
7497
|
#
|
|
7417
7498
|
class GoogleCloudDialogflowCxV3SpeechToTextSettings
|
|
7418
7499
|
include Google::Apis::Core::Hashable
|
|
@@ -8371,6 +8452,73 @@ module Google
|
|
|
8371
8452
|
end
|
|
8372
8453
|
end
|
|
8373
8454
|
|
|
8455
|
+
#
|
|
8456
|
+
class GoogleCloudDialogflowCxV3TraceBlock
|
|
8457
|
+
include Google::Apis::Core::Hashable
|
|
8458
|
+
|
|
8459
|
+
#
|
|
8460
|
+
# Corresponds to the JSON property `actions`
|
|
8461
|
+
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Action>]
|
|
8462
|
+
attr_accessor :actions
|
|
8463
|
+
|
|
8464
|
+
#
|
|
8465
|
+
# Corresponds to the JSON property `completeTime`
|
|
8466
|
+
# @return [String]
|
|
8467
|
+
attr_accessor :complete_time
|
|
8468
|
+
|
|
8469
|
+
#
|
|
8470
|
+
# Corresponds to the JSON property `endState`
|
|
8471
|
+
# @return [String]
|
|
8472
|
+
attr_accessor :end_state
|
|
8473
|
+
|
|
8474
|
+
#
|
|
8475
|
+
# Corresponds to the JSON property `flowTraceMetadata`
|
|
8476
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3FlowTraceMetadata]
|
|
8477
|
+
attr_accessor :flow_trace_metadata
|
|
8478
|
+
|
|
8479
|
+
#
|
|
8480
|
+
# Corresponds to the JSON property `inputParameters`
|
|
8481
|
+
# @return [Hash<String,Object>]
|
|
8482
|
+
attr_accessor :input_parameters
|
|
8483
|
+
|
|
8484
|
+
#
|
|
8485
|
+
# Corresponds to the JSON property `outputParameters`
|
|
8486
|
+
# @return [Hash<String,Object>]
|
|
8487
|
+
attr_accessor :output_parameters
|
|
8488
|
+
|
|
8489
|
+
#
|
|
8490
|
+
# Corresponds to the JSON property `playbookTraceMetadata`
|
|
8491
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3PlaybookTraceMetadata]
|
|
8492
|
+
attr_accessor :playbook_trace_metadata
|
|
8493
|
+
|
|
8494
|
+
#
|
|
8495
|
+
# Corresponds to the JSON property `speechProcessingMetadata`
|
|
8496
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SpeechProcessingMetadata]
|
|
8497
|
+
attr_accessor :speech_processing_metadata
|
|
8498
|
+
|
|
8499
|
+
#
|
|
8500
|
+
# Corresponds to the JSON property `startTime`
|
|
8501
|
+
# @return [String]
|
|
8502
|
+
attr_accessor :start_time
|
|
8503
|
+
|
|
8504
|
+
def initialize(**args)
|
|
8505
|
+
update!(**args)
|
|
8506
|
+
end
|
|
8507
|
+
|
|
8508
|
+
# Update properties of this object
|
|
8509
|
+
def update!(**args)
|
|
8510
|
+
@actions = args[:actions] if args.key?(:actions)
|
|
8511
|
+
@complete_time = args[:complete_time] if args.key?(:complete_time)
|
|
8512
|
+
@end_state = args[:end_state] if args.key?(:end_state)
|
|
8513
|
+
@flow_trace_metadata = args[:flow_trace_metadata] if args.key?(:flow_trace_metadata)
|
|
8514
|
+
@input_parameters = args[:input_parameters] if args.key?(:input_parameters)
|
|
8515
|
+
@output_parameters = args[:output_parameters] if args.key?(:output_parameters)
|
|
8516
|
+
@playbook_trace_metadata = args[:playbook_trace_metadata] if args.key?(:playbook_trace_metadata)
|
|
8517
|
+
@speech_processing_metadata = args[:speech_processing_metadata] if args.key?(:speech_processing_metadata)
|
|
8518
|
+
@start_time = args[:start_time] if args.key?(:start_time)
|
|
8519
|
+
end
|
|
8520
|
+
end
|
|
8521
|
+
|
|
8374
8522
|
#
|
|
8375
8523
|
class GoogleCloudDialogflowCxV3TrainFlowRequest
|
|
8376
8524
|
include Google::Apis::Core::Hashable
|
|
@@ -11078,6 +11226,11 @@ module Google
|
|
|
11078
11226
|
# @return [String]
|
|
11079
11227
|
attr_accessor :display_name
|
|
11080
11228
|
|
|
11229
|
+
#
|
|
11230
|
+
# Corresponds to the JSON property `dtmfPattern`
|
|
11231
|
+
# @return [String]
|
|
11232
|
+
attr_accessor :dtmf_pattern
|
|
11233
|
+
|
|
11081
11234
|
#
|
|
11082
11235
|
# Corresponds to the JSON property `isFallback`
|
|
11083
11236
|
# @return [Boolean]
|
|
@@ -11117,6 +11270,7 @@ module Google
|
|
|
11117
11270
|
def update!(**args)
|
|
11118
11271
|
@description = args[:description] if args.key?(:description)
|
|
11119
11272
|
@display_name = args[:display_name] if args.key?(:display_name)
|
|
11273
|
+
@dtmf_pattern = args[:dtmf_pattern] if args.key?(:dtmf_pattern)
|
|
11120
11274
|
@is_fallback = args[:is_fallback] if args.key?(:is_fallback)
|
|
11121
11275
|
@labels = args[:labels] if args.key?(:labels)
|
|
11122
11276
|
@name = args[:name] if args.key?(:name)
|
|
@@ -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.120.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 = "20260313"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -568,6 +568,12 @@ module Google
|
|
|
568
568
|
include Google::Apis::Core::JsonObjectSupport
|
|
569
569
|
end
|
|
570
570
|
|
|
571
|
+
class GoogleCloudDialogflowCxV3FlowTraceMetadata
|
|
572
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
573
|
+
|
|
574
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
575
|
+
end
|
|
576
|
+
|
|
571
577
|
class GoogleCloudDialogflowCxV3FlowTransition
|
|
572
578
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
573
579
|
|
|
@@ -1138,6 +1144,12 @@ module Google
|
|
|
1138
1144
|
include Google::Apis::Core::JsonObjectSupport
|
|
1139
1145
|
end
|
|
1140
1146
|
|
|
1147
|
+
class GoogleCloudDialogflowCxV3PlaybookTraceMetadata
|
|
1148
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1149
|
+
|
|
1150
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1151
|
+
end
|
|
1152
|
+
|
|
1141
1153
|
class GoogleCloudDialogflowCxV3PlaybookTransition
|
|
1142
1154
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1143
1155
|
|
|
@@ -1402,6 +1414,12 @@ module Google
|
|
|
1402
1414
|
include Google::Apis::Core::JsonObjectSupport
|
|
1403
1415
|
end
|
|
1404
1416
|
|
|
1417
|
+
class GoogleCloudDialogflowCxV3SpeechProcessingMetadata
|
|
1418
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1419
|
+
|
|
1420
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1421
|
+
end
|
|
1422
|
+
|
|
1405
1423
|
class GoogleCloudDialogflowCxV3SpeechToTextSettings
|
|
1406
1424
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1407
1425
|
|
|
@@ -1594,6 +1612,12 @@ module Google
|
|
|
1594
1612
|
include Google::Apis::Core::JsonObjectSupport
|
|
1595
1613
|
end
|
|
1596
1614
|
|
|
1615
|
+
class GoogleCloudDialogflowCxV3TraceBlock
|
|
1616
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1617
|
+
|
|
1618
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1619
|
+
end
|
|
1620
|
+
|
|
1597
1621
|
class GoogleCloudDialogflowCxV3TrainFlowRequest
|
|
1598
1622
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1599
1623
|
|
|
@@ -4892,6 +4916,14 @@ module Google
|
|
|
4892
4916
|
end
|
|
4893
4917
|
end
|
|
4894
4918
|
|
|
4919
|
+
class GoogleCloudDialogflowCxV3FlowTraceMetadata
|
|
4920
|
+
# @private
|
|
4921
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4922
|
+
property :display_name, as: 'displayName'
|
|
4923
|
+
property :flow, as: 'flow'
|
|
4924
|
+
end
|
|
4925
|
+
end
|
|
4926
|
+
|
|
4895
4927
|
class GoogleCloudDialogflowCxV3FlowTransition
|
|
4896
4928
|
# @private
|
|
4897
4929
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -5311,6 +5343,7 @@ module Google
|
|
|
5311
5343
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
5312
5344
|
property :description, as: 'description'
|
|
5313
5345
|
property :display_name, as: 'displayName'
|
|
5346
|
+
property :dtmf_pattern, as: 'dtmfPattern'
|
|
5314
5347
|
property :is_fallback, as: 'isFallback'
|
|
5315
5348
|
hash :labels, as: 'labels'
|
|
5316
5349
|
property :name, as: 'name'
|
|
@@ -5836,6 +5869,14 @@ module Google
|
|
|
5836
5869
|
end
|
|
5837
5870
|
end
|
|
5838
5871
|
|
|
5872
|
+
class GoogleCloudDialogflowCxV3PlaybookTraceMetadata
|
|
5873
|
+
# @private
|
|
5874
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
5875
|
+
property :display_name, as: 'displayName'
|
|
5876
|
+
property :playbook, as: 'playbook'
|
|
5877
|
+
end
|
|
5878
|
+
end
|
|
5879
|
+
|
|
5839
5880
|
class GoogleCloudDialogflowCxV3PlaybookTransition
|
|
5840
5881
|
# @private
|
|
5841
5882
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -5931,6 +5972,8 @@ module Google
|
|
|
5931
5972
|
property :sentiment_analysis_result, as: 'sentimentAnalysisResult', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SentimentAnalysisResult, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SentimentAnalysisResult::Representation
|
|
5932
5973
|
|
|
5933
5974
|
property :text, as: 'text'
|
|
5975
|
+
collection :trace_blocks, as: 'traceBlocks', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TraceBlock, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TraceBlock::Representation
|
|
5976
|
+
|
|
5934
5977
|
property :transcript, as: 'transcript'
|
|
5935
5978
|
property :trigger_event, as: 'triggerEvent'
|
|
5936
5979
|
property :trigger_intent, as: 'triggerIntent'
|
|
@@ -6288,6 +6331,13 @@ module Google
|
|
|
6288
6331
|
end
|
|
6289
6332
|
end
|
|
6290
6333
|
|
|
6334
|
+
class GoogleCloudDialogflowCxV3SpeechProcessingMetadata
|
|
6335
|
+
# @private
|
|
6336
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
6337
|
+
property :display_name, as: 'displayName'
|
|
6338
|
+
end
|
|
6339
|
+
end
|
|
6340
|
+
|
|
6291
6341
|
class GoogleCloudDialogflowCxV3SpeechToTextSettings
|
|
6292
6342
|
# @private
|
|
6293
6343
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -6596,6 +6646,25 @@ module Google
|
|
|
6596
6646
|
end
|
|
6597
6647
|
end
|
|
6598
6648
|
|
|
6649
|
+
class GoogleCloudDialogflowCxV3TraceBlock
|
|
6650
|
+
# @private
|
|
6651
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
6652
|
+
collection :actions, as: 'actions', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Action, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Action::Representation
|
|
6653
|
+
|
|
6654
|
+
property :complete_time, as: 'completeTime'
|
|
6655
|
+
property :end_state, as: 'endState'
|
|
6656
|
+
property :flow_trace_metadata, as: 'flowTraceMetadata', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3FlowTraceMetadata, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3FlowTraceMetadata::Representation
|
|
6657
|
+
|
|
6658
|
+
hash :input_parameters, as: 'inputParameters'
|
|
6659
|
+
hash :output_parameters, as: 'outputParameters'
|
|
6660
|
+
property :playbook_trace_metadata, as: 'playbookTraceMetadata', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3PlaybookTraceMetadata, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3PlaybookTraceMetadata::Representation
|
|
6661
|
+
|
|
6662
|
+
property :speech_processing_metadata, as: 'speechProcessingMetadata', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SpeechProcessingMetadata, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SpeechProcessingMetadata::Representation
|
|
6663
|
+
|
|
6664
|
+
property :start_time, as: 'startTime'
|
|
6665
|
+
end
|
|
6666
|
+
end
|
|
6667
|
+
|
|
6599
6668
|
class GoogleCloudDialogflowCxV3TrainFlowRequest
|
|
6600
6669
|
# @private
|
|
6601
6670
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -7458,6 +7527,7 @@ module Google
|
|
|
7458
7527
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
7459
7528
|
property :description, as: 'description'
|
|
7460
7529
|
property :display_name, as: 'displayName'
|
|
7530
|
+
property :dtmf_pattern, as: 'dtmfPattern'
|
|
7461
7531
|
property :is_fallback, as: 'isFallback'
|
|
7462
7532
|
hash :labels, as: 'labels'
|
|
7463
7533
|
property :name, as: 'name'
|
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.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_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.120.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:
|