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 +4 -4
- data/CHANGELOG.md +8 -0
- data/README.md +1 -1
- data/lib/telnyx/resources/texml.rb +0 -4
- data/lib/telnyx/version.rb +1 -1
- data/lib/telnyx.rb +0 -1
- data/rbi/telnyx/resources/texml.rbi +0 -3
- data/sig/telnyx/resources/texml.rbs +0 -2
- metadata +1 -4
- data/lib/telnyx/resources/texml/calls.rb +0 -16
- data/rbi/telnyx/resources/texml/calls.rbi +0 -14
- data/sig/telnyx/resources/texml/calls.rbs +0 -9
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 17b3584d429807420773e0e159a73c0b63e4932ccfbb149898a50ab8d323d29f
|
|
4
|
+
data.tar.gz: 9ea5e15eaa92bd060bd99d6d61c9dc5d6c07556377bc4448bb0344d5de57d2b8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
@@ -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
|
data/lib/telnyx/version.rb
CHANGED
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
|
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.
|
|
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
|