google-apis-dialogflow_v2 0.96.0 → 0.97.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5dcbbbeb517b318ab327ad2e42b94c18aa1ee72cc539e699387e8d8676b094b0
4
- data.tar.gz: f5a1d686afc7d975ffdab632e3c9fcc84deb421d136ae2d8bfaa738690a15cc0
3
+ metadata.gz: 684cf061f962748d1abeaba170827495774555e12ba7c35c7a09b88c9fa3eb06
4
+ data.tar.gz: c42f685b62d27bdcad9065db5083b1e7e683fb2bd41219de4d13513c45be47a2
5
5
  SHA512:
6
- metadata.gz: 84980c9ddc6b6969c27bd1a42a2b078dd06fc6a62fa8fb7bf49b82c07b18f5780fe597fba4429057d0e27a48a01cf365b37e40f6c418fd2664b9699256a137d1
7
- data.tar.gz: 9b4b51ff7c1b2ec0c3a7ff8e1466893ff94632f5a50568fcbde3792866fffa7eadf085712cc3ad144364be0a88829d5d28b0a240476d6000f0fa406b55fd5f29
6
+ metadata.gz: 779f694ac2fa3b46ceef4037d95fd4e2da8b49be076da8a3e260e9e109b7d5f2e918e648d8a5161a26e86d265939bf8af4c63a0380a5d31388ec00a80220a0fc
7
+ data.tar.gz: 7123ed942de7d2f1cfe9249508b7b72c6856bddca09cef70f02e7c1cdbf7f6cbdc1b24f05a2505bc0e07afc761d490324e353160f630db9da240a1b9102a4083
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-dialogflow_v2
2
2
 
3
+ ### v0.97.0 (2025-01-12)
4
+
5
+ * Regenerated from discovery document revision 20250103
6
+ * Regenerated using generator version 0.16.0
7
+
3
8
  ### v0.96.0 (2024-12-22)
4
9
 
5
10
  * Regenerated from discovery document revision 20241216
@@ -8773,6 +8773,12 @@ module Google
8773
8773
  # @return [String]
8774
8774
  attr_accessor :start_time
8775
8775
 
8776
+ # The information about phone calls connected via phone gateway to the
8777
+ # conversation.
8778
+ # Corresponds to the JSON property `telephonyConnectionInfo`
8779
+ # @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ConversationTelephonyConnectionInfo]
8780
+ attr_accessor :telephony_connection_info
8781
+
8776
8782
  def initialize(**args)
8777
8783
  update!(**args)
8778
8784
  end
@@ -8786,6 +8792,7 @@ module Google
8786
8792
  @name = args[:name] if args.key?(:name)
8787
8793
  @phone_number = args[:phone_number] if args.key?(:phone_number)
8788
8794
  @start_time = args[:start_time] if args.key?(:start_time)
8795
+ @telephony_connection_info = args[:telephony_connection_info] if args.key?(:telephony_connection_info)
8789
8796
  end
8790
8797
  end
8791
8798
 
@@ -9124,6 +9131,11 @@ module Google
9124
9131
  class GoogleCloudDialogflowV2ConversationPhoneNumber
9125
9132
  include Google::Apis::Core::Hashable
9126
9133
 
9134
+ # Output only. Desired country code for the phone number.
9135
+ # Corresponds to the JSON property `countryCode`
9136
+ # @return [Fixnum]
9137
+ attr_accessor :country_code
9138
+
9127
9139
  # Output only. The phone number to connect to this conversation.
9128
9140
  # Corresponds to the JSON property `phoneNumber`
9129
9141
  # @return [String]
@@ -9135,6 +9147,7 @@ module Google
9135
9147
 
9136
9148
  # Update properties of this object
9137
9149
  def update!(**args)
9150
+ @country_code = args[:country_code] if args.key?(:country_code)
9138
9151
  @phone_number = args[:phone_number] if args.key?(:phone_number)
9139
9152
  end
9140
9153
  end
@@ -9257,6 +9270,96 @@ module Google
9257
9270
  end
9258
9271
  end
9259
9272
 
9273
+ # The information about phone calls connected via phone gateway to the
9274
+ # conversation.
9275
+ class GoogleCloudDialogflowV2ConversationTelephonyConnectionInfo
9276
+ include Google::Apis::Core::Hashable
9277
+
9278
+ # Output only. The number dialed to connect this call in E.164 format.
9279
+ # Corresponds to the JSON property `dialedNumber`
9280
+ # @return [String]
9281
+ attr_accessor :dialed_number
9282
+
9283
+ # Output only. The mime content from the initial SIP INVITE.
9284
+ # Corresponds to the JSON property `extraMimeContents`
9285
+ # @return [Array<Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ConversationTelephonyConnectionInfoMimeContent>]
9286
+ attr_accessor :extra_mime_contents
9287
+
9288
+ # Optional. SDP of the call. It's initially the SDP answer to the endpoint, but
9289
+ # maybe later updated for the purpose of making the link active, etc.
9290
+ # Corresponds to the JSON property `sdp`
9291
+ # @return [String]
9292
+ attr_accessor :sdp
9293
+
9294
+ # Output only. The SIP headers from the initial SIP INVITE.
9295
+ # Corresponds to the JSON property `sipHeaders`
9296
+ # @return [Array<Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ConversationTelephonyConnectionInfoSipHeader>]
9297
+ attr_accessor :sip_headers
9298
+
9299
+ def initialize(**args)
9300
+ update!(**args)
9301
+ end
9302
+
9303
+ # Update properties of this object
9304
+ def update!(**args)
9305
+ @dialed_number = args[:dialed_number] if args.key?(:dialed_number)
9306
+ @extra_mime_contents = args[:extra_mime_contents] if args.key?(:extra_mime_contents)
9307
+ @sdp = args[:sdp] if args.key?(:sdp)
9308
+ @sip_headers = args[:sip_headers] if args.key?(:sip_headers)
9309
+ end
9310
+ end
9311
+
9312
+ # The mime content from the initial SIP INVITE.
9313
+ class GoogleCloudDialogflowV2ConversationTelephonyConnectionInfoMimeContent
9314
+ include Google::Apis::Core::Hashable
9315
+
9316
+ # Optional. The content payload.
9317
+ # Corresponds to the JSON property `content`
9318
+ # NOTE: Values are automatically base64 encoded/decoded in the client library.
9319
+ # @return [String]
9320
+ attr_accessor :content
9321
+
9322
+ # Optional. The mime type of the content.
9323
+ # Corresponds to the JSON property `mimeType`
9324
+ # @return [String]
9325
+ attr_accessor :mime_type
9326
+
9327
+ def initialize(**args)
9328
+ update!(**args)
9329
+ end
9330
+
9331
+ # Update properties of this object
9332
+ def update!(**args)
9333
+ @content = args[:content] if args.key?(:content)
9334
+ @mime_type = args[:mime_type] if args.key?(:mime_type)
9335
+ end
9336
+ end
9337
+
9338
+ # The SIP headers from the initial SIP INVITE.
9339
+ class GoogleCloudDialogflowV2ConversationTelephonyConnectionInfoSipHeader
9340
+ include Google::Apis::Core::Hashable
9341
+
9342
+ # Optional. The name of the header.
9343
+ # Corresponds to the JSON property `name`
9344
+ # @return [String]
9345
+ attr_accessor :name
9346
+
9347
+ # Optional. The value of the header.
9348
+ # Corresponds to the JSON property `value`
9349
+ # @return [String]
9350
+ attr_accessor :value
9351
+
9352
+ def initialize(**args)
9353
+ update!(**args)
9354
+ end
9355
+
9356
+ # Update properties of this object
9357
+ def update!(**args)
9358
+ @name = args[:name] if args.key?(:name)
9359
+ @value = args[:value] if args.key?(:value)
9360
+ end
9361
+ end
9362
+
9260
9363
  # Metadata for CreateConversationDataset.
9261
9364
  class GoogleCloudDialogflowV2CreateConversationDatasetOperationMetadata
9262
9365
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DialogflowV2
18
18
  # Version of the google-apis-dialogflow_v2 gem
19
- GEM_VERSION = "0.96.0"
19
+ GEM_VERSION = "0.97.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.15.1"
22
+ GENERATOR_VERSION = "0.16.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20241216"
25
+ REVISION = "20250103"
26
26
  end
27
27
  end
28
28
  end
@@ -1468,6 +1468,24 @@ module Google
1468
1468
  include Google::Apis::Core::JsonObjectSupport
1469
1469
  end
1470
1470
 
1471
+ class GoogleCloudDialogflowV2ConversationTelephonyConnectionInfo
1472
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1473
+
1474
+ include Google::Apis::Core::JsonObjectSupport
1475
+ end
1476
+
1477
+ class GoogleCloudDialogflowV2ConversationTelephonyConnectionInfoMimeContent
1478
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1479
+
1480
+ include Google::Apis::Core::JsonObjectSupport
1481
+ end
1482
+
1483
+ class GoogleCloudDialogflowV2ConversationTelephonyConnectionInfoSipHeader
1484
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1485
+
1486
+ include Google::Apis::Core::JsonObjectSupport
1487
+ end
1488
+
1471
1489
  class GoogleCloudDialogflowV2CreateConversationDatasetOperationMetadata
1472
1490
  class Representation < Google::Apis::Core::JsonRepresentation; end
1473
1491
 
@@ -5727,6 +5745,8 @@ module Google
5727
5745
  property :phone_number, as: 'phoneNumber', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ConversationPhoneNumber, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ConversationPhoneNumber::Representation
5728
5746
 
5729
5747
  property :start_time, as: 'startTime'
5748
+ property :telephony_connection_info, as: 'telephonyConnectionInfo', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ConversationTelephonyConnectionInfo, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ConversationTelephonyConnectionInfo::Representation
5749
+
5730
5750
  end
5731
5751
  end
5732
5752
 
@@ -5812,6 +5832,7 @@ module Google
5812
5832
  class GoogleCloudDialogflowV2ConversationPhoneNumber
5813
5833
  # @private
5814
5834
  class Representation < Google::Apis::Core::JsonRepresentation
5835
+ property :country_code, as: 'countryCode'
5815
5836
  property :phone_number, as: 'phoneNumber'
5816
5837
  end
5817
5838
  end
@@ -5847,6 +5868,34 @@ module Google
5847
5868
  end
5848
5869
  end
5849
5870
 
5871
+ class GoogleCloudDialogflowV2ConversationTelephonyConnectionInfo
5872
+ # @private
5873
+ class Representation < Google::Apis::Core::JsonRepresentation
5874
+ property :dialed_number, as: 'dialedNumber'
5875
+ collection :extra_mime_contents, as: 'extraMimeContents', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ConversationTelephonyConnectionInfoMimeContent, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ConversationTelephonyConnectionInfoMimeContent::Representation
5876
+
5877
+ property :sdp, as: 'sdp'
5878
+ collection :sip_headers, as: 'sipHeaders', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ConversationTelephonyConnectionInfoSipHeader, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ConversationTelephonyConnectionInfoSipHeader::Representation
5879
+
5880
+ end
5881
+ end
5882
+
5883
+ class GoogleCloudDialogflowV2ConversationTelephonyConnectionInfoMimeContent
5884
+ # @private
5885
+ class Representation < Google::Apis::Core::JsonRepresentation
5886
+ property :content, :base64 => true, as: 'content'
5887
+ property :mime_type, as: 'mimeType'
5888
+ end
5889
+ end
5890
+
5891
+ class GoogleCloudDialogflowV2ConversationTelephonyConnectionInfoSipHeader
5892
+ # @private
5893
+ class Representation < Google::Apis::Core::JsonRepresentation
5894
+ property :name, as: 'name'
5895
+ property :value, as: 'value'
5896
+ end
5897
+ end
5898
+
5850
5899
  class GoogleCloudDialogflowV2CreateConversationDatasetOperationMetadata
5851
5900
  # @private
5852
5901
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dialogflow_v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.96.0
4
+ version: 0.97.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2025-01-05 00:00:00.000000000 Z
10
+ date: 2025-01-12 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: google-apis-core
@@ -58,9 +57,8 @@ licenses:
58
57
  metadata:
59
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2/v0.96.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2/v0.97.0
62
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2
63
- post_install_message:
64
62
  rdoc_options: []
65
63
  require_paths:
66
64
  - lib
@@ -75,8 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
73
  - !ruby/object:Gem::Version
76
74
  version: '0'
77
75
  requirements: []
78
- rubygems_version: 3.5.23
79
- signing_key:
76
+ rubygems_version: 3.6.2
80
77
  specification_version: 4
81
78
  summary: Simple REST client for Dialogflow API V2
82
79
  test_files: []