telnyx 5.7.2 → 5.8.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: 44673328be367e8f6d1a6aeabecc5b36c8520f2943faf06a88e071dcab166274
4
- data.tar.gz: b328bd1fb4691753ed233b4e67ca5ad2113f599ce515087d340765e97c0a57db
3
+ metadata.gz: 17b3584d429807420773e0e159a73c0b63e4932ccfbb149898a50ab8d323d29f
4
+ data.tar.gz: 9ea5e15eaa92bd060bd99d6d61c9dc5d6c07556377bc4448bb0344d5de57d2b8
5
5
  SHA512:
6
- metadata.gz: 97b4a08db4a7f99cf57bdc4b5499ec3010412fccdc6c5778fa1048cac1f5b38e65615a39a1a351358d75c083493c90b545471c7f477ea01f6f694617b1a70151
7
- data.tar.gz: ccf0deedf2c5fba7940c1666065e90ddbb9208499b04186449354723b0dc880217a34954f2372e0a878b7b7954aac2f32f487cb3eb0c93aac4915e6a8f211956
6
+ metadata.gz: aa4a2e3b63998d0633c0dd6d09f4e8e33bb551f9d01b2d27ec1b06807204f7bf930b162b156006e6c5084c9477d6ad4905f4c0ce98aeb4ca292ce1cfca8fce52
7
+ data.tar.gz: 43256ff98a895e97a5ca64fe6844ff7606ed3d29280f4cc14bb468297093674fda475d5daf9fdeaa62bb8572b2d1e98b459daa3ae0d75fae0b3553acb74c335c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 5.8.0 (2026-01-30)
4
+
5
+ Full Changelog: [v5.7.2...v5.8.0](https://github.com/team-telnyx/telnyx-ruby/compare/v5.7.2...v5.8.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** manual updates ([1111796](https://github.com/team-telnyx/telnyx-ruby/commit/111179622c206624dc7c215d3010d8cb403e5149))
10
+
3
11
  ## 5.7.2 (2026-01-30)
4
12
 
5
13
  Full Changelog: [v5.7.1...v5.7.2](https://github.com/team-telnyx/telnyx-ruby/compare/v5.7.1...v5.7.2)
data/README.md CHANGED
@@ -24,7 +24,7 @@ To use this gem, install via Bundler by adding the following to your application
24
24
  <!-- x-release-please-start-version -->
25
25
 
26
26
  ```ruby
27
- gem "telnyx", "~> 5.7.2"
27
+ gem "telnyx", "~> 5.8.0"
28
28
  ```
29
29
 
30
30
  <!-- x-release-please-end -->
@@ -6,9 +6,6 @@ module Telnyx
6
6
  # @return [Telnyx::Resources::Texml::Accounts]
7
7
  attr_reader :accounts
8
8
 
9
- # @return [Telnyx::Resources::Texml::Calls]
10
- attr_reader :calls
11
-
12
9
  # Some parameter documentations has been truncated, see
13
10
  # {Telnyx::Models::TexmlSecretsParams} for more details.
14
11
  #
@@ -46,7 +43,6 @@ module Telnyx
46
43
  def initialize(client:)
47
44
  @client = client
48
45
  @accounts = Telnyx::Resources::Texml::Accounts.new(client: client)
49
- @calls = Telnyx::Resources::Texml::Calls.new(client: client)
50
46
  end
51
47
  end
52
48
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Telnyx
4
- VERSION = "5.7.2"
4
+ VERSION = "5.8.0"
5
5
  end
data/lib/telnyx.rb CHANGED
@@ -2232,7 +2232,6 @@ require_relative "telnyx/resources/texml/accounts/recordings"
2232
2232
  require_relative "telnyx/resources/texml/accounts/recordings/json"
2233
2233
  require_relative "telnyx/resources/texml/accounts/transcriptions"
2234
2234
  require_relative "telnyx/resources/texml/accounts/transcriptions/json"
2235
- require_relative "telnyx/resources/texml/calls"
2236
2235
  require_relative "telnyx/resources/texml_applications"
2237
2236
  require_relative "telnyx/resources/text_to_speech"
2238
2237
  require_relative "telnyx/resources/usage_reports"
@@ -6,9 +6,6 @@ module Telnyx
6
6
  sig { returns(Telnyx::Resources::Texml::Accounts) }
7
7
  attr_reader :accounts
8
8
 
9
- sig { returns(Telnyx::Resources::Texml::Calls) }
10
- attr_reader :calls
11
-
12
9
  # Create a TeXML secret which can be later used as a Dynamic Parameter for TeXML
13
10
  # when using Mustache Templates in your TeXML. In your TeXML you will be able to
14
11
  # use your secret name, and this name will be replaced by the actual secret value
@@ -3,8 +3,6 @@ module Telnyx
3
3
  class Texml
4
4
  attr_reader accounts: Telnyx::Resources::Texml::Accounts
5
5
 
6
- attr_reader calls: Telnyx::Resources::Texml::Calls
7
-
8
6
  def secrets: (
9
7
  name: String,
10
8
  value: String,
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: telnyx
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.7.2
4
+ version: 5.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Telnyx
@@ -2250,7 +2250,6 @@ files:
2250
2250
  - lib/telnyx/resources/texml/accounts/recordings/json.rb
2251
2251
  - lib/telnyx/resources/texml/accounts/transcriptions.rb
2252
2252
  - lib/telnyx/resources/texml/accounts/transcriptions/json.rb
2253
- - lib/telnyx/resources/texml/calls.rb
2254
2253
  - lib/telnyx/resources/texml_applications.rb
2255
2254
  - lib/telnyx/resources/text_to_speech.rb
2256
2255
  - lib/telnyx/resources/usage_reports.rb
@@ -4474,7 +4473,6 @@ files:
4474
4473
  - rbi/telnyx/resources/texml/accounts/recordings/json.rbi
4475
4474
  - rbi/telnyx/resources/texml/accounts/transcriptions.rbi
4476
4475
  - rbi/telnyx/resources/texml/accounts/transcriptions/json.rbi
4477
- - rbi/telnyx/resources/texml/calls.rbi
4478
4476
  - rbi/telnyx/resources/texml_applications.rbi
4479
4477
  - rbi/telnyx/resources/text_to_speech.rbi
4480
4478
  - rbi/telnyx/resources/usage_reports.rbi
@@ -6697,7 +6695,6 @@ files:
6697
6695
  - sig/telnyx/resources/texml/accounts/recordings/json.rbs
6698
6696
  - sig/telnyx/resources/texml/accounts/transcriptions.rbs
6699
6697
  - sig/telnyx/resources/texml/accounts/transcriptions/json.rbs
6700
- - sig/telnyx/resources/texml/calls.rbs
6701
6698
  - sig/telnyx/resources/texml_applications.rbs
6702
6699
  - sig/telnyx/resources/text_to_speech.rbs
6703
6700
  - sig/telnyx/resources/usage_reports.rbs
@@ -1,16 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Telnyx
4
- module Resources
5
- class Texml
6
- class Calls
7
- # @api private
8
- #
9
- # @param client [Telnyx::Client]
10
- def initialize(client:)
11
- @client = client
12
- end
13
- end
14
- end
15
- end
16
- end
@@ -1,14 +0,0 @@
1
- # typed: strong
2
-
3
- module Telnyx
4
- module Resources
5
- class Texml
6
- class Calls
7
- # @api private
8
- sig { params(client: Telnyx::Client).returns(T.attached_class) }
9
- def self.new(client:)
10
- end
11
- end
12
- end
13
- end
14
- end
@@ -1,9 +0,0 @@
1
- module Telnyx
2
- module Resources
3
- class Texml
4
- class Calls
5
- def initialize: (client: Telnyx::Client) -> void
6
- end
7
- end
8
- end
9
- end