google-apis-dialogflow_v3 0.54.0 → 0.55.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: f885d8eccb8f1323490288f64937a9a8f5c279cf8ef6604a4e0452734cc76e34
4
- data.tar.gz: b4a1c1c9cb5fa2bda09f0821a7c7f1ab9accff27ad5bfd12c0241785d6115425
3
+ metadata.gz: 3878d09a6ef284944c06720f6648ab9e7efad4264529270104ab786094dfa9ad
4
+ data.tar.gz: c93a0318660832b58c1e31ca0db4213eb35e2da37b548d424a7e0a361d7861fe
5
5
  SHA512:
6
- metadata.gz: ca939cadb1302db1aa66e593f95fcf24c0057db4cf00cb0cc7f9faad0564b0eef14456b69221bb867956a5512fe62d3ff0e7e466f582a1fe06f5e0d45784602f
7
- data.tar.gz: 36f21ff5f60d7242c601069ec31d607370bbfa15f5a511a02bdd213448634a2ab73819345f8d3f70337d73e23d29d626f1834cd4dc3cffe7b958dd93d6e2188c
6
+ metadata.gz: 0f4f086bb071fc5e78f06a6477cc0c062bb629a129063a7cddf18a3a4050ee53d15af2786465918274c611701522ee256f3e08f0768759ec1bf9dd9eb6ad24e8
7
+ data.tar.gz: a493f0f03fe8647018f255c6d81f4b1ca921f5b989541f335d0f81d5b5d1838e2d7ece8ae1d4e1f1b4a97e39e6528480ab23c7b6b438531c7f0f4c4d5785281c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dialogflow_v3
2
2
 
3
+ ### v0.55.0 (2023-04-02)
4
+
5
+ * Regenerated from discovery document revision 20230331
6
+
3
7
  ### v0.54.0 (2023-03-26)
4
8
 
5
9
  * Regenerated from discovery document revision 20230316
@@ -700,7 +700,7 @@ module Google
700
700
  # An intent represents a user's intent to interact with a conversational agent.
701
701
  # You can provide information for the Dialogflow API to use to match user input
702
702
  # to an intent by adding training phrases (i.e., examples of user input) to your
703
- # intent.
703
+ # intent. Next ID: 15
704
704
  # Corresponds to the JSON property `triggeredIntent`
705
705
  # @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Intent]
706
706
  attr_accessor :triggered_intent
@@ -2697,7 +2697,7 @@ module Google
2697
2697
  # An intent represents a user's intent to interact with a conversational agent.
2698
2698
  # You can provide information for the Dialogflow API to use to match user input
2699
2699
  # to an intent by adding training phrases (i.e., examples of user input) to your
2700
- # intent.
2700
+ # intent. Next ID: 15
2701
2701
  class GoogleCloudDialogflowCxV3Intent
2702
2702
  include Google::Apis::Core::Hashable
2703
2703
 
@@ -3499,7 +3499,7 @@ module Google
3499
3499
  # An intent represents a user's intent to interact with a conversational agent.
3500
3500
  # You can provide information for the Dialogflow API to use to match user input
3501
3501
  # to an intent by adding training phrases (i.e., examples of user input) to your
3502
- # intent.
3502
+ # intent. Next ID: 15
3503
3503
  # Corresponds to the JSON property `intent`
3504
3504
  # @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Intent]
3505
3505
  attr_accessor :intent
@@ -4141,7 +4141,7 @@ module Google
4141
4141
  # An intent represents a user's intent to interact with a conversational agent.
4142
4142
  # You can provide information for the Dialogflow API to use to match user input
4143
4143
  # to an intent by adding training phrases (i.e., examples of user input) to your
4144
- # intent.
4144
+ # intent. Next ID: 15
4145
4145
  # Corresponds to the JSON property `intent`
4146
4146
  # @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Intent]
4147
4147
  attr_accessor :intent
@@ -6340,6 +6340,11 @@ module Google
6340
6340
  # @return [String]
6341
6341
  attr_accessor :detect_intent_response_id
6342
6342
 
6343
+ # If DTMF was provided as input, this field will contain the DTMF digits.
6344
+ # Corresponds to the JSON property `dtmfDigits`
6345
+ # @return [String]
6346
+ attr_accessor :dtmf_digits
6347
+
6343
6348
  # Represents fulfillment information communicated to the webhook.
6344
6349
  # Corresponds to the JSON property `fulfillmentInfo`
6345
6350
  # @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3WebhookRequestFulfillmentInfo]
@@ -6412,6 +6417,7 @@ module Google
6412
6417
  # Update properties of this object
6413
6418
  def update!(**args)
6414
6419
  @detect_intent_response_id = args[:detect_intent_response_id] if args.key?(:detect_intent_response_id)
6420
+ @dtmf_digits = args[:dtmf_digits] if args.key?(:dtmf_digits)
6415
6421
  @fulfillment_info = args[:fulfillment_info] if args.key?(:fulfillment_info)
6416
6422
  @intent_info = args[:intent_info] if args.key?(:intent_info)
6417
6423
  @language_code = args[:language_code] if args.key?(:language_code)
@@ -8035,6 +8041,7 @@ module Google
8035
8041
  end
8036
8042
 
8037
8043
  # Represents an example that the agent is trained on to identify the intent.
8044
+ # Next ID: 15
8038
8045
  class GoogleCloudDialogflowCxV3beta1IntentTrainingPhrase
8039
8046
  include Google::Apis::Core::Hashable
8040
8047
 
@@ -9368,6 +9375,11 @@ module Google
9368
9375
  # @return [String]
9369
9376
  attr_accessor :detect_intent_response_id
9370
9377
 
9378
+ # If DTMF was provided as input, this field will contain the DTMF digits.
9379
+ # Corresponds to the JSON property `dtmfDigits`
9380
+ # @return [String]
9381
+ attr_accessor :dtmf_digits
9382
+
9371
9383
  # Represents fulfillment information communicated to the webhook.
9372
9384
  # Corresponds to the JSON property `fulfillmentInfo`
9373
9385
  # @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1WebhookRequestFulfillmentInfo]
@@ -9440,6 +9452,7 @@ module Google
9440
9452
  # Update properties of this object
9441
9453
  def update!(**args)
9442
9454
  @detect_intent_response_id = args[:detect_intent_response_id] if args.key?(:detect_intent_response_id)
9455
+ @dtmf_digits = args[:dtmf_digits] if args.key?(:dtmf_digits)
9443
9456
  @fulfillment_info = args[:fulfillment_info] if args.key?(:fulfillment_info)
9444
9457
  @intent_info = args[:intent_info] if args.key?(:intent_info)
9445
9458
  @language_code = args[:language_code] if args.key?(:language_code)
@@ -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.54.0"
19
+ GEM_VERSION = "0.55.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230316"
25
+ REVISION = "20230331"
26
26
  end
27
27
  end
28
28
  end
@@ -4375,6 +4375,7 @@ module Google
4375
4375
  # @private
4376
4376
  class Representation < Google::Apis::Core::JsonRepresentation
4377
4377
  property :detect_intent_response_id, as: 'detectIntentResponseId'
4378
+ property :dtmf_digits, as: 'dtmfDigits'
4378
4379
  property :fulfillment_info, as: 'fulfillmentInfo', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3WebhookRequestFulfillmentInfo, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3WebhookRequestFulfillmentInfo::Representation
4379
4380
 
4380
4381
  property :intent_info, as: 'intentInfo', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3WebhookRequestIntentInfo, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3WebhookRequestIntentInfo::Representation
@@ -5212,6 +5213,7 @@ module Google
5212
5213
  # @private
5213
5214
  class Representation < Google::Apis::Core::JsonRepresentation
5214
5215
  property :detect_intent_response_id, as: 'detectIntentResponseId'
5216
+ property :dtmf_digits, as: 'dtmfDigits'
5215
5217
  property :fulfillment_info, as: 'fulfillmentInfo', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1WebhookRequestFulfillmentInfo, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1WebhookRequestFulfillmentInfo::Representation
5216
5218
 
5217
5219
  property :intent_info, as: 'intentInfo', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1WebhookRequestIntentInfo, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1WebhookRequestIntentInfo::Representation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dialogflow_v3
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.54.0
4
+ version: 0.55.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: 2023-03-26 00:00:00.000000000 Z
11
+ date: 2023-04-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.54.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.55.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3
63
63
  post_install_message:
64
64
  rdoc_options: []