google-apis-dialogflow_v2beta1 0.12.0 → 0.13.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: 674228920ace182ce1fa4d22fdffb0a1c116827765a7930860b2cf67bea4d983
|
4
|
+
data.tar.gz: c68ef56f06d63e183434e3600407c3af991c2b4b8a74f7b8dfdcd0793373d67a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 98fa621e6f12c4a6f574279d729256589cd4fe4de36f99972b42c234259b55c44917672cf5b38ed5310a4eaf90a9132e8e859ecd52b6e7c71ab3abb0e1ab3ec1
|
7
|
+
data.tar.gz: 73fb588c882376671770e8ded487544fc0186bec4e87a4c8e5ed5503b8432948154380eaa879e5441d9b2ddb67872c86400b414dc42ba47a1c09d97755203220
|
data/CHANGELOG.md
CHANGED
@@ -92,6 +92,45 @@ module Google
|
|
92
92
|
end
|
93
93
|
end
|
94
94
|
|
95
|
+
# Represents a result from running a test case in an agent environment.
|
96
|
+
class GoogleCloudDialogflowCxV3ContinuousTestResult
|
97
|
+
include Google::Apis::Core::Hashable
|
98
|
+
|
99
|
+
# The resource name for the continuous test result. Format: `projects//locations/
|
100
|
+
# /agents//environments//continuousTestResults/`.
|
101
|
+
# Corresponds to the JSON property `name`
|
102
|
+
# @return [String]
|
103
|
+
attr_accessor :name
|
104
|
+
|
105
|
+
# The result of this continuous test run, i.e. whether all the tests in this
|
106
|
+
# continuous test run pass or not.
|
107
|
+
# Corresponds to the JSON property `result`
|
108
|
+
# @return [String]
|
109
|
+
attr_accessor :result
|
110
|
+
|
111
|
+
# Time when the continuous testing run starts.
|
112
|
+
# Corresponds to the JSON property `runTime`
|
113
|
+
# @return [String]
|
114
|
+
attr_accessor :run_time
|
115
|
+
|
116
|
+
# A list of individual test case results names in this continuous test run.
|
117
|
+
# Corresponds to the JSON property `testCaseResults`
|
118
|
+
# @return [Array<String>]
|
119
|
+
attr_accessor :test_case_results
|
120
|
+
|
121
|
+
def initialize(**args)
|
122
|
+
update!(**args)
|
123
|
+
end
|
124
|
+
|
125
|
+
# Update properties of this object
|
126
|
+
def update!(**args)
|
127
|
+
@name = args[:name] if args.key?(:name)
|
128
|
+
@result = args[:result] if args.key?(:result)
|
129
|
+
@run_time = args[:run_time] if args.key?(:run_time)
|
130
|
+
@test_case_results = args[:test_case_results] if args.key?(:test_case_results)
|
131
|
+
end
|
132
|
+
end
|
133
|
+
|
95
134
|
# One interaction between a human and virtual agent. The human provides some
|
96
135
|
# input and the virtual agent provides a response.
|
97
136
|
class GoogleCloudDialogflowCxV3ConversationTurn
|
@@ -1770,6 +1809,45 @@ module Google
|
|
1770
1809
|
end
|
1771
1810
|
end
|
1772
1811
|
|
1812
|
+
# Metadata returned for the Environments.RunContinuousTest long running
|
1813
|
+
# operation.
|
1814
|
+
class GoogleCloudDialogflowCxV3RunContinuousTestMetadata
|
1815
|
+
include Google::Apis::Core::Hashable
|
1816
|
+
|
1817
|
+
# The test errors.
|
1818
|
+
# Corresponds to the JSON property `errors`
|
1819
|
+
# @return [Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3TestError>]
|
1820
|
+
attr_accessor :errors
|
1821
|
+
|
1822
|
+
def initialize(**args)
|
1823
|
+
update!(**args)
|
1824
|
+
end
|
1825
|
+
|
1826
|
+
# Update properties of this object
|
1827
|
+
def update!(**args)
|
1828
|
+
@errors = args[:errors] if args.key?(:errors)
|
1829
|
+
end
|
1830
|
+
end
|
1831
|
+
|
1832
|
+
# The response message for Environments.RunContinuousTest.
|
1833
|
+
class GoogleCloudDialogflowCxV3RunContinuousTestResponse
|
1834
|
+
include Google::Apis::Core::Hashable
|
1835
|
+
|
1836
|
+
# Represents a result from running a test case in an agent environment.
|
1837
|
+
# Corresponds to the JSON property `continuousTestResult`
|
1838
|
+
# @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3ContinuousTestResult]
|
1839
|
+
attr_accessor :continuous_test_result
|
1840
|
+
|
1841
|
+
def initialize(**args)
|
1842
|
+
update!(**args)
|
1843
|
+
end
|
1844
|
+
|
1845
|
+
# Update properties of this object
|
1846
|
+
def update!(**args)
|
1847
|
+
@continuous_test_result = args[:continuous_test_result] if args.key?(:continuous_test_result)
|
1848
|
+
end
|
1849
|
+
end
|
1850
|
+
|
1773
1851
|
# Metadata returned for the TestCases.RunTestCase long running operation.
|
1774
1852
|
class GoogleCloudDialogflowCxV3RunTestCaseMetadata
|
1775
1853
|
include Google::Apis::Core::Hashable
|
@@ -2532,6 +2610,45 @@ module Google
|
|
2532
2610
|
end
|
2533
2611
|
end
|
2534
2612
|
|
2613
|
+
# Represents a result from running a test case in an agent environment.
|
2614
|
+
class GoogleCloudDialogflowCxV3beta1ContinuousTestResult
|
2615
|
+
include Google::Apis::Core::Hashable
|
2616
|
+
|
2617
|
+
# The resource name for the continuous test result. Format: `projects//locations/
|
2618
|
+
# /agents//environments//continuousTestResults/`.
|
2619
|
+
# Corresponds to the JSON property `name`
|
2620
|
+
# @return [String]
|
2621
|
+
attr_accessor :name
|
2622
|
+
|
2623
|
+
# The result of this continuous test run, i.e. whether all the tests in this
|
2624
|
+
# continuous test run pass or not.
|
2625
|
+
# Corresponds to the JSON property `result`
|
2626
|
+
# @return [String]
|
2627
|
+
attr_accessor :result
|
2628
|
+
|
2629
|
+
# Time when the continuous testing run starts.
|
2630
|
+
# Corresponds to the JSON property `runTime`
|
2631
|
+
# @return [String]
|
2632
|
+
attr_accessor :run_time
|
2633
|
+
|
2634
|
+
# A list of individual test case results names in this continuous test run.
|
2635
|
+
# Corresponds to the JSON property `testCaseResults`
|
2636
|
+
# @return [Array<String>]
|
2637
|
+
attr_accessor :test_case_results
|
2638
|
+
|
2639
|
+
def initialize(**args)
|
2640
|
+
update!(**args)
|
2641
|
+
end
|
2642
|
+
|
2643
|
+
# Update properties of this object
|
2644
|
+
def update!(**args)
|
2645
|
+
@name = args[:name] if args.key?(:name)
|
2646
|
+
@result = args[:result] if args.key?(:result)
|
2647
|
+
@run_time = args[:run_time] if args.key?(:run_time)
|
2648
|
+
@test_case_results = args[:test_case_results] if args.key?(:test_case_results)
|
2649
|
+
end
|
2650
|
+
end
|
2651
|
+
|
2535
2652
|
# One interaction between a human and virtual agent. The human provides some
|
2536
2653
|
# input and the virtual agent provides a response.
|
2537
2654
|
class GoogleCloudDialogflowCxV3beta1ConversationTurn
|
@@ -4210,6 +4327,45 @@ module Google
|
|
4210
4327
|
end
|
4211
4328
|
end
|
4212
4329
|
|
4330
|
+
# Metadata returned for the Environments.RunContinuousTest long running
|
4331
|
+
# operation.
|
4332
|
+
class GoogleCloudDialogflowCxV3beta1RunContinuousTestMetadata
|
4333
|
+
include Google::Apis::Core::Hashable
|
4334
|
+
|
4335
|
+
# The test errors.
|
4336
|
+
# Corresponds to the JSON property `errors`
|
4337
|
+
# @return [Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1TestError>]
|
4338
|
+
attr_accessor :errors
|
4339
|
+
|
4340
|
+
def initialize(**args)
|
4341
|
+
update!(**args)
|
4342
|
+
end
|
4343
|
+
|
4344
|
+
# Update properties of this object
|
4345
|
+
def update!(**args)
|
4346
|
+
@errors = args[:errors] if args.key?(:errors)
|
4347
|
+
end
|
4348
|
+
end
|
4349
|
+
|
4350
|
+
# The response message for Environments.RunContinuousTest.
|
4351
|
+
class GoogleCloudDialogflowCxV3beta1RunContinuousTestResponse
|
4352
|
+
include Google::Apis::Core::Hashable
|
4353
|
+
|
4354
|
+
# Represents a result from running a test case in an agent environment.
|
4355
|
+
# Corresponds to the JSON property `continuousTestResult`
|
4356
|
+
# @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1ContinuousTestResult]
|
4357
|
+
attr_accessor :continuous_test_result
|
4358
|
+
|
4359
|
+
def initialize(**args)
|
4360
|
+
update!(**args)
|
4361
|
+
end
|
4362
|
+
|
4363
|
+
# Update properties of this object
|
4364
|
+
def update!(**args)
|
4365
|
+
@continuous_test_result = args[:continuous_test_result] if args.key?(:continuous_test_result)
|
4366
|
+
end
|
4367
|
+
end
|
4368
|
+
|
4213
4369
|
# Metadata returned for the TestCases.RunTestCase long running operation.
|
4214
4370
|
class GoogleCloudDialogflowCxV3beta1RunTestCaseMetadata
|
4215
4371
|
include Google::Apis::Core::Hashable
|
@@ -6799,6 +6955,13 @@ module Google
|
|
6799
6955
|
attr_accessor :all_required_params_present
|
6800
6956
|
alias_method :all_required_params_present?, :all_required_params_present
|
6801
6957
|
|
6958
|
+
# Indicates whether the conversational query triggers a cancellation for slot
|
6959
|
+
# filling.
|
6960
|
+
# Corresponds to the JSON property `cancelsSlotFilling`
|
6961
|
+
# @return [Boolean]
|
6962
|
+
attr_accessor :cancels_slot_filling
|
6963
|
+
alias_method :cancels_slot_filling?, :cancels_slot_filling
|
6964
|
+
|
6802
6965
|
# Free-form diagnostic information for the associated detect intent request. The
|
6803
6966
|
# fields of this data can change without notice, so you should not write code
|
6804
6967
|
# that depends on its structure. The data may contain: - webhook call latency -
|
@@ -6919,6 +7082,7 @@ module Google
|
|
6919
7082
|
def update!(**args)
|
6920
7083
|
@action = args[:action] if args.key?(:action)
|
6921
7084
|
@all_required_params_present = args[:all_required_params_present] if args.key?(:all_required_params_present)
|
7085
|
+
@cancels_slot_filling = args[:cancels_slot_filling] if args.key?(:cancels_slot_filling)
|
6922
7086
|
@diagnostic_info = args[:diagnostic_info] if args.key?(:diagnostic_info)
|
6923
7087
|
@fulfillment_messages = args[:fulfillment_messages] if args.key?(:fulfillment_messages)
|
6924
7088
|
@fulfillment_text = args[:fulfillment_text] if args.key?(:fulfillment_text)
|
@@ -12838,6 +13002,13 @@ module Google
|
|
12838
13002
|
attr_accessor :all_required_params_present
|
12839
13003
|
alias_method :all_required_params_present?, :all_required_params_present
|
12840
13004
|
|
13005
|
+
# Indicates whether the conversational query triggers a cancellation for slot
|
13006
|
+
# filling.
|
13007
|
+
# Corresponds to the JSON property `cancelsSlotFilling`
|
13008
|
+
# @return [Boolean]
|
13009
|
+
attr_accessor :cancels_slot_filling
|
13010
|
+
alias_method :cancels_slot_filling?, :cancels_slot_filling
|
13011
|
+
|
12841
13012
|
# Free-form diagnostic information for the associated detect intent request. The
|
12842
13013
|
# fields of this data can change without notice, so you should not write code
|
12843
13014
|
# that depends on its structure. The data may contain: - webhook call latency -
|
@@ -12963,6 +13134,7 @@ module Google
|
|
12963
13134
|
def update!(**args)
|
12964
13135
|
@action = args[:action] if args.key?(:action)
|
12965
13136
|
@all_required_params_present = args[:all_required_params_present] if args.key?(:all_required_params_present)
|
13137
|
+
@cancels_slot_filling = args[:cancels_slot_filling] if args.key?(:cancels_slot_filling)
|
12966
13138
|
@diagnostic_info = args[:diagnostic_info] if args.key?(:diagnostic_info)
|
12967
13139
|
@fulfillment_messages = args[:fulfillment_messages] if args.key?(:fulfillment_messages)
|
12968
13140
|
@fulfillment_text = args[:fulfillment_text] if args.key?(:fulfillment_text)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DialogflowV2beta1
|
18
18
|
# Version of the google-apis-dialogflow_v2beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.13.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.2.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210524"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -40,6 +40,12 @@ module Google
|
|
40
40
|
include Google::Apis::Core::JsonObjectSupport
|
41
41
|
end
|
42
42
|
|
43
|
+
class GoogleCloudDialogflowCxV3ContinuousTestResult
|
44
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
45
|
+
|
46
|
+
include Google::Apis::Core::JsonObjectSupport
|
47
|
+
end
|
48
|
+
|
43
49
|
class GoogleCloudDialogflowCxV3ConversationTurn
|
44
50
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
45
51
|
|
@@ -328,6 +334,18 @@ module Google
|
|
328
334
|
include Google::Apis::Core::JsonObjectSupport
|
329
335
|
end
|
330
336
|
|
337
|
+
class GoogleCloudDialogflowCxV3RunContinuousTestMetadata
|
338
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
339
|
+
|
340
|
+
include Google::Apis::Core::JsonObjectSupport
|
341
|
+
end
|
342
|
+
|
343
|
+
class GoogleCloudDialogflowCxV3RunContinuousTestResponse
|
344
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
345
|
+
|
346
|
+
include Google::Apis::Core::JsonObjectSupport
|
347
|
+
end
|
348
|
+
|
331
349
|
class GoogleCloudDialogflowCxV3RunTestCaseMetadata
|
332
350
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
333
351
|
|
@@ -460,6 +478,12 @@ module Google
|
|
460
478
|
include Google::Apis::Core::JsonObjectSupport
|
461
479
|
end
|
462
480
|
|
481
|
+
class GoogleCloudDialogflowCxV3beta1ContinuousTestResult
|
482
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
483
|
+
|
484
|
+
include Google::Apis::Core::JsonObjectSupport
|
485
|
+
end
|
486
|
+
|
463
487
|
class GoogleCloudDialogflowCxV3beta1ConversationTurn
|
464
488
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
465
489
|
|
@@ -748,6 +772,18 @@ module Google
|
|
748
772
|
include Google::Apis::Core::JsonObjectSupport
|
749
773
|
end
|
750
774
|
|
775
|
+
class GoogleCloudDialogflowCxV3beta1RunContinuousTestMetadata
|
776
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
777
|
+
|
778
|
+
include Google::Apis::Core::JsonObjectSupport
|
779
|
+
end
|
780
|
+
|
781
|
+
class GoogleCloudDialogflowCxV3beta1RunContinuousTestResponse
|
782
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
783
|
+
|
784
|
+
include Google::Apis::Core::JsonObjectSupport
|
785
|
+
end
|
786
|
+
|
751
787
|
class GoogleCloudDialogflowCxV3beta1RunTestCaseMetadata
|
752
788
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
753
789
|
|
@@ -2423,6 +2459,16 @@ module Google
|
|
2423
2459
|
end
|
2424
2460
|
end
|
2425
2461
|
|
2462
|
+
class GoogleCloudDialogflowCxV3ContinuousTestResult
|
2463
|
+
# @private
|
2464
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2465
|
+
property :name, as: 'name'
|
2466
|
+
property :result, as: 'result'
|
2467
|
+
property :run_time, as: 'runTime'
|
2468
|
+
collection :test_case_results, as: 'testCaseResults'
|
2469
|
+
end
|
2470
|
+
end
|
2471
|
+
|
2426
2472
|
class GoogleCloudDialogflowCxV3ConversationTurn
|
2427
2473
|
# @private
|
2428
2474
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2884,6 +2930,22 @@ module Google
|
|
2884
2930
|
end
|
2885
2931
|
end
|
2886
2932
|
|
2933
|
+
class GoogleCloudDialogflowCxV3RunContinuousTestMetadata
|
2934
|
+
# @private
|
2935
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2936
|
+
collection :errors, as: 'errors', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3TestError, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3TestError::Representation
|
2937
|
+
|
2938
|
+
end
|
2939
|
+
end
|
2940
|
+
|
2941
|
+
class GoogleCloudDialogflowCxV3RunContinuousTestResponse
|
2942
|
+
# @private
|
2943
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2944
|
+
property :continuous_test_result, as: 'continuousTestResult', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3ContinuousTestResult, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3ContinuousTestResult::Representation
|
2945
|
+
|
2946
|
+
end
|
2947
|
+
end
|
2948
|
+
|
2887
2949
|
class GoogleCloudDialogflowCxV3RunTestCaseMetadata
|
2888
2950
|
# @private
|
2889
2951
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3107,6 +3169,16 @@ module Google
|
|
3107
3169
|
end
|
3108
3170
|
end
|
3109
3171
|
|
3172
|
+
class GoogleCloudDialogflowCxV3beta1ContinuousTestResult
|
3173
|
+
# @private
|
3174
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3175
|
+
property :name, as: 'name'
|
3176
|
+
property :result, as: 'result'
|
3177
|
+
property :run_time, as: 'runTime'
|
3178
|
+
collection :test_case_results, as: 'testCaseResults'
|
3179
|
+
end
|
3180
|
+
end
|
3181
|
+
|
3110
3182
|
class GoogleCloudDialogflowCxV3beta1ConversationTurn
|
3111
3183
|
# @private
|
3112
3184
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3568,6 +3640,22 @@ module Google
|
|
3568
3640
|
end
|
3569
3641
|
end
|
3570
3642
|
|
3643
|
+
class GoogleCloudDialogflowCxV3beta1RunContinuousTestMetadata
|
3644
|
+
# @private
|
3645
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3646
|
+
collection :errors, as: 'errors', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1TestError, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1TestError::Representation
|
3647
|
+
|
3648
|
+
end
|
3649
|
+
end
|
3650
|
+
|
3651
|
+
class GoogleCloudDialogflowCxV3beta1RunContinuousTestResponse
|
3652
|
+
# @private
|
3653
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3654
|
+
property :continuous_test_result, as: 'continuousTestResult', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1ContinuousTestResult, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1ContinuousTestResult::Representation
|
3655
|
+
|
3656
|
+
end
|
3657
|
+
end
|
3658
|
+
|
3571
3659
|
class GoogleCloudDialogflowCxV3beta1RunTestCaseMetadata
|
3572
3660
|
# @private
|
3573
3661
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -4289,6 +4377,7 @@ module Google
|
|
4289
4377
|
class Representation < Google::Apis::Core::JsonRepresentation
|
4290
4378
|
property :action, as: 'action'
|
4291
4379
|
property :all_required_params_present, as: 'allRequiredParamsPresent'
|
4380
|
+
property :cancels_slot_filling, as: 'cancelsSlotFilling'
|
4292
4381
|
hash :diagnostic_info, as: 'diagnosticInfo'
|
4293
4382
|
collection :fulfillment_messages, as: 'fulfillmentMessages', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2IntentMessage, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2IntentMessage::Representation
|
4294
4383
|
|
@@ -5930,6 +6019,7 @@ module Google
|
|
5930
6019
|
class Representation < Google::Apis::Core::JsonRepresentation
|
5931
6020
|
property :action, as: 'action'
|
5932
6021
|
property :all_required_params_present, as: 'allRequiredParamsPresent'
|
6022
|
+
property :cancels_slot_filling, as: 'cancelsSlotFilling'
|
5933
6023
|
hash :diagnostic_info, as: 'diagnosticInfo'
|
5934
6024
|
collection :fulfillment_messages, as: 'fulfillmentMessages', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1IntentMessage, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1IntentMessage::Representation
|
5935
6025
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-dialogflow_v2beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.13.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-05-
|
11
|
+
date: 2021-05-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -52,7 +52,7 @@ licenses:
|
|
52
52
|
metadata:
|
53
53
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
54
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-dialogflow_v2beta1/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2beta1/v0.
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2beta1/v0.13.0
|
56
56
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-dialogflow_v2beta1
|
57
57
|
post_install_message:
|
58
58
|
rdoc_options: []
|