google-apis-dialogflow_v2beta1 0.94.0 → 0.95.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: 50c3152b25fae720e23d8a3f16a16c3668e92313b97b13676827ad8fcaa7e0af
4
- data.tar.gz: 0040f36af3d378eda0aafbaa7c146784514897ed5dbf327407905b74253abc40
3
+ metadata.gz: 603cc026c6fd5dbb68a7c179f1b0eb645b37bdddfba97d34a76dbfa6527eb342
4
+ data.tar.gz: 8f085b13c850c698d453b91fe46a610b8a8893bfaf3e81b2d02b084f2d7ee9f7
5
5
  SHA512:
6
- metadata.gz: 2b0d6f2d08f3b11b5744f3c3e02db13018978e5cef75884400a00faf817c7af68b98bed64b2e3b58cfbdd149054190b46d9a4d82245be8593262f8b220e4f0ef
7
- data.tar.gz: 1f6d9f1d2f5e10a1ff1e7faa3e4558d92fa31ad4c9acbfdb9516652ec93f222aeb3450b142851f670f6f91c2d2e5783e2da0e08687e09de88410360763c09607
6
+ metadata.gz: 2ca8e68e923900c822102365651e439109b52faee2aff5005f017f9c6d8b424aa69b4f42c5f0a16916171a42e67489f39cd516eab529cc80c12b290a8521f131
7
+ data.tar.gz: 0a31a2d96d31d564320abd51d52e88b0339099afbe4f51ede75efb4faa92171b41b8e933bda5dc5eb89f2e53b32e992575153e1d7d643029965299d564f852ef
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-dialogflow_v2beta1
2
2
 
3
+ ### v0.95.0 (2025-01-12)
4
+
5
+ * Regenerated from discovery document revision 20250103
6
+ * Regenerated using generator version 0.16.0
7
+
3
8
  ### v0.94.0 (2024-12-22)
4
9
 
5
10
  * Regenerated from discovery document revision 20241216
@@ -12513,6 +12513,12 @@ module Google
12513
12513
  # @return [String]
12514
12514
  attr_accessor :start_time
12515
12515
 
12516
+ # The information about phone calls connected via phone gateway to the
12517
+ # conversation.
12518
+ # Corresponds to the JSON property `telephonyConnectionInfo`
12519
+ # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ConversationTelephonyConnectionInfo]
12520
+ attr_accessor :telephony_connection_info
12521
+
12516
12522
  def initialize(**args)
12517
12523
  update!(**args)
12518
12524
  end
@@ -12526,6 +12532,7 @@ module Google
12526
12532
  @name = args[:name] if args.key?(:name)
12527
12533
  @phone_number = args[:phone_number] if args.key?(:phone_number)
12528
12534
  @start_time = args[:start_time] if args.key?(:start_time)
12535
+ @telephony_connection_info = args[:telephony_connection_info] if args.key?(:telephony_connection_info)
12529
12536
  end
12530
12537
  end
12531
12538
 
@@ -12625,6 +12632,11 @@ module Google
12625
12632
  class GoogleCloudDialogflowV2beta1ConversationPhoneNumber
12626
12633
  include Google::Apis::Core::Hashable
12627
12634
 
12635
+ # Output only. Desired country code for the phone number.
12636
+ # Corresponds to the JSON property `countryCode`
12637
+ # @return [Fixnum]
12638
+ attr_accessor :country_code
12639
+
12628
12640
  # Output only. The phone number to connect to this conversation.
12629
12641
  # Corresponds to the JSON property `phoneNumber`
12630
12642
  # @return [String]
@@ -12636,6 +12648,7 @@ module Google
12636
12648
 
12637
12649
  # Update properties of this object
12638
12650
  def update!(**args)
12651
+ @country_code = args[:country_code] if args.key?(:country_code)
12639
12652
  @phone_number = args[:phone_number] if args.key?(:phone_number)
12640
12653
  end
12641
12654
  end
@@ -12758,6 +12771,96 @@ module Google
12758
12771
  end
12759
12772
  end
12760
12773
 
12774
+ # The information about phone calls connected via phone gateway to the
12775
+ # conversation.
12776
+ class GoogleCloudDialogflowV2beta1ConversationTelephonyConnectionInfo
12777
+ include Google::Apis::Core::Hashable
12778
+
12779
+ # Output only. The number dialed to connect this call in E.164 format.
12780
+ # Corresponds to the JSON property `dialedNumber`
12781
+ # @return [String]
12782
+ attr_accessor :dialed_number
12783
+
12784
+ # Output only. The mime content from the initial SIP INVITE.
12785
+ # Corresponds to the JSON property `extraMimeContents`
12786
+ # @return [Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ConversationTelephonyConnectionInfoMimeContent>]
12787
+ attr_accessor :extra_mime_contents
12788
+
12789
+ # Optional. SDP of the call. It's initially the SDP answer to the endpoint, but
12790
+ # maybe later updated for the purpose of making the link active, etc.
12791
+ # Corresponds to the JSON property `sdp`
12792
+ # @return [String]
12793
+ attr_accessor :sdp
12794
+
12795
+ # Output only. The SIP headers from the initial SIP INVITE.
12796
+ # Corresponds to the JSON property `sipHeaders`
12797
+ # @return [Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ConversationTelephonyConnectionInfoSipHeader>]
12798
+ attr_accessor :sip_headers
12799
+
12800
+ def initialize(**args)
12801
+ update!(**args)
12802
+ end
12803
+
12804
+ # Update properties of this object
12805
+ def update!(**args)
12806
+ @dialed_number = args[:dialed_number] if args.key?(:dialed_number)
12807
+ @extra_mime_contents = args[:extra_mime_contents] if args.key?(:extra_mime_contents)
12808
+ @sdp = args[:sdp] if args.key?(:sdp)
12809
+ @sip_headers = args[:sip_headers] if args.key?(:sip_headers)
12810
+ end
12811
+ end
12812
+
12813
+ # The mime content from the initial SIP INVITE.
12814
+ class GoogleCloudDialogflowV2beta1ConversationTelephonyConnectionInfoMimeContent
12815
+ include Google::Apis::Core::Hashable
12816
+
12817
+ # Optional. The content payload.
12818
+ # Corresponds to the JSON property `content`
12819
+ # NOTE: Values are automatically base64 encoded/decoded in the client library.
12820
+ # @return [String]
12821
+ attr_accessor :content
12822
+
12823
+ # Optional. The mime type of the content.
12824
+ # Corresponds to the JSON property `mimeType`
12825
+ # @return [String]
12826
+ attr_accessor :mime_type
12827
+
12828
+ def initialize(**args)
12829
+ update!(**args)
12830
+ end
12831
+
12832
+ # Update properties of this object
12833
+ def update!(**args)
12834
+ @content = args[:content] if args.key?(:content)
12835
+ @mime_type = args[:mime_type] if args.key?(:mime_type)
12836
+ end
12837
+ end
12838
+
12839
+ # The SIP headers from the initial SIP INVITE.
12840
+ class GoogleCloudDialogflowV2beta1ConversationTelephonyConnectionInfoSipHeader
12841
+ include Google::Apis::Core::Hashable
12842
+
12843
+ # Optional. The name of the header.
12844
+ # Corresponds to the JSON property `name`
12845
+ # @return [String]
12846
+ attr_accessor :name
12847
+
12848
+ # Optional. The value of the header.
12849
+ # Corresponds to the JSON property `value`
12850
+ # @return [String]
12851
+ attr_accessor :value
12852
+
12853
+ def initialize(**args)
12854
+ update!(**args)
12855
+ end
12856
+
12857
+ # Update properties of this object
12858
+ def update!(**args)
12859
+ @name = args[:name] if args.key?(:name)
12860
+ @value = args[:value] if args.key?(:value)
12861
+ end
12862
+ end
12863
+
12761
12864
  # The request message to create one Message. Currently it is only used in
12762
12865
  # BatchCreateMessagesRequest.
12763
12866
  class GoogleCloudDialogflowV2beta1CreateMessageRequest
@@ -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.94.0"
19
+ GEM_VERSION = "0.95.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
@@ -2026,6 +2026,24 @@ module Google
2026
2026
  include Google::Apis::Core::JsonObjectSupport
2027
2027
  end
2028
2028
 
2029
+ class GoogleCloudDialogflowV2beta1ConversationTelephonyConnectionInfo
2030
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2031
+
2032
+ include Google::Apis::Core::JsonObjectSupport
2033
+ end
2034
+
2035
+ class GoogleCloudDialogflowV2beta1ConversationTelephonyConnectionInfoMimeContent
2036
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2037
+
2038
+ include Google::Apis::Core::JsonObjectSupport
2039
+ end
2040
+
2041
+ class GoogleCloudDialogflowV2beta1ConversationTelephonyConnectionInfoSipHeader
2042
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2043
+
2044
+ include Google::Apis::Core::JsonObjectSupport
2045
+ end
2046
+
2029
2047
  class GoogleCloudDialogflowV2beta1CreateMessageRequest
2030
2048
  class Representation < Google::Apis::Core::JsonRepresentation; end
2031
2049
 
@@ -6728,6 +6746,8 @@ module Google
6728
6746
  property :phone_number, as: 'phoneNumber', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ConversationPhoneNumber, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ConversationPhoneNumber::Representation
6729
6747
 
6730
6748
  property :start_time, as: 'startTime'
6749
+ property :telephony_connection_info, as: 'telephonyConnectionInfo', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ConversationTelephonyConnectionInfo, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ConversationTelephonyConnectionInfo::Representation
6750
+
6731
6751
  end
6732
6752
  end
6733
6753
 
@@ -6756,6 +6776,7 @@ module Google
6756
6776
  class GoogleCloudDialogflowV2beta1ConversationPhoneNumber
6757
6777
  # @private
6758
6778
  class Representation < Google::Apis::Core::JsonRepresentation
6779
+ property :country_code, as: 'countryCode'
6759
6780
  property :phone_number, as: 'phoneNumber'
6760
6781
  end
6761
6782
  end
@@ -6791,6 +6812,34 @@ module Google
6791
6812
  end
6792
6813
  end
6793
6814
 
6815
+ class GoogleCloudDialogflowV2beta1ConversationTelephonyConnectionInfo
6816
+ # @private
6817
+ class Representation < Google::Apis::Core::JsonRepresentation
6818
+ property :dialed_number, as: 'dialedNumber'
6819
+ collection :extra_mime_contents, as: 'extraMimeContents', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ConversationTelephonyConnectionInfoMimeContent, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ConversationTelephonyConnectionInfoMimeContent::Representation
6820
+
6821
+ property :sdp, as: 'sdp'
6822
+ collection :sip_headers, as: 'sipHeaders', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ConversationTelephonyConnectionInfoSipHeader, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ConversationTelephonyConnectionInfoSipHeader::Representation
6823
+
6824
+ end
6825
+ end
6826
+
6827
+ class GoogleCloudDialogflowV2beta1ConversationTelephonyConnectionInfoMimeContent
6828
+ # @private
6829
+ class Representation < Google::Apis::Core::JsonRepresentation
6830
+ property :content, :base64 => true, as: 'content'
6831
+ property :mime_type, as: 'mimeType'
6832
+ end
6833
+ end
6834
+
6835
+ class GoogleCloudDialogflowV2beta1ConversationTelephonyConnectionInfoSipHeader
6836
+ # @private
6837
+ class Representation < Google::Apis::Core::JsonRepresentation
6838
+ property :name, as: 'name'
6839
+ property :value, as: 'value'
6840
+ end
6841
+ end
6842
+
6794
6843
  class GoogleCloudDialogflowV2beta1CreateMessageRequest
6795
6844
  # @private
6796
6845
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dialogflow_v2beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.94.0
4
+ version: 0.95.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_v2beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2beta1/v0.94.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2beta1/v0.95.0
62
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2beta1
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 V2beta1
82
79
  test_files: []