google-cloud-dialogflow-cx-v3 0.7.0 → 0.7.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '0483c9d176c3d4b2aa0fc5e193ec154fc8c179d28fe6cf51cda1abbaa9e6f3f4'
4
- data.tar.gz: 6cc7a3da53a3f769329d2ee0af0c1b208db6adcf7479b80e7abcc554fbc68da8
3
+ metadata.gz: 1d899ce91b1131abcce60fe014b8dcd16ad876469c2128d6d6e5de1137a5e33a
4
+ data.tar.gz: dcc0ad0ccfed647b51640b8d8107f74d2b6df6f41c137feeb924017ca8871af9
5
5
  SHA512:
6
- metadata.gz: 83b4de9aeb4ed206f77d1f543d2f5ff6a63806c8b492cdea03eeba46809c844b58a0540d53ab46df79e5aa476778920c83d0a2b10a4d3ddaa100dcd5d733a71a
7
- data.tar.gz: c600ebbf88f556e4e968c464eb9079eed0ed20c45b0dd4be2963497018c90ff476be33e046ed6b7d9c25a6ad900febb33f0165a17ca5684c651e57b67fc8255d
6
+ metadata.gz: 743ac0619fc9fa4153355f4cf0fa461a649db198d178cdd0b8e911158e44a7c17e34accb4ad5bc739b3a166b9213c1894469c680cf0e46ad61109056b84abc1c
7
+ data.tar.gz: b26e523383692f59c08407b6e6d86aa415c8314cdc57203e896c715eefb34040e2a9ed210c739bede9701ff17e0d8efea8558cdd400396fbea948e7b8da6fcd4
@@ -66,7 +66,7 @@ module Google
66
66
  # Calculates the test coverage for an agent.
67
67
  rpc :CalculateCoverage, ::Google::Cloud::Dialogflow::CX::V3::CalculateCoverageRequest, ::Google::Cloud::Dialogflow::CX::V3::CalculateCoverageResponse
68
68
  # Imports the test cases from a Cloud Storage bucket or a local file. It
69
- # always creates new test cases and won't overwite any existing ones. The
69
+ # always creates new test cases and won't overwrite any existing ones. The
70
70
  # provided ID in the imported test case is neglected.
71
71
  #
72
72
  # This method is a [long-running
@@ -921,7 +921,7 @@ module Google
921
921
 
922
922
  ##
923
923
  # Imports the test cases from a Cloud Storage bucket or a local file. It
924
- # always creates new test cases and won't overwite any existing ones. The
924
+ # always creates new test cases and won't overwrite any existing ones. The
925
925
  # provided ID in the imported test case is neglected.
926
926
  #
927
927
  # This method is a [long-running
@@ -22,7 +22,7 @@ module Google
22
22
  module Dialogflow
23
23
  module CX
24
24
  module V3
25
- VERSION = "0.7.0"
25
+ VERSION = "0.7.1"
26
26
  end
27
27
  end
28
28
  end
@@ -108,7 +108,7 @@ module Google
108
108
  #
109
109
  # TransitionRoutes are evalauted in the following order:
110
110
  #
111
- # * TransitionRoutes with intent specified..
111
+ # * TransitionRoutes with intent specified.
112
112
  # * TransitionRoutes with only condition specified.
113
113
  #
114
114
  # TransitionRoutes with intent specified are inherited by pages in the flow.
@@ -54,7 +54,11 @@ module Google
54
54
  # that have slow webhooks.
55
55
  # @!attribute [rw] tag
56
56
  # @return [::String]
57
- # The tag used by the webhook to identify which fulfillment is being called.
57
+ # The value of this field will be populated in the {::Google::Cloud::Dialogflow::CX::V3::WebhookRequest WebhookRequest}
58
+ # `fulfillmentInfo.tag` field by Dialogflow when the associated webhook is
59
+ # called.
60
+ # The tag is typically used by the webhook service to identify which
61
+ # fulfillment is being called, but it could be used for other purposes.
58
62
  # This field is required if `webhook` is specified.
59
63
  # @!attribute [rw] set_parameter_actions
60
64
  # @return [::Array<::Google::Cloud::Dialogflow::CX::V3::Fulfillment::SetParameterAction>]
@@ -47,7 +47,7 @@ module Google
47
47
  # ID>/flows/<Flow ID>/pages/<Page ID>`.
48
48
  # @!attribute [rw] display_name
49
49
  # @return [::String]
50
- # Required. The human-readable name of the page, unique within the agent.
50
+ # Required. The human-readable name of the page, unique within the flow.
51
51
  # @!attribute [rw] entry_fulfillment
52
52
  # @return [::Google::Cloud::Dialogflow::CX::V3::Fulfillment]
53
53
  # The fulfillment to call when the session is entering the page.
@@ -34,7 +34,7 @@ module Google
34
34
  # @!attribute [rw] display_name
35
35
  # @return [::String]
36
36
  # Required. The human-readable name of the transition route group, unique within
37
- # the {::Google::Cloud::Dialogflow::CX::V3::Agent Agent}. The display name can be no longer than 30 characters.
37
+ # the flow. The display name can be no longer than 30 characters.
38
38
  # @!attribute [rw] transition_routes
39
39
  # @return [::Array<::Google::Cloud::Dialogflow::CX::V3::TransitionRoute>]
40
40
  # Transition routes associated with the {::Google::Cloud::Dialogflow::CX::V3::TransitionRouteGroup TransitionRouteGroup}.
@@ -267,8 +267,11 @@ module Google
267
267
  # Represents fulfillment information communicated to the webhook.
268
268
  # @!attribute [rw] tag
269
269
  # @return [::String]
270
- # Always present. The tag used to identify which fulfillment is being
271
- # called.
270
+ # Always present.
271
+ # The value of the {::Google::Cloud::Dialogflow::CX::V3::Fulfillment#tag Fulfillment.tag} field will be populated in this
272
+ # field by Dialogflow when the associated webhook is called.
273
+ # The tag is typically used by the webhook service to identify which
274
+ # fulfillment is being called, but it could be used for other purposes.
272
275
  class FulfillmentInfo
273
276
  include ::Google::Protobuf::MessageExts
274
277
  extend ::Google::Protobuf::MessageExts::ClassMethods
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-dialogflow-cx-v3
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.7.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-03-30 00:00:00.000000000 Z
11
+ date: 2022-04-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common